diff --git a/R.as.calculator.Rnw b/R.as.calculator.Rnw index 61b3ed5b..1cd914ce 100644 --- a/R.as.calculator.Rnw +++ b/R.as.calculator.Rnw @@ -153,13 +153,13 @@ is.double(1) The name \code{double} originates from the \Clang language, in which there are different types of floats available. With the name \code{double} used to mean ``double-precision floating-point numbers.'' Similarly, the use of \code{L} stems from the \texttt{long} type in \Clang, meaning ``long integer numbers.'' \end{explainbox} -Numeric variables can contain more than one value. Even single numbers are in \Rlang \Rclass{vector}s of length one. We will later see why this is important. As you have seen above, the results of calculations were printed preceded with \code{[1]}. This is the index or position in the vector of the first number (or other value) displayed at the head of the current line. Vectors, in mathematical notation, are represented with positional subindexes, +In \Rlang numeric objects are always \Rclass{vector}s, and can contain zero, one or more values. We will later see why this is important. As you have seen above, the results of calculations were printed preceded with \code{[1]}. This is the index or position in the vector of the first number (or other value) displayed at the head of the current line. Vectors, in mathematical notation, are represented with positional subindexes, \begin{equation}\label{eq:vector} a_{1\ldots n} = a_1, a_2, \cdots a_i, \cdots, a_n, \end{equation} where $a_{1\ldots n}$ represents the whole vector and $a_1$ its first member. The length of $a_{1\ldots n}$ is $n$ as it contains $n$ members. -One can use \Rmethod{c()} ``concatenate'' to create a vector from other vectors, including vectors of length 1, such as the \code{numeric} constants in the statements below. +One can use \Rmethod{c()} ``concatenate'' to create a vector from other vectors, including vectors of length 1, or even vectors of length 0, such as the \code{numeric} constants in the statements below. <>= a <- c(3, 1, 2) @@ -170,6 +170,7 @@ c <- c(a, b) c d <- c(b, a) d +e <- c(d, numeric()) @ Method \code{c()} accepts as arguments two or more vectors and concatenates them, one after another. Quite frequently we may need to insert one vector in the middle of another. For this operation, \code{c()} is not useful by itself. One could use indexing combined with \code{c()}, but this is not needed as \Rlang provides a function capable of directly doing this operation. Although it can be used to ``insert'' values, it is named \code{append()}, and by default, it indeed appends one vector at the end of another. @@ -184,7 +185,7 @@ The output above is the same as for \code{c(a, b)}, however, \Rfunction{append() append(a, values = b, after = 2L) @ -Both \code{c()} and \code{append()} can also be used with lists. +Both \code{c()} and \code{append()} can also be used with lists (described in section \ref{sec:calc:lists} on page \pageref{sec:calc:lists}). \begin{playground} One can create sequences\index{sequence} using function \Rfunction{seq()} or the operator \Roperator{:}, or repeat values using function \Rfunction{rep()}. In this case, I leave to the reader to work out the rules by running these and his/her own examples, with the help of the documentation, available through \code{help(seq)} and \code{help(rep)}. @@ -998,13 +999,25 @@ We have above described \Rconst{NA} as a single value ignoring modes, but in rea a <- c(1, NA) is.numeric(a[2]) is.numeric(NA) +@ + +<>= b <- c("abc", NA) is.character(b[2]) +@ + +<>= is.character(NA) class(NA) +class(NA_character_) +@ + +<>= +c <- NA +c(c, 2:3) @ -Even the statement below works transparently. +However, even the statement below works transparently. <>= a[3] <- b[2] @@ -1163,6 +1176,7 @@ In \Rlang, indexing with positional indexes can be done with \Rclass{integer} or <>= b <- LETTERS[1:10] +b b[1] b[1.1] b[1.9999] # surprise!! @@ -1173,6 +1187,7 @@ From this experiment, we can learn that if positive indexes are not whole number <>= b <- LETTERS[1:10] +b b[-1] b[-1.1] b[-1.9999] @@ -1587,13 +1602,29 @@ rm(list = setdiff(ls(pattern="*"), to.keep)) \section{Lists}\label{sec:calc:lists} \index{lists|(}\qRclass{list} -\emph{Lists'} main difference to other collections is, in \Rlang, that they can be heterogeneous. In \Rlang, the members of a list can be considered as following a sequence, and accessible through numerical indexes, the same as vectors. However, frequently members of a list are given names, and retrieved (indexed) through these names. Lists are created using function \Rfunction{list()}. +\emph{Lists'} main difference from vectors is, in \Rlang, that they can be heterogeneous. In \Rlang, the members of a list can be considered as following a sequence, and accessible through numerical indexes, the same as members of vectors. Members of a list as well as members of a vector can be named, and retrieved (indexed) through their names. In practice, named lists are more frequently used than named vectors. Lists are created using function \Rfunction{list()} similarly as \Rfunction{c()} is used for vectors. Members of a list can be vectors differing both in their class and in their length. <>= a.list <- list(x = 1:6, y = "a", z = c(TRUE, FALSE)) a.list @ +%{ \tikzstyle{every node}=[draw=black,thick,anchor=west,fill=blue!10] +% \tikzstyle{root}=[dashed,fill=gray!50] +%\sffamily +%\centering +%\footnotesize +%\begin{tikzpicture}[% +% grow via three points={one child at (0.5,-0.55) and +% two children at (0.5,-0.55) and (0.5,-1.1)}, +% edge from parent path={(\tikzparentnode.south) |- (\tikzchildnode.west)}] +% \node [root] {a.list} +% child { node {\$ x: int [1:6] 1 2 3 4 5 6}} +% child { node {\$ y: chr "a"}} +% child { node {\$ z: logi [1:2] TRUE FALSE}}; +%\end{tikzpicture} +%} + \subsection{Member extraction and subsetting} Using\qRoperator{[[]]}\index{lists!member extraction|(}\index{lists!member indexing|see{lists!member extraction}} double square brackets for indexing a list extracts the element stored in the list, in its original mode. In the example above, \code{a.list[["x"]]} returns a numeric vector, while \code{a.list[1]} returns a list containing the numeric vector \code{x}. \code{a.list\$x} returns the same value as \code{a.list[["x"]]}, a numeric vector. \code{a.list[c(1,3)]} returns a list of length two, while \code{a.list[[c(1,3)]]} is an error. @@ -1608,10 +1639,10 @@ try(a.list[[c(1,3)]]) @ \begin{explainbox} -\emph{Lists}, as usually defined in languages like \Clang, are based on pointers to memory locations stored at each node, and these pointers chain or link the different member nodes (this allows, for example, sorting of lists in place by modifying the pointers). In such implementations, indexing by position is not possible, or at least requires ``walking'' down the list, node by node. In \Rlang, \code{list} members can be accessed through positional indexes, similarly to vectors. Of course, insertions and deletions in the middle of a list, whatever their implementation, alter (or \emph{invalidate}) any position-based indexes. +\emph{Lists}, as usually defined in languages like \Clang, are based on pointers to memory locations, with pointers stored at each node. These pointers chain or link the different member nodes (this allows, for example, sorting of lists in place by modifying the pointers). In such implementations, indexing by position is not possible, or at least requires ``walking'' down the list, node by node. In \Rlang, \code{list} members can be accessed through positional indexes, similarly to vectors. Of course, insertions and deletions in the middle of a list, whatever their implementation, alter (or \emph{invalidate}) any position-based indexes. \end{explainbox} -To investigate the returned values, function \Rfunction{str()} (\emph{structure}) is of help, especially when the lists have many members, as it formats lists more compactly than function \code{print()}. +To investigate the members contained in a list, function \Rfunction{str()} (\emph{structure}) is of help, especially when lists have many members. The \code{print()} method for the structure formats lists more compactly than function \code{print()} applied directly to a list. <>= str(a.list) @@ -1620,7 +1651,7 @@ str(a.list) \index{lists!member extraction|)} \subsection{Adding and removing list members} -In other languages the two most common operations on lists are insertions and deletions.\index{lists!insert into}\index{lists!append to} In \Rlang, function \Rfunction{append()} can be used both to append elements at the end of a list and insert elements into the head or any position in the middle of a list. +The two most common simple operations on lists are insertions and deletions.\index{lists!insert into}\index{lists!append to} In \Rlang, function \Rfunction{append()} can be used both to append elements at the end of a list and insert elements into the head or any position in the middle of a list. <>= another.list <- append(a.list, list(yy = 1:10, zz = letters[5:1]), 2L) @@ -1634,7 +1665,9 @@ a.list$y <- NULL a.list @ -Lists can be nested, i.e., lists of lists.\index{lists!nested} +\subsection{Nested lists} + +Lists can be nested, i.e., lists of lists can be constructed to an arbitrary depth.\index{lists!nested} <>= a.list <- list("a", "aa", "aaa") @@ -1643,25 +1676,26 @@ nested.list <- list(A = a.list, B = b.list) str(nested.list) @ -\begin{explainbox}\index{lists!structure} -When dealing with deep lists, it is sometimes useful to limit the number of levels of nesting returned by \Rfunction{str()} by means of a \code{numeric} argument passed to parameter \code{max.levels}. +A nested\index{lists!nested} list can alternatively be constructed within a single statement in which several member lists are created. Here we combine the first three statements in the earlier chunk into a single one. -<>= -str(nested.list, max.level = 1) +<>= +nested.list <- list(A = list("a", "aa", "aaa"), B = list("b", "bb")) +str(nested.list) @ -\end{explainbox} +A list can contain a combination of list and vector members. -\subsection{Nested lists} -A nested\index{lists!nested} list can be constructed within a single statement in which several member lists are created. Here we combine the first three statements in the earlier chunk into a single one. - -<>= -nested.list <- list(A = list("a", "aa", "aaa"), B = list("b", "bb")) +<>= +nested.list <- list(A = list("a", "aa", c(2:5)), + B = list("b", "bb"), + C = c(1, 3, 9)) str(nested.list) @ \begin{explainbox} -The logic behind extraction of members of nested lists using indexing is the same as for simple lists, but applied recursively---e.g., \code{nested.list[[2]]} extracts the second member of the outermost list, which is another list. As, this is a list, its members can be extracted using again the extraction operator: \code{nested.list[[2]][[1]]}. It is important to remember that these concatenated extraction operations are written so that the leftmost operator is applied to the outermost list. The example given here uses the \Roperator{[[ ]]} operator, but the same logic applies to \Roperator{[ ]}. +The logic behind extraction of members of nested lists using indexing is the same as for simple lists, but applied recursively---e.g., \code{nested.list[[2]]} extracts the second member of the outermost list, which is another list. As, this is a list, its members can be extracted using again the extraction operator: \code{nested.list[[2]][[1]]}. It is important to remember that these concatenated extraction operations are written so that the leftmost operator is applied to the outermost list. + +The example above uses the \Roperator{[[ ]]} operator, but the left to right precedence also applies to concatenated calls to \Roperator{[ ]}. \end{explainbox} \begin{playground} @@ -1681,11 +1715,21 @@ nested.list[2][[1]] \end{playground} +\begin{explainbox}\index{lists!structure} +When dealing with deep lists, it is sometimes useful to limit the number of levels of nesting returned by \Rfunction{str()} by means of a \code{numeric} argument passed to parameter \code{max.levels}. + +<>= +str(nested.list, max.level = 1) +@ + +\end{explainbox} + Sometimes we need to flatten a list\index{lists!flattening}\index{lists!nested}, or a nested structure of lists within lists. Function \Rfunction{unlist()} is what should be normally used in such cases. The list \code{nested.list} is a nested system of lists, but all the ``terminal'' members are character strings. In other words, terminal nodes are all of the same mode, allowing the list to be ``flattened'' into a character vector. <>= +nested.list <- list(A = list("a", "aa", "aaa"), B = list("b", "bb")) c.vec <- unlist(nested.list) c.vec is.list(nested.list) @@ -1696,7 +1740,7 @@ names(nested.list) names(c.vec) @ -The returned value is a vector with named member elements. We use function \Rfunction{str()} to figure out how this vector relates to the original list. The names are based on the names of list elements when available, while numbers are used for anonymous nodes. We can access the members of the vector either through numeric indexes or names. +The returned value is a vector with named member elements. We use function \Rfunction{str()} to figure out how this vector relates to the original list. The names, always of mode character, are based on the names of list elements when available, while characters depicting positions as numbers are used for anonymous nodes. We can access the members of the vector either through numeric indexes or names. <>= str(c.vec) @@ -1704,16 +1748,17 @@ c.vec[2] c.vec["A2"] @ +\begin{playground} +Function \Rfunction{unlist()}\index{lists!convert into vector} has two additional parameters, with default argument values, which we did not modify in the example above. These parameters are \code{recursive} and \code{use.names}, both of them expecting a \code{logical} value as an argument. Modify the statement \code{c.vec <- unlist(c.list)}, by passing \code{FALSE} as an argument to these two parameters, in turn, and in each case, study the value returned and how it differs with respect to the one obtained above. +\end{playground} + Function \Rfunction{unname()} can be used to remove names safely---i.e., without risk of altering the mode or class of the object. <>= unname(c.vec) +unname(nested.list) @ -\begin{playground} -Function \Rfunction{unlist()}\index{lists!convert into vector} has two additional parameters, with default argument values, which we did not modify in the example above. These parameters are \code{recursive} and \code{use.names}, both of them expecting a \code{logical} value as an argument. Modify the statement \code{c.vec <- unlist(c.list)}, by passing \code{FALSE} as an argument to these two parameters, in turn, and in each case, study the value returned and how it differs with respect to the one obtained above. -\end{playground} - <>= rm(list = setdiff(ls(pattern="*"), to.keep)) @ @@ -1734,18 +1779,18 @@ is.data.frame(a.df) is.list(a.df) @ -Indexing of data frames is similar to that of the underlying list, but not exactly equivalent. We can index with operator \Roperator{[[]]} to extract individual variables, thought of being the columns in a matrix-like list or ``worksheet.'' +Extraction of individual member variables or ``columns'' can be done like in a list with operator \Roperator{[[ ]]}. <>= a.df$x a.df[["x"]] a.df[[1]] -class(a.df) +class(a.df[["x"]]) @ With function \Rfunction{class()} we can query the class of an \Rlang object (see section \ref{sec:rlang:mode} on page \pageref{sec:rlang:mode}). As we saw in the two previous chunks, \code{list} and \code{data.frame} objects belong to two different classes. However, their relationship is based on a hierarchy of classes. We say that class \Rclass{data.frame} is derived from class \code{list}. Consequently, data frames inherit the methods and characteristics of lists, as long as they have not been hidden by new ones defined for data frames. -In the same way as with vectors, we can add members to lists and data frames. +In the same way as with lists, we can add members to data frames. <>= a.df$x2 <- 6:1 @@ -1753,7 +1798,7 @@ a.df$x3 <- "b" str(a.df) @ -We have added two columns to the data frame, and in the case of column \code{x3} recycling took place. This is where lists and data frames differ substantially in their behavior. In a data frame, although class and mode can be different for different variables (columns), they are required to be vectors or factors of the same length. In the case of lists, there is no such requirement, and recycling never takes place when adding a node. Compare the values returned below for \code{a.ls}, to those in the example above for \code{a.df}. +We have added two columns to the data frame, and in the case of column \code{x3} recycling took place. This is where lists and data frames differ substantially in their behavior. In a data frame, although class and mode can be different for different variables (columns), they are required to be vectors or factors of the same length (or a matrix with the same number of rows). In the case of lists, there is no such requirement, and recycling never takes place when adding a node. Compare the values returned below for \code{a.ls}, to those in the example above for \code{a.df}. <>= a.ls <- list(x = 1:6, y = "a", z = c(TRUE, FALSE)) @@ -1785,6 +1830,7 @@ df2$my.vector @ If we start with a matrix instead of a vector, the matrix is split into separate columns in the data frame. If the matrix has no column names, new ones are created. + <>= my.matrix <- matrix(1:12, ncol = 3) df4 <- data.frame(my.factor, my.matrix) @@ -1808,6 +1854,7 @@ df6 @ If we protect the list, then the list is added in whole, similarly as in a tibble (see chapter \ref{chap:R:data} starting on page \pageref{chap:R:data} for details about the \pkgname{tidiyverse}). + <>= df7<- data.frame(my.factor, I(my.list)) df7 @@ -1832,21 +1879,26 @@ Or using the column name. a.df[["x"]][2:3] @ -The less portable, matrix-like indexing is done as follows, with the first index indicating rows and the second one indicating columns. This notation allows simultaneous extraction from multiple columns, which is not possible with lists. The value returned is a ``smaller'' data frame. +Matrix-like indexing is done as follows, with the first index indicating rows and the second one indicating columns. This notation allows simultaneous extraction from multiple columns, which is not possible with lists. The value returned is a ``smaller'' data frame. <>= a.df[2:3, 1:2] @ -If the length of the column indexing vector is one, the returned value is a vector, which is not consistent with the previous example which returned a data frame. This is not only surprising in everyday use, but can be the source of bugs when coding algorithms in which the length of the second index vector cannot be guaranteed to be always more than one. +If the length of the column indexing vector is one, by default the returned single column value is simplified into a vector or factor, which is not consistent with the previous example which returned a data frame. This is not only surprising in everyday use, but can be the source of bugs when coding algorithms in which the length of the second index vector cannot be guaranteed to be always more than one. <>= a.df[2:3, 1] @ -In contrast, indexing of tibbles---defined in package \pkgname{tibble}---is always consistent, never returning a vector, even when the vector used to extract columns is of length one (see section \ref{sec:data:tibble} on page \pageref{sec:data:tibble} for details on the differences between data frames and tibbles). -\end{explainbox} +Simplification can be prevented by overriding the default argument of parameter \code{drop}. +<>= +a.df[2:3, 1, drop = FALSE] +@ + +In contrast, the extraction operator \Roperator{[ ]} of tibbles---defined in package \pkgname{tibble}--- never simplifies returned one-column tibbles into vectors (see section \ref{sec:data:tibble} on page \pageref{sec:data:tibble} for details on the differences between data frames and tibbles). +\end{explainbox} <>= # first column, a.df[[1]] preferred @@ -1893,7 +1945,7 @@ x.list$ab x.list$a @ -Both in the case of lists and data frames, when using double square brackets, an exact match is required between the name in the object and the name used for indexing. In contrast, with \Roperator{\$}, any unambiguous partial match will be accepted. For interactive use, partial matching is helpful in reducing typing. However, in scripts, and especially \Rlang code in packages, it is best to avoid the use of \Roperator{\$} as partial matching to a wrong variable present at a later time, e.g., when someone else revises the script, can lead to very difficult-to-diagnose errors. In addition, as \Roperator{\$} is implemented by first attempting a match to the name and then calling \Roperator{[[]]}, using \Roperator{\$} for indexing can result in slightly slower performance compared to using \Roperator{[[]]}. It is possible to set an \Rlang option so that partial matching triggers a warning, which can be very useful when debugging. +Both in the case of lists and data frames, when using double square brackets, by default an exact match is required between the name in the object and the name used for indexing. In contrast, with \Roperator{\$}, an unambiguous partial match is silently accepted. For interactive use, partial matching is helpful in reducing typing. However, in scripts, and especially \Rlang code in packages, it is best to avoid the use of \Roperator{\$} as partial matching to a wrong variable present at a later time, e.g., when someone else revises the script, can lead to very difficult-to-diagnose errors. In addition, as \Roperator{\$} is implemented by first attempting a match to the name and then calling \Roperator{[[ ]]}, using \Roperator{\$} for indexing can result in slightly slower performance compared to using \Roperator{[[ ]]}. It is possible to set an \Rlang option so that partial matching triggers a warning, which can be very useful when debugging. \end{warningbox} \subsection{Operating within data frames}\label{sec:calc:df:with} @@ -1917,15 +1969,16 @@ subset(a.df, x > 3)$x @ None of the examples in the last three code chunks alter the original data frame \code{a.df}. We can store the returned value using a new name if we want to preserve \code{a.df} unchanged, or we can assign the result to \code{a.df}, deleting in the process, the previously stored value. + \begin{warningbox} - In the example above, the names in the expression passed as the second argument to \code{subset()} are first searched within \code{ad.df} but if not found, searched in the environment. There being no variable \code{A} in the data frame \code{a.df}, vector \code{A} from the environment is silently used in the expression resulting in a returned data frame with no rows. +In the example above, the names in the expression passed as the second argument to \code{subset()} are first searched within \code{ad.df} but if not found, searched in the environment. There being no variable \code{A} in the data frame \code{a.df}, vector \code{A} from the environment is silently used in the expression resulting in a returned data frame with no rows. <>= A <- 1 subset(a.df, A > 3) @ -The use of \Rfunction{subset()} is convenient, but more prone to result in bugs compared to directly using the extraction operator \code{[]}. This same ``cost'' to achieving convenience applies to functions like \Rfunction{attach()} and \Rfunction{with()} described below. The longer time that a script is expected to be used, adapted and reused, the more careful we should be when using any of these functions. An alternative way of avoiding excessive verbosity is to keep the names of data frames short. +The use of \Rfunction{subset()} is convenient, but more prone to result in bugs compared to directly using the extraction operator \code{[ ]}. This same ``cost'' to achieving convenience applies to functions like \Rfunction{attach()} and \Rfunction{with()} described below. The longer time that a script is expected to be used, adapted and reused, the more careful we should be when using any of these functions. An alternative way of avoiding excessive verbosity is to keep the names of data frames short. \end{warningbox} A frequently used way of deleting a column by name from a data frame is to assign \code{NULL} to it---i.e., in the same way as members are deleted from \code{list}s. This approach modifies \code{a.df} in place. @@ -1943,12 +1996,13 @@ Alternatively, we can use negative indexing to remove columns from a copy of a d <>= a.df[ , -which(colnames(a.df) == "y")] @ + Instead of using the equality test, we can use the operator \code{\%in\%} or function \code{grepl()} to delete multiple columns in a single statement. \end{explainbox} \begin{playground} In the previous code chunk we deleted the last column of the data frame \code{a.df}. -Here is an esoteric trick for you to first untangle how it changes the positions of columns and row, and then for you to think how and why it can be useful to use indexing with the extraction operator \Roperator{[ ]} on both sides of the assignment operator \Roperator{<-}. +Here is an esoteric trick for you to first untangle how it changes the positions of columns and rows, and then for you to think how and why it can be useful to use indexing with the extraction operator \Roperator{[ ]} on both sides of the assignment operator \Roperator{<-}. <>= a.df[1:6, c(1,3)] <- a.df[6:1, c(3,1)] @@ -1960,29 +2014,75 @@ a.df Although in this last example we used numeric indexes to make it more interesting, in practice, especially in scripts or other code that will be reused, do use column or member names instead of positional indexes whenever possible. This makes code much more reliable, as changes elsewhere in the script could alter the order of columns and \emph{invalidate} numerical indexes. In addition, using meaningful names makes programmers' intentions easier to understand. \end{warningbox} -\begin{explainbox} -It is sometimes inconvenient to have to pre-pend the name of a \emph{container} such as a list or data frame to the name of each member variable being accessed. There are functions in \Rlang that allow us to change where \Rlang looks for the names of objects we include in a code statement. Here I describe the use of \Rscoping{attach()} and its matching \Rscoping{detach()}, and \Rscoping{with()} and \Rscoping{within()} to access members of a data frame. They can be used as well with lists and classes derived from \code{list}. +\subsection{Re-arranging columns and rows} +\index{data frames!ordering rows}\index{data frames!ordering columns} +The most direct way of changing the order of columns and/or rows in data frames (and matrices and arrays) is to use subscripting as described above. Once we know the original position and target position we can use numerical indexes on both right-hand side and left-hand side of an assignment. -As we can see below, when using a rather long name for a data frame, entering a simple calculation can easily result in a long and difficult to read statement. (Method \code{head()} is used here to limit the displayed value to the first two rows---\code{head()} is described in section \ref{sec:calc:looking:at:data} on page \pageref{sec:calc:looking:at:data}.) +\begin{warningbox} +When using the extraction operator \Roperator{[]} on both the left-hand-side and right-hand-side to swap columns, the vectors or factors are swapped, while the names of the columns are not! The same applies to row names, which makes storing important information in them inconvenient and error prone. +\end{warningbox} -<>= +To retain the correspondence between column naming and column contents after swapping or rearranging the columns, we need to separately move the names of the columns. This seems counter intuitive, unless we think in terms of positions being named rather than the contents of the columns being linked to the names. + +<>= my_data_frame.df <- data.frame(A = 1:10, B = 3) -my_data_frame.df$C <- - (my_data_frame.df$A + my_data_frame.df$B) / my_data_frame.df$A +head(my_data_frame.df, 2) +my_data_frame.df[ , 1:2] <- my_data_frame.df[ , 2:1] +head(my_data_frame.df, 2) +colnames(my_data_frame.df)[1:2] <- colnames(my_data_frame.df)[2:1] head(my_data_frame.df, 2) @ -Using\index{data frames!attaching} \Rscoping{attach()} we can alter how \Rlang looks up names and consequently simplify the statement. With \Rscoping{detach()} we can restore the original state. It is important to remember that here we can only simplify the right-hand side of the assignment, while the ``destination'' of the result of the computation still needs to be fully specified on the left-hand side of the assignment operator. We include below only one statement between \Rscoping{attach()} and \Rscoping{detach()} but multiple statements are allowed. Furthermore, if variables with the same name as the columns exist in the search path, these will take precedence, something that can result in bugs or crashes, or as seen below, a message warns that variable \code{A} from the global environment will be used instead of column \code{A} of the attached \code{my\_data\_frame.df}. The returned value is, of course, not the desired one. +Taking into account that \Rfunction{order()} returns the indexes needed to sort a vector (see page \pageref{box:vec:sort}), we can use \Rfunction{order()} to generate the indexes needed to sort rows of a data frame. In this case, the argument to \Rfunction{order()} is usually a column of the data frame being arranged. However, any vector of suitable length, including the result of applying a function to one or more columns, can be passed as an argument to \Rfunction{order()}. Function \Rfunction{order()} is very rarely useful for sorting columns of data frames as it requires a vector across columns as input. In the case of \Rclass{matrix} and \Rclass{array} this approach can be applied to any of their dimensions as all their elements homogenously belong to one class. -<>= -my_data_frame.df$C <- NULL -attach(my_data_frame.df) -my_data_frame.df$C <- (A + B) / A -detach(my_data_frame.df) -head(my_data_frame.df, 2) +\begin{playground}\index{data frames!ordering rows} +The first task to be completed is to sort a data frame based on the values in one column, using indexing and \Rfunction{order()}. Create a new data frame and with three numeric columns with three different haphazard sequences of values. Call these columns \code{A}, \code{B} and \code{C}. 1) Sort the rows of the data frame so that the values in \code{A} are in decreasing order. 2) Sort the rows of the data frame according to increasing values of the sum of \code{A} and \code{B} without adding a new column to the data frame or storing the vector of sums in a variable. In other words, do the sorting based on sums calculated on the fly. +\end{playground} + +\begin{advplayground}\index{data frames!ordering rows} +Repeat the tasks in the playground immediately above but using factors instead of numeric vectors as columns in the data frame. Hint: revisit the exercise on page \pageref{calc:ADVPG:order:sort} were the use of \Rfunction{order()} on factors is described. +\end{advplayground} + +\subsection{Re-encoding or adding variables} + +It is common that some variables need to be added to an existing data frame based on existing variables, either as a computed value or based on mapping for example treatments to sample codes already in a data frame. In the second case, named\index{named vectors!mapping with} vectors can be used to replace values in a variable or to add a variable to a data frame. + +Mapping is possible because the length of the value returned by the extraction operator \Roperator{[ ]} is given by the length of the indexing vector (see section \ref{sec:calc:indexing} on page \pageref{sec:calc:indexing}). Although we show toy-like examples, this approach is most useful with data frames containing many rows. + +If the existing variable is a character vector or factor, we need to create a named vector with the new values as data and the existing values as names. + +<>= +my.df <- + data.frame(genotype = rep(c("WT", "mutant1", "mutant2"), 2), + value = c(1.5, 3.2, 4.5, 8.2, 7.4, 6.2)) +mutant <- c(WT = FALSE, mutant1 = TRUE, mutant2 = TRUE) +my.df$mutant <- mutant[my.df$genotype] +my.df @ -In the case of \Rscoping{with()} only one, possibly compound code statement is affected and this statement is passed as an argument. As before, we need to fully specify the left-hand side of the assignment. The value returned is the one returned by the statement passed as an argument, in the case of compound statements, the value returned by the last contained simple code statement to be executed. Consequently, if the intent is to modify the container, assignment to an individual member variable (column in this case) is required. In contrast to the behavior of \code{attach()}, In this case, column \code{A} of \code{my\_data\_frame.df} takes precedence, and the returned value is the expected one. +If the existing variable is an \code{integer} vector, we can use a vector without names, being careful that the positions in the \emph{mapping} vector match the values of the existing variable + +<>= +my.df <- data.frame(individual = rep(1:3, 2), + value = c(1.5, 3.2, 4.5, 8.2, 7.4, 6.2)) +genotype <- c("WT", "mutant1", "mutant2") +my.df$genotype <- genotype[my.df$individual] +my.df +@ + +\begin{advplayground} +Add a variable named \code{genotype} to the data frame below so that for individual \code{4} its value is \code{"WT"}, for individual \code{1} its value is \code{"mutant1"}, and for individual \code{2} its value is \code{"mutant2"}. +<>= +my.df <- data.frame(individual = rep(c(2, 4, 1), 2), + value = c(1.5, 3.2, 4.5, 8.2, 7.4, 6.2)) +@ +\end{advplayground} + +In the case of computing new values from existing variables named vectors are of limited use. Instead, variables in a data frame can be added or modified with \Rlang functions \Rscoping{transform()}, \Rscoping{with()} and \Rscoping{within()}. These functions can be thought as convenience functions as the same computations can be done using the extraction operators to access individual variables, in either the lhs, rhs or both lhs and rhs (see section \ref{sec:calc:indexing} on page \pageref{sec:calc:indexing}). + +In the case of \Rscoping{with()} only one, possibly compound code statement is affected and this statement is passed as an argument. As before, we need to fully specify the left-hand side of the assignment. The value returned is the one returned by the statement passed as an argument, in the case of compound statements, the value returned by the last contained simple code statement to be executed. Consequently, if the intent is to modify the container, assignment to an individual member variable (column in this case) is required. + +In this example, column \code{A} of \code{my\_data\_frame.df} takes precedence, and the returned value is the expected one. <>= my_data_frame.df$C <- NULL @@ -1997,7 +2097,8 @@ my_data_frame.df$C <- NULL my_data_frame.df <- within(my_data_frame.df, C <- (A + B) / A) head(my_data_frame.df, 2) @ -In the example above, \code{within()} makes little difference compared to using \Rscoping{with()} with respect to the amount of typing or clarity, but with multiple member variables being operated upon, as shown below, \Rscoping{within()} has an advantage resulting in more concise and easier to understand code. + +In the example above, using \code{within()} makes little difference compared to using \Rscoping{with()} with respect to the amount of typing or clarity, but with multiple member variables being operated upon, as shown below, \Rscoping{within()} has an advantage resulting in more concise and easier to understand code. <>= my_data_frame.df$C <- NULL @@ -2009,37 +2110,29 @@ my_data_frame.df <- within(my_data_frame.df, head(my_data_frame.df, 2) @ -Use of \Rscoping{attach()} and \Rscoping{detach()}, which function as a pair of ON and OFF switches, can result in an undesired after-effect on name lookup if the script terminates after \Rscoping{attach()} is executed but before \Rscoping{detach()} is called, as cleanup is not automatic. In contrast, \Rscoping{with()} and \Rscoping{within()}, being self-contained, guarantee that cleanup takes place. Consequently, the usual recommendation is to give preference to the use of \Rscoping{with()} and \Rscoping{within()} over \Rscoping{attach()} and \Rscoping{detach()}. Use of these functions not only saves typing but also makes code more readable. -\end{explainbox} - -\subsection{Re-arranging columns and rows} -\index{data frames!ordering rows}\index{data frames!ordering columns} -The most direct way of changing the order of columns and/or rows in data frames (and matrices and arrays) is to use subscripting as described above. Once we know the original position and target position we can use numerical indexes on both right-hand side and left-hand side of an assignment. - -\begin{warningbox} -When using the extraction operator \Roperator{[]} on both the left-hand-side and right-hand-side to swap columns, the vectors or factors are swapped, while the names of the columns are not! The same applies to row names, which makes storing important information in them inconvenient and error prone. -\end{warningbox} - -To retain the correspondence between column naming and column contents after swapping or rearranging the columns, we need to separately move the names of the columns. This seems counter intuitive, unless we think in terms of positions being named rather than the contents of the columns being linked to the names. +\begin{explainbox} +Repeatedly pre-pending the name of a \emph{container} such as a list or data frame to the name of each member variable being accessed can make \Rlang code verbose and difficult to understand. Functions \Rscoping{attach()} and its matching \Rscoping{detach()} allow us to change where \Rlang looks for the names of objects we include in a code statement. +When using a long name for a data frame, entering a simple calculation can easily result in a difficult to read statement. (Method \code{head()} is used here to limit the displayed value to the first two rows---\code{head()} is described in section \ref{sec:calc:looking:at:data} on page \pageref{sec:calc:looking:at:data}.) -<>= +<>= my_data_frame.df <- data.frame(A = 1:10, B = 3) -head(my_data_frame.df, 2) -my_data_frame.df[ , 1:2] <- my_data_frame.df[ , 2:1] -head(my_data_frame.df, 2) -colnames(my_data_frame.df)[1:2] <- colnames(my_data_frame.df)[2:1] +my_data_frame.df$C <- + (my_data_frame.df$A + my_data_frame.df$B) / my_data_frame.df$A head(my_data_frame.df, 2) @ -Taking into account that \Rfunction{order()} returns the indexes needed to sort a vector (see page \pageref{box:vec:sort}), we can use \Rfunction{order()} to generate the indexes needed to sort rows of a data frame. In this case, the argument to \Rfunction{order()} is usually a column of the data frame being arranged. However, any vector of suitable length, including the result of applying a function to one or more columns, can be passed as an argument to \Rfunction{order()}. Function \Rfunction{order()} is very rarely useful for sorting columns of data frames as it requires a vector across columns as input. In the case of \Rclass{matrix} and \Rclass{array} this approach can be applied to any of their dimensions as all their elements homogenously belong to one class. +Using\index{data frames!attaching} \Rscoping{attach()} we can alter how \Rlang looks up names and consequently simplify the statement. With \Rscoping{detach()} we can restore the original state. It is important to remember that here we can only simplify the right-hand side of the assignment, while the ``destination'' of the result of the computation still needs to be fully specified on the left-hand side of the assignment operator. We include below only one statement between \Rscoping{attach()} and \Rscoping{detach()} but multiple statements are allowed. Furthermore, if variables with the same name as the columns exist in the search path, these will take precedence, something that can result in bugs or crashes, or as seen below, a message warns that variable \code{A} from the global environment will be used instead of column \code{A} of the attached \code{my\_data\_frame.df}. The returned value is, of course, not the desired one. -\begin{playground}\index{data frames!ordering rows} -The first task to be completed is to sort a data frame based on the values in one column, using indexing and \Rfunction{order()}. Create a new data frame and with three numeric columns with three different haphazard sequences of values. Call these columns \code{A}, \code{B} and \code{C}. 1) Sort the rows of the data frame so that the values in \code{A} are in decreasing order. 2) Sort the rows of the data frame according to increasing values of the sum of \code{A} and \code{B} without adding a new column to the data frame or storing the vector of sums in a variable. In other words, do the sorting based on sums calculated on the fly. -\end{playground} +<>= +my_data_frame.df$C <- NULL +attach(my_data_frame.df) +my_data_frame.df$C <- (A + B) / A +detach(my_data_frame.df) +head(my_data_frame.df, 2) +@ -\begin{advplayground}\index{data frames!ordering rows} -Repeat the tasks in the playground immediately above but using factors instead of numeric vectors as columns in the data frame. Hint: revisit the exercise on page \pageref{calc:ADVPG:order:sort} were the use of \Rfunction{order()} on factors is described. -\end{advplayground} +Use of \Rscoping{attach()} and \Rscoping{detach()}, which function as a pair of ON and OFF switches, can result in an undesired after-effect on name lookup if the script terminates after \Rscoping{attach()} is executed but before \Rscoping{detach()} is called, as cleanup is not automatic. In contrast, \Rscoping{with()} and \Rscoping{within()}, being self-contained, guarantee that cleanup takes place. Consequently, the usual recommendation is to give preference to the use of \Rscoping{with()} and \Rscoping{within()} over \Rscoping{attach()} and \Rscoping{detach()}. Use of these functions not only saves typing but also makes code more readable. +\end{explainbox} \index{data frames|)} @@ -2087,6 +2180,7 @@ We can add a new attribute, under our own control, as long as its name does not attr(a.df, "my.attribute") <- "this is stored in my attribute" attributes(a.df) @ + \begin{warningbox} There is no restriction to the creation, setting, resetting and reading of attributes, but not all methods and operators that can be used to modify objects will preserve non-standard attributes. This can be a problem when using some \Rlang packages, such as some popular packages from the \pkgname{tidyverse}. So, using private attributes is a double-edged sword that usually is worthwhile considering only when designing a new class together with the corresponding methods for it. A good example of extensive use of class-specific attributes are the values returned by model fitting functions like \Rfunction{lm()} (see section \ref{sec:stat:LM} on page \pageref{sec:stat:LM}). @@ -2287,11 +2381,17 @@ Within \Rlang there exist different specializations, or ``flavors,'' of method \ plot(weight ~ feed, data = chickwts) @ -Method \Rfunction{plot()} and variants defined in \Rlang, when used for plotting return their graphical output to a \emph{graphical output device}. In \Rlang, graphical devices are very frequently not real physical devices like a printer, but virtual devices implemented fully in software that translate the plotting commands into a specific graphical file format. Several different graphical devices are available in \Rlang and they differ in the kind of output they produce: raster files (e.g., TIFF, PNG and JPEG formats), vector graphics files (e.g., SVG, EPS and PDF) or output to a physical device like a window in the screen of a computer. Additional devices are available through contributed \Rlang packages. +Method \Rfunction{plot()} and variants defined in \Rlang, when used for plotting return their graphical output to a \emph{graphical output device}. + +When \Rlang is used interactively, a software device is opened automatically to output the graphical output to a physical device, usually the computer screen. The name of the \Rlang software device used may depend on the operating system (e.g., \osname{MS-Windows} or \osname{Linux}), or on the IDE (e.g., \RStudio). + +In \Rlang, software graphical devices not necessarily generate output on a physical device like a printer, as several of these devices translate the plotting commands into a file format and save it to disk. Several different graphical devices are available in \Rlang and they differ in the kind of output they produce: raster files (e.g., TIFF, PNG and JPEG formats), vector graphics files (e.g., SVG, EPS and PDF), or output to a physical device like the screen of a computer. Additional devices are available through contributed \Rlang packages. + +Devices follow the paradigm of ON and OFF switches, opening and closing a destination for \code{print()}, \code{plot()} and related functions. Some devices producing a file as output, can save their output one plot at a time to single-page graphic files or only when the device is closed, possibly as a multi-page file. -Devices follow the paradigm of ON and OFF switches. Some devices producing a file as output, save this output only when the device is closed. When opening a device the user supplies additional information. For the PDF device that produces output in a vector-graphics format, width and height of the output are specified in \emph{inches}. A default file name is used unless we pass a \code{character} string as an argument to parameter \code{file}. +When opening a device the user supplies additional information. For the PDF device that produces output in a vector-graphics format, width and height of the output are specified in \emph{inches}. A default file name is used unless we pass a \code{character} string as an argument to parameter \code{file}. -<>= +<>= pdf(file = "output/my-file.pdf", width = 6, height = 5, onefile = TRUE) plot(dist ~ speed, data = cars) plot(weight ~ feed, data = chickwts) @@ -2300,24 +2400,25 @@ dev.off() Raster devices return bitmaps and \code{width} and \code{height} are specified in \emph{pixels}. -<>= +<>= png(file = "output/my-file.png", width = 600, height = 500) plot(weight ~ feed, data = chickwts) dev.off() @ -When \Rlang is used interactively, a device to output the graphical output to a display device is opened automatically. The name of the device may depend on the operating system used (e.g., \osname{MS-Windows} or \osname{Linux}) or an IDE---e.g., \RStudio defines its own graphic device for output to the Plots pane of its user interface. +The approach of direct output to a software device is used in base \Rlang, +and the addition of plot components, as shown below, is done directly to the output device. -\begin{warningbox} -This approach of direct output to a device, and addition of plot components as shown below, directly on the output device itself, is not the only approach available. As we will see in chapter \ref{chap:R:plotting} starting on page \pageref{chap:R:plotting}, an alternative approach is to build a \emph{plot object} as a list of member components that is later rendered as a whole on a graphical device by calling \code{print()} once. - -<>= +<>= png(file = "output/my-file.png", width = 600, height = 500) plot(dist ~ speed, data = cars) text(x = 10, y = 110, labels = "some texts to be added") dev.off() @ -\end{warningbox} + +\begin{infobox} +This is not the only approach available. As we will see in chapter \ref{chap:R:plotting} starting on page \pageref{chap:R:plotting}, an alternative approach is to build a \emph{plot object} as a list of member components that is later rendered as a whole on a graphical device by calling \code{print()} once. +\end{infobox} \section{Further reading} For\index{further reading!using the R language} further reading on the aspects of \Rlang discussed in the current chapter, diff --git a/R.plotting.Rnw b/R.plotting.Rnw index 4517785c..9653997e 100644 --- a/R.plotting.Rnw +++ b/R.plotting.Rnw @@ -78,81 +78,160 @@ theme_set(theme_gray(14)) eval_plots_all <- FALSE @ -\section{Introduction to the grammar of graphics}\label{sec:plot:intro} +\section{The components of a plot} +I start this chapter by briefly presenting some concepts central to data visualisation. Plots are a medium used to convey information, like text. It is worthwhile keeping this in mind. As with text, the design of plots needs to consider what we want to highlight, what is take home message we want to convey. The style of the plot should match the expectations and the plot-reading abilities of the expected audience. One needs to be careful to avoid ambiguities and most importantly of all not to miss-inform. Data visualisations like text need to be planned, revised, commented upon, revised again until the best way of expressing our message is found. As we will see through this chapter, the flexibility of the grammar of graphics supports very well this approach and designing and producing high quality data visualizations for different audiences. + +Of course, when exploring data we do not need fancy details of graphical design, but we still need the flexibility that allows looking at the same data from many differing angles, highlighting different aspects of them. In the same way as boiler-plate text and text templates have specific but limited uses, all-in-one functions for producing plots do not support well the design of original data visualizations. They tend to get the job done, but lack the flexibility needed to do the best job of communicating with readers. Being this a book about languages, the focus of this chapter is in the layered grammar of graphics. + +The plots we will describe in this chapter are classified as \emph{statistical graphics} within the larger field of data visualisation which is much broader. Plots such as scatter plots include points (geometric objects) that by their position, shape, colour or some other property directly convey information. If we consider these points their location in the plot fixed by the values of their coordinates and any alteration of these coordinates is wrong because it breaks the correspondence between coordinates and observed values thus conveying wrong/false information to the audience. A data label is connected to an observation but its position can be displaced as long as its link to the corresponding observation can be inferred, e.g., by the direction of an arrow or even simple proximity. Annotations, are additions to a plot that have no connection to individual observations, but rather with all observations taken together, e.g., a text like n = 200 indicating the number of observations and included in a corner of a plot. These three elements directly convey information about observations. The scales included in the visualisation make it possible for the plot-reader to retrieve the original values represented in the plot by graphical elements. Other elements in a visualisation may not carry additional information or represent scales, but still affect the easy with which a plot can be read. This include size of text and symbols, thickness of lines, font face, the choice of colour palette, etc. It is important to be aware of the roles played by all these components when designing a data visualisation and when implementing it using the grammar of graphics. + +\section{The grammar of graphics}\label{sec:plot:intro} \index{grammar of graphics!elements|(} What separates \ggplot from base \Rlang and trellis/lattice plotting functions is the use of a grammar of graphics\index{grammar of graphics} (the reason behind `gg' in the name of package \pkgname{ggplot2}). What is meant by grammar in this case is that plots are assembled piece by piece using different ``nouns'' and ``verbs'' \autocite{Cleveland1985}. Instead of using a single function with many arguments, plots are assembled by combining different elements with operators \code{+} and \verb|%+%|. Furthermore, the construction is mostly semantics-based and to a large extent, how plots look when printed, displayed, or exported to a bitmap or vector-graphics file is controlled by themes. -We can think of plotting as representing the observations or data in a graphical language. We use the properties of graphical objects to represent different aspects of our data. An observation can consist of multiple recorded values. Say an observation of air temperature may be defined by a position in 3-dimensional space and a point in time, in addition to the temperature itself. An observation for the size and shape of a plant can consist of height, stem diameter, number of leaves, size of individual leaves, length of roots, fresh mass, dry mass, etc. If we are interested in the relationship between height and stem diameter, we may want to use cartesian coordinates\index{grammar of graphics!cartesian coordinates}, \emph{mapping} stem diameter to the $x$ dimension of the plot and the height to the $y$ dimension. The observations could be represented on the plot by points. +We can think of plotting as translating or mapping the observations or data into a graphical language. We use properties of graphical (or geometrical) objects to represent different aspects of our data. An observation can consist of multiple recorded values. Say an observation of air temperature may be defined by a position in 3-dimensional space and a point in time, in addition to the temperature itself. An observation for the size and shape of a plant can consist of height, stem diameter, number of leaves, size of individual leaves, length of roots, fresh mass, dry mass, etc. If we are interested in the relationship between height and stem diameter, we may want to use cartesian coordinates\index{grammar of graphics!cartesian coordinates}, \emph{mapping} stem diameter to the $x$ dimension of the plot and the height to the $y$ dimension. The observations could be represented on the plot by points. The grammar of graphics allows us to design plots by combining various elements in ways that are nearly orthogonal. In other words, the majority of the possible combinations of ``words'' yield valid plots as long as we assemble them respecting the rules of the grammar. This flexibility makes \ggplot extremely powerful as we can build plots and even types of plots which were not even considered while designing the \ggplot package. When a plot is built, the whole plot and its components are created as \Rlang objects that can be saved in the workspace or written to a file as objects. The graphical representation is generated when the object is printed, explicitly or automatically. The same \code{"gg"} plot object can be rendered into different bitmap and vector graphic formats for display or printing. -The transformation of a set of data or observations into a rendered graphic with package \pkgname{ggplot2} can be represented as a flow of information, but also as a sequence of actions. However, what avoids that the flexibility becomes a burden is that if we do not explicitly mention all steps in our code, in most cases adequate defaults for them will be used instead. The steps in the transformation of data into a rendered graphic conform a chain. a) We indicate the data to use, b) indicate which variable to map to which plot aesthetic, c) we indicate which layers to add, statistical summaries or estimates to compute, and the geometric representation to use for the original data and/or statistical summaries, d) the scales to be used for the aesthetics to which we mapped data in point b), e) indicate a coordinate system (affecting only aesthetics $x$, $y$ and possibly $z$), f) indicate a theme to use. The result from constructing a plot with the grammar of graphics is an R object containing a ``plan for a plot'', including the data, that can be assigned a name, saved to a file or printed into a rendered plot, either to a physical printer or into vector or bitmap graphics formats. These are indeed many steps, but as mentioned above, we do not need to be explicit about all of them. Obviously step a) has no default, b) has defaults only in special cases, and c) has no defaults. +The transformation of a set of data or observations into a rendered graphic with package \pkgname{ggplot2} can be represented as a flow of information, but also as a sequence of actions. However, what avoids that the flexibility becomes a burden is that if we do not explicitly mention all steps in our code, in most cases adequate defaults for them will be used instead. The recipe to build a plot needs to specify a) the data to use, b) which variable to map to which graphical property (or aesthetic), c) which layers to add and which geometric representation to use, d) the scales that establish the link between data values and aesthetic values, e) a coordinate system (affecting only aesthetics $x$, $y$ and possibly $z$), f) a theme to use. The result from constructing a plot with the grammar of graphics is an R object containing a ``recipe for a plot'', including the data. This R object, behaves like other R objects: can be assigned a name, saved to a file or printed into a rendered plot, either to a physical printer or into vector or bitmap graphics formats. The recipe includes indeed many elements, but as mentioned above, we do not need to be explicit about all of them. Obviously step a) has no default, b) has defaults only in special cases, and c) has no defaults. \begin{explainbox} -The\index{plots!layers} plots created with package \pkgname{ggplot2} have a layered structure, with plots both assembled and rendered layer by layer. Each time we add a geometric representation, either of the observations or statistical summaries, we create a layer. A plot can have any number of layers, and the order in which we add them is stored in the resulting R object. When the R object is rendered into a plot, later layers are plotted on top of earlier layers. So graphical objects from the rendering of layers added later can occlude those in layers added earlier. As colors in \Rlang support transparency, and transparency can be accessed through the \code{alpha} aesthetic the effect of overlapping layers can be altered by changing the order in which they are added to a plot and by use of semitransparent layers. +The\index{plots!layers} plots created with package \pkgname{ggplot2} have a layered structure, with plots both assembled and rendered layer by layer. Each time we add a geometric representation of data, either of observations or statistical summaries, we create a new plot layer. \end{explainbox} -\subsection{Data} -The\index{grammar of graphics!data} data to be plotted must be available as a \code{data.frame} or \code{tibble}, with data stored so that each row represents a single observation event, and the columns are different values observed in that single event. In other words, in long form (so-called ``tidy data'') as described in chapter \ref{chap:R:data}. The variables to be plotted can be \code{numeric}, \code{factor}, \code{character}, and time or date stored as \code{POSIXct}. (Some extensions to \pkgname{ggplot2} add support for other types of data such as time series). +\subsection{The words of the grammar} +Before building a plot step by step, I introduce next the different components of a ggplot recipe, or the words in the grammar. -\subsection{Mapping} +\paragraph{Data} +The\index{grammar of graphics!data} data to be plotted must be available as a \code{data.frame} or \code{tibble}, with data stored so that each row represents a single observation event, and the columns are different values observed in that single event. In other words, in long form (so-called ``tidy data'') as described in chapter \ref{chap:R:data}. The variables to be plotted can be \code{numeric}, \code{factor}, \code{character}, and time or date stored as \code{POSIXct}. (Some extensions to \pkgname{ggplot2} add support for other types of data such as time series). +\paragraph{Mapping} When\index{grammar of graphics!mapping of data} we design a plot, we need to map data variables to aesthetics\index{plots!aesthetics} (or graphic properties). Most plots will have an $x$ dimension, which is considered an \emph{aesthetic}, and a variable containing numbers (or categories) mapped to it. The position on a 2D plot of, say, a point, will be determined by $x$ and $y$ aesthetics, while in a 3D plot, three aesthetics need to be mapped $x$, $y$ and $z$. Many aesthetics are not related to coordinates, they are properties, like color, size, shape, line type, or even rotation angle, which add an additional dimension on which to represent the values of variables and/or constants. -\subsection{Geometries} - +\paragraph{Geometries} \sloppy% Geometries\index{grammar of graphics!geometries} are ``words'' that describe the graphics representation of the data: for example, \gggeom{geom\_point()}, plots a point or symbol for each observation or summary value, while \gggeom{geom\_line()}, draws line segments between observations. Some geometries rely by default on statistics, but most ``geoms'' default to the identity statistics. Each time a \emph{geometry} is used to add a graphical representation of data to a plot, we say that a new \emph{layer} has been added. The name \emph{layer} reflects the fact that each new layer added is plotted on top of the layers already present in the plot, or rather when a plot is printed the layers will be generated in the order they were added to the plot object. For example, one layer in a plot can display the observations, another layer a regression line fitted to them, and a third one may contain annotations such an equation or a text label. -\subsection{Statistics} - +\paragraph{Statistics} Statistics\index{grammar of graphics!statistics} are ``words'' that represent calculation of summaries or some other operation on the values in the data. When \emph{statistics} are used for a computation, the returned value is passed to a \emph{geometry}, and consequently adding a \emph{statistics} also adds a layer to the plot. For example, \ggstat{stat\_smooth()} fits a smoother, and \ggstat{stat\_summary()} applies a summary function such as \code{mean(()}. Most statistics are applied automatically by group when data have been grouped by mapping additional aesthetics such as color to a factor. -\subsection{Scales} - +\paragraph{Scales} Scales\index{grammar of graphics!scales} give the ``translation'' or mapping between data values and the aesthetic values to be actually plotted. Mapping a variable to the ``color'' aesthetic (also recognized when spelled as ``colour'') only tells that different values stored in the mapped variable will be represented by different colors. A scale, such as \ggscale{scale\_color\_continuous()}, will determine which color in the plot corresponds to which value in the variable. Scales can also define transformations on the data, which are used when mapping data values to aesthetic values. All continuous scales support transformations---e.g., in the case of $x$ and $y$ aesthetics, positions on the plotting region or graphic viewport will be affected by the transformation, while the original values will be used for tick labels along the axes. Scales are used for all aesthetics, including continuous variables, such as numbers, and categorical ones such as factors. The grammar of graphics allows only one scale per \emph{aesthetic} and plot. This restriction is imposed by design to avoid ambiguity (e.g., it ensures that the red color will have the same ``meaning'' in all plot layers where the \code{color} \emph{aesthetic} is mapped to data). Scales have limits with observations falling outside these limits being ignored by default (replaced by \code{NA}) rather than passed to statistics or geometries---it is easy to unintentionally drop observations when setting scale limits manually, consequently warning messages reporting that \code{NA} values have been omitted from a plot should not be ignored. -\subsection{Coordinate systems} - +\paragraph{Coordinate systems} The\index{grammar of graphics!coordinates} most frequently used coordinate system when plotting data, the cartesian system, is the default for most \emph{geometries}. In the cartesian system, $x$ and $y$ are represented as distances on two orthogonal (at 90$^\circ$) axes. Additional coordinate systems are available in \pkgname{ggplot2} and through extensions. For example, in the polar system of coordinates, the $x$ values are mapped to angles around a central point and $y$ values to the radius. Another example is the ternary system of coordinates, an extension of the grammar implemented in package \pkgname{ggtern}, that allows the construction of ternary plots. Setting limits to a coordinate system changes the region of the plotting space visible in the plot, but does not discard observations. In other words, when using \emph{statistics}, observations located outside the coordinate limits, i.e., not visible in the rendered plot, will still be included in computations if excluded by coordinate limits but will be ignored if excluded by scale limits. -\subsection{Themes} - +\paragraph{Themes} How\index{grammar of graphics!themes} the plots look when displayed or printed can be altered by means of themes. A plot can be saved without adding a theme and then printed or displayed using different themes. Also, individual theme elements can be changed, and whole new themes defined. This adds a lot of flexibility and helps in the separation of the data representation aspects from those related to the graphical design. +\index{grammar of graphics!elements|)} -\subsection{Plot object} +The R functions corresponding to the different components of the grammar of graphics have distinctive names with the first few letters hinting at their use: aesthetics mappings (\code{aes}), geometric elements \code{geom\_\ldots} such as lines and points, statistics \code{stat\_\ldots}, scales \code{scale\_\ldots}, coordinate systems \code{coord\_\ldots}, and themes \code{theme\_\ldots}. -The end result is an \Rlang object containing the data plus the instructions to process them into a plot. This object, as well as intermediate objects can be saved. Rendering, or the production of graphical output, takes places when the object is printed. The format of the output, such as bitmap or vector graphics, is determined by the graphics device (see \ref{sec:plot:render} on page \pageref{sec:plot:render}). -\index{grammar of graphics!elements|)} +\subsection{The workings of the grammar}\label{sec:plot:workings} +\index{grammar of graphics!plot structure|(} +\index{grammar of graphics!plot workings|(} +In this section we will see how plots are assembled, stored and rendered from these elements. -\subsection{Plot construction} -\index{grammar of graphics!plot construction|(} -As we have described above, the components of the grammar of graphics are: aesthetics (\code{aes}), for example color, geometric elements \code{geom\_\ldots} such as lines and points, statistics \code{stat\_\ldots}, scales \code{scale\_\ldots}, coordinate systems \code{coord\_\ldots}, and themes \code{theme\_\ldots}. In this section we will see how plots are assembled and rendered from these elements. +To understand ggplots we should first think in terms of the graphical organization of the plot: there is a background layer onto which layers composed by different graphical objects are laid. Each layer contains related graphical objects originating from the same data. The last layer added is the topmost and the first one added the lowermost. Graphical objects in upper layers occlude those in the layers below them if their locations overlap. Although usually the layers in a ggplot share the same data and mappings to aesthetics, this is not necessarily so. It is possible to build a ggplot where the layers are fully independent of each other, although the scales and plotting area are always shared among them. + +A \code{"gg"} plot object contains the data and instructions needed to build a plot, but not yet a rendering of the plot into graphical objects. Both data transformations and rendering of the plot take place at the time of printing or exporting the plot. A \code{"gg"} plot object is an object of mode \code{"list"} containing the recipe and data to construct a plot. It is self contained in the sense that the only requirement for rendering it into a graphical representation is the vailability of package \pkgname{ggplot2}. -A \code{"gg"} plot object contains the data and instructions needed to build a plot. Both data transformations and rendering of the plot take place at the time of printing or exporting the plot. The data provided by the user goes through three stages where mappings of variables to aesthetics can take place. The default for \Rfunction{aes()} is for the mapping to take place ahead of the statistics (1 in the simplified diagram below).\vspace{2.5ex} +\begin{explainbox} +We can look in more detail at how the recipes to make ggplots are stored in \code{"gg"} plot objects. In R lists can contain various kinds of objects, and objects of class \code{"gg"} are of mode \code{"list"}. R lists are described in section \ref{sec:calc:lists} on page \pageref{sec:calc:lists}. They contain data, function definitions, and unevaluated expressions. In other words the data plus instructions to transform the data, to map them into graphic objects, and various aspects of the rendering from scale limits to type faces to use. Understanding, conceptually how it all works can be very useful as we will see later in the chapter. + +As an example we show the top level members of a \code{"gg"} plot object for a simple plot. Method \code{summary()} shows the components without making explicit the structure of the object. + +<>= +p <- ggplot(mpg, aes(x = displ, y = hwy)) + + geom_point() +summary(p) +@ + +Method \code{str()} shows the structure of the object. Here we limit the depth to 1 level, and the length to 4 so as to keep the example concise, so that both length and depth are truncated. The point of this example is to provide only a glipmse into the innards of the object. + +<>= +str(p, max.level = 1, list.len = 4) +@ +\end{explainbox} + +\begin{advplayground} +Explore in more detail the different members of object \code{p}. For example for the \code{"layers"} member of object \code{p} one can use. + +<>= +str(p$layers, max.level = 1) +@ + +How many layers are present in this case? + +You can use \code{summary()} and \code{str()} while reading this chapter to develop an understanding of how more complex plots are stored and thus becoming familiar with the \emph{magic} behind them. +\end{advplayground} + +A third perspective on ggplots is that of the process of converting the static representation described above of a plot stored in a \code{"gg"} plot object into a graphical representation that can be printed on paper or viewed on a computer screen. The transformations applied to the data to achieve this can be thought as a dynamic process divided in stages. We consider first a single self-contained layer in a plot, without a statistic. In this case, the data provided by the user goes through two stages where mappings of variables to aesthetics can take place, called in \pkgname{ggplot2}, \textbf{start} and \textbf{after scale}, and represented by circles in the diagram below. + +Function \code{aes()} is used to define mappings. The default for \Rfunction{aes()} is for the mapping to take place at the \textbf{start} (left circle in the diagram below), mapping names in the user data to aesthetics such as x, y, colour, shape, etc. +With no statistic (or more accurately, with \ggstat{stat\_identity()}) the geometry sees the subset of the variables in data that have been mapped to aesthetics at \textbf{start}, with their names replaced by the names of the aesthetics. Their values in many cases are also changed into aesthetics' values. Additional variables indicating groups and panel indexes are added. The geometry has access to the scales and can use them. A geometry converts the data it receives into graphical objects (grobs in the terminology of package \pkgname{grid}). In most cases the only mapping set by the user is at the \textbf{start}, as the \textbf{after scale} mapping is infrequently meeded.\vspace{2.5ex} + +\hfill% +{\sffamily% +\resizebox{0.66\linewidth}{!}{% + \begin{tikzpicture}[auto] + \node [b] (data) {layer\\ data}; + \node [cc, right = of data] (mapping1) {\textbf{start}}; + \node [b, right = of mapping1] (geometry) {geometry + scale}; + \node [cc, right = of geometry] (mapping3) {\textbf{after\\ scale}}; + \node [b, right = of mapping3] (render) {layer\\ grobs}; + + \path [ll] (mapping1) -- (data) node[near end,above]{a}; + \path [ll] (geometry) -- (mapping1) node[near end,above]{b}; + \path [ll] (mapping3) -- (geometry) node[near end,above]{c}; + \path [ll] (render) -- (mapping3) node[near end,above]{d}; + \end{tikzpicture}}}\hfill% +\vspace{2ex} + +When a layer includes a statistics the data goes through three stages where mappings of variables to aesthetics can take place. As above we have \textbf{start} and \textbf{after scale}, but we have in addition \textbf{after stat}. Statistics compute new values from the data received as input and return them. These data become the input to the geometry after the \textbf{after stat} mapping stage.\vspace{2.5ex} {\sffamily \centering -% \includegraphics[width=0.98\textwidth]{figures/fig2-model.png} \resizebox{\linewidth}{!}{% \begin{tikzpicture}[auto] - \node [b] (data) {data}; - \node [b, right = of data] (statistic) {statistic}; - \node [b, right = of statistic] (geometry) {geometry}; - \node [b, right = of geometry] (scale) {scale}; - \node [b, right = of scale] (render) {rendered\\plot}; - - \path [ll] (statistic) -- (data) node[near end,above]{\textbf{1}}; - \path [ll] (geometry) -- (statistic) node[near end,above]{\textbf{2}}; - \path [ll] (scale) -- (geometry) node[near end,above]{\textbf{3}}; - \path [ll] (render) -- (scale) node[near end,above]{\textbf{4}}; + \node [b] (data) {layer\\ data}; + \node [cc, right = of data] (mapping1) {\textbf{start}}; + \node [b, right = of mapping1] (statistic) {statistic}; + \node [cc, right = of statistic] (mapping2) {\textbf{after\\ stat}}; + \node [b, right = of mapping2] (geometry) {geometry + scale}; + \node [cc, right = of geometry] (mapping3) {\textbf{after\\ scale}}; + \node [b, right = of mapping3] (render) {layer\\ grobs}; + + \path [ll] (mapping1) -- (data) node[near end,above]{a}; + \path [ll] (statistic) -- (mapping1) node[near end,above]{b}; + \path [ll] (mapping2) -- (statistic) node[near end,above]{c}; + \path [ll] (geometry) -- (mapping2) node[near end,above]{d}; + \path [ll] (mapping3) -- (geometry) node[near end,above]{e}; + \path [ll] (render) -- (mapping3) node[near end,above]{f}; \end{tikzpicture}}}\vspace{2ex} -A statistic receives as input \code{data} a data frame with the columns in user-supplied data renamed according to the names of the aesthetics they are mapped to, and additional columns with grouping and panel information. The value returned by a statistics is also a data frame. This data frame is identical to the input in the case of \ggstat{stat\_identity()} or different, in the values contained and in the number of rows and/or columns for other statistics. Statistics provide default mappings and a default \code{geometry}, but these can be overridden by the user. Usually statistics return other variables in addition to those with default mappings. Within \Rfunction{aes()} we can use function \Rfunction{after\_stat()} to request a mapping after the statistic (2 in the diagram above). +In more detail, a statistic receives as its input \code{data} mapped at the \textbf{start} as described in the previous example as received by the geometry. The statistic computes new values from the data. The computed values are returned by a statistics also as a data frame. This data frame contains different values, the number of rows and/or columns usually also differ from those in the data frame received as input. Statistics provide default mappings for the \textbf{after stat} stage and a default \code{geometry}, but these can be overridden by the user. Usually statistics return other variables in addition to those with default mappings to facilitate the constructions of variations on a given type of data summary. Within \Rfunction{aes()} we can use function \Rfunction{after\_stat()} to request a mapping after the statistic. + +\begin{explainbox} + In reality all ggplot layers include a statistic, but most geometries have \ggstat{stat\_identity()} as their default. There are some statistics that in \pkgname{ggplot2} have companion geometries that can be used interchangeably. This` tends to lead into confusion, and in this book, only geometries that have as default \ggstat{stat\_identity()} are described as geometries. In the case of those that by default use other statistics, like \gggeom{geom\_smooth()} I only describe the companion statistic, \gggeom{stat\_smooth()}. +\end{explainbox} + +A ggplot can have a single layer or many layers, but when ggplots have more than one layer, the data flow, computations and generation of graphical objects takes place independently for each layer. As mentioned above, most ggplots do not have fully independent layers, but the layers share the same data and aesthetic mappings at the \textbf{start}. Ahead of this point computations in layers are always independent of those in other layers, except that for a given aesthetic only one scale is allowed per plot. This is intentional, and makes it nearly impossible for one aesthetic to be assigned different meanings in different layers of the same plot. +\index{grammar of graphics!plot workings|)} +\index{grammar of graphics!plot structure|)} + +\subsection{Plot construction} +\index{grammar of graphics!plot construction|(} + +As the use of the grammar is easier to demonstrate by example than to explain with words, I will show how to build plots of increasing complexity, starting from the simplest possible. All elements of a plot have defaults, although in some cases these defaults result in empty plots. Defaults make it possible to create a plot very succinctly. When building a plot step by step, we can consider the different aspects described in the previous section: the structure of the object, the graphic output, and the transformations applied to the data in the route between the recipe stored in an object and graphic output. In this section I emphasize the syntax of the grammar and how it translated into a plot. -As the workings and use of the grammar are easier to demonstrate by example than to explain with words, I will show how to build plots of increasing complexity, starting from the simplest possible. All elements of a plot have defaults, although in some cases these defaults result in empty plots. Defaults make it possible to create a plot very succinctly. We use function \code{ggplot()} to create the skeleton for a plot, which can be enhanced, but also printed as is. \emph{A plot with no data or layers.} +\begin{advplayground} + When reading this section, possibly a second time, use \code{summary()} and \code{str()} as described in the previous section to explore how \code{"gg"} plot objects gain new member components as the \emph{recipe} for the plot evolves in complexity. +\end{advplayground} + +We start by using function \code{ggplot()} to create the skeleton for a plot, which can be enhanced, but also printed as is. \emph{A plot with no data or layers.} <>= ggplot() @@ -164,14 +243,16 @@ The plot above is of little use without any data, so we next pass a data frame o ggplot(data = mtcars) @ -Once the data are available, we need to \emph{map} the quantities in the data onto graphical features in the plot, or \emph{aesthetics}. When plotting in two dimensions, we need to map variables in the data to at least the $x$ and $y$ aesthetics. This mapping can be seen in the chunk below by its effect on the plotting area ranges that now match the ranges of the mapped variables, expanded by a small margin. The axis labels also reflect the names of the mapped variables, however, there is no graphical element yet displayed for the individual observations. ({\small\textsf{data $\to$ aes $\to$ \emph{ggplot object}}}) +Once the data are available, we need to select a graphical or geometric representation for the quantities to plot. The overall kind of representation is determined by the geometry, such as \code{geom\_point()} and \code{geom\_line()}, drawing separate points for the observations or connecting them with lines, respectively. A mapping indicates which property of the geometric elements will be used to represent the values stored in a given variable in the user's data. For most geometries we need to provide mappings for both $x$ and $y$ aesthetics, to establish the position of the geometrical shapes like points or lines in the plotting area. Additional aesthetics like colour (applicable to both points and lines) or shape and linetype, applicable to points and lines, respectively have default mappings. Defaults can be overridden by including a mapping explicitly in the call to \code{aes()}. + +Here we map at the \textbf{start} stage two variables in the data, \code{disp} to $x$ and and \code{mpg} to $y$ aesthetics. This mapping can be seen in the chunk below by its effect on the plotting area ranges that now match the ranges of the mapped variables, expanded by a small margin. The axis labels also reflect the names of the mapped variables, however, there is no graphical element yet displayed for the individual observations. ({\small\textsf{data $\to$ aes $\to$ \emph{ggplot object}}}) <>= ggplot(data = mtcars, aes(x = disp, y = mpg)) @ -To make observations visible in the plot we need to add a suitable \emph{geometry} or \code{geom} to the plot. Here we display the observations as points using \gggeom{geom\_point()}. Geometries are rendered as \emph{plot layers}. ({\small\textsf{data $\to$ aes $\to$ geom $\to$ \emph{ggplot object}}}) +To make observations visible we need to add a suitable \emph{geometry} or \code{geom} to the plot recipe. Here we display the observations as points using \gggeom{geom\_point()}, i.e, we add a \emph{plot layer}. ({\small\textsf{data $\to$ aes $\to$ geom $\to$ \emph{ggplot object}}}) <>= ggplot(data = mtcars, @@ -180,7 +261,7 @@ ggplot(data = mtcars, @ \begin{warningbox} -In the examples above, the plots were printed automatically, which is the default at the \Rlang console. However, as with other \Rlang objects, ggplots can be assigned to a variable. +In the examples above, the plots were printed automatically, which is the default at the \Rlang console. However, as with other \Rlang objects, ggplots can be assigned to a variable as first shown in section \ref{sec:plot:workings} on page \pageref{sec:plot:workings}. <>= p <- ggplot(data = mtcars, @@ -188,23 +269,22 @@ p <- ggplot(data = mtcars, geom_point() @ -and printed at a later time. +and printed at a later time, and saved to and read from files on disk. <>= print(p) @ + +Layers and other elements can be also added to a saved ggplot as the saved objects are not the graphical representation of the plots themselves but instead a \emph{recipe} plus data needed to build them. \end{warningbox} \begin{advplayground} -Above we have seen how to build a plot containing a single layer using the grammar of graphics. We have also seen how to save a ggplot. We can peep into the innards of this object using \code{summary()}. +Above we have seen how to build a plot and we also had a glimpse of the structure of a simple \code{"gg"} plot object. We have also saved a ggplot under the name \code{p}. -<>= -summary(p) -@ -We can view the structure of the \code{"gg"} plot object with \code{str()}. Package \pkgname{gginnards} provides methods \code{str()}, \code{num\_layers()}, \code{top\_layer()} and \code{mapped\_vars()}. As you make progress through the chapter, use these methods to explore \code{"gg"} plot objects with different numbers of layers or mappings. You will see that the plot elements that were added to the plot are stored as members of a list with nested lists forming a tree-like structure. (R lists are described in section \ref{sec:calc:lists} on page \pageref{sec:calc:lists}.) +We can view the structure of any R object, including \code{"gg"} plot objects, with \code{str()}. Package \pkgname{ggplot2} provides a \code{summary()} for \code{"gg"} plot object. Package \pkgname{gginnards} provides methods \code{str()}, \code{num\_layers()}, \code{top\_layer()}, \code{bottom\_layer()}, and \code{mapped\_vars()}. As you make progress through the chapter, use these methods to explore \code{"gg"} plot objects with different numbers of layers or mappings. You will be able to see how the plot components are stored as members of the \code{"gg"} plot objects. \end{advplayground} -Although \emph{aesthetics} are usually mapped to variables in the data, they can also be set to constant values. While variables in \code{data} can be both mapped using \code{aes()} as whole-plot defaults, as shown above, or within individual layers, constant values for aesthetics can be set, as shown here, only for individual layers and directly rather than using \code{aes()}. +Although \emph{aesthetics} are usually mapped to variables in the data, they can also be set to constant values, as many of them are by default. While variables in \code{data} can be both mapped using \code{aes()} as whole-plot defaults, as shown above, or within individual layers, constant values for aesthetics can be set, as shown here, only for individual layers and directly rather than using \code{aes()}. <>= ggplot(data = mtcars, @@ -351,7 +431,7 @@ p + my.layer \end{infobox} \index{grammar of graphics!plots as R objects|)} -\subsection{Mappings to aesthetics} +\subsection{Mappings in detail} \index{grammar of graphics!mapping of data|(} \index{grammar of graphics!aesthetics(} In the case of simple plots, based on data contained in a single data frame, the usual style is to code a plot as described above, passing an argument, \code{mtcars} in these examples, to the \code{data} parameter of \Rfunction{ggplot()}. Data passed in this way becomes the default for all layers in the plot. The same applies to the argument passed to \code{mapping}.\qRfunction{aes()} @@ -370,6 +450,8 @@ ggplot() + mapping = aes(x = disp, y = mpg)) @ +\begin{explainbox} +The two examples show the two most commonly used styles when working at the console or writing simple scripts. There are other possibilities which are most useful when writing complex scripts, or in function definitions. We gui The default mapping can also be added directly with the \code{+} operator, instead of being passed as an argument to \Rfunction{ggplot()}. <>= @@ -378,7 +460,7 @@ ggplot(data = mtcars) + geom_point() @ -It is even possible to have a default mapping for the whole plot, but no default data. +It is also possible to have a default mapping for the whole plot, but no default data. <>= ggplot() + @@ -386,9 +468,18 @@ ggplot() + geom_point(data = mtcars) @ -In these examples, the plot remains unchanged, but this flexibility in the grammar allows, in plots containing multiple layers, for each layer to use different data or a different mapping. +We can save the mapping to a variable and add the variable instead of the call to \code{aes()} in each of the examples above, of which we show only the first one. + +<>= +my.mapping <- aes(x = disp, y = mpg) +ggplot(data = mtcars, + mapping = my.mapping) + + geom_point() +@ + +In all these examples, the plot remains unchanged (not shown). However, this flexibility in the grammar allows, as discussed in section \ref{sec:plot:workings} on \pageref{sec:plot:workings} makes it possible for layers to remain independent of each other when needed. +\end{explainbox} -\begin{explainbox} The argument passed to parameter \code{data} of a layer function, can be a function instead of a data frame if the plot contains default data. In this case, the function is applied to the default data and must return a data frame containing data to be used in the layer. Here I use an anonymous function defined in-line, but a function can also be passed as argument by name. <>= @@ -408,7 +499,6 @@ ggplot(data = mtcars, size = 1.5) @ -\end{explainbox} \emph{Late mapping}\index{grammar of graphics!mapping of data!late} of variables to aesthetics has been possible in \pkgname{ggplot2} for a long time using as notation enclosure of the name of a variable returned by a statistic between \code{...}, but this notation has been deprecated some time ago and replaced by \ggscale{stat()}. In both cases, this imposed a limitation: it was impossible to map a computed variable to the same aesthetic as input to the statistic and to the geometry in the same layer. There were also some other quirks that prevented passing some arguments to the geometry through the dots \code{...} parameter of a statistic. diff --git a/R.plotting.tex b/R.plotting.tex new file mode 100644 index 00000000..167b5294 --- /dev/null +++ b/R.plotting.tex @@ -0,0 +1,502 @@ +% !Rnw root = appendix.main.Rnw + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/R.scripts.Rnw b/R.scripts.Rnw index 937a2677..c7054ad1 100644 --- a/R.scripts.Rnw +++ b/R.scripts.Rnw @@ -1107,21 +1107,25 @@ str(z) \section{Functions that replace loops} -\Rlang provides several functions that can be used to avoid writing iterative loops in \Rlang. These functions are written in \Clang and compiled, so even when iterative algorithms are used, they are fast. Replacing code implementing an iterative algorithm by a single function call simplifies the script's code and can make it easier to understand. A table with examples of some useful functions that are available in base \Rlang is provided here. All these functions take a vector as their first argument.\vspace{2ex}. +\Rlang provides several functions that can be used to avoid writing iterative loops in \Rlang. The most frequently used are taken for granted: \Rfunction{mean()}, \Rfunction{var()} (variance), \Rfunction{sd()} (standard deviation), \Rfunction{max()}, and \Rfunction{min()}. Replacing code implementing an iterative algorithm by a single function call simplifies the script's code and can make it easier to understand. These functions are written in \Clang and compiled, so even when iterative algorithms are used, they are fast. A table with examples of additional functions available in base \Rlang that implement iterative algorithms is provided below. All these functions take a vector of arbitrary length as their first argument, except for \Rfunction{inverse.rle()}.\vspace{2ex} +\noindent \begin{tabular}{lll} \toprule Function & Computation & Value, length \\ \midrule \Rfunction{sum()} & $\sum_{i=1}^n x_i$ & numeric, 1 \\ \Rfunction{prod()} & $\prod_{i=1}^n x_i$ & numeric, 1 \\ - \Rfunction{max()} & $x_{max}$ & numeric, 1 \\ - \Rfunction{min()} & $x_{min}$ & numeric, 1 \\ - \Rfunction{cumsum()} & $\sum_{i=1}^1 x_i, \cdots \sum_{i=1}^j x_i, \cdots \sum_{i=1}^n x_i$ & numeric, n \\ - \Rfunction{cumprod()} & $\prod_{i=1}^1 x_i, \cdots \prod_{i=1}^j x_i, \cdots \prod_{i=1}^n x_i$ & numeric, n \\ - \Rfunction{cummax()} & $x_{max}$ & numeric, n \\ - \Rfunction{cummin()} & $x_{min}$ & numeric, n \\ - \Rfunction{diff()} & $x_2 - x_1, \cdots x_i - x_{i-1}, \cdots x_n - x_{n-1}$ & numeric, n-1 \\ + \Rfunction{cumsum()} & $\sum_{i=1}^1 x_i, \cdots \sum_{i=1}^j x_i, \cdots \sum_{i=1}^n x_i$ & numeric, $n_\mathrm{out} = n_\mathrm{in}$ \\ + \Rfunction{cumprod()} & $\prod_{i=1}^1 x_i, \cdots \prod_{i=1}^j x_i, \cdots \prod_{i=1}^n x_i$ & numeric, $n_\mathrm{out} = n_\mathrm{in}$ \\ + \Rfunction{cummax()} & cumulative maximum & numeric, $n_\mathrm{out} = n_\mathrm{in}$ \\ + \Rfunction{cummin()} & cumulative minimum & numeric, $n_\mathrm{out} = n_\mathrm{in}$ \\ + \Rfunction{runmed()} & running median & numeric, $n_\mathrm{out} = n_\mathrm{in}$ \\ + \Rfunction{diff()} & $x_2 - x_1, \cdots x_i - x_{i-1}, \cdots x_n - x_{n-1}$ & numeric, $n_\mathrm{out} = n_\mathrm{in}-1$ \\ + \Rfunction{diffinv()} & inverse of diff & numeric, $n_\mathrm{out} = n_\mathrm{in}+1$ \\ + \Rfunction{factorial()} & $x!$ & numeric, $n_\mathrm{out} = n_\mathrm{in}$ \\ + \Rfunction{rle()} & run-length encoding & $n_\mathrm{out} < n_\mathrm{in}$ \\ + \Rfunction{inverse.rle()} & run-length decoding & $n_\mathrm{out} > n_\mathrm{in}$ \\ \bottomrule \end{tabular} @@ -1240,5 +1244,40 @@ str(results, max.level = 1) do.call(anova, results) @ -\subsection{Further reading} +\section{Data pipes in base R} + +The \pkgname{tidyverse} has popularized the use of data pipes in \Rlang. Recently base \Rlang has gained a pipe operator, \Roperator{|>}, and in combination with well known base \Rlang functions it provides a concise notation for data selection and transformations. In general whenever we use temporary variables to store values that are used only once, we can chain the statements making the saving into a temporary variable implicit instead of explicit. In many cases, nested function calls can also be transformed into easier to read \emph{pipes}. + +Addition of computed variables to a data frame using \Rfunction{within()} and selecting rows with \Rfunction{subset()} are combined in our first `toy' example. We use the \code{\_} placeholder to indicate the value returned by the preceding function in the pipe. + +<>= +data.frame(x = 1:10, y = rnorm(10)) |> + within(data = _, + { + x4 <- x^4 + is.large <- x^4 > 1000 + }) |> + subset(x = _, is.large) +@ + +To summarize variables we can use \Rfunction{aggregate()}. + +<>= +data.frame(group = factor(rep(c("T1", "T2", "Ctl"), each = 4)), + y = rnorm(12)) |> + subset(x = _, group %in% c("T1", "T2")) |> + aggregate(data = _, y ~ group, mean) +@ + +Although the extraction operators are not accepted on the rhs of a pipe, function \Rfunction{getElement()} can be used to extract a member by name, in this case a column. + +<>= +data.frame(group = factor(rep(c("T1", "T2", "Ctl"), each = 4)), + y = rnorm(12)) |> + subset(x = _, group %in% c("T1", "T2")) |> + aggregate(data = _, y ~ group, mean) |> + getElement("y") +@ + +\section{Further reading} For\index{further reading!the R language} further readings on the aspects of \Rlang discussed in the current chapter, I suggest the books \citetitle{Matloff2011} (\citeauthor{Matloff2011}) and \citetitle{Wickham2019} (\citeauthor{Wickham2019}). diff --git a/aphalo-learn-r-2ed-draft.pdf b/aphalo-learn-r-2ed-draft.pdf new file mode 100644 index 00000000..4ece895a Binary files /dev/null and b/aphalo-learn-r-2ed-draft.pdf differ diff --git a/appendixes.prj b/appendixes.prj index f8dc48f6..9bf709b5 100644 --- a/appendixes.prj +++ b/appendixes.prj @@ -1,193 +1,82 @@ 36 Patch Control -0 -0 +1 +1 1 using-r-main-crc.Rnw -120 +83 12 -0 +8 using-r-main-crc.Rnw TeX:RNW:UTF-8 -420491259 0 -1 5881 -1 5885 208 208 1244 731 1 1 452 928 -1 -1 0 0 33 0 0 33 2 0 5885 -1 1 5161 -1 0 -1 0 +152055803 0 -1 6324 -1 6474 208 208 1244 731 1 1 129 345 -1 -1 0 0 33 0 0 33 2 0 6474 -1 1 5300 -1 0 -1 0 +R.plotting.Rnw +TeX:RNW +17838075 0 -1 17724 -1 17050 130 130 1166 559 1 1 345 552 -1 -1 0 0 31 -1 -1 31 3 0 17050 -1 1 189829 -1 2 160405 -1 0 -1 0 +preface.Rnw +TeX:RNW +17838075 0 131 126 -1 14049 130 130 1573 499 1 1 141 552 -1 -1 0 0 18 -1 -1 18 1 0 14049 -1 0 -1 0 +usingr.sty +TeX:STY +1060850 0 94 1 65 39 234 234 1270 724 0 0 484 161 -1 -1 0 0 25 0 0 25 1 0 39 65 0 0 0 R.intro.Rnw TeX:RNW -17838075 0 62 76 -1 11 182 182 1218 705 1 1 367 0 -1 -1 0 0 261 -1 -1 261 1 0 11 -1 0 -1 0 -frontmatter\preface.tex -TeX -1060859 0 91 92 -1 9171 130 130 1573 499 0 1 418 224 -1 -1 0 0 18 -1 -1 18 1 0 9171 -1 0 -1 0 +17838075 0 -1 3451 -1 11 182 182 1218 705 1 1 261 0 -1 -1 0 0 261 -1 -1 261 1 0 11 -1 0 -1 0 references.bib BibTeX -1049586 0 363 1 412 1 0 0 820 242 0 1 61 64 -1 -1 0 0 23 0 0 23 1 0 1 412 0 -1 0 +1049586 0 363 1 412 1 0 0 820 242 0 1 45 529 -1 -1 0 0 23 0 0 23 1 0 1 412 0 -1 0 R.as.calculator.Rnw TeX:RNW -17838075 0 906 6 -1 37914 26 26 1062 549 1 1 282 352 -1 -1 0 0 31 -1 -1 31 3 0 37914 -1 1 20156 -1 2 31882 -1 0 -1 0 +17838075 0 -1 56568 -1 56568 26 26 1062 549 1 1 129 529 -1 -1 0 0 31 -1 -1 31 3 0 56568 -1 1 20264 -1 2 31990 -1 0 -1 0 +:\Program Files\MiKTeX 2.9\tex\latex\biblatex\biblatex.sty +TeX:STY:UNIX +1159154 0 0 1 0 1 192 192 1091 587 1 0 112 0 -1 -1 0 0 42 0 0 42 1 0 1 0 0 0 0 R.scripts.Rnw TeX:RNW -17838075 0 -1 32619 -1 29572 78 78 1114 601 1 1 758 352 -1 -1 0 0 31 -1 -1 31 3 0 29572 -1 1 75574 -1 2 27591 -1 0 -1 0 -usingr.sty -TeX:STY -1060850 1 52 13 52 22 234 234 1270 724 0 0 395 352 -1 -1 0 0 25 0 0 25 1 0 22 52 0 0 0 +286273531 0 -1 85396 -1 85397 78 78 1114 601 1 1 249 138 -1 -1 0 0 31 -1 -1 31 3 0 85397 -1 1 75574 -1 2 27591 -1 0 -1 0 R.stats.rnw TeX:RNW -17838075 0 375 108 -1 19961 26 26 931 556 1 1 435 352 -1 -1 0 0 31 -1 -1 31 3 0 19961 -1 1 66597 -1 2 70247 -1 0 -1 0 +17838075 0 -1 11526 -1 19961 26 26 931 556 1 1 237 552 -1 -1 0 0 31 -1 -1 31 3 0 19961 -1 1 66597 -1 2 70247 -1 0 -1 0 R.functions.Rnw TeX:RNW -17838075 1 -1 14641 -1 15508 130 130 1166 653 1 1 180 352 -1 -1 0 0 264 -1 -1 264 1 0 15508 -1 0 -1 0 -R.plotting.Rnw -TeX:RNW -17838075 0 -1 29978 -1 15896 130 130 1166 559 1 1 622 160 -1 -1 0 0 31 -1 -1 31 3 0 15896 -1 1 178031 -1 2 148607 -1 0 -1 0 +17838075 1 -1 14641 -1 15508 130 130 1166 653 1 1 129 552 -1 -1 0 0 264 -1 -1 264 1 0 15508 -1 0 -1 0 R.data.Rnw TeX:RNW -17838075 0 -1 16680 -1 30152 26 26 977 443 1 1 180 288 -1 -1 0 0 31 -1 -1 31 2 0 30152 -1 1 49186 -1 0 -1 0 -R.data.io.Rnw -TeX:RNW -17838075 0 -1 31229 -1 42738 0 0 1498 379 1 1 554 224 -1 -1 0 0 31 -1 -1 31 1 0 42738 -1 0 -1 0 +17838075 0 -1 10055 -1 30152 26 26 977 443 1 1 597 529 -1 -1 0 0 31 -1 -1 31 2 0 30152 -1 1 49186 -1 0 -1 0 using-r-main-crc.tex TeX -269496315 8 -1 168591 -1 168556 132 132 1426 991 1 1 282 672 -1 -1 0 0 49 -1 -1 49 1 0 168556 -1 0 -1 0 -:\Users\Aphalo\Documents\RAnalyses\RFR-Viikki-field\data-latest\Viikki Tower_TableHour.dat -DATA -273678578 0 0 1 0 1 0 0 1528 316 1 0 -12814 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0 -:\Campbellsci\PC400\Viikki Tower_Public.dat -DATA -273678578 0 0 1 0 1 0 0 1528 316 1 0 114 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0 -:\Users\Aphalo\Documents\Own_references\all_references_dedup.bib -BibTeX -269485042 0 0 1 0 1 44 44 1522 998 1 1 152 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 -1 0 -:\Users\Aphalo\Documents\Own_references\libib-export\helka_library_20220807_094148.csv -DATA:UNIX -273776882 0 0 1 0 1 44 44 1522 998 1 0 132 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0 -:\Users\Aphalo\Documents\Instrumentation\Vaisala-WXT-profiles\WXT536-2021-06-09.wxc +269496315 0 -1 119312 -1 119312 0 0 1942 992 1 1 129 207 -1 -1 0 0 49 -1 -1 49 1 0 119312 -1 0 -1 0 +:\Users\Aphalo\Documents\Own_talks\r4p-training-2016\talk.prj DATA -273678578 0 0 1 86 24 88 88 1933 889 1 0 454 182 -1 -1 0 0 14 0 0 14 1 0 24 86 0 0 0 -:\Users\Aphalo\Documents\LaTeX-various\labels\LABELS.prj +273678578 0 0 1 0 1 128 128 1027 523 1 0 112 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0 +:\Users\Aphalo\Documents\Own_teaching\Valdivia-2022\slides-renewed\lectures-2022.prj DATA -273678578 0 0 1 0 1 88 88 1382 947 1 0 132 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0 -:\Users\Aphalo\Documents\Own_manuscripts\Books\learnr-book-extra\R-GG-colors.Rnw -TeX:RNW -269496315 0 -1 0 -1 0 352 352 1646 1211 1 1 152 -6110 -1 -1 0 0 -1 -1 -1 -1 1 0 0 -1 0 -1 0 -:\Users\Aphalo\Documents\Own_manuscripts\Books\learnr-book-extra\R.plotting-extra.Rnw -TeX:RNW -269496315 0 -1 0 -1 0 308 308 1602 1167 1 1 152 -11520 -1 -1 0 0 -1 -1 -1 -1 1 0 0 -1 0 -1 0 -using-r-main-crc.ind -TeX:AUX:UNIX -269594610 8 251 1 250 1 220 220 1514 1079 1 0 132 1170 -1 -1 0 0 17 0 0 17 1 0 1 250 0 0 0 -:\Users\Aphalo\Documents\Own_manuscripts\Books\learnr-book-extra\R-GG-text.Rnw -TeX:RNW -269496315 0 -1 0 -1 0 132 132 1426 991 1 1 152 -10666 -1 -1 0 0 -1 -1 -1 -1 1 0 0 -1 0 -1 0 -:\Users\Aphalo\Documents\Own_manuscripts\Books\learnr-book-extra\R-GG-flipped-axes.Rnw -TeX:RNW -269496315 1 -1 10109 -1 11880 264 264 1558 1123 1 1 152 5902 -1 -1 0 0 30 -1 -1 30 1 0 11880 -1 0 -1 0 -:\Users\Aphalo\Documents\Own_manuscripts\Books\learnr-book-extra\learn-r-extra-web.Rnw +273678578 0 0 1 0 1 128 128 1535 587 1 0 103 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0 +R.data.io.Rnw TeX:RNW -269496315 0 -1 702 -1 623 88 88 1382 947 1 1 418 -156 -1 -1 0 0 -1 -1 -1 -1 1 0 623 -1 0 -1 0 -:\Program Files\MiKTeX 2.9\tex\latex\biblatex\biblatex.sty -TeX:STY:UNIX -269594610 0 7977 70 7977 73 64 64 977 575 0 0 1042 208 -1 -1 0 0 42 0 0 42 1 0 73 7977 0 0 0 -:\Users\Aphalo\AppData\Roaming\WinEdt Team\WinEdt 11\ConfigEx\Toolbar.ini -DATA:INI:EDT -269485050 0 325 1 300 51 220 220 1342 1335 1 1 797 280 -1 -1 0 0 -1 -1 -1 -1 1 0 51 300 0 -1 0 +17838075 0 512 98 -1 42738 0 0 1498 379 1 1 1556 690 -1 -1 0 0 31 -1 -1 31 1 0 42738 -1 0 -1 0 +preface.tex +TeX +269496315 0 -1 0 -1 0 228 228 2555 1220 1 1 148 0 -1 -1 0 0 18 -1 -1 18 1 0 0 -1 0 -1 0 +frontmatter\preface.tex +TeX +269496315 0 -1 14557 -1 14663 130 130 1573 499 0 1 2612 950 -1 -1 0 0 18 -1 -1 18 1 0 14663 -1 0 -1 0 .gitignore DATA 273678578 0 10 1 21 1 25 25 1741 444 1 0 71 294 -1 -1 0 0 12 0 0 12 1 0 1 21 0 0 0 -:\Users\Aphalo\Documents\RAnalyses\anders-kumpula-2015-2016\hourly-spectra.nb.Rmd -DATA -273678578 0 0 1 0 1 182 182 1586 547 1 0 71 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0 manual-edit DATA 273678578 0 0 1 0 1 208 208 1586 651 1 0 71 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0 -:\Users\Aphalo\Documents\Own_manuscripts\Books\using-r\frontmatter\preface.tex -TeX -269496315 0 -1 0 -1 0 104 104 1482 547 0 1 39 -1050 -1 -1 0 0 -1 -1 -1 -1 1 0 0 -1 0 -1 0 -:\Program Files\MiKTeX 2.9\tex\latex\polyglossia\gloss-english.ldf -TeX:STY:UNIX -269594610 7 125 1 124 1 0 0 1065 329 0 0 25 612 -1 -1 0 0 66 0 0 66 1 0 1 124 0 0 0 rbooks.bib BibTeX:UNIX 269583346 0 331 38 328 36 52 52 872 313 1 1 369 357 -1 -1 0 0 21 0 0 21 1 0 36 328 0 -1 0 :\ProgramData\MiKTeX\2.9\miktex\log\miktex-fc-cache_admin.log DATA 273678578 0 0 1 0 1 32 32 2042 643 1 0 87 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0 -:\Users\aphalo\Qsync\RFR-Viikki-field\data-2018-october\data-2016-3\CR6Series_TableDay.dat -DATA -273678578 0 0 1 0 1 104 104 1606 538 1 0 73 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0 CRC\Aphalo - contract - signed.pdf DATA 273744114 0 0 1 0 1 160 160 1658 539 1 0 87 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0 -cut-from-plots.tex -TeX -269496315 0 -1 5047 -1 12688 234 234 1710 723 1 1 265 357 -1 -1 0 0 18 -1 -1 18 1 0 12688 -1 0 -1 0 -R.ploting-extra.Rnw -TeX:RNW -269496315 0 -1 549 -1 3549 64 64 1303 475 1 1 105 273 -1 -1 0 0 31 -1 -1 31 1 0 3549 -1 0 -1 0 -R.more.plotting.Rnw -TeX:RNW -286273515 0 -1 43294 -1 43292 26 26 924 603 1 1 105 252 -1 -1 0 0 30 -1 -1 30 1 0 43292 -1 0 -1 0 -:\aphalo\Documents\RPackages\photobiologyFilters\data-raw\screen-nets-kotilainen-et-al\ScreensNets_irrad_trans.txt -ASCII -273688443 0 0 1 266148 1 96 96 1594 475 1 0 97 5589108 -1 -1 0 0 -1 -1 -1 -1 1 0 1 266148 0 0 0 -:\aphalo\Documents\RPackages\repository_tools\reinstall-packages.R -R -269485042 0 1 17 3 1 0 0 965 456 1 0 73 51 -1 -1 0 0 -1 -1 -1 -1 1 0 1 3 0 0 0 -:\aphalo\Documents\RAnalyses\anders-kumpula-2015-2016\Anders-2013-2017\kumpula_par_2013to17_MaySep.dat -DATA:UNIX -273776882 0 0 1 0 1 26 26 965 305 1 0 73 0 -1 -1 0 0 71 0 0 71 1 0 1 0 0 0 0 -:\aphalo\Documents\Own_research_data\Helsinki\Summer2015\Radiation\CR6_HU_TableHour.dat -DATA -273678578 0 0 1 0 1 0 0 1178 360 1 0 87 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0 -:\aphalo\Documents\Own_research_data\Helsinki\Summer2015\Radiation\CR6_HU_TableDay.dat -DATA -273678578 0 0 1 0 1 160 160 1338 520 1 0 87 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0 -:\Users\aphalo\Qsync\RFR-Viikki-field\CR6Series_Public.dat -DATA -273678578 0 0 1 0 1 160 160 1338 520 1 0 87 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0 -:\Users\aphalo\Qsync\RFR-Viikki-field\CR6Series_TableDay.dat -DATA -273678578 0 0 1 0 190033 78 78 1442 605 1 0 87 0 -1 -1 0 0 84 0 0 84 1 0 190033 0 0 0 0 -:\Users\aphalo\AppData\Roaming\WinEdt Team\WinEdt 10\ConfigEx\Toolbar.ini -DATA:INI:EDT -269485050 0 129 15 129 88 128 128 1422 578 1 1 975 252 -1 -1 0 0 83 0 0 83 1 0 88 129 0 -1 0 -:\Users\aphalo\AppData\Roaming\WinEdt Team\WinEdt 10\ConfigEx\MainMenu.ini -DATA:INI:EDT -269485050 0 4357 1 4357 75 32 32 1358 476 1 1 845 546 -1 -1 0 0 -1 -1 -1 -1 1 0 75 4357 0 -1 0 -:\Users\aphalo\AppData\Roaming\WinEdt Team\WinEdt 10\Upgrade20180507.log -DATA -307233010 0 0 1 0 1 96 96 1792 546 1 0 87 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0 -:\Users\aphalo\AppData\Roaming\WinEdt Team\WinEdt 10\ConfigEx\UserPreferences.ini -DATA:INI:EDT -269485050 0 0 1 0 1 160 160 1454 610 1 1 105 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0 -:\Users\aphalo\AppData\Roaming\WinEdt Team\WinEdt 10\ContribManager\RManager\Readme.txt -ASCII -273688443 0 0 1 0 1 224 224 1518 674 1 0 87 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0 -:\Users\aphalo\Downloads\winedt\ContribManager_102\ContribManager\Install.edt -ASCII:EDT -269494138 0 0 1 14 125 192 192 1824 785 1 0 1327 294 -1 -1 0 0 21 0 0 21 1 0 125 14 0 0 0 -:\Users\aphalo\AppData\Roaming\WinEdt Team\WinEdt 10\Exec\R\Knitr.R -R -269485042 0 0 1 0 1 32 32 1728 482 0 0 27 0 -1 -1 0 0 30 0 0 30 1 0 1 0 0 0 0 -R.maps.Rnw -TeX:RNW -286273531 2 -1 34382 -1 34392 64 64 974 522 1 1 255 168 -1 -1 0 0 462 -1 -1 462 1 0 34392 -1 0 -1 0 -backups\R.stats.rnw.sav -TeX:RNW -269496315 1 -1 11478 -1 13425 128 128 1584 460 0 1 204 440 -1 -1 0 0 -1 -1 -1 -1 1 0 13425 -1 0 -1 0 -:\Program Files\Ocean Optics\OmniDriver\install.log -DATA -273678578 0 0 1 0 1 104 104 1009 634 1 0 73 -2350 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0 -:\aphalo\Documents\Own_research_data\Helsinki\Logger-field-Viikki\data-2017-1\CR6Series_TableMinute.dat -DATA -273678578 0 0 1 133963 59 104 104 1009 634 1 0 545 1568 -1 -1 0 0 -1 -1 -1 -1 1 0 59 133963 0 0 0 -test-verbatim-spacing.Rnw -TeX:RNW -286273531 0 -1 113 -1 113 208 208 1113 738 0 1 41 64 -1 -1 0 0 -1 -1 -1 -1 1 0 113 -1 0 -1 0 -test-verbatim-spacing.tex -TeX -269496315 1 -1 2169 -1 2163 234 234 1139 745 0 1 569 352 -1 -1 0 0 69 -1 -1 69 1 0 2163 -1 0 -1 0 -verbatim-test.tex -TeX -269496315 1 -1 0 -1 147 130 130 1035 660 0 1 41 96 -1 -1 0 0 -1 -1 -1 -1 1 0 147 -1 0 -1 0 README.md DATA 273678578 0 18 48 8 1 182 182 1133 599 1 0 73 128 -1 -1 0 0 11 0 0 11 1 0 1 8 0 0 0 @@ -373,7 +262,7 @@ TeX:UNIX > *rbooks.bib *references.bib -*frontmatter/preface +*preface.Rnw *R.intro.Rnw *R.as.calculator.Rnw *R.scripts.Rnw diff --git a/appendixes.prj.bak b/appendixes.prj.bak index f8dc48f6..3436c58d 100644 --- a/appendixes.prj.bak +++ b/appendixes.prj.bak @@ -1,193 +1,82 @@ 36 Patch Control -0 -0 +1 +1 1 using-r-main-crc.Rnw -120 +83 12 -0 +8 using-r-main-crc.Rnw TeX:RNW:UTF-8 -420491259 0 -1 5881 -1 5885 208 208 1244 731 1 1 452 928 -1 -1 0 0 33 0 0 33 2 0 5885 -1 1 5161 -1 0 -1 0 +152055803 0 -1 6324 -1 6474 208 208 1244 731 1 1 129 345 -1 -1 0 0 33 0 0 33 2 0 6474 -1 1 5300 -1 0 -1 0 +R.plotting.Rnw +TeX:RNW +17838075 0 -1 17724 -1 17050 130 130 1166 559 1 1 345 552 -1 -1 0 0 31 -1 -1 31 3 0 17050 -1 1 189829 -1 2 160405 -1 0 -1 0 +preface.Rnw +TeX:RNW +17838075 0 131 126 -1 14049 130 130 1573 499 1 1 141 552 -1 -1 0 0 18 -1 -1 18 1 0 14049 -1 0 -1 0 +usingr.sty +TeX:STY +1060850 0 94 1 65 39 234 234 1270 724 0 0 484 161 -1 -1 0 0 25 0 0 25 1 0 39 65 0 0 0 R.intro.Rnw TeX:RNW -17838075 0 62 76 -1 11 182 182 1218 705 1 1 367 0 -1 -1 0 0 261 -1 -1 261 1 0 11 -1 0 -1 0 -frontmatter\preface.tex -TeX -1060859 0 91 92 -1 9171 130 130 1573 499 0 1 418 224 -1 -1 0 0 18 -1 -1 18 1 0 9171 -1 0 -1 0 +17838075 0 -1 3451 -1 11 182 182 1218 705 1 1 261 0 -1 -1 0 0 261 -1 -1 261 1 0 11 -1 0 -1 0 references.bib BibTeX -1049586 0 363 1 412 1 0 0 820 242 0 1 61 64 -1 -1 0 0 23 0 0 23 1 0 1 412 0 -1 0 +1049586 0 363 1 412 1 0 0 820 242 0 1 45 529 -1 -1 0 0 23 0 0 23 1 0 1 412 0 -1 0 R.as.calculator.Rnw TeX:RNW -17838075 0 906 6 -1 37914 26 26 1062 549 1 1 282 352 -1 -1 0 0 31 -1 -1 31 3 0 37914 -1 1 20156 -1 2 31882 -1 0 -1 0 +17838075 0 -1 56568 -1 56568 26 26 1062 549 1 1 129 529 -1 -1 0 0 31 -1 -1 31 3 0 56568 -1 1 20264 -1 2 31990 -1 0 -1 0 +:\Program Files\MiKTeX 2.9\tex\latex\biblatex\biblatex.sty +TeX:STY:UNIX +1159154 0 0 1 0 1 192 192 1091 587 1 0 112 0 -1 -1 0 0 42 0 0 42 1 0 1 0 0 0 0 R.scripts.Rnw TeX:RNW -17838075 0 -1 32619 -1 29572 78 78 1114 601 1 1 758 352 -1 -1 0 0 31 -1 -1 31 3 0 29572 -1 1 75574 -1 2 27591 -1 0 -1 0 -usingr.sty -TeX:STY -1060850 1 52 13 52 22 234 234 1270 724 0 0 395 352 -1 -1 0 0 25 0 0 25 1 0 22 52 0 0 0 +286273531 0 -1 85858 -1 85925 78 78 1114 601 1 1 129 391 -1 -1 0 0 31 -1 -1 31 3 0 85925 -1 1 75574 -1 2 27591 -1 0 -1 0 R.stats.rnw TeX:RNW -17838075 0 375 108 -1 19961 26 26 931 556 1 1 435 352 -1 -1 0 0 31 -1 -1 31 3 0 19961 -1 1 66597 -1 2 70247 -1 0 -1 0 +17838075 0 -1 11526 -1 19961 26 26 931 556 1 1 237 552 -1 -1 0 0 31 -1 -1 31 3 0 19961 -1 1 66597 -1 2 70247 -1 0 -1 0 R.functions.Rnw TeX:RNW -17838075 1 -1 14641 -1 15508 130 130 1166 653 1 1 180 352 -1 -1 0 0 264 -1 -1 264 1 0 15508 -1 0 -1 0 -R.plotting.Rnw -TeX:RNW -17838075 0 -1 29978 -1 15896 130 130 1166 559 1 1 622 160 -1 -1 0 0 31 -1 -1 31 3 0 15896 -1 1 178031 -1 2 148607 -1 0 -1 0 +17838075 1 -1 14641 -1 15508 130 130 1166 653 1 1 129 552 -1 -1 0 0 264 -1 -1 264 1 0 15508 -1 0 -1 0 R.data.Rnw TeX:RNW -17838075 0 -1 16680 -1 30152 26 26 977 443 1 1 180 288 -1 -1 0 0 31 -1 -1 31 2 0 30152 -1 1 49186 -1 0 -1 0 -R.data.io.Rnw -TeX:RNW -17838075 0 -1 31229 -1 42738 0 0 1498 379 1 1 554 224 -1 -1 0 0 31 -1 -1 31 1 0 42738 -1 0 -1 0 +17838075 0 -1 10055 -1 30152 26 26 977 443 1 1 597 529 -1 -1 0 0 31 -1 -1 31 2 0 30152 -1 1 49186 -1 0 -1 0 using-r-main-crc.tex TeX -269496315 8 -1 168591 -1 168556 132 132 1426 991 1 1 282 672 -1 -1 0 0 49 -1 -1 49 1 0 168556 -1 0 -1 0 -:\Users\Aphalo\Documents\RAnalyses\RFR-Viikki-field\data-latest\Viikki Tower_TableHour.dat -DATA -273678578 0 0 1 0 1 0 0 1528 316 1 0 -12814 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0 -:\Campbellsci\PC400\Viikki Tower_Public.dat -DATA -273678578 0 0 1 0 1 0 0 1528 316 1 0 114 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0 -:\Users\Aphalo\Documents\Own_references\all_references_dedup.bib -BibTeX -269485042 0 0 1 0 1 44 44 1522 998 1 1 152 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 -1 0 -:\Users\Aphalo\Documents\Own_references\libib-export\helka_library_20220807_094148.csv -DATA:UNIX -273776882 0 0 1 0 1 44 44 1522 998 1 0 132 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0 -:\Users\Aphalo\Documents\Instrumentation\Vaisala-WXT-profiles\WXT536-2021-06-09.wxc +269496315 0 -1 119312 -1 119312 0 0 1942 992 1 1 129 207 -1 -1 0 0 49 -1 -1 49 1 0 119312 -1 0 -1 0 +:\Users\Aphalo\Documents\Own_talks\r4p-training-2016\talk.prj DATA -273678578 0 0 1 86 24 88 88 1933 889 1 0 454 182 -1 -1 0 0 14 0 0 14 1 0 24 86 0 0 0 -:\Users\Aphalo\Documents\LaTeX-various\labels\LABELS.prj +273678578 0 0 1 0 1 128 128 1027 523 1 0 112 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0 +:\Users\Aphalo\Documents\Own_teaching\Valdivia-2022\slides-renewed\lectures-2022.prj DATA -273678578 0 0 1 0 1 88 88 1382 947 1 0 132 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0 -:\Users\Aphalo\Documents\Own_manuscripts\Books\learnr-book-extra\R-GG-colors.Rnw -TeX:RNW -269496315 0 -1 0 -1 0 352 352 1646 1211 1 1 152 -6110 -1 -1 0 0 -1 -1 -1 -1 1 0 0 -1 0 -1 0 -:\Users\Aphalo\Documents\Own_manuscripts\Books\learnr-book-extra\R.plotting-extra.Rnw -TeX:RNW -269496315 0 -1 0 -1 0 308 308 1602 1167 1 1 152 -11520 -1 -1 0 0 -1 -1 -1 -1 1 0 0 -1 0 -1 0 -using-r-main-crc.ind -TeX:AUX:UNIX -269594610 8 251 1 250 1 220 220 1514 1079 1 0 132 1170 -1 -1 0 0 17 0 0 17 1 0 1 250 0 0 0 -:\Users\Aphalo\Documents\Own_manuscripts\Books\learnr-book-extra\R-GG-text.Rnw -TeX:RNW -269496315 0 -1 0 -1 0 132 132 1426 991 1 1 152 -10666 -1 -1 0 0 -1 -1 -1 -1 1 0 0 -1 0 -1 0 -:\Users\Aphalo\Documents\Own_manuscripts\Books\learnr-book-extra\R-GG-flipped-axes.Rnw -TeX:RNW -269496315 1 -1 10109 -1 11880 264 264 1558 1123 1 1 152 5902 -1 -1 0 0 30 -1 -1 30 1 0 11880 -1 0 -1 0 -:\Users\Aphalo\Documents\Own_manuscripts\Books\learnr-book-extra\learn-r-extra-web.Rnw +273678578 0 0 1 0 1 128 128 1535 587 1 0 103 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0 +R.data.io.Rnw TeX:RNW -269496315 0 -1 702 -1 623 88 88 1382 947 1 1 418 -156 -1 -1 0 0 -1 -1 -1 -1 1 0 623 -1 0 -1 0 -:\Program Files\MiKTeX 2.9\tex\latex\biblatex\biblatex.sty -TeX:STY:UNIX -269594610 0 7977 70 7977 73 64 64 977 575 0 0 1042 208 -1 -1 0 0 42 0 0 42 1 0 73 7977 0 0 0 -:\Users\Aphalo\AppData\Roaming\WinEdt Team\WinEdt 11\ConfigEx\Toolbar.ini -DATA:INI:EDT -269485050 0 325 1 300 51 220 220 1342 1335 1 1 797 280 -1 -1 0 0 -1 -1 -1 -1 1 0 51 300 0 -1 0 +17838075 0 512 98 -1 42738 0 0 1498 379 1 1 1556 690 -1 -1 0 0 31 -1 -1 31 1 0 42738 -1 0 -1 0 +preface.tex +TeX +269496315 0 -1 0 -1 0 228 228 2555 1220 1 1 148 0 -1 -1 0 0 18 -1 -1 18 1 0 0 -1 0 -1 0 +frontmatter\preface.tex +TeX +269496315 0 -1 14557 -1 14663 130 130 1573 499 0 1 2612 950 -1 -1 0 0 18 -1 -1 18 1 0 14663 -1 0 -1 0 .gitignore DATA 273678578 0 10 1 21 1 25 25 1741 444 1 0 71 294 -1 -1 0 0 12 0 0 12 1 0 1 21 0 0 0 -:\Users\Aphalo\Documents\RAnalyses\anders-kumpula-2015-2016\hourly-spectra.nb.Rmd -DATA -273678578 0 0 1 0 1 182 182 1586 547 1 0 71 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0 manual-edit DATA 273678578 0 0 1 0 1 208 208 1586 651 1 0 71 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0 -:\Users\Aphalo\Documents\Own_manuscripts\Books\using-r\frontmatter\preface.tex -TeX -269496315 0 -1 0 -1 0 104 104 1482 547 0 1 39 -1050 -1 -1 0 0 -1 -1 -1 -1 1 0 0 -1 0 -1 0 -:\Program Files\MiKTeX 2.9\tex\latex\polyglossia\gloss-english.ldf -TeX:STY:UNIX -269594610 7 125 1 124 1 0 0 1065 329 0 0 25 612 -1 -1 0 0 66 0 0 66 1 0 1 124 0 0 0 rbooks.bib BibTeX:UNIX 269583346 0 331 38 328 36 52 52 872 313 1 1 369 357 -1 -1 0 0 21 0 0 21 1 0 36 328 0 -1 0 :\ProgramData\MiKTeX\2.9\miktex\log\miktex-fc-cache_admin.log DATA 273678578 0 0 1 0 1 32 32 2042 643 1 0 87 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0 -:\Users\aphalo\Qsync\RFR-Viikki-field\data-2018-october\data-2016-3\CR6Series_TableDay.dat -DATA -273678578 0 0 1 0 1 104 104 1606 538 1 0 73 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0 CRC\Aphalo - contract - signed.pdf DATA 273744114 0 0 1 0 1 160 160 1658 539 1 0 87 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0 -cut-from-plots.tex -TeX -269496315 0 -1 5047 -1 12688 234 234 1710 723 1 1 265 357 -1 -1 0 0 18 -1 -1 18 1 0 12688 -1 0 -1 0 -R.ploting-extra.Rnw -TeX:RNW -269496315 0 -1 549 -1 3549 64 64 1303 475 1 1 105 273 -1 -1 0 0 31 -1 -1 31 1 0 3549 -1 0 -1 0 -R.more.plotting.Rnw -TeX:RNW -286273515 0 -1 43294 -1 43292 26 26 924 603 1 1 105 252 -1 -1 0 0 30 -1 -1 30 1 0 43292 -1 0 -1 0 -:\aphalo\Documents\RPackages\photobiologyFilters\data-raw\screen-nets-kotilainen-et-al\ScreensNets_irrad_trans.txt -ASCII -273688443 0 0 1 266148 1 96 96 1594 475 1 0 97 5589108 -1 -1 0 0 -1 -1 -1 -1 1 0 1 266148 0 0 0 -:\aphalo\Documents\RPackages\repository_tools\reinstall-packages.R -R -269485042 0 1 17 3 1 0 0 965 456 1 0 73 51 -1 -1 0 0 -1 -1 -1 -1 1 0 1 3 0 0 0 -:\aphalo\Documents\RAnalyses\anders-kumpula-2015-2016\Anders-2013-2017\kumpula_par_2013to17_MaySep.dat -DATA:UNIX -273776882 0 0 1 0 1 26 26 965 305 1 0 73 0 -1 -1 0 0 71 0 0 71 1 0 1 0 0 0 0 -:\aphalo\Documents\Own_research_data\Helsinki\Summer2015\Radiation\CR6_HU_TableHour.dat -DATA -273678578 0 0 1 0 1 0 0 1178 360 1 0 87 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0 -:\aphalo\Documents\Own_research_data\Helsinki\Summer2015\Radiation\CR6_HU_TableDay.dat -DATA -273678578 0 0 1 0 1 160 160 1338 520 1 0 87 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0 -:\Users\aphalo\Qsync\RFR-Viikki-field\CR6Series_Public.dat -DATA -273678578 0 0 1 0 1 160 160 1338 520 1 0 87 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0 -:\Users\aphalo\Qsync\RFR-Viikki-field\CR6Series_TableDay.dat -DATA -273678578 0 0 1 0 190033 78 78 1442 605 1 0 87 0 -1 -1 0 0 84 0 0 84 1 0 190033 0 0 0 0 -:\Users\aphalo\AppData\Roaming\WinEdt Team\WinEdt 10\ConfigEx\Toolbar.ini -DATA:INI:EDT -269485050 0 129 15 129 88 128 128 1422 578 1 1 975 252 -1 -1 0 0 83 0 0 83 1 0 88 129 0 -1 0 -:\Users\aphalo\AppData\Roaming\WinEdt Team\WinEdt 10\ConfigEx\MainMenu.ini -DATA:INI:EDT -269485050 0 4357 1 4357 75 32 32 1358 476 1 1 845 546 -1 -1 0 0 -1 -1 -1 -1 1 0 75 4357 0 -1 0 -:\Users\aphalo\AppData\Roaming\WinEdt Team\WinEdt 10\Upgrade20180507.log -DATA -307233010 0 0 1 0 1 96 96 1792 546 1 0 87 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0 -:\Users\aphalo\AppData\Roaming\WinEdt Team\WinEdt 10\ConfigEx\UserPreferences.ini -DATA:INI:EDT -269485050 0 0 1 0 1 160 160 1454 610 1 1 105 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0 -:\Users\aphalo\AppData\Roaming\WinEdt Team\WinEdt 10\ContribManager\RManager\Readme.txt -ASCII -273688443 0 0 1 0 1 224 224 1518 674 1 0 87 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0 -:\Users\aphalo\Downloads\winedt\ContribManager_102\ContribManager\Install.edt -ASCII:EDT -269494138 0 0 1 14 125 192 192 1824 785 1 0 1327 294 -1 -1 0 0 21 0 0 21 1 0 125 14 0 0 0 -:\Users\aphalo\AppData\Roaming\WinEdt Team\WinEdt 10\Exec\R\Knitr.R -R -269485042 0 0 1 0 1 32 32 1728 482 0 0 27 0 -1 -1 0 0 30 0 0 30 1 0 1 0 0 0 0 -R.maps.Rnw -TeX:RNW -286273531 2 -1 34382 -1 34392 64 64 974 522 1 1 255 168 -1 -1 0 0 462 -1 -1 462 1 0 34392 -1 0 -1 0 -backups\R.stats.rnw.sav -TeX:RNW -269496315 1 -1 11478 -1 13425 128 128 1584 460 0 1 204 440 -1 -1 0 0 -1 -1 -1 -1 1 0 13425 -1 0 -1 0 -:\Program Files\Ocean Optics\OmniDriver\install.log -DATA -273678578 0 0 1 0 1 104 104 1009 634 1 0 73 -2350 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0 -:\aphalo\Documents\Own_research_data\Helsinki\Logger-field-Viikki\data-2017-1\CR6Series_TableMinute.dat -DATA -273678578 0 0 1 133963 59 104 104 1009 634 1 0 545 1568 -1 -1 0 0 -1 -1 -1 -1 1 0 59 133963 0 0 0 -test-verbatim-spacing.Rnw -TeX:RNW -286273531 0 -1 113 -1 113 208 208 1113 738 0 1 41 64 -1 -1 0 0 -1 -1 -1 -1 1 0 113 -1 0 -1 0 -test-verbatim-spacing.tex -TeX -269496315 1 -1 2169 -1 2163 234 234 1139 745 0 1 569 352 -1 -1 0 0 69 -1 -1 69 1 0 2163 -1 0 -1 0 -verbatim-test.tex -TeX -269496315 1 -1 0 -1 147 130 130 1035 660 0 1 41 96 -1 -1 0 0 -1 -1 -1 -1 1 0 147 -1 0 -1 0 README.md DATA 273678578 0 18 48 8 1 182 182 1133 599 1 0 73 128 -1 -1 0 0 11 0 0 11 1 0 1 8 0 0 0 @@ -373,7 +262,7 @@ TeX:UNIX > *rbooks.bib *references.bib -*frontmatter/preface +*preface.Rnw *R.intro.Rnw *R.as.calculator.Rnw *R.scripts.Rnw diff --git a/cloudindex.idx b/cloudindex.idx index 4602ac7d..9233dfb1 100644 --- a/cloudindex.idx +++ b/cloudindex.idx @@ -1,1173 +1,118 @@ -\indexentry{print()}{7} -\indexentry{help()}{12} -\indexentry{help()}{12} -\indexentry{help()}{12} -\indexentry{citation()}{13} -\indexentry{numeric}{18} -\indexentry{+}{18} -\indexentry{-}{18} -\indexentry{*}{18} -\indexentry{/}{18} -\indexentry{exp()}{19} -\indexentry{sin()}{19} -\indexentry{pi}{19} -\indexentry{sqrt()}{19} -\indexentry{sin()}{19} -\indexentry{log(), log10(), log2()}{19} -\indexentry{exp()}{19} -\indexentry{<-}{20} -\indexentry{->}{21} -\indexentry{=}{21} -\indexentry{<-}{21} -\indexentry{numeric}{21} -\indexentry{numeric}{21} -\indexentry{is.numeric()}{21} -\indexentry{numeric()}{21} -\indexentry{integer}{21} -\indexentry{double}{22} -\indexentry{double()}{22} -\indexentry{vector}{22} -\indexentry{c()}{22} -\indexentry{append()}{23} -\indexentry{seq()}{23} -\indexentry{:}{23} -\indexentry{rep()}{23} -\indexentry{numeric()}{24} -\indexentry{length()}{24} -\indexentry{rm()}{25} -\indexentry{ls()}{25} -\indexentry{NA}{25} -\indexentry{NaN}{25} -\indexentry{Inf}{25} -\indexentry{-Inf}{25} -\indexentry{Inf}{25} -\indexentry{-Inf}{25} -\indexentry{NA}{26} -\indexentry{NA}{26} -\indexentry{NA}{26} -\indexentry{NA}{26} -\indexentry{NA}{26} -\indexentry{NA}{26} -\indexentry{NA}{26} -\indexentry{is.na()}{26} -\indexentry{integer}{27} -\indexentry{\%/\%}{27} -\indexentry{\%\%}{27} -\indexentry{TRUE}{27} -\indexentry{FALSE}{27} -\indexentry{round()}{28} -\indexentry{signif()}{28} -\indexentry{trunc()}{29} -\indexentry{ceiling()}{29} -\indexentry{trunc()}{29} -\indexentry{trunc()}{29} -\indexentry{ceiling()}{29} -\indexentry{abs()}{29} -\indexentry{+}{29} -\indexentry{-}{29} -\indexentry{trunc()}{29} -\indexentry{ceiling()}{29} -\indexentry{trunc()}{29} -\indexentry{ceiling()}{29} -\indexentry{logical}{29} -\indexentry{logical}{29} -\indexentry{\&}{30} -\indexentry{\textbar }{30} -\indexentry{\&\&}{30} -\indexentry{\textbar \textbar }{30} -\indexentry{!}{30} -\indexentry{any()}{30} -\indexentry{all()}{30} -\indexentry{all()}{30} -\indexentry{any()}{30} -\indexentry{>}{32} -\indexentry{<}{32} -\indexentry{>=}{32} -\indexentry{<=}{32} -\indexentry{==}{32} -\indexentry{!=}{32} -\indexentry{.Machine\$double.eps}{34} -\indexentry{.Machine\$double.neg.eps}{34} -\indexentry{.Machine\$double.max}{34} -\indexentry{.Machine\$double.min}{34} -\indexentry{double}{35} -\indexentry{-Inf}{35} -\indexentry{Inf}{35} -\indexentry{integer}{35} -\indexentry{integer}{35} -\indexentry{.Machine\$integer.max}{35} -\indexentry{double}{35} -\indexentry{integer}{35} -\indexentry{double}{35} -\indexentry{integer}{35} -\indexentry{integer}{35} -\indexentry{\^{}}{36} -\indexentry{double}{36} -\indexentry{*}{36} -\indexentry{abs()}{36} -\indexentry{\%in\%}{38} -\indexentry{is.element()}{38} -\indexentry{!}{39} -\indexentry{\%in\%}{39} -\indexentry{is.element()}{39} -\indexentry{|}{39} -\indexentry{\%in\%}{39} -\indexentry{is.element()}{39} -\indexentry{\%in\%}{39} -\indexentry{unique()}{39} -\indexentry{numeric}{40} -\indexentry{character}{40} -\indexentry{numeric}{41} -\indexentry{\%in\%}{41} -\indexentry{character}{41} -\indexentry{print()}{42} -\indexentry{cat()}{42} -\indexentry{cat()}{42} -\indexentry{print()}{42} -\indexentry{cat()}{42} -\indexentry{mode()}{43} -\indexentry{typeof()}{43} -\indexentry{is.character()}{43} -\indexentry{is.numeric()}{43} -\indexentry{is.logical()}{43} -\indexentry{class()}{43} -\indexentry{inherits()}{43} -\indexentry{as.character()}{44} -\indexentry{as.numeric()}{44} -\indexentry{as.logical()}{44} -\indexentry{as.character()}{44} -\indexentry{as.numeric()}{44} -\indexentry{as.logical()}{44} -\indexentry{trunc()}{45} -\indexentry{as.integer()}{45} -\indexentry{length()}{45} -\indexentry{as.numeric()}{45} -\indexentry{format()}{45} -\indexentry{sprintf()}{45} -\indexentry{character}{45} -\indexentry{format()}{45} -\indexentry{sprintf()}{45} -\indexentry{format()}{45} -\indexentry{print()}{45} -\indexentry{format()}{45} -\indexentry{sprintf()}{46} -\indexentry{format()}{46} -\indexentry{sprintf()}{46} -\indexentry{sprintf()}{46} -\indexentry{NA}{46} -\indexentry{NA}{46} -\indexentry{NA\_real\_}{46} -\indexentry{NA\_character\_}{46} -\indexentry{NA}{46} -\indexentry{NA}{46} -\indexentry{logical}{46} -\indexentry{NA}{46} -\indexentry{NA}{46} -\indexentry{letters}{47} -\indexentry{LETTERS}{47} -\indexentry{month.name}{47} -\indexentry{month.abb}{48} -\indexentry{<-}{50} -\indexentry{integer}{51} -\indexentry{numeric}{51} -\indexentry{double}{51} -\indexentry{sort()}{52} -\indexentry{order()}{52} -\indexentry{sort()}{52} -\indexentry{rle()}{53} -\indexentry{matrix}{53} -\indexentry{array}{53} -\indexentry{length()}{53} -\indexentry{dim()}{53} -\indexentry{ncol()}{53} -\indexentry{nrow()}{53} -\indexentry{dim()}{53} -\indexentry{is.vector()}{53} -\indexentry{is.matrix()}{53} -\indexentry{is.array()}{53} -\indexentry{matrix()}{53} -\indexentry{as.matrix()}{53} -\indexentry{matrix()}{53} -\indexentry{matrix()}{54} -\indexentry{matrix}{56} -\indexentry{array()}{57} -\indexentry{unlist()}{58} -\indexentry{as.vector()}{58} -\indexentry{t()}{58} -\indexentry{t()}{58} -\indexentry{\%*\%}{59} -\indexentry{crossprod()}{59} -\indexentry{diag()}{59} -\indexentry{factor}{59} -\indexentry{factor()}{59} -\indexentry{ordered()}{59} -\indexentry{factor()}{60} -\indexentry{factor()}{60} -\indexentry{levels()}{60} -\indexentry{gl()}{60} -\indexentry{gl()}{61} -\indexentry{as.numeric()}{61} -\indexentry{as.numeric()}{61} -\indexentry{as.character()}{61} -\indexentry{as.numeric()}{61} -\indexentry{as.numeric()}{61} -\indexentry{levels()<-}{62} -\indexentry{factor()}{62} -\indexentry{factor()}{63} -\indexentry{factor()}{63} -\indexentry{levels()}{63} -\indexentry{reorder()}{64} -\indexentry{sort()}{64} -\indexentry{order()}{64} -\indexentry{list}{65} -\indexentry{list()}{65} -\indexentry{[[]]}{65} -\indexentry{str()}{66} -\indexentry{append()}{66} -\indexentry{str()}{67} -\indexentry{[[ ]]}{68} -\indexentry{[ ]}{68} -\indexentry{print()}{68} -\indexentry{str()}{68} -\indexentry{unlist()}{68} -\indexentry{str()}{69} -\indexentry{unname()}{69} -\indexentry{unlist()}{69} -\indexentry{data.frame}{69} -\indexentry{data.frame()}{69} -\indexentry{list}{70} -\indexentry{[[]]}{70} -\indexentry{class()}{70} -\indexentry{data.frame}{70} -\indexentry{I()}{72} -\indexentry{I()}{72} -\indexentry{I()}{73} -\indexentry{data.frame()}{73} -\indexentry{\$}{74} -\indexentry{[[]]}{75} -\indexentry{[]}{75} -\indexentry{[[]]}{76} -\indexentry{\$}{76} -\indexentry{\$}{76} -\indexentry{\$}{77} -\indexentry{\$}{77} -\indexentry{\$}{77} -\indexentry{[[]]}{77} -\indexentry{\$}{77} -\indexentry{[[]]}{77} -\indexentry{subset()}{77} -\indexentry{subset()}{77} -\indexentry{subset()}{78} -\indexentry{attach()}{78} -\indexentry{with()}{78} -\indexentry{[ ]}{79} -\indexentry{<-}{79} -\indexentry{attach()}{79} -\indexentry{detach()}{79} -\indexentry{with()}{79} -\indexentry{within()}{79} -\indexentry{attach()}{80} -\indexentry{detach()}{80} -\indexentry{attach()}{80} -\indexentry{detach()}{80} -\indexentry{with()}{80} -\indexentry{within()}{80} -\indexentry{with()}{81} -\indexentry{within()}{81} -\indexentry{attach()}{81} -\indexentry{detach()}{81} -\indexentry{attach()}{81} -\indexentry{detach()}{81} -\indexentry{with()}{81} -\indexentry{within()}{81} -\indexentry{with()}{81} -\indexentry{within()}{81} -\indexentry{attach()}{81} -\indexentry{detach()}{81} -\indexentry{[]}{81} -\indexentry{order()}{82} -\indexentry{order()}{82} -\indexentry{order()}{82} -\indexentry{order()}{82} -\indexentry{order()}{82} -\indexentry{matrix}{82} -\indexentry{array}{82} -\indexentry{order()}{82} -\indexentry{order()}{82} -\indexentry{comment()}{83} -\indexentry{comment()<-}{83} -\indexentry{names()}{83} -\indexentry{dim()}{83} -\indexentry{levels()}{83} -\indexentry{names()<-}{83} -\indexentry{dim()<-}{83} -\indexentry{levels()<-}{83} -\indexentry{attr()}{83} -\indexentry{attr()<-}{83} -\indexentry{attributes()}{83} -\indexentry{attr()}{83} -\indexentry{attr()<-}{83} -\indexentry{attributes()}{83} -\indexentry{str()}{83} -\indexentry{lm()}{84} -\indexentry{data()}{85} -\indexentry{data()}{85} -\indexentry{save()}{85} -\indexentry{save()}{86} -\indexentry{load()}{86} -\indexentry{ls()}{86} -\indexentry{ls()}{87} -\indexentry{unlink()}{87} -\indexentry{readRDS()}{87} -\indexentry{saveRDS()}{87} -\indexentry{print()}{88} -\indexentry{colnames()}{88} -\indexentry{rownames()}{88} -\indexentry{names()}{88} -\indexentry{head()}{88} -\indexentry{tail()}{88} -\indexentry{nrow()}{88} -\indexentry{ncol()}{88} -\indexentry{length()}{88} -\indexentry{str()}{88} -\indexentry{head()}{89} -\indexentry{tail()}{89} -\indexentry{sapply}{89} -\indexentry{matrix}{89} -\indexentry{list}{89} -\indexentry{summary()}{89} -\indexentry{sapply()}{89} -\indexentry{lapply()}{89} -\indexentry{vapply()}{89} -\indexentry{summary()}{90} -\indexentry{plot()}{90} -\indexentry{plot()}{90} -\indexentry{plot()}{91} -\indexentry{plot()}{92} -\indexentry{source()}{97} -\indexentry{print()}{97} -\indexentry{ggplot()}{97} -\indexentry{print()}{97} -\indexentry{if()}{104} -\indexentry{if()\ldots else}{104} -\indexentry{logical}{105} -\indexentry{numeric}{107} -\indexentry{logical}{107} -\indexentry{if ()}{107} -\indexentry{if () \ldots \ else}{107} -\indexentry{switch()}{107} -\indexentry{if ()}{108} -\indexentry{switch()}{108} -\indexentry{switch()}{108} -\indexentry{switch()}{108} -\indexentry{switch()}{109} -\indexentry{switch()}{110} -\indexentry{switch()}{110} -\indexentry{switch()}{110} -\indexentry{switch()}{110} -\indexentry{ifelse()}{110} -\indexentry{ifelse()}{111} -\indexentry{ifelse()}{111} -\indexentry{ifelse()}{112} -\indexentry{for}{112} -\indexentry{while}{112} -\indexentry{repeat}{112} -\indexentry{for}{113} -\indexentry{for}{113} -\indexentry{for}{114} -\indexentry{print()}{115} -\indexentry{for}{115} -\indexentry{break()}{115} -\indexentry{next()}{115} -\indexentry{while}{115} -\indexentry{while}{117} -\indexentry{break()}{117} -\indexentry{repeat}{117} -\indexentry{break()}{117} -\indexentry{break()}{117} -\indexentry{break()}{118} -\indexentry{break()}{118} -\indexentry{for}{118} -\indexentry{while}{118} -\indexentry{break()}{118} -\indexentry{for}{118} -\indexentry{next()}{118} -\indexentry{for}{118} -\indexentry{while}{118} -\indexentry{repeat}{118} -\indexentry{system.time()}{118} -\indexentry{for}{118} -\indexentry{system.time()}{119} -\indexentry{apply()}{121} -\indexentry{lapply()}{121} -\indexentry{sapply()}{121} -\indexentry{on.exit()}{121} -\indexentry{on.exit()}{121} -\indexentry{lapply()}{122} -\indexentry{sapply()}{122} -\indexentry{lapply()}{122} -\indexentry{vapply()}{122} -\indexentry{sapply()}{122} -\indexentry{apply()}{122} -\indexentry{lapply()}{122} -\indexentry{apply()}{122} -\indexentry{lapply()}{122} -\indexentry{sapply()}{122} -\indexentry{apply()}{122} -\indexentry{lapply()}{122} -\indexentry{sapply()}{122} -\indexentry{vapply()}{122} -\indexentry{vapply()}{124} -\indexentry{vapply()}{124} -\indexentry{apply()}{125} -\indexentry{mean()}{125} -\indexentry{apply()}{125} -\indexentry{apply()}{125} -\indexentry{apply()}{125} -\indexentry{t()}{126} -\indexentry{apply()}{126} -\indexentry{sum()}{128} -\indexentry{prod()}{128} -\indexentry{max()}{128} -\indexentry{min()}{128} -\indexentry{cumsum()}{128} -\indexentry{cumprod()}{128} -\indexentry{cummax()}{128} -\indexentry{cummin()}{128} -\indexentry{diff()}{128} -\indexentry{assign()}{128} -\indexentry{assign()}{128} -\indexentry{get()}{129} -\indexentry{mget()}{129} -\indexentry{assign()}{129} -\indexentry{get()}{129} -\indexentry{mget()}{129} -\indexentry{do.call()}{130} -\indexentry{anova()}{130} -\indexentry{do.call()}{130} -\indexentry{anova()}{130} -\indexentry{do.call()}{130} -\indexentry{anova()}{131} -\indexentry{mean()}{133} -\indexentry{var()}{133} -\indexentry{sd()}{133} -\indexentry{median()}{133} -\indexentry{mad()}{133} -\indexentry{mode()}{133} -\indexentry{max()}{133} -\indexentry{min()}{133} -\indexentry{range()}{133} -\indexentry{quantile()}{133} -\indexentry{length()}{133} -\indexentry{summary()}{134} -\indexentry{summary()}{134} -\indexentry{pnorm()}{136} -\indexentry{pt()}{136} -\indexentry{qnorm()}{137} -\indexentry{pnorm()}{137} -\indexentry{rnorm()}{137} -\indexentry{runif()}{137} -\indexentry{set.seed()}{138} -\indexentry{rnorm()}{138} -\indexentry{setseed()}{138} -\indexentry{cars}{139} -\indexentry{cor()}{139} -\indexentry{rnorm()}{140} -\indexentry{matrix()}{140} -\indexentry{cor()}{140} -\indexentry{cor.test()}{140} -\indexentry{cor.test()}{140} -\indexentry{cor()}{140} -\indexentry{cor.test()}{140} -\indexentry{print()}{140} -\indexentry{str()}{141} -\indexentry{class()}{141} -\indexentry{attributes()}{141} -\indexentry{cor()}{141} -\indexentry{class()}{141} -\indexentry{attributes()}{141} -\indexentry{str()}{141} -\indexentry{cor.test()}{141} -\indexentry{cor()}{141} -\indexentry{lm()}{142} -\indexentry{lm()}{142} -\indexentry{coef()}{142} -\indexentry{residuals()}{142} -\indexentry{fitted()}{142} -\indexentry{predict()}{142} -\indexentry{AIC()}{142} -\indexentry{BIC()}{142} -\indexentry{lm()}{142} -\indexentry{cars}{143} -\indexentry{summary()}{143} -\indexentry{summary()}{144} -\indexentry{lm()}{145} -\indexentry{I()}{145} -\indexentry{poly()}{145} -\indexentry{poly()}{145} -\indexentry{anova()}{146} -\indexentry{anova()}{146} -\indexentry{anova()}{146} -\indexentry{BIC()}{146} -\indexentry{AIC()}{146} -\indexentry{vcov()}{146} -\indexentry{coef()}{146} -\indexentry{coefficients()}{146} -\indexentry{fitted()}{146} -\indexentry{fitted.values()}{146} -\indexentry{resid()}{146} -\indexentry{residuals()}{146} -\indexentry{effects()}{146} -\indexentry{terms()}{146} -\indexentry{model.frame()}{146} -\indexentry{model.matrix()}{146} -\indexentry{str()}{147} -\indexentry{anova()}{147} -\indexentry{anova()}{147} -\indexentry{summary()}{147} -\indexentry{str()}{147} -\indexentry{predict()}{149} -\indexentry{predict()}{149} -\indexentry{predict()}{149} -\indexentry{InsectSprays}{149} -\indexentry{anova()}{150} -\indexentry{summary()}{150} -\indexentry{summary()}{150} -\indexentry{aov()}{150} -\indexentry{lm()}{150} -\indexentry{anova()}{150} -\indexentry{coef()}{151} -\indexentry{summary()}{151} -\indexentry{anova()}{152} -\indexentry{glm()}{153} -\indexentry{InsectSpray}{153} -\indexentry{anova()}{154} -\indexentry{plot()}{154} -\indexentry{nls()}{156} -\indexentry{nls}{157} -\indexentry{nlme}{157} -\indexentry{nls()}{157} -\indexentry{SSmicmen()}{157} -\indexentry{Puromycin}{157} -\indexentry{formula}{159} -\indexentry{call}{159} -\indexentry{formula}{160} -\indexentry{formula}{160} -\indexentry{length()}{160} -\indexentry{list}{160} -\indexentry{length()}{160} -\indexentry{I()}{161} -\indexentry{log()}{161} -\indexentry{terms()}{163} -\indexentry{npk}{164} -\indexentry{"formula"}{165} -\indexentry{inherits()}{165} -\indexentry{as.formula()}{166} -\indexentry{as.formula()}{166} -\indexentry{as.formula()}{166} -\indexentry{update()}{167} -\indexentry{"ts"}{169} -\indexentry{ts()}{169} -\indexentry{as.ts()}{169} -\indexentry{austres}{169} -\indexentry{austres}{169} -\indexentry{nottem}{169} -\indexentry{decompose()}{170} -\indexentry{stl()}{170} -\indexentry{stl()}{171} -\indexentry{aov()}{171} -\indexentry{lm()}{171} -\indexentry{manova()}{171} -\indexentry{aov()}{171} -\indexentry{iris}{171} -\indexentry{prcomp()}{173} -\indexentry{biplot()}{173} -\indexentry{prcomp()}{175} -\indexentry{eurodist}{175} -\indexentry{dist}{176} -\indexentry{hclust()}{176} -\indexentry{eurodist}{177} -\indexentry{dist}{177} -\indexentry{cutree()}{177} -\indexentry{hclust()}{178} -\indexentry{library()}{181} -\indexentry{detach()}{181} -\indexentry{library()}{181} -\indexentry{install.packages()}{181} -\indexentry{install.packages()}{181} -\indexentry{update.packages()}{181} -\indexentry{install.packages()}{181} -\indexentry{library()}{181} -\indexentry{print()}{183} -\indexentry{function()}{184} -\indexentry{<<-}{184} -\indexentry{assign()}{184} -\indexentry{lm()}{184} -\indexentry{lm}{184} -\indexentry{list}{184} -\indexentry{return()}{184} -\indexentry{return()}{184} -\indexentry{return()}{184} -\indexentry{SEM()}{186} -\indexentry{var()}{186} -\indexentry{SEM()}{186} -\indexentry{sum()}{186} -\indexentry{plot()}{190} -\indexentry{plot()}{190} -\indexentry{plot()}{190} -\indexentry{methods()}{190} -\indexentry{methods()}{190} -\indexentry{sprintf()}{191} -\indexentry{sprintf()}{191} -\indexentry{my\_print()}{192} -\indexentry{exists()}{193} -\indexentry{subset()}{196} -\indexentry{tbl}{198} -\indexentry{data.frame}{198} -\indexentry{list}{198} -\indexentry{matrix}{198} -\indexentry{list}{198} -\indexentry{tbl}{198} -\indexentry{print()}{199} -\indexentry{options()}{199} -\indexentry{tibble}{199} -\indexentry{tibble()}{199} -\indexentry{tibble()}{199} -\indexentry{as\_tibble()}{199} -\indexentry{is\_tibble()}{199} -\indexentry{tibble}{199} -\indexentry{tbl\_df}{200} -\indexentry{tibble()}{200} -\indexentry{data.frame()}{200} -\indexentry{tibble}{200} -\indexentry{print()}{201} -\indexentry{as.data.frame()}{202} -\indexentry{identical()}{202} -\indexentry{class()}{202} -\indexentry{tibble()}{203} -\indexentry{tibble()}{203} -\indexentry{tibble()}{203} -\indexentry{data.frame()}{203} -\indexentry{|>}{204} -\indexentry{|>}{205} -\indexentry{\%>\%}{205} -\indexentry{\%T>\%}{205} -\indexentry{\%<>\%}{205} -\indexentry{\%>\%}{205} -\indexentry{\%.>\%}{205} -\indexentry{\%>\%}{205} -\indexentry{\%.>\%}{205} -\indexentry{\%>\%}{205} -\indexentry{|>}{206} -\indexentry{|>}{206} -\indexentry{\%>\%}{206} -\indexentry{|>}{206} -\indexentry{\%>\%}{206} -\indexentry{\%.>\%}{206} -\indexentry{\%>\%}{206} -\indexentry{assign()}{206} -\indexentry{\%>\%}{207} -\indexentry{assign()}{207} -\indexentry{->}{207} -\indexentry{\%.>\%}{207} -\indexentry{|>}{207} -\indexentry{\%>\%}{207} -\indexentry{\%.>\%}{207} -\indexentry{\%.>\%}{207} -\indexentry{|>}{207} -\indexentry{\%>\%}{207} -\indexentry{\%.>\%}{207} -\indexentry{|>}{207} -\indexentry{\%.>\%}{207} -\indexentry{\%>\%}{207} -\indexentry{|>}{207} -\indexentry{|>}{207} -\indexentry{|>}{207} -\indexentry{\%>\%}{208} -\indexentry{print()}{208} -\indexentry{print()}{208} -\indexentry{plot()}{208} -\indexentry{iris}{208} -\indexentry{"tb"}{209} -\indexentry{pivot\_longer()}{209} -\indexentry{pivot\_longer()}{209} -\indexentry{!!}{209} -\indexentry{spread()}{210} -\indexentry{gather()}{210} -\indexentry{spread()}{210} -\indexentry{pivot\_longer()}{210} -\indexentry{pivot\_wider()}{210} -\indexentry{tibble}{210} -\indexentry{mutate()}{211} -\indexentry{transmute()}{211} -\indexentry{mutate()}{211} -\indexentry{transmute()}{211} -\indexentry{tibble()}{211} -\indexentry{mutate()}{211} -\indexentry{transmute()}{211} -\indexentry{str\_extract()}{211} -\indexentry{mutate()}{211} -\indexentry{\%.>\%}{212} -\indexentry{arrange()}{212} -\indexentry{sort()}{212} -\indexentry{order()}{212} -\indexentry{filter()}{212} -\indexentry{subset()}{212} -\indexentry{slice()}{212} -\indexentry{select()}{213} -\indexentry{select()}{213} -\indexentry{select()}{213} -\indexentry{starts\_with()}{213} -\indexentry{ends\_with()}{213} -\indexentry{contains()}{213} -\indexentry{matches()}{213} -\indexentry{rename()}{213} -\indexentry{names()}{213} -\indexentry{names<-()}{213} -\indexentry{aggregate()}{214} -\indexentry{ungroup()}{214} -\indexentry{group\_by()}{214} -\indexentry{summarise()}{214} -\indexentry{==}{216} -\indexentry{group\_by()}{216} -\indexentry{ungroup()}{216} -\indexentry{[ , ]}{216} -\indexentry{full\_join()}{216} -\indexentry{left\_join()}{216} -\indexentry{right\_join()}{216} -\indexentry{inner\_join()}{216} -\indexentry{semi\_join()}{218} -\indexentry{anti\_join()}{218} -\indexentry{geom\_point()}{224} -\indexentry{geom\_line()}{224} -\indexentry{stat\_smooth()}{224} -\indexentry{stat\_summary()}{224} -\indexentry{scale\_color\_continuous()}{224} -\indexentry{aes()}{225} -\indexentry{stat\_identity()}{226} -\indexentry{aes()}{226} -\indexentry{after\_stat()}{226} -\indexentry{mtcars}{226} -\indexentry{geom\_point()}{227} -\indexentry{geom\_line()}{228} -\indexentry{geom\_point}{228} -\indexentry{geom\_line}{228} -\indexentry{ggplot()}{233} -\indexentry{ggplot()}{234} -\indexentry{aes()}{235} -\indexentry{ggplot()}{235} -\indexentry{ggplot()}{235} -\indexentry{|>}{235} -\indexentry{stat()}{236} -\indexentry{stage()}{236} -\indexentry{after\_stat()}{236} -\indexentry{after\_scale()}{236} -\indexentry{after\_stat()}{236} -\indexentry{stat()}{236} -\indexentry{after\_stat()}{236} -\indexentry{after\_scale()}{236} -\indexentry{rlm()}{236} -\indexentry{after\_stat()}{237} -\indexentry{stat\_fit\_residuals()}{237} -\indexentry{geom\_point()}{237} -\indexentry{stage()}{237} -\indexentry{geom\_point()}{237} -\indexentry{stat\_fit\_residuals()}{237} -\indexentry{stat\_fit\_residuals()}{237} -\indexentry{geom\_point()}{237} -\indexentry{geom\_point()}{238} -\indexentry{geom\_line()}{238} -\indexentry{geom\_point()}{238} -\indexentry{geom\_point()}{242} -\indexentry{geom\_pointrange()}{243} -\indexentry{geom\_range()}{243} -\indexentry{geom\_errorbar}{243} -\indexentry{geom\_rug()}{243} -\indexentry{geom\_line()}{244} -\indexentry{Orange}{244} -\indexentry{geom\_segment()}{244} -\indexentry{geom\_curve()}{244} -\indexentry{geom\_path()}{244} -\indexentry{geom\_line()}{244} -\indexentry{geom\_spoke()}{244} -\indexentry{geom\_segment()}{244} -\indexentry{geom\_step()}{244} -\indexentry{geom\_line()}{245} -\indexentry{geom\_area()}{245} -\indexentry{geom\_ribbon}{245} -\indexentry{geom\_polygom}{245} -\indexentry{geom\_path()}{245} -\indexentry{geom\_point}{245} -\indexentry{geom\_line}{245} -\indexentry{geom\_ribbon}{245} -\indexentry{geom\_area}{245} -\indexentry{geom\_hline}{245} -\indexentry{geom\_vline}{245} -\indexentry{geom\_abline}{245} -\indexentry{geom\_hline}{245} -\indexentry{geom\_vline}{245} -\indexentry{geom\_col()}{246} -\indexentry{geom\_bar()}{246} -\indexentry{stat\_count()}{246} -\indexentry{geom\_col()}{246} -\indexentry{geom\_bar()}{246} -\indexentry{geom\_col()}{248} -\indexentry{geom\_tile()}{248} -\indexentry{geom\_tile()}{248} -\indexentry{geom\_tile()}{249} -\indexentry{geom\_rect()}{249} -\indexentry{geom\_sf()}{250} -\indexentry{geom\_sf\_text()}{250} -\indexentry{geom\_sf\_label()}{250} -\indexentry{stat\_sf()}{250} -\indexentry{geom\_text()}{250} -\indexentry{geom\_label()}{250} -\indexentry{geom\_text()}{250} -\indexentry{geom\_label()}{250} -\indexentry{geom\_label()}{251} -\indexentry{geom\_label()}{251} -\indexentry{geom\_text}{252} -\indexentry{geom\_label}{252} -\indexentry{geom\_point}{252} -\indexentry{geom\_label()}{252} -\indexentry{geom\_text()}{252} -\indexentry{paste()}{252} -\indexentry{paste()}{252} -\indexentry{geom\_text()}{253} -\indexentry{aes()}{253} -\indexentry{geom\_label()}{253} -\indexentry{geom\_text()}{253} -\indexentry{geom\_text()}{253} -\indexentry{geom\_text()}{254} -\indexentry{geom\_text()}{254} -\indexentry{geom\_label()}{254} -\indexentry{geom\_text\_repel()}{254} -\indexentry{geom\_label\_repel()}{254} -\indexentry{geom\_table()}{255} -\indexentry{geom\_plot()}{255} -\indexentry{geom\_grob()}{255} -\indexentry{geom\_table()}{255} -\indexentry{geom\_plot()}{255} -\indexentry{geom\_grob()}{255} -\indexentry{geom\_table}{255} -\indexentry{geom\_text}{255} -\indexentry{geom\_table()}{256} -\indexentry{geom\_table()}{256} -\indexentry{geom\_table()}{256} -\indexentry{geom\_plot()}{256} -\indexentry{annotate()}{257} -\indexentry{geom\_grob()}{258} -\indexentry{annotation\_custom()}{258} -\indexentry{geom\_text\_npc()}{259} -\indexentry{geom\_label\_npc()}{259} -\indexentry{geom\_table\_npc()}{259} -\indexentry{geom\_plot\_npc()}{259} -\indexentry{geom\_grob\_npc()}{259} -\indexentry{stat\_function()}{260} -\indexentry{xlim()}{261} -\indexentry{ylim()}{261} -\indexentry{stat\_summary()}{261} -\indexentry{stat\_summary()}{261} -\indexentry{geom\_pointrange()}{261} -\indexentry{stat\_summary()}{262} -\indexentry{stat\_summary()}{263} -\indexentry{geom\_pointrange()}{263} -\indexentry{geom\_errorbar()}{263} -\indexentry{geom\_linerange()}{263} -\indexentry{stat\_smooth()}{264} -\indexentry{geom\_smooth()}{264} -\indexentry{stat\_smooth()}{264} -\indexentry{lm()}{264} -\indexentry{stat\_smooth}{265} -\indexentry{Puromycin}{265} -\indexentry{SSmicmen()}{265} -\indexentry{stat\_poly\_line()}{266} -\indexentry{stat\_smooth()}{266} -\indexentry{stat\_bin()}{267} -\indexentry{geom\_histogram()}{267} -\indexentry{stat\_count()}{267} -\indexentry{geom\_bar()}{267} -\indexentry{stat\_bin()}{268} -\indexentry{geom\_histogram()}{269} -\indexentry{stat\_bin()}{269} -\indexentry{stat\_count()}{269} -\indexentry{stat\_bin2d}{269} -\indexentry{geom\_bin2d()}{269} -\indexentry{stat\_bin()}{269} -\indexentry{coord\_fixed()}{269} -\indexentry{coord\_cartesian()}{269} -\indexentry{stat\_bin\_hex()}{269} -\indexentry{geom\_hex()}{269} -\indexentry{stat\_bin2d()}{269} -\indexentry{geom\_density()}{270} -\indexentry{stat\_density\_2d()}{270} -\indexentry{geom\_density\_2d()}{271} -\indexentry{stat\_boxplot()}{271} -\indexentry{geom\_boxplot()}{271} -\indexentry{geom\_violin()}{272} -\indexentry{geom\_point()}{274} -\indexentry{geom\_line()}{274} -\indexentry{coord\_flip()}{274} -\indexentry{stat\_smooth()}{274} -\indexentry{geom\_line()}{274} -\indexentry{geom\_point()}{274} -\indexentry{stat\_boxplot()}{275} -\indexentry{stat\_boxplot()}{275} -\indexentry{stat\_summary}{275} -\indexentry{stat\_histogram()}{275} -\indexentry{stat\_density()}{275} -\indexentry{geom\_smooth()}{277} -\indexentry{coord\_flip()}{278} -\indexentry{stat\_poly\_line()}{278} -\indexentry{geom\_point()}{279} -\indexentry{stat\_density2d()}{279} -\indexentry{stat\_summary2d()}{279} -\indexentry{stat\_summary2d()}{279} -\indexentry{stat\_density2d()}{279} -\indexentry{stat\_summary()}{279} -\indexentry{stat\_centroid()}{279} -\indexentry{stat\_summary\_xy()}{279} -\indexentry{stat\_summary()}{280} -\indexentry{stat\_summary()}{280} -\indexentry{facet\_grid()}{281} -\indexentry{facet\_wrap()}{281} -\indexentry{geom\_point()}{281} -\indexentry{label\_bquote()}{283} -\indexentry{label\_bquote()}{283} -\indexentry{facet\_wrap()}{283} -\indexentry{scale\_color\_identity()}{284} -\indexentry{scale\_color\_discrete()}{284} -\indexentry{ggtitle()}{285} -\indexentry{xlab()}{285} -\indexentry{ylab()}{285} -\indexentry{labs()}{285} -\indexentry{labs()}{285} -\indexentry{ggtitle()}{285} -\indexentry{ylim()}{287} -\indexentry{xlim()}{287} -\indexentry{ylim()}{287} -\indexentry{xlim()}{287} -\indexentry{expand\_limits()}{287} -\indexentry{expand\_limits()}{288} -\indexentry{xlim()}{288} -\indexentry{ylim()}{288} -\indexentry{pretty\_breaks()}{289} -\indexentry{label\_date()}{290} -\indexentry{label\_date\_short()}{290} -\indexentry{label\_time()}{290} -\indexentry{scale\_x\_continuous()}{290} -\indexentry{scale\_y\_continuous()}{290} -\indexentry{scale\_x\_log10()}{291} -\indexentry{scale\_y\_log10()}{291} -\indexentry{scale\_y\_log()}{291} -\indexentry{scale\_x\_reverse()}{291} -\indexentry{scale\_y\_log10()}{291} -\indexentry{strptime()}{294} -\indexentry{scale\_x\_discrete()}{294} -\indexentry{toupper()}{295} -\indexentry{tolower()}{295} -\indexentry{geom\_point()}{295} -\indexentry{geom\_line()}{295} -\indexentry{geom\_hline()}{295} -\indexentry{geom\_vline()}{295} -\indexentry{geom\_text()}{295} -\indexentry{geom\_label()}{295} -\indexentry{geom\_bar()}{295} -\indexentry{geom\_col()}{295} -\indexentry{geom\_area()}{295} -\indexentry{rgb()}{297} -\indexentry{hcl()}{297} -\indexentry{scale\_color\_continuous()}{297} -\indexentry{scale\_color\_gradient()}{297} -\indexentry{scale\_color\_gradient2()}{297} -\indexentry{scale\_color\_gradientn()}{297} -\indexentry{scale\_color\_date()}{297} -\indexentry{scale\_color\_datetime()}{297} -\indexentry{scale\_color\_viridis\_c()}{297} -\indexentry{scale\_color\_distiller()}{297} -\indexentry{scale\_color\_discrete()}{297} -\indexentry{scale\_color\_hue()}{297} -\indexentry{scale\_color\_gray()}{297} -\indexentry{scale\_color\_viridis\_d()}{298} -\indexentry{scale\_color\_brewer()}{298} -\indexentry{scale\_color\_gradient()}{298} -\indexentry{scale\_color\_binned()}{298} -\indexentry{scale\_color\_identity()}{299} -\indexentry{scale\_fill\_identity()}{299} -\indexentry{annotate()}{300} -\indexentry{annotate()}{300} -\indexentry{annotate()}{300} -\indexentry{annotate()}{300} -\indexentry{annotation\_custom()}{300} -\indexentry{ggplotGrob()}{300} -\indexentry{annotate()}{302} -\indexentry{geom\_vline()}{302} -\indexentry{geom\_hline()}{302} -\indexentry{coord\_polar()}{302} -\indexentry{coord\_polar()}{302} -\indexentry{stat\_bin()}{303} -\indexentry{stat\_density()}{303} -\indexentry{stat\_bin()}{303} -\indexentry{geom\_polygon()}{303} -\indexentry{geom\_bar()}{303} -\indexentry{facet\_wrap()}{304} -\indexentry{geom\_bar()}{304} -\indexentry{theme\_gray()}{305} -\indexentry{theme\_bw()}{306} -\indexentry{theme\_gray()}{306} -\indexentry{theme\_bw()}{306} -\indexentry{theme\_classic()}{306} -\indexentry{theme\_minimal()}{306} -\indexentry{theme\_linedraw()}{306} -\indexentry{theme\_light()}{306} -\indexentry{theme\_dark()}{306} -\indexentry{theme\_void()}{306} -\indexentry{theme\_gray()}{306} -\indexentry{theme\_set()}{307} -\indexentry{theme\_set()}{307} -\indexentry{theme\_bw()}{307} -\indexentry{theme\_classic()}{307} -\indexentry{theme()}{308} -\indexentry{rel()}{308} -\indexentry{theme\_gray()}{310} -\indexentry{theme()}{310} -\indexentry{+}{311} -\indexentry{|}{311} -\indexentry{/}{311} -\indexentry{+}{311} -\indexentry{|}{311} -\indexentry{/}{311} -\indexentry{expression()}{313} -\indexentry{geom\_text}{313} -\indexentry{geom\_label}{313} -\indexentry{labs()}{313} -\indexentry{geom\_text()}{313} -\indexentry{paste()}{313} -\indexentry{expression()}{313} -\indexentry{parse()}{314} -\indexentry{expression()}{314} -\indexentry{parse()}{314} -\indexentry{parse()}{314} -\indexentry{expression()}{314} -\indexentry{parse()}{314} -\indexentry{expression()}{314} -\indexentry{parse()}{314} -\indexentry{plain()}{315} -\indexentry{italic()}{315} -\indexentry{bold()}{315} -\indexentry{bolditalic()}{315} -\indexentry{expression()}{315} -\indexentry{parse()}{315} -\indexentry{expression()}{315} -\indexentry{ggplot()}{315} -\indexentry{paste()}{316} -\indexentry{format()}{316} -\indexentry{sprintf()}{316} -\indexentry{strftime()}{316} -\indexentry{sprintf()}{316} -\indexentry{format()}{316} -\indexentry{sprintf()}{316} -\indexentry{strftime()}{316} -\indexentry{bquote()}{316} -\indexentry{bquote()}{316} -\indexentry{substitute()}{316} -\indexentry{shell()}{326} -\indexentry{system()}{326} -\indexentry{basename()}{326} -\indexentry{dirname()}{326} -\indexentry{getwd()}{326} -\indexentry{setwd()}{326} -\indexentry{setwd()}{326} -\indexentry{list.files()}{327} -\indexentry{dir()}{327} -\indexentry{list.dirs()}{327} -\indexentry{list.dirs()}{327} -\indexentry{dir()}{327} -\indexentry{file.path()}{328} -\indexentry{readLines()}{328} -\indexentry{tools:::showNonASCIIfile()}{330} -\indexentry{read.csv()}{331} -\indexentry{write.csv()}{331} -\indexentry{read.csv2()}{331} -\indexentry{read.csv()}{331} -\indexentry{read.csv2()}{332} -\indexentry{write.csv2}{332} -\indexentry{read.table()}{332} -\indexentry{read.csv()}{332} -\indexentry{read.table()}{332} -\indexentry{read.fwf()}{333} -\indexentry{read.fortran()}{333} -\indexentry{read.fwf()}{333} -\indexentry{read.table()}{334} -\indexentry{read.csv()}{334} -\indexentry{read.table()}{334} -\indexentry{read.csv()}{334} -\indexentry{read.table()}{334} -\indexentry{read.table()}{334} -\indexentry{read.csv2()}{334} -\indexentry{write.csv()}{334} -\indexentry{write.csv2()}{335} -\indexentry{write.table()}{335} -\indexentry{read.csv()}{335} -\indexentry{cat()}{335} -\indexentry{read\_csv()}{336} -\indexentry{read.csv()}{336} -\indexentry{read.table()}{336} -\indexentry{tibble}{336} -\indexentry{data.frame}{336} -\indexentry{read\_table2()}{336} -\indexentry{read\_table2()}{336} -\indexentry{read\_table2()}{337} -\indexentry{read.table()}{337} -\indexentry{read\_table()}{337} -\indexentry{read\_table2()}{337} -\indexentry{read\_table()}{337} -\indexentry{read\_delim()}{337} -\indexentry{read\_table()}{337} -\indexentry{read\_tsv()}{338} -\indexentry{read\_fwf()}{338} -\indexentry{read.fortran()}{338} -\indexentry{write\_csv()}{339} -\indexentry{write\_csv2()}{339} -\indexentry{write\_tsv()}{339} -\indexentry{write\_delim()}{339} -\indexentry{write\_excel\_csv()}{339} -\indexentry{write\_excel\_csv()}{340} -\indexentry{write\_csv()}{340} -\indexentry{read\_lines()}{340} -\indexentry{write\_lines()}{340} -\indexentry{read\_file()}{340} -\indexentry{write\_file()}{340} -\indexentry{read\_file()}{340} -\indexentry{write\_file()}{340} -\indexentry{write\_file()}{340} -\indexentry{read\_csv()}{340} -\indexentry{read\_html()}{341} -\indexentry{xml\_find\_all()}{343} -\indexentry{xml\_text()}{343} -\indexentry{excel\_sheets()}{346} -\indexentry{read\_excel()}{346} -\indexentry{read.xlsx()}{347} -\indexentry{write.xlsx()}{347} -\indexentry{read\_ods()}{348} -\indexentry{write\_ods()}{349} -\indexentry{read.spss()}{349} -\indexentry{read.systat()}{350} -\indexentry{tibble}{350} -\indexentry{read\_sav()}{350} -\indexentry{names()}{351} -\indexentry{str()}{351} -\indexentry{class()}{351} -\indexentry{attributes()}{351} -\indexentry{mode()}{351} -\indexentry{dim()}{351} -\indexentry{dimnames()}{351} -\indexentry{nrow()}{351} -\indexentry{ncol()}{351} -\indexentry{print()}{352} -\indexentry{nc\_open()}{352} -\indexentry{str()}{352} -\indexentry{ncvar\_get()}{352} -\indexentry{tibble}{353} -\indexentry{download.file()}{356} -\indexentry{fromJSON()}{357} +\indexentry{source()}{3} +\indexentry{print()}{3} +\indexentry{ggplot()}{3} +\indexentry{print()}{3} +\indexentry{if()}{10} +\indexentry{if()\ldots else}{10} +\indexentry{logical}{11} +\indexentry{numeric}{13} +\indexentry{logical}{13} +\indexentry{if ()}{13} +\indexentry{if () \ldots \ else}{13} +\indexentry{switch()}{13} +\indexentry{if ()}{13} +\indexentry{switch()}{13} +\indexentry{switch()}{13} +\indexentry{switch()}{13} +\indexentry{switch()}{15} +\indexentry{switch()}{15} +\indexentry{switch()}{16} +\indexentry{switch()}{16} +\indexentry{switch()}{16} +\indexentry{ifelse()}{16} +\indexentry{ifelse()}{16} +\indexentry{ifelse()}{17} +\indexentry{ifelse()}{17} +\indexentry{for}{18} +\indexentry{while}{18} +\indexentry{repeat}{18} +\indexentry{for}{18} +\indexentry{for}{19} +\indexentry{for}{19} +\indexentry{print()}{20} +\indexentry{for}{20} +\indexentry{break()}{21} +\indexentry{next()}{21} +\indexentry{while}{21} +\indexentry{while}{22} +\indexentry{break()}{22} +\indexentry{repeat}{22} +\indexentry{break()}{22} +\indexentry{break()}{22} +\indexentry{break()}{23} +\indexentry{break()}{23} +\indexentry{for}{23} +\indexentry{while}{23} +\indexentry{break()}{23} +\indexentry{for}{23} +\indexentry{next()}{23} +\indexentry{for}{23} +\indexentry{while}{23} +\indexentry{repeat}{23} +\indexentry{system.time()}{23} +\indexentry{for}{23} +\indexentry{system.time()}{24} +\indexentry{apply()}{25} +\indexentry{lapply()}{25} +\indexentry{sapply()}{25} +\indexentry{on.exit()}{26} +\indexentry{on.exit()}{26} +\indexentry{lapply()}{27} +\indexentry{sapply()}{27} +\indexentry{lapply()}{27} +\indexentry{vapply()}{27} +\indexentry{sapply()}{27} +\indexentry{apply()}{27} +\indexentry{lapply()}{27} +\indexentry{apply()}{27} +\indexentry{lapply()}{27} +\indexentry{sapply()}{27} +\indexentry{apply()}{27} +\indexentry{lapply()}{27} +\indexentry{sapply()}{27} +\indexentry{vapply()}{27} +\indexentry{vapply()}{28} +\indexentry{vapply()}{29} +\indexentry{apply()}{29} +\indexentry{mean()}{29} +\indexentry{apply()}{30} +\indexentry{apply()}{30} +\indexentry{apply()}{30} +\indexentry{t()}{30} +\indexentry{apply()}{31} +\indexentry{mean()}{32} +\indexentry{var()}{32} +\indexentry{sd()}{32} +\indexentry{max()}{32} +\indexentry{min()}{32} +\indexentry{inverse.rle()}{32} +\indexentry{sum()}{32} +\indexentry{prod()}{32} +\indexentry{cumsum()}{32} +\indexentry{cumprod()}{32} +\indexentry{cummax()}{32} +\indexentry{cummin()}{32} +\indexentry{runmed()}{32} +\indexentry{diff()}{32} +\indexentry{diffinv()}{32} +\indexentry{factorial()}{32} +\indexentry{rle()}{32} +\indexentry{inverse.rle()}{32} +\indexentry{assign()}{33} +\indexentry{assign()}{33} +\indexentry{get()}{33} +\indexentry{mget()}{33} +\indexentry{assign()}{34} +\indexentry{get()}{34} +\indexentry{mget()}{34} +\indexentry{do.call()}{34} +\indexentry{anova()}{35} +\indexentry{do.call()}{35} +\indexentry{anova()}{35} +\indexentry{do.call()}{35} +\indexentry{anova()}{35} +\indexentry{|>}{36} +\indexentry{within()}{36} +\indexentry{subset()}{36} +\indexentry{aggregate()}{37} +\indexentry{getElement()}{37} diff --git a/figure/pos-annotate-01-1.pdf b/figure/pos-annotate-01-1.pdf index bc164c8d..f42b1e3e 100644 Binary files a/figure/pos-annotate-01-1.pdf and b/figure/pos-annotate-01-1.pdf differ diff --git a/figure/pos-annotate-03-1.pdf b/figure/pos-annotate-03-1.pdf index f61b01fc..bbebef6d 100644 Binary files a/figure/pos-annotate-03-1.pdf and b/figure/pos-annotate-03-1.pdf differ diff --git a/figure/pos-area-plot-01-1.pdf b/figure/pos-area-plot-01-1.pdf index a1b914c8..ce0b2fc7 100644 Binary files a/figure/pos-area-plot-01-1.pdf and b/figure/pos-area-plot-01-1.pdf differ diff --git a/figure/pos-area-plot-02-1.pdf b/figure/pos-area-plot-02-1.pdf index b4594f8c..8dcf16e7 100644 Binary files a/figure/pos-area-plot-02-1.pdf and b/figure/pos-area-plot-02-1.pdf differ diff --git a/figure/pos-axis-labels-01-1.pdf b/figure/pos-axis-labels-01-1.pdf index 112a5bd2..f5940637 100644 Binary files a/figure/pos-axis-labels-01-1.pdf and b/figure/pos-axis-labels-01-1.pdf differ diff --git a/figure/pos-axis-labels-03-1.pdf b/figure/pos-axis-labels-03-1.pdf index 0fccd926..02f19c3a 100644 Binary files a/figure/pos-axis-labels-03-1.pdf and b/figure/pos-axis-labels-03-1.pdf differ diff --git a/figure/pos-axis-position-01-1.pdf b/figure/pos-axis-position-01-1.pdf index f23b0ec9..7b7b7900 100644 Binary files a/figure/pos-axis-position-01-1.pdf and b/figure/pos-axis-position-01-1.pdf differ diff --git a/figure/pos-axis-secondary-01-1.pdf b/figure/pos-axis-secondary-01-1.pdf index 938cd3af..50076bad 100644 Binary files a/figure/pos-axis-secondary-01-1.pdf and b/figure/pos-axis-secondary-01-1.pdf differ diff --git a/figure/pos-bin2d-plot-01-1.pdf b/figure/pos-bin2d-plot-01-1.pdf index de1815cb..0cac6dbe 100644 Binary files a/figure/pos-bin2d-plot-01-1.pdf and b/figure/pos-bin2d-plot-01-1.pdf differ diff --git a/figure/pos-binned-scales-01-1.pdf b/figure/pos-binned-scales-01-1.pdf index b5d6fe7e..0be43f43 100644 Binary files a/figure/pos-binned-scales-01-1.pdf and b/figure/pos-binned-scales-01-1.pdf differ diff --git a/figure/pos-bw-plot-01-1.pdf b/figure/pos-bw-plot-01-1.pdf index 00ef3bf9..57633d61 100644 Binary files a/figure/pos-bw-plot-01-1.pdf and b/figure/pos-bw-plot-01-1.pdf differ diff --git a/figure/pos-bw-plot-02-1.pdf b/figure/pos-bw-plot-02-1.pdf index a1d89225..6f459e2e 100644 Binary files a/figure/pos-bw-plot-02-1.pdf and b/figure/pos-bw-plot-02-1.pdf differ diff --git a/figure/pos-cluster-02-1.pdf b/figure/pos-cluster-02-1.pdf index d09f8e31..1831117d 100644 Binary files a/figure/pos-cluster-02-1.pdf and b/figure/pos-cluster-02-1.pdf differ diff --git a/figure/pos-col-plot-02-1.pdf b/figure/pos-col-plot-02-1.pdf index 4846e9be..929952fe 100644 Binary files a/figure/pos-col-plot-02-1.pdf and b/figure/pos-col-plot-02-1.pdf differ diff --git a/figure/pos-col-plot-03-1.pdf b/figure/pos-col-plot-03-1.pdf index 49b8574d..66571f4f 100644 Binary files a/figure/pos-col-plot-03-1.pdf and b/figure/pos-col-plot-03-1.pdf differ diff --git a/figure/pos-col-plot-04-1.pdf b/figure/pos-col-plot-04-1.pdf index df37e122..39679e00 100644 Binary files a/figure/pos-col-plot-04-1.pdf and b/figure/pos-col-plot-04-1.pdf differ diff --git a/figure/pos-cor-00-1.pdf b/figure/pos-cor-00-1.pdf index a833d384..041071ae 100644 Binary files a/figure/pos-cor-00-1.pdf and b/figure/pos-cor-00-1.pdf differ diff --git a/figure/pos-density-plot-01-1.pdf b/figure/pos-density-plot-01-1.pdf index 49ce49a1..78effe8a 100644 Binary files a/figure/pos-density-plot-01-1.pdf and b/figure/pos-density-plot-01-1.pdf differ diff --git a/figure/pos-density-plot-10-1.pdf b/figure/pos-density-plot-10-1.pdf index 7c82cf58..28d474e2 100644 Binary files a/figure/pos-density-plot-10-1.pdf and b/figure/pos-density-plot-10-1.pdf differ diff --git a/figure/pos-density-plot-12-1.pdf b/figure/pos-density-plot-12-1.pdf index 853a5dba..3174c201 100644 Binary files a/figure/pos-density-plot-12-1.pdf and b/figure/pos-density-plot-12-1.pdf differ diff --git a/figure/pos-distrib-01a-1.pdf b/figure/pos-distrib-01a-1.pdf index ecf3a871..238447b3 100644 Binary files a/figure/pos-distrib-01a-1.pdf and b/figure/pos-distrib-01a-1.pdf differ diff --git a/figure/pos-expr-bquote-01-1.pdf b/figure/pos-expr-bquote-01-1.pdf index 7946e33a..f094b9a8 100644 Binary files a/figure/pos-expr-bquote-01-1.pdf and b/figure/pos-expr-bquote-01-1.pdf differ diff --git a/figure/pos-expr-substitute-01-1.pdf b/figure/pos-expr-substitute-01-1.pdf index 7946e33a..f094b9a8 100644 Binary files a/figure/pos-expr-substitute-01-1.pdf and b/figure/pos-expr-substitute-01-1.pdf differ diff --git a/figure/pos-facets-00-1.pdf b/figure/pos-facets-00-1.pdf index 5238f5d7..a06ff70a 100644 Binary files a/figure/pos-facets-00-1.pdf and b/figure/pos-facets-00-1.pdf differ diff --git a/figure/pos-facets-01-1.pdf b/figure/pos-facets-01-1.pdf index d5a75bf3..92f7afed 100644 Binary files a/figure/pos-facets-01-1.pdf and b/figure/pos-facets-01-1.pdf differ diff --git a/figure/pos-facets-06-1.pdf b/figure/pos-facets-06-1.pdf index 4dd9a121..260d9393 100644 Binary files a/figure/pos-facets-06-1.pdf and b/figure/pos-facets-06-1.pdf differ diff --git a/figure/pos-facets-07-1.pdf b/figure/pos-facets-07-1.pdf index 09095168..ac3f730e 100644 Binary files a/figure/pos-facets-07-1.pdf and b/figure/pos-facets-07-1.pdf differ diff --git a/figure/pos-facets-13-1.pdf b/figure/pos-facets-13-1.pdf index 8a2192fa..e3389026 100644 Binary files a/figure/pos-facets-13-1.pdf and b/figure/pos-facets-13-1.pdf differ diff --git a/figure/pos-flipping-01-ggplot-1.pdf b/figure/pos-flipping-01-ggplot-1.pdf index 4eab1abe..607f8ff0 100644 Binary files a/figure/pos-flipping-01-ggplot-1.pdf and b/figure/pos-flipping-01-ggplot-1.pdf differ diff --git a/figure/pos-flipping-02-ggplot-1.pdf b/figure/pos-flipping-02-ggplot-1.pdf index a212153d..f0295eff 100644 Binary files a/figure/pos-flipping-02-ggplot-1.pdf and b/figure/pos-flipping-02-ggplot-1.pdf differ diff --git a/figure/pos-flipping-03-ggplot-1.pdf b/figure/pos-flipping-03-ggplot-1.pdf index a8aa2952..35af971a 100644 Binary files a/figure/pos-flipping-03-ggplot-1.pdf and b/figure/pos-flipping-03-ggplot-1.pdf differ diff --git a/figure/pos-flipping-04-ggplot-1.pdf b/figure/pos-flipping-04-ggplot-1.pdf index 6d3f94e1..05e2fe75 100644 Binary files a/figure/pos-flipping-04-ggplot-1.pdf and b/figure/pos-flipping-04-ggplot-1.pdf differ diff --git a/figure/pos-flipping-05-ggplot-1.pdf b/figure/pos-flipping-05-ggplot-1.pdf index 231f9fba..a56e6630 100644 Binary files a/figure/pos-flipping-05-ggplot-1.pdf and b/figure/pos-flipping-05-ggplot-1.pdf differ diff --git a/figure/pos-flipping-06-ggplot-1.pdf b/figure/pos-flipping-06-ggplot-1.pdf index 7e0389f7..4e093595 100644 Binary files a/figure/pos-flipping-06-ggplot-1.pdf and b/figure/pos-flipping-06-ggplot-1.pdf differ diff --git a/figure/pos-flipping-06a-ggplot-1.pdf b/figure/pos-flipping-06a-ggplot-1.pdf index a32946ee..6bdd8a98 100644 Binary files a/figure/pos-flipping-06a-ggplot-1.pdf and b/figure/pos-flipping-06a-ggplot-1.pdf differ diff --git a/figure/pos-flipping-07-ggpmisc-1.pdf b/figure/pos-flipping-07-ggpmisc-1.pdf index 9b48eca5..52ce5370 100644 Binary files a/figure/pos-flipping-07-ggpmisc-1.pdf and b/figure/pos-flipping-07-ggpmisc-1.pdf differ diff --git a/figure/pos-flipping-08-ggpmisc-1.pdf b/figure/pos-flipping-08-ggpmisc-1.pdf index 2c5d1d39..282b0ff7 100644 Binary files a/figure/pos-flipping-08-ggpmisc-1.pdf and b/figure/pos-flipping-08-ggpmisc-1.pdf differ diff --git a/figure/pos-flipping-09-ggpmisc-1.pdf b/figure/pos-flipping-09-ggpmisc-1.pdf index 8ba2e738..a43b1dca 100644 Binary files a/figure/pos-flipping-09-ggpmisc-1.pdf and b/figure/pos-flipping-09-ggpmisc-1.pdf differ diff --git a/figure/pos-flipping-10-ggpmisc-1.pdf b/figure/pos-flipping-10-ggpmisc-1.pdf index e5746b08..e75a7441 100644 Binary files a/figure/pos-flipping-10-ggpmisc-1.pdf and b/figure/pos-flipping-10-ggpmisc-1.pdf differ diff --git a/figure/pos-flipping_box-01-ggplot-1.pdf b/figure/pos-flipping_box-01-ggplot-1.pdf index 3c53fa6d..ac0df1e2 100644 Binary files a/figure/pos-flipping_box-01-ggplot-1.pdf and b/figure/pos-flipping_box-01-ggplot-1.pdf differ diff --git a/figure/pos-function-plot-01-1.pdf b/figure/pos-function-plot-01-1.pdf index 33e24429..6d67cf9c 100644 Binary files a/figure/pos-function-plot-01-1.pdf and b/figure/pos-function-plot-01-1.pdf differ diff --git a/figure/pos-ggbeeswarm-plot-01-1.pdf b/figure/pos-ggbeeswarm-plot-01-1.pdf index 4de05718..e7534f67 100644 Binary files a/figure/pos-ggbeeswarm-plot-01-1.pdf and b/figure/pos-ggbeeswarm-plot-01-1.pdf differ diff --git a/figure/pos-ggplot-basics-01-1.pdf b/figure/pos-ggplot-basics-01-1.pdf index 358ecaa8..d489ce26 100644 Binary files a/figure/pos-ggplot-basics-01-1.pdf and b/figure/pos-ggplot-basics-01-1.pdf differ diff --git a/figure/pos-ggplot-basics-03-1.pdf b/figure/pos-ggplot-basics-03-1.pdf index da3f886a..351723ec 100644 Binary files a/figure/pos-ggplot-basics-03-1.pdf and b/figure/pos-ggplot-basics-03-1.pdf differ diff --git a/figure/pos-ggplot-basics-04-1.pdf b/figure/pos-ggplot-basics-04-1.pdf index cdf1c3bb..e4b4d422 100644 Binary files a/figure/pos-ggplot-basics-04-1.pdf and b/figure/pos-ggplot-basics-04-1.pdf differ diff --git a/figure/pos-ggplot-basics-04a-1.pdf b/figure/pos-ggplot-basics-04a-1.pdf index 95dd5ed5..a11e0b4a 100644 Binary files a/figure/pos-ggplot-basics-04a-1.pdf and b/figure/pos-ggplot-basics-04a-1.pdf differ diff --git a/figure/pos-ggplot-basics-05-1.pdf b/figure/pos-ggplot-basics-05-1.pdf index ef978a09..3c9573b4 100644 Binary files a/figure/pos-ggplot-basics-05-1.pdf and b/figure/pos-ggplot-basics-05-1.pdf differ diff --git a/figure/pos-ggplot-basics-06-1.pdf b/figure/pos-ggplot-basics-06-1.pdf index 11bb6005..50468869 100644 Binary files a/figure/pos-ggplot-basics-06-1.pdf and b/figure/pos-ggplot-basics-06-1.pdf differ diff --git a/figure/pos-ggplot-basics-07-1.pdf b/figure/pos-ggplot-basics-07-1.pdf index c460718d..a8f72030 100644 Binary files a/figure/pos-ggplot-basics-07-1.pdf and b/figure/pos-ggplot-basics-07-1.pdf differ diff --git a/figure/pos-ggplot-basics-08-1.pdf b/figure/pos-ggplot-basics-08-1.pdf index 5923000c..15a79159 100644 Binary files a/figure/pos-ggplot-basics-08-1.pdf and b/figure/pos-ggplot-basics-08-1.pdf differ diff --git a/figure/pos-ggplot-basics-09-1.pdf b/figure/pos-ggplot-basics-09-1.pdf index 58a786c5..562eeba1 100644 Binary files a/figure/pos-ggplot-basics-09-1.pdf and b/figure/pos-ggplot-basics-09-1.pdf differ diff --git a/figure/pos-ggplot-basics-10-1.pdf b/figure/pos-ggplot-basics-10-1.pdf index b8b3499e..a996c70e 100644 Binary files a/figure/pos-ggplot-basics-10-1.pdf and b/figure/pos-ggplot-basics-10-1.pdf differ diff --git a/figure/pos-ggplot-basics-11-1.pdf b/figure/pos-ggplot-basics-11-1.pdf index 2407883c..d46ae87f 100644 Binary files a/figure/pos-ggplot-basics-11-1.pdf and b/figure/pos-ggplot-basics-11-1.pdf differ diff --git a/figure/pos-ggplot-basics-info-01-1.pdf b/figure/pos-ggplot-basics-info-01-1.pdf index 0c4002a5..b188329b 100644 Binary files a/figure/pos-ggplot-basics-info-01-1.pdf and b/figure/pos-ggplot-basics-info-01-1.pdf differ diff --git a/figure/pos-ggplot-objects-02-1.pdf b/figure/pos-ggplot-objects-02-1.pdf index 4fffaf3f..878f4891 100644 Binary files a/figure/pos-ggplot-objects-02-1.pdf and b/figure/pos-ggplot-objects-02-1.pdf differ diff --git a/figure/pos-ggplot-objects-info-02-1.pdf b/figure/pos-ggplot-objects-info-02-1.pdf index 7515e8c0..bbc961b5 100644 Binary files a/figure/pos-ggplot-objects-info-02-1.pdf and b/figure/pos-ggplot-objects-info-02-1.pdf differ diff --git a/figure/pos-hex-plot-01-1.pdf b/figure/pos-hex-plot-01-1.pdf index c8cbf76d..45297286 100644 Binary files a/figure/pos-hex-plot-01-1.pdf and b/figure/pos-hex-plot-01-1.pdf differ diff --git a/figure/pos-histogram-plot-01-1.pdf b/figure/pos-histogram-plot-01-1.pdf index 2e12ab2b..23b797ba 100644 Binary files a/figure/pos-histogram-plot-01-1.pdf and b/figure/pos-histogram-plot-01-1.pdf differ diff --git a/figure/pos-histogram-plot-03-1.pdf b/figure/pos-histogram-plot-03-1.pdf index fb85b259..1d6774ab 100644 Binary files a/figure/pos-histogram-plot-03-1.pdf and b/figure/pos-histogram-plot-03-1.pdf differ diff --git a/figure/pos-inset-01-1.pdf b/figure/pos-inset-01-1.pdf index a9e786f3..85702bd5 100644 Binary files a/figure/pos-inset-01-1.pdf and b/figure/pos-inset-01-1.pdf differ diff --git a/figure/pos-label-plot-01-1.pdf b/figure/pos-label-plot-01-1.pdf index 66ae0e52..1de7698e 100644 Binary files a/figure/pos-label-plot-01-1.pdf and b/figure/pos-label-plot-01-1.pdf differ diff --git a/figure/pos-line-plot-01-1.pdf b/figure/pos-line-plot-01-1.pdf index 54901f52..f58cfe59 100644 Binary files a/figure/pos-line-plot-01-1.pdf and b/figure/pos-line-plot-01-1.pdf differ diff --git a/figure/pos-main-chunk-27-1.pdf b/figure/pos-main-chunk-27-1.pdf index b993197b..c62196a0 100644 Binary files a/figure/pos-main-chunk-27-1.pdf and b/figure/pos-main-chunk-27-1.pdf differ diff --git a/figure/pos-main-chunk-59-1.pdf b/figure/pos-main-chunk-59-1.pdf index 956903e7..7833ef58 100644 Binary files a/figure/pos-main-chunk-59-1.pdf and b/figure/pos-main-chunk-59-1.pdf differ diff --git a/figure/pos-mapping-stage-02-1.pdf b/figure/pos-mapping-stage-02-1.pdf index fb94d7f9..3445ec9a 100644 Binary files a/figure/pos-mapping-stage-02-1.pdf and b/figure/pos-mapping-stage-02-1.pdf differ diff --git a/figure/pos-mapping-stage-03-1.pdf b/figure/pos-mapping-stage-03-1.pdf index dadadbeb..4b3b0456 100644 Binary files a/figure/pos-mapping-stage-03-1.pdf and b/figure/pos-mapping-stage-03-1.pdf differ diff --git a/figure/pos-mds-03-1.pdf b/figure/pos-mds-03-1.pdf index 02e52407..9da587e2 100644 Binary files a/figure/pos-mds-03-1.pdf and b/figure/pos-mds-03-1.pdf differ diff --git a/figure/pos-model-11-1.pdf b/figure/pos-model-11-1.pdf index b479909b..39d590fe 100644 Binary files a/figure/pos-model-11-1.pdf and b/figure/pos-model-11-1.pdf differ diff --git a/figure/pos-model-6a-1.pdf b/figure/pos-model-6a-1.pdf index edd23e34..427315be 100644 Binary files a/figure/pos-model-6a-1.pdf and b/figure/pos-model-6a-1.pdf differ diff --git a/figure/pos-models-1a-1.pdf b/figure/pos-models-1a-1.pdf index 3c006b70..0075b8ad 100644 Binary files a/figure/pos-models-1a-1.pdf and b/figure/pos-models-1a-1.pdf differ diff --git a/figure/pos-models-2a-1.pdf b/figure/pos-models-2a-1.pdf index ed8a60aa..7b012a0c 100644 Binary files a/figure/pos-models-2a-1.pdf and b/figure/pos-models-2a-1.pdf differ diff --git a/figure/pos-patchwork-03-1.pdf b/figure/pos-patchwork-03-1.pdf index af868f6d..5ce8b8f9 100644 Binary files a/figure/pos-patchwork-03-1.pdf and b/figure/pos-patchwork-03-1.pdf differ diff --git a/figure/pos-pca-04-1.pdf b/figure/pos-pca-04-1.pdf index 07c92f3a..87833d16 100644 Binary files a/figure/pos-pca-04-1.pdf and b/figure/pos-pca-04-1.pdf differ diff --git a/figure/pos-pca-05-1.pdf b/figure/pos-pca-05-1.pdf index f7f59781..75ef7080 100644 Binary files a/figure/pos-pca-05-1.pdf and b/figure/pos-pca-05-1.pdf differ diff --git a/figure/pos-plot-1-1.pdf b/figure/pos-plot-1-1.pdf index 1a83754c..97d0d2ed 100644 Binary files a/figure/pos-plot-1-1.pdf and b/figure/pos-plot-1-1.pdf differ diff --git a/figure/pos-plot-2-1.pdf b/figure/pos-plot-2-1.pdf index 56cf566b..a3318fd7 100644 Binary files a/figure/pos-plot-2-1.pdf and b/figure/pos-plot-2-1.pdf differ diff --git a/figure/pos-plot-3-1.pdf b/figure/pos-plot-3-1.pdf index 1f66bd4a..bfaedd16 100644 Binary files a/figure/pos-plot-3-1.pdf and b/figure/pos-plot-3-1.pdf differ diff --git a/figure/pos-plot-grob-01-1.pdf b/figure/pos-plot-grob-01-1.pdf index da26ec92..ee8528f9 100644 Binary files a/figure/pos-plot-grob-01-1.pdf and b/figure/pos-plot-grob-01-1.pdf differ diff --git a/figure/pos-plot-npc-eb-01-1.pdf b/figure/pos-plot-npc-eb-01-1.pdf index 658c2a0a..94921d97 100644 Binary files a/figure/pos-plot-npc-eb-01-1.pdf and b/figure/pos-plot-npc-eb-01-1.pdf differ diff --git a/figure/pos-plot-plot-02-1.pdf b/figure/pos-plot-plot-02-1.pdf index 3abfe614..f6e7c8e4 100644 Binary files a/figure/pos-plot-plot-02-1.pdf and b/figure/pos-plot-plot-02-1.pdf differ diff --git a/figure/pos-plot-plot-03-1.pdf b/figure/pos-plot-plot-03-1.pdf index 7c06f0d6..a9a10886 100644 Binary files a/figure/pos-plot-plot-03-1.pdf and b/figure/pos-plot-plot-03-1.pdf differ diff --git a/figure/pos-plotmath-02-1.pdf b/figure/pos-plotmath-02-1.pdf index 70b17428..2fea082b 100644 Binary files a/figure/pos-plotmath-02-1.pdf and b/figure/pos-plotmath-02-1.pdf differ diff --git a/figure/pos-plotmath-02a-1.pdf b/figure/pos-plotmath-02a-1.pdf index 8e33d46c..9e30160e 100644 Binary files a/figure/pos-plotmath-02a-1.pdf and b/figure/pos-plotmath-02a-1.pdf differ diff --git a/figure/pos-repel-plot-01-1.pdf b/figure/pos-repel-plot-01-1.pdf index bded3b43..46a183f3 100644 Binary files a/figure/pos-repel-plot-01-1.pdf and b/figure/pos-repel-plot-01-1.pdf differ diff --git a/figure/pos-rug-plot-01-1.pdf b/figure/pos-rug-plot-01-1.pdf index 6d9caab1..d32f6995 100644 Binary files a/figure/pos-rug-plot-01-1.pdf and b/figure/pos-rug-plot-01-1.pdf differ diff --git a/figure/pos-scale-color-10-1.pdf b/figure/pos-scale-color-10-1.pdf index 2b3743e6..74be15ef 100644 Binary files a/figure/pos-scale-color-10-1.pdf and b/figure/pos-scale-color-10-1.pdf differ diff --git a/figure/pos-scale-datetime-01-1.pdf b/figure/pos-scale-datetime-01-1.pdf index 847c0d22..d9efe04a 100644 Binary files a/figure/pos-scale-datetime-01-1.pdf and b/figure/pos-scale-datetime-01-1.pdf differ diff --git a/figure/pos-scale-datetime-02-1.pdf b/figure/pos-scale-datetime-02-1.pdf index 717b61c3..620a96ec 100644 Binary files a/figure/pos-scale-datetime-02-1.pdf and b/figure/pos-scale-datetime-02-1.pdf differ diff --git a/figure/pos-scale-discrete-10-1.pdf b/figure/pos-scale-discrete-10-1.pdf index d1baaf59..196a7f7d 100644 Binary files a/figure/pos-scale-discrete-10-1.pdf and b/figure/pos-scale-discrete-10-1.pdf differ diff --git a/figure/pos-scale-limits-04-1.pdf b/figure/pos-scale-limits-04-1.pdf index ba51dde1..d7e3bda5 100644 Binary files a/figure/pos-scale-limits-04-1.pdf and b/figure/pos-scale-limits-04-1.pdf differ diff --git a/figure/pos-scale-ticks-02-1.pdf b/figure/pos-scale-ticks-02-1.pdf index 3f1e2851..f9e14fa4 100644 Binary files a/figure/pos-scale-ticks-02-1.pdf and b/figure/pos-scale-ticks-02-1.pdf differ diff --git a/figure/pos-scale-ticks-03-1.pdf b/figure/pos-scale-ticks-03-1.pdf index 476989be..e7fb26b3 100644 Binary files a/figure/pos-scale-ticks-03-1.pdf and b/figure/pos-scale-ticks-03-1.pdf differ diff --git a/figure/pos-scale-ticks-04-1.pdf b/figure/pos-scale-ticks-04-1.pdf index ec469300..d4eaf391 100644 Binary files a/figure/pos-scale-ticks-04-1.pdf and b/figure/pos-scale-ticks-04-1.pdf differ diff --git a/figure/pos-scale-trans-01-1.pdf b/figure/pos-scale-trans-01-1.pdf index c4d02287..9c2db720 100644 Binary files a/figure/pos-scale-trans-01-1.pdf and b/figure/pos-scale-trans-01-1.pdf differ diff --git a/figure/pos-scatter-01-1.pdf b/figure/pos-scatter-01-1.pdf index a57ef78b..c41f7753 100644 Binary files a/figure/pos-scatter-01-1.pdf and b/figure/pos-scatter-01-1.pdf differ diff --git a/figure/pos-scatter-12-1.pdf b/figure/pos-scatter-12-1.pdf index d5ead9b8..846dc3dc 100644 Binary files a/figure/pos-scatter-12-1.pdf and b/figure/pos-scatter-12-1.pdf differ diff --git a/figure/pos-scatter-12a-1.pdf b/figure/pos-scatter-12a-1.pdf index 37ad32e4..665f45ec 100644 Binary files a/figure/pos-scatter-12a-1.pdf and b/figure/pos-scatter-12a-1.pdf differ diff --git a/figure/pos-scatter-16-1.pdf b/figure/pos-scatter-16-1.pdf index 6ef5afde..ec4b3a00 100644 Binary files a/figure/pos-scatter-16-1.pdf and b/figure/pos-scatter-16-1.pdf differ diff --git a/figure/pos-scatter-18-1.pdf b/figure/pos-scatter-18-1.pdf index 5bba6c09..1bbc2a62 100644 Binary files a/figure/pos-scatter-18-1.pdf and b/figure/pos-scatter-18-1.pdf differ diff --git a/figure/pos-sf_plot-01-1.pdf b/figure/pos-sf_plot-01-1.pdf index a7b927ea..d85e74f5 100644 Binary files a/figure/pos-sf_plot-01-1.pdf and b/figure/pos-sf_plot-01-1.pdf differ diff --git a/figure/pos-smooth-plot-02-1.pdf b/figure/pos-smooth-plot-02-1.pdf index b21dc56c..c3afeac5 100644 Binary files a/figure/pos-smooth-plot-02-1.pdf and b/figure/pos-smooth-plot-02-1.pdf differ diff --git a/figure/pos-smooth-plot-04-1.pdf b/figure/pos-smooth-plot-04-1.pdf index 757c67d4..3016aa2c 100644 Binary files a/figure/pos-smooth-plot-04-1.pdf and b/figure/pos-smooth-plot-04-1.pdf differ diff --git a/figure/pos-smooth-plot-06-1.pdf b/figure/pos-smooth-plot-06-1.pdf index 006cc17b..721f1b70 100644 Binary files a/figure/pos-smooth-plot-06-1.pdf and b/figure/pos-smooth-plot-06-1.pdf differ diff --git a/figure/pos-smooth-plot-12-1.pdf b/figure/pos-smooth-plot-12-1.pdf index 2109c304..d12f11d7 100644 Binary files a/figure/pos-smooth-plot-12-1.pdf and b/figure/pos-smooth-plot-12-1.pdf differ diff --git a/figure/pos-smooth-plot-13-1.pdf b/figure/pos-smooth-plot-13-1.pdf index af5b6335..a2f464e1 100644 Binary files a/figure/pos-smooth-plot-13-1.pdf and b/figure/pos-smooth-plot-13-1.pdf differ diff --git a/figure/pos-step-plot-01-1.pdf b/figure/pos-step-plot-01-1.pdf index caded8d8..d932aaa3 100644 Binary files a/figure/pos-step-plot-01-1.pdf and b/figure/pos-step-plot-01-1.pdf differ diff --git a/figure/pos-summary-plot-02-1.pdf b/figure/pos-summary-plot-02-1.pdf index df470532..de9881c5 100644 Binary files a/figure/pos-summary-plot-02-1.pdf and b/figure/pos-summary-plot-02-1.pdf differ diff --git a/figure/pos-summary-plot-09a-1.pdf b/figure/pos-summary-plot-09a-1.pdf index d6c2e30c..9ba4b5ed 100644 Binary files a/figure/pos-summary-plot-09a-1.pdf and b/figure/pos-summary-plot-09a-1.pdf differ diff --git a/figure/pos-table-plot-02-1.pdf b/figure/pos-table-plot-02-1.pdf index b3881ad5..9941aa32 100644 Binary files a/figure/pos-table-plot-02-1.pdf and b/figure/pos-table-plot-02-1.pdf differ diff --git a/figure/pos-text-plot-01-1.pdf b/figure/pos-text-plot-01-1.pdf index 4fdb8dd9..12359d44 100644 Binary files a/figure/pos-text-plot-01-1.pdf and b/figure/pos-text-plot-01-1.pdf differ diff --git a/figure/pos-text-plot-06-1.pdf b/figure/pos-text-plot-06-1.pdf index ad21a0c8..8603e8c8 100644 Binary files a/figure/pos-text-plot-06-1.pdf and b/figure/pos-text-plot-06-1.pdf differ diff --git a/figure/pos-themes-01-1.pdf b/figure/pos-themes-01-1.pdf index 449286a4..74b6caa0 100644 Binary files a/figure/pos-themes-01-1.pdf and b/figure/pos-themes-01-1.pdf differ diff --git a/figure/pos-themes-11-1.pdf b/figure/pos-themes-11-1.pdf index a7b19b3f..125feccd 100644 Binary files a/figure/pos-themes-11-1.pdf and b/figure/pos-themes-11-1.pdf differ diff --git a/figure/pos-themes-21-1.pdf b/figure/pos-themes-21-1.pdf index 31690346..52407646 100644 Binary files a/figure/pos-themes-21-1.pdf and b/figure/pos-themes-21-1.pdf differ diff --git a/figure/pos-themes-33-1.pdf b/figure/pos-themes-33-1.pdf index 2b6488c0..7f4d776e 100644 Binary files a/figure/pos-themes-33-1.pdf and b/figure/pos-themes-33-1.pdf differ diff --git a/figure/pos-tile-plot-02-1.pdf b/figure/pos-tile-plot-02-1.pdf index 69ec177e..3e038f53 100644 Binary files a/figure/pos-tile-plot-02-1.pdf and b/figure/pos-tile-plot-02-1.pdf differ diff --git a/figure/pos-tile-plot-03-1.pdf b/figure/pos-tile-plot-03-1.pdf index 09f27858..bcd088e4 100644 Binary files a/figure/pos-tile-plot-03-1.pdf and b/figure/pos-tile-plot-03-1.pdf differ diff --git a/figure/pos-ts-02-1.pdf b/figure/pos-ts-02-1.pdf index 03d36da5..925eee22 100644 Binary files a/figure/pos-ts-02-1.pdf and b/figure/pos-ts-02-1.pdf differ diff --git a/figure/pos-ts-03-1.pdf b/figure/pos-ts-03-1.pdf index e47dfda4..d3ba9edf 100644 Binary files a/figure/pos-ts-03-1.pdf and b/figure/pos-ts-03-1.pdf differ diff --git a/figure/pos-ts-05-1.pdf b/figure/pos-ts-05-1.pdf index ea976f3f..f0976a86 100644 Binary files a/figure/pos-ts-05-1.pdf and b/figure/pos-ts-05-1.pdf differ diff --git a/figure/pos-violin-plot-02-1.pdf b/figure/pos-violin-plot-02-1.pdf index 4890b5f5..9da25962 100644 Binary files a/figure/pos-violin-plot-02-1.pdf and b/figure/pos-violin-plot-02-1.pdf differ diff --git a/figure/pos-wind-05-1.pdf b/figure/pos-wind-05-1.pdf index 21691c12..c6fa4910 100644 Binary files a/figure/pos-wind-05-1.pdf and b/figure/pos-wind-05-1.pdf differ diff --git a/figure/pos-wind-06-1.pdf b/figure/pos-wind-06-1.pdf index b563beee..1de7d6f0 100644 Binary files a/figure/pos-wind-06-1.pdf and b/figure/pos-wind-06-1.pdf differ diff --git a/figure/pos-wind-08-1.pdf b/figure/pos-wind-08-1.pdf index 5f9ea2c5..d92fada9 100644 Binary files a/figure/pos-wind-08-1.pdf and b/figure/pos-wind-08-1.pdf differ diff --git a/frontmatter/preface.tex b/frontmatter/preface.tex index bd51880a..5de62a74 100644 --- a/frontmatter/preface.tex +++ b/frontmatter/preface.tex @@ -39,23 +39,36 @@ \section*{Acknowledgements} \section*{Icons used to mark different content} -Text boxes are used throughout the book to highlight content that plays specific roles in the learning process or that require special attention from the reader. Each box contains one of five different icons that indicate the type of its contents as described below.\\[1.5ex] +Marginal bars and icons are used throughout the book to highlight content that plays specific roles in the learning process or that require special attention from the reader. Each box contains one of five different icons that indicate the type of its contents as described below.\\[1.5ex] -\noindent -\playicon\ Signals \emph{playground} boxes which contain open-ended exercises---ideas and pieces of \Rlang code to play with at the \Rlang console.\\[1.5ex] +\begin{playground} +Signals \emph{playground} boxes which contain open-ended exercises---ideas and pieces of \Rlang code to play with at the \Rlang console.\\[1.5ex] +\end{playground} -\noindent -\advplayicon\ Signals \emph{advanced playground} boxes which will require more time to play with before grasping concepts than regular \emph{playground} boxes.\\[1.5ex] +\begin{advplayground} +Signals \emph{advanced playground} boxes which will require more time to play with before grasping concepts than regular \emph{playground} boxes.\\[1.5ex] +\end{advplayground} -\noindent -\ilAttention\ Signals important bits of information that must be remembered when using \Rlang---i.e., explain some unusual feature of the language.\\[1.5ex] +\begin{warningbox} +Signals important bits of information that must be remembered when using \Rlang---i.e., explain some unusual feature of the language.\\[1.5ex] +\end{warningbox} -\noindent -\ilAdvanced\ Signals in-depth explanations of specific points that may require you to spend time thinking, which in general can be skipped on first reading, but to which you should return at a later peaceful time, preferably with a cup of coffee or tea.\\[1.5ex] +\begin{explainbox} +Signals in-depth explanations of specific points that may require you to spend time thinking, which in general can be skipped on first reading, but to which you should return at a later peaceful time, preferably with a cup of coffee or tea.\\[1.5ex] +\end{explainbox} -\noindent -\infoicon\ Signals text boxes providing general information not directly related to the \Rlang language.\\[1.5ex] -%\end{framed} +\begin{infobox} +Signals text boxes providing general information not directly related to the \Rlang language.\\[1.5ex] +\end{infobox} + +I also use the notation \textcolor{blue}{\code{}}, \textcolor{blue}{\code{}}, etc., as a generic placeholder in diagrams indicating \emph{any valid value}, \emph{any valid R statement}, etc. + +R code is typeset using colour to highlight the different elements of the syntax, such as variables, functions, constant values, etc. For example in the ``code chunk below'' \code{mean()} and \code{print()} are functions; 1, 4 and 3 are constant values, and \code{z} is the name of a variable where the result of the computation done in the first line of code was stored. + +<>= +z <- mean(1, 5, 3) +print(z) +@ %\newpage %\newpage diff --git a/output/my-file.pdf b/output/my-file.pdf index d1dece61..7ed1dfc4 100644 Binary files a/output/my-file.pdf and b/output/my-file.pdf differ diff --git a/preface.Rnw b/preface.Rnw new file mode 100644 index 00000000..8b8bf89a --- /dev/null +++ b/preface.Rnw @@ -0,0 +1,112 @@ +\chapter*{Preface} + +\begin{VF} +``Suppose that you want to teach the `cat' concept to a very young child. Do you explain that a cat is a relatively small, primarily carnivorous mammal with retractible claws, a distinctive sonic output, etc.? I'll bet not. You probably show the kid a lot of different cats, saying `kitty' each time, until it gets the idea. To put it more generally, generalizations are best made by abstraction from experience.'' + +\VA{R. P. Boas}{\emph{Can we make mathematics intelligible?}, 1981}\nocite{Boas1981} +\end{VF} + +%\dictum[R. P. Boas (1981) Can we make mathematics intelligible?, \emph{American Mathematical Monthly} \textbf{88:} 727-731.]{"Suppose that you want to teach the `cat' concept to a very young child. Do you explain that a cat is a relatively small, primarily carnivorous mammal with retractible claws, a distinctive sonic output, etc.? I'll bet not. You probably show the kid a lot of different cats, saying `kitty' each time, until it gets the idea. To put it more generally, generalizations are best made by abstraction from experience."} + + +% Such pauses are not a miss use of our time. To learn a natural language we need to interact with other speakers, we need feedback. In the case of R, we can get feedback both from the outcomes from our utterances to the computer, and from other \Rlang users.} +\noindent +This book covers different aspects of the use of the \Rlang language. Chapters \ref{chap:R:introduction} to \ref{chap:R:functions} describe the \Rlang language itself. Later chapters describe extensions to the \Rlang language available through contributed \emph{packages}, the \emph{grammar of data} and the \emph{grammar of graphics}. In this book, explanations are concise but contain pointers to additional sources of information, so as to encourage the development of a routine of independent exploration. This is not an arbitrary decision, this is the normal \emph{modus operandi} of most of us who use \Rlang regularly for a variety of different problems. Some have called approaches like the one used here ``learning the hard way,'' but I would call it ``learning to be independent.'' + +I do not discuss statistics or data analysis methods in this book; I describe \Rlang as a language for data manipulation and visualization. The idea is for you to learn the \Rlang language in a way comparable to how children learn a language: they work out what the rules are, simply by listening to people speak and trying to utter what they want to tell their parents. Of course, small children receive some guidance, but they are not taught a prescriptive set of rules like when learning a second language at school. Instead of listening, you will read code, and instead of speaking, you will try to execute \Rlang code statements on a computer---i.e., you will try your hand at using \Rlang to tell a computer what you want it to compute. I do provide explanations and guidance, but the idea of this book is for you to use the numerous examples to find out by yourself the overall patterns and coding philosophy behind the \Rlang language. Instead of parents being the sound board for your first utterances in \Rlang, the computer will play this role. You will \emph{play} by modifying the examples, see how the computer responds: does \Rlang understand you or not? Using a language actively is the most efficient way of learning it. By using it, I mean actually reading, writing, and running scripts or programs (copying and pasting, or typing ready-made examples from books or the internet, does not qualify as using a language). + +I have been using \Rlang since around 1998 or 1999, but I am still constantly learning new things about \Rlang itself and \Rlang packages. With time, it has replaced in my work as a researcher and teacher several other pieces of software: \pgrmnameNI{SPSS}, \pgrmnameNI{Systat}, \pgrmnameNI{Origin}, \pgrmnameNI{MS-Excel}, and it has become a central piece of the tool set I use for producing lecture slides, notes, books, and even web pages. This is to say that it is the most useful piece of software and programming language I have ever learned to use. Of course, in time it will be replaced by something better, but at the moment it is a key language to learn for anybody with a need to analyze and display data. + +What is a language? A language is a system of communication. \Rlang as a language allows us to communicate with other members of the \Rlang community, and with computers. As with all languages in active use, \Rlang evolves. New ``words'' and new ``constructs'' are incorporated into the language, and some earlier frequently used ones are relegated to the fringes of the corpus. I describe current usage and ``modisms'' of the \Rlang language in a way accessible to a readership unfamiliar with computer science but with some background in data analysis as used in biology, engineering, or the humanities. + +When teaching, I tend to lean toward challenging students, rather than telling an over-simplified story. There are two reasons for this. First, I prefer as a student, and I learn best myself, if the going is not too easy. Second, if I would hide the tricky bits of the \Rlang language, it would make the reader's life much more difficult later on. You will not remember all the details; nobody could. However, you most likely will remember or develop a sense of when you need to be careful or should check the details. So, I will expose you not only to the usual cases, but also to several exceptions and counterintuitive features of the language, which I have highlighted with icons. Reading this book will be about exploring a new world; this book aims to be a travel guide, but neither a traveler's account, nor a cookbook of \Rlang recipes. + +Keep in mind that it is impossible to remember everything about \Rlang! The \Rlang language, in a broad sense, is vast because its capabilities can be expanded with independently developed packages. Learning to use \Rlang consists of learning the basics plus developing the skill of finding your way in \Rlang and its documentation. In early 2020, the number of packages available in the Comprehensive \Rlang Archive Network (CRAN) broke the 15,000 barrier. CRAN is the most important, but not only, public repository for \Rlang packages. How good a command of the \Rlang language and packages a user needs depends on the type of activities to be carried out. This book attempts to train you in the use of the \Rlang language itself, and of popular \Rlang language extensions for data manipulation and graphical display. Given the availability of numerous books on statistical analysis with \Rlang, in the present book I will cover only the bare minimum of this subject. The same is true for package development in \Rlang. This book is somewhere in-between, aiming at teaching programming in the small: the use of \Rlang to automate the drudgery of data manipulation, including the different steps spanning from data input and exploration to the production of publication-quality illustrations. + +As with all ``rich'' languages, there are many different ways of doing things in \Rlang. In almost all cases there is no one-size-fits-all solution to a problem. There is always a compromise involved, usually between time spent by the user and processing time required in the computer. Many of the packages that are most popular nowadays did not exist when I started using \Rlang, and many of these packages make new approaches available. One could write many different \Rlang books with a given aim using substantially different ways of achieving the same results. In this book, I limit myself to packages that are currently popular and/or that I consider elegantly designed. I have in particular tried to limit myself to packages with similar design philosophies, especially in relation to their interfaces. What is elegant design, and in particular what is a friendly user interface, depends strongly on each user's preferences and previous experience. Consequently, the contents of the book are strongly biased by my own preferences. I have tried to write examples in ways that execute fast without compromising readability. I encourage readers to take this book as a starting point for exploring the very many packages, styles, and approaches which I have not described. + +This revised second edition reflects changes that took place in \Rlang and packages described. Only very few code chunks from the first edition had stopped working. Main difficulty was a package no longer available. Deprecations meant that some examples continued working but triggered messages or warnings. Recent ($>$ 4.0.0) versions of \Rlang have significant enhancements such as the new pipe operator. Packages have also evolved acquiring new features, which even if minimally affecting existing examples, provide new features. The book has been updated to account for these changes. In addition diagrams and flowcharts have been added to facilitate comprehension. The text from the first edition was edited to fix all errors known to the author and to improve the clarity of previously unclear explanations. + +I will appreciate suggestions for further examples, and notification of errors and unclear sections. Because the examples here have been collected from diverse sources over many years, not all sources are acknowledged. If you recognize any example as yours or someone else's, please let me know so that I can add a proper acknowledgement. I warmly thank the students who have asked the questions and posed the problems that have helped me write this text and correct the mistakes and voids of previous versions. I have also received help on online forums and in person from numerous people, learned from archived e-mail list messages, blog posts, books, articles, tutorials, webinars, and by struggling to solve some new problems on my own. In many ways this text owes much more to people who are not authors than to myself. However, as I am the one who has written this version and decided what to include and exclude, as author, I take full responsibility for any errors and inaccuracies. + +Why have I chosen the title ``\emph{Learn R: As a Language}''? This book is based on exploration and practice that aims at teaching to express various generic operations on data using the \Rlang language. It focuses on the language, rather than on specific types of data analysis, and exposes the reader to current usage and does not spare the quirks of the language. When we use our native language in everyday life, we do not think about grammar rules or sentence structure, except for the trickier or unfamiliar situations. My aim is for this book to help you grow to use \Rlang in this same way, to become fluent in \Rlang. The book is structured around the elements of languages with chapter titles that highlight the parallels between natural languages like English and the \Rlang language. + +\emph{I encourage you to approach \Rlang like a child approaches his or her mother tongue when first learning to speak: do not struggle, just play, and fool around with \Rlang! If the going gets difficult and frustrating, take a break! If you get a new insight, take a break to enjoy the victory! +}%\end{framed} + +\section*{Acknowledgements} +First I thank Jaakko Heinonen for introducing me to the then new \Rlang. Along the way many well known and not so famous experts have answered my questions in usenet and more recently in Stackoverflow. As time went by, answering other people's questions, both in the internet and in person, became the driving force for me to delve into the depths of the \Rlang language. Of course, I still get stuck from time to time and ask for help. I wish to warmly thank all the people I have interacted with in relation to R, including members of my own research group, students participating in the courses I have taught, colleagues I have collaborated with, authors of the books I have read and people I have only met online or at conferences. All of them have made it possible for me to write this book. This has been a time consuming endeavour which has kept me too many hours away from my family, so I specially thank Tarja, Rosa and Tomás for their understanding. I am indebted to Tarja Lehto, Titta Kotilainen, Tautvydas Zalnierius, Fang Wang, Yan Yan, Neha Rai, Markus Laurel, other colleagues, students and anonymous reviewers for many very helpful comments on different versions of the book manuscript, Rob Calver, as editor, for his encouragement and patience during the whole duration of this book writing project, Lara Spieker, Vaishali Singh, and Paul Boyd for their help with different aspects of this project. + +\section*{Icons, colours and typefaces used to mark different content} + +Marginal bars and icons are used throughout the book to highlight content that plays specific roles in the learning process or that require special attention from the reader. Each box contains one of five different icons that indicate the type of its contents as described below. + +\begin{infobox} +Signals text boxes providing general information not directly related to the \Rlang language. +\end{infobox} + +\begin{explainbox} +Signals in-depth explanations of specific points that may require you to spend time thinking, which in general can be skipped on first reading, but to which you should return at a later peaceful time, preferably with a cup of coffee or tea. +\end{explainbox} + +\begin{warningbox} +Signals important bits of information that must be remembered when using \Rlang---i.e., explain some unusual feature of the language. +\end{warningbox} + +\begin{playground} +Signals \emph{playground} boxes which contain open-ended exercises---ideas and pieces of \Rlang code to play with at the \Rlang console. +\end{playground} + +\begin{advplayground} +Signals \emph{advanced playground} boxes which will require more time to play with before grasping concepts than regular \emph{playground} boxes. +\end{advplayground} + +I use the notation \textcolor{blue}{\code{}}, \textcolor{blue}{\code{}}, etc., as a generic placeholder in diagrams indicating \emph{any valid value}, \emph{any valid R statement}, etc. + +R code is typeset in a typewriter font, and using colour to highlight the different elements of the syntax, such as variables, functions, constant values, etc. For example in the ``code chunk'' below \code{mean()} and \code{print()} are functions; 1, 5 and 3 are constant values, and \code{z} is the name of a variable where the result of the computation done in the first line of code is stored. The line starting with \code{\#\# } shows what is printed to the screen when executing the second statement: \code{[1] 1}. + +<>= +z <- mean(1, 5, 3) +print(z) +@ +%\newpage + +%\newpage +%\begin{infobox} +%\noindent +%\textbf{Status as of 2016-11-23.} I have updated the manuscript to track package updates since the previous version uploaded six months ago, and added several examples of the new functionality added to packages \ggpmisc, \ggrepel, and \ggplot. I have written new sections on packages \viridis, \pkgname{gganimate}, \pkgname{ggstance}, \pkgname{ggbiplot}, \pkgname{ggforce}, \pkgname{ggtern} and \pkgname{ggalt}. Some of these sections are to be expanded, and additional sections are planned for other recently released packages. +% +%With respect to the chapter \textit{Storing and manipulating data with R} I have put it on hold, except for the introduction, until I can see a soon to be published book covering the same subject. Hadley Wickham has named the set of tools developed by him and his collaborators as \textit{tidyverse} to be described in the book titled \textit{R for Data Science} by Grolemund and Wickham (O'Reilly). +% +%An important update to \ggplot was released last week, and it includes changes to the behavior of some existing functions, specially faceting has become extensible through other packages. Several of the new facilities are described in the updated text and code included in this book and this pdf has been generated with up-to-date version of \ggplot and packages as available today from CRAN, except for \pkgname{ggtern} which was downloaded from Bitbucket minutes ago. +% +%The present update adds about 100 pages to the previous versions. I expect to upload a new update to this manuscript in one or two months time. +% +%\textbf{Status as of 2017-01-17.} Added ``playground'' exercises to the chapter describing \ggplot, and converted some of the examples earlier part of the main text into these playground items. Added icons to help readers quickly distinguish playground sections (\textcolor{blue}{\noticestd{"0055}}), information sections (\textcolor{blue}{\modpicts{"003D}}), warnings about things one needs to be specially aware of (\colorbox{yellow}{\typicons{"E136}}) and boxes with more advanced content that may require longer time/more effort to grasp (\typicons{"E04E}). Added to the sections \code{scales} and examples in the \ggplot chapter details about the use of colors in \Rlang and \ggplot2. Removed some redundant examples, and updated the section on \code{plotmath}. Added terms to the alphabetical index. Increased line-spacing to avoid uneven spacing with inline code bits. +% +%\textbf{Status as of 2017-02-09.} Wrote section on ggplot2 themes, and on using system- and Google fonts in ggpplots with the help of package \pkgname{showtext}. Expanded section on \ggplot's \code{annotation}, and revised some sections in the ``R scripts and Programming'' chapter. Started writing the data chapter. Wrote draft on writing and reading text files. Several other smaller edits to text and a few new examples. +% +%\textbf{Status as of 2017-02-14.} Wrote sections on reading and writing MS-Excel files, files from statistical programs such as SPSS, SyStat, etc., and NetCDF files. Also wrote sections on using URLs to directly read data, and on reading HTML and XML files directly, as well on using JSON to retrieve measured/logged data from IoT (internet of things) and similar intelligent physical sensors, micro-controller boards and sensor hubs with network access. +% +%\textbf{Status as of 2017-03-25.} Revised and expanded the chapter on plotting maps, adding a section on the manipulation and plotting of image data. Revised and expanded the chapter on extensions to \pkgname{ggplot2}, so that there are no longer empty sections. Wrote short chapter ``If and when \Rlang needs help.'' Revised and expanded the ``Introduction'' chapter. Added index entries, and additional citations to literature. +% +%\textbf{Status as of 2017-04-04.} Revised and expanded the chapter on using \Rpgrm as a calculator. Revised and expanded the ``Scripts'' chapter. Minor edits to ``Functions'' chapter. Continued writing chapter on data, writing a section on \Rlang native apply functions and added preliminary text for a pipes and tees section. Write intro to `tidyverse' and grammar of data manipulation. Added index entries, and a few additional citations to the literature. Spell checking. +% +%\textbf{Status as of 2017-04-08.} Completed writing first draft of chapter on data, writing all the previously missing sections on the ``grammar of data manipulation.'' Wrote two extended examples in the same chapter. Add table listing several extensions to \pkgname{ggplot2} not described in the book. +% +%\textbf{Status as of 2017-04-13.} Revised all chapters correcting some spelling mistakes, adding some explanatory text and indexing all functions and operators used. Thoroughly revised the Introduction chapter and the Preface. Expanded section on bar plots (now bar and column plots). Revised section on tile plots. Expanded section on factors in chapter 2, adding examples of reordering of factor labels, and making clearer the difference between the labels of the levels and the levels themselves. +% +%\textbf{Status as of 2017-04-29.} Tested with R 3.4.0. Package \pkgname{gganimate} needs to be installed from GitHub as the updated version is not yet in CRAN. Function \code{gg\_animate()} has been renamed \code{gganimate().} +% +%\textbf{Status as of 2017-05-14.} Submitted package \pkgname{learnrbook} to CRAN. Revised code in the book +%to use this new package. Small fixes after more testing. Added examples of plotting and labeling based on fits with \code{method = "nls"}, including use of the new \code{ggpmisc::stat\_fit\_tidy()}. +% +%\textbf{Status as of 2017-06-11.} Added sections on R-code bench marking and profiling for performance optimization. Added also an example of explicit compilation of a function defined in the R language. Added section on functions \code{assign()}, \code{get()} and \code{mget()}. +% +%\textbf{Status as of 2017-08-12.} Various edits to all chapters. Expanded section on \pkgname{ggpmisc} to include the new functionality added in version 0.2.15.9002: \code{geom\_table} and \code{stat\_fit\_tb}. Added section on package \pkgname{ggbeeswarm}. Added sections on packages \pkgname{magick} and on using \pgrmname{ImageJ} from \Rpgrm. Improved indexing and cross references. +% +%\textbf{Status as of 2017-10-25.} Edited the chapter on using R as a calculator, adding examples on insertion and deletion of members of lists and vectors, and also of use of \code{gl()} and \code{reorder()}. Edited sections on scale limits and added new section on coordinate limits to explain more thoroughly their differences and uses in chapter on plotting with \pkgname{ggplot2}. Added a section on package \pkgname{ggsignif} to the chapter on extensions to \pkgname{ggplot2}. Expanded section on \pkgname{ggpmisc} in the same chapter describing new functionality added in version 0.2.16. +%\pkgname{ggplo2} $>=$ 2.2.1.9000 is required by the current development version of \pkgname{ggpmisc}. +% +%\textbf{Status as of 2017-10-30.} Add section on using pipes with \code{ggplot()} and layers. +%\end{infobox} \ No newline at end of file diff --git a/preface.tex b/preface.tex new file mode 100644 index 00000000..59f44b19 --- /dev/null +++ b/preface.tex @@ -0,0 +1,119 @@ +\chapter*{Preface} + +\begin{VF} +``Suppose that you want to teach the `cat' concept to a very young child. Do you explain that a cat is a relatively small, primarily carnivorous mammal with retractible claws, a distinctive sonic output, etc.? I'll bet not. You probably show the kid a lot of different cats, saying `kitty' each time, until it gets the idea. To put it more generally, generalizations are best made by abstraction from experience.'' + +\VA{R. P. Boas}{\emph{Can we make mathematics intelligible?}, 1981}\nocite{Boas1981} +\end{VF} + +%\dictum[R. P. Boas (1981) Can we make mathematics intelligible?, \emph{American Mathematical Monthly} \textbf{88:} 727-731.]{"Suppose that you want to teach the `cat' concept to a very young child. Do you explain that a cat is a relatively small, primarily carnivorous mammal with retractible claws, a distinctive sonic output, etc.? I'll bet not. You probably show the kid a lot of different cats, saying `kitty' each time, until it gets the idea. To put it more generally, generalizations are best made by abstraction from experience."} + + +% Such pauses are not a miss use of our time. To learn a natural language we need to interact with other speakers, we need feedback. In the case of R, we can get feedback both from the outcomes from our utterances to the computer, and from other \Rlang users.} +\noindent +This book covers different aspects of the use of the \Rlang language. Chapters \ref{chap:R:introduction} to \ref{chap:R:functions} describe the \Rlang language itself. Later chapters describe extensions to the \Rlang language available through contributed \emph{packages}, the \emph{grammar of data} and the \emph{grammar of graphics}. In this book, explanations are concise but contain pointers to additional sources of information, so as to encourage the development of a routine of independent exploration. This is not an arbitrary decision, this is the normal \emph{modus operandi} of most of us who use \Rlang regularly for a variety of different problems. Some have called approaches like the one used here ``learning the hard way,'' but I would call it ``learning to be independent.'' + +I do not discuss statistics or data analysis methods in this book; I describe \Rlang as a language for data manipulation and visualization. The idea is for you to learn the \Rlang language in a way comparable to how children learn a language: they work out what the rules are, simply by listening to people speak and trying to utter what they want to tell their parents. Of course, small children receive some guidance, but they are not taught a prescriptive set of rules like when learning a second language at school. Instead of listening, you will read code, and instead of speaking, you will try to execute \Rlang code statements on a computer---i.e., you will try your hand at using \Rlang to tell a computer what you want it to compute. I do provide explanations and guidance, but the idea of this book is for you to use the numerous examples to find out by yourself the overall patterns and coding philosophy behind the \Rlang language. Instead of parents being the sound board for your first utterances in \Rlang, the computer will play this role. You will \emph{play} by modifying the examples, see how the computer responds: does \Rlang understand you or not? Using a language actively is the most efficient way of learning it. By using it, I mean actually reading, writing, and running scripts or programs (copying and pasting, or typing ready-made examples from books or the internet, does not qualify as using a language). + +I have been using \Rlang since around 1998 or 1999, but I am still constantly learning new things about \Rlang itself and \Rlang packages. With time, it has replaced in my work as a researcher and teacher several other pieces of software: \pgrmnameNI{SPSS}, \pgrmnameNI{Systat}, \pgrmnameNI{Origin}, \pgrmnameNI{MS-Excel}, and it has become a central piece of the tool set I use for producing lecture slides, notes, books, and even web pages. This is to say that it is the most useful piece of software and programming language I have ever learned to use. Of course, in time it will be replaced by something better, but at the moment it is a key language to learn for anybody with a need to analyze and display data. + +What is a language? A language is a system of communication. \Rlang as a language allows us to communicate with other members of the \Rlang community, and with computers. As with all languages in active use, \Rlang evolves. New ``words'' and new ``constructs'' are incorporated into the language, and some earlier frequently used ones are relegated to the fringes of the corpus. I describe current usage and ``modisms'' of the \Rlang language in a way accessible to a readership unfamiliar with computer science but with some background in data analysis as used in biology, engineering, or the humanities. + +When teaching, I tend to lean toward challenging students, rather than telling an over-simplified story. There are two reasons for this. First, I prefer as a student, and I learn best myself, if the going is not too easy. Second, if I would hide the tricky bits of the \Rlang language, it would make the reader's life much more difficult later on. You will not remember all the details; nobody could. However, you most likely will remember or develop a sense of when you need to be careful or should check the details. So, I will expose you not only to the usual cases, but also to several exceptions and counterintuitive features of the language, which I have highlighted with icons. Reading this book will be about exploring a new world; this book aims to be a travel guide, but neither a traveler's account, nor a cookbook of \Rlang recipes. + +Keep in mind that it is impossible to remember everything about \Rlang! The \Rlang language, in a broad sense, is vast because its capabilities can be expanded with independently developed packages. Learning to use \Rlang consists of learning the basics plus developing the skill of finding your way in \Rlang and its documentation. In early 2020, the number of packages available in the Comprehensive \Rlang Archive Network (CRAN) broke the 15,000 barrier. CRAN is the most important, but not only, public repository for \Rlang packages. How good a command of the \Rlang language and packages a user needs depends on the type of activities to be carried out. This book attempts to train you in the use of the \Rlang language itself, and of popular \Rlang language extensions for data manipulation and graphical display. Given the availability of numerous books on statistical analysis with \Rlang, in the present book I will cover only the bare minimum of this subject. The same is true for package development in \Rlang. This book is somewhere in-between, aiming at teaching programming in the small: the use of \Rlang to automate the drudgery of data manipulation, including the different steps spanning from data input and exploration to the production of publication-quality illustrations. + +As with all ``rich'' languages, there are many different ways of doing things in \Rlang. In almost all cases there is no one-size-fits-all solution to a problem. There is always a compromise involved, usually between time spent by the user and processing time required in the computer. Many of the packages that are most popular nowadays did not exist when I started using \Rlang, and many of these packages make new approaches available. One could write many different \Rlang books with a given aim using substantially different ways of achieving the same results. In this book, I limit myself to packages that are currently popular and/or that I consider elegantly designed. I have in particular tried to limit myself to packages with similar design philosophies, especially in relation to their interfaces. What is elegant design, and in particular what is a friendly user interface, depends strongly on each user's preferences and previous experience. Consequently, the contents of the book are strongly biased by my own preferences. I have tried to write examples in ways that execute fast without compromising readability. I encourage readers to take this book as a starting point for exploring the very many packages, styles, and approaches which I have not described. + +This revised second edition reflects changes that took place in \Rlang and packages described. Only very few code chunks from the first edition had stopped working. Main difficulty was a package no longer available. Deprecations meant that some examples continued working but triggered messages or warnings. Recent ($>$ 4.0.0) versions of \Rlang have significant enhancements such as the new pipe operator. Packages have also evolved acquiring new features, which even if minimally affecting existing examples, provide new features. The book has been updated to account for these changes. In addition diagrams and flowcharts have been added to facilitate comprehension. The text from the first edition was edited to fix all errors known to the author and to improve the clarity of previously unclear explanations. + +I will appreciate suggestions for further examples, and notification of errors and unclear sections. Because the examples here have been collected from diverse sources over many years, not all sources are acknowledged. If you recognize any example as yours or someone else's, please let me know so that I can add a proper acknowledgement. I warmly thank the students who have asked the questions and posed the problems that have helped me write this text and correct the mistakes and voids of previous versions. I have also received help on online forums and in person from numerous people, learned from archived e-mail list messages, blog posts, books, articles, tutorials, webinars, and by struggling to solve some new problems on my own. In many ways this text owes much more to people who are not authors than to myself. However, as I am the one who has written this version and decided what to include and exclude, as author, I take full responsibility for any errors and inaccuracies. + +Why have I chosen the title ``\emph{Learn R: As a Language}''? This book is based on exploration and practice that aims at teaching to express various generic operations on data using the \Rlang language. It focuses on the language, rather than on specific types of data analysis, and exposes the reader to current usage and does not spare the quirks of the language. When we use our native language in everyday life, we do not think about grammar rules or sentence structure, except for the trickier or unfamiliar situations. My aim is for this book to help you grow to use \Rlang in this same way, to become fluent in \Rlang. The book is structured around the elements of languages with chapter titles that highlight the parallels between natural languages like English and the \Rlang language. + +\emph{I encourage you to approach \Rlang like a child approaches his or her mother tongue when first learning to speak: do not struggle, just play, and fool around with \Rlang! If the going gets difficult and frustrating, take a break! If you get a new insight, take a break to enjoy the victory! +}%\end{framed} + +\section*{Acknowledgements} +First I thank Jaakko Heinonen for introducing me to the then new \Rlang. Along the way many well known and not so famous experts have answered my questions in usenet and more recently in Stackoverflow. As time went by, answering other people's questions, both in the internet and in person, became the driving force for me to delve into the depths of the \Rlang language. Of course, I still get stuck from time to time and ask for help. I wish to warmly thank all the people I have interacted with in relation to R, including members of my own research group, students participating in the courses I have taught, colleagues I have collaborated with, authors of the books I have read and people I have only met online or at conferences. All of them have made it possible for me to write this book. This has been a time consuming endeavour which has kept me too many hours away from my family, so I specially thank Tarja, Rosa and Tomás for their understanding. I am indebted to Tarja Lehto, Titta Kotilainen, Tautvydas Zalnierius, Fang Wang, Yan Yan, Neha Rai, Markus Laurel, other colleagues, students and anonymous reviewers for many very helpful comments on different versions of the book manuscript, Rob Calver, as editor, for his encouragement and patience during the whole duration of this book writing project, Lara Spieker, Vaishali Singh, and Paul Boyd for their help with different aspects of this project. + +\section*{Icons used to mark different content} + +Marginal bars and icons are used throughout the book to highlight content that plays specific roles in the learning process or that require special attention from the reader. Each box contains one of five different icons that indicate the type of its contents as described below. + +\begin{playground} +Signals \emph{playground} boxes which contain open-ended exercises---ideas and pieces of \Rlang code to play with at the \Rlang console. +\end{playground} + +\begin{advplayground} +Signals \emph{advanced playground} boxes which will require more time to play with before grasping concepts than regular \emph{playground} boxes. +\end{advplayground} + +\begin{warningbox} +Signals important bits of information that must be remembered when using \Rlang---i.e., explain some unusual feature of the language. +\end{warningbox} + +\begin{explainbox} +Signals in-depth explanations of specific points that may require you to spend time thinking, which in general can be skipped on first reading, but to which you should return at a later peaceful time, preferably with a cup of coffee or tea. +\end{explainbox} + +\begin{infobox} +Signals text boxes providing general information not directly related to the \Rlang language. +\end{infobox} + +I also use the notation \textcolor{blue}{\code{}}, \textcolor{blue}{\code{}}, etc., as a generic placeholder in diagrams indicating \emph{any valid value}, \emph{any valid R statement}, etc. + +R code is typeset using colour to highlight the different elements of the syntax, such as variables, functions, constant values, etc. For example in the ``code chunk below'' \code{mean()} and \code{print()} are functions; 1, 5 and 3 are constant values, and \code{z} is the name of a variable where the result of the computation done in the first line of code was stored. The line starting with \code{\#\# } shows what is printed to the screen when executing the last statement: \code{[1] 1}. + +\begin{knitrout} +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{z} \hlkwb{<-} \hlkwd{mean}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{5}\hlstd{,} \hlnum{3}\hlstd{)} +\hlkwd{print}\hlstd{(z)} +\end{alltt} +\begin{verbatim} +## [1] 1 +\end{verbatim} +\end{kframe} +\end{knitrout} +%\newpage + +%\newpage +%\begin{infobox} +%\noindent +%\textbf{Status as of 2016-11-23.} I have updated the manuscript to track package updates since the previous version uploaded six months ago, and added several examples of the new functionality added to packages \ggpmisc, \ggrepel, and \ggplot. I have written new sections on packages \viridis, \pkgname{gganimate}, \pkgname{ggstance}, \pkgname{ggbiplot}, \pkgname{ggforce}, \pkgname{ggtern} and \pkgname{ggalt}. Some of these sections are to be expanded, and additional sections are planned for other recently released packages. +% +%With respect to the chapter \textit{Storing and manipulating data with R} I have put it on hold, except for the introduction, until I can see a soon to be published book covering the same subject. Hadley Wickham has named the set of tools developed by him and his collaborators as \textit{tidyverse} to be described in the book titled \textit{R for Data Science} by Grolemund and Wickham (O'Reilly). +% +%An important update to \ggplot was released last week, and it includes changes to the behavior of some existing functions, specially faceting has become extensible through other packages. Several of the new facilities are described in the updated text and code included in this book and this pdf has been generated with up-to-date version of \ggplot and packages as available today from CRAN, except for \pkgname{ggtern} which was downloaded from Bitbucket minutes ago. +% +%The present update adds about 100 pages to the previous versions. I expect to upload a new update to this manuscript in one or two months time. +% +%\textbf{Status as of 2017-01-17.} Added ``playground'' exercises to the chapter describing \ggplot, and converted some of the examples earlier part of the main text into these playground items. Added icons to help readers quickly distinguish playground sections (\textcolor{blue}{\noticestd{"0055}}), information sections (\textcolor{blue}{\modpicts{"003D}}), warnings about things one needs to be specially aware of (\colorbox{yellow}{\typicons{"E136}}) and boxes with more advanced content that may require longer time/more effort to grasp (\typicons{"E04E}). Added to the sections \code{scales} and examples in the \ggplot chapter details about the use of colors in \Rlang and \ggplot2. Removed some redundant examples, and updated the section on \code{plotmath}. Added terms to the alphabetical index. Increased line-spacing to avoid uneven spacing with inline code bits. +% +%\textbf{Status as of 2017-02-09.} Wrote section on ggplot2 themes, and on using system- and Google fonts in ggpplots with the help of package \pkgname{showtext}. Expanded section on \ggplot's \code{annotation}, and revised some sections in the ``R scripts and Programming'' chapter. Started writing the data chapter. Wrote draft on writing and reading text files. Several other smaller edits to text and a few new examples. +% +%\textbf{Status as of 2017-02-14.} Wrote sections on reading and writing MS-Excel files, files from statistical programs such as SPSS, SyStat, etc., and NetCDF files. Also wrote sections on using URLs to directly read data, and on reading HTML and XML files directly, as well on using JSON to retrieve measured/logged data from IoT (internet of things) and similar intelligent physical sensors, micro-controller boards and sensor hubs with network access. +% +%\textbf{Status as of 2017-03-25.} Revised and expanded the chapter on plotting maps, adding a section on the manipulation and plotting of image data. Revised and expanded the chapter on extensions to \pkgname{ggplot2}, so that there are no longer empty sections. Wrote short chapter ``If and when \Rlang needs help.'' Revised and expanded the ``Introduction'' chapter. Added index entries, and additional citations to literature. +% +%\textbf{Status as of 2017-04-04.} Revised and expanded the chapter on using \Rpgrm as a calculator. Revised and expanded the ``Scripts'' chapter. Minor edits to ``Functions'' chapter. Continued writing chapter on data, writing a section on \Rlang native apply functions and added preliminary text for a pipes and tees section. Write intro to `tidyverse' and grammar of data manipulation. Added index entries, and a few additional citations to the literature. Spell checking. +% +%\textbf{Status as of 2017-04-08.} Completed writing first draft of chapter on data, writing all the previously missing sections on the ``grammar of data manipulation.'' Wrote two extended examples in the same chapter. Add table listing several extensions to \pkgname{ggplot2} not described in the book. +% +%\textbf{Status as of 2017-04-13.} Revised all chapters correcting some spelling mistakes, adding some explanatory text and indexing all functions and operators used. Thoroughly revised the Introduction chapter and the Preface. Expanded section on bar plots (now bar and column plots). Revised section on tile plots. Expanded section on factors in chapter 2, adding examples of reordering of factor labels, and making clearer the difference between the labels of the levels and the levels themselves. +% +%\textbf{Status as of 2017-04-29.} Tested with R 3.4.0. Package \pkgname{gganimate} needs to be installed from GitHub as the updated version is not yet in CRAN. Function \code{gg\_animate()} has been renamed \code{gganimate().} +% +%\textbf{Status as of 2017-05-14.} Submitted package \pkgname{learnrbook} to CRAN. Revised code in the book +%to use this new package. Small fixes after more testing. Added examples of plotting and labeling based on fits with \code{method = "nls"}, including use of the new \code{ggpmisc::stat\_fit\_tidy()}. +% +%\textbf{Status as of 2017-06-11.} Added sections on R-code bench marking and profiling for performance optimization. Added also an example of explicit compilation of a function defined in the R language. Added section on functions \code{assign()}, \code{get()} and \code{mget()}. +% +%\textbf{Status as of 2017-08-12.} Various edits to all chapters. Expanded section on \pkgname{ggpmisc} to include the new functionality added in version 0.2.15.9002: \code{geom\_table} and \code{stat\_fit\_tb}. Added section on package \pkgname{ggbeeswarm}. Added sections on packages \pkgname{magick} and on using \pgrmname{ImageJ} from \Rpgrm. Improved indexing and cross references. +% +%\textbf{Status as of 2017-10-25.} Edited the chapter on using R as a calculator, adding examples on insertion and deletion of members of lists and vectors, and also of use of \code{gl()} and \code{reorder()}. Edited sections on scale limits and added new section on coordinate limits to explain more thoroughly their differences and uses in chapter on plotting with \pkgname{ggplot2}. Added a section on package \pkgname{ggsignif} to the chapter on extensions to \pkgname{ggplot2}. Expanded section on \pkgname{ggpmisc} in the same chapter describing new functionality added in version 0.2.16. +%\pkgname{ggplo2} $>=$ 2.2.1.9000 is required by the current development version of \pkgname{ggpmisc}. +% +%\textbf{Status as of 2017-10-30.} Add section on using pipes with \code{ggplot()} and layers. +%\end{infobox} diff --git a/rcatsidx.idx b/rcatsidx.idx index 851cdbd0..d3be35c5 100644 --- a/rcatsidx.idx +++ b/rcatsidx.idx @@ -1,1173 +1,118 @@ -\indexentry{functions and methods!print()@\texttt {print()}}{7} -\indexentry{functions and methods!help()@\texttt {help()}}{12} -\indexentry{functions and methods!help()@\texttt {help()}}{12} -\indexentry{functions and methods!help()@\texttt {help()}}{12} -\indexentry{functions and methods!citation()@\texttt {citation()}}{13} -\indexentry{classes and modes!numeric@\texttt {numeric}}{18} -\indexentry{operators!+@\texttt {+}}{18} -\indexentry{operators!-@\texttt {-}}{18} -\indexentry{operators!*@\texttt {*}}{18} -\indexentry{operators!/@\texttt {/}}{18} -\indexentry{functions and methods!exp()@\texttt {exp()}}{19} -\indexentry{functions and methods!sin()@\texttt {sin()}}{19} -\indexentry{constant and special values!pi@\texttt {pi}}{19} -\indexentry{functions and methods!sqrt()@\texttt {sqrt()}}{19} -\indexentry{functions and methods!sin()@\texttt {sin()}}{19} -\indexentry{functions and methods!log(), log10(), log2()@\texttt {log(), log10(), log2()}}{19} -\indexentry{functions and methods!exp()@\texttt {exp()}}{19} -\indexentry{operators!<-@\texttt {<-}}{20} -\indexentry{operators!->@\texttt {->}}{21} -\indexentry{operators!=@\texttt {=}}{21} -\indexentry{operators!<-@\texttt {<-}}{21} -\indexentry{classes and modes!numeric@\texttt {numeric}}{21} -\indexentry{classes and modes!numeric@\texttt {numeric}}{21} -\indexentry{functions and methods!is.numeric()@\texttt {is.numeric()}}{21} -\indexentry{functions and methods!numeric()@\texttt {numeric()}}{21} -\indexentry{classes and modes!integer@\texttt {integer}}{21} -\indexentry{classes and modes!double@\texttt {double}}{22} -\indexentry{functions and methods!double()@\texttt {double()}}{22} -\indexentry{classes and modes!vector@\texttt {vector}}{22} -\indexentry{functions and methods!c()@\texttt {c()}}{22} -\indexentry{functions and methods!append()@\texttt {append()}}{23} -\indexentry{functions and methods!seq()@\texttt {seq()}}{23} -\indexentry{operators!:@\texttt {:}}{23} -\indexentry{functions and methods!rep()@\texttt {rep()}}{23} -\indexentry{functions and methods!numeric()@\texttt {numeric()}}{24} -\indexentry{functions and methods!length()@\texttt {length()}}{24} -\indexentry{functions and methods!rm()@\texttt {rm()}}{25} -\indexentry{functions and methods!ls()@\texttt {ls()}}{25} -\indexentry{constant and special values!NA@\texttt {NA}}{25} -\indexentry{constant and special values!NaN@\texttt {NaN}}{25} -\indexentry{constant and special values!Inf@\texttt {Inf}}{25} -\indexentry{constant and special values!-Inf@\texttt {-Inf}}{25} -\indexentry{constant and special values!Inf@\texttt {Inf}}{25} -\indexentry{constant and special values!-Inf@\texttt {-Inf}}{25} -\indexentry{constant and special values!NA@\texttt {NA}}{26} -\indexentry{constant and special values!NA@\texttt {NA}}{26} -\indexentry{constant and special values!NA@\texttt {NA}}{26} -\indexentry{constant and special values!NA@\texttt {NA}}{26} -\indexentry{constant and special values!NA@\texttt {NA}}{26} -\indexentry{constant and special values!NA@\texttt {NA}}{26} -\indexentry{constant and special values!NA@\texttt {NA}}{26} -\indexentry{functions and methods!is.na()@\texttt {is.na()}}{26} -\indexentry{classes and modes!integer@\texttt {integer}}{27} -\indexentry{operators!\%/\%@\texttt {\%/\%}}{27} -\indexentry{operators!\%\%@\texttt {\%\%}}{27} -\indexentry{constant and special values!TRUE@\texttt {TRUE}}{27} -\indexentry{constant and special values!FALSE@\texttt {FALSE}}{27} -\indexentry{functions and methods!round()@\texttt {round()}}{28} -\indexentry{functions and methods!signif()@\texttt {signif()}}{28} -\indexentry{functions and methods!trunc()@\texttt {trunc()}}{29} -\indexentry{functions and methods!ceiling()@\texttt {ceiling()}}{29} -\indexentry{functions and methods!trunc()@\texttt {trunc()}}{29} -\indexentry{functions and methods!trunc()@\texttt {trunc()}}{29} -\indexentry{functions and methods!ceiling()@\texttt {ceiling()}}{29} -\indexentry{functions and methods!abs()@\texttt {abs()}}{29} -\indexentry{operators!+@\texttt {+}}{29} -\indexentry{operators!-@\texttt {-}}{29} -\indexentry{functions and methods!trunc()@\texttt {trunc()}}{29} -\indexentry{functions and methods!ceiling()@\texttt {ceiling()}}{29} -\indexentry{functions and methods!trunc()@\texttt {trunc()}}{29} -\indexentry{functions and methods!ceiling()@\texttt {ceiling()}}{29} -\indexentry{classes and modes!logical@\texttt {logical}}{29} -\indexentry{classes and modes!logical@\texttt {logical}}{29} -\indexentry{operators!\&@\texttt {\&}}{30} -\indexentry{operators!\textbar @\texttt {\textbar }}{30} -\indexentry{operators!\&\&@\texttt {\&\&}}{30} -\indexentry{operators!\textbar \textbar @\texttt {\textbar \textbar }}{30} -\indexentry{operators!!@\texttt {!}}{30} -\indexentry{functions and methods!any()@\texttt {any()}}{30} -\indexentry{functions and methods!all()@\texttt {all()}}{30} -\indexentry{functions and methods!all()@\texttt {all()}}{30} -\indexentry{functions and methods!any()@\texttt {any()}}{30} -\indexentry{operators!>@\texttt {>}}{32} -\indexentry{operators!<@\texttt {<}}{32} -\indexentry{operators!>=@\texttt {>=}}{32} -\indexentry{operators!<=@\texttt {<=}}{32} -\indexentry{operators!==@\texttt {==}}{32} -\indexentry{operators!!=@\texttt {!=}}{32} -\indexentry{constant and special values!.Machine\$double.eps@\texttt {.Machine\$double.eps}}{34} -\indexentry{constant and special values!.Machine\$double.neg.eps@\texttt {.Machine\$double.neg.eps}}{34} -\indexentry{constant and special values!.Machine\$double.max@\texttt {.Machine\$double.max}}{34} -\indexentry{constant and special values!.Machine\$double.min@\texttt {.Machine\$double.min}}{34} -\indexentry{classes and modes!double@\texttt {double}}{35} -\indexentry{constant and special values!-Inf@\texttt {-Inf}}{35} -\indexentry{constant and special values!Inf@\texttt {Inf}}{35} -\indexentry{classes and modes!integer@\texttt {integer}}{35} -\indexentry{classes and modes!integer@\texttt {integer}}{35} -\indexentry{constant and special values!.Machine\$integer.max@\texttt {.Machine\$integer.max}}{35} -\indexentry{classes and modes!double@\texttt {double}}{35} -\indexentry{classes and modes!integer@\texttt {integer}}{35} -\indexentry{classes and modes!double@\texttt {double}}{35} -\indexentry{classes and modes!integer@\texttt {integer}}{35} -\indexentry{classes and modes!integer@\texttt {integer}}{35} -\indexentry{operators!\^{}@\texttt {\^{}}}{36} -\indexentry{classes and modes!double@\texttt {double}}{36} -\indexentry{operators!*@\texttt {*}}{36} -\indexentry{functions and methods!abs()@\texttt {abs()}}{36} -\indexentry{operators!\%in\%@\texttt {\%in\%}}{38} -\indexentry{functions and methods!is.element()@\texttt {is.element()}}{38} -\indexentry{operators!!@\texttt {!}}{39} -\indexentry{operators!\%in\%@\texttt {\%in\%}}{39} -\indexentry{functions and methods!is.element()@\texttt {is.element()}}{39} -\indexentry{operators!|@\texttt {|}}{39} -\indexentry{operators!\%in\%@\texttt {\%in\%}}{39} -\indexentry{functions and methods!is.element()@\texttt {is.element()}}{39} -\indexentry{operators!\%in\%@\texttt {\%in\%}}{39} -\indexentry{functions and methods!unique()@\texttt {unique()}}{39} -\indexentry{classes and modes!numeric@\texttt {numeric}}{40} -\indexentry{classes and modes!character@\texttt {character}}{40} -\indexentry{classes and modes!numeric@\texttt {numeric}}{41} -\indexentry{operators!\%in\%@\texttt {\%in\%}}{41} -\indexentry{classes and modes!character@\texttt {character}}{41} -\indexentry{functions and methods!print()@\texttt {print()}}{42} -\indexentry{functions and methods!cat()@\texttt {cat()}}{42} -\indexentry{functions and methods!cat()@\texttt {cat()}}{42} -\indexentry{functions and methods!print()@\texttt {print()}}{42} -\indexentry{functions and methods!cat()@\texttt {cat()}}{42} -\indexentry{functions and methods!mode()@\texttt {mode()}}{43} -\indexentry{functions and methods!typeof()@\texttt {typeof()}}{43} -\indexentry{functions and methods!is.character()@\texttt {is.character()}}{43} -\indexentry{functions and methods!is.numeric()@\texttt {is.numeric()}}{43} -\indexentry{functions and methods!is.logical()@\texttt {is.logical()}}{43} -\indexentry{functions and methods!class()@\texttt {class()}}{43} -\indexentry{functions and methods!inherits()@\texttt {inherits()}}{43} -\indexentry{functions and methods!as.character()@\texttt {as.character()}}{44} -\indexentry{functions and methods!as.numeric()@\texttt {as.numeric()}}{44} -\indexentry{functions and methods!as.logical()@\texttt {as.logical()}}{44} -\indexentry{functions and methods!as.character()@\texttt {as.character()}}{44} -\indexentry{functions and methods!as.numeric()@\texttt {as.numeric()}}{44} -\indexentry{functions and methods!as.logical()@\texttt {as.logical()}}{44} -\indexentry{functions and methods!trunc()@\texttt {trunc()}}{45} -\indexentry{functions and methods!as.integer()@\texttt {as.integer()}}{45} -\indexentry{functions and methods!length()@\texttt {length()}}{45} -\indexentry{functions and methods!as.numeric()@\texttt {as.numeric()}}{45} -\indexentry{functions and methods!format()@\texttt {format()}}{45} -\indexentry{functions and methods!sprintf()@\texttt {sprintf()}}{45} -\indexentry{classes and modes!character@\texttt {character}}{45} -\indexentry{functions and methods!format()@\texttt {format()}}{45} -\indexentry{functions and methods!sprintf()@\texttt {sprintf()}}{45} -\indexentry{functions and methods!format()@\texttt {format()}}{45} -\indexentry{functions and methods!print()@\texttt {print()}}{45} -\indexentry{functions and methods!format()@\texttt {format()}}{45} -\indexentry{functions and methods!sprintf()@\texttt {sprintf()}}{46} -\indexentry{functions and methods!format()@\texttt {format()}}{46} -\indexentry{functions and methods!sprintf()@\texttt {sprintf()}}{46} -\indexentry{functions and methods!sprintf()@\texttt {sprintf()}}{46} -\indexentry{constant and special values!NA@\texttt {NA}}{46} -\indexentry{constant and special values!NA@\texttt {NA}}{46} -\indexentry{constant and special values!NA\_real\_@\texttt {NA\_real\_}}{46} -\indexentry{constant and special values!NA\_character\_@\texttt {NA\_character\_}}{46} -\indexentry{constant and special values!NA@\texttt {NA}}{46} -\indexentry{constant and special values!NA@\texttt {NA}}{46} -\indexentry{classes and modes!logical@\texttt {logical}}{46} -\indexentry{constant and special values!NA@\texttt {NA}}{46} -\indexentry{constant and special values!NA@\texttt {NA}}{46} -\indexentry{constant and special values!letters@\texttt {letters}}{47} -\indexentry{constant and special values!LETTERS@\texttt {LETTERS}}{47} -\indexentry{constant and special values!month.name@\texttt {month.name}}{47} -\indexentry{constant and special values!month.abb@\texttt {month.abb}}{48} -\indexentry{operators!<-@\texttt {<-}}{50} -\indexentry{classes and modes!integer@\texttt {integer}}{51} -\indexentry{classes and modes!numeric@\texttt {numeric}}{51} -\indexentry{classes and modes!double@\texttt {double}}{51} -\indexentry{functions and methods!sort()@\texttt {sort()}}{52} -\indexentry{functions and methods!order()@\texttt {order()}}{52} -\indexentry{functions and methods!sort()@\texttt {sort()}}{52} -\indexentry{functions and methods!rle()@\texttt {rle()}}{53} -\indexentry{classes and modes!matrix@\texttt {matrix}}{53} -\indexentry{classes and modes!array@\texttt {array}}{53} -\indexentry{functions and methods!length()@\texttt {length()}}{53} -\indexentry{functions and methods!dim()@\texttt {dim()}}{53} -\indexentry{functions and methods!ncol()@\texttt {ncol()}}{53} -\indexentry{functions and methods!nrow()@\texttt {nrow()}}{53} -\indexentry{functions and methods!dim()@\texttt {dim()}}{53} -\indexentry{functions and methods!is.vector()@\texttt {is.vector()}}{53} -\indexentry{functions and methods!is.matrix()@\texttt {is.matrix()}}{53} -\indexentry{functions and methods!is.array()@\texttt {is.array()}}{53} -\indexentry{functions and methods!matrix()@\texttt {matrix()}}{53} -\indexentry{functions and methods!as.matrix()@\texttt {as.matrix()}}{53} -\indexentry{functions and methods!matrix()@\texttt {matrix()}}{53} -\indexentry{functions and methods!matrix()@\texttt {matrix()}}{54} -\indexentry{classes and modes!matrix@\texttt {matrix}}{56} -\indexentry{functions and methods!array()@\texttt {array()}}{57} -\indexentry{functions and methods!unlist()@\texttt {unlist()}}{58} -\indexentry{functions and methods!as.vector()@\texttt {as.vector()}}{58} -\indexentry{functions and methods!t()@\texttt {t()}}{58} -\indexentry{functions and methods!t()@\texttt {t()}}{58} -\indexentry{operators!\%*\%@\texttt {\%*\%}}{59} -\indexentry{functions and methods!crossprod()@\texttt {crossprod()}}{59} -\indexentry{functions and methods!diag()@\texttt {diag()}}{59} -\indexentry{classes and modes!factor@\texttt {factor}}{59} -\indexentry{functions and methods!factor()@\texttt {factor()}}{59} -\indexentry{functions and methods!ordered()@\texttt {ordered()}}{59} -\indexentry{functions and methods!factor()@\texttt {factor()}}{60} -\indexentry{functions and methods!factor()@\texttt {factor()}}{60} -\indexentry{functions and methods!levels()@\texttt {levels()}}{60} -\indexentry{functions and methods!gl()@\texttt {gl()}}{60} -\indexentry{functions and methods!gl()@\texttt {gl()}}{61} -\indexentry{functions and methods!as.numeric()@\texttt {as.numeric()}}{61} -\indexentry{functions and methods!as.numeric()@\texttt {as.numeric()}}{61} -\indexentry{functions and methods!as.character()@\texttt {as.character()}}{61} -\indexentry{functions and methods!as.numeric()@\texttt {as.numeric()}}{61} -\indexentry{functions and methods!as.numeric()@\texttt {as.numeric()}}{61} -\indexentry{functions and methods!levels()<-@\texttt {levels()<-}}{62} -\indexentry{functions and methods!factor()@\texttt {factor()}}{62} -\indexentry{functions and methods!factor()@\texttt {factor()}}{63} -\indexentry{functions and methods!factor()@\texttt {factor()}}{63} -\indexentry{functions and methods!levels()@\texttt {levels()}}{63} -\indexentry{functions and methods!reorder()@\texttt {reorder()}}{64} -\indexentry{functions and methods!sort()@\texttt {sort()}}{64} -\indexentry{functions and methods!order()@\texttt {order()}}{64} -\indexentry{classes and modes!list@\texttt {list}}{65} -\indexentry{functions and methods!list()@\texttt {list()}}{65} -\indexentry{operators![[]]@\texttt {[[]]}}{65} -\indexentry{functions and methods!str()@\texttt {str()}}{66} -\indexentry{functions and methods!append()@\texttt {append()}}{66} -\indexentry{functions and methods!str()@\texttt {str()}}{67} -\indexentry{operators![[ ]]@\texttt {[[ ]]}}{68} -\indexentry{operators![ ]@\texttt {[ ]}}{68} -\indexentry{functions and methods!print()@\texttt {print()}}{68} -\indexentry{functions and methods!str()@\texttt {str()}}{68} -\indexentry{functions and methods!unlist()@\texttt {unlist()}}{68} -\indexentry{functions and methods!str()@\texttt {str()}}{69} -\indexentry{functions and methods!unname()@\texttt {unname()}}{69} -\indexentry{functions and methods!unlist()@\texttt {unlist()}}{69} -\indexentry{classes and modes!data.frame@\texttt {data.frame}}{69} -\indexentry{functions and methods!data.frame()@\texttt {data.frame()}}{69} -\indexentry{classes and modes!list@\texttt {list}}{70} -\indexentry{operators![[]]@\texttt {[[]]}}{70} -\indexentry{functions and methods!class()@\texttt {class()}}{70} -\indexentry{classes and modes!data.frame@\texttt {data.frame}}{70} -\indexentry{functions and methods!I()@\texttt {I()}}{72} -\indexentry{functions and methods!I()@\texttt {I()}}{72} -\indexentry{functions and methods!I()@\texttt {I()}}{73} -\indexentry{functions and methods!data.frame()@\texttt {data.frame()}}{73} -\indexentry{operators!\$@\texttt {\$}}{74} -\indexentry{operators![[]]@\texttt {[[]]}}{75} -\indexentry{operators![]@\texttt {[]}}{75} -\indexentry{operators![[]]@\texttt {[[]]}}{76} -\indexentry{operators!\$@\texttt {\$}}{76} -\indexentry{operators!\$@\texttt {\$}}{76} -\indexentry{operators!\$@\texttt {\$}}{77} -\indexentry{operators!\$@\texttt {\$}}{77} -\indexentry{operators!\$@\texttt {\$}}{77} -\indexentry{operators![[]]@\texttt {[[]]}}{77} -\indexentry{operators!\$@\texttt {\$}}{77} -\indexentry{operators![[]]@\texttt {[[]]}}{77} -\indexentry{functions and methods!subset()@\texttt {subset()}}{77} -\indexentry{functions and methods!subset()@\texttt {subset()}}{77} -\indexentry{functions and methods!subset()@\texttt {subset()}}{78} -\indexentry{functions and methods!attach()@\texttt {attach()}}{78} -\indexentry{functions and methods!with()@\texttt {with()}}{78} -\indexentry{operators![ ]@\texttt {[ ]}}{79} -\indexentry{operators!<-@\texttt {<-}}{79} -\indexentry{names and their scope!attach()@\texttt {attach()}}{79} -\indexentry{names and their scope!detach()@\texttt {detach()}}{79} -\indexentry{names and their scope!with()@\texttt {with()}}{79} -\indexentry{names and their scope!within()@\texttt {within()}}{79} -\indexentry{names and their scope!attach()@\texttt {attach()}}{80} -\indexentry{names and their scope!detach()@\texttt {detach()}}{80} -\indexentry{names and their scope!attach()@\texttt {attach()}}{80} -\indexentry{names and their scope!detach()@\texttt {detach()}}{80} -\indexentry{names and their scope!with()@\texttt {with()}}{80} -\indexentry{names and their scope!within()@\texttt {within()}}{80} -\indexentry{names and their scope!with()@\texttt {with()}}{81} -\indexentry{names and their scope!within()@\texttt {within()}}{81} -\indexentry{names and their scope!attach()@\texttt {attach()}}{81} -\indexentry{names and their scope!detach()@\texttt {detach()}}{81} -\indexentry{names and their scope!attach()@\texttt {attach()}}{81} -\indexentry{names and their scope!detach()@\texttt {detach()}}{81} -\indexentry{names and their scope!with()@\texttt {with()}}{81} -\indexentry{names and their scope!within()@\texttt {within()}}{81} -\indexentry{names and their scope!with()@\texttt {with()}}{81} -\indexentry{names and their scope!within()@\texttt {within()}}{81} -\indexentry{names and their scope!attach()@\texttt {attach()}}{81} -\indexentry{names and their scope!detach()@\texttt {detach()}}{81} -\indexentry{operators![]@\texttt {[]}}{81} -\indexentry{functions and methods!order()@\texttt {order()}}{82} -\indexentry{functions and methods!order()@\texttt {order()}}{82} -\indexentry{functions and methods!order()@\texttt {order()}}{82} -\indexentry{functions and methods!order()@\texttt {order()}}{82} -\indexentry{functions and methods!order()@\texttt {order()}}{82} -\indexentry{classes and modes!matrix@\texttt {matrix}}{82} -\indexentry{classes and modes!array@\texttt {array}}{82} -\indexentry{functions and methods!order()@\texttt {order()}}{82} -\indexentry{functions and methods!order()@\texttt {order()}}{82} -\indexentry{functions and methods!comment()@\texttt {comment()}}{83} -\indexentry{functions and methods!comment()<-@\texttt {comment()<-}}{83} -\indexentry{functions and methods!names()@\texttt {names()}}{83} -\indexentry{functions and methods!dim()@\texttt {dim()}}{83} -\indexentry{functions and methods!levels()@\texttt {levels()}}{83} -\indexentry{functions and methods!names()<-@\texttt {names()<-}}{83} -\indexentry{functions and methods!dim()<-@\texttt {dim()<-}}{83} -\indexentry{functions and methods!levels()<-@\texttt {levels()<-}}{83} -\indexentry{functions and methods!attr()@\texttt {attr()}}{83} -\indexentry{functions and methods!attr()<-@\texttt {attr()<-}}{83} -\indexentry{functions and methods!attributes()@\texttt {attributes()}}{83} -\indexentry{functions and methods!attr()@\texttt {attr()}}{83} -\indexentry{functions and methods!attr()<-@\texttt {attr()<-}}{83} -\indexentry{functions and methods!attributes()@\texttt {attributes()}}{83} -\indexentry{functions and methods!str()@\texttt {str()}}{83} -\indexentry{functions and methods!lm()@\texttt {lm()}}{84} -\indexentry{functions and methods!data()@\texttt {data()}}{85} -\indexentry{functions and methods!data()@\texttt {data()}}{85} -\indexentry{functions and methods!save()@\texttt {save()}}{85} -\indexentry{functions and methods!save()@\texttt {save()}}{86} -\indexentry{functions and methods!load()@\texttt {load()}}{86} -\indexentry{functions and methods!ls()@\texttt {ls()}}{86} -\indexentry{functions and methods!ls()@\texttt {ls()}}{87} -\indexentry{functions and methods!unlink()@\texttt {unlink()}}{87} -\indexentry{functions and methods!readRDS()@\texttt {readRDS()}}{87} -\indexentry{functions and methods!saveRDS()@\texttt {saveRDS()}}{87} -\indexentry{functions and methods!print()@\texttt {print()}}{88} -\indexentry{functions and methods!colnames()@\texttt {colnames()}}{88} -\indexentry{functions and methods!rownames()@\texttt {rownames()}}{88} -\indexentry{functions and methods!names()@\texttt {names()}}{88} -\indexentry{functions and methods!head()@\texttt {head()}}{88} -\indexentry{functions and methods!tail()@\texttt {tail()}}{88} -\indexentry{functions and methods!nrow()@\texttt {nrow()}}{88} -\indexentry{functions and methods!ncol()@\texttt {ncol()}}{88} -\indexentry{functions and methods!length()@\texttt {length()}}{88} -\indexentry{functions and methods!str()@\texttt {str()}}{88} -\indexentry{functions and methods!head()@\texttt {head()}}{89} -\indexentry{functions and methods!tail()@\texttt {tail()}}{89} -\indexentry{control of execution!sapply@\texttt {sapply}}{89} -\indexentry{classes and modes!matrix@\texttt {matrix}}{89} -\indexentry{classes and modes!list@\texttt {list}}{89} -\indexentry{functions and methods!summary()@\texttt {summary()}}{89} -\indexentry{control of execution!sapply()@\texttt {sapply()}}{89} -\indexentry{control of execution!lapply()@\texttt {lapply()}}{89} -\indexentry{control of execution!vapply()@\texttt {vapply()}}{89} -\indexentry{functions and methods!summary()@\texttt {summary()}}{90} -\indexentry{functions and methods!plot()@\texttt {plot()}}{90} -\indexentry{functions and methods!plot()@\texttt {plot()}}{90} -\indexentry{functions and methods!plot()@\texttt {plot()}}{91} -\indexentry{functions and methods!plot()@\texttt {plot()}}{92} -\indexentry{functions and methods!source()@\texttt {source()}}{97} -\indexentry{functions and methods!print()@\texttt {print()}}{97} -\indexentry{functions and methods!ggplot()@\texttt {ggplot()}}{97} -\indexentry{functions and methods!print()@\texttt {print()}}{97} -\indexentry{control of execution!if()@\texttt {if()}}{104} -\indexentry{control of execution!if()\ldots else@\texttt {if()\ldots else}}{104} -\indexentry{classes and modes!logical@\texttt {logical}}{105} -\indexentry{classes and modes!numeric@\texttt {numeric}}{107} -\indexentry{classes and modes!logical@\texttt {logical}}{107} -\indexentry{control of execution!if ()@\texttt {if ()}}{107} -\indexentry{control of execution!if () \ldots \ else@\texttt {if () \ldots \ else}}{107} -\indexentry{control of execution!switch()@\texttt {switch()}}{107} -\indexentry{control of execution!if ()@\texttt {if ()}}{108} -\indexentry{control of execution!switch()@\texttt {switch()}}{108} -\indexentry{control of execution!switch()@\texttt {switch()}}{108} -\indexentry{control of execution!switch()@\texttt {switch()}}{108} -\indexentry{control of execution!switch()@\texttt {switch()}}{109} -\indexentry{control of execution!switch()@\texttt {switch()}}{110} -\indexentry{control of execution!switch()@\texttt {switch()}}{110} -\indexentry{control of execution!switch()@\texttt {switch()}}{110} -\indexentry{control of execution!switch()@\texttt {switch()}}{110} -\indexentry{control of execution!ifelse()@\texttt {ifelse()}}{110} -\indexentry{control of execution!ifelse()@\texttt {ifelse()}}{111} -\indexentry{control of execution!ifelse()@\texttt {ifelse()}}{111} -\indexentry{control of execution!ifelse()@\texttt {ifelse()}}{112} -\indexentry{control of execution!for@\texttt {for}}{112} -\indexentry{control of execution!while@\texttt {while}}{112} -\indexentry{control of execution!repeat@\texttt {repeat}}{112} -\indexentry{control of execution!for@\texttt {for}}{113} -\indexentry{control of execution!for@\texttt {for}}{113} -\indexentry{control of execution!for@\texttt {for}}{114} -\indexentry{functions and methods!print()@\texttt {print()}}{115} -\indexentry{control of execution!for@\texttt {for}}{115} -\indexentry{control of execution!break()@\texttt {break()}}{115} -\indexentry{control of execution!next()@\texttt {next()}}{115} -\indexentry{control of execution!while@\texttt {while}}{115} -\indexentry{control of execution!while@\texttt {while}}{117} -\indexentry{control of execution!break()@\texttt {break()}}{117} -\indexentry{control of execution!repeat@\texttt {repeat}}{117} -\indexentry{control of execution!break()@\texttt {break()}}{117} -\indexentry{control of execution!break()@\texttt {break()}}{117} -\indexentry{control of execution!break()@\texttt {break()}}{118} -\indexentry{control of execution!break()@\texttt {break()}}{118} -\indexentry{control of execution!for@\texttt {for}}{118} -\indexentry{control of execution!while@\texttt {while}}{118} -\indexentry{control of execution!break()@\texttt {break()}}{118} -\indexentry{control of execution!for@\texttt {for}}{118} -\indexentry{control of execution!next()@\texttt {next()}}{118} -\indexentry{control of execution!for@\texttt {for}}{118} -\indexentry{control of execution!while@\texttt {while}}{118} -\indexentry{control of execution!repeat@\texttt {repeat}}{118} -\indexentry{functions and methods!system.time()@\texttt {system.time()}}{118} -\indexentry{control of execution!for@\texttt {for}}{118} -\indexentry{functions and methods!system.time()@\texttt {system.time()}}{119} -\indexentry{control of execution!apply()@\texttt {apply()}}{121} -\indexentry{control of execution!lapply()@\texttt {lapply()}}{121} -\indexentry{control of execution!sapply()@\texttt {sapply()}}{121} -\indexentry{functions and methods!on.exit()@\texttt {on.exit()}}{121} -\indexentry{functions and methods!on.exit()@\texttt {on.exit()}}{121} -\indexentry{control of execution!lapply()@\texttt {lapply()}}{122} -\indexentry{control of execution!sapply()@\texttt {sapply()}}{122} -\indexentry{control of execution!lapply()@\texttt {lapply()}}{122} -\indexentry{control of execution!vapply()@\texttt {vapply()}}{122} -\indexentry{control of execution!sapply()@\texttt {sapply()}}{122} -\indexentry{control of execution!apply()@\texttt {apply()}}{122} -\indexentry{control of execution!lapply()@\texttt {lapply()}}{122} -\indexentry{control of execution!apply()@\texttt {apply()}}{122} -\indexentry{control of execution!lapply()@\texttt {lapply()}}{122} -\indexentry{control of execution!sapply()@\texttt {sapply()}}{122} -\indexentry{control of execution!apply()@\texttt {apply()}}{122} -\indexentry{control of execution!lapply()@\texttt {lapply()}}{122} -\indexentry{control of execution!sapply()@\texttt {sapply()}}{122} -\indexentry{control of execution!vapply()@\texttt {vapply()}}{122} -\indexentry{control of execution!vapply()@\texttt {vapply()}}{124} -\indexentry{control of execution!vapply()@\texttt {vapply()}}{124} -\indexentry{control of execution!apply()@\texttt {apply()}}{125} -\indexentry{functions and methods!mean()@\texttt {mean()}}{125} -\indexentry{control of execution!apply()@\texttt {apply()}}{125} -\indexentry{control of execution!apply()@\texttt {apply()}}{125} -\indexentry{control of execution!apply()@\texttt {apply()}}{125} -\indexentry{functions and methods!t()@\texttt {t()}}{126} -\indexentry{control of execution!apply()@\texttt {apply()}}{126} -\indexentry{functions and methods!sum()@\texttt {sum()}}{128} -\indexentry{functions and methods!prod()@\texttt {prod()}}{128} -\indexentry{functions and methods!max()@\texttt {max()}}{128} -\indexentry{functions and methods!min()@\texttt {min()}}{128} -\indexentry{functions and methods!cumsum()@\texttt {cumsum()}}{128} -\indexentry{functions and methods!cumprod()@\texttt {cumprod()}}{128} -\indexentry{functions and methods!cummax()@\texttt {cummax()}}{128} -\indexentry{functions and methods!cummin()@\texttt {cummin()}}{128} -\indexentry{functions and methods!diff()@\texttt {diff()}}{128} -\indexentry{functions and methods!assign()@\texttt {assign()}}{128} -\indexentry{functions and methods!assign()@\texttt {assign()}}{128} -\indexentry{functions and methods!get()@\texttt {get()}}{129} -\indexentry{functions and methods!mget()@\texttt {mget()}}{129} -\indexentry{functions and methods!assign()@\texttt {assign()}}{129} -\indexentry{functions and methods!get()@\texttt {get()}}{129} -\indexentry{functions and methods!mget()@\texttt {mget()}}{129} -\indexentry{functions and methods!do.call()@\texttt {do.call()}}{130} -\indexentry{functions and methods!anova()@\texttt {anova()}}{130} -\indexentry{functions and methods!do.call()@\texttt {do.call()}}{130} -\indexentry{functions and methods!anova()@\texttt {anova()}}{130} -\indexentry{functions and methods!do.call()@\texttt {do.call()}}{130} -\indexentry{functions and methods!anova()@\texttt {anova()}}{131} -\indexentry{functions and methods!mean()@\texttt {mean()}}{133} -\indexentry{functions and methods!var()@\texttt {var()}}{133} -\indexentry{functions and methods!sd()@\texttt {sd()}}{133} -\indexentry{functions and methods!median()@\texttt {median()}}{133} -\indexentry{functions and methods!mad()@\texttt {mad()}}{133} -\indexentry{functions and methods!mode()@\texttt {mode()}}{133} -\indexentry{functions and methods!max()@\texttt {max()}}{133} -\indexentry{functions and methods!min()@\texttt {min()}}{133} -\indexentry{functions and methods!range()@\texttt {range()}}{133} -\indexentry{functions and methods!quantile()@\texttt {quantile()}}{133} -\indexentry{functions and methods!length()@\texttt {length()}}{133} -\indexentry{functions and methods!summary()@\texttt {summary()}}{134} -\indexentry{functions and methods!summary()@\texttt {summary()}}{134} -\indexentry{functions and methods!pnorm()@\texttt {pnorm()}}{136} -\indexentry{functions and methods!pt()@\texttt {pt()}}{136} -\indexentry{functions and methods!qnorm()@\texttt {qnorm()}}{137} -\indexentry{functions and methods!pnorm()@\texttt {pnorm()}}{137} -\indexentry{functions and methods!rnorm()@\texttt {rnorm()}}{137} -\indexentry{functions and methods!runif()@\texttt {runif()}}{137} -\indexentry{functions and methods!set.seed()@\texttt {set.seed()}}{138} -\indexentry{functions and methods!rnorm()@\texttt {rnorm()}}{138} -\indexentry{functions and methods!setseed()@\texttt {setseed()}}{138} -\indexentry{data objects!cars@\texttt {cars}}{139} -\indexentry{functions and methods!cor()@\texttt {cor()}}{139} -\indexentry{functions and methods!rnorm()@\texttt {rnorm()}}{140} -\indexentry{functions and methods!matrix()@\texttt {matrix()}}{140} -\indexentry{functions and methods!cor()@\texttt {cor()}}{140} -\indexentry{functions and methods!cor.test()@\texttt {cor.test()}}{140} -\indexentry{functions and methods!cor.test()@\texttt {cor.test()}}{140} -\indexentry{functions and methods!cor()@\texttt {cor()}}{140} -\indexentry{functions and methods!cor.test()@\texttt {cor.test()}}{140} -\indexentry{functions and methods!print()@\texttt {print()}}{140} -\indexentry{functions and methods!str()@\texttt {str()}}{141} -\indexentry{functions and methods!class()@\texttt {class()}}{141} -\indexentry{functions and methods!attributes()@\texttt {attributes()}}{141} -\indexentry{functions and methods!cor()@\texttt {cor()}}{141} -\indexentry{functions and methods!class()@\texttt {class()}}{141} -\indexentry{functions and methods!attributes()@\texttt {attributes()}}{141} -\indexentry{functions and methods!str()@\texttt {str()}}{141} -\indexentry{functions and methods!cor.test()@\texttt {cor.test()}}{141} -\indexentry{functions and methods!cor()@\texttt {cor()}}{141} -\indexentry{functions and methods!lm()@\texttt {lm()}}{142} -\indexentry{functions and methods!lm()@\texttt {lm()}}{142} -\indexentry{functions and methods!coef()@\texttt {coef()}}{142} -\indexentry{functions and methods!residuals()@\texttt {residuals()}}{142} -\indexentry{functions and methods!fitted()@\texttt {fitted()}}{142} -\indexentry{functions and methods!predict()@\texttt {predict()}}{142} -\indexentry{functions and methods!AIC()@\texttt {AIC()}}{142} -\indexentry{functions and methods!BIC()@\texttt {BIC()}}{142} -\indexentry{functions and methods!lm()@\texttt {lm()}}{142} -\indexentry{data objects!cars@\texttt {cars}}{143} -\indexentry{functions and methods!summary()@\texttt {summary()}}{143} -\indexentry{functions and methods!summary()@\texttt {summary()}}{144} -\indexentry{functions and methods!lm()@\texttt {lm()}}{145} -\indexentry{functions and methods!I()@\texttt {I()}}{145} -\indexentry{functions and methods!poly()@\texttt {poly()}}{145} -\indexentry{functions and methods!poly()@\texttt {poly()}}{145} -\indexentry{functions and methods!anova()@\texttt {anova()}}{146} -\indexentry{functions and methods!anova()@\texttt {anova()}}{146} -\indexentry{functions and methods!anova()@\texttt {anova()}}{146} -\indexentry{functions and methods!BIC()@\texttt {BIC()}}{146} -\indexentry{functions and methods!AIC()@\texttt {AIC()}}{146} -\indexentry{functions and methods!vcov()@\texttt {vcov()}}{146} -\indexentry{functions and methods!coef()@\texttt {coef()}}{146} -\indexentry{functions and methods!coefficients()@\texttt {coefficients()}}{146} -\indexentry{functions and methods!fitted()@\texttt {fitted()}}{146} -\indexentry{functions and methods!fitted.values()@\texttt {fitted.values()}}{146} -\indexentry{functions and methods!resid()@\texttt {resid()}}{146} -\indexentry{functions and methods!residuals()@\texttt {residuals()}}{146} -\indexentry{functions and methods!effects()@\texttt {effects()}}{146} -\indexentry{functions and methods!terms()@\texttt {terms()}}{146} -\indexentry{functions and methods!model.frame()@\texttt {model.frame()}}{146} -\indexentry{functions and methods!model.matrix()@\texttt {model.matrix()}}{146} -\indexentry{functions and methods!str()@\texttt {str()}}{147} -\indexentry{functions and methods!anova()@\texttt {anova()}}{147} -\indexentry{functions and methods!anova()@\texttt {anova()}}{147} -\indexentry{functions and methods!summary()@\texttt {summary()}}{147} -\indexentry{functions and methods!str()@\texttt {str()}}{147} -\indexentry{functions and methods!predict()@\texttt {predict()}}{149} -\indexentry{functions and methods!predict()@\texttt {predict()}}{149} -\indexentry{functions and methods!predict()@\texttt {predict()}}{149} -\indexentry{data objects!InsectSprays@\texttt {InsectSprays}}{149} -\indexentry{functions and methods!anova()@\texttt {anova()}}{150} -\indexentry{functions and methods!summary()@\texttt {summary()}}{150} -\indexentry{functions and methods!summary()@\texttt {summary()}}{150} -\indexentry{functions and methods!aov()@\texttt {aov()}}{150} -\indexentry{functions and methods!lm()@\texttt {lm()}}{150} -\indexentry{functions and methods!anova()@\texttt {anova()}}{150} -\indexentry{functions and methods!coef()@\texttt {coef()}}{151} -\indexentry{functions and methods!summary()@\texttt {summary()}}{151} -\indexentry{functions and methods!anova()@\texttt {anova()}}{152} -\indexentry{functions and methods!glm()@\texttt {glm()}}{153} -\indexentry{data objects!InsectSpray@\texttt {InsectSpray}}{153} -\indexentry{functions and methods!anova()@\texttt {anova()}}{154} -\indexentry{functions and methods!plot()@\texttt {plot()}}{154} -\indexentry{functions and methods!nls()@\texttt {nls()}}{156} -\indexentry{functions and methods!nls@\texttt {nls}}{157} -\indexentry{functions and methods!nlme@\texttt {nlme}}{157} -\indexentry{functions and methods!nls()@\texttt {nls()}}{157} -\indexentry{functions and methods!SSmicmen()@\texttt {SSmicmen()}}{157} -\indexentry{data objects!Puromycin@\texttt {Puromycin}}{157} -\indexentry{classes and modes!formula@\texttt {formula}}{159} -\indexentry{classes and modes!call@\texttt {call}}{159} -\indexentry{classes and modes!formula@\texttt {formula}}{160} -\indexentry{classes and modes!formula@\texttt {formula}}{160} -\indexentry{functions and methods!length()@\texttt {length()}}{160} -\indexentry{classes and modes!list@\texttt {list}}{160} -\indexentry{functions and methods!length()@\texttt {length()}}{160} -\indexentry{functions and methods!I()@\texttt {I()}}{161} -\indexentry{functions and methods!log()@\texttt {log()}}{161} -\indexentry{functions and methods!terms()@\texttt {terms()}}{163} -\indexentry{data objects!npk@\texttt {npk}}{164} -\indexentry{classes and modes!"formula"@\texttt {"formula"}}{165} -\indexentry{functions and methods!inherits()@\texttt {inherits()}}{165} -\indexentry{functions and methods!as.formula()@\texttt {as.formula()}}{166} -\indexentry{functions and methods!as.formula()@\texttt {as.formula()}}{166} -\indexentry{functions and methods!as.formula()@\texttt {as.formula()}}{166} -\indexentry{functions and methods!update()@\texttt {update()}}{167} -\indexentry{classes and modes!"ts"@\texttt {"ts"}}{169} -\indexentry{functions and methods!ts()@\texttt {ts()}}{169} -\indexentry{functions and methods!as.ts()@\texttt {as.ts()}}{169} -\indexentry{data objects!austres@\texttt {austres}}{169} -\indexentry{data objects!austres@\texttt {austres}}{169} -\indexentry{data objects!nottem@\texttt {nottem}}{169} -\indexentry{functions and methods!decompose()@\texttt {decompose()}}{170} -\indexentry{functions and methods!stl()@\texttt {stl()}}{170} -\indexentry{functions and methods!stl()@\texttt {stl()}}{171} -\indexentry{functions and methods!aov()@\texttt {aov()}}{171} -\indexentry{functions and methods!lm()@\texttt {lm()}}{171} -\indexentry{functions and methods!manova()@\texttt {manova()}}{171} -\indexentry{functions and methods!aov()@\texttt {aov()}}{171} -\indexentry{data objects!iris@\texttt {iris}}{171} -\indexentry{functions and methods!prcomp()@\texttt {prcomp()}}{173} -\indexentry{functions and methods!biplot()@\texttt {biplot()}}{173} -\indexentry{functions and methods!prcomp()@\texttt {prcomp()}}{175} -\indexentry{data objects!eurodist@\texttt {eurodist}}{175} -\indexentry{functions and methods!dist@\texttt {dist}}{176} -\indexentry{functions and methods!hclust()@\texttt {hclust()}}{176} -\indexentry{data objects!eurodist@\texttt {eurodist}}{177} -\indexentry{functions and methods!dist@\texttt {dist}}{177} -\indexentry{functions and methods!cutree()@\texttt {cutree()}}{177} -\indexentry{functions and methods!hclust()@\texttt {hclust()}}{178} -\indexentry{functions and methods!library()@\texttt {library()}}{181} -\indexentry{names and their scope!detach()@\texttt {detach()}}{181} -\indexentry{functions and methods!library()@\texttt {library()}}{181} -\indexentry{functions and methods!install.packages()@\texttt {install.packages()}}{181} -\indexentry{functions and methods!install.packages()@\texttt {install.packages()}}{181} -\indexentry{functions and methods!update.packages()@\texttt {update.packages()}}{181} -\indexentry{functions and methods!install.packages()@\texttt {install.packages()}}{181} -\indexentry{functions and methods!library()@\texttt {library()}}{181} -\indexentry{functions and methods!print()@\texttt {print()}}{183} -\indexentry{functions and methods!function()@\texttt {function()}}{184} -\indexentry{operators!<<-@\texttt {<<-}}{184} -\indexentry{functions and methods!assign()@\texttt {assign()}}{184} -\indexentry{functions and methods!lm()@\texttt {lm()}}{184} -\indexentry{classes and modes!lm@\texttt {lm}}{184} -\indexentry{classes and modes!list@\texttt {list}}{184} -\indexentry{control of execution!return()@\texttt {return()}}{184} -\indexentry{control of execution!return()@\texttt {return()}}{184} -\indexentry{control of execution!return()@\texttt {return()}}{184} -\indexentry{functions and methods!SEM()@\texttt {SEM()}}{186} -\indexentry{functions and methods!var()@\texttt {var()}}{186} -\indexentry{functions and methods!SEM()@\texttt {SEM()}}{186} -\indexentry{functions and methods!sum()@\texttt {sum()}}{186} -\indexentry{functions and methods!plot()@\texttt {plot()}}{190} -\indexentry{functions and methods!plot()@\texttt {plot()}}{190} -\indexentry{functions and methods!plot()@\texttt {plot()}}{190} -\indexentry{functions and methods!methods()@\texttt {methods()}}{190} -\indexentry{functions and methods!methods()@\texttt {methods()}}{190} -\indexentry{functions and methods!sprintf()@\texttt {sprintf()}}{191} -\indexentry{functions and methods!sprintf()@\texttt {sprintf()}}{191} -\indexentry{functions and methods!my\_print()@\texttt {my\_print()}}{192} -\indexentry{names and their scope!exists()@\texttt {exists()}}{193} -\indexentry{functions and methods!subset()@\texttt {subset()}}{196} -\indexentry{classes and modes!tbl@\texttt {tbl}}{198} -\indexentry{classes and modes!data.frame@\texttt {data.frame}}{198} -\indexentry{classes and modes!list@\texttt {list}}{198} -\indexentry{classes and modes!matrix@\texttt {matrix}}{198} -\indexentry{classes and modes!list@\texttt {list}}{198} -\indexentry{classes and modes!tbl@\texttt {tbl}}{198} -\indexentry{functions and methods!print()@\texttt {print()}}{199} -\indexentry{functions and methods!options()@\texttt {options()}}{199} -\indexentry{classes and modes!tibble@\texttt {tibble}}{199} -\indexentry{functions and methods!tibble()@\texttt {tibble()}}{199} -\indexentry{functions and methods!tibble()@\texttt {tibble()}}{199} -\indexentry{functions and methods!as\_tibble()@\texttt {as\_tibble()}}{199} -\indexentry{functions and methods!is\_tibble()@\texttt {is\_tibble()}}{199} -\indexentry{classes and modes!tibble@\texttt {tibble}}{199} -\indexentry{classes and modes!tbl\_df@\texttt {tbl\_df}}{200} -\indexentry{functions and methods!tibble()@\texttt {tibble()}}{200} -\indexentry{functions and methods!data.frame()@\texttt {data.frame()}}{200} -\indexentry{classes and modes!tibble@\texttt {tibble}}{200} -\indexentry{functions and methods!print()@\texttt {print()}}{201} -\indexentry{functions and methods!as.data.frame()@\texttt {as.data.frame()}}{202} -\indexentry{functions and methods!identical()@\texttt {identical()}}{202} -\indexentry{functions and methods!class()@\texttt {class()}}{202} -\indexentry{functions and methods!tibble()@\texttt {tibble()}}{203} -\indexentry{functions and methods!tibble()@\texttt {tibble()}}{203} -\indexentry{functions and methods!tibble()@\texttt {tibble()}}{203} -\indexentry{functions and methods!data.frame()@\texttt {data.frame()}}{203} -\indexentry{operators!|>@\texttt {|>}}{204} -\indexentry{operators!|>@\texttt {|>}}{205} -\indexentry{operators!\%>\%@\texttt {\%>\%}}{205} -\indexentry{operators!\%T>\%@\texttt {\%T>\%}}{205} -\indexentry{operators!\%<>\%@\texttt {\%<>\%}}{205} -\indexentry{operators!\%>\%@\texttt {\%>\%}}{205} -\indexentry{operators!\%.>\%@\texttt {\%.>\%}}{205} -\indexentry{operators!\%>\%@\texttt {\%>\%}}{205} -\indexentry{operators!\%.>\%@\texttt {\%.>\%}}{205} -\indexentry{operators!\%>\%@\texttt {\%>\%}}{205} -\indexentry{operators!|>@\texttt {|>}}{206} -\indexentry{operators!|>@\texttt {|>}}{206} -\indexentry{operators!\%>\%@\texttt {\%>\%}}{206} -\indexentry{operators!|>@\texttt {|>}}{206} -\indexentry{operators!\%>\%@\texttt {\%>\%}}{206} -\indexentry{operators!\%.>\%@\texttt {\%.>\%}}{206} -\indexentry{operators!\%>\%@\texttt {\%>\%}}{206} -\indexentry{functions and methods!assign()@\texttt {assign()}}{206} -\indexentry{operators!\%>\%@\texttt {\%>\%}}{207} -\indexentry{functions and methods!assign()@\texttt {assign()}}{207} -\indexentry{operators!->@\texttt {->}}{207} -\indexentry{operators!\%.>\%@\texttt {\%.>\%}}{207} -\indexentry{operators!|>@\texttt {|>}}{207} -\indexentry{operators!\%>\%@\texttt {\%>\%}}{207} -\indexentry{operators!\%.>\%@\texttt {\%.>\%}}{207} -\indexentry{operators!\%.>\%@\texttt {\%.>\%}}{207} -\indexentry{operators!|>@\texttt {|>}}{207} -\indexentry{operators!\%>\%@\texttt {\%>\%}}{207} -\indexentry{operators!\%.>\%@\texttt {\%.>\%}}{207} -\indexentry{operators!|>@\texttt {|>}}{207} -\indexentry{operators!\%.>\%@\texttt {\%.>\%}}{207} -\indexentry{operators!\%>\%@\texttt {\%>\%}}{207} -\indexentry{operators!|>@\texttt {|>}}{207} -\indexentry{operators!|>@\texttt {|>}}{207} -\indexentry{operators!|>@\texttt {|>}}{207} -\indexentry{operators!\%>\%@\texttt {\%>\%}}{208} -\indexentry{functions and methods!print()@\texttt {print()}}{208} -\indexentry{functions and methods!print()@\texttt {print()}}{208} -\indexentry{functions and methods!plot()@\texttt {plot()}}{208} -\indexentry{data objects!iris@\texttt {iris}}{208} -\indexentry{classes and modes!"tb"@\texttt {"tb"}}{209} -\indexentry{functions and methods!pivot\_longer()@\texttt {pivot\_longer()}}{209} -\indexentry{functions and methods!pivot\_longer()@\texttt {pivot\_longer()}}{209} -\indexentry{operators!!!@\texttt {!!}}{209} -\indexentry{functions and methods!spread()@\texttt {spread()}}{210} -\indexentry{functions and methods!gather()@\texttt {gather()}}{210} -\indexentry{functions and methods!spread()@\texttt {spread()}}{210} -\indexentry{functions and methods!pivot\_longer()@\texttt {pivot\_longer()}}{210} -\indexentry{functions and methods!pivot\_wider()@\texttt {pivot\_wider()}}{210} -\indexentry{classes and modes!tibble@\texttt {tibble}}{210} -\indexentry{functions and methods!mutate()@\texttt {mutate()}}{211} -\indexentry{functions and methods!transmute()@\texttt {transmute()}}{211} -\indexentry{functions and methods!mutate()@\texttt {mutate()}}{211} -\indexentry{functions and methods!transmute()@\texttt {transmute()}}{211} -\indexentry{functions and methods!tibble()@\texttt {tibble()}}{211} -\indexentry{functions and methods!mutate()@\texttt {mutate()}}{211} -\indexentry{functions and methods!transmute()@\texttt {transmute()}}{211} -\indexentry{functions and methods!str\_extract()@\texttt {str\_extract()}}{211} -\indexentry{functions and methods!mutate()@\texttt {mutate()}}{211} -\indexentry{operators!\%.>\%@\texttt {\%.>\%}}{212} -\indexentry{functions and methods!arrange()@\texttt {arrange()}}{212} -\indexentry{functions and methods!sort()@\texttt {sort()}}{212} -\indexentry{functions and methods!order()@\texttt {order()}}{212} -\indexentry{functions and methods!filter()@\texttt {filter()}}{212} -\indexentry{functions and methods!subset()@\texttt {subset()}}{212} -\indexentry{functions and methods!slice()@\texttt {slice()}}{212} -\indexentry{functions and methods!select()@\texttt {select()}}{213} -\indexentry{functions and methods!select()@\texttt {select()}}{213} -\indexentry{functions and methods!select()@\texttt {select()}}{213} -\indexentry{functions and methods!starts\_with()@\texttt {starts\_with()}}{213} -\indexentry{functions and methods!ends\_with()@\texttt {ends\_with()}}{213} -\indexentry{functions and methods!contains()@\texttt {contains()}}{213} -\indexentry{functions and methods!matches()@\texttt {matches()}}{213} -\indexentry{functions and methods!rename()@\texttt {rename()}}{213} -\indexentry{functions and methods!names()@\texttt {names()}}{213} -\indexentry{functions and methods!names<-()@\texttt {names<-()}}{213} -\indexentry{functions and methods!aggregate()@\texttt {aggregate()}}{214} -\indexentry{functions and methods!ungroup()@\texttt {ungroup()}}{214} -\indexentry{functions and methods!group\_by()@\texttt {group\_by()}}{214} -\indexentry{functions and methods!summarise()@\texttt {summarise()}}{214} -\indexentry{operators!==@\texttt {==}}{216} -\indexentry{functions and methods!group\_by()@\texttt {group\_by()}}{216} -\indexentry{functions and methods!ungroup()@\texttt {ungroup()}}{216} -\indexentry{operators![ , ]@\texttt {[ , ]}}{216} -\indexentry{functions and methods!full\_join()@\texttt {full\_join()}}{216} -\indexentry{functions and methods!left\_join()@\texttt {left\_join()}}{216} -\indexentry{functions and methods!right\_join()@\texttt {right\_join()}}{216} -\indexentry{functions and methods!inner\_join()@\texttt {inner\_join()}}{216} -\indexentry{functions and methods!semi\_join()@\texttt {semi\_join()}}{218} -\indexentry{functions and methods!anti\_join()@\texttt {anti\_join()}}{218} -\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{224} -\indexentry{functions and methods!geom\_line()@\texttt {geom\_line()}}{224} -\indexentry{functions and methods!stat\_smooth()@\texttt {stat\_smooth()}}{224} -\indexentry{functions and methods!stat\_summary()@\texttt {stat\_summary()}}{224} -\indexentry{functions and methods!scale\_color\_continuous()@\texttt {scale\_color\_continuous()}}{224} -\indexentry{functions and methods!aes()@\texttt {aes()}}{225} -\indexentry{functions and methods!stat\_identity()@\texttt {stat\_identity()}}{226} -\indexentry{functions and methods!aes()@\texttt {aes()}}{226} -\indexentry{functions and methods!after\_stat()@\texttt {after\_stat()}}{226} -\indexentry{data objects!mtcars@\texttt {mtcars}}{226} -\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{227} -\indexentry{functions and methods!geom\_line()@\texttt {geom\_line()}}{228} -\indexentry{functions and methods!geom\_point@\texttt {geom\_point}}{228} -\indexentry{functions and methods!geom\_line@\texttt {geom\_line}}{228} -\indexentry{functions and methods!ggplot()@\texttt {ggplot()}}{233} -\indexentry{functions and methods!ggplot()@\texttt {ggplot()}}{234} -\indexentry{functions and methods!aes()@\texttt {aes()}}{235} -\indexentry{functions and methods!ggplot()@\texttt {ggplot()}}{235} -\indexentry{functions and methods!ggplot()@\texttt {ggplot()}}{235} -\indexentry{operators!|>@\texttt {|>}}{235} -\indexentry{functions and methods!stat()@\texttt {stat()}}{236} -\indexentry{functions and methods!stage()@\texttt {stage()}}{236} -\indexentry{functions and methods!after\_stat()@\texttt {after\_stat()}}{236} -\indexentry{functions and methods!after\_scale()@\texttt {after\_scale()}}{236} -\indexentry{functions and methods!after\_stat()@\texttt {after\_stat()}}{236} -\indexentry{functions and methods!stat()@\texttt {stat()}}{236} -\indexentry{functions and methods!after\_stat()@\texttt {after\_stat()}}{236} -\indexentry{functions and methods!after\_scale()@\texttt {after\_scale()}}{236} -\indexentry{functions and methods!rlm()@\texttt {rlm()}}{236} -\indexentry{functions and methods!after\_stat()@\texttt {after\_stat()}}{237} -\indexentry{functions and methods!stat\_fit\_residuals()@\texttt {stat\_fit\_residuals()}}{237} -\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{237} -\indexentry{functions and methods!stage()@\texttt {stage()}}{237} -\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{237} -\indexentry{functions and methods!stat\_fit\_residuals()@\texttt {stat\_fit\_residuals()}}{237} -\indexentry{functions and methods!stat\_fit\_residuals()@\texttt {stat\_fit\_residuals()}}{237} -\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{237} -\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{238} -\indexentry{functions and methods!geom\_line()@\texttt {geom\_line()}}{238} -\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{238} -\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{242} -\indexentry{functions and methods!geom\_pointrange()@\texttt {geom\_pointrange()}}{243} -\indexentry{functions and methods!geom\_range()@\texttt {geom\_range()}}{243} -\indexentry{functions and methods!geom\_errorbar@\texttt {geom\_errorbar}}{243} -\indexentry{functions and methods!geom\_rug()@\texttt {geom\_rug()}}{243} -\indexentry{functions and methods!geom\_line()@\texttt {geom\_line()}}{244} -\indexentry{data objects!Orange@\texttt {Orange}}{244} -\indexentry{functions and methods!geom\_segment()@\texttt {geom\_segment()}}{244} -\indexentry{functions and methods!geom\_curve()@\texttt {geom\_curve()}}{244} -\indexentry{functions and methods!geom\_path()@\texttt {geom\_path()}}{244} -\indexentry{functions and methods!geom\_line()@\texttt {geom\_line()}}{244} -\indexentry{functions and methods!geom\_spoke()@\texttt {geom\_spoke()}}{244} -\indexentry{functions and methods!geom\_segment()@\texttt {geom\_segment()}}{244} -\indexentry{functions and methods!geom\_step()@\texttt {geom\_step()}}{244} -\indexentry{functions and methods!geom\_line()@\texttt {geom\_line()}}{245} -\indexentry{functions and methods!geom\_area()@\texttt {geom\_area()}}{245} -\indexentry{functions and methods!geom\_ribbon@\texttt {geom\_ribbon}}{245} -\indexentry{functions and methods!geom\_polygom@\texttt {geom\_polygom}}{245} -\indexentry{functions and methods!geom\_path()@\texttt {geom\_path()}}{245} -\indexentry{functions and methods!geom\_point@\texttt {geom\_point}}{245} -\indexentry{functions and methods!geom\_line@\texttt {geom\_line}}{245} -\indexentry{functions and methods!geom\_ribbon@\texttt {geom\_ribbon}}{245} -\indexentry{functions and methods!geom\_area@\texttt {geom\_area}}{245} -\indexentry{functions and methods!geom\_hline@\texttt {geom\_hline}}{245} -\indexentry{functions and methods!geom\_vline@\texttt {geom\_vline}}{245} -\indexentry{functions and methods!geom\_abline@\texttt {geom\_abline}}{245} -\indexentry{functions and methods!geom\_hline@\texttt {geom\_hline}}{245} -\indexentry{functions and methods!geom\_vline@\texttt {geom\_vline}}{245} -\indexentry{functions and methods!geom\_col()@\texttt {geom\_col()}}{246} -\indexentry{functions and methods!geom\_bar()@\texttt {geom\_bar()}}{246} -\indexentry{functions and methods!stat\_count()@\texttt {stat\_count()}}{246} -\indexentry{functions and methods!geom\_col()@\texttt {geom\_col()}}{246} -\indexentry{functions and methods!geom\_bar()@\texttt {geom\_bar()}}{246} -\indexentry{functions and methods!geom\_col()@\texttt {geom\_col()}}{248} -\indexentry{functions and methods!geom\_tile()@\texttt {geom\_tile()}}{248} -\indexentry{functions and methods!geom\_tile()@\texttt {geom\_tile()}}{248} -\indexentry{functions and methods!geom\_tile()@\texttt {geom\_tile()}}{249} -\indexentry{functions and methods!geom\_rect()@\texttt {geom\_rect()}}{249} -\indexentry{functions and methods!geom\_sf()@\texttt {geom\_sf()}}{250} -\indexentry{functions and methods!geom\_sf\_text()@\texttt {geom\_sf\_text()}}{250} -\indexentry{functions and methods!geom\_sf\_label()@\texttt {geom\_sf\_label()}}{250} -\indexentry{functions and methods!stat\_sf()@\texttt {stat\_sf()}}{250} -\indexentry{functions and methods!geom\_text()@\texttt {geom\_text()}}{250} -\indexentry{functions and methods!geom\_label()@\texttt {geom\_label()}}{250} -\indexentry{functions and methods!geom\_text()@\texttt {geom\_text()}}{250} -\indexentry{functions and methods!geom\_label()@\texttt {geom\_label()}}{250} -\indexentry{functions and methods!geom\_label()@\texttt {geom\_label()}}{251} -\indexentry{functions and methods!geom\_label()@\texttt {geom\_label()}}{251} -\indexentry{functions and methods!geom\_text@\texttt {geom\_text}}{252} -\indexentry{functions and methods!geom\_label@\texttt {geom\_label}}{252} -\indexentry{functions and methods!geom\_point@\texttt {geom\_point}}{252} -\indexentry{functions and methods!geom\_label()@\texttt {geom\_label()}}{252} -\indexentry{functions and methods!geom\_text()@\texttt {geom\_text()}}{252} -\indexentry{functions and methods!paste()@\texttt {paste()}}{252} -\indexentry{functions and methods!paste()@\texttt {paste()}}{252} -\indexentry{functions and methods!geom\_text()@\texttt {geom\_text()}}{253} -\indexentry{functions and methods!aes()@\texttt {aes()}}{253} -\indexentry{functions and methods!geom\_label()@\texttt {geom\_label()}}{253} -\indexentry{functions and methods!geom\_text()@\texttt {geom\_text()}}{253} -\indexentry{functions and methods!geom\_text()@\texttt {geom\_text()}}{253} -\indexentry{functions and methods!geom\_text()@\texttt {geom\_text()}}{254} -\indexentry{functions and methods!geom\_text()@\texttt {geom\_text()}}{254} -\indexentry{functions and methods!geom\_label()@\texttt {geom\_label()}}{254} -\indexentry{functions and methods!geom\_text\_repel()@\texttt {geom\_text\_repel()}}{254} -\indexentry{functions and methods!geom\_label\_repel()@\texttt {geom\_label\_repel()}}{254} -\indexentry{functions and methods!geom\_table()@\texttt {geom\_table()}}{255} -\indexentry{functions and methods!geom\_plot()@\texttt {geom\_plot()}}{255} -\indexentry{functions and methods!geom\_grob()@\texttt {geom\_grob()}}{255} -\indexentry{functions and methods!geom\_table()@\texttt {geom\_table()}}{255} -\indexentry{functions and methods!geom\_plot()@\texttt {geom\_plot()}}{255} -\indexentry{functions and methods!geom\_grob()@\texttt {geom\_grob()}}{255} -\indexentry{functions and methods!geom\_table@\texttt {geom\_table}}{255} -\indexentry{functions and methods!geom\_text@\texttt {geom\_text}}{255} -\indexentry{functions and methods!geom\_table()@\texttt {geom\_table()}}{256} -\indexentry{functions and methods!geom\_table()@\texttt {geom\_table()}}{256} -\indexentry{functions and methods!geom\_table()@\texttt {geom\_table()}}{256} -\indexentry{functions and methods!geom\_plot()@\texttt {geom\_plot()}}{256} -\indexentry{functions and methods!annotate()@\texttt {annotate()}}{257} -\indexentry{functions and methods!geom\_grob()@\texttt {geom\_grob()}}{258} -\indexentry{functions and methods!annotation\_custom()@\texttt {annotation\_custom()}}{258} -\indexentry{functions and methods!geom\_text\_npc()@\texttt {geom\_text\_npc()}}{259} -\indexentry{functions and methods!geom\_label\_npc()@\texttt {geom\_label\_npc()}}{259} -\indexentry{functions and methods!geom\_table\_npc()@\texttt {geom\_table\_npc()}}{259} -\indexentry{functions and methods!geom\_plot\_npc()@\texttt {geom\_plot\_npc()}}{259} -\indexentry{functions and methods!geom\_grob\_npc()@\texttt {geom\_grob\_npc()}}{259} -\indexentry{functions and methods!stat\_function()@\texttt {stat\_function()}}{260} -\indexentry{functions and methods!xlim()@\texttt {xlim()}}{261} -\indexentry{functions and methods!ylim()@\texttt {ylim()}}{261} -\indexentry{functions and methods!stat\_summary()@\texttt {stat\_summary()}}{261} -\indexentry{functions and methods!stat\_summary()@\texttt {stat\_summary()}}{261} -\indexentry{functions and methods!geom\_pointrange()@\texttt {geom\_pointrange()}}{261} -\indexentry{functions and methods!stat\_summary()@\texttt {stat\_summary()}}{262} -\indexentry{functions and methods!stat\_summary()@\texttt {stat\_summary()}}{263} -\indexentry{functions and methods!geom\_pointrange()@\texttt {geom\_pointrange()}}{263} -\indexentry{functions and methods!geom\_errorbar()@\texttt {geom\_errorbar()}}{263} -\indexentry{functions and methods!geom\_linerange()@\texttt {geom\_linerange()}}{263} -\indexentry{functions and methods!stat\_smooth()@\texttt {stat\_smooth()}}{264} -\indexentry{functions and methods!geom\_smooth()@\texttt {geom\_smooth()}}{264} -\indexentry{functions and methods!stat\_smooth()@\texttt {stat\_smooth()}}{264} -\indexentry{functions and methods!lm()@\texttt {lm()}}{264} -\indexentry{functions and methods!stat\_smooth@\texttt {stat\_smooth}}{265} -\indexentry{data objects!Puromycin@\texttt {Puromycin}}{265} -\indexentry{functions and methods!SSmicmen()@\texttt {SSmicmen()}}{265} -\indexentry{functions and methods!stat\_poly\_line()@\texttt {stat\_poly\_line()}}{266} -\indexentry{functions and methods!stat\_smooth()@\texttt {stat\_smooth()}}{266} -\indexentry{functions and methods!stat\_bin()@\texttt {stat\_bin()}}{267} -\indexentry{functions and methods!geom\_histogram()@\texttt {geom\_histogram()}}{267} -\indexentry{functions and methods!stat\_count()@\texttt {stat\_count()}}{267} -\indexentry{functions and methods!geom\_bar()@\texttt {geom\_bar()}}{267} -\indexentry{functions and methods!stat\_bin()@\texttt {stat\_bin()}}{268} -\indexentry{functions and methods!geom\_histogram()@\texttt {geom\_histogram()}}{269} -\indexentry{functions and methods!stat\_bin()@\texttt {stat\_bin()}}{269} -\indexentry{functions and methods!stat\_count()@\texttt {stat\_count()}}{269} -\indexentry{functions and methods!stat\_bin2d@\texttt {stat\_bin2d}}{269} -\indexentry{functions and methods!geom\_bin2d()@\texttt {geom\_bin2d()}}{269} -\indexentry{functions and methods!stat\_bin()@\texttt {stat\_bin()}}{269} -\indexentry{functions and methods!coord\_fixed()@\texttt {coord\_fixed()}}{269} -\indexentry{functions and methods!coord\_cartesian()@\texttt {coord\_cartesian()}}{269} -\indexentry{functions and methods!stat\_bin\_hex()@\texttt {stat\_bin\_hex()}}{269} -\indexentry{functions and methods!geom\_hex()@\texttt {geom\_hex()}}{269} -\indexentry{functions and methods!stat\_bin2d()@\texttt {stat\_bin2d()}}{269} -\indexentry{functions and methods!geom\_density()@\texttt {geom\_density()}}{270} -\indexentry{functions and methods!stat\_density\_2d()@\texttt {stat\_density\_2d()}}{270} -\indexentry{functions and methods!geom\_density\_2d()@\texttt {geom\_density\_2d()}}{271} -\indexentry{functions and methods!stat\_boxplot()@\texttt {stat\_boxplot()}}{271} -\indexentry{functions and methods!geom\_boxplot()@\texttt {geom\_boxplot()}}{271} -\indexentry{functions and methods!geom\_violin()@\texttt {geom\_violin()}}{272} -\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{274} -\indexentry{functions and methods!geom\_line()@\texttt {geom\_line()}}{274} -\indexentry{functions and methods!coord\_flip()@\texttt {coord\_flip()}}{274} -\indexentry{functions and methods!stat\_smooth()@\texttt {stat\_smooth()}}{274} -\indexentry{functions and methods!geom\_line()@\texttt {geom\_line()}}{274} -\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{274} -\indexentry{functions and methods!stat\_boxplot()@\texttt {stat\_boxplot()}}{275} -\indexentry{functions and methods!stat\_boxplot()@\texttt {stat\_boxplot()}}{275} -\indexentry{functions and methods!stat\_summary@\texttt {stat\_summary}}{275} -\indexentry{functions and methods!stat\_histogram()@\texttt {stat\_histogram()}}{275} -\indexentry{functions and methods!stat\_density()@\texttt {stat\_density()}}{275} -\indexentry{functions and methods!geom\_smooth()@\texttt {geom\_smooth()}}{277} -\indexentry{functions and methods!coord\_flip()@\texttt {coord\_flip()}}{278} -\indexentry{functions and methods!stat\_poly\_line()@\texttt {stat\_poly\_line()}}{278} -\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{279} -\indexentry{functions and methods!stat\_density2d()@\texttt {stat\_density2d()}}{279} -\indexentry{functions and methods!stat\_summary2d()@\texttt {stat\_summary2d()}}{279} -\indexentry{functions and methods!stat\_summary2d()@\texttt {stat\_summary2d()}}{279} -\indexentry{functions and methods!stat\_density2d()@\texttt {stat\_density2d()}}{279} -\indexentry{functions and methods!stat\_summary()@\texttt {stat\_summary()}}{279} -\indexentry{functions and methods!stat\_centroid()@\texttt {stat\_centroid()}}{279} -\indexentry{functions and methods!stat\_summary\_xy()@\texttt {stat\_summary\_xy()}}{279} -\indexentry{functions and methods!stat\_summary()@\texttt {stat\_summary()}}{280} -\indexentry{functions and methods!stat\_summary()@\texttt {stat\_summary()}}{280} -\indexentry{functions and methods!facet\_grid()@\texttt {facet\_grid()}}{281} -\indexentry{functions and methods!facet\_wrap()@\texttt {facet\_wrap()}}{281} -\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{281} -\indexentry{functions and methods!label\_bquote()@\texttt {label\_bquote()}}{283} -\indexentry{functions and methods!label\_bquote()@\texttt {label\_bquote()}}{283} -\indexentry{functions and methods!facet\_wrap()@\texttt {facet\_wrap()}}{283} -\indexentry{functions and methods!scale\_color\_identity()@\texttt {scale\_color\_identity()}}{284} -\indexentry{functions and methods!scale\_color\_discrete()@\texttt {scale\_color\_discrete()}}{284} -\indexentry{functions and methods!ggtitle()@\texttt {ggtitle()}}{285} -\indexentry{functions and methods!xlab()@\texttt {xlab()}}{285} -\indexentry{functions and methods!ylab()@\texttt {ylab()}}{285} -\indexentry{functions and methods!labs()@\texttt {labs()}}{285} -\indexentry{functions and methods!labs()@\texttt {labs()}}{285} -\indexentry{functions and methods!ggtitle()@\texttt {ggtitle()}}{285} -\indexentry{functions and methods!ylim()@\texttt {ylim()}}{287} -\indexentry{functions and methods!xlim()@\texttt {xlim()}}{287} -\indexentry{functions and methods!ylim()@\texttt {ylim()}}{287} -\indexentry{functions and methods!xlim()@\texttt {xlim()}}{287} -\indexentry{functions and methods!expand\_limits()@\texttt {expand\_limits()}}{287} -\indexentry{functions and methods!expand\_limits()@\texttt {expand\_limits()}}{288} -\indexentry{functions and methods!xlim()@\texttt {xlim()}}{288} -\indexentry{functions and methods!ylim()@\texttt {ylim()}}{288} -\indexentry{functions and methods!pretty\_breaks()@\texttt {pretty\_breaks()}}{289} -\indexentry{functions and methods!label\_date()@\texttt {label\_date()}}{290} -\indexentry{functions and methods!label\_date\_short()@\texttt {label\_date\_short()}}{290} -\indexentry{functions and methods!label\_time()@\texttt {label\_time()}}{290} -\indexentry{functions and methods!scale\_x\_continuous()@\texttt {scale\_x\_continuous()}}{290} -\indexentry{functions and methods!scale\_y\_continuous()@\texttt {scale\_y\_continuous()}}{290} -\indexentry{functions and methods!scale\_x\_log10()@\texttt {scale\_x\_log10()}}{291} -\indexentry{functions and methods!scale\_y\_log10()@\texttt {scale\_y\_log10()}}{291} -\indexentry{functions and methods!scale\_y\_log()@\texttt {scale\_y\_log()}}{291} -\indexentry{functions and methods!scale\_x\_reverse()@\texttt {scale\_x\_reverse()}}{291} -\indexentry{functions and methods!scale\_y\_log10()@\texttt {scale\_y\_log10()}}{291} -\indexentry{functions and methods!strptime()@\texttt {strptime()}}{294} -\indexentry{functions and methods!scale\_x\_discrete()@\texttt {scale\_x\_discrete()}}{294} -\indexentry{functions and methods!toupper()@\texttt {toupper()}}{295} -\indexentry{functions and methods!tolower()@\texttt {tolower()}}{295} -\indexentry{functions and methods!geom\_point()@\texttt {geom\_point()}}{295} -\indexentry{functions and methods!geom\_line()@\texttt {geom\_line()}}{295} -\indexentry{functions and methods!geom\_hline()@\texttt {geom\_hline()}}{295} -\indexentry{functions and methods!geom\_vline()@\texttt {geom\_vline()}}{295} -\indexentry{functions and methods!geom\_text()@\texttt {geom\_text()}}{295} -\indexentry{functions and methods!geom\_label()@\texttt {geom\_label()}}{295} -\indexentry{functions and methods!geom\_bar()@\texttt {geom\_bar()}}{295} -\indexentry{functions and methods!geom\_col()@\texttt {geom\_col()}}{295} -\indexentry{functions and methods!geom\_area()@\texttt {geom\_area()}}{295} -\indexentry{functions and methods!rgb()@\texttt {rgb()}}{297} -\indexentry{functions and methods!hcl()@\texttt {hcl()}}{297} -\indexentry{functions and methods!scale\_color\_continuous()@\texttt {scale\_color\_continuous()}}{297} -\indexentry{functions and methods!scale\_color\_gradient()@\texttt {scale\_color\_gradient()}}{297} -\indexentry{functions and methods!scale\_color\_gradient2()@\texttt {scale\_color\_gradient2()}}{297} -\indexentry{functions and methods!scale\_color\_gradientn()@\texttt {scale\_color\_gradientn()}}{297} -\indexentry{functions and methods!scale\_color\_date()@\texttt {scale\_color\_date()}}{297} -\indexentry{functions and methods!scale\_color\_datetime()@\texttt {scale\_color\_datetime()}}{297} -\indexentry{functions and methods!scale\_color\_viridis\_c()@\texttt {scale\_color\_viridis\_c()}}{297} -\indexentry{functions and methods!scale\_color\_distiller()@\texttt {scale\_color\_distiller()}}{297} -\indexentry{functions and methods!scale\_color\_discrete()@\texttt {scale\_color\_discrete()}}{297} -\indexentry{functions and methods!scale\_color\_hue()@\texttt {scale\_color\_hue()}}{297} -\indexentry{functions and methods!scale\_color\_gray()@\texttt {scale\_color\_gray()}}{297} -\indexentry{functions and methods!scale\_color\_viridis\_d()@\texttt {scale\_color\_viridis\_d()}}{298} -\indexentry{functions and methods!scale\_color\_brewer()@\texttt {scale\_color\_brewer()}}{298} -\indexentry{functions and methods!scale\_color\_gradient()@\texttt {scale\_color\_gradient()}}{298} -\indexentry{functions and methods!scale\_color\_binned()@\texttt {scale\_color\_binned()}}{298} -\indexentry{functions and methods!scale\_color\_identity()@\texttt {scale\_color\_identity()}}{299} -\indexentry{functions and methods!scale\_fill\_identity()@\texttt {scale\_fill\_identity()}}{299} -\indexentry{functions and methods!annotate()@\texttt {annotate()}}{300} -\indexentry{functions and methods!annotate()@\texttt {annotate()}}{300} -\indexentry{functions and methods!annotate()@\texttt {annotate()}}{300} -\indexentry{functions and methods!annotate()@\texttt {annotate()}}{300} -\indexentry{functions and methods!annotation\_custom()@\texttt {annotation\_custom()}}{300} -\indexentry{functions and methods!ggplotGrob()@\texttt {ggplotGrob()}}{300} -\indexentry{functions and methods!annotate()@\texttt {annotate()}}{302} -\indexentry{functions and methods!geom\_vline()@\texttt {geom\_vline()}}{302} -\indexentry{functions and methods!geom\_hline()@\texttt {geom\_hline()}}{302} -\indexentry{functions and methods!coord\_polar()@\texttt {coord\_polar()}}{302} -\indexentry{functions and methods!coord\_polar()@\texttt {coord\_polar()}}{302} -\indexentry{functions and methods!stat\_bin()@\texttt {stat\_bin()}}{303} -\indexentry{functions and methods!stat\_density()@\texttt {stat\_density()}}{303} -\indexentry{functions and methods!stat\_bin()@\texttt {stat\_bin()}}{303} -\indexentry{functions and methods!geom\_polygon()@\texttt {geom\_polygon()}}{303} -\indexentry{functions and methods!geom\_bar()@\texttt {geom\_bar()}}{303} -\indexentry{functions and methods!facet\_wrap()@\texttt {facet\_wrap()}}{304} -\indexentry{functions and methods!geom\_bar()@\texttt {geom\_bar()}}{304} -\indexentry{functions and methods!theme\_gray()@\texttt {theme\_gray()}}{305} -\indexentry{functions and methods!theme\_bw()@\texttt {theme\_bw()}}{306} -\indexentry{functions and methods!theme\_gray()@\texttt {theme\_gray()}}{306} -\indexentry{functions and methods!theme\_bw()@\texttt {theme\_bw()}}{306} -\indexentry{functions and methods!theme\_classic()@\texttt {theme\_classic()}}{306} -\indexentry{functions and methods!theme\_minimal()@\texttt {theme\_minimal()}}{306} -\indexentry{functions and methods!theme\_linedraw()@\texttt {theme\_linedraw()}}{306} -\indexentry{functions and methods!theme\_light()@\texttt {theme\_light()}}{306} -\indexentry{functions and methods!theme\_dark()@\texttt {theme\_dark()}}{306} -\indexentry{functions and methods!theme\_void()@\texttt {theme\_void()}}{306} -\indexentry{functions and methods!theme\_gray()@\texttt {theme\_gray()}}{306} -\indexentry{functions and methods!theme\_set()@\texttt {theme\_set()}}{307} -\indexentry{functions and methods!theme\_set()@\texttt {theme\_set()}}{307} -\indexentry{functions and methods!theme\_bw()@\texttt {theme\_bw()}}{307} -\indexentry{functions and methods!theme\_classic()@\texttt {theme\_classic()}}{307} -\indexentry{functions and methods!theme()@\texttt {theme()}}{308} -\indexentry{functions and methods!rel()@\texttt {rel()}}{308} -\indexentry{functions and methods!theme\_gray()@\texttt {theme\_gray()}}{310} -\indexentry{functions and methods!theme()@\texttt {theme()}}{310} -\indexentry{operators!+@\texttt {+}}{311} -\indexentry{operators!|@\texttt {|}}{311} -\indexentry{operators!/@\texttt {/}}{311} -\indexentry{operators!+@\texttt {+}}{311} -\indexentry{operators!|@\texttt {|}}{311} -\indexentry{operators!/@\texttt {/}}{311} -\indexentry{functions and methods!expression()@\texttt {expression()}}{313} -\indexentry{functions and methods!geom\_text@\texttt {geom\_text}}{313} -\indexentry{functions and methods!geom\_label@\texttt {geom\_label}}{313} -\indexentry{functions and methods!labs()@\texttt {labs()}}{313} -\indexentry{functions and methods!geom\_text()@\texttt {geom\_text()}}{313} -\indexentry{functions and methods!paste()@\texttt {paste()}}{313} -\indexentry{functions and methods!expression()@\texttt {expression()}}{313} -\indexentry{functions and methods!parse()@\texttt {parse()}}{314} -\indexentry{functions and methods!expression()@\texttt {expression()}}{314} -\indexentry{functions and methods!parse()@\texttt {parse()}}{314} -\indexentry{functions and methods!parse()@\texttt {parse()}}{314} -\indexentry{functions and methods!expression()@\texttt {expression()}}{314} -\indexentry{functions and methods!parse()@\texttt {parse()}}{314} -\indexentry{functions and methods!expression()@\texttt {expression()}}{314} -\indexentry{functions and methods!parse()@\texttt {parse()}}{314} -\indexentry{functions and methods!plain()@\texttt {plain()}}{315} -\indexentry{functions and methods!italic()@\texttt {italic()}}{315} -\indexentry{functions and methods!bold()@\texttt {bold()}}{315} -\indexentry{functions and methods!bolditalic()@\texttt {bolditalic()}}{315} -\indexentry{functions and methods!expression()@\texttt {expression()}}{315} -\indexentry{functions and methods!parse()@\texttt {parse()}}{315} -\indexentry{functions and methods!expression()@\texttt {expression()}}{315} -\indexentry{functions and methods!ggplot()@\texttt {ggplot()}}{315} -\indexentry{functions and methods!paste()@\texttt {paste()}}{316} -\indexentry{functions and methods!format()@\texttt {format()}}{316} -\indexentry{functions and methods!sprintf()@\texttt {sprintf()}}{316} -\indexentry{functions and methods!strftime()@\texttt {strftime()}}{316} -\indexentry{functions and methods!sprintf()@\texttt {sprintf()}}{316} -\indexentry{functions and methods!format()@\texttt {format()}}{316} -\indexentry{functions and methods!sprintf()@\texttt {sprintf()}}{316} -\indexentry{functions and methods!strftime()@\texttt {strftime()}}{316} -\indexentry{functions and methods!bquote()@\texttt {bquote()}}{316} -\indexentry{functions and methods!bquote()@\texttt {bquote()}}{316} -\indexentry{functions and methods!substitute()@\texttt {substitute()}}{316} -\indexentry{functions and methods!shell()@\texttt {shell()}}{326} -\indexentry{functions and methods!system()@\texttt {system()}}{326} -\indexentry{functions and methods!basename()@\texttt {basename()}}{326} -\indexentry{functions and methods!dirname()@\texttt {dirname()}}{326} -\indexentry{functions and methods!getwd()@\texttt {getwd()}}{326} -\indexentry{functions and methods!setwd()@\texttt {setwd()}}{326} -\indexentry{functions and methods!setwd()@\texttt {setwd()}}{326} -\indexentry{functions and methods!list.files()@\texttt {list.files()}}{327} -\indexentry{functions and methods!dir()@\texttt {dir()}}{327} -\indexentry{functions and methods!list.dirs()@\texttt {list.dirs()}}{327} -\indexentry{functions and methods!list.dirs()@\texttt {list.dirs()}}{327} -\indexentry{functions and methods!dir()@\texttt {dir()}}{327} -\indexentry{functions and methods!file.path()@\texttt {file.path()}}{328} -\indexentry{functions and methods!readLines()@\texttt {readLines()}}{328} -\indexentry{functions and methods!tools:::showNonASCIIfile()@\texttt {tools:::showNonASCIIfile()}}{330} -\indexentry{functions and methods!read.csv()@\texttt {read.csv()}}{331} -\indexentry{functions and methods!write.csv()@\texttt {write.csv()}}{331} -\indexentry{functions and methods!read.csv2()@\texttt {read.csv2()}}{331} -\indexentry{functions and methods!read.csv()@\texttt {read.csv()}}{331} -\indexentry{functions and methods!read.csv2()@\texttt {read.csv2()}}{332} -\indexentry{functions and methods!write.csv2@\texttt {write.csv2}}{332} -\indexentry{functions and methods!read.table()@\texttt {read.table()}}{332} -\indexentry{functions and methods!read.csv()@\texttt {read.csv()}}{332} -\indexentry{functions and methods!read.table()@\texttt {read.table()}}{332} -\indexentry{functions and methods!read.fwf()@\texttt {read.fwf()}}{333} -\indexentry{functions and methods!read.fortran()@\texttt {read.fortran()}}{333} -\indexentry{functions and methods!read.fwf()@\texttt {read.fwf()}}{333} -\indexentry{functions and methods!read.table()@\texttt {read.table()}}{334} -\indexentry{functions and methods!read.csv()@\texttt {read.csv()}}{334} -\indexentry{functions and methods!read.table()@\texttt {read.table()}}{334} -\indexentry{functions and methods!read.csv()@\texttt {read.csv()}}{334} -\indexentry{functions and methods!read.table()@\texttt {read.table()}}{334} -\indexentry{functions and methods!read.table()@\texttt {read.table()}}{334} -\indexentry{functions and methods!read.csv2()@\texttt {read.csv2()}}{334} -\indexentry{functions and methods!write.csv()@\texttt {write.csv()}}{334} -\indexentry{functions and methods!write.csv2()@\texttt {write.csv2()}}{335} -\indexentry{functions and methods!write.table()@\texttt {write.table()}}{335} -\indexentry{functions and methods!read.csv()@\texttt {read.csv()}}{335} -\indexentry{functions and methods!cat()@\texttt {cat()}}{335} -\indexentry{functions and methods!read\_csv()@\texttt {read\_csv()}}{336} -\indexentry{functions and methods!read.csv()@\texttt {read.csv()}}{336} -\indexentry{functions and methods!read.table()@\texttt {read.table()}}{336} -\indexentry{classes and modes!tibble@\texttt {tibble}}{336} -\indexentry{classes and modes!data.frame@\texttt {data.frame}}{336} -\indexentry{functions and methods!read\_table2()@\texttt {read\_table2()}}{336} -\indexentry{functions and methods!read\_table2()@\texttt {read\_table2()}}{336} -\indexentry{functions and methods!read\_table2()@\texttt {read\_table2()}}{337} -\indexentry{functions and methods!read.table()@\texttt {read.table()}}{337} -\indexentry{functions and methods!read\_table()@\texttt {read\_table()}}{337} -\indexentry{functions and methods!read\_table2()@\texttt {read\_table2()}}{337} -\indexentry{functions and methods!read\_table()@\texttt {read\_table()}}{337} -\indexentry{functions and methods!read\_delim()@\texttt {read\_delim()}}{337} -\indexentry{functions and methods!read\_table()@\texttt {read\_table()}}{337} -\indexentry{functions and methods!read\_tsv()@\texttt {read\_tsv()}}{338} -\indexentry{functions and methods!read\_fwf()@\texttt {read\_fwf()}}{338} -\indexentry{functions and methods!read.fortran()@\texttt {read.fortran()}}{338} -\indexentry{functions and methods!write\_csv()@\texttt {write\_csv()}}{339} -\indexentry{functions and methods!write\_csv2()@\texttt {write\_csv2()}}{339} -\indexentry{functions and methods!write\_tsv()@\texttt {write\_tsv()}}{339} -\indexentry{functions and methods!write\_delim()@\texttt {write\_delim()}}{339} -\indexentry{functions and methods!write\_excel\_csv()@\texttt {write\_excel\_csv()}}{339} -\indexentry{functions and methods!write\_excel\_csv()@\texttt {write\_excel\_csv()}}{340} -\indexentry{functions and methods!write\_csv()@\texttt {write\_csv()}}{340} -\indexentry{functions and methods!read\_lines()@\texttt {read\_lines()}}{340} -\indexentry{functions and methods!write\_lines()@\texttt {write\_lines()}}{340} -\indexentry{functions and methods!read\_file()@\texttt {read\_file()}}{340} -\indexentry{functions and methods!write\_file()@\texttt {write\_file()}}{340} -\indexentry{functions and methods!read\_file()@\texttt {read\_file()}}{340} -\indexentry{functions and methods!write\_file()@\texttt {write\_file()}}{340} -\indexentry{functions and methods!write\_file()@\texttt {write\_file()}}{340} -\indexentry{functions and methods!read\_csv()@\texttt {read\_csv()}}{340} -\indexentry{functions and methods!read\_html()@\texttt {read\_html()}}{341} -\indexentry{functions and methods!xml\_find\_all()@\texttt {xml\_find\_all()}}{343} -\indexentry{functions and methods!xml\_text()@\texttt {xml\_text()}}{343} -\indexentry{functions and methods!excel\_sheets()@\texttt {excel\_sheets()}}{346} -\indexentry{functions and methods!read\_excel()@\texttt {read\_excel()}}{346} -\indexentry{functions and methods!read.xlsx()@\texttt {read.xlsx()}}{347} -\indexentry{functions and methods!write.xlsx()@\texttt {write.xlsx()}}{347} -\indexentry{functions and methods!read\_ods()@\texttt {read\_ods()}}{348} -\indexentry{functions and methods!write\_ods()@\texttt {write\_ods()}}{349} -\indexentry{functions and methods!read.spss()@\texttt {read.spss()}}{349} -\indexentry{functions and methods!read.systat()@\texttt {read.systat()}}{350} -\indexentry{classes and modes!tibble@\texttt {tibble}}{350} -\indexentry{functions and methods!read\_sav()@\texttt {read\_sav()}}{350} -\indexentry{functions and methods!names()@\texttt {names()}}{351} -\indexentry{functions and methods!str()@\texttt {str()}}{351} -\indexentry{functions and methods!class()@\texttt {class()}}{351} -\indexentry{functions and methods!attributes()@\texttt {attributes()}}{351} -\indexentry{functions and methods!mode()@\texttt {mode()}}{351} -\indexentry{functions and methods!dim()@\texttt {dim()}}{351} -\indexentry{functions and methods!dimnames()@\texttt {dimnames()}}{351} -\indexentry{functions and methods!nrow()@\texttt {nrow()}}{351} -\indexentry{functions and methods!ncol()@\texttt {ncol()}}{351} -\indexentry{functions and methods!print()@\texttt {print()}}{352} -\indexentry{functions and methods!nc\_open()@\texttt {nc\_open()}}{352} -\indexentry{functions and methods!str()@\texttt {str()}}{352} -\indexentry{functions and methods!ncvar\_get()@\texttt {ncvar\_get()}}{352} -\indexentry{classes and modes!tibble@\texttt {tibble}}{353} -\indexentry{functions and methods!download.file()@\texttt {download.file()}}{356} -\indexentry{functions and methods!fromJSON()@\texttt {fromJSON()}}{357} +\indexentry{functions and methods!source()@\texttt {source()}}{3} +\indexentry{functions and methods!print()@\texttt {print()}}{3} +\indexentry{functions and methods!ggplot()@\texttt {ggplot()}}{3} +\indexentry{functions and methods!print()@\texttt {print()}}{3} +\indexentry{control of execution!if()@\texttt {if()}}{10} +\indexentry{control of execution!if()\ldots else@\texttt {if()\ldots else}}{10} +\indexentry{classes and modes!logical@\texttt {logical}}{11} +\indexentry{classes and modes!numeric@\texttt {numeric}}{13} +\indexentry{classes and modes!logical@\texttt {logical}}{13} +\indexentry{control of execution!if ()@\texttt {if ()}}{13} +\indexentry{control of execution!if () \ldots \ else@\texttt {if () \ldots \ else}}{13} +\indexentry{control of execution!switch()@\texttt {switch()}}{13} +\indexentry{control of execution!if ()@\texttt {if ()}}{13} +\indexentry{control of execution!switch()@\texttt {switch()}}{13} +\indexentry{control of execution!switch()@\texttt {switch()}}{13} +\indexentry{control of execution!switch()@\texttt {switch()}}{13} +\indexentry{control of execution!switch()@\texttt {switch()}}{15} +\indexentry{control of execution!switch()@\texttt {switch()}}{15} +\indexentry{control of execution!switch()@\texttt {switch()}}{16} +\indexentry{control of execution!switch()@\texttt {switch()}}{16} +\indexentry{control of execution!switch()@\texttt {switch()}}{16} +\indexentry{control of execution!ifelse()@\texttt {ifelse()}}{16} +\indexentry{control of execution!ifelse()@\texttt {ifelse()}}{16} +\indexentry{control of execution!ifelse()@\texttt {ifelse()}}{17} +\indexentry{control of execution!ifelse()@\texttt {ifelse()}}{17} +\indexentry{control of execution!for@\texttt {for}}{18} +\indexentry{control of execution!while@\texttt {while}}{18} +\indexentry{control of execution!repeat@\texttt {repeat}}{18} +\indexentry{control of execution!for@\texttt {for}}{18} +\indexentry{control of execution!for@\texttt {for}}{19} +\indexentry{control of execution!for@\texttt {for}}{19} +\indexentry{functions and methods!print()@\texttt {print()}}{20} +\indexentry{control of execution!for@\texttt {for}}{20} +\indexentry{control of execution!break()@\texttt {break()}}{21} +\indexentry{control of execution!next()@\texttt {next()}}{21} +\indexentry{control of execution!while@\texttt {while}}{21} +\indexentry{control of execution!while@\texttt {while}}{22} +\indexentry{control of execution!break()@\texttt {break()}}{22} +\indexentry{control of execution!repeat@\texttt {repeat}}{22} +\indexentry{control of execution!break()@\texttt {break()}}{22} +\indexentry{control of execution!break()@\texttt {break()}}{22} +\indexentry{control of execution!break()@\texttt {break()}}{23} +\indexentry{control of execution!break()@\texttt {break()}}{23} +\indexentry{control of execution!for@\texttt {for}}{23} +\indexentry{control of execution!while@\texttt {while}}{23} +\indexentry{control of execution!break()@\texttt {break()}}{23} +\indexentry{control of execution!for@\texttt {for}}{23} +\indexentry{control of execution!next()@\texttt {next()}}{23} +\indexentry{control of execution!for@\texttt {for}}{23} +\indexentry{control of execution!while@\texttt {while}}{23} +\indexentry{control of execution!repeat@\texttt {repeat}}{23} +\indexentry{functions and methods!system.time()@\texttt {system.time()}}{23} +\indexentry{control of execution!for@\texttt {for}}{23} +\indexentry{functions and methods!system.time()@\texttt {system.time()}}{24} +\indexentry{control of execution!apply()@\texttt {apply()}}{25} +\indexentry{control of execution!lapply()@\texttt {lapply()}}{25} +\indexentry{control of execution!sapply()@\texttt {sapply()}}{25} +\indexentry{functions and methods!on.exit()@\texttt {on.exit()}}{26} +\indexentry{functions and methods!on.exit()@\texttt {on.exit()}}{26} +\indexentry{control of execution!lapply()@\texttt {lapply()}}{27} +\indexentry{control of execution!sapply()@\texttt {sapply()}}{27} +\indexentry{control of execution!lapply()@\texttt {lapply()}}{27} +\indexentry{control of execution!vapply()@\texttt {vapply()}}{27} +\indexentry{control of execution!sapply()@\texttt {sapply()}}{27} +\indexentry{control of execution!apply()@\texttt {apply()}}{27} +\indexentry{control of execution!lapply()@\texttt {lapply()}}{27} +\indexentry{control of execution!apply()@\texttt {apply()}}{27} +\indexentry{control of execution!lapply()@\texttt {lapply()}}{27} +\indexentry{control of execution!sapply()@\texttt {sapply()}}{27} +\indexentry{control of execution!apply()@\texttt {apply()}}{27} +\indexentry{control of execution!lapply()@\texttt {lapply()}}{27} +\indexentry{control of execution!sapply()@\texttt {sapply()}}{27} +\indexentry{control of execution!vapply()@\texttt {vapply()}}{27} +\indexentry{control of execution!vapply()@\texttt {vapply()}}{28} +\indexentry{control of execution!vapply()@\texttt {vapply()}}{29} +\indexentry{control of execution!apply()@\texttt {apply()}}{29} +\indexentry{functions and methods!mean()@\texttt {mean()}}{29} +\indexentry{control of execution!apply()@\texttt {apply()}}{30} +\indexentry{control of execution!apply()@\texttt {apply()}}{30} +\indexentry{control of execution!apply()@\texttt {apply()}}{30} +\indexentry{functions and methods!t()@\texttt {t()}}{30} +\indexentry{control of execution!apply()@\texttt {apply()}}{31} +\indexentry{functions and methods!mean()@\texttt {mean()}}{32} +\indexentry{functions and methods!var()@\texttt {var()}}{32} +\indexentry{functions and methods!sd()@\texttt {sd()}}{32} +\indexentry{functions and methods!max()@\texttt {max()}}{32} +\indexentry{functions and methods!min()@\texttt {min()}}{32} +\indexentry{functions and methods!inverse.rle()@\texttt {inverse.rle()}}{32} +\indexentry{functions and methods!sum()@\texttt {sum()}}{32} +\indexentry{functions and methods!prod()@\texttt {prod()}}{32} +\indexentry{functions and methods!cumsum()@\texttt {cumsum()}}{32} +\indexentry{functions and methods!cumprod()@\texttt {cumprod()}}{32} +\indexentry{functions and methods!cummax()@\texttt {cummax()}}{32} +\indexentry{functions and methods!cummin()@\texttt {cummin()}}{32} +\indexentry{functions and methods!runmed()@\texttt {runmed()}}{32} +\indexentry{functions and methods!diff()@\texttt {diff()}}{32} +\indexentry{functions and methods!diffinv()@\texttt {diffinv()}}{32} +\indexentry{functions and methods!factorial()@\texttt {factorial()}}{32} +\indexentry{functions and methods!rle()@\texttt {rle()}}{32} +\indexentry{functions and methods!inverse.rle()@\texttt {inverse.rle()}}{32} +\indexentry{functions and methods!assign()@\texttt {assign()}}{33} +\indexentry{functions and methods!assign()@\texttt {assign()}}{33} +\indexentry{functions and methods!get()@\texttt {get()}}{33} +\indexentry{functions and methods!mget()@\texttt {mget()}}{33} +\indexentry{functions and methods!assign()@\texttt {assign()}}{34} +\indexentry{functions and methods!get()@\texttt {get()}}{34} +\indexentry{functions and methods!mget()@\texttt {mget()}}{34} +\indexentry{functions and methods!do.call()@\texttt {do.call()}}{34} +\indexentry{functions and methods!anova()@\texttt {anova()}}{35} +\indexentry{functions and methods!do.call()@\texttt {do.call()}}{35} +\indexentry{functions and methods!anova()@\texttt {anova()}}{35} +\indexentry{functions and methods!do.call()@\texttt {do.call()}}{35} +\indexentry{functions and methods!anova()@\texttt {anova()}}{35} +\indexentry{operators!|>@\texttt {|>}}{36} +\indexentry{functions and methods!within()@\texttt {within()}}{36} +\indexentry{functions and methods!subset()@\texttt {subset()}}{36} +\indexentry{functions and methods!aggregate()@\texttt {aggregate()}}{37} +\indexentry{functions and methods!getElement()@\texttt {getElement()}}{37} diff --git a/rcatsidx.ilg b/rcatsidx.ilg index d6cbe13c..2796577b 100644 --- a/rcatsidx.ilg +++ b/rcatsidx.ilg @@ -1,68 +1,9 @@ This is makeindex, version 2.16 [MiKTeX 22.8]. Scanning input file rcatsidx.idx.... -!! Input index error (file = rcatsidx.idx, line = 78): - -- Extra `!' at position 23 of first argument. - -!! Input index error (file = rcatsidx.idx, line = 88): - -- Extra `!' at position 24 of first argument. - -!! Input index error (file = rcatsidx.idx, line = 110): - -- Extra `!' at position 23 of first argument. - -!! Input index error (file = rcatsidx.idx, line = 113): - -- Extra `@' at position 12 of first argument. - -!! Input index error (file = rcatsidx.idx, line = 563): - -- Incomplete first argument (premature LFD). - -!! Input index error (file = rcatsidx.idx, line = 569): - -- Incomplete first argument (premature LFD). - -!! Input index error (file = rcatsidx.idx, line = 651): +!! Input index error (file = rcatsidx.idx, line = 114): -- Extra `@' at position 13 of first argument. -!! Input index error (file = rcatsidx.idx, line = 652): - -- Extra `@' at position 13 of first argument. - -!! Input index error (file = rcatsidx.idx, line = 661): - -- Extra `@' at position 13 of first argument. -!! Input index error (file = rcatsidx.idx, line = 662): - -- Extra `@' at position 13 of first argument. - -!! Input index error (file = rcatsidx.idx, line = 664): - -- Extra `@' at position 13 of first argument. - -!! Input index error (file = rcatsidx.idx, line = 673): - -- Extra `@' at position 13 of first argument. - -!! Input index error (file = rcatsidx.idx, line = 677): - -- Extra `@' at position 13 of first argument. - -!! Input index error (file = rcatsidx.idx, line = 680): - -- Extra `@' at position 13 of first argument. - -!! Input index error (file = rcatsidx.idx, line = 683): - -- Extra `@' at position 13 of first argument. -!! Input index error (file = rcatsidx.idx, line = 684): - -- Extra `@' at position 13 of first argument. -!! Input index error (file = rcatsidx.idx, line = 685): - -- Extra `@' at position 13 of first argument. - -!! Input index error (file = rcatsidx.idx, line = 691): - -- Incomplete first argument (premature LFD). - -!! Input index error (file = rcatsidx.idx, line = 694): - -- Extra `!' at position 12 of first argument. - -!! Input index error (file = rcatsidx.idx, line = 760): - -- Extra `@' at position 13 of first argument. -. -!! Input index error (file = rcatsidx.idx, line = 1035): - -- Extra `@' at position 12 of first argument. - -!! Input index error (file = rcatsidx.idx, line = 1038): - -- Extra `@' at position 12 of first argument. -done (1151 entries accepted, 22 rejected). -Sorting entries............done (12456 comparisons). -Generating output file rcatsidx.ind....done (532 lines written, 0 warnings). +done (117 entries accepted, 1 rejected). +Sorting entries....done (876 comparisons). +Generating output file rcatsidx.ind....done (59 lines written, 0 warnings). Output written in rcatsidx.ind. Transcript written in rcatsidx.ilg. diff --git a/rcatsidx.ind b/rcatsidx.ind index be5f9740..c12ae162 100644 --- a/rcatsidx.ind +++ b/rcatsidx.ind @@ -1,532 +1,59 @@ \begin{theindex} \item classes and modes - \subitem \texttt {array}, 53, 82 - \subitem \texttt {call}, 159 - \subitem \texttt {character}, 40, 41, 45 - \subitem \texttt {data.frame}, 69, 70, 198, 336 - \subitem \texttt {double}, 22, 35, 36, 51 - \subitem \texttt {factor}, 59 - \subitem \texttt {formula}, 159, 160 - \subitem \texttt {integer}, 21, 27, 35, 51 - \subitem \texttt {list}, 65, 70, 89, 160, 184, 198 - \subitem \texttt {lm}, 184 - \subitem \texttt {logical}, 29, 46, 105, 107 - \subitem \texttt {matrix}, 53, 56, 82, 89, 198 - \subitem \texttt {numeric}, 18, 21, 40, 41, 51, 107 - \subitem \texttt {tbl}, 198 - \subitem \texttt {tbl\_df}, 200 - \subitem \texttt {tibble}, 199, 200, 210, 336, 350, 353 - \subitem \texttt {vector}, 22 - \item constant and special values - \subitem \texttt {-Inf}, 25, 35 - \subitem \texttt {.Machine\$double.eps}, 34 - \subitem \texttt {.Machine\$double.max}, 34 - \subitem \texttt {.Machine\$double.min}, 34 - \subitem \texttt {.Machine\$double.neg.eps}, 34 - \subitem \texttt {.Machine\$integer.max}, 35 - \subitem \texttt {FALSE}, 27 - \subitem \texttt {Inf}, 25, 35 - \subitem \texttt {LETTERS}, 47 - \subitem \texttt {letters}, 47 - \subitem \texttt {month.abb}, 48 - \subitem \texttt {month.name}, 47 - \subitem \texttt {NA}, 25, 26, 46 - \subitem \texttt {NA\_character\_}, 46 - \subitem \texttt {NA\_real\_}, 46 - \subitem \texttt {NaN}, 25 - \subitem \texttt {pi}, 19 - \subitem \texttt {TRUE}, 27 + \subitem \texttt {logical}, 11, 13 + \subitem \texttt {numeric}, 13 \item control of execution - \subitem \texttt {apply()}, 121, 122, 125, 126 - \subitem \texttt {break()}, 115, 117, 118 - \subitem \texttt {for}, 112--115, 118 - \subitem \texttt {if ()}, 107, 108 - \subitem \texttt {if () \ldots \ else}, 107 - \subitem \texttt {if()}, 104 - \subitem \texttt {if()\ldots else}, 104 - \subitem \texttt {ifelse()}, 110--112 - \subitem \texttt {lapply()}, 89, 121, 122 - \subitem \texttt {next()}, 115, 118 - \subitem \texttt {repeat}, 112, 117, 118 - \subitem \texttt {return()}, 184 - \subitem \texttt {sapply}, 89 - \subitem \texttt {sapply()}, 89, 121, 122 - \subitem \texttt {switch()}, 107--110 - \subitem \texttt {vapply()}, 89, 122, 124 - \subitem \texttt {while}, 112, 115, 117, 118 - - \indexspace - - \item data objects - \subitem \texttt {austres}, 169 - \subitem \texttt {cars}, 139, 143 - \subitem \texttt {eurodist}, 175, 177 - \subitem \texttt {InsectSpray}, 153 - \subitem \texttt {InsectSprays}, 149 - \subitem \texttt {iris}, 171, 208 - \subitem \texttt {mtcars}, 226 - \subitem \texttt {nottem}, 169 - \subitem \texttt {npk}, 164 - \subitem \texttt {Orange}, 244 - \subitem \texttt {Puromycin}, 157, 265 + \subitem \texttt {apply()}, 25, 27, 29--31 + \subitem \texttt {break()}, 21--23 + \subitem \texttt {for}, 18--20, 23 + \subitem \texttt {if ()}, 13 + \subitem \texttt {if () \ldots \ else}, 13 + \subitem \texttt {if()}, 10 + \subitem \texttt {if()\ldots else}, 10 + \subitem \texttt {ifelse()}, 16, 17 + \subitem \texttt {lapply()}, 25, 27 + \subitem \texttt {next()}, 21, 23 + \subitem \texttt {repeat}, 18, 22, 23 + \subitem \texttt {sapply()}, 25, 27 + \subitem \texttt {switch()}, 13, 15, 16 + \subitem \texttt {vapply()}, 27--29 + \subitem \texttt {while}, 18, 21--23 \indexspace \item functions and methods - \subitem \texttt {abs()}, 29, 36 - \subitem \texttt {aes()}, 225, 226, 235, 253 - \subitem \texttt {after\_scale()}, 236 - \subitem \texttt {after\_stat()}, 226, 236, 237 - \subitem \texttt {aggregate()}, 214 - \subitem \texttt {AIC()}, 142, 146 - \subitem \texttt {all()}, 30 - \subitem \texttt {annotate()}, 257, 300, 302 - \subitem \texttt {annotation\_custom()}, 258, 300 - \subitem \texttt {anova()}, 130, 131, 146, 147, 150, 152, 154 - \subitem \texttt {anti\_join()}, 218 - \subitem \texttt {any()}, 30 - \subitem \texttt {aov()}, 150, 171 - \subitem \texttt {append()}, 23, 66 - \subitem \texttt {arrange()}, 212 - \subitem \texttt {array()}, 57 - \subitem \texttt {as.character()}, 44, 61 - \subitem \texttt {as.data.frame()}, 202 - \subitem \texttt {as.formula()}, 166 - \subitem \texttt {as.integer()}, 45 - \subitem \texttt {as.logical()}, 44 - \subitem \texttt {as.matrix()}, 53 - \subitem \texttt {as.numeric()}, 44, 45, 61 - \subitem \texttt {as.ts()}, 169 - \subitem \texttt {as.vector()}, 58 - \subitem \texttt {as\_tibble()}, 199 - \subitem \texttt {assign()}, 128, 129, 184, 206, 207 - \subitem \texttt {attach()}, 78 - \subitem \texttt {attr()}, 83 - \subitem \texttt {attr()<-}, 83 - \subitem \texttt {attributes()}, 83, 141, 351 - \subitem \texttt {basename()}, 326 - \subitem \texttt {BIC()}, 142, 146 - \subitem \texttt {biplot()}, 173 - \subitem \texttt {bold()}, 315 - \subitem \texttt {bolditalic()}, 315 - \subitem \texttt {bquote()}, 316 - \subitem \texttt {c()}, 22 - \subitem \texttt {cat()}, 42, 335 - \subitem \texttt {ceiling()}, 29 - \subitem \texttt {citation()}, 13 - \subitem \texttt {class()}, 43, 70, 141, 202, 351 - \subitem \texttt {coef()}, 142, 146, 151 - \subitem \texttt {coefficients()}, 146 - \subitem \texttt {colnames()}, 88 - \subitem \texttt {comment()}, 83 - \subitem \texttt {comment()<-}, 83 - \subitem \texttt {contains()}, 213 - \subitem \texttt {coord\_cartesian()}, 269 - \subitem \texttt {coord\_fixed()}, 269 - \subitem \texttt {coord\_flip()}, 274, 278 - \subitem \texttt {coord\_polar()}, 302 - \subitem \texttt {cor()}, 139--141 - \subitem \texttt {cor.test()}, 140, 141 - \subitem \texttt {crossprod()}, 59 - \subitem \texttt {cummax()}, 128 - \subitem \texttt {cummin()}, 128 - \subitem \texttt {cumprod()}, 128 - \subitem \texttt {cumsum()}, 128 - \subitem \texttt {cutree()}, 177 - \subitem \texttt {data()}, 85 - \subitem \texttt {data.frame()}, 69, 73, 200, 203 - \subitem \texttt {decompose()}, 170 - \subitem \texttt {diag()}, 59 - \subitem \texttt {diff()}, 128 - \subitem \texttt {dim()}, 53, 83, 351 - \subitem \texttt {dim()<-}, 83 - \subitem \texttt {dimnames()}, 351 - \subitem \texttt {dir()}, 327 - \subitem \texttt {dirname()}, 326 - \subitem \texttt {dist}, 176, 177 - \subitem \texttt {do.call()}, 130 - \subitem \texttt {double()}, 22 - \subitem \texttt {download.file()}, 356 - \subitem \texttt {effects()}, 146 - \subitem \texttt {ends\_with()}, 213 - \subitem \texttt {excel\_sheets()}, 346 - \subitem \texttt {exp()}, 19 - \subitem \texttt {expand\_limits()}, 287, 288 - \subitem \texttt {expression()}, 313--315 - \subitem \texttt {facet\_grid()}, 281 - \subitem \texttt {facet\_wrap()}, 281, 283, 304 - \subitem \texttt {factor()}, 59, 60, 62, 63 - \subitem \texttt {file.path()}, 328 - \subitem \texttt {filter()}, 212 - \subitem \texttt {fitted()}, 142, 146 - \subitem \texttt {fitted.values()}, 146 - \subitem \texttt {format()}, 45, 46, 316 - \subitem \texttt {fromJSON()}, 357 - \subitem \texttt {full\_join()}, 216 - \subitem \texttt {function()}, 184 - \subitem \texttt {gather()}, 210 - \subitem \texttt {geom\_abline}, 245 - \subitem \texttt {geom\_area}, 245 - \subitem \texttt {geom\_area()}, 245, 295 - \subitem \texttt {geom\_bar()}, 246, 267, 295, 303, 304 - \subitem \texttt {geom\_bin2d()}, 269 - \subitem \texttt {geom\_boxplot()}, 271 - \subitem \texttt {geom\_col()}, 246, 248, 295 - \subitem \texttt {geom\_curve()}, 244 - \subitem \texttt {geom\_density()}, 270 - \subitem \texttt {geom\_density\_2d()}, 271 - \subitem \texttt {geom\_errorbar}, 243 - \subitem \texttt {geom\_errorbar()}, 263 - \subitem \texttt {geom\_grob()}, 255, 258 - \subitem \texttt {geom\_grob\_npc()}, 259 - \subitem \texttt {geom\_hex()}, 269 - \subitem \texttt {geom\_histogram()}, 267, 269 - \subitem \texttt {geom\_hline}, 245 - \subitem \texttt {geom\_hline()}, 295, 302 - \subitem \texttt {geom\_label}, 252, 313 - \subitem \texttt {geom\_label()}, 250--254, 295 - \subitem \texttt {geom\_label\_npc()}, 259 - \subitem \texttt {geom\_label\_repel()}, 254 - \subitem \texttt {geom\_line}, 228, 245 - \subitem \texttt {geom\_line()}, 224, 228, 238, 244, 245, 274, 295 - \subitem \texttt {geom\_linerange()}, 263 - \subitem \texttt {geom\_path()}, 244, 245 - \subitem \texttt {geom\_plot()}, 255, 256 - \subitem \texttt {geom\_plot\_npc()}, 259 - \subitem \texttt {geom\_point}, 228, 245, 252 - \subitem \texttt {geom\_point()}, 224, 227, 237, 238, 242, 274, - 279, 281, 295 - \subitem \texttt {geom\_pointrange()}, 243, 261, 263 - \subitem \texttt {geom\_polygom}, 245 - \subitem \texttt {geom\_polygon()}, 303 - \subitem \texttt {geom\_range()}, 243 - \subitem \texttt {geom\_rect()}, 249 - \subitem \texttt {geom\_ribbon}, 245 - \subitem \texttt {geom\_rug()}, 243 - \subitem \texttt {geom\_segment()}, 244 - \subitem \texttt {geom\_sf()}, 250 - \subitem \texttt {geom\_sf\_label()}, 250 - \subitem \texttt {geom\_sf\_text()}, 250 - \subitem \texttt {geom\_smooth()}, 264, 277 - \subitem \texttt {geom\_spoke()}, 244 - \subitem \texttt {geom\_step()}, 244 - \subitem \texttt {geom\_table}, 255 - \subitem \texttt {geom\_table()}, 255, 256 - \subitem \texttt {geom\_table\_npc()}, 259 - \subitem \texttt {geom\_text}, 252, 255, 313 - \subitem \texttt {geom\_text()}, 250, 252--254, 295, 313 - \subitem \texttt {geom\_text\_npc()}, 259 - \subitem \texttt {geom\_text\_repel()}, 254 - \subitem \texttt {geom\_tile()}, 248, 249 - \subitem \texttt {geom\_violin()}, 272 - \subitem \texttt {geom\_vline}, 245 - \subitem \texttt {geom\_vline()}, 295, 302 - \subitem \texttt {get()}, 129 - \subitem \texttt {getwd()}, 326 - \subitem \texttt {ggplot()}, 97, 233--235, 315 - \subitem \texttt {ggplotGrob()}, 300 - \subitem \texttt {ggtitle()}, 285 - \subitem \texttt {gl()}, 60, 61 - \subitem \texttt {glm()}, 153 - \subitem \texttt {group\_by()}, 214, 216 - \subitem \texttt {hcl()}, 297 - \subitem \texttt {hclust()}, 176, 178 - \subitem \texttt {head()}, 88, 89 - \subitem \texttt {help()}, 12 - \subitem \texttt {I()}, 72, 73, 145, 161 - \subitem \texttt {identical()}, 202 - \subitem \texttt {inherits()}, 43, 165 - \subitem \texttt {inner\_join()}, 216 - \subitem \texttt {install.packages()}, 181 - \subitem \texttt {is.array()}, 53 - \subitem \texttt {is.character()}, 43 - \subitem \texttt {is.element()}, 38, 39 - \subitem \texttt {is.logical()}, 43 - \subitem \texttt {is.matrix()}, 53 - \subitem \texttt {is.na()}, 26 - \subitem \texttt {is.numeric()}, 21, 43 - \subitem \texttt {is.vector()}, 53 - \subitem \texttt {is\_tibble()}, 199 - \subitem \texttt {italic()}, 315 - \subitem \texttt {label\_bquote()}, 283 - \subitem \texttt {label\_date()}, 290 - \subitem \texttt {label\_date\_short()}, 290 - \subitem \texttt {label\_time()}, 290 - \subitem \texttt {labs()}, 285, 313 - \subitem \texttt {left\_join()}, 216 - \subitem \texttt {length()}, 24, 45, 53, 88, 133, 160 - \subitem \texttt {levels()}, 60, 63, 83 - \subitem \texttt {levels()<-}, 62, 83 - \subitem \texttt {library()}, 181 - \subitem \texttt {list()}, 65 - \subitem \texttt {list.dirs()}, 327 - \subitem \texttt {list.files()}, 327 - \subitem \texttt {lm()}, 84, 142, 145, 150, 171, 184, 264 - \subitem \texttt {load()}, 86 - \subitem \texttt {log()}, 161 - \subitem \texttt {log(), log10(), log2()}, 19 - \subitem \texttt {ls()}, 25, 86, 87 - \subitem \texttt {mad()}, 133 - \subitem \texttt {manova()}, 171 - \subitem \texttt {matches()}, 213 - \subitem \texttt {matrix()}, 53, 54, 140 - \subitem \texttt {max()}, 128, 133 - \subitem \texttt {mean()}, 125, 133 - \subitem \texttt {median()}, 133 - \subitem \texttt {methods()}, 190 - \subitem \texttt {mget()}, 129 - \subitem \texttt {min()}, 128, 133 - \subitem \texttt {mode()}, 43, 133, 351 - \subitem \texttt {model.frame()}, 146 - \subitem \texttt {model.matrix()}, 146 - \subitem \texttt {mutate()}, 211 - \subitem \texttt {my\_print()}, 192 - \subitem \texttt {names()}, 83, 88, 213, 351 - \subitem \texttt {names()<-}, 83 - \subitem \texttt {names<-()}, 213 - \subitem \texttt {nc\_open()}, 352 - \subitem \texttt {ncol()}, 53, 88, 351 - \subitem \texttt {ncvar\_get()}, 352 - \subitem \texttt {nlme}, 157 - \subitem \texttt {nls}, 157 - \subitem \texttt {nls()}, 156, 157 - \subitem \texttt {nrow()}, 53, 88, 351 - \subitem \texttt {numeric()}, 21, 24 - \subitem \texttt {on.exit()}, 121 - \subitem \texttt {options()}, 199 - \subitem \texttt {order()}, 52, 64, 82, 212 - \subitem \texttt {ordered()}, 59 - \subitem \texttt {parse()}, 314, 315 - \subitem \texttt {paste()}, 252, 313, 316 - \subitem \texttt {pivot\_longer()}, 209, 210 - \subitem \texttt {pivot\_wider()}, 210 - \subitem \texttt {plain()}, 315 - \subitem \texttt {plot()}, 90--92, 154, 190, 208 - \subitem \texttt {pnorm()}, 136, 137 - \subitem \texttt {poly()}, 145 - \subitem \texttt {prcomp()}, 173, 175 - \subitem \texttt {predict()}, 142, 149 - \subitem \texttt {pretty\_breaks()}, 289 - \subitem \texttt {print()}, 7, 42, 45, 68, 88, 97, 115, 140, 183, - 199, 201, 208, 352 - \subitem \texttt {prod()}, 128 - \subitem \texttt {pt()}, 136 - \subitem \texttt {qnorm()}, 137 - \subitem \texttt {quantile()}, 133 - \subitem \texttt {range()}, 133 - \subitem \texttt {read.csv()}, 331, 332, 334--336 - \subitem \texttt {read.csv2()}, 331, 332, 334 - \subitem \texttt {read.fortran()}, 333, 338 - \subitem \texttt {read.fwf()}, 333 - \subitem \texttt {read.spss()}, 349 - \subitem \texttt {read.systat()}, 350 - \subitem \texttt {read.table()}, 332, 334, 336, 337 - \subitem \texttt {read.xlsx()}, 347 - \subitem \texttt {read\_csv()}, 336, 340 - \subitem \texttt {read\_delim()}, 337 - \subitem \texttt {read\_excel()}, 346 - \subitem \texttt {read\_file()}, 340 - \subitem \texttt {read\_fwf()}, 338 - \subitem \texttt {read\_html()}, 341 - \subitem \texttt {read\_lines()}, 340 - \subitem \texttt {read\_ods()}, 348 - \subitem \texttt {read\_sav()}, 350 - \subitem \texttt {read\_table()}, 337 - \subitem \texttt {read\_table2()}, 336, 337 - \subitem \texttt {read\_tsv()}, 338 - \subitem \texttt {readLines()}, 328 - \subitem \texttt {readRDS()}, 87 - \subitem \texttt {rel()}, 308 - \subitem \texttt {rename()}, 213 - \subitem \texttt {reorder()}, 64 - \subitem \texttt {rep()}, 23 - \subitem \texttt {resid()}, 146 - \subitem \texttt {residuals()}, 142, 146 - \subitem \texttt {rgb()}, 297 - \subitem \texttt {right\_join()}, 216 - \subitem \texttt {rle()}, 53 - \subitem \texttt {rlm()}, 236 - \subitem \texttt {rm()}, 25 - \subitem \texttt {rnorm()}, 137, 138, 140 - \subitem \texttt {round()}, 28 - \subitem \texttt {rownames()}, 88 - \subitem \texttt {runif()}, 137 - \subitem \texttt {save()}, 85, 86 - \subitem \texttt {saveRDS()}, 87 - \subitem \texttt {scale\_color\_binned()}, 298 - \subitem \texttt {scale\_color\_brewer()}, 298 - \subitem \texttt {scale\_color\_continuous()}, 224, 297 - \subitem \texttt {scale\_color\_date()}, 297 - \subitem \texttt {scale\_color\_datetime()}, 297 - \subitem \texttt {scale\_color\_discrete()}, 284, 297 - \subitem \texttt {scale\_color\_distiller()}, 297 - \subitem \texttt {scale\_color\_gradient()}, 297, 298 - \subitem \texttt {scale\_color\_gradient2()}, 297 - \subitem \texttt {scale\_color\_gradientn()}, 297 - \subitem \texttt {scale\_color\_gray()}, 297 - \subitem \texttt {scale\_color\_hue()}, 297 - \subitem \texttt {scale\_color\_identity()}, 284, 299 - \subitem \texttt {scale\_color\_viridis\_c()}, 297 - \subitem \texttt {scale\_color\_viridis\_d()}, 298 - \subitem \texttt {scale\_fill\_identity()}, 299 - \subitem \texttt {scale\_x\_continuous()}, 290 - \subitem \texttt {scale\_x\_discrete()}, 294 - \subitem \texttt {scale\_x\_log10()}, 291 - \subitem \texttt {scale\_x\_reverse()}, 291 - \subitem \texttt {scale\_y\_continuous()}, 290 - \subitem \texttt {scale\_y\_log()}, 291 - \subitem \texttt {scale\_y\_log10()}, 291 - \subitem \texttt {sd()}, 133 - \subitem \texttt {select()}, 213 - \subitem \texttt {SEM()}, 186 - \subitem \texttt {semi\_join()}, 218 - \subitem \texttt {seq()}, 23 - \subitem \texttt {set.seed()}, 138 - \subitem \texttt {setseed()}, 138 - \subitem \texttt {setwd()}, 326 - \subitem \texttt {shell()}, 326 - \subitem \texttt {signif()}, 28 - \subitem \texttt {sin()}, 19 - \subitem \texttt {slice()}, 212 - \subitem \texttt {sort()}, 52, 64, 212 - \subitem \texttt {source()}, 97 - \subitem \texttt {spread()}, 210 - \subitem \texttt {sprintf()}, 45, 46, 191, 316 - \subitem \texttt {sqrt()}, 19 - \subitem \texttt {SSmicmen()}, 157, 265 - \subitem \texttt {stage()}, 236, 237 - \subitem \texttt {starts\_with()}, 213 - \subitem \texttt {stat()}, 236 - \subitem \texttt {stat\_bin()}, 267--269, 303 - \subitem \texttt {stat\_bin2d}, 269 - \subitem \texttt {stat\_bin2d()}, 269 - \subitem \texttt {stat\_bin\_hex()}, 269 - \subitem \texttt {stat\_boxplot()}, 271, 275 - \subitem \texttt {stat\_centroid()}, 279 - \subitem \texttt {stat\_count()}, 246, 267, 269 - \subitem \texttt {stat\_density()}, 275, 303 - \subitem \texttt {stat\_density2d()}, 279 - \subitem \texttt {stat\_density\_2d()}, 270 - \subitem \texttt {stat\_fit\_residuals()}, 237 - \subitem \texttt {stat\_function()}, 260 - \subitem \texttt {stat\_histogram()}, 275 - \subitem \texttt {stat\_identity()}, 226 - \subitem \texttt {stat\_poly\_line()}, 266, 278 - \subitem \texttt {stat\_sf()}, 250 - \subitem \texttt {stat\_smooth}, 265 - \subitem \texttt {stat\_smooth()}, 224, 264, 266, 274 - \subitem \texttt {stat\_summary}, 275 - \subitem \texttt {stat\_summary()}, 224, 261--263, 279, 280 - \subitem \texttt {stat\_summary2d()}, 279 - \subitem \texttt {stat\_summary\_xy()}, 279 - \subitem \texttt {stl()}, 170, 171 - \subitem \texttt {str()}, 66--69, 83, 88, 141, 147, 351, 352 - \subitem \texttt {str\_extract()}, 211 - \subitem \texttt {strftime()}, 316 - \subitem \texttt {strptime()}, 294 - \subitem \texttt {subset()}, 77, 78, 196, 212 - \subitem \texttt {substitute()}, 316 - \subitem \texttt {sum()}, 128, 186 - \subitem \texttt {summarise()}, 214 - \subitem \texttt {summary()}, 89, 90, 134, 143, 144, 147, 150, 151 - \subitem \texttt {system()}, 326 - \subitem \texttt {system.time()}, 118, 119 - \subitem \texttt {t()}, 58, 126 - \subitem \texttt {tail()}, 88, 89 - \subitem \texttt {terms()}, 146, 163 - \subitem \texttt {theme()}, 308, 310 - \subitem \texttt {theme\_bw()}, 306, 307 - \subitem \texttt {theme\_classic()}, 306, 307 - \subitem \texttt {theme\_dark()}, 306 - \subitem \texttt {theme\_gray()}, 305, 306, 310 - \subitem \texttt {theme\_light()}, 306 - \subitem \texttt {theme\_linedraw()}, 306 - \subitem \texttt {theme\_minimal()}, 306 - \subitem \texttt {theme\_set()}, 307 - \subitem \texttt {theme\_void()}, 306 - \subitem \texttt {tibble()}, 199, 200, 203, 211 - \subitem \texttt {tolower()}, 295 - \subitem \texttt {tools:::showNonASCIIfile()}, 330 - \subitem \texttt {toupper()}, 295 - \subitem \texttt {transmute()}, 211 - \subitem \texttt {trunc()}, 29, 45 - \subitem \texttt {ts()}, 169 - \subitem \texttt {typeof()}, 43 - \subitem \texttt {ungroup()}, 214, 216 - \subitem \texttt {unique()}, 39 - \subitem \texttt {unlink()}, 87 - \subitem \texttt {unlist()}, 58, 68, 69 - \subitem \texttt {unname()}, 69 - \subitem \texttt {update()}, 167 - \subitem \texttt {update.packages()}, 181 - \subitem \texttt {var()}, 133, 186 - \subitem \texttt {vcov()}, 146 - \subitem \texttt {with()}, 78 - \subitem \texttt {write.csv()}, 331, 334 - \subitem \texttt {write.csv2}, 332 - \subitem \texttt {write.csv2()}, 335 - \subitem \texttt {write.table()}, 335 - \subitem \texttt {write.xlsx()}, 347 - \subitem \texttt {write\_csv()}, 339, 340 - \subitem \texttt {write\_csv2()}, 339 - \subitem \texttt {write\_delim()}, 339 - \subitem \texttt {write\_excel\_csv()}, 339, 340 - \subitem \texttt {write\_file()}, 340 - \subitem \texttt {write\_lines()}, 340 - \subitem \texttt {write\_ods()}, 349 - \subitem \texttt {write\_tsv()}, 339 - \subitem \texttt {xlab()}, 285 - \subitem \texttt {xlim()}, 261, 287, 288 - \subitem \texttt {xml\_find\_all()}, 343 - \subitem \texttt {xml\_text()}, 343 - \subitem \texttt {ylab()}, 285 - \subitem \texttt {ylim()}, 261, 287, 288 - - \indexspace - - \item names and their scope - \subitem \texttt {attach()}, 79--81 - \subitem \texttt {detach()}, 79--81, 181 - \subitem \texttt {exists()}, 193 - \subitem \texttt {with()}, 79--81 - \subitem \texttt {within()}, 79--81 - - \indexspace - - \item operators - \subitem \texttt {*}, 18, 36 - \subitem \texttt {+}, 18, 29, 311 - \subitem \texttt {-}, 18, 29 - \subitem \texttt {->}, 21, 207 - \subitem \texttt {/}, 18, 311 - \subitem \texttt {:}, 23 - \subitem \texttt {<}, 32 - \subitem \texttt {<-}, 20, 21, 50, 79 - \subitem \texttt {<<-}, 184 - \subitem \texttt {<=}, 32 - \subitem \texttt {=}, 21 - \subitem \texttt {==}, 32, 216 - \subitem \texttt {>}, 32 - \subitem \texttt {>=}, 32 - \subitem \texttt {[ , ]}, 216 - \subitem \texttt {[ ]}, 68, 79 - \subitem \texttt {[[ ]]}, 68 - \subitem \texttt {[[]]}, 65, 70, 75--77 - \subitem \texttt {[]}, 75, 81 - \subitem \texttt {\$}, 74, 76, 77 - \subitem \texttt {\%*\%}, 59 - \subitem \texttt {\%.>\%}, 205--207, 212 - \subitem \texttt {\%/\%}, 27 - \subitem \texttt {\%<>\%}, 205 - \subitem \texttt {\%>\%}, 205--208 - \subitem \texttt {\%T>\%}, 205 - \subitem \texttt {\%\%}, 27 - \subitem \texttt {\%in\%}, 38, 39, 41 - \subitem \texttt {\&}, 30 - \subitem \texttt {\&\&}, 30 - \subitem \texttt {\^{}}, 36 - \subitem \texttt {\textbar }, 30 - \subitem \texttt {\textbar \textbar }, 30 + \subitem \texttt {aggregate()}, 37 + \subitem \texttt {anova()}, 35 + \subitem \texttt {assign()}, 33, 34 + \subitem \texttt {cummax()}, 32 + \subitem \texttt {cummin()}, 32 + \subitem \texttt {cumprod()}, 32 + \subitem \texttt {cumsum()}, 32 + \subitem \texttt {diff()}, 32 + \subitem \texttt {diffinv()}, 32 + \subitem \texttt {do.call()}, 34, 35 + \subitem \texttt {factorial()}, 32 + \subitem \texttt {get()}, 33, 34 + \subitem \texttt {getElement()}, 37 + \subitem \texttt {ggplot()}, 3 + \subitem \texttt {inverse.rle()}, 32 + \subitem \texttt {max()}, 32 + \subitem \texttt {mean()}, 29, 32 + \subitem \texttt {mget()}, 33, 34 + \subitem \texttt {min()}, 32 + \subitem \texttt {on.exit()}, 26 + \subitem \texttt {print()}, 3, 20 + \subitem \texttt {prod()}, 32 + \subitem \texttt {rle()}, 32 + \subitem \texttt {runmed()}, 32 + \subitem \texttt {sd()}, 32 + \subitem \texttt {source()}, 3 + \subitem \texttt {subset()}, 36 + \subitem \texttt {sum()}, 32 + \subitem \texttt {system.time()}, 23, 24 + \subitem \texttt {t()}, 30 + \subitem \texttt {var()}, 32 + \subitem \texttt {within()}, 36 \end{theindex} diff --git a/rindex.idx b/rindex.idx index 6f20a767..3a8847a4 100644 --- a/rindex.idx +++ b/rindex.idx @@ -1,1173 +1,118 @@ -\indexentry{print()@\texttt {print()}}{7} -\indexentry{help()@\texttt {help()}}{12} -\indexentry{help()@\texttt {help()}}{12} -\indexentry{help()@\texttt {help()}}{12} -\indexentry{citation()@\texttt {citation()}}{13} -\indexentry{numeric@\texttt {numeric}}{18} -\indexentry{+@\texttt {+}}{18} -\indexentry{-@\texttt {-}}{18} -\indexentry{*@\texttt {*}}{18} -\indexentry{/@\texttt {/}}{18} -\indexentry{exp()@\texttt {exp()}}{19} -\indexentry{sin()@\texttt {sin()}}{19} -\indexentry{pi@\texttt {pi}}{19} -\indexentry{sqrt()@\texttt {sqrt()}}{19} -\indexentry{sin()@\texttt {sin()}}{19} -\indexentry{log(), log10(), log2()@\texttt {log(), log10(), log2()}}{19} -\indexentry{exp()@\texttt {exp()}}{19} -\indexentry{<-@\texttt {<-}}{20} -\indexentry{->@\texttt {->}}{21} -\indexentry{=@\texttt {=}}{21} -\indexentry{<-@\texttt {<-}}{21} -\indexentry{numeric@\texttt {numeric}}{21} -\indexentry{numeric@\texttt {numeric}}{21} -\indexentry{is.numeric()@\texttt {is.numeric()}}{21} -\indexentry{numeric()@\texttt {numeric()}}{21} -\indexentry{integer@\texttt {integer}}{21} -\indexentry{double@\texttt {double}}{22} -\indexentry{double()@\texttt {double()}}{22} -\indexentry{vector@\texttt {vector}}{22} -\indexentry{c()@\texttt {c()}}{22} -\indexentry{append()@\texttt {append()}}{23} -\indexentry{seq()@\texttt {seq()}}{23} -\indexentry{:@\texttt {:}}{23} -\indexentry{rep()@\texttt {rep()}}{23} -\indexentry{numeric()@\texttt {numeric()}}{24} -\indexentry{length()@\texttt {length()}}{24} -\indexentry{rm()@\texttt {rm()}}{25} -\indexentry{ls()@\texttt {ls()}}{25} -\indexentry{NA@\texttt {NA}}{25} -\indexentry{NaN@\texttt {NaN}}{25} -\indexentry{Inf@\texttt {Inf}}{25} -\indexentry{-Inf@\texttt {-Inf}}{25} -\indexentry{Inf@\texttt {Inf}}{25} -\indexentry{-Inf@\texttt {-Inf}}{25} -\indexentry{NA@\texttt {NA}}{26} -\indexentry{NA@\texttt {NA}}{26} -\indexentry{NA@\texttt {NA}}{26} -\indexentry{NA@\texttt {NA}}{26} -\indexentry{NA@\texttt {NA}}{26} -\indexentry{NA@\texttt {NA}}{26} -\indexentry{NA@\texttt {NA}}{26} -\indexentry{is.na()@\texttt {is.na()}}{26} -\indexentry{integer@\texttt {integer}}{27} -\indexentry{\%/\%@\texttt {\%/\%}}{27} -\indexentry{\%\%@\texttt {\%\%}}{27} -\indexentry{TRUE@\texttt {TRUE}}{27} -\indexentry{FALSE@\texttt {FALSE}}{27} -\indexentry{round()@\texttt {round()}}{28} -\indexentry{signif()@\texttt {signif()}}{28} -\indexentry{trunc()@\texttt {trunc()}}{29} -\indexentry{ceiling()@\texttt {ceiling()}}{29} -\indexentry{trunc()@\texttt {trunc()}}{29} -\indexentry{trunc()@\texttt {trunc()}}{29} -\indexentry{ceiling()@\texttt {ceiling()}}{29} -\indexentry{abs()@\texttt {abs()}}{29} -\indexentry{+@\texttt {+}}{29} -\indexentry{-@\texttt {-}}{29} -\indexentry{trunc()@\texttt {trunc()}}{29} -\indexentry{ceiling()@\texttt {ceiling()}}{29} -\indexentry{trunc()@\texttt {trunc()}}{29} -\indexentry{ceiling()@\texttt {ceiling()}}{29} -\indexentry{logical@\texttt {logical}}{29} -\indexentry{logical@\texttt {logical}}{29} -\indexentry{\&@\texttt {\&}}{30} -\indexentry{\textbar @\texttt {\textbar }}{30} -\indexentry{\&\&@\texttt {\&\&}}{30} -\indexentry{\textbar \textbar @\texttt {\textbar \textbar }}{30} -\indexentry{!@\texttt {!}}{30} -\indexentry{any()@\texttt {any()}}{30} -\indexentry{all()@\texttt {all()}}{30} -\indexentry{all()@\texttt {all()}}{30} -\indexentry{any()@\texttt {any()}}{30} -\indexentry{>@\texttt {>}}{32} -\indexentry{<@\texttt {<}}{32} -\indexentry{>=@\texttt {>=}}{32} -\indexentry{<=@\texttt {<=}}{32} -\indexentry{==@\texttt {==}}{32} -\indexentry{!=@\texttt {!=}}{32} -\indexentry{.Machine\$double.eps@\texttt {.Machine\$double.eps}}{34} -\indexentry{.Machine\$double.neg.eps@\texttt {.Machine\$double.neg.eps}}{34} -\indexentry{.Machine\$double.max@\texttt {.Machine\$double.max}}{34} -\indexentry{.Machine\$double.min@\texttt {.Machine\$double.min}}{34} -\indexentry{double@\texttt {double}}{35} -\indexentry{-Inf@\texttt {-Inf}}{35} -\indexentry{Inf@\texttt {Inf}}{35} -\indexentry{integer@\texttt {integer}}{35} -\indexentry{integer@\texttt {integer}}{35} -\indexentry{.Machine\$integer.max@\texttt {.Machine\$integer.max}}{35} -\indexentry{double@\texttt {double}}{35} -\indexentry{integer@\texttt {integer}}{35} -\indexentry{double@\texttt {double}}{35} -\indexentry{integer@\texttt {integer}}{35} -\indexentry{integer@\texttt {integer}}{35} -\indexentry{\^{}@\texttt {\^{}}}{36} -\indexentry{double@\texttt {double}}{36} -\indexentry{*@\texttt {*}}{36} -\indexentry{abs()@\texttt {abs()}}{36} -\indexentry{\%in\%@\texttt {\%in\%}}{38} -\indexentry{is.element()@\texttt {is.element()}}{38} -\indexentry{!@\texttt {!}}{39} -\indexentry{\%in\%@\texttt {\%in\%}}{39} -\indexentry{is.element()@\texttt {is.element()}}{39} -\indexentry{|@\texttt {|}}{39} -\indexentry{\%in\%@\texttt {\%in\%}}{39} -\indexentry{is.element()@\texttt {is.element()}}{39} -\indexentry{\%in\%@\texttt {\%in\%}}{39} -\indexentry{unique()@\texttt {unique()}}{39} -\indexentry{numeric@\texttt {numeric}}{40} -\indexentry{character@\texttt {character}}{40} -\indexentry{numeric@\texttt {numeric}}{41} -\indexentry{\%in\%@\texttt {\%in\%}}{41} -\indexentry{character@\texttt {character}}{41} -\indexentry{print()@\texttt {print()}}{42} -\indexentry{cat()@\texttt {cat()}}{42} -\indexentry{cat()@\texttt {cat()}}{42} -\indexentry{print()@\texttt {print()}}{42} -\indexentry{cat()@\texttt {cat()}}{42} -\indexentry{mode()@\texttt {mode()}}{43} -\indexentry{typeof()@\texttt {typeof()}}{43} -\indexentry{is.character()@\texttt {is.character()}}{43} -\indexentry{is.numeric()@\texttt {is.numeric()}}{43} -\indexentry{is.logical()@\texttt {is.logical()}}{43} -\indexentry{class()@\texttt {class()}}{43} -\indexentry{inherits()@\texttt {inherits()}}{43} -\indexentry{as.character()@\texttt {as.character()}}{44} -\indexentry{as.numeric()@\texttt {as.numeric()}}{44} -\indexentry{as.logical()@\texttt {as.logical()}}{44} -\indexentry{as.character()@\texttt {as.character()}}{44} -\indexentry{as.numeric()@\texttt {as.numeric()}}{44} -\indexentry{as.logical()@\texttt {as.logical()}}{44} -\indexentry{trunc()@\texttt {trunc()}}{45} -\indexentry{as.integer()@\texttt {as.integer()}}{45} -\indexentry{length()@\texttt {length()}}{45} -\indexentry{as.numeric()@\texttt {as.numeric()}}{45} -\indexentry{format()@\texttt {format()}}{45} -\indexentry{sprintf()@\texttt {sprintf()}}{45} -\indexentry{character@\texttt {character}}{45} -\indexentry{format()@\texttt {format()}}{45} -\indexentry{sprintf()@\texttt {sprintf()}}{45} -\indexentry{format()@\texttt {format()}}{45} -\indexentry{print()@\texttt {print()}}{45} -\indexentry{format()@\texttt {format()}}{45} -\indexentry{sprintf()@\texttt {sprintf()}}{46} -\indexentry{format()@\texttt {format()}}{46} -\indexentry{sprintf()@\texttt {sprintf()}}{46} -\indexentry{sprintf()@\texttt {sprintf()}}{46} -\indexentry{NA@\texttt {NA}}{46} -\indexentry{NA@\texttt {NA}}{46} -\indexentry{NA\_real\_@\texttt {NA\_real\_}}{46} -\indexentry{NA\_character\_@\texttt {NA\_character\_}}{46} -\indexentry{NA@\texttt {NA}}{46} -\indexentry{NA@\texttt {NA}}{46} -\indexentry{logical@\texttt {logical}}{46} -\indexentry{NA@\texttt {NA}}{46} -\indexentry{NA@\texttt {NA}}{46} -\indexentry{letters@\texttt {letters}}{47} -\indexentry{LETTERS@\texttt {LETTERS}}{47} -\indexentry{month.name@\texttt {month.name}}{47} -\indexentry{month.abb@\texttt {month.abb}}{48} -\indexentry{<-@\texttt {<-}}{50} -\indexentry{integer@\texttt {integer}}{51} -\indexentry{numeric@\texttt {numeric}}{51} -\indexentry{double@\texttt {double}}{51} -\indexentry{sort()@\texttt {sort()}}{52} -\indexentry{order()@\texttt {order()}}{52} -\indexentry{sort()@\texttt {sort()}}{52} -\indexentry{rle()@\texttt {rle()}}{53} -\indexentry{matrix@\texttt {matrix}}{53} -\indexentry{array@\texttt {array}}{53} -\indexentry{length()@\texttt {length()}}{53} -\indexentry{dim()@\texttt {dim()}}{53} -\indexentry{ncol()@\texttt {ncol()}}{53} -\indexentry{nrow()@\texttt {nrow()}}{53} -\indexentry{dim()@\texttt {dim()}}{53} -\indexentry{is.vector()@\texttt {is.vector()}}{53} -\indexentry{is.matrix()@\texttt {is.matrix()}}{53} -\indexentry{is.array()@\texttt {is.array()}}{53} -\indexentry{matrix()@\texttt {matrix()}}{53} -\indexentry{as.matrix()@\texttt {as.matrix()}}{53} -\indexentry{matrix()@\texttt {matrix()}}{53} -\indexentry{matrix()@\texttt {matrix()}}{54} -\indexentry{matrix@\texttt {matrix}}{56} -\indexentry{array()@\texttt {array()}}{57} -\indexentry{unlist()@\texttt {unlist()}}{58} -\indexentry{as.vector()@\texttt {as.vector()}}{58} -\indexentry{t()@\texttt {t()}}{58} -\indexentry{t()@\texttt {t()}}{58} -\indexentry{\%*\%@\texttt {\%*\%}}{59} -\indexentry{crossprod()@\texttt {crossprod()}}{59} -\indexentry{diag()@\texttt {diag()}}{59} -\indexentry{factor@\texttt {factor}}{59} -\indexentry{factor()@\texttt {factor()}}{59} -\indexentry{ordered()@\texttt {ordered()}}{59} -\indexentry{factor()@\texttt {factor()}}{60} -\indexentry{factor()@\texttt {factor()}}{60} -\indexentry{levels()@\texttt {levels()}}{60} -\indexentry{gl()@\texttt {gl()}}{60} -\indexentry{gl()@\texttt {gl()}}{61} -\indexentry{as.numeric()@\texttt {as.numeric()}}{61} -\indexentry{as.numeric()@\texttt {as.numeric()}}{61} -\indexentry{as.character()@\texttt {as.character()}}{61} -\indexentry{as.numeric()@\texttt {as.numeric()}}{61} -\indexentry{as.numeric()@\texttt {as.numeric()}}{61} -\indexentry{levels()<-@\texttt {levels()<-}}{62} -\indexentry{factor()@\texttt {factor()}}{62} -\indexentry{factor()@\texttt {factor()}}{63} -\indexentry{factor()@\texttt {factor()}}{63} -\indexentry{levels()@\texttt {levels()}}{63} -\indexentry{reorder()@\texttt {reorder()}}{64} -\indexentry{sort()@\texttt {sort()}}{64} -\indexentry{order()@\texttt {order()}}{64} -\indexentry{list@\texttt {list}}{65} -\indexentry{list()@\texttt {list()}}{65} -\indexentry{[[]]@\texttt {[[]]}}{65} -\indexentry{str()@\texttt {str()}}{66} -\indexentry{append()@\texttt {append()}}{66} -\indexentry{str()@\texttt {str()}}{67} -\indexentry{[[ ]]@\texttt {[[ ]]}}{68} -\indexentry{[ ]@\texttt {[ ]}}{68} -\indexentry{print()@\texttt {print()}}{68} -\indexentry{str()@\texttt {str()}}{68} -\indexentry{unlist()@\texttt {unlist()}}{68} -\indexentry{str()@\texttt {str()}}{69} -\indexentry{unname()@\texttt {unname()}}{69} -\indexentry{unlist()@\texttt {unlist()}}{69} -\indexentry{data.frame@\texttt {data.frame}}{69} -\indexentry{data.frame()@\texttt {data.frame()}}{69} -\indexentry{list@\texttt {list}}{70} -\indexentry{[[]]@\texttt {[[]]}}{70} -\indexentry{class()@\texttt {class()}}{70} -\indexentry{data.frame@\texttt {data.frame}}{70} -\indexentry{I()@\texttt {I()}}{72} -\indexentry{I()@\texttt {I()}}{72} -\indexentry{I()@\texttt {I()}}{73} -\indexentry{data.frame()@\texttt {data.frame()}}{73} -\indexentry{\$@\texttt {\$}}{74} -\indexentry{[[]]@\texttt {[[]]}}{75} -\indexentry{[]@\texttt {[]}}{75} -\indexentry{[[]]@\texttt {[[]]}}{76} -\indexentry{\$@\texttt {\$}}{76} -\indexentry{\$@\texttt {\$}}{76} -\indexentry{\$@\texttt {\$}}{77} -\indexentry{\$@\texttt {\$}}{77} -\indexentry{\$@\texttt {\$}}{77} -\indexentry{[[]]@\texttt {[[]]}}{77} -\indexentry{\$@\texttt {\$}}{77} -\indexentry{[[]]@\texttt {[[]]}}{77} -\indexentry{subset()@\texttt {subset()}}{77} -\indexentry{subset()@\texttt {subset()}}{77} -\indexentry{subset()@\texttt {subset()}}{78} -\indexentry{attach()@\texttt {attach()}}{78} -\indexentry{with()@\texttt {with()}}{78} -\indexentry{[ ]@\texttt {[ ]}}{79} -\indexentry{<-@\texttt {<-}}{79} -\indexentry{attach()@\texttt {attach()}}{79} -\indexentry{detach()@\texttt {detach()}}{79} -\indexentry{with()@\texttt {with()}}{79} -\indexentry{within()@\texttt {within()}}{79} -\indexentry{attach()@\texttt {attach()}}{80} -\indexentry{detach()@\texttt {detach()}}{80} -\indexentry{attach()@\texttt {attach()}}{80} -\indexentry{detach()@\texttt {detach()}}{80} -\indexentry{with()@\texttt {with()}}{80} -\indexentry{within()@\texttt {within()}}{80} -\indexentry{with()@\texttt {with()}}{81} -\indexentry{within()@\texttt {within()}}{81} -\indexentry{attach()@\texttt {attach()}}{81} -\indexentry{detach()@\texttt {detach()}}{81} -\indexentry{attach()@\texttt {attach()}}{81} -\indexentry{detach()@\texttt {detach()}}{81} -\indexentry{with()@\texttt {with()}}{81} -\indexentry{within()@\texttt {within()}}{81} -\indexentry{with()@\texttt {with()}}{81} -\indexentry{within()@\texttt {within()}}{81} -\indexentry{attach()@\texttt {attach()}}{81} -\indexentry{detach()@\texttt {detach()}}{81} -\indexentry{[]@\texttt {[]}}{81} -\indexentry{order()@\texttt {order()}}{82} -\indexentry{order()@\texttt {order()}}{82} -\indexentry{order()@\texttt {order()}}{82} -\indexentry{order()@\texttt {order()}}{82} -\indexentry{order()@\texttt {order()}}{82} -\indexentry{matrix@\texttt {matrix}}{82} -\indexentry{array@\texttt {array}}{82} -\indexentry{order()@\texttt {order()}}{82} -\indexentry{order()@\texttt {order()}}{82} -\indexentry{comment()@\texttt {comment()}}{83} -\indexentry{comment()<-@\texttt {comment()<-}}{83} -\indexentry{names()@\texttt {names()}}{83} -\indexentry{dim()@\texttt {dim()}}{83} -\indexentry{levels()@\texttt {levels()}}{83} -\indexentry{names()<-@\texttt {names()<-}}{83} -\indexentry{dim()<-@\texttt {dim()<-}}{83} -\indexentry{levels()<-@\texttt {levels()<-}}{83} -\indexentry{attr()@\texttt {attr()}}{83} -\indexentry{attr()<-@\texttt {attr()<-}}{83} -\indexentry{attributes()@\texttt {attributes()}}{83} -\indexentry{attr()@\texttt {attr()}}{83} -\indexentry{attr()<-@\texttt {attr()<-}}{83} -\indexentry{attributes()@\texttt {attributes()}}{83} -\indexentry{str()@\texttt {str()}}{83} -\indexentry{lm()@\texttt {lm()}}{84} -\indexentry{data()@\texttt {data()}}{85} -\indexentry{data()@\texttt {data()}}{85} -\indexentry{save()@\texttt {save()}}{85} -\indexentry{save()@\texttt {save()}}{86} -\indexentry{load()@\texttt {load()}}{86} -\indexentry{ls()@\texttt {ls()}}{86} -\indexentry{ls()@\texttt {ls()}}{87} -\indexentry{unlink()@\texttt {unlink()}}{87} -\indexentry{readRDS()@\texttt {readRDS()}}{87} -\indexentry{saveRDS()@\texttt {saveRDS()}}{87} -\indexentry{print()@\texttt {print()}}{88} -\indexentry{colnames()@\texttt {colnames()}}{88} -\indexentry{rownames()@\texttt {rownames()}}{88} -\indexentry{names()@\texttt {names()}}{88} -\indexentry{head()@\texttt {head()}}{88} -\indexentry{tail()@\texttt {tail()}}{88} -\indexentry{nrow()@\texttt {nrow()}}{88} -\indexentry{ncol()@\texttt {ncol()}}{88} -\indexentry{length()@\texttt {length()}}{88} -\indexentry{str()@\texttt {str()}}{88} -\indexentry{head()@\texttt {head()}}{89} -\indexentry{tail()@\texttt {tail()}}{89} -\indexentry{sapply@\texttt {sapply}}{89} -\indexentry{matrix@\texttt {matrix}}{89} -\indexentry{list@\texttt {list}}{89} -\indexentry{summary()@\texttt {summary()}}{89} -\indexentry{sapply()@\texttt {sapply()}}{89} -\indexentry{lapply()@\texttt {lapply()}}{89} -\indexentry{vapply()@\texttt {vapply()}}{89} -\indexentry{summary()@\texttt {summary()}}{90} -\indexentry{plot()@\texttt {plot()}}{90} -\indexentry{plot()@\texttt {plot()}}{90} -\indexentry{plot()@\texttt {plot()}}{91} -\indexentry{plot()@\texttt {plot()}}{92} -\indexentry{source()@\texttt {source()}}{97} -\indexentry{print()@\texttt {print()}}{97} -\indexentry{ggplot()@\texttt {ggplot()}}{97} -\indexentry{print()@\texttt {print()}}{97} -\indexentry{if()@\texttt {if()}}{104} -\indexentry{if()\ldots else@\texttt {if()\ldots else}}{104} -\indexentry{logical@\texttt {logical}}{105} -\indexentry{numeric@\texttt {numeric}}{107} -\indexentry{logical@\texttt {logical}}{107} -\indexentry{if ()@\texttt {if ()}}{107} -\indexentry{if () \ldots \ else@\texttt {if () \ldots \ else}}{107} -\indexentry{switch()@\texttt {switch()}}{107} -\indexentry{if ()@\texttt {if ()}}{108} -\indexentry{switch()@\texttt {switch()}}{108} -\indexentry{switch()@\texttt {switch()}}{108} -\indexentry{switch()@\texttt {switch()}}{108} -\indexentry{switch()@\texttt {switch()}}{109} -\indexentry{switch()@\texttt {switch()}}{110} -\indexentry{switch()@\texttt {switch()}}{110} -\indexentry{switch()@\texttt {switch()}}{110} -\indexentry{switch()@\texttt {switch()}}{110} -\indexentry{ifelse()@\texttt {ifelse()}}{110} -\indexentry{ifelse()@\texttt {ifelse()}}{111} -\indexentry{ifelse()@\texttt {ifelse()}}{111} -\indexentry{ifelse()@\texttt {ifelse()}}{112} -\indexentry{for@\texttt {for}}{112} -\indexentry{while@\texttt {while}}{112} -\indexentry{repeat@\texttt {repeat}}{112} -\indexentry{for@\texttt {for}}{113} -\indexentry{for@\texttt {for}}{113} -\indexentry{for@\texttt {for}}{114} -\indexentry{print()@\texttt {print()}}{115} -\indexentry{for@\texttt {for}}{115} -\indexentry{break()@\texttt {break()}}{115} -\indexentry{next()@\texttt {next()}}{115} -\indexentry{while@\texttt {while}}{115} -\indexentry{while@\texttt {while}}{117} -\indexentry{break()@\texttt {break()}}{117} -\indexentry{repeat@\texttt {repeat}}{117} -\indexentry{break()@\texttt {break()}}{117} -\indexentry{break()@\texttt {break()}}{117} -\indexentry{break()@\texttt {break()}}{118} -\indexentry{break()@\texttt {break()}}{118} -\indexentry{for@\texttt {for}}{118} -\indexentry{while@\texttt {while}}{118} -\indexentry{break()@\texttt {break()}}{118} -\indexentry{for@\texttt {for}}{118} -\indexentry{next()@\texttt {next()}}{118} -\indexentry{for@\texttt {for}}{118} -\indexentry{while@\texttt {while}}{118} -\indexentry{repeat@\texttt {repeat}}{118} -\indexentry{system.time()@\texttt {system.time()}}{118} -\indexentry{for@\texttt {for}}{118} -\indexentry{system.time()@\texttt {system.time()}}{119} -\indexentry{apply()@\texttt {apply()}}{121} -\indexentry{lapply()@\texttt {lapply()}}{121} -\indexentry{sapply()@\texttt {sapply()}}{121} -\indexentry{on.exit()@\texttt {on.exit()}}{121} -\indexentry{on.exit()@\texttt {on.exit()}}{121} -\indexentry{lapply()@\texttt {lapply()}}{122} -\indexentry{sapply()@\texttt {sapply()}}{122} -\indexentry{lapply()@\texttt {lapply()}}{122} -\indexentry{vapply()@\texttt {vapply()}}{122} -\indexentry{sapply()@\texttt {sapply()}}{122} -\indexentry{apply()@\texttt {apply()}}{122} -\indexentry{lapply()@\texttt {lapply()}}{122} -\indexentry{apply()@\texttt {apply()}}{122} -\indexentry{lapply()@\texttt {lapply()}}{122} -\indexentry{sapply()@\texttt {sapply()}}{122} -\indexentry{apply()@\texttt {apply()}}{122} -\indexentry{lapply()@\texttt {lapply()}}{122} -\indexentry{sapply()@\texttt {sapply()}}{122} -\indexentry{vapply()@\texttt {vapply()}}{122} -\indexentry{vapply()@\texttt {vapply()}}{124} -\indexentry{vapply()@\texttt {vapply()}}{124} -\indexentry{apply()@\texttt {apply()}}{125} -\indexentry{mean()@\texttt {mean()}}{125} -\indexentry{apply()@\texttt {apply()}}{125} -\indexentry{apply()@\texttt {apply()}}{125} -\indexentry{apply()@\texttt {apply()}}{125} -\indexentry{t()@\texttt {t()}}{126} -\indexentry{apply()@\texttt {apply()}}{126} -\indexentry{sum()@\texttt {sum()}}{128} -\indexentry{prod()@\texttt {prod()}}{128} -\indexentry{max()@\texttt {max()}}{128} -\indexentry{min()@\texttt {min()}}{128} -\indexentry{cumsum()@\texttt {cumsum()}}{128} -\indexentry{cumprod()@\texttt {cumprod()}}{128} -\indexentry{cummax()@\texttt {cummax()}}{128} -\indexentry{cummin()@\texttt {cummin()}}{128} -\indexentry{diff()@\texttt {diff()}}{128} -\indexentry{assign()@\texttt {assign()}}{128} -\indexentry{assign()@\texttt {assign()}}{128} -\indexentry{get()@\texttt {get()}}{129} -\indexentry{mget()@\texttt {mget()}}{129} -\indexentry{assign()@\texttt {assign()}}{129} -\indexentry{get()@\texttt {get()}}{129} -\indexentry{mget()@\texttt {mget()}}{129} -\indexentry{do.call()@\texttt {do.call()}}{130} -\indexentry{anova()@\texttt {anova()}}{130} -\indexentry{do.call()@\texttt {do.call()}}{130} -\indexentry{anova()@\texttt {anova()}}{130} -\indexentry{do.call()@\texttt {do.call()}}{130} -\indexentry{anova()@\texttt {anova()}}{131} -\indexentry{mean()@\texttt {mean()}}{133} -\indexentry{var()@\texttt {var()}}{133} -\indexentry{sd()@\texttt {sd()}}{133} -\indexentry{median()@\texttt {median()}}{133} -\indexentry{mad()@\texttt {mad()}}{133} -\indexentry{mode()@\texttt {mode()}}{133} -\indexentry{max()@\texttt {max()}}{133} -\indexentry{min()@\texttt {min()}}{133} -\indexentry{range()@\texttt {range()}}{133} -\indexentry{quantile()@\texttt {quantile()}}{133} -\indexentry{length()@\texttt {length()}}{133} -\indexentry{summary()@\texttt {summary()}}{134} -\indexentry{summary()@\texttt {summary()}}{134} -\indexentry{pnorm()@\texttt {pnorm()}}{136} -\indexentry{pt()@\texttt {pt()}}{136} -\indexentry{qnorm()@\texttt {qnorm()}}{137} -\indexentry{pnorm()@\texttt {pnorm()}}{137} -\indexentry{rnorm()@\texttt {rnorm()}}{137} -\indexentry{runif()@\texttt {runif()}}{137} -\indexentry{set.seed()@\texttt {set.seed()}}{138} -\indexentry{rnorm()@\texttt {rnorm()}}{138} -\indexentry{setseed()@\texttt {setseed()}}{138} -\indexentry{cars@\texttt {cars}}{139} -\indexentry{cor()@\texttt {cor()}}{139} -\indexentry{rnorm()@\texttt {rnorm()}}{140} -\indexentry{matrix()@\texttt {matrix()}}{140} -\indexentry{cor()@\texttt {cor()}}{140} -\indexentry{cor.test()@\texttt {cor.test()}}{140} -\indexentry{cor.test()@\texttt {cor.test()}}{140} -\indexentry{cor()@\texttt {cor()}}{140} -\indexentry{cor.test()@\texttt {cor.test()}}{140} -\indexentry{print()@\texttt {print()}}{140} -\indexentry{str()@\texttt {str()}}{141} -\indexentry{class()@\texttt {class()}}{141} -\indexentry{attributes()@\texttt {attributes()}}{141} -\indexentry{cor()@\texttt {cor()}}{141} -\indexentry{class()@\texttt {class()}}{141} -\indexentry{attributes()@\texttt {attributes()}}{141} -\indexentry{str()@\texttt {str()}}{141} -\indexentry{cor.test()@\texttt {cor.test()}}{141} -\indexentry{cor()@\texttt {cor()}}{141} -\indexentry{lm()@\texttt {lm()}}{142} -\indexentry{lm()@\texttt {lm()}}{142} -\indexentry{coef()@\texttt {coef()}}{142} -\indexentry{residuals()@\texttt {residuals()}}{142} -\indexentry{fitted()@\texttt {fitted()}}{142} -\indexentry{predict()@\texttt {predict()}}{142} -\indexentry{AIC()@\texttt {AIC()}}{142} -\indexentry{BIC()@\texttt {BIC()}}{142} -\indexentry{lm()@\texttt {lm()}}{142} -\indexentry{cars@\texttt {cars}}{143} -\indexentry{summary()@\texttt {summary()}}{143} -\indexentry{summary()@\texttt {summary()}}{144} -\indexentry{lm()@\texttt {lm()}}{145} -\indexentry{I()@\texttt {I()}}{145} -\indexentry{poly()@\texttt {poly()}}{145} -\indexentry{poly()@\texttt {poly()}}{145} -\indexentry{anova()@\texttt {anova()}}{146} -\indexentry{anova()@\texttt {anova()}}{146} -\indexentry{anova()@\texttt {anova()}}{146} -\indexentry{BIC()@\texttt {BIC()}}{146} -\indexentry{AIC()@\texttt {AIC()}}{146} -\indexentry{vcov()@\texttt {vcov()}}{146} -\indexentry{coef()@\texttt {coef()}}{146} -\indexentry{coefficients()@\texttt {coefficients()}}{146} -\indexentry{fitted()@\texttt {fitted()}}{146} -\indexentry{fitted.values()@\texttt {fitted.values()}}{146} -\indexentry{resid()@\texttt {resid()}}{146} -\indexentry{residuals()@\texttt {residuals()}}{146} -\indexentry{effects()@\texttt {effects()}}{146} -\indexentry{terms()@\texttt {terms()}}{146} -\indexentry{model.frame()@\texttt {model.frame()}}{146} -\indexentry{model.matrix()@\texttt {model.matrix()}}{146} -\indexentry{str()@\texttt {str()}}{147} -\indexentry{anova()@\texttt {anova()}}{147} -\indexentry{anova()@\texttt {anova()}}{147} -\indexentry{summary()@\texttt {summary()}}{147} -\indexentry{str()@\texttt {str()}}{147} -\indexentry{predict()@\texttt {predict()}}{149} -\indexentry{predict()@\texttt {predict()}}{149} -\indexentry{predict()@\texttt {predict()}}{149} -\indexentry{InsectSprays@\texttt {InsectSprays}}{149} -\indexentry{anova()@\texttt {anova()}}{150} -\indexentry{summary()@\texttt {summary()}}{150} -\indexentry{summary()@\texttt {summary()}}{150} -\indexentry{aov()@\texttt {aov()}}{150} -\indexentry{lm()@\texttt {lm()}}{150} -\indexentry{anova()@\texttt {anova()}}{150} -\indexentry{coef()@\texttt {coef()}}{151} -\indexentry{summary()@\texttt {summary()}}{151} -\indexentry{anova()@\texttt {anova()}}{152} -\indexentry{glm()@\texttt {glm()}}{153} -\indexentry{InsectSpray@\texttt {InsectSpray}}{153} -\indexentry{anova()@\texttt {anova()}}{154} -\indexentry{plot()@\texttt {plot()}}{154} -\indexentry{nls()@\texttt {nls()}}{156} -\indexentry{nls@\texttt {nls}}{157} -\indexentry{nlme@\texttt {nlme}}{157} -\indexentry{nls()@\texttt {nls()}}{157} -\indexentry{SSmicmen()@\texttt {SSmicmen()}}{157} -\indexentry{Puromycin@\texttt {Puromycin}}{157} -\indexentry{formula@\texttt {formula}}{159} -\indexentry{call@\texttt {call}}{159} -\indexentry{formula@\texttt {formula}}{160} -\indexentry{formula@\texttt {formula}}{160} -\indexentry{length()@\texttt {length()}}{160} -\indexentry{list@\texttt {list}}{160} -\indexentry{length()@\texttt {length()}}{160} -\indexentry{I()@\texttt {I()}}{161} -\indexentry{log()@\texttt {log()}}{161} -\indexentry{terms()@\texttt {terms()}}{163} -\indexentry{npk@\texttt {npk}}{164} -\indexentry{"formula"@\texttt {"formula"}}{165} -\indexentry{inherits()@\texttt {inherits()}}{165} -\indexentry{as.formula()@\texttt {as.formula()}}{166} -\indexentry{as.formula()@\texttt {as.formula()}}{166} -\indexentry{as.formula()@\texttt {as.formula()}}{166} -\indexentry{update()@\texttt {update()}}{167} -\indexentry{"ts"@\texttt {"ts"}}{169} -\indexentry{ts()@\texttt {ts()}}{169} -\indexentry{as.ts()@\texttt {as.ts()}}{169} -\indexentry{austres@\texttt {austres}}{169} -\indexentry{austres@\texttt {austres}}{169} -\indexentry{nottem@\texttt {nottem}}{169} -\indexentry{decompose()@\texttt {decompose()}}{170} -\indexentry{stl()@\texttt {stl()}}{170} -\indexentry{stl()@\texttt {stl()}}{171} -\indexentry{aov()@\texttt {aov()}}{171} -\indexentry{lm()@\texttt {lm()}}{171} -\indexentry{manova()@\texttt {manova()}}{171} -\indexentry{aov()@\texttt {aov()}}{171} -\indexentry{iris@\texttt {iris}}{171} -\indexentry{prcomp()@\texttt {prcomp()}}{173} -\indexentry{biplot()@\texttt {biplot()}}{173} -\indexentry{prcomp()@\texttt {prcomp()}}{175} -\indexentry{eurodist@\texttt {eurodist}}{175} -\indexentry{dist@\texttt {dist}}{176} -\indexentry{hclust()@\texttt {hclust()}}{176} -\indexentry{eurodist@\texttt {eurodist}}{177} -\indexentry{dist@\texttt {dist}}{177} -\indexentry{cutree()@\texttt {cutree()}}{177} -\indexentry{hclust()@\texttt {hclust()}}{178} -\indexentry{library()@\texttt {library()}}{181} -\indexentry{detach()@\texttt {detach()}}{181} -\indexentry{library()@\texttt {library()}}{181} -\indexentry{install.packages()@\texttt {install.packages()}}{181} -\indexentry{install.packages()@\texttt {install.packages()}}{181} -\indexentry{update.packages()@\texttt {update.packages()}}{181} -\indexentry{install.packages()@\texttt {install.packages()}}{181} -\indexentry{library()@\texttt {library()}}{181} -\indexentry{print()@\texttt {print()}}{183} -\indexentry{function()@\texttt {function()}}{184} -\indexentry{<<-@\texttt {<<-}}{184} -\indexentry{assign()@\texttt {assign()}}{184} -\indexentry{lm()@\texttt {lm()}}{184} -\indexentry{lm@\texttt {lm}}{184} -\indexentry{list@\texttt {list}}{184} -\indexentry{return()@\texttt {return()}}{184} -\indexentry{return()@\texttt {return()}}{184} -\indexentry{return()@\texttt {return()}}{184} -\indexentry{SEM()@\texttt {SEM()}}{186} -\indexentry{var()@\texttt {var()}}{186} -\indexentry{SEM()@\texttt {SEM()}}{186} -\indexentry{sum()@\texttt {sum()}}{186} -\indexentry{plot()@\texttt {plot()}}{190} -\indexentry{plot()@\texttt {plot()}}{190} -\indexentry{plot()@\texttt {plot()}}{190} -\indexentry{methods()@\texttt {methods()}}{190} -\indexentry{methods()@\texttt {methods()}}{190} -\indexentry{sprintf()@\texttt {sprintf()}}{191} -\indexentry{sprintf()@\texttt {sprintf()}}{191} -\indexentry{my\_print()@\texttt {my\_print()}}{192} -\indexentry{exists()@\texttt {exists()}}{193} -\indexentry{subset()@\texttt {subset()}}{196} -\indexentry{tbl@\texttt {tbl}}{198} -\indexentry{data.frame@\texttt {data.frame}}{198} -\indexentry{list@\texttt {list}}{198} -\indexentry{matrix@\texttt {matrix}}{198} -\indexentry{list@\texttt {list}}{198} -\indexentry{tbl@\texttt {tbl}}{198} -\indexentry{print()@\texttt {print()}}{199} -\indexentry{options()@\texttt {options()}}{199} -\indexentry{tibble@\texttt {tibble}}{199} -\indexentry{tibble()@\texttt {tibble()}}{199} -\indexentry{tibble()@\texttt {tibble()}}{199} -\indexentry{as\_tibble()@\texttt {as\_tibble()}}{199} -\indexentry{is\_tibble()@\texttt {is\_tibble()}}{199} -\indexentry{tibble@\texttt {tibble}}{199} -\indexentry{tbl\_df@\texttt {tbl\_df}}{200} -\indexentry{tibble()@\texttt {tibble()}}{200} -\indexentry{data.frame()@\texttt {data.frame()}}{200} -\indexentry{tibble@\texttt {tibble}}{200} -\indexentry{print()@\texttt {print()}}{201} -\indexentry{as.data.frame()@\texttt {as.data.frame()}}{202} -\indexentry{identical()@\texttt {identical()}}{202} -\indexentry{class()@\texttt {class()}}{202} -\indexentry{tibble()@\texttt {tibble()}}{203} -\indexentry{tibble()@\texttt {tibble()}}{203} -\indexentry{tibble()@\texttt {tibble()}}{203} -\indexentry{data.frame()@\texttt {data.frame()}}{203} -\indexentry{|>@\texttt {|>}}{204} -\indexentry{|>@\texttt {|>}}{205} -\indexentry{\%>\%@\texttt {\%>\%}}{205} -\indexentry{\%T>\%@\texttt {\%T>\%}}{205} -\indexentry{\%<>\%@\texttt {\%<>\%}}{205} -\indexentry{\%>\%@\texttt {\%>\%}}{205} -\indexentry{\%.>\%@\texttt {\%.>\%}}{205} -\indexentry{\%>\%@\texttt {\%>\%}}{205} -\indexentry{\%.>\%@\texttt {\%.>\%}}{205} -\indexentry{\%>\%@\texttt {\%>\%}}{205} -\indexentry{|>@\texttt {|>}}{206} -\indexentry{|>@\texttt {|>}}{206} -\indexentry{\%>\%@\texttt {\%>\%}}{206} -\indexentry{|>@\texttt {|>}}{206} -\indexentry{\%>\%@\texttt {\%>\%}}{206} -\indexentry{\%.>\%@\texttt {\%.>\%}}{206} -\indexentry{\%>\%@\texttt {\%>\%}}{206} -\indexentry{assign()@\texttt {assign()}}{206} -\indexentry{\%>\%@\texttt {\%>\%}}{207} -\indexentry{assign()@\texttt {assign()}}{207} -\indexentry{->@\texttt {->}}{207} -\indexentry{\%.>\%@\texttt {\%.>\%}}{207} -\indexentry{|>@\texttt {|>}}{207} -\indexentry{\%>\%@\texttt {\%>\%}}{207} -\indexentry{\%.>\%@\texttt {\%.>\%}}{207} -\indexentry{\%.>\%@\texttt {\%.>\%}}{207} -\indexentry{|>@\texttt {|>}}{207} -\indexentry{\%>\%@\texttt {\%>\%}}{207} -\indexentry{\%.>\%@\texttt {\%.>\%}}{207} -\indexentry{|>@\texttt {|>}}{207} -\indexentry{\%.>\%@\texttt {\%.>\%}}{207} -\indexentry{\%>\%@\texttt {\%>\%}}{207} -\indexentry{|>@\texttt {|>}}{207} -\indexentry{|>@\texttt {|>}}{207} -\indexentry{|>@\texttt {|>}}{207} -\indexentry{\%>\%@\texttt {\%>\%}}{208} -\indexentry{print()@\texttt {print()}}{208} -\indexentry{print()@\texttt {print()}}{208} -\indexentry{plot()@\texttt {plot()}}{208} -\indexentry{iris@\texttt {iris}}{208} -\indexentry{"tb"@\texttt {"tb"}}{209} -\indexentry{pivot\_longer()@\texttt {pivot\_longer()}}{209} -\indexentry{pivot\_longer()@\texttt {pivot\_longer()}}{209} -\indexentry{!!@\texttt {!!}}{209} -\indexentry{spread()@\texttt {spread()}}{210} -\indexentry{gather()@\texttt {gather()}}{210} -\indexentry{spread()@\texttt {spread()}}{210} -\indexentry{pivot\_longer()@\texttt {pivot\_longer()}}{210} -\indexentry{pivot\_wider()@\texttt {pivot\_wider()}}{210} -\indexentry{tibble@\texttt {tibble}}{210} -\indexentry{mutate()@\texttt {mutate()}}{211} -\indexentry{transmute()@\texttt {transmute()}}{211} -\indexentry{mutate()@\texttt {mutate()}}{211} -\indexentry{transmute()@\texttt {transmute()}}{211} -\indexentry{tibble()@\texttt {tibble()}}{211} -\indexentry{mutate()@\texttt {mutate()}}{211} -\indexentry{transmute()@\texttt {transmute()}}{211} -\indexentry{str\_extract()@\texttt {str\_extract()}}{211} -\indexentry{mutate()@\texttt {mutate()}}{211} -\indexentry{\%.>\%@\texttt {\%.>\%}}{212} -\indexentry{arrange()@\texttt {arrange()}}{212} -\indexentry{sort()@\texttt {sort()}}{212} -\indexentry{order()@\texttt {order()}}{212} -\indexentry{filter()@\texttt {filter()}}{212} -\indexentry{subset()@\texttt {subset()}}{212} -\indexentry{slice()@\texttt {slice()}}{212} -\indexentry{select()@\texttt {select()}}{213} -\indexentry{select()@\texttt {select()}}{213} -\indexentry{select()@\texttt {select()}}{213} -\indexentry{starts\_with()@\texttt {starts\_with()}}{213} -\indexentry{ends\_with()@\texttt {ends\_with()}}{213} -\indexentry{contains()@\texttt {contains()}}{213} -\indexentry{matches()@\texttt {matches()}}{213} -\indexentry{rename()@\texttt {rename()}}{213} -\indexentry{names()@\texttt {names()}}{213} -\indexentry{names<-()@\texttt {names<-()}}{213} -\indexentry{aggregate()@\texttt {aggregate()}}{214} -\indexentry{ungroup()@\texttt {ungroup()}}{214} -\indexentry{group\_by()@\texttt {group\_by()}}{214} -\indexentry{summarise()@\texttt {summarise()}}{214} -\indexentry{==@\texttt {==}}{216} -\indexentry{group\_by()@\texttt {group\_by()}}{216} -\indexentry{ungroup()@\texttt {ungroup()}}{216} -\indexentry{[ , ]@\texttt {[ , ]}}{216} -\indexentry{full\_join()@\texttt {full\_join()}}{216} -\indexentry{left\_join()@\texttt {left\_join()}}{216} -\indexentry{right\_join()@\texttt {right\_join()}}{216} -\indexentry{inner\_join()@\texttt {inner\_join()}}{216} -\indexentry{semi\_join()@\texttt {semi\_join()}}{218} -\indexentry{anti\_join()@\texttt {anti\_join()}}{218} -\indexentry{geom\_point()@\texttt {geom\_point()}}{224} -\indexentry{geom\_line()@\texttt {geom\_line()}}{224} -\indexentry{stat\_smooth()@\texttt {stat\_smooth()}}{224} -\indexentry{stat\_summary()@\texttt {stat\_summary()}}{224} -\indexentry{scale\_color\_continuous()@\texttt {scale\_color\_continuous()}}{224} -\indexentry{aes()@\texttt {aes()}}{225} -\indexentry{stat\_identity()@\texttt {stat\_identity()}}{226} -\indexentry{aes()@\texttt {aes()}}{226} -\indexentry{after\_stat()@\texttt {after\_stat()}}{226} -\indexentry{mtcars@\texttt {mtcars}}{226} -\indexentry{geom\_point()@\texttt {geom\_point()}}{227} -\indexentry{geom\_line()@\texttt {geom\_line()}}{228} -\indexentry{geom\_point@\texttt {geom\_point}}{228} -\indexentry{geom\_line@\texttt {geom\_line}}{228} -\indexentry{ggplot()@\texttt {ggplot()}}{233} -\indexentry{ggplot()@\texttt {ggplot()}}{234} -\indexentry{aes()@\texttt {aes()}}{235} -\indexentry{ggplot()@\texttt {ggplot()}}{235} -\indexentry{ggplot()@\texttt {ggplot()}}{235} -\indexentry{|>@\texttt {|>}}{235} -\indexentry{stat()@\texttt {stat()}}{236} -\indexentry{stage()@\texttt {stage()}}{236} -\indexentry{after\_stat()@\texttt {after\_stat()}}{236} -\indexentry{after\_scale()@\texttt {after\_scale()}}{236} -\indexentry{after\_stat()@\texttt {after\_stat()}}{236} -\indexentry{stat()@\texttt {stat()}}{236} -\indexentry{after\_stat()@\texttt {after\_stat()}}{236} -\indexentry{after\_scale()@\texttt {after\_scale()}}{236} -\indexentry{rlm()@\texttt {rlm()}}{236} -\indexentry{after\_stat()@\texttt {after\_stat()}}{237} -\indexentry{stat\_fit\_residuals()@\texttt {stat\_fit\_residuals()}}{237} -\indexentry{geom\_point()@\texttt {geom\_point()}}{237} -\indexentry{stage()@\texttt {stage()}}{237} -\indexentry{geom\_point()@\texttt {geom\_point()}}{237} -\indexentry{stat\_fit\_residuals()@\texttt {stat\_fit\_residuals()}}{237} -\indexentry{stat\_fit\_residuals()@\texttt {stat\_fit\_residuals()}}{237} -\indexentry{geom\_point()@\texttt {geom\_point()}}{237} -\indexentry{geom\_point()@\texttt {geom\_point()}}{238} -\indexentry{geom\_line()@\texttt {geom\_line()}}{238} -\indexentry{geom\_point()@\texttt {geom\_point()}}{238} -\indexentry{geom\_point()@\texttt {geom\_point()}}{242} -\indexentry{geom\_pointrange()@\texttt {geom\_pointrange()}}{243} -\indexentry{geom\_range()@\texttt {geom\_range()}}{243} -\indexentry{geom\_errorbar@\texttt {geom\_errorbar}}{243} -\indexentry{geom\_rug()@\texttt {geom\_rug()}}{243} -\indexentry{geom\_line()@\texttt {geom\_line()}}{244} -\indexentry{Orange@\texttt {Orange}}{244} -\indexentry{geom\_segment()@\texttt {geom\_segment()}}{244} -\indexentry{geom\_curve()@\texttt {geom\_curve()}}{244} -\indexentry{geom\_path()@\texttt {geom\_path()}}{244} -\indexentry{geom\_line()@\texttt {geom\_line()}}{244} -\indexentry{geom\_spoke()@\texttt {geom\_spoke()}}{244} -\indexentry{geom\_segment()@\texttt {geom\_segment()}}{244} -\indexentry{geom\_step()@\texttt {geom\_step()}}{244} -\indexentry{geom\_line()@\texttt {geom\_line()}}{245} -\indexentry{geom\_area()@\texttt {geom\_area()}}{245} -\indexentry{geom\_ribbon@\texttt {geom\_ribbon}}{245} -\indexentry{geom\_polygom@\texttt {geom\_polygom}}{245} -\indexentry{geom\_path()@\texttt {geom\_path()}}{245} -\indexentry{geom\_point@\texttt {geom\_point}}{245} -\indexentry{geom\_line@\texttt {geom\_line}}{245} -\indexentry{geom\_ribbon@\texttt {geom\_ribbon}}{245} -\indexentry{geom\_area@\texttt {geom\_area}}{245} -\indexentry{geom\_hline@\texttt {geom\_hline}}{245} -\indexentry{geom\_vline@\texttt {geom\_vline}}{245} -\indexentry{geom\_abline@\texttt {geom\_abline}}{245} -\indexentry{geom\_hline@\texttt {geom\_hline}}{245} -\indexentry{geom\_vline@\texttt {geom\_vline}}{245} -\indexentry{geom\_col()@\texttt {geom\_col()}}{246} -\indexentry{geom\_bar()@\texttt {geom\_bar()}}{246} -\indexentry{stat\_count()@\texttt {stat\_count()}}{246} -\indexentry{geom\_col()@\texttt {geom\_col()}}{246} -\indexentry{geom\_bar()@\texttt {geom\_bar()}}{246} -\indexentry{geom\_col()@\texttt {geom\_col()}}{248} -\indexentry{geom\_tile()@\texttt {geom\_tile()}}{248} -\indexentry{geom\_tile()@\texttt {geom\_tile()}}{248} -\indexentry{geom\_tile()@\texttt {geom\_tile()}}{249} -\indexentry{geom\_rect()@\texttt {geom\_rect()}}{249} -\indexentry{geom\_sf()@\texttt {geom\_sf()}}{250} -\indexentry{geom\_sf\_text()@\texttt {geom\_sf\_text()}}{250} -\indexentry{geom\_sf\_label()@\texttt {geom\_sf\_label()}}{250} -\indexentry{stat\_sf()@\texttt {stat\_sf()}}{250} -\indexentry{geom\_text()@\texttt {geom\_text()}}{250} -\indexentry{geom\_label()@\texttt {geom\_label()}}{250} -\indexentry{geom\_text()@\texttt {geom\_text()}}{250} -\indexentry{geom\_label()@\texttt {geom\_label()}}{250} -\indexentry{geom\_label()@\texttt {geom\_label()}}{251} -\indexentry{geom\_label()@\texttt {geom\_label()}}{251} -\indexentry{geom\_text@\texttt {geom\_text}}{252} -\indexentry{geom\_label@\texttt {geom\_label}}{252} -\indexentry{geom\_point@\texttt {geom\_point}}{252} -\indexentry{geom\_label()@\texttt {geom\_label()}}{252} -\indexentry{geom\_text()@\texttt {geom\_text()}}{252} -\indexentry{paste()@\texttt {paste()}}{252} -\indexentry{paste()@\texttt {paste()}}{252} -\indexentry{geom\_text()@\texttt {geom\_text()}}{253} -\indexentry{aes()@\texttt {aes()}}{253} -\indexentry{geom\_label()@\texttt {geom\_label()}}{253} -\indexentry{geom\_text()@\texttt {geom\_text()}}{253} -\indexentry{geom\_text()@\texttt {geom\_text()}}{253} -\indexentry{geom\_text()@\texttt {geom\_text()}}{254} -\indexentry{geom\_text()@\texttt {geom\_text()}}{254} -\indexentry{geom\_label()@\texttt {geom\_label()}}{254} -\indexentry{geom\_text\_repel()@\texttt {geom\_text\_repel()}}{254} -\indexentry{geom\_label\_repel()@\texttt {geom\_label\_repel()}}{254} -\indexentry{geom\_table()@\texttt {geom\_table()}}{255} -\indexentry{geom\_plot()@\texttt {geom\_plot()}}{255} -\indexentry{geom\_grob()@\texttt {geom\_grob()}}{255} -\indexentry{geom\_table()@\texttt {geom\_table()}}{255} -\indexentry{geom\_plot()@\texttt {geom\_plot()}}{255} -\indexentry{geom\_grob()@\texttt {geom\_grob()}}{255} -\indexentry{geom\_table@\texttt {geom\_table}}{255} -\indexentry{geom\_text@\texttt {geom\_text}}{255} -\indexentry{geom\_table()@\texttt {geom\_table()}}{256} -\indexentry{geom\_table()@\texttt {geom\_table()}}{256} -\indexentry{geom\_table()@\texttt {geom\_table()}}{256} -\indexentry{geom\_plot()@\texttt {geom\_plot()}}{256} -\indexentry{annotate()@\texttt {annotate()}}{257} -\indexentry{geom\_grob()@\texttt {geom\_grob()}}{258} -\indexentry{annotation\_custom()@\texttt {annotation\_custom()}}{258} -\indexentry{geom\_text\_npc()@\texttt {geom\_text\_npc()}}{259} -\indexentry{geom\_label\_npc()@\texttt {geom\_label\_npc()}}{259} -\indexentry{geom\_table\_npc()@\texttt {geom\_table\_npc()}}{259} -\indexentry{geom\_plot\_npc()@\texttt {geom\_plot\_npc()}}{259} -\indexentry{geom\_grob\_npc()@\texttt {geom\_grob\_npc()}}{259} -\indexentry{stat\_function()@\texttt {stat\_function()}}{260} -\indexentry{xlim()@\texttt {xlim()}}{261} -\indexentry{ylim()@\texttt {ylim()}}{261} -\indexentry{stat\_summary()@\texttt {stat\_summary()}}{261} -\indexentry{stat\_summary()@\texttt {stat\_summary()}}{261} -\indexentry{geom\_pointrange()@\texttt {geom\_pointrange()}}{261} -\indexentry{stat\_summary()@\texttt {stat\_summary()}}{262} -\indexentry{stat\_summary()@\texttt {stat\_summary()}}{263} -\indexentry{geom\_pointrange()@\texttt {geom\_pointrange()}}{263} -\indexentry{geom\_errorbar()@\texttt {geom\_errorbar()}}{263} -\indexentry{geom\_linerange()@\texttt {geom\_linerange()}}{263} -\indexentry{stat\_smooth()@\texttt {stat\_smooth()}}{264} -\indexentry{geom\_smooth()@\texttt {geom\_smooth()}}{264} -\indexentry{stat\_smooth()@\texttt {stat\_smooth()}}{264} -\indexentry{lm()@\texttt {lm()}}{264} -\indexentry{stat\_smooth@\texttt {stat\_smooth}}{265} -\indexentry{Puromycin@\texttt {Puromycin}}{265} -\indexentry{SSmicmen()@\texttt {SSmicmen()}}{265} -\indexentry{stat\_poly\_line()@\texttt {stat\_poly\_line()}}{266} -\indexentry{stat\_smooth()@\texttt {stat\_smooth()}}{266} -\indexentry{stat\_bin()@\texttt {stat\_bin()}}{267} -\indexentry{geom\_histogram()@\texttt {geom\_histogram()}}{267} -\indexentry{stat\_count()@\texttt {stat\_count()}}{267} -\indexentry{geom\_bar()@\texttt {geom\_bar()}}{267} -\indexentry{stat\_bin()@\texttt {stat\_bin()}}{268} -\indexentry{geom\_histogram()@\texttt {geom\_histogram()}}{269} -\indexentry{stat\_bin()@\texttt {stat\_bin()}}{269} -\indexentry{stat\_count()@\texttt {stat\_count()}}{269} -\indexentry{stat\_bin2d@\texttt {stat\_bin2d}}{269} -\indexentry{geom\_bin2d()@\texttt {geom\_bin2d()}}{269} -\indexentry{stat\_bin()@\texttt {stat\_bin()}}{269} -\indexentry{coord\_fixed()@\texttt {coord\_fixed()}}{269} -\indexentry{coord\_cartesian()@\texttt {coord\_cartesian()}}{269} -\indexentry{stat\_bin\_hex()@\texttt {stat\_bin\_hex()}}{269} -\indexentry{geom\_hex()@\texttt {geom\_hex()}}{269} -\indexentry{stat\_bin2d()@\texttt {stat\_bin2d()}}{269} -\indexentry{geom\_density()@\texttt {geom\_density()}}{270} -\indexentry{stat\_density\_2d()@\texttt {stat\_density\_2d()}}{270} -\indexentry{geom\_density\_2d()@\texttt {geom\_density\_2d()}}{271} -\indexentry{stat\_boxplot()@\texttt {stat\_boxplot()}}{271} -\indexentry{geom\_boxplot()@\texttt {geom\_boxplot()}}{271} -\indexentry{geom\_violin()@\texttt {geom\_violin()}}{272} -\indexentry{geom\_point()@\texttt {geom\_point()}}{274} -\indexentry{geom\_line()@\texttt {geom\_line()}}{274} -\indexentry{coord\_flip()@\texttt {coord\_flip()}}{274} -\indexentry{stat\_smooth()@\texttt {stat\_smooth()}}{274} -\indexentry{geom\_line()@\texttt {geom\_line()}}{274} -\indexentry{geom\_point()@\texttt {geom\_point()}}{274} -\indexentry{stat\_boxplot()@\texttt {stat\_boxplot()}}{275} -\indexentry{stat\_boxplot()@\texttt {stat\_boxplot()}}{275} -\indexentry{stat\_summary@\texttt {stat\_summary}}{275} -\indexentry{stat\_histogram()@\texttt {stat\_histogram()}}{275} -\indexentry{stat\_density()@\texttt {stat\_density()}}{275} -\indexentry{geom\_smooth()@\texttt {geom\_smooth()}}{277} -\indexentry{coord\_flip()@\texttt {coord\_flip()}}{278} -\indexentry{stat\_poly\_line()@\texttt {stat\_poly\_line()}}{278} -\indexentry{geom\_point()@\texttt {geom\_point()}}{279} -\indexentry{stat\_density2d()@\texttt {stat\_density2d()}}{279} -\indexentry{stat\_summary2d()@\texttt {stat\_summary2d()}}{279} -\indexentry{stat\_summary2d()@\texttt {stat\_summary2d()}}{279} -\indexentry{stat\_density2d()@\texttt {stat\_density2d()}}{279} -\indexentry{stat\_summary()@\texttt {stat\_summary()}}{279} -\indexentry{stat\_centroid()@\texttt {stat\_centroid()}}{279} -\indexentry{stat\_summary\_xy()@\texttt {stat\_summary\_xy()}}{279} -\indexentry{stat\_summary()@\texttt {stat\_summary()}}{280} -\indexentry{stat\_summary()@\texttt {stat\_summary()}}{280} -\indexentry{facet\_grid()@\texttt {facet\_grid()}}{281} -\indexentry{facet\_wrap()@\texttt {facet\_wrap()}}{281} -\indexentry{geom\_point()@\texttt {geom\_point()}}{281} -\indexentry{label\_bquote()@\texttt {label\_bquote()}}{283} -\indexentry{label\_bquote()@\texttt {label\_bquote()}}{283} -\indexentry{facet\_wrap()@\texttt {facet\_wrap()}}{283} -\indexentry{scale\_color\_identity()@\texttt {scale\_color\_identity()}}{284} -\indexentry{scale\_color\_discrete()@\texttt {scale\_color\_discrete()}}{284} -\indexentry{ggtitle()@\texttt {ggtitle()}}{285} -\indexentry{xlab()@\texttt {xlab()}}{285} -\indexentry{ylab()@\texttt {ylab()}}{285} -\indexentry{labs()@\texttt {labs()}}{285} -\indexentry{labs()@\texttt {labs()}}{285} -\indexentry{ggtitle()@\texttt {ggtitle()}}{285} -\indexentry{ylim()@\texttt {ylim()}}{287} -\indexentry{xlim()@\texttt {xlim()}}{287} -\indexentry{ylim()@\texttt {ylim()}}{287} -\indexentry{xlim()@\texttt {xlim()}}{287} -\indexentry{expand\_limits()@\texttt {expand\_limits()}}{287} -\indexentry{expand\_limits()@\texttt {expand\_limits()}}{288} -\indexentry{xlim()@\texttt {xlim()}}{288} -\indexentry{ylim()@\texttt {ylim()}}{288} -\indexentry{pretty\_breaks()@\texttt {pretty\_breaks()}}{289} -\indexentry{label\_date()@\texttt {label\_date()}}{290} -\indexentry{label\_date\_short()@\texttt {label\_date\_short()}}{290} -\indexentry{label\_time()@\texttt {label\_time()}}{290} -\indexentry{scale\_x\_continuous()@\texttt {scale\_x\_continuous()}}{290} -\indexentry{scale\_y\_continuous()@\texttt {scale\_y\_continuous()}}{290} -\indexentry{scale\_x\_log10()@\texttt {scale\_x\_log10()}}{291} -\indexentry{scale\_y\_log10()@\texttt {scale\_y\_log10()}}{291} -\indexentry{scale\_y\_log()@\texttt {scale\_y\_log()}}{291} -\indexentry{scale\_x\_reverse()@\texttt {scale\_x\_reverse()}}{291} -\indexentry{scale\_y\_log10()@\texttt {scale\_y\_log10()}}{291} -\indexentry{strptime()@\texttt {strptime()}}{294} -\indexentry{scale\_x\_discrete()@\texttt {scale\_x\_discrete()}}{294} -\indexentry{toupper()@\texttt {toupper()}}{295} -\indexentry{tolower()@\texttt {tolower()}}{295} -\indexentry{geom\_point()@\texttt {geom\_point()}}{295} -\indexentry{geom\_line()@\texttt {geom\_line()}}{295} -\indexentry{geom\_hline()@\texttt {geom\_hline()}}{295} -\indexentry{geom\_vline()@\texttt {geom\_vline()}}{295} -\indexentry{geom\_text()@\texttt {geom\_text()}}{295} -\indexentry{geom\_label()@\texttt {geom\_label()}}{295} -\indexentry{geom\_bar()@\texttt {geom\_bar()}}{295} -\indexentry{geom\_col()@\texttt {geom\_col()}}{295} -\indexentry{geom\_area()@\texttt {geom\_area()}}{295} -\indexentry{rgb()@\texttt {rgb()}}{297} -\indexentry{hcl()@\texttt {hcl()}}{297} -\indexentry{scale\_color\_continuous()@\texttt {scale\_color\_continuous()}}{297} -\indexentry{scale\_color\_gradient()@\texttt {scale\_color\_gradient()}}{297} -\indexentry{scale\_color\_gradient2()@\texttt {scale\_color\_gradient2()}}{297} -\indexentry{scale\_color\_gradientn()@\texttt {scale\_color\_gradientn()}}{297} -\indexentry{scale\_color\_date()@\texttt {scale\_color\_date()}}{297} -\indexentry{scale\_color\_datetime()@\texttt {scale\_color\_datetime()}}{297} -\indexentry{scale\_color\_viridis\_c()@\texttt {scale\_color\_viridis\_c()}}{297} -\indexentry{scale\_color\_distiller()@\texttt {scale\_color\_distiller()}}{297} -\indexentry{scale\_color\_discrete()@\texttt {scale\_color\_discrete()}}{297} -\indexentry{scale\_color\_hue()@\texttt {scale\_color\_hue()}}{297} -\indexentry{scale\_color\_gray()@\texttt {scale\_color\_gray()}}{297} -\indexentry{scale\_color\_viridis\_d()@\texttt {scale\_color\_viridis\_d()}}{298} -\indexentry{scale\_color\_brewer()@\texttt {scale\_color\_brewer()}}{298} -\indexentry{scale\_color\_gradient()@\texttt {scale\_color\_gradient()}}{298} -\indexentry{scale\_color\_binned()@\texttt {scale\_color\_binned()}}{298} -\indexentry{scale\_color\_identity()@\texttt {scale\_color\_identity()}}{299} -\indexentry{scale\_fill\_identity()@\texttt {scale\_fill\_identity()}}{299} -\indexentry{annotate()@\texttt {annotate()}}{300} -\indexentry{annotate()@\texttt {annotate()}}{300} -\indexentry{annotate()@\texttt {annotate()}}{300} -\indexentry{annotate()@\texttt {annotate()}}{300} -\indexentry{annotation\_custom()@\texttt {annotation\_custom()}}{300} -\indexentry{ggplotGrob()@\texttt {ggplotGrob()}}{300} -\indexentry{annotate()@\texttt {annotate()}}{302} -\indexentry{geom\_vline()@\texttt {geom\_vline()}}{302} -\indexentry{geom\_hline()@\texttt {geom\_hline()}}{302} -\indexentry{coord\_polar()@\texttt {coord\_polar()}}{302} -\indexentry{coord\_polar()@\texttt {coord\_polar()}}{302} -\indexentry{stat\_bin()@\texttt {stat\_bin()}}{303} -\indexentry{stat\_density()@\texttt {stat\_density()}}{303} -\indexentry{stat\_bin()@\texttt {stat\_bin()}}{303} -\indexentry{geom\_polygon()@\texttt {geom\_polygon()}}{303} -\indexentry{geom\_bar()@\texttt {geom\_bar()}}{303} -\indexentry{facet\_wrap()@\texttt {facet\_wrap()}}{304} -\indexentry{geom\_bar()@\texttt {geom\_bar()}}{304} -\indexentry{theme\_gray()@\texttt {theme\_gray()}}{305} -\indexentry{theme\_bw()@\texttt {theme\_bw()}}{306} -\indexentry{theme\_gray()@\texttt {theme\_gray()}}{306} -\indexentry{theme\_bw()@\texttt {theme\_bw()}}{306} -\indexentry{theme\_classic()@\texttt {theme\_classic()}}{306} -\indexentry{theme\_minimal()@\texttt {theme\_minimal()}}{306} -\indexentry{theme\_linedraw()@\texttt {theme\_linedraw()}}{306} -\indexentry{theme\_light()@\texttt {theme\_light()}}{306} -\indexentry{theme\_dark()@\texttt {theme\_dark()}}{306} -\indexentry{theme\_void()@\texttt {theme\_void()}}{306} -\indexentry{theme\_gray()@\texttt {theme\_gray()}}{306} -\indexentry{theme\_set()@\texttt {theme\_set()}}{307} -\indexentry{theme\_set()@\texttt {theme\_set()}}{307} -\indexentry{theme\_bw()@\texttt {theme\_bw()}}{307} -\indexentry{theme\_classic()@\texttt {theme\_classic()}}{307} -\indexentry{theme()@\texttt {theme()}}{308} -\indexentry{rel()@\texttt {rel()}}{308} -\indexentry{theme\_gray()@\texttt {theme\_gray()}}{310} -\indexentry{theme()@\texttt {theme()}}{310} -\indexentry{+@\texttt {+}}{311} -\indexentry{|@\texttt {|}}{311} -\indexentry{/@\texttt {/}}{311} -\indexentry{+@\texttt {+}}{311} -\indexentry{|@\texttt {|}}{311} -\indexentry{/@\texttt {/}}{311} -\indexentry{expression()@\texttt {expression()}}{313} -\indexentry{geom\_text@\texttt {geom\_text}}{313} -\indexentry{geom\_label@\texttt {geom\_label}}{313} -\indexentry{labs()@\texttt {labs()}}{313} -\indexentry{geom\_text()@\texttt {geom\_text()}}{313} -\indexentry{paste()@\texttt {paste()}}{313} -\indexentry{expression()@\texttt {expression()}}{313} -\indexentry{parse()@\texttt {parse()}}{314} -\indexentry{expression()@\texttt {expression()}}{314} -\indexentry{parse()@\texttt {parse()}}{314} -\indexentry{parse()@\texttt {parse()}}{314} -\indexentry{expression()@\texttt {expression()}}{314} -\indexentry{parse()@\texttt {parse()}}{314} -\indexentry{expression()@\texttt {expression()}}{314} -\indexentry{parse()@\texttt {parse()}}{314} -\indexentry{plain()@\texttt {plain()}}{315} -\indexentry{italic()@\texttt {italic()}}{315} -\indexentry{bold()@\texttt {bold()}}{315} -\indexentry{bolditalic()@\texttt {bolditalic()}}{315} -\indexentry{expression()@\texttt {expression()}}{315} -\indexentry{parse()@\texttt {parse()}}{315} -\indexentry{expression()@\texttt {expression()}}{315} -\indexentry{ggplot()@\texttt {ggplot()}}{315} -\indexentry{paste()@\texttt {paste()}}{316} -\indexentry{format()@\texttt {format()}}{316} -\indexentry{sprintf()@\texttt {sprintf()}}{316} -\indexentry{strftime()@\texttt {strftime()}}{316} -\indexentry{sprintf()@\texttt {sprintf()}}{316} -\indexentry{format()@\texttt {format()}}{316} -\indexentry{sprintf()@\texttt {sprintf()}}{316} -\indexentry{strftime()@\texttt {strftime()}}{316} -\indexentry{bquote()@\texttt {bquote()}}{316} -\indexentry{bquote()@\texttt {bquote()}}{316} -\indexentry{substitute()@\texttt {substitute()}}{316} -\indexentry{shell()@\texttt {shell()}}{326} -\indexentry{system()@\texttt {system()}}{326} -\indexentry{basename()@\texttt {basename()}}{326} -\indexentry{dirname()@\texttt {dirname()}}{326} -\indexentry{getwd()@\texttt {getwd()}}{326} -\indexentry{setwd()@\texttt {setwd()}}{326} -\indexentry{setwd()@\texttt {setwd()}}{326} -\indexentry{list.files()@\texttt {list.files()}}{327} -\indexentry{dir()@\texttt {dir()}}{327} -\indexentry{list.dirs()@\texttt {list.dirs()}}{327} -\indexentry{list.dirs()@\texttt {list.dirs()}}{327} -\indexentry{dir()@\texttt {dir()}}{327} -\indexentry{file.path()@\texttt {file.path()}}{328} -\indexentry{readLines()@\texttt {readLines()}}{328} -\indexentry{tools:::showNonASCIIfile()@\texttt {tools:::showNonASCIIfile()}}{330} -\indexentry{read.csv()@\texttt {read.csv()}}{331} -\indexentry{write.csv()@\texttt {write.csv()}}{331} -\indexentry{read.csv2()@\texttt {read.csv2()}}{331} -\indexentry{read.csv()@\texttt {read.csv()}}{331} -\indexentry{read.csv2()@\texttt {read.csv2()}}{332} -\indexentry{write.csv2@\texttt {write.csv2}}{332} -\indexentry{read.table()@\texttt {read.table()}}{332} -\indexentry{read.csv()@\texttt {read.csv()}}{332} -\indexentry{read.table()@\texttt {read.table()}}{332} -\indexentry{read.fwf()@\texttt {read.fwf()}}{333} -\indexentry{read.fortran()@\texttt {read.fortran()}}{333} -\indexentry{read.fwf()@\texttt {read.fwf()}}{333} -\indexentry{read.table()@\texttt {read.table()}}{334} -\indexentry{read.csv()@\texttt {read.csv()}}{334} -\indexentry{read.table()@\texttt {read.table()}}{334} -\indexentry{read.csv()@\texttt {read.csv()}}{334} -\indexentry{read.table()@\texttt {read.table()}}{334} -\indexentry{read.table()@\texttt {read.table()}}{334} -\indexentry{read.csv2()@\texttt {read.csv2()}}{334} -\indexentry{write.csv()@\texttt {write.csv()}}{334} -\indexentry{write.csv2()@\texttt {write.csv2()}}{335} -\indexentry{write.table()@\texttt {write.table()}}{335} -\indexentry{read.csv()@\texttt {read.csv()}}{335} -\indexentry{cat()@\texttt {cat()}}{335} -\indexentry{read\_csv()@\texttt {read\_csv()}}{336} -\indexentry{read.csv()@\texttt {read.csv()}}{336} -\indexentry{read.table()@\texttt {read.table()}}{336} -\indexentry{tibble@\texttt {tibble}}{336} -\indexentry{data.frame@\texttt {data.frame}}{336} -\indexentry{read\_table2()@\texttt {read\_table2()}}{336} -\indexentry{read\_table2()@\texttt {read\_table2()}}{336} -\indexentry{read\_table2()@\texttt {read\_table2()}}{337} -\indexentry{read.table()@\texttt {read.table()}}{337} -\indexentry{read\_table()@\texttt {read\_table()}}{337} -\indexentry{read\_table2()@\texttt {read\_table2()}}{337} -\indexentry{read\_table()@\texttt {read\_table()}}{337} -\indexentry{read\_delim()@\texttt {read\_delim()}}{337} -\indexentry{read\_table()@\texttt {read\_table()}}{337} -\indexentry{read\_tsv()@\texttt {read\_tsv()}}{338} -\indexentry{read\_fwf()@\texttt {read\_fwf()}}{338} -\indexentry{read.fortran()@\texttt {read.fortran()}}{338} -\indexentry{write\_csv()@\texttt {write\_csv()}}{339} -\indexentry{write\_csv2()@\texttt {write\_csv2()}}{339} -\indexentry{write\_tsv()@\texttt {write\_tsv()}}{339} -\indexentry{write\_delim()@\texttt {write\_delim()}}{339} -\indexentry{write\_excel\_csv()@\texttt {write\_excel\_csv()}}{339} -\indexentry{write\_excel\_csv()@\texttt {write\_excel\_csv()}}{340} -\indexentry{write\_csv()@\texttt {write\_csv()}}{340} -\indexentry{read\_lines()@\texttt {read\_lines()}}{340} -\indexentry{write\_lines()@\texttt {write\_lines()}}{340} -\indexentry{read\_file()@\texttt {read\_file()}}{340} -\indexentry{write\_file()@\texttt {write\_file()}}{340} -\indexentry{read\_file()@\texttt {read\_file()}}{340} -\indexentry{write\_file()@\texttt {write\_file()}}{340} -\indexentry{write\_file()@\texttt {write\_file()}}{340} -\indexentry{read\_csv()@\texttt {read\_csv()}}{340} -\indexentry{read\_html()@\texttt {read\_html()}}{341} -\indexentry{xml\_find\_all()@\texttt {xml\_find\_all()}}{343} -\indexentry{xml\_text()@\texttt {xml\_text()}}{343} -\indexentry{excel\_sheets()@\texttt {excel\_sheets()}}{346} -\indexentry{read\_excel()@\texttt {read\_excel()}}{346} -\indexentry{read.xlsx()@\texttt {read.xlsx()}}{347} -\indexentry{write.xlsx()@\texttt {write.xlsx()}}{347} -\indexentry{read\_ods()@\texttt {read\_ods()}}{348} -\indexentry{write\_ods()@\texttt {write\_ods()}}{349} -\indexentry{read.spss()@\texttt {read.spss()}}{349} -\indexentry{read.systat()@\texttt {read.systat()}}{350} -\indexentry{tibble@\texttt {tibble}}{350} -\indexentry{read\_sav()@\texttt {read\_sav()}}{350} -\indexentry{names()@\texttt {names()}}{351} -\indexentry{str()@\texttt {str()}}{351} -\indexentry{class()@\texttt {class()}}{351} -\indexentry{attributes()@\texttt {attributes()}}{351} -\indexentry{mode()@\texttt {mode()}}{351} -\indexentry{dim()@\texttt {dim()}}{351} -\indexentry{dimnames()@\texttt {dimnames()}}{351} -\indexentry{nrow()@\texttt {nrow()}}{351} -\indexentry{ncol()@\texttt {ncol()}}{351} -\indexentry{print()@\texttt {print()}}{352} -\indexentry{nc\_open()@\texttt {nc\_open()}}{352} -\indexentry{str()@\texttt {str()}}{352} -\indexentry{ncvar\_get()@\texttt {ncvar\_get()}}{352} -\indexentry{tibble@\texttt {tibble}}{353} -\indexentry{download.file()@\texttt {download.file()}}{356} -\indexentry{fromJSON()@\texttt {fromJSON()}}{357} +\indexentry{source()@\texttt {source()}}{3} +\indexentry{print()@\texttt {print()}}{3} +\indexentry{ggplot()@\texttt {ggplot()}}{3} +\indexentry{print()@\texttt {print()}}{3} +\indexentry{if()@\texttt {if()}}{10} +\indexentry{if()\ldots else@\texttt {if()\ldots else}}{10} +\indexentry{logical@\texttt {logical}}{11} +\indexentry{numeric@\texttt {numeric}}{13} +\indexentry{logical@\texttt {logical}}{13} +\indexentry{if ()@\texttt {if ()}}{13} +\indexentry{if () \ldots \ else@\texttt {if () \ldots \ else}}{13} +\indexentry{switch()@\texttt {switch()}}{13} +\indexentry{if ()@\texttt {if ()}}{13} +\indexentry{switch()@\texttt {switch()}}{13} +\indexentry{switch()@\texttt {switch()}}{13} +\indexentry{switch()@\texttt {switch()}}{13} +\indexentry{switch()@\texttt {switch()}}{15} +\indexentry{switch()@\texttt {switch()}}{15} +\indexentry{switch()@\texttt {switch()}}{16} +\indexentry{switch()@\texttt {switch()}}{16} +\indexentry{switch()@\texttt {switch()}}{16} +\indexentry{ifelse()@\texttt {ifelse()}}{16} +\indexentry{ifelse()@\texttt {ifelse()}}{16} +\indexentry{ifelse()@\texttt {ifelse()}}{17} +\indexentry{ifelse()@\texttt {ifelse()}}{17} +\indexentry{for@\texttt {for}}{18} +\indexentry{while@\texttt {while}}{18} +\indexentry{repeat@\texttt {repeat}}{18} +\indexentry{for@\texttt {for}}{18} +\indexentry{for@\texttt {for}}{19} +\indexentry{for@\texttt {for}}{19} +\indexentry{print()@\texttt {print()}}{20} +\indexentry{for@\texttt {for}}{20} +\indexentry{break()@\texttt {break()}}{21} +\indexentry{next()@\texttt {next()}}{21} +\indexentry{while@\texttt {while}}{21} +\indexentry{while@\texttt {while}}{22} +\indexentry{break()@\texttt {break()}}{22} +\indexentry{repeat@\texttt {repeat}}{22} +\indexentry{break()@\texttt {break()}}{22} +\indexentry{break()@\texttt {break()}}{22} +\indexentry{break()@\texttt {break()}}{23} +\indexentry{break()@\texttt {break()}}{23} +\indexentry{for@\texttt {for}}{23} +\indexentry{while@\texttt {while}}{23} +\indexentry{break()@\texttt {break()}}{23} +\indexentry{for@\texttt {for}}{23} +\indexentry{next()@\texttt {next()}}{23} +\indexentry{for@\texttt {for}}{23} +\indexentry{while@\texttt {while}}{23} +\indexentry{repeat@\texttt {repeat}}{23} +\indexentry{system.time()@\texttt {system.time()}}{23} +\indexentry{for@\texttt {for}}{23} +\indexentry{system.time()@\texttt {system.time()}}{24} +\indexentry{apply()@\texttt {apply()}}{25} +\indexentry{lapply()@\texttt {lapply()}}{25} +\indexentry{sapply()@\texttt {sapply()}}{25} +\indexentry{on.exit()@\texttt {on.exit()}}{26} +\indexentry{on.exit()@\texttt {on.exit()}}{26} +\indexentry{lapply()@\texttt {lapply()}}{27} +\indexentry{sapply()@\texttt {sapply()}}{27} +\indexentry{lapply()@\texttt {lapply()}}{27} +\indexentry{vapply()@\texttt {vapply()}}{27} +\indexentry{sapply()@\texttt {sapply()}}{27} +\indexentry{apply()@\texttt {apply()}}{27} +\indexentry{lapply()@\texttt {lapply()}}{27} +\indexentry{apply()@\texttt {apply()}}{27} +\indexentry{lapply()@\texttt {lapply()}}{27} +\indexentry{sapply()@\texttt {sapply()}}{27} +\indexentry{apply()@\texttt {apply()}}{27} +\indexentry{lapply()@\texttt {lapply()}}{27} +\indexentry{sapply()@\texttt {sapply()}}{27} +\indexentry{vapply()@\texttt {vapply()}}{27} +\indexentry{vapply()@\texttt {vapply()}}{28} +\indexentry{vapply()@\texttt {vapply()}}{29} +\indexentry{apply()@\texttt {apply()}}{29} +\indexentry{mean()@\texttt {mean()}}{29} +\indexentry{apply()@\texttt {apply()}}{30} +\indexentry{apply()@\texttt {apply()}}{30} +\indexentry{apply()@\texttt {apply()}}{30} +\indexentry{t()@\texttt {t()}}{30} +\indexentry{apply()@\texttt {apply()}}{31} +\indexentry{mean()@\texttt {mean()}}{32} +\indexentry{var()@\texttt {var()}}{32} +\indexentry{sd()@\texttt {sd()}}{32} +\indexentry{max()@\texttt {max()}}{32} +\indexentry{min()@\texttt {min()}}{32} +\indexentry{inverse.rle()@\texttt {inverse.rle()}}{32} +\indexentry{sum()@\texttt {sum()}}{32} +\indexentry{prod()@\texttt {prod()}}{32} +\indexentry{cumsum()@\texttt {cumsum()}}{32} +\indexentry{cumprod()@\texttt {cumprod()}}{32} +\indexentry{cummax()@\texttt {cummax()}}{32} +\indexentry{cummin()@\texttt {cummin()}}{32} +\indexentry{runmed()@\texttt {runmed()}}{32} +\indexentry{diff()@\texttt {diff()}}{32} +\indexentry{diffinv()@\texttt {diffinv()}}{32} +\indexentry{factorial()@\texttt {factorial()}}{32} +\indexentry{rle()@\texttt {rle()}}{32} +\indexentry{inverse.rle()@\texttt {inverse.rle()}}{32} +\indexentry{assign()@\texttt {assign()}}{33} +\indexentry{assign()@\texttt {assign()}}{33} +\indexentry{get()@\texttt {get()}}{33} +\indexentry{mget()@\texttt {mget()}}{33} +\indexentry{assign()@\texttt {assign()}}{34} +\indexentry{get()@\texttt {get()}}{34} +\indexentry{mget()@\texttt {mget()}}{34} +\indexentry{do.call()@\texttt {do.call()}}{34} +\indexentry{anova()@\texttt {anova()}}{35} +\indexentry{do.call()@\texttt {do.call()}}{35} +\indexentry{anova()@\texttt {anova()}}{35} +\indexentry{do.call()@\texttt {do.call()}}{35} +\indexentry{anova()@\texttt {anova()}}{35} +\indexentry{|>@\texttt {|>}}{36} +\indexentry{within()@\texttt {within()}}{36} +\indexentry{subset()@\texttt {subset()}}{36} +\indexentry{aggregate()@\texttt {aggregate()}}{37} +\indexentry{getElement()@\texttt {getElement()}}{37} diff --git a/rindex.ilg b/rindex.ilg index d43a0ec6..d1bebd13 100644 --- a/rindex.ilg +++ b/rindex.ilg @@ -1,68 +1,9 @@ This is makeindex, version 2.16 [MiKTeX 22.8]. Scanning input file rindex.idx.... -!! Input index error (file = rindex.idx, line = 78): - -- Illegal null field. - -!! Input index error (file = rindex.idx, line = 88): - -- Illegal null field. - -!! Input index error (file = rindex.idx, line = 110): - -- Illegal null field. - -!! Input index error (file = rindex.idx, line = 113): - -- Extra `@' at position 2 of first argument. - -!! Input index error (file = rindex.idx, line = 563): - -- Incomplete first argument (premature LFD). - -!! Input index error (file = rindex.idx, line = 569): - -- Incomplete first argument (premature LFD). - -!! Input index error (file = rindex.idx, line = 651): +!! Input index error (file = rindex.idx, line = 114): -- Extra `@' at position 3 of first argument. -!! Input index error (file = rindex.idx, line = 652): - -- Extra `@' at position 3 of first argument. - -!! Input index error (file = rindex.idx, line = 661): - -- Extra `@' at position 3 of first argument. -!! Input index error (file = rindex.idx, line = 662): - -- Extra `@' at position 3 of first argument. - -!! Input index error (file = rindex.idx, line = 664): - -- Extra `@' at position 3 of first argument. - -!! Input index error (file = rindex.idx, line = 673): - -- Extra `@' at position 3 of first argument. - -!! Input index error (file = rindex.idx, line = 677): - -- Extra `@' at position 3 of first argument. - -!! Input index error (file = rindex.idx, line = 680): - -- Extra `@' at position 3 of first argument. - -!! Input index error (file = rindex.idx, line = 683): - -- Extra `@' at position 3 of first argument. -!! Input index error (file = rindex.idx, line = 684): - -- Extra `@' at position 3 of first argument. -!! Input index error (file = rindex.idx, line = 685): - -- Extra `@' at position 3 of first argument. - -!! Input index error (file = rindex.idx, line = 691): - -- Incomplete first argument (premature LFD). - -!! Input index error (file = rindex.idx, line = 694): - -- Extra `!' at position 14 of first argument. - -!! Input index error (file = rindex.idx, line = 760): - -- Extra `@' at position 3 of first argument. -. -!! Input index error (file = rindex.idx, line = 1035): - -- Extra `@' at position 2 of first argument. - -!! Input index error (file = rindex.idx, line = 1038): - -- Extra `@' at position 2 of first argument. -done (1151 entries accepted, 22 rejected). -Sorting entries............done (12527 comparisons). -Generating output file rindex.ind....done (580 lines written, 0 warnings). +done (117 entries accepted, 1 rejected). +Sorting entries....done (826 comparisons). +Generating output file rindex.ind....done (101 lines written, 0 warnings). Output written in rindex.ind. Transcript written in rindex.ilg. diff --git a/rindex.ind b/rindex.ind index 99b163cb..9fcef891 100644 --- a/rindex.ind +++ b/rindex.ind @@ -1,580 +1,101 @@ \begin{theindex} - \item \texttt {*}, 18, 36 - \item \texttt {+}, 18, 29, 311 - \item \texttt {-}, 18, 29 - \item \texttt {->}, 21, 207 - \item \texttt {-Inf}, 25, 35 - \item \texttt {.Machine\$double.eps}, 34 - \item \texttt {.Machine\$double.max}, 34 - \item \texttt {.Machine\$double.min}, 34 - \item \texttt {.Machine\$double.neg.eps}, 34 - \item \texttt {.Machine\$integer.max}, 35 - \item \texttt {/}, 18, 311 - \item \texttt {:}, 23 - \item \texttt {<}, 32 - \item \texttt {<-}, 20, 21, 50, 79 - \item \texttt {<<-}, 184 - \item \texttt {<=}, 32 - \item \texttt {=}, 21 - \item \texttt {==}, 32, 216 - \item \texttt {>}, 32 - \item \texttt {>=}, 32 - \item \texttt {[ , ]}, 216 - \item \texttt {[ ]}, 68, 79 - \item \texttt {[[ ]]}, 68 - \item \texttt {[[]]}, 65, 70, 75--77 - \item \texttt {[]}, 75, 81 - \item \texttt {\$}, 74, 76, 77 - \item \texttt {\%*\%}, 59 - \item \texttt {\%.>\%}, 205--207, 212 - \item \texttt {\%/\%}, 27 - \item \texttt {\%<>\%}, 205 - \item \texttt {\%>\%}, 205--208 - \item \texttt {\%T>\%}, 205 - \item \texttt {\%\%}, 27 - \item \texttt {\%in\%}, 38, 39, 41 - \item \texttt {\&}, 30 - \item \texttt {\&\&}, 30 - \item \texttt {\^{}}, 36 - \item \texttt {\textbar }, 30 - \item \texttt {\textbar \textbar }, 30 + \item \texttt {aggregate()}, 37 + \item \texttt {anova()}, 35 + \item \texttt {apply()}, 25, 27, 29--31 + \item \texttt {assign()}, 33, 34 \indexspace - \item \texttt {abs()}, 29, 36 - \item \texttt {aes()}, 225, 226, 235, 253 - \item \texttt {after\_scale()}, 236 - \item \texttt {after\_stat()}, 226, 236, 237 - \item \texttt {aggregate()}, 214 - \item \texttt {AIC()}, 142, 146 - \item \texttt {all()}, 30 - \item \texttt {annotate()}, 257, 300, 302 - \item \texttt {annotation\_custom()}, 258, 300 - \item \texttt {anova()}, 130, 131, 146, 147, 150, 152, 154 - \item \texttt {anti\_join()}, 218 - \item \texttt {any()}, 30 - \item \texttt {aov()}, 150, 171 - \item \texttt {append()}, 23, 66 - \item \texttt {apply()}, 121, 122, 125, 126 - \item \texttt {arrange()}, 212 - \item \texttt {array}, 53, 82 - \item \texttt {array()}, 57 - \item \texttt {as.character()}, 44, 61 - \item \texttt {as.data.frame()}, 202 - \item \texttt {as.formula()}, 166 - \item \texttt {as.integer()}, 45 - \item \texttt {as.logical()}, 44 - \item \texttt {as.matrix()}, 53 - \item \texttt {as.numeric()}, 44, 45, 61 - \item \texttt {as.ts()}, 169 - \item \texttt {as.vector()}, 58 - \item \texttt {as\_tibble()}, 199 - \item \texttt {assign()}, 128, 129, 184, 206, 207 - \item \texttt {attach()}, 78--81 - \item \texttt {attr()}, 83 - \item \texttt {attr()<-}, 83 - \item \texttt {attributes()}, 83, 141, 351 - \item \texttt {austres}, 169 + \item \texttt {break()}, 21--23 \indexspace - \item \texttt {basename()}, 326 - \item \texttt {BIC()}, 142, 146 - \item \texttt {biplot()}, 173 - \item \texttt {bold()}, 315 - \item \texttt {bolditalic()}, 315 - \item \texttt {bquote()}, 316 - \item \texttt {break()}, 115, 117, 118 + \item \texttt {cummax()}, 32 + \item \texttt {cummin()}, 32 + \item \texttt {cumprod()}, 32 + \item \texttt {cumsum()}, 32 \indexspace - \item \texttt {c()}, 22 - \item \texttt {call}, 159 - \item \texttt {cars}, 139, 143 - \item \texttt {cat()}, 42, 335 - \item \texttt {ceiling()}, 29 - \item \texttt {character}, 40, 41, 45 - \item \texttt {citation()}, 13 - \item \texttt {class()}, 43, 70, 141, 202, 351 - \item \texttt {coef()}, 142, 146, 151 - \item \texttt {coefficients()}, 146 - \item \texttt {colnames()}, 88 - \item \texttt {comment()}, 83 - \item \texttt {comment()<-}, 83 - \item \texttt {contains()}, 213 - \item \texttt {coord\_cartesian()}, 269 - \item \texttt {coord\_fixed()}, 269 - \item \texttt {coord\_flip()}, 274, 278 - \item \texttt {coord\_polar()}, 302 - \item \texttt {cor()}, 139--141 - \item \texttt {cor.test()}, 140, 141 - \item \texttt {crossprod()}, 59 - \item \texttt {cummax()}, 128 - \item \texttt {cummin()}, 128 - \item \texttt {cumprod()}, 128 - \item \texttt {cumsum()}, 128 - \item \texttt {cutree()}, 177 + \item \texttt {diff()}, 32 + \item \texttt {diffinv()}, 32 + \item \texttt {do.call()}, 34, 35 \indexspace - \item \texttt {data()}, 85 - \item \texttt {data.frame}, 69, 70, 198, 336 - \item \texttt {data.frame()}, 69, 73, 200, 203 - \item \texttt {decompose()}, 170 - \item \texttt {detach()}, 79--81, 181 - \item \texttt {diag()}, 59 - \item \texttt {diff()}, 128 - \item \texttt {dim()}, 53, 83, 351 - \item \texttt {dim()<-}, 83 - \item \texttt {dimnames()}, 351 - \item \texttt {dir()}, 327 - \item \texttt {dirname()}, 326 - \item \texttt {dist}, 176, 177 - \item \texttt {do.call()}, 130 - \item \texttt {double}, 22, 35, 36, 51 - \item \texttt {double()}, 22 - \item \texttt {download.file()}, 356 + \item \texttt {factorial()}, 32 + \item \texttt {for}, 18--20, 23 \indexspace - \item \texttt {effects()}, 146 - \item \texttt {ends\_with()}, 213 - \item \texttt {eurodist}, 175, 177 - \item \texttt {excel\_sheets()}, 346 - \item \texttt {exists()}, 193 - \item \texttt {exp()}, 19 - \item \texttt {expand\_limits()}, 287, 288 - \item \texttt {expression()}, 313--315 + \item \texttt {get()}, 33, 34 + \item \texttt {getElement()}, 37 + \item \texttt {ggplot()}, 3 \indexspace - \item \texttt {facet\_grid()}, 281 - \item \texttt {facet\_wrap()}, 281, 283, 304 - \item \texttt {factor}, 59 - \item \texttt {factor()}, 59, 60, 62, 63 - \item \texttt {FALSE}, 27 - \item \texttt {file.path()}, 328 - \item \texttt {filter()}, 212 - \item \texttt {fitted()}, 142, 146 - \item \texttt {fitted.values()}, 146 - \item \texttt {for}, 112--115, 118 - \item \texttt {format()}, 45, 46, 316 - \item \texttt {formula}, 159, 160 - \item \texttt {fromJSON()}, 357 - \item \texttt {full\_join()}, 216 - \item \texttt {function()}, 184 + \item \texttt {if ()}, 13 + \item \texttt {if () \ldots \ else}, 13 + \item \texttt {if()}, 10 + \item \texttt {if()\ldots else}, 10 + \item \texttt {ifelse()}, 16, 17 + \item \texttt {inverse.rle()}, 32 \indexspace - \item \texttt {gather()}, 210 - \item \texttt {geom\_abline}, 245 - \item \texttt {geom\_area}, 245 - \item \texttt {geom\_area()}, 245, 295 - \item \texttt {geom\_bar()}, 246, 267, 295, 303, 304 - \item \texttt {geom\_bin2d()}, 269 - \item \texttt {geom\_boxplot()}, 271 - \item \texttt {geom\_col()}, 246, 248, 295 - \item \texttt {geom\_curve()}, 244 - \item \texttt {geom\_density()}, 270 - \item \texttt {geom\_density\_2d()}, 271 - \item \texttt {geom\_errorbar}, 243 - \item \texttt {geom\_errorbar()}, 263 - \item \texttt {geom\_grob()}, 255, 258 - \item \texttt {geom\_grob\_npc()}, 259 - \item \texttt {geom\_hex()}, 269 - \item \texttt {geom\_histogram()}, 267, 269 - \item \texttt {geom\_hline}, 245 - \item \texttt {geom\_hline()}, 295, 302 - \item \texttt {geom\_label}, 252, 313 - \item \texttt {geom\_label()}, 250--254, 295 - \item \texttt {geom\_label\_npc()}, 259 - \item \texttt {geom\_label\_repel()}, 254 - \item \texttt {geom\_line}, 228, 245 - \item \texttt {geom\_line()}, 224, 228, 238, 244, 245, 274, 295 - \item \texttt {geom\_linerange()}, 263 - \item \texttt {geom\_path()}, 244, 245 - \item \texttt {geom\_plot()}, 255, 256 - \item \texttt {geom\_plot\_npc()}, 259 - \item \texttt {geom\_point}, 228, 245, 252 - \item \texttt {geom\_point()}, 224, 227, 237, 238, 242, 274, 279, - 281, 295 - \item \texttt {geom\_pointrange()}, 243, 261, 263 - \item \texttt {geom\_polygom}, 245 - \item \texttt {geom\_polygon()}, 303 - \item \texttt {geom\_range()}, 243 - \item \texttt {geom\_rect()}, 249 - \item \texttt {geom\_ribbon}, 245 - \item \texttt {geom\_rug()}, 243 - \item \texttt {geom\_segment()}, 244 - \item \texttt {geom\_sf()}, 250 - \item \texttt {geom\_sf\_label()}, 250 - \item \texttt {geom\_sf\_text()}, 250 - \item \texttt {geom\_smooth()}, 264, 277 - \item \texttt {geom\_spoke()}, 244 - \item \texttt {geom\_step()}, 244 - \item \texttt {geom\_table}, 255 - \item \texttt {geom\_table()}, 255, 256 - \item \texttt {geom\_table\_npc()}, 259 - \item \texttt {geom\_text}, 252, 255, 313 - \item \texttt {geom\_text()}, 250, 252--254, 295, 313 - \item \texttt {geom\_text\_npc()}, 259 - \item \texttt {geom\_text\_repel()}, 254 - \item \texttt {geom\_tile()}, 248, 249 - \item \texttt {geom\_violin()}, 272 - \item \texttt {geom\_vline}, 245 - \item \texttt {geom\_vline()}, 295, 302 - \item \texttt {get()}, 129 - \item \texttt {getwd()}, 326 - \item \texttt {ggplot()}, 97, 233--235, 315 - \item \texttt {ggplotGrob()}, 300 - \item \texttt {ggtitle()}, 285 - \item \texttt {gl()}, 60, 61 - \item \texttt {glm()}, 153 - \item \texttt {group\_by()}, 214, 216 + \item \texttt {lapply()}, 25, 27 + \item \texttt {logical}, 11, 13 \indexspace - \item \texttt {hcl()}, 297 - \item \texttt {hclust()}, 176, 178 - \item \texttt {head()}, 88, 89 - \item \texttt {help()}, 12 + \item \texttt {max()}, 32 + \item \texttt {mean()}, 29, 32 + \item \texttt {mget()}, 33, 34 + \item \texttt {min()}, 32 \indexspace - \item \texttt {I()}, 72, 73, 145, 161 - \item \texttt {identical()}, 202 - \item \texttt {if ()}, 107, 108 - \item \texttt {if () \ldots \ else}, 107 - \item \texttt {if()}, 104 - \item \texttt {if()\ldots else}, 104 - \item \texttt {ifelse()}, 110--112 - \item \texttt {Inf}, 25, 35 - \item \texttt {inherits()}, 43, 165 - \item \texttt {inner\_join()}, 216 - \item \texttt {InsectSpray}, 153 - \item \texttt {InsectSprays}, 149 - \item \texttt {install.packages()}, 181 - \item \texttt {integer}, 21, 27, 35, 51 - \item \texttt {iris}, 171, 208 - \item \texttt {is.array()}, 53 - \item \texttt {is.character()}, 43 - \item \texttt {is.element()}, 38, 39 - \item \texttt {is.logical()}, 43 - \item \texttt {is.matrix()}, 53 - \item \texttt {is.na()}, 26 - \item \texttt {is.numeric()}, 21, 43 - \item \texttt {is.vector()}, 53 - \item \texttt {is\_tibble()}, 199 - \item \texttt {italic()}, 315 + \item \texttt {next()}, 21, 23 + \item \texttt {numeric}, 13 \indexspace - \item \texttt {label\_bquote()}, 283 - \item \texttt {label\_date()}, 290 - \item \texttt {label\_date\_short()}, 290 - \item \texttt {label\_time()}, 290 - \item \texttt {labs()}, 285, 313 - \item \texttt {lapply()}, 89, 121, 122 - \item \texttt {left\_join()}, 216 - \item \texttt {length()}, 24, 45, 53, 88, 133, 160 - \item \texttt {LETTERS}, 47 - \item \texttt {letters}, 47 - \item \texttt {levels()}, 60, 63, 83 - \item \texttt {levels()<-}, 62, 83 - \item \texttt {library()}, 181 - \item \texttt {list}, 65, 70, 89, 160, 184, 198 - \item \texttt {list()}, 65 - \item \texttt {list.dirs()}, 327 - \item \texttt {list.files()}, 327 - \item \texttt {lm}, 184 - \item \texttt {lm()}, 84, 142, 145, 150, 171, 184, 264 - \item \texttt {load()}, 86 - \item \texttt {log()}, 161 - \item \texttt {log(), log10(), log2()}, 19 - \item \texttt {logical}, 29, 46, 105, 107 - \item \texttt {ls()}, 25, 86, 87 + \item \texttt {on.exit()}, 26 \indexspace - \item \texttt {mad()}, 133 - \item \texttt {manova()}, 171 - \item \texttt {matches()}, 213 - \item \texttt {matrix}, 53, 56, 82, 89, 198 - \item \texttt {matrix()}, 53, 54, 140 - \item \texttt {max()}, 128, 133 - \item \texttt {mean()}, 125, 133 - \item \texttt {median()}, 133 - \item \texttt {methods()}, 190 - \item \texttt {mget()}, 129 - \item \texttt {min()}, 128, 133 - \item \texttt {mode()}, 43, 133, 351 - \item \texttt {model.frame()}, 146 - \item \texttt {model.matrix()}, 146 - \item \texttt {month.abb}, 48 - \item \texttt {month.name}, 47 - \item \texttt {mtcars}, 226 - \item \texttt {mutate()}, 211 - \item \texttt {my\_print()}, 192 + \item \texttt {print()}, 3, 20 + \item \texttt {prod()}, 32 \indexspace - \item \texttt {NA}, 25, 26, 46 - \item \texttt {NA\_character\_}, 46 - \item \texttt {NA\_real\_}, 46 - \item \texttt {names()}, 83, 88, 213, 351 - \item \texttt {names()<-}, 83 - \item \texttt {names<-()}, 213 - \item \texttt {NaN}, 25 - \item \texttt {nc\_open()}, 352 - \item \texttt {ncol()}, 53, 88, 351 - \item \texttt {ncvar\_get()}, 352 - \item \texttt {next()}, 115, 118 - \item \texttt {nlme}, 157 - \item \texttt {nls}, 157 - \item \texttt {nls()}, 156, 157 - \item \texttt {nottem}, 169 - \item \texttt {npk}, 164 - \item \texttt {nrow()}, 53, 88, 351 - \item \texttt {numeric}, 18, 21, 40, 41, 51, 107 - \item \texttt {numeric()}, 21, 24 + \item \texttt {repeat}, 18, 22, 23 + \item \texttt {rle()}, 32 + \item \texttt {runmed()}, 32 \indexspace - \item \texttt {on.exit()}, 121 - \item \texttt {options()}, 199 - \item \texttt {Orange}, 244 - \item \texttt {order()}, 52, 64, 82, 212 - \item \texttt {ordered()}, 59 + \item \texttt {sapply()}, 25, 27 + \item \texttt {sd()}, 32 + \item \texttt {source()}, 3 + \item \texttt {subset()}, 36 + \item \texttt {sum()}, 32 + \item \texttt {switch()}, 13, 15, 16 + \item \texttt {system.time()}, 23, 24 \indexspace - \item \texttt {parse()}, 314, 315 - \item \texttt {paste()}, 252, 313, 316 - \item \texttt {pi}, 19 - \item \texttt {pivot\_longer()}, 209, 210 - \item \texttt {pivot\_wider()}, 210 - \item \texttt {plain()}, 315 - \item \texttt {plot()}, 90--92, 154, 190, 208 - \item \texttt {pnorm()}, 136, 137 - \item \texttt {poly()}, 145 - \item \texttt {prcomp()}, 173, 175 - \item \texttt {predict()}, 142, 149 - \item \texttt {pretty\_breaks()}, 289 - \item \texttt {print()}, 7, 42, 45, 68, 88, 97, 115, 140, 183, 199, - 201, 208, 352 - \item \texttt {prod()}, 128 - \item \texttt {pt()}, 136 - \item \texttt {Puromycin}, 157, 265 + \item \texttt {t()}, 30 \indexspace - \item \texttt {qnorm()}, 137 - \item \texttt {quantile()}, 133 + \item \texttt {vapply()}, 27--29 + \item \texttt {var()}, 32 \indexspace - \item \texttt {range()}, 133 - \item \texttt {read.csv()}, 331, 332, 334--336 - \item \texttt {read.csv2()}, 331, 332, 334 - \item \texttt {read.fortran()}, 333, 338 - \item \texttt {read.fwf()}, 333 - \item \texttt {read.spss()}, 349 - \item \texttt {read.systat()}, 350 - \item \texttt {read.table()}, 332, 334, 336, 337 - \item \texttt {read.xlsx()}, 347 - \item \texttt {read\_csv()}, 336, 340 - \item \texttt {read\_delim()}, 337 - \item \texttt {read\_excel()}, 346 - \item \texttt {read\_file()}, 340 - \item \texttt {read\_fwf()}, 338 - \item \texttt {read\_html()}, 341 - \item \texttt {read\_lines()}, 340 - \item \texttt {read\_ods()}, 348 - \item \texttt {read\_sav()}, 350 - \item \texttt {read\_table()}, 337 - \item \texttt {read\_table2()}, 336, 337 - \item \texttt {read\_tsv()}, 338 - \item \texttt {readLines()}, 328 - \item \texttt {readRDS()}, 87 - \item \texttt {rel()}, 308 - \item \texttt {rename()}, 213 - \item \texttt {reorder()}, 64 - \item \texttt {rep()}, 23 - \item \texttt {repeat}, 112, 117, 118 - \item \texttt {resid()}, 146 - \item \texttt {residuals()}, 142, 146 - \item \texttt {return()}, 184 - \item \texttt {rgb()}, 297 - \item \texttt {right\_join()}, 216 - \item \texttt {rle()}, 53 - \item \texttt {rlm()}, 236 - \item \texttt {rm()}, 25 - \item \texttt {rnorm()}, 137, 138, 140 - \item \texttt {round()}, 28 - \item \texttt {rownames()}, 88 - \item \texttt {runif()}, 137 - - \indexspace - - \item \texttt {sapply}, 89 - \item \texttt {sapply()}, 89, 121, 122 - \item \texttt {save()}, 85, 86 - \item \texttt {saveRDS()}, 87 - \item \texttt {scale\_color\_binned()}, 298 - \item \texttt {scale\_color\_brewer()}, 298 - \item \texttt {scale\_color\_continuous()}, 224, 297 - \item \texttt {scale\_color\_date()}, 297 - \item \texttt {scale\_color\_datetime()}, 297 - \item \texttt {scale\_color\_discrete()}, 284, 297 - \item \texttt {scale\_color\_distiller()}, 297 - \item \texttt {scale\_color\_gradient()}, 297, 298 - \item \texttt {scale\_color\_gradient2()}, 297 - \item \texttt {scale\_color\_gradientn()}, 297 - \item \texttt {scale\_color\_gray()}, 297 - \item \texttt {scale\_color\_hue()}, 297 - \item \texttt {scale\_color\_identity()}, 284, 299 - \item \texttt {scale\_color\_viridis\_c()}, 297 - \item \texttt {scale\_color\_viridis\_d()}, 298 - \item \texttt {scale\_fill\_identity()}, 299 - \item \texttt {scale\_x\_continuous()}, 290 - \item \texttt {scale\_x\_discrete()}, 294 - \item \texttt {scale\_x\_log10()}, 291 - \item \texttt {scale\_x\_reverse()}, 291 - \item \texttt {scale\_y\_continuous()}, 290 - \item \texttt {scale\_y\_log()}, 291 - \item \texttt {scale\_y\_log10()}, 291 - \item \texttt {sd()}, 133 - \item \texttt {select()}, 213 - \item \texttt {SEM()}, 186 - \item \texttt {semi\_join()}, 218 - \item \texttt {seq()}, 23 - \item \texttt {set.seed()}, 138 - \item \texttt {setseed()}, 138 - \item \texttt {setwd()}, 326 - \item \texttt {shell()}, 326 - \item \texttt {signif()}, 28 - \item \texttt {sin()}, 19 - \item \texttt {slice()}, 212 - \item \texttt {sort()}, 52, 64, 212 - \item \texttt {source()}, 97 - \item \texttt {spread()}, 210 - \item \texttt {sprintf()}, 45, 46, 191, 316 - \item \texttt {sqrt()}, 19 - \item \texttt {SSmicmen()}, 157, 265 - \item \texttt {stage()}, 236, 237 - \item \texttt {starts\_with()}, 213 - \item \texttt {stat()}, 236 - \item \texttt {stat\_bin()}, 267--269, 303 - \item \texttt {stat\_bin2d}, 269 - \item \texttt {stat\_bin2d()}, 269 - \item \texttt {stat\_bin\_hex()}, 269 - \item \texttt {stat\_boxplot()}, 271, 275 - \item \texttt {stat\_centroid()}, 279 - \item \texttt {stat\_count()}, 246, 267, 269 - \item \texttt {stat\_density()}, 275, 303 - \item \texttt {stat\_density2d()}, 279 - \item \texttt {stat\_density\_2d()}, 270 - \item \texttt {stat\_fit\_residuals()}, 237 - \item \texttt {stat\_function()}, 260 - \item \texttt {stat\_histogram()}, 275 - \item \texttt {stat\_identity()}, 226 - \item \texttt {stat\_poly\_line()}, 266, 278 - \item \texttt {stat\_sf()}, 250 - \item \texttt {stat\_smooth}, 265 - \item \texttt {stat\_smooth()}, 224, 264, 266, 274 - \item \texttt {stat\_summary}, 275 - \item \texttt {stat\_summary()}, 224, 261--263, 279, 280 - \item \texttt {stat\_summary2d()}, 279 - \item \texttt {stat\_summary\_xy()}, 279 - \item \texttt {stl()}, 170, 171 - \item \texttt {str()}, 66--69, 83, 88, 141, 147, 351, 352 - \item \texttt {str\_extract()}, 211 - \item \texttt {strftime()}, 316 - \item \texttt {strptime()}, 294 - \item \texttt {subset()}, 77, 78, 196, 212 - \item \texttt {substitute()}, 316 - \item \texttt {sum()}, 128, 186 - \item \texttt {summarise()}, 214 - \item \texttt {summary()}, 89, 90, 134, 143, 144, 147, 150, 151 - \item \texttt {switch()}, 107--110 - \item \texttt {system()}, 326 - \item \texttt {system.time()}, 118, 119 - - \indexspace - - \item \texttt {t()}, 58, 126 - \item \texttt {tail()}, 88, 89 - \item \texttt {tbl}, 198 - \item \texttt {tbl\_df}, 200 - \item \texttt {terms()}, 146, 163 - \item \texttt {theme()}, 308, 310 - \item \texttt {theme\_bw()}, 306, 307 - \item \texttt {theme\_classic()}, 306, 307 - \item \texttt {theme\_dark()}, 306 - \item \texttt {theme\_gray()}, 305, 306, 310 - \item \texttt {theme\_light()}, 306 - \item \texttt {theme\_linedraw()}, 306 - \item \texttt {theme\_minimal()}, 306 - \item \texttt {theme\_set()}, 307 - \item \texttt {theme\_void()}, 306 - \item \texttt {tibble}, 199, 200, 210, 336, 350, 353 - \item \texttt {tibble()}, 199, 200, 203, 211 - \item \texttt {tolower()}, 295 - \item \texttt {tools:::showNonASCIIfile()}, 330 - \item \texttt {toupper()}, 295 - \item \texttt {transmute()}, 211 - \item \texttt {TRUE}, 27 - \item \texttt {trunc()}, 29, 45 - \item \texttt {ts()}, 169 - \item \texttt {typeof()}, 43 - - \indexspace - - \item \texttt {ungroup()}, 214, 216 - \item \texttt {unique()}, 39 - \item \texttt {unlink()}, 87 - \item \texttt {unlist()}, 58, 68, 69 - \item \texttt {unname()}, 69 - \item \texttt {update()}, 167 - \item \texttt {update.packages()}, 181 - - \indexspace - - \item \texttt {vapply()}, 89, 122, 124 - \item \texttt {var()}, 133, 186 - \item \texttt {vcov()}, 146 - \item \texttt {vector}, 22 - - \indexspace - - \item \texttt {while}, 112, 115, 117, 118 - \item \texttt {with()}, 78--81 - \item \texttt {within()}, 79--81 - \item \texttt {write.csv()}, 331, 334 - \item \texttt {write.csv2}, 332 - \item \texttt {write.csv2()}, 335 - \item \texttt {write.table()}, 335 - \item \texttt {write.xlsx()}, 347 - \item \texttt {write\_csv()}, 339, 340 - \item \texttt {write\_csv2()}, 339 - \item \texttt {write\_delim()}, 339 - \item \texttt {write\_excel\_csv()}, 339, 340 - \item \texttt {write\_file()}, 340 - \item \texttt {write\_lines()}, 340 - \item \texttt {write\_ods()}, 349 - \item \texttt {write\_tsv()}, 339 - - \indexspace - - \item \texttt {xlab()}, 285 - \item \texttt {xlim()}, 261, 287, 288 - \item \texttt {xml\_find\_all()}, 343 - \item \texttt {xml\_text()}, 343 - - \indexspace - - \item \texttt {ylab()}, 285 - \item \texttt {ylim()}, 261, 287, 288 + \item \texttt {while}, 18, 21--23 + \item \texttt {within()}, 36 \end{theindex} diff --git a/using-r-main-crc.Rnw b/using-r-main-crc.Rnw index e2629979..53951753 100644 --- a/using-r-main-crc.Rnw +++ b/using-r-main-crc.Rnw @@ -1,4 +1,5 @@ \documentclass[krantz2]{krantz} + \usepackage{color} \usepackage{hologo} @@ -49,7 +50,10 @@ = {rectangle, draw, fill=gray!10, node distance=4em, text width=6em, text centered, rounded corners, minimum height=4em, thick}, c/.style - = {circle, draw, dashed, fill=orange!10, inner sep = 0pt, node distance=5em, text width=6em, + = {circle, draw, dashed, fill=orange!10, inner sep = 0pt, node distance=4em, text width=6em, + text centered, thick}, + cc/.style + = {circle, draw, dashed, fill=orange!10, inner sep = 0pt, node distance=4em, text width=3em, text centered, thick}, l/.style = {draw, -latex, ultra thick}, @@ -172,34 +176,39 @@ other_diag() \setcounter{page}{5} %previous pages will be reserved for frontmatter to be added in later. \tableofcontents +\listoffigures + +<>= +incl_all <- FALSE +@ + %\include{frontmatter/foreword} -\include{frontmatter/preface} -%\listoffigures +%\include{frontmatter/preface} + +<>= +@ \mainmatter -<>= -incl_all <- TRUE -@ <>= @ <>= @ -<>= +<>= @ -<>= +<>= @ -<>= +<>= @ <>= @ -<>= +<>= @ <>= diff --git a/using-r-main-crc.idx b/using-r-main-crc.idx index 8d5c14a1..780bf373 100644 --- a/using-r-main-crc.idx +++ b/using-r-main-crc.idx @@ -1,1562 +1,79 @@ -\indexentry{C++@\textsf {C++}}{2} -\indexentry{languages!C++@\textsf {C++}}{2} -\indexentry{R as a language@{\Rlang as a language}}{2} -\indexentry{R as a program@{\Rlang as a program}}{2} -\indexentry{Microsoft R Open@\textsf {Microsoft R Open}}{2} -\indexentry{programmes!Microsoft R Open@\textsf {Microsoft R Open}}{2} -\indexentry{base R@{base \Rlang}}{3} -\indexentry{Raspberry Pi}{3} -\indexentry{S@\textsf {S}}{3} -\indexentry{languages!S@\textsf {S}}{3} -\indexentry{S@\textsf {S}}{3} -\indexentry{languages!S@\textsf {S}}{3} -\indexentry{S-Plus@\textsf {S-Plus}}{3} -\indexentry{languages!S-Plus@\textsf {S-Plus}}{3} -\indexentry{S@\textsf {S}}{3} -\indexentry{languages!S@\textsf {S}}{3} -\indexentry{S-Plus@\textsf {S-Plus}}{3} -\indexentry{languages!S-Plus@\textsf {S-Plus}}{3} -\indexentry{S@\textsf {S}}{3} -\indexentry{languages!S@\textsf {S}}{3} -\indexentry{S@\textsf {S}}{3} -\indexentry{languages!S@\textsf {S}}{3} -\indexentry{S@\textsf {S}}{3} -\indexentry{languages!S@\textsf {S}}{3} -\indexentry{S-Plus@\textsf {S-Plus}}{3} -\indexentry{languages!S-Plus@\textsf {S-Plus}}{3} -\indexentry{S-Plus@\textsf {S-Plus}}{3} -\indexentry{languages!S-Plus@\textsf {S-Plus}}{3} -\indexentry{Gnu S@\textsf {Gnu S}}{3} -\indexentry{programmes!Gnu S@\textsf {Gnu S}}{3} -\indexentry{SPSS@\textsf {SPSS}}{3} -\indexentry{programmes!SPSS@\textsf {SPSS}}{3} -\indexentry{SAS@\textsf {SAS}}{3} -\indexentry{programmes!SAS@\textsf {SAS}}{3} -\indexentry{S@\textsf {S}}{3} -\indexentry{languages!S@\textsf {S}}{3} -\indexentry{R as a language@{\Rlang as a language}}{4} -\indexentry{S@\textsf {S}}{4} -\indexentry{languages!S@\textsf {S}}{4} -\indexentry{Pascal@\textsf {Pascal}}{4} -\indexentry{languages!Pascal@\textsf {Pascal}}{4} -\indexentry{C++@\textsf {C++}}{4} -\indexentry{languages!C++@\textsf {C++}}{4} -\indexentry{R as a program@{\Rpgrm as a program}}{4} -\indexentry{Windows@{\textsf{Windows}}|see{MS-Windows@{\textsf{MS-Windows}}}}{4} -\indexentry{Linux@\textsf {Linux}}{4} -\indexentry{operating systems!Linux@\textsf {Linux}}{4} -\indexentry{Unix@\textsf {Unix}}{4} -\indexentry{operating systems!Unix@\textsf {Unix}}{4} -\indexentry{OS X@\textsf {OS X}}{4} -\indexentry{operating systems!OS X@\textsf {OS X}}{4} -\indexentry{MS-Windows@\textsf {MS-Windows}}{4} -\indexentry{operating systems!MS-Windows@\textsf {MS-Windows}}{4} -\indexentry{Emacs@\textsf {Emacs}}{5} -\indexentry{programmes!Emacs@\textsf {Emacs}}{5} -\indexentry{Emacs@\textsf {Emacs}}{5} -\indexentry{programmes!Emacs@\textsf {Emacs}}{5} -\indexentry{RStudio@\textsf {RStudio}}{5} -\indexentry{programmes!RStudio@\textsf {RStudio}}{5} -\indexentry{console}{5} +\indexentry{scripts}{1} +\indexentry{scripts!definition}{2} +\indexentry{scripts!sourcing}{3} +\indexentry{RStudio@\textsf {RStudio}}{3} +\indexentry{programmes!RStudio@\textsf {RStudio}}{3} +\indexentry{RStudio@\textsf {RStudio}}{3} +\indexentry{programmes!RStudio@\textsf {RStudio}}{3} +\indexentry{RStudio@\textsf {RStudio}}{4} +\indexentry{programmes!RStudio@\textsf {RStudio}}{4} +\indexentry{scripts!writing}{4} +\indexentry{RStudio@\textsf {RStudio}}{4} +\indexentry{programmes!RStudio@\textsf {RStudio}}{4} +\indexentry{RStudio@\textsf {RStudio}}{4} +\indexentry{programmes!RStudio@\textsf {RStudio}}{4} +\indexentry{RStudio@\textsf {RStudio}}{4} +\indexentry{programmes!RStudio@\textsf {RStudio}}{4} +\indexentry{RStudio@\textsf {RStudio}}{4} +\indexentry{programmes!RStudio@\textsf {RStudio}}{4} +\indexentry{scripts!readability}{4} +\indexentry{literate programming}{6} +\indexentry{WEB@\textsf {WEB}}{6} +\indexentry{programmes!WEB@\textsf {WEB}}{6} +\indexentry{Sweave@\textsf {`Sweave'}}{6} +\indexentry{packages!Sweave@\textsf {`Sweave'}}{6} +\indexentry{knitr@\textsf {`knitr'}}{6} +\indexentry{packages!knitr@\textsf {`knitr'}}{6} +\indexentry{Markdown@\textsf {Markdown}}{6} +\indexentry{languages!Markdown@\textsf {Markdown}}{6} +\indexentry{Latex@\LaTeX}{6} +\indexentry{Rmarkdown@\textsf {Rmarkdown}}{6} +\indexentry{languages!Rmarkdown@\textsf {Rmarkdown}}{6} +\indexentry{Markdown@\textsf {Markdown}}{6} +\indexentry{languages!Markdown@\textsf {Markdown}}{6} +\indexentry{bookdown@\textsf {`bookdown'}}{6} +\indexentry{packages!bookdown@\textsf {`bookdown'}}{6} +\indexentry{blogdown@\textsf {`blogdown'}}{6} +\indexentry{packages!blogdown@\textsf {`blogdown'}}{6} +\indexentry{pkgdown@\textsf {`pkgdown'}}{6} +\indexentry{packages!pkgdown@\textsf {`pkgdown'}}{6} +\indexentry{knitr@\textsf {`knitr'}}{6} +\indexentry{packages!knitr@\textsf {`knitr'}}{6} \indexentry{RStudio@\textsf {RStudio}}{6} \indexentry{programmes!RStudio@\textsf {RStudio}}{6} -\indexentry{RStudio@\textsf {RStudio}}{6} -\indexentry{programmes!RStudio@\textsf {RStudio}}{6} -\indexentry{script}{7} -\indexentry{batch job}{7} -\indexentry{Linux@\textsf {Linux}}{7} -\indexentry{operating systems!Linux@\textsf {Linux}}{7} -\indexentry{Unix@\textsf {Unix}}{7} -\indexentry{operating systems!Unix@\textsf {Unix}}{7} -\indexentry{OS X@\textsf {OS X}}{7} -\indexentry{operating systems!OS X@\textsf {OS X}}{7} -\indexentry{MS-Windows@\textsf {MS-Windows}}{7} -\indexentry{operating systems!MS-Windows@\textsf {MS-Windows}}{7} -\indexentry{MS-Windows@\textsf {MS-Windows}}{8} -\indexentry{operating systems!MS-Windows@\textsf {MS-Windows}}{8} -\indexentry{integrated development environment}{8} -\indexentry{IDE|see{integrated development environment}}{8} -\indexentry{RStudio@\textsf {RStudio}}{8} -\indexentry{programmes!RStudio@\textsf {RStudio}}{8} -\indexentry{RStudio@\textsf {RStudio}}{8} -\indexentry{programmes!RStudio@\textsf {RStudio}}{8} -\indexentry{RStudio@\textsf {RStudio}}{8} -\indexentry{programmes!RStudio@\textsf {RStudio}}{8} -\indexentry{RStudio@\textsf {RStudio}}{8} -\indexentry{programmes!RStudio@\textsf {RStudio}}{8} -\indexentry{RStudio@\textsf {RStudio}}{8} -\indexentry{programmes!RStudio@\textsf {RStudio}}{8} -\indexentry{RStudio@\textsf {RStudio}}{9} -\indexentry{programmes!RStudio@\textsf {RStudio}}{9} -\indexentry{RStudio@\textsf {RStudio}}{9} -\indexentry{programmes!RStudio@\textsf {RStudio}}{9} -\indexentry{RStudio@\textsf {RStudio}}{9} -\indexentry{programmes!RStudio@\textsf {RStudio}}{9} -\indexentry{RStudio@\textsf {RStudio}}{9} -\indexentry{programmes!RStudio@\textsf {RStudio}}{9} -\indexentry{RStudio@\textsf {RStudio}}{9} -\indexentry{programmes!RStudio@\textsf {RStudio}}{9} -\indexentry{Linux@\textsf {Linux}}{9} -\indexentry{operating systems!Linux@\textsf {Linux}}{9} -\indexentry{Unix@\textsf {Unix}}{9} -\indexentry{operating systems!Unix@\textsf {Unix}}{9} -\indexentry{OS X@\textsf {OS X}}{9} -\indexentry{operating systems!OS X@\textsf {OS X}}{9} -\indexentry{MS-Windows@\textsf {MS-Windows}}{9} -\indexentry{operating systems!MS-Windows@\textsf {MS-Windows}}{9} -\indexentry{Linux@\textsf {Linux}}{9} -\indexentry{operating systems!Linux@\textsf {Linux}}{9} -\indexentry{RStudio@\textsf {RStudio}}{9} -\indexentry{programmes!RStudio@\textsf {RStudio}}{9} -\indexentry{RStudio@\textsf {RStudio}}{9} -\indexentry{programmes!RStudio@\textsf {RStudio}}{9} -\indexentry{RStudio@\textsf {RStudio}}{9} -\indexentry{programmes!RStudio@\textsf {RStudio}}{9} -\indexentry{reproducible data analysis|(}{10} -\indexentry{Sweave@\textsf {`Sweave'}}{10} -\indexentry{packages!Sweave@\textsf {`Sweave'}}{10} -\indexentry{knitr@\textsf {`knitr'}}{10} -\indexentry{packages!knitr@\textsf {`knitr'}}{10} -\indexentry{RStudio@\textsf {RStudio}}{10} -\indexentry{programmes!RStudio@\textsf {RStudio}}{10} -\indexentry{RStudio@\textsf {RStudio}}{10} -\indexentry{programmes!RStudio@\textsf {RStudio}}{10} -\indexentry{knitr@\textsf {`knitr'}}{11} -\indexentry{packages!knitr@\textsf {`knitr'}}{11} -\indexentry{Latex@{\LaTeX}}{11} -\indexentry{languages!Latex@{\LaTeX}}{11} -\indexentry{reproducible data analysis|)}{11} -\indexentry{R@{\Rlang}!help}{12} -\indexentry{RStudio@\textsf {RStudio}}{12} -\indexentry{programmes!RStudio@\textsf {RStudio}}{12} -\indexentry{RStudio@\textsf {RStudio}}{12} -\indexentry{programmes!RStudio@\textsf {RStudio}}{12} -\indexentry{RStudio@\textsf {RStudio}}{12} -\indexentry{programmes!RStudio@\textsf {RStudio}}{12} -\indexentry{RGUI@\textsf {RGUI}}{12} -\indexentry{programmes!RGUI@\textsf {RGUI}}{12} -\indexentry{netiquette}{13} -\indexentry{network etiquette}{13} -\indexentry{StackOverflow}{14} -\indexentry{reproducible example}{14} -\indexentry{reprex|see{reproducible example}}{14} -\indexentry{reproducible example}{14} -\indexentry{RStudio@\textsf {RStudio}}{15} -\indexentry{programmes!RStudio@\textsf {RStudio}}{15} -\indexentry{IDE for R}{15} -\indexentry{editor for R scripts}{15} -\indexentry{RStudio@\textsf {RStudio}}{15} -\indexentry{programmes!RStudio@\textsf {RStudio}}{15} -\indexentry{MS-Windows@\textsf {MS-Windows}}{15} -\indexentry{operating systems!MS-Windows@\textsf {MS-Windows}}{15} -\indexentry{Linux@\textsf {Linux}}{15} -\indexentry{operating systems!Linux@\textsf {Linux}}{15} -\indexentry{OS X@\textsf {OS X}}{15} -\indexentry{operating systems!OS X@\textsf {OS X}}{15} -\indexentry{Unix@\textsf {Unix}}{15} -\indexentry{operating systems!Unix@\textsf {Unix}}{15} -\indexentry{RStudio@\textsf {RStudio}}{15} -\indexentry{programmes!RStudio@\textsf {RStudio}}{15} -\indexentry{RStudio@\textsf {RStudio}}{15} -\indexentry{programmes!RStudio@\textsf {RStudio}}{15} -\indexentry{WinEdt@\textsf {WinEdt}}{15} -\indexentry{programmes!WinEdt@\textsf {WinEdt}}{15} -\indexentry{Latex@\LaTeX}{15} -\indexentry{Emacs@\textsf {Emacs}}{15} -\indexentry{programmes!Emacs@\textsf {Emacs}}{15} -\indexentry{Unix@\textsf {Unix}}{15} -\indexentry{operating systems!Unix@\textsf {Unix}}{15} -\indexentry{RStudio@\textsf {RStudio}}{15} -\indexentry{programmes!RStudio@\textsf {RStudio}}{15} -\indexentry{ImageJ@\textsf {ImageJ}}{15} -\indexentry{programmes!ImageJ@\textsf {ImageJ}}{15} -\indexentry{Eclipse@\textsf {Eclipse}}{15} -\indexentry{programmes!Eclipse@\textsf {Eclipse}}{15} -\indexentry{Bio7@\textsf {Bio7}}{15} -\indexentry{programmes!Bio7@\textsf {Bio7}}{15} -\indexentry{learnrbook@\textsf {`learnrbook'}}{15} -\indexentry{packages!learnrbook@\textsf {`learnrbook'}}{15} -\indexentry{learnrbook@\textsf {`learnrbook'}}{15} -\indexentry{packages!learnrbook@\textsf {`learnrbook'}}{15} -\indexentry{Git@\textsf {Git}}{16} -\indexentry{programmes!Git@\textsf {Git}}{16} -\indexentry{RStudio@\textsf {RStudio}}{16} -\indexentry{programmes!RStudio@\textsf {RStudio}}{16} -\indexentry{further reading!shell scripts in Unix and Linux}{16} -\indexentry{Linux@\textsf {Linux}}{16} -\indexentry{programmes!Linux@\textsf {Linux}}{16} -\indexentry{Unix@\textsf {Unix}}{16} -\indexentry{programmes!Unix@\textsf {Unix}}{16} -\indexentry{bash@\textsf {bash}}{16} -\indexentry{programmes!bash@\textsf {bash}}{16} -\indexentry{C@\textsf {C}}{16} -\indexentry{languages!C@\textsf {C}}{16} -\indexentry{C++@\textsf {C++}}{16} -\indexentry{languages!C++@\textsf {C++}}{16} -\indexentry{Java@\textsf {Java}}{16} -\indexentry{languages!Java@\textsf {Java}}{16} -\indexentry{languages!natural and computer}{18} -\indexentry{classes and modes!numeric, integer, double|(}{18} -\indexentry{numbers and their arithmetic|(}{18} -\indexentry{math operators}{18} -\indexentry{math functions}{18} -\indexentry{numeric values}{18} -\indexentry{variables}{20} -\indexentry{assignment}{20} -\indexentry{assignment!leftwise}{21} -\indexentry{assignment!chaining}{21} -\indexentry{numeric, integer and double values}{21} -\indexentry{C@\textsf {C}}{22} -\indexentry{languages!C@\textsf {C}}{22} -\indexentry{C@\textsf {C}}{22} -\indexentry{languages!C@\textsf {C}}{22} -\indexentry{sequence}{23} -\indexentry{vectorized arithmetic}{23} +\indexentry{knitr@\textsf {`knitr'}}{6} +\indexentry{packages!knitr@\textsf {`knitr'}}{6} +\indexentry{scripts!debugging}{6} +\indexentry{RStudio@\textsf {RStudio}}{7} +\indexentry{programmes!RStudio@\textsf {RStudio}}{7} +\indexentry{control of execution flow}{8} +\indexentry{compound code statements}{9} +\indexentry{simple code statements}{9} +\indexentry{conditional execution}{9} +\indexentry{conditional statements}{10} +\indexentry{vectorized ifelse}{16} +\indexentry{loops|seealso{iteration}}{18} +\indexentry{for loop}{18} +\indexentry{iteration!for loop}{18} +\indexentry{iteration!while loop}{21} +\indexentry{iteration!repeat loop}{22} +\indexentry{vectorization}{23} \indexentry{recycling of arguments}{23} -\indexentry{removing objects}{25} -\indexentry{deleting objects|see {removing objects}}{25} -\indexentry{RStudio@\textsf {RStudio}}{25} -\indexentry{programmes!RStudio@\textsf {RStudio}}{25} -\indexentry{special values!NA}{25} -\indexentry{special values!NaN}{25} -\indexentry{zero length objects}{26} -\indexentry{vectors!zero length}{26} -\indexentry{precision!math operations}{26} -\indexentry{numbers!floating point}{26} -\indexentry{numbers!whole}{27} -\indexentry{numbers!integer}{27} -\indexentry{numbers!double}{27} -\indexentry{numbers!integer}{27} -\indexentry{classes and modes!numeric, integer, double|)}{29} -\indexentry{numbers and their arithmetic|)}{29} -\indexentry{classes and modes!logical|(}{29} -\indexentry{logical operators}{29} -\indexentry{logical values and their algebra|(}{29} -\indexentry{Boolean arithmetic}{29} -\indexentry{logical values and their algebra|)}{31} -\indexentry{comparison operators|(}{32} -\indexentry{operators!comparison|(}{32} -\indexentry{floating point numbers!arithmetic|(}{34} -\indexentry{machine arithmetic!precision|(}{34} -\indexentry{floats|see{floating point numbers}}{34} -\indexentry{machine arithmetic!rounding errors}{34} -\indexentry{Real numbers and computers}{34} -\indexentry{EPS ($\epsilon$)|see{machine arithmetic precision}}{34} -\indexentry{arithmetic overflow}{35} -\indexentry{overflow|see{arithmetic overflow}}{35} -\indexentry{type promotion}{36} -\indexentry{arithmetic overflow!type promotion}{36} -\indexentry{floating point numbers!arithmetic|)}{36} -\indexentry{machine arithmetic!precision|)}{36} -\indexentry{comparison of floating point numbers|(}{36} -\indexentry{inequality and equality tests|(}{36} -\indexentry{loss of numeric precision}{36} -\indexentry{comparison of floating point numbers|)}{37} -\indexentry{inequality and equality tests|)}{37} -\indexentry{comparison operators|)}{37} -\indexentry{operators!comparison|)}{37} -\indexentry{classes and modes!logical|)}{37} -\indexentry{sets|(}{37} -\indexentry{algebra of sets}{37} -\indexentry{operators!set|(}{37} -\indexentry{operators!set|)}{41} -\indexentry{sets|)}{41} -\indexentry{character strings}{41} -\indexentry{classes and modes!character|(}{41} -\indexentry{C@\textsf {C}}{41} -\indexentry{languages!C@\textsf {C}}{41} -\indexentry{C++@\textsf {C++}}{41} -\indexentry{languages!C++@\textsf {C++}}{41} -\indexentry{C@\textsf {C}}{41} -\indexentry{languages!C@\textsf {C}}{41} -\indexentry{character string delimiters}{42} -\indexentry{character escape codes}{42} -\indexentry{classes and modes!character|)}{42} -\indexentry{objects!mode}{42} -\indexentry{type conversion|(}{44} -\indexentry{formatted character strings from numbers}{45} -\indexentry{C@\textsf {C}}{46} -\indexentry{languages!C@\textsf {C}}{46} -\indexentry{C@\textsf {C}}{46} -\indexentry{languages!C@\textsf {C}}{46} -\indexentry{C@\textsf {C}}{46} -\indexentry{languages!C@\textsf {C}}{46} -\indexentry{type conversion|)}{47} -\indexentry{vectors!indexing|(}{47} -\indexentry{vectors!member extraction}{47} -\indexentry{C@\textsf {C}}{48} -\indexentry{languages!C@\textsf {C}}{48} -\indexentry{C++@\textsf {C++}}{48} -\indexentry{languages!C++@\textsf {C++}}{48} -\indexentry{vectors!sorting}{52} -\indexentry{vector!run length encoding}{53} -\indexentry{vectors!indexing|)}{53} -\indexentry{matrices|(}{53} -\indexentry{arrays|(}{53} -\indexentry{matrix!dimensions}{57} -\indexentry{arrays!dimensions}{57} -\indexentry{matrixStats@\textsf {`matrixStats'}}{59} -\indexentry{packages!matrixStats@\textsf {`matrixStats'}}{59} -\indexentry{matrices|)}{59} -\indexentry{arrays|)}{59} -\indexentry{factors|(}{59} -\indexentry{categorical variables|see{factors}}{59} -\indexentry{factors!ordered}{59} -\indexentry{factors!labels}{60} -\indexentry{factors!levels}{60} -\indexentry{factors!drop unused levels}{60} -\indexentry{factors!convert to numeric}{61} -\indexentry{factors!rename levels}{62} -\indexentry{factors!merge levels}{63} -\indexentry{factors!reorder levels}{63} -\indexentry{factors!reorder values}{64} -\indexentry{factors!arrange values}{64} -\indexentry{factors|)}{65} -\indexentry{lists|(}{65} -\indexentry{lists!member extraction|(}{65} -\indexentry{lists!member indexing|see{lists!member extraction}}{65} -\indexentry{C@\textsf {C}}{66} -\indexentry{languages!C@\textsf {C}}{66} -\indexentry{lists!member extraction|)}{66} -\indexentry{lists!insert into}{66} -\indexentry{lists!append to}{66} -\indexentry{lists!nested}{67} -\indexentry{lists!structure}{67} -\indexentry{lists!nested}{67} -\indexentry{lists!nested}{68} -\indexentry{lists!flattening}{68} -\indexentry{lists!nested}{68} -\indexentry{lists!convert into vector}{69} -\indexentry{lists|)}{69} -\indexentry{data frames|(}{69} -\indexentry{worksheet@`worksheet'|see{data frame}}{69} -\indexentry{tidiyverse@\textsf {`tidiyverse'}}{73} -\indexentry{packages!tidiyverse@\textsf {`tidiyverse'}}{73} -\indexentry{tibble@\textsf {`tibble'}}{74} -\indexentry{packages!tibble@\textsf {`tibble'}}{74} -\indexentry{tibble@\textsf {`tibble'}}{75} -\indexentry{packages!tibble@\textsf {`tibble'}}{75} -\indexentry{data frames!operating within}{77} -\indexentry{data frames!subsetting}{77} -\indexentry{data frames!``filtering rows''}{77} -\indexentry{data frames!attaching}{80} -\indexentry{data frames!ordering rows}{81} -\indexentry{data frames!ordering columns}{81} -\indexentry{data frames!ordering rows}{82} -\indexentry{data frames!ordering rows}{82} -\indexentry{data frames|)}{82} -\indexentry{attributes|(}{83} -\indexentry{tidyverse@\textsf {`tidyverse'}}{84} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{84} -\indexentry{attributes|)}{85} -\indexentry{data!loading data sets|(}{85} -\indexentry{foreign@\textsf {`foreign'}}{85} -\indexentry{packages!foreign@\textsf {`foreign'}}{85} -\indexentry{data!loading data sets|)}{85} -\indexentry{data!exploration at the R console|(}{88} -\indexentry{plots!base R graphics}{90} -\indexentry{ggplot2@\textsf {`ggplot2'}}{90} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{90} -\indexentry{MS-Windows@\textsf {MS-Windows}}{93} -\indexentry{operating systems!MS-Windows@\textsf {MS-Windows}}{93} -\indexentry{Linux@\textsf {Linux}}{93} -\indexentry{operating systems!Linux@\textsf {Linux}}{93} -\indexentry{RStudio@\textsf {RStudio}}{93} -\indexentry{programmes!RStudio@\textsf {RStudio}}{93} -\indexentry{further reading!using the R language}{93} -\indexentry{data!exploration at the R console|)}{93} -\indexentry{scripts}{95} -\indexentry{scripts!definition}{96} -\indexentry{scripts!sourcing}{97} -\indexentry{RStudio@\textsf {RStudio}}{97} -\indexentry{programmes!RStudio@\textsf {RStudio}}{97} -\indexentry{RStudio@\textsf {RStudio}}{97} -\indexentry{programmes!RStudio@\textsf {RStudio}}{97} -\indexentry{RStudio@\textsf {RStudio}}{98} -\indexentry{programmes!RStudio@\textsf {RStudio}}{98} -\indexentry{scripts!writing}{98} -\indexentry{RStudio@\textsf {RStudio}}{98} -\indexentry{programmes!RStudio@\textsf {RStudio}}{98} -\indexentry{RStudio@\textsf {RStudio}}{98} -\indexentry{programmes!RStudio@\textsf {RStudio}}{98} -\indexentry{RStudio@\textsf {RStudio}}{98} -\indexentry{programmes!RStudio@\textsf {RStudio}}{98} -\indexentry{RStudio@\textsf {RStudio}}{98} -\indexentry{programmes!RStudio@\textsf {RStudio}}{98} -\indexentry{scripts!readability}{99} -\indexentry{literate programming}{100} -\indexentry{WEB@\textsf {WEB}}{100} -\indexentry{programmes!WEB@\textsf {WEB}}{100} -\indexentry{Sweave@\textsf {`Sweave'}}{100} -\indexentry{packages!Sweave@\textsf {`Sweave'}}{100} -\indexentry{knitr@\textsf {`knitr'}}{100} -\indexentry{packages!knitr@\textsf {`knitr'}}{100} -\indexentry{Markdown@\textsf {Markdown}}{100} -\indexentry{languages!Markdown@\textsf {Markdown}}{100} -\indexentry{Latex@\LaTeX}{100} -\indexentry{Rmarkdown@\textsf {Rmarkdown}}{100} -\indexentry{languages!Rmarkdown@\textsf {Rmarkdown}}{100} -\indexentry{Markdown@\textsf {Markdown}}{100} -\indexentry{languages!Markdown@\textsf {Markdown}}{100} -\indexentry{bookdown@\textsf {`bookdown'}}{100} -\indexentry{packages!bookdown@\textsf {`bookdown'}}{100} -\indexentry{blogdown@\textsf {`blogdown'}}{100} -\indexentry{packages!blogdown@\textsf {`blogdown'}}{100} -\indexentry{pkgdown@\textsf {`pkgdown'}}{100} -\indexentry{packages!pkgdown@\textsf {`pkgdown'}}{100} -\indexentry{knitr@\textsf {`knitr'}}{100} -\indexentry{packages!knitr@\textsf {`knitr'}}{100} -\indexentry{RStudio@\textsf {RStudio}}{100} -\indexentry{programmes!RStudio@\textsf {RStudio}}{100} -\indexentry{knitr@\textsf {`knitr'}}{100} -\indexentry{packages!knitr@\textsf {`knitr'}}{100} -\indexentry{scripts!debugging}{100} -\indexentry{RStudio@\textsf {RStudio}}{101} -\indexentry{programmes!RStudio@\textsf {RStudio}}{101} -\indexentry{control of execution flow}{102} -\indexentry{compound code statements}{103} -\indexentry{simple code statements}{103} -\indexentry{conditional execution}{103} -\indexentry{conditional statements}{104} -\indexentry{vectorized ifelse}{110} -\indexentry{loops|seealso{iteration}}{112} -\indexentry{for loop}{113} -\indexentry{iteration!for loop}{113} -\indexentry{iteration!while loop}{115} -\indexentry{iteration!repeat loop}{117} -\indexentry{vectorization}{118} -\indexentry{recycling of arguments}{118} -\indexentry{iteration}{118} -\indexentry{loops!faster alternatives|(}{118} -\indexentry{microbenchmark@\textsf {`microbenchmark'}}{118} -\indexentry{packages!microbenchmark@\textsf {`microbenchmark'}}{118} -\indexentry{loops!faster alternatives|)}{119} -\indexentry{iteration!nesting of loops}{119} -\indexentry{nested iteration loops}{119} -\indexentry{loops!nested}{119} -\indexentry{apply functions}{121} -\indexentry{apply functions}{122} -\indexentry{loops!faster alternatives}{122} -\indexentry{C@\textsf {C}}{127} -\indexentry{languages!C@\textsf {C}}{127} -\indexentry{object names}{128} -\indexentry{object names!as character strings}{128} -\indexentry{further reading!the R language}{132} -\indexentry{functions!base R}{133} -\indexentry{summaries!statistical}{133} -\indexentry{distributions|(}{134} -\indexentry{Normal distribution}{134} -\indexentry{distributions!density from parameters}{135} -\indexentry{distributions!probabilities from quantiles}{136} -\indexentry{distributions!quantiles from probabilities}{136} -\indexentry{random draws|see{distributions!pseudo-random draws}}{137} -\indexentry{distributions!pseudo-random draws}{137} -\indexentry{random numbers|see{pseudo-random numbers}}{138} -\indexentry{pseudo-random numbers}{138} -\indexentry{random sampling|see{pseudo-random sampling}}{138} -\indexentry{pseudo-random sampling}{138} -\indexentry{distributions|)}{139} -\indexentry{correlation|(}{139} -\indexentry{correlation!parametric}{139} -\indexentry{correlation!Pearson}{139} -\indexentry{correlation!non-parametric}{141} -\indexentry{correlation!Kendall}{141} -\indexentry{correlation!Spearman}{141} -\indexentry{correlation|)}{141} -\indexentry{models fitting|(}{141} -\indexentry{models fitting|)}{142} -\indexentry{models!linear|see{linear models}}{142} -\indexentry{linear models|(}{142} -\indexentry{LM|see{linear models}}{142} -\indexentry{linear regression|see{linear models!linear regression}}{143} -\indexentry{linear models!linear regression}{143} -\indexentry{linear models!ANOVA table}{143} -\indexentry{linear models!summary table}{144} -\indexentry{linear models!polynomial regression}{145} -\indexentry{polynomial regression}{145} -\indexentry{analysis of variance|see{linear models!analysis of variance}}{149} -\indexentry{linear models!analysis of variance}{149} -\indexentry{ANOVA|see{analysis of variance}}{149} -\indexentry{SPSS@\textsf {SPSS}}{151} -\indexentry{programmes!SPSS@\textsf {SPSS}}{151} -\indexentry{SAS@\textsf {SAS}}{151} -\indexentry{programmes!SAS@\textsf {SAS}}{151} -\indexentry{S@\textsf {S}}{151} -\indexentry{languages!S@\textsf {S}}{151} -\indexentry{SPSS@\textsf {SPSS}}{151} -\indexentry{programmes!SPSS@\textsf {SPSS}}{151} -\indexentry{SAS@\textsf {SAS}}{151} -\indexentry{programmes!SAS@\textsf {SAS}}{151} -\indexentry{analysis of covariance|see{linear models!analysis of covariance}}{153} -\indexentry{linear models!analysis of covariance}{153} -\indexentry{ANCOVA|see{analysis of covariance}}{153} -\indexentry{linear models|)}{153} -\indexentry{generalized linear models|(}{153} -\indexentry{models!generalized linear|see{generalized linear models}}{153} -\indexentry{GLM|see{generalized linear models}}{153} -\indexentry{generalized linear models|)}{156} -\indexentry{non-linear models|(}{156} -\indexentry{models!non-linear|see{non-linear models}}{156} -\indexentry{NLS|see{non-linear models}}{156} -\indexentry{self-starting functions}{157} -\indexentry{Michaelis-Menten equation}{157} -\indexentry{chemical reaction kinetics}{157} -\indexentry{models!selfstart@{\texttt{selfStart}}}{157} -\indexentry{non-linear models|)}{159} -\indexentry{model formulas|(}{159} -\indexentry{analysis of variance!model formula}{164} -\indexentry{nlme@\textsf {`nlme'}}{164} -\indexentry{packages!nlme@\textsf {`nlme'}}{164} -\indexentry{lme4@\textsf {`lme4'}}{164} -\indexentry{packages!lme4@\textsf {`lme4'}}{164} -\indexentry{model formulas!manipulation}{165} -\indexentry{model formulas|)}{168} -\indexentry{time series|(}{168} -\indexentry{time series!decomposition}{170} -\indexentry{time series|)}{171} -\indexentry{multivariate methods|(}{171} -\indexentry{multivariate analysis of variance|(}{171} -\indexentry{MANOVA|see{multivariate analysis of variance}}{171} -\indexentry{multivariate analysis of variance|)}{172} -\indexentry{principal components analysis|(}{173} -\indexentry{PCA|see {principal components analysis}}{173} -\indexentry{principal components analysis|)}{175} -\indexentry{multidimensional scaling|(}{175} -\indexentry{MDS|see {multidimensional scaling}}{175} -\indexentry{multidimensional scaling|)}{176} -\indexentry{cluster analysis|(}{176} -\indexentry{stats@\textsf {`stats'}}{176} -\indexentry{packages!stats@\textsf {`stats'}}{176} -\indexentry{cluster analysis|)}{178} -\indexentry{multivariate methods|)}{178} -\indexentry{further reading!statistics in R}{178} -\indexentry{extensions to R}{179} -\indexentry{CRAN}{180} -\indexentry{Bioconductor}{180} -\indexentry{ROpenScience}{180} -\indexentry{devtools@\textsf {`devtools'}}{180} -\indexentry{packages!devtools@\textsf {`devtools'}}{180} -\indexentry{GitHub}{180} -\indexentry{GitHub}{180} -\indexentry{Git@\textsf {Git}}{180} -\indexentry{programmes!Git@\textsf {Git}}{180} -\indexentry{RStudio@\textsf {RStudio}}{180} -\indexentry{programmes!RStudio@\textsf {RStudio}}{180} -\indexentry{C@\textsf {C}}{180} -\indexentry{languages!C@\textsf {C}}{180} -\indexentry{C++@\textsf {C++}}{180} -\indexentry{languages!C++@\textsf {C++}}{180} -\indexentry{FORTRAN@\textsf {FORTRAN}}{180} -\indexentry{languages!FORTRAN@\textsf {FORTRAN}}{180} -\indexentry{Java@\textsf {Java}}{180} -\indexentry{languages!Java@\textsf {Java}}{180} -\indexentry{Python@\textsf {Python}}{180} -\indexentry{languages!Python@\textsf {Python}}{180} -\indexentry{C++@\textsf {C++}}{180} -\indexentry{languages!C++@\textsf {C++}}{180} -\indexentry{Rcpp@\textsf {`Rcpp'}}{180} -\indexentry{packages!Rcpp@\textsf {`Rcpp'}}{180} -\indexentry{Python@\textsf {Python}}{180} -\indexentry{languages!Python@\textsf {Python}}{180} -\indexentry{reticulate@\textsf {`reticulate'}}{180} -\indexentry{packages!reticulate@\textsf {`reticulate'}}{180} -\indexentry{Python@\textsf {Python}}{180} -\indexentry{languages!Python@\textsf {Python}}{180} -\indexentry{RStudio@\textsf {RStudio}}{180} -\indexentry{programmes!RStudio@\textsf {RStudio}}{180} -\indexentry{Java@\textsf {Java}}{180} -\indexentry{languages!Java@\textsf {Java}}{180} -\indexentry{RJava@\textsf {`RJava'}}{180} -\indexentry{packages!RJava@\textsf {`RJava'}}{180} -\indexentry{C@\textsf {C}}{180} -\indexentry{languages!C@\textsf {C}}{180} -\indexentry{FORTRAN@\textsf {FORTRAN}}{180} -\indexentry{languages!FORTRAN@\textsf {FORTRAN}}{180} -\indexentry{packages!using}{181} -\indexentry{RStudio@\textsf {RStudio}}{181} -\indexentry{programmes!RStudio@\textsf {RStudio}}{181} -\indexentry{RStudio@\textsf {RStudio}}{181} -\indexentry{programmes!RStudio@\textsf {RStudio}}{181} -\indexentry{MS-Windows@\textsf {MS-Windows}}{181} -\indexentry{programmes!MS-Windows@\textsf {MS-Windows}}{181} -\indexentry{RTools@\textsf {RTools}}{181} -\indexentry{programmes!RTools@\textsf {RTools}}{181} -\indexentry{MiKTeX@\textsf {\hologoRobust {MiKTeX}}}{181} -\indexentry{programmes!MiKTeX@\textsf {\hologoRobust {MiKTeX}}}{181} -\indexentry{MS-Windows@\textsf {MS-Windows}}{181} -\indexentry{programmes!MS-Windows@\textsf {MS-Windows}}{181} -\indexentry{OS X@\textsf {OS X}}{181} -\indexentry{programmes!OS X@\textsf {OS X}}{181} -\indexentry{RStudio@\textsf {RStudio}}{181} -\indexentry{programmes!RStudio@\textsf {RStudio}}{181} -\indexentry{functions!defining new}{182} -\indexentry{operators!defining new}{182} -\indexentry{functions!arguments}{184} -\indexentry{data.table@\textsf {`data.table'}}{184} -\indexentry{packages!data.table@\textsf {`data.table'}}{184} -\indexentry{functions!defining new}{185} -\indexentry{operators!defining new}{188} -\indexentry{objects}{189} -\indexentry{classes}{189} -\indexentry{methods}{189} -\indexentry{object-oriented programming}{189} -\indexentry{S3 class system}{189} -\indexentry{classes!S3 class system}{189} -\indexentry{methods!S3 class system}{189} -\indexentry{generic method!S3 class system}{191} -\indexentry{names and scoping}{193} -\indexentry{scoping rules}{193} -\indexentry{namespaces}{193} -\indexentry{further reading!object oriented programming in R}{194} -\indexentry{further reading!package development}{194} -\indexentry{data.table@\textsf {`data.table'}}{196} -\indexentry{packages!data.table@\textsf {`data.table'}}{196} -\indexentry{data.table@\textsf {`data.table'}}{196} -\indexentry{packages!data.table@\textsf {`data.table'}}{196} -\indexentry{magrittr@\textsf {`magrittr'}}{196} -\indexentry{packages!magrittr@\textsf {`magrittr'}}{196} -\indexentry{wrapr@\textsf {`wrapr'}}{196} -\indexentry{packages!wrapr@\textsf {`wrapr'}}{196} -\indexentry{tibble@\textsf {`tibble'}}{196} -\indexentry{packages!tibble@\textsf {`tibble'}}{196} -\indexentry{dplyr@\textsf {`dplyr'}}{196} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{196} -\indexentry{dplyr@\textsf {`dplyr'}}{197} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{197} -\indexentry{tibble@\textsf {`tibble'}}{197} -\indexentry{packages!tibble@\textsf {`tibble'}}{197} -\indexentry{dplyr@\textsf {`dplyr'}}{197} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{197} -\indexentry{tidyr@\textsf {`tidyr'}}{197} -\indexentry{packages!tidyr@\textsf {`tidyr'}}{197} -\indexentry{tidyverse@\textsf {`tidyverse'}}{197} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{197} -\indexentry{tidyverse@\textsf {`tidyverse'}}{197} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{197} -\indexentry{data frame!replacements|(}{198} -\indexentry{data.table@\textsf {`data.table'}}{198} -\indexentry{packages!data.table@\textsf {`data.table'}}{198} -\indexentry{data.table@\textsf {`data.table'}}{198} -\indexentry{packages!data.table@\textsf {`data.table'}}{198} -\indexentry{data.table@\textsf {`data.table'}}{198} -\indexentry{packages!data.table@\textsf {`data.table'}}{198} -\indexentry{data.table@\textsf {`data.table'}}{198} -\indexentry{packages!data.table@\textsf {`data.table'}}{198} -\indexentry{tidyverse@\textsf {`tidyverse'}}{198} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{198} -\indexentry{data.table@\textsf {`data.table'}}{198} -\indexentry{packages!data.table@\textsf {`data.table'}}{198} -\indexentry{tidyverse@\textsf {`tidyverse'}}{198} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{198} -\indexentry{data.table@\textsf {`data.table'}}{198} -\indexentry{packages!data.table@\textsf {`data.table'}}{198} -\indexentry{tidyverse@\textsf {`tidyverse'}}{198} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{198} -\indexentry{tidyverse@\textsf {`tidyverse'}}{198} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{198} -\indexentry{data.table@\textsf {`data.table'}}{198} -\indexentry{packages!data.table@\textsf {`data.table'}}{198} -\indexentry{tibble@\textsf {`tibble'}}{198} -\indexentry{packages!tibble@\textsf {`tibble'}}{198} -\indexentry{tibble!differences with data frames|(}{198} -\indexentry{tibble@\textsf {`tibble'}}{198} -\indexentry{packages!tibble@\textsf {`tibble'}}{198} -\indexentry{tibble@\textsf {`tibble'}}{198} -\indexentry{packages!tibble@\textsf {`tibble'}}{198} -\indexentry{tidyverse@\textsf {`tidyverse'}}{198} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{198} -\indexentry{tidyverse@\textsf {`tidyverse'}}{203} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{203} -\indexentry{tibble!differences with data frames|)}{203} -\indexentry{data frame!replacements|)}{203} -\indexentry{chaining statements with \emph{pipes}|(}{204} -\indexentry{Unix@\textsf {Unix}}{204} -\indexentry{operating systems!Unix@\textsf {Unix}}{204} -\indexentry{Unix@\textsf {Unix}}{204} -\indexentry{operating systems!Unix@\textsf {Unix}}{204} -\indexentry{pipes!base R|(}{204} -\indexentry{pipe operator}{204} -\indexentry{pipes!base R|)}{205} -\indexentry{magrittr@\textsf {`magrittr'}}{205} -\indexentry{packages!magrittr@\textsf {`magrittr'}}{205} -\indexentry{pipes!tidyverse|(}{205} -\indexentry{pipe operator}{205} -\indexentry{magrittr@\textsf {`magrittr'}}{205} -\indexentry{packages!magrittr@\textsf {`magrittr'}}{205} -\indexentry{tidyverse@\textsf {`tidyverse'}}{205} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{205} -\indexentry{magrittr@\textsf {`magrittr'}}{205} -\indexentry{packages!magrittr@\textsf {`magrittr'}}{205} -\indexentry{dplyr@\textsf {`dplyr'}}{205} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{205} -\indexentry{magrittr@\textsf {`magrittr'}}{205} -\indexentry{packages!magrittr@\textsf {`magrittr'}}{205} -\indexentry{magrittr@\textsf {`magrittr'}}{205} -\indexentry{packages!magrittr@\textsf {`magrittr'}}{205} -\indexentry{pipes!tidyverse|)}{205} -\indexentry{wrapr@\textsf {`wrapr'}}{205} -\indexentry{packages!wrapr@\textsf {`wrapr'}}{205} -\indexentry{pipes!wrapr|(}{205} -\indexentry{dot-pipe operator}{205} -\indexentry{wrapr@\textsf {`wrapr'}}{205} -\indexentry{packages!wrapr@\textsf {`wrapr'}}{205} -\indexentry{magrittr@\textsf {`magrittr'}}{205} -\indexentry{packages!magrittr@\textsf {`magrittr'}}{205} -\indexentry{magrittr@\textsf {`magrittr'}}{206} -\indexentry{packages!magrittr@\textsf {`magrittr'}}{206} -\indexentry{magrittr@\textsf {`magrittr'}}{206} -\indexentry{packages!magrittr@\textsf {`magrittr'}}{206} -\indexentry{magrittr@\textsf {`magrittr'}}{206} -\indexentry{packages!magrittr@\textsf {`magrittr'}}{206} -\indexentry{wrapr@\textsf {`wrapr'}}{206} -\indexentry{packages!wrapr@\textsf {`wrapr'}}{206} -\indexentry{magrittr@\textsf {`magrittr'}}{207} -\indexentry{packages!magrittr@\textsf {`magrittr'}}{207} -\indexentry{pipes!expressions in rhs}{207} -\indexentry{wrapr@\textsf {`wrapr'}}{207} -\indexentry{packages!wrapr@\textsf {`wrapr'}}{207} -\indexentry{tidyverse@\textsf {`tidyverse'}}{208} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{208} -\indexentry{pipes!wrapr|)}{208} -\indexentry{chaining statements with \emph{pipes}|)}{208} -\indexentry{tidyr@\textsf {`tidyr'}}{208} -\indexentry{packages!tidyr@\textsf {`tidyr'}}{208} -\indexentry{reshaping tibbles|(}{208} -\indexentry{long-form- and wide-form tabular data}{208} -\indexentry{tidyverse@\textsf {`tidyverse'}}{208} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{208} -\indexentry{tidyverse@\textsf {`tidyverse'}}{208} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{208} -\indexentry{tidyr@\textsf {`tidyr'}}{208} -\indexentry{packages!tidyr@\textsf {`tidyr'}}{208} -\indexentry{reshape@\textsf {`reshape'}}{208} -\indexentry{packages!reshape@\textsf {`reshape'}}{208} -\indexentry{reshape2@\textsf {`reshape2'}}{208} -\indexentry{packages!reshape2@\textsf {`reshape2'}}{208} -\indexentry{tidyverse@\textsf {`tidyverse'}}{208} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{208} -\indexentry{function arguments in the tidyverse}{209} -\indexentry{seplyr@\textsf {`seplyr'}}{210} -\indexentry{packages!seplyr@\textsf {`seplyr'}}{210} -\indexentry{dplyr@\textsf {`dplyr'}}{210} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{210} -\indexentry{seplyr@\textsf {`seplyr'}}{210} -\indexentry{packages!seplyr@\textsf {`seplyr'}}{210} -\indexentry{tidyr@\textsf {`tidyr'}}{210} -\indexentry{packages!tidyr@\textsf {`tidyr'}}{210} -\indexentry{reshaping tibbles|)}{210} -\indexentry{dplyr@\textsf {`dplyr'}}{210} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{210} -\indexentry{data manipulation in the tidyverse|(}{210} -\indexentry{dplyr@\textsf {`dplyr'}}{210} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{210} -\indexentry{dtplyr@\textsf {`dtplyr'}}{210} -\indexentry{packages!dtplyr@\textsf {`dtplyr'}}{210} -\indexentry{dbplyr@\textsf {`dbplyr'}}{210} -\indexentry{packages!dbplyr@\textsf {`dbplyr'}}{210} -\indexentry{seplyr@\textsf {`seplyr'}}{210} -\indexentry{packages!seplyr@\textsf {`seplyr'}}{210} -\indexentry{dplyr@\textsf {`dplyr'}}{211} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{211} -\indexentry{tidyverse@\textsf {`tidyverse'}}{211} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{211} -\indexentry{tidyverse@\textsf {`tidyverse'}}{211} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{211} -\indexentry{tidyverse@\textsf {`tidyverse'}}{211} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{211} -\indexentry{poorman@\textsf {`poorman'}}{211} -\indexentry{packages!poorman@\textsf {`poorman'}}{211} -\indexentry{dplyr@\textsf {`dplyr'}}{211} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{211} -\indexentry{C++@\textsf {C++}}{211} -\indexentry{languages!C++@\textsf {C++}}{211} -\indexentry{C@\textsf {C}}{211} -\indexentry{languages!C@\textsf {C}}{211} -\indexentry{row-wise operations on data|(}{211} -\indexentry{dplyr@\textsf {`dplyr'}}{211} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{211} -\indexentry{stringr@\textsf {`stringr'}}{211} -\indexentry{packages!stringr@\textsf {`stringr'}}{211} -\indexentry{tidyverse@\textsf {`tidyverse'}}{212} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{212} -\indexentry{dplyr@\textsf {`dplyr'}}{213} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{213} -\indexentry{row-wise operations on data|)}{213} -\indexentry{group-wise operations on data|(}{214} -\indexentry{grouping!implementation in tidyverse}{214} -\indexentry{dplyr@\textsf {`dplyr'}}{216} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{216} -\indexentry{tidyr@\textsf {`tidyr'}}{216} -\indexentry{packages!tidyr@\textsf {`tidyr'}}{216} -\indexentry{group-wise operations on data|)}{216} -\indexentry{joins between data sources|(}{216} -\indexentry{merging data from two tibbles|(}{216} -\indexentry{dplyr@\textsf {`dplyr'}}{216} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{216} -\indexentry{joins between data sources!mutating}{216} -\indexentry{dplyr@\textsf {`dplyr'}}{216} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{216} -\indexentry{joins between data sources!filtering}{218} -\indexentry{dplyr@\textsf {`dplyr'}}{218} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{218} -\indexentry{merging data from two tibbles|)}{219} -\indexentry{joins between data sources|)}{219} -\indexentry{data manipulation in the tidyverse|)}{219} -\indexentry{further reading!new grammars of data}{219} -\indexentry{tidyverse@\textsf {`tidyverse'}}{219} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{219} -\indexentry{geometries ('ggplot2')|see{grammar of graphics, geometries}}{221} -\indexentry{statistics ('ggplot2')|see{grammar of graphics, statistics}}{221} -\indexentry{scales ('ggplot2')|see{grammar of graphics, scales}}{221} -\indexentry{coordinates ('ggplot2')|see{grammar of graphics, coordinates}}{221} -\indexentry{themes ('ggplot2')|see{grammar of graphics, themes}}{221} -\indexentry{facets ('ggplot2')|see{grammar of graphics, facets}}{221} -\indexentry{annotations ('ggplot2')|see{grammar of graphics, annotations}}{221} -\indexentry{aesthetics ('ggplot2')|see{grammar of graphics, aesthetics}}{221} -\indexentry{lattice@\textsf {`lattice'}}{221} -\indexentry{packages!lattice@\textsf {`lattice'}}{221} -\indexentry{ggplot2@\textsf {`ggplot2'}}{221} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{221} -\indexentry{grid@\textsf {`grid'}}{221} -\indexentry{packages!grid@\textsf {`grid'}}{221} -\indexentry{ggplot2@\textsf {`ggplot2'}}{221} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{221} -\indexentry{ggplot2@\textsf {`ggplot2'}}{221} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{221} -\indexentry{ggplot2@\textsf {`ggplot2'}}{221} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{221} -\indexentry{ggplot2@\textsf {`ggplot2'}}{221} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{221} -\indexentry{learnrbook@\textsf {`learnrbook'}}{221} -\indexentry{packages!learnrbook@\textsf {`learnrbook'}}{221} -\indexentry{grammar of graphics!elements|(}{222} -\indexentry{ggplot2@\textsf {`ggplot2'}}{222} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{222} -\indexentry{grammar of graphics}{222} -\indexentry{ggplot2@\textsf {`ggplot2'}}{222} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{222} -\indexentry{grammar of graphics!cartesian coordinates}{222} -\indexentry{ggplot2@\textsf {`ggplot2'}}{222} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{222} -\indexentry{ggplot2@\textsf {`ggplot2'}}{222} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{222} -\indexentry{ggplot2@\textsf {`ggplot2'}}{223} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{223} -\indexentry{plots!layers}{223} -\indexentry{ggplot2@\textsf {`ggplot2'}}{223} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{223} -\indexentry{grammar of graphics!data}{223} -\indexentry{ggplot2@\textsf {`ggplot2'}}{223} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{223} -\indexentry{grammar of graphics!mapping of data}{223} -\indexentry{plots!aesthetics}{223} -\indexentry{grammar of graphics!geometries}{224} -\indexentry{grammar of graphics!statistics}{224} -\indexentry{grammar of graphics!scales}{224} -\indexentry{grammar of graphics!coordinates}{225} -\indexentry{ggplot2@\textsf {`ggplot2'}}{225} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{225} -\indexentry{ggtern@\textsf {`ggtern'}}{225} -\indexentry{packages!ggtern@\textsf {`ggtern'}}{225} -\indexentry{grammar of graphics!themes}{225} -\indexentry{grammar of graphics!elements|)}{225} -\indexentry{grammar of graphics!plot construction|(}{225} -\indexentry{gginnards@\textsf {`gginnards'}}{228} -\indexentry{packages!gginnards@\textsf {`gginnards'}}{228} -\indexentry{grammar of graphics!cartesian coordinates}{230} -\indexentry{grammar of graphics!plot construction|)}{233} -\indexentry{grammar of graphics!plots as R objects|(}{233} -\indexentry{grammar of graphics!structure of plot objects|(}{233} -\indexentry{ggplot2@\textsf {`ggplot2'}}{233} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{233} -\indexentry{grammar of graphics!structure of plot objects|)}{233} -\indexentry{grammar of graphics!plots as R objects|)}{234} -\indexentry{grammar of graphics!mapping of data|(}{234} -\indexentry{grammar of graphics!aesthetics(}{234} -\indexentry{magritrr@\textsf {`magritrr'}}{235} -\indexentry{packages!magritrr@\textsf {`magritrr'}}{235} -\indexentry{wrapr@\textsf {`wrapr'}}{235} -\indexentry{packages!wrapr@\textsf {`wrapr'}}{235} -\indexentry{grammar of graphics!mapping of data!late}{236} -\indexentry{ggplot2@\textsf {`ggplot2'}}{236} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{236} -\indexentry{ggplot2@\textsf {`ggplot2'}}{236} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{236} -\indexentry{ggplot2@\textsf {`ggplot2'}}{236} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{236} -\indexentry{ggplot2@\textsf {`ggplot2'}}{236} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{236} -\indexentry{grammar of graphics!mapping of data|)}{238} -\indexentry{grammar of graphics!aesthetics)}{238} -\indexentry{grammar of graphics!geometries|(}{238} -\indexentry{ggplot2@\textsf {`ggplot2'}}{238} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{238} -\indexentry{ggplot2@\textsf {`ggplot2'}}{238} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{238} -\indexentry{grammar of graphics!point geometry|(}{238} -\indexentry{plots!scatter plot|(}{238} -\indexentry{scales@\textsf {`scales'}}{240} -\indexentry{packages!scales@\textsf {`scales'}}{240} -\indexentry{plots!scatter plot|)}{241} -\indexentry{plots!dot plot|(}{241} -\indexentry{plots!dot plot|)}{241} -\indexentry{plots!bubble plot|(}{241} -\indexentry{plots!bubble plot|)}{242} -\indexentry{grammar of graphics!point geometry|)}{243} -\indexentry{plots!rug marging|(}{243} -\indexentry{plots!rug marging|)}{243} -\indexentry{grammar of graphics!various line and path geometries|(}{244} -\indexentry{plots!line plot|(}{244} -\indexentry{plots!line plot|)}{244} -\indexentry{plots!step plot|(}{244} -\indexentry{plots!step plot|)}{244} -\indexentry{plots!filled-area plot|(}{245} -\indexentry{plots!filled-area plot|)}{245} -\indexentry{plots!reference lines|(}{245} -\indexentry{plots!reference lines|)}{246} -\indexentry{grammar of graphics!various line and path geometries|)}{246} -\indexentry{grammar of graphics!column geometry|(}{246} -\indexentry{plots!column plot|(}{246} -\indexentry{ggplot2@\textsf {`ggplot2'}}{246} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{246} -\indexentry{grammar of graphics!column geometry|)}{248} -\indexentry{plots!column plot|)}{248} -\indexentry{grammar of graphics!tile geometry|(}{248} -\indexentry{plots!tile plot|(}{248} -\indexentry{plots!tile plot|)}{249} -\indexentry{grammar of graphics!tile geometry|)}{249} -\indexentry{grammar of graphics!sf geometries|(}{250} -\indexentry{plots!maps and spatial plots|(}{250} -\indexentry{ggplot2@\textsf {`ggplot2'}}{250} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{250} -\indexentry{sf@\textsf {`sf'}}{250} -\indexentry{packages!sf@\textsf {`sf'}}{250} -\indexentry{grammar of graphics!sf geometries|)}{250} -\indexentry{plots!maps and spatial plots|)}{250} -\indexentry{grammar of graphics!text and label geometries|(}{250} -\indexentry{plots!text in|(}{250} -\indexentry{plots!maths in|(}{250} -\indexentry{ggplot2@\textsf {`ggplot2'}}{251} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{251} -\indexentry{plots!fonts}{251} -\indexentry{ggplot2@\textsf {`ggplot2'}}{251} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{251} -\indexentry{UNICODE}{251} -\indexentry{UTF8}{251} -\indexentry{portability}{251} -\indexentry{showtext@\textsf {`showtext'}}{251} -\indexentry{packages!showtext@\textsf {`showtext'}}{251} -\indexentry{extrafont@\textsf {`extrafont'}}{251} -\indexentry{packages!extrafont@\textsf {`extrafont'}}{251} -\indexentry{grammar of graphics!text and label geometries!repulsive}{254} -\indexentry{ggrepel@\textsf {`ggrepel'}}{254} -\indexentry{packages!ggrepel@\textsf {`ggrepel'}}{254} -\indexentry{plots!maths in|)}{254} -\indexentry{plots!text in|)}{254} -\indexentry{grammar of graphics!text and label geometries|)}{254} -\indexentry{grammar of graphics!inset-related geometries|(}{255} -\indexentry{plots!insets|(}{255} -\indexentry{ggplot2@\textsf {`ggplot2'}}{255} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{255} -\indexentry{ggpmisc@\textsf {`ggpmisc'}}{255} -\indexentry{packages!ggpmisc@\textsf {`ggpmisc'}}{255} -\indexentry{plots!inset tables|(}{255} -\indexentry{tibble@\textsf {`tibble'}}{255} -\indexentry{packages!tibble@\textsf {`tibble'}}{255} -\indexentry{tidyverse@\textsf {`tidyverse'}}{255} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{255} -\indexentry{gridExtra@\textsf {`gridExtra'}}{256} -\indexentry{packages!gridExtra@\textsf {`gridExtra'}}{256} -\indexentry{plots!inset tables|)}{256} -\indexentry{plots!inset plots|(}{256} -\indexentry{ggplot2@\textsf {`ggplot2'}}{257} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{257} -\indexentry{plots!inset plots|)}{258} -\indexentry{plots!inset graphical objects|(}{258} -\indexentry{grid@\textsf {`grid'}}{258} -\indexentry{packages!grid@\textsf {`grid'}}{258} -\indexentry{grid@\textsf {`grid'}}{258} -\indexentry{packages!grid@\textsf {`grid'}}{258} -\indexentry{plots!inset graphical objects|)}{259} -\indexentry{grid graphics coordinate systems}{259} -\indexentry{ggplot2@\textsf {`ggplot2'}}{259} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{259} -\indexentry{lattice@\textsf {`lattice'}}{259} -\indexentry{packages!lattice@\textsf {`lattice'}}{259} -\indexentry{ggplot2@\textsf {`ggplot2'}}{259} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{259} -\indexentry{ggpmisc@\textsf {`ggpmisc'}}{259} -\indexentry{packages!ggpmisc@\textsf {`ggpmisc'}}{259} -\indexentry{grammar of graphics!inset-related geometries|)}{259} -\indexentry{plots!insets|)}{259} -\indexentry{grammar of graphics!geometries|)}{259} -\indexentry{grammar of graphics!statistics|(}{260} -\indexentry{ggplot2@\textsf {`ggplot2'}}{260} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{260} -\indexentry{grammar of graphics!function statistic|(}{260} -\indexentry{plots!plots of functions|(}{260} -\indexentry{plots!plots of functions|)}{261} -\indexentry{grammar of graphics!function statistic|)}{261} -\indexentry{grammar of graphics!summary statistic|(}{261} -\indexentry{plots!data summaries|(}{261} -\indexentry{plots!means}{261} -\indexentry{plots!medians}{261} -\indexentry{plots!error bars}{261} -\indexentry{ggplot2@\textsf {`ggplot2'}}{262} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{262} -\indexentry{Hmisc@\textsf {`Hmisc'}}{262} -\indexentry{packages!Hmisc@\textsf {`Hmisc'}}{262} -\indexentry{plots!data summaries|)}{263} -\indexentry{grammar of graphics!summary statistic|)}{263} -\indexentry{plots!smooth curves|(}{264} -\indexentry{plots!fitted curves|(}{264} -\indexentry{plots!statistics!smooth}{264} -\indexentry{self-starting functions}{265} -\indexentry{ggpmisc@\textsf {`ggpmisc'}}{266} -\indexentry{packages!ggpmisc@\textsf {`ggpmisc'}}{266} -\indexentry{ggpmisc@\textsf {`ggpmisc'}}{267} -\indexentry{packages!ggpmisc@\textsf {`ggpmisc'}}{267} -\indexentry{broom@\textsf {`broom'}}{267} -\indexentry{packages!broom@\textsf {`broom'}}{267} -\indexentry{plots!smooth curves|)}{267} -\indexentry{plots!fitted curves|)}{267} -\indexentry{plots!histograms|(}{267} -\indexentry{plots!histograms|)}{270} -\indexentry{plots!density plot!1 dimension|(}{270} -\indexentry{plots!statistics!density}{270} -\indexentry{plots!density plot!1 dimension|)}{270} -\indexentry{plots!density plot!2 dimensions|(}{270} -\indexentry{plots!statistics!density 2d}{270} -\indexentry{plots!density plot!2 dimensions|)}{271} -\indexentry{box plots|see{plots, box and whiskers plot}}{271} -\indexentry{plots!box and whiskers plot|(}{271} -\indexentry{plots!box and whiskers plot|)}{272} -\indexentry{plots!violin plot|(}{272} -\indexentry{ggbeeswarm@\textsf {`ggbeeswarm'}}{273} -\indexentry{packages!ggbeeswarm@\textsf {`ggbeeswarm'}}{273} -\indexentry{ggforce@\textsf {`ggforce'}}{273} -\indexentry{packages!ggforce@\textsf {`ggforce'}}{273} -\indexentry{plots!violin plot|)}{273} -\indexentry{grammar of graphics!statistics|)}{273} -\indexentry{grammar of graphics!flipped axes(}{274} -\indexentry{grammar of graphics!swap axes}{274} -\indexentry{grammar of graphics!orientation}{274} -\indexentry{grammar of graphics!horizontal geometries}{274} -\indexentry{grammar of graphics!horizontal statistics}{274} -\indexentry{ggplot2@\textsf {`ggplot2'}}{274} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{274} -\indexentry{ggstance@\textsf {`ggstance'}}{274} -\indexentry{packages!ggstance@\textsf {`ggstance'}}{274} -\indexentry{ggstance@\textsf {`ggstance'}}{274} -\indexentry{packages!ggstance@\textsf {`ggstance'}}{274} -\indexentry{ggplot2@\textsf {`ggplot2'}}{274} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{274} -\indexentry{ggstance@\textsf {`ggstance'}}{274} -\indexentry{packages!ggstance@\textsf {`ggstance'}}{274} -\indexentry{ggplot2@\textsf {`ggplot2'}}{274} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{274} -\indexentry{ggstance@\textsf {`ggstance'}}{274} -\indexentry{packages!ggstance@\textsf {`ggstance'}}{274} -\indexentry{ggpmisc@\textsf {`ggpmisc'}}{278} -\indexentry{packages!ggpmisc@\textsf {`ggpmisc'}}{278} -\indexentry{ggplot2@\textsf {`ggplot2'}}{278} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{278} -\indexentry{plots!major axis regression}{279} -\indexentry{ggplot2@\textsf {`ggplot2'}}{279} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{279} -\indexentry{ggpmisc@\textsf {`ggpmisc'}}{279} -\indexentry{packages!ggpmisc@\textsf {`ggpmisc'}}{279} -\indexentry{grammar of graphics!flipped axes)}{280} -\indexentry{grammar of graphics!facets|(}{280} -\indexentry{plots!trellis-like}{280} -\indexentry{plots!coordinated panels}{280} -\indexentry{S@\textsf {S}}{280} -\indexentry{languages!S@\textsf {S}}{280} -\indexentry{lattice@\textsf {`lattice'}}{280} -\indexentry{packages!lattice@\textsf {`lattice'}}{280} -\indexentry{ggplot2@\textsf {`ggplot2'}}{280} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{280} -\indexentry{grammar of graphics!facets|)}{283} -\indexentry{grammar of graphics!scales|(}{283} -\indexentry{ggplot2@\textsf {`ggplot2'}}{284} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{284} -\indexentry{plots!labels|(}{285} -\indexentry{plots!title|(}{285} -\indexentry{plots!subtitle|(}{285} -\indexentry{plots!tag|(}{285} -\indexentry{plots!caption|(}{285} -\indexentry{plots!tag|)}{286} -\indexentry{plots!caption|)}{286} -\indexentry{plots!subtitle|)}{286} -\indexentry{plots!title|)}{286} -\indexentry{plots!labels|)}{286} -\indexentry{grammar of graphics!continuous scales|(}{286} -\indexentry{ggplot2@\textsf {`ggplot2'}}{288} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{288} -\indexentry{plots!scales!tick breaks}{288} -\indexentry{plots!scales!tick labels}{288} -\indexentry{scales@\textsf {`scales'}}{289} -\indexentry{packages!scales@\textsf {`scales'}}{289} -\indexentry{scales@\textsf {`scales'}}{289} -\indexentry{packages!scales@\textsf {`scales'}}{289} -\indexentry{plots!scales!transformations}{290} -\indexentry{plots!axis position}{292} -\indexentry{plots!secondary axes}{292} -\indexentry{grammar of graphics!continuous scales|)}{292} -\indexentry{grammar of graphics!time and date scales|(}{293} -\indexentry{lubridate@\textsf {`lubridate'}}{293} -\indexentry{packages!lubridate@\textsf {`lubridate'}}{293} -\indexentry{anytime@\textsf {`anytime'}}{293} -\indexentry{packages!anytime@\textsf {`anytime'}}{293} -\indexentry{plots!scales!axis labels}{293} -\indexentry{grammar of graphics!time and date scales|)}{294} -\indexentry{grammar of graphics!discrete scales|(}{294} -\indexentry{plots!scales!limits}{294} -\indexentry{grammar of graphics!discrete scales|)}{295} -\indexentry{grammar of graphics!size scales|(}{295} -\indexentry{grammar of graphics!size scales|)}{295} -\indexentry{grammar of graphics!color and fill scales|(}{295} -\indexentry{plots!with colors|(}{295} -\indexentry{color!definitions|(}{296} -\indexentry{color!names}{296} -\indexentry{ggplot2@\textsf {`ggplot2'}}{297} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{297} -\indexentry{color!definitions|)}{297} -\indexentry{grammar of graphics!binned scales|(}{298} -\indexentry{ggplot2@\textsf {`ggplot2'}}{298} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{298} -\indexentry{grammar of graphics!binned scales|)}{299} -\indexentry{grammar of graphics!identity color scales|(}{299} -\indexentry{grammar of graphics!identity color scales|)}{299} -\indexentry{plots!with colors|)}{299} -\indexentry{grammar of graphics!color and fill scales|)}{299} -\indexentry{grammar of graphics!scales|)}{299} -\indexentry{grammar of graphics!annotations|(}{299} -\indexentry{plots!insets as annotations|(}{300} -\indexentry{grid@\textsf {`grid'}}{300} -\indexentry{packages!grid@\textsf {`grid'}}{300} -\indexentry{plots!insets as annotations|)}{301} -\indexentry{grammar of graphics!annotations|)}{302} -\indexentry{grammar of graphics!polar coordinates|(}{302} -\indexentry{plots!circular|(}{302} -\indexentry{ggplot2@\textsf {`ggplot2'}}{302} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{302} -\indexentry{plots!wind rose|(}{302} -\indexentry{learnrbook@\textsf {`learnrbook'}}{303} -\indexentry{packages!learnrbook@\textsf {`learnrbook'}}{303} -\indexentry{plots!wind rose|)}{304} -\indexentry{plots!pie charts|(}{304} -\indexentry{plots!pie charts|)}{305} -\indexentry{plots!circular|)}{305} -\indexentry{grammar of graphics!polar coordinates|)}{305} -\indexentry{grammar of graphics!themes|(}{305} -\indexentry{plots!styling|(}{305} -\indexentry{ggplot2@\textsf {`ggplot2'}}{305} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{305} -\indexentry{ggplot2@\textsf {`ggplot2'}}{305} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{305} -\indexentry{ggplot2@\textsf {`ggplot2'}}{305} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{305} -\indexentry{grammar of graphics!complete themes|(}{305} -\indexentry{ggplot2@\textsf {`ggplot2'}}{306} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{306} -\indexentry{grammar of graphics!complete themes|)}{307} -\indexentry{grammar of graphics!incomplete themes|(}{307} -\indexentry{grammar of graphics!incomplete themes|)}{309} -\indexentry{grammar of graphics!creating a theme|(}{309} -\indexentry{ggplot2@\textsf {`ggplot2'}}{310} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{310} -\indexentry{ggplot2@\textsf {`ggplot2'}}{310} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{310} -\indexentry{ggplot2@\textsf {`ggplot2'}}{310} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{310} -\indexentry{ggplot2@\textsf {`ggplot2'}}{310} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{310} -\indexentry{ggplot2@\textsf {`ggplot2'}}{310} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{310} -\indexentry{ggplot2@\textsf {`ggplot2'}}{310} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{310} -\indexentry{ggplot2@\textsf {`ggplot2'}}{310} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{310} -\indexentry{grammar of graphics!creating a theme|)}{311} -\indexentry{plots!styling|)}{311} -\indexentry{grammar of graphics!themes|)}{311} -\indexentry{plots!composing|(}{311} -\indexentry{patchwork@\textsf {`patchwork'}}{311} -\indexentry{packages!patchwork@\textsf {`patchwork'}}{311} -\indexentry{ggplot2@\textsf {`ggplot2'}}{311} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{311} -\indexentry{patchwork@\textsf {`patchwork'}}{311} -\indexentry{packages!patchwork@\textsf {`patchwork'}}{311} -\indexentry{patchwork@\textsf {`patchwork'}}{312} -\indexentry{packages!patchwork@\textsf {`patchwork'}}{312} -\indexentry{plots!composing|)}{312} -\indexentry{plotmath}{312} -\indexentry{plots!math expressions|(}{312} -\indexentry{ggplot2@\textsf {`ggplot2'}}{313} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{313} -\indexentry{C@\textsf {C}}{316} -\indexentry{languages!C@\textsf {C}}{316} -\indexentry{C++@\textsf {C++}}{316} -\indexentry{languages!C++@\textsf {C++}}{316} -\indexentry{ggtext@\textsf {`ggtext'}}{317} -\indexentry{packages!ggtext@\textsf {`ggtext'}}{317} -\indexentry{HTML@\textsf {HTML}}{317} -\indexentry{languages!HTML@\textsf {HTML}}{317} -\indexentry{Markdown@\textsf {Markdown}}{317} -\indexentry{languages!Markdown@\textsf {Markdown}}{317} -\indexentry{ggplot2@\textsf {`ggplot2'}}{317} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{317} -\indexentry{plots!math expressions|)}{317} -\indexentry{plots!modular construction|(}{317} -\indexentry{grammar of graphics}{317} -\indexentry{plots!layers}{317} -\indexentry{plots!consistent styling}{318} -\indexentry{plots!programatic construction|(}{318} -\indexentry{ggplot2@\textsf {`ggplot2'}}{318} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{318} -\indexentry{plots!reusing parts of}{318} -\indexentry{plots!programatic construction|)}{320} -\indexentry{plots!modular construction|)}{320} -\indexentry{devices!output|see{graphic output devices}}{320} -\indexentry{plots!saving to file|see{plots, rendering}}{320} -\indexentry{graphic output devices|(}{320} -\indexentry{plots!rendering|(}{320} -\indexentry{RStudio@\textsf {RStudio}}{320} -\indexentry{programmes!RStudio@\textsf {RStudio}}{320} -\indexentry{plots!printing}{320} -\indexentry{plots!saving}{320} -\indexentry{plots!output to files}{320} -\indexentry{RStudio@\textsf {RStudio}}{320} -\indexentry{programmes!RStudio@\textsf {RStudio}}{320} -\indexentry{plots!PDF output}{320} -\indexentry{plots!Postscript output}{320} -\indexentry{plots!SVG output}{320} -\indexentry{plots!bitmap output}{320} -\indexentry{plots!rendering|)}{320} -\indexentry{graphic output devices|)}{320} -\indexentry{further reading!grammar of graphics}{321} -\indexentry{further reading!plotting}{321} -\indexentry{ggplot2@\textsf {`ggplot2'}}{321} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{321} -\indexentry{ggplot2@\textsf {`ggplot2'}}{321} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{321} -\indexentry{foreign@\textsf {`foreign'}}{323} -\indexentry{packages!foreign@\textsf {`foreign'}}{323} -\indexentry{learnrbook@\textsf {`learnrbook'}}{325} -\indexentry{packages!learnrbook@\textsf {`learnrbook'}}{325} -\indexentry{file names!portable}{325} -\indexentry{file operations|(}{325} -\indexentry{file names!script portability}{326} -\indexentry{file paths!script portability}{326} -\indexentry{folders|see{file paths}}{326} -\indexentry{file paths!parsing|(}{326} -\indexentry{Unix@\textsf {Unix}}{326} -\indexentry{programmes!Unix@\textsf {Unix}}{326} -\indexentry{Linux@\textsf {Linux}}{326} -\indexentry{programmes!Linux@\textsf {Linux}}{326} -\indexentry{MS-Windows@\textsf {MS-Windows}}{326} -\indexentry{programmes!MS-Windows@\textsf {MS-Windows}}{326} -\indexentry{file paths!parsing|)}{326} -\indexentry{working directory|(}{326} -\indexentry{working directory|)}{327} -\indexentry{listing files or directories|(}{327} -\indexentry{listing files or directories|)}{328} -\indexentry{file operations|)}{328} -\indexentry{C@\textsf {C}}{329} -\indexentry{languages!C@\textsf {C}}{329} -\indexentry{importing data!text files|(}{329} -\indexentry{readr@\textsf {`readr'}}{330} -\indexentry{packages!readr@\textsf {`readr'}}{330} -\indexentry{readr@\textsf {`readr'}}{330} -\indexentry{packages!readr@\textsf {`readr'}}{330} -\indexentry{MS-Excel@\textsf {MS-Excel}}{330} -\indexentry{programmes!MS-Excel@\textsf {MS-Excel}}{330} -\indexentry{tools@\textsf {`tools'}}{330} -\indexentry{packages!tools@\textsf {`tools'}}{330} -\indexentry{utils@\textsf {`utils'}}{331} -\indexentry{packages!utils@\textsf {`utils'}}{331} -\indexentry{text files!with field markers}{331} -\indexentry{FORTRAN@\textsf {FORTRAN}}{331} -\indexentry{languages!FORTRAN@\textsf {FORTRAN}}{331} -\indexentry{COBOL@\textsf {COBOL}}{331} -\indexentry{languages!COBOL@\textsf {COBOL}}{331} -\indexentry{utils@\textsf {`utils'}}{332} -\indexentry{packages!utils@\textsf {`utils'}}{332} -\indexentry{text files!fixed width fields}{333} -\indexentry{FORTRAN@\textsf {FORTRAN}}{333} -\indexentry{languages!FORTRAN@\textsf {FORTRAN}}{333} -\indexentry{FORTRAN@\textsf {FORTRAN}}{333} -\indexentry{languages!FORTRAN@\textsf {FORTRAN}}{333} -\indexentry{FORTRAN@\textsf {FORTRAN}}{333} -\indexentry{languages!FORTRAN@\textsf {FORTRAN}}{333} -\indexentry{importing data!text files|)}{334} -\indexentry{exporting data!text files|(}{334} -\indexentry{exporting data!text files|)}{335} -\indexentry{readr@\textsf {`readr'}}{335} -\indexentry{packages!readr@\textsf {`readr'}}{335} -\indexentry{importing data!text files|(}{335} -\indexentry{readr@\textsf {`readr'}}{335} -\indexentry{packages!readr@\textsf {`readr'}}{335} -\indexentry{tidyverse@\textsf {`tidyverse'}}{335} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{335} -\indexentry{readr@\textsf {`readr'}}{335} -\indexentry{packages!readr@\textsf {`readr'}}{335} -\indexentry{readr@\textsf {`readr'}}{335} -\indexentry{packages!readr@\textsf {`readr'}}{335} -\indexentry{readr@\textsf {`readr'}}{335} -\indexentry{packages!readr@\textsf {`readr'}}{335} -\indexentry{readr@\textsf {`readr'}}{336} -\indexentry{packages!readr@\textsf {`readr'}}{336} -\indexentry{readr@\textsf {`readr'}}{336} -\indexentry{packages!readr@\textsf {`readr'}}{336} -\indexentry{readr@\textsf {`readr'}}{337} -\indexentry{packages!readr@\textsf {`readr'}}{337} -\indexentry{utils@\textsf {`utils'}}{338} -\indexentry{packages!utils@\textsf {`utils'}}{338} -\indexentry{readr@\textsf {`readr'}}{338} -\indexentry{packages!readr@\textsf {`readr'}}{338} -\indexentry{utils@\textsf {`utils'}}{338} -\indexentry{packages!utils@\textsf {`utils'}}{338} -\indexentry{readr@\textsf {`readr'}}{338} -\indexentry{packages!readr@\textsf {`readr'}}{338} -\indexentry{readr@\textsf {`readr'}}{338} -\indexentry{packages!readr@\textsf {`readr'}}{338} -\indexentry{utils@\textsf {`utils'}}{338} -\indexentry{packages!utils@\textsf {`utils'}}{338} -\indexentry{importing data!text files|)}{339} -\indexentry{exporting data!text files|(}{339} -\indexentry{readr@\textsf {`readr'}}{339} -\indexentry{packages!readr@\textsf {`readr'}}{339} -\indexentry{utils@\textsf {`utils'}}{339} -\indexentry{packages!utils@\textsf {`utils'}}{339} -\indexentry{readr@\textsf {`readr'}}{339} -\indexentry{packages!readr@\textsf {`readr'}}{339} -\indexentry{MS-Excel@\textsf {MS-Excel}}{339} -\indexentry{programmes!MS-Excel@\textsf {MS-Excel}}{339} -\indexentry{MS-Excel@\textsf {MS-Excel}}{339} -\indexentry{programmes!MS-Excel@\textsf {MS-Excel}}{339} -\indexentry{exporting data!text files|)}{340} -\indexentry{importing data!XML and HTML files|(}{340} -\indexentry{XML@\textsf {XML}}{340} -\indexentry{languages!XML@\textsf {XML}}{340} -\indexentry{XHTML@\textsf {XHTML}}{341} -\indexentry{languages!XHTML@\textsf {XHTML}}{341} -\indexentry{HTML@\textsf {HTML}}{341} -\indexentry{languages!HTML@\textsf {HTML}}{341} -\indexentry{xml2@\textsf {`xml2'}}{341} -\indexentry{packages!xml2@\textsf {`xml2'}}{341} -\indexentry{xml2@\textsf {`xml2'}}{341} -\indexentry{packages!xml2@\textsf {`xml2'}}{341} -\indexentry{XTML@\textsf {XTML}}{341} -\indexentry{languages!XTML@\textsf {XTML}}{341} -\indexentry{HTML@\textsf {HTML}}{341} -\indexentry{languages!HTML@\textsf {HTML}}{341} -\indexentry{XML@\textsf {XML}}{343} -\indexentry{languages!XML@\textsf {XML}}{343} -\indexentry{importing data!XML and HTML files|)}{343} -\indexentry{importing data!GPX files|(}{343} -\indexentry{sf@\textsf {`sf'}}{343} -\indexentry{packages!sf@\textsf {`sf'}}{343} -\indexentry{importing data!GPX files|)}{344} -\indexentry{importing data!worksheets and workbooks|(}{344} -\indexentry{MS-Excel@\textsf {MS-Excel}}{344} -\indexentry{programmes!MS-Excel@\textsf {MS-Excel}}{344} -\indexentry{MS-Excel@\textsf {MS-Excel}}{344} -\indexentry{programmes!MS-Excel@\textsf {MS-Excel}}{344} -\indexentry{MS-Excel@\textsf {MS-Excel}}{344} -\indexentry{programmes!MS-Excel@\textsf {MS-Excel}}{344} -\indexentry{Excel@\textsf {Excel}}{344} -\indexentry{programmes!Excel@\textsf {Excel}}{344} -\indexentry{readr@\textsf {`readr'}}{345} -\indexentry{packages!readr@\textsf {`readr'}}{345} -\indexentry{RStudio@\textsf {RStudio}}{345} -\indexentry{programmes!RStudio@\textsf {RStudio}}{345} -\indexentry{Notepad@\textsf {Notepad}}{345} -\indexentry{programmes!Notepad@\textsf {Notepad}}{345} -\indexentry{Nano@\textsf {Nano}}{345} -\indexentry{programmes!Nano@\textsf {Nano}}{345} -\indexentry{Emacs@\textsf {Emacs}}{345} -\indexentry{programmes!Emacs@\textsf {Emacs}}{345} -\indexentry{readxl@\textsf {`readxl'}}{345} -\indexentry{packages!readxl@\textsf {`readxl'}}{345} -\indexentry{importing data!.xlsx files|(}{345} -\indexentry{readxl@\textsf {`readxl'}}{345} -\indexentry{packages!readxl@\textsf {`readxl'}}{345} -\indexentry{MS-Excel@\textsf {MS-Excel}}{345} -\indexentry{programmes!MS-Excel@\textsf {MS-Excel}}{345} -\indexentry{MS-Excel@\textsf {MS-Excel}}{345} -\indexentry{programmes!MS-Excel@\textsf {MS-Excel}}{345} -\indexentry{MS-Excel@\textsf {MS-Excel}}{345} -\indexentry{programmes!MS-Excel@\textsf {MS-Excel}}{345} -\indexentry{tidyverse@\textsf {`tidyverse'}}{346} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{346} -\indexentry{readr@\textsf {`readr'}}{347} -\indexentry{packages!readr@\textsf {`readr'}}{347} -\indexentry{xlsx@\textsf {`xlsx'}}{347} -\indexentry{packages!xlsx@\textsf {`xlsx'}}{347} -\indexentry{xlsx@\textsf {`xlsx'}}{347} -\indexentry{packages!xlsx@\textsf {`xlsx'}}{347} -\indexentry{MS-Excel@\textsf {MS-Excel}}{347} -\indexentry{programmes!MS-Excel@\textsf {MS-Excel}}{347} -\indexentry{readr@\textsf {`readr'}}{347} -\indexentry{packages!readr@\textsf {`readr'}}{347} -\indexentry{importing data!.xlsx files|)}{348} -\indexentry{readODS@\textsf {`readODS'}}{348} -\indexentry{packages!readODS@\textsf {`readODS'}}{348} -\indexentry{importing data!.ods files|(}{348} -\indexentry{readODS@\textsf {`readODS'}}{348} -\indexentry{packages!readODS@\textsf {`readODS'}}{348} -\indexentry{importing data!.ods files|)}{349} -\indexentry{importing data!worksheets and workbooks|)}{349} -\indexentry{importing data!other statistical software|(}{349} -\indexentry{foreign@\textsf {`foreign'}}{349} -\indexentry{packages!foreign@\textsf {`foreign'}}{349} -\indexentry{haven@\textsf {`haven'}}{349} -\indexentry{packages!haven@\textsf {`haven'}}{349} -\indexentry{foreign@\textsf {`foreign'}}{349} -\indexentry{packages!foreign@\textsf {`foreign'}}{349} -\indexentry{haven@\textsf {`haven'}}{349} -\indexentry{packages!haven@\textsf {`haven'}}{349} -\indexentry{foreign@\textsf {`foreign'}}{349} -\indexentry{packages!foreign@\textsf {`foreign'}}{349} -\indexentry{foreign@\textsf {`foreign'}}{349} -\indexentry{packages!foreign@\textsf {`foreign'}}{349} -\indexentry{SAS@\textsf {SAS}}{349} -\indexentry{programmes!SAS@\textsf {SAS}}{349} -\indexentry{Stata@\textsf {Stata}}{349} -\indexentry{programmes!Stata@\textsf {Stata}}{349} -\indexentry{SPPS@\textsf {SPPS}}{349} -\indexentry{programmes!SPPS@\textsf {SPPS}}{349} -\indexentry{Systat@\textsf {Systat}}{349} -\indexentry{programmes!Systat@\textsf {Systat}}{349} -\indexentry{Octave@\textsf {Octave}}{349} -\indexentry{programmes!Octave@\textsf {Octave}}{349} -\indexentry{SAS@\textsf {SAS}}{349} -\indexentry{programmes!SAS@\textsf {SAS}}{349} -\indexentry{Stata@\textsf {Stata}}{349} -\indexentry{programmes!Stata@\textsf {Stata}}{349} -\indexentry{SPPS@\textsf {SPPS}}{349} -\indexentry{programmes!SPPS@\textsf {SPPS}}{349} -\indexentry{SPSS@\textsf {SPSS}}{349} -\indexentry{programmes!SPSS@\textsf {SPSS}}{349} -\indexentry{Systat@\textsf {Systat}}{350} -\indexentry{programmes!Systat@\textsf {Systat}}{350} -\indexentry{foreign@\textsf {`foreign'}}{350} -\indexentry{packages!foreign@\textsf {`foreign'}}{350} -\indexentry{haven@\textsf {`haven'}}{350} -\indexentry{packages!haven@\textsf {`haven'}}{350} -\indexentry{haven@\textsf {`haven'}}{350} -\indexentry{packages!haven@\textsf {`haven'}}{350} -\indexentry{SAS@\textsf {SAS}}{350} -\indexentry{programmes!SAS@\textsf {SAS}}{350} -\indexentry{Stata@\textsf {Stata}}{350} -\indexentry{programmes!Stata@\textsf {Stata}}{350} -\indexentry{SPSS@\textsf {SPSS}}{350} -\indexentry{programmes!SPSS@\textsf {SPSS}}{350} -\indexentry{haven@\textsf {`haven'}}{350} -\indexentry{packages!haven@\textsf {`haven'}}{350} -\indexentry{SPSS@\textsf {SPSS}}{350} -\indexentry{programmes!SPSS@\textsf {SPSS}}{350} -\indexentry{SPSS@\textsf {SPSS}}{350} -\indexentry{programmes!SPSS@\textsf {SPSS}}{350} -\indexentry{SPSS@\textsf {SPSS}}{350} -\indexentry{programmes!SPSS@\textsf {SPSS}}{350} -\indexentry{Python@\textsf {Python}}{351} -\indexentry{languages!Python@\textsf {Python}}{351} -\indexentry{importing data!other statistical software|)}{351} -\indexentry{importing data!NeCDF files|(}{351} -\indexentry{NetCDF@\textsf {NetCDF}}{351} -\indexentry{programmes!NetCDF@\textsf {NetCDF}}{351} -\indexentry{NetCDF@\textsf {NetCDF}}{351} -\indexentry{programmes!NetCDF@\textsf {NetCDF}}{351} -\indexentry{NetCDF@\textsf {NetCDF}}{351} -\indexentry{programmes!NetCDF@\textsf {NetCDF}}{351} -\indexentry{NetCDF@\textsf {NetCDF}}{351} -\indexentry{programmes!NetCDF@\textsf {NetCDF}}{351} -\indexentry{ncdf4@\textsf {`ncdf4'}}{351} -\indexentry{packages!ncdf4@\textsf {`ncdf4'}}{351} -\indexentry{RNetCDF@\textsf {`RNetCDF'}}{351} -\indexentry{packages!RNetCDF@\textsf {`RNetCDF'}}{351} -\indexentry{NetCDF@\textsf {NetCDF}}{351} -\indexentry{programmes!NetCDF@\textsf {NetCDF}}{351} -\indexentry{ncdf4@\textsf {`ncdf4'}}{352} -\indexentry{packages!ncdf4@\textsf {`ncdf4'}}{352} -\indexentry{ncdf4@\textsf {`ncdf4'}}{352} -\indexentry{packages!ncdf4@\textsf {`ncdf4'}}{352} -\indexentry{netCDF@\textsf {netCDF}}{352} -\indexentry{programmes!netCDF@\textsf {netCDF}}{352} -\indexentry{ncdf4@\textsf {`ncdf4'}}{352} -\indexentry{packages!ncdf4@\textsf {`ncdf4'}}{352} -\indexentry{lubridate@\textsf {`lubridate'}}{353} -\indexentry{packages!lubridate@\textsf {`lubridate'}}{353} -\indexentry{tidync@\textsf {`tidync'}}{353} -\indexentry{packages!tidync@\textsf {`tidync'}}{353} -\indexentry{tidync@\textsf {`tidync'}}{353} -\indexentry{packages!tidync@\textsf {`tidync'}}{353} -\indexentry{NetCDF@\textsf {NetCDF}}{353} -\indexentry{programmes!NetCDF@\textsf {NetCDF}}{353} -\indexentry{wrapr@\textsf {`wrapr'}}{354} -\indexentry{packages!wrapr@\textsf {`wrapr'}}{354} -\indexentry{dplyr@\textsf {`dplyr'}}{354} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{354} -\indexentry{importing data!NeCDF files|)}{355} -\indexentry{importing data!remote connections|(}{355} -\indexentry{readr@\textsf {`readr'}}{356} -\indexentry{packages!readr@\textsf {`readr'}}{356} -\indexentry{readxl@\textsf {`readxl'}}{356} -\indexentry{packages!readxl@\textsf {`readxl'}}{356} -\indexentry{xlsx@\textsf {`xlsx'}}{356} -\indexentry{packages!xlsx@\textsf {`xlsx'}}{356} -\indexentry{utils@\textsf {`utils'}}{356} -\indexentry{packages!utils@\textsf {`utils'}}{356} -\indexentry{MS-Excel@\textsf {MS-Excel}}{356} -\indexentry{programmes!MS-Excel@\textsf {MS-Excel}}{356} -\indexentry{MS-Windows@\textsf {MS-Windows}}{356} -\indexentry{operating systems!MS-Windows@\textsf {MS-Windows}}{356} -\indexentry{foreign@\textsf {`foreign'}}{356} -\indexentry{packages!foreign@\textsf {`foreign'}}{356} -\indexentry{haven@\textsf {`haven'}}{356} -\indexentry{packages!haven@\textsf {`haven'}}{356} -\indexentry{ncdf4@\textsf {`ncdf4'}}{356} -\indexentry{packages!ncdf4@\textsf {`ncdf4'}}{356} -\indexentry{NetCDF@\textsf {NetCDF}}{357} -\indexentry{programmes!NetCDF@\textsf {NetCDF}}{357} -\indexentry{MS-Windows@\textsf {MS-Windows}}{357} -\indexentry{operating systems!MS-Windows@\textsf {MS-Windows}}{357} -\indexentry{importing data!remote connections|)}{357} -\indexentry{importing data!physical devices|(}{357} -\indexentry{internet-of-things}{357} -\indexentry{jsonlite@\textsf {`jsonlite'}}{357} -\indexentry{packages!jsonlite@\textsf {`jsonlite'}}{357} -\indexentry{importing data!jsonlite}{357} -\indexentry{YoctoPuce modules}{357} -\indexentry{jsonlite@\textsf {`jsonlite'}}{357} -\indexentry{packages!jsonlite@\textsf {`jsonlite'}}{357} -\indexentry{reticulate@\textsf {`reticulate'}}{358} -\indexentry{packages!reticulate@\textsf {`reticulate'}}{358} -\indexentry{Python@\textsf {Python}}{358} -\indexentry{languages!Python@\textsf {Python}}{358} -\indexentry{importing data!physical devices|)}{358} -\indexentry{importing data!databases|(}{358} -\indexentry{dbplyr@\textsf {`dbplyr'}}{358} -\indexentry{packages!dbplyr@\textsf {`dbplyr'}}{358} -\indexentry{dplyr@\textsf {`dplyr'}}{358} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{358} -\indexentry{dplyr@\textsf {`dplyr'}}{358} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{358} -\indexentry{RSQLite@\textsf {`RSQLite'}}{358} -\indexentry{packages!RSQLite@\textsf {`RSQLite'}}{358} -\indexentry{SQLite@\textsf {SQLite}}{358} -\indexentry{programmes!SQLite@\textsf {SQLite}}{358} -\indexentry{dbplyr@\textsf {`dbplyr'}}{358} -\indexentry{packages!dbplyr@\textsf {`dbplyr'}}{358} -\indexentry{learnrbook@\textsf {`learnrbook'}}{358} -\indexentry{packages!learnrbook@\textsf {`learnrbook'}}{358} -\indexentry{dbplyr@\textsf {`dbplyr'}}{359} -\indexentry{packages!dbplyr@\textsf {`dbplyr'}}{359} -\indexentry{dplyr@\textsf {`dplyr'}}{359} -\indexentry{packages!dplyr@\textsf {`dplyr'}}{359} -\indexentry{importing data!databases|)}{359} -\indexentry{further reading!elegant R code}{359} -\indexentry{further reading!idiosyncracies or R}{359} +\indexentry{iteration}{23} +\indexentry{loops!faster alternatives|(}{23} +\indexentry{microbenchmark@\textsf {`microbenchmark'}}{23} +\indexentry{packages!microbenchmark@\textsf {`microbenchmark'}}{23} +\indexentry{loops!faster alternatives|)}{24} +\indexentry{iteration!nesting of loops}{24} +\indexentry{nested iteration loops}{24} +\indexentry{loops!nested}{24} +\indexentry{apply functions}{25} +\indexentry{apply functions}{26} +\indexentry{loops!faster alternatives}{26} +\indexentry{C@\textsf {C}}{32} +\indexentry{languages!C@\textsf {C}}{32} +\indexentry{object names}{33} +\indexentry{object names!as character strings}{33} +\indexentry{tidyverse@\textsf {`tidyverse'}}{36} +\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{36} +\indexentry{further reading!the R language}{37} diff --git a/using-r-main-crc.ilg b/using-r-main-crc.ilg index a5109180..c35b3934 100644 --- a/using-r-main-crc.ilg +++ b/using-r-main-crc.ilg @@ -1,24 +1,6 @@ This is makeindex, version 2.16 [MiKTeX 22.8]. -Scanning input file using-r-main-crc.idx.... -!! Input index error (file = using-r-main-crc.idx, line = 45): - -- Extra `@' at position 42 of first argument. - -!! Input index error (file = using-r-main-crc.idx, line = 317): - -- Extra `!' at position 32 of first argument. - -!! Input index error (file = using-r-main-crc.idx, line = 452): - -- Extra `!' at position 31 of first argument. - -!! Input index error (file = using-r-main-crc.idx, line = 471): - -- Extra `!' at position 36 of first argument. - -!! Input index error (file = using-r-main-crc.idx, line = 477): - -- Extra `!' at position 39 of first argument. - -!! Input index error (file = using-r-main-crc.idx, line = 490): - -- Extra `!' at position 41 of first argument. -.done (1556 entries accepted, 6 rejected). -Sorting entries................done (18373 comparisons). -Generating output file using-r-main-crc.ind.....done (766 lines written, 0 warnings). +Scanning input file using-r-main-crc.idx....done (79 entries accepted, 0 rejected). +Sorting entries....done (522 comparisons). +Generating output file using-r-main-crc.ind....done (107 lines written, 0 warnings). Output written in using-r-main-crc.ind. Transcript written in using-r-main-crc.ilg. diff --git a/using-r-main-crc.ind b/using-r-main-crc.ind index 61939389..bca859b4 100644 --- a/using-r-main-crc.ind +++ b/using-r-main-crc.ind @@ -1,766 +1,107 @@ \begin{theindex} - \item aesthetics ('ggplot2'), - \see{grammar of graphics, aesthetics}{221} - \item algebra of sets, 37 - \item analysis of variance - \subitem model formula, 164 - \item ANCOVA, \see{analysis of covariance}{153} - \item annotations ('ggplot2'), - \see{grammar of graphics, annotations}{221} - \item ANOVA, \see{analysis of variance}{149} - \item \textsf {`anytime'}, 293 - \item apply functions, 121, 122 - \item arithmetic overflow, 35 - \subitem type promotion, 36 - \item arrays, 53--59 - \subitem dimensions, 57 - \item assignment, 20 - \subitem chaining, 21 - \subitem leftwise, 21 - \item attributes, 83--85 + \item apply functions, 25, 26 \indexspace - \item {base \Rlang}, 3 - \item \textsf {bash}, 16 - \item batch job, 7 - \item \textsf {Bio7}, 15 - \item Bioconductor, 180 - \item \textsf {`blogdown'}, 100 - \item \textsf {`bookdown'}, 100 - \item Boolean arithmetic, 29 - \item box plots, \see{plots, box and whiskers plot}{271} - \item \textsf {`broom'}, 267 + \item \textsf {`blogdown'}, 6 + \item \textsf {`bookdown'}, 6 \indexspace - \item \textsf {C}, 16, 22, 41, 46, 48, 66, 127, 180, 211, 316, 329 - \item \textsf {C++}, 2, 4, 16, 41, 48, 180, 211, 316 - \item categorical variables, \see{factors}{59} - \item chaining statements with \emph{pipes}, 204--208 - \item character escape codes, 42 - \item character string delimiters, 42 - \item character strings, 41 - \item chemical reaction kinetics, 157 - \item classes, 189 - \subitem S3 class system, 189 - \item classes and modes - \subitem character, 41--42 - \subitem logical, 29--37 - \subitem numeric, integer, double, 18--29 - \item cluster analysis, 176--178 - \item \textsf {COBOL}, 331 - \item color - \subitem definitions, 296--297 - \subitem names, 296 - \item comparison of floating point numbers, 36--37 - \item comparison operators, 32--37 - \item compound code statements, 103 - \item conditional execution, 103 - \item conditional statements, 104 - \item console, 5 - \item control of execution flow, 102 - \item coordinates ('ggplot2'), - \see{grammar of graphics, coordinates}{221} - \item correlation, 139--141 - \subitem Kendall, 141 - \subitem non-parametric, 141 - \subitem parametric, 139 - \subitem Pearson, 139 - \subitem Spearman, 141 - \item CRAN, 180 + \item \textsf {C}, 32 + \item compound code statements, 9 + \item conditional execution, 9 + \item conditional statements, 10 + \item control of execution flow, 8 \indexspace - \item data - \subitem exploration at the R console, 88--93 - \subitem loading data sets, 85 - \item data frame - \subitem replacements, 198--203 - \item data frames, 69--82 - \subitem ``filtering rows'', 77 - \subitem attaching, 80 - \subitem operating within, 77 - \subitem ordering columns, 81 - \subitem ordering rows, 81, 82 - \subitem subsetting, 77 - \item data manipulation in the tidyverse, 210--219 - \item \textsf {`data.table'}, 184, 196, 198 - \item \textsf {`dbplyr'}, 210, 358, 359 - \item deleting objects, \see {removing objects}{25} - \item devices - \subitem output, \see{graphic output devices}{320} - \item \textsf {`devtools'}, 180 - \item distributions, 134--139 - \subitem density from parameters, 135 - \subitem probabilities from quantiles, 136 - \subitem pseudo-random draws, 137 - \subitem quantiles from probabilities, 136 - \item dot-pipe operator, 205 - \item \textsf {`dplyr'}, 196, 197, 205, 210, 211, 213, 216, 218, 354, - 358, 359 - \item \textsf {`dtplyr'}, 210 - - \indexspace - - \item \textsf {Eclipse}, 15 - \item editor for R scripts, 15 - \item \textsf {Emacs}, 5, 15, 345 - \item EPS ($\epsilon$), \see{machine arithmetic precision}{34} - \item \textsf {Excel}, 344 - \item exporting data - \subitem text files, 334--335, 339--340 - \item extensions to R, 179 - \item \textsf {`extrafont'}, 251 - - \indexspace - - \item facets ('ggplot2'), \see{grammar of graphics, facets}{221} - \item factors, 59--65 - \subitem arrange values, 64 - \subitem convert to numeric, 61 - \subitem drop unused levels, 60 - \subitem labels, 60 - \subitem levels, 60 - \subitem merge levels, 63 - \subitem ordered, 59 - \subitem rename levels, 62 - \subitem reorder levels, 63 - \subitem reorder values, 64 - \item file names - \subitem portable, 325 - \subitem script portability, 326 - \item file operations, 325--328 - \item file paths - \subitem parsing, 326 - \subitem script portability, 326 - \item floating point numbers - \subitem arithmetic, 34--36 - \item floats, \see{floating point numbers}{34} - \item folders, \see{file paths}{326} - \item for loop, 113 - \item \textsf {`foreign'}, 85, 323, 349, 350, 356 - \item formatted character strings from numbers, 45 - \item \textsf {FORTRAN}, 180, 331, 333 - \item function arguments in the tidyverse, 209 - \item functions - \subitem arguments, 184 - \subitem base R, 133 - \subitem defining new, 182, 185 + \item for loop, 18 \item further reading - \subitem elegant R code, 359 - \subitem grammar of graphics, 321 - \subitem idiosyncracies or R, 359 - \subitem new grammars of data, 219 - \subitem object oriented programming in R, 194 - \subitem package development, 194 - \subitem plotting, 321 - \subitem shell scripts in Unix and Linux, 16 - \subitem statistics in R, 178 - \subitem the R language, 132 - \subitem using the R language, 93 - - \indexspace - - \item generalized linear models, 153--156 - \item generic method - \subitem S3 class system, 191 - \item geometries ('ggplot2'), - \see{grammar of graphics, geometries}{221} - \item \textsf {`ggbeeswarm'}, 273 - \item \textsf {`ggforce'}, 273 - \item \textsf {`gginnards'}, 228 - \item \textsf {`ggplot2'}, 90, 221--223, 225, 233, 236, 238, 246, - 250, 251, 255, 257, 259, 260, 262, 274, 278--280, 284, - 288, 297, 298, 302, 305, 306, 310, 311, 313, 317, 318, - 321 - \item \textsf {`ggpmisc'}, 255, 259, 266, 267, 278, 279 - \item \textsf {`ggrepel'}, 254 - \item \textsf {`ggstance'}, 274 - \item \textsf {`ggtern'}, 225 - \item \textsf {`ggtext'}, 317 - \item \textsf {Git}, 16, 180 - \item GitHub, 180 - \item GLM, \see{generalized linear models}{153} - \item \textsf {Gnu S}, 3 - \item grammar of graphics, 222, 317 - \subitem aesthetics(, 234 - \subitem aesthetics), 238 - \subitem annotations, 299--302 - \subitem binned scales, 298--299 - \subitem cartesian coordinates, 222, 230 - \subitem color and fill scales, 295--299 - \subitem column geometry, 246--248 - \subitem complete themes, 305--307 - \subitem continuous scales, 286--292 - \subitem coordinates, 225 - \subitem creating a theme, 309--311 - \subitem data, 223 - \subitem discrete scales, 294--295 - \subitem elements, 222--225 - \subitem facets, 280--283 - \subitem flipped axes(, 274 - \subitem flipped axes), 280 - \subitem function statistic, 260--261 - \subitem geometries, 224, 238--259 - \subitem horizontal geometries, 274 - \subitem horizontal statistics, 274 - \subitem identity color scales, 299 - \subitem incomplete themes, 307--309 - \subitem inset-related geometries, 255--259 - \subitem mapping of data, 223, 234--238 - \subsubitem late, 236 - \subitem orientation, 274 - \subitem plot construction, 225--233 - \subitem plots as R objects, 233--234 - \subitem point geometry, 238--243 - \subitem polar coordinates, 302--305 - \subitem scales, 224, 283--299 - \subitem sf geometries, 250 - \subitem size scales, 295 - \subitem statistics, 224, 260--273 - \subitem structure of plot objects, 233 - \subitem summary statistic, 261--263 - \subitem swap axes, 274 - \subitem text and label geometries, 250--254 - \subsubitem repulsive, 254 - \subitem themes, 225, 305--311 - \subitem tile geometry, 248--249 - \subitem time and date scales, 293--294 - \subitem various line and path geometries, 244--246 - \item graphic output devices, 320 - \item \textsf {`grid'}, 221, 258, 300 - \item grid graphics coordinate systems, 259 - \item \textsf {`gridExtra'}, 256 - \item group-wise operations on data, 214--216 - \item grouping - \subitem implementation in tidyverse, 214 + \subitem the R language, 37 \indexspace - \item \textsf {`haven'}, 349, 350, 356 - \item \textsf {`Hmisc'}, 262 - \item \textsf {HTML}, 317, 341 + \item iteration, 23 + \subitem for loop, 18 + \subitem nesting of loops, 24 + \subitem repeat loop, 22 + \subitem while loop, 21 \indexspace - \item IDE, \see{integrated development environment}{8} - \item IDE for R, 15 - \item \textsf {ImageJ}, 15 - \item importing data - \subitem .ods files, 348--349 - \subitem .xlsx files, 345--348 - \subitem databases, 358--359 - \subitem GPX files, 343--344 - \subitem jsonlite, 357 - \subitem NeCDF files, 351--355 - \subitem other statistical software, 349--351 - \subitem physical devices, 357--358 - \subitem remote connections, 355--357 - \subitem text files, 329--339 - \subitem worksheets and workbooks, 344--349 - \subitem XML and HTML files, 340--343 - \item inequality and equality tests, 36--37 - \item integrated development environment, 8 - \item internet-of-things, 357 - \item iteration, 118 - \subitem for loop, 113 - \subitem nesting of loops, 119 - \subitem repeat loop, 117 - \subitem while loop, 115 - - \indexspace - - \item \textsf {Java}, 16, 180 - \item joins between data sources, 216--219 - \subitem filtering, 218 - \subitem mutating, 216 - \item \textsf {`jsonlite'}, 357 - - \indexspace - - \item \textsf {`knitr'}, 10, 11, 100 + \item \textsf {`knitr'}, 6 \indexspace \item languages - \subitem \textsf {C}, 16, 22, 41, 46, 48, 66, 127, 180, 211, 316, - 329 - \subitem \textsf {C++}, 2, 4, 16, 41, 48, 180, 211, 316 - \subitem \textsf {COBOL}, 331 - \subitem \textsf {FORTRAN}, 180, 331, 333 - \subitem \textsf {HTML}, 317, 341 - \subitem \textsf {Java}, 16, 180 - \subitem {\LaTeX}, 11 - \subitem \textsf {Markdown}, 100, 317 - \subitem natural and computer, 18 - \subitem \textsf {Pascal}, 4 - \subitem \textsf {Python}, 180, 351, 358 - \subitem \textsf {Rmarkdown}, 100 - \subitem \textsf {S}, 3, 4, 151, 280 - \subitem \textsf {S-Plus}, 3 - \subitem \textsf {XHTML}, 341 - \subitem \textsf {XML}, 340, 343 - \subitem \textsf {XTML}, 341 - \item \LaTeX, 15, 100 - \item {\LaTeX}, 11 - \item \textsf {`lattice'}, 221, 259, 280 - \item \textsf {`learnrbook'}, 15, 221, 303, 325, 358 - \item linear models, 142--153 - \subitem analysis of covariance, 153 - \subitem analysis of variance, 149 - \subitem ANOVA table, 143 - \subitem linear regression, 143 - \subitem polynomial regression, 145 - \subitem summary table, 144 - \item \textsf {Linux}, 4, 7, 9, 15, 16, 93, 326 - \item listing files or directories, 327--328 - \item lists, 65--69 - \subitem append to, 66 - \subitem convert into vector, 69 - \subitem flattening, 68 - \subitem insert into, 66 - \subitem member extraction, 65--66 - \subitem nested, 67, 68 - \subitem structure, 67 - \item literate programming, 100 - \item LM, \see{linear models}{142} - \item \textsf {`lme4'}, 164 - \item logical operators, 29 - \item logical values and their algebra, 29--31 - \item long-form- and wide-form tabular data, 208 - \item loops, \seealso{iteration}{112} - \subitem faster alternatives, 118--119, 122 - \subitem nested, 119 - \item loss of numeric precision, 36 - \item \textsf {`lubridate'}, 293, 353 + \subitem \textsf {C}, 32 + \subitem \textsf {Markdown}, 6 + \subitem \textsf {Rmarkdown}, 6 + \item \LaTeX, 6 + \item literate programming, 6 + \item loops, \seealso{iteration}{18} + \subitem faster alternatives, 23--24, 26 + \subitem nested, 24 \indexspace - \item machine arithmetic - \subitem precision, 34--36 - \subitem rounding errors, 34 - \item \textsf {`magritrr'}, 235 - \item \textsf {`magrittr'}, 196, 205--207 - \item MANOVA, \see{multivariate analysis of variance}{171} - \item \textsf {Markdown}, 100, 317 - \item math functions, 18 - \item math operators, 18 - \item matrices, 53--59 - \item matrix - \subitem dimensions, 57 - \item \textsf {`matrixStats'}, 59 - \item MDS, \see {multidimensional scaling}{175} - \item merging data from two tibbles, 216--219 - \item methods, 189 - \subitem S3 class system, 189 - \item Michaelis-Menten equation, 157 - \item \textsf {`microbenchmark'}, 118 - \item \textsf {Microsoft R Open}, 2 - \item \textsf {\hologoRobust {MiKTeX}}, 181 - \item model formulas, 159--168 - \subitem manipulation, 165 - \item models - \subitem generalized linear, \see{generalized linear models}{153} - \subitem linear, \see{linear models}{142} - \subitem non-linear, \see{non-linear models}{156} - \subitem {\texttt{selfStart}}, 157 - \item models fitting, 141--142 - \item \textsf {MS-Excel}, 330, 339, 344, 345, 347, 356 - \item \textsf {MS-Windows}, 4, 7--9, 15, 93, 181, 326, 356, 357 - \item multidimensional scaling, 175--176 - \item multivariate analysis of variance, 171--172 - \item multivariate methods, 171--178 + \item \textsf {Markdown}, 6 + \item \textsf {`microbenchmark'}, 23 \indexspace - \item names and scoping, 193 - \item namespaces, 193 - \item \textsf {Nano}, 345 - \item \textsf {`ncdf4'}, 351, 352, 356 - \item nested iteration loops, 119 - \item \textsf {NetCDF}, 351, 353, 357 - \item \textsf {netCDF}, 352 - \item netiquette, 13 - \item network etiquette, 13 - \item \textsf {`nlme'}, 164 - \item NLS, \see{non-linear models}{156} - \item non-linear models, 156--159 - \item Normal distribution, 134 - \item \textsf {Notepad}, 345 - \item numbers - \subitem double, 27 - \subitem floating point, 26 - \subitem integer, 27 - \subitem whole, 27 - \item numbers and their arithmetic, 18--29 - \item numeric values, 18 - \item numeric, integer and double values, 21 + \item nested iteration loops, 24 \indexspace - \item object names, 128 - \subitem as character strings, 128 - \item object-oriented programming, 189 - \item objects, 189 - \subitem mode, 42 - \item \textsf {Octave}, 349 - \item operating systems - \subitem \textsf {Linux}, 4, 7, 9, 15, 93 - \subitem \textsf {MS-Windows}, 4, 7--9, 15, 93, 356, 357 - \subitem \textsf {OS X}, 4, 7, 9, 15 - \subitem \textsf {Unix}, 4, 7, 9, 15, 204 - \item operators - \subitem comparison, 32--37 - \subitem defining new, 182, 188 - \subitem set, 37--41 - \item \textsf {OS X}, 4, 7, 9, 15, 181 - \item overflow, \see{arithmetic overflow}{35} + \item object names, 33 + \subitem as character strings, 33 \indexspace \item packages - \subitem \textsf {`anytime'}, 293 - \subitem \textsf {`blogdown'}, 100 - \subitem \textsf {`bookdown'}, 100 - \subitem \textsf {`broom'}, 267 - \subitem \textsf {`data.table'}, 184, 196, 198 - \subitem \textsf {`dbplyr'}, 210, 358, 359 - \subitem \textsf {`devtools'}, 180 - \subitem \textsf {`dplyr'}, 196, 197, 205, 210, 211, 213, 216, 218, - 354, 358, 359 - \subitem \textsf {`dtplyr'}, 210 - \subitem \textsf {`extrafont'}, 251 - \subitem \textsf {`foreign'}, 85, 323, 349, 350, 356 - \subitem \textsf {`ggbeeswarm'}, 273 - \subitem \textsf {`ggforce'}, 273 - \subitem \textsf {`gginnards'}, 228 - \subitem \textsf {`ggplot2'}, 90, 221--223, 225, 233, 236, 238, - 246, 250, 251, 255, 257, 259, 260, 262, 274, 278--280, - 284, 288, 297, 298, 302, 305, 306, 310, 311, 313, - 317, 318, 321 - \subitem \textsf {`ggpmisc'}, 255, 259, 266, 267, 278, 279 - \subitem \textsf {`ggrepel'}, 254 - \subitem \textsf {`ggstance'}, 274 - \subitem \textsf {`ggtern'}, 225 - \subitem \textsf {`ggtext'}, 317 - \subitem \textsf {`grid'}, 221, 258, 300 - \subitem \textsf {`gridExtra'}, 256 - \subitem \textsf {`haven'}, 349, 350, 356 - \subitem \textsf {`Hmisc'}, 262 - \subitem \textsf {`jsonlite'}, 357 - \subitem \textsf {`knitr'}, 10, 11, 100 - \subitem \textsf {`lattice'}, 221, 259, 280 - \subitem \textsf {`learnrbook'}, 15, 221, 303, 325, 358 - \subitem \textsf {`lme4'}, 164 - \subitem \textsf {`lubridate'}, 293, 353 - \subitem \textsf {`magritrr'}, 235 - \subitem \textsf {`magrittr'}, 196, 205--207 - \subitem \textsf {`matrixStats'}, 59 - \subitem \textsf {`microbenchmark'}, 118 - \subitem \textsf {`ncdf4'}, 351, 352, 356 - \subitem \textsf {`nlme'}, 164 - \subitem \textsf {`patchwork'}, 311, 312 - \subitem \textsf {`pkgdown'}, 100 - \subitem \textsf {`poorman'}, 211 - \subitem \textsf {`Rcpp'}, 180 - \subitem \textsf {`readODS'}, 348 - \subitem \textsf {`readr'}, 330, 335--339, 345, 347, 356 - \subitem \textsf {`readxl'}, 345, 356 - \subitem \textsf {`reshape'}, 208 - \subitem \textsf {`reshape2'}, 208 - \subitem \textsf {`reticulate'}, 180, 358 - \subitem \textsf {`RJava'}, 180 - \subitem \textsf {`RNetCDF'}, 351 - \subitem \textsf {`RSQLite'}, 358 - \subitem \textsf {`scales'}, 240, 289 - \subitem \textsf {`seplyr'}, 210 - \subitem \textsf {`sf'}, 250, 343 - \subitem \textsf {`showtext'}, 251 - \subitem \textsf {`stats'}, 176 - \subitem \textsf {`stringr'}, 211 - \subitem \textsf {`Sweave'}, 10, 100 - \subitem \textsf {`tibble'}, 74, 75, 196--198, 255 - \subitem \textsf {`tidiyverse'}, 73 - \subitem \textsf {`tidync'}, 353 - \subitem \textsf {`tidyr'}, 197, 208, 210, 216 - \subitem \textsf {`tidyverse'}, 84, 197, 198, 203, 205, 208, - 211, 212, 219, 255, 335, 346 - \subitem \textsf {`tools'}, 330 - \subitem using, 181 - \subitem \textsf {`utils'}, 331, 332, 338, 339, 356 - \subitem \textsf {`wrapr'}, 196, 205--207, 235, 354 - \subitem \textsf {`xlsx'}, 347, 356 - \subitem \textsf {`xml2'}, 341 - \item \textsf {Pascal}, 4 - \item \textsf {`patchwork'}, 311, 312 - \item PCA, \see {principal components analysis}{173} - \item pipe operator, 204, 205 - \item pipes - \subitem base R, 204--205 - \subitem expressions in rhs, 207 - \subitem tidyverse, 205 - \subitem wrapr, 205--208 - \item \textsf {`pkgdown'}, 100 - \item plotmath, 312 - \item plots - \subitem aesthetics, 223 - \subitem axis position, 292 - \subitem base R graphics, 90 - \subitem bitmap output, 320 - \subitem box and whiskers plot, 271--272 - \subitem bubble plot, 241--242 - \subitem caption, 285--286 - \subitem circular, 302--305 - \subitem column plot, 246--248 - \subitem composing, 311--312 - \subitem consistent styling, 318 - \subitem coordinated panels, 280 - \subitem data summaries, 261--263 - \subitem density plot - \subsubitem 1 dimension, 270 - \subsubitem 2 dimensions, 270--271 - \subitem dot plot, 241 - \subitem error bars, 261 - \subitem filled-area plot, 245 - \subitem fitted curves, 264--267 - \subitem fonts, 251 - \subitem histograms, 267--270 - \subitem inset graphical objects, 258--259 - \subitem inset plots, 256--258 - \subitem inset tables, 255--256 - \subitem insets, 255--259 - \subitem insets as annotations, 300--301 - \subitem labels, 285--286 - \subitem layers, 223, 317 - \subitem line plot, 244 - \subitem major axis regression, 279 - \subitem maps and spatial plots, 250 - \subitem math expressions, 312--317 - \subitem maths in, 250--254 - \subitem means, 261 - \subitem medians, 261 - \subitem modular construction, 317--320 - \subitem output to files, 320 - \subitem PDF output, 320 - \subitem pie charts, 304--305 - \subitem plots of functions, 260--261 - \subitem Postscript output, 320 - \subitem printing, 320 - \subitem programatic construction, 318--320 - \subitem reference lines, 245--246 - \subitem rendering, 320 - \subitem reusing parts of, 318 - \subitem rug marging, 243 - \subitem saving, 320 - \subitem saving to file, \see{plots, rendering}{320} - \subitem scales - \subsubitem axis labels, 293 - \subsubitem limits, 294 - \subsubitem tick breaks, 288 - \subsubitem tick labels, 288 - \subsubitem transformations, 290 - \subitem scatter plot, 238--241 - \subitem secondary axes, 292 - \subitem smooth curves, 264--267 - \subitem statistics - \subsubitem density, 270 - \subsubitem density 2d, 270 - \subsubitem smooth, 264 - \subitem step plot, 244 - \subitem styling, 305--311 - \subitem subtitle, 285--286 - \subitem SVG output, 320 - \subitem tag, 285--286 - \subitem text in, 250--254 - \subitem tile plot, 248--249 - \subitem title, 285--286 - \subitem trellis-like, 280 - \subitem violin plot, 272--273 - \subitem wind rose, 302--304 - \subitem with colors, 295--299 - \item polynomial regression, 145 - \item \textsf {`poorman'}, 211 - \item portability, 251 - \item precision - \subitem math operations, 26 - \item principal components analysis, 173--175 + \subitem \textsf {`blogdown'}, 6 + \subitem \textsf {`bookdown'}, 6 + \subitem \textsf {`knitr'}, 6 + \subitem \textsf {`microbenchmark'}, 23 + \subitem \textsf {`pkgdown'}, 6 + \subitem \textsf {`Sweave'}, 6 + \subitem \textsf {`tidyverse'}, 36 + \item \textsf {`pkgdown'}, 6 \item programmes - \subitem \textsf {bash}, 16 - \subitem \textsf {Bio7}, 15 - \subitem \textsf {Eclipse}, 15 - \subitem \textsf {Emacs}, 5, 15, 345 - \subitem \textsf {Excel}, 344 - \subitem \textsf {Git}, 16, 180 - \subitem \textsf {Gnu S}, 3 - \subitem \textsf {ImageJ}, 15 - \subitem \textsf {Linux}, 16, 326 - \subitem \textsf {Microsoft R Open}, 2 - \subitem \textsf {\hologoRobust {MiKTeX}}, 181 - \subitem \textsf {MS-Excel}, 330, 339, 344, 345, 347, 356 - \subitem \textsf {MS-Windows}, 181, 326 - \subitem \textsf {Nano}, 345 - \subitem \textsf {NetCDF}, 351, 353, 357 - \subitem \textsf {netCDF}, 352 - \subitem \textsf {Notepad}, 345 - \subitem \textsf {Octave}, 349 - \subitem \textsf {OS X}, 181 - \subitem \textsf {RGUI}, 12 - \subitem \textsf {RStudio}, 5, 6, 8--10, 12, 15, 16, 25, 93, - 97, 98, 100, 101, 180, 181, 320, 345 - \subitem \textsf {RTools}, 181 - \subitem \textsf {SAS}, 3, 151, 349, 350 - \subitem \textsf {SPPS}, 349 - \subitem \textsf {SPSS}, 3, 151, 349, 350 - \subitem \textsf {SQLite}, 358 - \subitem \textsf {Stata}, 349, 350 - \subitem \textsf {Systat}, 349, 350 - \subitem \textsf {Unix}, 16, 326 - \subitem \textsf {WEB}, 100 - \subitem \textsf {WinEdt}, 15 - \item pseudo-random numbers, 138 - \item pseudo-random sampling, 138 - \item \textsf {Python}, 180, 351, 358 - - \indexspace - - \item {\Rlang} - \subitem help, 12 - \item {\Rlang as a language}, 2, 4 - \item {\Rlang as a program}, 2 - \item {\Rpgrm as a program}, 4 - \item random numbers, \see{pseudo-random numbers}{138} - \item random sampling, \see{pseudo-random sampling}{138} - \item Raspberry Pi, 3 - \item \textsf {`Rcpp'}, 180 - \item \textsf {`readODS'}, 348 - \item \textsf {`readr'}, 330, 335--339, 345, 347, 356 - \item \textsf {`readxl'}, 345, 356 - \item Real numbers and computers, 34 - \item recycling of arguments, 23, 118 - \item removing objects, 25 - \item reprex, \see{reproducible example}{14} - \item reproducible data analysis, 10--11 - \item reproducible example, 14 - \item \textsf {`reshape'}, 208 - \item \textsf {`reshape2'}, 208 - \item reshaping tibbles, 208--210 - \item \textsf {`reticulate'}, 180, 358 - \item \textsf {RGUI}, 12 - \item \textsf {`RJava'}, 180 - \item \textsf {Rmarkdown}, 100 - \item \textsf {`RNetCDF'}, 351 - \item ROpenScience, 180 - \item row-wise operations on data, 211--213 - \item \textsf {`RSQLite'}, 358 - \item \textsf {RStudio}, 5, 6, 8--10, 12, 15, 16, 25, 93, 97, 98, - 100, 101, 180, 181, 320, 345 - \item \textsf {RTools}, 181 - - \indexspace - - \item \textsf {S}, 3, 4, 151, 280 - \item \textsf {S-Plus}, 3 - \item S3 class system, 189 - \item \textsf {SAS}, 3, 151, 349, 350 - \item \textsf {`scales'}, 240, 289 - \item scales ('ggplot2'), \see{grammar of graphics, scales}{221} - \item scoping rules, 193 - \item script, 7 - \item scripts, 95 - \subitem debugging, 100 - \subitem definition, 96 - \subitem readability, 99 - \subitem sourcing, 97 - \subitem writing, 98 - \item self-starting functions, 157, 265 - \item \textsf {`seplyr'}, 210 - \item sequence, 23 - \item sets, 37--41 - \item \textsf {`sf'}, 250, 343 - \item \textsf {`showtext'}, 251 - \item simple code statements, 103 - \item special values - \subitem NA, 25 - \subitem NaN, 25 - \item \textsf {SPPS}, 349 - \item \textsf {SPSS}, 3, 151, 349, 350 - \item \textsf {SQLite}, 358 - \item StackOverflow, 14 - \item \textsf {Stata}, 349, 350 - \item statistics ('ggplot2'), - \see{grammar of graphics, statistics}{221} - \item \textsf {`stats'}, 176 - \item \textsf {`stringr'}, 211 - \item summaries - \subitem statistical, 133 - \item \textsf {`Sweave'}, 10, 100 - \item \textsf {Systat}, 349, 350 - - \indexspace - - \item text files - \subitem fixed width fields, 333 - \subitem with field markers, 331 - \item themes ('ggplot2'), \see{grammar of graphics, themes}{221} - \item tibble - \subitem differences with data frames, 198--203 - \item \textsf {`tibble'}, 74, 75, 196--198, 255 - \item \textsf {`tidiyverse'}, 73 - \item \textsf {`tidync'}, 353 - \item \textsf {`tidyr'}, 197, 208, 210, 216 - \item \textsf {`tidyverse'}, 84, 197, 198, 203, 205, 208, 211, 212, - 219, 255, 335, 346 - \item time series, 168--171 - \subitem decomposition, 170 - \item \textsf {`tools'}, 330 - \item type conversion, 44--47 - \item type promotion, 36 - - \indexspace - - \item UNICODE, 251 - \item \textsf {Unix}, 4, 7, 9, 15, 16, 204, 326 - \item UTF8, 251 - \item \textsf {`utils'}, 331, 332, 338, 339, 356 + \subitem \textsf {RStudio}, 3, 4, 6, 7 + \subitem \textsf {WEB}, 6 \indexspace - \item variables, 20 - \item vector - \subitem run length encoding, 53 - \item vectorization, 118 - \item vectorized arithmetic, 23 - \item vectorized ifelse, 110 - \item vectors - \subitem indexing, 47--53 - \subitem member extraction, 47 - \subitem sorting, 52 - \subitem zero length, 26 + \item recycling of arguments, 23 + \item \textsf {Rmarkdown}, 6 + \item \textsf {RStudio}, 3, 4, 6, 7 \indexspace - \item \textsf {WEB}, 100 - \item \textsf {WinEdt}, 15 - \item working directory, 326--327 - \item `worksheet', \see{data frame}{69} - \item \textsf {`wrapr'}, 196, 205--207, 235, 354 + \item scripts, 1 + \subitem debugging, 6 + \subitem definition, 2 + \subitem readability, 4 + \subitem sourcing, 3 + \subitem writing, 4 + \item simple code statements, 9 + \item \textsf {`Sweave'}, 6 \indexspace - \item \textsf {XHTML}, 341 - \item \textsf {`xlsx'}, 347, 356 - \item \textsf {XML}, 340, 343 - \item \textsf {`xml2'}, 341 - \item \textsf {XTML}, 341 + \item \textsf {`tidyverse'}, 36 \indexspace - \item YoctoPuce modules, 357 + \item vectorization, 23 + \item vectorized ifelse, 16 \indexspace - \item zero length objects, 26 + \item \textsf {WEB}, 6 \end{theindex} diff --git a/using-r-main-crc.lof b/using-r-main-crc.lof new file mode 100644 index 00000000..e8f7e17e --- /dev/null +++ b/using-r-main-crc.lof @@ -0,0 +1 @@ +\addvspace {10\p@ } diff --git a/using-r-main-crc.log b/using-r-main-crc.log index d98f136f..ce95484d 100644 --- a/using-r-main-crc.log +++ b/using-r-main-crc.log @@ -1,4 +1,4 @@ -This is XeTeX, Version 3.141592653-2.6-0.999994 (MiKTeX 22.8) (preloaded format=xelatex 2022.8.28) 28 AUG 2022 23:03 +This is XeTeX, Version 3.141592653-2.6-0.999994 (MiKTeX 22.8) (preloaded format=xelatex 2022.11.1) 17 NOV 2022 17:49 entering extended mode restricted \write18 enabled. %&-line parsing enabled. @@ -574,7 +574,7 @@ Package upgreek Info: Using Euler Roman for upright Greek on input line 31. LaTeX Font Info: Overwriting symbol font `ugrf@m' in version `bold' (Font) U/eur/m/n --> U/eur/b/n on input line 38. )) (usingr.sty -Package: usingr 2016/10/20 +Package: usingr 2022/10/20 (C:\Program Files\MiKTeX 2.9\tex/latex/booktabs\booktabs.sty Package: booktabs 2020/01/12 v1.61803398 Publication quality tables @@ -776,13 +776,13 @@ Package fontspec Info: Font family 'LucidaBrightOT(1)' created for font LaTeX Font Info: Overwriting math alphabet `\mathrm' in version `normal' (Font) OT1/cmr/m/n --> TU/LucidaBrightOT(1)/m/n on input line -13. +15. LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal' (Font) OT1/cmr/m/it --> TU/LucidaBrightOT(1)/m/it on input lin -e 13. +e 15. LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal' (Font) OT1/cmr/bx/n --> TU/LucidaBrightOT(1)/b/n on input line - 13. + 15. (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaSansOT.fontspec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaSansOT.fontspec) @@ -832,10 +832,10 @@ Package fontspec Info: Font family 'LucidaSansOT(1)' created for font 'Lucida LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal' (Font) OT1/cmss/m/n --> TU/LucidaSansOT(1)/m/n on input line 1 -4. +6. LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold' (Font) OT1/cmss/bx/n --> TU/LucidaSansOT(1)/b/n on input line -14. +16. (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) @@ -914,10 +914,10 @@ Package fontspec Info: Font family 'LucidaConsoleDK(1)' created for font LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal' (Font) OT1/cmtt/m/n --> TU/LucidaConsoleDK(1)/m/n on input lin -e 15. +e 17. LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold' (Font) OT1/cmtt/m/n --> TU/LucidaConsoleDK(1)/b/n on input lin -e 15. +e 17. Package fontspec Info: Font family 'LucidaBrightMathOT(0)' created for font (fontspec) 'Lucida Bright Math OT' with options @@ -956,15 +956,15 @@ Package fontspec Info: Font family 'LucidaBrightMathOT(1)' created for font (fontspec) - 'bold small caps' (b/sc) with NFSS spec.: LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font -(Font) `operators' in the math version `normal' on input line 16. +(Font) `operators' in the math version `normal' on input line 18. LaTeX Font Info: Overwriting symbol font `operators' in version `normal' (Font) OT1/cmr/m/n --> TU/LucidaBrightMathOT(1)/m/n on input l -ine 16. +ine 18. LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font -(Font) `operators' in the math version `bold' on input line 16. +(Font) `operators' in the math version `bold' on input line 18. LaTeX Font Info: Overwriting symbol font `operators' in version `bold' (Font) OT1/cmr/bx/n --> TU/LucidaBrightMathOT(1)/b/n on input -line 16. +line 18. Package fontspec Info: Lucida Bright Math OT scale = 1.0001. @@ -1038,15 +1038,15 @@ Lucida (fontspec) =0pt\relax LaTeX Font Info: Encoding `OMS' has changed to `TU' for symbol font -(Font) `symbols' in the math version `normal' on input line 16. +(Font) `symbols' in the math version `normal' on input line 18. LaTeX Font Info: Overwriting symbol font `symbols' in version `normal' (Font) OMS/cmsy/m/n --> TU/LucidaBrightMathOT(2)/m/n on input -line 16. +line 18. LaTeX Font Info: Encoding `OMS' has changed to `TU' for symbol font -(Font) `symbols' in the math version `bold' on input line 16. +(Font) `symbols' in the math version `bold' on input line 18. LaTeX Font Info: Overwriting symbol font `symbols' in version `bold' (Font) OMS/cmsy/b/n --> TU/LucidaBrightMathOT(2)/b/n on input -line 16. +line 18. Package fontspec Info: Lucida Bright Math OT scale = 0.9999. @@ -1104,16 +1104,16 @@ Lucida LaTeX Font Info: Encoding `OMX' has changed to `TU' for symbol font (Font) `largesymbols' in the math version `normal' on input line 1 -6. +8. LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal' (Font) OMX/cmex/m/n --> TU/LucidaBrightMathOT(3)/m/n on input -line 16. +line 18. LaTeX Font Info: Encoding `OMX' has changed to `TU' for symbol font -(Font) `largesymbols' in the math version `bold' on input line 16. +(Font) `largesymbols' in the math version `bold' on input line 18. LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold' (Font) OMX/cmex/m/n --> TU/LucidaBrightMathOT(3)/b/n on input -line 16. +line 18. Missing character: There is no in font Wingdings! Missing character: There is no in font Wingdings/OT! @@ -1673,25 +1673,25 @@ tim Package csquotes Info: Checking for multilingual support... Package csquotes Info: ... none found. -(using-r-main-crc.aux (frontmatter/preface.aux)) +(using-r-main-crc.aux) \openout1 = `using-r-main-crc.aux'. -LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 88. -LaTeX Font Info: ... okay on input line 88. -LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 88. -LaTeX Font Info: ... okay on input line 88. -LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 88. -LaTeX Font Info: ... okay on input line 88. -LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 88. -LaTeX Font Info: ... okay on input line 88. -LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 88. -LaTeX Font Info: ... okay on input line 88. -LaTeX Font Info: Checking defaults for TU/lmr/m/n on input line 88. -LaTeX Font Info: ... okay on input line 88. -LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 88. -LaTeX Font Info: ... okay on input line 88. -LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 88. -LaTeX Font Info: ... okay on input line 88. +LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 92. +LaTeX Font Info: ... okay on input line 92. +LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 92. +LaTeX Font Info: ... okay on input line 92. +LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 92. +LaTeX Font Info: ... okay on input line 92. +LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 92. +LaTeX Font Info: ... okay on input line 92. +LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 92. +LaTeX Font Info: ... okay on input line 92. +LaTeX Font Info: Checking defaults for TU/lmr/m/n on input line 92. +LaTeX Font Info: ... okay on input line 92. +LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 92. +LaTeX Font Info: ... okay on input line 92. +LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 92. +LaTeX Font Info: ... okay on input line 92. Package biblatex Info: Trying to load language 'english'... Package biblatex Info: ... file 'english.lbx' found. @@ -1708,24 +1708,24 @@ Package biblatex Info: Trying to load bibliographic data... Package biblatex Info: ... file 'using-r-main-crc.bbl' found. (using-r-main-crc.bbl) -Package biblatex Info: Reference section=0 on input line 88. -Package biblatex Info: Reference segment=0 on input line 88. +Package biblatex Info: Reference section=0 on input line 92. +Package biblatex Info: Reference segment=0 on input line 92. LaTeX Font Info: Font shape `TU/LucidaBrightOT(0)/m/sl' in size <24> not ava ilable (Font) Font shape `TU/LucidaBrightOT(0)/m/it' tried instead on inp -ut line 117. +ut line 121. LaTeX Font Info: Font shape `TU/LucidaBrightOT(0)/b/sl' in size <24> not ava ilable (Font) Font shape `TU/LucidaBrightOT(0)/b/it' tried instead on inp -ut line 117. +ut line 121. LaTeX Font Info: Font shape `TU/LucidaBrightOT(0)/b/sl' in size <24.88> not available (Font) Font shape `TU/LucidaBrightOT(0)/b/it' tried instead on inp -ut line 117. +ut line 121. LaTeX Font Warning: Font shape `TU/LucidaSansOT(0)/ub/sl' undefined -(Font) using `TU/LucidaSansOT(0)/m/n' instead on input line 117. +(Font) using `TU/LucidaSansOT(0)/m/n' instead on input line 121. Underfull \vbox (badness 10000) has occurred while \output is active [] @@ -1769,54 +1769,54 @@ Underfull \hbox (badness 10000) has occurred while \output is active ] -Underfull \vbox (badness 10000) detected at line 122 +Underfull \vbox (badness 10000) detected at line 126 [] -Overfull \hbox (395.75pt too wide) detected at line 122 +Overfull \hbox (395.75pt too wide) detected at line 126 [] [] -Underfull \vbox (badness 10000) detected at line 122 +Underfull \vbox (badness 10000) detected at line 126 [] -Overfull \hbox (395.75pt too wide) detected at line 122 +Overfull \hbox (395.75pt too wide) detected at line 126 [] [] -Underfull \vbox (badness 10000) detected at line 122 +Underfull \vbox (badness 10000) detected at line 126 [] -Overfull \hbox (395.75pt too wide) detected at line 122 +Overfull \hbox (395.75pt too wide) detected at line 126 [] [] -Underfull \vbox (badness 10000) detected at line 122 +Underfull \vbox (badness 10000) detected at line 126 [] -Overfull \hbox (395.75pt too wide) detected at line 122 +Overfull \hbox (395.75pt too wide) detected at line 126 [] [] -Underfull \hbox (badness 10000) detected at line 122 +Underfull \hbox (badness 10000) detected at line 126 [] [] LaTeX Font Info: Font shape `TU/LucidaBrightOT(0)/m/sl' in size <18> not ava ilable (Font) Font shape `TU/LucidaBrightOT(0)/m/it' tried instead on inp -ut line 122. +ut line 126. LaTeX Font Info: Font shape `TU/LucidaBrightOT(0)/b/sl' in size <18> not ava ilable (Font) Font shape `TU/LucidaBrightOT(0)/b/it' tried instead on inp -ut line 122. +ut line 126. (using-r-main-crc.toc LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(2)/m/n' will be (Font) scaled to size 10.00107pt on input line 4. @@ -1830,6 +1830,10 @@ LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(3)/m/n' will be (Font) scaled to size 6.99925pt on input line 4. LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(3)/m/n' will be (Font) scaled to size 4.99947pt on input line 4. +) +\tf@toc=\write9 +\openout9 = `using-r-main-crc.toc'. + Underfull \hbox (badness 10000) has occurred while \output is active [][][][] @@ -1837,102 +1841,98 @@ Underfull \hbox (badness 10000) has occurred while \output is active [5 -] [6] [7] [8] [9]) -\tf@toc=\write9 -\openout9 = `using-r-main-crc.toc'. +] +Underfull \vbox (badness 10000) has occurred while \output is active [] - [10] -\openout2 = `frontmatter/preface.aux'. - (frontmatter/preface.tex -Underfull \vbox (badness 10000) detected at line 1 +Overfull \hbox (395.75pt too wide) has occurred while \output is active +[] [] -Overfull \hbox (395.75pt too wide) detected at line 1 +Underfull \vbox (badness 10000) has occurred while \output is active [] + + +Overfull \hbox (395.75pt too wide) has occurred while \output is active [] [] -Underfull \vbox (badness 10000) detected at line 1 - [] +Underfull \vbox (badness 10000) has occurred while \output is active [] -Overfull \hbox (395.75pt too wide) detected at line 1 +Overfull \hbox (395.75pt too wide) has occurred while \output is active [] [] -Underfull \vbox (badness 10000) detected at line 1 - [] +Underfull \vbox (badness 10000) has occurred while \output is active [] -Overfull \hbox (395.75pt too wide) detected at line 1 +Overfull \hbox (395.75pt too wide) has occurred while \output is active [] [] -Underfull \vbox (badness 10000) detected at line 1 +Underfull \hbox (badness 10000) has occurred while \output is active + [][][][] [] +[6 -Overfull \hbox (395.75pt too wide) detected at line 1 -[] +] +Underfull \vbox (badness 10000) detected at line 127 [] -Underfull \hbox (badness 10000) detected at line 1 +Overfull \hbox (395.75pt too wide) detected at line 127 [] [] -Overfull \hbox (30.0pt too wide) in paragraph at lines 7--7 -| +Underfull \vbox (badness 10000) detected at line 127 [] -Underfull \hbox (badness 10000) has occurred while \output is active - [][][][] +Overfull \hbox (395.75pt too wide) detected at line 127 +[] [] -[11 - - - -] [12] [13] -Underfull \hbox (badness 10000) in paragraph at lines 42--43 +Underfull \vbox (badness 10000) detected at line 127 [] -Underfull \hbox (badness 10000) in paragraph at lines 44--46 - +Overfull \hbox (395.75pt too wide) detected at line 127 +[] [] -Missing character: There is no in font Typicons/OT:language=dflt;! - -Underfull \hbox (badness 10000) in paragraph at lines 47--49 +Underfull \vbox (badness 10000) detected at line 127 [] -Underfull \hbox (badness 10000) in paragraph at lines 50--52 - +Overfull \hbox (395.75pt too wide) detected at line 127 +[] [] -[14] -Missing character: There is no in font Typicons/OT:language=dflt;! - -Underfull \hbox (badness 10000) in paragraph at lines 53--55 +Underfull \hbox (badness 10000) detected at line 127 +[] [] +(using-r-main-crc.lof) +\tf@lof=\write10 +\openout10 = `using-r-main-crc.lof'. -Underfull \hbox (badness 10000) in paragraph at lines 56--60 +Underfull \hbox (badness 10000) has occurred while \output is active + [][][][] [] -) [15] +[7 + +] Underfull \vbox (badness 10000) has occurred while \output is active [] @@ -1969,49 +1969,47 @@ Underfull \hbox (badness 10000) has occurred while \output is active [][][][] [] -[16 - - +[8 ] -Underfull \vbox (badness 10000) detected at line 135 +Underfull \vbox (badness 10000) detected at line 147 [] -Overfull \hbox (395.75pt too wide) detected at line 135 +Overfull \hbox (395.75pt too wide) detected at line 147 [] [] -Underfull \vbox (badness 10000) detected at line 135 +Underfull \vbox (badness 10000) detected at line 147 [] -Overfull \hbox (395.75pt too wide) detected at line 135 +Overfull \hbox (395.75pt too wide) detected at line 147 [] [] -Underfull \vbox (badness 10000) detected at line 135 +Underfull \vbox (badness 10000) detected at line 147 [] -Overfull \hbox (395.75pt too wide) detected at line 135 +Overfull \hbox (395.75pt too wide) detected at line 147 [] [] -Underfull \vbox (badness 10000) detected at line 135 +Underfull \vbox (badness 10000) detected at line 147 [] -Overfull \hbox (395.75pt too wide) detected at line 135 +Overfull \hbox (395.75pt too wide) detected at line 147 [] [] Chapter 1. -Overfull \hbox (30.0pt too wide) in paragraph at lines 141--141 +Overfull \hbox (30.0pt too wide) in paragraph at lines 154--154 | [] @@ -2023,10 +2021,7 @@ Underfull \hbox (badness 10000) has occurred while \output is active [1 -] [2] [3] -File: figures/R-console-r.png Graphic file (type bmp) - - +] (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp @@ -2078,54 +2073,28 @@ Space,Scale (fontspec) \tex_hyphenchar:D \font =-1\scan_stop: LaTeX Font Info: Font shape `TU/LucidaConsoleDK(2)/m/n' will be -(Font) scaled to size 8.9pt on input line 196. - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [4] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [5] -File: figures/r-console-rstudio.png Graphic file (type bmp) - -File: figures/r-console-capture.png Graphic file (type bmp) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [6] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figures/R-console-script.png Graphic file (type bmp) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [7] -File: figures/windows-cmd-script.png Graphic file (type bmp) - +(Font) scaled to size 8.9pt on input line 182. +LaTeX Font Info: Font shape `TU/LucidaBrightOT(0)/m/sl' in size <9> not avai +lable +(Font) Font shape `TU/LucidaBrightOT(0)/m/it' tried instead on inp +ut line 192. (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [8] -File: figures/Rstudio-script.png Graphic file (type bmp) - - [9] [10] -Underfull \vbox (badness 3668) detected at line 291 - [] +LaTeX Font Info: Font shape `TU/LucidaConsoleDK(2)/m/n' will be +(Font) scaled to size 8.01pt on input line 193. -[11] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) +LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(2)/m/n' will be +(Font) scaled to size 9.00096pt on input line 195. +LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(2)/m/n' will be +(Font) scaled to size 6.00064pt on input line 195. +LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(3)/m/n' will be +(Font) scaled to size 8.99904pt on input line 195. +LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(3)/m/n' will be +(Font) scaled to size 5.99936pt on input line 195. + [2] (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp @@ -2134,60 +2103,61 @@ ec) ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [12] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [13] [14] [15] [16] -Underfull \vbox (badness 10000) detected at line 416 +LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(2)/m/n' will be +(Font) scaled to size 8.00085pt on input line 256. +LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(3)/m/n' will be +(Font) scaled to size 7.99915pt on input line 256. + [3] +Underfull \hbox (badness 10000) detected at line 271 + [][] [] -Overfull \hbox (395.75pt too wide) detected at line 416 -[] +Underfull \hbox (badness 10000) detected at line 271 +[][][] [] -Underfull \vbox (badness 10000) detected at line 416 +Underfull \hbox (badness 10000) detected at line 272 + [][] [] -Overfull \hbox (395.75pt too wide) detected at line 416 -[] +Underfull \hbox (badness 10000) detected at line 272 +[][][] [] -Underfull \vbox (badness 10000) detected at line 416 +Underfull \hbox (badness 10000) detected at line 273 + [][] [] -Overfull \hbox (395.75pt too wide) detected at line 416 -[] +Underfull \hbox (badness 10000) detected at line 273 +[][][] [] -Underfull \vbox (badness 10000) detected at line 416 +Underfull \hbox (badness 10000) detected at line 274 + [][] [] -Overfull \hbox (395.75pt too wide) detected at line 416 -[] +Underfull \hbox (badness 10000) detected at line 274 +[][][] [] -Chapter 2. -Overfull \hbox (30.0pt too wide) in paragraph at lines 422--422 -| +Underfull \hbox (badness 10000) detected at line 275 + [][] [] -Underfull \hbox (badness 10000) has occurred while \output is active - [][][][] +Underfull \hbox (badness 10000) detected at line 275 +[][][] [] -[17 - - -] +[4] (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp @@ -2201,13 +2171,20 @@ ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) +ec) [5] [6] (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) +Missing character: There is no in font Typicons/OT:language=dflt;! + (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) + +LaTeX Warning: Reference `sec:intro:net:help' on page 7 undefined on input line + 346. + +[7] [8] (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp @@ -2216,14 +2193,15 @@ ec) ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) +Missing character: There is no in font Typicons/OT:language=dflt;! + (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) +ec) [9] (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Overfull \vbox (1.02238pt too high) detected at line 452 - [] +LaTeX Font Info: Font shape `TU/LucidaConsoleDK(2)/b/n' will be +(Font) scaled to size 8.9pt on input line 417. -[18] (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp @@ -2235,8 +2213,6 @@ ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [19] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) @@ -2253,8 +2229,6 @@ ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [20] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) @@ -2271,7 +2245,7 @@ ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) +ec) [10] (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp @@ -2289,8 +2263,6 @@ ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [21] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) @@ -2305,8 +2277,6 @@ ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [22] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) @@ -2319,7 +2289,7 @@ ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) +ec) [11] (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp @@ -2327,17 +2297,26 @@ ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [23] +ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [24] +ec) [12] (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) + +LaTeX Warning: Reference `sec:calc:type:conversion' on page 13 undefined on inp +ut line 648. + + +LaTeX Warning: Reference `sec:calc:type:conversion' on page 13 undefined on inp +ut line 648. + + (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp @@ -2353,16 +2332,13 @@ ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [25] +ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -LaTeX Font Info: Font shape `TU/LucidaConsoleDK(2)/b/n' will be -(Font) scaled to size 8.9pt on input line 1015. - (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp @@ -2384,10 +2360,12 @@ ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [26] +ec) [13] (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [14] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) @@ -2406,7 +2384,7 @@ ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [27] +ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp @@ -2415,10 +2393,12 @@ ec) ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \vbox (badness 1303) detected at line 1237 +Underfull \hbox (badness 5119) in paragraph at lines 744--745 +\TU/LucidaBrightOT(0)/m/n/10 happens if you set [][][][][][], [][][][][][], [][ +][][][][] or [] -[28] + (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp @@ -2434,7 +2414,7 @@ ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) +ec) [15] (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp @@ -2454,7 +2434,7 @@ ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [29] +ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp @@ -2480,21 +2460,30 @@ ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [30] +ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [31] +ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [32] +ec) [16] (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) + +LaTeX Warning: Reference `sec:calc:boolean' on page 17 undefined on input line +849. + + +LaTeX Warning: Reference `sec:calc:boolean' on page 17 undefined on input line +849. + + (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp @@ -2506,8 +2495,6 @@ ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [33] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) @@ -2530,27 +2517,13 @@ ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) +ec) [17] (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [34] -Underfull \vbox (badness 10000) detected at line 1885 - [] - - -Underfull \vbox (badness 10000) detected at line 1885 - [] - -[35] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \vbox (badness 1776) detected at line 1949 - [] - -[36] (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp @@ -2560,29 +2533,22 @@ ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) +ec) [18] (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(2)/m/n' will be -(Font) scaled to size 9.00096pt on input line 1967. -LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(2)/m/n' will be -(Font) scaled to size 6.00064pt on input line 1967. -LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(3)/m/n' will be -(Font) scaled to size 8.99904pt on input line 1967. -LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(3)/m/n' will be -(Font) scaled to size 5.99936pt on input line 1967. - [37] (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [38] +ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [19] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) @@ -2615,7 +2581,7 @@ ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [39] +ec) [20] (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp @@ -2623,7 +2589,7 @@ ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [40] +ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp @@ -2637,7 +2603,7 @@ ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [41] +ec) [21] (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp @@ -2663,8 +2629,6 @@ ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [42] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) @@ -2674,18 +2638,8 @@ ec) ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(2)/m/n' will be -(Font) scaled to size 8.00085pt on input line 2523. -LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(3)/m/n' will be -(Font) scaled to size 7.99915pt on input line 2523. - (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -LaTeX Font Info: Font shape `TU/LucidaConsoleDK(2)/m/n' will be -(Font) scaled to size 7.12pt on input line 2523. - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [43] (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp @@ -2693,15 +2647,13 @@ ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [44] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) +ec) [22] (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp @@ -2721,9 +2673,9 @@ ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [45] +ec) [23] (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) +ec) [24] (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp @@ -2767,14 +2719,12 @@ ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) +ec) [25] (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [46] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) @@ -2787,13 +2737,9 @@ ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [47] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [48] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) +ec) [26] (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp @@ -2801,10 +2747,6 @@ ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [49] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [50] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) @@ -2821,15 +2763,13 @@ ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [51] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [52] +ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp @@ -2851,57 +2791,40 @@ ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [53] +ec) [27] (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [54] +ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \vbox (badness 2735) detected at line 3441 - [] - -[55] (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \vbox (badness 1308) detected at line 3491 - [] - -[56] (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \hbox (badness 10000) detected at line 3562 - [][] - [] - - -Underfull \hbox (badness 10000) detected at line 3562 -[][][] - [] - +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [28] -Underfull \hbox (badness 10000) detected at line 3563 - [][] - [] +LaTeX Warning: Reference `sec:R:data:frames' on page 29 undefined on input line + 1606. -Underfull \hbox (badness 10000) detected at line 3563 -[][][] - [] +LaTeX Warning: Reference `sec:R:data:frames' on page 29 undefined on input line + 1606. (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [57] +ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [58] +ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp @@ -2910,17 +2833,13 @@ ec) ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \hbox (badness 7326) in paragraph at lines 3665--3666 -[]\TU/LucidaBrightOT(0)/m/n/10 Other operators and functions for matrix algebra - like cross-product +Underfull \vbox (badness 2698) detected at line 1614 [] - +[29] (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [59] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) @@ -2931,7 +2850,7 @@ ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) +ec) [30] (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp @@ -2945,20 +2864,16 @@ ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [60] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) +ec) [31] (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [61] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) @@ -2971,8 +2886,6 @@ ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [62] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) @@ -2986,15 +2899,9 @@ ec) ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \vbox (badness 3536) detected at line 4008 - [] - -[63] (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [64] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) @@ -3009,5836 +2916,38 @@ ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [65] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) +ec) [32] (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [66] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [67] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) +ec) [33] (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [68] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [69] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [70] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -Underfull \vbox (badness 6775) detected at line 4675 - [] - -[71] -Underfull \vbox (badness 10000) detected at line 4675 - [] - - -Underfull \vbox (badness 10000) detected at line 4675 - [] - -[72] [73] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [74] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [75] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -Underfull \vbox (badness 3281) detected at line 4900 - [] - -[76] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [77] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [78] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [79] [80] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [81] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [82] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [83] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [84] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [85] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [86] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [87] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [88] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [89] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-plot-1-1.pdf Graphic file (type pdf) - - [90] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-plot-2-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [91] -File: figure/pos-plot-3-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [92] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [93] -Underfull \vbox (badness 10000) has occurred while \output is active [] - - -Overfull \hbox (395.75pt too wide) has occurred while \output is active -[] - [] - - -Underfull \vbox (badness 10000) has occurred while \output is active [] - - -Overfull \hbox (395.75pt too wide) has occurred while \output is active -[] - [] - - -Underfull \vbox (badness 10000) has occurred while \output is active [] - - -Overfull \hbox (395.75pt too wide) has occurred while \output is active -[] - [] - - -Underfull \vbox (badness 10000) has occurred while \output is active [] - - -Overfull \hbox (395.75pt too wide) has occurred while \output is active -[] - [] - - -Underfull \hbox (badness 10000) has occurred while \output is active - [][][][] - [] - -[94 - -] -Underfull \vbox (badness 10000) detected at line 5794 - [] - - -Overfull \hbox (395.75pt too wide) detected at line 5794 -[] - [] - - -Underfull \vbox (badness 10000) detected at line 5794 - [] - - -Overfull \hbox (395.75pt too wide) detected at line 5794 -[] - [] - - -Underfull \vbox (badness 10000) detected at line 5794 - [] - - -Overfull \hbox (395.75pt too wide) detected at line 5794 -[] - [] - - -Underfull \vbox (badness 10000) detected at line 5794 - [] - - -Overfull \hbox (395.75pt too wide) detected at line 5794 -[] - [] - -Chapter 3. - -Overfull \hbox (30.0pt too wide) in paragraph at lines 5801--5801 -| - [] - - -Underfull \hbox (badness 10000) has occurred while \output is active - [][][][] - [] - -[95 - -] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -LaTeX Font Info: Font shape `TU/LucidaBrightOT(0)/m/sl' in size <9> not avai -lable -(Font) Font shape `TU/LucidaBrightOT(0)/m/it' tried instead on inp -ut line 5839. - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -LaTeX Font Info: Font shape `TU/LucidaConsoleDK(2)/m/n' will be -(Font) scaled to size 8.01pt on input line 5840. - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [96] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [97] -Underfull \hbox (badness 10000) detected at line 5918 - [][] - [] - - -Underfull \hbox (badness 10000) detected at line 5918 -[][][] - [] - - -Underfull \hbox (badness 10000) detected at line 5919 - [][] - [] - - -Underfull \hbox (badness 10000) detected at line 5919 -[][][] - [] - - -Underfull \hbox (badness 10000) detected at line 5920 - [][] - [] - - -Underfull \hbox (badness 10000) detected at line 5920 -[][][] - [] - - -Underfull \hbox (badness 10000) detected at line 5921 - [][] - [] - - -Underfull \hbox (badness 10000) detected at line 5921 -[][][] - [] - - -Underfull \hbox (badness 10000) detected at line 5922 - [][] - [] - - -Underfull \hbox (badness 10000) detected at line 5922 -[][][] - [] - -[98] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [99] [100] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [101] [102] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [103] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [104] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [105] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [106] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [107] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [108] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -Underfull \hbox (badness 7740) in paragraph at lines 6367--6368 -[]\TU/Notice2Std(0)/m/n/20.74 U[] \TU/LucidaBrightOT(0)/m/n/10 Do play with the - use of the switch statement. Look at the - [] - - -Underfull \hbox (badness 3769) in paragraph at lines 6367--6368 -\TU/LucidaBrightOT(0)/m/n/10 documentation for [][][][][][] using [][][][][][] -and study the exam- - [] - - -Underfull \hbox (badness 3068) in paragraph at lines 6367--6368 -\TU/LucidaBrightOT(0)/m/n/10 ples at the end of the help page. Explore what hap -pens if you set - [] - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -Underfull \hbox (badness 1043) in paragraph at lines 6391--6392 -\TU/LucidaBrightOT(0)/m/n/10 happens if you set [][][][][][], [][][][][][], [][ -][][][][] or - [] - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [109] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [110] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [111] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [112] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [113] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [114] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [115] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [116] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [117] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [118] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [119] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [120] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [121] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [122] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [123] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -Overfull \vbox (0.92584pt too high) detected at line 7254 - [] - -[124] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [125] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [126] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [127] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [128] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [129] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [130] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [131] [132] -Underfull \vbox (badness 10000) detected at line 7682 - [] - - -Overfull \hbox (395.75pt too wide) detected at line 7682 -[] - [] - - -Underfull \vbox (badness 10000) detected at line 7682 - [] - - -Overfull \hbox (395.75pt too wide) detected at line 7682 -[] - [] - - -Underfull \vbox (badness 10000) detected at line 7682 - [] - - -Overfull \hbox (395.75pt too wide) detected at line 7682 -[] - [] - - -Underfull \vbox (badness 10000) detected at line 7682 - [] - - -Overfull \hbox (395.75pt too wide) detected at line 7682 -[] - [] - -Chapter 4. - -Overfull \hbox (30.0pt too wide) in paragraph at lines 7688--7688 -| - [] - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -Underfull \hbox (badness 10000) has occurred while \output is active - [][][][] - [] - -[133 - - -] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [134] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-distrib-01a-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [135] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [136] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [137] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -Underfull \hbox (badness 1412) in paragraph at lines 7927--7928 -\TU/LucidaBrightOT(0)/m/n/10 tention to the values obtained. Repeat the exercis -e, but now executing - [] - - -Underfull \hbox (badness 1226) in paragraph at lines 7927--7928 -[][][][][][][][][] \TU/LucidaBrightOT(0)/m/n/10 immediately before each call to - [][][][][][], again paying - [] - -[138] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-cor-00-1.pdf Graphic file (type pdf) - -LaTeX Font Info: Calculating math sizes for size <11> on input line 7985. -LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(2)/m/n' will be -(Font) scaled to size 11.00117pt on input line 7985. -LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(2)/m/n' will be -(Font) scaled to size 7.70078pt on input line 7985. -LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(2)/m/n' will be -(Font) scaled to size 5.50058pt on input line 7985. -LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(3)/m/n' will be -(Font) scaled to size 10.99883pt on input line 7985. -LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(3)/m/n' will be -(Font) scaled to size 7.69914pt on input line 7985. -LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(3)/m/n' will be -(Font) scaled to size 5.4994pt on input line 7985. - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [139] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [140] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [141] -LaTeX Font Info: Font shape `TU/LucidaConsoleDK(0)/m/sl' in size <9> not ava -ilable -(Font) Font shape `TU/LucidaConsoleDK(0)/m/it' tried instead on in -put line 8119. - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -LaTeX Font Info: Font shape `TU/LucidaConsoleDK(2)/m/sl' in size <9> not ava -ilable -(Font) Font shape `TU/LucidaConsoleDK(2)/m/it' tried instead on in -put line 8119. -LaTeX Font Info: Font shape `TU/LucidaConsoleDK(2)/m/it' will be -(Font) scaled to size 8.01pt on input line 8119. - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [142] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-models-1a-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [143] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [144] -File: figure/pos-models-2a-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [145] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -Underfull \vbox (badness 6396) detected at line 8357 - [] - -[146] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -Overfull \hbox (3.89601pt too wide) in paragraph at lines 8398--8398 -[]\TU/LucidaConsoleDK(0)/m/n/8 ## - attr(*, "heading")= chr [1:2] "Analysis of - Variance Table\n" "Response: dist"[] - [] - - -Underfull \vbox (badness 10000) detected at line 8487 - [] - -[147] [148] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [149] -File: figure/pos-model-6a-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [150] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -Overfull \hbox (55.35208pt too wide) in paragraph at lines 8641--8641 -[]\TU/LucidaConsoleDK(0)/m/n/8 ## lm(formula = count ~ spray, data = InsectSpra -ys, contrasts = list(spray = contr.treatment))[] - [] - - -Overfull \hbox (26.40807pt too wide) in paragraph at lines 8673--8673 -[]\TU/LucidaConsoleDK(0)/m/n/8 ## lm(formula = count ~ spray, data = InsectSpra -ys, contrasts = list(spray = contr.sum))[] - [] - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -Underfull \vbox (badness 10000) detected at line 8678 - [] - - -Underfull \vbox (badness 10000) detected at line 8678 - [] - -[151] [152] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [153] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-model-11-1.pdf Graphic file (type pdf) - - [154] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -Underfull \vbox (badness 10000) detected at line 8878 - [] - -[155] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [156] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [157] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -Overfull \hbox (336.75217pt too wide) in paragraph at lines 9013--9013 -[]\TU/LucidaConsoleDK(0)/m/n/8 ## $ call : language nls(formula = rate ~ - SSmicmen(conc, Vm, K), data = Puromycin, subset = state == "treated", alg -orithm = "defa| __truncated__ ...[] - [] - - -Underfull \vbox (badness 6876) detected at line 9040 - [] - -[158] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [159] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -Underfull \vbox (badness 10000) detected at line 9211 - [] - - -Underfull \vbox (badness 10000) detected at line 9211 - [] - -[160] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [161] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [162] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [163] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [164] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -Underfull \vbox (badness 2443) detected at line 9729 - [] - -[165] [166] [167] [168] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-ts-02-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [169] -File: figure/pos-ts-03-1.pdf Graphic file (type pdf) - -File: figure/pos-ts-05-1.pdf Graphic file (type pdf) - - [170] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [171] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [172] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-pca-05-1.pdf Graphic file (type pdf) - - [173] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-pca-04-1.pdf Graphic file (type pdf) - - [174] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [175] -File: figure/pos-mds-03-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [176] -File: figure/pos-cluster-02-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [177] [178] -Underfull \vbox (badness 10000) detected at line 10278 - [] - - -Overfull \hbox (395.75pt too wide) detected at line 10278 -[] - [] - - -Underfull \vbox (badness 10000) detected at line 10278 - [] - - -Overfull \hbox (395.75pt too wide) detected at line 10278 -[] - [] - - -Underfull \vbox (badness 10000) detected at line 10278 - [] - - -Overfull \hbox (395.75pt too wide) detected at line 10278 -[] - [] - - -Underfull \vbox (badness 10000) detected at line 10278 - [] - - -Overfull \hbox (395.75pt too wide) detected at line 10278 -[] - [] - -Chapter 5. - -Overfull \hbox (30.0pt too wide) in paragraph at lines 10284--10284 -| - [] - - -Underfull \hbox (badness 10000) has occurred while \output is active - [][][][] - [] - -[179 - - -] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [180] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [181] [182] -LaTeX Font Info: Font shape `TU/LucidaBrightOT(0)/m/sl' in size <10> not ava -ilable -(Font) Font shape `TU/LucidaBrightOT(0)/m/it' tried instead on inp -ut line 10346. - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [183] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [184] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [185] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [186] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -Overfull \hbox (34.94408pt too wide) in paragraph at lines 10663--10663 -[]\TU/LucidaConsoleDK(0)/m/n/8 ## stop(gettextf("number of offsets -is %d, should equal %d (number of observations)",[] - [] - -[187] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [188] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [189] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [190] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [191] -Underfull \vbox (badness 4981) detected at line 11002 - [] - - -Underfull \vbox (badness 4981) detected at line 11002 - [] - -[192] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [193] [194] -Underfull \vbox (badness 10000) detected at line 11088 - [] - - -Overfull \hbox (395.75pt too wide) detected at line 11088 -[] - [] - - -Underfull \vbox (badness 10000) detected at line 11088 - [] - - -Overfull \hbox (395.75pt too wide) detected at line 11088 -[] - [] - - -Underfull \vbox (badness 10000) detected at line 11088 - [] - - -Overfull \hbox (395.75pt too wide) detected at line 11088 -[] - [] - - -Underfull \vbox (badness 10000) detected at line 11088 - [] - - -Overfull \hbox (395.75pt too wide) detected at line 11088 -[] - [] - -Chapter 6. - -Overfull \hbox (30.0pt too wide) in paragraph at lines 11094--11094 -| - [] - - -Underfull \hbox (badness 10000) has occurred while \output is active - [][][][] - [] - -[195 - - -] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [196] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -LaTeX Font Info: Font shape `TU/LucidaConsoleDK(2)/b/n' will be -(Font) scaled to size 10.68pt on input line 11147. - [197] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -LaTeX Font Info: Font shape `TU/LucidaConsoleDK(2)/m/it' will be -(Font) scaled to size 8.9pt on input line 11161. - [198] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -Underfull \vbox (badness 10000) detected at line 11227 - [] - -[199] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [200] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [201] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [202] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [203] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [204] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [205] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [206] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [207] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [208] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [209] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [210] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [211] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [212] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [213] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -Underfull \vbox (badness 4595) detected at line 12274 - [] - -[214] [215] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [216] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [217] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [218] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [219] -Underfull \vbox (badness 10000) has occurred while \output is active [] - - -Overfull \hbox (395.75pt too wide) has occurred while \output is active -[] - [] - - -Underfull \vbox (badness 10000) has occurred while \output is active [] - - -Overfull \hbox (395.75pt too wide) has occurred while \output is active -[] - [] - - -Underfull \vbox (badness 10000) has occurred while \output is active [] - - -Overfull \hbox (395.75pt too wide) has occurred while \output is active -[] - [] - - -Underfull \vbox (badness 10000) has occurred while \output is active [] - - -Overfull \hbox (395.75pt too wide) has occurred while \output is active -[] - [] - - -Underfull \hbox (badness 10000) has occurred while \output is active - [][][][] - [] - -[220 - -] -Underfull \vbox (badness 10000) detected at line 12578 - [] - - -Overfull \hbox (395.75pt too wide) detected at line 12578 -[] - [] - - -Underfull \vbox (badness 10000) detected at line 12578 - [] - - -Overfull \hbox (395.75pt too wide) detected at line 12578 -[] - [] - - -Underfull \vbox (badness 10000) detected at line 12578 - [] - - -Overfull \hbox (395.75pt too wide) detected at line 12578 -[] - [] - - -Underfull \vbox (badness 10000) detected at line 12578 - [] - - -Overfull \hbox (395.75pt too wide) detected at line 12578 -[] - [] - -Chapter 7. - -Underfull \hbox (badness 2503) in paragraph at lines 12580--12582 - \TU/LucidaBrightOT(0)/m/n/10 The commonality between science and art is in try -ing to see - [] - - -Overfull \hbox (30.0pt too wide) in paragraph at lines 12584--12584 -| - [] - - -Underfull \hbox (badness 10000) has occurred while \output is active - [][][][] - [] - -[221 - -] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [222] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [223] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [224] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [225] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-ggplot-basics-01-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [226] -File: figure/pos-ggplot-basics-03-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-ggplot-basics-04-1.pdf Graphic file (type pdf) - - [227] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -Underfull \hbox (badness 1590) in paragraph at lines 12820--12821 -\TU/LucidaBrightOT(0)/m/n/10 age ‘\TU/LucidaSansOT(0)/m/n/10 gginnards\TU/Lucid -aBrightOT(0)/m/n/10 ’[][] provides methods [][][][][][], [][][][][][], [][][][] -[][] and - [] - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-ggplot-basics-04a-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-ggplot-basics-05-1.pdf Graphic file (type pdf) - - [228] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-ggplot-basics-06-1.pdf Graphic file (type pdf) - - [229] -File: figure/pos-ggplot-basics-07-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-ggplot-basics-08-1.pdf Graphic file (type pdf) - - [230] -File: figure/pos-ggplot-basics-09-1.pdf Graphic file (type pdf) - -File: figure/pos-ggplot-basics-10-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [231] -File: figure/pos-ggplot-basics-11-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-ggplot-basics-info-01-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [232] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-ggplot-objects-02-1.pdf Graphic file (type pdf) - - [233] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-ggplot-objects-info-02-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [234] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [235] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [236] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-mapping-stage-02-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [237] -File: figure/pos-mapping-stage-03-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [238] -File: figure/pos-scatter-01-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [239] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-scatter-12-1.pdf Graphic file (type pdf) - - [240] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-scatter-12a-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-scatter-16-1.pdf Graphic file (type pdf) - - [241] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-scatter-18-1.pdf Graphic file (type pdf) - - [242] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-rug-plot-01-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [243] -File: figure/pos-line-plot-01-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-step-plot-01-1.pdf Graphic file (type pdf) - - [244] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -Underfull \hbox (badness 1383) in paragraph at lines 13577--13578 -[]\TU/Notice2Std(0)/m/n/20.74 U[] \TU/LucidaBrightOT(0)/m/n/10 Using the follow -ing toy data, make three plots using [][][][][][], - [] - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-area-plot-01-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -Underfull \hbox (badness 4726) in paragraph at lines 13613--13614 -[][][][][][][][][][] \TU/LucidaBrightOT(0)/m/n/10 and [][][][][][][][][] requir -e a single aesthetic, [][][][][][] and - [] - -[245] -File: figure/pos-area-plot-02-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-col-plot-02-1.pdf Graphic file (type pdf) - - [246] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-col-plot-03-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-col-plot-04-1.pdf Graphic file (type pdf) - - [247] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-tile-plot-02-1.pdf Graphic file (type pdf) - - [248] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-tile-plot-03-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [249] -File: figure/pos-sf_plot-01-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-text-plot-01-1.pdf Graphic file (type pdf) - - [250] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [251] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [252] -File: figure/pos-text-plot-06-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-label-plot-01-1.pdf Graphic file (type pdf) - - [253] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-repel-plot-01-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [254] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-table-plot-02-1.pdf Graphic file (type pdf) - - [255] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [256] -File: figure/pos-plot-plot-02-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [257] -File: figure/pos-plot-plot-03-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-plot-grob-01-1.pdf Graphic file (type pdf) - - [258] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-plot-npc-eb-01-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [259] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-function-plot-01-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [260] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-summary-plot-02-1.pdf Graphic file (type pdf) - - [261] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [262] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-summary-plot-09a-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -Underfull \hbox (badness 1466) in paragraph at lines 14395--14396 -[]\TU/LucidaBrightOT(0)/m/n/10 Passing [][][][][][] instead of [][][][][][] to -[][][][][][] results in traditional - [] - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [263] -File: figure/pos-smooth-plot-02-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-smooth-plot-04-1.pdf Graphic file (type pdf) - - [264] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-smooth-plot-06-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [265] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-smooth-plot-12-1.pdf Graphic file (type pdf) - - [266] -File: figure/pos-smooth-plot-13-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [267] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-histogram-plot-01-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-histogram-plot-03-1.pdf Graphic file (type pdf) - - [268] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-bin2d-plot-01-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [269] -File: figure/pos-hex-plot-01-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-density-plot-01-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [270] -File: figure/pos-density-plot-10-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-density-plot-12-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [271] -File: figure/pos-bw-plot-01-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -Underfull \hbox (badness 1184) in paragraph at lines 14812--14813 -[][][][][][]\TU/LucidaBrightOT(0)/m/n/10 , which affect the outliers in a way s -imilar to the equivalent - [] - -File: figure/pos-bw-plot-02-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [272] -File: figure/pos-violin-plot-02-1.pdf Graphic file (type pdf) - -File: figure/pos-ggbeeswarm-plot-01-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [273] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-flipping_box-01-ggplot-1.pdf Graphic file (type pdf) - - [274] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-flipping-01-ggplot-1.pdf Graphic file (type pdf) - -File: figure/pos-flipping-02-ggplot-1.pdf Graphic file (type pdf) - - [275] -File: figure/pos-flipping-03-ggplot-1.pdf Graphic file (type pdf) - -File: figure/pos-flipping-04-ggplot-1.pdf Graphic file (type pdf) - - [276] - -LaTeX Warning: Reference `chap:R:case:fitted:models' on page 277 undefined on i -nput line 15004. - - -LaTeX Warning: Reference `chap:R:case:fitted:models' on page 277 undefined on i -nput line 15004. - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-flipping-05-ggplot-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-flipping-06-ggplot-1.pdf Graphic file (type pdf) - - [277] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-flipping-06a-ggplot-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-flipping-07-ggpmisc-1.pdf Graphic file (type pdf) - - [278] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-flipping-08-ggpmisc-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-flipping-09-ggpmisc-1.pdf Graphic file (type pdf) - - [279] -File: figure/pos-flipping-10-ggpmisc-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [280] -File: figure/pos-facets-00-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-facets-01-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [281] -File: figure/pos-facets-06-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-facets-07-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [282] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-facets-13-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [283] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [284] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-axis-labels-01-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [285] -File: figure/pos-axis-labels-03-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [286] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-scale-limits-04-1.pdf Graphic file (type pdf) - - [287] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [288] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-scale-ticks-02-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-scale-ticks-03-1.pdf Graphic file (type pdf) - - [289] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -Underfull \hbox (badness 1132) in paragraph at lines 15628--15629 -[]\TU/LucidaBrightOT(0)/m/n/10 For currency, we can use [][][][][][], to includ -e commas separating thou- - [] - - -Underfull \hbox (badness 5726) in paragraph at lines 15628--15629 -\TU/LucidaBrightOT(0)/m/n/10 sands, millions, so on, we can use [][][][][][], a -nd for numbers format- - [] - - -Underfull \hbox (badness 3138) in paragraph at lines 15628--15629 -\TU/LucidaBrightOT(0)/m/n/10 ted using exponents of 10—useful for logarithmic-t -ransformed scales—we - [] - - -Underfull \hbox (badness 3646) in paragraph at lines 15628--15629 -\TU/LucidaBrightOT(0)/m/n/10 can use [][][][][][], [][][][][][], - [] - -File: figure/pos-scale-ticks-04-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [290] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -Underfull \hbox (badness 1418) in paragraph at lines 15663--15664 -[][][][][][] \TU/LucidaBrightOT(0)/m/n/10 Similar to the maths functions of \TU -/LucidaSansOT(0)/m/n/10 R\TU/LucidaBrightOT(0)/m/n/10 , the name of the scales -are - [] - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-scale-trans-01-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [291] -File: figure/pos-axis-position-01-1.pdf Graphic file (type pdf) - -File: figure/pos-axis-secondary-01-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [292] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-scale-datetime-01-1.pdf Graphic file (type pdf) - -File: figure/pos-scale-datetime-02-1.pdf Graphic file (type pdf) - - [293] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-scale-discrete-10-1.pdf Graphic file (type pdf) - - [294] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -Underfull \hbox (badness 1552) in paragraph at lines 15899--15900 -\TU/LucidaBrightOT(0)/m/n/10 For the [][][][][][] \TU/LucidaBrightOT(0)/m/it/10 - aesthetic\TU/LucidaBrightOT(0)/m/n/10 , several scales are available, both dis -crete and con- - [] - - -Underfull \hbox (badness 1033) in paragraph at lines 15899--15900 -\TU/LucidaBrightOT(0)/m/n/10 tinuous. They do not differ much from those alread -y described above. \TU/LucidaBrightOT(0)/m/it/10 Ge- - [] - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [295] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [296] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -Underfull \hbox (badness 4378) in paragraph at lines 16044--16045 -\TU/LucidaBrightOT(0)/m/n/10 Continuous color scales [][][][][][][][][], [][][] -[][][][][][], - [] - - -Underfull \hbox (badness 7963) in paragraph at lines 16044--16045 -[][][][][][][][][]\TU/LucidaBrightOT(0)/m/n/10 , [][][][][][][][][], [][][][][] -[][][][] and - [] - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -Underfull \hbox (badness 2103) in paragraph at lines 16048--16049 -\TU/LucidaBrightOT(0)/m/n/10 Color scales [][][][][][][][][], [][][][][][][][][ -], [][][][][][][][][] - [] - - -Underfull \hbox (badness 10000) in paragraph at lines 16048--16049 -\TU/LucidaBrightOT(0)/m/n/10 are used with categorical data stored as factors. -Other scales like - [] - - -Underfull \hbox (badness 1735) in paragraph at lines 16048--16049 -[][][][][][][][][] \TU/LucidaBrightOT(0)/m/n/10 and [][][][][][][][][] provide -discrete sets of - [] - -[297] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-binned-scales-01-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [298] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-scale-color-10-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [299] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-annotate-01-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [300] -Overfull \hbox (4.39212pt too wide) in paragraph at lines 16181--16181 -[] []\TU/LucidaConsoleDK(0)/b/n/8 annotation_custom[][]\TU/LucidaConsoleDK(0)/ -m/n/8 ([][]\TU/LucidaConsoleDK(0)/b/n/8 ggplotGrob[][]\TU/LucidaConsoleDK(0)/m/ -n/8 (p[] []+[] []\TU/LucidaConsoleDK(0)/b/n/8 coord_cartesian[][]\TU/LucidaCons -oleDK(0)/m/n/8 ([][]xlim[] []=[] []\TU/LucidaConsoleDK(0)/b/n/8 c[][]\TU/Lucida -ConsoleDK(0)/m/n/8 ([][]5[][],[] []10[][]),[] []ylim[] []=[] []\TU/LucidaConsol -eDK(0)/b/n/8 c[][]\TU/LucidaConsoleDK(0)/m/n/8 ([][]20[][],[] []40[][]))[] []+[ -][] - [] - -File: figure/pos-inset-01-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-annotate-03-1.pdf Graphic file (type pdf) - - [301] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [302] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-wind-05-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -Underfull \hbox (badness 5374) in paragraph at lines 16274--16275 -[]\TU/LucidaBrightOT(0)/m/n/10 For an equivalent plot, using an empirical densi -ty, we have to use - [] - -File: figure/pos-wind-06-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [303] -File: figure/pos-wind-08-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-main-chunk-59-1.pdf Graphic file (type pdf) - - [304] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [305] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-themes-01-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -Underfull \hbox (badness 3009) in paragraph at lines 16388--16389 -\TU/LucidaBrightOT(0)/m/n/10 of the predefined themes from ‘\TU/LucidaSansOT(0) -/m/n/10 ggplot2\TU/LucidaBrightOT(0)/m/n/10 ’[][]: [][][][][][][][][], [][][][] -[][][][][], - [] - - -Underfull \hbox (badness 10000) in paragraph at lines 16388--16389 -[][][][][][][][][]\TU/LucidaBrightOT(0)/m/n/10 , [][][][][][][][][], [][][][][] -[][][][], [][][][][][][][][] and - [] - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -Underfull \hbox (badness 1783) in paragraph at lines 16392--16393 -[][][][][][] \TU/LucidaBrightOT(0)/m/n/10 Predefined “themes” like [][][][][][] -[][][] are, in reality, not themes - [] - - -Underfull \hbox (badness 1308) in paragraph at lines 16392--16393 -\TU/LucidaBrightOT(0)/m/n/10 but instead are constructors of theme objects. The - \TU/LucidaBrightOT(0)/m/it/10 themes \TU/LucidaBrightOT(0)/m/n/10 they return - [] - - -Underfull \hbox (badness 2173) in paragraph at lines 16392--16393 -\TU/LucidaBrightOT(0)/m/n/10 when called depend on the arguments passed to thei -r parameters. In - [] - -[306] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-themes-11-1.pdf Graphic file (type pdf) - - [307] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [308] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-themes-21-1.pdf Graphic file (type pdf) - - [309] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-themes-33-1.pdf Graphic file (type pdf) - - -Underfull \vbox (badness 5592) detected at line 16573 - [] - - -Underfull \vbox (badness 5592) detected at line 16573 - [] - -[310] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [311] -File: figure/pos-patchwork-03-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [312] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -Underfull \hbox (badness 3471) in paragraph at lines 16641--16642 -[]\TU/LucidaBrightOT(0)/m/n/10 In general it is possible to create \TU/LucidaBr -ightOT(0)/m/it/10 expressions \TU/LucidaBrightOT(0)/m/n/10 explicitly with func -tion - [] - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-plotmath-02-1.pdf Graphic file (type pdf) - - [313] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-plotmath-02a-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [314] [315] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figure/pos-expr-bquote-01-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [316] -File: figure/pos-expr-substitute-01-1.pdf Graphic file (type pdf) - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [317] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [318] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [319] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [320] [321] -Underfull \vbox (badness 10000) has occurred while \output is active [] - - -Overfull \hbox (395.75pt too wide) has occurred while \output is active -[] - [] - - -Underfull \vbox (badness 10000) has occurred while \output is active [] - - -Overfull \hbox (395.75pt too wide) has occurred while \output is active -[] - [] - - -Underfull \vbox (badness 10000) has occurred while \output is active [] - - -Overfull \hbox (395.75pt too wide) has occurred while \output is active -[] - [] - - -Underfull \vbox (badness 10000) has occurred while \output is active [] - - -Overfull \hbox (395.75pt too wide) has occurred while \output is active -[] - [] - - -Underfull \hbox (badness 10000) has occurred while \output is active - [][][][] - [] - -[322 - -] -Underfull \vbox (badness 10000) detected at line 17092 - [] - - -Overfull \hbox (395.75pt too wide) detected at line 17092 -[] - [] - - -Underfull \vbox (badness 10000) detected at line 17092 - [] - - -Overfull \hbox (395.75pt too wide) detected at line 17092 -[] - [] - - -Underfull \vbox (badness 10000) detected at line 17092 - [] - - -Overfull \hbox (395.75pt too wide) detected at line 17092 -[] - [] - - -Underfull \vbox (badness 10000) detected at line 17092 - [] - - -Overfull \hbox (395.75pt too wide) detected at line 17092 -[] - [] - -Chapter 8. - -Overfull \hbox (30.0pt too wide) in paragraph at lines 17098--17098 -| - [] - - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -Underfull \hbox (badness 10000) has occurred while \output is active - [][][][] - [] - -[323 - -] [324] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [325] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [326] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [327] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [328] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [329] [330] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -Underfull \hbox (badness 1708) in paragraph at lines 17532--17533 -[]\TU/LucidaBrightOT(0)/m/n/10 Example file [][][][][][] contains comma-separat -ed-values with - [] - -[331] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [332] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [333] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [334] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [335] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [336] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [337] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [338] + +LaTeX Warning: Reference `chap:R:statistics' on page 34 undefined on input line + 1892. + + +LaTeX Warning: Reference `chap:R:functions' on page 34 undefined on input line +1892. + + (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp @@ -8848,12 +2957,10 @@ ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) +ec) [34] (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [339] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) @@ -8864,7 +2971,7 @@ ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) +ec) [35] (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp @@ -8874,224 +2981,88 @@ ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) +ec) [36] (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [340] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [341] -Underfull \vbox (badness 10000) detected at line 18183 - [] +ec) [37] +Underfull \vbox (badness 10000) has occurred while \output is active [] -Underfull \vbox (badness 10000) detected at line 18183 +Overfull \hbox (395.75pt too wide) has occurred while \output is active +[] [] -[342] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -Underfull \hbox (badness 10000) in paragraph at lines 18186--18187 -[]\TU/LucidaBrightOT(0)/m/n/10 Next we extract the text from its [][][][][][] a -ttribute, using functions - [] +Underfull \vbox (badness 10000) has occurred while \output is active [] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [343] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [344] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figures/Book1-xlsx.png Graphic file (type bmp) - - [345] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [346] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [347] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -File: figures/my-data-xlsx.png Graphic file (type bmp) - -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [348] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [349] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [350] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [351] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [352] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -Overfull \hbox (14.04007pt too wide) in paragraph at lines 18737--18737 -[]\TU/LucidaConsoleDK(0)/m/n/8 ## [1] D0,D1,D2 : pevpr, valid_yr_count **A -CTIVE GRID** ( 216576 values per variable)[] +Overfull \hbox (395.75pt too wide) has occurred while \output is active +[] [] -[353] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [354] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [355] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [356] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [357] -(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [358] [359] [360] -Underfull \vbox (badness 10000) detected at line 19106 + +Underfull \vbox (badness 10000) has occurred while \output is active [] + + +Overfull \hbox (395.75pt too wide) has occurred while \output is active +[] [] -Overfull \hbox (395.75pt too wide) detected at line 19106 +Underfull \vbox (badness 10000) has occurred while \output is active [] + + +Overfull \hbox (395.75pt too wide) has occurred while \output is active [] [] -Underfull \vbox (badness 10000) detected at line 19106 +Underfull \hbox (badness 10000) has occurred while \output is active + [][][][] + [] + +[38 + +] +Underfull \vbox (badness 10000) detected at line 2111 [] -Overfull \hbox (395.75pt too wide) detected at line 19106 +Overfull \hbox (395.75pt too wide) detected at line 2111 [] [] -Underfull \vbox (badness 10000) detected at line 19106 +Underfull \vbox (badness 10000) detected at line 2111 [] -Overfull \hbox (395.75pt too wide) detected at line 19106 +Overfull \hbox (395.75pt too wide) detected at line 2111 [] [] -Underfull \vbox (badness 10000) detected at line 19106 +Underfull \vbox (badness 10000) detected at line 2111 [] -Overfull \hbox (395.75pt too wide) detected at line 19106 +Overfull \hbox (395.75pt too wide) detected at line 2111 [] [] -Underfull \hbox (badness 10000) detected at line 19106 +Underfull \vbox (badness 10000) detected at line 2111 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 2111 [] [] -Underfull \hbox (badness 3049) in paragraph at lines 19106--19106 -[][]\TU/LucidaBrightOT(0)/m/n/10 Dalgaard, P. (2008). \TU/LucidaBrightOT(0)/m/i -t/10 Introductory Statistics with R\TU/LucidaBrightOT(0)/m/n/10 . Springer, p. -380. \TU/LucidaBrightOT(0)/m/sc/10 isbn\TU/LucidaBrightOT(0)/m/n/10 : +Underfull \hbox (badness 10000) detected at line 2111 +[] [] @@ -9099,11 +3070,10 @@ Underfull \hbox (badness 10000) has occurred while \output is active [][][][] [] -[361 - +[39 -] [362] [363] +] Underfull \vbox (badness 10000) has occurred while \output is active [] @@ -9140,7 +3110,7 @@ Underfull \hbox (badness 10000) has occurred while \output is active [][][][] [] -[364 +[40 ] runsystem(makeindex using-r-main-crc.idx)...executed safely (allowed). @@ -9186,15 +3156,15 @@ Underfull \hbox (badness 10000) detected at line 1 [] [] - +) Underfull \hbox (badness 10000) has occurred while \output is active [][][][] [] -[365 +[41 -] [366] [367] [368] [369] [370] [371] [372]) [373] +] Underfull \vbox (badness 10000) has occurred while \output is active [] @@ -9231,7 +3201,7 @@ Underfull \hbox (badness 10000) has occurred while \output is active [][][][] [] -[374 +[42 ] runsystem(makeindex rcatsidx.idx)...executed safely (allowed). @@ -9281,15 +3251,54 @@ LaTeX Font Info: Font shape `TU/LucidaSansOT(0)/b/sl' in size <18> not avail able (Font) Font shape `TU/LucidaSansOT(0)/b/it' tried instead on input line 1. - +) Underfull \hbox (badness 10000) has occurred while \output is active [][][][] [] -[375 +[43 + + +] +Underfull \vbox (badness 10000) has occurred while \output is active [] + + +Overfull \hbox (395.75pt too wide) has occurred while \output is active +[] + [] + + +Underfull \vbox (badness 10000) has occurred while \output is active [] + + +Overfull \hbox (395.75pt too wide) has occurred while \output is active +[] + [] + + +Underfull \vbox (badness 10000) has occurred while \output is active [] + + +Overfull \hbox (395.75pt too wide) has occurred while \output is active +[] + [] + + +Underfull \vbox (badness 10000) has occurred while \output is active [] + + +Overfull \hbox (395.75pt too wide) has occurred while \output is active +[] + [] + + +Underfull \hbox (badness 10000) has occurred while \output is active + [][][][] + [] +[44 -] [376] [377] [378] [379] [380]) +] runsystem(makeindex rindex.idx)...executed safely (allowed). (rindex.ind @@ -9333,38 +3342,32 @@ Underfull \hbox (badness 10000) detected at line 1 [] [] - +) Underfull \hbox (badness 10000) has occurred while \output is active [][][][] [] -[381 - +[45 -] [382] [383] [384] [385]) [386] (using-r-main-crc.aux -(frontmatter/preface.aux)) +] (using-r-main-crc.aux) LaTeX Font Warning: Some font shapes were not available, defaults substituted. LaTeX Warning: There were undefined references. - -Package biblatex Warning: Please rerun LaTeX. -(biblatex) Page breaks have changed. - Package logreq Info: Writing requests to 'using-r-main-crc.run.xml'. \openout1 = `using-r-main-crc.run.xml'. ) Here is how much of TeX's memory you used: - 40286 strings out of 412484 - 1032658 string characters out of 2846361 - 1582650 words of memory out of 3000000 - 54832 multiletter control sequences out of 15000+600000 - 477157 words of font info for 209 fonts, out of 8000000 for 9000 + 33171 strings out of 412484 + 709353 string characters out of 2846361 + 1558606 words of memory out of 3000000 + 52719 multiletter control sequences out of 15000+600000 + 474403 words of font info for 163 fonts, out of 8000000 for 9000 42 hyphenation exceptions out of 8191 - 101i,9n,128p,2174b,5670s stack positions out of 10000i,1000n,20000p,200000b,80000s + 101i,10n,128p,1490b,5644s stack positions out of 10000i,1000n,20000p,200000b,80000s -Output written on using-r-main-crc.pdf (399 pages). +Output written on using-r-main-crc.pdf (50 pages). diff --git a/using-r-main-crc.pdf b/using-r-main-crc.pdf index 3e7589f4..133b7625 100644 Binary files a/using-r-main-crc.pdf and b/using-r-main-crc.pdf differ diff --git a/using-r-main-crc.run.xml b/using-r-main-crc.run.xml index a907ac63..0d108b6c 100644 --- a/using-r-main-crc.run.xml +++ b/using-r-main-crc.run.xml @@ -41,7 +41,7 @@ > ]> - + latex using-r-main-crc.bcf diff --git a/using-r-main-crc.synctex b/using-r-main-crc.synctex index dc6de988..994a34cd 100644 --- a/using-r-main-crc.synctex +++ b/using-r-main-crc.synctex @@ -178,353591 +178,40886 @@ Input:176:C:\Program Files\MiKTeX 2.9\tex\generic\pgf\frontendlayer\tikz\librari Input:177:C:\Program Files\MiKTeX 2.9\tex\generic\pgf\libraries\pgflibraryarrows.code.tex Input:178:C:\Program Files\MiKTeX 2.9\tex\latex\upquote\upquote.sty Input:179:C:\Users\Aphalo\Documents\Own_manuscripts\Books\learnr-book-crc-2ed\using-r-main-crc.aux -Input:180:C:\Users\Aphalo\Documents\Own_manuscripts\Books\learnr-book-crc-2ed\frontmatter\preface.aux -Input:181:C:\Program Files\MiKTeX 2.9\tex\latex\biblatex\lbx\english.lbx -Input:182:C:\Users\Aphalo\Documents\Own_manuscripts\Books\learnr-book-crc-2ed\using-r-main-crc.bbl +Input:180:C:\Program Files\MiKTeX 2.9\tex\latex\biblatex\lbx\english.lbx +Input:181:C:\Users\Aphalo\Documents\Own_manuscripts\Books\learnr-book-crc-2ed\using-r-main-crc.bbl Output:pdf Magnification:1000 Unit:1 X Offset:0 Y Offset:0 Content: -!14550 +!14448 {1 -[1,117:4262630,47279633:28320399,43253760,0 -(1,117:4262630,4025873:0,0,0 -[1,117:-473656,4025873:0,0,0 -(1,117:-473656,-710413:0,0,0 -(1,117:-473656,-644877:0,0,0 -k1,117:-473656,-644877:-65536 +[1,121:4262630,47279633:28320399,43253760,0 +(1,121:4262630,4025873:0,0,0 +[1,121:-473656,4025873:0,0,0 +(1,121:-473656,-710413:0,0,0 +(1,121:-473656,-644877:0,0,0 +k1,121:-473656,-644877:-65536 ) -(1,117:-473656,4736287:0,0,0 -k1,117:-473656,4736287:5209943 +(1,121:-473656,4736287:0,0,0 +k1,121:-473656,4736287:5209943 ) -g1,117:-473656,-710413 +g1,121:-473656,-710413 ) ] ) -[1,117:6630773,47279633:25952256,43253760,0 -[1,117:6630773,4812305:25952256,786432,0 -(1,117:6630773,4812305:25952256,0,0 -(1,117:6630773,4812305:25952256,0,0 -g1,117:3078558,4812305 -[1,117:3078558,4812305:0,0,0 -(1,117:3078558,2439708:0,1703936,0 -k1,117:1358238,2439708:-1720320 -(1,117:1358238,2439708:1720320,1703936,0 -(1,117:1358238,2439708:1179648,16384,0 -r1,117:2537886,2439708:1179648,16384,0 -) -g1,117:3062174,2439708 -(1,117:3062174,2439708:16384,1703936,0 -[1,117:3062174,2439708:25952256,1703936,0 -(1,117:3062174,1915420:25952256,1179648,0 -(1,117:3062174,1915420:16384,1179648,0 -r1,117:3078558,1915420:16384,1179648,0 -) -k1,117:29014430,1915420:25935872 -g1,117:29014430,1915420 +[1,121:6630773,47279633:25952256,43253760,0 +[1,121:6630773,4812305:25952256,786432,0 +(1,121:6630773,4812305:25952256,0,0 +(1,121:6630773,4812305:25952256,0,0 +g1,121:3078558,4812305 +[1,121:3078558,4812305:0,0,0 +(1,121:3078558,2439708:0,1703936,0 +k1,121:1358238,2439708:-1720320 +(1,121:1358238,2439708:1720320,1703936,0 +(1,121:1358238,2439708:1179648,16384,0 +r1,121:2537886,2439708:1179648,16384,0 +) +g1,121:3062174,2439708 +(1,121:3062174,2439708:16384,1703936,0 +[1,121:3062174,2439708:25952256,1703936,0 +(1,121:3062174,1915420:25952256,1179648,0 +(1,121:3062174,1915420:16384,1179648,0 +r1,121:3078558,1915420:16384,1179648,0 +) +k1,121:29014430,1915420:25935872 +g1,121:29014430,1915420 ) ] ) ) ) ] -[1,117:3078558,4812305:0,0,0 -(1,117:3078558,2439708:0,1703936,0 -g1,117:29030814,2439708 -g1,117:36135244,2439708 -(1,117:36135244,2439708:1720320,1703936,0 -(1,117:36135244,2439708:16384,1703936,0 -[1,117:36135244,2439708:25952256,1703936,0 -(1,117:36135244,1915420:25952256,1179648,0 -(1,117:36135244,1915420:16384,1179648,0 -r1,117:36151628,1915420:16384,1179648,0 -) -k1,117:62087500,1915420:25935872 -g1,117:62087500,1915420 +[1,121:3078558,4812305:0,0,0 +(1,121:3078558,2439708:0,1703936,0 +g1,121:29030814,2439708 +g1,121:36135244,2439708 +(1,121:36135244,2439708:1720320,1703936,0 +(1,121:36135244,2439708:16384,1703936,0 +[1,121:36135244,2439708:25952256,1703936,0 +(1,121:36135244,1915420:25952256,1179648,0 +(1,121:36135244,1915420:16384,1179648,0 +r1,121:36151628,1915420:16384,1179648,0 +) +k1,121:62087500,1915420:25935872 +g1,121:62087500,1915420 ) ] ) -g1,117:36675916,2439708 -(1,117:36675916,2439708:1179648,16384,0 -r1,117:37855564,2439708:1179648,16384,0 +g1,121:36675916,2439708 +(1,121:36675916,2439708:1179648,16384,0 +r1,121:37855564,2439708:1179648,16384,0 ) ) -k1,117:3078556,2439708:-34777008 +k1,121:3078556,2439708:-34777008 ) ] -[1,117:3078558,4812305:0,0,0 -(1,117:3078558,49800853:0,16384,2228224 -k1,117:1358238,49800853:-1720320 -(1,117:1358238,49800853:1720320,16384,2228224 -(1,117:1358238,49800853:1179648,16384,0 -r1,117:2537886,49800853:1179648,16384,0 -) -g1,117:3062174,49800853 -(1,117:3062174,52029077:16384,1703936,0 -[1,117:3062174,52029077:25952256,1703936,0 -(1,117:3062174,51504789:25952256,1179648,0 -(1,117:3062174,51504789:16384,1179648,0 -r1,117:3078558,51504789:16384,1179648,0 -) -k1,117:29014430,51504789:25935872 -g1,117:29014430,51504789 +[1,121:3078558,4812305:0,0,0 +(1,121:3078558,49800853:0,16384,2228224 +k1,121:1358238,49800853:-1720320 +(1,121:1358238,49800853:1720320,16384,2228224 +(1,121:1358238,49800853:1179648,16384,0 +r1,121:2537886,49800853:1179648,16384,0 +) +g1,121:3062174,49800853 +(1,121:3062174,52029077:16384,1703936,0 +[1,121:3062174,52029077:25952256,1703936,0 +(1,121:3062174,51504789:25952256,1179648,0 +(1,121:3062174,51504789:16384,1179648,0 +r1,121:3078558,51504789:16384,1179648,0 +) +k1,121:29014430,51504789:25935872 +g1,121:29014430,51504789 ) ] ) ) ) ] -[1,117:3078558,4812305:0,0,0 -(1,117:3078558,49800853:0,16384,2228224 -g1,117:29030814,49800853 -g1,117:36135244,49800853 -(1,117:36135244,49800853:1720320,16384,2228224 -(1,117:36135244,52029077:16384,1703936,0 -[1,117:36135244,52029077:25952256,1703936,0 -(1,117:36135244,51504789:25952256,1179648,0 -(1,117:36135244,51504789:16384,1179648,0 -r1,117:36151628,51504789:16384,1179648,0 -) -k1,117:62087500,51504789:25935872 -g1,117:62087500,51504789 +[1,121:3078558,4812305:0,0,0 +(1,121:3078558,49800853:0,16384,2228224 +g1,121:29030814,49800853 +g1,121:36135244,49800853 +(1,121:36135244,49800853:1720320,16384,2228224 +(1,121:36135244,52029077:16384,1703936,0 +[1,121:36135244,52029077:25952256,1703936,0 +(1,121:36135244,51504789:25952256,1179648,0 +(1,121:36135244,51504789:16384,1179648,0 +r1,121:36151628,51504789:16384,1179648,0 +) +k1,121:62087500,51504789:25935872 +g1,121:62087500,51504789 ) ] ) -g1,117:36675916,49800853 -(1,117:36675916,49800853:1179648,16384,0 -r1,117:37855564,49800853:1179648,16384,0 +g1,121:36675916,49800853 +(1,121:36675916,49800853:1179648,16384,0 +r1,121:37855564,49800853:1179648,16384,0 ) ) -k1,117:3078556,49800853:-34777008 +k1,121:3078556,49800853:-34777008 ) ] -g1,117:6630773,4812305 +g1,121:6630773,4812305 ) ) ] -[1,117:6630773,45706769:25952256,40108032,0 -(1,117:6630773,45706769:25952256,40108032,0 -(1,117:6630773,45706769:0,0,0 -g1,117:6630773,45706769 -) -[1,117:6630773,45706769:25952256,40108032,0 -[1,117:6630773,12262553:25952256,6663816,193461 -(1,117:6630773,5643548:25952256,505283,126483 -h1,117:6630773,5643548:0,0,0 -g1,117:8622412,5643548 -g1,117:9271873,5643548 -k1,117:22055654,5643548:10527376 -k1,117:32583030,5643548:10527376 -) -(1,117:6630773,6607915:25952256,32768,229376 -(1,117:6630773,6607915:0,32768,229376 -(1,117:6630773,6607915:5505024,32768,229376 -r1,117:12135797,6607915:5505024,262144,229376 -) -k1,117:6630773,6607915:-5505024 -) -(1,117:6630773,6607915:25952256,32768,0 -r1,117:32583029,6607915:25952256,32768,0 -) -) -(1,117:6630773,10158833:25952256,1178878,19565 -h1,117:6630773,10158833:0,0,0 -g1,117:11501184,10158833 -k1,117:22558171,10158833:10024858 -k1,117:32583029,10158833:10024858 -) -(1,117:6630773,12262553:25952256,682308,193461 -h1,117:6630773,12262553:0,0,0 -g1,117:8060506,12262553 -g1,117:8879653,12262553 -k1,117:22939641,12262553:9643388 -k1,117:32583029,12262553:9643388 +[1,121:6630773,45706769:25952256,40108032,0 +(1,121:6630773,45706769:25952256,40108032,0 +(1,121:6630773,45706769:0,0,0 +g1,121:6630773,45706769 +) +[1,121:6630773,45706769:25952256,40108032,0 +[1,121:6630773,12262553:25952256,6663816,193461 +(1,121:6630773,5643548:25952256,505283,126483 +h1,121:6630773,5643548:0,0,0 +g1,121:8622412,5643548 +g1,121:9271873,5643548 +k1,121:22055654,5643548:10527376 +k1,121:32583030,5643548:10527376 +) +(1,121:6630773,6607915:25952256,32768,229376 +(1,121:6630773,6607915:0,32768,229376 +(1,121:6630773,6607915:5505024,32768,229376 +r1,121:12135797,6607915:5505024,262144,229376 +) +k1,121:6630773,6607915:-5505024 +) +(1,121:6630773,6607915:25952256,32768,0 +r1,121:32583029,6607915:25952256,32768,0 +) +) +(1,121:6630773,10158833:25952256,1178878,19565 +h1,121:6630773,10158833:0,0,0 +g1,121:11501184,10158833 +k1,121:22558171,10158833:10024858 +k1,121:32583029,10158833:10024858 +) +(1,121:6630773,12262553:25952256,682308,193461 +h1,121:6630773,12262553:0,0,0 +g1,121:8060506,12262553 +g1,121:8879653,12262553 +k1,121:22939641,12262553:9643388 +k1,121:32583029,12262553:9643388 ) ] -h1,117:6630773,29404534:0,0,0 +h1,121:6630773,29404534:0,0,0 ] -(1,117:32583029,45706769:0,0,0 -g1,117:32583029,45706769 +(1,121:32583029,45706769:0,0,0 +g1,121:32583029,45706769 ) ) ] -(1,117:6630773,47279633:25952256,0,0 -h1,117:6630773,47279633:25952256,0,0 +(1,121:6630773,47279633:25952256,0,0 +h1,121:6630773,47279633:25952256,0,0 ) ] -(1,117:4262630,4025873:0,0,0 -[1,117:-473656,4025873:0,0,0 -(1,117:-473656,-710413:0,0,0 -(1,117:-473656,-710413:0,0,0 -g1,117:-473656,-710413 +(1,121:4262630,4025873:0,0,0 +[1,121:-473656,4025873:0,0,0 +(1,121:-473656,-710413:0,0,0 +(1,121:-473656,-710413:0,0,0 +g1,121:-473656,-710413 ) -g1,117:-473656,-710413 +g1,121:-473656,-710413 ) ] ) ] !4140 }1 -Input:183:C:\Users\Aphalo\Documents\Own_manuscripts\Books\learnr-book-crc-2ed\using-r-main-crc.toc +Input:182:C:\Users\Aphalo\Documents\Own_manuscripts\Books\learnr-book-crc-2ed\using-r-main-crc.toc !108 {2 -[183,40:4262630,47279633:28320399,43253760,3931 -(183,40:4262630,4025873:0,0,0 -[183,40:-473656,4025873:0,0,0 -(183,40:-473656,-710413:0,0,0 -(183,40:-473656,-644877:0,0,0 -k183,40:-473656,-644877:-65536 +[1,127:4262630,47279633:28320399,43253760,3931 +(1,127:4262630,4025873:0,0,0 +[1,127:-473656,4025873:0,0,0 +(1,127:-473656,-710413:0,0,0 +(1,127:-473656,-644877:0,0,0 +k1,127:-473656,-644877:-65536 ) -(183,40:-473656,4736287:0,0,0 -k183,40:-473656,4736287:5209943 +(1,127:-473656,4736287:0,0,0 +k1,127:-473656,4736287:5209943 ) -g183,40:-473656,-710413 +g1,127:-473656,-710413 ) ] ) -[183,40:6630773,47279633:25952256,43253760,3931 -[183,40:6630773,4812305:25952256,786432,0 -(183,40:6630773,4812305:25952256,0,0 -(183,40:6630773,4812305:25952256,0,0 -g183,40:3078558,4812305 -[183,40:3078558,4812305:0,0,0 -(183,40:3078558,2439708:0,1703936,0 -k183,40:1358238,2439708:-1720320 -(1,122:1358238,2439708:1720320,1703936,0 -(1,122:1358238,2439708:1179648,16384,0 -r183,40:2537886,2439708:1179648,16384,0 -) -g1,122:3062174,2439708 -(1,122:3062174,2439708:16384,1703936,0 -[1,122:3062174,2439708:25952256,1703936,0 -(1,122:3062174,1915420:25952256,1179648,0 -(1,122:3062174,1915420:16384,1179648,0 -r183,40:3078558,1915420:16384,1179648,0 -) -k1,122:29014430,1915420:25935872 -g1,122:29014430,1915420 +[1,127:6630773,47279633:25952256,43253760,3931 +[1,127:6630773,4812305:25952256,786432,0 +(1,127:6630773,4812305:25952256,0,0 +(1,127:6630773,4812305:25952256,0,0 +g1,127:3078558,4812305 +[1,127:3078558,4812305:0,0,0 +(1,127:3078558,2439708:0,1703936,0 +k1,127:1358238,2439708:-1720320 +(1,126:1358238,2439708:1720320,1703936,0 +(1,126:1358238,2439708:1179648,16384,0 +r1,127:2537886,2439708:1179648,16384,0 +) +g1,126:3062174,2439708 +(1,126:3062174,2439708:16384,1703936,0 +[1,126:3062174,2439708:25952256,1703936,0 +(1,126:3062174,1915420:25952256,1179648,0 +(1,126:3062174,1915420:16384,1179648,0 +r1,127:3078558,1915420:16384,1179648,0 +) +k1,126:29014430,1915420:25935872 +g1,126:29014430,1915420 ) ] ) ) ) ] -[183,40:3078558,4812305:0,0,0 -(183,40:3078558,2439708:0,1703936,0 -g183,40:29030814,2439708 -g183,40:36135244,2439708 -(1,122:36135244,2439708:1720320,1703936,0 -(1,122:36135244,2439708:16384,1703936,0 -[1,122:36135244,2439708:25952256,1703936,0 -(1,122:36135244,1915420:25952256,1179648,0 -(1,122:36135244,1915420:16384,1179648,0 -r183,40:36151628,1915420:16384,1179648,0 -) -k1,122:62087500,1915420:25935872 -g1,122:62087500,1915420 +[1,127:3078558,4812305:0,0,0 +(1,127:3078558,2439708:0,1703936,0 +g1,127:29030814,2439708 +g1,127:36135244,2439708 +(1,126:36135244,2439708:1720320,1703936,0 +(1,126:36135244,2439708:16384,1703936,0 +[1,126:36135244,2439708:25952256,1703936,0 +(1,126:36135244,1915420:25952256,1179648,0 +(1,126:36135244,1915420:16384,1179648,0 +r1,127:36151628,1915420:16384,1179648,0 +) +k1,126:62087500,1915420:25935872 +g1,126:62087500,1915420 ) ] ) -g1,122:36675916,2439708 -(1,122:36675916,2439708:1179648,16384,0 -r183,40:37855564,2439708:1179648,16384,0 +g1,126:36675916,2439708 +(1,126:36675916,2439708:1179648,16384,0 +r1,127:37855564,2439708:1179648,16384,0 ) ) -k183,40:3078556,2439708:-34777008 +k1,127:3078556,2439708:-34777008 ) ] -[183,40:3078558,4812305:0,0,0 -(183,40:3078558,49800853:0,16384,2228224 -k183,40:1358238,49800853:-1720320 -(1,122:1358238,49800853:1720320,16384,2228224 -(1,122:1358238,49800853:1179648,16384,0 -r183,40:2537886,49800853:1179648,16384,0 -) -g1,122:3062174,49800853 -(1,122:3062174,52029077:16384,1703936,0 -[1,122:3062174,52029077:25952256,1703936,0 -(1,122:3062174,51504789:25952256,1179648,0 -(1,122:3062174,51504789:16384,1179648,0 -r183,40:3078558,51504789:16384,1179648,0 -) -k1,122:29014430,51504789:25935872 -g1,122:29014430,51504789 +[1,127:3078558,4812305:0,0,0 +(1,127:3078558,49800853:0,16384,2228224 +k1,127:1358238,49800853:-1720320 +(1,126:1358238,49800853:1720320,16384,2228224 +(1,126:1358238,49800853:1179648,16384,0 +r1,127:2537886,49800853:1179648,16384,0 +) +g1,126:3062174,49800853 +(1,126:3062174,52029077:16384,1703936,0 +[1,126:3062174,52029077:25952256,1703936,0 +(1,126:3062174,51504789:25952256,1179648,0 +(1,126:3062174,51504789:16384,1179648,0 +r1,127:3078558,51504789:16384,1179648,0 +) +k1,126:29014430,51504789:25935872 +g1,126:29014430,51504789 ) ] ) ) ) ] -[183,40:3078558,4812305:0,0,0 -(183,40:3078558,49800853:0,16384,2228224 -g183,40:29030814,49800853 -g183,40:36135244,49800853 -(1,122:36135244,49800853:1720320,16384,2228224 -(1,122:36135244,52029077:16384,1703936,0 -[1,122:36135244,52029077:25952256,1703936,0 -(1,122:36135244,51504789:25952256,1179648,0 -(1,122:36135244,51504789:16384,1179648,0 -r183,40:36151628,51504789:16384,1179648,0 -) -k1,122:62087500,51504789:25935872 -g1,122:62087500,51504789 +[1,127:3078558,4812305:0,0,0 +(1,127:3078558,49800853:0,16384,2228224 +g1,127:29030814,49800853 +g1,127:36135244,49800853 +(1,126:36135244,49800853:1720320,16384,2228224 +(1,126:36135244,52029077:16384,1703936,0 +[1,126:36135244,52029077:25952256,1703936,0 +(1,126:36135244,51504789:25952256,1179648,0 +(1,126:36135244,51504789:16384,1179648,0 +r1,127:36151628,51504789:16384,1179648,0 +) +k1,126:62087500,51504789:25935872 +g1,126:62087500,51504789 ) ] ) -g1,122:36675916,49800853 -(1,122:36675916,49800853:1179648,16384,0 -r183,40:37855564,49800853:1179648,16384,0 +g1,126:36675916,49800853 +(1,126:36675916,49800853:1179648,16384,0 +r1,127:37855564,49800853:1179648,16384,0 ) ) -k183,40:3078556,49800853:-34777008 +k1,127:3078556,49800853:-34777008 ) ] -g183,40:6630773,4812305 +g1,127:6630773,4812305 ) ) ] -[183,40:6630773,45706769:25952256,40108032,0 -(183,40:6630773,45706769:25952256,40108032,0 -(183,40:6630773,45706769:0,0,0 -g183,40:6630773,45706769 +[1,127:6630773,45706769:25952256,40108032,0 +(1,127:6630773,45706769:25952256,40108032,0 +(1,127:6630773,45706769:0,0,0 +g1,127:6630773,45706769 ) -[183,40:6630773,45706769:25952256,40108032,0 -[1,122:6630773,12106481:25952256,6507744,0 -(1,122:6630773,7073297:25952256,32768,229376 -(1,122:6630773,7073297:0,32768,229376 -(1,122:6630773,7073297:5505024,32768,229376 -r183,40:12135797,7073297:5505024,262144,229376 +[1,127:6630773,45706769:25952256,40108032,0 +[1,126:6630773,12106481:25952256,6507744,0 +(1,126:6630773,7073297:25952256,32768,229376 +(1,126:6630773,7073297:0,32768,229376 +(1,126:6630773,7073297:5505024,32768,229376 +r1,127:12135797,7073297:5505024,262144,229376 ) -k1,122:6630773,7073297:-5505024 +k1,126:6630773,7073297:-5505024 ) ) -(1,122:6630773,8803457:25952256,874119,23592 -h1,122:6630773,8803457:0,0,0 -k1,122:22218642,8803457:10364387 -k1,122:32583029,8803457:10364387 +(1,126:6630773,8803457:25952256,874119,23592 +h1,126:6630773,8803457:0,0,0 +k1,126:22218642,8803457:10364387 +k1,126:32583029,8803457:10364387 ) -(1,122:6630773,9419505:25952256,32768,0 -(1,122:6630773,9419505:5505024,32768,0 -r183,40:12135797,9419505:5505024,32768,0 +(1,126:6630773,9419505:25952256,32768,0 +(1,126:6630773,9419505:5505024,32768,0 +r1,127:12135797,9419505:5505024,32768,0 ) -k1,122:22359413,9419505:10223616 -k1,122:32583029,9419505:10223616 +k1,126:22359413,9419505:10223616 +k1,126:32583029,9419505:10223616 ) ] -(183,2:6630773,13603329:25952256,513147,7863 -g183,2:7613813,13603329 -h183,2:7613813,13603329:0,0,0 -g183,2:6630773,13603329 -k183,2:20151832,13603329:11087707 -k183,2:31239539,13603329:11087707 -(183,2:31239539,13603329:1343490,505283,0 -k183,2:31971578,13603329:732039 +(182,2:6630773,13603329:25952256,513147,134348 +g182,2:7613813,13603329 +h182,2:7613813,13603329:0,0,0 +g182,2:6630773,13603329 +g182,2:8029311,13603329 +g182,2:8910770,13603329 +k182,2:21290848,13603329:9948692 +k182,2:31239540,13603329:9948692 +(182,2:31239540,13603329:1343490,505283,3931 +k182,2:31726474,13603329:486934 ) -g183,2:31239539,13603329 -g183,2:32583029,13603329 +g182,2:31239540,13603329 +g182,2:32583030,13603329 ) -(183,3:6630773,15100177:25952256,505283,134348 -g183,3:7613813,15100177 -h183,3:7613813,15100177:0,0,0 -g183,3:6630773,15100177 -(183,3:6630773,15100177:983040,477757,0 -k183,3:7613813,15100177:574751 +(182,3:6630773,15100177:25952256,505283,134348 +g182,3:7613813,15100177 +h182,3:7613813,15100177:0,0,0 +g182,3:6630773,15100177 +(182,3:6630773,15100177:983040,477757,0 +k182,3:7613813,15100177:574751 ) -g183,3:8463815,15100177 -g183,3:9933132,15100177 -g183,3:13090001,15100177 -g183,3:14514753,15100177 -g183,3:15771078,15100177 -k183,3:24919248,15100177:6320291 -k183,3:31239539,15100177:6320291 -(183,3:31239539,15100177:1343490,477757,0 -k183,3:32174740,15100177:935201 +g182,3:9083130,15100177 +g182,3:9759461,15100177 +g182,3:13090000,15100177 +g182,3:17603464,15100177 +g182,3:19028216,15100177 +k182,3:26537659,15100177:4701881 +k182,3:31239539,15100177:4701880 +(182,3:31239539,15100177:1343490,477757,0 +k182,3:32174740,15100177:935201 ) -g183,3:31239539,15100177 -g183,3:32583029,15100177 +g182,3:31239539,15100177 +g182,3:32583029,15100177 ) -(183,4:6630773,15941665:25952256,513147,126483 -g183,4:9121143,15941665 -h183,4:9121143,15941665:983040,0,0 -h183,4:10104183,15941665:0,0,0 -g183,4:7613813,15941665 -(183,4:7613813,15941665:1507330,477757,0 -k183,4:9121143,15941665:536742 +(182,4:6630773,15941665:25952256,513147,126483 +g182,4:9121143,15941665 +h182,4:9121143,15941665:983040,0,0 +h182,4:10104183,15941665:0,0,0 +g182,4:7613813,15941665 +(182,4:7613813,15941665:1507330,477757,0 +k182,4:9121143,15941665:536742 ) -g183,4:10959427,15941665 -g183,4:11817948,15941665 -g183,4:13220418,15941665 -g183,4:15837270,15941665 -g183,4:15837270,15941665 -(183,4:16156955,15941665:501378,78643,0 -$183,4:16156955,15941665 -(183,4:16320809,15941665:173670,78643,0 +g182,4:10959427,15941665 +g182,4:11817948,15941665 +g182,4:13220418,15941665 +g182,4:15837270,15941665 +g182,4:15837270,15941665 +(182,4:16156955,15941665:501378,78643,0 +$182,4:16156955,15941665 +(182,4:16320809,15941665:173670,78643,0 ) -$183,4:16658333,15941665 +$182,4:16658333,15941665 ) -(183,4:16658333,15941665:501378,78643,0 -(183,4:16822187,15941665:173670,78643,0 +(182,4:16658333,15941665:501378,78643,0 +(182,4:16822187,15941665:173670,78643,0 ) ) -(183,4:17159711,15941665:501378,78643,0 -(183,4:17323565,15941665:173670,78643,0 +(182,4:17159711,15941665:501378,78643,0 +(182,4:17323565,15941665:173670,78643,0 ) ) -(183,4:17661089,15941665:501378,78643,0 -(183,4:17824943,15941665:173670,78643,0 +(182,4:17661089,15941665:501378,78643,0 +(182,4:17824943,15941665:173670,78643,0 ) ) -(183,4:18162467,15941665:501378,78643,0 -(183,4:18326321,15941665:173670,78643,0 +(182,4:18162467,15941665:501378,78643,0 +(182,4:18326321,15941665:173670,78643,0 ) ) -(183,4:18663845,15941665:501378,78643,0 -(183,4:18827699,15941665:173670,78643,0 +(182,4:18663845,15941665:501378,78643,0 +(182,4:18827699,15941665:173670,78643,0 ) ) -(183,4:19165223,15941665:501378,78643,0 -(183,4:19329077,15941665:173670,78643,0 +(182,4:19165223,15941665:501378,78643,0 +(182,4:19329077,15941665:173670,78643,0 ) ) -(183,4:19666601,15941665:501378,78643,0 -(183,4:19830455,15941665:173670,78643,0 +(182,4:19666601,15941665:501378,78643,0 +(182,4:19830455,15941665:173670,78643,0 ) ) -(183,4:20167979,15941665:501378,78643,0 -(183,4:20331833,15941665:173670,78643,0 +(182,4:20167979,15941665:501378,78643,0 +(182,4:20331833,15941665:173670,78643,0 ) ) -(183,4:20669357,15941665:501378,78643,0 -(183,4:20833211,15941665:173670,78643,0 +(182,4:20669357,15941665:501378,78643,0 +(182,4:20833211,15941665:173670,78643,0 ) ) -(183,4:21170735,15941665:501378,78643,0 -(183,4:21334589,15941665:173670,78643,0 +(182,4:21170735,15941665:501378,78643,0 +(182,4:21334589,15941665:173670,78643,0 ) ) -(183,4:21672113,15941665:501378,78643,0 -(183,4:21835967,15941665:173670,78643,0 +(182,4:21672113,15941665:501378,78643,0 +(182,4:21835967,15941665:173670,78643,0 ) ) -(183,4:22173491,15941665:501378,78643,0 -(183,4:22337345,15941665:173670,78643,0 +(182,4:22173491,15941665:501378,78643,0 +(182,4:22337345,15941665:173670,78643,0 ) ) -(183,4:22674869,15941665:501378,78643,0 -(183,4:22838723,15941665:173670,78643,0 +(182,4:22674869,15941665:501378,78643,0 +(182,4:22838723,15941665:173670,78643,0 ) ) -(183,4:23176247,15941665:501378,78643,0 -(183,4:23340101,15941665:173670,78643,0 +(182,4:23176247,15941665:501378,78643,0 +(182,4:23340101,15941665:173670,78643,0 ) ) -(183,4:23677625,15941665:501378,78643,0 -(183,4:23841479,15941665:173670,78643,0 +(182,4:23677625,15941665:501378,78643,0 +(182,4:23841479,15941665:173670,78643,0 ) ) -(183,4:24179003,15941665:501378,78643,0 -(183,4:24342857,15941665:173670,78643,0 +(182,4:24179003,15941665:501378,78643,0 +(182,4:24342857,15941665:173670,78643,0 ) ) -(183,4:24680381,15941665:501378,78643,0 -(183,4:24844235,15941665:173670,78643,0 +(182,4:24680381,15941665:501378,78643,0 +(182,4:24844235,15941665:173670,78643,0 ) ) -(183,4:25181759,15941665:501378,78643,0 -(183,4:25345613,15941665:173670,78643,0 +(182,4:25181759,15941665:501378,78643,0 +(182,4:25345613,15941665:173670,78643,0 ) ) -(183,4:25683137,15941665:501378,78643,0 -(183,4:25846991,15941665:173670,78643,0 +(182,4:25683137,15941665:501378,78643,0 +(182,4:25846991,15941665:173670,78643,0 ) ) -(183,4:26184515,15941665:501378,78643,0 -(183,4:26348369,15941665:173670,78643,0 +(182,4:26184515,15941665:501378,78643,0 +(182,4:26348369,15941665:173670,78643,0 ) ) -(183,4:26685893,15941665:501378,78643,0 -(183,4:26849747,15941665:173670,78643,0 +(182,4:26685893,15941665:501378,78643,0 +(182,4:26849747,15941665:173670,78643,0 ) ) -(183,4:27187271,15941665:501378,78643,0 -(183,4:27351125,15941665:173670,78643,0 +(182,4:27187271,15941665:501378,78643,0 +(182,4:27351125,15941665:173670,78643,0 ) ) -(183,4:27688649,15941665:501378,78643,0 -(183,4:27852503,15941665:173670,78643,0 +(182,4:27688649,15941665:501378,78643,0 +(182,4:27852503,15941665:173670,78643,0 ) ) -(183,4:28190027,15941665:501378,78643,0 -(183,4:28353881,15941665:173670,78643,0 +(182,4:28190027,15941665:501378,78643,0 +(182,4:28353881,15941665:173670,78643,0 ) ) -(183,4:28691405,15941665:501378,78643,0 -(183,4:28855259,15941665:173670,78643,0 +(182,4:28691405,15941665:501378,78643,0 +(182,4:28855259,15941665:173670,78643,0 ) ) -(183,4:29192783,15941665:501378,78643,0 -(183,4:29356637,15941665:173670,78643,0 +(182,4:29192783,15941665:501378,78643,0 +(182,4:29356637,15941665:173670,78643,0 ) ) -(183,4:29694161,15941665:501378,78643,0 -(183,4:29858015,15941665:173670,78643,0 +(182,4:29694161,15941665:501378,78643,0 +(182,4:29858015,15941665:173670,78643,0 ) ) -(183,4:30195539,15941665:501378,78643,0 -(183,4:30359393,15941665:173670,78643,0 +(182,4:30195539,15941665:501378,78643,0 +(182,4:30359393,15941665:173670,78643,0 ) ) -(183,4:30696917,15941665:501378,78643,0 -(183,4:30860771,15941665:173670,78643,0 +(182,4:30696917,15941665:501378,78643,0 +(182,4:30860771,15941665:173670,78643,0 ) ) -(183,4:31239539,15941665:1343490,477757,0 -k183,4:31985341,15941665:745802 -g183,4:32184570,15941665 +(182,4:31239539,15941665:1343490,477757,0 +k182,4:31985341,15941665:745802 +g182,4:32184570,15941665 ) -g183,4:30911859,15941665 -g183,4:32583029,15941665 +g182,4:30911859,15941665 +g182,4:32583029,15941665 ) -(183,5:6630773,16783153:25952256,485622,134348 -g183,5:9121143,16783153 -h183,5:9121143,16783153:983040,0,0 -h183,5:10104183,16783153:0,0,0 -g183,5:7613813,16783153 -(183,5:7613813,16783153:1507330,485622,0 -k183,5:9121143,16783153:536742 +(182,5:6630773,16783153:25952256,485622,134348 +g182,5:9121143,16783153 +h182,5:9121143,16783153:983040,0,0 +h182,5:10104183,16783153:0,0,0 +g182,5:7613813,16783153 +(182,5:7613813,16783153:1507330,485622,0 +k182,5:9121143,16783153:536742 ) -g183,5:12518529,16783153 -g183,5:17070004,16783153 -g183,5:17070004,16783153 -(183,5:17159711,16783153:501378,78643,0 -$183,5:17159711,16783153 -(183,5:17323565,16783153:173670,78643,0 +g182,5:11663284,16783153 +g182,5:14023890,16783153 +g182,5:14023890,16783153 +(182,5:14151443,16783153:501378,78643,0 +$182,5:14151443,16783153 +(182,5:14315297,16783153:173670,78643,0 ) -$183,5:17661089,16783153 +$182,5:14652821,16783153 ) -(183,5:17661089,16783153:501378,78643,0 -(183,5:17824943,16783153:173670,78643,0 +(182,5:14652821,16783153:501378,78643,0 +(182,5:14816675,16783153:173670,78643,0 ) ) -(183,5:18162467,16783153:501378,78643,0 -(183,5:18326321,16783153:173670,78643,0 +(182,5:15154199,16783153:501378,78643,0 +(182,5:15318053,16783153:173670,78643,0 ) ) -(183,5:18663845,16783153:501378,78643,0 -(183,5:18827699,16783153:173670,78643,0 +(182,5:15655577,16783153:501378,78643,0 +(182,5:15819431,16783153:173670,78643,0 ) ) -(183,5:19165223,16783153:501378,78643,0 -(183,5:19329077,16783153:173670,78643,0 +(182,5:16156955,16783153:501378,78643,0 +(182,5:16320809,16783153:173670,78643,0 ) ) -(183,5:19666601,16783153:501378,78643,0 -(183,5:19830455,16783153:173670,78643,0 +(182,5:16658333,16783153:501378,78643,0 +(182,5:16822187,16783153:173670,78643,0 ) ) -(183,5:20167979,16783153:501378,78643,0 -(183,5:20331833,16783153:173670,78643,0 +(182,5:17159711,16783153:501378,78643,0 +(182,5:17323565,16783153:173670,78643,0 ) ) -(183,5:20669357,16783153:501378,78643,0 -(183,5:20833211,16783153:173670,78643,0 +(182,5:17661089,16783153:501378,78643,0 +(182,5:17824943,16783153:173670,78643,0 ) ) -(183,5:21170735,16783153:501378,78643,0 -(183,5:21334589,16783153:173670,78643,0 +(182,5:18162467,16783153:501378,78643,0 +(182,5:18326321,16783153:173670,78643,0 ) ) -(183,5:21672113,16783153:501378,78643,0 -(183,5:21835967,16783153:173670,78643,0 +(182,5:18663845,16783153:501378,78643,0 +(182,5:18827699,16783153:173670,78643,0 ) ) -(183,5:22173491,16783153:501378,78643,0 -(183,5:22337345,16783153:173670,78643,0 +(182,5:19165223,16783153:501378,78643,0 +(182,5:19329077,16783153:173670,78643,0 ) ) -(183,5:22674869,16783153:501378,78643,0 -(183,5:22838723,16783153:173670,78643,0 +(182,5:19666601,16783153:501378,78643,0 +(182,5:19830455,16783153:173670,78643,0 ) ) -(183,5:23176247,16783153:501378,78643,0 -(183,5:23340101,16783153:173670,78643,0 +(182,5:20167979,16783153:501378,78643,0 +(182,5:20331833,16783153:173670,78643,0 ) ) -(183,5:23677625,16783153:501378,78643,0 -(183,5:23841479,16783153:173670,78643,0 +(182,5:20669357,16783153:501378,78643,0 +(182,5:20833211,16783153:173670,78643,0 ) ) -(183,5:24179003,16783153:501378,78643,0 -(183,5:24342857,16783153:173670,78643,0 +(182,5:21170735,16783153:501378,78643,0 +(182,5:21334589,16783153:173670,78643,0 ) ) -(183,5:24680381,16783153:501378,78643,0 -(183,5:24844235,16783153:173670,78643,0 +(182,5:21672113,16783153:501378,78643,0 +(182,5:21835967,16783153:173670,78643,0 ) ) -(183,5:25181759,16783153:501378,78643,0 -(183,5:25345613,16783153:173670,78643,0 +(182,5:22173491,16783153:501378,78643,0 +(182,5:22337345,16783153:173670,78643,0 ) ) -(183,5:25683137,16783153:501378,78643,0 -(183,5:25846991,16783153:173670,78643,0 +(182,5:22674869,16783153:501378,78643,0 +(182,5:22838723,16783153:173670,78643,0 ) ) -(183,5:26184515,16783153:501378,78643,0 -(183,5:26348369,16783153:173670,78643,0 +(182,5:23176247,16783153:501378,78643,0 +(182,5:23340101,16783153:173670,78643,0 ) ) -(183,5:26685893,16783153:501378,78643,0 -(183,5:26849747,16783153:173670,78643,0 +(182,5:23677625,16783153:501378,78643,0 +(182,5:23841479,16783153:173670,78643,0 ) ) -(183,5:27187271,16783153:501378,78643,0 -(183,5:27351125,16783153:173670,78643,0 +(182,5:24179003,16783153:501378,78643,0 +(182,5:24342857,16783153:173670,78643,0 ) ) -(183,5:27688649,16783153:501378,78643,0 -(183,5:27852503,16783153:173670,78643,0 +(182,5:24680381,16783153:501378,78643,0 +(182,5:24844235,16783153:173670,78643,0 ) ) -(183,5:28190027,16783153:501378,78643,0 -(183,5:28353881,16783153:173670,78643,0 +(182,5:25181759,16783153:501378,78643,0 +(182,5:25345613,16783153:173670,78643,0 ) ) -(183,5:28691405,16783153:501378,78643,0 -(183,5:28855259,16783153:173670,78643,0 +(182,5:25683137,16783153:501378,78643,0 +(182,5:25846991,16783153:173670,78643,0 ) ) -(183,5:29192783,16783153:501378,78643,0 -(183,5:29356637,16783153:173670,78643,0 +(182,5:26184515,16783153:501378,78643,0 +(182,5:26348369,16783153:173670,78643,0 ) ) -(183,5:29694161,16783153:501378,78643,0 -(183,5:29858015,16783153:173670,78643,0 +(182,5:26685893,16783153:501378,78643,0 +(182,5:26849747,16783153:173670,78643,0 ) ) -(183,5:30195539,16783153:501378,78643,0 -(183,5:30359393,16783153:173670,78643,0 +(182,5:27187271,16783153:501378,78643,0 +(182,5:27351125,16783153:173670,78643,0 ) ) -(183,5:30696917,16783153:501378,78643,0 -(183,5:30860771,16783153:173670,78643,0 +(182,5:27688649,16783153:501378,78643,0 +(182,5:27852503,16783153:173670,78643,0 ) ) -(183,5:31239539,16783153:1343490,477757,0 -k183,5:31985341,16783153:745802 -g183,5:32184570,16783153 +(182,5:28190027,16783153:501378,78643,0 +(182,5:28353881,16783153:173670,78643,0 ) -g183,5:30911859,16783153 -g183,5:32583029,16783153 ) -(183,6:6630773,17624641:25952256,485622,11795 -g183,6:9121143,17624641 -h183,6:9121143,17624641:983040,0,0 -h183,6:10104183,17624641:0,0,0 -g183,6:7613813,17624641 -(183,6:7613813,17624641:1507330,485622,11795 -k183,6:9121143,17624641:536742 +(182,5:28691405,16783153:501378,78643,0 +(182,5:28855259,16783153:173670,78643,0 ) -g183,6:9765361,17624641 -g183,6:9765361,17624641 -(183,6:10140419,17624641:501378,78643,0 -$183,6:10140419,17624641 -(183,6:10304273,17624641:173670,78643,0 ) -$183,6:10641797,17624641 +(182,5:29192783,16783153:501378,78643,0 +(182,5:29356637,16783153:173670,78643,0 ) -(183,6:10641797,17624641:501378,78643,0 -(183,6:10805651,17624641:173670,78643,0 ) +(182,5:29694161,16783153:501378,78643,0 +(182,5:29858015,16783153:173670,78643,0 ) -(183,6:11143175,17624641:501378,78643,0 -(183,6:11307029,17624641:173670,78643,0 ) +(182,5:30195539,16783153:501378,78643,0 +(182,5:30359393,16783153:173670,78643,0 ) -(183,6:11644553,17624641:501378,78643,0 -(183,6:11808407,17624641:173670,78643,0 ) +(182,5:30696917,16783153:501378,78643,0 +(182,5:30860771,16783153:173670,78643,0 ) -(183,6:12145931,17624641:501378,78643,0 -(183,6:12309785,17624641:173670,78643,0 ) +(182,5:31239538,16783153:1343490,477757,0 +k182,5:31985340,16783153:745802 +g182,5:32184569,16783153 ) -(183,6:12647309,17624641:501378,78643,0 -(183,6:12811163,17624641:173670,78643,0 +g182,5:30911858,16783153 +g182,5:32583028,16783153 ) +(182,6:6630773,17624641:25952256,505283,126483 +g182,6:11218293,17624641 +h182,6:11218293,17624641:2490370,0,0 +h182,6:13708663,17624641:0,0,0 +g182,6:9121143,17624641 +(182,6:9121143,17624641:2097150,485622,0 +k182,6:11218293,17624641:554432 ) -(183,6:13148687,17624641:501378,78643,0 -(183,6:13312541,17624641:173670,78643,0 +g182,6:13051335,17624641 +g182,6:13782061,17624641 +g182,6:14337150,17624641 +g182,6:16495251,17624641 +(182,6:16658333,17624641:501378,78643,0 +$182,6:16658333,17624641 +(182,6:16822187,17624641:173670,78643,0 ) +$182,6:17159711,17624641 ) -(183,6:13650065,17624641:501378,78643,0 -(183,6:13813919,17624641:173670,78643,0 +(182,6:17159711,17624641:501378,78643,0 +(182,6:17323565,17624641:173670,78643,0 ) ) -(183,6:14151443,17624641:501378,78643,0 -(183,6:14315297,17624641:173670,78643,0 +(182,6:17661089,17624641:501378,78643,0 +(182,6:17824943,17624641:173670,78643,0 ) ) -(183,6:14652821,17624641:501378,78643,0 -(183,6:14816675,17624641:173670,78643,0 +(182,6:18162467,17624641:501378,78643,0 +(182,6:18326321,17624641:173670,78643,0 ) ) -(183,6:15154199,17624641:501378,78643,0 -(183,6:15318053,17624641:173670,78643,0 +(182,6:18663845,17624641:501378,78643,0 +(182,6:18827699,17624641:173670,78643,0 ) ) -(183,6:15655577,17624641:501378,78643,0 -(183,6:15819431,17624641:173670,78643,0 +(182,6:19165223,17624641:501378,78643,0 +(182,6:19329077,17624641:173670,78643,0 ) ) -(183,6:16156955,17624641:501378,78643,0 -(183,6:16320809,17624641:173670,78643,0 +(182,6:19666601,17624641:501378,78643,0 +(182,6:19830455,17624641:173670,78643,0 ) ) -(183,6:16658333,17624641:501378,78643,0 -(183,6:16822187,17624641:173670,78643,0 +(182,6:20167979,17624641:501378,78643,0 +(182,6:20331833,17624641:173670,78643,0 ) ) -(183,6:17159711,17624641:501378,78643,0 -(183,6:17323565,17624641:173670,78643,0 +(182,6:20669357,17624641:501378,78643,0 +(182,6:20833211,17624641:173670,78643,0 ) ) -(183,6:17661089,17624641:501378,78643,0 -(183,6:17824943,17624641:173670,78643,0 +(182,6:21170735,17624641:501378,78643,0 +(182,6:21334589,17624641:173670,78643,0 ) ) -(183,6:18162467,17624641:501378,78643,0 -(183,6:18326321,17624641:173670,78643,0 +(182,6:21672113,17624641:501378,78643,0 +(182,6:21835967,17624641:173670,78643,0 ) ) -(183,6:18663845,17624641:501378,78643,0 -(183,6:18827699,17624641:173670,78643,0 +(182,6:22173491,17624641:501378,78643,0 +(182,6:22337345,17624641:173670,78643,0 ) ) -(183,6:19165223,17624641:501378,78643,0 -(183,6:19329077,17624641:173670,78643,0 +(182,6:22674869,17624641:501378,78643,0 +(182,6:22838723,17624641:173670,78643,0 ) ) -(183,6:19666601,17624641:501378,78643,0 -(183,6:19830455,17624641:173670,78643,0 +(182,6:23176247,17624641:501378,78643,0 +(182,6:23340101,17624641:173670,78643,0 ) ) -(183,6:20167979,17624641:501378,78643,0 -(183,6:20331833,17624641:173670,78643,0 +(182,6:23677625,17624641:501378,78643,0 +(182,6:23841479,17624641:173670,78643,0 ) ) -(183,6:20669357,17624641:501378,78643,0 -(183,6:20833211,17624641:173670,78643,0 +(182,6:24179003,17624641:501378,78643,0 +(182,6:24342857,17624641:173670,78643,0 ) ) -(183,6:21170735,17624641:501378,78643,0 -(183,6:21334589,17624641:173670,78643,0 +(182,6:24680381,17624641:501378,78643,0 +(182,6:24844235,17624641:173670,78643,0 ) ) -(183,6:21672113,17624641:501378,78643,0 -(183,6:21835967,17624641:173670,78643,0 +(182,6:25181759,17624641:501378,78643,0 +(182,6:25345613,17624641:173670,78643,0 ) ) -(183,6:22173491,17624641:501378,78643,0 -(183,6:22337345,17624641:173670,78643,0 +(182,6:25683137,17624641:501378,78643,0 +(182,6:25846991,17624641:173670,78643,0 ) ) -(183,6:22674869,17624641:501378,78643,0 -(183,6:22838723,17624641:173670,78643,0 +(182,6:26184515,17624641:501378,78643,0 +(182,6:26348369,17624641:173670,78643,0 ) ) -(183,6:23176247,17624641:501378,78643,0 -(183,6:23340101,17624641:173670,78643,0 +(182,6:26685893,17624641:501378,78643,0 +(182,6:26849747,17624641:173670,78643,0 ) ) -(183,6:23677625,17624641:501378,78643,0 -(183,6:23841479,17624641:173670,78643,0 +(182,6:27187271,17624641:501378,78643,0 +(182,6:27351125,17624641:173670,78643,0 ) ) -(183,6:24179003,17624641:501378,78643,0 -(183,6:24342857,17624641:173670,78643,0 +(182,6:27688649,17624641:501378,78643,0 +(182,6:27852503,17624641:173670,78643,0 ) ) -(183,6:24680381,17624641:501378,78643,0 -(183,6:24844235,17624641:173670,78643,0 +(182,6:28190027,17624641:501378,78643,0 +(182,6:28353881,17624641:173670,78643,0 ) ) -(183,6:25181759,17624641:501378,78643,0 -(183,6:25345613,17624641:173670,78643,0 +(182,6:28691405,17624641:501378,78643,0 +(182,6:28855259,17624641:173670,78643,0 ) ) -(183,6:25683137,17624641:501378,78643,0 -(183,6:25846991,17624641:173670,78643,0 +(182,6:29192783,17624641:501378,78643,0 +(182,6:29356637,17624641:173670,78643,0 ) ) -(183,6:26184515,17624641:501378,78643,0 -(183,6:26348369,17624641:173670,78643,0 +(182,6:29694161,17624641:501378,78643,0 +(182,6:29858015,17624641:173670,78643,0 ) ) -(183,6:26685893,17624641:501378,78643,0 -(183,6:26849747,17624641:173670,78643,0 +(182,6:30195539,17624641:501378,78643,0 +(182,6:30359393,17624641:173670,78643,0 ) ) -(183,6:27187271,17624641:501378,78643,0 -(183,6:27351125,17624641:173670,78643,0 +(182,6:30696917,17624641:501378,78643,0 +(182,6:30860771,17624641:173670,78643,0 ) ) -(183,6:27688649,17624641:501378,78643,0 -(183,6:27852503,17624641:173670,78643,0 +(182,6:31239539,17624641:1343490,485622,0 +k182,6:31985341,17624641:745802 +g182,6:32184570,17624641 ) +g182,6:30911859,17624641 +g182,6:32583029,17624641 ) -(183,6:28190027,17624641:501378,78643,0 -(183,6:28353881,17624641:173670,78643,0 +(182,7:6630773,18466129:25952256,505283,126483 +g182,7:11218293,18466129 +h182,7:11218293,18466129:2490370,0,0 +h182,7:13708663,18466129:0,0,0 +g182,7:9121143,18466129 +(182,7:9121143,18466129:2097150,485622,0 +k182,7:11218293,18466129:554432 ) +g182,7:12838343,18466129 +g182,7:13852840,18466129 +g182,7:14920421,18466129 +g182,7:16212135,18466129 +g182,7:16767224,18466129 +g182,7:18925325,18466129 +(182,7:19165223,18466129:501378,78643,0 +$182,7:19165223,18466129 +(182,7:19329077,18466129:173670,78643,0 ) -(183,6:28691405,17624641:501378,78643,0 -(183,6:28855259,17624641:173670,78643,0 +$182,7:19666601,18466129 ) +(182,7:19666601,18466129:501378,78643,0 +(182,7:19830455,18466129:173670,78643,0 ) -(183,6:29192783,17624641:501378,78643,0 -(183,6:29356637,17624641:173670,78643,0 ) +(182,7:20167979,18466129:501378,78643,0 +(182,7:20331833,18466129:173670,78643,0 ) -(183,6:29694161,17624641:501378,78643,0 -(183,6:29858015,17624641:173670,78643,0 ) +(182,7:20669357,18466129:501378,78643,0 +(182,7:20833211,18466129:173670,78643,0 ) -(183,6:30195539,17624641:501378,78643,0 -(183,6:30359393,17624641:173670,78643,0 ) +(182,7:21170735,18466129:501378,78643,0 +(182,7:21334589,18466129:173670,78643,0 ) -(183,6:30696917,17624641:501378,78643,0 -(183,6:30860771,17624641:173670,78643,0 ) +(182,7:21672113,18466129:501378,78643,0 +(182,7:21835967,18466129:173670,78643,0 ) -(183,6:31239539,17624641:1343490,485622,0 -k183,6:31985341,17624641:745802 -g183,6:32184570,17624641 ) -g183,6:30911859,17624641 -g183,6:32583029,17624641 +(182,7:22173491,18466129:501378,78643,0 +(182,7:22337345,18466129:173670,78643,0 ) -(183,7:6630773,18466129:25952256,505283,11795 -g183,7:11218293,18466129 -h183,7:11218293,18466129:2490370,0,0 -h183,7:13708663,18466129:0,0,0 -g183,7:9121143,18466129 -(183,7:9121143,18466129:2097150,485622,11795 -k183,7:11218293,18466129:554432 ) -g183,7:13051335,18466129 -g183,7:13782061,18466129 -g183,7:14554075,18466129 -(183,7:14652821,18466129:501378,78643,0 -$183,7:14652821,18466129 -(183,7:14816675,18466129:173670,78643,0 +(182,7:22674869,18466129:501378,78643,0 +(182,7:22838723,18466129:173670,78643,0 ) -$183,7:15154199,18466129 ) -(183,7:15154199,18466129:501378,78643,0 -(183,7:15318053,18466129:173670,78643,0 +(182,7:23176247,18466129:501378,78643,0 +(182,7:23340101,18466129:173670,78643,0 ) ) -(183,7:15655577,18466129:501378,78643,0 -(183,7:15819431,18466129:173670,78643,0 +(182,7:23677625,18466129:501378,78643,0 +(182,7:23841479,18466129:173670,78643,0 ) ) -(183,7:16156955,18466129:501378,78643,0 -(183,7:16320809,18466129:173670,78643,0 +(182,7:24179003,18466129:501378,78643,0 +(182,7:24342857,18466129:173670,78643,0 ) ) -(183,7:16658333,18466129:501378,78643,0 -(183,7:16822187,18466129:173670,78643,0 +(182,7:24680381,18466129:501378,78643,0 +(182,7:24844235,18466129:173670,78643,0 ) ) -(183,7:17159711,18466129:501378,78643,0 -(183,7:17323565,18466129:173670,78643,0 +(182,7:25181759,18466129:501378,78643,0 +(182,7:25345613,18466129:173670,78643,0 ) ) -(183,7:17661089,18466129:501378,78643,0 -(183,7:17824943,18466129:173670,78643,0 +(182,7:25683137,18466129:501378,78643,0 +(182,7:25846991,18466129:173670,78643,0 ) ) -(183,7:18162467,18466129:501378,78643,0 -(183,7:18326321,18466129:173670,78643,0 +(182,7:26184515,18466129:501378,78643,0 +(182,7:26348369,18466129:173670,78643,0 ) ) -(183,7:18663845,18466129:501378,78643,0 -(183,7:18827699,18466129:173670,78643,0 +(182,7:26685893,18466129:501378,78643,0 +(182,7:26849747,18466129:173670,78643,0 ) ) -(183,7:19165223,18466129:501378,78643,0 -(183,7:19329077,18466129:173670,78643,0 +(182,7:27187271,18466129:501378,78643,0 +(182,7:27351125,18466129:173670,78643,0 ) ) -(183,7:19666601,18466129:501378,78643,0 -(183,7:19830455,18466129:173670,78643,0 +(182,7:27688649,18466129:501378,78643,0 +(182,7:27852503,18466129:173670,78643,0 ) ) -(183,7:20167979,18466129:501378,78643,0 -(183,7:20331833,18466129:173670,78643,0 +(182,7:28190027,18466129:501378,78643,0 +(182,7:28353881,18466129:173670,78643,0 ) ) -(183,7:20669357,18466129:501378,78643,0 -(183,7:20833211,18466129:173670,78643,0 +(182,7:28691405,18466129:501378,78643,0 +(182,7:28855259,18466129:173670,78643,0 ) ) -(183,7:21170735,18466129:501378,78643,0 -(183,7:21334589,18466129:173670,78643,0 +(182,7:29192783,18466129:501378,78643,0 +(182,7:29356637,18466129:173670,78643,0 ) ) -(183,7:21672113,18466129:501378,78643,0 -(183,7:21835967,18466129:173670,78643,0 +(182,7:29694161,18466129:501378,78643,0 +(182,7:29858015,18466129:173670,78643,0 ) ) -(183,7:22173491,18466129:501378,78643,0 -(183,7:22337345,18466129:173670,78643,0 +(182,7:30195539,18466129:501378,78643,0 +(182,7:30359393,18466129:173670,78643,0 ) ) -(183,7:22674869,18466129:501378,78643,0 -(183,7:22838723,18466129:173670,78643,0 +(182,7:30696917,18466129:501378,78643,0 +(182,7:30860771,18466129:173670,78643,0 ) ) -(183,7:23176247,18466129:501378,78643,0 -(183,7:23340101,18466129:173670,78643,0 +(182,7:31239539,18466129:1343490,485622,11795 +k182,7:31985341,18466129:745802 +g182,7:32184570,18466129 ) +g182,7:30911859,18466129 +g182,7:32583029,18466129 ) -(183,7:23677625,18466129:501378,78643,0 -(183,7:23841479,18466129:173670,78643,0 +(182,8:6630773,19307617:25952256,485622,126483 +g182,8:11218293,19307617 +h182,8:11218293,19307617:2490370,0,0 +h182,8:13708663,19307617:0,0,0 +g182,8:9121143,19307617 +(182,8:9121143,19307617:2097150,485622,11795 +k182,8:11218293,19307617:554432 ) +g182,8:12838343,19307617 +g182,8:13689000,19307617 +g182,8:15503036,19307617 +g182,8:16058125,19307617 +g182,8:17889201,19307617 +(182,8:18162467,19307617:501378,78643,0 +$182,8:18162467,19307617 +(182,8:18326321,19307617:173670,78643,0 ) -(183,7:24179003,18466129:501378,78643,0 -(183,7:24342857,18466129:173670,78643,0 +$182,8:18663845,19307617 ) +(182,8:18663845,19307617:501378,78643,0 +(182,8:18827699,19307617:173670,78643,0 ) -(183,7:24680381,18466129:501378,78643,0 -(183,7:24844235,18466129:173670,78643,0 ) +(182,8:19165223,19307617:501378,78643,0 +(182,8:19329077,19307617:173670,78643,0 ) -(183,7:25181759,18466129:501378,78643,0 -(183,7:25345613,18466129:173670,78643,0 ) +(182,8:19666601,19307617:501378,78643,0 +(182,8:19830455,19307617:173670,78643,0 ) -(183,7:25683137,18466129:501378,78643,0 -(183,7:25846991,18466129:173670,78643,0 ) +(182,8:20167979,19307617:501378,78643,0 +(182,8:20331833,19307617:173670,78643,0 ) -(183,7:26184515,18466129:501378,78643,0 -(183,7:26348369,18466129:173670,78643,0 ) +(182,8:20669357,19307617:501378,78643,0 +(182,8:20833211,19307617:173670,78643,0 ) -(183,7:26685893,18466129:501378,78643,0 -(183,7:26849747,18466129:173670,78643,0 ) +(182,8:21170735,19307617:501378,78643,0 +(182,8:21334589,19307617:173670,78643,0 ) -(183,7:27187271,18466129:501378,78643,0 -(183,7:27351125,18466129:173670,78643,0 ) +(182,8:21672113,19307617:501378,78643,0 +(182,8:21835967,19307617:173670,78643,0 ) -(183,7:27688649,18466129:501378,78643,0 -(183,7:27852503,18466129:173670,78643,0 ) +(182,8:22173491,19307617:501378,78643,0 +(182,8:22337345,19307617:173670,78643,0 ) -(183,7:28190027,18466129:501378,78643,0 -(183,7:28353881,18466129:173670,78643,0 ) +(182,8:22674869,19307617:501378,78643,0 +(182,8:22838723,19307617:173670,78643,0 ) -(183,7:28691405,18466129:501378,78643,0 -(183,7:28855259,18466129:173670,78643,0 ) +(182,8:23176247,19307617:501378,78643,0 +(182,8:23340101,19307617:173670,78643,0 ) -(183,7:29192783,18466129:501378,78643,0 -(183,7:29356637,18466129:173670,78643,0 ) +(182,8:23677625,19307617:501378,78643,0 +(182,8:23841479,19307617:173670,78643,0 ) -(183,7:29694161,18466129:501378,78643,0 -(183,7:29858015,18466129:173670,78643,0 ) +(182,8:24179003,19307617:501378,78643,0 +(182,8:24342857,19307617:173670,78643,0 ) -(183,7:30195539,18466129:501378,78643,0 -(183,7:30359393,18466129:173670,78643,0 ) +(182,8:24680381,19307617:501378,78643,0 +(182,8:24844235,19307617:173670,78643,0 ) -(183,7:30696917,18466129:501378,78643,0 -(183,7:30860771,18466129:173670,78643,0 ) +(182,8:25181759,19307617:501378,78643,0 +(182,8:25345613,19307617:173670,78643,0 ) -(183,7:31239539,18466129:1343490,485622,0 -k183,7:31985341,18466129:745802 -g183,7:32184570,18466129 ) -g183,7:30911859,18466129 -g183,7:32583029,18466129 +(182,8:25683137,19307617:501378,78643,0 +(182,8:25846991,19307617:173670,78643,0 ) -(183,8:6630773,19307617:25952256,505283,134348 -g183,8:11218293,19307617 -h183,8:11218293,19307617:2490370,0,0 -h183,8:13708663,19307617:0,0,0 -g183,8:9121143,19307617 -(183,8:9121143,19307617:2097150,485622,11795 -k183,8:11218293,19307617:554432 ) -g183,8:11862511,19307617 -g183,8:12747902,19307617 -g183,8:13302991,19307617 -g183,8:16145287,19307617 -(183,8:16156955,19307617:501378,78643,0 -$183,8:16156955,19307617 -(183,8:16320809,19307617:173670,78643,0 +(182,8:26184515,19307617:501378,78643,0 +(182,8:26348369,19307617:173670,78643,0 ) -$183,8:16658333,19307617 ) -(183,8:16658333,19307617:501378,78643,0 -(183,8:16822187,19307617:173670,78643,0 +(182,8:26685893,19307617:501378,78643,0 +(182,8:26849747,19307617:173670,78643,0 ) ) -(183,8:17159711,19307617:501378,78643,0 -(183,8:17323565,19307617:173670,78643,0 +(182,8:27187271,19307617:501378,78643,0 +(182,8:27351125,19307617:173670,78643,0 ) ) -(183,8:17661089,19307617:501378,78643,0 -(183,8:17824943,19307617:173670,78643,0 +(182,8:27688649,19307617:501378,78643,0 +(182,8:27852503,19307617:173670,78643,0 ) ) -(183,8:18162467,19307617:501378,78643,0 -(183,8:18326321,19307617:173670,78643,0 +(182,8:28190027,19307617:501378,78643,0 +(182,8:28353881,19307617:173670,78643,0 ) ) -(183,8:18663845,19307617:501378,78643,0 -(183,8:18827699,19307617:173670,78643,0 +(182,8:28691405,19307617:501378,78643,0 +(182,8:28855259,19307617:173670,78643,0 ) ) -(183,8:19165223,19307617:501378,78643,0 -(183,8:19329077,19307617:173670,78643,0 +(182,8:29192783,19307617:501378,78643,0 +(182,8:29356637,19307617:173670,78643,0 ) ) -(183,8:19666601,19307617:501378,78643,0 -(183,8:19830455,19307617:173670,78643,0 +(182,8:29694161,19307617:501378,78643,0 +(182,8:29858015,19307617:173670,78643,0 ) ) -(183,8:20167979,19307617:501378,78643,0 -(183,8:20331833,19307617:173670,78643,0 +(182,8:30195539,19307617:501378,78643,0 +(182,8:30359393,19307617:173670,78643,0 ) ) -(183,8:20669357,19307617:501378,78643,0 -(183,8:20833211,19307617:173670,78643,0 +(182,8:30696917,19307617:501378,78643,0 +(182,8:30860771,19307617:173670,78643,0 ) ) -(183,8:21170735,19307617:501378,78643,0 -(183,8:21334589,19307617:173670,78643,0 +(182,8:31239539,19307617:1343490,481690,0 +k182,8:31985341,19307617:745802 +g182,8:32184570,19307617 ) +g182,8:30911859,19307617 +g182,8:32583029,19307617 ) -(183,8:21672113,19307617:501378,78643,0 -(183,8:21835967,19307617:173670,78643,0 +(182,9:6630773,20149105:25952256,505283,126483 +g182,9:11218293,20149105 +h182,9:11218293,20149105:2490370,0,0 +h182,9:13708663,20149105:0,0,0 +g182,9:9121143,20149105 +(182,9:9121143,20149105:2097150,485622,0 +k182,9:11218293,20149105:554432 ) +g182,9:12614209,20149105 +g182,9:14343704,20149105 +g182,9:15194361,20149105 +g182,9:16141356,20149105 +g182,9:21314112,20149105 +g182,9:22164769,20149105 +g182,9:24300587,20149105 +(182,9:24680381,20149105:501378,78643,0 +$182,9:24680381,20149105 +(182,9:24844235,20149105:173670,78643,0 ) -(183,8:22173491,19307617:501378,78643,0 -(183,8:22337345,19307617:173670,78643,0 +$182,9:25181759,20149105 ) +(182,9:25181759,20149105:501378,78643,0 +(182,9:25345613,20149105:173670,78643,0 ) -(183,8:22674869,19307617:501378,78643,0 -(183,8:22838723,19307617:173670,78643,0 ) +(182,9:25683137,20149105:501378,78643,0 +(182,9:25846991,20149105:173670,78643,0 ) -(183,8:23176247,19307617:501378,78643,0 -(183,8:23340101,19307617:173670,78643,0 ) +(182,9:26184515,20149105:501378,78643,0 +(182,9:26348369,20149105:173670,78643,0 ) -(183,8:23677625,19307617:501378,78643,0 -(183,8:23841479,19307617:173670,78643,0 ) +(182,9:26685893,20149105:501378,78643,0 +(182,9:26849747,20149105:173670,78643,0 ) -(183,8:24179003,19307617:501378,78643,0 -(183,8:24342857,19307617:173670,78643,0 ) +(182,9:27187271,20149105:501378,78643,0 +(182,9:27351125,20149105:173670,78643,0 ) -(183,8:24680381,19307617:501378,78643,0 -(183,8:24844235,19307617:173670,78643,0 ) +(182,9:27688649,20149105:501378,78643,0 +(182,9:27852503,20149105:173670,78643,0 ) -(183,8:25181759,19307617:501378,78643,0 -(183,8:25345613,19307617:173670,78643,0 ) +(182,9:28190027,20149105:501378,78643,0 +(182,9:28353881,20149105:173670,78643,0 ) -(183,8:25683137,19307617:501378,78643,0 -(183,8:25846991,19307617:173670,78643,0 ) +(182,9:28691405,20149105:501378,78643,0 +(182,9:28855259,20149105:173670,78643,0 ) -(183,8:26184515,19307617:501378,78643,0 -(183,8:26348369,19307617:173670,78643,0 ) +(182,9:29192783,20149105:501378,78643,0 +(182,9:29356637,20149105:173670,78643,0 ) -(183,8:26685893,19307617:501378,78643,0 -(183,8:26849747,19307617:173670,78643,0 ) +(182,9:29694161,20149105:501378,78643,0 +(182,9:29858015,20149105:173670,78643,0 ) -(183,8:27187271,19307617:501378,78643,0 -(183,8:27351125,19307617:173670,78643,0 ) +(182,9:30195539,20149105:501378,78643,0 +(182,9:30359393,20149105:173670,78643,0 ) -(183,8:27688649,19307617:501378,78643,0 -(183,8:27852503,19307617:173670,78643,0 ) +(182,9:30696917,20149105:501378,78643,0 +(182,9:30860771,20149105:173670,78643,0 ) -(183,8:28190027,19307617:501378,78643,0 -(183,8:28353881,19307617:173670,78643,0 ) +(182,9:31239539,20149105:1343490,481690,0 +k182,9:31985341,20149105:745802 +g182,9:32184570,20149105 ) -(183,8:28691405,19307617:501378,78643,0 -(183,8:28855259,19307617:173670,78643,0 +g182,9:30911859,20149105 +g182,9:32583029,20149105 ) +(182,10:6630773,20990593:25952256,505283,134348 +g182,10:11218293,20990593 +h182,10:11218293,20990593:2490370,0,0 +h182,10:13708663,20990593:0,0,0 +g182,10:9121143,20990593 +(182,10:9121143,20990593:2097150,485622,11795 +k182,10:11218293,20990593:554432 ) -(183,8:29192783,19307617:501378,78643,0 -(183,8:29356637,19307617:173670,78643,0 +g182,10:14822117,20990593 +g182,10:16983494,20990593 +(182,10:17159711,20990593:501378,78643,0 +$182,10:17159711,20990593 +(182,10:17323565,20990593:173670,78643,0 ) +$182,10:17661089,20990593 ) -(183,8:29694161,19307617:501378,78643,0 -(183,8:29858015,19307617:173670,78643,0 +(182,10:17661089,20990593:501378,78643,0 +(182,10:17824943,20990593:173670,78643,0 ) ) -(183,8:30195539,19307617:501378,78643,0 -(183,8:30359393,19307617:173670,78643,0 +(182,10:18162467,20990593:501378,78643,0 +(182,10:18326321,20990593:173670,78643,0 ) ) -(183,8:30696917,19307617:501378,78643,0 -(183,8:30860771,19307617:173670,78643,0 +(182,10:18663845,20990593:501378,78643,0 +(182,10:18827699,20990593:173670,78643,0 ) ) -(183,8:31239539,19307617:1343490,481690,0 -k183,8:31985341,19307617:745802 -g183,8:32184570,19307617 +(182,10:19165223,20990593:501378,78643,0 +(182,10:19329077,20990593:173670,78643,0 ) -g183,8:30911859,19307617 -g183,8:32583029,19307617 ) -(183,9:6630773,20149105:25952256,485622,134348 -g183,9:11218293,20149105 -h183,9:11218293,20149105:2490370,0,0 -h183,9:13708663,20149105:0,0,0 -g183,9:9121143,20149105 -(183,9:9121143,20149105:2097150,485622,11795 -k183,9:11218293,20149105:554432 +(182,10:19666601,20990593:501378,78643,0 +(182,10:19830455,20990593:173670,78643,0 ) -g183,9:11862511,20149105 -g183,9:12747902,20149105 -g183,9:13302991,20149105 -g183,9:16578480,20149105 -g183,9:19320506,20149105 -(183,9:19666601,20149105:501378,78643,0 -$183,9:19666601,20149105 -(183,9:19830455,20149105:173670,78643,0 ) -$183,9:20167979,20149105 +(182,10:20167979,20990593:501378,78643,0 +(182,10:20331833,20990593:173670,78643,0 ) -(183,9:20167979,20149105:501378,78643,0 -(183,9:20331833,20149105:173670,78643,0 ) +(182,10:20669357,20990593:501378,78643,0 +(182,10:20833211,20990593:173670,78643,0 ) -(183,9:20669357,20149105:501378,78643,0 -(183,9:20833211,20149105:173670,78643,0 ) +(182,10:21170735,20990593:501378,78643,0 +(182,10:21334589,20990593:173670,78643,0 ) -(183,9:21170735,20149105:501378,78643,0 -(183,9:21334589,20149105:173670,78643,0 ) +(182,10:21672113,20990593:501378,78643,0 +(182,10:21835967,20990593:173670,78643,0 ) -(183,9:21672113,20149105:501378,78643,0 -(183,9:21835967,20149105:173670,78643,0 ) +(182,10:22173491,20990593:501378,78643,0 +(182,10:22337345,20990593:173670,78643,0 ) -(183,9:22173491,20149105:501378,78643,0 -(183,9:22337345,20149105:173670,78643,0 ) +(182,10:22674869,20990593:501378,78643,0 +(182,10:22838723,20990593:173670,78643,0 ) -(183,9:22674869,20149105:501378,78643,0 -(183,9:22838723,20149105:173670,78643,0 ) +(182,10:23176247,20990593:501378,78643,0 +(182,10:23340101,20990593:173670,78643,0 ) -(183,9:23176247,20149105:501378,78643,0 -(183,9:23340101,20149105:173670,78643,0 ) +(182,10:23677625,20990593:501378,78643,0 +(182,10:23841479,20990593:173670,78643,0 ) -(183,9:23677625,20149105:501378,78643,0 -(183,9:23841479,20149105:173670,78643,0 ) +(182,10:24179003,20990593:501378,78643,0 +(182,10:24342857,20990593:173670,78643,0 ) -(183,9:24179003,20149105:501378,78643,0 -(183,9:24342857,20149105:173670,78643,0 ) +(182,10:24680381,20990593:501378,78643,0 +(182,10:24844235,20990593:173670,78643,0 ) -(183,9:24680381,20149105:501378,78643,0 -(183,9:24844235,20149105:173670,78643,0 ) +(182,10:25181759,20990593:501378,78643,0 +(182,10:25345613,20990593:173670,78643,0 ) -(183,9:25181759,20149105:501378,78643,0 -(183,9:25345613,20149105:173670,78643,0 ) +(182,10:25683137,20990593:501378,78643,0 +(182,10:25846991,20990593:173670,78643,0 ) -(183,9:25683137,20149105:501378,78643,0 -(183,9:25846991,20149105:173670,78643,0 ) +(182,10:26184515,20990593:501378,78643,0 +(182,10:26348369,20990593:173670,78643,0 ) -(183,9:26184515,20149105:501378,78643,0 -(183,9:26348369,20149105:173670,78643,0 ) +(182,10:26685893,20990593:501378,78643,0 +(182,10:26849747,20990593:173670,78643,0 ) -(183,9:26685893,20149105:501378,78643,0 -(183,9:26849747,20149105:173670,78643,0 ) +(182,10:27187271,20990593:501378,78643,0 +(182,10:27351125,20990593:173670,78643,0 ) -(183,9:27187271,20149105:501378,78643,0 -(183,9:27351125,20149105:173670,78643,0 ) +(182,10:27688649,20990593:501378,78643,0 +(182,10:27852503,20990593:173670,78643,0 ) -(183,9:27688649,20149105:501378,78643,0 -(183,9:27852503,20149105:173670,78643,0 ) +(182,10:28190027,20990593:501378,78643,0 +(182,10:28353881,20990593:173670,78643,0 ) -(183,9:28190027,20149105:501378,78643,0 -(183,9:28353881,20149105:173670,78643,0 ) +(182,10:28691405,20990593:501378,78643,0 +(182,10:28855259,20990593:173670,78643,0 ) -(183,9:28691405,20149105:501378,78643,0 -(183,9:28855259,20149105:173670,78643,0 ) +(182,10:29192783,20990593:501378,78643,0 +(182,10:29356637,20990593:173670,78643,0 ) -(183,9:29192783,20149105:501378,78643,0 -(183,9:29356637,20149105:173670,78643,0 ) +(182,10:29694161,20990593:501378,78643,0 +(182,10:29858015,20990593:173670,78643,0 ) -(183,9:29694161,20149105:501378,78643,0 -(183,9:29858015,20149105:173670,78643,0 ) +(182,10:30195539,20990593:501378,78643,0 +(182,10:30359393,20990593:173670,78643,0 ) -(183,9:30195539,20149105:501378,78643,0 -(183,9:30359393,20149105:173670,78643,0 ) +(182,10:30696917,20990593:501378,78643,0 +(182,10:30860771,20990593:173670,78643,0 ) -(183,9:30696917,20149105:501378,78643,0 -(183,9:30860771,20149105:173670,78643,0 ) +(182,10:31239539,20990593:1343490,485622,11795 +k182,10:31985341,20990593:745802 +g182,10:32184570,20990593 ) -(183,9:31239539,20149105:1343490,481690,0 -k183,9:31985341,20149105:745802 -g183,9:32184570,20149105 +g182,10:30911859,20990593 +g182,10:32583029,20990593 ) -g183,9:30911859,20149105 -g183,9:32583029,20149105 +(182,11:6630773,21832081:25952256,513147,11795 +g182,11:9121143,21832081 +h182,11:9121143,21832081:983040,0,0 +h182,11:10104183,21832081:0,0,0 +g182,11:7613813,21832081 +(182,11:7613813,21832081:1507330,485622,11795 +k182,11:9121143,21832081:536742 ) -(183,10:6630773,20990593:25952256,505283,134348 -g183,10:13905273,20990593 -h183,10:13905273,20990593:4587520,0,0 -h183,10:18492793,20990593:0,0,0 -g183,10:11218293,20990593 -(183,10:11218293,20990593:2686980,485622,11795 -k183,10:13905273,20990593:572133 +g182,11:11730131,21832081 +g182,11:12588652,21832081 +g182,11:15863486,21832081 +g182,11:17412757,21832081 +g182,11:17412757,21832081 +(182,11:17661089,21832081:501378,78643,0 +$182,11:17661089,21832081 +(182,11:17824943,21832081:173670,78643,0 ) -g183,10:15896256,20990593 -g183,10:16540474,20990593 -g183,10:20467391,20990593 -(183,10:20669357,20990593:501378,78643,0 -$183,10:20669357,20990593 -(183,10:20833211,20990593:173670,78643,0 +$182,11:18162467,21832081 ) -$183,10:21170735,20990593 +(182,11:18162467,21832081:501378,78643,0 +(182,11:18326321,21832081:173670,78643,0 ) -(183,10:21170735,20990593:501378,78643,0 -(183,10:21334589,20990593:173670,78643,0 ) +(182,11:18663845,21832081:501378,78643,0 +(182,11:18827699,21832081:173670,78643,0 ) -(183,10:21672113,20990593:501378,78643,0 -(183,10:21835967,20990593:173670,78643,0 ) +(182,11:19165223,21832081:501378,78643,0 +(182,11:19329077,21832081:173670,78643,0 ) -(183,10:22173491,20990593:501378,78643,0 -(183,10:22337345,20990593:173670,78643,0 ) +(182,11:19666601,21832081:501378,78643,0 +(182,11:19830455,21832081:173670,78643,0 ) -(183,10:22674869,20990593:501378,78643,0 -(183,10:22838723,20990593:173670,78643,0 ) +(182,11:20167979,21832081:501378,78643,0 +(182,11:20331833,21832081:173670,78643,0 ) -(183,10:23176247,20990593:501378,78643,0 -(183,10:23340101,20990593:173670,78643,0 ) +(182,11:20669357,21832081:501378,78643,0 +(182,11:20833211,21832081:173670,78643,0 ) -(183,10:23677625,20990593:501378,78643,0 -(183,10:23841479,20990593:173670,78643,0 ) +(182,11:21170735,21832081:501378,78643,0 +(182,11:21334589,21832081:173670,78643,0 ) -(183,10:24179003,20990593:501378,78643,0 -(183,10:24342857,20990593:173670,78643,0 ) +(182,11:21672113,21832081:501378,78643,0 +(182,11:21835967,21832081:173670,78643,0 ) -(183,10:24680381,20990593:501378,78643,0 -(183,10:24844235,20990593:173670,78643,0 ) +(182,11:22173491,21832081:501378,78643,0 +(182,11:22337345,21832081:173670,78643,0 ) -(183,10:25181759,20990593:501378,78643,0 -(183,10:25345613,20990593:173670,78643,0 ) +(182,11:22674869,21832081:501378,78643,0 +(182,11:22838723,21832081:173670,78643,0 ) -(183,10:25683137,20990593:501378,78643,0 -(183,10:25846991,20990593:173670,78643,0 ) +(182,11:23176247,21832081:501378,78643,0 +(182,11:23340101,21832081:173670,78643,0 ) -(183,10:26184515,20990593:501378,78643,0 -(183,10:26348369,20990593:173670,78643,0 ) +(182,11:23677625,21832081:501378,78643,0 +(182,11:23841479,21832081:173670,78643,0 ) -(183,10:26685893,20990593:501378,78643,0 -(183,10:26849747,20990593:173670,78643,0 ) +(182,11:24179003,21832081:501378,78643,0 +(182,11:24342857,21832081:173670,78643,0 ) -(183,10:27187271,20990593:501378,78643,0 -(183,10:27351125,20990593:173670,78643,0 ) +(182,11:24680381,21832081:501378,78643,0 +(182,11:24844235,21832081:173670,78643,0 ) -(183,10:27688649,20990593:501378,78643,0 -(183,10:27852503,20990593:173670,78643,0 ) +(182,11:25181759,21832081:501378,78643,0 +(182,11:25345613,21832081:173670,78643,0 ) -(183,10:28190027,20990593:501378,78643,0 -(183,10:28353881,20990593:173670,78643,0 ) +(182,11:25683137,21832081:501378,78643,0 +(182,11:25846991,21832081:173670,78643,0 ) -(183,10:28691405,20990593:501378,78643,0 -(183,10:28855259,20990593:173670,78643,0 ) +(182,11:26184515,21832081:501378,78643,0 +(182,11:26348369,21832081:173670,78643,0 ) -(183,10:29192783,20990593:501378,78643,0 -(183,10:29356637,20990593:173670,78643,0 ) +(182,11:26685893,21832081:501378,78643,0 +(182,11:26849747,21832081:173670,78643,0 ) -(183,10:29694161,20990593:501378,78643,0 -(183,10:29858015,20990593:173670,78643,0 ) +(182,11:27187271,21832081:501378,78643,0 +(182,11:27351125,21832081:173670,78643,0 ) -(183,10:30195539,20990593:501378,78643,0 -(183,10:30359393,20990593:173670,78643,0 ) +(182,11:27688649,21832081:501378,78643,0 +(182,11:27852503,21832081:173670,78643,0 ) -(183,10:30696917,20990593:501378,78643,0 -(183,10:30860771,20990593:173670,78643,0 ) +(182,11:28190027,21832081:501378,78643,0 +(182,11:28353881,21832081:173670,78643,0 ) -(183,10:31239539,20990593:1343490,473825,11795 -k183,10:31985341,20990593:745802 -g183,10:32184570,20990593 ) -g183,10:30911859,20990593 -g183,10:32583029,20990593 +(182,11:28691405,21832081:501378,78643,0 +(182,11:28855259,21832081:173670,78643,0 ) -(183,11:6630773,21832081:25952256,505283,134348 -g183,11:13905273,21832081 -h183,11:13905273,21832081:4587520,0,0 -h183,11:18492793,21832081:0,0,0 -g183,11:11218293,21832081 -(183,11:11218293,21832081:2686980,485622,11795 -k183,11:13905273,21832081:572133 ) -g183,11:15896256,21832081 -g183,11:16540474,21832081 -g183,11:17355741,21832081 -g183,11:17910830,21832081 -g183,11:20171822,21832081 -g183,11:21493683,21832081 -(183,11:21672113,21832081:501378,78643,0 -$183,11:21672113,21832081 -(183,11:21835967,21832081:173670,78643,0 +(182,11:29192783,21832081:501378,78643,0 +(182,11:29356637,21832081:173670,78643,0 ) -$183,11:22173491,21832081 ) -(183,11:22173491,21832081:501378,78643,0 -(183,11:22337345,21832081:173670,78643,0 +(182,11:29694161,21832081:501378,78643,0 +(182,11:29858015,21832081:173670,78643,0 ) ) -(183,11:22674869,21832081:501378,78643,0 -(183,11:22838723,21832081:173670,78643,0 +(182,11:30195539,21832081:501378,78643,0 +(182,11:30359393,21832081:173670,78643,0 ) ) -(183,11:23176247,21832081:501378,78643,0 -(183,11:23340101,21832081:173670,78643,0 +(182,11:30696917,21832081:501378,78643,0 +(182,11:30860771,21832081:173670,78643,0 ) ) -(183,11:23677625,21832081:501378,78643,0 -(183,11:23841479,21832081:173670,78643,0 +(182,11:31239539,21832081:1343490,485622,11795 +k182,11:31985341,21832081:745802 +g182,11:32184570,21832081 ) +g182,11:30911859,21832081 +g182,11:32583029,21832081 ) -(183,11:24179003,21832081:501378,78643,0 -(183,11:24342857,21832081:173670,78643,0 +(182,12:6630773,22673569:25952256,505283,126483 +g182,12:11218293,22673569 +h182,12:11218293,22673569:2490370,0,0 +h182,12:13708663,22673569:0,0,0 +g182,12:9121143,22673569 +(182,12:9121143,22673569:2097150,485622,11795 +k182,12:11218293,22673569:554432 ) +g182,12:14953189,22673569 +g182,12:18469851,22673569 +(182,12:18663845,22673569:501378,78643,0 +$182,12:18663845,22673569 +(182,12:18827699,22673569:173670,78643,0 ) -(183,11:24680381,21832081:501378,78643,0 -(183,11:24844235,21832081:173670,78643,0 +$182,12:19165223,22673569 ) +(182,12:19165223,22673569:501378,78643,0 +(182,12:19329077,22673569:173670,78643,0 ) -(183,11:25181759,21832081:501378,78643,0 -(183,11:25345613,21832081:173670,78643,0 ) +(182,12:19666601,22673569:501378,78643,0 +(182,12:19830455,22673569:173670,78643,0 ) -(183,11:25683137,21832081:501378,78643,0 -(183,11:25846991,21832081:173670,78643,0 ) +(182,12:20167979,22673569:501378,78643,0 +(182,12:20331833,22673569:173670,78643,0 ) -(183,11:26184515,21832081:501378,78643,0 -(183,11:26348369,21832081:173670,78643,0 ) +(182,12:20669357,22673569:501378,78643,0 +(182,12:20833211,22673569:173670,78643,0 ) -(183,11:26685893,21832081:501378,78643,0 -(183,11:26849747,21832081:173670,78643,0 ) +(182,12:21170735,22673569:501378,78643,0 +(182,12:21334589,22673569:173670,78643,0 ) -(183,11:27187271,21832081:501378,78643,0 -(183,11:27351125,21832081:173670,78643,0 ) +(182,12:21672113,22673569:501378,78643,0 +(182,12:21835967,22673569:173670,78643,0 ) -(183,11:27688649,21832081:501378,78643,0 -(183,11:27852503,21832081:173670,78643,0 ) +(182,12:22173491,22673569:501378,78643,0 +(182,12:22337345,22673569:173670,78643,0 ) -(183,11:28190027,21832081:501378,78643,0 -(183,11:28353881,21832081:173670,78643,0 ) +(182,12:22674869,22673569:501378,78643,0 +(182,12:22838723,22673569:173670,78643,0 ) -(183,11:28691405,21832081:501378,78643,0 -(183,11:28855259,21832081:173670,78643,0 ) +(182,12:23176247,22673569:501378,78643,0 +(182,12:23340101,22673569:173670,78643,0 ) -(183,11:29192783,21832081:501378,78643,0 -(183,11:29356637,21832081:173670,78643,0 ) +(182,12:23677625,22673569:501378,78643,0 +(182,12:23841479,22673569:173670,78643,0 ) -(183,11:29694161,21832081:501378,78643,0 -(183,11:29858015,21832081:173670,78643,0 ) +(182,12:24179003,22673569:501378,78643,0 +(182,12:24342857,22673569:173670,78643,0 ) -(183,11:30195539,21832081:501378,78643,0 -(183,11:30359393,21832081:173670,78643,0 ) +(182,12:24680381,22673569:501378,78643,0 +(182,12:24844235,22673569:173670,78643,0 ) -(183,11:30696917,21832081:501378,78643,0 -(183,11:30860771,21832081:173670,78643,0 ) +(182,12:25181759,22673569:501378,78643,0 +(182,12:25345613,22673569:173670,78643,0 ) -(183,11:31239539,21832081:1343490,473825,0 -k183,11:31985341,21832081:745802 -g183,11:32184570,21832081 ) -g183,11:30911859,21832081 -g183,11:32583029,21832081 +(182,12:25683137,22673569:501378,78643,0 +(182,12:25846991,22673569:173670,78643,0 ) -(183,12:6630773,22673569:25952256,505283,11795 -g183,12:13905273,22673569 -h183,12:13905273,22673569:4587520,0,0 -h183,12:18492793,22673569:0,0,0 -g183,12:11218293,22673569 -(183,12:11218293,22673569:2686980,485622,11795 -k183,12:13905273,22673569:572133 ) -g183,12:16367460,22673569 -g183,12:17758134,22673569 -g183,12:19175678,22673569 -(183,12:19666601,22673569:501378,78643,0 -$183,12:19666601,22673569 -(183,12:19830455,22673569:173670,78643,0 +(182,12:26184515,22673569:501378,78643,0 +(182,12:26348369,22673569:173670,78643,0 ) -$183,12:20167979,22673569 ) -(183,12:20167979,22673569:501378,78643,0 -(183,12:20331833,22673569:173670,78643,0 +(182,12:26685893,22673569:501378,78643,0 +(182,12:26849747,22673569:173670,78643,0 ) ) -(183,12:20669357,22673569:501378,78643,0 -(183,12:20833211,22673569:173670,78643,0 +(182,12:27187271,22673569:501378,78643,0 +(182,12:27351125,22673569:173670,78643,0 ) ) -(183,12:21170735,22673569:501378,78643,0 -(183,12:21334589,22673569:173670,78643,0 +(182,12:27688649,22673569:501378,78643,0 +(182,12:27852503,22673569:173670,78643,0 ) ) -(183,12:21672113,22673569:501378,78643,0 -(183,12:21835967,22673569:173670,78643,0 +(182,12:28190027,22673569:501378,78643,0 +(182,12:28353881,22673569:173670,78643,0 ) ) -(183,12:22173491,22673569:501378,78643,0 -(183,12:22337345,22673569:173670,78643,0 +(182,12:28691405,22673569:501378,78643,0 +(182,12:28855259,22673569:173670,78643,0 ) ) -(183,12:22674869,22673569:501378,78643,0 -(183,12:22838723,22673569:173670,78643,0 +(182,12:29192783,22673569:501378,78643,0 +(182,12:29356637,22673569:173670,78643,0 ) ) -(183,12:23176247,22673569:501378,78643,0 -(183,12:23340101,22673569:173670,78643,0 +(182,12:29694161,22673569:501378,78643,0 +(182,12:29858015,22673569:173670,78643,0 ) ) -(183,12:23677625,22673569:501378,78643,0 -(183,12:23841479,22673569:173670,78643,0 +(182,12:30195539,22673569:501378,78643,0 +(182,12:30359393,22673569:173670,78643,0 ) ) -(183,12:24179003,22673569:501378,78643,0 -(183,12:24342857,22673569:173670,78643,0 +(182,12:30696917,22673569:501378,78643,0 +(182,12:30860771,22673569:173670,78643,0 ) ) -(183,12:24680381,22673569:501378,78643,0 -(183,12:24844235,22673569:173670,78643,0 +(182,12:31239539,22673569:1343490,485622,11795 +k182,12:31985341,22673569:745802 +g182,12:32184570,22673569 ) +g182,12:30911859,22673569 +g182,12:32583029,22673569 ) -(183,12:25181759,22673569:501378,78643,0 -(183,12:25345613,22673569:173670,78643,0 +(182,13:6630773,23515057:25952256,505283,11795 +g182,13:11218293,23515057 +h182,13:11218293,23515057:2490370,0,0 +h182,13:13708663,23515057:0,0,0 +g182,13:9121143,23515057 +(182,13:9121143,23515057:2097150,485622,11795 +k182,13:11218293,23515057:554432 ) +g182,13:15132758,23515057 +g182,13:18208363,23515057 +(182,13:18663845,23515057:501378,78643,0 +$182,13:18663845,23515057 +(182,13:18827699,23515057:173670,78643,0 ) -(183,12:25683137,22673569:501378,78643,0 -(183,12:25846991,22673569:173670,78643,0 +$182,13:19165223,23515057 ) +(182,13:19165223,23515057:501378,78643,0 +(182,13:19329077,23515057:173670,78643,0 ) -(183,12:26184515,22673569:501378,78643,0 -(183,12:26348369,22673569:173670,78643,0 ) +(182,13:19666601,23515057:501378,78643,0 +(182,13:19830455,23515057:173670,78643,0 ) -(183,12:26685893,22673569:501378,78643,0 -(183,12:26849747,22673569:173670,78643,0 ) +(182,13:20167979,23515057:501378,78643,0 +(182,13:20331833,23515057:173670,78643,0 ) -(183,12:27187271,22673569:501378,78643,0 -(183,12:27351125,22673569:173670,78643,0 ) +(182,13:20669357,23515057:501378,78643,0 +(182,13:20833211,23515057:173670,78643,0 ) -(183,12:27688649,22673569:501378,78643,0 -(183,12:27852503,22673569:173670,78643,0 ) +(182,13:21170735,23515057:501378,78643,0 +(182,13:21334589,23515057:173670,78643,0 ) -(183,12:28190027,22673569:501378,78643,0 -(183,12:28353881,22673569:173670,78643,0 ) +(182,13:21672113,23515057:501378,78643,0 +(182,13:21835967,23515057:173670,78643,0 ) -(183,12:28691405,22673569:501378,78643,0 -(183,12:28855259,22673569:173670,78643,0 ) +(182,13:22173491,23515057:501378,78643,0 +(182,13:22337345,23515057:173670,78643,0 ) -(183,12:29192783,22673569:501378,78643,0 -(183,12:29356637,22673569:173670,78643,0 ) +(182,13:22674869,23515057:501378,78643,0 +(182,13:22838723,23515057:173670,78643,0 ) -(183,12:29694161,22673569:501378,78643,0 -(183,12:29858015,22673569:173670,78643,0 ) +(182,13:23176247,23515057:501378,78643,0 +(182,13:23340101,23515057:173670,78643,0 ) -(183,12:30195539,22673569:501378,78643,0 -(183,12:30359393,22673569:173670,78643,0 ) +(182,13:23677625,23515057:501378,78643,0 +(182,13:23841479,23515057:173670,78643,0 ) -(183,12:30696917,22673569:501378,78643,0 -(183,12:30860771,22673569:173670,78643,0 ) +(182,13:24179003,23515057:501378,78643,0 +(182,13:24342857,23515057:173670,78643,0 ) -(183,12:31239539,22673569:1343490,485622,11795 -k183,12:31985341,22673569:745802 -g183,12:32184570,22673569 ) -g183,12:30911859,22673569 -g183,12:32583029,22673569 +(182,13:24680381,23515057:501378,78643,0 +(182,13:24844235,23515057:173670,78643,0 ) -(183,13:6630773,23515057:25952256,505283,126483 -g183,13:9121143,23515057 -h183,13:9121143,23515057:983040,0,0 -h183,13:10104183,23515057:0,0,0 -g183,13:7613813,23515057 -(183,13:7613813,23515057:1507330,481690,0 -k183,13:9121143,23515057:536742 ) -g183,13:13539580,23515057 -g183,13:15128172,23515057 -g183,13:17881994,23515057 -g183,13:17881994,23515057 -(183,13:18162467,23515057:501378,78643,0 -$183,13:18162467,23515057 -(183,13:18326321,23515057:173670,78643,0 +(182,13:25181759,23515057:501378,78643,0 +(182,13:25345613,23515057:173670,78643,0 ) -$183,13:18663845,23515057 ) -(183,13:18663845,23515057:501378,78643,0 -(183,13:18827699,23515057:173670,78643,0 +(182,13:25683137,23515057:501378,78643,0 +(182,13:25846991,23515057:173670,78643,0 ) ) -(183,13:19165223,23515057:501378,78643,0 -(183,13:19329077,23515057:173670,78643,0 +(182,13:26184515,23515057:501378,78643,0 +(182,13:26348369,23515057:173670,78643,0 ) ) -(183,13:19666601,23515057:501378,78643,0 -(183,13:19830455,23515057:173670,78643,0 +(182,13:26685893,23515057:501378,78643,0 +(182,13:26849747,23515057:173670,78643,0 ) ) -(183,13:20167979,23515057:501378,78643,0 -(183,13:20331833,23515057:173670,78643,0 +(182,13:27187271,23515057:501378,78643,0 +(182,13:27351125,23515057:173670,78643,0 ) ) -(183,13:20669357,23515057:501378,78643,0 -(183,13:20833211,23515057:173670,78643,0 +(182,13:27688649,23515057:501378,78643,0 +(182,13:27852503,23515057:173670,78643,0 ) ) -(183,13:21170735,23515057:501378,78643,0 -(183,13:21334589,23515057:173670,78643,0 +(182,13:28190027,23515057:501378,78643,0 +(182,13:28353881,23515057:173670,78643,0 ) ) -(183,13:21672113,23515057:501378,78643,0 -(183,13:21835967,23515057:173670,78643,0 +(182,13:28691405,23515057:501378,78643,0 +(182,13:28855259,23515057:173670,78643,0 ) ) -(183,13:22173491,23515057:501378,78643,0 -(183,13:22337345,23515057:173670,78643,0 +(182,13:29192783,23515057:501378,78643,0 +(182,13:29356637,23515057:173670,78643,0 ) ) -(183,13:22674869,23515057:501378,78643,0 -(183,13:22838723,23515057:173670,78643,0 +(182,13:29694161,23515057:501378,78643,0 +(182,13:29858015,23515057:173670,78643,0 ) ) -(183,13:23176247,23515057:501378,78643,0 -(183,13:23340101,23515057:173670,78643,0 +(182,13:30195539,23515057:501378,78643,0 +(182,13:30359393,23515057:173670,78643,0 ) ) -(183,13:23677625,23515057:501378,78643,0 -(183,13:23841479,23515057:173670,78643,0 +(182,13:30696917,23515057:501378,78643,0 +(182,13:30860771,23515057:173670,78643,0 ) ) -(183,13:24179003,23515057:501378,78643,0 -(183,13:24342857,23515057:173670,78643,0 +(182,13:31239539,23515057:1343490,485622,11795 +k182,13:31985341,23515057:745802 +g182,13:32184570,23515057 ) +g182,13:30911859,23515057 +g182,13:32583029,23515057 ) -(183,13:24680381,23515057:501378,78643,0 -(183,13:24844235,23515057:173670,78643,0 +(182,14:6630773,24356545:25952256,513147,102891 +g182,14:13905273,24356545 +h182,14:13905273,24356545:4587520,0,0 +h182,14:18492793,24356545:0,0,0 +g182,14:11218293,24356545 +(182,14:11218293,24356545:2686980,485622,11795 +k182,14:13905273,24356545:572133 ) +g182,14:18956132,24356545 +g182,14:20119395,24356545 +g182,14:21899352,24356545 +g182,14:23290026,24356545 +g182,14:25661119,24356545 +(182,14:25683137,24356545:501378,78643,0 +$182,14:25683137,24356545 +(182,14:25846991,24356545:173670,78643,0 ) -(183,13:25181759,23515057:501378,78643,0 -(183,13:25345613,23515057:173670,78643,0 +$182,14:26184515,24356545 ) +(182,14:26184515,24356545:501378,78643,0 +(182,14:26348369,24356545:173670,78643,0 ) -(183,13:25683137,23515057:501378,78643,0 -(183,13:25846991,23515057:173670,78643,0 ) +(182,14:26685893,24356545:501378,78643,0 +(182,14:26849747,24356545:173670,78643,0 ) -(183,13:26184515,23515057:501378,78643,0 -(183,13:26348369,23515057:173670,78643,0 ) +(182,14:27187271,24356545:501378,78643,0 +(182,14:27351125,24356545:173670,78643,0 ) -(183,13:26685893,23515057:501378,78643,0 -(183,13:26849747,23515057:173670,78643,0 ) +(182,14:27688649,24356545:501378,78643,0 +(182,14:27852503,24356545:173670,78643,0 ) -(183,13:27187271,23515057:501378,78643,0 -(183,13:27351125,23515057:173670,78643,0 ) +(182,14:28190027,24356545:501378,78643,0 +(182,14:28353881,24356545:173670,78643,0 ) -(183,13:27688649,23515057:501378,78643,0 -(183,13:27852503,23515057:173670,78643,0 ) +(182,14:28691405,24356545:501378,78643,0 +(182,14:28855259,24356545:173670,78643,0 ) -(183,13:28190027,23515057:501378,78643,0 -(183,13:28353881,23515057:173670,78643,0 ) +(182,14:29192783,24356545:501378,78643,0 +(182,14:29356637,24356545:173670,78643,0 ) -(183,13:28691405,23515057:501378,78643,0 -(183,13:28855259,23515057:173670,78643,0 ) +(182,14:29694161,24356545:501378,78643,0 +(182,14:29858015,24356545:173670,78643,0 ) -(183,13:29192783,23515057:501378,78643,0 -(183,13:29356637,23515057:173670,78643,0 ) +(182,14:30195539,24356545:501378,78643,0 +(182,14:30359393,24356545:173670,78643,0 ) -(183,13:29694161,23515057:501378,78643,0 -(183,13:29858015,23515057:173670,78643,0 ) +(182,14:30696917,24356545:501378,78643,0 +(182,14:30860771,24356545:173670,78643,0 ) -(183,13:30195539,23515057:501378,78643,0 -(183,13:30359393,23515057:173670,78643,0 ) +(182,14:31239539,24356545:1343490,485622,11795 +k182,14:31586882,24356545:347343 +g182,14:31786111,24356545 ) -(183,13:30696917,23515057:501378,78643,0 -(183,13:30860771,23515057:173670,78643,0 +g182,14:30911859,24356545 +g182,14:32583029,24356545 ) +(182,15:6630773,25198033:25952256,513147,95026 +g182,15:13905273,25198033 +h182,15:13905273,25198033:4587520,0,0 +h182,15:18492793,25198033:0,0,0 +g182,15:11218293,25198033 +(182,15:11218293,25198033:2686980,485622,11795 +k182,15:13905273,25198033:572133 ) -(183,13:31239539,23515057:1343490,485622,11795 -k183,13:31586882,23515057:347343 -g183,13:31786111,23515057 +g182,15:17542521,25198033 +g182,15:20703978,25198033 +(182,15:21170735,25198033:501378,78643,0 +$182,15:21170735,25198033 +(182,15:21334589,25198033:173670,78643,0 ) -g183,13:30911859,23515057 -g183,13:32583029,23515057 +$182,15:21672113,25198033 ) -(183,14:6630773,24356545:25952256,513147,134348 -g183,14:9121143,24356545 -h183,14:9121143,24356545:983040,0,0 -h183,14:10104183,24356545:0,0,0 -g183,14:7613813,24356545 -(183,14:7613813,24356545:1507330,477757,11795 -k183,14:9121143,24356545:536742 +(182,15:21672113,25198033:501378,78643,0 +(182,15:21835967,25198033:173670,78643,0 ) -g183,14:11706538,24356545 -g183,14:15132760,24356545 -g183,14:19138975,24356545 -g183,14:19138975,24356545 -(183,14:19165223,24356545:501378,78643,0 -$183,14:19165223,24356545 -(183,14:19329077,24356545:173670,78643,0 ) -$183,14:19666601,24356545 +(182,15:22173491,25198033:501378,78643,0 +(182,15:22337345,25198033:173670,78643,0 ) -(183,14:19666601,24356545:501378,78643,0 -(183,14:19830455,24356545:173670,78643,0 ) +(182,15:22674869,25198033:501378,78643,0 +(182,15:22838723,25198033:173670,78643,0 ) -(183,14:20167979,24356545:501378,78643,0 -(183,14:20331833,24356545:173670,78643,0 ) +(182,15:23176247,25198033:501378,78643,0 +(182,15:23340101,25198033:173670,78643,0 ) -(183,14:20669357,24356545:501378,78643,0 -(183,14:20833211,24356545:173670,78643,0 ) +(182,15:23677625,25198033:501378,78643,0 +(182,15:23841479,25198033:173670,78643,0 ) -(183,14:21170735,24356545:501378,78643,0 -(183,14:21334589,24356545:173670,78643,0 ) +(182,15:24179003,25198033:501378,78643,0 +(182,15:24342857,25198033:173670,78643,0 ) -(183,14:21672113,24356545:501378,78643,0 -(183,14:21835967,24356545:173670,78643,0 ) +(182,15:24680381,25198033:501378,78643,0 +(182,15:24844235,25198033:173670,78643,0 ) -(183,14:22173491,24356545:501378,78643,0 -(183,14:22337345,24356545:173670,78643,0 ) +(182,15:25181759,25198033:501378,78643,0 +(182,15:25345613,25198033:173670,78643,0 ) -(183,14:22674869,24356545:501378,78643,0 -(183,14:22838723,24356545:173670,78643,0 ) +(182,15:25683137,25198033:501378,78643,0 +(182,15:25846991,25198033:173670,78643,0 ) -(183,14:23176247,24356545:501378,78643,0 -(183,14:23340101,24356545:173670,78643,0 ) +(182,15:26184515,25198033:501378,78643,0 +(182,15:26348369,25198033:173670,78643,0 ) -(183,14:23677625,24356545:501378,78643,0 -(183,14:23841479,24356545:173670,78643,0 ) +(182,15:26685893,25198033:501378,78643,0 +(182,15:26849747,25198033:173670,78643,0 ) -(183,14:24179003,24356545:501378,78643,0 -(183,14:24342857,24356545:173670,78643,0 ) +(182,15:27187271,25198033:501378,78643,0 +(182,15:27351125,25198033:173670,78643,0 ) -(183,14:24680381,24356545:501378,78643,0 -(183,14:24844235,24356545:173670,78643,0 ) +(182,15:27688649,25198033:501378,78643,0 +(182,15:27852503,25198033:173670,78643,0 ) -(183,14:25181759,24356545:501378,78643,0 -(183,14:25345613,24356545:173670,78643,0 ) +(182,15:28190027,25198033:501378,78643,0 +(182,15:28353881,25198033:173670,78643,0 ) -(183,14:25683137,24356545:501378,78643,0 -(183,14:25846991,24356545:173670,78643,0 ) +(182,15:28691405,25198033:501378,78643,0 +(182,15:28855259,25198033:173670,78643,0 ) -(183,14:26184515,24356545:501378,78643,0 -(183,14:26348369,24356545:173670,78643,0 ) +(182,15:29192783,25198033:501378,78643,0 +(182,15:29356637,25198033:173670,78643,0 ) -(183,14:26685893,24356545:501378,78643,0 -(183,14:26849747,24356545:173670,78643,0 ) +(182,15:29694161,25198033:501378,78643,0 +(182,15:29858015,25198033:173670,78643,0 ) -(183,14:27187271,24356545:501378,78643,0 -(183,14:27351125,24356545:173670,78643,0 ) +(182,15:30195539,25198033:501378,78643,0 +(182,15:30359393,25198033:173670,78643,0 ) -(183,14:27688649,24356545:501378,78643,0 -(183,14:27852503,24356545:173670,78643,0 ) +(182,15:30696917,25198033:501378,78643,0 +(182,15:30860771,25198033:173670,78643,0 ) -(183,14:28190027,24356545:501378,78643,0 -(183,14:28353881,24356545:173670,78643,0 ) +(182,15:31239539,25198033:1343490,485622,11795 +k182,15:31586882,25198033:347343 +g182,15:31786111,25198033 ) -(183,14:28691405,24356545:501378,78643,0 -(183,14:28855259,24356545:173670,78643,0 +g182,15:30911859,25198033 +g182,15:32583029,25198033 ) +(182,16:6630773,26039521:25952256,485622,11795 +g182,16:11218293,26039521 +h182,16:11218293,26039521:2490370,0,0 +h182,16:13708663,26039521:0,0,0 +g182,16:9121143,26039521 +(182,16:9121143,26039521:2097150,485622,11795 +k182,16:11218293,26039521:554432 ) -(183,14:29192783,24356545:501378,78643,0 -(183,14:29356637,24356545:173670,78643,0 +g182,16:13947212,26039521 +(182,16:14151443,26039521:501378,78643,0 +$182,16:14151443,26039521 +(182,16:14315297,26039521:173670,78643,0 ) +$182,16:14652821,26039521 ) -(183,14:29694161,24356545:501378,78643,0 -(183,14:29858015,24356545:173670,78643,0 +(182,16:14652821,26039521:501378,78643,0 +(182,16:14816675,26039521:173670,78643,0 ) ) -(183,14:30195539,24356545:501378,78643,0 -(183,14:30359393,24356545:173670,78643,0 +(182,16:15154199,26039521:501378,78643,0 +(182,16:15318053,26039521:173670,78643,0 ) ) -(183,14:30696917,24356545:501378,78643,0 -(183,14:30860771,24356545:173670,78643,0 +(182,16:15655577,26039521:501378,78643,0 +(182,16:15819431,26039521:173670,78643,0 ) ) -(183,14:31239539,24356545:1343490,477757,0 -k183,14:31586882,24356545:347343 -g183,14:31786111,24356545 +(182,16:16156955,26039521:501378,78643,0 +(182,16:16320809,26039521:173670,78643,0 ) -g183,14:30911859,24356545 -g183,14:32583029,24356545 ) -(183,15:6630773,25198033:25952256,505283,126483 -g183,15:11218293,25198033 -h183,15:11218293,25198033:2490370,0,0 -h183,15:13708663,25198033:0,0,0 -g183,15:9121143,25198033 -(183,15:9121143,25198033:2097150,477757,11795 -k183,15:11218293,25198033:554432 +(182,16:16658333,26039521:501378,78643,0 +(182,16:16822187,26039521:173670,78643,0 ) -g183,15:12366483,25198033 -g183,15:14873235,25198033 -g183,15:16261288,25198033 -(183,15:16658333,25198033:501378,78643,0 -$183,15:16658333,25198033 -(183,15:16822187,25198033:173670,78643,0 ) -$183,15:17159711,25198033 +(182,16:17159711,26039521:501378,78643,0 +(182,16:17323565,26039521:173670,78643,0 ) -(183,15:17159711,25198033:501378,78643,0 -(183,15:17323565,25198033:173670,78643,0 ) +(182,16:17661089,26039521:501378,78643,0 +(182,16:17824943,26039521:173670,78643,0 ) -(183,15:17661089,25198033:501378,78643,0 -(183,15:17824943,25198033:173670,78643,0 ) +(182,16:18162467,26039521:501378,78643,0 +(182,16:18326321,26039521:173670,78643,0 ) -(183,15:18162467,25198033:501378,78643,0 -(183,15:18326321,25198033:173670,78643,0 ) +(182,16:18663845,26039521:501378,78643,0 +(182,16:18827699,26039521:173670,78643,0 ) -(183,15:18663845,25198033:501378,78643,0 -(183,15:18827699,25198033:173670,78643,0 ) +(182,16:19165223,26039521:501378,78643,0 +(182,16:19329077,26039521:173670,78643,0 ) -(183,15:19165223,25198033:501378,78643,0 -(183,15:19329077,25198033:173670,78643,0 ) +(182,16:19666601,26039521:501378,78643,0 +(182,16:19830455,26039521:173670,78643,0 ) -(183,15:19666601,25198033:501378,78643,0 -(183,15:19830455,25198033:173670,78643,0 ) +(182,16:20167979,26039521:501378,78643,0 +(182,16:20331833,26039521:173670,78643,0 ) -(183,15:20167979,25198033:501378,78643,0 -(183,15:20331833,25198033:173670,78643,0 ) +(182,16:20669357,26039521:501378,78643,0 +(182,16:20833211,26039521:173670,78643,0 ) -(183,15:20669357,25198033:501378,78643,0 -(183,15:20833211,25198033:173670,78643,0 ) +(182,16:21170735,26039521:501378,78643,0 +(182,16:21334589,26039521:173670,78643,0 ) -(183,15:21170735,25198033:501378,78643,0 -(183,15:21334589,25198033:173670,78643,0 ) +(182,16:21672113,26039521:501378,78643,0 +(182,16:21835967,26039521:173670,78643,0 ) -(183,15:21672113,25198033:501378,78643,0 -(183,15:21835967,25198033:173670,78643,0 ) +(182,16:22173491,26039521:501378,78643,0 +(182,16:22337345,26039521:173670,78643,0 ) -(183,15:22173491,25198033:501378,78643,0 -(183,15:22337345,25198033:173670,78643,0 ) +(182,16:22674869,26039521:501378,78643,0 +(182,16:22838723,26039521:173670,78643,0 ) -(183,15:22674869,25198033:501378,78643,0 -(183,15:22838723,25198033:173670,78643,0 ) +(182,16:23176247,26039521:501378,78643,0 +(182,16:23340101,26039521:173670,78643,0 ) -(183,15:23176247,25198033:501378,78643,0 -(183,15:23340101,25198033:173670,78643,0 ) +(182,16:23677625,26039521:501378,78643,0 +(182,16:23841479,26039521:173670,78643,0 ) -(183,15:23677625,25198033:501378,78643,0 -(183,15:23841479,25198033:173670,78643,0 ) +(182,16:24179003,26039521:501378,78643,0 +(182,16:24342857,26039521:173670,78643,0 ) -(183,15:24179003,25198033:501378,78643,0 -(183,15:24342857,25198033:173670,78643,0 ) +(182,16:24680381,26039521:501378,78643,0 +(182,16:24844235,26039521:173670,78643,0 ) -(183,15:24680381,25198033:501378,78643,0 -(183,15:24844235,25198033:173670,78643,0 ) +(182,16:25181759,26039521:501378,78643,0 +(182,16:25345613,26039521:173670,78643,0 ) -(183,15:25181759,25198033:501378,78643,0 -(183,15:25345613,25198033:173670,78643,0 ) +(182,16:25683137,26039521:501378,78643,0 +(182,16:25846991,26039521:173670,78643,0 ) -(183,15:25683137,25198033:501378,78643,0 -(183,15:25846991,25198033:173670,78643,0 ) +(182,16:26184515,26039521:501378,78643,0 +(182,16:26348369,26039521:173670,78643,0 ) -(183,15:26184515,25198033:501378,78643,0 -(183,15:26348369,25198033:173670,78643,0 ) +(182,16:26685893,26039521:501378,78643,0 +(182,16:26849747,26039521:173670,78643,0 ) -(183,15:26685893,25198033:501378,78643,0 -(183,15:26849747,25198033:173670,78643,0 ) +(182,16:27187271,26039521:501378,78643,0 +(182,16:27351125,26039521:173670,78643,0 ) -(183,15:27187271,25198033:501378,78643,0 -(183,15:27351125,25198033:173670,78643,0 ) +(182,16:27688649,26039521:501378,78643,0 +(182,16:27852503,26039521:173670,78643,0 ) -(183,15:27688649,25198033:501378,78643,0 -(183,15:27852503,25198033:173670,78643,0 ) +(182,16:28190027,26039521:501378,78643,0 +(182,16:28353881,26039521:173670,78643,0 ) -(183,15:28190027,25198033:501378,78643,0 -(183,15:28353881,25198033:173670,78643,0 ) +(182,16:28691405,26039521:501378,78643,0 +(182,16:28855259,26039521:173670,78643,0 ) -(183,15:28691405,25198033:501378,78643,0 -(183,15:28855259,25198033:173670,78643,0 ) +(182,16:29192783,26039521:501378,78643,0 +(182,16:29356637,26039521:173670,78643,0 ) -(183,15:29192783,25198033:501378,78643,0 -(183,15:29356637,25198033:173670,78643,0 ) +(182,16:29694161,26039521:501378,78643,0 +(182,16:29858015,26039521:173670,78643,0 ) -(183,15:29694161,25198033:501378,78643,0 -(183,15:29858015,25198033:173670,78643,0 ) +(182,16:30195539,26039521:501378,78643,0 +(182,16:30359393,26039521:173670,78643,0 ) -(183,15:30195539,25198033:501378,78643,0 -(183,15:30359393,25198033:173670,78643,0 ) +(182,16:30696917,26039521:501378,78643,0 +(182,16:30860771,26039521:173670,78643,0 ) -(183,15:30696917,25198033:501378,78643,0 -(183,15:30860771,25198033:173670,78643,0 ) +(182,16:31239540,26039521:1343490,485622,11795 +k182,16:31586883,26039521:347343 +g182,16:31786112,26039521 ) -(183,15:31239539,25198033:1343490,485622,0 -k183,15:31586882,25198033:347343 -g183,15:31786111,25198033 +g182,16:30911860,26039521 +g182,16:32583030,26039521 ) -g183,15:30911859,25198033 -g183,15:32583029,25198033 +(182,17:6630773,26881009:25952256,513147,126483 +g182,17:13905273,26881009 +h182,17:13905273,26881009:4587520,0,0 +h182,17:18492793,26881009:0,0,0 +g182,17:11218293,26881009 +(182,17:11218293,26881009:2686980,485622,11795 +k182,17:13905273,26881009:572133 ) -(183,16:6630773,26039521:25952256,513147,134348 -g183,16:11218293,26039521 -h183,16:11218293,26039521:2490370,0,0 -h183,16:13708663,26039521:0,0,0 -g183,16:9121143,26039521 -(183,16:9121143,26039521:2097150,485622,11795 -k183,16:11218293,26039521:554432 +g182,17:15290048,26881009 +g182,17:17035272,26881009 +(182,17:17159711,26881009:501378,78643,0 +$182,17:17159711,26881009 +(182,17:17323565,26881009:173670,78643,0 ) -g183,16:14546211,26039521 -g183,16:16133493,26039521 -g183,16:17900343,26039521 -g183,16:20077449,26039521 -g183,16:22390215,26039521 -(183,16:22674869,26039521:501378,78643,0 -$183,16:22674869,26039521 -(183,16:22838723,26039521:173670,78643,0 +$182,17:17661089,26881009 ) -$183,16:23176247,26039521 +(182,17:17661089,26881009:501378,78643,0 +(182,17:17824943,26881009:173670,78643,0 ) -(183,16:23176247,26039521:501378,78643,0 -(183,16:23340101,26039521:173670,78643,0 ) +(182,17:18162467,26881009:501378,78643,0 +(182,17:18326321,26881009:173670,78643,0 ) -(183,16:23677625,26039521:501378,78643,0 -(183,16:23841479,26039521:173670,78643,0 ) +(182,17:18663845,26881009:501378,78643,0 +(182,17:18827699,26881009:173670,78643,0 ) -(183,16:24179003,26039521:501378,78643,0 -(183,16:24342857,26039521:173670,78643,0 ) +(182,17:19165223,26881009:501378,78643,0 +(182,17:19329077,26881009:173670,78643,0 ) -(183,16:24680381,26039521:501378,78643,0 -(183,16:24844235,26039521:173670,78643,0 ) +(182,17:19666601,26881009:501378,78643,0 +(182,17:19830455,26881009:173670,78643,0 ) -(183,16:25181759,26039521:501378,78643,0 -(183,16:25345613,26039521:173670,78643,0 ) +(182,17:20167979,26881009:501378,78643,0 +(182,17:20331833,26881009:173670,78643,0 ) -(183,16:25683137,26039521:501378,78643,0 -(183,16:25846991,26039521:173670,78643,0 ) +(182,17:20669357,26881009:501378,78643,0 +(182,17:20833211,26881009:173670,78643,0 ) -(183,16:26184515,26039521:501378,78643,0 -(183,16:26348369,26039521:173670,78643,0 ) +(182,17:21170735,26881009:501378,78643,0 +(182,17:21334589,26881009:173670,78643,0 ) -(183,16:26685893,26039521:501378,78643,0 -(183,16:26849747,26039521:173670,78643,0 ) +(182,17:21672113,26881009:501378,78643,0 +(182,17:21835967,26881009:173670,78643,0 ) -(183,16:27187271,26039521:501378,78643,0 -(183,16:27351125,26039521:173670,78643,0 ) +(182,17:22173491,26881009:501378,78643,0 +(182,17:22337345,26881009:173670,78643,0 ) -(183,16:27688649,26039521:501378,78643,0 -(183,16:27852503,26039521:173670,78643,0 ) +(182,17:22674869,26881009:501378,78643,0 +(182,17:22838723,26881009:173670,78643,0 ) -(183,16:28190027,26039521:501378,78643,0 -(183,16:28353881,26039521:173670,78643,0 ) +(182,17:23176247,26881009:501378,78643,0 +(182,17:23340101,26881009:173670,78643,0 ) -(183,16:28691405,26039521:501378,78643,0 -(183,16:28855259,26039521:173670,78643,0 ) +(182,17:23677625,26881009:501378,78643,0 +(182,17:23841479,26881009:173670,78643,0 ) -(183,16:29192783,26039521:501378,78643,0 -(183,16:29356637,26039521:173670,78643,0 ) +(182,17:24179003,26881009:501378,78643,0 +(182,17:24342857,26881009:173670,78643,0 ) -(183,16:29694161,26039521:501378,78643,0 -(183,16:29858015,26039521:173670,78643,0 ) +(182,17:24680381,26881009:501378,78643,0 +(182,17:24844235,26881009:173670,78643,0 ) -(183,16:30195539,26039521:501378,78643,0 -(183,16:30359393,26039521:173670,78643,0 ) +(182,17:25181759,26881009:501378,78643,0 +(182,17:25345613,26881009:173670,78643,0 ) -(183,16:30696917,26039521:501378,78643,0 -(183,16:30860771,26039521:173670,78643,0 ) +(182,17:25683137,26881009:501378,78643,0 +(182,17:25846991,26881009:173670,78643,0 ) -(183,16:31239539,26039521:1343490,485622,11795 -k183,16:31586882,26039521:347343 -g183,16:31786111,26039521 ) -g183,16:30911859,26039521 -g183,16:32583029,26039521 +(182,17:26184515,26881009:501378,78643,0 +(182,17:26348369,26881009:173670,78643,0 ) -(183,17:6630773,26881009:25952256,485622,126483 -g183,17:13905273,26881009 -h183,17:13905273,26881009:4587520,0,0 -h183,17:18492793,26881009:0,0,0 -g183,17:11218293,26881009 -(183,17:11218293,26881009:2686980,485622,11795 -k183,17:13905273,26881009:572133 ) -g183,17:17230570,26881009 -(183,17:17661089,26881009:501378,78643,0 -$183,17:17661089,26881009 -(183,17:17824943,26881009:173670,78643,0 +(182,17:26685893,26881009:501378,78643,0 +(182,17:26849747,26881009:173670,78643,0 ) -$183,17:18162467,26881009 ) -(183,17:18162467,26881009:501378,78643,0 -(183,17:18326321,26881009:173670,78643,0 +(182,17:27187271,26881009:501378,78643,0 +(182,17:27351125,26881009:173670,78643,0 ) ) -(183,17:18663845,26881009:501378,78643,0 -(183,17:18827699,26881009:173670,78643,0 +(182,17:27688649,26881009:501378,78643,0 +(182,17:27852503,26881009:173670,78643,0 ) ) -(183,17:19165223,26881009:501378,78643,0 -(183,17:19329077,26881009:173670,78643,0 +(182,17:28190027,26881009:501378,78643,0 +(182,17:28353881,26881009:173670,78643,0 ) ) -(183,17:19666601,26881009:501378,78643,0 -(183,17:19830455,26881009:173670,78643,0 +(182,17:28691405,26881009:501378,78643,0 +(182,17:28855259,26881009:173670,78643,0 ) ) -(183,17:20167979,26881009:501378,78643,0 -(183,17:20331833,26881009:173670,78643,0 +(182,17:29192783,26881009:501378,78643,0 +(182,17:29356637,26881009:173670,78643,0 ) ) -(183,17:20669357,26881009:501378,78643,0 -(183,17:20833211,26881009:173670,78643,0 +(182,17:29694161,26881009:501378,78643,0 +(182,17:29858015,26881009:173670,78643,0 ) ) -(183,17:21170735,26881009:501378,78643,0 -(183,17:21334589,26881009:173670,78643,0 +(182,17:30195539,26881009:501378,78643,0 +(182,17:30359393,26881009:173670,78643,0 ) ) -(183,17:21672113,26881009:501378,78643,0 -(183,17:21835967,26881009:173670,78643,0 +(182,17:30696917,26881009:501378,78643,0 +(182,17:30860771,26881009:173670,78643,0 ) ) -(183,17:22173491,26881009:501378,78643,0 -(183,17:22337345,26881009:173670,78643,0 +(182,17:31239539,26881009:1343490,485622,11795 +k182,17:31586882,26881009:347343 +g182,17:31786111,26881009 ) +g182,17:30911859,26881009 +g182,17:32583029,26881009 ) -(183,17:22674869,26881009:501378,78643,0 -(183,17:22838723,26881009:173670,78643,0 +(182,18:6630773,27722497:25952256,505283,126483 +g182,18:13905273,27722497 +h182,18:13905273,27722497:4587520,0,0 +h182,18:18492793,27722497:0,0,0 +g182,18:11218293,27722497 +(182,18:11218293,27722497:2686980,485622,11795 +k182,18:13905273,27722497:572133 ) +g182,18:16080412,27722497 +g182,18:17825636,27722497 +(182,18:18162467,27722497:501378,78643,0 +$182,18:18162467,27722497 +(182,18:18326321,27722497:173670,78643,0 ) -(183,17:23176247,26881009:501378,78643,0 -(183,17:23340101,26881009:173670,78643,0 +$182,18:18663845,27722497 ) +(182,18:18663845,27722497:501378,78643,0 +(182,18:18827699,27722497:173670,78643,0 ) -(183,17:23677625,26881009:501378,78643,0 -(183,17:23841479,26881009:173670,78643,0 ) +(182,18:19165223,27722497:501378,78643,0 +(182,18:19329077,27722497:173670,78643,0 ) -(183,17:24179003,26881009:501378,78643,0 -(183,17:24342857,26881009:173670,78643,0 ) +(182,18:19666601,27722497:501378,78643,0 +(182,18:19830455,27722497:173670,78643,0 ) -(183,17:24680381,26881009:501378,78643,0 -(183,17:24844235,26881009:173670,78643,0 ) +(182,18:20167979,27722497:501378,78643,0 +(182,18:20331833,27722497:173670,78643,0 ) -(183,17:25181759,26881009:501378,78643,0 -(183,17:25345613,26881009:173670,78643,0 ) +(182,18:20669357,27722497:501378,78643,0 +(182,18:20833211,27722497:173670,78643,0 ) -(183,17:25683137,26881009:501378,78643,0 -(183,17:25846991,26881009:173670,78643,0 ) +(182,18:21170735,27722497:501378,78643,0 +(182,18:21334589,27722497:173670,78643,0 ) -(183,17:26184515,26881009:501378,78643,0 -(183,17:26348369,26881009:173670,78643,0 ) +(182,18:21672113,27722497:501378,78643,0 +(182,18:21835967,27722497:173670,78643,0 ) -(183,17:26685893,26881009:501378,78643,0 -(183,17:26849747,26881009:173670,78643,0 ) +(182,18:22173491,27722497:501378,78643,0 +(182,18:22337345,27722497:173670,78643,0 ) -(183,17:27187271,26881009:501378,78643,0 -(183,17:27351125,26881009:173670,78643,0 ) +(182,18:22674869,27722497:501378,78643,0 +(182,18:22838723,27722497:173670,78643,0 ) -(183,17:27688649,26881009:501378,78643,0 -(183,17:27852503,26881009:173670,78643,0 ) +(182,18:23176247,27722497:501378,78643,0 +(182,18:23340101,27722497:173670,78643,0 ) -(183,17:28190027,26881009:501378,78643,0 -(183,17:28353881,26881009:173670,78643,0 ) +(182,18:23677625,27722497:501378,78643,0 +(182,18:23841479,27722497:173670,78643,0 ) -(183,17:28691405,26881009:501378,78643,0 -(183,17:28855259,26881009:173670,78643,0 ) +(182,18:24179003,27722497:501378,78643,0 +(182,18:24342857,27722497:173670,78643,0 ) -(183,17:29192783,26881009:501378,78643,0 -(183,17:29356637,26881009:173670,78643,0 ) +(182,18:24680381,27722497:501378,78643,0 +(182,18:24844235,27722497:173670,78643,0 ) -(183,17:29694161,26881009:501378,78643,0 -(183,17:29858015,26881009:173670,78643,0 ) +(182,18:25181759,27722497:501378,78643,0 +(182,18:25345613,27722497:173670,78643,0 ) -(183,17:30195539,26881009:501378,78643,0 -(183,17:30359393,26881009:173670,78643,0 ) +(182,18:25683137,27722497:501378,78643,0 +(182,18:25846991,27722497:173670,78643,0 ) -(183,17:30696917,26881009:501378,78643,0 -(183,17:30860771,26881009:173670,78643,0 ) +(182,18:26184515,27722497:501378,78643,0 +(182,18:26348369,27722497:173670,78643,0 ) -(183,17:31239539,26881009:1343490,485622,11795 -k183,17:31586882,26881009:347343 -g183,17:31786111,26881009 ) -g183,17:30911859,26881009 -g183,17:32583029,26881009 +(182,18:26685893,27722497:501378,78643,0 +(182,18:26849747,27722497:173670,78643,0 ) -(183,18:6630773,27722497:25952256,513147,11795 -g183,18:13905273,27722497 -h183,18:13905273,27722497:4587520,0,0 -h183,18:18492793,27722497:0,0,0 -g183,18:11218293,27722497 -(183,18:11218293,27722497:2686980,485622,11795 -k183,18:13905273,27722497:572133 ) -g183,18:18451506,27722497 -(183,18:18663845,27722497:501378,78643,0 -$183,18:18663845,27722497 -(183,18:18827699,27722497:173670,78643,0 +(182,18:27187271,27722497:501378,78643,0 +(182,18:27351125,27722497:173670,78643,0 ) -$183,18:19165223,27722497 ) -(183,18:19165223,27722497:501378,78643,0 -(183,18:19329077,27722497:173670,78643,0 +(182,18:27688649,27722497:501378,78643,0 +(182,18:27852503,27722497:173670,78643,0 ) ) -(183,18:19666601,27722497:501378,78643,0 -(183,18:19830455,27722497:173670,78643,0 +(182,18:28190027,27722497:501378,78643,0 +(182,18:28353881,27722497:173670,78643,0 ) ) -(183,18:20167979,27722497:501378,78643,0 -(183,18:20331833,27722497:173670,78643,0 +(182,18:28691405,27722497:501378,78643,0 +(182,18:28855259,27722497:173670,78643,0 ) ) -(183,18:20669357,27722497:501378,78643,0 -(183,18:20833211,27722497:173670,78643,0 +(182,18:29192783,27722497:501378,78643,0 +(182,18:29356637,27722497:173670,78643,0 ) ) -(183,18:21170735,27722497:501378,78643,0 -(183,18:21334589,27722497:173670,78643,0 +(182,18:29694161,27722497:501378,78643,0 +(182,18:29858015,27722497:173670,78643,0 ) ) -(183,18:21672113,27722497:501378,78643,0 -(183,18:21835967,27722497:173670,78643,0 +(182,18:30195539,27722497:501378,78643,0 +(182,18:30359393,27722497:173670,78643,0 ) ) -(183,18:22173491,27722497:501378,78643,0 -(183,18:22337345,27722497:173670,78643,0 +(182,18:30696917,27722497:501378,78643,0 +(182,18:30860771,27722497:173670,78643,0 ) ) -(183,18:22674869,27722497:501378,78643,0 -(183,18:22838723,27722497:173670,78643,0 +(182,18:31239539,27722497:1343490,485622,0 +k182,18:31586882,27722497:347343 +g182,18:31786111,27722497 ) +g182,18:30911859,27722497 +g182,18:32583029,27722497 ) -(183,18:23176247,27722497:501378,78643,0 -(183,18:23340101,27722497:173670,78643,0 +(182,19:6630773,28563985:25952256,505283,126483 +g182,19:13905273,28563985 +h182,19:13905273,28563985:4587520,0,0 +h182,19:18492793,28563985:0,0,0 +g182,19:11218293,28563985 +(182,19:11218293,28563985:2686980,485622,11795 +k182,19:13905273,28563985:572133 ) +g182,19:16475595,28563985 +g182,19:18220819,28563985 +(182,19:18663845,28563985:501378,78643,0 +$182,19:18663845,28563985 +(182,19:18827699,28563985:173670,78643,0 ) -(183,18:23677625,27722497:501378,78643,0 -(183,18:23841479,27722497:173670,78643,0 +$182,19:19165223,28563985 ) +(182,19:19165223,28563985:501378,78643,0 +(182,19:19329077,28563985:173670,78643,0 ) -(183,18:24179003,27722497:501378,78643,0 -(183,18:24342857,27722497:173670,78643,0 ) +(182,19:19666601,28563985:501378,78643,0 +(182,19:19830455,28563985:173670,78643,0 ) -(183,18:24680381,27722497:501378,78643,0 -(183,18:24844235,27722497:173670,78643,0 ) +(182,19:20167979,28563985:501378,78643,0 +(182,19:20331833,28563985:173670,78643,0 ) -(183,18:25181759,27722497:501378,78643,0 -(183,18:25345613,27722497:173670,78643,0 ) +(182,19:20669357,28563985:501378,78643,0 +(182,19:20833211,28563985:173670,78643,0 ) -(183,18:25683137,27722497:501378,78643,0 -(183,18:25846991,27722497:173670,78643,0 ) +(182,19:21170735,28563985:501378,78643,0 +(182,19:21334589,28563985:173670,78643,0 ) -(183,18:26184515,27722497:501378,78643,0 -(183,18:26348369,27722497:173670,78643,0 ) +(182,19:21672113,28563985:501378,78643,0 +(182,19:21835967,28563985:173670,78643,0 ) -(183,18:26685893,27722497:501378,78643,0 -(183,18:26849747,27722497:173670,78643,0 ) +(182,19:22173491,28563985:501378,78643,0 +(182,19:22337345,28563985:173670,78643,0 ) -(183,18:27187271,27722497:501378,78643,0 -(183,18:27351125,27722497:173670,78643,0 ) +(182,19:22674869,28563985:501378,78643,0 +(182,19:22838723,28563985:173670,78643,0 ) -(183,18:27688649,27722497:501378,78643,0 -(183,18:27852503,27722497:173670,78643,0 ) +(182,19:23176247,28563985:501378,78643,0 +(182,19:23340101,28563985:173670,78643,0 ) -(183,18:28190027,27722497:501378,78643,0 -(183,18:28353881,27722497:173670,78643,0 ) +(182,19:23677625,28563985:501378,78643,0 +(182,19:23841479,28563985:173670,78643,0 ) -(183,18:28691405,27722497:501378,78643,0 -(183,18:28855259,27722497:173670,78643,0 ) +(182,19:24179003,28563985:501378,78643,0 +(182,19:24342857,28563985:173670,78643,0 ) -(183,18:29192783,27722497:501378,78643,0 -(183,18:29356637,27722497:173670,78643,0 ) +(182,19:24680381,28563985:501378,78643,0 +(182,19:24844235,28563985:173670,78643,0 ) -(183,18:29694161,27722497:501378,78643,0 -(183,18:29858015,27722497:173670,78643,0 ) +(182,19:25181759,28563985:501378,78643,0 +(182,19:25345613,28563985:173670,78643,0 ) -(183,18:30195539,27722497:501378,78643,0 -(183,18:30359393,27722497:173670,78643,0 ) +(182,19:25683137,28563985:501378,78643,0 +(182,19:25846991,28563985:173670,78643,0 ) -(183,18:30696917,27722497:501378,78643,0 -(183,18:30860771,27722497:173670,78643,0 ) +(182,19:26184515,28563985:501378,78643,0 +(182,19:26348369,28563985:173670,78643,0 ) -(183,18:31239539,27722497:1343490,481690,0 -k183,18:31586882,27722497:347343 -g183,18:31786111,27722497 ) -g183,18:30911859,27722497 -g183,18:32583029,27722497 +(182,19:26685893,28563985:501378,78643,0 +(182,19:26849747,28563985:173670,78643,0 ) -(183,19:6630773,28563985:25952256,505283,134348 -g183,19:13905273,28563985 -h183,19:13905273,28563985:4587520,0,0 -h183,19:18492793,28563985:0,0,0 -g183,19:11218293,28563985 -(183,19:11218293,28563985:2686980,485622,11795 -k183,19:13905273,28563985:572133 ) -g183,19:17247609,28563985 -g183,19:18767389,28563985 -(183,19:19165223,28563985:501378,78643,0 -$183,19:19165223,28563985 -(183,19:19329077,28563985:173670,78643,0 +(182,19:27187271,28563985:501378,78643,0 +(182,19:27351125,28563985:173670,78643,0 ) -$183,19:19666601,28563985 ) -(183,19:19666601,28563985:501378,78643,0 -(183,19:19830455,28563985:173670,78643,0 +(182,19:27688649,28563985:501378,78643,0 +(182,19:27852503,28563985:173670,78643,0 ) ) -(183,19:20167979,28563985:501378,78643,0 -(183,19:20331833,28563985:173670,78643,0 +(182,19:28190027,28563985:501378,78643,0 +(182,19:28353881,28563985:173670,78643,0 ) ) -(183,19:20669357,28563985:501378,78643,0 -(183,19:20833211,28563985:173670,78643,0 +(182,19:28691405,28563985:501378,78643,0 +(182,19:28855259,28563985:173670,78643,0 ) ) -(183,19:21170735,28563985:501378,78643,0 -(183,19:21334589,28563985:173670,78643,0 +(182,19:29192783,28563985:501378,78643,0 +(182,19:29356637,28563985:173670,78643,0 ) ) -(183,19:21672113,28563985:501378,78643,0 -(183,19:21835967,28563985:173670,78643,0 +(182,19:29694161,28563985:501378,78643,0 +(182,19:29858015,28563985:173670,78643,0 ) ) -(183,19:22173491,28563985:501378,78643,0 -(183,19:22337345,28563985:173670,78643,0 +(182,19:30195539,28563985:501378,78643,0 +(182,19:30359393,28563985:173670,78643,0 ) ) -(183,19:22674869,28563985:501378,78643,0 -(183,19:22838723,28563985:173670,78643,0 +(182,19:30696917,28563985:501378,78643,0 +(182,19:30860771,28563985:173670,78643,0 ) ) -(183,19:23176247,28563985:501378,78643,0 -(183,19:23340101,28563985:173670,78643,0 +(182,19:31239539,28563985:1343490,485622,0 +k182,19:31586882,28563985:347343 +g182,19:31786111,28563985 ) +g182,19:30911859,28563985 +g182,19:32583029,28563985 ) -(183,19:23677625,28563985:501378,78643,0 -(183,19:23841479,28563985:173670,78643,0 +(182,20:6630773,29405473:25952256,505283,126483 +g182,20:11218293,29405473 +h182,20:11218293,29405473:2490370,0,0 +h182,20:13708663,29405473:0,0,0 +g182,20:9121143,29405473 +(182,20:9121143,29405473:2097150,485622,11795 +k182,20:11218293,29405473:554432 ) +g182,20:13772231,29405473 +g182,20:15716684,29405473 +g182,20:17020195,29405473 +g182,20:17967190,29405473 +g182,20:19617386,29405473 +g182,20:20432653,29405473 +g182,20:21046725,29405473 +g182,20:21046725,29405473 +(182,20:21170735,29405473:501378,78643,0 +$182,20:21170735,29405473 +(182,20:21334589,29405473:173670,78643,0 ) -(183,19:24179003,28563985:501378,78643,0 -(183,19:24342857,28563985:173670,78643,0 +$182,20:21672113,29405473 ) +(182,20:21672113,29405473:501378,78643,0 +(182,20:21835967,29405473:173670,78643,0 ) -(183,19:24680381,28563985:501378,78643,0 -(183,19:24844235,28563985:173670,78643,0 ) +(182,20:22173491,29405473:501378,78643,0 +(182,20:22337345,29405473:173670,78643,0 ) -(183,19:25181759,28563985:501378,78643,0 -(183,19:25345613,28563985:173670,78643,0 ) +(182,20:22674869,29405473:501378,78643,0 +(182,20:22838723,29405473:173670,78643,0 ) -(183,19:25683137,28563985:501378,78643,0 -(183,19:25846991,28563985:173670,78643,0 ) +(182,20:23176247,29405473:501378,78643,0 +(182,20:23340101,29405473:173670,78643,0 ) -(183,19:26184515,28563985:501378,78643,0 -(183,19:26348369,28563985:173670,78643,0 ) +(182,20:23677625,29405473:501378,78643,0 +(182,20:23841479,29405473:173670,78643,0 ) -(183,19:26685893,28563985:501378,78643,0 -(183,19:26849747,28563985:173670,78643,0 ) +(182,20:24179003,29405473:501378,78643,0 +(182,20:24342857,29405473:173670,78643,0 ) -(183,19:27187271,28563985:501378,78643,0 -(183,19:27351125,28563985:173670,78643,0 ) +(182,20:24680381,29405473:501378,78643,0 +(182,20:24844235,29405473:173670,78643,0 ) -(183,19:27688649,28563985:501378,78643,0 -(183,19:27852503,28563985:173670,78643,0 ) +(182,20:25181759,29405473:501378,78643,0 +(182,20:25345613,29405473:173670,78643,0 ) -(183,19:28190027,28563985:501378,78643,0 -(183,19:28353881,28563985:173670,78643,0 ) +(182,20:25683137,29405473:501378,78643,0 +(182,20:25846991,29405473:173670,78643,0 ) -(183,19:28691405,28563985:501378,78643,0 -(183,19:28855259,28563985:173670,78643,0 ) +(182,20:26184515,29405473:501378,78643,0 +(182,20:26348369,29405473:173670,78643,0 ) -(183,19:29192783,28563985:501378,78643,0 -(183,19:29356637,28563985:173670,78643,0 ) +(182,20:26685893,29405473:501378,78643,0 +(182,20:26849747,29405473:173670,78643,0 ) -(183,19:29694161,28563985:501378,78643,0 -(183,19:29858015,28563985:173670,78643,0 ) +(182,20:27187271,29405473:501378,78643,0 +(182,20:27351125,29405473:173670,78643,0 ) -(183,19:30195539,28563985:501378,78643,0 -(183,19:30359393,28563985:173670,78643,0 ) +(182,20:27688649,29405473:501378,78643,0 +(182,20:27852503,29405473:173670,78643,0 ) -(183,19:30696917,28563985:501378,78643,0 -(183,19:30860771,28563985:173670,78643,0 ) +(182,20:28190027,29405473:501378,78643,0 +(182,20:28353881,29405473:173670,78643,0 ) -(183,19:31239539,28563985:1343490,481690,0 -k183,19:31586882,28563985:347343 -g183,19:31786111,28563985 ) -g183,19:30911859,28563985 -g183,19:32583029,28563985 +(182,20:28691405,29405473:501378,78643,0 +(182,20:28855259,29405473:173670,78643,0 ) -(183,20:6630773,29405473:25952256,505283,126483 -g183,20:9121143,29405473 -h183,20:9121143,29405473:983040,0,0 -h183,20:10104183,29405473:0,0,0 -g183,20:7613813,29405473 -(183,20:7613813,29405473:1507330,485622,11795 -k183,20:9121143,29405473:536742 ) -g183,20:10954185,29405473 -g183,20:11684911,29405473 -g183,20:14182488,29405473 -g183,20:15033145,29405473 -g183,20:16350418,29405473 -g183,20:17568732,29405473 -g183,20:20759680,29405473 -g183,20:21574947,29405473 -g183,20:22977417,29405473 -g183,20:25085710,29405473 -g183,20:25085710,29405473 -(183,20:25181759,29405473:501378,78643,0 -$183,20:25181759,29405473 -(183,20:25345613,29405473:173670,78643,0 +(182,20:29192783,29405473:501378,78643,0 +(182,20:29356637,29405473:173670,78643,0 ) -$183,20:25683137,29405473 ) -(183,20:25683137,29405473:501378,78643,0 -(183,20:25846991,29405473:173670,78643,0 +(182,20:29694161,29405473:501378,78643,0 +(182,20:29858015,29405473:173670,78643,0 ) ) -(183,20:26184515,29405473:501378,78643,0 -(183,20:26348369,29405473:173670,78643,0 +(182,20:30195539,29405473:501378,78643,0 +(182,20:30359393,29405473:173670,78643,0 ) ) -(183,20:26685893,29405473:501378,78643,0 -(183,20:26849747,29405473:173670,78643,0 +(182,20:30696917,29405473:501378,78643,0 +(182,20:30860771,29405473:173670,78643,0 ) ) -(183,20:27187271,29405473:501378,78643,0 -(183,20:27351125,29405473:173670,78643,0 +(182,20:31239539,29405473:1343490,485622,11795 +k182,20:31586882,29405473:347343 +g182,20:31786111,29405473 ) +g182,20:30911859,29405473 +g182,20:32583029,29405473 ) -(183,20:27688649,29405473:501378,78643,0 -(183,20:27852503,29405473:173670,78643,0 +(182,21:6630773,30246961:25952256,513147,134348 +g182,21:11218293,30246961 +h182,21:11218293,30246961:2490370,0,0 +h182,21:13708663,30246961:0,0,0 +g182,21:9121143,30246961 +(182,21:9121143,30246961:2097150,485622,11795 +k182,21:11218293,30246961:554432 ) +g182,21:13834490,30246961 +g182,21:14693011,30246961 +g182,21:16438235,30246961 +(182,21:16658333,30246961:501378,78643,0 +$182,21:16658333,30246961 +(182,21:16822187,30246961:173670,78643,0 ) -(183,20:28190027,29405473:501378,78643,0 -(183,20:28353881,29405473:173670,78643,0 +$182,21:17159711,30246961 ) +(182,21:17159711,30246961:501378,78643,0 +(182,21:17323565,30246961:173670,78643,0 ) -(183,20:28691405,29405473:501378,78643,0 -(183,20:28855259,29405473:173670,78643,0 ) +(182,21:17661089,30246961:501378,78643,0 +(182,21:17824943,30246961:173670,78643,0 ) -(183,20:29192783,29405473:501378,78643,0 -(183,20:29356637,29405473:173670,78643,0 ) +(182,21:18162467,30246961:501378,78643,0 +(182,21:18326321,30246961:173670,78643,0 ) -(183,20:29694161,29405473:501378,78643,0 -(183,20:29858015,29405473:173670,78643,0 ) +(182,21:18663845,30246961:501378,78643,0 +(182,21:18827699,30246961:173670,78643,0 ) -(183,20:30195539,29405473:501378,78643,0 -(183,20:30359393,29405473:173670,78643,0 ) +(182,21:19165223,30246961:501378,78643,0 +(182,21:19329077,30246961:173670,78643,0 ) -(183,20:30696917,29405473:501378,78643,0 -(183,20:30860771,29405473:173670,78643,0 ) +(182,21:19666601,30246961:501378,78643,0 +(182,21:19830455,30246961:173670,78643,0 ) -(183,20:31239539,29405473:1343490,477757,11795 -k183,20:31586882,29405473:347343 -g183,20:31786111,29405473 ) -g183,20:30911859,29405473 -g183,20:32583029,29405473 +(182,21:20167979,30246961:501378,78643,0 +(182,21:20331833,30246961:173670,78643,0 ) -(183,21:6630773,30246961:25952256,505283,134348 -g183,21:9121143,30246961 -h183,21:9121143,30246961:983040,0,0 -h183,21:10104183,30246961:0,0,0 -g183,21:7613813,30246961 -(183,21:7613813,30246961:1507330,477757,0 -k183,21:9121143,30246961:536742 ) -g183,21:11690154,30246961 -g183,21:14291933,30246961 -g183,21:14291933,30246961 -(183,21:14652821,30246961:501378,78643,0 -$183,21:14652821,30246961 -(183,21:14816675,30246961:173670,78643,0 +(182,21:20669357,30246961:501378,78643,0 +(182,21:20833211,30246961:173670,78643,0 ) -$183,21:15154199,30246961 ) -(183,21:15154199,30246961:501378,78643,0 -(183,21:15318053,30246961:173670,78643,0 +(182,21:21170735,30246961:501378,78643,0 +(182,21:21334589,30246961:173670,78643,0 ) ) -(183,21:15655577,30246961:501378,78643,0 -(183,21:15819431,30246961:173670,78643,0 +(182,21:21672113,30246961:501378,78643,0 +(182,21:21835967,30246961:173670,78643,0 ) ) -(183,21:16156955,30246961:501378,78643,0 -(183,21:16320809,30246961:173670,78643,0 +(182,21:22173491,30246961:501378,78643,0 +(182,21:22337345,30246961:173670,78643,0 ) ) -(183,21:16658333,30246961:501378,78643,0 -(183,21:16822187,30246961:173670,78643,0 +(182,21:22674869,30246961:501378,78643,0 +(182,21:22838723,30246961:173670,78643,0 ) ) -(183,21:17159711,30246961:501378,78643,0 -(183,21:17323565,30246961:173670,78643,0 +(182,21:23176247,30246961:501378,78643,0 +(182,21:23340101,30246961:173670,78643,0 ) ) -(183,21:17661089,30246961:501378,78643,0 -(183,21:17824943,30246961:173670,78643,0 +(182,21:23677625,30246961:501378,78643,0 +(182,21:23841479,30246961:173670,78643,0 ) ) -(183,21:18162467,30246961:501378,78643,0 -(183,21:18326321,30246961:173670,78643,0 +(182,21:24179003,30246961:501378,78643,0 +(182,21:24342857,30246961:173670,78643,0 ) ) -(183,21:18663845,30246961:501378,78643,0 -(183,21:18827699,30246961:173670,78643,0 +(182,21:24680381,30246961:501378,78643,0 +(182,21:24844235,30246961:173670,78643,0 ) ) -(183,21:19165223,30246961:501378,78643,0 -(183,21:19329077,30246961:173670,78643,0 +(182,21:25181759,30246961:501378,78643,0 +(182,21:25345613,30246961:173670,78643,0 ) ) -(183,21:19666601,30246961:501378,78643,0 -(183,21:19830455,30246961:173670,78643,0 +(182,21:25683137,30246961:501378,78643,0 +(182,21:25846991,30246961:173670,78643,0 ) ) -(183,21:20167979,30246961:501378,78643,0 -(183,21:20331833,30246961:173670,78643,0 +(182,21:26184515,30246961:501378,78643,0 +(182,21:26348369,30246961:173670,78643,0 ) ) -(183,21:20669357,30246961:501378,78643,0 -(183,21:20833211,30246961:173670,78643,0 +(182,21:26685893,30246961:501378,78643,0 +(182,21:26849747,30246961:173670,78643,0 ) ) -(183,21:21170735,30246961:501378,78643,0 -(183,21:21334589,30246961:173670,78643,0 +(182,21:27187271,30246961:501378,78643,0 +(182,21:27351125,30246961:173670,78643,0 ) ) -(183,21:21672113,30246961:501378,78643,0 -(183,21:21835967,30246961:173670,78643,0 +(182,21:27688649,30246961:501378,78643,0 +(182,21:27852503,30246961:173670,78643,0 ) ) -(183,21:22173491,30246961:501378,78643,0 -(183,21:22337345,30246961:173670,78643,0 +(182,21:28190027,30246961:501378,78643,0 +(182,21:28353881,30246961:173670,78643,0 ) ) -(183,21:22674869,30246961:501378,78643,0 -(183,21:22838723,30246961:173670,78643,0 +(182,21:28691405,30246961:501378,78643,0 +(182,21:28855259,30246961:173670,78643,0 ) ) -(183,21:23176247,30246961:501378,78643,0 -(183,21:23340101,30246961:173670,78643,0 +(182,21:29192783,30246961:501378,78643,0 +(182,21:29356637,30246961:173670,78643,0 ) ) -(183,21:23677625,30246961:501378,78643,0 -(183,21:23841479,30246961:173670,78643,0 +(182,21:29694161,30246961:501378,78643,0 +(182,21:29858015,30246961:173670,78643,0 ) ) -(183,21:24179003,30246961:501378,78643,0 -(183,21:24342857,30246961:173670,78643,0 +(182,21:30195539,30246961:501378,78643,0 +(182,21:30359393,30246961:173670,78643,0 ) ) -(183,21:24680381,30246961:501378,78643,0 -(183,21:24844235,30246961:173670,78643,0 +(182,21:30696917,30246961:501378,78643,0 +(182,21:30860771,30246961:173670,78643,0 ) ) -(183,21:25181759,30246961:501378,78643,0 -(183,21:25345613,30246961:173670,78643,0 +(182,21:31239539,30246961:1343490,485622,0 +k182,21:31586882,30246961:347343 +g182,21:31786111,30246961 ) +g182,21:30911859,30246961 +g182,21:32583029,30246961 ) -(183,21:25683137,30246961:501378,78643,0 -(183,21:25846991,30246961:173670,78643,0 +(182,22:6630773,31088449:25952256,505283,126483 +g182,22:13905273,31088449 +h182,22:13905273,31088449:4587520,0,0 +h182,22:18492793,31088449:0,0,0 +g182,22:11218293,31088449 +(182,22:11218293,31088449:2686980,485622,11795 +k182,22:13905273,31088449:572133 ) +g182,22:16732496,31088449 +(182,22:17159711,31088449:501378,78643,0 +$182,22:17159711,31088449 +(182,22:17323565,31088449:173670,78643,0 ) -(183,21:26184515,30246961:501378,78643,0 -(183,21:26348369,30246961:173670,78643,0 +$182,22:17661089,31088449 ) +(182,22:17661089,31088449:501378,78643,0 +(182,22:17824943,31088449:173670,78643,0 ) -(183,21:26685893,30246961:501378,78643,0 -(183,21:26849747,30246961:173670,78643,0 ) +(182,22:18162467,31088449:501378,78643,0 +(182,22:18326321,31088449:173670,78643,0 ) -(183,21:27187271,30246961:501378,78643,0 -(183,21:27351125,30246961:173670,78643,0 ) +(182,22:18663845,31088449:501378,78643,0 +(182,22:18827699,31088449:173670,78643,0 ) -(183,21:27688649,30246961:501378,78643,0 -(183,21:27852503,30246961:173670,78643,0 ) +(182,22:19165223,31088449:501378,78643,0 +(182,22:19329077,31088449:173670,78643,0 ) -(183,21:28190027,30246961:501378,78643,0 -(183,21:28353881,30246961:173670,78643,0 ) +(182,22:19666601,31088449:501378,78643,0 +(182,22:19830455,31088449:173670,78643,0 ) -(183,21:28691405,30246961:501378,78643,0 -(183,21:28855259,30246961:173670,78643,0 ) +(182,22:20167979,31088449:501378,78643,0 +(182,22:20331833,31088449:173670,78643,0 ) -(183,21:29192783,30246961:501378,78643,0 -(183,21:29356637,30246961:173670,78643,0 ) +(182,22:20669357,31088449:501378,78643,0 +(182,22:20833211,31088449:173670,78643,0 ) -(183,21:29694161,30246961:501378,78643,0 -(183,21:29858015,30246961:173670,78643,0 ) +(182,22:21170735,31088449:501378,78643,0 +(182,22:21334589,31088449:173670,78643,0 ) -(183,21:30195539,30246961:501378,78643,0 -(183,21:30359393,30246961:173670,78643,0 ) +(182,22:21672113,31088449:501378,78643,0 +(182,22:21835967,31088449:173670,78643,0 ) -(183,21:30696917,30246961:501378,78643,0 -(183,21:30860771,30246961:173670,78643,0 ) +(182,22:22173491,31088449:501378,78643,0 +(182,22:22337345,31088449:173670,78643,0 ) -(183,21:31239539,30246961:1343490,485622,11795 -k183,21:31586882,30246961:347343 -g183,21:31786111,30246961 ) -g183,21:30911859,30246961 -g183,21:32583029,30246961 +(182,22:22674869,31088449:501378,78643,0 +(182,22:22838723,31088449:173670,78643,0 ) -(183,22:6630773,31743809:25952256,505283,134348 -g183,22:7613813,31743809 -h183,22:7613813,31743809:0,0,0 -g183,22:6630773,31743809 -(183,22:6630773,31743809:983040,485622,0 -k183,22:7613813,31743809:574751 ) -g183,22:9083130,31743809 -g183,22:9759461,31743809 -g183,22:13090000,31743809 -g183,22:16014216,31743809 -g183,22:17438968,31743809 -k183,22:26276498,31743809:4963042 -k183,22:31239539,31743809:4963041 -(183,22:31239539,31743809:1343490,477757,0 -k183,22:31766450,31743809:526911 +(182,22:23176247,31088449:501378,78643,0 +(182,22:23340101,31088449:173670,78643,0 ) -g183,22:31239539,31743809 -g183,22:32583029,31743809 ) -(183,23:6630773,32585297:25952256,513147,126483 -g183,23:9121143,32585297 -h183,23:9121143,32585297:983040,0,0 -h183,23:10104183,32585297:0,0,0 -g183,23:7613813,32585297 -(183,23:7613813,32585297:1507330,485622,0 -k183,23:9121143,32585297:536742 +(182,22:23677625,31088449:501378,78643,0 +(182,22:23841479,31088449:173670,78643,0 ) -g183,23:10959427,32585297 -g183,23:11817948,32585297 -g183,23:13220418,32585297 -g183,23:15837270,32585297 -g183,23:15837270,32585297 -(183,23:16156955,32585297:501378,78643,0 -$183,23:16156955,32585297 -(183,23:16320809,32585297:173670,78643,0 ) -$183,23:16658333,32585297 +(182,22:24179003,31088449:501378,78643,0 +(182,22:24342857,31088449:173670,78643,0 ) -(183,23:16658333,32585297:501378,78643,0 -(183,23:16822187,32585297:173670,78643,0 ) +(182,22:24680381,31088449:501378,78643,0 +(182,22:24844235,31088449:173670,78643,0 ) -(183,23:17159711,32585297:501378,78643,0 -(183,23:17323565,32585297:173670,78643,0 ) +(182,22:25181759,31088449:501378,78643,0 +(182,22:25345613,31088449:173670,78643,0 ) -(183,23:17661089,32585297:501378,78643,0 -(183,23:17824943,32585297:173670,78643,0 ) +(182,22:25683137,31088449:501378,78643,0 +(182,22:25846991,31088449:173670,78643,0 ) -(183,23:18162467,32585297:501378,78643,0 -(183,23:18326321,32585297:173670,78643,0 ) +(182,22:26184515,31088449:501378,78643,0 +(182,22:26348369,31088449:173670,78643,0 ) -(183,23:18663845,32585297:501378,78643,0 -(183,23:18827699,32585297:173670,78643,0 ) +(182,22:26685893,31088449:501378,78643,0 +(182,22:26849747,31088449:173670,78643,0 ) -(183,23:19165223,32585297:501378,78643,0 -(183,23:19329077,32585297:173670,78643,0 ) +(182,22:27187271,31088449:501378,78643,0 +(182,22:27351125,31088449:173670,78643,0 ) -(183,23:19666601,32585297:501378,78643,0 -(183,23:19830455,32585297:173670,78643,0 ) +(182,22:27688649,31088449:501378,78643,0 +(182,22:27852503,31088449:173670,78643,0 ) -(183,23:20167979,32585297:501378,78643,0 -(183,23:20331833,32585297:173670,78643,0 ) +(182,22:28190027,31088449:501378,78643,0 +(182,22:28353881,31088449:173670,78643,0 ) -(183,23:20669357,32585297:501378,78643,0 -(183,23:20833211,32585297:173670,78643,0 ) +(182,22:28691405,31088449:501378,78643,0 +(182,22:28855259,31088449:173670,78643,0 ) -(183,23:21170735,32585297:501378,78643,0 -(183,23:21334589,32585297:173670,78643,0 ) +(182,22:29192783,31088449:501378,78643,0 +(182,22:29356637,31088449:173670,78643,0 ) -(183,23:21672113,32585297:501378,78643,0 -(183,23:21835967,32585297:173670,78643,0 ) +(182,22:29694161,31088449:501378,78643,0 +(182,22:29858015,31088449:173670,78643,0 ) -(183,23:22173491,32585297:501378,78643,0 -(183,23:22337345,32585297:173670,78643,0 ) +(182,22:30195539,31088449:501378,78643,0 +(182,22:30359393,31088449:173670,78643,0 ) -(183,23:22674869,32585297:501378,78643,0 -(183,23:22838723,32585297:173670,78643,0 ) +(182,22:30696917,31088449:501378,78643,0 +(182,22:30860771,31088449:173670,78643,0 ) -(183,23:23176247,32585297:501378,78643,0 -(183,23:23340101,32585297:173670,78643,0 ) +(182,22:31239539,31088449:1343490,485622,11795 +k182,22:31586882,31088449:347343 +g182,22:31786111,31088449 ) -(183,23:23677625,32585297:501378,78643,0 -(183,23:23841479,32585297:173670,78643,0 +g182,22:30911859,31088449 +g182,22:32583029,31088449 ) +(182,23:6630773,31929937:25952256,513147,126483 +g182,23:9121143,31929937 +h182,23:9121143,31929937:983040,0,0 +h182,23:10104183,31929937:0,0,0 +g182,23:7613813,31929937 +(182,23:7613813,31929937:1507330,481690,0 +k182,23:9121143,31929937:536742 ) -(183,23:24179003,32585297:501378,78643,0 -(183,23:24342857,32585297:173670,78643,0 +g182,23:11215673,31929937 +g182,23:14440699,31929937 +g182,23:14440699,31929937 +(182,23:14652821,31929937:501378,78643,0 +$182,23:14652821,31929937 +(182,23:14816675,31929937:173670,78643,0 ) +$182,23:15154199,31929937 ) -(183,23:24680381,32585297:501378,78643,0 -(183,23:24844235,32585297:173670,78643,0 +(182,23:15154199,31929937:501378,78643,0 +(182,23:15318053,31929937:173670,78643,0 ) ) -(183,23:25181759,32585297:501378,78643,0 -(183,23:25345613,32585297:173670,78643,0 +(182,23:15655577,31929937:501378,78643,0 +(182,23:15819431,31929937:173670,78643,0 ) ) -(183,23:25683137,32585297:501378,78643,0 -(183,23:25846991,32585297:173670,78643,0 +(182,23:16156955,31929937:501378,78643,0 +(182,23:16320809,31929937:173670,78643,0 ) ) -(183,23:26184515,32585297:501378,78643,0 -(183,23:26348369,32585297:173670,78643,0 +(182,23:16658333,31929937:501378,78643,0 +(182,23:16822187,31929937:173670,78643,0 ) ) -(183,23:26685893,32585297:501378,78643,0 -(183,23:26849747,32585297:173670,78643,0 +(182,23:17159711,31929937:501378,78643,0 +(182,23:17323565,31929937:173670,78643,0 ) ) -(183,23:27187271,32585297:501378,78643,0 -(183,23:27351125,32585297:173670,78643,0 +(182,23:17661089,31929937:501378,78643,0 +(182,23:17824943,31929937:173670,78643,0 ) ) -(183,23:27688649,32585297:501378,78643,0 -(183,23:27852503,32585297:173670,78643,0 +(182,23:18162467,31929937:501378,78643,0 +(182,23:18326321,31929937:173670,78643,0 ) ) -(183,23:28190027,32585297:501378,78643,0 -(183,23:28353881,32585297:173670,78643,0 +(182,23:18663845,31929937:501378,78643,0 +(182,23:18827699,31929937:173670,78643,0 ) ) -(183,23:28691405,32585297:501378,78643,0 -(183,23:28855259,32585297:173670,78643,0 +(182,23:19165223,31929937:501378,78643,0 +(182,23:19329077,31929937:173670,78643,0 ) ) -(183,23:29192783,32585297:501378,78643,0 -(183,23:29356637,32585297:173670,78643,0 +(182,23:19666601,31929937:501378,78643,0 +(182,23:19830455,31929937:173670,78643,0 ) ) -(183,23:29694161,32585297:501378,78643,0 -(183,23:29858015,32585297:173670,78643,0 +(182,23:20167979,31929937:501378,78643,0 +(182,23:20331833,31929937:173670,78643,0 ) ) -(183,23:30195539,32585297:501378,78643,0 -(183,23:30359393,32585297:173670,78643,0 +(182,23:20669357,31929937:501378,78643,0 +(182,23:20833211,31929937:173670,78643,0 ) ) -(183,23:30696917,32585297:501378,78643,0 -(183,23:30860771,32585297:173670,78643,0 +(182,23:21170735,31929937:501378,78643,0 +(182,23:21334589,31929937:173670,78643,0 ) ) -(183,23:31239539,32585297:1343490,477757,0 -k183,23:31586882,32585297:347343 -g183,23:31786111,32585297 +(182,23:21672113,31929937:501378,78643,0 +(182,23:21835967,31929937:173670,78643,0 ) -g183,23:30911859,32585297 -g183,23:32583029,32585297 ) -(183,24:6630773,33426785:25952256,505283,134348 -g183,24:9121143,33426785 -h183,24:9121143,33426785:983040,0,0 -h183,24:10104183,33426785:0,0,0 -g183,24:7613813,33426785 -(183,24:7613813,33426785:1507330,485622,0 -k183,24:9121143,33426785:536742 +(182,23:22173491,31929937:501378,78643,0 +(182,23:22337345,31929937:173670,78643,0 ) -g183,24:11689499,33426785 -g183,24:13080173,33426785 -g183,24:16355662,33426785 -g183,24:19727489,33426785 -g183,24:19727489,33426785 -(183,24:20167979,33426785:501378,78643,0 -$183,24:20167979,33426785 -(183,24:20331833,33426785:173670,78643,0 ) -$183,24:20669357,33426785 +(182,23:22674869,31929937:501378,78643,0 +(182,23:22838723,31929937:173670,78643,0 ) -(183,24:20669357,33426785:501378,78643,0 -(183,24:20833211,33426785:173670,78643,0 ) +(182,23:23176247,31929937:501378,78643,0 +(182,23:23340101,31929937:173670,78643,0 ) -(183,24:21170735,33426785:501378,78643,0 -(183,24:21334589,33426785:173670,78643,0 ) +(182,23:23677625,31929937:501378,78643,0 +(182,23:23841479,31929937:173670,78643,0 ) -(183,24:21672113,33426785:501378,78643,0 -(183,24:21835967,33426785:173670,78643,0 ) +(182,23:24179003,31929937:501378,78643,0 +(182,23:24342857,31929937:173670,78643,0 ) -(183,24:22173491,33426785:501378,78643,0 -(183,24:22337345,33426785:173670,78643,0 ) +(182,23:24680381,31929937:501378,78643,0 +(182,23:24844235,31929937:173670,78643,0 ) -(183,24:22674869,33426785:501378,78643,0 -(183,24:22838723,33426785:173670,78643,0 ) +(182,23:25181759,31929937:501378,78643,0 +(182,23:25345613,31929937:173670,78643,0 ) -(183,24:23176247,33426785:501378,78643,0 -(183,24:23340101,33426785:173670,78643,0 ) +(182,23:25683137,31929937:501378,78643,0 +(182,23:25846991,31929937:173670,78643,0 ) -(183,24:23677625,33426785:501378,78643,0 -(183,24:23841479,33426785:173670,78643,0 ) +(182,23:26184515,31929937:501378,78643,0 +(182,23:26348369,31929937:173670,78643,0 ) -(183,24:24179003,33426785:501378,78643,0 -(183,24:24342857,33426785:173670,78643,0 ) +(182,23:26685893,31929937:501378,78643,0 +(182,23:26849747,31929937:173670,78643,0 ) -(183,24:24680381,33426785:501378,78643,0 -(183,24:24844235,33426785:173670,78643,0 ) +(182,23:27187271,31929937:501378,78643,0 +(182,23:27351125,31929937:173670,78643,0 ) -(183,24:25181759,33426785:501378,78643,0 -(183,24:25345613,33426785:173670,78643,0 ) +(182,23:27688649,31929937:501378,78643,0 +(182,23:27852503,31929937:173670,78643,0 ) -(183,24:25683137,33426785:501378,78643,0 -(183,24:25846991,33426785:173670,78643,0 ) +(182,23:28190027,31929937:501378,78643,0 +(182,23:28353881,31929937:173670,78643,0 ) -(183,24:26184515,33426785:501378,78643,0 -(183,24:26348369,33426785:173670,78643,0 ) +(182,23:28691405,31929937:501378,78643,0 +(182,23:28855259,31929937:173670,78643,0 ) -(183,24:26685893,33426785:501378,78643,0 -(183,24:26849747,33426785:173670,78643,0 ) +(182,23:29192783,31929937:501378,78643,0 +(182,23:29356637,31929937:173670,78643,0 ) -(183,24:27187271,33426785:501378,78643,0 -(183,24:27351125,33426785:173670,78643,0 ) +(182,23:29694161,31929937:501378,78643,0 +(182,23:29858015,31929937:173670,78643,0 ) -(183,24:27688649,33426785:501378,78643,0 -(183,24:27852503,33426785:173670,78643,0 ) +(182,23:30195539,31929937:501378,78643,0 +(182,23:30359393,31929937:173670,78643,0 ) -(183,24:28190027,33426785:501378,78643,0 -(183,24:28353881,33426785:173670,78643,0 ) +(182,23:30696917,31929937:501378,78643,0 +(182,23:30860771,31929937:173670,78643,0 ) -(183,24:28691405,33426785:501378,78643,0 -(183,24:28855259,33426785:173670,78643,0 ) +(182,23:31239539,31929937:1343490,485622,11795 +k182,23:31586882,31929937:347343 +g182,23:31786111,31929937 ) -(183,24:29192783,33426785:501378,78643,0 -(183,24:29356637,33426785:173670,78643,0 +g182,23:30911859,31929937 +g182,23:32583029,31929937 ) +(182,24:6630773,32771425:25952256,513147,134348 +g182,24:11218293,32771425 +h182,24:11218293,32771425:2490370,0,0 +h182,24:13708663,32771425:0,0,0 +g182,24:9121143,32771425 +(182,24:9121143,32771425:2097150,481690,0 +k182,24:11218293,32771425:554432 ) -(183,24:29694161,33426785:501378,78643,0 -(183,24:29858015,33426785:173670,78643,0 +g182,24:14303072,32771425 +g182,24:17528098,32771425 +g182,24:18378755,32771425 +g182,24:20886162,32771425 +g182,24:22276836,32771425 +g182,24:23600663,32771425 +(182,24:23677625,32771425:501378,78643,0 +$182,24:23677625,32771425 +(182,24:23841479,32771425:173670,78643,0 ) +$182,24:24179003,32771425 ) -(183,24:30195539,33426785:501378,78643,0 -(183,24:30359393,33426785:173670,78643,0 +(182,24:24179003,32771425:501378,78643,0 +(182,24:24342857,32771425:173670,78643,0 ) ) -(183,24:30696917,33426785:501378,78643,0 -(183,24:30860771,33426785:173670,78643,0 +(182,24:24680381,32771425:501378,78643,0 +(182,24:24844235,32771425:173670,78643,0 ) ) -(183,24:31239539,33426785:1343490,485622,11795 -k183,24:31586882,33426785:347343 -g183,24:31786111,33426785 +(182,24:25181759,32771425:501378,78643,0 +(182,24:25345613,32771425:173670,78643,0 ) -g183,24:30911859,33426785 -g183,24:32583029,33426785 ) -(183,25:6630773,34268273:25952256,505283,11795 -g183,25:9121143,34268273 -h183,25:9121143,34268273:983040,0,0 -h183,25:10104183,34268273:0,0,0 -g183,25:7613813,34268273 -(183,25:7613813,34268273:1507330,485622,11795 -k183,25:9121143,34268273:536742 +(182,24:25683137,32771425:501378,78643,0 +(182,24:25846991,32771425:173670,78643,0 ) -g183,25:12017834,34268273 -g183,25:14227708,34268273 -g183,25:15618382,34268273 -g183,25:19093756,34268273 -g183,25:19093756,34268273 -(183,25:19165223,34268273:501378,78643,0 -$183,25:19165223,34268273 -(183,25:19329077,34268273:173670,78643,0 ) -$183,25:19666601,34268273 +(182,24:26184515,32771425:501378,78643,0 +(182,24:26348369,32771425:173670,78643,0 ) -(183,25:19666601,34268273:501378,78643,0 -(183,25:19830455,34268273:173670,78643,0 ) +(182,24:26685893,32771425:501378,78643,0 +(182,24:26849747,32771425:173670,78643,0 ) -(183,25:20167979,34268273:501378,78643,0 -(183,25:20331833,34268273:173670,78643,0 ) +(182,24:27187271,32771425:501378,78643,0 +(182,24:27351125,32771425:173670,78643,0 ) -(183,25:20669357,34268273:501378,78643,0 -(183,25:20833211,34268273:173670,78643,0 ) +(182,24:27688649,32771425:501378,78643,0 +(182,24:27852503,32771425:173670,78643,0 ) -(183,25:21170735,34268273:501378,78643,0 -(183,25:21334589,34268273:173670,78643,0 ) +(182,24:28190027,32771425:501378,78643,0 +(182,24:28353881,32771425:173670,78643,0 ) -(183,25:21672113,34268273:501378,78643,0 -(183,25:21835967,34268273:173670,78643,0 ) +(182,24:28691405,32771425:501378,78643,0 +(182,24:28855259,32771425:173670,78643,0 ) -(183,25:22173491,34268273:501378,78643,0 -(183,25:22337345,34268273:173670,78643,0 ) +(182,24:29192783,32771425:501378,78643,0 +(182,24:29356637,32771425:173670,78643,0 ) -(183,25:22674869,34268273:501378,78643,0 -(183,25:22838723,34268273:173670,78643,0 ) +(182,24:29694161,32771425:501378,78643,0 +(182,24:29858015,32771425:173670,78643,0 ) -(183,25:23176247,34268273:501378,78643,0 -(183,25:23340101,34268273:173670,78643,0 ) +(182,24:30195539,32771425:501378,78643,0 +(182,24:30359393,32771425:173670,78643,0 ) -(183,25:23677625,34268273:501378,78643,0 -(183,25:23841479,34268273:173670,78643,0 ) +(182,24:30696917,32771425:501378,78643,0 +(182,24:30860771,32771425:173670,78643,0 ) -(183,25:24179003,34268273:501378,78643,0 -(183,25:24342857,34268273:173670,78643,0 ) +(182,24:31239539,32771425:1343490,485622,0 +k182,24:31586882,32771425:347343 +g182,24:31786111,32771425 ) -(183,25:24680381,34268273:501378,78643,0 -(183,25:24844235,34268273:173670,78643,0 +g182,24:30911859,32771425 +g182,24:32583029,32771425 ) +(182,25:6630773,33612913:25952256,513147,134348 +g182,25:11218293,33612913 +h182,25:11218293,33612913:2490370,0,0 +h182,25:13708663,33612913:0,0,0 +g182,25:9121143,33612913 +(182,25:9121143,33612913:2097150,485622,0 +k182,25:11218293,33612913:554432 ) -(183,25:25181759,34268273:501378,78643,0 -(183,25:25345613,34268273:173670,78643,0 +g182,25:14303072,33612913 +g182,25:17528098,33612913 +g182,25:18378755,33612913 +g182,25:21311491,33612913 +g182,25:22702165,33612913 +g182,25:24682008,33612913 +(182,25:25181759,33612913:501378,78643,0 +$182,25:25181759,33612913 +(182,25:25345613,33612913:173670,78643,0 ) +$182,25:25683137,33612913 ) -(183,25:25683137,34268273:501378,78643,0 -(183,25:25846991,34268273:173670,78643,0 +(182,25:25683137,33612913:501378,78643,0 +(182,25:25846991,33612913:173670,78643,0 ) ) -(183,25:26184515,34268273:501378,78643,0 -(183,25:26348369,34268273:173670,78643,0 +(182,25:26184515,33612913:501378,78643,0 +(182,25:26348369,33612913:173670,78643,0 ) ) -(183,25:26685893,34268273:501378,78643,0 -(183,25:26849747,34268273:173670,78643,0 +(182,25:26685893,33612913:501378,78643,0 +(182,25:26849747,33612913:173670,78643,0 ) ) -(183,25:27187271,34268273:501378,78643,0 -(183,25:27351125,34268273:173670,78643,0 +(182,25:27187271,33612913:501378,78643,0 +(182,25:27351125,33612913:173670,78643,0 ) ) -(183,25:27688649,34268273:501378,78643,0 -(183,25:27852503,34268273:173670,78643,0 +(182,25:27688649,33612913:501378,78643,0 +(182,25:27852503,33612913:173670,78643,0 ) ) -(183,25:28190027,34268273:501378,78643,0 -(183,25:28353881,34268273:173670,78643,0 +(182,25:28190027,33612913:501378,78643,0 +(182,25:28353881,33612913:173670,78643,0 ) ) -(183,25:28691405,34268273:501378,78643,0 -(183,25:28855259,34268273:173670,78643,0 +(182,25:28691405,33612913:501378,78643,0 +(182,25:28855259,33612913:173670,78643,0 ) ) -(183,25:29192783,34268273:501378,78643,0 -(183,25:29356637,34268273:173670,78643,0 +(182,25:29192783,33612913:501378,78643,0 +(182,25:29356637,33612913:173670,78643,0 ) ) -(183,25:29694161,34268273:501378,78643,0 -(183,25:29858015,34268273:173670,78643,0 +(182,25:29694161,33612913:501378,78643,0 +(182,25:29858015,33612913:173670,78643,0 ) ) -(183,25:30195539,34268273:501378,78643,0 -(183,25:30359393,34268273:173670,78643,0 +(182,25:30195539,33612913:501378,78643,0 +(182,25:30359393,33612913:173670,78643,0 ) ) -(183,25:30696917,34268273:501378,78643,0 -(183,25:30860771,34268273:173670,78643,0 +(182,25:30696917,33612913:501378,78643,0 +(182,25:30860771,33612913:173670,78643,0 ) ) -(183,25:31239539,34268273:1343490,485622,11795 -k183,25:31586882,34268273:347343 -g183,25:31786111,34268273 +(182,25:31239539,33612913:1343490,485622,11795 +k182,25:31586882,33612913:347343 +g182,25:31786111,33612913 ) -g183,25:30911859,34268273 -g183,25:32583029,34268273 +g182,25:30911859,33612913 +g182,25:32583029,33612913 ) -(183,26:6630773,35109761:25952256,505283,134348 -g183,26:9121143,35109761 -h183,26:9121143,35109761:983040,0,0 -h183,26:10104183,35109761:0,0,0 -g183,26:7613813,35109761 -(183,26:7613813,35109761:1507330,485622,0 -k183,26:9121143,35109761:536742 +(182,26:6630773,34454401:25952256,505283,126483 +g182,26:9121143,34454401 +h182,26:9121143,34454401:983040,0,0 +h182,26:10104183,34454401:0,0,0 +g182,26:7613813,34454401 +(182,26:7613813,34454401:1507330,477757,11795 +k182,26:9121143,34454401:536742 ) -g183,26:11549907,35109761 -g183,26:13759781,35109761 -g183,26:15150455,35109761 -g183,26:17861024,35109761 -g183,26:20387436,35109761 -g183,26:20387436,35109761 -(183,26:20669357,35109761:501378,78643,0 -$183,26:20669357,35109761 -(183,26:20833211,35109761:173670,78643,0 +g182,26:12440541,34454401 +g182,26:13924276,34454401 +g182,26:16421853,34454401 +g182,26:18366306,34454401 +g182,26:18366306,34454401 +(182,26:18663845,34454401:501378,78643,0 +$182,26:18663845,34454401 +(182,26:18827699,34454401:173670,78643,0 ) -$183,26:21170735,35109761 +$182,26:19165223,34454401 ) -(183,26:21170735,35109761:501378,78643,0 -(183,26:21334589,35109761:173670,78643,0 +(182,26:19165223,34454401:501378,78643,0 +(182,26:19329077,34454401:173670,78643,0 ) ) -(183,26:21672113,35109761:501378,78643,0 -(183,26:21835967,35109761:173670,78643,0 +(182,26:19666601,34454401:501378,78643,0 +(182,26:19830455,34454401:173670,78643,0 ) ) -(183,26:22173491,35109761:501378,78643,0 -(183,26:22337345,35109761:173670,78643,0 +(182,26:20167979,34454401:501378,78643,0 +(182,26:20331833,34454401:173670,78643,0 ) ) -(183,26:22674869,35109761:501378,78643,0 -(183,26:22838723,35109761:173670,78643,0 +(182,26:20669357,34454401:501378,78643,0 +(182,26:20833211,34454401:173670,78643,0 ) ) -(183,26:23176247,35109761:501378,78643,0 -(183,26:23340101,35109761:173670,78643,0 +(182,26:21170735,34454401:501378,78643,0 +(182,26:21334589,34454401:173670,78643,0 ) ) -(183,26:23677625,35109761:501378,78643,0 -(183,26:23841479,35109761:173670,78643,0 +(182,26:21672113,34454401:501378,78643,0 +(182,26:21835967,34454401:173670,78643,0 ) ) -(183,26:24179003,35109761:501378,78643,0 -(183,26:24342857,35109761:173670,78643,0 +(182,26:22173491,34454401:501378,78643,0 +(182,26:22337345,34454401:173670,78643,0 ) ) -(183,26:24680381,35109761:501378,78643,0 -(183,26:24844235,35109761:173670,78643,0 +(182,26:22674869,34454401:501378,78643,0 +(182,26:22838723,34454401:173670,78643,0 ) ) -(183,26:25181759,35109761:501378,78643,0 -(183,26:25345613,35109761:173670,78643,0 +(182,26:23176247,34454401:501378,78643,0 +(182,26:23340101,34454401:173670,78643,0 ) ) -(183,26:25683137,35109761:501378,78643,0 -(183,26:25846991,35109761:173670,78643,0 +(182,26:23677625,34454401:501378,78643,0 +(182,26:23841479,34454401:173670,78643,0 ) ) -(183,26:26184515,35109761:501378,78643,0 -(183,26:26348369,35109761:173670,78643,0 +(182,26:24179003,34454401:501378,78643,0 +(182,26:24342857,34454401:173670,78643,0 ) ) -(183,26:26685893,35109761:501378,78643,0 -(183,26:26849747,35109761:173670,78643,0 +(182,26:24680381,34454401:501378,78643,0 +(182,26:24844235,34454401:173670,78643,0 ) ) -(183,26:27187271,35109761:501378,78643,0 -(183,26:27351125,35109761:173670,78643,0 +(182,26:25181759,34454401:501378,78643,0 +(182,26:25345613,34454401:173670,78643,0 ) ) -(183,26:27688649,35109761:501378,78643,0 -(183,26:27852503,35109761:173670,78643,0 +(182,26:25683137,34454401:501378,78643,0 +(182,26:25846991,34454401:173670,78643,0 ) ) -(183,26:28190027,35109761:501378,78643,0 -(183,26:28353881,35109761:173670,78643,0 +(182,26:26184515,34454401:501378,78643,0 +(182,26:26348369,34454401:173670,78643,0 ) ) -(183,26:28691405,35109761:501378,78643,0 -(183,26:28855259,35109761:173670,78643,0 +(182,26:26685893,34454401:501378,78643,0 +(182,26:26849747,34454401:173670,78643,0 ) ) -(183,26:29192783,35109761:501378,78643,0 -(183,26:29356637,35109761:173670,78643,0 +(182,26:27187271,34454401:501378,78643,0 +(182,26:27351125,34454401:173670,78643,0 ) ) -(183,26:29694161,35109761:501378,78643,0 -(183,26:29858015,35109761:173670,78643,0 +(182,26:27688649,34454401:501378,78643,0 +(182,26:27852503,34454401:173670,78643,0 ) ) -(183,26:30195539,35109761:501378,78643,0 -(183,26:30359393,35109761:173670,78643,0 +(182,26:28190027,34454401:501378,78643,0 +(182,26:28353881,34454401:173670,78643,0 ) ) -(183,26:30696917,35109761:501378,78643,0 -(183,26:30860771,35109761:173670,78643,0 +(182,26:28691405,34454401:501378,78643,0 +(182,26:28855259,34454401:173670,78643,0 ) ) -(183,26:31239539,35109761:1343490,485622,11795 -k183,26:31586882,35109761:347343 -g183,26:31786111,35109761 +(182,26:29192783,34454401:501378,78643,0 +(182,26:29356637,34454401:173670,78643,0 ) -g183,26:30911859,35109761 -g183,26:32583029,35109761 ) -(183,27:6630773,35951249:25952256,505283,126483 -g183,27:9121143,35951249 -h183,27:9121143,35951249:983040,0,0 -h183,27:10104183,35951249:0,0,0 -g183,27:7613813,35951249 -(183,27:7613813,35951249:1507330,485622,11795 -k183,27:9121143,35951249:536742 +(182,26:29694161,34454401:501378,78643,0 +(182,26:29858015,34454401:173670,78643,0 ) -g183,27:13196171,35951249 -g183,27:16472315,35951249 -g183,27:17862989,35951249 -g183,27:21466813,35951249 -g183,27:21466813,35951249 -(183,27:21672113,35951249:501378,78643,0 -$183,27:21672113,35951249 -(183,27:21835967,35951249:173670,78643,0 ) -$183,27:22173491,35951249 +(182,26:30195539,34454401:501378,78643,0 +(182,26:30359393,34454401:173670,78643,0 ) -(183,27:22173491,35951249:501378,78643,0 -(183,27:22337345,35951249:173670,78643,0 ) +(182,26:30696917,34454401:501378,78643,0 +(182,26:30860771,34454401:173670,78643,0 ) -(183,27:22674869,35951249:501378,78643,0 -(183,27:22838723,35951249:173670,78643,0 ) +(182,26:31239539,34454401:1343490,485622,11795 +k182,26:31586882,34454401:347343 +g182,26:31786111,34454401 ) -(183,27:23176247,35951249:501378,78643,0 -(183,27:23340101,35951249:173670,78643,0 +g182,26:30911859,34454401 +g182,26:32583029,34454401 ) +(182,27:6630773,35295889:25952256,505283,134348 +g182,27:9121143,35295889 +h182,27:9121143,35295889:983040,0,0 +h182,27:10104183,35295889:0,0,0 +g182,27:7613813,35295889 +(182,27:7613813,35295889:1507330,485622,11795 +k182,27:9121143,35295889:536742 ) -(183,27:23677625,35951249:501378,78643,0 -(183,27:23841479,35951249:173670,78643,0 +g182,27:11394586,35295889 +g182,27:13662131,35295889 +g182,27:15052805,35295889 +g182,27:18226713,35295889 +g182,27:20622053,35295889 +g182,27:20622053,35295889 +(182,27:20669357,35295889:501378,78643,0 +$182,27:20669357,35295889 +(182,27:20833211,35295889:173670,78643,0 ) +$182,27:21170735,35295889 ) -(183,27:24179003,35951249:501378,78643,0 -(183,27:24342857,35951249:173670,78643,0 +(182,27:21170735,35295889:501378,78643,0 +(182,27:21334589,35295889:173670,78643,0 ) ) -(183,27:24680381,35951249:501378,78643,0 -(183,27:24844235,35951249:173670,78643,0 +(182,27:21672113,35295889:501378,78643,0 +(182,27:21835967,35295889:173670,78643,0 ) ) -(183,27:25181759,35951249:501378,78643,0 -(183,27:25345613,35951249:173670,78643,0 +(182,27:22173491,35295889:501378,78643,0 +(182,27:22337345,35295889:173670,78643,0 ) ) -(183,27:25683137,35951249:501378,78643,0 -(183,27:25846991,35951249:173670,78643,0 +(182,27:22674869,35295889:501378,78643,0 +(182,27:22838723,35295889:173670,78643,0 ) ) -(183,27:26184515,35951249:501378,78643,0 -(183,27:26348369,35951249:173670,78643,0 +(182,27:23176247,35295889:501378,78643,0 +(182,27:23340101,35295889:173670,78643,0 ) ) -(183,27:26685893,35951249:501378,78643,0 -(183,27:26849747,35951249:173670,78643,0 +(182,27:23677625,35295889:501378,78643,0 +(182,27:23841479,35295889:173670,78643,0 ) ) -(183,27:27187271,35951249:501378,78643,0 -(183,27:27351125,35951249:173670,78643,0 +(182,27:24179003,35295889:501378,78643,0 +(182,27:24342857,35295889:173670,78643,0 ) ) -(183,27:27688649,35951249:501378,78643,0 -(183,27:27852503,35951249:173670,78643,0 +(182,27:24680381,35295889:501378,78643,0 +(182,27:24844235,35295889:173670,78643,0 ) ) -(183,27:28190027,35951249:501378,78643,0 -(183,27:28353881,35951249:173670,78643,0 +(182,27:25181759,35295889:501378,78643,0 +(182,27:25345613,35295889:173670,78643,0 ) ) -(183,27:28691405,35951249:501378,78643,0 -(183,27:28855259,35951249:173670,78643,0 +(182,27:25683137,35295889:501378,78643,0 +(182,27:25846991,35295889:173670,78643,0 ) ) -(183,27:29192783,35951249:501378,78643,0 -(183,27:29356637,35951249:173670,78643,0 +(182,27:26184515,35295889:501378,78643,0 +(182,27:26348369,35295889:173670,78643,0 ) ) -(183,27:29694161,35951249:501378,78643,0 -(183,27:29858015,35951249:173670,78643,0 +(182,27:26685893,35295889:501378,78643,0 +(182,27:26849747,35295889:173670,78643,0 ) ) -(183,27:30195539,35951249:501378,78643,0 -(183,27:30359393,35951249:173670,78643,0 +(182,27:27187271,35295889:501378,78643,0 +(182,27:27351125,35295889:173670,78643,0 ) ) -(183,27:30696917,35951249:501378,78643,0 -(183,27:30860771,35951249:173670,78643,0 +(182,27:27688649,35295889:501378,78643,0 +(182,27:27852503,35295889:173670,78643,0 ) ) -(183,27:31239539,35951249:1343490,485622,11795 -k183,27:31586882,35951249:347343 -g183,27:31786111,35951249 +(182,27:28190027,35295889:501378,78643,0 +(182,27:28353881,35295889:173670,78643,0 ) -g183,27:30911859,35951249 -g183,27:32583029,35951249 ) -(183,28:6630773,36792737:25952256,505283,126483 -g183,28:9121143,36792737 -h183,28:9121143,36792737:983040,0,0 -h183,28:10104183,36792737:0,0,0 -g183,28:7613813,36792737 -(183,28:7613813,36792737:1507330,485622,11795 -k183,28:9121143,36792737:536742 +(182,27:28691405,35295889:501378,78643,0 +(182,27:28855259,35295889:173670,78643,0 ) -g183,28:10610121,36792737 -g183,28:12000795,36792737 -g183,28:13134567,36792737 -g183,28:16738391,36792737 -g183,28:16738391,36792737 -(183,28:17159711,36792737:501378,78643,0 -$183,28:17159711,36792737 -(183,28:17323565,36792737:173670,78643,0 ) -$183,28:17661089,36792737 +(182,27:29192783,35295889:501378,78643,0 +(182,27:29356637,35295889:173670,78643,0 ) -(183,28:17661089,36792737:501378,78643,0 -(183,28:17824943,36792737:173670,78643,0 ) +(182,27:29694161,35295889:501378,78643,0 +(182,27:29858015,35295889:173670,78643,0 ) -(183,28:18162467,36792737:501378,78643,0 -(183,28:18326321,36792737:173670,78643,0 ) +(182,27:30195539,35295889:501378,78643,0 +(182,27:30359393,35295889:173670,78643,0 ) -(183,28:18663845,36792737:501378,78643,0 -(183,28:18827699,36792737:173670,78643,0 ) +(182,27:30696917,35295889:501378,78643,0 +(182,27:30860771,35295889:173670,78643,0 ) -(183,28:19165223,36792737:501378,78643,0 -(183,28:19329077,36792737:173670,78643,0 ) +(182,27:31239539,35295889:1343490,485622,11795 +k182,27:31586882,35295889:347343 +g182,27:31786111,35295889 ) -(183,28:19666601,36792737:501378,78643,0 -(183,28:19830455,36792737:173670,78643,0 +g182,27:30911859,35295889 +g182,27:32583029,35295889 ) +(182,28:6630773,36137377:25952256,513147,126483 +g182,28:9121143,36137377 +h182,28:9121143,36137377:983040,0,0 +h182,28:10104183,36137377:0,0,0 +g182,28:7613813,36137377 +(182,28:7613813,36137377:1507330,477757,0 +k182,28:9121143,36137377:536742 ) -(183,28:20167979,36792737:501378,78643,0 -(183,28:20331833,36792737:173670,78643,0 +g182,28:10517059,36137377 +g182,28:13387535,36137377 +g182,28:15218610,36137377 +g182,28:16077131,36137377 +g182,28:18021584,36137377 +g182,28:18021584,36137377 +(182,28:18162467,36137377:501378,78643,0 +$182,28:18162467,36137377 +(182,28:18326321,36137377:173670,78643,0 ) +$182,28:18663845,36137377 ) -(183,28:20669357,36792737:501378,78643,0 -(183,28:20833211,36792737:173670,78643,0 +(182,28:18663845,36137377:501378,78643,0 +(182,28:18827699,36137377:173670,78643,0 ) ) -(183,28:21170735,36792737:501378,78643,0 -(183,28:21334589,36792737:173670,78643,0 +(182,28:19165223,36137377:501378,78643,0 +(182,28:19329077,36137377:173670,78643,0 ) ) -(183,28:21672113,36792737:501378,78643,0 -(183,28:21835967,36792737:173670,78643,0 +(182,28:19666601,36137377:501378,78643,0 +(182,28:19830455,36137377:173670,78643,0 ) ) -(183,28:22173491,36792737:501378,78643,0 -(183,28:22337345,36792737:173670,78643,0 +(182,28:20167979,36137377:501378,78643,0 +(182,28:20331833,36137377:173670,78643,0 ) ) -(183,28:22674869,36792737:501378,78643,0 -(183,28:22838723,36792737:173670,78643,0 +(182,28:20669357,36137377:501378,78643,0 +(182,28:20833211,36137377:173670,78643,0 ) ) -(183,28:23176247,36792737:501378,78643,0 -(183,28:23340101,36792737:173670,78643,0 +(182,28:21170735,36137377:501378,78643,0 +(182,28:21334589,36137377:173670,78643,0 ) ) -(183,28:23677625,36792737:501378,78643,0 -(183,28:23841479,36792737:173670,78643,0 +(182,28:21672113,36137377:501378,78643,0 +(182,28:21835967,36137377:173670,78643,0 ) ) -(183,28:24179003,36792737:501378,78643,0 -(183,28:24342857,36792737:173670,78643,0 +(182,28:22173491,36137377:501378,78643,0 +(182,28:22337345,36137377:173670,78643,0 ) ) -(183,28:24680381,36792737:501378,78643,0 -(183,28:24844235,36792737:173670,78643,0 +(182,28:22674869,36137377:501378,78643,0 +(182,28:22838723,36137377:173670,78643,0 ) ) -(183,28:25181759,36792737:501378,78643,0 -(183,28:25345613,36792737:173670,78643,0 +(182,28:23176247,36137377:501378,78643,0 +(182,28:23340101,36137377:173670,78643,0 ) ) -(183,28:25683137,36792737:501378,78643,0 -(183,28:25846991,36792737:173670,78643,0 +(182,28:23677625,36137377:501378,78643,0 +(182,28:23841479,36137377:173670,78643,0 ) ) -(183,28:26184515,36792737:501378,78643,0 -(183,28:26348369,36792737:173670,78643,0 +(182,28:24179003,36137377:501378,78643,0 +(182,28:24342857,36137377:173670,78643,0 ) ) -(183,28:26685893,36792737:501378,78643,0 -(183,28:26849747,36792737:173670,78643,0 +(182,28:24680381,36137377:501378,78643,0 +(182,28:24844235,36137377:173670,78643,0 ) ) -(183,28:27187271,36792737:501378,78643,0 -(183,28:27351125,36792737:173670,78643,0 +(182,28:25181759,36137377:501378,78643,0 +(182,28:25345613,36137377:173670,78643,0 ) ) -(183,28:27688649,36792737:501378,78643,0 -(183,28:27852503,36792737:173670,78643,0 +(182,28:25683137,36137377:501378,78643,0 +(182,28:25846991,36137377:173670,78643,0 ) ) -(183,28:28190027,36792737:501378,78643,0 -(183,28:28353881,36792737:173670,78643,0 +(182,28:26184515,36137377:501378,78643,0 +(182,28:26348369,36137377:173670,78643,0 ) ) -(183,28:28691405,36792737:501378,78643,0 -(183,28:28855259,36792737:173670,78643,0 +(182,28:26685893,36137377:501378,78643,0 +(182,28:26849747,36137377:173670,78643,0 ) ) -(183,28:29192783,36792737:501378,78643,0 -(183,28:29356637,36792737:173670,78643,0 +(182,28:27187271,36137377:501378,78643,0 +(182,28:27351125,36137377:173670,78643,0 ) ) -(183,28:29694161,36792737:501378,78643,0 -(183,28:29858015,36792737:173670,78643,0 +(182,28:27688649,36137377:501378,78643,0 +(182,28:27852503,36137377:173670,78643,0 ) ) -(183,28:30195539,36792737:501378,78643,0 -(183,28:30359393,36792737:173670,78643,0 +(182,28:28190027,36137377:501378,78643,0 +(182,28:28353881,36137377:173670,78643,0 ) ) -(183,28:30696917,36792737:501378,78643,0 -(183,28:30860771,36792737:173670,78643,0 +(182,28:28691405,36137377:501378,78643,0 +(182,28:28855259,36137377:173670,78643,0 ) ) -(183,28:31239539,36792737:1343490,485622,11795 -k183,28:31586882,36792737:347343 -g183,28:31786111,36792737 +(182,28:29192783,36137377:501378,78643,0 +(182,28:29356637,36137377:173670,78643,0 ) -g183,28:30911859,36792737 -g183,28:32583029,36792737 ) -(183,29:6630773,37634225:25952256,505283,11795 -g183,29:9121143,37634225 -h183,29:9121143,37634225:983040,0,0 -h183,29:10104183,37634225:0,0,0 -g183,29:7613813,37634225 -(183,29:7613813,37634225:1507330,485622,0 -k183,29:9121143,37634225:536742 +(182,28:29694161,36137377:501378,78643,0 +(182,28:29858015,36137377:173670,78643,0 ) -g183,29:12416948,37634225 -g183,29:14626822,37634225 -g183,29:14626822,37634225 -(183,29:14652821,37634225:501378,78643,0 -$183,29:14652821,37634225 -(183,29:14816675,37634225:173670,78643,0 ) -$183,29:15154199,37634225 +(182,28:30195539,36137377:501378,78643,0 +(182,28:30359393,36137377:173670,78643,0 ) -(183,29:15154199,37634225:501378,78643,0 -(183,29:15318053,37634225:173670,78643,0 ) +(182,28:30696917,36137377:501378,78643,0 +(182,28:30860771,36137377:173670,78643,0 ) -(183,29:15655577,37634225:501378,78643,0 -(183,29:15819431,37634225:173670,78643,0 ) +(182,28:31239539,36137377:1343490,485622,11795 +k182,28:31586882,36137377:347343 +g182,28:31786111,36137377 ) -(183,29:16156955,37634225:501378,78643,0 -(183,29:16320809,37634225:173670,78643,0 +g182,28:30911859,36137377 +g182,28:32583029,36137377 ) +(182,29:6630773,36978865:25952256,505283,126483 +g182,29:9121143,36978865 +h182,29:9121143,36978865:983040,0,0 +h182,29:10104183,36978865:0,0,0 +g182,29:7613813,36978865 +(182,29:7613813,36978865:1507330,485622,11795 +k182,29:9121143,36978865:536742 ) -(183,29:16658333,37634225:501378,78643,0 -(183,29:16822187,37634225:173670,78643,0 +g182,29:10792311,36978865 +g182,29:12711860,36978865 +g182,29:13527127,36978865 +g182,29:15160284,36978865 +g182,29:15804502,36978865 +g182,29:15804502,36978865 +(182,29:16156955,36978865:501378,78643,0 +$182,29:16156955,36978865 +(182,29:16320809,36978865:173670,78643,0 ) +$182,29:16658333,36978865 ) -(183,29:17159711,37634225:501378,78643,0 -(183,29:17323565,37634225:173670,78643,0 +(182,29:16658333,36978865:501378,78643,0 +(182,29:16822187,36978865:173670,78643,0 ) ) -(183,29:17661089,37634225:501378,78643,0 -(183,29:17824943,37634225:173670,78643,0 +(182,29:17159711,36978865:501378,78643,0 +(182,29:17323565,36978865:173670,78643,0 ) ) -(183,29:18162467,37634225:501378,78643,0 -(183,29:18326321,37634225:173670,78643,0 +(182,29:17661089,36978865:501378,78643,0 +(182,29:17824943,36978865:173670,78643,0 ) ) -(183,29:18663845,37634225:501378,78643,0 -(183,29:18827699,37634225:173670,78643,0 +(182,29:18162467,36978865:501378,78643,0 +(182,29:18326321,36978865:173670,78643,0 ) ) -(183,29:19165223,37634225:501378,78643,0 -(183,29:19329077,37634225:173670,78643,0 +(182,29:18663845,36978865:501378,78643,0 +(182,29:18827699,36978865:173670,78643,0 ) ) -(183,29:19666601,37634225:501378,78643,0 -(183,29:19830455,37634225:173670,78643,0 +(182,29:19165223,36978865:501378,78643,0 +(182,29:19329077,36978865:173670,78643,0 ) ) -(183,29:20167979,37634225:501378,78643,0 -(183,29:20331833,37634225:173670,78643,0 +(182,29:19666601,36978865:501378,78643,0 +(182,29:19830455,36978865:173670,78643,0 ) ) -(183,29:20669357,37634225:501378,78643,0 -(183,29:20833211,37634225:173670,78643,0 +(182,29:20167979,36978865:501378,78643,0 +(182,29:20331833,36978865:173670,78643,0 ) ) -(183,29:21170735,37634225:501378,78643,0 -(183,29:21334589,37634225:173670,78643,0 +(182,29:20669357,36978865:501378,78643,0 +(182,29:20833211,36978865:173670,78643,0 ) ) -(183,29:21672113,37634225:501378,78643,0 -(183,29:21835967,37634225:173670,78643,0 +(182,29:21170735,36978865:501378,78643,0 +(182,29:21334589,36978865:173670,78643,0 ) ) -(183,29:22173491,37634225:501378,78643,0 -(183,29:22337345,37634225:173670,78643,0 +(182,29:21672113,36978865:501378,78643,0 +(182,29:21835967,36978865:173670,78643,0 ) ) -(183,29:22674869,37634225:501378,78643,0 -(183,29:22838723,37634225:173670,78643,0 +(182,29:22173491,36978865:501378,78643,0 +(182,29:22337345,36978865:173670,78643,0 ) ) -(183,29:23176247,37634225:501378,78643,0 -(183,29:23340101,37634225:173670,78643,0 +(182,29:22674869,36978865:501378,78643,0 +(182,29:22838723,36978865:173670,78643,0 ) ) -(183,29:23677625,37634225:501378,78643,0 -(183,29:23841479,37634225:173670,78643,0 +(182,29:23176247,36978865:501378,78643,0 +(182,29:23340101,36978865:173670,78643,0 ) ) -(183,29:24179003,37634225:501378,78643,0 -(183,29:24342857,37634225:173670,78643,0 +(182,29:23677625,36978865:501378,78643,0 +(182,29:23841479,36978865:173670,78643,0 ) ) -(183,29:24680381,37634225:501378,78643,0 -(183,29:24844235,37634225:173670,78643,0 +(182,29:24179003,36978865:501378,78643,0 +(182,29:24342857,36978865:173670,78643,0 ) ) -(183,29:25181759,37634225:501378,78643,0 -(183,29:25345613,37634225:173670,78643,0 +(182,29:24680381,36978865:501378,78643,0 +(182,29:24844235,36978865:173670,78643,0 ) ) -(183,29:25683137,37634225:501378,78643,0 -(183,29:25846991,37634225:173670,78643,0 +(182,29:25181759,36978865:501378,78643,0 +(182,29:25345613,36978865:173670,78643,0 ) ) -(183,29:26184515,37634225:501378,78643,0 -(183,29:26348369,37634225:173670,78643,0 +(182,29:25683137,36978865:501378,78643,0 +(182,29:25846991,36978865:173670,78643,0 ) ) -(183,29:26685893,37634225:501378,78643,0 -(183,29:26849747,37634225:173670,78643,0 +(182,29:26184515,36978865:501378,78643,0 +(182,29:26348369,36978865:173670,78643,0 ) ) -(183,29:27187271,37634225:501378,78643,0 -(183,29:27351125,37634225:173670,78643,0 +(182,29:26685893,36978865:501378,78643,0 +(182,29:26849747,36978865:173670,78643,0 ) ) -(183,29:27688649,37634225:501378,78643,0 -(183,29:27852503,37634225:173670,78643,0 +(182,29:27187271,36978865:501378,78643,0 +(182,29:27351125,36978865:173670,78643,0 ) ) -(183,29:28190027,37634225:501378,78643,0 -(183,29:28353881,37634225:173670,78643,0 +(182,29:27688649,36978865:501378,78643,0 +(182,29:27852503,36978865:173670,78643,0 ) ) -(183,29:28691405,37634225:501378,78643,0 -(183,29:28855259,37634225:173670,78643,0 +(182,29:28190027,36978865:501378,78643,0 +(182,29:28353881,36978865:173670,78643,0 ) ) -(183,29:29192783,37634225:501378,78643,0 -(183,29:29356637,37634225:173670,78643,0 +(182,29:28691405,36978865:501378,78643,0 +(182,29:28855259,36978865:173670,78643,0 ) ) -(183,29:29694161,37634225:501378,78643,0 -(183,29:29858015,37634225:173670,78643,0 +(182,29:29192783,36978865:501378,78643,0 +(182,29:29356637,36978865:173670,78643,0 ) ) -(183,29:30195539,37634225:501378,78643,0 -(183,29:30359393,37634225:173670,78643,0 +(182,29:29694161,36978865:501378,78643,0 +(182,29:29858015,36978865:173670,78643,0 ) ) -(183,29:30696917,37634225:501378,78643,0 -(183,29:30860771,37634225:173670,78643,0 +(182,29:30195539,36978865:501378,78643,0 +(182,29:30359393,36978865:173670,78643,0 ) ) -(183,29:31239539,37634225:1343490,481690,0 -k183,29:31586882,37634225:347343 -g183,29:31786111,37634225 +(182,29:30696917,36978865:501378,78643,0 +(182,29:30860771,36978865:173670,78643,0 ) -g183,29:30911859,37634225 -g183,29:32583029,37634225 ) -(183,30:6630773,38475713:25952256,513147,134348 -g183,30:9121143,38475713 -h183,30:9121143,38475713:983040,0,0 -h183,30:10104183,38475713:0,0,0 -g183,30:7613813,38475713 -(183,30:7613813,38475713:1507330,485622,11795 -k183,30:9121143,38475713:536742 +(182,29:31239539,36978865:1343490,485622,11795 +k182,29:31586882,36978865:347343 +g182,29:31786111,36978865 ) -g183,30:10517059,38475713 -g183,30:12846208,38475713 -g183,30:14236882,38475713 -g183,30:16338621,38475713 -g183,30:17197142,38475713 -g183,30:19686199,38475713 -g183,30:19686199,38475713 -(183,30:20167979,38475713:501378,78643,0 -$183,30:20167979,38475713 -(183,30:20331833,38475713:173670,78643,0 +g182,29:30911859,36978865 +g182,29:32583029,36978865 ) -$183,30:20669357,38475713 +(182,30:6630773,37820353:25952256,505283,134348 +g182,30:9121143,37820353 +h182,30:9121143,37820353:983040,0,0 +h182,30:10104183,37820353:0,0,0 +g182,30:7613813,37820353 +(182,30:7613813,37820353:1507330,485622,11795 +k182,30:9121143,37820353:536742 ) -(183,30:20669357,38475713:501378,78643,0 -(183,30:20833211,38475713:173670,78643,0 +g182,30:11690154,37820353 +g182,30:14291933,37820353 +g182,30:14291933,37820353 +(182,30:14652821,37820353:501378,78643,0 +$182,30:14652821,37820353 +(182,30:14816675,37820353:173670,78643,0 ) +$182,30:15154199,37820353 ) -(183,30:21170735,38475713:501378,78643,0 -(183,30:21334589,38475713:173670,78643,0 +(182,30:15154199,37820353:501378,78643,0 +(182,30:15318053,37820353:173670,78643,0 ) ) -(183,30:21672113,38475713:501378,78643,0 -(183,30:21835967,38475713:173670,78643,0 +(182,30:15655577,37820353:501378,78643,0 +(182,30:15819431,37820353:173670,78643,0 ) ) -(183,30:22173491,38475713:501378,78643,0 -(183,30:22337345,38475713:173670,78643,0 +(182,30:16156955,37820353:501378,78643,0 +(182,30:16320809,37820353:173670,78643,0 ) ) -(183,30:22674869,38475713:501378,78643,0 -(183,30:22838723,38475713:173670,78643,0 +(182,30:16658333,37820353:501378,78643,0 +(182,30:16822187,37820353:173670,78643,0 ) ) -(183,30:23176247,38475713:501378,78643,0 -(183,30:23340101,38475713:173670,78643,0 +(182,30:17159711,37820353:501378,78643,0 +(182,30:17323565,37820353:173670,78643,0 ) ) -(183,30:23677625,38475713:501378,78643,0 -(183,30:23841479,38475713:173670,78643,0 +(182,30:17661089,37820353:501378,78643,0 +(182,30:17824943,37820353:173670,78643,0 ) ) -(183,30:24179003,38475713:501378,78643,0 -(183,30:24342857,38475713:173670,78643,0 +(182,30:18162467,37820353:501378,78643,0 +(182,30:18326321,37820353:173670,78643,0 ) ) -(183,30:24680381,38475713:501378,78643,0 -(183,30:24844235,38475713:173670,78643,0 +(182,30:18663845,37820353:501378,78643,0 +(182,30:18827699,37820353:173670,78643,0 ) ) -(183,30:25181759,38475713:501378,78643,0 -(183,30:25345613,38475713:173670,78643,0 +(182,30:19165223,37820353:501378,78643,0 +(182,30:19329077,37820353:173670,78643,0 ) ) -(183,30:25683137,38475713:501378,78643,0 -(183,30:25846991,38475713:173670,78643,0 +(182,30:19666601,37820353:501378,78643,0 +(182,30:19830455,37820353:173670,78643,0 ) ) -(183,30:26184515,38475713:501378,78643,0 -(183,30:26348369,38475713:173670,78643,0 +(182,30:20167979,37820353:501378,78643,0 +(182,30:20331833,37820353:173670,78643,0 ) ) -(183,30:26685893,38475713:501378,78643,0 -(183,30:26849747,38475713:173670,78643,0 +(182,30:20669357,37820353:501378,78643,0 +(182,30:20833211,37820353:173670,78643,0 ) ) -(183,30:27187271,38475713:501378,78643,0 -(183,30:27351125,38475713:173670,78643,0 +(182,30:21170735,37820353:501378,78643,0 +(182,30:21334589,37820353:173670,78643,0 ) ) -(183,30:27688649,38475713:501378,78643,0 -(183,30:27852503,38475713:173670,78643,0 +(182,30:21672113,37820353:501378,78643,0 +(182,30:21835967,37820353:173670,78643,0 ) ) -(183,30:28190027,38475713:501378,78643,0 -(183,30:28353881,38475713:173670,78643,0 +(182,30:22173491,37820353:501378,78643,0 +(182,30:22337345,37820353:173670,78643,0 ) ) -(183,30:28691405,38475713:501378,78643,0 -(183,30:28855259,38475713:173670,78643,0 +(182,30:22674869,37820353:501378,78643,0 +(182,30:22838723,37820353:173670,78643,0 ) ) -(183,30:29192783,38475713:501378,78643,0 -(183,30:29356637,38475713:173670,78643,0 +(182,30:23176247,37820353:501378,78643,0 +(182,30:23340101,37820353:173670,78643,0 ) ) -(183,30:29694161,38475713:501378,78643,0 -(183,30:29858015,38475713:173670,78643,0 +(182,30:23677625,37820353:501378,78643,0 +(182,30:23841479,37820353:173670,78643,0 ) ) -(183,30:30195539,38475713:501378,78643,0 -(183,30:30359393,38475713:173670,78643,0 +(182,30:24179003,37820353:501378,78643,0 +(182,30:24342857,37820353:173670,78643,0 ) ) -(183,30:30696917,38475713:501378,78643,0 -(183,30:30860771,38475713:173670,78643,0 +(182,30:24680381,37820353:501378,78643,0 +(182,30:24844235,37820353:173670,78643,0 ) ) -(183,30:31239539,38475713:1343490,485622,0 -k183,30:31586882,38475713:347343 -g183,30:31786111,38475713 +(182,30:25181759,37820353:501378,78643,0 +(182,30:25345613,37820353:173670,78643,0 ) -g183,30:30911859,38475713 -g183,30:32583029,38475713 ) -(183,31:6630773,39317201:25952256,505283,126483 -g183,31:9121143,39317201 -h183,31:9121143,39317201:983040,0,0 -h183,31:10104183,39317201:0,0,0 -g183,31:7613813,39317201 -(183,31:7613813,39317201:1507330,485622,11795 -k183,31:9121143,39317201:536742 +(182,30:25683137,37820353:501378,78643,0 +(182,30:25846991,37820353:173670,78643,0 ) -g183,31:11231402,39317201 -g183,31:15237617,39317201 -g183,31:15237617,39317201 -(183,31:15655577,39317201:501378,78643,0 -$183,31:15655577,39317201 -(183,31:15819431,39317201:173670,78643,0 ) -$183,31:16156955,39317201 +(182,30:26184515,37820353:501378,78643,0 +(182,30:26348369,37820353:173670,78643,0 ) -(183,31:16156955,39317201:501378,78643,0 -(183,31:16320809,39317201:173670,78643,0 ) +(182,30:26685893,37820353:501378,78643,0 +(182,30:26849747,37820353:173670,78643,0 ) -(183,31:16658333,39317201:501378,78643,0 -(183,31:16822187,39317201:173670,78643,0 ) +(182,30:27187271,37820353:501378,78643,0 +(182,30:27351125,37820353:173670,78643,0 ) -(183,31:17159711,39317201:501378,78643,0 -(183,31:17323565,39317201:173670,78643,0 ) +(182,30:27688649,37820353:501378,78643,0 +(182,30:27852503,37820353:173670,78643,0 ) -(183,31:17661089,39317201:501378,78643,0 -(183,31:17824943,39317201:173670,78643,0 ) +(182,30:28190027,37820353:501378,78643,0 +(182,30:28353881,37820353:173670,78643,0 ) -(183,31:18162467,39317201:501378,78643,0 -(183,31:18326321,39317201:173670,78643,0 ) +(182,30:28691405,37820353:501378,78643,0 +(182,30:28855259,37820353:173670,78643,0 ) -(183,31:18663845,39317201:501378,78643,0 -(183,31:18827699,39317201:173670,78643,0 ) +(182,30:29192783,37820353:501378,78643,0 +(182,30:29356637,37820353:173670,78643,0 ) -(183,31:19165223,39317201:501378,78643,0 -(183,31:19329077,39317201:173670,78643,0 ) +(182,30:29694161,37820353:501378,78643,0 +(182,30:29858015,37820353:173670,78643,0 ) -(183,31:19666601,39317201:501378,78643,0 -(183,31:19830455,39317201:173670,78643,0 ) +(182,30:30195539,37820353:501378,78643,0 +(182,30:30359393,37820353:173670,78643,0 ) -(183,31:20167979,39317201:501378,78643,0 -(183,31:20331833,39317201:173670,78643,0 ) +(182,30:30696917,37820353:501378,78643,0 +(182,30:30860771,37820353:173670,78643,0 ) -(183,31:20669357,39317201:501378,78643,0 -(183,31:20833211,39317201:173670,78643,0 ) +(182,30:31239539,37820353:1343490,485622,11795 +k182,30:31586882,37820353:347343 +g182,30:31786111,37820353 ) -(183,31:21170735,39317201:501378,78643,0 -(183,31:21334589,39317201:173670,78643,0 +g182,30:30911859,37820353 +g182,30:32583029,37820353 ) +(182,31:6630773,39317201:25952256,505283,134348 +g182,31:7613813,39317201 +h182,31:7613813,39317201:0,0,0 +g182,31:6630773,39317201 +k182,31:21048037,39317201:10191502 +k182,31:31239539,39317201:10191502 +(182,31:31239539,39317201:1343490,485622,11795 +k182,31:31766450,39317201:526911 ) -(183,31:21672113,39317201:501378,78643,0 -(183,31:21835967,39317201:173670,78643,0 +g182,31:31239539,39317201 +g182,31:32583029,39317201 ) +(182,32:6630773,40814049:25952256,505283,11795 +g182,32:7613813,40814049 +h182,32:7613813,40814049:0,0,0 +g182,32:6630773,40814049 +g182,32:9374110,40814049 +k182,32:21224656,40814049:10014883 +k182,32:31239539,40814049:10014883 +(182,32:31239539,40814049:1343490,479724,0 +k182,32:31766450,40814049:526911 ) -(183,31:22173491,39317201:501378,78643,0 -(183,31:22337345,39317201:173670,78643,0 +g182,32:31239539,40814049 +g182,32:32583029,40814049 ) +(182,33:6630773,42310897:25952256,513147,134348 +g182,33:7613813,42310897 +h182,33:7613813,42310897:0,0,0 +g182,33:6630773,42310897 +g182,33:8686637,42310897 +g182,33:9580548,42310897 +g182,33:10237218,42310897 +g182,33:12580130,42310897 +g182,33:13632638,42310897 +k182,33:23871327,42310897:7368212 +k182,33:31239539,42310897:7368212 +(182,33:31239539,42310897:1343490,485622,11795 +k182,33:31766450,42310897:526911 ) -(183,31:22674869,39317201:501378,78643,0 -(183,31:22838723,39317201:173670,78643,0 +g182,33:31239539,42310897 +g182,33:32583029,42310897 ) +(1,126:6630773,43807745:25952256,513147,126483 +g1,126:7613813,43807745 +h1,126:7613813,43807745:0,0,0 +g1,126:6630773,43807745 +g1,126:10399748,43807745 +g1,126:12439883,43807745 +g1,126:13333794,43807745 +g1,126:13990464,43807745 +k1,126:23684222,43807745:7555318 +k1,126:31239539,43807745:7555317 +(1,126:31239539,43807745:1343490,479724,11795 +k1,126:31766450,43807745:526911 ) -(183,31:23176247,39317201:501378,78643,0 -(183,31:23340101,39317201:173670,78643,0 +g1,126:31239539,43807745 +g1,126:32583029,43807745 ) +] +(1,127:32583029,45706769:0,0,0 +g1,127:32583029,45706769 ) -(183,31:23677625,39317201:501378,78643,0 -(183,31:23841479,39317201:173670,78643,0 ) +] +(1,127:6630773,47279633:25952256,347341,3931 +(1,127:6630773,47279633:25952256,347341,3931 +(1,127:6630773,47279633:0,0,0 +v1,127:6630773,47279633:0,0,0 ) -(183,31:24179003,39317201:501378,78643,0 -(183,31:24342857,39317201:173670,78643,0 +g1,127:6830002,47279633 +k1,127:32225858,47279633:25395856 ) ) -(183,31:24680381,39317201:501378,78643,0 -(183,31:24844235,39317201:173670,78643,0 +] +(1,127:4262630,4025873:0,0,0 +[1,127:-473656,4025873:0,0,0 +(1,127:-473656,-710413:0,0,0 +(1,127:-473656,-710413:0,0,0 +g1,127:-473656,-710413 ) +g1,127:-473656,-710413 ) -(183,31:25181759,39317201:501378,78643,0 -(183,31:25345613,39317201:173670,78643,0 +] ) +] +!79432 +}2 +!10 +{3 +[1,127:4262630,47279633:28320399,43253760,0 +(1,127:4262630,4025873:0,0,0 +[1,127:-473656,4025873:0,0,0 +(1,127:-473656,-710413:0,0,0 +(1,127:-473656,-644877:0,0,0 +k1,127:-473656,-644877:-65536 ) -(183,31:25683137,39317201:501378,78643,0 -(183,31:25846991,39317201:173670,78643,0 +(1,127:-473656,4736287:0,0,0 +k1,127:-473656,4736287:5209943 ) +g1,127:-473656,-710413 ) -(183,31:26184515,39317201:501378,78643,0 -(183,31:26348369,39317201:173670,78643,0 +] ) +[1,127:6630773,47279633:25952256,43253760,0 +[1,127:6630773,4812305:25952256,786432,0 +(1,127:6630773,4812305:25952256,0,0 +(1,127:6630773,4812305:25952256,0,0 +g1,127:3078558,4812305 +[1,127:3078558,4812305:0,0,0 +(1,127:3078558,2439708:0,1703936,0 +k1,127:1358238,2439708:-1720320 +(1,127:1358238,2439708:1720320,1703936,0 +(1,127:1358238,2439708:1179648,16384,0 +r1,127:2537886,2439708:1179648,16384,0 ) -(183,31:26685893,39317201:501378,78643,0 -(183,31:26849747,39317201:173670,78643,0 +g1,127:3062174,2439708 +(1,127:3062174,2439708:16384,1703936,0 +[1,127:3062174,2439708:25952256,1703936,0 +(1,127:3062174,1915420:25952256,1179648,0 +(1,127:3062174,1915420:16384,1179648,0 +r1,127:3078558,1915420:16384,1179648,0 ) +k1,127:29014430,1915420:25935872 +g1,127:29014430,1915420 ) -(183,31:27187271,39317201:501378,78643,0 -(183,31:27351125,39317201:173670,78643,0 +] ) ) -(183,31:27688649,39317201:501378,78643,0 -(183,31:27852503,39317201:173670,78643,0 ) +] +[1,127:3078558,4812305:0,0,0 +(1,127:3078558,2439708:0,1703936,0 +g1,127:29030814,2439708 +g1,127:36135244,2439708 +(1,127:36135244,2439708:1720320,1703936,0 +(1,127:36135244,2439708:16384,1703936,0 +[1,127:36135244,2439708:25952256,1703936,0 +(1,127:36135244,1915420:25952256,1179648,0 +(1,127:36135244,1915420:16384,1179648,0 +r1,127:36151628,1915420:16384,1179648,0 ) -(183,31:28190027,39317201:501378,78643,0 -(183,31:28353881,39317201:173670,78643,0 +k1,127:62087500,1915420:25935872 +g1,127:62087500,1915420 ) +] ) -(183,31:28691405,39317201:501378,78643,0 -(183,31:28855259,39317201:173670,78643,0 +g1,127:36675916,2439708 +(1,127:36675916,2439708:1179648,16384,0 +r1,127:37855564,2439708:1179648,16384,0 ) ) -(183,31:29192783,39317201:501378,78643,0 -(183,31:29356637,39317201:173670,78643,0 +k1,127:3078556,2439708:-34777008 ) +] +[1,127:3078558,4812305:0,0,0 +(1,127:3078558,49800853:0,16384,2228224 +k1,127:1358238,49800853:-1720320 +(1,127:1358238,49800853:1720320,16384,2228224 +(1,127:1358238,49800853:1179648,16384,0 +r1,127:2537886,49800853:1179648,16384,0 ) -(183,31:29694161,39317201:501378,78643,0 -(183,31:29858015,39317201:173670,78643,0 +g1,127:3062174,49800853 +(1,127:3062174,52029077:16384,1703936,0 +[1,127:3062174,52029077:25952256,1703936,0 +(1,127:3062174,51504789:25952256,1179648,0 +(1,127:3062174,51504789:16384,1179648,0 +r1,127:3078558,51504789:16384,1179648,0 ) +k1,127:29014430,51504789:25935872 +g1,127:29014430,51504789 ) -(183,31:30195539,39317201:501378,78643,0 -(183,31:30359393,39317201:173670,78643,0 +] ) ) -(183,31:30696917,39317201:501378,78643,0 -(183,31:30860771,39317201:173670,78643,0 ) +] +[1,127:3078558,4812305:0,0,0 +(1,127:3078558,49800853:0,16384,2228224 +g1,127:29030814,49800853 +g1,127:36135244,49800853 +(1,127:36135244,49800853:1720320,16384,2228224 +(1,127:36135244,52029077:16384,1703936,0 +[1,127:36135244,52029077:25952256,1703936,0 +(1,127:36135244,51504789:25952256,1179648,0 +(1,127:36135244,51504789:16384,1179648,0 +r1,127:36151628,51504789:16384,1179648,0 ) -(183,31:31239539,39317201:1343490,481690,0 -k183,31:31586882,39317201:347343 -g183,31:31786111,39317201 +k1,127:62087500,51504789:25935872 +g1,127:62087500,51504789 ) -g183,31:30911859,39317201 -g183,31:32583029,39317201 +] ) -(183,32:6630773,40158689:25952256,505283,126483 -g183,32:9121143,40158689 -h183,32:9121143,40158689:983040,0,0 -h183,32:10104183,40158689:0,0,0 -g183,32:7613813,40158689 -(183,32:7613813,40158689:1507330,485622,11795 -k183,32:9121143,40158689:138283 +g1,127:36675916,49800853 +(1,127:36675916,49800853:1179648,16384,0 +r1,127:37855564,49800853:1179648,16384,0 ) -g183,32:11399174,40158689 -g183,32:15854311,40158689 -g183,32:15854311,40158689 -(183,32:16156955,40158689:501378,78643,0 -$183,32:16156955,40158689 -(183,32:16320809,40158689:173670,78643,0 ) -$183,32:16658333,40158689 +k1,127:3078556,49800853:-34777008 ) -(183,32:16658333,40158689:501378,78643,0 -(183,32:16822187,40158689:173670,78643,0 +] +g1,127:6630773,4812305 ) ) -(183,32:17159711,40158689:501378,78643,0 -(183,32:17323565,40158689:173670,78643,0 +] +[1,127:6630773,45706769:0,40108032,0 +(1,127:6630773,45706769:0,40108032,0 +(1,127:6630773,45706769:0,0,0 +g1,127:6630773,45706769 ) +[1,127:6630773,45706769:0,40108032,0 +h1,127:6630773,6254097:0,0,0 +] +(1,127:6630773,45706769:0,0,0 +g1,127:6630773,45706769 ) -(183,32:17661089,40158689:501378,78643,0 -(183,32:17824943,40158689:173670,78643,0 ) +] +(1,127:6630773,47279633:25952256,0,0 +h1,127:6630773,47279633:25952256,0,0 ) -(183,32:18162467,40158689:501378,78643,0 -(183,32:18326321,40158689:173670,78643,0 +] +(1,127:4262630,4025873:0,0,0 +[1,127:-473656,4025873:0,0,0 +(1,127:-473656,-710413:0,0,0 +(1,127:-473656,-710413:0,0,0 +g1,127:-473656,-710413 ) +g1,127:-473656,-710413 ) -(183,32:18663845,40158689:501378,78643,0 -(183,32:18827699,40158689:173670,78643,0 +] ) +] +!3215 +}3 +Input:183:C:\Users\Aphalo\Documents\Own_manuscripts\Books\learnr-book-crc-2ed\using-r-main-crc.lof +!108 +{4 +[1,136:4262630,47279633:28320399,43253760,3931 +(1,136:4262630,4025873:0,0,0 +[1,136:-473656,4025873:0,0,0 +(1,136:-473656,-710413:0,0,0 +(1,136:-473656,-644877:0,0,0 +k1,136:-473656,-644877:-65536 ) -(183,32:19165223,40158689:501378,78643,0 -(183,32:19329077,40158689:173670,78643,0 +(1,136:-473656,4736287:0,0,0 +k1,136:-473656,4736287:5209943 ) +g1,136:-473656,-710413 ) -(183,32:19666601,40158689:501378,78643,0 -(183,32:19830455,40158689:173670,78643,0 +] ) +[1,136:6630773,47279633:25952256,43253760,3931 +[1,136:6630773,4812305:25952256,786432,0 +(1,136:6630773,4812305:25952256,0,0 +(1,136:6630773,4812305:25952256,0,0 +g1,136:3078558,4812305 +[1,136:3078558,4812305:0,0,0 +(1,136:3078558,2439708:0,1703936,0 +k1,136:1358238,2439708:-1720320 +(1,127:1358238,2439708:1720320,1703936,0 +(1,127:1358238,2439708:1179648,16384,0 +r1,136:2537886,2439708:1179648,16384,0 ) -(183,32:20167979,40158689:501378,78643,0 -(183,32:20331833,40158689:173670,78643,0 +g1,127:3062174,2439708 +(1,127:3062174,2439708:16384,1703936,0 +[1,127:3062174,2439708:25952256,1703936,0 +(1,127:3062174,1915420:25952256,1179648,0 +(1,127:3062174,1915420:16384,1179648,0 +r1,136:3078558,1915420:16384,1179648,0 ) +k1,127:29014430,1915420:25935872 +g1,127:29014430,1915420 ) -(183,32:20669357,40158689:501378,78643,0 -(183,32:20833211,40158689:173670,78643,0 +] ) ) -(183,32:21170735,40158689:501378,78643,0 -(183,32:21334589,40158689:173670,78643,0 ) +] +[1,136:3078558,4812305:0,0,0 +(1,136:3078558,2439708:0,1703936,0 +g1,136:29030814,2439708 +g1,136:36135244,2439708 +(1,127:36135244,2439708:1720320,1703936,0 +(1,127:36135244,2439708:16384,1703936,0 +[1,127:36135244,2439708:25952256,1703936,0 +(1,127:36135244,1915420:25952256,1179648,0 +(1,127:36135244,1915420:16384,1179648,0 +r1,136:36151628,1915420:16384,1179648,0 ) -(183,32:21672113,40158689:501378,78643,0 -(183,32:21835967,40158689:173670,78643,0 +k1,127:62087500,1915420:25935872 +g1,127:62087500,1915420 ) +] ) -(183,32:22173491,40158689:501378,78643,0 -(183,32:22337345,40158689:173670,78643,0 +g1,127:36675916,2439708 +(1,127:36675916,2439708:1179648,16384,0 +r1,136:37855564,2439708:1179648,16384,0 ) ) -(183,32:22674869,40158689:501378,78643,0 -(183,32:22838723,40158689:173670,78643,0 +k1,136:3078556,2439708:-34777008 ) +] +[1,136:3078558,4812305:0,0,0 +(1,136:3078558,49800853:0,16384,2228224 +k1,136:1358238,49800853:-1720320 +(1,127:1358238,49800853:1720320,16384,2228224 +(1,127:1358238,49800853:1179648,16384,0 +r1,136:2537886,49800853:1179648,16384,0 ) -(183,32:23176247,40158689:501378,78643,0 -(183,32:23340101,40158689:173670,78643,0 +g1,127:3062174,49800853 +(1,127:3062174,52029077:16384,1703936,0 +[1,127:3062174,52029077:25952256,1703936,0 +(1,127:3062174,51504789:25952256,1179648,0 +(1,127:3062174,51504789:16384,1179648,0 +r1,136:3078558,51504789:16384,1179648,0 ) +k1,127:29014430,51504789:25935872 +g1,127:29014430,51504789 ) -(183,32:23677625,40158689:501378,78643,0 -(183,32:23841479,40158689:173670,78643,0 +] ) ) -(183,32:24179003,40158689:501378,78643,0 -(183,32:24342857,40158689:173670,78643,0 ) +] +[1,136:3078558,4812305:0,0,0 +(1,136:3078558,49800853:0,16384,2228224 +g1,136:29030814,49800853 +g1,136:36135244,49800853 +(1,127:36135244,49800853:1720320,16384,2228224 +(1,127:36135244,52029077:16384,1703936,0 +[1,127:36135244,52029077:25952256,1703936,0 +(1,127:36135244,51504789:25952256,1179648,0 +(1,127:36135244,51504789:16384,1179648,0 +r1,136:36151628,51504789:16384,1179648,0 ) -(183,32:24680381,40158689:501378,78643,0 -(183,32:24844235,40158689:173670,78643,0 +k1,127:62087500,51504789:25935872 +g1,127:62087500,51504789 ) +] ) -(183,32:25181759,40158689:501378,78643,0 -(183,32:25345613,40158689:173670,78643,0 +g1,127:36675916,49800853 +(1,127:36675916,49800853:1179648,16384,0 +r1,136:37855564,49800853:1179648,16384,0 ) ) -(183,32:25683137,40158689:501378,78643,0 -(183,32:25846991,40158689:173670,78643,0 +k1,136:3078556,49800853:-34777008 ) +] +g1,136:6630773,4812305 ) -(183,32:26184515,40158689:501378,78643,0 -(183,32:26348369,40158689:173670,78643,0 ) +] +[1,136:6630773,45706769:25952256,40108032,0 +(1,136:6630773,45706769:25952256,40108032,0 +(1,136:6630773,45706769:0,0,0 +g1,136:6630773,45706769 ) -(183,32:26685893,40158689:501378,78643,0 -(183,32:26849747,40158689:173670,78643,0 +[1,136:6630773,45706769:25952256,40108032,0 +[1,127:6630773,12106481:25952256,6507744,0 +(1,127:6630773,7073297:25952256,32768,229376 +(1,127:6630773,7073297:0,32768,229376 +(1,127:6630773,7073297:5505024,32768,229376 +r1,136:12135797,7073297:5505024,262144,229376 ) +k1,127:6630773,7073297:-5505024 ) -(183,32:27187271,40158689:501378,78643,0 -(183,32:27351125,40158689:173670,78643,0 ) +(1,127:6630773,8803457:25952256,923664,241827 +h1,127:6630773,8803457:0,0,0 +g1,127:9103315,8803457 +g1,127:10667528,8803457 +k1,127:23823552,8803457:8759476 +k1,127:32583028,8803457:8759476 ) -(183,32:27688649,40158689:501378,78643,0 -(183,32:27852503,40158689:173670,78643,0 +(1,127:6630773,9419505:25952256,32768,0 +(1,127:6630773,9419505:5505024,32768,0 +r1,136:12135797,9419505:5505024,32768,0 ) +k1,127:22359413,9419505:10223616 +k1,127:32583029,9419505:10223616 ) -(183,32:28190027,40158689:501378,78643,0 -(183,32:28353881,40158689:173670,78643,0 +] +] +(1,136:32583029,45706769:0,0,0 +g1,136:32583029,45706769 ) ) -(183,32:28691405,40158689:501378,78643,0 -(183,32:28855259,40158689:173670,78643,0 +] +(1,136:6630773,47279633:25952256,473825,3931 +(1,136:6630773,47279633:25952256,473825,3931 +(1,136:6630773,47279633:0,0,0 +v1,136:6630773,47279633:0,0,0 ) +g1,136:6830002,47279633 +k1,136:31823466,47279633:24993464 ) -(183,32:29192783,40158689:501378,78643,0 -(183,32:29356637,40158689:173670,78643,0 ) +] +(1,136:4262630,4025873:0,0,0 +[1,136:-473656,4025873:0,0,0 +(1,136:-473656,-710413:0,0,0 +(1,136:-473656,-710413:0,0,0 +g1,136:-473656,-710413 ) -(183,32:29694161,40158689:501378,78643,0 -(183,32:29858015,40158689:173670,78643,0 +g1,136:-473656,-710413 ) +] ) -(183,32:30195539,40158689:501378,78643,0 -(183,32:30359393,40158689:173670,78643,0 +] +!3987 +}4 +!9 +{5 +[1,136:4262630,47279633:28320399,43253760,0 +(1,136:4262630,4025873:0,0,0 +[1,136:-473656,4025873:0,0,0 +(1,136:-473656,-710413:0,0,0 +(1,136:-473656,-644877:0,0,0 +k1,136:-473656,-644877:-65536 ) +(1,136:-473656,4736287:0,0,0 +k1,136:-473656,4736287:5209943 ) -(183,32:30696917,40158689:501378,78643,0 -(183,32:30860771,40158689:173670,78643,0 +g1,136:-473656,-710413 ) +] ) -(183,32:31239539,40158689:1343490,481690,0 -k183,32:31586882,40158689:347343 -g183,32:31786111,40158689 +[1,136:6630773,47279633:25952256,43253760,0 +[1,136:6630773,4812305:25952256,786432,0 +(1,136:6630773,4812305:25952256,0,0 +(1,136:6630773,4812305:25952256,0,0 +g1,136:3078558,4812305 +[1,136:3078558,4812305:0,0,0 +(1,136:3078558,2439708:0,1703936,0 +k1,136:1358238,2439708:-1720320 +(1,136:1358238,2439708:1720320,1703936,0 +(1,136:1358238,2439708:1179648,16384,0 +r1,136:2537886,2439708:1179648,16384,0 ) -g183,32:30911859,40158689 -g183,32:32583029,40158689 +g1,136:3062174,2439708 +(1,136:3062174,2439708:16384,1703936,0 +[1,136:3062174,2439708:25952256,1703936,0 +(1,136:3062174,1915420:25952256,1179648,0 +(1,136:3062174,1915420:16384,1179648,0 +r1,136:3078558,1915420:16384,1179648,0 ) -(183,33:6630773,41000177:25952256,505283,126483 -g183,33:9121143,41000177 -h183,33:9121143,41000177:983040,0,0 -h183,33:10104183,41000177:0,0,0 -g183,33:7613813,41000177 -(183,33:7613813,41000177:1507330,485622,0 -k183,33:9121143,41000177:138283 +k1,136:29014430,1915420:25935872 +g1,136:29014430,1915420 ) -g183,33:11997518,41000177 -g183,33:13388192,41000177 -g183,33:19191405,41000177 -g183,33:21370477,41000177 -g183,33:21370477,41000177 -(183,33:21672113,41000177:501378,78643,0 -$183,33:21672113,41000177 -(183,33:21835967,41000177:173670,78643,0 +] ) -$183,33:22173491,41000177 ) -(183,33:22173491,41000177:501378,78643,0 -(183,33:22337345,41000177:173670,78643,0 ) +] +[1,136:3078558,4812305:0,0,0 +(1,136:3078558,2439708:0,1703936,0 +g1,136:29030814,2439708 +g1,136:36135244,2439708 +(1,136:36135244,2439708:1720320,1703936,0 +(1,136:36135244,2439708:16384,1703936,0 +[1,136:36135244,2439708:25952256,1703936,0 +(1,136:36135244,1915420:25952256,1179648,0 +(1,136:36135244,1915420:16384,1179648,0 +r1,136:36151628,1915420:16384,1179648,0 ) -(183,33:22674869,41000177:501378,78643,0 -(183,33:22838723,41000177:173670,78643,0 +k1,136:62087500,1915420:25935872 +g1,136:62087500,1915420 ) +] ) -(183,33:23176247,41000177:501378,78643,0 -(183,33:23340101,41000177:173670,78643,0 +g1,136:36675916,2439708 +(1,136:36675916,2439708:1179648,16384,0 +r1,136:37855564,2439708:1179648,16384,0 ) ) -(183,33:23677625,41000177:501378,78643,0 -(183,33:23841479,41000177:173670,78643,0 +k1,136:3078556,2439708:-34777008 ) +] +[1,136:3078558,4812305:0,0,0 +(1,136:3078558,49800853:0,16384,2228224 +k1,136:1358238,49800853:-1720320 +(1,136:1358238,49800853:1720320,16384,2228224 +(1,136:1358238,49800853:1179648,16384,0 +r1,136:2537886,49800853:1179648,16384,0 ) -(183,33:24179003,41000177:501378,78643,0 -(183,33:24342857,41000177:173670,78643,0 +g1,136:3062174,49800853 +(1,136:3062174,52029077:16384,1703936,0 +[1,136:3062174,52029077:25952256,1703936,0 +(1,136:3062174,51504789:25952256,1179648,0 +(1,136:3062174,51504789:16384,1179648,0 +r1,136:3078558,51504789:16384,1179648,0 ) +k1,136:29014430,51504789:25935872 +g1,136:29014430,51504789 ) -(183,33:24680381,41000177:501378,78643,0 -(183,33:24844235,41000177:173670,78643,0 +] ) ) -(183,33:25181759,41000177:501378,78643,0 -(183,33:25345613,41000177:173670,78643,0 ) +] +[1,136:3078558,4812305:0,0,0 +(1,136:3078558,49800853:0,16384,2228224 +g1,136:29030814,49800853 +g1,136:36135244,49800853 +(1,136:36135244,49800853:1720320,16384,2228224 +(1,136:36135244,52029077:16384,1703936,0 +[1,136:36135244,52029077:25952256,1703936,0 +(1,136:36135244,51504789:25952256,1179648,0 +(1,136:36135244,51504789:16384,1179648,0 +r1,136:36151628,51504789:16384,1179648,0 ) -(183,33:25683137,41000177:501378,78643,0 -(183,33:25846991,41000177:173670,78643,0 +k1,136:62087500,51504789:25935872 +g1,136:62087500,51504789 ) +] ) -(183,33:26184515,41000177:501378,78643,0 -(183,33:26348369,41000177:173670,78643,0 +g1,136:36675916,49800853 +(1,136:36675916,49800853:1179648,16384,0 +r1,136:37855564,49800853:1179648,16384,0 ) ) -(183,33:26685893,41000177:501378,78643,0 -(183,33:26849747,41000177:173670,78643,0 +k1,136:3078556,49800853:-34777008 ) +] +g1,136:6630773,4812305 ) -(183,33:27187271,41000177:501378,78643,0 -(183,33:27351125,41000177:173670,78643,0 ) +] +[1,136:6630773,45706769:0,40108032,0 +(1,136:6630773,45706769:0,40108032,0 +(1,136:6630773,45706769:0,0,0 +g1,136:6630773,45706769 ) -(183,33:27688649,41000177:501378,78643,0 -(183,33:27852503,41000177:173670,78643,0 +[1,136:6630773,45706769:0,40108032,0 +h1,136:6630773,6254097:0,0,0 +] +(1,136:6630773,45706769:0,0,0 +g1,136:6630773,45706769 ) ) -(183,33:28190027,41000177:501378,78643,0 -(183,33:28353881,41000177:173670,78643,0 +] +(1,136:6630773,47279633:25952256,0,0 +h1,136:6630773,47279633:25952256,0,0 ) +] +(1,136:4262630,4025873:0,0,0 +[1,136:-473656,4025873:0,0,0 +(1,136:-473656,-710413:0,0,0 +(1,136:-473656,-710413:0,0,0 +g1,136:-473656,-710413 ) -(183,33:28691405,41000177:501378,78643,0 -(183,33:28855259,41000177:173670,78643,0 +g1,136:-473656,-710413 ) +] ) -(183,33:29192783,41000177:501378,78643,0 -(183,33:29356637,41000177:173670,78643,0 +] +!3214 +}5 +!9 +{6 +[1,172:4262630,47279633:28320399,43253760,0 +(1,172:4262630,4025873:0,0,0 +[1,172:-473656,4025873:0,0,0 +(1,172:-473656,-710413:0,0,0 +(1,172:-473656,-644877:0,0,0 +k1,172:-473656,-644877:-65536 ) +(1,172:-473656,4736287:0,0,0 +k1,172:-473656,4736287:5209943 ) -(183,33:29694161,41000177:501378,78643,0 -(183,33:29858015,41000177:173670,78643,0 +g1,172:-473656,-710413 ) +] ) -(183,33:30195539,41000177:501378,78643,0 -(183,33:30359393,41000177:173670,78643,0 +[1,172:6630773,47279633:25952256,43253760,0 +[1,172:6630773,4812305:25952256,786432,0 +(1,172:6630773,4812305:25952256,0,0 +(1,172:6630773,4812305:25952256,0,0 +g1,172:3078558,4812305 +[1,172:3078558,4812305:0,0,0 +(1,172:3078558,2439708:0,1703936,0 +k1,172:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,172:2537886,2439708:1179648,16384,0 ) +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,172:3078558,1915420:16384,1179648,0 ) -(183,33:30696917,41000177:501378,78643,0 -(183,33:30860771,41000177:173670,78643,0 +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) +] ) -(183,33:31239539,41000177:1343490,485622,11795 -k183,33:31586882,41000177:347343 -g183,33:31786111,41000177 ) -g183,33:30911859,41000177 -g183,33:32583029,41000177 ) -(183,34:6630773,41841665:25952256,485622,11795 -g183,34:9121143,41841665 -h183,34:9121143,41841665:983040,0,0 -h183,34:10104183,41841665:0,0,0 -g183,34:7613813,41841665 -(183,34:7613813,41841665:1507330,485622,0 -k183,34:9121143,41841665:138283 +] +[1,172:3078558,4812305:0,0,0 +(1,172:3078558,2439708:0,1703936,0 +g1,172:29030814,2439708 +g1,172:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,172:36151628,1915420:16384,1179648,0 ) -g183,34:11639036,41841665 -g183,34:11639036,41841665 -(183,34:11644553,41841665:501378,78643,0 -$183,34:11644553,41841665 -(183,34:11808407,41841665:173670,78643,0 +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) -$183,34:12145931,41841665 +] ) -(183,34:12145931,41841665:501378,78643,0 -(183,34:12309785,41841665:173670,78643,0 +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,172:37855564,2439708:1179648,16384,0 ) ) -(183,34:12647309,41841665:501378,78643,0 -(183,34:12811163,41841665:173670,78643,0 +k1,172:3078556,2439708:-34777008 ) +] +[1,172:3078558,4812305:0,0,0 +(1,172:3078558,49800853:0,16384,2228224 +k1,172:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,172:2537886,49800853:1179648,16384,0 ) -(183,34:13148687,41841665:501378,78643,0 -(183,34:13312541,41841665:173670,78643,0 -) -) -(183,34:13650065,41841665:501378,78643,0 -(183,34:13813919,41841665:173670,78643,0 -) -) -(183,34:14151443,41841665:501378,78643,0 -(183,34:14315297,41841665:173670,78643,0 -) -) -(183,34:14652821,41841665:501378,78643,0 -(183,34:14816675,41841665:173670,78643,0 -) -) -(183,34:15154199,41841665:501378,78643,0 -(183,34:15318053,41841665:173670,78643,0 -) -) -(183,34:15655577,41841665:501378,78643,0 -(183,34:15819431,41841665:173670,78643,0 -) -) -(183,34:16156955,41841665:501378,78643,0 -(183,34:16320809,41841665:173670,78643,0 -) -) -(183,34:16658333,41841665:501378,78643,0 -(183,34:16822187,41841665:173670,78643,0 -) -) -(183,34:17159711,41841665:501378,78643,0 -(183,34:17323565,41841665:173670,78643,0 -) +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,172:3078558,51504789:16384,1179648,0 ) -(183,34:17661089,41841665:501378,78643,0 -(183,34:17824943,41841665:173670,78643,0 +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) +] ) -(183,34:18162467,41841665:501378,78643,0 -(183,34:18326321,41841665:173670,78643,0 ) ) -(183,34:18663845,41841665:501378,78643,0 -(183,34:18827699,41841665:173670,78643,0 +] +[1,172:3078558,4812305:0,0,0 +(1,172:3078558,49800853:0,16384,2228224 +g1,172:29030814,49800853 +g1,172:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,172:36151628,51504789:16384,1179648,0 ) +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 ) -(183,34:19165223,41841665:501378,78643,0 -(183,34:19329077,41841665:173670,78643,0 +] ) +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,172:37855564,49800853:1179648,16384,0 ) -(183,34:19666601,41841665:501378,78643,0 -(183,34:19830455,41841665:173670,78643,0 ) +k1,172:3078556,49800853:-34777008 ) -(183,34:20167979,41841665:501378,78643,0 -(183,34:20331833,41841665:173670,78643,0 +] +g1,172:6630773,4812305 ) ) -(183,34:20669357,41841665:501378,78643,0 -(183,34:20833211,41841665:173670,78643,0 +] +[1,172:6630773,45706769:25952256,40108032,0 +(1,172:6630773,45706769:25952256,40108032,0 +(1,172:6630773,45706769:0,0,0 +g1,172:6630773,45706769 ) +[1,172:6630773,45706769:25952256,40108032,0 +[1,147:6630773,11644859:25952256,6046122,0 +(1,147:6630773,6614283:25952256,1146618,0 +h1,147:6630773,6614283:0,0,0 +k1,147:20096848,6614283:12486181 +k1,147:32583029,6614283:12486181 ) -(183,34:21170735,41841665:501378,78643,0 -(183,34:21334589,41841665:173670,78643,0 +(1,147:6630773,7314219:25952256,32768,229376 +(1,147:6630773,7314219:0,32768,229376 +(1,147:6630773,7314219:5505024,32768,229376 +r1,172:12135797,7314219:5505024,262144,229376 ) +k1,147:6630773,7314219:-5505024 ) -(183,34:21672113,41841665:501378,78643,0 -(183,34:21835967,41841665:173670,78643,0 +(1,147:6630773,7314219:25952256,32768,0 +r1,172:32583029,7314219:25952256,32768,0 ) ) -(183,34:22173491,41841665:501378,78643,0 -(183,34:22337345,41841665:173670,78643,0 +(1,147:6630773,9109915:25952256,909509,241827 +h1,147:6630773,9109915:0,0,0 +g1,147:9126908,9109915 +g1,147:10294760,9109915 +g1,147:16260240,9109915 +g1,147:24331392,9109915 +g1,147:26868815,9109915 +k1,147:32036853,9109915:546177 +k1,147:32583029,9109915:546176 ) +(1,147:6630773,9809851:25952256,32768,0 +(1,147:6630773,9809851:5505024,32768,0 +r1,172:12135797,9809851:5505024,32768,0 ) -(183,34:22674869,41841665:501378,78643,0 -(183,34:22838723,41841665:173670,78643,0 +k1,147:22359413,9809851:10223616 +k1,147:32583029,9809851:10223616 +) +] +(1,150:6630773,14537624:25952256,131072,0 +r1,172:32583029,14537624:25952256,131072,0 +g1,150:32583029,14537624 +g1,150:32583029,14537624 +) +(1,152:6630773,15857525:25952256,513147,134348 +k1,152:8596853,15857525:1966080 +k1,151:8596853,15857525:0 +k1,151:9787977,15857525:288693 +k1,151:10491424,15857525:288604 +k1,151:12611193,15857525:288693 +k1,151:13431384,15857525:288694 +k1,151:15858517,15857525:288693 +k1,151:16503071,15857525:288694 +k1,151:18017943,15857525:288693 +k1,151:19289676,15857525:288693 +k1,151:22940367,15857525:288694 +k1,151:25805936,15857525:288693 +k1,151:27113715,15857525:288694 +k1,151:29055881,15857525:288693 +k1,152:32583029,15857525:1966080 +) +(1,152:6630773,16699013:25952256,513147,126483 +g1,152:8596853,16699013 +g1,151:10937799,16699013 +g1,151:12421534,16699013 +g1,151:13791236,16699013 +g1,151:15946715,16699013 +g1,151:17800728,16699013 +g1,151:18809327,16699013 +g1,151:20027641,16699013 +g1,151:23386361,16699013 +g1,151:24754097,16699013 +g1,151:25620482,16699013 +k1,152:30616949,16699013:4407954 +g1,152:32583029,16699013 +) +(1,153:6630773,18326933:25952256,473825,95026 +k1,153:27178275,18326933:20547502 +h1,153:27178275,18326933:0,0,0 +g1,153:28475232,18326933 +g1,153:30616949,18326933 +g1,153:32583029,18326933 +) +(1,154:6630773,19168421:25952256,505283,134348 +k1,154:26177541,19168421:19546768 +h1,153:26177541,19168421:0,0,0 +g1,153:30167372,19168421 +g1,154:30616949,19168421 +g1,154:32583029,19168421 +) +(1,154:6630773,20403125:25952256,131072,0 +r1,172:32583029,20403125:25952256,131072,0 +g1,154:32583029,20403125 +g1,154:34549109,20403125 +) +(1,158:6630773,23210693:25952256,32768,229376 +(1,158:6630773,23210693:0,32768,229376 +(1,158:6630773,23210693:5505024,32768,229376 +r1,172:12135797,23210693:5505024,262144,229376 +) +k1,158:6630773,23210693:-5505024 +) +(1,158:6630773,23210693:25952256,32768,0 +r1,172:32583029,23210693:25952256,32768,0 +) +) +(1,158:6630773,24815021:25952256,615776,151780 +(1,158:6630773,24815021:1974731,573309,0 +g1,158:6630773,24815021 +g1,158:8605504,24815021 +) +g1,158:10904245,24815021 +g1,158:11961996,24815021 +g1,158:13695292,24815021 +k1,158:32583029,24815021:15886712 +g1,158:32583029,24815021 +) +(1,161:6630773,26049725:25952256,513147,134348 +k1,160:7845631,26049725:172836 +k1,160:9762380,26049725:172836 +k1,160:11265598,26049725:172837 +k1,160:12913649,26049725:172836 +k1,160:15244586,26049725:172836 +k1,160:16930648,26049725:172836 +k1,160:20053259,26049725:172836 +k1,160:21606939,26049725:172836 +k1,160:25093932,26049725:172837 +k1,160:29921790,26049725:172836 +k1,160:31391584,26049725:172836 +k1,160:32583029,26049725:0 +) +(1,161:6630773,26891213:25952256,505283,134348 +k1,160:8579705,26891213:250894 +k1,160:10991975,26891213:250893 +k1,160:12347151,26891213:250894 +k1,160:13986097,26891213:250893 +k1,160:14853029,26891213:250894 +k1,160:20039439,26891213:250894 +k1,160:20646192,26891213:250893 +k1,160:23095164,26891213:250894 +k1,160:24735420,26891213:250893 +k1,160:27540907,26891213:250894 +k1,160:30480087,26891213:250893 +k1,160:31835263,26891213:250894 +k1,160:32583029,26891213:0 +) +(1,161:6630773,27732701:25952256,513147,134348 +k1,160:10209139,27732701:202607 +k1,160:11229635,27732701:202607 +k1,160:12966440,27732701:202607 +k1,160:13855209,27732701:202607 +k1,160:14413676,27732701:202607 +k1,160:16005646,27732701:202607 +k1,160:18762847,27732701:202608 +k1,160:20698226,27732701:202607 +k1,160:22638848,27732701:202607 +k1,160:24880935,27732701:202607 +k1,160:28395732,27732701:202607 +k1,160:29617424,27732701:202607 +k1,160:31505617,27732701:202607 +k1,161:32583029,27732701:0 +) +(1,161:6630773,28574189:25952256,513147,134348 +k1,160:8694264,28574189:174743 +k1,160:11427532,28574189:174742 +k1,160:11958135,28574189:174743 +k1,160:14378796,28574189:174742 +k1,160:15212831,28574189:174743 +k1,160:17514872,28574189:174742 +k1,160:18881060,28574189:174743 +k1,160:21769648,28574189:174742 +k1,160:23782021,28574189:174743 +k1,160:26730247,28574189:174742 +k1,160:30043509,28574189:174743 +k1,161:32583029,28574189:0 +k1,161:32583029,28574189:0 +) +(1,163:6630773,29415677:25952256,513147,134348 +h1,162:6630773,29415677:983040,0,0 +k1,162:11032766,29415677:264050 +k1,162:14246592,29415677:264051 +k1,162:15891486,29415677:264050 +k1,162:19296022,29415677:264051 +k1,162:20999898,29415677:264050 +k1,162:21915377,29415677:264051 +k1,162:22927193,29415677:264050 +k1,162:25675059,29415677:264051 +k1,162:26590537,29415677:264050 +k1,162:29006790,29415677:264051 +k1,162:29953725,29415677:264050 +k1,162:32583029,29415677:0 +) +(1,163:6630773,30257165:25952256,505283,134348 +k1,162:7493465,30257165:246654 +k1,162:8095978,30257165:246653 +k1,162:9580607,30257165:246654 +k1,162:11111767,30257165:246654 +k1,162:13196705,30257165:246653 +k1,162:17341440,30257165:246654 +k1,162:21425881,30257165:246653 +k1,162:23212631,30257165:246654 +k1,162:25492212,30257165:246654 +k1,162:28480891,30257165:246653 +k1,162:31391584,30257165:246654 +k1,162:32583029,30257165:0 +) +(1,163:6630773,31098653:25952256,473825,134348 +g1,162:9883980,31098653 +k1,163:32583029,31098653:19949158 +g1,163:32583029,31098653 +) +(1,165:6630773,31940141:25952256,513147,126483 +h1,164:6630773,31940141:983040,0,0 +k1,164:9565475,31940141:256246 +k1,164:11751100,31940141:256245 +k1,164:14232293,31940141:256246 +k1,164:15507624,31940141:256246 +k1,164:17417343,31940141:256246 +k1,164:20613533,31940141:256245 +k1,164:21529071,31940141:256246 +k1,164:25275109,31940141:256246 +k1,164:27391922,31940141:256246 +k1,164:28299596,31940141:256246 +k1,164:29303607,31940141:256245 +k1,164:31931601,31940141:256246 +k1,164:32583029,31940141:0 +) +(1,165:6630773,32781629:25952256,513147,126483 +k1,164:9598780,32781629:205664 +k1,164:11193806,32781629:205663 +k1,164:12837985,32781629:205664 +k1,164:14235094,32781629:205664 +k1,164:16602134,32781629:205663 +k1,164:18523531,32781629:205664 +k1,164:20195890,32781629:205663 +k1,164:25458312,32781629:205664 +k1,164:26855421,32781629:205664 +k1,164:30224507,32781629:205663 +k1,164:31089463,32781629:205664 +k1,164:32583029,32781629:0 +) +(1,165:6630773,33623117:25952256,473825,126483 +g1,164:7185862,33623117 +g1,164:11315940,33623117 +k1,165:32583029,33623117:19698812 +g1,165:32583029,33623117 +) +(1,167:6630773,34464605:25952256,513147,134348 +h1,166:6630773,34464605:983040,0,0 +k1,166:8485142,34464605:243494 +k1,166:9931877,34464605:243494 +k1,166:12766665,34464605:243494 +k1,166:13223106,34464605:243449 +k1,166:14599062,34464605:243494 +k1,166:16317116,34464605:243494 +k1,166:17731083,34464605:243494 +k1,166:20533103,34464605:243494 +k1,166:21795682,34464605:243494 +k1,166:23131661,34464605:243494 +k1,166:24042311,34464605:243494 +k1,166:24700603,34464605:243449 +k1,166:27279145,34464605:243494 +k1,166:30001211,34464605:243494 +k1,166:31812326,34464605:243494 +k1,166:32583029,34464605:0 +) +(1,167:6630773,35306093:25952256,505283,126483 +g1,166:9968521,35306093 +g1,166:12292427,35306093 +k1,167:32583029,35306093:18285856 +g1,167:32583029,35306093 +) +(1,168:6630773,38113661:25952256,32768,229376 +(1,168:6630773,38113661:0,32768,229376 +(1,168:6630773,38113661:5505024,32768,229376 +r1,172:12135797,38113661:5505024,262144,229376 +) +k1,168:6630773,38113661:-5505024 +) +(1,168:6630773,38113661:25952256,32768,0 +r1,172:32583029,38113661:25952256,32768,0 +) +) +(1,168:6630773,39717989:25952256,606339,161218 +(1,168:6630773,39717989:1974731,582746,0 +g1,168:6630773,39717989 +g1,168:8605504,39717989 +) +g1,168:11767747,39717989 +k1,168:32583029,39717989:18128044 +g1,168:32583029,39717989 +) +(1,171:6630773,40952693:25952256,505283,134348 +k1,170:7499830,40952693:241222 +k1,170:8155852,40952693:241179 +k1,170:11413041,40952693:241222 +k1,170:12673348,40952693:241222 +k1,170:15112648,40952693:241222 +k1,170:17335022,40952693:241221 +k1,170:18227672,40952693:241222 +k1,170:18824754,40952693:241222 +k1,170:21357770,40952693:241222 +k1,170:24441287,40952693:241221 +k1,170:26407417,40952693:241222 +k1,170:27180136,40952693:241222 +k1,170:27777218,40952693:241222 +k1,170:30023185,40952693:241221 +k1,170:30751953,40952693:241180 +k1,170:32583029,40952693:0 +) +(1,171:6630773,41794181:25952256,513147,134348 +k1,170:7343388,41794181:181118 +k1,170:9002997,41794181:181117 +k1,170:10751736,41794181:181118 +k1,170:13604101,41794181:181118 +k1,170:18557550,41794181:181117 +k1,170:20234855,41794181:181118 +k1,170:23932634,41794181:181117 +k1,170:26412100,41794181:181118 +k1,170:27244646,41794181:181118 +k1,170:30351290,41794181:181117 +k1,170:30888268,41794181:181118 +k1,170:32583029,41794181:0 +) +(1,171:6630773,42635669:25952256,505283,126483 +k1,170:8394412,42635669:254345 +k1,170:10798338,42635669:254345 +k1,170:14569345,42635669:254345 +k1,170:15927972,42635669:254345 +k1,170:16930084,42635669:254346 +k1,170:20317050,42635669:254345 +k1,170:21838861,42635669:254345 +k1,170:25506976,42635669:254345 +k1,170:29451653,42635669:254345 +k1,170:31591469,42635669:254345 +k1,170:32583029,42635669:0 +) +(1,171:6630773,43477157:25952256,513147,134348 +k1,170:7790701,43477157:140843 +k1,170:11236524,43477157:140842 +k1,170:12036659,43477157:140843 +k1,170:14469296,43477157:140843 +k1,170:17452435,43477157:140843 +k1,170:21372083,43477157:140842 +k1,170:23699207,43477157:140843 +k1,170:24944332,43477157:140843 +k1,170:26447669,43477157:140843 +k1,170:28156132,43477157:140842 +k1,170:30421652,43477157:140843 +k1,170:32583029,43477157:0 +) +(1,171:6630773,44318645:25952256,513147,134348 +k1,170:10171564,44318645:178794 +k1,170:11725959,44318645:178794 +k1,170:12260613,44318645:178794 +k1,170:13572525,44318645:178794 +k1,170:15247506,44318645:178794 +k1,170:19116632,44318645:178794 +k1,170:19946854,44318645:178794 +k1,170:22811969,44318645:178794 +k1,170:25152140,44318645:178794 +k1,170:28692931,44318645:178794 +k1,170:31923737,44318645:178794 +k1,170:32583029,44318645:0 +) +] +(1,172:32583029,45706769:0,0,0 +g1,172:32583029,45706769 +) +) +] +(1,172:6630773,47279633:25952256,477757,0 +(1,172:6630773,47279633:25952256,477757,0 +(1,172:6630773,47279633:0,0,0 +v1,172:6630773,47279633:0,0,0 +) +g1,172:6830002,47279633 +k1,172:32184570,47279633:25354568 +) +) +] +(1,172:4262630,4025873:0,0,0 +[1,172:-473656,4025873:0,0,0 +(1,172:-473656,-710413:0,0,0 +(1,172:-473656,-710413:0,0,0 +g1,172:-473656,-710413 +) +g1,172:-473656,-710413 +) +] +) +] +!13825 +}6 +Input:184:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:185:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:186:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:187:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:188:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!465 +{7 +[1,207:4262630,47279633:28320399,43253760,0 +(1,207:4262630,4025873:0,0,0 +[1,207:-473656,4025873:0,0,0 +(1,207:-473656,-710413:0,0,0 +(1,207:-473656,-644877:0,0,0 +k1,207:-473656,-644877:-65536 ) +(1,207:-473656,4736287:0,0,0 +k1,207:-473656,4736287:5209943 ) -(183,34:23176247,41841665:501378,78643,0 -(183,34:23340101,41841665:173670,78643,0 +g1,207:-473656,-710413 ) +] ) -(183,34:23677625,41841665:501378,78643,0 -(183,34:23841479,41841665:173670,78643,0 +[1,207:6630773,47279633:25952256,43253760,0 +[1,207:6630773,4812305:25952256,786432,0 +(1,207:6630773,4812305:25952256,505283,134348 +(1,207:6630773,4812305:25952256,505283,134348 +g1,207:3078558,4812305 +[1,207:3078558,4812305:0,0,0 +(1,207:3078558,2439708:0,1703936,0 +k1,207:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,207:2537886,2439708:1179648,16384,0 ) +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,207:3078558,1915420:16384,1179648,0 ) -(183,34:24179003,41841665:501378,78643,0 -(183,34:24342857,41841665:173670,78643,0 +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) +] ) -(183,34:24680381,41841665:501378,78643,0 -(183,34:24844235,41841665:173670,78643,0 ) ) -(183,34:25181759,41841665:501378,78643,0 -(183,34:25345613,41841665:173670,78643,0 +] +[1,207:3078558,4812305:0,0,0 +(1,207:3078558,2439708:0,1703936,0 +g1,207:29030814,2439708 +g1,207:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,207:36151628,1915420:16384,1179648,0 ) +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) -(183,34:25683137,41841665:501378,78643,0 -(183,34:25846991,41841665:173670,78643,0 +] ) +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,207:37855564,2439708:1179648,16384,0 ) -(183,34:26184515,41841665:501378,78643,0 -(183,34:26348369,41841665:173670,78643,0 ) +k1,207:3078556,2439708:-34777008 ) -(183,34:26685893,41841665:501378,78643,0 -(183,34:26849747,41841665:173670,78643,0 +] +[1,207:3078558,4812305:0,0,0 +(1,207:3078558,49800853:0,16384,2228224 +k1,207:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,207:2537886,49800853:1179648,16384,0 ) +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,207:3078558,51504789:16384,1179648,0 ) -(183,34:27187271,41841665:501378,78643,0 -(183,34:27351125,41841665:173670,78643,0 +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) +] ) -(183,34:27688649,41841665:501378,78643,0 -(183,34:27852503,41841665:173670,78643,0 ) ) -(183,34:28190027,41841665:501378,78643,0 -(183,34:28353881,41841665:173670,78643,0 +] +[1,207:3078558,4812305:0,0,0 +(1,207:3078558,49800853:0,16384,2228224 +g1,207:29030814,49800853 +g1,207:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,207:36151628,51504789:16384,1179648,0 +) +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 +) +] +) +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,207:37855564,49800853:1179648,16384,0 +) +) +k1,207:3078556,49800853:-34777008 +) +] +g1,207:6630773,4812305 +k1,207:18771974,4812305:11742742 +g1,207:20158715,4812305 +g1,207:20807521,4812305 +g1,207:24121676,4812305 +g1,207:28605649,4812305 +g1,207:30015328,4812305 +) +) +] +[1,207:6630773,45706769:25952256,40108032,0 +(1,207:6630773,45706769:25952256,40108032,0 +(1,207:6630773,45706769:0,0,0 +g1,207:6630773,45706769 +) +[1,207:6630773,45706769:25952256,40108032,0 +(1,171:6630773,6254097:25952256,513147,126483 +k1,170:8315611,6254097:188651 +k1,170:12194593,6254097:188650 +k1,170:13011079,6254097:188651 +k1,170:14218815,6254097:188651 +k1,170:15630367,6254097:188650 +k1,170:16478310,6254097:188651 +k1,170:17686046,6254097:188651 +k1,170:20280523,6254097:188650 +k1,170:22747861,6254097:188651 +k1,170:23149493,6254097:188640 +k1,170:25699406,6254097:188651 +k1,170:27218438,6254097:188651 +k1,170:28058516,6254097:188650 +k1,170:29861974,6254097:188651 +k1,170:32583029,6254097:0 +) +(1,171:6630773,7095585:25952256,505283,126483 +g1,170:8021447,7095585 +g1,170:10571452,7095585 +g1,170:12932058,7095585 +g1,170:14322732,7095585 +g1,170:15852342,7095585 +g1,170:16702999,7095585 +g1,170:17994713,7095585 +k1,171:32583029,7095585:12775590 +g1,171:32583029,7095585 +) +(1,172:6630773,9186845:25952256,555811,139132 +(1,172:6630773,9186845:2450326,534184,0 +g1,172:6630773,9186845 +g1,172:9081099,9186845 +) +g1,172:11147187,9186845 +g1,172:11984148,9186845 +g1,172:12609886,9186845 +k1,172:32583029,9186845:17523538 +g1,172:32583029,9186845 +) +(1,175:6630773,10421549:25952256,513147,126483 +k1,174:7364405,10421549:246044 +k1,174:9396352,10421549:246091 +k1,174:10173940,10421549:246091 +k1,174:10775891,10421549:246091 +k1,174:12248161,10421549:246091 +k1,174:13477292,10421549:246091 +k1,174:15007888,10421549:246090 +k1,174:17956028,10421549:246091 +k1,174:20778995,10421549:246091 +k1,174:22044171,10421549:246091 +k1,174:23943735,10421549:246091 +k1,174:27679618,10421549:246091 +k1,174:29210215,10421549:246091 +k1,174:30626779,10421549:246091 +k1,174:32583029,10421549:0 +) +(1,175:6630773,11263037:25952256,513147,126483 +k1,174:8166503,11263037:149644 +k1,174:8928908,11263037:149643 +k1,174:10097637,11263037:149644 +k1,174:12667526,11263037:149644 +k1,174:15392080,11263037:149644 +k1,174:16029262,11263037:149594 +k1,174:17486349,11263037:149644 +k1,174:19467069,11263037:149644 +k1,174:20148209,11263037:149643 +k1,174:21537794,11263037:149644 +k1,174:22635089,11263037:149644 +k1,174:25619820,11263037:149644 +k1,174:26540166,11263037:149643 +k1,174:29531451,11263037:149644 +k1,174:30664135,11263037:149644 +k1,174:32583029,11263037:0 +) +(1,175:6630773,12104525:25952256,505283,126483 +g1,174:8000475,12104525 +g1,174:9674919,12104525 +g1,174:12006034,12104525 +g1,174:12888148,12104525 +g1,174:14894205,12104525 +g1,174:16785574,12104525 +g1,174:17399646,12104525 +k1,175:32583029,12104525:11519920 +g1,175:32583029,12104525 +) +(1,177:6630773,12946013:25952256,513147,134348 +h1,176:6630773,12946013:983040,0,0 +k1,176:9573287,12946013:176239 +k1,176:11778521,12946013:176239 +k1,176:19296758,12946013:176239 +k1,176:20085759,12946013:176239 +k1,176:21281083,12946013:176239 +k1,176:21872142,12946013:176216 +k1,176:24642296,12946013:176239 +k1,176:25686887,12946013:176239 +k1,176:27843624,12946013:176239 +k1,176:29176573,12946013:176239 +k1,176:30521319,12946013:176239 +k1,176:31356850,12946013:176239 +k1,176:32583029,12946013:0 +) +(1,177:6630773,13787501:25952256,513147,134348 +k1,176:7378466,13787501:134931 +k1,176:7869258,13787501:134932 +k1,176:9603267,13787501:134931 +k1,176:11521433,13787501:134931 +k1,176:12524716,13787501:134931 +k1,176:13842573,13787501:134932 +k1,176:14996589,13787501:134931 +k1,176:16300027,13787501:134931 +k1,176:17196486,13787501:134931 +k1,176:19360413,13787501:134932 +k1,176:20514429,13787501:134931 +k1,176:22304144,13787501:134931 +k1,176:23713751,13787501:134932 +k1,176:24867767,13787501:134931 +k1,176:26171205,13787501:134931 +k1,176:26965428,13787501:134931 +k1,176:28326539,13787501:134932 +k1,176:28992967,13787501:134931 +k1,176:32583029,13787501:0 +) +(1,177:6630773,14628989:25952256,513147,134348 +k1,176:8061237,14628989:239019 +k1,176:11535113,14628989:239019 +k1,176:12727681,14628989:239019 +k1,176:14400629,14628989:239020 +k1,176:16025734,14628989:239019 +k1,176:17283838,14628989:239019 +k1,176:18906977,14628989:239019 +k1,176:20314503,14628989:239019 +k1,176:21212814,14628989:239019 +k1,176:22851682,14628989:239019 +k1,176:24976173,14628989:239020 +k1,176:26523946,14628989:239019 +k1,176:27379003,14628989:239019 +k1,176:28992967,14628989:239019 +k1,176:32583029,14628989:0 +) +(1,177:6630773,15470477:25952256,505283,126483 +k1,176:8082314,15470477:260096 +k1,176:11577267,15470477:260096 +k1,176:13028808,15470477:260096 +k1,176:14013732,15470477:260096 +k1,176:15256868,15470477:260096 +k1,176:16144799,15470477:260096 +k1,176:16760755,15470477:260096 +k1,176:18851927,15470477:260096 +k1,176:19980374,15470477:260095 +k1,176:21855277,15470477:260096 +k1,176:24088007,15470477:260096 +k1,176:25367188,15470477:260096 +k1,176:27280757,15470477:260096 +k1,176:28767032,15470477:260096 +k1,176:29643166,15470477:260096 +k1,176:30673965,15470477:260096 +k1,176:32583029,15470477:0 +) +(1,177:6630773,16311965:25952256,513147,134348 +k1,176:8022401,16311965:200183 +k1,176:9613257,16311965:200182 +k1,176:12484687,16311965:200183 +k1,176:14183678,16311965:200183 +k1,176:17745857,16311965:200182 +k1,176:21435832,16311965:200183 +k1,176:22903480,16311965:200182 +k1,176:23459523,16311965:200183 +k1,176:24885885,16311965:200183 +k1,176:26242777,16311965:200182 +k1,176:30900064,16311965:200183 +k1,176:32583029,16311965:0 +) +(1,177:6630773,17153453:25952256,513147,126483 +g1,176:8492650,17153453 +g1,176:10067480,17153453 +g1,176:11893968,17153453 +g1,176:13791235,17153453 +g1,176:14858816,17153453 +g1,176:17092938,17153453 +g1,176:18311252,17153453 +g1,176:19493521,17153453 +g1,176:20378912,17153453 +g1,176:20934001,17153453 +g1,176:23016079,17153453 +g1,176:24482774,17153453 +k1,177:32583029,17153453:7511742 +g1,177:32583029,17153453 +) +(1,179:6630773,17994941:25952256,513147,134348 +h1,178:6630773,17994941:983040,0,0 +g1,178:8300630,17994941 +g1,178:10330935,17994941 +g1,178:11513204,17994941 +g1,178:12813438,17994941 +g1,178:14031752,17994941 +g1,178:17206316,17994941 +k1,179:32583029,17994941:10574890 +g1,179:32583029,17994941 +) +(1,181:7679349,19360717:24903680,513147,126483 +(1,180:7679349,19360717:0,355205,0 +g1,180:7679349,19360717 +g1,180:6368629,19360717 +g1,180:6040949,19360717 +(1,180:6040949,19360717:1310720,355205,0 +k1,180:7351669,19360717:1310720 +(1,180:7351669,19360717:0,355205,0 +k1,180:6953210,19360717:-398459 +) +) +g1,180:7679349,19360717 +) +g1,180:9075265,19360717 +g1,180:11105570,19360717 +g1,180:11836296,19360717 +g1,180:12391385,19360717 +g1,180:13816793,19360717 +k1,181:32583029,19360717:17609526 +g1,181:32583029,19360717 +) +(1,182:7679349,20726493:24903680,513147,134348 +(1,181:7679349,20726493:0,355205,0 +g1,181:7679349,20726493 +g1,181:6368629,20726493 +g1,181:6040949,20726493 +(1,181:6040949,20726493:1310720,355205,0 +k1,181:7351669,20726493:1310720 +(1,181:7351669,20726493:0,355205,0 +k1,181:6953210,20726493:-398459 +) +) +g1,181:7679349,20726493 +) +g1,181:9075265,20726493 +g1,181:10257534,20726493 +g1,181:13158812,20726493 +g1,181:14898137,20726493 +g1,181:15512209,20726493 +g1,181:19228100,20726493 +g1,181:22615000,20726493 +g1,181:26338755,20726493 +g1,181:27729429,20726493 +g1,181:30400021,20726493 +k1,182:32583029,20726493:779227 +g1,182:32583029,20726493 +) +(1,183:7679349,22092269:24903680,513147,115847 +(1,182:7679349,22092269:0,355205,0 +g1,182:7679349,22092269 +g1,182:6368629,22092269 +g1,182:6040949,22092269 +(1,182:6040949,22092269:1310720,355205,0 +k1,182:7351669,22092269:1310720 +(1,182:7351669,22092269:0,355205,0 +k1,182:6953210,22092269:-398459 +) +) +g1,182:7679349,22092269 +) +g1,182:11317907,22092269 +g1,182:13005459,22092269 +g1,182:13817450,22092269 +g1,182:14372539,22092269 +(1,182:14372539,22092269:0,424981,115847 +r1,207:14730805,22092269:358266,540828,115847 +k1,182:14372539,22092269:-358266 +) +(1,182:14372539,22092269:358266,424981,115847 +k1,182:14372539,22092269:3277 +h1,182:14727528,22092269:0,411205,112570 +) +g1,182:14930034,22092269 +g1,182:16320708,22092269 +g1,182:17702862,22092269 +g1,182:18514853,22092269 +g1,182:19733167,22092269 +g1,182:21115321,22092269 +g1,182:21973842,22092269 +g1,182:23192156,22092269 +k1,183:32583029,22092269:8048696 +g1,183:32583029,22092269 +) +(1,184:7679349,23458045:24903680,513147,126483 +(1,183:7679349,23458045:0,355205,0 +g1,183:7679349,23458045 +g1,183:6368629,23458045 +g1,183:6040949,23458045 +(1,183:6040949,23458045:1310720,355205,0 +k1,183:7351669,23458045:1310720 +(1,183:7351669,23458045:0,355205,0 +k1,183:6953210,23458045:-398459 +) +) +g1,183:7679349,23458045 +) +g1,183:9075265,23458045 +g1,183:9689337,23458045 +g1,183:13405228,23458045 +g1,183:14596017,23458045 +g1,183:15411284,23458045 +g1,183:16629598,23458045 +g1,183:17811867,23458045 +g1,183:18627134,23458045 +g1,183:19845448,23458045 +g1,183:21784003,23458045 +g1,183:23267738,23458045 +g1,183:24847155,23458045 +g1,183:26668400,23458045 +g1,183:27615395,23458045 +k1,184:32583029,23458045:1960842 +g1,184:32583029,23458045 +) +(1,185:7679349,24823821:24903680,513147,134348 +(1,184:7679349,24823821:0,355205,0 +g1,184:7679349,24823821 +g1,184:6368629,24823821 +g1,184:6040949,24823821 +(1,184:6040949,24823821:1310720,355205,0 +k1,184:7351669,24823821:1310720 +(1,184:7351669,24823821:0,355205,0 +k1,184:6953210,24823821:-398459 +) +) +g1,184:7679349,24823821 +) +g1,184:8293421,24823821 +g1,184:10654027,24823821 +g1,184:12328471,24823821 +g1,184:13510740,24823821 +g1,184:15778285,24823821 +g1,184:18150688,24823821 +g1,184:18965955,24823821 +g1,184:19955548,24823821 +g1,184:20837662,24823821 +k1,185:32583029,24823821:10781333 +g1,185:32583029,24823821 +) +(1,188:6630773,26189597:25952256,513147,126483 +h1,187:6630773,26189597:983040,0,0 +k1,187:8974102,26189597:163602 +k1,187:12654365,26189597:163601 +k1,187:13434005,26189597:163602 +k1,187:14616692,26189597:163602 +k1,187:16006472,26189597:163601 +k1,187:17326784,26189597:163602 +k1,187:18481945,26189597:163601 +k1,187:20231518,26189597:163602 +k1,187:23985182,26189597:163602 +k1,187:25340228,26189597:163601 +k1,187:28565017,26189597:163602 +k1,187:32583029,26189597:0 +) +(1,188:6630773,27031085:25952256,513147,134348 +k1,187:8433283,27031085:234889 +k1,187:9687256,27031085:234888 +k1,187:11410468,27031085:234889 +k1,187:12296785,27031085:234889 +k1,187:13550758,27031085:234888 +k1,187:14968572,27031085:234889 +k1,187:15862753,27031085:234889 +k1,187:17116726,27031085:234888 +k1,187:18508325,27031085:234889 +k1,187:19429375,27031085:234888 +k1,187:23473872,27031085:234889 +k1,187:24324799,27031085:234889 +k1,187:25578772,27031085:234888 +k1,187:28603529,27031085:234889 +k1,187:29791967,27031085:234889 +k1,187:31119340,27031085:234888 +$1,187:31119340,27031085 +$1,187:31696712,27031085 +k1,187:31931601,27031085:234889 +k1,187:32583029,27031085:0 +) +(1,188:6630773,27872573:25952256,505283,126483 +g1,187:9871528,27872573 +g1,187:13297750,27872573 +g1,187:17013641,27872573 +g1,187:17828908,27872573 +g1,187:19047222,27872573 +k1,188:32583029,27872573:11531061 +g1,188:32583029,27872573 +) +(1,203:6630773,41798920:25952256,13078968,0 +k1,203:16796775,41798920:10166002 +(1,189:16796775,41798920:0,0,0 +g1,189:16796775,41798920 +g1,189:16796775,41798920 +g1,189:16469095,41798920 +(1,189:16469095,41798920:0,0,0 +) +g1,189:16796775,41798920 +) +(1,201:16796775,41798920:5620252,13078968,0 +g1,201:19606901,41798920 +(1,201:19606901,29665398:0,0,0 +(1,201:19606901,29665398:0,0,0 +g1,191:19606901,29665398 +(1,192:19606901,29665398:0,0,0 +(1,192:19606901,29665398:0,0,0 +g1,192:19606901,29665398 +g1,192:19606901,29665398 +g1,192:19606901,29665398 +g1,192:19606901,29665398 +g1,192:19606901,29665398 +(1,192:19606901,29665398:0,0,0 +(1,192:19606901,29665398:3308914,426443,113835 +(1,192:19606901,29665398:3308914,426443,113835 +g1,192:20866176,29665398 +g1,192:21556860,29665398 +) +g1,192:22915815,29665398 +) +) +g1,192:19606901,29665398 +g1,192:19606901,29665398 +) +) +g1,192:19606901,29665398 +g1,193:19606901,29665398 +(1,193:19606901,29665398:0,0,0 +(1,193:19606901,29665398:0,0,0 +g1,193:19606901,29665398 +g1,193:19606901,29665398 +g1,193:19606901,29665398 +g1,193:19606901,29665398 +g1,193:19606901,29665398 +(1,193:19606901,29665398:0,0,0 +(1,193:19606901,29665398:4121582,373362,104590 +(1,193:19606901,29665398:4121582,373362,104590 +(1,193:19606901,29665398:0,373362,104590 +r1,207:23728483,29665398:4121582,477952,104590 +k1,193:19606901,29665398:-4121582 +) +(1,193:19606901,29665398:4121582,373362,104590 +g1,193:23092125,29665398 +h1,193:23725206,29665398:0,370085,101313 +) +) +g1,193:23728483,29665398 +) +) +g1,193:19606901,29665398 +g1,193:19606901,29665398 +) +) +g1,193:19606901,29665398 +g1,194:19606901,29665398 +(1,194:19606901,29665398:0,0,0 +(1,194:19606901,29665398:0,0,0 +g1,194:19606901,29665398 +g1,194:19606901,29665398 +g1,194:19606901,29665398 +g1,194:19606901,29665398 +g1,194:19606901,29665398 +(1,194:19606901,29665398:0,0,0 +(1,194:19606901,29665398:4121582,373362,104590 +(1,194:19606901,29665398:4121582,373362,104590 +(1,194:19606901,29665398:0,373362,104590 +r1,207:23728483,29665398:4121582,477952,104590 +k1,194:19606901,29665398:-4121582 +) +(1,194:19606901,29665398:4121582,373362,104590 +g1,194:23092125,29665398 +h1,194:23725206,29665398:0,370085,101313 +) +) +g1,194:23728483,29665398 +) +) +g1,194:19606901,29665398 +g1,194:19606901,29665398 +) +) +g1,194:19606901,29665398 +g1,195:19606901,29665398 +(1,195:19606901,29665398:0,0,0 +(1,195:19606901,29665398:0,0,0 +g1,195:19606901,29665398 +g1,195:19606901,29665398 +g1,195:19606901,29665398 +g1,195:19606901,29665398 +g1,195:19606901,29665398 +(1,195:19606901,29665398:0,0,0 +(1,195:19606901,29665398:519635,224133,0 +(1,195:19606901,29665398:519635,224133,0 +$1,195:19606901,29665398 +$1,195:20126536,29665398 +) +g1,195:20126536,29665398 +) +) +g1,195:19606901,29665398 +g1,195:19606901,29665398 +) +) +g1,195:19606901,29665398 +g1,196:19606901,29665398 +(1,196:19606901,29665398:0,0,0 +(1,196:19606901,29665398:0,0,0 +g1,196:19606901,29665398 +g1,196:19606901,29665398 +g1,196:19606901,29665398 +g1,196:19606901,29665398 +g1,196:19606901,29665398 +(1,196:19606901,29665398:0,0,0 +(1,196:19606901,29665398:3931768,454754,7077 +(1,196:19606901,29665398:3931768,454754,7077 +g1,196:21779813,29665398 +g1,196:22470497,29665398 +) +g1,196:23538669,29665398 +) +) +g1,196:19606901,29665398 +g1,196:19606901,29665398 +) +) +g1,196:19606901,29665398 +g1,197:19606901,29665398 +g1,197:19606901,29665398 +g1,197:19606901,29665398 +g1,197:19606901,29665398 +g1,197:19606901,29665398 +g1,197:19606901,29665398 +g1,197:19606901,29665398 +g1,197:19606901,29665398 +g1,197:19606901,29665398 +g1,197:19606901,29665398 +g1,197:19606901,29665398 +g1,198:19606901,29665398 +g1,198:19606901,29665398 +g1,198:19606901,29665398 +g1,198:19606901,29665398 +g1,198:19606901,29665398 +g1,198:19606901,29665398 +g1,199:19606901,29665398 +g1,199:19606901,29665398 +g1,199:19606901,29665398 +g1,199:19606901,29665398 +g1,199:19606901,29665398 +g1,199:19606901,29665398 +g1,200:19606901,29665398 +g1,200:19606901,29665398 +g1,200:19606901,29665398 +g1,200:19606901,29665398 +g1,200:19606901,29665398 +g1,200:19606901,29665398 +g1,201:19606901,29665398 +g1,201:19606901,29665398 +) +g1,201:19606901,29665398 +) +) +g1,203:22417027,41798920 +k1,203:32583029,41798920:10166002 +) +(1,206:6630773,43295768:25952256,505283,134348 +h1,205:6630773,43295768:983040,0,0 +k1,205:8597508,43295768:165806 +k1,205:9631666,43295768:165806 +k1,205:10929934,43295768:165806 +k1,205:12120723,43295768:165806 +k1,205:13740118,43295768:165806 +k1,205:14521962,43295768:165806 +k1,205:15706853,43295768:165806 +k1,205:18463953,43295768:165806 +k1,205:20125946,43295768:165806 +k1,205:23808414,43295768:165806 +k1,205:25078502,43295768:165806 +k1,205:25992074,43295768:165806 +k1,205:29290501,43295768:165806 +k1,205:30723773,43295768:165806 +k1,205:32583029,43295768:0 +) +(1,206:6630773,44137256:25952256,505283,126483 +k1,205:10311340,44137256:163905 +k1,205:11666691,44137256:163906 +k1,205:14891783,44137256:163905 +k1,205:19215259,44137256:163906 +k1,205:21589038,44137256:163905 +k1,205:25277469,44137256:163905 +k1,205:27326846,44137256:163906 +k1,205:29502706,44137256:163905 +k1,205:30411756,44137256:163906 +k1,205:31227089,44137256:163905 +k1,206:32583029,44137256:0 +) +(1,206:6630773,44978744:25952256,513147,126483 +k1,205:8010251,44978744:234564 +k1,205:9263900,44978744:234564 +k1,205:11994731,44978744:234565 +k1,205:15169240,44978744:234564 +k1,205:16063096,44978744:234564 +k1,205:19358847,44978744:234564 +k1,205:23283743,44978744:234564 +k1,205:25704588,44978744:234564 +k1,205:27469419,44978744:234565 +k1,205:28355411,44978744:234564 +k1,205:30914537,44978744:234564 +k1,205:32168186,44978744:234564 +k1,206:32583029,44978744:0 +) +] +(1,207:32583029,45706769:0,0,0 +g1,207:32583029,45706769 +) +) +] +(1,207:6630773,47279633:25952256,0,0 +h1,207:6630773,47279633:25952256,0,0 +) +] +(1,207:4262630,4025873:0,0,0 +[1,207:-473656,4025873:0,0,0 +(1,207:-473656,-710413:0,0,0 +(1,207:-473656,-710413:0,0,0 +g1,207:-473656,-710413 +) +g1,207:-473656,-710413 +) +] +) +] +!19430 +}7 +Input:189:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:190:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:191:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:192:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!374 +{8 +[1,257:4262630,47279633:28320399,43253760,0 +(1,257:4262630,4025873:0,0,0 +[1,257:-473656,4025873:0,0,0 +(1,257:-473656,-710413:0,0,0 +(1,257:-473656,-644877:0,0,0 +k1,257:-473656,-644877:-65536 ) +(1,257:-473656,4736287:0,0,0 +k1,257:-473656,4736287:5209943 ) -(183,34:28691405,41841665:501378,78643,0 -(183,34:28855259,41841665:173670,78643,0 +g1,257:-473656,-710413 ) +] ) -(183,34:29192783,41841665:501378,78643,0 -(183,34:29356637,41841665:173670,78643,0 +[1,257:6630773,47279633:25952256,43253760,0 +[1,257:6630773,4812305:25952256,786432,0 +(1,257:6630773,4812305:25952256,485622,134348 +(1,257:6630773,4812305:25952256,485622,134348 +g1,257:3078558,4812305 +[1,257:3078558,4812305:0,0,0 +(1,257:3078558,2439708:0,1703936,0 +k1,257:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,257:2537886,2439708:1179648,16384,0 ) +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,257:3078558,1915420:16384,1179648,0 ) -(183,34:29694161,41841665:501378,78643,0 -(183,34:29858015,41841665:173670,78643,0 +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) +] ) -(183,34:30195539,41841665:501378,78643,0 -(183,34:30359393,41841665:173670,78643,0 ) ) -(183,34:30696917,41841665:501378,78643,0 -(183,34:30860771,41841665:173670,78643,0 +] +[1,257:3078558,4812305:0,0,0 +(1,257:3078558,2439708:0,1703936,0 +g1,257:29030814,2439708 +g1,257:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,257:36151628,1915420:16384,1179648,0 ) +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) -(183,34:31239540,41841665:1343490,485622,11795 -k183,34:31586883,41841665:347343 -g183,34:31786112,41841665 +] ) -g183,34:30911860,41841665 -g183,34:32583030,41841665 +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,257:37855564,2439708:1179648,16384,0 ) -(183,35:6630773,42683153:25952256,485622,11795 -g183,35:9121143,42683153 -h183,35:9121143,42683153:983040,0,0 -h183,35:10104183,42683153:0,0,0 -g183,35:7613813,42683153 -(183,35:7613813,42683153:1507330,485622,11795 -k183,35:9121143,42683153:138283 ) -g183,35:10804107,42683153 -g183,35:10804107,42683153 -(183,35:11143175,42683153:501378,78643,0 -$183,35:11143175,42683153 -(183,35:11307029,42683153:173670,78643,0 +k1,257:3078556,2439708:-34777008 ) -$183,35:11644553,42683153 +] +[1,257:3078558,4812305:0,0,0 +(1,257:3078558,49800853:0,16384,2228224 +k1,257:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,257:2537886,49800853:1179648,16384,0 ) -(183,35:11644553,42683153:501378,78643,0 -(183,35:11808407,42683153:173670,78643,0 +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,257:3078558,51504789:16384,1179648,0 ) +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) -(183,35:12145931,42683153:501378,78643,0 -(183,35:12309785,42683153:173670,78643,0 +] +) +) +) +] +[1,257:3078558,4812305:0,0,0 +(1,257:3078558,49800853:0,16384,2228224 +g1,257:29030814,49800853 +g1,257:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,257:36151628,51504789:16384,1179648,0 +) +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 +) +] +) +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,257:37855564,49800853:1179648,16384,0 +) +) +k1,257:3078556,49800853:-34777008 +) +] +g1,257:6630773,4812305 +g1,257:6630773,4812305 +g1,257:9132937,4812305 +g1,257:11356573,4812305 +k1,257:32184569,4812305:20827996 +) +) +] +[1,257:6630773,45706769:25952256,40108032,0 +(1,257:6630773,45706769:25952256,40108032,0 +(1,257:6630773,45706769:0,0,0 +g1,257:6630773,45706769 +) +[1,257:6630773,45706769:25952256,40108032,0 +(1,206:6630773,6254097:25952256,505283,134348 +k1,205:9093968,6254097:205480 +k1,205:9927284,6254097:205481 +k1,205:12798769,6254097:205480 +k1,205:13655678,6254097:205481 +k1,205:15599173,6254097:205480 +k1,205:17344750,6254097:205481 +k1,205:18008327,6254097:205480 +k1,205:18745305,6254097:205481 +k1,205:22160083,6254097:205480 +k1,205:23650070,6254097:205481 +k1,205:26016927,6254097:205480 +k1,205:27213968,6254097:205481 +k1,205:28705264,6254097:205480 +k1,206:32583029,6254097:0 +) +(1,206:6630773,7095585:25952256,505283,134348 +k1,205:8151700,7095585:212173 +k1,205:9015300,7095585:212172 +k1,205:11951805,7095585:212173 +k1,205:16389084,7095585:212173 +k1,205:16957116,7095585:212172 +k1,205:18699555,7095585:212173 +k1,205:21169443,7095585:212173 +k1,205:22882389,7095585:212172 +k1,205:24286007,7095585:212173 +k1,205:27778912,7095585:212173 +k1,205:31261331,7095585:212172 +k1,205:32124932,7095585:212173 +k1,205:32583029,7095585:0 +) +(1,206:6630773,7937073:25952256,473825,126483 +g1,205:7821562,7937073 +k1,206:32583030,7937073:21378500 +g1,206:32583030,7937073 +) +(1,208:6630773,8778561:25952256,513147,134348 +h1,207:6630773,8778561:983040,0,0 +k1,207:8331058,8778561:247352 +k1,207:9109906,8778561:247351 +k1,207:10941263,8778561:247352 +k1,207:13726168,8778561:247351 +k1,207:14624948,8778561:247352 +k1,207:16487106,8778561:247351 +k1,207:18895835,8778561:247352 +k1,207:19868015,8778561:247352 +k1,207:21399872,8778561:247351 +k1,207:23027412,8778561:247352 +k1,207:24266323,8778561:247351 +k1,207:29187703,8778561:247352 +k1,207:30264084,8778561:247351 +k1,207:32227169,8778561:247352 +k1,207:32583029,8778561:0 +) +(1,208:6630773,9620049:25952256,513147,134348 +k1,207:8710528,9620049:248679 +k1,207:13633235,9620049:248679 +k1,207:15038625,9620049:248680 +k1,207:16909320,9620049:248679 +k1,207:19495668,9620049:248679 +k1,207:21174343,9620049:248679 +k1,207:22074450,9620049:248679 +k1,207:25879768,9620049:248679 +k1,207:26779876,9620049:248680 +k1,207:28404811,9620049:248679 +k1,207:29672575,9620049:248679 +k1,207:32583029,9620049:0 +) +(1,208:6630773,10461537:25952256,513147,126483 +k1,207:8494365,10461537:176695 +k1,207:10047316,10461537:176695 +k1,207:10906896,10461537:176695 +k1,207:13265285,10461537:176695 +k1,207:14831343,10461537:176695 +k1,207:16575659,10461537:176695 +k1,207:18239366,10461537:176695 +k1,207:21040123,10461537:176695 +k1,207:22235903,10461537:176695 +k1,207:23801961,10461537:176695 +k1,207:26533249,10461537:176695 +k1,207:27901389,10461537:176695 +k1,207:30373155,10461537:176695 +k1,207:32583029,10461537:0 +) +(1,208:6630773,11303025:25952256,513147,126483 +k1,207:8173141,11303025:151694 +k1,207:9343920,11303025:151694 +k1,207:11668788,11303025:151694 +k1,207:12479774,11303025:151694 +k1,207:13650553,11303025:151694 +k1,207:16530511,11303025:151694 +k1,207:18200674,11303025:151694 +k1,207:20513744,11303025:151693 +k1,207:21769720,11303025:151694 +k1,207:22669180,11303025:151694 +k1,207:24334100,11303025:151694 +k1,207:25137222,11303025:151694 +k1,207:27052490,11303025:151694 +k1,207:28223269,11303025:151694 +k1,207:30028436,11303025:151694 +k1,207:32583029,11303025:0 +) +(1,208:6630773,12144513:25952256,505283,134348 +k1,207:9899943,12144513:158176 +k1,207:10709547,12144513:158176 +k1,207:12569692,12144513:158175 +k1,207:14117231,12144513:158176 +k1,207:16485281,12144513:158176 +k1,207:17294885,12144513:158176 +k1,207:20708889,12144513:158175 +k1,207:21886150,12144513:158176 +k1,207:23697799,12144513:158176 +k1,207:26410568,12144513:158176 +k1,207:27181506,12144513:158176 +k1,207:27695541,12144513:158175 +k1,207:29307306,12144513:158176 +k1,207:31064560,12144513:158176 +k1,207:32583029,12144513:0 +) +(1,208:6630773,12986001:25952256,513147,126483 +g1,207:8991379,12986001 +g1,207:12393352,12986001 +g1,207:13358697,12986001 +g1,207:15243512,12986001 +g1,207:16955967,12986001 +g1,207:18102847,12986001 +g1,207:19321161,12986001 +k1,208:32583029,12986001:10533604 +g1,208:32583029,12986001 +) +(1,211:6630773,15077261:25952256,555811,139132 +(1,211:6630773,15077261:2450326,534184,0 +g1,211:6630773,15077261 +g1,211:9081099,15077261 +) +g1,211:10960475,15077261 +g1,211:12100212,15077261 +g1,211:13364664,15077261 +g1,211:14843943,15077261 +g1,211:15469681,15077261 +k1,211:32583029,15077261:14663743 +g1,211:32583029,15077261 +) +(1,215:6630773,16311965:25952256,513147,134348 +k1,214:7402036,16311965:283675 +k1,214:9516873,16311965:283761 +k1,214:10904915,16311965:283760 +k1,214:11936441,16311965:283760 +k1,214:15350200,16311965:283760 +k1,214:17369353,16311965:283760 +k1,214:20348610,16311965:283761 +(1,214:20348610,16311965:0,452978,115847 +r1,257:23168859,16311965:2820249,568825,115847 +k1,214:20348610,16311965:-2820249 +) +(1,214:20348610,16311965:2820249,452978,115847 +k1,214:20348610,16311965:3277 +h1,214:23165582,16311965:0,411205,112570 +) +k1,214:23626289,16311965:283760 +k1,214:24387806,16311965:283760 +k1,214:25539918,16311965:283760 +k1,214:27298893,16311965:283760 +k1,214:27938514,16311965:283761 +k1,214:29448453,16311965:283760 +k1,214:30715253,16311965:283760 +k1,215:32583029,16311965:0 +) +(1,215:6630773,17153453:25952256,513147,134348 +g1,214:13548098,17153453 +g1,214:17109324,17153453 +g1,214:18327638,17153453 +g1,214:21502202,17153453 +k1,215:32583029,17153453:9680978 +g1,215:32583029,17153453 +) +v1,215:6630773,18519229:0,393216,0 +(1,221:6630773,19303896:25952256,1177883,589824 +k1,221:6040949,19303896:-589824 +(1,221:6040949,19303896:0,1177883,589824 +r1,257:33172853,19303896:27131904,1767707,589824 +k1,221:6040949,19303896:-27131904 +) +(1,221:6040949,19303896:27131904,1177883,589824 +[1,221:6630773,19303896:25952256,588059,0 +(1,220:6630773,19126355:25952256,410518,101187 +(1,217:6630773,19126355:0,0,0 +g1,217:6630773,19126355 +g1,217:6630773,19126355 +g1,217:6303093,19126355 +(1,217:6303093,19126355:0,0,0 +) +g1,217:6630773,19126355 +) +g1,220:7263065,19126355 +g1,220:8843794,19126355 +g1,220:9792231,19126355 +g1,220:10740668,19126355 +g1,220:12637542,19126355 +g1,220:13269834,19126355 +h1,220:15166708,19126355:0,0,0 +k1,220:32583028,19126355:17416320 +g1,220:32583028,19126355 +) +(1,220:6630773,19792533:25952256,404226,101187 +h1,220:6630773,19792533:0,0,0 +g1,220:9159939,19792533 +g1,220:9792231,19792533 +h1,220:10424522,19792533:0,0,0 +k1,220:32583030,19792533:22158508 +g1,220:32583030,19792533 +) +] +) +k1,221:32583029,19303896:-589824 +) +h1,221:6630773,19893720:0,0,0 +(1,224:6630773,21259496:25952256,513147,7863 +h1,223:6630773,21259496:983040,0,0 +g1,223:9004487,21259496 +g1,223:10637644,21259496 +g1,223:12945822,21259496 +g1,223:14348292,21259496 +k1,224:32583030,21259496:17078028 +g1,224:32583030,21259496 +) +v1,226:6630773,22449962:0,393216,0 +(1,233:6630773,23471607:25952256,1414861,196608 +g1,233:6630773,23471607 +g1,233:6630773,23471607 +g1,233:6434165,23471607 +(1,233:6434165,23471607:0,1414861,196608 +r1,257:32779637,23471607:26345472,1611469,196608 +k1,233:6434165,23471607:-26345472 +) +(1,233:6434165,23471607:26345472,1414861,196608 +[1,233:6630773,23471607:25952256,1218253,0 +(1,228:6630773,22663872:25952256,410518,101187 +(1,227:6630773,22663872:0,0,0 +g1,227:6630773,22663872 +g1,227:6630773,22663872 +g1,227:6303093,22663872 +(1,227:6303093,22663872:0,0,0 +) +g1,227:6630773,22663872 +) +k1,228:6630773,22663872:0 +h1,228:15166707,22663872:0,0,0 +k1,228:32583029,22663872:17416322 +g1,228:32583029,22663872 +) +(1,232:6630773,23395586:25952256,404226,76021 +(1,230:6630773,23395586:0,0,0 +g1,230:6630773,23395586 +g1,230:6630773,23395586 +g1,230:6303093,23395586 +(1,230:6303093,23395586:0,0,0 +) +g1,230:6630773,23395586 +) +g1,232:7579210,23395586 +g1,232:8843793,23395586 +h1,232:9159939,23395586:0,0,0 +k1,232:32583029,23395586:23423090 +g1,232:32583029,23395586 +) +] +) +g1,233:32583029,23471607 +g1,233:6630773,23471607 +g1,233:6630773,23471607 +g1,233:32583029,23471607 +g1,233:32583029,23471607 +) +h1,233:6630773,23668215:0,0,0 +(1,237:6630773,25033991:25952256,513147,134348 +h1,236:6630773,25033991:983040,0,0 +k1,236:9013157,25033991:202657 +k1,236:11388989,25033991:202658 +k1,236:12250938,25033991:202657 +k1,236:15508884,25033991:202658 +k1,236:16730626,25033991:202657 +k1,236:20449946,25033991:202658 +k1,236:23792433,25033991:202657 +k1,236:24611129,25033991:202658 +k1,236:25832871,25033991:202657 +k1,236:27018569,25033991:202658 +k1,236:28353688,25033991:202657 +k1,236:30745249,25033991:202658 +k1,236:31563944,25033991:202657 +k1,236:32583029,25033991:0 +) +(1,237:6630773,25875479:25952256,513147,126483 +k1,236:9448384,25875479:223696 +k1,236:10868767,25875479:223696 +k1,236:14582255,25875479:223696 +k1,236:18362590,25875479:223696 +k1,236:19577846,25875479:223696 +k1,236:20867814,25875479:223697 +k1,236:23167035,25875479:223696 +k1,236:24359353,25875479:223696 +k1,236:26848629,25875479:223696 +k1,236:28091410,25875479:223696 +k1,236:30844796,25875479:223696 +k1,236:32051532,25875479:223696 +k1,236:32583029,25875479:0 +) +(1,237:6630773,26716967:25952256,505283,126483 +k1,236:7921645,26716967:224601 +k1,236:10358741,26716967:224601 +k1,236:11234770,26716967:224601 +k1,236:12478457,26716967:224602 +k1,236:15330396,26716967:224601 +k1,236:16746442,26716967:224601 +k1,236:17990128,26716967:224601 +k1,236:20387903,26716967:224601 +k1,236:21744966,26716967:224601 +k1,236:23035838,26716967:224601 +k1,236:24008206,26716967:224602 +k1,236:26582928,26716967:224601 +k1,236:28850286,26716967:224601 +k1,236:30245360,26716967:224601 +k1,236:32583029,26716967:0 +) +(1,237:6630773,27558455:25952256,505283,126483 +k1,236:9123073,27558455:161184 +(1,236:9123073,27558455:0,452978,115847 +r1,257:11591610,27558455:2468537,568825,115847 +k1,236:9123073,27558455:-2468537 +) +(1,236:9123073,27558455:2468537,452978,115847 +k1,236:9123073,27558455:3277 +h1,236:11588333,27558455:0,411205,112570 +) +k1,236:11752794,27558455:161184 +k1,236:15403770,27558455:161184 +k1,236:16180992,27558455:161184 +k1,236:17361261,27558455:161184 +k1,236:19527191,27558455:161184 +k1,236:21069218,27558455:161183 +k1,236:23511710,27558455:161184 +k1,236:24288932,27558455:161184 +k1,236:26201893,27558455:161184 +k1,236:28060459,27558455:161184 +k1,236:29507459,27558455:161184 +k1,236:30320071,27558455:161184 +k1,237:32583029,27558455:0 +) +(1,237:6630773,28399943:25952256,513147,134348 +k1,236:8049941,28399943:176605 +k1,236:8582405,28399943:176604 +k1,236:10614334,28399943:176605 +k1,236:13141060,28399943:176605 +k1,236:14711616,28399943:176605 +(1,236:14711616,28399943:0,452978,122846 +r1,257:17531865,28399943:2820249,575824,122846 +k1,236:14711616,28399943:-2820249 +) +(1,236:14711616,28399943:2820249,452978,122846 +k1,236:14711616,28399943:3277 +h1,236:17528588,28399943:0,411205,112570 +) +k1,236:17708469,28399943:176604 +k1,236:19745641,28399943:176605 +k1,236:20573674,28399943:176605 +k1,236:21498045,28399943:176605 +k1,236:24024770,28399943:176604 +k1,236:24667336,28399943:176605 +k1,236:25712293,28399943:176605 +k1,236:27437514,28399943:176605 +k1,236:28072215,28399943:176604 +k1,236:28900248,28399943:176605 +k1,236:29824619,28399943:176605 +k1,236:32583029,28399943:0 +) +(1,237:6630773,29241431:25952256,505283,134348 +g1,236:7446040,29241431 +g1,236:8664354,29241431 +g1,236:11022339,29241431 +g1,236:12919606,29241431 +g1,236:14137920,29241431 +g1,236:16168225,29241431 +g1,236:16898951,29241431 +g1,236:18389895,29241431 +g1,236:20908443,29241431 +g1,236:21463532,29241431 +g1,236:24997233,29241431 +(1,236:24997233,29241431:0,452978,115847 +r1,257:27465770,29241431:2468537,568825,115847 +k1,236:24997233,29241431:-2468537 +) +(1,236:24997233,29241431:2468537,452978,115847 +k1,236:24997233,29241431:3277 +h1,236:27462493,29241431:0,411205,112570 +) +g1,236:27664999,29241431 +g1,236:28395725,29241431 +k1,237:32583029,29241431:1121530 +g1,237:32583029,29241431 +) +(1,239:6630773,30082919:25952256,513147,126483 +h1,238:6630773,30082919:983040,0,0 +k1,238:9487365,30082919:211559 +k1,238:11708913,30082919:211559 +k1,238:14518320,30082919:211560 +k1,238:15195840,30082919:211559 +k1,238:16577872,30082919:211559 +k1,238:18264646,30082919:211559 +k1,238:19246908,30082919:211559 +k1,238:19873298,30082919:211547 +k1,238:21915934,30082919:211560 +k1,238:23704945,30082919:211559 +k1,238:24532542,30082919:211559 +k1,238:25763186,30082919:211559 +k1,238:28057479,30082919:211559 +k1,238:29923823,30082919:211560 +k1,238:31267844,30082919:211559 +k1,238:32227169,30082919:211559 +k1,238:32583029,30082919:0 +) +(1,239:6630773,30924407:25952256,513147,126483 +k1,238:9483446,30924407:143415 +k1,238:10971003,30924407:143414 +k1,238:13157175,30924407:143415 +k1,238:14694541,30924407:143415 +k1,238:15608658,30924407:143414 +k1,238:18494099,30924407:143415 +k1,238:22125995,30924407:143415 +k1,238:24066406,30924407:143414 +k1,238:25777442,30924407:143415 +k1,238:27806328,30924407:143415 +k1,238:29120215,30924407:143414 +k1,238:30367912,30924407:143415 +k1,238:32583029,30924407:0 +) +(1,239:6630773,31765895:25952256,513147,134348 +k1,238:9532941,31765895:168006 +k1,238:10387109,31765895:168006 +k1,238:13645138,31765895:168006 +k1,238:15842139,31765895:168006 +k1,238:16693030,31765895:168006 +k1,238:19295043,31765895:168006 +k1,238:20857000,31765895:168006 +k1,238:22989121,31765895:168007 +k1,238:23840012,31765895:168006 +k1,238:26442025,31765895:168006 +k1,238:27296193,31765895:168006 +k1,238:28958420,31765895:168006 +k1,238:30448287,31765895:168006 +k1,238:31563944,31765895:168006 +k1,238:32583029,31765895:0 +) +(1,239:6630773,32607383:25952256,505283,126483 +g1,238:8661078,32607383 +g1,238:9476345,32607383 +g1,238:10694659,32607383 +g1,238:13804342,32607383 +g1,238:15855618,32607383 +g1,238:17963911,32607383 +k1,239:32583029,32607383:13432261 +g1,239:32583029,32607383 +) +(1,241:6630773,33448871:25952256,513147,134348 +h1,240:6630773,33448871:983040,0,0 +k1,240:9589437,33448871:192389 +k1,240:10137686,33448871:192389 +k1,240:12161151,33448871:192389 +k1,240:12885037,33448871:192389 +k1,240:15684448,33448871:192389 +k1,240:16895922,33448871:192389 +k1,240:19247067,33448871:192389 +k1,240:20543738,33448871:192389 +k1,240:21483894,33448871:192390 +k1,240:23487698,33448871:192389 +k1,240:24331515,33448871:192389 +k1,240:24879764,33448871:192389 +k1,240:26298332,33448871:192389 +k1,240:27473761,33448871:192389 +k1,240:29993333,33448871:192389 +k1,240:30845014,33448871:192389 +k1,240:32583029,33448871:0 +) +(1,241:6630773,34290359:25952256,513147,134348 +k1,240:8907894,34290359:201596 +k1,240:9725529,34290359:201597 +k1,240:10946210,34290359:201596 +k1,240:13741721,34290359:201596 +k1,240:14413210,34290359:201596 +k1,240:15146304,34290359:201597 +k1,240:16633716,34290359:201596 +k1,240:18229918,34290359:201596 +k1,240:19082942,34290359:201596 +k1,240:20384233,34290359:201597 +k1,240:21000670,34290359:201594 +k1,240:22596217,34290359:201596 +k1,240:23816898,34290359:201596 +k1,240:24433335,34290359:201594 +k1,240:26466007,34290359:201596 +k1,240:27650643,34290359:201596 +k1,240:28538402,34290359:201597 +k1,240:29510701,34290359:201596 +k1,240:32583029,34290359:0 +) +(1,241:6630773,35131847:25952256,505283,134348 +k1,240:9242455,35131847:197336 +k1,240:10052553,35131847:197336 +k1,240:11268974,35131847:197336 +k1,240:14520288,35131847:197336 +k1,240:16963543,35131847:197336 +k1,240:18663620,35131847:197336 +k1,240:19543841,35131847:197336 +k1,240:26571339,35131847:197336 +k1,240:31016719,35131847:197336 +k1,241:32583029,35131847:0 +) +(1,241:6630773,35973335:25952256,513147,126483 +k1,240:8513269,35973335:176594 +k1,240:9975680,35973335:176595 +k1,240:11719895,35973335:176594 +k1,240:13399230,35973335:176594 +k1,240:15910873,35973335:176595 +k1,240:17284154,35973335:176594 +k1,240:18844868,35973335:176594 +k1,240:20193901,35973335:176594 +k1,240:22671465,35973335:176595 +k1,240:24508741,35973335:176594 +k1,240:28175127,35973335:176594 +k1,240:30774588,35973335:176595 +k1,240:31563944,35973335:176594 +k1,240:32583029,35973335:0 +) +(1,241:6630773,36814823:25952256,505283,126483 +g1,240:7694422,36814823 +g1,240:9396392,36814823 +g1,240:12755112,36814823 +g1,240:15355580,36814823 +g1,240:17506471,36814823 +g1,240:19148147,36814823 +g1,240:19960138,36814823 +g1,240:21178452,36814823 +g1,240:21792524,36814823 +g1,240:25151244,36814823 +k1,241:32583029,36814823:4856875 +g1,241:32583029,36814823 +) +v1,241:6630773,38180599:0,393216,0 +(1,246:6630773,38377207:25952256,589824,589824 +k1,246:6040949,38377207:-589824 +(1,246:6040949,38377207:0,589824,589824 +r1,257:33172853,38377207:27131904,1179648,589824 +k1,246:6040949,38377207:-27131904 +) +(1,246:6040949,38377207:27131904,589824,589824 +[1,246:6630773,38377207:25952256,-78119,0 +(1,245:6630773,38865844:25952256,410518,101187 +(1,243:6630773,38865844:0,0,0 +g1,243:6630773,38865844 +g1,243:6630773,38865844 +g1,243:6303093,38865844 +(1,243:6303093,38865844:0,0,0 +) +g1,243:6630773,38865844 +) +k1,245:6630773,38865844:0 +g1,245:7263065,38865844 +g1,245:9792231,38865844 +h1,245:15166708,38865844:0,0,0 +k1,245:32583028,38865844:17416320 +g1,245:32583028,38865844 +) +] +) +k1,246:32583029,38377207:-589824 +) +h1,246:6630773,38967031:0,0,0 +(1,249:6630773,40332807:25952256,513147,134348 +h1,248:6630773,40332807:983040,0,0 +k1,248:9098103,40332807:230586 +k1,248:10432971,40332807:230586 +k1,248:12241009,40332807:230586 +k1,248:13242297,40332807:230585 +k1,248:16526861,40332807:230586 +k1,248:19507338,40332807:230586 +k1,248:21191512,40332807:230586 +k1,248:22989719,40332807:230586 +k1,248:24239390,40332807:230586 +k1,248:26228961,40332807:230585 +k1,248:28256544,40332807:230586 +k1,248:29103168,40332807:230586 +k1,248:31931601,40332807:230586 +k1,248:32583029,40332807:0 +) +(1,249:6630773,41174295:25952256,513147,126483 +k1,248:7895093,41174295:146276 +k1,248:9244611,41174295:146277 +k1,248:12724048,41174295:146276 +k1,248:14067011,41174295:146276 +k1,248:16372043,41174295:146276 +k1,248:17650782,41174295:146277 +k1,248:18544824,41174295:146276 +k1,248:21041221,41174295:146276 +k1,248:21838925,41174295:146276 +k1,248:23004287,41174295:146277 +k1,248:24653304,41174295:146276 +k1,248:27393495,41174295:146276 +k1,248:28017528,41174295:146276 +k1,248:29334278,41174295:146277 +k1,248:31436804,41174295:146276 +k1,248:32583029,41174295:0 +) +(1,249:6630773,42015783:25952256,513147,134348 +g1,248:7481430,42015783 +g1,248:9071333,42015783 +g1,248:10289647,42015783 +g1,248:12647632,42015783 +g1,248:13498289,42015783 +g1,248:14053378,42015783 +g1,248:15409317,42015783 +g1,248:16701031,42015783 +g1,248:20394640,42015783 +g1,248:22329262,42015783 +g1,248:23547576,42015783 +g1,248:26800783,42015783 +g1,248:29749903,42015783 +k1,249:32583029,42015783:575411 +g1,249:32583029,42015783 +) +v1,249:6630773,43381559:0,393216,0 +(1,254:6630773,43578167:25952256,589824,589824 +k1,254:6040949,43578167:-589824 +(1,254:6040949,43578167:0,589824,589824 +r1,257:33172853,43578167:27131904,1179648,589824 +k1,254:6040949,43578167:-27131904 +) +(1,254:6040949,43578167:27131904,589824,589824 +[1,254:6630773,43578167:25952256,-78119,0 +(1,253:6630773,44066804:25952256,410518,101187 +(1,251:6630773,44066804:0,0,0 +g1,251:6630773,44066804 +g1,251:6630773,44066804 +g1,251:6303093,44066804 +(1,251:6303093,44066804:0,0,0 +) +g1,251:6630773,44066804 +) +k1,253:6630773,44066804:0 +g1,253:7263065,44066804 +g1,253:9792231,44066804 +g1,253:15482854,44066804 +g1,253:16115146,44066804 +h1,253:20225040,44066804:0,0,0 +k1,253:32583029,44066804:12357989 +g1,253:32583029,44066804 +) +] +) +k1,254:32583029,43578167:-589824 +) +h1,254:6630773,44167991:0,0,0 +(1,257:6630773,45533767:25952256,513147,134348 +h1,256:6630773,45533767:983040,0,0 +k1,256:10634749,45533767:244176 +k1,256:11410422,45533767:244176 +k1,256:13008572,45533767:244176 +k1,256:15229969,45533767:244176 +k1,256:17172183,45533767:244176 +k1,256:18435445,45533767:244177 +k1,256:20510697,45533767:244176 +k1,256:21286370,45533767:244176 +k1,256:23477621,45533767:244176 +k1,256:26566060,45533767:244176 +k1,256:28499754,45533767:244176 +k1,256:32227169,45533767:244176 +k1,256:32583029,45533767:0 +) +] +(1,257:32583029,45706769:0,0,0 +g1,257:32583029,45706769 +) +) +] +(1,257:6630773,47279633:25952256,0,0 +h1,257:6630773,47279633:25952256,0,0 +) +] +(1,257:4262630,4025873:0,0,0 +[1,257:-473656,4025873:0,0,0 +(1,257:-473656,-710413:0,0,0 +(1,257:-473656,-710413:0,0,0 +g1,257:-473656,-710413 +) +g1,257:-473656,-710413 +) +] +) +] +!22662 +}8 +!10 +{9 +[1,283:4262630,47279633:28320399,43253760,0 +(1,283:4262630,4025873:0,0,0 +[1,283:-473656,4025873:0,0,0 +(1,283:-473656,-710413:0,0,0 +(1,283:-473656,-644877:0,0,0 +k1,283:-473656,-644877:-65536 ) +(1,283:-473656,4736287:0,0,0 +k1,283:-473656,4736287:5209943 ) -(183,35:12647309,42683153:501378,78643,0 -(183,35:12811163,42683153:173670,78643,0 +g1,283:-473656,-710413 ) +] ) -(183,35:13148687,42683153:501378,78643,0 -(183,35:13312541,42683153:173670,78643,0 +[1,283:6630773,47279633:25952256,43253760,0 +[1,283:6630773,4812305:25952256,786432,0 +(1,283:6630773,4812305:25952256,505283,134348 +(1,283:6630773,4812305:25952256,505283,134348 +g1,283:3078558,4812305 +[1,283:3078558,4812305:0,0,0 +(1,283:3078558,2439708:0,1703936,0 +k1,283:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,283:2537886,2439708:1179648,16384,0 ) +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,283:3078558,1915420:16384,1179648,0 ) -(183,35:13650065,42683153:501378,78643,0 -(183,35:13813919,42683153:173670,78643,0 +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) +] ) -(183,35:14151443,42683153:501378,78643,0 -(183,35:14315297,42683153:173670,78643,0 ) ) -(183,35:14652821,42683153:501378,78643,0 -(183,35:14816675,42683153:173670,78643,0 +] +[1,283:3078558,4812305:0,0,0 +(1,283:3078558,2439708:0,1703936,0 +g1,283:29030814,2439708 +g1,283:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,283:36151628,1915420:16384,1179648,0 ) +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) -(183,35:15154199,42683153:501378,78643,0 -(183,35:15318053,42683153:173670,78643,0 +] ) +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,283:37855564,2439708:1179648,16384,0 ) -(183,35:15655577,42683153:501378,78643,0 -(183,35:15819431,42683153:173670,78643,0 ) +k1,283:3078556,2439708:-34777008 ) -(183,35:16156955,42683153:501378,78643,0 -(183,35:16320809,42683153:173670,78643,0 +] +[1,283:3078558,4812305:0,0,0 +(1,283:3078558,49800853:0,16384,2228224 +k1,283:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,283:2537886,49800853:1179648,16384,0 ) +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,283:3078558,51504789:16384,1179648,0 ) -(183,35:16658333,42683153:501378,78643,0 -(183,35:16822187,42683153:173670,78643,0 +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) +] ) -(183,35:17159711,42683153:501378,78643,0 -(183,35:17323565,42683153:173670,78643,0 ) ) -(183,35:17661089,42683153:501378,78643,0 -(183,35:17824943,42683153:173670,78643,0 +] +[1,283:3078558,4812305:0,0,0 +(1,283:3078558,49800853:0,16384,2228224 +g1,283:29030814,49800853 +g1,283:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,283:36151628,51504789:16384,1179648,0 +) +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 +) +] +) +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,283:37855564,49800853:1179648,16384,0 +) +) +k1,283:3078556,49800853:-34777008 +) +] +g1,283:6630773,4812305 +k1,283:18771974,4812305:11742742 +g1,283:20158715,4812305 +g1,283:20807521,4812305 +g1,283:24121676,4812305 +g1,283:28605649,4812305 +g1,283:30015328,4812305 +) +) +] +[1,283:6630773,45706769:25952256,40108032,0 +(1,283:6630773,45706769:25952256,40108032,0 +(1,283:6630773,45706769:0,0,0 +g1,283:6630773,45706769 +) +[1,283:6630773,45706769:25952256,40108032,0 +(1,257:6630773,6254097:25952256,505283,134348 +k1,256:8907548,6254097:272029 +k1,256:9862462,6254097:272029 +k1,256:13582340,6254097:272029 +k1,256:15552407,6254097:272029 +k1,256:18006130,6254097:272029 +k1,256:20444124,6254097:272029 +k1,256:21872862,6254097:272028 +k1,256:24432098,6254097:272029 +k1,256:26583044,6254097:272029 +k1,256:27506501,6254097:272029 +k1,256:28896574,6254097:272029 +k1,256:30058582,6254097:272029 +k1,256:32583029,6254097:0 +) +(1,257:6630773,7095585:25952256,609711,134348 +k1,256:7993282,7095585:205799 +k1,256:8881967,7095585:205800 +k1,256:9443626,7095585:205799 +k1,256:10782544,7095585:205800 +k1,256:14505005,7095585:205799 +k1,256:15323566,7095585:205799 +k1,256:15885226,7095585:205800 +k1,256:17690103,7095585:205799 +k1,256:19276746,7095585:205799 +k1,256:20586828,7095585:205800 +k1,256:21540393,7095585:205799 +k1,256:23323645,7095585:205800 +k1,256:25264837,7095585:205799 +k1,256:26489721,7095585:205799 +k1,256:28413875,7095585:205800 +(1,256:30552315,7095585:311689,609711,0 +$1,256:30552315,7095585 +(1,256:30552315,6820304:311689,334430,0 +) +$1,256:30864004,7095585 +) +k1,256:31069803,7095585:205799 +k1,256:32583029,7095585:0 +) +(1,257:6630773,7937073:25952256,505283,134348 +k1,256:8714584,7937073:227831 +k1,256:12546895,7937073:227831 +k1,256:13793811,7937073:227831 +k1,256:16071608,7937073:227831 +k1,256:16915477,7937073:227831 +k1,256:18162393,7937073:227831 +k1,256:19558732,7937073:227832 +k1,256:20437991,7937073:227831 +k1,256:21413588,7937073:227831 +k1,256:24648211,7937073:227831 +k1,256:25558927,7937073:227831 +k1,256:28597597,7937073:227831 +k1,256:29844513,7937073:227831 +k1,256:31298523,7937073:227831 +k1,256:32583029,7937073:0 +) +(1,257:6630773,8778561:25952256,513147,126483 +k1,256:8050355,8778561:262872 +k1,256:10269477,8778561:262872 +k1,256:11678575,8778561:262873 +k1,256:12592875,8778561:262872 +k1,256:13973791,8778561:262872 +k1,256:15462842,8778561:262872 +k1,256:18314387,8778561:262873 +k1,256:19803438,8778561:262872 +k1,256:21170592,8778561:262872 +k1,256:22181230,8778561:262872 +k1,256:23765963,8778561:262872 +k1,256:24688128,8778561:262873 +k1,256:25306860,8778561:262872 +k1,256:26911909,8778561:262872 +k1,256:27530641,8778561:262872 +k1,256:29676363,8778561:262873 +k1,256:31281412,8778561:262872 +k1,256:32227169,8778561:262872 +k1,256:32583029,8778561:0 +) +(1,257:6630773,9620049:25952256,513147,134348 +k1,256:8773851,9620049:250398 +k1,256:9683541,9620049:250398 +k1,256:11606418,9620049:250398 +k1,256:12542977,9620049:250397 +k1,256:14182083,9620049:250398 +k1,256:15118643,9620049:250398 +k1,256:15827138,9620049:250398 +k1,256:16609033,9620049:250398 +k1,256:20830913,9620049:250398 +k1,256:23002170,9620049:250397 +k1,256:24449255,9620049:250398 +k1,256:28703903,9620049:250398 +k1,256:32051532,9620049:250398 +k1,256:32583029,9620049:0 +) +(1,257:6630773,10461537:25952256,505283,134348 +g1,256:10134983,10461537 +g1,256:10985640,10461537 +g1,256:13892161,10461537 +g1,256:15110475,10461537 +g1,256:17028058,10461537 +g1,256:19365727,10461537 +g1,256:20180994,10461537 +k1,257:32583029,10461537:9804188 +g1,257:32583029,10461537 +) +(1,258:6630773,12552797:25952256,555811,139132 +(1,258:6630773,12552797:2450326,534184,12975 +g1,258:6630773,12552797 +g1,258:9081099,12552797 +) +g1,258:10960475,12552797 +g1,258:11910616,12552797 +g1,258:14022842,12552797 +g1,258:14648580,12552797 +k1,258:32583029,12552797:15848897 +g1,258:32583029,12552797 +) +(1,262:6630773,13787501:25952256,513147,134348 +k1,261:7705781,13787501:257119 +k1,261:9356852,13787501:257120 +k1,261:10745779,13787501:257120 +k1,261:12388984,13787501:257119 +k1,261:13305396,13787501:257120 +k1,261:15993901,13787501:257119 +k1,261:19013363,13787501:257119 +k1,261:22932635,13787501:257120 +k1,261:24526688,13787501:257119 +k1,261:25531574,13787501:257120 +k1,261:28802039,13787501:257120 +k1,261:29820686,13787501:257119 +k1,262:32583029,13787501:0 +) +(1,262:6630773,14628989:25952256,513147,134348 +k1,261:7328100,14628989:282484 +k1,261:9495482,14628989:282567 +k1,261:10405884,14628989:282567 +k1,261:13195204,14628989:282568 +k1,261:14496856,14628989:282567 +k1,261:17763934,14628989:282568 +k1,261:19733398,14628989:282567 +k1,261:20698850,14628989:282567 +k1,261:22167620,14628989:282568 +k1,261:23109479,14628989:282567 +k1,261:27227868,14628989:282567 +k1,261:28642898,14628989:282568 +k1,261:30211281,14628989:282567 +k1,261:32583029,14628989:0 +) +(1,262:6630773,15470477:25952256,513147,126483 +k1,261:7640355,15470477:200212 +k1,261:9170949,15470477:200213 +k1,261:12384506,15470477:200212 +k1,261:13755191,15470477:200212 +k1,261:14946964,15470477:200213 +k1,261:16431682,15470477:200212 +k1,261:17650979,15470477:200212 +k1,261:21367854,15470477:200213 +k1,261:22700528,15470477:200212 +k1,261:24497197,15470477:200212 +k1,261:25383572,15470477:200213 +k1,261:30248637,15470477:200212 +k1,261:32583029,15470477:0 +) +(1,262:6630773,16311965:25952256,513147,134348 +g1,261:8552944,16311965 +g1,261:9771258,16311965 +g1,261:11305455,16311965 +g1,261:14489194,16311965 +g1,261:15549566,16311965 +g1,261:16919268,16311965 +g1,261:18110057,16311965 +g1,261:21320665,16311965 +g1,261:24282237,16311965 +k1,262:32583029,16311965:4409920 +g1,262:32583029,16311965 +) +(1,264:7679349,17577845:24903680,513147,134348 +(1,263:7679349,17577845:13945404,513147,126483 +g1,263:6630773,17577845 +g1,263:6630773,17577845 +g1,263:6303093,17577845 +(1,263:6303093,17577845:14993980,513147,126483 +g1,263:6630773,17577845 +g1,263:7336595,17577845 +g1,263:8742342,17577845 +g1,263:9503215,17577845 +g1,263:11237953,17577845 +g1,263:14019301,17577845 +g1,263:15697022,17577845 +g1,263:18184768,17577845 +) +g1,263:21624753,17577845 +) +k1,263:23180687,17577845:284536 +k1,263:25421472,17577845:284535 +k1,263:26934808,17577845:284536 +k1,263:29148724,17577845:284536 +k1,263:29789119,17577845:284535 +k1,263:31356850,17577845:284536 +k1,263:32583029,17577845:0 +) +(1,264:7679349,18419333:24903680,513147,134348 +k1,263:8879723,18419333:217334 +k1,263:10288501,18419333:217333 +k1,263:12120642,18419333:217334 +k1,263:13357061,18419333:217334 +k1,263:15457243,18419333:217333 +k1,263:17336570,18419333:217334 +k1,263:18169941,18419333:217333 +k1,263:19406360,18419333:217334 +k1,263:21706428,18419333:217334 +k1,263:23115206,18419333:217333 +k1,263:24766468,18419333:217334 +k1,263:26175247,18419333:217334 +k1,263:27024347,18419333:217333 +k1,263:28622525,18419333:217334 +k1,263:29371355,18419333:217333 +k1,263:31540351,18419333:217334 +k1,264:32583029,18419333:0 +) +(1,264:7679349,19260821:24903680,505283,7863 +k1,264:32583029,19260821:23009034 +g1,264:32583029,19260821 +) +(1,265:7679349,20576649:24903680,513147,126483 +(1,264:7679349,20576649:14606007,513147,126483 +g1,264:6630773,20576649 +g1,264:6630773,20576649 +g1,264:6303093,20576649 +(1,264:6303093,20576649:15654583,513147,126483 +g1,264:6630773,20576649 +g1,264:7336595,20576649 +g1,264:8742342,20576649 +g1,264:9503215,20576649 +g1,264:13473386,20576649 +g1,264:16254734,20576649 +g1,264:17932455,20576649 +g1,264:19188780,20576649 +) +g1,264:22285356,20576649 +) +k1,264:23940533,20576649:383779 +k1,264:26280562,20576649:383779 +k1,264:28279148,20576649:383779 +k1,264:29682012,20576649:383779 +k1,264:31896867,20576649:383779 +k1,264:32583029,20576649:0 +) +(1,265:7679349,21418137:24903680,505283,134348 +k1,264:9965737,21418137:257393 +k1,264:11295298,21418137:257392 +k1,264:13734385,21418137:257393 +k1,264:14623544,21418137:257392 +k1,264:16236222,21418137:257393 +k1,264:17255142,21418137:257392 +k1,264:19041490,21418137:257393 +k1,264:19985044,21418137:257392 +k1,264:21399147,21418137:257393 +k1,264:22188036,21418137:257392 +k1,264:24703144,21418137:257393 +k1,264:25592303,21418137:257392 +k1,264:27230540,21418137:257393 +k1,264:28019429,21418137:257392 +k1,264:30564029,21418137:257393 +k1,264:32370037,21418137:257392 +k1,264:32583029,21418137:0 +) +(1,265:7679349,22259625:24903680,505283,7863 +k1,265:32583029,22259625:23914742 +g1,265:32583029,22259625 +) +(1,266:7679349,23575454:24903680,513147,134348 +(1,265:7679349,23575454:9661971,513147,134348 +g1,265:6630773,23575454 +g1,265:6630773,23575454 +g1,265:6303093,23575454 +(1,265:6303093,23575454:10710547,513147,134348 +g1,265:6630773,23575454 +g1,265:7336595,23575454 +g1,265:8742342,23575454 +g1,265:9503215,23575454 +g1,265:11985718,23575454 +g1,265:14657621,23575454 +) +g1,265:17341320,23575454 +) +k1,265:19145672,23575454:192822 +k1,265:19804455,23575454:192822 +k1,265:21153986,23575454:192821 +k1,265:21878305,23575454:192822 +k1,265:23806520,23575454:192822 +k1,265:26597189,23575454:192822 +k1,265:27946720,23575454:192821 +k1,265:29243824,23575454:192822 +k1,265:30822732,23575454:192822 +k1,266:32583029,23575454:0 +) +(1,266:7679349,24416942:24903680,505283,134348 +k1,265:9840878,24416942:192172 +k1,265:10645811,24416942:192171 +k1,265:11857068,24416942:192172 +k1,265:14469484,24416942:192171 +k1,265:17236566,24416942:192172 +k1,265:18246626,24416942:192171 +k1,265:19609271,24416942:192172 +k1,265:21981825,24416942:192171 +k1,265:23896939,24416942:192172 +k1,265:24850638,24416942:192171 +k1,265:26546861,24416942:192172 +k1,265:30102340,24416942:192171 +k1,265:31464985,24416942:192172 +k1,265:32583029,24416942:0 +) +(1,266:7679349,25258430:24903680,505283,126483 +k1,265:8501639,25258430:209528 +k1,265:9730252,25258430:209528 +k1,265:12360025,25258430:209528 +k1,265:13101049,25258430:209527 +k1,265:15121992,25258430:209528 +k1,265:15982948,25258430:209528 +k1,265:17211561,25258430:209528 +k1,265:20532738,25258430:209528 +k1,265:21370101,25258430:209528 +k1,265:24177476,25258430:209528 +k1,265:25406088,25258430:209527 +k1,265:27953285,25258430:209528 +k1,265:28694310,25258430:209528 +k1,265:31966991,25258430:209528 +k1,265:32583029,25258430:0 +) +(1,266:7679349,26099918:24903680,505283,126483 +k1,265:8658550,26099918:190803 +k1,265:10179735,26099918:190804 +k1,265:12082994,26099918:190803 +k1,265:13465242,26099918:190803 +k1,265:14272084,26099918:190804 +k1,265:15666128,26099918:190803 +k1,265:17395716,26099918:190803 +k1,265:18743230,26099918:190804 +k1,265:20038315,26099918:190803 +k1,265:22049709,26099918:190804 +k1,265:23372319,26099918:190803 +k1,265:26317600,26099918:190803 +k1,265:30439253,26099918:190804 +k1,265:31821501,26099918:190803 +k1,265:32583029,26099918:0 +) +(1,266:7679349,26941406:24903680,505283,134348 +k1,265:10343013,26941406:207375 +k1,265:11359758,26941406:207375 +k1,265:11922993,26941406:207375 +k1,265:14003387,26941406:207375 +k1,265:15728576,26941406:207375 +k1,265:17445901,26941406:207375 +k1,265:18844721,26941406:207375 +k1,265:20763241,26941406:207375 +k1,265:22609671,26941406:207375 +k1,265:23468474,26941406:207375 +k1,265:25531829,26941406:207375 +k1,265:26758289,26941406:207375 +k1,265:27380499,26941406:207367 +k1,265:30008119,26941406:207375 +k1,265:32583029,26941406:0 +) +(1,266:7679349,27782894:24903680,505283,126483 +k1,265:8637005,27782894:274771 +k1,265:9930860,27782894:274770 +k1,265:12255597,27782894:274771 +k1,265:15144598,27782894:274770 +k1,265:16035407,27782894:274771 +k1,265:17329263,27782894:274771 +k1,265:19513097,27782894:274770 +k1,265:21500324,27782894:274771 +k1,265:22402929,27782894:274770 +k1,265:23880941,27782894:274771 +k1,265:25393687,27782894:274771 +k1,265:26825167,27782894:274770 +k1,265:28204220,27782894:274771 +k1,265:30121322,27782894:274770 +k1,265:30751953,27782894:274771 +k1,265:32583029,27782894:0 +) +(1,266:7679349,28624382:24903680,513147,134348 +k1,265:8669223,28624382:228346 +k1,265:11397768,28624382:228346 +k1,265:12817559,28624382:228346 +k1,265:15399958,28624382:228346 +k1,265:17195925,28624382:228346 +k1,265:18443356,28624382:228346 +k1,265:20918933,28624382:228347 +k1,265:21798707,28624382:228346 +k1,265:23485884,28624382:228346 +k1,265:25545306,28624382:228346 +k1,265:26930362,28624382:228346 +k1,265:28177793,28624382:228346 +k1,265:29594962,28624382:228346 +k1,265:31107814,28624382:228346 +k1,265:32583029,28624382:0 +) +(1,266:7679349,29465870:24903680,505283,126483 +g1,265:10243117,29465870 +g1,265:11128508,29465870 +g1,265:12498210,29465870 +k1,266:32583030,29465870:17594452 +g1,266:32583030,29465870 +) +v1,269:6630773,30731750:0,393216,0 +(1,277:6630773,39490807:25952256,9152273,0 +g1,277:6630773,39490807 +g1,277:6303093,39490807 +r1,283:6401397,39490807:98304,9152273,0 +g1,277:6600626,39490807 +g1,277:6797234,39490807 +[1,277:6797234,39490807:25785795,9152273,0 +(1,271:6797234,31622516:25785795,1283982,196608 +(1,269:6797234,31622516:0,1283982,196608 +r1,283:8400153,31622516:1602919,1480590,196608 +k1,269:6797234,31622516:-1602919 +) +(1,269:6797234,31622516:1602919,1283982,196608 +) +k1,269:8623187,31622516:223034 +k1,269:9606440,31622516:223035 +k1,269:11159855,31622516:223034 +k1,269:12553362,31622516:223034 +k1,269:14956780,31622516:223035 +k1,269:15927580,31622516:223034 +k1,269:18642948,31622516:223034 +k1,269:21226589,31622516:223034 +k1,269:22843575,31622516:223035 +k1,269:23481428,31622516:223010 +k1,269:24355890,31622516:223034 +k1,269:25326691,31622516:223035 +k1,269:26858479,31622516:223034 +k1,269:27732941,31622516:223034 +k1,269:29570783,31622516:223035 +k1,269:31252648,31622516:223034 +k1,269:32583029,31622516:0 +) +(1,271:6797234,32464004:25785795,473825,126483 +k1,271:32583028,32464004:23781048 +g1,271:32583028,32464004 +) +(1,272:8940261,33829780:22856336,513147,126483 +(1,271:8940261,33829780:0,477757,0 +g1,271:8940261,33829780 +g1,271:7629541,33829780 +g1,271:7629541,33829780 +(1,271:7629541,33829780:1310720,477757,0 +(1,271:7629541,33829780:1048576,477757,0 +g1,271:7891685,33829780 +(1,271:7891685,33829780:572129,477757,0 +g1,271:7891685,33829780 +) +) +) +g1,271:8940261,33829780 +) +k1,271:11255700,33829780:264162 +k1,271:11875721,33829780:264161 +k1,271:13423078,33829780:264162 +k1,271:14102017,33829780:264096 +k1,271:16197255,33829780:264162 +k1,271:17284548,33829780:264161 +k1,271:20146557,33829780:264162 +k1,271:21978339,33829780:264161 +k1,271:23261586,33829780:264162 +k1,271:24638549,33829780:264162 +k1,271:26873378,33829780:264161 +k1,271:28306047,33829780:264162 +k1,271:30088022,33829780:264161 +k1,271:31035069,33829780:264162 +k1,271:31796597,33829780:0 +) +(1,272:8940261,34671268:22856336,513147,134348 +g1,271:11168485,34671268 +g1,271:12873731,34671268 +g1,271:13641157,34671268 +g1,271:15333296,34671268 +g1,271:16100722,34671268 +k1,272:31796597,34671268:14522781 +g1,272:31796597,34671268 +) +(1,273:8940261,35774900:22856336,513147,126483 +(1,272:8940261,35774900:0,485622,0 +g1,272:8940261,35774900 +g1,272:7629541,35774900 +g1,272:7629541,35774900 +(1,272:7629541,35774900:1310720,485622,0 +(1,272:7629541,35774900:1048576,485622,0 +g1,272:7891685,35774900 +(1,272:7891685,35774900:572129,485622,0 +g1,272:7891685,35774900 +) +) +) +g1,272:8940261,35774900 +) +g1,272:10555068,35774900 +g1,272:11773382,35774900 +g1,272:12955651,35774900 +g1,272:13841042,35774900 +k1,273:31796597,35774900:10668607 +g1,273:31796597,35774900 +) +(1,274:8940261,36878532:22856336,505283,126483 +(1,273:8940261,36878532:0,485622,11795 +g1,273:8940261,36878532 +g1,273:7629541,36878532 +g1,273:7629541,36878532 +(1,273:7629541,36878532:1310720,485622,11795 +(1,273:7629541,36878532:1048576,485622,11795 +g1,273:7891685,36878532 +(1,273:7891685,36878532:572129,485622,11795 +g1,273:7891685,36878532 +) +) +) +g1,273:8940261,36878532 +) +k1,273:10246069,36878532:156962 +k1,273:11422116,36878532:156962 +k1,273:13488143,36878532:156963 +k1,273:15183890,36878532:156962 +k1,273:15956890,36878532:156962 +k1,273:18538029,36878532:156962 +k1,273:19346419,36878532:156962 +k1,273:20889467,36878532:156962 +k1,273:22738570,36878532:156963 +k1,273:23310333,36878532:156920 +k1,273:26957087,36878532:156962 +k1,273:28305494,36878532:156962 +k1,274:31796597,36878532:0 +k1,274:31796597,36878532:0 +) +(1,275:8940261,37982164:22856336,505283,7863 +(1,274:8940261,37982164:0,481690,0 +g1,274:8940261,37982164 +g1,274:7629541,37982164 +g1,274:7629541,37982164 +(1,274:7629541,37982164:1310720,481690,0 +(1,274:7629541,37982164:1048576,481690,0 +g1,274:7891685,37982164 +(1,274:7891685,37982164:572129,481690,0 +g1,274:7891685,37982164 +) +) +) +g1,274:8940261,37982164 +) +g1,274:10416787,37982164 +g1,274:13808930,37982164 +k1,275:31796597,37982164:14324204 +g1,275:31796597,37982164 +) +(1,276:8940261,39085796:22856336,513147,11795 +(1,275:8940261,39085796:0,473825,11795 +g1,275:8940261,39085796 +g1,275:7629541,39085796 +g1,275:7629541,39085796 +(1,275:7629541,39085796:1310720,473825,11795 +(1,275:7629541,39085796:1048576,473825,11795 +g1,275:7891685,39085796 +(1,275:7891685,39085796:572129,473825,11795 +g1,275:7891685,39085796 +) +) +) +g1,275:8940261,39085796 +) +g1,275:11245817,39085796 +g1,275:12464131,39085796 +g1,275:14546209,39085796 +k1,276:31796597,39085796:16093678 +g1,276:31796597,39085796 +) +] +g1,277:32583029,39490807 +) +h1,277:6630773,39490807:0,0,0 +(1,279:6630773,41582067:25952256,555811,139132 +(1,279:6630773,41582067:2450326,534184,0 +g1,279:6630773,41582067 +g1,279:9081099,41582067 +) +g1,279:10697348,41582067 +g1,279:12674045,41582067 +g1,279:13624186,41582067 +g1,279:14715623,41582067 +g1,279:20593810,41582067 +g1,279:21543951,41582067 +k1,279:32583029,41582067:8609658 +g1,279:32583029,41582067 +) +(1,283:6630773,42816771:25952256,505283,126483 +k1,282:8606028,42816771:192020 +k1,282:9968522,42816771:192021 +k1,282:11775349,42816771:192020 +k1,282:12323230,42816771:192021 +k1,282:14519996,42816771:192020 +k1,282:15170113,42816771:192020 +k1,282:15893631,42816771:192021 +k1,282:17941631,42816771:192020 +k1,282:20663342,42816771:192021 +k1,282:22025835,42816771:192020 +k1,282:23766471,42816771:192020 +k1,282:24609920,42816771:192021 +k1,282:28004684,42816771:192020 +k1,282:29745321,42816771:192021 +k1,282:31107814,42816771:192020 +k1,282:32583029,42816771:0 +) +(1,283:6630773,43658259:25952256,513147,126483 +k1,282:8438215,43658259:229990 +k1,282:9351091,43658259:229991 +k1,282:10751554,43658259:229990 +k1,282:12530160,43658259:229990 +k1,282:14701327,43658259:229991 +k1,282:15950402,43658259:229990 +k1,282:18011468,43658259:229990 +k1,282:18854221,43658259:229991 +k1,282:19440071,43658259:229990 +k1,282:21123650,43658259:229990 +k1,282:22952718,43658259:229990 +k1,282:23810544,43658259:229991 +k1,282:25896514,43658259:229990 +k1,282:27667255,43658259:229990 +k1,282:28916331,43658259:229991 +k1,282:30977397,43658259:229990 +k1,282:32583029,43658259:0 +) +(1,256:6630773,45040591:25952256,506878,101187 +(1,256:6630773,45040591:943720,506878,0 +k1,256:7302650,45040591:671877 +(1,256:7302650,45040591:271843,506878,0 +$1,256:7302650,45040591 +(1,256:7302650,44820367:271843,286654,0 +) +$1,256:7574493,45040591 +) +) +(1,256:7574493,45040591:0,435814,0 +r1,283:7574493,45040591:0,435814,0 +) +k1,256:8101304,45040591:144605 +k1,256:9182287,45040591:144605 +k1,256:10200880,45040591:144605 +k1,256:10630173,45040591:144605 +k1,256:12984651,45040591:144604 +k1,256:13999036,45040591:144591 +k1,256:14689948,45040591:144604 +k1,256:16361804,45040591:144605 +k1,256:17621570,45040591:144605 +k1,256:18382738,45040591:144605 +k1,256:18859202,45040591:144590 +k1,256:20568807,45040591:144605 +k1,256:21528680,45040591:144605 +k1,256:23367260,45040591:144605 +k1,256:24417835,45040591:144605 +k1,256:25791371,45040591:144605 +k1,256:26793710,45040591:144604 +k1,256:27223003,45040591:144605 +k1,256:28262043,45040591:144605 +k1,256:30934241,45040591:144605 +k1,256:31984816,45040591:144605 +k1,256:32583029,45040591:0 +) +(1,256:6630773,45706769:25952256,404226,199855 +g1,256:8619922,45706769 +r1,283:10986034,45706769:0,199855,199855 +k1,256:32583030,45706769:21596996 +g1,256:32583030,45706769 +) +] +(1,283:32583029,45706769:0,0,0 +g1,283:32583029,45706769 +) +) +] +(1,283:6630773,47279633:25952256,0,0 +h1,283:6630773,47279633:25952256,0,0 +) +] +(1,283:4262630,4025873:0,0,0 +[1,283:-473656,4025873:0,0,0 +(1,283:-473656,-710413:0,0,0 +(1,283:-473656,-710413:0,0,0 +g1,283:-473656,-710413 +) +g1,283:-473656,-710413 +) +] +) +] +!22389 +}9 +Input:193:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:194:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:195:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:196:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:197:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:198:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:199:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!647 +{10 +[1,315:4262630,47279633:28320399,43253760,0 +(1,315:4262630,4025873:0,0,0 +[1,315:-473656,4025873:0,0,0 +(1,315:-473656,-710413:0,0,0 +(1,315:-473656,-644877:0,0,0 +k1,315:-473656,-644877:-65536 ) +(1,315:-473656,4736287:0,0,0 +k1,315:-473656,4736287:5209943 ) -(183,35:18162467,42683153:501378,78643,0 -(183,35:18326321,42683153:173670,78643,0 +g1,315:-473656,-710413 ) +] ) -(183,35:18663845,42683153:501378,78643,0 -(183,35:18827699,42683153:173670,78643,0 +[1,315:6630773,47279633:25952256,43253760,0 +[1,315:6630773,4812305:25952256,786432,0 +(1,315:6630773,4812305:25952256,473825,134348 +(1,315:6630773,4812305:25952256,473825,134348 +g1,315:3078558,4812305 +[1,315:3078558,4812305:0,0,0 +(1,315:3078558,2439708:0,1703936,0 +k1,315:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,315:2537886,2439708:1179648,16384,0 ) +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,315:3078558,1915420:16384,1179648,0 ) -(183,35:19165223,42683153:501378,78643,0 -(183,35:19329077,42683153:173670,78643,0 +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) +] ) -(183,35:19666601,42683153:501378,78643,0 -(183,35:19830455,42683153:173670,78643,0 ) ) -(183,35:20167979,42683153:501378,78643,0 -(183,35:20331833,42683153:173670,78643,0 +] +[1,315:3078558,4812305:0,0,0 +(1,315:3078558,2439708:0,1703936,0 +g1,315:29030814,2439708 +g1,315:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,315:36151628,1915420:16384,1179648,0 ) +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) -(183,35:20669357,42683153:501378,78643,0 -(183,35:20833211,42683153:173670,78643,0 +] ) +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,315:37855564,2439708:1179648,16384,0 ) -(183,35:21170735,42683153:501378,78643,0 -(183,35:21334589,42683153:173670,78643,0 ) +k1,315:3078556,2439708:-34777008 ) -(183,35:21672113,42683153:501378,78643,0 -(183,35:21835967,42683153:173670,78643,0 +] +[1,315:3078558,4812305:0,0,0 +(1,315:3078558,49800853:0,16384,2228224 +k1,315:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,315:2537886,49800853:1179648,16384,0 ) +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,315:3078558,51504789:16384,1179648,0 ) -(183,35:22173491,42683153:501378,78643,0 -(183,35:22337345,42683153:173670,78643,0 +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) +] +) +) +) +] +[1,315:3078558,4812305:0,0,0 +(1,315:3078558,49800853:0,16384,2228224 +g1,315:29030814,49800853 +g1,315:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,315:36151628,51504789:16384,1179648,0 +) +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 +) +] +) +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,315:37855564,49800853:1179648,16384,0 +) +) +k1,315:3078556,49800853:-34777008 +) +] +g1,315:6630773,4812305 +g1,315:6630773,4812305 +g1,315:9132937,4812305 +g1,315:11356573,4812305 +k1,315:32184569,4812305:20827996 +) +) +] +[1,315:6630773,45706769:25952256,40108032,0 +(1,315:6630773,45706769:25952256,40108032,0 +(1,315:6630773,45706769:0,0,0 +g1,315:6630773,45706769 +) +[1,315:6630773,45706769:25952256,40108032,0 +(1,283:6630773,6254097:25952256,513147,134348 +k1,282:9736643,6254097:274715 +k1,282:11210012,6254097:274715 +k1,282:15097726,6254097:274714 +k1,282:16320092,6254097:274715 +k1,282:17613892,6254097:274715 +k1,282:21138537,6254097:274715 +k1,282:23182069,6254097:274715 +k1,282:25899966,6254097:274715 +k1,282:27528654,6254097:274714 +k1,282:30312743,6254097:274715 +k1,282:31238886,6254097:274715 +k1,282:32583029,6254097:0 +) +(1,283:6630773,7095585:25952256,513147,134348 +k1,282:8074794,7095585:252576 +k1,282:9794065,7095585:252575 +k1,282:11696838,7095585:252576 +k1,282:12600841,7095585:252575 +k1,282:15702267,7095585:252576 +k1,282:17970074,7095585:252575 +k1,282:18680747,7095585:252576 +k1,282:19880973,7095585:252575 +k1,282:21152634,7095585:252576 +k1,282:22711342,7095585:252575 +k1,282:24562996,7095585:252576 +k1,282:26196415,7095585:252575 +k1,282:28071007,7095585:252576 +k1,282:29071348,7095585:252575 +k1,282:31821501,7095585:252576 +k1,282:32583029,7095585:0 +) +(1,283:6630773,7937073:25952256,513147,134348 +g1,282:9754218,7937073 +g1,282:11378855,7937073 +g1,282:12769529,7937073 +g1,282:14741507,7937073 +g1,282:15750106,7937073 +g1,282:16968420,7937073 +g1,282:19425364,7937073 +k1,283:32583029,7937073:11483220 +g1,283:32583029,7937073 +) +(1,285:6630773,8778561:25952256,505283,134348 +h1,284:6630773,8778561:983040,0,0 +g1,284:9233863,8778561 +g1,284:10926002,8778561 +g1,284:12281941,8778561 +g1,284:14838500,8778561 +g1,284:15808432,8778561 +g1,284:20981188,8778561 +g1,284:23011493,8778561 +g1,284:23893607,8778561 +k1,285:32583029,8778561:5620371 +g1,285:32583029,8778561 +) +(1,287:7202902,10095699:25380127,505283,134348 +(1,286:7202902,10095699:0,355205,0 +g1,286:7202902,10095699 +g1,286:5892182,10095699 +g1,286:5564502,10095699 +(1,286:5564502,10095699:1310720,355205,0 +k1,286:6875222,10095699:1310720 +(1,286:6875222,10095699:0,355205,0 +k1,286:6476763,10095699:-398459 +) +) +g1,286:7202902,10095699 +) +k1,286:9338422,10095699:274298 +k1,286:10631805,10095699:274298 +k1,286:13630435,10095699:274298 +k1,286:15995331,10095699:274298 +k1,286:18005022,10095699:274298 +k1,286:18635180,10095699:274298 +k1,286:21107556,10095699:274298 +k1,286:25734100,10095699:274298 +k1,286:28850694,10095699:274298 +k1,286:30564818,10095699:274298 +k1,286:31490544,10095699:274298 +k1,286:32583029,10095699:0 +) +(1,287:7202902,10937187:25380127,513147,126483 +k1,286:9067533,10937187:172491 +k1,286:11679928,10937187:172490 +k1,286:12535304,10937187:172491 +k1,286:15038911,10937187:172491 +k1,286:16797372,10937187:172490 +k1,286:17629155,10937187:172491 +k1,286:21458555,10937187:172491 +k1,286:24299017,10937187:172491 +k1,286:28060914,10937187:172490 +k1,286:28892697,10937187:172491 +k1,286:32583029,10937187:0 +) +(1,287:7202902,11778675:25380127,513147,126483 +k1,286:11635212,11778675:163294 +k1,286:12457797,11778675:163293 +k1,286:15132431,11778675:163294 +k1,286:16487170,11778675:163294 +k1,286:19345959,11778675:163293 +k1,286:21751240,11778675:163294 +k1,286:22732423,11778675:163294 +k1,286:23251576,11778675:163293 +k1,286:26506859,11778675:163294 +k1,286:27576516,11778675:163294 +k1,286:28391237,11778675:163293 +k1,286:29302297,11778675:163294 +k1,286:32583029,11778675:0 +) +(1,287:7202902,12620163:25380127,513147,126483 +g1,286:8796082,12620163 +k1,287:32583029,12620163:21006910 +g1,287:32583029,12620163 +) +(1,288:7202902,13961620:25380127,513147,134348 +(1,287:7202902,13961620:0,355205,0 +g1,287:7202902,13961620 +g1,287:5892182,13961620 +g1,287:5564502,13961620 +(1,287:5564502,13961620:1310720,355205,0 +k1,287:6875222,13961620:1310720 +(1,287:6875222,13961620:0,355205,0 +k1,287:6476763,13961620:-398459 +) +) +g1,287:7202902,13961620 +) +k1,287:8592682,13961620:240934 +k1,287:12446616,13961620:240934 +k1,287:14755866,13961620:240934 +k1,287:15944451,13961620:240934 +k1,287:19200696,13961620:240934 +k1,287:20633075,13961620:240934 +k1,287:22005816,13961620:240934 +k1,287:23948720,13961620:240934 +k1,287:26322851,13961620:240934 +k1,287:28197598,13961620:240934 +k1,287:28970029,13961620:240934 +k1,287:32583029,13961620:0 +) +(1,288:7202902,14803108:25380127,505283,134348 +k1,287:10085225,14803108:180274 +k1,287:11074870,14803108:180275 +k1,287:12274229,14803108:180274 +k1,287:14997300,14803108:180274 +k1,287:18622147,14803108:180275 +k1,287:19611791,14803108:180274 +k1,287:22569481,14803108:180274 +k1,287:24015911,14803108:180274 +k1,287:24552046,14803108:180275 +k1,287:26605339,14803108:180274 +k1,287:28487583,14803108:180274 +k1,287:30004792,14803108:180275 +k1,287:30932832,14803108:180274 +k1,287:32583029,14803108:0 +) +(1,288:7202902,15644596:25380127,513147,134348 +k1,287:10963554,15644596:147652 +k1,287:12553654,15644596:147653 +k1,287:13057166,15644596:147652 +k1,287:14593527,15644596:147653 +k1,287:16539487,15644596:147652 +k1,287:19448172,15644596:147653 +k1,287:24722050,15644596:147652 +k1,287:26938019,15644596:147653 +k1,287:28077231,15644596:147652 +k1,287:30512091,15644596:147653 +k1,287:32583029,15644596:0 +) +(1,288:7202902,16486084:25380127,505283,134348 +k1,287:8637592,16486084:192127 +k1,287:10565112,16486084:192127 +(1,287:10565112,16486084:0,414482,115847 +r1,315:12681937,16486084:2116825,530329,115847 +k1,287:10565112,16486084:-2116825 +) +(1,287:10565112,16486084:2116825,414482,115847 +k1,287:10565112,16486084:3277 +h1,287:12678660,16486084:0,411205,112570 +) +k1,287:12874065,16486084:192128 +k1,287:14257637,16486084:192127 +(1,287:14257637,16486084:0,452978,115847 +r1,315:16374462,16486084:2116825,568825,115847 +k1,287:14257637,16486084:-2116825 +) +(1,287:14257637,16486084:2116825,452978,115847 +k1,287:14257637,16486084:3277 +h1,287:16371185,16486084:0,411205,112570 +) +k1,287:16566589,16486084:192127 +k1,287:17290213,16486084:192127 +k1,287:19265575,16486084:192127 +k1,287:21623668,16486084:192128 +k1,287:23258242,16486084:192127 +k1,287:25185762,16486084:192127 +(1,287:25185762,16486084:0,435480,115847 +r1,315:25895740,16486084:709978,551327,115847 +k1,287:25185762,16486084:-709978 +) +(1,287:25185762,16486084:709978,435480,115847 +k1,287:25185762,16486084:3277 +h1,287:25892463,16486084:0,411205,112570 +) +k1,287:26087867,16486084:192127 +k1,287:27471440,16486084:192128 +(1,287:27471440,16486084:0,435480,115847 +r1,315:28181418,16486084:709978,551327,115847 +k1,287:27471440,16486084:-709978 +) +(1,287:27471440,16486084:709978,435480,115847 +k1,287:27471440,16486084:3277 +h1,287:28178141,16486084:0,411205,112570 +) +k1,287:28373545,16486084:192127 +k1,287:30263710,16486084:192127 +k1,287:32583029,16486084:0 +) +(1,288:7202902,17327572:25380127,513147,126483 +k1,287:8871903,17327572:275050 +k1,287:9502813,17327572:275050 +k1,287:11865185,17327572:275050 +k1,287:12799527,17327572:275050 +k1,287:14637611,17327572:275050 +k1,287:17694009,17327572:275050 +(1,287:17694009,17327572:0,459977,115847 +r1,315:22624529,17327572:4930520,575824,115847 +k1,287:17694009,17327572:-4930520 +) +(1,287:17694009,17327572:4930520,459977,115847 +k1,287:17694009,17327572:3277 +h1,287:22621252,17327572:0,411205,112570 +) +k1,287:22899579,17327572:275050 +k1,287:24366074,17327572:275050 +(1,287:24366074,17327572:0,459977,115847 +r1,315:30351729,17327572:5985655,575824,115847 +k1,287:24366074,17327572:-5985655 +) +(1,287:24366074,17327572:5985655,459977,115847 +k1,287:24366074,17327572:3277 +h1,287:30348452,17327572:0,411205,112570 +) +k1,287:30626779,17327572:275050 +k1,287:32583029,17327572:0 +) +(1,288:7202902,18169060:25380127,505283,134348 +k1,287:9198856,18169060:280221 +k1,287:10498162,18169060:280221 +k1,287:12609459,18169060:280221 +k1,287:15528814,18169060:280220 +k1,287:17000480,18169060:280221 +k1,287:18633364,18169060:280221 +k1,287:20937992,18169060:280221 +k1,287:21869641,18169060:280221 +k1,287:23535948,18169060:280221 +k1,287:26276390,18169060:280220 +k1,287:28892970,18169060:280221 +k1,287:31966991,18169060:280221 +k1,287:32583029,18169060:0 +) +(1,288:7202902,19010548:25380127,426639,7863 +k1,288:32583029,19010548:23195812 +g1,288:32583029,19010548 +) +(1,289:7202902,20352005:25380127,505283,126483 +(1,288:7202902,20352005:0,355205,0 +g1,288:7202902,20352005 +g1,288:5892182,20352005 +g1,288:5564502,20352005 +(1,288:5564502,20352005:1310720,355205,0 +k1,288:6875222,20352005:1310720 +(1,288:6875222,20352005:0,355205,0 +k1,288:6476763,20352005:-398459 +) +) +g1,288:7202902,20352005 +) +k1,288:8849496,20352005:225773 +k1,288:9726698,20352005:225774 +k1,288:11668204,20352005:225773 +k1,288:12913063,20352005:225774 +k1,288:15093775,20352005:225773 +k1,288:17362305,20352005:225773 +k1,288:18204117,20352005:225774 +k1,288:20671877,20352005:225773 +k1,288:24815393,20352005:225774 +k1,288:25657204,20352005:225773 +k1,288:26297794,20352005:225747 +k1,288:27680277,20352005:225773 +k1,288:29862301,20352005:225774 +k1,288:31180559,20352005:225773 +k1,288:32583029,20352005:0 +) +(1,289:7202902,21193493:25380127,505283,134348 +k1,288:8081178,21193493:226848 +k1,288:11010731,21193493:226848 +k1,288:12256664,21193493:226848 +k1,288:14438451,21193493:226848 +k1,288:15856744,21193493:226848 +k1,288:17176077,21193493:226848 +k1,288:18778526,21193493:226848 +k1,288:20761740,21193493:226849 +k1,288:22529339,21193493:226848 +k1,288:24473230,21193493:226848 +k1,288:26383043,21193493:226848 +k1,288:27908159,21193493:226848 +k1,288:28593104,21193493:226848 +k1,288:31224468,21193493:226848 +k1,289:32583029,21193493:0 +) +(1,289:7202902,22034981:25380127,513147,126483 +k1,288:8971003,22034981:283711 +k1,288:9906143,22034981:283712 +k1,288:11282339,22034981:283711 +k1,288:15650254,22034981:283711 +k1,288:17130652,22034981:283711 +k1,288:18506849,22034981:283712 +k1,288:19449852,22034981:283711 +k1,288:23644096,22034981:283711 +k1,288:24459304,22034981:283711 +k1,288:26367654,22034981:283712 +k1,288:29428781,22034981:283711 +k1,288:32583029,22034981:0 +) +(1,289:7202902,22876469:25380127,513147,126483 +k1,288:9982284,22876469:249692 +k1,288:10848014,22876469:249692 +k1,288:12789847,22876469:249693 +k1,288:15738967,22876469:249692 +k1,288:16446756,22876469:249692 +k1,288:17227945,22876469:249692 +k1,288:19838244,22876469:249692 +k1,288:20774099,22876469:249693 +k1,288:21639829,22876469:249692 +k1,288:23581661,22876469:249692 +k1,288:26988222,22876469:249692 +k1,288:27593774,22876469:249692 +k1,288:28915636,22876469:249693 +k1,288:30502262,22876469:249692 +k1,288:32227169,22876469:249692 +k1,288:32583029,22876469:0 +) +(1,289:7202902,23717957:25380127,513147,134348 +k1,288:9640441,23717957:243394 +k1,288:12785769,23717957:243394 +k1,288:14662976,23717957:243394 +k1,288:15774722,23717957:243394 +k1,288:17117810,23717957:243394 +k1,288:19523237,23717957:243394 +k1,288:21433867,23717957:243394 +k1,288:22208758,23717957:243394 +k1,288:23827753,23717957:243394 +k1,288:27992166,23717957:243394 +k1,288:29748786,23717957:243394 +k1,288:30608218,23717957:243394 +k1,288:31266411,23717957:243350 +k1,289:32583029,23717957:0 +) +(1,289:7202902,24559445:25380127,513147,134348 +k1,288:10693077,24559445:241555 +k1,288:12006800,24559445:241554 +k1,288:12779852,24559445:241555 +k1,288:15798823,24559445:241555 +k1,288:16656415,24559445:241554 +k1,288:18599940,24559445:241555 +k1,288:22014093,24559445:241555 +k1,288:23401872,24559445:241554 +k1,288:25773347,24559445:241555 +k1,288:26917333,24559445:241555 +k1,288:29820304,24559445:241554 +k1,288:30721151,24559445:241555 +k1,288:32583029,24559445:0 +) +(1,289:7202902,25400933:25380127,473825,115847 +g1,288:8769212,25400933 +g1,288:9499938,25400933 +(1,288:9499938,25400933:0,452978,115847 +r1,315:11968475,25400933:2468537,568825,115847 +k1,288:9499938,25400933:-2468537 +) +(1,288:9499938,25400933:2468537,452978,115847 +k1,288:9499938,25400933:3277 +h1,288:11965198,25400933:0,411205,112570 +) +k1,289:32583029,25400933:20440884 +g1,289:32583029,25400933 +) +v1,292:6630773,26718072:0,393216,0 +(1,310:6630773,36816239:25952256,10491383,0 +g1,310:6630773,36816239 +g1,310:6303093,36816239 +r1,315:6401397,36816239:98304,10491383,0 +g1,310:6600626,36816239 +g1,310:6797234,36816239 +[1,310:6797234,36816239:25785795,10491383,0 +(1,294:6797234,27608838:25785795,1283982,196608 +(1,292:6797234,27608838:0,1283982,196608 +r1,315:8400153,27608838:1602919,1480590,196608 +k1,292:6797234,27608838:-1602919 +) +(1,292:6797234,27608838:1602919,1283982,196608 +) +k1,292:8697568,27608838:297415 +k1,292:10483306,27608838:297415 +k1,292:11312218,27608838:297415 +k1,292:12380336,27608838:297415 +k1,292:15339169,27608838:297416 +k1,292:16295876,27608838:297415 +k1,292:17770318,27608838:297415 +k1,292:19568507,27608838:297415 +k1,292:20481960,27608838:297415 +k1,292:21135235,27608838:297415 +k1,292:23437396,27608838:297415 +k1,292:25303743,27608838:297415 +k1,292:28216045,27608838:297415 +k1,292:28962939,27608838:297317 +k1,292:30747366,27608838:297415 +k1,294:32583029,27608838:0 +) +(1,294:6797234,28450326:25785795,505283,134349 +$1,292:7004328,28450326 +k1,292:8980238,28450326:0 +k1,292:9375420,28450326:0 +k1,292:9770602,28450326:0 +k1,292:10165784,28450326:0 +k1,292:12536876,28450326:0 +k1,292:12932058,28450326:0 +k1,292:15303150,28450326:0 +k1,292:15698332,28450326:0 +k1,292:16488696,28450326:0 +k1,292:16883878,28450326:0 +k1,292:20835698,28450326:0 +k1,292:21230880,28450326:0 +k1,292:23601972,28450326:0 +k1,292:23997154,28450326:0 +$1,292:25182700,28450326 +k1,293:25857590,28450326:294126 +k1,293:27343161,28450326:294126 +k1,293:28863467,28450326:294127 +k1,293:30176678,28450326:294126 +k1,293:31966991,28450326:294126 +k1,293:32583029,28450326:0 +) +(1,294:6797234,29291814:25785795,505283,7863 +g1,293:8015548,29291814 +g1,293:10185445,29291814 +g1,293:12253105,29291814 +g1,293:13177162,29291814 +g1,293:14660897,29291814 +g1,293:15318223,29291814 +g1,293:18290936,29291814 +g1,293:20360563,29291814 +g1,293:21211220,29291814 +k1,294:32583029,29291814:9785838 +g1,294:32583029,29291814 +) +v1,296:6797234,30482280:0,393216,0 +(1,308:6797234,36095343:25785795,6006279,196608 +g1,308:6797234,36095343 +g1,308:6797234,36095343 +g1,308:6600626,36095343 +(1,308:6600626,36095343:0,6006279,196608 +r1,315:32779637,36095343:26179011,6202887,196608 +k1,308:6600625,36095343:-26179012 +) +(1,308:6600626,36095343:26179011,6006279,196608 +[1,308:6797234,36095343:25785795,5809671,0 +(1,298:6797234,30689898:25785795,404226,107478 +(1,297:6797234,30689898:0,0,0 +g1,297:6797234,30689898 +g1,297:6797234,30689898 +g1,297:6469554,30689898 +(1,297:6469554,30689898:0,0,0 +) +g1,297:6797234,30689898 +) +g1,298:7429526,30689898 +g1,298:8377964,30689898 +g1,298:9010256,30689898 +g1,298:9642548,30689898 +k1,298:9642548,30689898:14156 +h1,298:11553578,30689898:0,0,0 +k1,298:32583030,30689898:21029452 +g1,298:32583030,30689898 +) +(1,299:6797234,31356076:25785795,404226,107478 +h1,299:6797234,31356076:0,0,0 +g1,299:7429526,31356076 +g1,299:8377964,31356076 +g1,299:9010256,31356076 +g1,299:9642548,31356076 +k1,299:9642548,31356076:0 +h1,299:11539422,31356076:0,0,0 +k1,299:32583030,31356076:21043608 +g1,299:32583030,31356076 +) +(1,300:6797234,32022254:25785795,336593,7863 +h1,300:6797234,32022254:0,0,0 +g1,300:7429526,32022254 +k1,300:7429526,32022254:0 +h1,300:8061818,32022254:0,0,0 +k1,300:32583030,32022254:24521212 +g1,300:32583030,32022254 +) +(1,301:6797234,32688432:25785795,328204,4718 +h1,301:6797234,32688432:0,0,0 +g1,301:7113380,32688432 +g1,301:7429526,32688432 +g1,301:7745672,32688432 +g1,301:8061818,32688432 +g1,301:8694110,32688432 +h1,301:9010256,32688432:0,0,0 +k1,301:32583028,32688432:23572772 +g1,301:32583028,32688432 +) +(1,302:6797234,33354610:25785795,404226,6290 +h1,302:6797234,33354610:0,0,0 +h1,302:7113380,33354610:0,0,0 +k1,302:32583028,33354610:25469648 +g1,302:32583028,33354610 +) +(1,303:6797234,34020788:25785795,404226,7863 +h1,303:6797234,34020788:0,0,0 +g1,303:7429526,34020788 +g1,303:8377964,34020788 +h1,303:10907129,34020788:0,0,0 +k1,303:32583029,34020788:21675900 +g1,303:32583029,34020788 +) +(1,304:6797234,34686966:25785795,404226,101187 +h1,304:6797234,34686966:0,0,0 +g1,304:7113380,34686966 +g1,304:7429526,34686966 +g1,304:7745672,34686966 +g1,304:8061818,34686966 +g1,304:8377964,34686966 +g1,304:8694110,34686966 +k1,304:8694110,34686966:0 +h1,304:10590984,34686966:0,0,0 +k1,304:32583028,34686966:21992044 +g1,304:32583028,34686966 +) +(1,305:6797234,35353144:25785795,404226,82312 +h1,305:6797234,35353144:0,0,0 +g1,305:9010254,35353144 +g1,305:9958692,35353144 +h1,305:12487857,35353144:0,0,0 +k1,305:32583029,35353144:20095172 +g1,305:32583029,35353144 +) +(1,306:6797234,36019322:25785795,404226,76021 +h1,306:6797234,36019322:0,0,0 +h1,306:7113380,36019322:0,0,0 +k1,306:32583028,36019322:25469648 +g1,306:32583028,36019322 +) +] +) +g1,308:32583029,36095343 +g1,308:6797234,36095343 +g1,308:6797234,36095343 +g1,308:32583029,36095343 +g1,308:32583029,36095343 +) +h1,308:6797234,36291951:0,0,0 +] +g1,310:32583029,36816239 +) +h1,310:6630773,36816239:0,0,0 +(1,313:6630773,38133377:25952256,513147,134348 +h1,312:6630773,38133377:983040,0,0 +k1,312:9026265,38133377:215765 +k1,312:11260539,38133377:215765 +k1,312:14605647,38133377:215764 +k1,312:16676736,38133377:215765 +k1,312:19226893,38133377:215765 +k1,312:20830711,38133377:215765 +k1,312:21402335,38133377:215764 +k1,312:22648326,38133377:215765 +k1,312:25798793,38133377:215765 +k1,312:27171268,38133377:215765 +k1,312:28491314,38133377:215764 +k1,312:29475816,38133377:215765 +k1,312:31966991,38133377:215765 +k1,312:32583029,38133377:0 +) +(1,313:6630773,38974865:25952256,513147,134348 +k1,312:9891189,38974865:260178 +k1,312:11170451,38974865:260177 +k1,312:12760355,38974865:260178 +k1,312:13679825,38974865:260178 +k1,312:16160363,38974865:260178 +k1,312:19814650,38974865:260177 +k1,312:20836356,38974865:260178 +k1,312:25312465,38974865:260178 +k1,312:29635219,38974865:260177 +k1,312:31086842,38974865:260178 +k1,312:32583029,38974865:0 +) +(1,313:6630773,39816353:25952256,513147,134348 +k1,312:9762957,39816353:230905 +k1,312:11185307,39816353:230905 +k1,312:13151605,39816353:230905 +k1,312:14148626,39816353:230905 +k1,312:15398616,39816353:230905 +k1,312:18326983,39816353:230905 +k1,312:19217180,39816353:230905 +k1,312:23189535,39816353:230905 +k1,312:24887136,39816353:230905 +k1,312:25777333,39816353:230905 +k1,312:29213604,39816353:230905 +k1,312:31422386,39816353:230905 +k1,313:32583029,39816353:0 +) +(1,313:6630773,40657841:25952256,513147,134348 +k1,312:8821344,40657841:264468 +k1,312:10277256,40657841:264467 +k1,312:13835563,40657841:264468 +k1,312:16110019,40657841:264467 +k1,312:17393572,40657841:264468 +k1,312:19641814,40657841:264467 +k1,312:20565574,40657841:264468 +k1,312:21849126,40657841:264467 +k1,312:24118340,40657841:264468 +k1,312:28576456,40657841:264467 +k1,312:29602452,40657841:264468 +k1,312:32583029,40657841:0 +) +(1,313:6630773,41499329:25952256,513147,126483 +k1,312:7904512,41499329:254654 +k1,312:10332340,41499329:254654 +k1,312:11246286,41499329:254654 +k1,312:12520026,41499329:254655 +k1,312:16576423,41499329:254654 +k1,312:18022522,41499329:254654 +k1,312:19296261,41499329:254654 +k1,312:21047102,41499329:254654 +k1,312:22907388,41499329:254654 +k1,312:23778080,41499329:254654 +k1,312:24388595,41499329:254655 +k1,312:26963879,41499329:254654 +k1,312:29214760,41499329:254654 +k1,312:30947906,41499329:254654 +k1,313:32583029,41499329:0 +) +(1,313:6630773,42340817:25952256,513147,134348 +k1,312:9884027,42340817:184858 +k1,312:10937237,42340817:184858 +k1,312:12226378,42340817:184859 +k1,312:14554263,42340817:184858 +k1,312:16023627,42340817:184858 +k1,312:17227570,42340817:184858 +k1,312:19585602,42340817:184858 +k1,312:20762021,42340817:184859 +k1,312:23099081,42340817:184858 +k1,312:24303024,42340817:184858 +k1,312:26330754,42340817:184858 +k1,312:27174905,42340817:184859 +k1,312:29882899,42340817:184858 +k1,312:31086842,42340817:184858 +k1,312:32583029,42340817:0 +) +(1,313:6630773,43182305:25952256,505283,134348 +k1,312:9028604,43182305:148635 +k1,312:10558084,43182305:148636 +k1,312:12895622,43182305:148635 +k1,312:16683472,43182305:148636 +k1,312:17483535,43182305:148635 +k1,312:19021534,43182305:148636 +k1,312:21724762,43182305:148635 +k1,312:26782700,43182305:148636 +k1,312:28816806,43182305:148635 +k1,312:29496939,43182305:148636 +k1,312:32583029,43182305:0 +) +(1,313:6630773,44023793:25952256,513147,126483 +k1,312:7173793,44023793:187160 +k1,312:11014585,44023793:187160 +k1,312:15132594,44023793:187160 +k1,312:16267405,44023793:187160 +k1,312:17586372,44023793:187160 +k1,312:19162894,44023793:187159 +k1,312:21904647,44023793:187160 +k1,312:23558503,44023793:187160 +k1,312:24361701,44023793:187160 +k1,312:27539269,44023793:187160 +k1,312:28917874,44023793:187160 +k1,312:29721072,44023793:187160 +k1,312:32583029,44023793:0 +) +(1,313:6630773,44865281:25952256,505283,126483 +k1,312:7339916,44865281:239250 +k1,312:8110663,44865281:239250 +k1,312:10979873,44865281:239250 +k1,312:12285394,44865281:239250 +k1,312:13900245,44865281:239250 +k1,312:14790923,44865281:239250 +k1,312:17350803,44865281:239250 +k1,312:19472902,44865281:239250 +k1,312:21624493,44865281:239250 +k1,312:23009968,44865281:239250 +k1,312:24452459,44865281:239250 +k1,312:26022090,44865281:239250 +k1,312:27333509,44865281:239250 +k1,312:28858575,44865281:239250 +k1,312:30980674,44865281:239250 +k1,313:32583029,44865281:0 +) +(1,313:6630773,45706769:25952256,505283,7863 +g1,312:8684671,45706769 +g1,312:10152677,45706769 +g1,312:11817946,45706769 +g1,312:13411126,45706769 +g1,312:15307082,45706769 +k1,313:32583029,45706769:15520893 +g1,313:32583029,45706769 +) +] +(1,315:32583029,45706769:0,0,0 +g1,315:32583029,45706769 +) +) +] +(1,315:6630773,47279633:25952256,0,0 +h1,315:6630773,47279633:25952256,0,0 +) +] +(1,315:4262630,4025873:0,0,0 +[1,315:-473656,4025873:0,0,0 +(1,315:-473656,-710413:0,0,0 +(1,315:-473656,-710413:0,0,0 +g1,315:-473656,-710413 +) +g1,315:-473656,-710413 +) +] +) +] +!24106 +}10 +!11 +{11 +[1,332:4262630,47279633:28320399,43253760,0 +(1,332:4262630,4025873:0,0,0 +[1,332:-473656,4025873:0,0,0 +(1,332:-473656,-710413:0,0,0 +(1,332:-473656,-644877:0,0,0 +k1,332:-473656,-644877:-65536 ) -(183,35:22674869,42683153:501378,78643,0 -(183,35:22838723,42683153:173670,78643,0 +(1,332:-473656,4736287:0,0,0 +k1,332:-473656,4736287:5209943 ) +g1,332:-473656,-710413 ) -(183,35:23176247,42683153:501378,78643,0 -(183,35:23340101,42683153:173670,78643,0 +] ) +[1,332:6630773,47279633:25952256,43253760,0 +[1,332:6630773,4812305:25952256,786432,0 +(1,332:6630773,4812305:25952256,505283,134348 +(1,332:6630773,4812305:25952256,505283,134348 +g1,332:3078558,4812305 +[1,332:3078558,4812305:0,0,0 +(1,332:3078558,2439708:0,1703936,0 +k1,332:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,332:2537886,2439708:1179648,16384,0 ) -(183,35:23677625,42683153:501378,78643,0 -(183,35:23841479,42683153:173670,78643,0 +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,332:3078558,1915420:16384,1179648,0 ) +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) -(183,35:24179003,42683153:501378,78643,0 -(183,35:24342857,42683153:173670,78643,0 +] ) ) -(183,35:24680381,42683153:501378,78643,0 -(183,35:24844235,42683153:173670,78643,0 ) +] +[1,332:3078558,4812305:0,0,0 +(1,332:3078558,2439708:0,1703936,0 +g1,332:29030814,2439708 +g1,332:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,332:36151628,1915420:16384,1179648,0 ) -(183,35:25181759,42683153:501378,78643,0 -(183,35:25345613,42683153:173670,78643,0 +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) +] ) -(183,35:25683137,42683153:501378,78643,0 -(183,35:25846991,42683153:173670,78643,0 +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,332:37855564,2439708:1179648,16384,0 ) ) -(183,35:26184515,42683153:501378,78643,0 -(183,35:26348369,42683153:173670,78643,0 +k1,332:3078556,2439708:-34777008 ) +] +[1,332:3078558,4812305:0,0,0 +(1,332:3078558,49800853:0,16384,2228224 +k1,332:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,332:2537886,49800853:1179648,16384,0 ) -(183,35:26685893,42683153:501378,78643,0 -(183,35:26849747,42683153:173670,78643,0 +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,332:3078558,51504789:16384,1179648,0 ) +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 +) +] +) +) +) +] +[1,332:3078558,4812305:0,0,0 +(1,332:3078558,49800853:0,16384,2228224 +g1,332:29030814,49800853 +g1,332:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,332:36151628,51504789:16384,1179648,0 +) +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 +) +] +) +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,332:37855564,49800853:1179648,16384,0 +) +) +k1,332:3078556,49800853:-34777008 +) +] +g1,332:6630773,4812305 +k1,332:18771974,4812305:11742742 +g1,332:20158715,4812305 +g1,332:20807521,4812305 +g1,332:24121676,4812305 +g1,332:28605649,4812305 +g1,332:30015328,4812305 +) +) +] +[1,332:6630773,45706769:25952256,40108032,0 +(1,332:6630773,45706769:25952256,40108032,0 +(1,332:6630773,45706769:0,0,0 +g1,332:6630773,45706769 +) +[1,332:6630773,45706769:25952256,40108032,0 +(1,315:6630773,6254097:25952256,513147,134348 +h1,314:6630773,6254097:983040,0,0 +k1,314:8417165,6254097:175517 +k1,314:9611767,6254097:175517 +k1,314:11603943,6254097:175518 +k1,314:12438752,6254097:175517 +k1,314:17140185,6254097:175517 +k1,314:18518943,6254097:175517 +k1,314:21678970,6254097:175517 +k1,314:22385984,6254097:175517 +k1,314:24429278,6254097:175518 +k1,314:26863821,6254097:175517 +k1,314:31391584,6254097:175517 +k1,314:32583029,6254097:0 +) +(1,315:6630773,7095585:25952256,513147,134348 +k1,314:8035109,7095585:197163 +k1,314:9538404,7095585:197162 +k1,314:12752845,7095585:197163 +k1,314:13711535,7095585:197162 +k1,314:16203113,7095585:197163 +k1,314:18365700,7095585:197162 +k1,314:20735382,7095585:197163 +k1,314:22733473,7095585:197162 +k1,314:25489162,7095585:197163 +k1,314:26632664,7095585:197162 +k1,314:28122195,7095585:197161 +k1,314:30738946,7095585:197162 +k1,314:31563944,7095585:197163 +k1,314:32583029,7095585:0 +) +(1,315:6630773,7937073:25952256,513147,134348 +k1,314:8278713,7937073:280859 +k1,314:9226728,7937073:280859 +k1,314:9922348,7937073:280777 +k1,314:14729123,7937073:280859 +k1,314:16029067,7937073:280859 +k1,314:17616059,7937073:280859 +k1,314:20423330,7937073:280858 +k1,314:21363481,7937073:280859 +k1,314:23903366,7937073:280859 +k1,314:28536471,7937073:280859 +k1,314:30024503,7937073:280859 +k1,314:32583029,7937073:0 +) +(1,315:6630773,8778561:25952256,505283,134348 +k1,314:9721584,8778561:280628 +k1,314:11887684,8778561:280629 +k1,314:13269317,8778561:280628 +k1,314:15059896,8778561:280629 +k1,314:17508455,8778561:280628 +k1,314:21457134,8778561:280629 +k1,314:22499290,8778561:280628 +k1,314:24618858,8778561:280629 +k1,314:26085688,8778561:280628 +k1,314:28341405,8778561:281117 +k1,314:30002877,8778561:280628 +k1,314:32583029,8778561:0 +) +(1,315:6630773,9620049:25952256,513147,173670 +k1,314:9751209,9620049:263722 +k1,314:11034016,9620049:263722 +k1,314:12390223,9620049:263722 +k1,314:13321101,9620049:263722 +k1,314:16887838,9620049:263722 +k1,314:17834445,9620049:263722 +[1,314:17963551,9620049:341312,473825,0 +(1,314:17963551,9482030:341312,335806,0 +) +] +(1,314:18531817,9793719:370934,473825,0 +) +k1,314:19515125,9620049:263722 +k1,314:22687335,9620049:263722 +k1,314:24751986,9620049:263722 +k1,314:25701870,9620049:263722 +k1,314:26984677,9620049:263722 +k1,314:29740733,9620049:263722 +k1,314:32583029,9620049:0 +) +(1,315:6630773,10461537:25952256,513147,134348 +k1,314:7849088,10461537:270664 +k1,314:9138836,10461537:270663 +k1,314:11611510,10461537:270664 +k1,314:14631408,10461537:270663 +k1,314:16093517,10461537:270664 +k1,314:17649996,10461537:270663 +k1,314:20431344,10461537:270664 +k1,314:21893452,10461537:270663 +k1,314:23691760,10461537:270664 +k1,314:26046468,10461537:270663 +k1,314:30164751,10461537:270664 +k1,314:31086842,10461537:270663 +k1,314:32583029,10461537:0 +) +(1,315:6630773,11303025:25952256,505283,7863 +k1,314:9333313,11303025:227901 +k1,314:13326914,11303025:227902 +k1,314:14086312,11303025:227901 +k1,314:15084916,11303025:227901 +k1,314:18385145,11303025:227901 +k1,314:19264475,11303025:227902 +k1,314:22795391,11303025:227901 +k1,314:24307798,11303025:227901 +k1,314:26581733,11303025:227901 +k1,314:27267732,11303025:227902 +k1,314:29366031,11303025:227901 +k1,314:30245360,11303025:227901 +k1,315:32583029,11303025:0 +) +(1,315:6630773,12144513:25952256,513147,126484 +k1,314:7297685,12144513:252069 +k1,314:9045995,12144513:252123 +k1,314:9914155,12144513:252122 +k1,314:13699324,12144513:252123 +k1,314:15183523,12144513:252122 +$1,314:15183523,12144513 +k1,314:16764251,12144513:0 +k1,314:17159433,12144513:0 +k1,314:17554615,12144513:0 +k1,314:17949797,12144513:0 +k1,314:21506435,12144513:0 +k1,314:21901617,12144513:0 +k1,314:24667891,12144513:0 +k1,314:25063073,12144513:0 +$1,314:26643801,12144513 +k1,314:27276688,12144513:252123 +k1,314:27998703,12144513:252122 +k1,314:28782323,12144513:252123 +k1,314:30053531,12144513:252123 +k1,314:31923737,12144513:252122 +k1,315:32583029,12144513:0 +) +(1,315:6630773,12986001:25952256,505283,134348 +k1,314:7268344,12986001:222728 +k1,314:10401551,12986001:222753 +k1,314:11908809,12986001:222752 +k1,314:14657974,12986001:222752 +k1,314:18448506,12986001:222752 +k1,314:20242156,12986001:222752 +k1,314:21656353,12986001:222752 +k1,314:24565426,12986001:222752 +k1,314:28321224,12986001:222752 +k1,314:32583029,12986001:0 +) +(1,315:6630773,13827489:25952256,513147,134348 +k1,314:8083051,13827489:183501 +k1,314:9732591,13827489:183500 +k1,314:13990465,13827489:183501 +k1,314:16754118,13827489:183501 +k1,314:19823824,13827489:183500 +k1,314:23698968,13827489:183501 +k1,314:25073914,13827489:183501 +k1,314:27092422,13827489:183500 +k1,314:28223574,13827489:183501 +k1,314:32583029,13827489:0 +) +(1,315:6630773,14668977:25952256,513147,134348 +k1,314:7990708,14668977:173733 +k1,314:9932049,14668977:173835 +k1,314:11084890,14668977:173733 +k1,314:11862866,14668977:173734 +k1,314:12771309,14668977:173784 +k1,314:14919795,14668977:173886 +k1,314:16290215,14668977:173733 +k1,314:17556433,14668977:173733 +k1,314:18389458,14668977:173733 +k1,314:20402131,14668977:173734 +k1,314:21107361,14668977:173733 +k1,314:22635068,14668977:173733 +k1,314:24087408,14668977:173733 +k1,314:27524835,14668977:173734 +k1,314:28966034,14668977:173733 +k1,314:30158852,14668977:173733 +k1,314:32583029,14668977:0 +) +(1,315:6630773,15510465:25952256,475136,0 +k1,315:32583030,15510465:24691344 +g1,315:32583030,15510465 +) +(1,317:6630773,16351953:25952256,505283,134348 +h1,316:6630773,16351953:983040,0,0 +k1,316:9225128,16351953:230471 +k1,316:9987095,16351953:230470 +k1,316:11283837,16351953:230471 +k1,316:13747775,16351953:230471 +k1,316:14748948,16351953:230470 +k1,316:15394231,16351953:230440 +k1,316:19976948,16351953:230471 +k1,316:22691233,16351953:230470 +k1,316:23607866,16351953:230471 +k1,316:24296434,16351953:230471 +k1,316:27384274,16351953:230470 +k1,316:31966991,16351953:230471 +k1,316:32583029,16351953:0 +) +(1,317:6630773,17193441:25952256,505283,134348 +k1,316:7951698,17193441:189118 +k1,316:11156783,17193441:189118 +k1,316:12269959,17193441:189118 +k1,316:13478162,17193441:189118 +k1,316:15369250,17193441:189118 +k1,316:17338326,17193441:189118 +k1,316:18730685,17193441:189118 +k1,316:19451300,17193441:189118 +k1,316:20411121,17193441:189118 +k1,316:23774148,17193441:189118 +k1,316:27172564,17193441:189118 +k1,316:28695995,17193441:189118 +k1,316:29536541,17193441:189118 +k1,316:31510860,17193441:189118 +k1,316:32583029,17193441:0 +) +(1,317:6630773,18034929:25952256,505283,134348 +k1,316:8113096,18034929:203716 +k1,316:11406835,18034929:203716 +k1,316:12226589,18034929:203716 +k1,316:14132275,18034929:203716 +k1,316:16248332,18034929:203716 +k1,316:17643493,18034929:203716 +k1,316:19115987,18034929:203717 +k1,316:20785743,18034929:203716 +k1,316:22549216,18034929:203716 +k1,316:23368970,18034929:203716 +k1,316:24591771,18034929:203716 +k1,316:27549965,18034929:203716 +k1,316:31202185,18034929:203716 +k1,316:32583029,18034929:0 +) +(1,317:6630773,18876417:25952256,513147,134348 +k1,316:8665283,18876417:151661 +k1,316:10572654,18876417:151661 +k1,316:13704892,18876417:151661 +k1,316:16215850,18876417:151662 +k1,316:17468516,18876417:151661 +k1,316:19130127,18876417:151661 +k1,316:22434725,18876417:151661 +k1,316:24321779,18876417:151661 +k1,316:26312379,18876417:151661 +k1,316:27655486,18876417:151662 +k1,316:28826232,18876417:151661 +k1,316:31086842,18876417:151661 +k1,316:32583029,18876417:0 +) +(1,317:6630773,19717905:25952256,513147,134349 +k1,316:7760123,19717905:181699 +k1,316:8960906,19717905:181698 +k1,316:10724644,19717905:181699 +k1,316:11437839,19717905:181698 +k1,316:14403507,19717905:181699 +k1,316:17143732,19717905:181699 +k1,316:20328290,19717905:181698 +k1,316:21122751,19717905:181699 +$1,316:21122751,19717905 +k1,316:23098661,19717905:0 +k1,316:23493843,19717905:0 +k1,316:23889025,19717905:0 +k1,316:24284207,19717905:0 +k1,316:27840845,19717905:0 +k1,316:28236027,19717905:0 +k1,316:29421573,19717905:0 +k1,316:29816755,19717905:0 +k1,316:32187847,19717905:0 +k1,317:32583029,19717905:0 +) +(1,317:6630773,20559393:25952256,505283,98314 +(1,316:9397047,20657707:32768,0,0 +) +$1,316:11010543,20559393 +k1,317:32583029,20559393:21398816 +g1,317:32583029,20559393 +) +(1,318:6630773,22650653:25952256,555811,147783 +(1,318:6630773,22650653:2450326,534184,12975 +g1,318:6630773,22650653 +g1,318:9081099,22650653 +) +g1,318:13217601,22650653 +k1,318:32583029,22650653:16902126 +g1,318:32583029,22650653 +) +(1,322:6630773,23885357:25952256,513147,134348 +k1,321:7982031,23885357:154571 +k1,321:9229088,23885357:154572 +k1,321:10042951,23885357:154571 +k1,321:11216607,23885357:154571 +k1,321:12995817,23885357:154572 +k1,321:14358216,23885357:154571 +k1,321:15164215,23885357:154571 +k1,321:17988068,23885357:154572 +k1,321:18498499,23885357:154571 +k1,321:21329561,23885357:154572 +k1,321:22100170,23885357:154571 +k1,321:25331001,23885357:154571 +k1,321:28477947,23885357:154572 +k1,321:29823963,23885357:154571 +k1,321:32583029,23885357:0 +) +(1,322:6630773,24726845:25952256,505283,134348 +k1,321:9088233,24726845:201055 +k1,321:9905326,24726845:201055 +k1,321:11700217,24726845:201055 +k1,321:13599310,24726845:201055 +k1,321:14156225,24726845:201055 +k1,321:15553967,24726845:201055 +k1,321:17118172,24726845:201056 +k1,321:18969424,24726845:201055 +k1,321:22005566,24726845:201055 +k1,321:22562481,24726845:201055 +k1,321:24623448,24726845:201055 +k1,321:25850141,24726845:201055 +k1,321:28686399,24726845:201055 +k1,321:29906539,24726845:201055 +k1,321:32583029,24726845:0 +) +(1,322:6630773,25568333:25952256,513147,134348 +k1,321:7519550,25568333:229485 +k1,321:8104895,25568333:229485 +k1,321:9892171,25568333:229485 +k1,321:10737694,25568333:229485 +k1,321:11737882,25568333:229485 +k1,321:17722739,25568333:229485 +k1,321:21028485,25568333:229486 +k1,321:23682802,25568333:229485 +k1,321:24370384,25568333:229485 +k1,321:25251297,25568333:229485 +k1,321:29357237,25568333:229485 +k1,321:30778167,25568333:229485 +k1,321:32583029,25568333:0 +) +(1,322:6630773,26409821:25952256,513147,134348 +k1,321:9251104,26409821:269555 +k1,321:12610681,26409821:269554 +k1,321:13899321,26409821:269555 +k1,321:15475008,26409821:269554 +k1,321:18820823,26409821:269555 +k1,321:20462046,26409821:269555 +k1,321:21928287,26409821:269554 +k1,321:23290327,26409821:269555 +k1,321:24219174,26409821:269555 +k1,321:25507813,26409821:269554 +k1,321:27289939,26409821:269555 +k1,321:28748971,26409821:269554 +k1,321:29634564,26409821:269555 +k1,322:32583029,26409821:0 +) +(1,322:6630773,27251309:25952256,513147,134348 +k1,321:7855792,27251309:234770 +k1,321:10858147,27251309:234770 +k1,321:12112002,27251309:234770 +k1,321:13439257,27251309:234770 +k1,321:14290065,27251309:234770 +k1,321:17601095,27251309:234770 +k1,321:20317714,27251309:234771 +k1,321:21743929,27251309:234770 +k1,321:26377476,27251309:234770 +k1,321:27631331,27251309:234770 +k1,321:29172234,27251309:234770 +k1,321:30499489,27251309:234770 +k1,321:31393551,27251309:234770 +k1,321:32583029,27251309:0 +) +(1,322:6630773,28092797:25952256,505283,134348 +k1,321:7518654,28092797:271843 +k1,321:11221308,28092797:271844 +k1,321:13643387,28092797:271843 +k1,321:14724600,28092797:271843 +k1,321:16797373,28092797:271844 +k1,321:19598906,28092797:271843 +k1,321:20328846,28092797:271843 +k1,321:24410297,28092797:271843 +k1,321:25452844,28092797:271844 +k1,321:29484487,28092797:271843 +k1,321:32583029,28092797:0 +) +(1,322:6630773,28934285:25952256,505283,134348 +g1,321:9916092,28934285 +k1,322:32583030,28934285:21296580 +g1,322:32583030,28934285 +) +(1,324:6630773,29775773:25952256,513147,134348 +h1,323:6630773,29775773:983040,0,0 +k1,323:8249970,29775773:148569 +k1,323:10910584,29775773:148619 +k1,323:14153158,29775773:148619 +k1,323:15869399,29775773:148620 +k1,323:16373878,29775773:148619 +k1,323:18224467,29775773:148619 +k1,323:20659637,29775773:148619 +k1,323:21569785,29775773:148620 +k1,323:24268410,29775773:148619 +k1,323:25822776,29775773:148619 +k1,323:28103937,29775773:148619 +k1,323:29846393,29775773:148620 +k1,323:30888268,29775773:148619 +k1,323:32583029,29775773:0 +) +(1,324:6630773,30617261:25952256,505283,134348 +g1,323:7591530,30617261 +g1,323:10177580,30617261 +k1,324:32583028,30617261:20430848 +g1,324:32583028,30617261 +) +(1,326:7202902,31850855:24807998,513147,134348 +(1,324:7202902,31850855:983040,0,0 +g1,324:8185942,31850855 +g1,324:6875222,31850855 +g1,324:6547542,31850855 +(1,324:6547542,31850855:1310720,0,0 +k1,324:7858262,31850855:1310720 +) +g1,324:8185942,31850855 +) +k1,325:8842039,31850855:186204 +k1,325:10129248,31850855:186204 +k1,325:11825402,31850855:186204 +k1,325:13240406,31850855:186204 +k1,325:14151439,31850855:186205 +k1,325:14953681,31850855:186204 +k1,325:15906001,31850855:186204 +k1,325:16751497,31850855:186204 +k1,325:17918775,31850855:186204 +k1,325:21611810,31850855:186204 +k1,325:22994701,31850855:186204 +k1,325:24487038,31850855:186204 +k1,325:26028528,31850855:186205 +k1,325:26746229,31850855:186204 +k1,325:27703136,31850855:186204 +k1,325:30819455,31850855:186204 +k1,325:32010900,31850855:0 +) +(1,326:7202902,32692343:24807998,513147,134348 +k1,325:9455526,32692343:226906 +k1,325:11076382,32692343:226905 +k1,325:11659148,32692343:226906 +k1,325:13750553,32692343:226906 +k1,325:15411386,32692343:226905 +k1,325:19000944,32692343:226906 +k1,325:22281828,32692343:226906 +k1,325:24170727,32692343:226906 +k1,325:26007852,32692343:226905 +k1,325:27301029,32692343:226906 +k1,325:28719380,32692343:226906 +k1,325:29611475,32692343:226905 +k1,325:30576972,32692343:226906 +k1,325:32010900,32692343:0 +) +(1,326:7202902,33533831:24807998,513147,134348 +k1,325:8632111,33533831:144703 +k1,325:11909436,33533831:144704 +k1,325:13547705,33533831:144703 +k1,325:15165002,33533831:144703 +k1,325:17137504,33533831:144703 +k1,325:18473653,33533831:144704 +k1,325:21981008,33533831:144703 +k1,325:23117271,33533831:144703 +k1,325:27118113,33533831:144704 +k1,325:30819455,33533831:144703 +k1,325:32010900,33533831:0 +) +(1,326:7202902,34375319:24807998,513147,134348 +k1,325:9855603,34375319:221315 +k1,325:10736210,34375319:221315 +k1,325:13270291,34375319:221315 +k1,325:16537719,34375319:221315 +k1,325:18542924,34375319:221315 +k1,325:19955684,34375319:221315 +k1,325:21821297,34375319:221315 +k1,325:23034172,34375319:221315 +k1,325:26047321,34375319:221315 +k1,325:28311393,34375319:221315 +k1,325:32010900,34375319:0 +) +(1,326:7202902,35216807:24807998,513147,126483 +g1,325:9822376,35216807 +g1,325:10704490,35216807 +g1,325:12981210,35216807 +g1,325:13711936,35216807 +g1,325:16675474,35216807 +k1,326:32010900,35216807:12653693 +g1,326:32010900,35216807 +) +(1,329:6630773,36450401:25952256,505283,134348 +h1,328:6630773,36450401:983040,0,0 +k1,328:8990486,36450401:179986 +k1,328:11409181,36450401:179985 +k1,328:14864001,36450401:179986 +k1,328:16899310,36450401:179985 +k1,328:19125330,36450401:179986 +k1,328:20835581,36450401:179985 +k1,328:22300073,36450401:179986 +k1,328:23855659,36450401:179985 +k1,328:25389619,36450401:179986 +k1,328:29778326,36450401:179985 +k1,328:31451222,36450401:179986 +k1,328:32583029,36450401:0 +) +(1,329:6630773,37291889:25952256,513147,134348 +k1,328:8123771,37291889:209803 +k1,328:10422207,37291889:209804 +k1,328:12082977,37291889:209803 +k1,328:14994174,37291889:209803 +k1,328:16400665,37291889:209804 +k1,328:18263941,37291889:209803 +k1,328:20755052,37291889:209803 +k1,328:21616283,37291889:209803 +k1,328:22240919,37291889:209793 +k1,328:24612099,37291889:209803 +k1,328:25508065,37291889:209804 +k1,328:26996475,37291889:209803 +k1,328:27892440,37291889:209803 +k1,328:29234051,37291889:209804 +k1,328:31145824,37291889:209803 +k1,329:32583029,37291889:0 +) +(1,329:6630773,38133377:25952256,513147,134348 +k1,328:8736394,38133377:239811 +k1,328:10626402,38133377:239811 +k1,328:11525505,38133377:239811 +k1,328:14841577,38133377:239812 +k1,328:16751245,38133377:239811 +k1,328:18653049,38133377:239811 +k1,328:20096101,38133377:239811 +k1,328:20794009,38133377:239811 +k1,328:23669678,38133377:239811 +k1,328:26224877,38133377:239812 +k1,328:27749194,38133377:239811 +k1,328:30170699,38133377:239811 +k1,328:31601955,38133377:239811 +k1,329:32583029,38133377:0 +) +(1,329:6630773,38974865:25952256,513147,134348 +k1,328:9490536,38974865:305825 +k1,328:10787920,38974865:305824 +k1,328:15164841,38974865:305825 +k1,328:17156251,38974865:305824 +k1,328:18078114,38974865:305825 +k1,328:19403023,38974865:305824 +k1,328:23840893,38974865:305825 +k1,328:24813873,38974865:305824 +k1,328:25534434,38974865:305718 +k1,328:28001636,38974865:305825 +k1,328:29498905,38974865:305824 +k1,328:32583029,38974865:0 +) +(1,329:6630773,39816353:25952256,513147,134348 +k1,328:10461100,39816353:252061 +k1,328:11399324,39816353:252062 +k1,328:12422088,39816353:252061 +k1,328:15171727,39816353:252062 +k1,328:15955285,39816353:252061 +k1,328:18573197,39816353:252062 +k1,328:19844343,39816353:252061 +k1,328:21922893,39816353:252062 +k1,328:22834246,39816353:252061 +k1,328:24289549,39816353:252062 +k1,328:26297320,39816353:252061 +k1,328:29484084,39816353:252062 +k1,328:31266411,39816353:252061 +k1,329:32583029,39816353:0 +) +(1,329:6630773,40657841:25952256,513147,134348 +k1,328:10161343,40657841:281950 +k1,328:11944067,40657841:281950 +k1,328:13417463,40657841:281951 +k1,328:15283418,40657841:281950 +k1,328:20391439,40657841:281950 +k1,328:21664949,40657841:281950 +k1,328:26337157,40657841:281951 +k1,328:27566758,40657841:281950 +k1,328:30401335,40657841:281950 +k1,328:32583029,40657841:0 +) +(1,329:6630773,41499329:25952256,505283,7863 +g1,328:8021447,41499329 +k1,329:32583030,41499329:22659728 +g1,329:32583030,41499329 +) +(1,331:6630773,42340817:25952256,513147,134348 +h1,330:6630773,42340817:983040,0,0 +k1,330:9339704,42340817:235602 +k1,330:10522957,42340817:235602 +k1,330:12919936,42340817:235602 +k1,330:14668763,42340817:235601 +k1,330:15852016,42340817:235602 +k1,330:19160601,42340817:235602 +k1,330:19752063,42340817:235602 +k1,330:21860684,42340817:235602 +k1,330:23485649,42340817:235602 +k1,330:24829465,42340817:235602 +k1,330:25933418,42340817:235601 +k1,330:27699286,42340817:235602 +k1,330:28586316,42340817:235602 +k1,330:29569684,42340817:235602 +k1,330:32583029,42340817:0 +) +(1,331:6630773,43182305:25952256,505283,134348 +k1,330:8110303,43182305:195024 +k1,330:9324412,43182305:195024 +k1,330:12960731,43182305:195024 +k1,330:14347200,43182305:195024 +k1,330:16050863,43182305:195024 +k1,330:21302645,43182305:195024 +k1,330:22489229,43182305:195024 +k1,330:24398019,43182305:195024 +k1,330:25784488,43182305:195024 +k1,330:27288266,43182305:195024 +k1,330:28134718,43182305:195024 +k1,330:30340387,43182305:195024 +k1,330:32583029,43182305:0 +) +(1,331:6630773,44023793:25952256,513147,126483 +k1,330:9185038,44023793:207421 +k1,330:10773304,44023793:207422 +k1,330:11512222,44023793:207421 +k1,330:13027086,44023793:207421 +k1,330:14701203,44023793:207421 +k1,330:15856276,44023793:207422 +k1,330:18913202,44023793:207421 +k1,330:21620822,44023793:207421 +k1,330:23853961,44023793:207421 +k1,330:27518407,44023793:207422 +k1,330:30052356,44023793:207421 +k1,330:31451222,44023793:207421 +k1,330:32583029,44023793:0 +) +(1,331:6630773,44865281:25952256,513147,134348 +k1,330:8226640,44865281:206504 +k1,330:10987737,44865281:206504 +k1,330:13415911,44865281:206503 +k1,330:14273843,44865281:206504 +k1,330:18143810,44865281:206504 +k1,330:19009606,44865281:206504 +k1,330:22842872,44865281:206504 +k1,330:24443326,44865281:206503 +k1,330:27936461,44865281:206504 +k1,330:28825850,44865281:206504 +k1,330:32583029,44865281:0 +) +(1,331:6630773,45706769:25952256,513147,126483 +k1,330:7675064,45706769:270311 +k1,330:10227993,45706769:270310 +k1,330:11965000,45706769:270311 +k1,330:12851349,45706769:270311 +k1,330:14819041,45706769:270310 +k1,330:16787390,45706769:270311 +k1,330:17926053,45706769:270311 +k1,330:19187924,45706769:270311 +k1,330:20524505,45706769:270310 +k1,330:23507351,45706769:270311 +k1,330:24429090,45706769:270311 +k1,330:28732486,45706769:270310 +k1,330:31535764,45706769:270311 +k1,330:32583029,45706769:0 +) +] +(1,332:32583029,45706769:0,0,0 +g1,332:32583029,45706769 +) +) +] +(1,332:6630773,47279633:25952256,0,0 +h1,332:6630773,47279633:25952256,0,0 +) +] +(1,332:4262630,4025873:0,0,0 +[1,332:-473656,4025873:0,0,0 +(1,332:-473656,-710413:0,0,0 +(1,332:-473656,-710413:0,0,0 +g1,332:-473656,-710413 +) +g1,332:-473656,-710413 +) +] +) +] +!22928 +}11 +Input:200:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:201:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:202:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!284 +{12 +[1,347:4262630,47279633:28320399,43253760,0 +(1,347:4262630,4025873:0,0,0 +[1,347:-473656,4025873:0,0,0 +(1,347:-473656,-710413:0,0,0 +(1,347:-473656,-644877:0,0,0 +k1,347:-473656,-644877:-65536 ) -(183,35:27187271,42683153:501378,78643,0 -(183,35:27351125,42683153:173670,78643,0 +(1,347:-473656,4736287:0,0,0 +k1,347:-473656,4736287:5209943 ) +g1,347:-473656,-710413 ) -(183,35:27688649,42683153:501378,78643,0 -(183,35:27852503,42683153:173670,78643,0 +] ) +[1,347:6630773,47279633:25952256,43253760,0 +[1,347:6630773,4812305:25952256,786432,0 +(1,347:6630773,4812305:25952256,473825,134348 +(1,347:6630773,4812305:25952256,473825,134348 +g1,347:3078558,4812305 +[1,347:3078558,4812305:0,0,0 +(1,347:3078558,2439708:0,1703936,0 +k1,347:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,347:2537886,2439708:1179648,16384,0 ) -(183,35:28190027,42683153:501378,78643,0 -(183,35:28353881,42683153:173670,78643,0 +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,347:3078558,1915420:16384,1179648,0 ) +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) -(183,35:28691405,42683153:501378,78643,0 -(183,35:28855259,42683153:173670,78643,0 +] ) ) -(183,35:29192783,42683153:501378,78643,0 -(183,35:29356637,42683153:173670,78643,0 ) +] +[1,347:3078558,4812305:0,0,0 +(1,347:3078558,2439708:0,1703936,0 +g1,347:29030814,2439708 +g1,347:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,347:36151628,1915420:16384,1179648,0 ) -(183,35:29694161,42683153:501378,78643,0 -(183,35:29858015,42683153:173670,78643,0 +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) +] ) -(183,35:30195539,42683153:501378,78643,0 -(183,35:30359393,42683153:173670,78643,0 +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,347:37855564,2439708:1179648,16384,0 ) ) -(183,35:30696917,42683153:501378,78643,0 -(183,35:30860771,42683153:173670,78643,0 +k1,347:3078556,2439708:-34777008 ) +] +[1,347:3078558,4812305:0,0,0 +(1,347:3078558,49800853:0,16384,2228224 +k1,347:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,347:2537886,49800853:1179648,16384,0 ) -(183,35:31239539,42683153:1343490,485622,11795 -k183,35:31586882,42683153:347343 -g183,35:31786111,42683153 +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,347:3078558,51504789:16384,1179648,0 ) -g183,35:30911859,42683153 -g183,35:32583029,42683153 +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) -(183,36:6630773,43524641:25952256,505283,134348 -g183,36:11218293,43524641 -h183,36:11218293,43524641:2490370,0,0 -h183,36:13708663,43524641:0,0,0 -g183,36:9121143,43524641 -(183,36:9121143,43524641:2097150,485622,11795 -k183,36:11218293,43524641:155974 +] +) +) +) +] +[1,347:3078558,4812305:0,0,0 +(1,347:3078558,49800853:0,16384,2228224 +g1,347:29030814,49800853 +g1,347:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,347:36151628,51504789:16384,1179648,0 +) +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 +) +] +) +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,347:37855564,49800853:1179648,16384,0 +) +) +k1,347:3078556,49800853:-34777008 +) +] +g1,347:6630773,4812305 +g1,347:6630773,4812305 +g1,347:9132937,4812305 +g1,347:11356573,4812305 +k1,347:32184569,4812305:20827996 +) +) +] +[1,347:6630773,45706769:25952256,40108032,0 +(1,347:6630773,45706769:25952256,40108032,0 +(1,347:6630773,45706769:0,0,0 +g1,347:6630773,45706769 +) +[1,347:6630773,45706769:25952256,40108032,0 +(1,331:6630773,6254097:25952256,513147,134348 +k1,330:7780728,6254097:202304 +k1,330:10626755,6254097:202305 +k1,330:13187700,6254097:202304 +k1,330:15427519,6254097:202305 +k1,330:18114293,6254097:202304 +k1,330:18968026,6254097:202305 +k1,330:19526190,6254097:202304 +k1,330:21956064,6254097:202305 +k1,330:26374299,6254097:202304 +k1,330:27444956,6254097:202305 +k1,330:28779722,6254097:202304 +k1,330:30180681,6254097:202305 +k1,330:31931601,6254097:202304 +k1,330:32583029,6254097:0 +) +(1,331:6630773,7095585:25952256,505283,126483 +g1,330:8559497,7095585 +g1,330:10640265,7095585 +k1,331:32583028,7095585:18934660 +g1,331:32583028,7095585 +) +(1,333:6630773,7937073:25952256,513147,134348 +h1,332:6630773,7937073:983040,0,0 +k1,332:9053991,7937073:243491 +k1,332:10603616,7937073:243492 +k1,332:12202392,7937073:243491 +k1,332:13061921,7937073:243491 +k1,332:16568451,7937073:243492 +k1,332:19162718,7937073:243491 +k1,332:22482469,7937073:243491 +k1,332:24222147,7937073:243491 +k1,332:24997136,7937073:243492 +k1,332:25892055,7937073:243491 +k1,332:28183546,7937073:243491 +k1,332:29711544,7937073:243492 +k1,332:31086842,7937073:243491 +k1,332:32583029,7937073:0 +) +(1,333:6630773,8778561:25952256,513147,126483 +k1,332:8200470,8778561:285191 +k1,332:9354013,8778561:285191 +k1,332:11254010,8778561:285190 +k1,332:13399768,8778561:285191 +k1,332:14336387,8778561:285191 +k1,332:15369344,8778561:285191 +k1,332:17614060,8778561:285190 +k1,332:19264366,8778561:285191 +k1,332:20015518,8778561:285191 +k1,332:23104339,8778561:285191 +k1,332:26484139,8778561:285190 +k1,332:29373731,8778561:285191 +k1,332:32583029,8778561:0 +) +(1,333:6630773,9620049:25952256,505283,126483 +k1,332:8209099,9620049:223041 +k1,332:8963636,9620049:223040 +k1,332:9838105,9620049:223041 +k1,332:11776878,9620049:223040 +k1,332:13380763,9620049:223041 +k1,332:14888310,9620049:223041 +k1,332:16819874,9620049:223040 +k1,332:17574412,9620049:223041 +k1,332:20718392,9620049:223040 +k1,332:22951422,9620049:223041 +k1,332:24193548,9620049:223041 +k1,332:26247664,9620049:223040 +k1,332:27662150,9620049:223041 +k1,332:28241050,9620049:223040 +k1,332:30976086,9620049:223041 +k1,332:32583029,9620049:0 +) +(1,333:6630773,10461537:25952256,513147,134348 +k1,332:9851649,10461537:180005 +k1,332:10979305,10461537:180005 +k1,332:12336338,10461537:180006 +k1,332:14224867,10461537:180005 +k1,332:17592543,10461537:180005 +k1,332:19312644,10461537:180005 +k1,332:21201174,10461537:180006 +k1,332:23391824,10461537:180005 +k1,332:25592959,10461537:180005 +k1,332:28138814,10461537:180005 +k1,332:29337905,10461537:180006 +k1,332:31298523,10461537:180005 +k1,332:32583029,10461537:0 +) +(1,333:6630773,11303025:25952256,505283,126483 +g1,332:7934284,11303025 +g1,332:8881279,11303025 +g1,332:11445047,11303025 +g1,332:14223773,11303025 +g1,332:15184530,11303025 +g1,332:16402844,11303025 +k1,333:32583029,11303025:13968345 +g1,333:32583029,11303025 +) +(1,335:6630773,12144513:25952256,513147,134348 +h1,334:6630773,12144513:983040,0,0 +k1,334:8385546,12144513:293976 +k1,334:10793713,12144513:293976 +k1,334:13443053,12144513:293976 +k1,334:14419913,12144513:293975 +k1,334:16828080,12144513:293976 +k1,334:19400743,12144513:293976 +k1,334:20960875,12144513:293976 +k1,334:21610711,12144513:293976 +k1,334:23897637,12144513:293976 +k1,334:25871956,12144513:293976 +k1,334:26697428,12144513:293975 +k1,334:29770131,12144513:293976 +k1,334:30825635,12144513:293976 +k1,334:31475471,12144513:293976 +k1,335:32583029,12144513:0 +) +(1,335:6630773,12986001:25952256,513147,134348 +k1,334:9618307,12986001:236988 +k1,334:10538180,12986001:236988 +k1,334:11584539,12986001:236989 +k1,334:13501870,12986001:236988 +k1,334:15188514,12986001:236988 +k1,334:16444587,12986001:236988 +k1,334:18512652,12986001:236989 +k1,334:21150224,12986001:236988 +k1,334:22070097,12986001:236988 +k1,334:24767962,12986001:236988 +k1,334:25360811,12986001:236989 +k1,334:27036314,12986001:236988 +k1,334:29261009,12986001:236988 +k1,334:32583029,12986001:0 +) +(1,335:6630773,13827489:25952256,513147,134348 +k1,334:9422432,13827489:199710 +k1,334:10238180,13827489:199710 +k1,334:12694295,13827489:199710 +k1,334:13913090,13827489:199710 +k1,334:15894724,13827489:199710 +k1,334:16753726,13827489:199710 +k1,334:17972521,13827489:199710 +k1,334:21022391,13827489:199709 +k1,334:22418788,13827489:199710 +k1,334:24400422,13827489:199710 +k1,334:25704414,13827489:199710 +k1,334:26651890,13827489:199710 +k1,334:28707580,13827489:199710 +k1,334:29263150,13827489:199710 +k1,334:31966991,13827489:199710 +k1,334:32583029,13827489:0 +) +(1,335:6630773,14668977:25952256,513147,134348 +k1,334:7904083,14668977:254225 +k1,334:13215066,14668977:254225 +k1,334:14128584,14668977:254226 +k1,334:15153512,14668977:254225 +k1,334:18692401,14668977:254225 +k1,334:19632788,14668977:254225 +k1,334:21165620,14668977:254225 +k1,334:22106007,14668977:254225 +k1,334:22976271,14668977:254226 +k1,334:24249581,14668977:254225 +k1,334:27614800,14668977:254225 +k1,334:29648327,14668977:254225 +k1,334:32583029,14668977:0 +) +(1,335:6630773,15510465:25952256,513147,134348 +k1,334:8616715,15510465:234165 +k1,334:11711527,15510465:234165 +k1,334:13454987,15510465:234165 +k1,334:14680712,15510465:234165 +k1,334:17117542,15510465:234165 +k1,334:18113235,15510465:234165 +k1,334:19524428,15510465:234166 +k1,334:20441478,15510465:234165 +k1,334:23147661,15510465:234165 +k1,334:26183490,15510465:234165 +k1,334:27076947,15510465:234165 +k1,334:29505257,15510465:234165 +k1,334:31436804,15510465:234165 +k1,334:32583029,15510465:0 +) +(1,335:6630773,16351953:25952256,505283,134348 +k1,334:9045884,16351953:258976 +k1,334:11013385,16351953:258977 +k1,334:13456676,16351953:258976 +k1,334:16639213,16351953:258976 +k1,334:19009105,16351953:258977 +k1,334:21789251,16351953:258976 +k1,334:22809755,16351953:258976 +k1,334:24662568,16351953:258977 +k1,334:26206705,16351953:258976 +k1,334:27081719,16351953:258976 +k1,334:29226167,16351953:258977 +k1,334:29841003,16351953:258976 +k1,334:32583029,16351953:0 +) +(1,335:6630773,17193441:25952256,513147,134348 +g1,334:9230586,17193441 +g1,334:11756998,17193441 +g1,334:12615519,17193441 +g1,334:15682603,17193441 +g1,334:18148722,17193441 +g1,334:18703811,17193441 +g1,334:21175829,17193441 +g1,334:22982001,17193441 +k1,335:32583029,17193441:6722031 +g1,335:32583029,17193441 +) +(1,337:6630773,18034929:25952256,513147,134348 +h1,336:6630773,18034929:983040,0,0 +k1,336:11395593,18034929:217277 +k1,336:12631955,18034929:217277 +k1,336:14958181,18034929:217277 +k1,336:15834750,18034929:217277 +k1,336:17571807,18034929:217277 +k1,336:18494251,18034929:217277 +k1,336:19327566,18034929:217277 +k1,336:21146543,18034929:217277 +k1,336:23234873,18034929:217277 +k1,336:24598375,18034929:217277 +k1,336:27684163,18034929:217277 +k1,336:29671567,18034929:217277 +k1,336:31160242,18034929:217277 +k1,336:32583029,18034929:0 +) +(1,337:6630773,18876417:25952256,513147,126483 +k1,336:9493479,18876417:192114 +k1,336:11540262,18876417:192114 +k1,336:12541746,18876417:192114 +k1,336:15511276,18876417:192114 +k1,336:17473517,18876417:192114 +k1,336:18857076,18876417:192114 +k1,336:22462305,18876417:192114 +k1,336:23305847,18876417:192114 +k1,336:24404324,18876417:192114 +k1,336:25247866,18876417:192114 +k1,336:27333315,18876417:192114 +k1,336:28544514,18876417:192114 +k1,336:30235436,18876417:192114 +k1,336:31086842,18876417:192114 +k1,336:32583029,18876417:0 +) +(1,337:6630773,19717905:25952256,513147,134348 +k1,336:9271218,19717905:215613 +k1,336:10505917,19717905:215614 +k1,336:13571691,19717905:215613 +k1,336:15058702,19717905:215613 +k1,336:17589703,19717905:215614 +k1,336:20567659,19717905:215613 +k1,336:22420362,19717905:215613 +k1,336:24128885,19717905:215613 +k1,336:25363584,19717905:215614 +k1,336:26946278,19717905:215613 +k1,336:27693388,19717905:215613 +k1,336:30137881,19717905:215614 +k1,336:30981329,19717905:215613 +k1,336:32583029,19717905:0 +) +(1,337:6630773,20559393:25952256,513147,134348 +k1,336:8680336,20559393:178510 +k1,336:9471608,20559393:178510 +k1,336:10669203,20559393:178510 +k1,336:12201686,20559393:178509 +k1,336:14703447,20559393:178510 +k1,336:15750309,20559393:178510 +k1,336:17130749,20559393:178510 +k1,336:18118629,20559393:178510 +k1,336:19989279,20559393:178510 +k1,336:21437876,20559393:178509 +k1,336:22275678,20559393:178510 +k1,336:28617849,20559393:178510 +k1,336:31541007,20559393:178510 +k1,336:32583029,20559393:0 +) +(1,337:6630773,21400881:25952256,505283,126483 +k1,336:9704888,21400881:239028 +k1,336:10812267,21400881:239027 +k1,336:12388229,21400881:239028 +k1,336:14449158,21400881:239028 +k1,336:15707271,21400881:239028 +k1,336:17626641,21400881:239027 +k1,336:20644396,21400881:239028 +k1,336:21644952,21400881:239028 +k1,336:25941969,21400881:239028 +k1,336:29982739,21400881:239027 +k1,336:31714677,21400881:239028 +k1,336:32583029,21400881:0 +) +(1,337:6630773,22242369:25952256,505283,134348 +k1,336:8688663,22242369:164555 +k1,336:9872303,22242369:164555 +k1,336:12369283,22242369:164554 +k1,336:14030025,22242369:164555 +k1,336:17380940,22242369:164555 +k1,336:20808533,22242369:164555 +k1,336:21328948,22242369:164555 +k1,336:23486453,22242369:164555 +k1,336:25505021,22242369:164554 +k1,336:28273977,22242369:164555 +k1,336:31215948,22242369:164555 +k1,336:32583029,22242369:0 +) +(1,337:6630773,23083857:25952256,513147,134348 +k1,336:7341879,23083857:179609 +k1,336:9219527,23083857:179610 +k1,336:11091276,23083857:179609 +k1,336:12979410,23083857:179610 +k1,336:15169664,23083857:179609 +k1,336:17479849,23083857:179610 +k1,336:18015318,23083857:179609 +k1,336:19558076,23083857:179609 +k1,336:20365521,23083857:179610 +k1,336:22038696,23083857:179609 +k1,336:23915688,23083857:179610 +k1,336:24553394,23083857:179609 +k1,336:25264501,23083857:179610 +k1,336:28749091,23083857:179609 +k1,336:30263669,23083857:179610 +k1,336:31094706,23083857:179609 +k1,336:32583029,23083857:0 +) +(1,337:6630773,23925345:25952256,513147,134348 +k1,336:7529271,23925345:136970 +k1,336:9847935,23925345:136970 +k1,336:10450866,23925345:136970 +k1,336:13350180,23925345:136971 +k1,336:15784842,23925345:136970 +k1,336:16581104,23925345:136970 +k1,336:18426598,23925345:136970 +k1,336:19892638,23925345:136970 +k1,336:20681036,23925345:136970 +k1,336:25491379,23925345:136971 +k1,336:26311234,23925345:136970 +k1,336:27688145,23925345:136970 +k1,336:30874505,23925345:136970 +k1,336:32583029,23925345:0 +) +(1,337:6630773,24766833:25952256,513147,134348 +k1,336:8864240,24766833:222822 +k1,336:10078622,24766833:222822 +k1,336:12588652,24766833:222823 +k1,336:13830559,24766833:222822 +k1,336:16233108,24766833:222822 +k1,336:18116612,24766833:222822 +k1,336:19581997,24766833:222822 +k1,336:20752470,24766833:222822 +k1,336:23965045,24766833:222823 +k1,336:25781703,24766833:222822 +k1,336:28659388,24766833:222822 +k1,336:30073655,24766833:222822 +k1,336:32583029,24766833:0 +) +(1,337:6630773,25608321:25952256,513147,134348 +k1,336:9035325,25608321:220237 +k1,336:10609536,25608321:220237 +k1,336:12400671,25608321:220237 +k1,336:14805222,25608321:220236 +k1,336:16379433,25608321:220237 +k1,336:18316058,25608321:220237 +k1,336:20720610,25608321:220237 +k1,336:23412865,25608321:220237 +k1,336:25643747,25608321:220237 +(1,336:25850841,25608321:0,414482,115847 +r1,347:26560819,25608321:709978,530329,115847 +k1,336:25850841,25608321:-709978 +) +(1,336:25850841,25608321:709978,414482,115847 +k1,336:25850841,25608321:3277 +h1,336:26557542,25608321:0,411205,112570 +) +k1,336:27161819,25608321:220236 +k1,336:29690234,25608321:220237 +k1,336:30569763,25608321:220237 +k1,336:32583029,25608321:0 +) +(1,337:6630773,26449809:25952256,505283,115847 +g1,336:8250167,26449809 +(1,336:8457261,26449809:0,452978,115847 +r1,347:11629221,26449809:3171960,568825,115847 +k1,336:8457261,26449809:-3171960 +) +(1,336:8457261,26449809:3171960,452978,115847 +k1,336:8457261,26449809:3277 +h1,336:11625944,26449809:0,411205,112570 +) +g1,336:12209214,26449809 +k1,337:32583029,26449809:19262324 +g1,337:32583029,26449809 +) +v1,339:6630773,27674751:0,393216,0 +(1,340:6630773,33542482:25952256,6260947,0 +g1,340:6630773,33542482 +g1,340:6303093,33542482 +r1,347:6401397,33542482:98304,6260947,0 +g1,340:6600626,33542482 +g1,340:6797234,33542482 +[1,340:6797234,33542482:25785795,6260947,0 +(1,340:6797234,28367071:25785795,1085536,298548 +(1,339:6797234,28367071:0,1085536,298548 +r1,347:8303649,28367071:1506415,1384084,298548 +k1,339:6797234,28367071:-1506415 +) +(1,339:6797234,28367071:1506415,1085536,298548 +) +k1,339:8521412,28367071:217763 +k1,339:10451465,28367071:223495 +k1,339:13826753,28367071:217763 +k1,339:15827752,28367071:217764 +k1,339:19541205,28367071:217763 +k1,339:21266952,28367071:217764 +k1,339:22100753,28367071:217763 +k1,339:23975267,28367071:217764 +k1,339:25477536,28367071:217763 +k1,339:26311338,28367071:217764 +k1,339:28221241,28367071:217763 +k1,339:30136387,28367071:217764 +k1,339:30710010,28367071:217763 +k1,339:32583029,28367071:0 +) +(1,340:6797234,29208559:25785795,513147,134348 +k1,339:8162922,29208559:176210 +k1,339:9443414,29208559:176210 +k1,339:10948694,29208559:176210 +k1,339:11776332,29208559:176210 +k1,339:12308402,29208559:176210 +k1,339:14367461,29208559:176210 +k1,339:17020932,29208559:176210 +k1,339:17856434,29208559:176210 +k1,339:19639587,29208559:176210 +k1,339:23025095,29208559:176210 +k1,339:24099148,29208559:176210 +k1,339:25561174,29208559:176210 +k1,339:27245367,29208559:176210 +k1,339:28037615,29208559:176210 +k1,339:29870575,29208559:176210 +k1,339:31331291,29208559:176210 +k1,340:32583029,29208559:0 +) +(1,340:6797234,30050047:25785795,505283,134348 +k1,339:8009292,30050047:221809 +k1,339:11239205,30050047:221810 +k1,339:14938354,30050047:221809 +k1,339:16858201,30050047:221809 +k1,339:18576198,30050047:221810 +k1,339:19329504,30050047:221809 +k1,339:21974180,30050047:221810 +k1,339:24754515,30050047:221809 +k1,339:25995409,30050047:221809 +k1,339:29351806,30050047:221810 +k1,339:30677897,30050047:221809 +k1,339:32583029,30050047:0 +) +(1,340:6797234,30891535:25785795,513147,126483 +k1,339:9274003,30891535:228229 +k1,339:10118270,30891535:228229 +k1,339:10702359,30891535:228229 +k1,339:12935334,30891535:228229 +k1,339:15450770,30891535:228229 +k1,339:17333784,30891535:228230 +k1,339:18093510,30891535:228229 +k1,339:19794333,30891535:228229 +k1,339:25098981,30891535:228229 +k1,339:27962413,30891535:228229 +k1,339:29209727,30891535:228229 +k1,339:31923737,30891535:228229 +k1,339:32583029,30891535:0 +) +(1,340:6797234,31733023:25785795,513147,134348 +k1,339:8615694,31733023:211517 +k1,339:11862840,31733023:211518 +k1,339:13265802,31733023:211517 +k1,339:14496404,31733023:211517 +k1,339:18437576,31733023:211518 +k1,339:19308385,31733023:211517 +k1,339:20538987,31733023:211517 +k1,339:21939983,31733023:211518 +k1,339:25272324,31733023:211517 +k1,339:27296567,31733023:211517 +k1,339:29291320,31733023:211518 +k1,339:31734338,31733023:211517 +k1,340:32583029,31733023:0 +) +(1,340:6797234,32574511:25785795,513147,134348 +k1,339:8293370,32574511:194591 +k1,339:9479522,32574511:194592 +k1,339:12746441,32574511:194591 +k1,339:14429356,32574511:194592 +k1,339:15385475,32574511:194591 +k1,339:17982616,32574511:194591 +k1,339:19196293,32574511:194592 +k1,339:20997827,32574511:194591 +k1,339:23897744,32574511:194591 +k1,339:26442457,32574511:194592 +k1,339:28116851,32574511:194591 +k1,339:28997605,32574511:194592 +k1,339:30645785,32574511:194591 +k1,339:32583029,32574511:0 +) +(1,340:6797234,33415999:25785795,513147,126483 +g1,339:8100745,33415999 +g1,339:9047740,33415999 +g1,339:10017672,33415999 +g1,339:12681055,33415999 +g1,339:16963177,33415999 +g1,339:17821698,33415999 +g1,339:20054509,33415999 +k1,340:32583029,33415999:10867838 +g1,340:32583029,33415999 +) +] +g1,340:32583029,33542482 +) +h1,340:6630773,33542482:0,0,0 +(1,343:6630773,34767425:25952256,505283,134348 +h1,342:6630773,34767425:983040,0,0 +k1,342:9645691,34767425:199491 +k1,342:10836743,34767425:199492 +k1,342:13230379,34767425:199491 +k1,342:15184925,34767425:199492 +k1,342:17252192,34767425:199491 +k1,342:20923125,34767425:199491 +k1,342:24080257,34767425:199492 +k1,342:25471193,34767425:199491 +k1,342:27050873,34767425:199492 +k1,342:28638417,34767425:199491 +k1,342:32583029,34767425:0 +) +(1,343:6630773,35608913:25952256,505283,134348 +k1,342:10204451,35608913:193331 +k1,342:12079436,35608913:193331 +k1,342:13429478,35608913:193332 +k1,342:14274237,35608913:193331 +k1,342:15822853,35608913:193331 +k1,342:18574710,35608913:193331 +k1,342:19787127,35608913:193332 +k1,342:21650315,35608913:193331 +k1,342:24898934,35608913:193331 +k1,342:26248975,35608913:193331 +k1,342:29628667,35608913:193332 +k1,342:30434760,35608913:193331 +k1,342:30983951,35608913:193331 +k1,342:32583029,35608913:0 +) +(1,343:6630773,36450401:25952256,505283,134348 +k1,342:8081264,36450401:259046 +k1,342:8953072,36450401:259046 +k1,342:10663739,36450401:259045 +k1,342:12965542,36450401:259046 +k1,342:15896491,36450401:259046 +k1,342:17174622,36450401:259046 +k1,342:18814512,36450401:259046 +k1,342:19724985,36450401:259045 +k1,342:22288932,36450401:259046 +k1,342:23567063,36450401:259046 +k1,342:26115937,36450401:259046 +k1,342:28780810,36450401:259046 +k1,342:29655893,36450401:259045 +k1,342:30934024,36450401:259046 +k1,342:31607853,36450401:258986 +k1,343:32583029,36450401:0 +) +(1,343:6630773,37291889:25952256,505283,126483 +k1,342:10170789,37291889:244866 +k1,342:11607100,37291889:244866 +k1,342:13360606,37291889:244867 +k1,342:15789787,37291889:244866 +k1,342:16504546,37291889:244866 +k1,342:17280909,37291889:244866 +k1,342:18992471,37291889:244866 +k1,342:21867297,37291889:244866 +k1,342:22763592,37291889:244867 +k1,342:25420838,37291889:244866 +k1,342:28892697,37291889:244866 +k1,342:32583029,37291889:0 +) +(1,343:6630773,38133377:25952256,513147,134348 +k1,342:8041152,38133377:189443 +k1,342:8882024,38133377:189444 +k1,342:11333770,38133377:189443 +k1,342:12542298,38133377:189443 +k1,342:14412085,38133377:189444 +k1,342:15260820,38133377:189443 +k1,342:15806123,38133377:189443 +k1,342:18680577,38133377:189444 +k1,342:20559538,38133377:189443 +k1,342:23824586,38133377:189443 +k1,342:24545526,38133377:189443 +k1,342:27198468,38133377:189444 +k1,342:28290342,38133377:189443 +k1,342:28894619,38133377:189434 +k1,342:32051532,38133377:189443 +k1,342:32583029,38133377:0 +) +(1,343:6630773,38974865:25952256,505283,134348 +g1,342:9613971,38974865 +g1,342:11823189,38974865 +g1,342:14446595,38974865 +g1,342:15837269,38974865 +g1,342:17322314,38974865 +g1,342:20080069,38974865 +g1,342:21298383,38974865 +g1,342:21912455,38974865 +k1,343:32583029,38974865:8076659 +g1,343:32583029,38974865 +) +(1,345:6630773,39816353:25952256,513147,134348 +h1,344:6630773,39816353:983040,0,0 +k1,344:9590925,39816353:193877 +k1,344:12042517,39816353:193877 +k1,344:13695225,39816353:193877 +k1,344:15195236,39816353:193878 +k1,344:17724161,39816353:193877 +k1,344:19088511,39816353:193877 +k1,344:20414850,39816353:193877 +k1,344:23076813,39816353:193877 +k1,344:26095947,39816353:193877 +k1,344:27742103,39816353:193878 +k1,344:29127425,39816353:193877 +k1,344:30932832,39816353:193877 +k1,344:32583029,39816353:0 +) +(1,345:6630773,40657841:25952256,505283,134348 +k1,344:7649353,40657841:257052 +k1,344:10429542,40657841:257053 +k1,344:11705679,40657841:257052 +k1,344:13793807,40657841:257052 +k1,344:15207570,40657841:257053 +k1,344:16633129,40657841:257052 +k1,344:17502943,40657841:257052 +k1,344:18115855,40657841:257052 +k1,344:19798316,40657841:257053 +k1,344:21246813,40657841:257052 +k1,344:23201903,40657841:257052 +k1,344:25757304,40657841:257053 +k1,344:29753840,40657841:257052 +k1,345:32583029,40657841:0 +) +(1,345:6630773,41499329:25952256,513147,134348 +(1,344:6630773,41499329:0,452978,115847 +r1,347:9099310,41499329:2468537,568825,115847 +k1,344:6630773,41499329:-2468537 +) +(1,344:6630773,41499329:2468537,452978,115847 +k1,344:6630773,41499329:3277 +h1,344:9096033,41499329:0,411205,112570 +) +k1,344:9280251,41499329:180941 +k1,344:12977853,41499329:180940 +k1,344:13810222,41499329:180941 +k1,344:15978215,41499329:180941 +k1,344:16771917,41499329:180940 +k1,344:18283239,41499329:180941 +k1,344:19483264,41499329:180940 +k1,344:21344548,41499329:180941 +k1,344:22184781,41499329:180941 +k1,344:25207362,41499329:180940 +k1,344:27959280,41499329:180941 +k1,344:28752983,41499329:180941 +k1,344:30385545,41499329:180940 +k1,344:32095441,41499329:180941 +k1,344:32583029,41499329:0 +) +(1,345:6630773,42340817:25952256,513147,134348 +k1,344:9769030,42340817:170787 +k1,344:11951772,42340817:170787 +k1,344:12478418,42340817:170786 +k1,344:13505761,42340817:170787 +k1,344:15326745,42340817:170787 +k1,344:17959064,42340817:170787 +k1,344:18816013,42340817:170787 +k1,344:20143509,42340817:170786 +k1,344:21418578,42340817:170787 +k1,344:23244804,42340817:170787 +k1,344:24331784,42340817:170787 +k1,344:25694016,42340817:170787 +k1,344:27520241,42340817:170786 +k1,344:29057454,42340817:170787 +k1,344:29887533,42340817:170787 +k1,344:32583029,42340817:0 +) +(1,345:6630773,43182305:25952256,513147,126483 +k1,344:10497015,43182305:280112 +k1,344:11968571,43182305:280111 +k1,344:13183226,43182305:280112 +k1,344:14654783,43182305:280112 +k1,344:16699123,43182305:280111 +k1,344:18763780,43182305:280112 +k1,344:21062401,43182305:280112 +k1,344:23261406,43182305:280111 +k1,344:26617123,43182305:280112 +k1,344:28029697,43182305:280112 +k1,344:29885949,43182305:280111 +k1,344:32051532,43182305:280112 +k1,344:32583029,43182305:0 +) +(1,345:6630773,44023793:25952256,513147,134348 +g1,344:9937719,44023793 +g1,344:12114169,44023793 +g1,344:14011436,44023793 +g1,344:17693904,44023793 +g1,344:18307976,44023793 +k1,345:32583029,44023793:11190929 +g1,345:32583029,44023793 +) +(1,347:6630773,44865281:25952256,505283,134348 +h1,346:6630773,44865281:983040,0,0 +k1,346:9614900,44865281:217852 +k1,346:13731490,44865281:217853 +k1,346:14968427,44865281:217852 +k1,346:18177999,44865281:217853 +k1,346:19011889,44865281:217852 +k1,346:20432983,44865281:217853 +k1,346:23242129,44865281:217852 +k1,346:24275249,44865281:217852 +k1,346:26001085,44865281:217853 +k1,346:27422178,44865281:217852 +k1,346:29918718,44865281:217853 +k1,346:30752608,44865281:217852 +k1,346:32583029,44865281:0 +) +(1,347:6630773,45706769:25952256,513147,134348 +k1,346:7414584,45706769:155976 +k1,346:10410234,45706769:155975 +k1,346:11032171,45706769:155976 +k1,346:12358620,45706769:155976 +k1,346:13493048,45706769:155975 +k1,346:15377208,45706769:155976 +k1,346:17429796,45706769:155976 +k1,346:18237199,45706769:155975 +k1,346:19659331,45706769:155976 +k1,346:20834391,45706769:155975 +k1,346:22772291,45706769:155976 +k1,346:23587559,45706769:155976 +k1,346:24099394,45706769:155975 +k1,346:25618519,45706769:155976 +k1,346:26589763,45706769:155976 +k1,346:28897940,45706769:155975 +k1,346:30512747,45706769:155976 +k1,346:32583029,45706769:0 +) +] +(1,347:32583029,45706769:0,0,0 +g1,347:32583029,45706769 +) +) +] +(1,347:6630773,47279633:25952256,0,0 +h1,347:6630773,47279633:25952256,0,0 +) +] +(1,347:4262630,4025873:0,0,0 +[1,347:-473656,4025873:0,0,0 +(1,347:-473656,-710413:0,0,0 +(1,347:-473656,-710413:0,0,0 +g1,347:-473656,-710413 +) +g1,347:-473656,-710413 +) +] +) +] +!25554 +}12 +!11 +{13 +[1,366:4262630,47279633:28320399,43253760,0 +(1,366:4262630,4025873:0,0,0 +[1,366:-473656,4025873:0,0,0 +(1,366:-473656,-710413:0,0,0 +(1,366:-473656,-644877:0,0,0 +k1,366:-473656,-644877:-65536 ) -g183,36:13984567,43524641 -g183,36:17398337,43524641 -g183,36:18789011,43524641 -g183,36:22116274,43524641 -(183,36:22173491,43524641:501378,78643,0 -$183,36:22173491,43524641 -(183,36:22337345,43524641:173670,78643,0 +(1,366:-473656,4736287:0,0,0 +k1,366:-473656,4736287:5209943 ) -$183,36:22674869,43524641 +g1,366:-473656,-710413 ) -(183,36:22674869,43524641:501378,78643,0 -(183,36:22838723,43524641:173670,78643,0 +] ) +[1,366:6630773,47279633:25952256,43253760,0 +[1,366:6630773,4812305:25952256,786432,0 +(1,366:6630773,4812305:25952256,505283,134348 +(1,366:6630773,4812305:25952256,505283,134348 +g1,366:3078558,4812305 +[1,366:3078558,4812305:0,0,0 +(1,366:3078558,2439708:0,1703936,0 +k1,366:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,366:2537886,2439708:1179648,16384,0 ) -(183,36:23176247,43524641:501378,78643,0 -(183,36:23340101,43524641:173670,78643,0 +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,366:3078558,1915420:16384,1179648,0 ) +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) -(183,36:23677625,43524641:501378,78643,0 -(183,36:23841479,43524641:173670,78643,0 +] ) ) -(183,36:24179003,43524641:501378,78643,0 -(183,36:24342857,43524641:173670,78643,0 ) +] +[1,366:3078558,4812305:0,0,0 +(1,366:3078558,2439708:0,1703936,0 +g1,366:29030814,2439708 +g1,366:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,366:36151628,1915420:16384,1179648,0 ) -(183,36:24680381,43524641:501378,78643,0 -(183,36:24844235,43524641:173670,78643,0 +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) +] ) -(183,36:25181759,43524641:501378,78643,0 -(183,36:25345613,43524641:173670,78643,0 +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,366:37855564,2439708:1179648,16384,0 ) ) -(183,36:25683137,43524641:501378,78643,0 -(183,36:25846991,43524641:173670,78643,0 +k1,366:3078556,2439708:-34777008 ) +] +[1,366:3078558,4812305:0,0,0 +(1,366:3078558,49800853:0,16384,2228224 +k1,366:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,366:2537886,49800853:1179648,16384,0 ) -(183,36:26184515,43524641:501378,78643,0 -(183,36:26348369,43524641:173670,78643,0 +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,366:3078558,51504789:16384,1179648,0 +) +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 +) +] +) +) +) +] +[1,366:3078558,4812305:0,0,0 +(1,366:3078558,49800853:0,16384,2228224 +g1,366:29030814,49800853 +g1,366:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,366:36151628,51504789:16384,1179648,0 +) +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 +) +] +) +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,366:37855564,49800853:1179648,16384,0 +) +) +k1,366:3078556,49800853:-34777008 +) +] +g1,366:6630773,4812305 +k1,366:18771974,4812305:11742742 +g1,366:20158715,4812305 +g1,366:20807521,4812305 +g1,366:24121676,4812305 +g1,366:28605649,4812305 +g1,366:30015328,4812305 +) +) +] +[1,366:6630773,45706769:25952256,40108032,0 +(1,366:6630773,45706769:25952256,40108032,0 +(1,366:6630773,45706769:0,0,0 +g1,366:6630773,45706769 +) +[1,366:6630773,45706769:25952256,40108032,0 +(1,347:6630773,6254097:25952256,513147,126483 +k1,346:8314516,6254097:217047 +k1,346:9182991,6254097:217047 +k1,346:10419123,6254097:217047 +k1,346:12237870,6254097:217047 +k1,346:14320726,6254097:217046 +k1,346:15197065,6254097:217047 +k1,346:18044072,6254097:217047 +k1,346:20547015,6254097:217047 +k1,346:21955507,6254097:217047 +k1,346:22823982,6254097:217047 +k1,346:24060114,6254097:217047 +k1,346:25772693,6254097:217047 +k1,346:27702195,6254097:217046 +k1,346:29406254,6254097:217047 +k1,346:31323960,6254097:217047 +k1,346:32227169,6254097:217047 +k1,346:32583029,6254097:0 +) +(1,347:6630773,7095585:25952256,513147,134348 +k1,346:7968063,7095585:147812 +k1,346:8731914,7095585:147813 +k1,346:9235586,7095585:147812 +k1,346:11963551,7095585:147813 +k1,346:14848802,7095585:147812 +k1,346:16564236,7095585:147813 +k1,346:18592225,7095585:147761 +k1,346:19422923,7095585:147813 +k1,346:19985527,7095585:147761 +k1,346:22119736,7095585:147813 +k1,346:23041528,7095585:147812 +k1,346:25471960,7095585:147813 +k1,346:27317810,7095585:147812 +k1,346:30889878,7095585:147812 +k1,346:31393551,7095585:147813 +k1,346:32583029,7095585:0 +) +(1,347:6630773,7937073:25952256,513147,126483 +k1,346:7465795,7937073:218984 +k1,346:9180965,7937073:218983 +k1,346:10570422,7937073:218984 +k1,346:12264621,7937073:218984 +k1,346:13549876,7937073:218984 +k1,346:16229081,7937073:218983 +k1,346:16906162,7937073:218984 +k1,346:17656643,7937073:218984 +k1,346:19275475,7937073:218983 +k1,346:20145887,7937073:218984 +k1,346:21718845,7937073:218984 +k1,346:24713934,7937073:218984 +k1,346:26345218,7937073:218983 +k1,346:27583287,7937073:218984 +k1,346:32583029,7937073:0 +) +(1,347:6630773,8778561:25952256,513147,134348 +k1,346:7573356,8778561:256421 +k1,346:8848861,8778561:256420 +k1,346:10895070,8778561:256421 +k1,346:12488424,8778561:256420 +k1,346:13492611,8778561:256421 +k1,346:14977831,8778561:256420 +k1,346:15850290,8778561:256421 +k1,346:17565541,8778561:256420 +k1,346:22476984,8778561:256421 +k1,346:23392696,8778561:256420 +k1,346:25197733,8778561:256421 +k1,346:25810013,8778561:256420 +k1,346:28264512,8778561:256421 +k1,346:30171130,8778561:256421 +k1,346:31086842,8778561:256420 +k1,346:32583029,8778561:0 +) +(1,347:6630773,9620049:25952256,505283,134348 +k1,346:7440347,9620049:278077 +k1,346:10557445,9620049:278078 +k1,346:11486950,9620049:278077 +k1,346:12753966,9620049:278078 +k1,346:14449587,9620049:278077 +k1,346:16235647,9620049:278077 +k1,346:17129763,9620049:278078 +k1,346:19064590,9620049:278077 +k1,346:20627173,9620049:278077 +k1,346:21591413,9620049:278078 +k1,346:24998834,9620049:278077 +k1,346:26086282,9620049:278078 +k1,346:27862512,9620049:278077 +(1,346:27862512,9620049:661914,485622,0 +) +k1,346:28976173,9620049:278077 +k1,346:30424724,9620049:278078 +k1,346:31835263,9620049:278077 +k1,346:32583029,9620049:0 +) +(1,347:6630773,10461537:25952256,513147,126483 +k1,346:8197679,10461537:258152 +k1,346:9107259,10461537:258152 +k1,346:10631567,10461537:258152 +k1,346:12867596,10461537:258152 +k1,346:18698930,10461537:258152 +k1,346:22051693,10461537:258153 +k1,346:22961273,10461537:258152 +k1,346:24971202,10461537:258152 +k1,346:25888646,10461537:258152 +k1,346:27605629,10461537:258152 +k1,346:29576237,10461537:258152 +k1,346:32583029,10461537:0 +) +(1,347:6630773,11303025:25952256,513147,134348 +k1,346:8009464,11303025:187246 +k1,346:10588118,11303025:187245 +k1,346:11817386,11303025:187246 +k1,346:14839719,11303025:187246 +k1,346:17865328,11303025:187245 +k1,346:19000225,11303025:187246 +k1,346:20206555,11303025:187245 +k1,346:21619980,11303025:187246 +k1,346:22466518,11303025:187246 +k1,346:23424466,11303025:187245 +k1,346:25218655,11303025:187246 +k1,346:28111227,11303025:187246 +k1,346:28829969,11303025:187245 +k1,346:31304422,11303025:187246 +k1,346:32583029,11303025:0 +) +(1,347:6630773,12144513:25952256,505283,7863 +k1,347:32583028,12144513:22788832 +g1,347:32583028,12144513 +) +v1,349:6630773,13510289:0,393216,0 +(1,352:6630773,26109924:25952256,12992851,0 +g1,352:6630773,26109924 +g1,352:6303093,26109924 +r1,366:6401397,26109924:98304,12992851,0 +g1,352:6600626,26109924 +g1,352:6797234,26109924 +[1,352:6797234,26109924:25785795,12992851,0 +(1,350:6797234,14202609:25785795,1085536,298548 +(1,349:6797234,14202609:0,1085536,298548 +r1,366:8303649,14202609:1506415,1384084,298548 +k1,349:6797234,14202609:-1506415 +) +(1,349:6797234,14202609:1506415,1085536,298548 +) +k1,349:8504936,14202609:201287 +k1,349:10489458,14202609:201287 +k1,349:13650351,14202609:201287 +k1,349:16762092,14202609:201287 +k1,349:18531000,14202609:201287 +k1,349:20434257,14202609:201287 +k1,349:23074794,14202609:201287 +k1,349:24718528,14202609:201287 +k1,349:26800041,14202609:201285 +k1,349:28450984,14202609:201287 +k1,349:32583029,14202609:0 +) +(1,350:6797234,15044097:25785795,513147,134348 +k1,349:9762560,15044097:301287 +k1,349:11631467,15044097:301286 +k1,349:14364795,15044097:301287 +k1,349:17668942,15044097:301287 +k1,349:18653114,15044097:301287 +k1,349:21549626,15044097:301286 +k1,349:22533798,15044097:301287 +k1,349:25565970,15044097:301287 +k1,349:28984805,15044097:301287 +k1,349:30940875,15044097:301286 +k1,349:31773659,15044097:301287 +k1,349:32583029,15044097:0 +) +(1,350:6797234,15885585:25785795,513147,134348 +k1,349:9932214,15885585:292684 +k1,349:11509403,15885585:292683 +k1,349:14501515,15885585:292684 +k1,349:15926661,15885585:292684 +k1,349:17285616,15885585:292684 +k1,349:20126339,15885585:292683 +k1,349:23284257,15885585:292684 +k1,349:24975479,15885585:292684 +k1,349:26776801,15885585:292683 +k1,349:29940617,15885585:292684 +k1,349:32583029,15885585:0 +) +(1,350:6797234,16727073:25785795,513147,134348 +k1,349:9625194,16727073:269434 +k1,349:11774785,16727073:269363 +k1,349:13035778,16727073:269433 +k1,349:16145542,16727073:269434 +k1,349:19004958,16727073:269433 +k1,349:20222043,16727073:269434 +k1,349:26595499,16727073:269433 +k1,349:28554451,16727073:269434 +k1,349:31734338,16727073:269433 +k1,350:32583029,16727073:0 +) +(1,350:6797234,17568561:25785795,513147,134348 +g1,349:9003175,17568561 +g1,349:11760930,17568561 +g1,349:13662129,17568561 +g1,349:16678095,17568561 +g1,349:17868884,17568561 +g1,349:20355320,17568561 +g1,349:23144532,17568561 +g1,349:25632934,17568561 +g1,349:27207764,17568561 +g1,349:27762853,17568561 +g1,349:29095200,17568561 +k1,350:32583029,17568561:403705 +g1,350:32583029,17568561 +) +(1,352:6797234,18410049:25785795,513147,134348 +h1,351:6797234,18410049:983040,0,0 +k1,351:10741901,18410049:140302 +k1,351:13041613,18410049:140301 +k1,351:16092369,18410049:140302 +k1,351:17336953,18410049:140302 +k1,351:19278183,18410049:140301 +k1,351:21115212,18410049:140302 +k1,351:22203165,18410049:140302 +k1,351:25178553,18410049:140301 +k1,351:27016893,18410049:140302 +k1,351:28537383,18410049:140302 +k1,351:29770169,18410049:140301 +k1,351:30929556,18410049:140302 +k1,351:32583029,18410049:0 +) +(1,352:6797234,19251537:25785795,513147,134348 +k1,351:9044463,19251537:178913 +k1,351:10171028,19251537:178914 +k1,351:12639769,19251537:178913 +k1,351:13501567,19251537:178913 +k1,351:16879948,19251537:178913 +k1,351:17686697,19251537:178914 +k1,351:20705285,19251537:178913 +k1,351:22635975,19251537:178913 +k1,351:25725342,19251537:178913 +k1,351:26996741,19251537:178914 +k1,351:30201451,19251537:178913 +k1,351:32583029,19251537:0 +) +(1,352:6797234,20093025:25785795,513147,134348 +k1,351:7675779,20093025:262507 +k1,351:10848741,20093025:262508 +k1,351:11727286,20093025:262507 +k1,351:13008878,20093025:262507 +k1,351:13686165,20093025:262444 +k1,351:17730099,20093025:262507 +k1,351:19598239,20093025:262508 +k1,351:20543631,20093025:262507 +k1,351:22508108,20093025:262507 +k1,351:27343718,20093025:262508 +k1,351:30867296,20093025:262507 +k1,352:32583029,20093025:0 +) +(1,352:6797234,20934513:25785795,505283,134348 +k1,351:8410664,20934513:205717 +k1,351:9377910,20934513:205718 +k1,351:12755570,20934513:205717 +k1,351:14774014,20934513:205718 +k1,351:17582821,20934513:205717 +k1,351:18439966,20934513:205717 +k1,351:23643460,20934513:205718 +k1,351:26759631,20934513:205717 +k1,351:28069631,20934513:205718 +k1,351:30660203,20934513:205717 +k1,351:32583029,20934513:0 +) +(1,352:6797234,21776001:25785795,513147,134348 +k1,351:11873593,21776001:175577 +k1,351:13068255,21776001:175577 +k1,351:16634664,21776001:175576 +k1,351:19720695,21776001:175577 +k1,351:20579157,21776001:175577 +k1,351:22406897,21776001:175577 +k1,351:23241766,21776001:175577 +k1,351:25230069,21776001:175577 +k1,351:26602332,21776001:175576 +k1,351:29464230,21776001:175577 +k1,351:31821501,21776001:175577 +k1,351:32583029,21776001:0 +) +(1,352:6797234,22617489:25785795,505283,134348 +k1,351:8826481,22617489:149019 +k1,351:11268655,22617489:149069 +k1,351:12911290,22617489:149069 +k1,351:16067151,22617489:149069 +k1,351:16832259,22617489:149070 +k1,351:18583028,22617489:149069 +k1,351:20429479,22617489:149069 +k1,351:22276586,22617489:149069 +k1,351:25005807,22617489:149069 +k1,351:28020110,22617489:149069 +k1,351:29160739,22617489:149069 +k1,351:32583029,22617489:0 +) +(1,352:6797234,23458977:25785795,513147,134348 +k1,351:9258636,23458977:189924 +k1,351:12028712,23458977:189924 +k1,351:16005307,23458977:189925 +k1,351:16846659,23458977:189924 +k1,351:17832190,23458977:189924 +k1,351:21028906,23458977:189924 +k1,351:23261588,23458977:189925 +k1,351:27232939,23458977:189924 +k1,351:29981389,23458977:189924 +k1,351:32051532,23458977:189915 +k1,351:32583029,23458977:0 +) +(1,352:6797234,24300465:25785795,513147,126483 +k1,351:9775082,24300465:174218 +k1,351:12884003,24300465:174219 +k1,351:13524182,24300465:174218 +k1,351:14868874,24300465:174219 +k1,351:16135577,24300465:174218 +k1,351:18011766,24300465:174219 +k1,351:22160743,24300465:174218 +k1,351:22547929,24300465:174194 +k1,351:26508818,24300465:174219 +k1,351:27967542,24300465:174218 +k1,351:29312233,24300465:174218 +k1,351:31202185,24300465:174219 +k1,351:32583029,24300465:0 +) +(1,352:6797234,25141953:25785795,513147,126483 +k1,351:8349365,25141953:267625 +k1,351:10909439,25141953:267625 +k1,351:14491875,25141953:267625 +k1,351:15225461,25141953:267625 +k1,351:17379212,25141953:267625 +k1,351:21985977,25141953:267626 +k1,351:24917641,25141953:267625 +k1,351:26000534,25141953:267625 +k1,351:27864616,25141953:267625 +k1,351:29526192,25141953:267625 +k1,351:31252648,25141953:267625 +k1,351:32583029,25141953:0 +) +(1,352:6797234,25983441:25785795,513147,126483 +g1,351:9001209,25983441 +g1,351:11243195,25983441 +g1,351:12951063,25983441 +g1,351:14242777,25983441 +g1,351:15058044,25983441 +g1,351:19397838,25983441 +g1,351:23220553,25983441 +g1,351:24809145,25983441 +k1,352:32583029,25983441:4899475 +g1,352:32583029,25983441 +) +] +g1,352:32583029,26109924 +) +h1,352:6630773,26109924:0,0,0 +(1,355:6630773,28917492:25952256,32768,229376 +(1,355:6630773,28917492:0,32768,229376 +(1,355:6630773,28917492:5505024,32768,229376 +r1,366:12135797,28917492:5505024,262144,229376 +) +k1,355:6630773,28917492:-5505024 +) +(1,355:6630773,28917492:25952256,32768,0 +r1,366:32583029,28917492:25952256,32768,0 +) +) +(1,355:6630773,30521820:25952256,615776,14155 +(1,355:6630773,30521820:1974731,582746,14155 +g1,355:6630773,30521820 +g1,355:8605504,30521820 +) +g1,355:11819652,30521820 +g1,355:12877403,30521820 +g1,355:16985724,30521820 +k1,355:32583029,30521820:13891534 +g1,355:32583029,30521820 +) +(1,358:6630773,31756524:25952256,513147,126483 +k1,357:7551978,31756524:160987 +k1,357:9978545,31756524:160987 +k1,357:10554337,31756524:160949 +k1,357:14231987,31756524:160988 +k1,357:15009012,31756524:160987 +k1,357:15525859,31756524:160987 +k1,357:17517922,31756524:160987 +k1,357:18670469,31756524:160987 +k1,357:21892643,31756524:160987 +k1,357:22943609,31756524:160987 +k1,357:26144812,31756524:160988 +k1,357:26921837,31756524:160987 +k1,357:28101909,31756524:160987 +k1,357:31202841,31756524:160987 +k1,357:32583029,31756524:0 +) +(1,358:6630773,32598012:25952256,513147,134348 +k1,357:8989274,32598012:169598 +k1,357:9774910,32598012:169598 +k1,357:10963592,32598012:169597 +k1,357:12964266,32598012:169598 +k1,357:15040961,32598012:169598 +k1,357:15893444,32598012:169598 +k1,357:17462890,32598012:169597 +k1,357:18586037,32598012:169598 +k1,357:20035553,32598012:169598 +k1,357:21224236,32598012:169598 +k1,357:23131849,32598012:169598 +k1,357:25498213,32598012:169597 +k1,357:26283849,32598012:169598 +k1,357:29401256,32598012:169598 +k1,358:32583029,32598012:0 +) +(1,358:6630773,33439500:25952256,513147,126483 +k1,357:7499881,33439500:217680 +k1,357:9461474,33439500:217680 +k1,357:11873300,33439500:217681 +k1,357:15607642,33439500:217680 +k1,357:17109828,33439500:217680 +k1,357:19009162,33439500:217680 +k1,357:19971987,33439500:217681 +k1,357:20841095,33439500:217680 +k1,357:22512364,33439500:217680 +k1,357:23933285,33439500:217680 +k1,357:26416546,33439500:217681 +k1,357:29747841,33439500:217680 +k1,357:30727049,33439500:217680 +k1,357:32583029,33439500:0 +) +(1,358:6630773,34280988:25952256,505283,134348 +k1,357:9670906,34280988:284344 +k1,357:10638136,34280988:284345 +k1,357:14273336,34280988:284344 +k1,357:17841034,34280988:284344 +k1,357:21318292,34280988:284344 +k1,357:25292969,34280988:284345 +k1,357:26774000,34280988:284344 +k1,357:30575006,34280988:284344 +k1,357:32583029,34280988:0 +) +(1,358:6630773,35122476:25952256,513147,126483 +k1,357:10119859,35122476:185416 +k1,357:10836773,35122476:185417 +k1,357:14283260,35122476:185416 +k1,357:15572959,35122476:185417 +k1,357:16506141,35122476:185416 +k1,357:18547537,35122476:185416 +k1,357:20857631,35122476:185417 +k1,357:21725932,35122476:185416 +k1,357:25498789,35122476:185416 +k1,357:27401249,35122476:185417 +k1,357:28245957,35122476:185416 +k1,357:29450459,35122476:185417 +k1,357:31923737,35122476:185416 +k1,357:32583029,35122476:0 +) +(1,358:6630773,35963964:25952256,513147,134348 +k1,357:9877503,35963964:171125 +k1,357:11398669,35963964:171124 +k1,357:15260126,35963964:171125 +k1,357:18126746,35963964:171124 +k1,357:19444096,35963964:171125 +k1,357:22068205,35963964:171096 +k1,357:24860771,35963964:171125 +k1,357:25979546,35963964:171124 +k1,357:28892697,35963964:171125 +k1,357:32583029,35963964:0 +) +(1,358:6630773,36805452:25952256,505283,126483 +k1,357:9047631,36805452:269899 +k1,357:10999184,36805452:269899 +k1,357:14785745,36805452:269899 +k1,357:15707072,36805452:269899 +k1,357:16724737,36805452:269899 +k1,357:19827758,36805452:269900 +k1,357:23448513,36805452:269899 +k1,357:25407930,36805452:269899 +k1,357:26360714,36805452:269899 +k1,357:28123523,36805452:269899 +k1,357:28749282,36805452:269899 +k1,357:32051532,36805452:269899 +k1,357:32583029,36805452:0 +) +(1,358:6630773,37646940:25952256,513147,126483 +g1,357:8227885,37646940 +g1,357:9109999,37646940 +g1,357:10802138,37646940 +g1,357:11767483,37646940 +g1,357:14920420,37646940 +g1,357:15778941,37646940 +g1,357:16334030,37646940 +g1,357:17526785,37646940 +g1,357:18408899,37646940 +g1,357:18963988,37646940 +g1,357:21141094,37646940 +g1,357:22331883,37646940 +k1,358:32583029,37646940:6864245 +g1,358:32583029,37646940 +) +(1,360:6630773,38488428:25952256,513147,126483 +h1,359:6630773,38488428:983040,0,0 +k1,359:9777819,38488428:289676 +k1,359:12264262,38488428:289676 +k1,359:13169976,38488428:289676 +k1,359:16407461,38488428:289676 +k1,359:19901848,38488428:289676 +k1,359:21295806,38488428:289676 +k1,359:22333248,38488428:289676 +k1,359:23908740,38488428:289676 +k1,359:25711642,38488428:289676 +k1,359:26614080,38488428:289676 +k1,359:27922841,38488428:289676 +k1,359:28627269,38488428:289585 +k1,359:31510860,38488428:289676 +k1,359:32583029,38488428:0 +) +(1,360:6630773,39329916:25952256,513147,126483 +k1,359:7370183,39329916:281313 +k1,359:8182993,39329916:281313 +k1,359:10751514,39329916:281314 +k1,359:13888231,39329916:281313 +k1,359:14820972,39329916:281313 +k1,359:15917553,39329916:281313 +k1,359:16923694,39329916:281313 +k1,359:17891170,39329916:281314 +k1,359:19552671,39329916:281313 +k1,359:20938266,39329916:281313 +k1,359:23371781,39329916:281313 +k1,359:25040491,39329916:281313 +k1,359:27553305,39329916:281313 +k1,359:29333427,39329916:281314 +k1,359:30274032,39329916:281313 +k1,359:31955194,39329916:281313 +k1,359:32583029,39329916:0 +) +(1,360:6630773,40171404:25952256,513147,126483 +k1,359:8995967,40171404:240517 +k1,359:11571532,40171404:240517 +k1,359:12831134,40171404:240517 +k1,359:14388925,40171404:240517 +k1,359:15245480,40171404:240517 +k1,359:18435117,40171404:240517 +k1,359:19779916,40171404:240517 +k1,359:20768198,40171404:240516 +k1,359:22572404,40171404:240517 +k1,359:24004366,40171404:240517 +k1,359:26057609,40171404:240517 +k1,359:27865747,40171404:240517 +k1,359:29125349,40171404:240517 +k1,359:30671999,40171404:240517 +k1,359:31563944,40171404:240517 +k1,359:32583029,40171404:0 +) +(1,360:6630773,41012892:25952256,513147,126483 +k1,359:8040705,41012892:261741 +k1,359:11488805,41012892:261740 +k1,359:12366584,41012892:261741 +k1,359:13647410,41012892:261741 +k1,359:15913896,41012892:261740 +k1,359:18521171,41012892:261741 +k1,359:19398950,41012892:261741 +k1,359:22608500,41012892:261741 +k1,359:26074951,41012892:261740 +k1,359:27328252,41012892:261741 +k1,359:27945853,41012892:261741 +k1,359:30340135,41012892:261740 +k1,359:31923737,41012892:261741 +k1,359:32583029,41012892:0 +) +(1,360:6630773,41854380:25952256,505283,126483 +k1,359:8527877,41854380:295404 +k1,359:11158328,41854380:295403 +k1,359:12271621,41854380:295404 +k1,359:13435376,41854380:295403 +k1,359:14863242,41854380:295404 +k1,359:16183629,41854380:295404 +k1,359:18036823,41854380:295403 +k1,359:18688087,41854380:295404 +k1,359:22397260,41854380:295403 +k1,359:25879024,41854380:295404 +k1,359:27278710,41854380:295404 +k1,359:29911782,41854380:295403 +k1,359:32583029,41854380:0 +) +(1,360:6630773,42695868:25952256,505283,126483 +g1,359:8954679,42695868 +g1,359:9836793,42695868 +g1,359:12153490,42695868 +g1,359:15766489,42695868 +k1,360:32583029,42695868:13126208 +g1,360:32583029,42695868 +) +] +(1,366:32583029,45706769:0,0,0 +g1,366:32583029,45706769 +) +) +] +(1,366:6630773,47279633:25952256,0,0 +h1,366:6630773,47279633:25952256,0,0 +) +] +(1,366:4262630,4025873:0,0,0 +[1,366:-473656,4025873:0,0,0 +(1,366:-473656,-710413:0,0,0 +(1,366:-473656,-710413:0,0,0 +g1,366:-473656,-710413 +) +g1,366:-473656,-710413 +) +] +) +] +!20818 +}13 +Input:203:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:204:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:205:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:206:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:207:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!466 +{14 +[1,417:4262630,47279633:28320399,43253760,0 +(1,417:4262630,4025873:0,0,0 +[1,417:-473656,4025873:0,0,0 +(1,417:-473656,-710413:0,0,0 +(1,417:-473656,-644877:0,0,0 +k1,417:-473656,-644877:-65536 ) +(1,417:-473656,4736287:0,0,0 +k1,417:-473656,4736287:5209943 ) -(183,36:26685893,43524641:501378,78643,0 -(183,36:26849747,43524641:173670,78643,0 +g1,417:-473656,-710413 ) +] ) -(183,36:27187271,43524641:501378,78643,0 -(183,36:27351125,43524641:173670,78643,0 +[1,417:6630773,47279633:25952256,43253760,0 +[1,417:6630773,4812305:25952256,786432,0 +(1,417:6630773,4812305:25952256,513147,126483 +(1,417:6630773,4812305:25952256,513147,126483 +g1,417:3078558,4812305 +[1,417:3078558,4812305:0,0,0 +(1,417:3078558,2439708:0,1703936,0 +k1,417:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,417:2537886,2439708:1179648,16384,0 ) +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,417:3078558,1915420:16384,1179648,0 ) -(183,36:27688649,43524641:501378,78643,0 -(183,36:27852503,43524641:173670,78643,0 +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) +] ) -(183,36:28190027,43524641:501378,78643,0 -(183,36:28353881,43524641:173670,78643,0 ) ) -(183,36:28691405,43524641:501378,78643,0 -(183,36:28855259,43524641:173670,78643,0 +] +[1,417:3078558,4812305:0,0,0 +(1,417:3078558,2439708:0,1703936,0 +g1,417:29030814,2439708 +g1,417:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,417:36151628,1915420:16384,1179648,0 ) +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) -(183,36:29192783,43524641:501378,78643,0 -(183,36:29356637,43524641:173670,78643,0 +] ) +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,417:37855564,2439708:1179648,16384,0 ) -(183,36:29694161,43524641:501378,78643,0 -(183,36:29858015,43524641:173670,78643,0 ) +k1,417:3078556,2439708:-34777008 ) -(183,36:30195539,43524641:501378,78643,0 -(183,36:30359393,43524641:173670,78643,0 +] +[1,417:3078558,4812305:0,0,0 +(1,417:3078558,49800853:0,16384,2228224 +k1,417:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,417:2537886,49800853:1179648,16384,0 ) +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,417:3078558,51504789:16384,1179648,0 ) -(183,36:30696917,43524641:501378,78643,0 -(183,36:30860771,43524641:173670,78643,0 +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) +] ) -(183,36:31239539,43524641:1343490,485622,11795 -k183,36:31586882,43524641:347343 -g183,36:31786111,43524641 ) -g183,36:30911859,43524641 -g183,36:32583029,43524641 ) -(183,37:6630773,44366129:25952256,505283,134348 -g183,37:11218293,44366129 -h183,37:11218293,44366129:2490370,0,0 -h183,37:13708663,44366129:0,0,0 -g183,37:9121143,44366129 -(183,37:9121143,44366129:2097150,485622,11795 -k183,37:11218293,44366129:155974 +] +[1,417:3078558,4812305:0,0,0 +(1,417:3078558,49800853:0,16384,2228224 +g1,417:29030814,49800853 +g1,417:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,417:36151628,51504789:16384,1179648,0 +) +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 +) +] +) +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,417:37855564,49800853:1179648,16384,0 ) -g183,37:13736841,44366129 -g183,37:15127515,44366129 -g183,37:18324361,44366129 -g183,37:19517116,44366129 -g183,37:22470824,44366129 -(183,37:22674869,44366129:501378,78643,0 -$183,37:22674869,44366129 -(183,37:22838723,44366129:173670,78643,0 ) -$183,37:23176247,44366129 +k1,417:3078556,49800853:-34777008 ) -(183,37:23176247,44366129:501378,78643,0 -(183,37:23340101,44366129:173670,78643,0 +] +g1,417:6630773,4812305 +g1,417:6630773,4812305 +g1,417:9175536,4812305 +g1,417:9990803,4812305 +g1,417:13137841,4812305 +g1,417:14654344,4812305 +k1,417:32184570,4812305:17530226 +) +) +] +[1,417:6630773,45706769:25952256,40108032,0 +(1,417:6630773,45706769:25952256,40108032,0 +(1,417:6630773,45706769:0,0,0 +g1,417:6630773,45706769 ) +[1,417:6630773,45706769:25952256,40108032,0 +(1,361:6630773,6254097:25952256,555811,139132 +(1,361:6630773,6254097:2450326,534184,12975 +g1,361:6630773,6254097 +g1,361:9081099,6254097 ) -(183,37:23677625,44366129:501378,78643,0 -(183,37:23841479,44366129:173670,78643,0 +g1,361:13288249,6254097 +k1,361:32583029,6254097:15318318 +g1,361:32583029,6254097 ) +(1,365:6630773,7488801:25952256,505283,134348 +k1,364:9990870,7488801:155386 +k1,364:13662917,7488801:155385 +k1,364:14922585,7488801:155386 +k1,364:15825737,7488801:155386 +k1,364:18641884,7488801:155385 +k1,364:20064736,7488801:155386 +k1,364:23515272,7488801:155386 +k1,364:27077875,7488801:155386 +k1,364:27994788,7488801:155385 +k1,364:30943974,7488801:155386 +k1,364:32583029,7488801:0 +) +(1,365:6630773,8330289:25952256,505283,134348 +k1,364:7538883,8330289:292072 +k1,364:9433966,8330289:292072 +k1,364:11955573,8330289:292072 +k1,364:16413113,8330289:292072 +k1,364:17236682,8330289:292072 +k1,364:18674980,8330289:292073 +k1,364:21306687,8330289:292072 +k1,364:23830260,8330289:292072 +k1,364:27638994,8330289:292072 +k1,364:29198532,8330289:292072 +k1,364:29846464,8330289:292072 +k1,364:31298523,8330289:292072 +k1,364:32583029,8330289:0 +) +(1,365:6630773,9171777:25952256,505283,126483 +g1,364:8841957,9171777 +g1,364:9786330,9171777 +g1,364:10636987,9171777 +g1,364:13247286,9171777 +g1,364:14840466,9171777 +g1,364:16678750,9171777 +g1,364:17564141,9171777 +g1,364:18534073,9171777 +g1,364:22434120,9171777 +k1,365:32583029,9171777:8092389 +g1,365:32583029,9171777 +) +(1,381:6630773,21046965:25952256,11027809,0 +k1,381:16423845,21046965:9793072 +(1,366:16423845,21046965:0,0,0 +g1,366:16423845,21046965 +g1,366:16423845,21046965 +g1,366:16096165,21046965 +(1,366:16096165,21046965:0,0,0 +) +g1,366:16423845,21046965 +) +(1,379:16423845,21046965:6366112,11027809,0 +g1,379:19606901,21046965 +(1,379:19606901,10964602:0,0,0 +(1,379:19606901,10964602:0,0,0 +g1,368:19606901,10964602 +(1,369:19606901,10964602:0,0,0 +(1,369:19606901,10964602:0,0,0 +g1,369:19606901,10964602 +g1,369:19606901,10964602 +g1,369:19606901,10964602 +g1,369:19606901,10964602 +g1,369:19606901,10964602 +(1,369:19606901,10964602:0,0,0 +(1,369:19606901,10964602:589824,56623,0 +(1,369:19606901,10964602:589824,56623,0 +) +g1,369:20196725,10964602 +) +) +g1,369:19606901,10964602 +g1,369:19606901,10964602 +) +) +g1,369:19606901,10964602 +(1,370:19606901,10964602:0,0,0 +(1,370:19606901,10964602:0,0,0 +g1,370:19606901,10964602 +g1,370:19606901,10964602 +g1,370:19606901,10964602 +g1,370:19606901,10964602 +g1,370:19606901,10964602 +(1,370:19606901,10964602:0,0,0 +(1,370:19606901,10964602:0,0,0 +(1,370:19606901,10964602:0,0,0 +) +g1,370:19606901,10964602 +) +) +g1,370:19606901,10964602 +g1,370:19606901,10964602 +) +) +g1,370:19606901,10964602 +g1,371:19606901,10964602 +(1,371:19606901,10964602:0,0,0 +(1,371:19606901,10964602:0,0,0 +g1,371:19606901,10964602 +g1,371:19606901,10964602 +g1,371:19606901,10964602 +g1,371:19606901,10964602 +g1,371:19606901,10964602 +(1,371:19606901,10964602:0,0,0 +(1,371:19606901,10964602:4121582,373362,104590 +(1,371:19606901,10964602:4121582,373362,104590 +(1,371:19606901,10964602:0,373362,104590 +r1,417:23728483,10964602:4121582,477952,104590 +k1,371:19606901,10964602:-4121582 +) +(1,371:19606901,10964602:4121582,373362,104590 +g1,371:23092125,10964602 +h1,371:23725206,10964602:0,370085,101313 +) +) +g1,371:23728483,10964602 +) +) +g1,371:19606901,10964602 +g1,371:19606901,10964602 +) +) +(1,372:19606901,10964602:0,0,0 +(1,372:19606901,10964602:0,0,0 +g1,372:19606901,10964602 +g1,372:19606901,10964602 +g1,372:19606901,10964602 +g1,372:19606901,10964602 +g1,372:19606901,10964602 +(1,372:19606901,10964602:0,0,0 +(1,372:19606901,10964602:4121582,373362,104590 +(1,372:19606901,10964602:4121582,373362,104590 +(1,372:19606901,10964602:0,373362,104590 +r1,417:23728483,10964602:4121582,477952,104590 +k1,372:19606901,10964602:-4121582 +) +(1,372:19606901,10964602:4121582,373362,104590 +g1,372:23092125,10964602 +h1,372:23725206,10964602:0,370085,101313 +) +) +g1,372:23728483,10964602 +) +) +g1,372:19606901,10964602 +g1,372:19606901,10964602 +) +) +g1,372:19606901,10964602 +g1,373:19606901,10964602 +(1,373:19606901,10964602:0,0,0 +(1,373:19606901,10964602:0,0,0 +g1,373:19606901,10964602 +g1,373:19606901,10964602 +g1,373:19606901,10964602 +g1,373:19606901,10964602 +g1,373:19606901,10964602 +(1,373:19606901,10964602:0,0,0 +(1,373:19606901,10964602:589824,56623,0 +(1,373:19606901,10964602:589824,56623,0 +) +g1,373:20196725,10964602 +) +) +g1,373:19606901,10964602 +g1,373:19606901,10964602 +) +) +g1,373:19606901,10964602 +g1,374:19606901,10964602 +g1,374:19606901,10964602 +g1,374:19606901,10964602 +g1,374:19606901,10964602 +g1,374:19606901,10964602 +g1,374:19606901,10964602 +g1,375:19606901,10964602 +g1,375:19606901,10964602 +g1,375:19606901,10964602 +g1,375:19606901,10964602 +g1,375:19606901,10964602 +g1,375:19606901,10964602 +g1,376:19606901,10964602 +g1,376:19606901,10964602 +g1,376:19606901,10964602 +g1,376:19606901,10964602 +g1,376:19606901,10964602 +g1,376:19606901,10964602 +g1,377:19606901,10964602 +g1,377:19606901,10964602 +g1,377:19606901,10964602 +g1,377:19606901,10964602 +g1,377:19606901,10964602 +g1,377:19606901,10964602 +g1,378:19606901,10964602 +g1,378:19606901,10964602 +g1,378:19606901,10964602 +g1,378:19606901,10964602 +g1,378:19606901,10964602 +g1,378:19606901,10964602 +g1,379:19606901,10964602 +g1,379:19606901,10964602 +) +g1,379:19606901,10964602 +) +) +g1,381:22789957,21046965 +k1,381:32583029,21046965:9793072 +) +v1,384:6630773,22892791:0,393216,0 +(1,401:6630773,28626108:25952256,6126533,196608 +g1,401:6630773,28626108 +g1,401:6630773,28626108 +g1,401:6434165,28626108 +(1,401:6434165,28626108:0,6126533,196608 +r1,417:32779637,28626108:26345472,6323141,196608 +k1,401:6434165,28626108:-26345472 +) +(1,401:6434165,28626108:26345472,6126533,196608 +[1,401:6630773,28626108:25952256,5929925,0 +(1,386:6630773,23100409:25952256,404226,101187 +(1,385:6630773,23100409:0,0,0 +g1,385:6630773,23100409 +g1,385:6630773,23100409 +g1,385:6303093,23100409 +(1,385:6303093,23100409:0,0,0 +) +g1,385:6630773,23100409 +) +k1,386:6630773,23100409:0 +h1,386:9792230,23100409:0,0,0 +k1,386:32583030,23100409:22790800 +g1,386:32583030,23100409 +) +(1,390:6630773,23832123:25952256,404226,76021 +(1,388:6630773,23832123:0,0,0 +g1,388:6630773,23832123 +g1,388:6630773,23832123 +g1,388:6303093,23832123 +(1,388:6303093,23832123:0,0,0 +) +g1,388:6630773,23832123 +) +g1,390:7579210,23832123 +g1,390:8843793,23832123 +h1,390:9792230,23832123:0,0,0 +k1,390:32583030,23832123:22790800 +g1,390:32583030,23832123 +) +(1,392:6630773,25153661:25952256,404226,76021 +(1,391:6630773,25153661:0,0,0 +g1,391:6630773,25153661 +g1,391:6630773,25153661 +g1,391:6303093,25153661 +(1,391:6303093,25153661:0,0,0 +) +g1,391:6630773,25153661 +) +h1,392:6946919,25153661:0,0,0 +k1,392:32583029,25153661:25636110 +g1,392:32583029,25153661 +) +(1,393:6630773,25819839:25952256,404226,101187 +h1,393:6630773,25819839:0,0,0 +g1,393:6946919,25819839 +g1,393:7263065,25819839 +k1,393:7263065,25819839:0 +h1,393:10424522,25819839:0,0,0 +k1,393:32583030,25819839:22158508 +g1,393:32583030,25819839 +) +(1,394:6630773,26486017:25952256,404226,101187 +h1,394:6630773,26486017:0,0,0 +g1,394:6946919,26486017 +g1,394:7263065,26486017 +k1,394:7263065,26486017:0 +h1,394:10424522,26486017:0,0,0 +k1,394:32583030,26486017:22158508 +g1,394:32583030,26486017 +) +(1,395:6630773,27152195:25952256,404226,76021 +h1,395:6630773,27152195:0,0,0 +h1,395:6946919,27152195:0,0,0 +k1,395:32583029,27152195:25636110 +g1,395:32583029,27152195 +) +(1,400:6630773,27883909:25952256,404226,76021 +(1,397:6630773,27883909:0,0,0 +g1,397:6630773,27883909 +g1,397:6630773,27883909 +g1,397:6303093,27883909 +(1,397:6303093,27883909:0,0,0 +) +g1,397:6630773,27883909 +) +g1,400:7579210,27883909 +g1,400:8843793,27883909 +h1,400:9792230,27883909:0,0,0 +k1,400:32583030,27883909:22790800 +g1,400:32583030,27883909 +) +(1,400:6630773,28550087:25952256,404226,76021 +h1,400:6630773,28550087:0,0,0 +g1,400:7579210,28550087 +g1,400:8843793,28550087 +h1,400:9792230,28550087:0,0,0 +k1,400:32583030,28550087:22790800 +g1,400:32583030,28550087 +) +] +) +g1,401:32583029,28626108 +g1,401:6630773,28626108 +g1,401:6630773,28626108 +g1,401:32583029,28626108 +g1,401:32583029,28626108 +) +h1,401:6630773,28822716:0,0,0 +(1,405:6630773,30188492:25952256,513147,134348 +h1,404:6630773,30188492:983040,0,0 +k1,404:9033171,30188492:222671 +k1,404:12138771,30188492:222671 +k1,404:13020734,30188492:222671 +k1,404:14262491,30188492:222672 +k1,404:15633353,30188492:222671 +k1,404:17028463,30188492:222671 +k1,404:20767796,30188492:222671 +k1,404:22845791,30188492:222671 +k1,404:23599959,30188492:222671 +k1,404:24481923,30188492:222672 +k1,404:25513964,30188492:222671 +k1,404:29819528,30188492:222671 +k1,404:30803727,30188492:222671 +k1,404:32583029,30188492:0 +) +(1,405:6630773,31029980:25952256,513147,134348 +k1,404:7942512,31029980:239570 +k1,404:11065011,31029980:239570 +k1,404:14078066,31029980:239571 +k1,404:16294857,31029980:239570 +k1,404:18232465,31029980:239570 +k1,404:19985261,31029980:239570 +k1,404:22905255,31029980:239571 +k1,404:24538776,31029980:239570 +k1,404:31227089,31029980:239570 +k1,405:32583029,31029980:0 +) +(1,405:6630773,31871468:25952256,426639,7863 +k1,405:32583028,31871468:23567400 +g1,405:32583028,31871468 +) +(1,406:6630773,33962728:25952256,555811,12975 +(1,406:6630773,33962728:2450326,534184,12975 +g1,406:6630773,33962728 +g1,406:9081099,33962728 +) +g1,406:13505238,33962728 +k1,406:32583029,33962728:15536750 +g1,406:32583029,33962728 +) +(1,410:6630773,35197432:25952256,513147,134348 +k1,409:10539799,35197432:193790 +k1,409:13809193,35197432:193789 +k1,409:16014938,35197432:193790 +k1,409:19010392,35197432:193790 +k1,409:21966524,35197432:193789 +k1,409:24344629,35197432:193790 +k1,409:26031985,35197432:193790 +k1,409:26911937,35197432:193790 +k1,409:29760589,35197432:193789 +k1,409:31145824,35197432:193790 +k1,410:32583029,35197432:0 +) +(1,410:6630773,36038920:25952256,513147,134348 +k1,409:9529758,36038920:244122 +k1,409:11958194,36038920:244121 +k1,409:15530890,36038920:244122 +k1,409:17785000,36038920:244121 +k1,409:18384982,36038920:244122 +k1,409:20633850,36038920:244122 +k1,409:22258815,36038920:244121 +k1,409:23034434,36038920:244122 +k1,409:26056626,36038920:244121 +k1,409:27062276,36038920:244122 +k1,409:30589751,36038920:244121 +k1,409:31516758,36038920:244122 +k1,409:32583029,36038920:0 +) +(1,410:6630773,36880408:25952256,513147,134348 +k1,409:8179398,36880408:271984 +k1,409:11499461,36880408:271984 +k1,409:12772762,36880408:271911 +k1,409:14236192,36880408:271985 +k1,409:15942686,36880408:271911 +k1,409:17866833,36880408:271984 +k1,409:18798109,36880408:271984 +k1,409:19425953,36880408:271984 +k1,409:21529013,36880408:271984 +k1,409:23655666,36880408:271984 +k1,409:24737021,36880408:271985 +k1,409:26028090,36880408:271984 +k1,409:28142946,36880408:271984 +k1,409:31193657,36880408:271984 +k1,409:32227169,36880408:271984 +k1,409:32583029,36880408:0 +) +(1,410:6630773,37721896:25952256,505283,134348 +k1,409:8893263,37721896:192863 +k1,409:12699782,37721896:192864 +k1,409:13795076,37721896:192863 +k1,409:14402776,37721896:192857 +k1,409:18035625,37721896:192864 +k1,409:21229382,37721896:192863 +k1,409:21778106,37721896:192864 +k1,409:24040596,37721896:192863 +k1,409:25913803,37721896:192864 +k1,409:27210948,37721896:192863 +k1,409:28151578,37721896:192864 +k1,409:29030603,37721896:192863 +k1,409:31348144,37721896:192864 +k1,409:32227169,37721896:192863 +k1,409:32583029,37721896:0 +) +(1,410:6630773,38563384:25952256,513147,134348 +k1,409:8935629,38563384:235229 +k1,409:10851202,38563384:235230 +k1,409:11753587,38563384:235229 +(1,409:11753587,38563384:0,414482,115847 +r1,417:13166988,38563384:1413401,530329,115847 +k1,409:11753587,38563384:-1413401 +) +(1,409:11753587,38563384:1413401,414482,115847 +k1,409:11753587,38563384:3277 +h1,409:13163711,38563384:0,411205,112570 +) +k1,409:13402218,38563384:235230 +k1,409:14320332,38563384:235229 +(1,409:14320332,38563384:0,414482,115847 +r1,417:16085445,38563384:1765113,530329,115847 +k1,409:14320332,38563384:-1765113 +) +(1,409:14320332,38563384:1765113,414482,115847 +k1,409:14320332,38563384:3277 +h1,409:16082168,38563384:0,411205,112570 +) +k1,409:16320675,38563384:235230 +k1,409:18594074,38563384:235229 +k1,409:19445342,38563384:235230 +k1,409:20036431,38563384:235229 +k1,409:22783001,38563384:235230 +k1,409:23701115,38563384:235229 +k1,409:24955430,38563384:235230 +k1,409:27033531,38563384:235229 +k1,409:27928053,38563384:235230 +k1,409:28519142,38563384:235229 +k1,409:32583029,38563384:0 +) +(1,410:6630773,39404872:25952256,513147,7863 +g1,409:8407454,39404872 +g1,409:9219445,39404872 +g1,409:10437759,39404872 +g1,409:12062396,39404872 +g1,409:12920917,39404872 +g1,409:14139231,39404872 +g1,409:18189355,39404872 +k1,410:32583029,39404872:11576281 +g1,410:32583029,39404872 +) +v1,412:6630773,40770648:0,393216,0 +(1,413:6630773,45039617:25952256,4662185,0 +g1,413:6630773,45039617 +g1,413:6303093,45039617 +r1,417:6401397,45039617:98304,4662185,0 +g1,413:6600626,45039617 +g1,413:6797234,45039617 +[1,413:6797234,45039617:25785795,4662185,0 +(1,413:6797234,41539317:25785795,1161885,196608 +(1,412:6797234,41539317:0,1161885,196608 +r1,417:8344870,41539317:1547636,1358493,196608 +k1,412:6797234,41539317:-1547636 +) +(1,412:6797234,41539317:1547636,1161885,196608 +) +k1,412:8590973,41539317:246103 +k1,412:9790625,41539317:246103 +k1,412:11129213,41539317:246103 +k1,412:12394401,41539317:246103 +k1,412:14378519,41539317:246103 +k1,412:15850145,41539317:246103 +k1,412:17043899,41539317:246103 +k1,412:17645862,41539317:246103 +(1,412:17645862,41539317:0,452978,122846 +r1,417:20114399,41539317:2468537,575824,122846 +k1,412:17645862,41539317:-2468537 +) +(1,412:17645862,41539317:2468537,452978,122846 +k1,412:17645862,41539317:3277 +h1,412:20111122,41539317:0,411205,112570 +) +k1,412:20360502,41539317:246103 +k1,412:23117945,41539317:246103 +k1,412:24298591,41539317:246103 +k1,412:27651101,41539317:246103 +k1,412:31176626,41539317:246103 +k1,412:32583029,41539317:0 +) +(1,413:6797234,42380805:25785795,513147,134348 +k1,412:8105192,42380805:288873 +k1,412:9466235,42380805:288874 +k1,412:10414400,42380805:288873 +k1,412:11722358,42380805:288873 +k1,412:14015978,42380805:288874 +k1,412:15453697,42380805:288873 +k1,412:16401863,42380805:288874 +k1,412:18185612,42380805:288873 +k1,412:19005982,42380805:288873 +k1,412:20896556,42380805:288874 +k1,412:23162650,42380805:288873 +k1,412:25149561,42380805:288873 +k1,412:28486514,42380805:288874 +k1,412:31410590,42380805:288873 +k1,412:32583029,42380805:0 +) +(1,413:6797234,43222293:25785795,513147,126483 +k1,412:8887510,43222293:259200 +k1,412:12236733,43222293:259200 +k1,412:15197982,43222293:259200 +k1,412:16266551,43222293:259199 +k1,412:19196998,43222293:259200 +k1,412:22065186,43222293:259200 +k1,412:22983678,43222293:259200 +k1,412:24912735,43222293:259200 +k1,412:25659462,43222293:259139 +k1,412:28657412,43222293:259200 +k1,412:30009097,43222293:259200 +k1,412:31635378,43222293:259200 +k1,412:32583029,43222293:0 +) +(1,413:6797234,44063781:25785795,513147,134348 +k1,412:8450648,44063781:158538 +k1,412:9140682,44063781:158537 +k1,412:11359672,44063781:158538 +k1,412:14232055,44063781:158537 +k1,412:15582038,44063781:158538 +k1,412:18644475,44063781:158537 +k1,412:21375301,44063781:158538 +k1,412:22193130,44063781:158537 +k1,412:24510424,44063781:158538 +k1,412:26236582,44063781:158537 +k1,412:29066367,44063781:158538 +k1,412:32583029,44063781:0 +) +(1,413:6797234,44905269:25785795,505283,134348 +g1,412:9933787,44905269 +g1,412:10749054,44905269 +g1,412:12335680,44905269 +g1,412:12890769,44905269 +g1,412:14478706,44905269 +k1,413:32583029,44905269:16099577 +g1,413:32583029,44905269 +) +] +g1,413:32583029,45039617 +) +h1,413:6630773,45039617:0,0,0 +] +(1,417:32583029,45706769:0,0,0 +g1,417:32583029,45706769 +) +) +] +(1,417:6630773,47279633:25952256,0,0 +h1,417:6630773,47279633:25952256,0,0 +) +] +(1,417:4262630,4025873:0,0,0 +[1,417:-473656,4025873:0,0,0 +(1,417:-473656,-710413:0,0,0 +(1,417:-473656,-710413:0,0,0 +g1,417:-473656,-710413 +) +g1,417:-473656,-710413 +) +] +) +] +!18639 +}14 +Input:208:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:209:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:210:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:211:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:212:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:213:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:214:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:215:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:216:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:217:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:218:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:219:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:220:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:221:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:222:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:223:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:224:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:225:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:226:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:227:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:228:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:229:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:230:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2104 +{15 +[1,475:4262630,47279633:28320399,43253760,0 +(1,475:4262630,4025873:0,0,0 +[1,475:-473656,4025873:0,0,0 +(1,475:-473656,-710413:0,0,0 +(1,475:-473656,-644877:0,0,0 +k1,475:-473656,-644877:-65536 ) -(183,37:24179003,44366129:501378,78643,0 -(183,37:24342857,44366129:173670,78643,0 +(1,475:-473656,4736287:0,0,0 +k1,475:-473656,4736287:5209943 ) +g1,475:-473656,-710413 ) -(183,37:24680381,44366129:501378,78643,0 -(183,37:24844235,44366129:173670,78643,0 +] ) +[1,475:6630773,47279633:25952256,43253760,0 +[1,475:6630773,4812305:25952256,786432,0 +(1,475:6630773,4812305:25952256,505283,134348 +(1,475:6630773,4812305:25952256,505283,134348 +g1,475:3078558,4812305 +[1,475:3078558,4812305:0,0,0 +(1,475:3078558,2439708:0,1703936,0 +k1,475:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,475:2537886,2439708:1179648,16384,0 ) -(183,37:25181759,44366129:501378,78643,0 -(183,37:25345613,44366129:173670,78643,0 +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,475:3078558,1915420:16384,1179648,0 ) +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) -(183,37:25683137,44366129:501378,78643,0 -(183,37:25846991,44366129:173670,78643,0 +] ) ) -(183,37:26184515,44366129:501378,78643,0 -(183,37:26348369,44366129:173670,78643,0 ) +] +[1,475:3078558,4812305:0,0,0 +(1,475:3078558,2439708:0,1703936,0 +g1,475:29030814,2439708 +g1,475:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,475:36151628,1915420:16384,1179648,0 ) -(183,37:26685893,44366129:501378,78643,0 -(183,37:26849747,44366129:173670,78643,0 +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) +] ) -(183,37:27187271,44366129:501378,78643,0 -(183,37:27351125,44366129:173670,78643,0 +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,475:37855564,2439708:1179648,16384,0 ) ) -(183,37:27688649,44366129:501378,78643,0 -(183,37:27852503,44366129:173670,78643,0 +k1,475:3078556,2439708:-34777008 ) +] +[1,475:3078558,4812305:0,0,0 +(1,475:3078558,49800853:0,16384,2228224 +k1,475:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,475:2537886,49800853:1179648,16384,0 ) -(183,37:28190027,44366129:501378,78643,0 -(183,37:28353881,44366129:173670,78643,0 +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,475:3078558,51504789:16384,1179648,0 ) +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) -(183,37:28691405,44366129:501378,78643,0 -(183,37:28855259,44366129:173670,78643,0 +] +) +) +) +] +[1,475:3078558,4812305:0,0,0 +(1,475:3078558,49800853:0,16384,2228224 +g1,475:29030814,49800853 +g1,475:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,475:36151628,51504789:16384,1179648,0 +) +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 +) +] +) +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,475:37855564,49800853:1179648,16384,0 ) ) -(183,37:29192783,44366129:501378,78643,0 -(183,37:29356637,44366129:173670,78643,0 +k1,475:3078556,49800853:-34777008 +) +] +g1,475:6630773,4812305 +k1,475:18771974,4812305:11344283 +g1,475:20158715,4812305 +g1,475:20807521,4812305 +g1,475:24121676,4812305 +g1,475:28605649,4812305 +g1,475:30015328,4812305 +) +) +] +[1,475:6630773,45706769:25952256,40108032,0 +(1,475:6630773,45706769:25952256,40108032,0 +(1,475:6630773,45706769:0,0,0 +g1,475:6630773,45706769 +) +[1,475:6630773,45706769:25952256,40108032,0 +(1,416:6630773,6254097:25952256,513147,126483 +h1,415:6630773,6254097:983040,0,0 +k1,415:8245782,6254097:217126 +k1,415:9563931,6254097:217144 +k1,415:10953514,6254097:217144 +k1,415:12887046,6254097:217144 +k1,415:13763482,6254097:217144 +k1,415:14538993,6254097:217144 +k1,415:18446468,6254097:217143 +k1,415:23437910,6254097:217144 +k1,415:24846499,6254097:217144 +k1,415:28574407,6254097:217144 +k1,415:29745100,6254097:217144 +k1,415:31094706,6254097:217144 +k1,415:32583029,6254097:0 +) +(1,416:6630773,7095585:25952256,505283,102891 +k1,415:8284751,7095585:260027 +k1,415:9563862,7095585:260026 +k1,415:14598187,7095585:260027 +k1,415:16188594,7095585:260026 +k1,415:18334092,7095585:260027 +k1,415:19125615,7095585:260026 +k1,415:21587652,7095585:260027 +k1,415:22499106,7095585:260026 +k1,415:24307749,7095585:260027 +k1,415:25099272,7095585:260026 +k1,415:28143268,7095585:260027 +k1,415:29019332,7095585:260026 +k1,415:30881059,7095585:260027 +k1,415:32583029,7095585:0 +) +(1,416:6630773,7937073:25952256,513147,134348 +k1,415:9841775,7937073:134742 +k1,415:14328763,7937073:134742 +k1,415:17636103,7937073:134742 +k1,415:18962290,7937073:134742 +k1,415:21715194,7937073:134741 +k1,415:22869021,7937073:134742 +k1,415:26307433,7937073:134742 +k1,415:27101467,7937073:134742 +k1,415:27592069,7937073:134742 +k1,415:29222998,7937073:134742 +k1,415:32583029,7937073:0 +) +(1,416:6630773,8778561:25952256,505283,126483 +g1,415:8715473,8778561 +g1,415:10018984,8778561 +g1,415:10965979,8778561 +g1,415:13021188,8778561 +g1,415:15345094,8778561 +g1,415:16227208,8778561 +k1,416:32583029,8778561:12768380 +g1,416:32583029,8778561 +) +(1,417:6630773,10406481:25952256,505283,115847 +(1,417:6630773,10406481:2809528,485622,11795 +g1,417:6630773,10406481 +g1,417:9440301,10406481 +) +g1,417:14690390,10406481 +(1,417:14690390,10406481:0,459977,115847 +r1,475:15400368,10406481:709978,575824,115847 +k1,417:14690390,10406481:-709978 +) +(1,417:14690390,10406481:709978,459977,115847 +k1,417:14690390,10406481:3277 +h1,417:15397091,10406481:0,411205,112570 +) +g1,417:15778510,10406481 +(1,417:15778510,10406481:0,452978,115847 +r1,475:17191911,10406481:1413401,568825,115847 +k1,417:15778510,10406481:-1413401 +) +(1,417:15778510,10406481:1413401,452978,115847 +k1,417:15778510,10406481:3277 +h1,417:17188634,10406481:0,411205,112570 +) +g1,417:17396383,10406481 +g1,417:18821135,10406481 +(1,417:18821135,10406481:0,452978,115847 +r1,475:20937960,10406481:2116825,568825,115847 +k1,417:18821135,10406481:-2116825 +) +(1,417:18821135,10406481:2116825,452978,115847 +k1,417:18821135,10406481:3277 +h1,417:20934683,10406481:0,411205,112570 +) +k1,417:32583029,10406481:11645069 +g1,417:32583029,10406481 +) +(1,421:6630773,11641185:25952256,505283,134348 +k1,420:8036354,11641185:208894 +(1,420:8036354,11641185:0,459977,115847 +r1,475:8746332,11641185:709978,575824,115847 +k1,420:8036354,11641185:-709978 +) +(1,420:8036354,11641185:709978,459977,115847 +k1,420:8036354,11641185:3277 +h1,420:8743055,11641185:0,411205,112570 +) +k1,420:8955227,11641185:208895 +k1,420:12187952,11641185:208894 +k1,420:15572066,11641185:208895 +k1,420:19142957,11641185:208894 +k1,420:20161222,11641185:208895 +k1,420:20725976,11641185:208894 +(1,420:20725976,11641185:0,452978,122846 +r1,475:23194513,11641185:2468537,575824,122846 +k1,420:20725976,11641185:-2468537 +) +(1,420:20725976,11641185:2468537,452978,122846 +k1,420:20725976,11641185:3277 +h1,420:23191236,11641185:0,411205,112570 +) +k1,420:23403407,11641185:208894 +k1,420:25466316,11641185:208895 +k1,420:28265848,11641185:208894 +k1,420:29493828,11641185:208895 +k1,420:31086842,11641185:208894 +k1,420:32583029,11641185:0 +) +(1,421:6630773,12482673:25952256,513147,126483 +k1,420:10089358,12482673:272225 +k1,420:10893080,12482673:272225 +k1,420:13998426,12482673:272225 +k1,420:14951570,12482673:272225 +(1,420:14951570,12482673:0,414482,115847 +r1,475:16364971,12482673:1413401,530329,115847 +k1,420:14951570,12482673:-1413401 +) +(1,420:14951570,12482673:1413401,414482,115847 +k1,420:14951570,12482673:3277 +h1,420:16361694,12482673:0,411205,112570 +) +k1,420:16844290,12482673:272225 +k1,420:17799400,12482673:272225 +k1,420:20605248,12482673:272226 +k1,420:21558392,12482673:272225 +(1,420:21558392,12482673:0,414482,115847 +r1,475:23323505,12482673:1765113,530329,115847 +k1,420:21558392,12482673:-1765113 +) +(1,420:21558392,12482673:1765113,414482,115847 +k1,420:21558392,12482673:3277 +h1,420:23320228,12482673:0,411205,112570 +) +k1,420:23976494,12482673:272225 +k1,420:25445406,12482673:272225 +k1,420:27067673,12482673:272225 +k1,420:28989439,12482673:272225 +k1,420:31252648,12482673:272225 +k1,421:32583029,12482673:0 +) +(1,421:6630773,13324161:25952256,513147,134348 +(1,420:6630773,13324161:0,459977,115847 +r1,475:7340751,13324161:709978,575824,115847 +k1,420:6630773,13324161:-709978 +) +(1,420:6630773,13324161:709978,459977,115847 +k1,420:6630773,13324161:3277 +h1,420:7337474,13324161:0,411205,112570 +) +k1,420:7538066,13324161:197315 +k1,420:9835810,13324161:197315 +(1,420:9835810,13324161:0,414482,115847 +r1,475:14414618,13324161:4578808,530329,115847 +k1,420:9835810,13324161:-4578808 +) +(1,420:9835810,13324161:4578808,414482,115847 +g1,420:13707917,13324161 +h1,420:14411341,13324161:0,411205,112570 +) +k1,420:14611934,13324161:197316 +k1,420:15340746,13324161:197315 +k1,420:17394041,13324161:197315 +k1,420:20652543,13324161:197315 +k1,420:21532744,13324161:197316 +k1,420:24263681,13324161:197315 +k1,420:27822993,13324161:197315 +k1,420:28829678,13324161:197315 +k1,420:30046079,13324161:197316 +k1,420:31923737,13324161:197315 +k1,421:32583029,13324161:0 +) +(1,421:6630773,14165649:25952256,505283,126483 +(1,420:6630773,14165649:0,452978,115847 +r1,475:10506157,14165649:3875384,568825,115847 +k1,420:6630773,14165649:-3875384 +) +(1,420:6630773,14165649:3875384,452978,115847 +k1,420:6630773,14165649:3277 +h1,420:10502880,14165649:0,411205,112570 +) +g1,420:10879056,14165649 +g1,420:12767803,14165649 +(1,420:12767803,14165649:0,414482,115847 +r1,475:17346611,14165649:4578808,530329,115847 +k1,420:12767803,14165649:-4578808 +) +(1,420:12767803,14165649:4578808,414482,115847 +g1,420:16639910,14165649 +h1,420:17343334,14165649:0,411205,112570 +) +g1,420:17545840,14165649 +g1,420:18276566,14165649 +g1,420:20605060,14165649 +k1,421:32583029,14165649:8743112 +g1,421:32583029,14165649 +) +(1,437:6630773,26728128:25952256,11773697,0 +k1,437:12310416,26728128:5679643 +(1,422:12310416,26728128:0,0,0 +g1,422:12310416,26728128 +g1,422:12310416,26728128 +g1,422:11982736,26728128 +(1,422:11982736,26728128:0,0,0 +) +g1,422:12310416,26728128 +) +(1,435:12310416,26728128:14592970,11773697,0 +g1,435:15329272,26728128 +(1,435:15329272,15899877:0,0,0 +(1,435:15329272,15899877:0,0,0 +g1,424:15329272,15899877 +(1,425:15329272,15899877:0,0,0 +(1,425:15329272,15899877:0,0,0 +g1,425:15329272,15899877 +g1,425:15329272,15899877 +g1,425:15329272,15899877 +g1,425:15329272,15899877 +g1,425:15329272,15899877 +(1,425:15329272,15899877:0,0,0 +(1,425:15329272,15899877:589824,56623,0 +(1,425:15329272,15899877:589824,56623,0 +) +g1,425:15919096,15899877 +) +) +g1,425:15329272,15899877 +g1,425:15329272,15899877 +) +) +g1,425:15329272,15899877 +(1,426:15329272,15899877:0,0,0 +(1,426:15329272,15899877:0,0,0 +g1,426:15329272,15899877 +g1,426:15329272,15899877 +(1,426:15329272,15899877:0,0,0 +(1,426:15329272,15899877:3805042,414307,104590 +(1,426:15329272,15899877:3805042,414307,104590 +(1,426:15329272,15899877:0,414307,104590 +r1,475:19134314,15899877:3805042,518897,104590 +k1,426:15329272,15899877:-3805042 +) +(1,426:15329272,15899877:3805042,414307,104590 +g1,426:16282171,15899877 +h1,426:19131037,15899877:0,370085,101313 +) +) +g1,426:19134314,15899877 +) +) +g1,426:15329272,15899877 +g1,426:15329272,15899877 +) +) +(1,427:15329272,15899877:0,0,0 +(1,427:15329272,15899877:0,0,0 +g1,427:15329272,15899877 +g1,427:15329272,15899877 +g1,427:15329272,15899877 +g1,427:15329272,15899877 +g1,427:15329272,15899877 +(1,427:15329272,15899877:0,0,0 +(1,427:15329272,15899877:4121582,373362,104590 +(1,427:15329272,15899877:4121582,373362,104590 +(1,427:15329272,15899877:0,373362,104590 +r1,475:19450854,15899877:4121582,477952,104590 +k1,427:15329272,15899877:-4121582 +) +(1,427:15329272,15899877:4121582,373362,104590 +g1,427:18814496,15899877 +h1,427:19447577,15899877:0,370085,101313 +) +) +g1,427:19450854,15899877 +) +) +g1,427:15329272,15899877 +g1,427:15329272,15899877 +) +) +(1,428:15329272,15899877:0,0,0 +(1,428:15329272,15899877:0,0,0 +g1,428:15329272,15899877 +g1,428:15329272,15899877 +g1,428:15329272,15899877 +g1,428:15329272,15899877 +g1,428:15329272,15899877 +(1,428:15329272,15899877:0,0,0 +(1,428:15329272,15899877:4121582,373362,104590 +(1,428:15329272,15899877:4121582,373362,104590 +(1,428:15329272,15899877:0,373362,104590 +r1,475:19450854,15899877:4121582,477952,104590 +k1,428:15329272,15899877:-4121582 +) +(1,428:15329272,15899877:4121582,373362,104590 +g1,428:18814496,15899877 +h1,428:19447577,15899877:0,370085,101313 +) +) +g1,428:19450854,15899877 +) +) +g1,428:15329272,15899877 +g1,428:15329272,15899877 +) +) +g1,428:15329272,15899877 +g1,429:15329272,15899877 +(1,429:15329272,15899877:0,0,0 +(1,429:15329272,15899877:0,0,0 +g1,429:15329272,15899877 +g1,429:15329272,15899877 +g1,429:15329272,15899877 +g1,429:15329272,15899877 +g1,429:15329272,15899877 +(1,429:15329272,15899877:0,0,0 +(1,429:15329272,15899877:589824,56623,0 +(1,429:15329272,15899877:589824,56623,0 +) +g1,429:15919096,15899877 +) +) +g1,429:15329272,15899877 +g1,429:15329272,15899877 +) +) +g1,429:15329272,15899877 +g1,430:15329272,15899877 +g1,430:15329272,15899877 +g1,430:15329272,15899877 +g1,430:15329272,15899877 +g1,431:15329272,15899877 +g1,431:15329272,15899877 +g1,431:15329272,15899877 +(1,431:15329272,15899877:0,0,0 +(1,431:15329272,15899877:0,0,0 +g1,431:15329272,15899877 +g1,431:15329272,15899877 +g1,431:15329272,15899877 +g1,431:15329272,15899877 +g1,431:15329272,15899877 +(1,431:15329272,15899877:0,0,0 +(1,431:15329272,15899877:1272717,373362,104590 +(1,431:15329272,15899877:1272717,373362,104590 +(1,431:15329272,15899877:0,373362,104590 +r1,475:16601989,15899877:1272717,477952,104590 +k1,431:15329272,15899877:-1272717 +) +(1,431:15329272,15899877:1272717,373362,104590 +k1,431:15329272,15899877:3277 +h1,431:16598712,15899877:0,370085,101313 +) +) +g1,431:16601989,15899877 +) +) +g1,431:15329272,15899877 +g1,431:15329272,15899877 +) +) +g1,431:15329272,15899877 +g1,432:15329272,15899877 +g1,432:15329272,15899877 +g1,432:15329272,15899877 +(1,432:15329272,15899877:0,0,0 +(1,432:15329272,15899877:0,0,0 +g1,432:15329272,15899877 +g1,432:15329272,15899877 +g1,432:15329272,15899877 +g1,432:15329272,15899877 +g1,432:15329272,15899877 +(1,432:15329272,15899877:0,0,0 +(1,432:15329272,15899877:1589257,373362,104590 +(1,432:15329272,15899877:1589257,373362,104590 +(1,432:15329272,15899877:0,373362,104590 +r1,475:16918529,15899877:1589257,477952,104590 +k1,432:15329272,15899877:-1589257 +) +(1,432:15329272,15899877:1589257,373362,104590 +k1,432:15329272,15899877:3277 +h1,432:16915252,15899877:0,370085,101313 +) +) +g1,432:16918529,15899877 +) +) +g1,432:15329272,15899877 +g1,432:15329272,15899877 +) +) +g1,432:15329272,15899877 +g1,433:15329272,15899877 +g1,433:15329272,15899877 +g1,433:15329272,15899877 +g1,433:15329272,15899877 +g1,433:15329272,15899877 +g1,434:15329272,15899877 +g1,434:15329272,15899877 +g1,434:15329272,15899877 +g1,434:15329272,15899877 +g1,434:15329272,15899877 +g1,434:15329272,15899877 +g1,435:15329272,15899877 +g1,435:15329272,15899877 +) +g1,435:15329272,15899877 +) +) +g1,437:26903386,26728128 +k1,437:32583029,26728128:5679643 +) +(1,440:6630773,28166378:25952256,513147,134348 +h1,439:6630773,28166378:983040,0,0 +k1,439:8821522,28166378:254160 +k1,439:10564006,28166378:254161 +k1,439:12212117,28166378:254160 +k1,439:13478808,28166378:254160 +k1,439:16724688,28166378:254161 +k1,439:21654842,28166378:254160 +k1,439:23239384,28166378:254161 +k1,439:24051911,28166378:254160 +k1,439:27822733,28166378:254160 +k1,439:29847021,28166378:254161 +k1,439:31714677,28166378:254160 +k1,439:32583029,28166378:0 +) +(1,440:6630773,29007866:25952256,505283,126483 +g1,439:7962464,29007866 +g1,439:9186676,29007866 +g1,439:12377624,29007866 +g1,439:14476086,29007866 +g1,439:15326743,29007866 +g1,439:16722659,29007866 +g1,439:18014373,29007866 +k1,440:32583029,29007866:12697603 +g1,440:32583029,29007866 +) +v1,442:6630773,30151455:0,393216,0 +(1,450:6630773,31839278:25952256,2081039,196608 +g1,450:6630773,31839278 +g1,450:6630773,31839278 +g1,450:6434165,31839278 +(1,450:6434165,31839278:0,2081039,196608 +r1,475:32779637,31839278:26345472,2277647,196608 +k1,450:6434165,31839278:-26345472 +) +(1,450:6434165,31839278:26345472,2081039,196608 +[1,450:6630773,31839278:25952256,1884431,0 +(1,444:6630773,30365365:25952256,410518,107478 +(1,443:6630773,30365365:0,0,0 +g1,443:6630773,30365365 +g1,443:6630773,30365365 +g1,443:6303093,30365365 +(1,443:6303093,30365365:0,0,0 +) +g1,443:6630773,30365365 +) +g1,444:8211502,30365365 +g1,444:9159940,30365365 +h1,444:10424523,30365365:0,0,0 +k1,444:32583029,30365365:22158506 +g1,444:32583029,30365365 +) +(1,445:6630773,31031543:25952256,410518,107478 +h1,445:6630773,31031543:0,0,0 +g1,445:7579210,31031543 +g1,445:9792230,31031543 +k1,445:9792230,31031543:0 +h1,445:14534415,31031543:0,0,0 +k1,445:32583029,31031543:18048614 +g1,445:32583029,31031543 +) +(1,449:6630773,31763257:25952256,404226,76021 +(1,447:6630773,31763257:0,0,0 +g1,447:6630773,31763257 +g1,447:6630773,31763257 +g1,447:6303093,31763257 +(1,447:6303093,31763257:0,0,0 +) +g1,447:6630773,31763257 +) +g1,449:7579210,31763257 +g1,449:8843793,31763257 +h1,449:11372958,31763257:0,0,0 +k1,449:32583030,31763257:21210072 +g1,449:32583030,31763257 +) +] +) +g1,450:32583029,31839278 +g1,450:6630773,31839278 +g1,450:6630773,31839278 +g1,450:32583029,31839278 +g1,450:32583029,31839278 +) +h1,450:6630773,32035886:0,0,0 +v1,454:6630773,33832194:0,393216,0 +(1,470:6630773,41863407:25952256,8424429,0 +g1,470:6630773,41863407 +g1,470:6303093,41863407 +r1,475:6401397,41863407:98304,8424429,0 +g1,470:6600626,41863407 +g1,470:6797234,41863407 +[1,470:6797234,41863407:25785795,8424429,0 +(1,455:6797234,34722960:25785795,1283982,196608 +(1,454:6797234,34722960:0,1283982,196608 +r1,475:8400153,34722960:1602919,1480590,196608 +k1,454:6797234,34722960:-1602919 +) +(1,454:6797234,34722960:1602919,1283982,196608 +) +k1,454:8650272,34722960:250119 +k1,454:10198003,34722960:250118 +k1,454:11842073,34722960:250119 +k1,454:13111277,34722960:250119 +k1,454:14857582,34722960:250118 +k1,454:16963025,34722960:250119 +k1,454:17974672,34722960:250119 +k1,454:21108375,34722960:250119 +k1,454:22377578,34722960:250118 +k1,454:24308040,34722960:250119 +k1,454:27332953,34722960:250119 +k1,454:28234499,34722960:250118 +k1,454:30995958,34722960:250119 +(1,454:30995958,34722960:0,459977,122846 +r1,475:32409359,34722960:1413401,582823,122846 +k1,454:30995958,34722960:-1413401 +) +(1,454:30995958,34722960:1413401,459977,122846 +k1,454:30995958,34722960:3277 +h1,454:32406082,34722960:0,411205,112570 +) +k1,455:32583029,34722960:0 +) +(1,455:6797234,35564448:25785795,505283,122846 +(1,454:6797234,35564448:0,414482,115847 +r1,475:8562347,35564448:1765113,530329,115847 +k1,454:6797234,35564448:-1765113 +) +(1,454:6797234,35564448:1765113,414482,115847 +k1,454:6797234,35564448:3277 +h1,454:8559070,35564448:0,411205,112570 +) +g1,454:8935246,35564448 +(1,454:8935246,35564448:0,414482,115847 +r1,475:9645224,35564448:709978,530329,115847 +k1,454:8935246,35564448:-709978 +) +(1,454:8935246,35564448:709978,414482,115847 +k1,454:8935246,35564448:3277 +h1,454:9641947,35564448:0,411205,112570 +) +g1,454:10018123,35564448 +g1,454:11408797,35564448 +(1,454:11408797,35564448:0,452978,122846 +r1,475:14932469,35564448:3523672,575824,122846 +k1,454:11408797,35564448:-3523672 +) +(1,454:11408797,35564448:3523672,452978,122846 +k1,454:11408797,35564448:3277 +h1,454:14929192,35564448:0,411205,112570 +) +k1,455:32583029,35564448:17476890 +g1,455:32583029,35564448 +) +(1,457:6797234,36405936:25785795,505283,126483 +h1,456:6797234,36405936:983040,0,0 +g1,456:8607338,36405936 +g1,456:9825652,36405936 +g1,456:12686298,36405936 +g1,456:14740851,36405936 +g1,456:15808432,36405936 +g1,456:17100146,36405936 +g1,456:19810715,36405936 +(1,456:19810715,36405936:0,459977,122846 +r1,475:21224116,36405936:1413401,582823,122846 +k1,456:19810715,36405936:-1413401 +) +(1,456:19810715,36405936:1413401,459977,122846 +k1,456:19810715,36405936:3277 +h1,456:21220839,36405936:0,411205,112570 +) +g1,456:21423345,36405936 +g1,456:22308736,36405936 +g1,456:23527050,36405936 +k1,457:32583029,36405936:5992171 +g1,457:32583029,36405936 +) +(1,459:6797234,37247424:25785795,513147,134348 +h1,458:6797234,37247424:983040,0,0 +k1,458:10568742,37247424:239773 +k1,458:11424553,37247424:239773 +k1,458:12683411,37247424:239773 +k1,458:13337986,37247424:239732 +k1,458:16420055,37247424:239773 +k1,458:19422826,37247424:239773 +k1,458:20865840,37247424:239773 +k1,458:24137964,37247424:239773 +k1,458:25945358,37247424:239773 +k1,458:27923146,37247424:239773 +k1,458:28518779,37247424:239773 +(1,458:28518779,37247424:0,452978,122846 +r1,475:30987316,37247424:2468537,575824,122846 +k1,458:28518779,37247424:-2468537 +) +(1,458:28518779,37247424:2468537,452978,122846 +k1,458:28518779,37247424:3277 +h1,458:30984039,37247424:0,411205,112570 +) +k1,458:31227089,37247424:239773 +k1,459:32583029,37247424:0 +) +(1,459:6797234,38088912:25785795,513147,126483 +k1,458:8774573,38088912:188861 +k1,458:11297171,38088912:188861 +k1,458:12782990,38088912:188861 +(1,458:12782990,38088912:0,459977,115847 +r1,475:15954951,38088912:3171961,575824,115847 +k1,458:12782990,38088912:-3171961 +) +(1,458:12782990,38088912:3171961,459977,115847 +g1,458:13841403,38088912 +h1,458:15951674,38088912:0,411205,112570 +) +k1,458:16143812,38088912:188861 +k1,458:16948711,38088912:188861 +k1,458:18156658,38088912:188862 +k1,458:24772635,38088912:188861 +k1,458:28147856,38088912:188861 +k1,458:30205148,38088912:188861 +k1,458:30925506,38088912:188861 +k1,458:31773659,38088912:188861 +k1,458:32583029,38088912:0 +) +(1,459:6797234,38930400:25785795,505283,126483 +g1,458:9747664,38930400 +k1,459:32583028,38930400:21569208 +g1,459:32583028,38930400 +) +v1,461:6797234,40120866:0,393216,0 +(1,468:6797234,41142511:25785795,1414861,196608 +g1,468:6797234,41142511 +g1,468:6797234,41142511 +g1,468:6600626,41142511 +(1,468:6600626,41142511:0,1414861,196608 +r1,475:32779637,41142511:26179011,1611469,196608 +k1,468:6600625,41142511:-26179012 +) +(1,468:6600626,41142511:26179011,1414861,196608 +[1,468:6797234,41142511:25785795,1218253,0 +(1,463:6797234,40334776:25785795,410518,101187 +(1,462:6797234,40334776:0,0,0 +g1,462:6797234,40334776 +g1,462:6797234,40334776 +g1,462:6469554,40334776 +(1,462:6469554,40334776:0,0,0 +) +g1,462:6797234,40334776 +) +k1,463:6797234,40334776:0 +g1,463:7745671,40334776 +g1,463:9958692,40334776 +k1,463:9958692,40334776:0 +h1,463:14700877,40334776:0,0,0 +k1,463:32583029,40334776:17882152 +g1,463:32583029,40334776 +) +(1,467:6797234,41066490:25785795,404226,76021 +(1,465:6797234,41066490:0,0,0 +g1,465:6797234,41066490 +g1,465:6797234,41066490 +g1,465:6469554,41066490 +(1,465:6469554,41066490:0,0,0 +) +g1,465:6797234,41066490 +) +g1,467:7745671,41066490 +g1,467:9010254,41066490 +h1,467:11539419,41066490:0,0,0 +k1,467:32583029,41066490:21043610 +g1,467:32583029,41066490 +) +] +) +g1,468:32583029,41142511 +g1,468:6797234,41142511 +g1,468:6797234,41142511 +g1,468:32583029,41142511 +g1,468:32583029,41142511 +) +h1,468:6797234,41339119:0,0,0 +] +g1,470:32583029,41863407 +) +h1,470:6630773,41863407:0,0,0 +(1,473:6630773,43182305:25952256,513147,126483 +h1,472:6630773,43182305:983040,0,0 +k1,472:11540134,43182305:211085 +k1,472:14826825,43182305:211086 +k1,472:15569407,43182305:211085 +k1,472:17563727,43182305:211085 +k1,472:19425009,43182305:211085 +k1,472:21613316,43182305:211086 +k1,472:23266848,43182305:211085 +k1,472:25026549,43182305:211085 +k1,472:27006451,43182305:211085 +k1,472:27965303,43182305:211086 +k1,472:31015408,43182305:211085 +k1,472:32583029,43182305:0 +) +(1,473:6630773,44023793:25952256,505283,134348 +k1,472:7849284,44023793:199426 +k1,472:10803188,44023793:199426 +k1,472:13837701,44023793:199426 +k1,472:16566817,44023793:199426 +k1,472:17785328,44023793:199426 +k1,472:21171114,44023793:199426 +k1,472:23378563,44023793:199426 +k1,472:26653594,44023793:199426 +k1,472:27384517,44023793:199426 +k1,472:29321958,44023793:199426 +k1,472:32583029,44023793:0 +) +(1,473:6630773,44865281:25952256,513147,134348 +k1,472:7954199,44865281:219144 +k1,472:8921109,44865281:219144 +k1,472:9496113,44865281:219144 +k1,472:13129026,44865281:219143 +k1,472:16534530,44865281:219144 +k1,472:17412966,44865281:219144 +k1,472:19794798,44865281:219144 +k1,472:21145749,44865281:219144 +k1,472:23378159,44865281:219144 +k1,472:24280187,44865281:219143 +k1,472:28178522,44865281:219144 +k1,472:28885234,44865281:219124 +k1,472:30458352,44865281:219144 +k1,472:32583029,44865281:0 +) +(1,473:6630773,45706769:25952256,513147,126483 +g1,472:9491419,45706769 +k1,473:32583028,45706769:20602552 +g1,473:32583028,45706769 +) +] +(1,475:32583029,45706769:0,0,0 +g1,475:32583029,45706769 +) +) +] +(1,475:6630773,47279633:25952256,0,0 +h1,475:6630773,47279633:25952256,0,0 +) +] +(1,475:4262630,4025873:0,0,0 +[1,475:-473656,4025873:0,0,0 +(1,475:-473656,-710413:0,0,0 +(1,475:-473656,-710413:0,0,0 +g1,475:-473656,-710413 +) +g1,475:-473656,-710413 +) +] +) +] +!23914 +}15 +Input:231:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:232:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:233:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:234:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:235:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:236:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:237:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:238:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:239:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:240:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:241:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:242:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:243:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:244:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:245:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:246:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:247:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:248:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:249:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:250:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:251:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:252:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2013 +{16 +[1,589:4262630,47279633:28320399,43253760,0 +(1,589:4262630,4025873:0,0,0 +[1,589:-473656,4025873:0,0,0 +(1,589:-473656,-710413:0,0,0 +(1,589:-473656,-644877:0,0,0 +k1,589:-473656,-644877:-65536 +) +(1,589:-473656,4736287:0,0,0 +k1,589:-473656,4736287:5209943 ) +g1,589:-473656,-710413 ) -(183,37:29694161,44366129:501378,78643,0 -(183,37:29858015,44366129:173670,78643,0 +] ) +[1,589:6630773,47279633:25952256,43253760,0 +[1,589:6630773,4812305:25952256,786432,0 +(1,589:6630773,4812305:25952256,513147,126483 +(1,589:6630773,4812305:25952256,513147,126483 +g1,589:3078558,4812305 +[1,589:3078558,4812305:0,0,0 +(1,589:3078558,2439708:0,1703936,0 +k1,589:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,589:2537886,2439708:1179648,16384,0 ) -(183,37:30195539,44366129:501378,78643,0 -(183,37:30359393,44366129:173670,78643,0 +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,589:3078558,1915420:16384,1179648,0 ) +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) -(183,37:30696917,44366129:501378,78643,0 -(183,37:30860771,44366129:173670,78643,0 +] ) ) -(183,37:31239539,44366129:1343490,485622,11795 -k183,37:31586882,44366129:347343 -g183,37:31786111,44366129 ) -g183,37:30911859,44366129 -g183,37:32583029,44366129 +] +[1,589:3078558,4812305:0,0,0 +(1,589:3078558,2439708:0,1703936,0 +g1,589:29030814,2439708 +g1,589:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,589:36151628,1915420:16384,1179648,0 ) -(183,38:6630773,45207617:25952256,505283,11795 -g183,38:11218293,45207617 -h183,38:11218293,45207617:2490370,0,0 -h183,38:13708663,45207617:0,0,0 -g183,38:9121143,45207617 -(183,38:9121143,45207617:2097150,485622,11795 -k183,38:11218293,45207617:155974 +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) -g183,38:13612323,45207617 -g183,38:14936150,45207617 -(183,38:15154199,45207617:501378,78643,0 -$183,38:15154199,45207617 -(183,38:15318053,45207617:173670,78643,0 +] ) -$183,38:15655577,45207617 +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,589:37855564,2439708:1179648,16384,0 ) -(183,38:15655577,45207617:501378,78643,0 -(183,38:15819431,45207617:173670,78643,0 ) +k1,589:3078556,2439708:-34777008 ) -(183,38:16156955,45207617:501378,78643,0 -(183,38:16320809,45207617:173670,78643,0 +] +[1,589:3078558,4812305:0,0,0 +(1,589:3078558,49800853:0,16384,2228224 +k1,589:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,589:2537886,49800853:1179648,16384,0 ) +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,589:3078558,51504789:16384,1179648,0 ) -(183,38:16658333,45207617:501378,78643,0 -(183,38:16822187,45207617:173670,78643,0 +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) +] ) -(183,38:17159711,45207617:501378,78643,0 -(183,38:17323565,45207617:173670,78643,0 ) ) -(183,38:17661089,45207617:501378,78643,0 -(183,38:17824943,45207617:173670,78643,0 +] +[1,589:3078558,4812305:0,0,0 +(1,589:3078558,49800853:0,16384,2228224 +g1,589:29030814,49800853 +g1,589:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,589:36151628,51504789:16384,1179648,0 ) +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 ) -(183,38:18162467,45207617:501378,78643,0 -(183,38:18326321,45207617:173670,78643,0 +] ) +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,589:37855564,49800853:1179648,16384,0 ) -(183,38:18663845,45207617:501378,78643,0 -(183,38:18827699,45207617:173670,78643,0 ) +k1,589:3078556,49800853:-34777008 ) -(183,38:19165223,45207617:501378,78643,0 -(183,38:19329077,45207617:173670,78643,0 +] +g1,589:6630773,4812305 +g1,589:6630773,4812305 +g1,589:9175536,4812305 +g1,589:9990803,4812305 +g1,589:13137841,4812305 +g1,589:14654344,4812305 +k1,589:31786112,4812305:17131768 ) ) -(183,38:19666601,45207617:501378,78643,0 -(183,38:19830455,45207617:173670,78643,0 +] +[1,589:6630773,45706769:25952256,40108032,0 +(1,589:6630773,45706769:25952256,40108032,0 +(1,589:6630773,45706769:0,0,0 +g1,589:6630773,45706769 ) +[1,589:6630773,45706769:25952256,40108032,0 +v1,475:6630773,6254097:0,393216,0 +(1,487:6630773,10600340:25952256,4739459,196608 +g1,487:6630773,10600340 +g1,487:6630773,10600340 +g1,487:6434165,10600340 +(1,487:6434165,10600340:0,4739459,196608 +r1,589:32779637,10600340:26345472,4936067,196608 +k1,487:6434165,10600340:-26345472 ) -(183,38:20167979,45207617:501378,78643,0 -(183,38:20331833,45207617:173670,78643,0 +(1,487:6434165,10600340:26345472,4739459,196608 +[1,487:6630773,10600340:25952256,4542851,0 +(1,477:6630773,6461715:25952256,404226,107478 +(1,476:6630773,6461715:0,0,0 +g1,476:6630773,6461715 +g1,476:6630773,6461715 +g1,476:6303093,6461715 +(1,476:6303093,6461715:0,0,0 +) +g1,476:6630773,6461715 +) +g1,477:9476084,6461715 +g1,477:10424522,6461715 +h1,477:11689105,6461715:0,0,0 +k1,477:32583029,6461715:20893924 +g1,477:32583029,6461715 +) +(1,478:6630773,7127893:25952256,410518,107478 +h1,478:6630773,7127893:0,0,0 +g1,478:7579210,7127893 +g1,478:11056813,7127893 +h1,478:11372959,7127893:0,0,0 +k1,478:32583029,7127893:21210070 +g1,478:32583029,7127893 +) +(1,479:6630773,7794071:25952256,404226,101187 +h1,479:6630773,7794071:0,0,0 +g1,479:6946919,7794071 +g1,479:7263065,7794071 +k1,479:7263065,7794071:0 +h1,479:10424522,7794071:0,0,0 +k1,479:32583030,7794071:22158508 +g1,479:32583030,7794071 +) +(1,480:6630773,8460249:25952256,404226,101187 +h1,480:6630773,8460249:0,0,0 +g1,480:6946919,8460249 +g1,480:7263065,8460249 +k1,480:7263065,8460249:0 +h1,480:10424522,8460249:0,0,0 +k1,480:32583030,8460249:22158508 +g1,480:32583030,8460249 +) +(1,481:6630773,9126427:25952256,404226,76021 +h1,481:6630773,9126427:0,0,0 +h1,481:6946919,9126427:0,0,0 +k1,481:32583029,9126427:25636110 +g1,481:32583029,9126427 +) +(1,486:6630773,9858141:25952256,404226,76021 +(1,483:6630773,9858141:0,0,0 +g1,483:6630773,9858141 +g1,483:6630773,9858141 +g1,483:6303093,9858141 +(1,483:6303093,9858141:0,0,0 +) +g1,483:6630773,9858141 +) +g1,486:7579210,9858141 +g1,486:8843793,9858141 +h1,486:9792230,9858141:0,0,0 +k1,486:32583030,9858141:22790800 +g1,486:32583030,9858141 +) +(1,486:6630773,10524319:25952256,404226,76021 +h1,486:6630773,10524319:0,0,0 +g1,486:7579210,10524319 +g1,486:8843793,10524319 +h1,486:9792230,10524319:0,0,0 +k1,486:32583030,10524319:22790800 +g1,486:32583030,10524319 +) +] +) +g1,487:32583029,10600340 +g1,487:6630773,10600340 +g1,487:6630773,10600340 +g1,487:32583029,10600340 +g1,487:32583029,10600340 +) +h1,487:6630773,10796948:0,0,0 +v1,491:6630773,12637020:0,393216,0 +(1,492:6630773,15146664:25952256,2902860,0 +g1,492:6630773,15146664 +g1,492:6303093,15146664 +r1,589:6401397,15146664:98304,2902860,0 +g1,492:6600626,15146664 +g1,492:6797234,15146664 +[1,492:6797234,15146664:25785795,2902860,0 +(1,492:6797234,13329340:25785795,1085536,298548 +(1,491:6797234,13329340:0,1085536,298548 +r1,589:8303649,13329340:1506415,1384084,298548 +k1,491:6797234,13329340:-1506415 +) +(1,491:6797234,13329340:1506415,1085536,298548 +) +k1,491:8495269,13329340:191620 +k1,491:9883576,13329340:191620 +k1,491:13107546,13329340:191619 +k1,491:15504453,13329340:191620 +k1,491:16382235,13329340:191620 +k1,491:17344558,13329340:191620 +k1,491:20608505,13329340:191619 +k1,491:21451553,13329340:191620 +(1,491:21451553,13329340:0,459977,115847 +r1,589:22161531,13329340:709978,575824,115847 +k1,491:21451553,13329340:-709978 +) +(1,491:21451553,13329340:709978,459977,115847 +k1,491:21451553,13329340:3277 +h1,491:22158254,13329340:0,411205,112570 +) +k1,491:22526821,13329340:191620 +k1,491:25512241,13329340:191620 +k1,491:26319898,13329340:191619 +k1,491:30539361,13329340:191620 +k1,491:31835263,13329340:191620 +k1,491:32583029,13329340:0 +) +(1,492:6797234,14170828:25785795,513147,134348 +k1,491:9808125,14170828:217091 +k1,491:12550974,14170828:217091 +k1,491:13123925,14170828:217091 +(1,491:13123925,14170828:0,452978,122846 +r1,589:15592462,14170828:2468537,575824,122846 +k1,491:13123925,14170828:-2468537 +) +(1,491:13123925,14170828:2468537,452978,122846 +k1,491:13123925,14170828:3277 +h1,491:15589185,14170828:0,411205,112570 +) +k1,491:15809553,14170828:217091 +k1,491:18004521,14170828:217091 +k1,491:18880904,14170828:217091 +k1,491:21111261,14170828:217091 +k1,491:22658733,14170828:217091 +k1,491:23693713,14170828:217091 +k1,491:25114045,14170828:217091 +k1,491:28363487,14170828:217091 +k1,491:29112075,14170828:217091 +k1,491:30392160,14170828:217091 +k1,492:32583029,14170828:0 +) +(1,492:6797234,15012316:25785795,505283,134348 +g1,491:8529350,15012316 +g1,491:9084439,15012316 +g1,491:11308075,15012316 +g1,491:13485181,15012316 +g1,491:14816872,15012316 +g1,491:17146676,15012316 +g1,491:18116608,15012316 +g1,491:18730680,15012316 +g1,491:21500231,15012316 +g1,491:22382345,15012316 +g1,491:24188517,15012316 +g1,491:27749743,15012316 +g1,491:28758342,15012316 +g1,491:29876386,15012316 +k1,492:32583029,15012316:199236 +g1,492:32583029,15012316 +) +] +g1,492:32583029,15146664 +) +h1,492:6630773,15146664:0,0,0 +(1,495:6630773,16487443:25952256,513147,134348 +h1,494:6630773,16487443:983040,0,0 +k1,494:9111198,16487443:300698 +(1,494:9111198,16487443:0,459977,115847 +r1,589:12283159,16487443:3171961,575824,115847 +k1,494:9111198,16487443:-3171961 +) +(1,494:9111198,16487443:3171961,459977,115847 +g1,494:10169611,16487443 +g1,494:10873035,16487443 +h1,494:12279882,16487443:0,411205,112570 +) +k1,494:12583856,16487443:300697 +k1,494:15908385,16487443:300698 +k1,494:19384302,16487443:300698 +k1,494:23046996,16487443:300697 +k1,494:24157064,16487443:300698 +k1,494:24813622,16487443:300698 +(1,494:24813622,16487443:0,452978,122846 +r1,589:27282159,16487443:2468537,575824,122846 +k1,494:24813622,16487443:-2468537 +) +(1,494:24813622,16487443:2468537,452978,122846 +k1,494:24813622,16487443:3277 +h1,494:27278882,16487443:0,411205,112570 +) +k1,494:27582857,16487443:300698 +k1,494:29737568,16487443:300697 +k1,494:31923737,16487443:300698 +k1,494:32583029,16487443:0 +) +(1,495:6630773,17328931:25952256,513147,115847 +k1,494:8140267,17328931:337055 +k1,494:9973509,17328931:337055 +k1,494:13827225,17328931:337054 +k1,494:14695777,17328931:337055 +k1,494:18039624,17328931:337055 +k1,494:19573366,17328931:337055 +k1,494:21260462,17328931:337054 +k1,494:23247058,17328931:337055 +k1,494:25575097,17328931:337055 +k1,494:27242533,17328931:337055 +(1,494:27242533,17328931:0,459977,115847 +r1,589:27952511,17328931:709978,575824,115847 +k1,494:27242533,17328931:-709978 +) +(1,494:27242533,17328931:709978,459977,115847 +k1,494:27242533,17328931:3277 +h1,494:27949234,17328931:0,411205,112570 +) +k1,494:28289565,17328931:337054 +k1,494:30727049,17328931:337055 +k1,495:32583029,17328931:0 +) +(1,495:6630773,18170419:25952256,505283,134348 +(1,494:6630773,18170419:0,414482,115847 +r1,589:11209581,18170419:4578808,530329,115847 +k1,494:6630773,18170419:-4578808 +) +(1,494:6630773,18170419:4578808,414482,115847 +g1,494:10502880,18170419 +h1,494:11206304,18170419:0,411205,112570 +) +k1,494:11399739,18170419:190158 +k1,494:12272782,18170419:190158 +(1,494:12272782,18170419:0,414482,115847 +r1,589:16851590,18170419:4578808,530329,115847 +k1,494:12272782,18170419:-4578808 +) +(1,494:12272782,18170419:4578808,414482,115847 +g1,494:16144889,18170419 +h1,494:16848313,18170419:0,411205,112570 +) +k1,494:17041749,18170419:190159 +k1,494:17763404,18170419:190158 +k1,494:21014749,18170419:190158 +k1,494:22396352,18170419:190158 +k1,494:23605595,18170419:190158 +k1,494:25497724,18170419:190159 +k1,494:28221504,18170419:190158 +k1,494:31773659,18170419:190158 +k1,494:32583029,18170419:0 +) +(1,495:6630773,19011907:25952256,513147,126483 +g1,494:7849087,19011907 +g1,494:9728659,19011907 +g1,494:10595044,19011907 +(1,494:10595044,19011907:0,452978,115847 +r1,589:14470428,19011907:3875384,568825,115847 +k1,494:10595044,19011907:-3875384 +) +(1,494:10595044,19011907:3875384,452978,115847 +k1,494:10595044,19011907:3277 +h1,494:14467151,19011907:0,411205,112570 +) +g1,494:14843327,19011907 +g1,494:16732074,19011907 +(1,494:16732074,19011907:0,414482,115847 +r1,589:21310882,19011907:4578808,530329,115847 +k1,494:16732074,19011907:-4578808 +) +(1,494:16732074,19011907:4578808,414482,115847 +g1,494:20604181,19011907 +h1,494:21307605,19011907:0,411205,112570 +) +g1,494:21510111,19011907 +g1,494:22240837,19011907 +g1,494:24569331,19011907 +k1,495:32583029,19011907:4778841 +g1,495:32583029,19011907 +) +(1,513:6630773,31974668:25952256,12146627,0 +k1,513:8032787,31974668:1402014 +(1,496:8032787,31974668:0,0,0 +g1,496:8032787,31974668 +g1,496:8032787,31974668 +g1,496:7705107,31974668 +(1,496:7705107,31974668:0,0,0 +) +g1,496:8032787,31974668 +) +(1,511:8032787,31974668:23148228,12146627,0 +g1,511:19606901,31974668 +(1,511:19606901,20773487:0,0,0 +(1,511:19606901,20773487:0,0,0 +g1,498:19606901,20773487 +(1,499:19606901,20773487:0,0,0 +(1,499:19606901,20773487:0,0,0 +g1,499:19606901,20773487 +g1,499:19606901,20773487 +g1,499:19606901,20773487 +g1,499:19606901,20773487 +g1,499:19606901,20773487 +(1,499:19606901,20773487:0,0,0 +(1,499:19606901,20773487:589824,56623,0 +(1,499:19606901,20773487:589824,56623,0 +) +g1,499:20196725,20773487 +) +) +g1,499:19606901,20773487 +g1,499:19606901,20773487 +) +) +g1,499:19606901,20773487 +(1,500:19606901,20773487:0,0,0 +(1,500:19606901,20773487:0,0,0 +g1,500:19606901,20773487 +g1,500:19606901,20773487 +(1,500:19606901,20773487:0,0,0 +(1,500:19606901,20773487:5387746,414307,104590 +(1,500:19606901,20773487:5387746,414307,104590 +(1,500:19606901,20773487:0,414307,104590 +r1,589:24994647,20773487:5387746,518897,104590 +k1,500:19606901,20773487:-5387746 +) +(1,500:19606901,20773487:5387746,414307,104590 +g1,500:20559800,20773487 +g1,500:23725207,20773487 +h1,500:24991370,20773487:0,370085,101313 +) +) +g1,500:24994647,20773487 +) +) +g1,500:19606901,20773487 +g1,500:19606901,20773487 +) +) +(1,501:19606901,20773487:0,0,0 +(1,501:19606901,20773487:0,0,0 +g1,501:19606901,20773487 +g1,501:19606901,20773487 +g1,501:19606901,20773487 +g1,501:19606901,20773487 +g1,501:19606901,20773487 +(1,501:19606901,20773487:0,0,0 +(1,501:19606901,20773487:4121582,373362,104590 +(1,501:19606901,20773487:4121582,373362,104590 +(1,501:19606901,20773487:0,373362,104590 +r1,589:23728483,20773487:4121582,477952,104590 +k1,501:19606901,20773487:-4121582 +) +(1,501:19606901,20773487:4121582,373362,104590 +g1,501:23092125,20773487 +h1,501:23725206,20773487:0,370085,101313 +) +) +g1,501:23728483,20773487 +) +) +g1,501:19606901,20773487 +g1,501:19606901,20773487 +) +) +(1,502:19606901,20773487:0,0,0 +(1,502:19606901,20773487:0,0,0 +g1,502:19606901,20773487 +g1,502:19606901,20773487 +g1,502:19606901,20773487 +g1,502:19606901,20773487 +g1,502:19606901,20773487 +(1,502:19606901,20773487:0,0,0 +(1,502:19606901,20773487:4121582,373362,104590 +(1,502:19606901,20773487:4121582,373362,104590 +(1,502:19606901,20773487:0,373362,104590 +r1,589:23728483,20773487:4121582,477952,104590 +k1,502:19606901,20773487:-4121582 +) +(1,502:19606901,20773487:4121582,373362,104590 +g1,502:23092125,20773487 +h1,502:23725206,20773487:0,370085,101313 +) +) +g1,502:23728483,20773487 +) +) +g1,502:19606901,20773487 +g1,502:19606901,20773487 +) +) +(1,503:19606901,20773487:0,0,0 +(1,503:19606901,20773487:0,0,0 +g1,503:19606901,20773487 +g1,503:19606901,20773487 +g1,503:19606901,20773487 +g1,503:19606901,20773487 +g1,503:19606901,20773487 +(1,503:19606901,20773487:0,0,0 +(1,503:19606901,20773487:4121582,373362,104590 +(1,503:19606901,20773487:4121582,373362,104590 +(1,503:19606901,20773487:0,373362,104590 +r1,589:23728483,20773487:4121582,477952,104590 +k1,503:19606901,20773487:-4121582 ) +(1,503:19606901,20773487:4121582,373362,104590 +g1,503:23092125,20773487 +h1,503:23725206,20773487:0,370085,101313 ) -(183,38:20669357,45207617:501378,78643,0 -(183,38:20833211,45207617:173670,78643,0 ) +g1,503:23728483,20773487 +) +) +g1,503:19606901,20773487 +g1,503:19606901,20773487 +) +) +g1,503:19606901,20773487 +g1,504:19606901,20773487 +(1,504:19606901,20773487:0,0,0 +(1,504:19606901,20773487:0,0,0 +g1,504:19606901,20773487 +g1,504:19606901,20773487 +g1,504:19606901,20773487 +g1,504:19606901,20773487 +g1,504:19606901,20773487 +(1,504:19606901,20773487:0,0,0 +(1,504:19606901,20773487:589824,56623,0 +(1,504:19606901,20773487:589824,56623,0 ) -(183,38:21170735,45207617:501378,78643,0 -(183,38:21334589,45207617:173670,78643,0 +g1,504:20196725,20773487 +) +) +g1,504:19606901,20773487 +g1,504:19606901,20773487 +) +) +g1,504:19606901,20773487 +g1,505:19606901,20773487 +g1,505:19606901,20773487 +g1,505:19606901,20773487 +g1,505:19606901,20773487 +g1,506:19606901,20773487 +g1,506:19606901,20773487 +g1,506:19606901,20773487 +(1,506:19606901,20773487:0,0,0 +(1,506:19606901,20773487:0,0,0 +g1,506:19606901,20773487 +g1,506:19606901,20773487 +g1,506:19606901,20773487 +g1,506:19606901,20773487 +g1,506:19606901,20773487 +(1,506:19606901,20773487:0,0,0 +(1,506:19606901,20773487:1272717,373362,104590 +(1,506:19606901,20773487:1272717,373362,104590 +(1,506:19606901,20773487:0,373362,104590 +r1,589:20879618,20773487:1272717,477952,104590 +k1,506:19606901,20773487:-1272717 +) +(1,506:19606901,20773487:1272717,373362,104590 +k1,506:19606901,20773487:3277 +h1,506:20876341,20773487:0,370085,101313 +) +) +g1,506:20879618,20773487 +) +) +g1,506:19606901,20773487 +g1,506:19606901,20773487 +) +) +g1,506:19606901,20773487 +g1,507:19606901,20773487 +g1,507:19606901,20773487 +g1,507:19606901,20773487 +(1,507:19606901,20773487:0,0,0 +(1,507:19606901,20773487:0,0,0 +g1,507:19606901,20773487 +g1,507:19606901,20773487 +g1,507:19606901,20773487 +g1,507:19606901,20773487 +g1,507:19606901,20773487 +(1,507:19606901,20773487:0,0,0 +(1,507:19606901,20773487:1589257,373362,104590 +(1,507:19606901,20773487:1589257,373362,104590 +(1,507:19606901,20773487:0,373362,104590 +r1,589:21196158,20773487:1589257,477952,104590 +k1,507:19606901,20773487:-1589257 +) +(1,507:19606901,20773487:1589257,373362,104590 +k1,507:19606901,20773487:3277 +h1,507:21192881,20773487:0,370085,101313 +) +) +g1,507:21196158,20773487 +) +) +g1,507:19606901,20773487 +g1,507:19606901,20773487 +) +) +g1,507:19606901,20773487 +g1,508:19606901,20773487 +g1,508:19606901,20773487 +g1,508:19606901,20773487 +g1,508:19606901,20773487 +g1,508:19606901,20773487 +g1,509:19606901,20773487 +g1,509:19606901,20773487 +g1,509:19606901,20773487 +g1,509:19606901,20773487 +g1,509:19606901,20773487 +g1,510:19606901,20773487 +g1,510:19606901,20773487 +g1,510:19606901,20773487 +g1,510:19606901,20773487 +g1,510:19606901,20773487 +g1,510:19606901,20773487 +g1,511:19606901,20773487 +g1,511:19606901,20773487 +) +g1,511:19606901,20773487 +) +) +g1,513:31181015,31974668 +k1,513:32583029,31974668:1402014 +) +v1,516:6630773,33764253:0,393216,0 +(1,530:6630773,37508473:25952256,4137436,196608 +g1,530:6630773,37508473 +g1,530:6630773,37508473 +g1,530:6434165,37508473 +(1,530:6434165,37508473:0,4137436,196608 +r1,589:32779637,37508473:26345472,4334044,196608 +k1,530:6434165,37508473:-26345472 +) +(1,530:6434165,37508473:26345472,4137436,196608 +[1,530:6630773,37508473:25952256,3940828,0 +(1,518:6630773,33956142:25952256,388497,9436 +(1,517:6630773,33956142:0,0,0 +g1,517:6630773,33956142 +g1,517:6630773,33956142 +g1,517:6303093,33956142 +(1,517:6303093,33956142:0,0,0 +) +g1,517:6630773,33956142 +) +g1,518:7263065,33956142 +g1,518:8211503,33956142 +h1,518:9476086,33956142:0,0,0 +k1,518:32583030,33956142:23106944 +g1,518:32583030,33956142 +) +(1,519:6630773,34622320:25952256,410518,107478 +h1,519:6630773,34622320:0,0,0 +g1,519:7579210,34622320 +g1,519:8527647,34622320 +g1,519:9159939,34622320 +g1,519:10740668,34622320 +g1,519:14218272,34622320 +g1,519:15166709,34622320 +g1,519:18644312,34622320 +g1,519:20225041,34622320 +g1,519:23702645,34622320 +g1,519:24651082,34622320 +g1,519:25915665,34622320 +h1,519:29077122,34622320:0,0,0 +k1,519:32583029,34622320:3505907 +g1,519:32583029,34622320 +) +(1,523:6630773,35354034:25952256,404226,107478 +(1,521:6630773,35354034:0,0,0 +g1,521:6630773,35354034 +g1,521:6630773,35354034 +g1,521:6303093,35354034 +(1,521:6303093,35354034:0,0,0 +) +g1,521:6630773,35354034 +) +g1,523:7579210,35354034 +g1,523:8843793,35354034 +g1,523:10424523,35354034 +g1,523:11372960,35354034 +g1,523:12637543,35354034 +h1,523:15482854,35354034:0,0,0 +k1,523:32583030,35354034:17100176 +g1,523:32583030,35354034 +) +(1,525:6630773,36675572:25952256,404226,101187 +(1,524:6630773,36675572:0,0,0 +g1,524:6630773,36675572 +g1,524:6630773,36675572 +g1,524:6303093,36675572 +(1,524:6303093,36675572:0,0,0 +) +g1,524:6630773,36675572 +) +k1,525:6630773,36675572:0 +g1,525:10424521,36675572 +g1,525:11372958,36675572 +g1,525:13585978,36675572 +h1,525:16431289,36675572:0,0,0 +k1,525:32583029,36675572:16151740 +g1,525:32583029,36675572 +) +(1,529:6630773,37407286:25952256,404226,101187 +(1,527:6630773,37407286:0,0,0 +g1,527:6630773,37407286 +g1,527:6630773,37407286 +g1,527:6303093,37407286 +(1,527:6303093,37407286:0,0,0 +) +g1,527:6630773,37407286 +) +g1,529:7579210,37407286 +g1,529:8843793,37407286 +g1,529:10740667,37407286 +g1,529:11689104,37407286 +g1,529:13902124,37407286 +h1,529:16431289,37407286:0,0,0 +k1,529:32583029,37407286:16151740 +g1,529:32583029,37407286 +) +] +) +g1,530:32583029,37508473 +g1,530:6630773,37508473 +g1,530:6630773,37508473 +g1,530:32583029,37508473 +g1,530:32583029,37508473 +) +h1,530:6630773,37705081:0,0,0 +(1,534:6630773,39045860:25952256,513147,134348 +h1,533:6630773,39045860:983040,0,0 +k1,533:8696066,39045860:264364 +k1,533:10064713,39045860:264365 +k1,533:11076843,39045860:264364 +k1,533:12781034,39045860:264365 +k1,533:15074393,39045860:264364 +k1,533:16357843,39045860:264365 +k1,533:19808567,39045860:264364 +k1,533:24009679,39045860:264364 +k1,533:27249379,39045860:264365 +(1,533:27249379,39045860:0,459977,115847 +r1,589:27959357,39045860:709978,575824,115847 +k1,533:27249379,39045860:-709978 +) +(1,533:27249379,39045860:709978,459977,115847 +k1,533:27249379,39045860:3277 +h1,533:27956080,39045860:0,411205,112570 +) +k1,533:28223721,39045860:264364 +k1,533:29019583,39045860:264365 +k1,533:32117068,39045860:264364 +k1,533:32583029,39045860:0 +) +(1,534:6630773,39887348:25952256,513147,134348 +k1,533:7933172,39887348:283314 +k1,533:11248838,39887348:283315 +k1,533:13873098,39887348:283314 +(1,533:13873098,39887348:0,414482,115847 +r1,589:15286499,39887348:1413401,530329,115847 +k1,533:13873098,39887348:-1413401 +) +(1,533:13873098,39887348:1413401,414482,115847 +k1,533:13873098,39887348:3277 +h1,533:15283222,39887348:0,411205,112570 +) +k1,533:15569813,39887348:283314 +k1,533:17044572,39887348:283314 +k1,533:18612393,39887348:283315 +k1,533:21871042,39887348:283314 +(1,533:21871042,39887348:0,452978,115847 +r1,589:23284443,39887348:1413401,568825,115847 +k1,533:21871042,39887348:-1413401 +) +(1,533:21871042,39887348:1413401,452978,115847 +k1,533:21871042,39887348:3277 +h1,533:23281166,39887348:0,411205,112570 +) +k1,533:23567757,39887348:283314 +k1,533:24382568,39887348:283314 +k1,533:27499004,39887348:283315 +k1,533:28248279,39887348:283314 +k1,533:29550678,39887348:283314 +k1,533:32583029,39887348:0 +) +(1,534:6630773,40728836:25952256,513147,126483 +k1,533:9149166,40728836:177447 +(1,533:9149166,40728836:0,414482,115847 +r1,589:10914279,40728836:1765113,530329,115847 +k1,533:9149166,40728836:-1765113 +) +(1,533:9149166,40728836:1765113,414482,115847 +k1,533:9149166,40728836:3277 +h1,533:10911002,40728836:0,411205,112570 +) +k1,533:11265397,40728836:177448 +k1,533:14984410,40728836:177447 +k1,533:16675083,40728836:177447 +k1,533:17871615,40728836:177447 +k1,533:22208633,40728836:177448 +k1,533:25219201,40728836:177447 +(1,533:25219201,40728836:0,459977,115847 +r1,589:25929179,40728836:709978,575824,115847 +k1,533:25219201,40728836:-709978 +) +(1,533:25219201,40728836:709978,459977,115847 +k1,533:25219201,40728836:3277 +h1,533:25925902,40728836:0,411205,112570 +) +k1,533:26106626,40728836:177447 +k1,533:27475519,40728836:177448 +(1,533:27475519,40728836:0,452978,115847 +r1,589:28888920,40728836:1413401,568825,115847 +k1,533:27475519,40728836:-1413401 +) +(1,533:27475519,40728836:1413401,452978,115847 +k1,533:27475519,40728836:3277 +h1,533:28885643,40728836:0,411205,112570 +) +k1,533:29066367,40728836:177447 +k1,533:32583029,40728836:0 +) +(1,534:6630773,41570324:25952256,513147,126483 +g1,533:7821562,41570324 +g1,533:10150056,41570324 +g1,533:13356077,41570324 +g1,533:18128408,41570324 +g1,533:18986929,41570324 +g1,533:20205243,41570324 +g1,533:22084815,41570324 +g1,533:25062771,41570324 +g1,533:26023528,41570324 +g1,533:27241842,41570324 +k1,534:32583029,41570324:2135166 +g1,534:32583029,41570324 +) +v1,536:6630773,42911104:0,393216,0 +(1,537:6630773,44759205:25952256,2241317,0 +g1,537:6630773,44759205 +g1,537:6303093,44759205 +r1,589:6401397,44759205:98304,2241317,0 +g1,537:6600626,44759205 +g1,537:6797234,44759205 +[1,537:6797234,44759205:25785795,2241317,0 +(1,537:6797234,43801870:25785795,1283982,196608 +(1,536:6797234,43801870:0,1283982,196608 +r1,589:8400153,43801870:1602919,1480590,196608 +k1,536:6797234,43801870:-1602919 +) +(1,536:6797234,43801870:1602919,1283982,196608 +) +k1,536:8559060,43801870:158907 +k1,536:10015579,43801870:158906 +k1,536:11568437,43801870:158907 +k1,536:12746428,43801870:158906 +k1,536:14401522,43801870:158907 +k1,536:15176467,43801870:158907 +k1,536:16354458,43801870:158906 +k1,536:18484033,43801870:158907 +k1,536:20498264,43801870:158907 +k1,536:21418698,43801870:158906 +k1,536:24574566,43801870:158907 +k1,536:27495815,43801870:158906 +k1,536:30274851,43801870:158907 +k1,536:32583029,43801870:0 +) +(1,537:6797234,44643358:25785795,426639,115847 +g1,536:7647891,44643358 +(1,536:7647891,44643358:0,414482,115847 +r1,589:8006157,44643358:358266,530329,115847 +k1,536:7647891,44643358:-358266 +) +(1,536:7647891,44643358:358266,414482,115847 +k1,536:7647891,44643358:3277 +h1,536:8002880,44643358:0,411205,112570 +) +k1,537:32583029,44643358:24403202 +g1,537:32583029,44643358 +) +] +g1,537:32583029,44759205 +) +h1,537:6630773,44759205:0,0,0 +v1,542:6630773,46099985:0,393216,0 +] +(1,589:32583029,45706769:0,0,0 +g1,589:32583029,45706769 +) +) +] +(1,589:6630773,47279633:25952256,0,0 +h1,589:6630773,47279633:25952256,0,0 +) +] +(1,589:4262630,4025873:0,0,0 +[1,589:-473656,4025873:0,0,0 +(1,589:-473656,-710413:0,0,0 +(1,589:-473656,-710413:0,0,0 +g1,589:-473656,-710413 +) +g1,589:-473656,-710413 +) +] ) +] +!24315 +}16 +Input:253:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:254:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:255:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:256:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:257:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:258:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:259:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!648 +{17 +[1,624:4262630,47279633:28320399,43253760,0 +(1,624:4262630,4025873:0,0,0 +[1,624:-473656,4025873:0,0,0 +(1,624:-473656,-710413:0,0,0 +(1,624:-473656,-644877:0,0,0 +k1,624:-473656,-644877:-65536 ) -(183,38:21672113,45207617:501378,78643,0 -(183,38:21835967,45207617:173670,78643,0 +(1,624:-473656,4736287:0,0,0 +k1,624:-473656,4736287:5209943 ) +g1,624:-473656,-710413 ) -(183,38:22173491,45207617:501378,78643,0 -(183,38:22337345,45207617:173670,78643,0 +] ) +[1,624:6630773,47279633:25952256,43253760,0 +[1,624:6630773,4812305:25952256,786432,0 +(1,624:6630773,4812305:25952256,505283,134348 +(1,624:6630773,4812305:25952256,505283,134348 +g1,624:3078558,4812305 +[1,624:3078558,4812305:0,0,0 +(1,624:3078558,2439708:0,1703936,0 +k1,624:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,624:2537886,2439708:1179648,16384,0 ) -(183,38:22674869,45207617:501378,78643,0 -(183,38:22838723,45207617:173670,78643,0 +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,624:3078558,1915420:16384,1179648,0 ) +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) -(183,38:23176247,45207617:501378,78643,0 -(183,38:23340101,45207617:173670,78643,0 +] ) ) -(183,38:23677625,45207617:501378,78643,0 -(183,38:23841479,45207617:173670,78643,0 ) +] +[1,624:3078558,4812305:0,0,0 +(1,624:3078558,2439708:0,1703936,0 +g1,624:29030814,2439708 +g1,624:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,624:36151628,1915420:16384,1179648,0 ) -(183,38:24179003,45207617:501378,78643,0 -(183,38:24342857,45207617:173670,78643,0 +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) +] ) -(183,38:24680381,45207617:501378,78643,0 -(183,38:24844235,45207617:173670,78643,0 +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,624:37855564,2439708:1179648,16384,0 ) ) -(183,38:25181759,45207617:501378,78643,0 -(183,38:25345613,45207617:173670,78643,0 +k1,624:3078556,2439708:-34777008 ) +] +[1,624:3078558,4812305:0,0,0 +(1,624:3078558,49800853:0,16384,2228224 +k1,624:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,624:2537886,49800853:1179648,16384,0 ) -(183,38:25683137,45207617:501378,78643,0 -(183,38:25846991,45207617:173670,78643,0 +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,624:3078558,51504789:16384,1179648,0 ) +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) -(183,38:26184515,45207617:501378,78643,0 -(183,38:26348369,45207617:173670,78643,0 +] ) ) -(183,38:26685893,45207617:501378,78643,0 -(183,38:26849747,45207617:173670,78643,0 ) +] +[1,624:3078558,4812305:0,0,0 +(1,624:3078558,49800853:0,16384,2228224 +g1,624:29030814,49800853 +g1,624:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,624:36151628,51504789:16384,1179648,0 ) -(183,38:27187271,45207617:501378,78643,0 -(183,38:27351125,45207617:173670,78643,0 +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 +) +] +) +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,624:37855564,49800853:1179648,16384,0 ) ) -(183,38:27688649,45207617:501378,78643,0 -(183,38:27852503,45207617:173670,78643,0 +k1,624:3078556,49800853:-34777008 +) +] +g1,624:6630773,4812305 +k1,624:18771974,4812305:11344283 +g1,624:20158715,4812305 +g1,624:20807521,4812305 +g1,624:24121676,4812305 +g1,624:28605649,4812305 +g1,624:30015328,4812305 +) +) +] +[1,624:6630773,45706769:25952256,40108032,0 +(1,624:6630773,45706769:25952256,40108032,0 +(1,624:6630773,45706769:0,0,0 +g1,624:6630773,45706769 +) +[1,624:6630773,45706769:25952256,40108032,0 +v1,589:6630773,6254097:0,393216,0 +(1,589:6630773,27812789:25952256,21951908,0 +g1,589:6630773,27812789 +g1,589:6303093,27812789 +r1,624:6401397,27812789:98304,21951908,0 +g1,589:6600626,27812789 +g1,589:6797234,27812789 +[1,589:6797234,27812789:25785795,21951908,0 +(1,543:6797234,7022766:25785795,1161885,196608 +(1,542:6797234,7022766:0,1161885,196608 +r1,624:8344870,7022766:1547636,1358493,196608 +k1,542:6797234,7022766:-1547636 +) +(1,542:6797234,7022766:1547636,1161885,196608 +) +g1,542:8544099,7022766 +g1,542:9641171,7022766 +g1,542:11010873,7022766 +g1,542:12408756,7022766 +g1,542:15867090,7022766 +g1,542:17085404,7022766 +g1,542:18870604,7022766 +g1,542:20892389,7022766 +g1,542:25145675,7022766 +k1,543:32583029,7022766:5611521 +g1,543:32583029,7022766 +) +v1,545:6797234,8213232:0,393216,0 +(1,554:6797234,10576669:25785795,2756653,196608 +g1,554:6797234,10576669 +g1,554:6797234,10576669 +g1,554:6600626,10576669 +(1,554:6600626,10576669:0,2756653,196608 +r1,624:32779637,10576669:26179011,2953261,196608 +k1,554:6600625,10576669:-26179012 +) +(1,554:6600626,10576669:26179011,2756653,196608 +[1,554:6797234,10576669:25785795,2560045,0 +(1,547:6797234,8405121:25785795,388497,0 +(1,546:6797234,8405121:0,0,0 +g1,546:6797234,8405121 +g1,546:6797234,8405121 +g1,546:6469554,8405121 +(1,546:6469554,8405121:0,0,0 +) +g1,546:6797234,8405121 +) +g1,547:7429526,8405121 +k1,547:7429526,8405121:0 +h1,547:7745672,8405121:0,0,0 +k1,547:32583028,8405121:24837356 +g1,547:32583028,8405121 +) +(1,548:6797234,9071299:25785795,388497,4718 +h1,548:6797234,9071299:0,0,0 +g1,548:7429526,9071299 +g1,548:8377964,9071299 +h1,548:8694110,9071299:0,0,0 +k1,548:32583030,9071299:23888920 +g1,548:32583030,9071299 +) +(1,549:6797234,9737477:25785795,410518,107478 +h1,549:6797234,9737477:0,0,0 +g1,549:7745671,9737477 +g1,549:8694108,9737477 +g1,549:9326400,9737477 +g1,549:10907129,9737477 +g1,549:14384733,9737477 +g1,549:15333170,9737477 +g1,549:18810773,9737477 +g1,549:20391502,9737477 +g1,549:23869106,9737477 +g1,549:24817543,9737477 +g1,549:26082126,9737477 +h1,549:29243583,9737477:0,0,0 +k1,549:32583029,9737477:3339446 +g1,549:32583029,9737477 +) +(1,553:6797234,10469191:25785795,404226,107478 +(1,551:6797234,10469191:0,0,0 +g1,551:6797234,10469191 +g1,551:6797234,10469191 +g1,551:6469554,10469191 +(1,551:6469554,10469191:0,0,0 +) +g1,551:6797234,10469191 +) +g1,553:7745671,10469191 +g1,553:9010254,10469191 +g1,553:10590984,10469191 +g1,553:11539421,10469191 +g1,553:12804004,10469191 +h1,553:15649315,10469191:0,0,0 +k1,553:32583029,10469191:16933714 +g1,553:32583029,10469191 +) +] +) +g1,554:32583029,10576669 +g1,554:6797234,10576669 +g1,554:6797234,10576669 +g1,554:32583029,10576669 +g1,554:32583029,10576669 +) +h1,554:6797234,10773277:0,0,0 +(1,558:6797234,12139053:25785795,505283,134348 +h1,557:6797234,12139053:983040,0,0 +k1,557:9387217,12139053:224789 +k1,557:11104915,12139053:224788 +k1,557:12348789,12139053:224789 +k1,557:15759937,12139053:224788 +k1,557:17853157,12139053:224789 +k1,557:19351310,12139053:224788 +k1,557:22637286,12139053:224789 +k1,557:24467051,12139053:224788 +k1,557:26822415,12139053:224789 +k1,557:27817906,12139053:224788 +k1,557:29649638,12139053:224789 +k1,557:31563944,12139053:224788 +k1,557:32583029,12139053:0 +) +(1,558:6797234,12980541:25785795,505283,7863 +g1,557:8153173,12980541 +g1,557:10207726,12980541 +g1,557:11899865,12980541 +k1,558:32583028,12980541:19289868 +g1,558:32583028,12980541 +) +v1,560:6797234,14171007:0,393216,0 +(1,566:6797234,15818459:25785795,2040668,196608 +g1,566:6797234,15818459 +g1,566:6797234,15818459 +g1,566:6600626,15818459 +(1,566:6600626,15818459:0,2040668,196608 +r1,624:32779637,15818459:26179011,2237276,196608 +k1,566:6600625,15818459:-26179012 +) +(1,566:6600626,15818459:26179011,2040668,196608 +[1,566:6797234,15818459:25785795,1844060,0 +(1,562:6797234,14378625:25785795,404226,76021 +(1,561:6797234,14378625:0,0,0 +g1,561:6797234,14378625 +g1,561:6797234,14378625 +g1,561:6469554,14378625 +(1,561:6469554,14378625:0,0,0 +) +g1,561:6797234,14378625 +) +g1,562:7429526,14378625 +g1,562:8061818,14378625 +g1,562:9642547,14378625 +g1,562:12804004,14378625 +k1,562:12804004,14378625:0 +h1,562:14384732,14378625:0,0,0 +k1,562:32583028,14378625:18198296 +g1,562:32583028,14378625 +) +(1,563:6797234,15044803:25785795,410518,107478 +h1,563:6797234,15044803:0,0,0 +g1,563:7745671,15044803 +g1,563:8694108,15044803 +g1,563:9326400,15044803 +g1,563:10907129,15044803 +g1,563:14384733,15044803 +g1,563:15333170,15044803 +h1,563:18494627,15044803:0,0,0 +k1,563:32583029,15044803:14088402 +g1,563:32583029,15044803 +) +(1,564:6797234,15710981:25785795,404226,107478 +h1,564:6797234,15710981:0,0,0 +g1,564:8377963,15710981 +g1,564:11855567,15710981 +g1,564:12804004,15710981 +g1,564:14068587,15710981 +h1,564:17230044,15710981:0,0,0 +k1,564:32583029,15710981:15352985 +g1,564:32583029,15710981 +) +] +) +g1,566:32583029,15818459 +g1,566:6797234,15818459 +g1,566:6797234,15818459 +g1,566:32583029,15818459 +g1,566:32583029,15818459 +) +h1,566:6797234,16015067:0,0,0 +(1,570:6797234,17380843:25785795,505283,126483 +h1,569:6797234,17380843:983040,0,0 +k1,569:9415801,17380843:214706 +k1,569:10445775,17380843:214706 +k1,569:11679566,17380843:214706 +k1,569:15948329,17380843:214706 +k1,569:17331542,17380843:214706 +k1,569:19132219,17380843:214706 +k1,569:21110498,17380843:214705 +k1,569:23023242,17380843:214706 +k1,569:24106300,17380843:214706 +k1,569:25518349,17380843:214706 +k1,569:27336066,17380843:214706 +k1,569:29606636,17380843:214706 +k1,569:30507504,17380843:214706 +k1,569:32583029,17380843:0 +) +(1,570:6797234,18222331:25785795,505283,7863 +k1,570:32583028,18222331:23743692 +g1,570:32583028,18222331 +) +v1,572:6797234,19412797:0,393216,0 +(1,585:6797234,24440946:25785795,5421365,196608 +g1,585:6797234,24440946 +g1,585:6797234,24440946 +g1,585:6600626,24440946 +(1,585:6600626,24440946:0,5421365,196608 +r1,624:32779637,24440946:26179011,5617973,196608 +k1,585:6600625,24440946:-26179012 +) +(1,585:6600626,24440946:26179011,5421365,196608 +[1,585:6797234,24440946:25785795,5224757,0 +(1,574:6797234,19604686:25785795,388497,0 +(1,573:6797234,19604686:0,0,0 +g1,573:6797234,19604686 +g1,573:6797234,19604686 +g1,573:6469554,19604686 +(1,573:6469554,19604686:0,0,0 +) +g1,573:6797234,19604686 +) +g1,574:7429526,19604686 +k1,574:7429526,19604686:0 +h1,574:7745672,19604686:0,0,0 +k1,574:32583028,19604686:24837356 +g1,574:32583028,19604686 +) +(1,575:6797234,20270864:25785795,388497,4718 +h1,575:6797234,20270864:0,0,0 +g1,575:7429526,20270864 +g1,575:8377964,20270864 +h1,575:8694110,20270864:0,0,0 +k1,575:32583030,20270864:23888920 +g1,575:32583030,20270864 +) +(1,576:6797234,20937042:25785795,410518,76021 +h1,576:6797234,20937042:0,0,0 +g1,576:7745671,20937042 +g1,576:8694108,20937042 +g1,576:9326400,20937042 +g1,576:10907129,20937042 +h1,576:11223275,20937042:0,0,0 +k1,576:32583029,20937042:21359754 +g1,576:32583029,20937042 +) +(1,577:6797234,21603220:25785795,404226,107478 +h1,577:6797234,21603220:0,0,0 +g1,577:7113380,21603220 +g1,577:7429526,21603220 +g1,577:7745672,21603220 +g1,577:8061818,21603220 +g1,577:11539422,21603220 +g1,577:12487859,21603220 +h1,577:15649316,21603220:0,0,0 +k1,577:32583028,21603220:16933712 +g1,577:32583028,21603220 +) +(1,578:6797234,22269398:25785795,404226,76021 +h1,578:6797234,22269398:0,0,0 +g1,578:7113380,22269398 +g1,578:7429526,22269398 +g1,578:8061818,22269398 +g1,578:9642547,22269398 +h1,578:9958693,22269398:0,0,0 +k1,578:32583029,22269398:22624336 +g1,578:32583029,22269398 +) +(1,579:6797234,22935576:25785795,404226,107478 +h1,579:6797234,22935576:0,0,0 +g1,579:7113380,22935576 +g1,579:7429526,22935576 +g1,579:7745672,22935576 +g1,579:8061818,22935576 +g1,579:11539422,22935576 +g1,579:12487859,22935576 +g1,579:13752442,22935576 +h1,579:16913899,22935576:0,0,0 +k1,579:32583029,22935576:15669130 +g1,579:32583029,22935576 +) +(1,580:6797234,23601754:25785795,404226,76021 +h1,580:6797234,23601754:0,0,0 +g1,580:7113380,23601754 +g1,580:7429526,23601754 +h1,580:7745672,23601754:0,0,0 +k1,580:32583028,23601754:24837356 +g1,580:32583028,23601754 +) +(1,584:6797234,24333468:25785795,404226,107478 +(1,582:6797234,24333468:0,0,0 +g1,582:6797234,24333468 +g1,582:6797234,24333468 +g1,582:6469554,24333468 +(1,582:6469554,24333468:0,0,0 +) +g1,582:6797234,24333468 +) +g1,584:7745671,24333468 +g1,584:9010254,24333468 +g1,584:10590984,24333468 +g1,584:11539421,24333468 +g1,584:12804004,24333468 +h1,584:15649315,24333468:0,0,0 +k1,584:32583029,24333468:16933714 +g1,584:32583029,24333468 +) +] +) +g1,585:32583029,24440946 +g1,585:6797234,24440946 +g1,585:6797234,24440946 +g1,585:32583029,24440946 +g1,585:32583029,24440946 +) +h1,585:6797234,24637554:0,0,0 +(1,589:6797234,26003330:25785795,513147,134348 +h1,588:6797234,26003330:983040,0,0 +k1,588:8689422,26003330:281313 +k1,588:9989821,26003330:281314 +k1,588:12932551,26003330:281313 +k1,588:15242859,26003330:281313 +k1,588:16392524,26003330:281313 +k1,588:19467638,26003330:281314 +k1,588:20104811,26003330:281313 +k1,588:22259143,26003330:281313 +k1,588:25726816,26003330:281313 +k1,588:28643333,26003330:281314 +k1,588:30376268,26003330:281313 +k1,588:31923737,26003330:281313 +k1,588:32583029,26003330:0 +) +(1,589:6797234,26844818:25785795,505283,126483 +k1,588:8697975,26844818:297730 +k1,588:11225240,26844818:297730 +k1,588:12595139,26844818:297730 +k1,588:13579031,26844818:297730 +k1,588:15573489,26844818:297731 +k1,588:17927083,26844818:297730 +k1,588:20154193,26844818:297730 +k1,588:23865693,26844818:297730 +k1,588:27853755,26844818:297730 +k1,588:30822732,26844818:297730 +k1,589:32583029,26844818:0 +) +(1,589:6797234,27686306:25785795,505283,126483 +g1,588:8965820,27686306 +g1,588:10933866,27686306 +g1,588:12608310,27686306 +g1,588:14317489,27686306 +g1,588:17310518,27686306 +g1,588:20144950,27686306 +g1,588:21795801,27686306 +k1,589:32583029,27686306:9347402 +g1,589:32583029,27686306 +) +] +g1,589:32583029,27812789 +) +h1,589:6630773,27812789:0,0,0 +v1,592:6630773,29169394:0,393216,0 +(1,593:6630773,31869619:25952256,3093441,0 +g1,593:6630773,31869619 +g1,593:6303093,31869619 +r1,624:6401397,31869619:98304,3093441,0 +g1,593:6600626,31869619 +g1,593:6797234,31869619 +[1,593:6797234,31869619:25785795,3093441,0 +(1,593:6797234,30060160:25785795,1283982,196608 +(1,592:6797234,30060160:0,1283982,196608 +r1,624:8400153,30060160:1602919,1480590,196608 +k1,592:6797234,30060160:-1602919 +) +(1,592:6797234,30060160:1602919,1283982,196608 +) +k1,592:8590761,30060160:190608 +k1,592:10078982,30060160:190608 +k1,592:11663541,30060160:190608 +k1,592:12873234,30060160:190608 +k1,592:14156327,30060160:190608 +k1,592:15006227,30060160:190608 +k1,592:18790175,30060160:190609 +k1,592:22230058,30060160:190608 +k1,592:23814617,30060160:190608 +k1,592:25471921,30060160:190608 +k1,592:27787206,30060160:190608 +k1,592:29169259,30060160:190608 +k1,592:32583029,30060160:0 +) +(1,593:6797234,30901648:25785795,505283,134348 +k1,592:10645085,30901648:157519 +k1,592:11994050,30901648:157520 +k1,592:13437385,30901648:157519 +k1,592:15275248,30901648:157520 +k1,592:16763148,30901648:157519 +k1,592:17572096,30901648:157520 +k1,592:20441495,30901648:157519 +(1,592:20441495,30901648:0,459977,115847 +r1,624:21151473,30901648:709978,575824,115847 +k1,592:20441495,30901648:-709978 +) +(1,592:20441495,30901648:709978,459977,115847 +k1,592:20441495,30901648:3277 +h1,592:21148196,30901648:0,411205,112570 +) +k1,592:21308993,30901648:157520 +k1,592:22657957,30901648:157519 +(1,592:22657957,30901648:0,452978,115847 +r1,624:24071358,30901648:1413401,568825,115847 +k1,592:22657957,30901648:-1413401 +) +(1,592:22657957,30901648:1413401,452978,115847 +k1,592:22657957,30901648:3277 +h1,592:24068081,30901648:0,411205,112570 +) +k1,592:24228878,30901648:157520 +k1,592:25037825,30901648:157519 +k1,592:27015935,30901648:157520 +k1,592:29332865,30901648:157519 +k1,592:31140582,30901648:157520 +k1,592:32583029,30901648:0 +) +(1,593:6797234,31743136:25785795,473825,126483 +g1,592:8168902,31743136 +k1,593:32583028,31743136:21827420 +g1,593:32583028,31743136 +) +] +g1,593:32583029,31869619 +) +h1,593:6630773,31869619:0,0,0 +(1,596:6630773,33226224:25952256,505283,126483 +h1,595:6630773,33226224:983040,0,0 +k1,595:8473192,33226224:231544 +k1,595:9293248,33226224:231543 +k1,595:10543877,33226224:231544 +k1,595:12455764,33226224:231544 +k1,595:15466034,33226224:231543 +k1,595:16459106,33226224:231544 +k1,595:17822457,33226224:231544 +k1,595:21467771,33226224:231544 +k1,595:24885674,33226224:231543 +k1,595:25648715,33226224:231544 +k1,595:26899344,33226224:231544 +k1,595:28811230,33226224:231543 +k1,595:31821501,33226224:231544 +k1,595:32583029,33226224:0 +) +(1,596:6630773,34067712:25952256,505283,126483 +k1,595:7838656,34067712:188798 +k1,595:9175645,34067712:188798 +k1,595:11489121,34067712:188799 +k1,595:14864279,34067712:188798 +k1,595:17886198,34067712:188798 +k1,595:20084986,34067712:188799 +k1,595:21292869,34067712:188798 +k1,595:24895437,34067712:188798 +k1,595:26414616,34067712:188798 +k1,595:27984259,34067712:188799 +k1,595:30241373,34067712:188798 +k1,595:31714677,34067712:188798 +k1,595:32583029,34067712:0 +) +(1,596:6630773,34909200:25952256,505283,134348 +k1,595:7918773,34909200:183718 +k1,595:10109204,34909200:183719 +k1,595:11312007,34909200:183718 +k1,595:13176069,34909200:183719 +k1,595:16138514,34909200:183718 +k1,595:17083760,34909200:183718 +k1,595:18038182,34909200:183719 +(1,595:18038182,34909200:0,459977,115847 +r1,624:18748160,34909200:709978,575824,115847 +k1,595:18038182,34909200:-709978 +) +(1,595:18038182,34909200:709978,459977,115847 +k1,595:18038182,34909200:3277 +h1,595:18744883,34909200:0,411205,112570 +) +k1,595:18931878,34909200:183718 +k1,595:20307042,34909200:183719 +(1,595:20307042,34909200:0,452978,115847 +r1,624:21720443,34909200:1413401,568825,115847 +k1,595:20307042,34909200:-1413401 +) +(1,595:20307042,34909200:1413401,452978,115847 +k1,595:20307042,34909200:3277 +h1,595:21717166,34909200:0,411205,112570 +) +k1,595:21904161,34909200:183718 +k1,595:25274239,34909200:183718 +k1,595:26109386,34909200:183719 +k1,595:26648964,34909200:183718 +k1,595:29517693,34909200:183719 +k1,595:31082255,34909200:183718 +k1,595:32583029,34909200:0 +) +(1,596:6630773,35750688:25952256,513147,126483 +k1,595:7336989,35750688:174719 +k1,595:8724779,35750688:174719 +k1,595:12204478,35750688:174718 +k1,595:14066094,35750688:174719 +k1,595:15312982,35750688:174719 +k1,595:19373331,35750688:174719 +k1,595:20652332,35750688:174719 +k1,595:22669922,35750688:174718 +k1,595:23460679,35750688:174719 +k1,595:30247981,35750688:174719 +k1,596:32583029,35750688:0 +k1,596:32583029,35750688:0 +) +v1,598:6630773,36931982:0,393216,0 +(1,608:6630773,39961597:25952256,3422831,196608 +g1,608:6630773,39961597 +g1,608:6630773,39961597 +g1,608:6434165,39961597 +(1,608:6434165,39961597:0,3422831,196608 +r1,624:32779637,39961597:26345472,3619439,196608 +k1,608:6434165,39961597:-26345472 +) +(1,608:6434165,39961597:26345472,3422831,196608 +[1,608:6630773,39961597:25952256,3226223,0 +(1,600:6630773,37123871:25952256,388497,4718 +(1,599:6630773,37123871:0,0,0 +g1,599:6630773,37123871 +g1,599:6630773,37123871 +g1,599:6303093,37123871 +(1,599:6303093,37123871:0,0,0 +) +g1,599:6630773,37123871 +) +g1,600:7263065,37123871 +g1,600:8211503,37123871 +h1,600:8527649,37123871:0,0,0 +k1,600:32583029,37123871:24055380 +g1,600:32583029,37123871 +) +(1,601:6630773,37790049:25952256,293601,107478 +h1,601:6630773,37790049:0,0,0 +g1,601:10108376,37790049 +k1,601:10108376,37790049:0 +h1,601:10740668,37790049:0,0,0 +k1,601:32583028,37790049:21842360 +g1,601:32583028,37790049 +) +(1,602:6630773,38456227:25952256,410518,107478 +h1,602:6630773,38456227:0,0,0 +g1,602:6946919,38456227 +g1,602:7263065,38456227 +g1,602:8211502,38456227 +g1,602:9159939,38456227 +g1,602:9792231,38456227 +g1,602:11372960,38456227 +g1,602:12953690,38456227 +g1,602:13902127,38456227 +g1,602:17063584,38456227 +g1,602:18644313,38456227 +g1,602:20225043,38456227 +g1,602:21173480,38456227 +g1,602:22438063,38456227 +h1,602:25283374,38456227:0,0,0 +k1,602:32583029,38456227:7299655 +g1,602:32583029,38456227 +) +(1,603:6630773,39122405:25952256,404226,107478 +h1,603:6630773,39122405:0,0,0 +k1,603:6630773,39122405:0 +h1,603:12005249,39122405:0,0,0 +k1,603:32583029,39122405:20577780 +g1,603:32583029,39122405 +) +(1,607:6630773,39854119:25952256,404226,107478 +(1,605:6630773,39854119:0,0,0 +g1,605:6630773,39854119 +g1,605:6630773,39854119 +g1,605:6303093,39854119 +(1,605:6303093,39854119:0,0,0 +) +g1,605:6630773,39854119 +) +g1,607:7579210,39854119 +g1,607:8843793,39854119 +g1,607:10424523,39854119 +g1,607:11372960,39854119 +g1,607:12637543,39854119 +h1,607:15482854,39854119:0,0,0 +k1,607:32583030,39854119:17100176 +g1,607:32583030,39854119 +) +] +) +g1,608:32583029,39961597 +g1,608:6630773,39961597 +g1,608:6630773,39961597 +g1,608:32583029,39961597 +g1,608:32583029,39961597 +) +h1,608:6630773,40158205:0,0,0 +v1,612:6630773,42029927:0,393216,0 +(1,624:6630773,45706769:25952256,4070058,0 +g1,624:6630773,45706769 +g1,624:6303093,45706769 +r1,624:6401397,45706769:98304,4070058,0 +g1,624:6600626,45706769 +g1,624:6797234,45706769 +[1,624:6797234,45706769:25785795,4070058,0 +(1,614:6797234,42798596:25785795,1161885,196608 +(1,612:6797234,42798596:0,1161885,196608 +r1,624:8344870,42798596:1547636,1358493,196608 +k1,612:6797234,42798596:-1547636 +) +(1,612:6797234,42798596:1547636,1161885,196608 +) +k1,612:8494287,42798596:149417 +k1,612:9121461,42798596:149417 +k1,612:10289963,42798596:149417 +k1,612:13471731,42798596:149417 +k1,612:16807508,42798596:149417 +k1,612:19297872,42798596:149418 +k1,612:19803149,42798596:149417 +k1,612:21632909,42798596:149417 +k1,612:22441618,42798596:149417 +k1,612:22946895,42798596:149417 +k1,612:24651481,42798596:149417 +k1,612:26502868,42798596:149417 +k1,612:28094732,42798596:149417 +(1,612:28094732,42798596:0,452978,122846 +r1,624:30563269,42798596:2468537,575824,122846 +k1,612:28094732,42798596:-2468537 +) +(1,612:28094732,42798596:2468537,452978,122846 +k1,612:28094732,42798596:3277 +h1,612:30559992,42798596:0,411205,112570 +) +k1,612:30886356,42798596:149417 +k1,612:31450567,42798596:149368 +k1,612:32583029,42798596:0 +) +(1,614:6797234,43573887:25785795,513147,134348 +k1,612:9449897,43573887:138047 +k1,612:10239372,43573887:138047 +k1,612:12770138,43573887:138047 +k1,612:13366282,43573887:138047 +k1,612:14771795,43573887:138047 +k1,612:15265702,43573887:138047 +k1,612:17647046,43573887:138047 +k1,612:19165938,43573887:138048 +k1,612:19835482,43573887:138047 +k1,612:23421378,43573887:138047 +k1,612:25072651,43573887:138047 +k1,612:27537881,43573887:138047 +k1,612:28335220,43573887:138047 +k1,612:28829127,43573887:138047 +k1,612:32583029,43573887:0 +) +(1,614:6797234,44240065:25785795,513147,134348 +k1,612:7687446,44240065:238784 +k1,612:9520067,44240065:238785 +k1,612:10445013,44240065:238784 +k1,612:11702883,44240065:238785 +k1,612:15418352,44240065:238784 +k1,612:17224757,44240065:238784 +(1,612:17224757,44240065:0,452978,122846 +r1,624:19693294,44240065:2468537,575824,122846 +k1,612:17224757,44240065:-2468537 +) +(1,612:17224757,44240065:2468537,452978,122846 +k1,612:17224757,44240065:3277 +h1,612:19690017,44240065:0,411205,112570 +) +k1,612:19932079,44240065:238785 +k1,612:22036673,44240065:238784 +(1,612:22036673,44240065:0,414482,115847 +r1,624:23450074,44240065:1413401,530329,115847 +k1,612:22036673,44240065:-1413401 +) +(1,612:22036673,44240065:1413401,414482,115847 +k1,612:22036673,44240065:3277 +h1,612:23446797,44240065:0,411205,112570 +) +k1,612:23688858,44240065:238784 +k1,612:24875294,44240065:238785 +k1,612:25880194,44240065:238784 +k1,612:28679471,44240065:238785 +k1,612:30989193,44240065:238784 +k1,612:32583029,44240065:0 +) +(1,614:6797234,44906243:25785795,513147,134348 +k1,612:8198292,44906243:204371 +k1,612:9898851,44906243:204372 +k1,612:11971653,44906243:204371 +k1,612:15368284,44906243:204372 +k1,612:15928515,44906243:204371 +k1,612:18084549,44906243:204372 +k1,612:21593901,44906243:204371 +k1,612:23311499,44906243:204372 +k1,612:25353500,44906243:204371 +k1,612:26505523,44906243:204372 +k1,612:29522044,44906243:204371 +k1,612:30192377,44906243:204372 +k1,612:32051532,44906243:204371 +k1,612:32583029,44906243:0 +) +(1,614:6797234,45572421:25785795,505283,134348 +g1,612:10350596,45572421 +g1,612:13333794,45572421 +g1,612:14184451,45572421 +g1,612:16852421,45572421 +k1,614:32583029,45572421:15730608 +g1,614:32583029,45572421 +) +] +g1,624:32583029,45706769 +) +] +(1,624:32583029,45706769:0,0,0 +g1,624:32583029,45706769 +) +) +] +(1,624:6630773,47279633:25952256,0,0 +h1,624:6630773,47279633:25952256,0,0 +) +] +(1,624:4262630,4025873:0,0,0 +[1,624:-473656,4025873:0,0,0 +(1,624:-473656,-710413:0,0,0 +(1,624:-473656,-710413:0,0,0 +g1,624:-473656,-710413 +) +g1,624:-473656,-710413 +) +] +) +] +!23213 +}17 +Input:260:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:261:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:262:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:263:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:264:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:265:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:266:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:267:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:268:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:269:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:270:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:271:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:272:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:273:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:274:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:275:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:276:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:277:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:278:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:279:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:280:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:281:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:282:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:283:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2195 +{18 +[1,678:4262630,47279633:28320399,43253760,0 +(1,678:4262630,4025873:0,0,0 +[1,678:-473656,4025873:0,0,0 +(1,678:-473656,-710413:0,0,0 +(1,678:-473656,-644877:0,0,0 +k1,678:-473656,-644877:-65536 ) +(1,678:-473656,4736287:0,0,0 +k1,678:-473656,4736287:5209943 ) -(183,38:28190027,45207617:501378,78643,0 -(183,38:28353881,45207617:173670,78643,0 +g1,678:-473656,-710413 ) +] ) -(183,38:28691405,45207617:501378,78643,0 -(183,38:28855259,45207617:173670,78643,0 +[1,678:6630773,47279633:25952256,43253760,0 +[1,678:6630773,4812305:25952256,786432,0 +(1,678:6630773,4812305:25952256,513147,126483 +(1,678:6630773,4812305:25952256,513147,126483 +g1,678:3078558,4812305 +[1,678:3078558,4812305:0,0,0 +(1,678:3078558,2439708:0,1703936,0 +k1,678:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,678:2537886,2439708:1179648,16384,0 ) +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,678:3078558,1915420:16384,1179648,0 ) -(183,38:29192783,45207617:501378,78643,0 -(183,38:29356637,45207617:173670,78643,0 +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) +] ) -(183,38:29694161,45207617:501378,78643,0 -(183,38:29858015,45207617:173670,78643,0 ) ) -(183,38:30195539,45207617:501378,78643,0 -(183,38:30359393,45207617:173670,78643,0 +] +[1,678:3078558,4812305:0,0,0 +(1,678:3078558,2439708:0,1703936,0 +g1,678:29030814,2439708 +g1,678:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,678:36151628,1915420:16384,1179648,0 ) +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) -(183,38:30696917,45207617:501378,78643,0 -(183,38:30860771,45207617:173670,78643,0 +] ) +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,678:37855564,2439708:1179648,16384,0 ) -(183,38:31239539,45207617:1343490,485622,11795 -k183,38:31586882,45207617:347343 -g183,38:31786111,45207617 ) -g183,38:30911859,45207617 -g183,38:32583029,45207617 +k1,678:3078556,2439708:-34777008 ) ] -(183,40:32583029,45706769:0,0,0 -g183,40:32583029,45706769 +[1,678:3078558,4812305:0,0,0 +(1,678:3078558,49800853:0,16384,2228224 +k1,678:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,678:2537886,49800853:1179648,16384,0 +) +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,678:3078558,51504789:16384,1179648,0 ) +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) ] -(183,40:6630773,47279633:25952256,347341,3931 -(183,40:6630773,47279633:25952256,347341,3931 -(183,40:6630773,47279633:0,0,0 -v183,40:6630773,47279633:0,0,0 ) -g183,40:6830002,47279633 -k183,40:32225858,47279633:25395856 ) ) ] -(183,40:4262630,4025873:0,0,0 -[183,40:-473656,4025873:0,0,0 -(183,40:-473656,-710413:0,0,0 -(183,40:-473656,-710413:0,0,0 -g183,40:-473656,-710413 +[1,678:3078558,4812305:0,0,0 +(1,678:3078558,49800853:0,16384,2228224 +g1,678:29030814,49800853 +g1,678:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,678:36151628,51504789:16384,1179648,0 ) -g183,40:-473656,-710413 +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 ) ] ) -] -!100618 -}2 -!11 -{3 -[183,86:4262630,47279633:28320399,43253760,0 -(183,86:4262630,4025873:0,0,0 -[183,86:-473656,4025873:0,0,0 -(183,86:-473656,-710413:0,0,0 -(183,86:-473656,-644877:0,0,0 -k183,86:-473656,-644877:-65536 +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,678:37855564,49800853:1179648,16384,0 ) -(183,86:-473656,4736287:0,0,0 -k183,86:-473656,4736287:5209943 ) -g183,86:-473656,-710413 +k1,678:3078556,49800853:-34777008 ) ] +g1,678:6630773,4812305 +g1,678:6630773,4812305 +g1,678:9175536,4812305 +g1,678:9990803,4812305 +g1,678:13137841,4812305 +g1,678:14654344,4812305 +k1,678:31786112,4812305:17131768 ) -[183,86:6630773,47279633:25952256,43253760,0 -[183,86:6630773,4812305:25952256,786432,0 -(183,86:6630773,4812305:25952256,485622,11795 -(183,86:6630773,4812305:25952256,485622,11795 -g183,86:3078558,4812305 -[183,86:3078558,4812305:0,0,0 -(183,86:3078558,2439708:0,1703936,0 -k183,86:1358238,2439708:-1720320 -(1,122:1358238,2439708:1720320,1703936,0 -(1,122:1358238,2439708:1179648,16384,0 -r183,86:2537886,2439708:1179648,16384,0 -) -g1,122:3062174,2439708 -(1,122:3062174,2439708:16384,1703936,0 -[1,122:3062174,2439708:25952256,1703936,0 -(1,122:3062174,1915420:25952256,1179648,0 -(1,122:3062174,1915420:16384,1179648,0 -r183,86:3078558,1915420:16384,1179648,0 -) -k1,122:29014430,1915420:25935872 -g1,122:29014430,1915420 ) ] +[1,678:6630773,45706769:25952256,40108032,0 +(1,678:6630773,45706769:25952256,40108032,0 +(1,678:6630773,45706769:0,0,0 +g1,678:6630773,45706769 ) +[1,678:6630773,45706769:25952256,40108032,0 +v1,624:6630773,6254097:0,393216,0 +(1,624:6630773,8656524:25952256,2795643,0 +g1,624:6630773,8656524 +g1,624:6303093,8656524 +r1,678:6401397,8656524:98304,2795643,0 +g1,624:6600626,8656524 +g1,624:6797234,8656524 +[1,624:6797234,8656524:25785795,2795643,0 +v1,614:6797234,6254097:0,393216,0 +(1,622:6797234,7935628:25785795,2074747,196608 +g1,622:6797234,7935628 +g1,622:6797234,7935628 +g1,622:6600626,7935628 +(1,622:6600626,7935628:0,2074747,196608 +r1,678:32779637,7935628:26179011,2271355,196608 +k1,622:6600625,7935628:-26179012 +) +(1,622:6600626,7935628:26179011,2074747,196608 +[1,622:6797234,7935628:25785795,1878139,0 +(1,616:6797234,6461715:25785795,404226,107478 +(1,615:6797234,6461715:0,0,0 +g1,615:6797234,6461715 +g1,615:6797234,6461715 +g1,615:6469554,6461715 +(1,615:6469554,6461715:0,0,0 +) +g1,615:6797234,6461715 +) +g1,616:9326400,6461715 +g1,616:10274838,6461715 +h1,616:11855566,6461715:0,0,0 +k1,616:32583030,6461715:20727464 +g1,616:32583030,6461715 +) +(1,617:6797234,7127893:25785795,410518,107478 +h1,617:6797234,7127893:0,0,0 +g1,617:7745671,7127893 +g1,617:13436294,7127893 +k1,617:13436294,7127893:0 +h1,617:17862333,7127893:0,0,0 +k1,617:32583029,7127893:14720696 +g1,617:32583029,7127893 +) +(1,621:6797234,7859607:25785795,404226,76021 +(1,619:6797234,7859607:0,0,0 +g1,619:6797234,7859607 +g1,619:6797234,7859607 +g1,619:6469554,7859607 +(1,619:6469554,7859607:0,0,0 +) +g1,619:6797234,7859607 +) +g1,621:7745671,7859607 +g1,621:9010254,7859607 +h1,621:10590982,7859607:0,0,0 +k1,621:32583030,7859607:21992048 +g1,621:32583030,7859607 +) +] +) +g1,622:32583029,7935628 +g1,622:6797234,7935628 +g1,622:6797234,7935628 +g1,622:32583029,7935628 +g1,622:32583029,7935628 +) +h1,622:6797234,8132236:0,0,0 +] +g1,624:32583029,8656524 +) +h1,624:6630773,8656524:0,0,0 +v1,627:6630773,10022300:0,393216,0 +(1,649:6630773,24143093:25952256,14514009,0 +g1,649:6630773,24143093 +g1,649:6303093,24143093 +r1,678:6401397,24143093:98304,14514009,0 +g1,649:6600626,24143093 +g1,649:6797234,24143093 +[1,649:6797234,24143093:25785795,14514009,0 +(1,628:6797234,10913066:25785795,1283982,196608 +(1,627:6797234,10913066:0,1283982,196608 +r1,678:9362479,10913066:2565245,1480590,196608 +k1,627:6797234,10913066:-2565245 +) +(1,627:6797234,10913066:2565245,1283982,196608 +) +k1,627:9527235,10913066:164756 +k1,627:11500784,10913066:164755 +k1,627:12684625,10913066:164756 +k1,627:16326066,10913066:164756 +k1,627:18076792,10913066:164755 +k1,627:20876751,10913066:164756 +(1,627:20876751,10913066:0,452978,115847 +r1,678:23345288,10913066:2468537,568825,115847 +k1,627:20876751,10913066:-2468537 +) +(1,627:20876751,10913066:2468537,452978,115847 +k1,627:20876751,10913066:3277 +h1,627:23342011,10913066:0,411205,112570 +) +k1,627:23510043,10913066:164755 +k1,627:24866244,10913066:164756 +(1,627:24866244,10913066:0,452978,122846 +r1,678:27334781,10913066:2468537,575824,122846 +k1,627:24866244,10913066:-2468537 +) +(1,627:24866244,10913066:2468537,452978,122846 +k1,627:24866244,10913066:3277 +h1,627:27331504,10913066:0,411205,112570 +) +k1,627:27499537,10913066:164756 +k1,627:29848607,10913066:164755 +k1,627:31131407,10913066:164756 +k1,627:32583029,10913066:0 +) +(1,628:6797234,11754554:25785795,513147,126483 +k1,627:7680004,11754554:223478 +k1,627:8922566,11754554:223477 +k1,627:12662706,11754554:223478 +k1,627:14928286,11754554:223478 +k1,627:16343208,11754554:223477 +k1,627:18876830,11754554:223478 +k1,627:20119393,11754554:223478 +k1,627:22501626,11754554:223477 +k1,627:24579773,11754554:223478 +k1,627:25612621,11754554:223478 +k1,627:27166479,11754554:223477 +k1,627:28776043,11754554:223478 +k1,627:32583029,11754554:0 +) +(1,628:6797234,12596042:25785795,513147,134348 +k1,627:8068223,12596042:279429 +k1,627:12111385,12596042:279429 +k1,627:16640168,12596042:279429 +k1,627:17938682,12596042:279429 +k1,627:21404470,12596042:279428 +k1,627:24319102,12596042:279429 +k1,627:28822982,12596042:279429 +k1,627:31896867,12596042:279429 +k1,627:32583029,12596042:0 +) +(1,628:6797234,13437530:25785795,513147,126483 +g1,627:11197976,13437530 +g1,627:12013243,13437530 +g1,627:15619033,13437530 +g1,627:17009707,13437530 +g1,627:18444290,13437530 +g1,627:21437975,13437530 +$1,627:21645069,13437530 +$1,627:22157561,13437530 +g1,627:22563884,13437530 +g1,627:23449275,13437530 +g1,627:26030082,13437530 +g1,627:26845349,13437530 +k1,628:32583029,13437530:1471286 +g1,628:32583029,13437530 +) +v1,631:6797234,14627996:0,393216,0 +(1,645:6797234,21604873:25785795,7370093,196608 +g1,645:6797234,21604873 +g1,645:6797234,21604873 +g1,645:6600626,21604873 +(1,645:6600626,21604873:0,7370093,196608 +r1,678:32779637,21604873:26179011,7566701,196608 +k1,645:6600625,21604873:-26179012 +) +(1,645:6600626,21604873:26179011,7370093,196608 +[1,645:6797234,21604873:25785795,7173485,0 +(1,633:6797234,14841906:25785795,410518,101187 +(1,632:6797234,14841906:0,0,0 +g1,632:6797234,14841906 +g1,632:6797234,14841906 +g1,632:6469554,14841906 +(1,632:6469554,14841906:0,0,0 +) +g1,632:6797234,14841906 +) +k1,633:6797234,14841906:0 +g1,633:7745671,14841906 +g1,633:9010255,14841906 +k1,633:9010255,14841906:0 +h1,633:13436295,14841906:0,0,0 +k1,633:32583029,14841906:19146734 +g1,633:32583029,14841906 +) +(1,634:6797234,15508084:25785795,410518,101187 +h1,634:6797234,15508084:0,0,0 +g1,634:7745671,15508084 +g1,634:9326401,15508084 +k1,634:9326401,15508084:0 +h1,634:13752441,15508084:0,0,0 +k1,634:32583029,15508084:18830588 +g1,634:32583029,15508084 +) +(1,635:6797234,16174262:25785795,410518,101187 +h1,635:6797234,16174262:0,0,0 +g1,635:7745671,16174262 +g1,635:9958692,16174262 +k1,635:9958692,16174262:0 +h1,635:14384732,16174262:0,0,0 +k1,635:32583028,16174262:18198296 +g1,635:32583028,16174262 +) +(1,636:6797234,16840440:25785795,410518,101187 +h1,636:6797234,16840440:0,0,0 +g1,636:7745671,16840440 +g1,636:10590983,16840440 +k1,636:10590983,16840440:0 +h1,636:15017023,16840440:0,0,0 +k1,636:32583029,16840440:17566006 +g1,636:32583029,16840440 +) +(1,637:6797234,17506618:25785795,410518,101187 +h1,637:6797234,17506618:0,0,0 +g1,637:7745671,17506618 +g1,637:10590983,17506618 +k1,637:10590983,17506618:0 +h1,637:15017023,17506618:0,0,0 +k1,637:32583029,17506618:17566006 +g1,637:32583029,17506618 +) +(1,638:6797234,18172796:25785795,410518,101187 +h1,638:6797234,18172796:0,0,0 +g1,638:7745671,18172796 +g1,638:10590983,18172796 +k1,638:10590983,18172796:0 +h1,638:15017023,18172796:0,0,0 +k1,638:32583029,18172796:17566006 +g1,638:32583029,18172796 +) +(1,639:6797234,18838974:25785795,410518,101187 +h1,639:6797234,18838974:0,0,0 +g1,639:7745671,18838974 +g1,639:10590983,18838974 +k1,639:10590983,18838974:0 +h1,639:15017023,18838974:0,0,0 +k1,639:32583029,18838974:17566006 +g1,639:32583029,18838974 +) +(1,640:6797234,19505152:25785795,410518,107478 +h1,640:6797234,19505152:0,0,0 +g1,640:7745671,19505152 +g1,640:14384731,19505152 +k1,640:14384731,19505152:0 +h1,640:18810771,19505152:0,0,0 +k1,640:32583029,19505152:13772258 +g1,640:32583029,19505152 +) +(1,641:6797234,20171330:25785795,410518,107478 +h1,641:6797234,20171330:0,0,0 +g1,641:7745671,20171330 +g1,641:17230043,20171330 +k1,641:17230043,20171330:0 +h1,641:21656083,20171330:0,0,0 +k1,641:32583029,20171330:10926946 +g1,641:32583029,20171330 +) +(1,642:6797234,20837508:25785795,410518,107478 +h1,642:6797234,20837508:0,0,0 +g1,642:7745671,20837508 +g1,642:13436294,20837508 +k1,642:13436294,20837508:0 +h1,642:17862334,20837508:0,0,0 +k1,642:32583029,20837508:14720695 +g1,642:32583029,20837508 +) +(1,643:6797234,21503686:25785795,410518,101187 +h1,643:6797234,21503686:0,0,0 +g1,643:7745671,21503686 +g1,643:9642546,21503686 +k1,643:9642546,21503686:0 +h1,643:14068586,21503686:0,0,0 +k1,643:32583030,21503686:18514444 +g1,643:32583030,21503686 +) +] +) +g1,645:32583029,21604873 +g1,645:6797234,21604873 +g1,645:6797234,21604873 +g1,645:32583029,21604873 +g1,645:32583029,21604873 +) +h1,645:6797234,21801481:0,0,0 +(1,649:6797234,23167257:25785795,513147,134348 +h1,648:6797234,23167257:983040,0,0 +k1,648:9560232,23167257:228065 +k1,648:10254258,23167257:228065 +k1,648:11652797,23167257:228066 +k1,648:13411128,23167257:228065 +k1,648:14290621,23167257:228065 +k1,648:16799995,23167257:228066 +k1,648:18486891,23167257:228065 +k1,648:23369978,23167257:228065 +k1,648:24257335,23167257:228065 +k1,648:25504486,23167257:228066 +k1,648:27118637,23167257:228065 +k1,648:30823387,23167257:228065 +k1,648:32583029,23167257:0 +) +(1,649:6797234,24008745:25785795,485622,134348 +g1,648:8021446,24008745 +g1,648:10499362,24008745 +(1,648:10499362,24008745:661914,485622,0 +) +g1,648:11360505,24008745 +g1,648:12369104,24008745 +g1,648:14066486,24008745 +(1,648:14066486,24008745:661914,485622,0 +) +k1,649:32583030,24008745:17680960 +g1,649:32583030,24008745 +) +] +g1,649:32583029,24143093 +) +h1,649:6630773,24143093:0,0,0 +(1,652:6630773,25508869:25952256,505283,115847 +h1,651:6630773,25508869:983040,0,0 +k1,651:8397640,25508869:155992 +k1,651:11219636,25508869:155991 +k1,651:12027056,25508869:155992 +(1,651:12027056,25508869:0,459977,115847 +r1,678:13792170,25508869:1765114,575824,115847 +k1,651:12027056,25508869:-1765114 +) +(1,651:12027056,25508869:1765114,459977,115847 +g1,651:13085469,25508869 +h1,651:13788893,25508869:0,411205,112570 +) +k1,651:13948162,25508869:155992 +k1,651:15295598,25508869:155991 +(1,651:15295598,25508869:0,459977,115847 +r1,678:19522695,25508869:4227097,575824,115847 +k1,651:15295598,25508869:-4227097 +) +(1,651:15295598,25508869:4227097,459977,115847 +g1,651:16354011,25508869 +g1,651:17409147,25508869 +g1,651:18112571,25508869 +h1,651:19519418,25508869:0,411205,112570 +) +k1,651:19852357,25508869:155992 +k1,651:21663133,25508869:155992 +k1,651:22350621,25508869:155991 +k1,651:23122651,25508869:155992 +k1,651:23693443,25508869:155949 +k1,651:24205295,25508869:155992 +(1,651:24205295,25508869:0,452978,115847 +r1,678:27025544,25508869:2820249,568825,115847 +k1,651:24205295,25508869:-2820249 +) +(1,651:24205295,25508869:2820249,452978,115847 +k1,651:24205295,25508869:3277 +h1,651:27022267,25508869:0,411205,112570 +) +k1,651:27181535,25508869:155991 +k1,651:30697558,25508869:155992 +k1,651:32583029,25508869:0 +) +(1,652:6630773,26350357:25952256,505283,134348 +k1,651:7679208,26350357:180083 +k1,651:10528573,26350357:180084 +k1,651:12266447,26350357:180083 +k1,651:12916424,26350357:180084 +k1,651:14200789,26350357:180083 +k1,651:15128639,26350357:180084 +k1,651:16821948,26350357:180083 +k1,651:17653460,26350357:180084 +k1,651:19654133,26350357:180083 +k1,651:21993628,26350357:180084 +k1,651:23981194,26350357:180083 +k1,651:24844163,26350357:180084 +k1,651:27255747,26350357:180083 +k1,651:30822732,26350357:180084 +k1,652:32583029,26350357:0 +) +(1,652:6630773,27191845:25952256,513147,134348 +k1,651:9052645,27191845:278845 +k1,651:11186159,27191845:278845 +k1,651:12274374,27191845:278845 +k1,651:13323921,27191845:278844 +k1,651:17042751,27191845:278845 +k1,651:20604950,27191845:278845 +k1,651:21535223,27191845:278845 +k1,651:22169928,27191845:278845 +(1,651:22169928,27191845:0,452978,115847 +r1,678:24638465,27191845:2468537,568825,115847 +k1,651:22169928,27191845:-2468537 +) +(1,651:22169928,27191845:2468537,452978,115847 +k1,651:22169928,27191845:3277 +h1,651:24635188,27191845:0,411205,112570 +) +k1,651:24917310,27191845:278845 +k1,651:25879040,27191845:278845 +k1,651:26513744,27191845:278844 +(1,651:26513744,27191845:0,452978,115847 +r1,678:29685704,27191845:3171960,568825,115847 +k1,651:26513744,27191845:-3171960 +) +(1,651:26513744,27191845:3171960,452978,115847 +k1,651:26513744,27191845:3277 +h1,651:29682427,27191845:0,411205,112570 +) +k1,651:29964549,27191845:278845 +k1,651:31923737,27191845:278845 +k1,651:32583029,27191845:0 +) +(1,652:6630773,28033333:25952256,513147,134348 +k1,651:8942261,28033333:298222 +k1,651:10968012,28033333:298222 +k1,651:11917662,28033333:298222 +k1,651:13546265,28033333:298222 +k1,651:15619202,28033333:298222 +(1,651:15619202,28033333:0,459977,115847 +r1,678:17384316,28033333:1765114,575824,115847 +k1,651:15619202,28033333:-1765114 +) +(1,651:15619202,28033333:1765114,459977,115847 +g1,651:16677615,28033333 +h1,651:17381039,28033333:0,411205,112570 +) +k1,651:17682538,28033333:298222 +k1,651:19172205,28033333:298222 +(1,651:19172205,28033333:0,459977,115847 +r1,678:23399302,28033333:4227097,575824,115847 +k1,651:19172205,28033333:-4227097 +) +(1,651:19172205,28033333:4227097,459977,115847 +g1,651:20230618,28033333 +g1,651:21285754,28033333 +g1,651:21989178,28033333 +h1,651:23396025,28033333:0,411205,112570 +) +k1,651:23697524,28033333:298222 +k1,651:25677400,28033333:298222 +k1,651:26923273,28033333:298222 +k1,651:29243281,28033333:298222 +k1,651:31896867,28033333:298222 +k1,651:32583029,28033333:0 +) +(1,652:6630773,28874821:25952256,513147,134348 +k1,651:8309239,28874821:298278 +k1,651:9599078,28874821:298279 +k1,651:13158427,28874821:298278 +k1,651:14218234,28874821:298279 +k1,651:14872372,28874821:298278 +k1,651:17240278,28874821:298279 +k1,651:19392570,28874821:298278 +(1,651:19392570,28874821:0,452978,115847 +r1,678:22212819,28874821:2820249,568825,115847 +k1,651:19392570,28874821:-2820249 +) +(1,651:19392570,28874821:2820249,452978,115847 +k1,651:19392570,28874821:3277 +h1,651:22209542,28874821:0,411205,112570 +) +k1,651:22511097,28874821:298278 +k1,651:23913658,28874821:298279 +k1,651:26499798,28874821:298278 +k1,651:29873682,28874821:298279 +k1,651:30831252,28874821:298278 +k1,651:32583029,28874821:0 +) +(1,652:6630773,29716309:25952256,505283,134348 +k1,651:8464856,29716309:183886 +k1,651:12339074,29716309:183886 +k1,651:13719647,29716309:183886 +k1,651:15624509,29716309:183887 +k1,651:17046370,29716309:183886 +k1,651:17846294,29716309:183886 +k1,651:19915651,29716309:183886 +(1,651:19915651,29716309:0,452978,115847 +r1,678:22735900,29716309:2820249,568825,115847 +k1,651:19915651,29716309:-2820249 +) +(1,651:19915651,29716309:2820249,452978,115847 +k1,651:19915651,29716309:3277 +h1,651:22732623,29716309:0,411205,112570 +) +k1,651:22919786,29716309:183886 +k1,651:26290032,29716309:183886 +k1,651:27005416,29716309:183887 +k1,651:28702528,29716309:183886 +k1,651:29417911,29716309:183886 +k1,651:30363325,29716309:183886 +k1,652:32583029,29716309:0 +) +(1,652:6630773,30557797:25952256,513147,134348 +k1,651:8534795,30557797:264967 +k1,651:9459054,30557797:264967 +k1,651:10743106,30557797:264967 +k1,651:13786799,30557797:264966 +k1,651:15905780,30557797:264967 +k1,651:16856909,30557797:264967 +k1,651:20211899,30557797:264967 +k1,651:21163028,30557797:264967 +k1,651:23166010,30557797:264967 +k1,651:25382638,30557797:264966 +k1,651:28371937,30557797:264967 +k1,651:29709073,30557797:264967 +k1,651:31635378,30557797:264967 +k1,652:32583029,30557797:0 +) +(1,652:6630773,31399285:25952256,485622,134348 +(1,651:6630773,31399285:0,459977,115847 +r1,678:10857870,31399285:4227097,575824,115847 +k1,651:6630773,31399285:-4227097 +) +(1,651:6630773,31399285:4227097,459977,115847 +g1,651:7689186,31399285 +g1,651:8744322,31399285 +g1,651:9447746,31399285 +h1,651:10854593,31399285:0,411205,112570 +) +g1,651:11057099,31399285 +g1,651:12065698,31399285 +g1,651:13763080,31399285 +h1,651:14559998,31399285:0,0,0 +k1,652:32583028,31399285:17849360 +g1,652:32583028,31399285 +) +(1,654:6630773,32240773:25952256,505283,126483 +h1,653:6630773,32240773:983040,0,0 +k1,653:8988684,32240773:178184 +k1,653:11224697,32240773:178183 +k1,653:14589241,32240773:178184 +k1,653:17108371,32240773:178184 +k1,653:17642415,32240773:178184 +k1,653:19674612,32240773:178183 +k1,653:20871881,32240773:178184 +k1,653:22730408,32240773:178184 +k1,653:25687319,32240773:178184 +k1,653:26627030,32240773:178183 +k1,653:27824299,32240773:178184 +(1,653:27824299,32240773:0,452978,115847 +r1,678:30644548,32240773:2820249,568825,115847 +k1,653:27824299,32240773:-2820249 +) +(1,653:27824299,32240773:2820249,452978,115847 +k1,653:27824299,32240773:3277 +h1,653:30641271,32240773:0,411205,112570 +) +k1,653:30822732,32240773:178184 +k1,654:32583029,32240773:0 +) +(1,654:6630773,33082261:25952256,505283,134348 +k1,653:8581481,33082261:311653 +k1,653:9424632,33082261:311654 +k1,653:11020791,33082261:311653 +k1,653:14111172,33082261:311654 +k1,653:15184353,33082261:311653 +k1,653:16515092,33082261:311654 +k1,653:20013105,33082261:311653 +k1,653:24948324,33082261:311654 +k1,653:25911405,33082261:311653 +k1,653:27242144,33082261:311654 +k1,653:30525199,33082261:311653 +k1,653:32583029,33082261:0 +) +(1,654:6630773,33923749:25952256,513147,115847 +k1,653:8763678,33923749:278891 +k1,653:9725455,33923749:278892 +k1,653:11023431,33923749:278891 +k1,653:13567903,33923749:278892 +k1,653:16255897,33923749:278891 +k1,653:17186216,33923749:278891 +(1,653:17186216,33923749:0,452978,115847 +r1,678:18599617,33923749:1413401,568825,115847 +k1,653:17186216,33923749:-1413401 +) +(1,653:17186216,33923749:1413401,452978,115847 +k1,653:17186216,33923749:3277 +h1,653:18596340,33923749:0,411205,112570 +) +k1,653:19085603,33923749:278892 +k1,653:19830455,33923749:278891 +k1,653:21764131,33923749:278892 +k1,653:22574519,33923749:278891 +k1,653:23662780,33923749:278891 +k1,653:25922825,33923749:278892 +k1,653:27393161,33923749:278891 +k1,653:28027913,33923749:278892 +k1,653:30572384,33923749:278891 +k1,653:32583029,33923749:0 +) +(1,654:6630773,34765237:25952256,513147,134348 +k1,653:8533283,34765237:222167 +k1,653:9856455,34765237:222167 +k1,653:11588572,34765237:222167 +k1,653:14365988,34765237:222167 +k1,653:16063370,34765237:222167 +k1,653:18929259,34765237:222167 +k1,653:22337787,34765237:222168 +k1,653:23664236,34765237:222167 +k1,653:24634169,34765237:222167 +k1,653:27383404,34765237:222167 +k1,653:28291733,34765237:222167 +k1,653:28869760,34765237:222167 +k1,653:30437381,34765237:222167 +k1,653:32227169,34765237:222167 +k1,653:32583029,34765237:0 +) +(1,654:6630773,35606725:25952256,513147,126483 +g1,653:7764545,35606725 +g1,653:8623066,35606725 +g1,653:11452255,35606725 +k1,654:32583028,35606725:19259720 +g1,654:32583028,35606725 +) +] +(1,678:32583029,45706769:0,0,0 +g1,678:32583029,45706769 +) +) +] +(1,678:6630773,47279633:25952256,0,0 +h1,678:6630773,47279633:25952256,0,0 +) +] +(1,678:4262630,4025873:0,0,0 +[1,678:-473656,4025873:0,0,0 +(1,678:-473656,-710413:0,0,0 +(1,678:-473656,-710413:0,0,0 +g1,678:-473656,-710413 +) +g1,678:-473656,-710413 +) +] +) +] +!20775 +}18 +Input:284:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:285:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!193 +{19 +[1,717:4262630,47279633:28320399,43253760,0 +(1,717:4262630,4025873:0,0,0 +[1,717:-473656,4025873:0,0,0 +(1,717:-473656,-710413:0,0,0 +(1,717:-473656,-644877:0,0,0 +k1,717:-473656,-644877:-65536 ) +(1,717:-473656,4736287:0,0,0 +k1,717:-473656,4736287:5209943 ) -] -[183,86:3078558,4812305:0,0,0 -(183,86:3078558,2439708:0,1703936,0 -g183,86:29030814,2439708 -g183,86:36135244,2439708 -(1,122:36135244,2439708:1720320,1703936,0 -(1,122:36135244,2439708:16384,1703936,0 -[1,122:36135244,2439708:25952256,1703936,0 -(1,122:36135244,1915420:25952256,1179648,0 -(1,122:36135244,1915420:16384,1179648,0 -r183,86:36151628,1915420:16384,1179648,0 -) -k1,122:62087500,1915420:25935872 -g1,122:62087500,1915420 +g1,717:-473656,-710413 ) ] ) -g1,122:36675916,2439708 -(1,122:36675916,2439708:1179648,16384,0 -r183,86:37855564,2439708:1179648,16384,0 +[1,717:6630773,47279633:25952256,43253760,0 +[1,717:6630773,4812305:25952256,786432,0 +(1,717:6630773,4812305:25952256,505283,134348 +(1,717:6630773,4812305:25952256,505283,134348 +g1,717:3078558,4812305 +[1,717:3078558,4812305:0,0,0 +(1,717:3078558,2439708:0,1703936,0 +k1,717:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,717:2537886,2439708:1179648,16384,0 ) +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,717:3078558,1915420:16384,1179648,0 ) -k183,86:3078556,2439708:-34777008 -) -] -[183,86:3078558,4812305:0,0,0 -(183,86:3078558,49800853:0,16384,2228224 -k183,86:1358238,49800853:-1720320 -(1,122:1358238,49800853:1720320,16384,2228224 -(1,122:1358238,49800853:1179648,16384,0 -r183,86:2537886,49800853:1179648,16384,0 -) -g1,122:3062174,49800853 -(1,122:3062174,52029077:16384,1703936,0 -[1,122:3062174,52029077:25952256,1703936,0 -(1,122:3062174,51504789:25952256,1179648,0 -(1,122:3062174,51504789:16384,1179648,0 -r183,86:3078558,51504789:16384,1179648,0 -) -k1,122:29014430,51504789:25935872 -g1,122:29014430,51504789 +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) ] ) ) ) ] -[183,86:3078558,4812305:0,0,0 -(183,86:3078558,49800853:0,16384,2228224 -g183,86:29030814,49800853 -g183,86:36135244,49800853 -(1,122:36135244,49800853:1720320,16384,2228224 -(1,122:36135244,52029077:16384,1703936,0 -[1,122:36135244,52029077:25952256,1703936,0 -(1,122:36135244,51504789:25952256,1179648,0 -(1,122:36135244,51504789:16384,1179648,0 -r183,86:36151628,51504789:16384,1179648,0 -) -k1,122:62087500,51504789:25935872 -g1,122:62087500,51504789 -) -] -) -g1,122:36675916,49800853 -(1,122:36675916,49800853:1179648,16384,0 -r183,86:37855564,49800853:1179648,16384,0 -) +[1,717:3078558,4812305:0,0,0 +(1,717:3078558,2439708:0,1703936,0 +g1,717:29030814,2439708 +g1,717:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,717:36151628,1915420:16384,1179648,0 ) -k183,86:3078556,49800853:-34777008 +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) ] -g183,86:6630773,4812305 -k183,86:29827896,4812305:22638756 ) +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,717:37855564,2439708:1179648,16384,0 ) -] -[183,86:6630773,45706769:25952256,40108032,0 -(183,86:6630773,45706769:25952256,40108032,0 -(183,86:6630773,45706769:0,0,0 -g183,86:6630773,45706769 -) -[183,86:6630773,45706769:25952256,40108032,0 -(183,39:6630773,6254097:25952256,513147,11795 -g183,39:9121143,6254097 -h183,39:9121143,6254097:983040,0,0 -h183,39:10104183,6254097:0,0,0 -g183,39:7613813,6254097 -(183,39:7613813,6254097:1507330,485622,0 -k183,39:9121143,6254097:138283 ) -g183,39:10792311,6254097 -g183,39:13198137,6254097 -g183,39:13198137,6254097 -(183,39:13650065,6254097:501378,78643,0 -$183,39:13650065,6254097 -(183,39:13813919,6254097:173670,78643,0 +k1,717:3078556,2439708:-34777008 ) -$183,39:14151443,6254097 +] +[1,717:3078558,4812305:0,0,0 +(1,717:3078558,49800853:0,16384,2228224 +k1,717:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,717:2537886,49800853:1179648,16384,0 ) -(183,39:14151443,6254097:501378,78643,0 -(183,39:14315297,6254097:173670,78643,0 +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,717:3078558,51504789:16384,1179648,0 ) +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) -(183,39:14652821,6254097:501378,78643,0 -(183,39:14816675,6254097:173670,78643,0 +] ) ) -(183,39:15154199,6254097:501378,78643,0 -(183,39:15318053,6254097:173670,78643,0 ) +] +[1,717:3078558,4812305:0,0,0 +(1,717:3078558,49800853:0,16384,2228224 +g1,717:29030814,49800853 +g1,717:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,717:36151628,51504789:16384,1179648,0 ) -(183,39:15655577,6254097:501378,78643,0 -(183,39:15819431,6254097:173670,78643,0 +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 ) +] ) -(183,39:16156955,6254097:501378,78643,0 -(183,39:16320809,6254097:173670,78643,0 +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,717:37855564,49800853:1179648,16384,0 ) ) -(183,39:16658333,6254097:501378,78643,0 -(183,39:16822187,6254097:173670,78643,0 +k1,717:3078556,49800853:-34777008 ) +] +g1,717:6630773,4812305 +k1,717:18771974,4812305:11344283 +g1,717:20158715,4812305 +g1,717:20807521,4812305 +g1,717:24121676,4812305 +g1,717:28605649,4812305 +g1,717:30015328,4812305 ) -(183,39:17159711,6254097:501378,78643,0 -(183,39:17323565,6254097:173670,78643,0 ) +] +[1,717:6630773,45706769:25952256,40108032,0 +(1,717:6630773,45706769:25952256,40108032,0 +(1,717:6630773,45706769:0,0,0 +g1,717:6630773,45706769 ) -(183,39:17661089,6254097:501378,78643,0 -(183,39:17824943,6254097:173670,78643,0 +[1,717:6630773,45706769:25952256,40108032,0 +(1,678:6630773,27814622:25952256,22215885,0 +k1,678:10211480,27814622:3580707 +(1,655:10211480,27814622:0,0,0 +g1,655:10211480,27814622 +g1,655:10211480,27814622 +g1,655:9883800,27814622 +(1,655:9883800,27814622:0,0,0 ) +g1,655:10211480,27814622 ) -(183,39:18162467,6254097:501378,78643,0 -(183,39:18326321,6254097:173670,78643,0 +(1,676:10211480,27814622:18790843,22215885,0 +g1,676:13698849,27814622 +(1,676:13698849,6544183:0,0,0 +(1,676:13698849,6544183:0,0,0 +g1,657:13698849,6544183 +(1,658:13698849,6544183:0,0,0 +(1,658:13698849,6544183:0,0,0 +g1,658:13698849,6544183 +g1,658:13698849,6544183 +g1,658:13698849,6544183 +g1,658:13698849,6544183 +g1,658:13698849,6544183 +(1,658:13698849,6544183:0,0,0 +(1,658:13698849,6544183:589824,56623,0 +(1,658:13698849,6544183:589824,56623,0 ) +g1,658:14288673,6544183 ) -(183,39:18663845,6254097:501378,78643,0 -(183,39:18827699,6254097:173670,78643,0 ) +g1,658:13698849,6544183 +g1,658:13698849,6544183 ) -(183,39:19165223,6254097:501378,78643,0 -(183,39:19329077,6254097:173670,78643,0 ) +g1,658:13698849,6544183 +(1,659:13698849,6544183:0,0,0 +(1,659:13698849,6544183:0,0,0 +g1,659:13698849,6544183 +g1,659:13698849,6544183 +(1,659:13698849,6544183:0,0,0 +(1,659:13698849,6544183:4754664,408008,104590 +(1,659:13698849,6544183:4754664,408008,104590 +(1,659:13698849,6544183:0,408008,104590 +r1,717:18453513,6544183:4754664,512598,104590 +k1,659:13698849,6544183:-4754664 ) -(183,39:19666601,6254097:501378,78643,0 -(183,39:19830455,6254097:173670,78643,0 +(1,659:13698849,6544183:4754664,408008,104590 +k1,659:13698849,6544183:3277 +h1,659:18450236,6544183:0,370085,101313 ) ) -(183,39:20167979,6254097:501378,78643,0 -(183,39:20331833,6254097:173670,78643,0 +g1,659:18453513,6544183 ) ) -(183,39:20669357,6254097:501378,78643,0 -(183,39:20833211,6254097:173670,78643,0 +g1,659:13698849,6544183 +g1,659:13698849,6544183 ) ) -(183,39:21170735,6254097:501378,78643,0 -(183,39:21334589,6254097:173670,78643,0 +(1,660:13698849,6544183:0,0,0 +(1,660:13698849,6544183:0,0,0 +g1,660:13698849,6544183 +g1,660:13698849,6544183 +g1,660:13698849,6544183 +g1,660:13698849,6544183 +g1,660:13698849,6544183 +(1,660:13698849,6544183:0,0,0 +(1,660:13698849,6544183:4121582,373362,104590 +(1,660:13698849,6544183:4121582,373362,104590 +(1,660:13698849,6544183:0,373362,104590 +r1,717:17820431,6544183:4121582,477952,104590 +k1,660:13698849,6544183:-4121582 ) +(1,660:13698849,6544183:4121582,373362,104590 +g1,660:17184073,6544183 +h1,660:17817154,6544183:0,370085,101313 ) -(183,39:21672113,6254097:501378,78643,0 -(183,39:21835967,6254097:173670,78643,0 ) +g1,660:17820431,6544183 ) -(183,39:22173491,6254097:501378,78643,0 -(183,39:22337345,6254097:173670,78643,0 ) +g1,660:13698849,6544183 +g1,660:13698849,6544183 +) +) +g1,660:13698849,6544183 +g1,661:13698849,6544183 +(1,661:13698849,6544183:0,0,0 +(1,661:13698849,6544183:0,0,0 +g1,661:13698849,6544183 +g1,661:13698849,6544183 +g1,661:13698849,6544183 +g1,661:13698849,6544183 +g1,661:13698849,6544183 +(1,661:13698849,6544183:0,0,0 +(1,661:13698849,6544183:4121582,373362,104590 +(1,661:13698849,6544183:4121582,373362,104590 +(1,661:13698849,6544183:0,373362,104590 +r1,717:17820431,6544183:4121582,477952,104590 +k1,661:13698849,6544183:-4121582 +) +(1,661:13698849,6544183:4121582,373362,104590 +g1,661:17184073,6544183 +h1,661:17817154,6544183:0,370085,101313 +) +) +g1,661:17820431,6544183 ) -(183,39:22674869,6254097:501378,78643,0 -(183,39:22838723,6254097:173670,78643,0 ) +g1,661:13698849,6544183 +g1,661:13698849,6544183 ) -(183,39:23176247,6254097:501378,78643,0 -(183,39:23340101,6254097:173670,78643,0 ) +g1,661:13698849,6544183 +g1,662:13698849,6544183 +(1,662:13698849,6544183:0,0,0 +(1,662:13698849,6544183:0,0,0 +g1,662:13698849,6544183 +g1,662:13698849,6544183 +g1,662:13698849,6544183 +g1,662:13698849,6544183 +g1,662:13698849,6544183 +(1,662:13698849,6544183:0,0,0 +(1,662:13698849,6544183:4121582,373362,104590 +(1,662:13698849,6544183:4121582,373362,104590 +(1,662:13698849,6544183:0,373362,104590 +r1,717:17820431,6544183:4121582,477952,104590 +k1,662:13698849,6544183:-4121582 ) -(183,39:23677625,6254097:501378,78643,0 -(183,39:23841479,6254097:173670,78643,0 +(1,662:13698849,6544183:4121582,373362,104590 +g1,662:17184073,6544183 +h1,662:17817154,6544183:0,370085,101313 +) +) +g1,662:17820431,6544183 +) +) +g1,662:13698849,6544183 +g1,662:13698849,6544183 +) +) +g1,662:13698849,6544183 +g1,663:13698849,6544183 +(1,663:13698849,6544183:0,0,0 +(1,663:13698849,6544183:0,0,0 +g1,663:13698849,6544183 +g1,663:13698849,6544183 +g1,663:13698849,6544183 +g1,663:13698849,6544183 +g1,663:13698849,6544183 +(1,663:13698849,6544183:0,0,0 +(1,663:13698849,6544183:4121582,373362,104590 +(1,663:13698849,6544183:4121582,373362,104590 +(1,663:13698849,6544183:0,373362,104590 +r1,717:17820431,6544183:4121582,477952,104590 +k1,663:13698849,6544183:-4121582 +) +(1,663:13698849,6544183:4121582,373362,104590 +g1,663:17184073,6544183 +h1,663:17817154,6544183:0,370085,101313 +) +) +g1,663:17820431,6544183 +) +) +g1,663:13698849,6544183 +g1,663:13698849,6544183 +) +) +g1,663:13698849,6544183 +(1,664:13698849,6544183:0,0,0 +(1,664:13698849,6544183:0,0,0 +g1,664:13698849,6544183 +g1,664:13698849,6544183 +g1,664:13698849,6544183 +g1,664:13698849,6544183 +g1,664:13698849,6544183 +(1,664:13698849,6544183:0,0,0 +(1,664:13698849,6544183:4121582,373362,104590 +(1,664:13698849,6544183:4121582,373362,104590 +(1,664:13698849,6544183:0,373362,104590 +r1,717:17820431,6544183:4121582,477952,104590 +k1,664:13698849,6544183:-4121582 +) +(1,664:13698849,6544183:4121582,373362,104590 +g1,664:17184073,6544183 +h1,664:17817154,6544183:0,370085,101313 +) +) +g1,664:17820431,6544183 +) +) +g1,664:13698849,6544183 +g1,664:13698849,6544183 +) +) +g1,664:13698849,6544183 +g1,665:13698849,6544183 +(1,665:13698849,6544183:0,0,0 +(1,665:13698849,6544183:0,0,0 +g1,665:13698849,6544183 +g1,665:13698849,6544183 +g1,665:13698849,6544183 +g1,665:13698849,6544183 +g1,665:13698849,6544183 +(1,665:13698849,6544183:0,0,0 +(1,665:13698849,6544183:589824,56623,0 +(1,665:13698849,6544183:589824,56623,0 ) +g1,665:14288673,6544183 +) +) +g1,665:13698849,6544183 +g1,665:13698849,6544183 +) +) +g1,665:13698849,6544183 +g1,666:13698849,6544183 +g1,666:13698849,6544183 +g1,666:13698849,6544183 +g1,666:13698849,6544183 +g1,667:13698849,6544183 +g1,667:13698849,6544183 +(1,667:13698849,6544183:0,0,0 +(1,667:13698849,6544183:0,0,0 +g1,667:13698849,6544183 +g1,667:13698849,6544183 +g1,667:13698849,6544183 +g1,667:13698849,6544183 +g1,667:13698849,6544183 +(1,667:13698849,6544183:0,0,0 +(1,667:13698849,6544183:2855420,408008,104590 +(1,667:13698849,6544183:2855420,408008,104590 +(1,667:13698849,6544183:0,408008,104590 +r1,717:16554269,6544183:2855420,512598,104590 +k1,667:13698849,6544183:-2855420 ) -(183,39:24179003,6254097:501378,78643,0 -(183,39:24342857,6254097:173670,78643,0 -) -) -(183,39:24680381,6254097:501378,78643,0 -(183,39:24844235,6254097:173670,78643,0 -) -) -(183,39:25181759,6254097:501378,78643,0 -(183,39:25345613,6254097:173670,78643,0 -) -) -(183,39:25683137,6254097:501378,78643,0 -(183,39:25846991,6254097:173670,78643,0 -) -) -(183,39:26184515,6254097:501378,78643,0 -(183,39:26348369,6254097:173670,78643,0 -) -) -(183,39:26685893,6254097:501378,78643,0 -(183,39:26849747,6254097:173670,78643,0 -) -) -(183,39:27187271,6254097:501378,78643,0 -(183,39:27351125,6254097:173670,78643,0 -) -) -(183,39:27688649,6254097:501378,78643,0 -(183,39:27852503,6254097:173670,78643,0 -) -) -(183,39:28190027,6254097:501378,78643,0 -(183,39:28353881,6254097:173670,78643,0 -) -) -(183,39:28691405,6254097:501378,78643,0 -(183,39:28855259,6254097:173670,78643,0 -) -) -(183,39:29192783,6254097:501378,78643,0 -(183,39:29356637,6254097:173670,78643,0 -) -) -(183,39:29694161,6254097:501378,78643,0 -(183,39:29858015,6254097:173670,78643,0 -) -) -(183,39:30195539,6254097:501378,78643,0 -(183,39:30359393,6254097:173670,78643,0 -) -) -(183,39:30696917,6254097:501378,78643,0 -(183,39:30860771,6254097:173670,78643,0 -) -) -(183,39:31239539,6254097:1343490,485622,11795 -k183,39:31586882,6254097:347343 -g183,39:31786111,6254097 -) -g183,39:30911859,6254097 -g183,39:32583029,6254097 -) -(183,40:6630773,7095585:25952256,513147,134348 -g183,40:11218293,7095585 -h183,40:11218293,7095585:2490370,0,0 -h183,40:13708663,7095585:0,0,0 -g183,40:9121143,7095585 -(183,40:9121143,7095585:2097150,485622,0 -k183,40:11218293,7095585:155974 -) -g183,40:14586188,7095585 -g183,40:16795406,7095585 -g183,40:18383998,7095585 -g183,40:20590595,7095585 -(183,40:20669357,7095585:501378,78643,0 -$183,40:20669357,7095585 -(183,40:20833211,7095585:173670,78643,0 -) -$183,40:21170735,7095585 -) -(183,40:21170735,7095585:501378,78643,0 -(183,40:21334589,7095585:173670,78643,0 -) -) -(183,40:21672113,7095585:501378,78643,0 -(183,40:21835967,7095585:173670,78643,0 -) -) -(183,40:22173491,7095585:501378,78643,0 -(183,40:22337345,7095585:173670,78643,0 -) -) -(183,40:22674869,7095585:501378,78643,0 -(183,40:22838723,7095585:173670,78643,0 -) -) -(183,40:23176247,7095585:501378,78643,0 -(183,40:23340101,7095585:173670,78643,0 -) -) -(183,40:23677625,7095585:501378,78643,0 -(183,40:23841479,7095585:173670,78643,0 -) -) -(183,40:24179003,7095585:501378,78643,0 -(183,40:24342857,7095585:173670,78643,0 -) -) -(183,40:24680381,7095585:501378,78643,0 -(183,40:24844235,7095585:173670,78643,0 -) -) -(183,40:25181759,7095585:501378,78643,0 -(183,40:25345613,7095585:173670,78643,0 -) -) -(183,40:25683137,7095585:501378,78643,0 -(183,40:25846991,7095585:173670,78643,0 -) -) -(183,40:26184515,7095585:501378,78643,0 -(183,40:26348369,7095585:173670,78643,0 -) -) -(183,40:26685893,7095585:501378,78643,0 -(183,40:26849747,7095585:173670,78643,0 -) -) -(183,40:27187271,7095585:501378,78643,0 -(183,40:27351125,7095585:173670,78643,0 -) -) -(183,40:27688649,7095585:501378,78643,0 -(183,40:27852503,7095585:173670,78643,0 -) -) -(183,40:28190027,7095585:501378,78643,0 -(183,40:28353881,7095585:173670,78643,0 -) -) -(183,40:28691405,7095585:501378,78643,0 -(183,40:28855259,7095585:173670,78643,0 -) -) -(183,40:29192783,7095585:501378,78643,0 -(183,40:29356637,7095585:173670,78643,0 -) -) -(183,40:29694161,7095585:501378,78643,0 -(183,40:29858015,7095585:173670,78643,0 -) -) -(183,40:30195539,7095585:501378,78643,0 -(183,40:30359393,7095585:173670,78643,0 -) -) -(183,40:30696917,7095585:501378,78643,0 -(183,40:30860771,7095585:173670,78643,0 -) -) -(183,40:31239539,7095585:1343490,473825,0 -k183,40:31586882,7095585:347343 -g183,40:31786111,7095585 -) -g183,40:30911859,7095585 -g183,40:32583029,7095585 -) -(183,41:6630773,7937073:25952256,505283,134348 -g183,41:11218293,7937073 -h183,41:11218293,7937073:2490370,0,0 -h183,41:13708663,7937073:0,0,0 -g183,41:9121143,7937073 -(183,41:9121143,7937073:2097150,485622,0 -k183,41:11218293,7937073:155974 -) -g183,41:15490585,7937073 -g183,41:18403005,7937073 -g183,41:19793679,7937073 -g183,41:21327877,7937073 -(183,41:21672113,7937073:501378,78643,0 -$183,41:21672113,7937073 -(183,41:21835967,7937073:173670,78643,0 -) -$183,41:22173491,7937073 -) -(183,41:22173491,7937073:501378,78643,0 -(183,41:22337345,7937073:173670,78643,0 -) -) -(183,41:22674869,7937073:501378,78643,0 -(183,41:22838723,7937073:173670,78643,0 -) -) -(183,41:23176247,7937073:501378,78643,0 -(183,41:23340101,7937073:173670,78643,0 -) -) -(183,41:23677625,7937073:501378,78643,0 -(183,41:23841479,7937073:173670,78643,0 -) -) -(183,41:24179003,7937073:501378,78643,0 -(183,41:24342857,7937073:173670,78643,0 -) -) -(183,41:24680381,7937073:501378,78643,0 -(183,41:24844235,7937073:173670,78643,0 -) -) -(183,41:25181759,7937073:501378,78643,0 -(183,41:25345613,7937073:173670,78643,0 -) -) -(183,41:25683137,7937073:501378,78643,0 -(183,41:25846991,7937073:173670,78643,0 -) -) -(183,41:26184515,7937073:501378,78643,0 -(183,41:26348369,7937073:173670,78643,0 -) -) -(183,41:26685893,7937073:501378,78643,0 -(183,41:26849747,7937073:173670,78643,0 -) -) -(183,41:27187271,7937073:501378,78643,0 -(183,41:27351125,7937073:173670,78643,0 -) -) -(183,41:27688649,7937073:501378,78643,0 -(183,41:27852503,7937073:173670,78643,0 -) -) -(183,41:28190027,7937073:501378,78643,0 -(183,41:28353881,7937073:173670,78643,0 -) -) -(183,41:28691405,7937073:501378,78643,0 -(183,41:28855259,7937073:173670,78643,0 -) -) -(183,41:29192783,7937073:501378,78643,0 -(183,41:29356637,7937073:173670,78643,0 -) -) -(183,41:29694161,7937073:501378,78643,0 -(183,41:29858015,7937073:173670,78643,0 -) -) -(183,41:30195539,7937073:501378,78643,0 -(183,41:30359393,7937073:173670,78643,0 -) -) -(183,41:30696917,7937073:501378,78643,0 -(183,41:30860771,7937073:173670,78643,0 -) -) -(183,41:31239539,7937073:1343490,485622,11795 -k183,41:31586882,7937073:347343 -g183,41:31786111,7937073 -) -g183,41:30911859,7937073 -g183,41:32583029,7937073 -) -(183,42:6630773,8778561:25952256,513147,134348 -g183,42:9121143,8778561 -h183,42:9121143,8778561:983040,0,0 -h183,42:10104183,8778561:0,0,0 -g183,42:7613813,8778561 -(183,42:7613813,8778561:1507330,485622,11795 -k183,42:9121143,8778561:138283 -) -g183,42:12561127,8778561 -g183,42:13419648,8778561 -g183,42:14063866,8778561 -g183,42:16552923,8778561 -g183,42:16552923,8778561 -(183,42:16658333,8778561:501378,78643,0 -$183,42:16658333,8778561 -(183,42:16822187,8778561:173670,78643,0 -) -$183,42:17159711,8778561 -) -(183,42:17159711,8778561:501378,78643,0 -(183,42:17323565,8778561:173670,78643,0 -) -) -(183,42:17661089,8778561:501378,78643,0 -(183,42:17824943,8778561:173670,78643,0 -) -) -(183,42:18162467,8778561:501378,78643,0 -(183,42:18326321,8778561:173670,78643,0 -) -) -(183,42:18663845,8778561:501378,78643,0 -(183,42:18827699,8778561:173670,78643,0 -) -) -(183,42:19165223,8778561:501378,78643,0 -(183,42:19329077,8778561:173670,78643,0 -) -) -(183,42:19666601,8778561:501378,78643,0 -(183,42:19830455,8778561:173670,78643,0 -) -) -(183,42:20167979,8778561:501378,78643,0 -(183,42:20331833,8778561:173670,78643,0 -) -) -(183,42:20669357,8778561:501378,78643,0 -(183,42:20833211,8778561:173670,78643,0 -) -) -(183,42:21170735,8778561:501378,78643,0 -(183,42:21334589,8778561:173670,78643,0 -) -) -(183,42:21672113,8778561:501378,78643,0 -(183,42:21835967,8778561:173670,78643,0 -) -) -(183,42:22173491,8778561:501378,78643,0 -(183,42:22337345,8778561:173670,78643,0 -) -) -(183,42:22674869,8778561:501378,78643,0 -(183,42:22838723,8778561:173670,78643,0 -) -) -(183,42:23176247,8778561:501378,78643,0 -(183,42:23340101,8778561:173670,78643,0 -) -) -(183,42:23677625,8778561:501378,78643,0 -(183,42:23841479,8778561:173670,78643,0 -) -) -(183,42:24179003,8778561:501378,78643,0 -(183,42:24342857,8778561:173670,78643,0 -) -) -(183,42:24680381,8778561:501378,78643,0 -(183,42:24844235,8778561:173670,78643,0 -) -) -(183,42:25181759,8778561:501378,78643,0 -(183,42:25345613,8778561:173670,78643,0 -) -) -(183,42:25683137,8778561:501378,78643,0 -(183,42:25846991,8778561:173670,78643,0 -) -) -(183,42:26184515,8778561:501378,78643,0 -(183,42:26348369,8778561:173670,78643,0 -) -) -(183,42:26685893,8778561:501378,78643,0 -(183,42:26849747,8778561:173670,78643,0 -) -) -(183,42:27187271,8778561:501378,78643,0 -(183,42:27351125,8778561:173670,78643,0 -) -) -(183,42:27688649,8778561:501378,78643,0 -(183,42:27852503,8778561:173670,78643,0 -) -) -(183,42:28190027,8778561:501378,78643,0 -(183,42:28353881,8778561:173670,78643,0 -) -) -(183,42:28691405,8778561:501378,78643,0 -(183,42:28855259,8778561:173670,78643,0 -) -) -(183,42:29192783,8778561:501378,78643,0 -(183,42:29356637,8778561:173670,78643,0 -) -) -(183,42:29694161,8778561:501378,78643,0 -(183,42:29858015,8778561:173670,78643,0 -) -) -(183,42:30195539,8778561:501378,78643,0 -(183,42:30359393,8778561:173670,78643,0 -) -) -(183,42:30696917,8778561:501378,78643,0 -(183,42:30860771,8778561:173670,78643,0 -) -) -(183,42:31239539,8778561:1343490,485622,11795 -k183,42:31586882,8778561:347343 -g183,42:31786111,8778561 -) -g183,42:30911859,8778561 -g183,42:32583029,8778561 -) -(183,43:6630773,9620049:25952256,505283,134348 -g183,43:9121143,9620049 -h183,43:9121143,9620049:983040,0,0 -h183,43:10104183,9620049:0,0,0 -g183,43:7613813,9620049 -(183,43:7613813,9620049:1507330,485622,11795 -k183,43:9121143,9620049:138283 -) -g183,43:11378858,9620049 -g183,43:12769532,9620049 -g183,43:15335266,9620049 -g183,43:16923858,9620049 -g183,43:16923858,9620049 -(183,43:17159711,9620049:501378,78643,0 -$183,43:17159711,9620049 -(183,43:17323565,9620049:173670,78643,0 -) -$183,43:17661089,9620049 -) -(183,43:17661089,9620049:501378,78643,0 -(183,43:17824943,9620049:173670,78643,0 -) -) -(183,43:18162467,9620049:501378,78643,0 -(183,43:18326321,9620049:173670,78643,0 -) -) -(183,43:18663845,9620049:501378,78643,0 -(183,43:18827699,9620049:173670,78643,0 -) -) -(183,43:19165223,9620049:501378,78643,0 -(183,43:19329077,9620049:173670,78643,0 -) -) -(183,43:19666601,9620049:501378,78643,0 -(183,43:19830455,9620049:173670,78643,0 -) -) -(183,43:20167979,9620049:501378,78643,0 -(183,43:20331833,9620049:173670,78643,0 -) -) -(183,43:20669357,9620049:501378,78643,0 -(183,43:20833211,9620049:173670,78643,0 -) -) -(183,43:21170735,9620049:501378,78643,0 -(183,43:21334589,9620049:173670,78643,0 -) -) -(183,43:21672113,9620049:501378,78643,0 -(183,43:21835967,9620049:173670,78643,0 -) -) -(183,43:22173491,9620049:501378,78643,0 -(183,43:22337345,9620049:173670,78643,0 -) -) -(183,43:22674869,9620049:501378,78643,0 -(183,43:22838723,9620049:173670,78643,0 -) -) -(183,43:23176247,9620049:501378,78643,0 -(183,43:23340101,9620049:173670,78643,0 -) -) -(183,43:23677625,9620049:501378,78643,0 -(183,43:23841479,9620049:173670,78643,0 -) -) -(183,43:24179003,9620049:501378,78643,0 -(183,43:24342857,9620049:173670,78643,0 -) -) -(183,43:24680381,9620049:501378,78643,0 -(183,43:24844235,9620049:173670,78643,0 -) -) -(183,43:25181759,9620049:501378,78643,0 -(183,43:25345613,9620049:173670,78643,0 -) -) -(183,43:25683137,9620049:501378,78643,0 -(183,43:25846991,9620049:173670,78643,0 -) -) -(183,43:26184515,9620049:501378,78643,0 -(183,43:26348369,9620049:173670,78643,0 -) -) -(183,43:26685893,9620049:501378,78643,0 -(183,43:26849747,9620049:173670,78643,0 -) -) -(183,43:27187271,9620049:501378,78643,0 -(183,43:27351125,9620049:173670,78643,0 -) -) -(183,43:27688649,9620049:501378,78643,0 -(183,43:27852503,9620049:173670,78643,0 -) -) -(183,43:28190027,9620049:501378,78643,0 -(183,43:28353881,9620049:173670,78643,0 -) -) -(183,43:28691405,9620049:501378,78643,0 -(183,43:28855259,9620049:173670,78643,0 -) -) -(183,43:29192783,9620049:501378,78643,0 -(183,43:29356637,9620049:173670,78643,0 -) -) -(183,43:29694161,9620049:501378,78643,0 -(183,43:29858015,9620049:173670,78643,0 -) -) -(183,43:30195539,9620049:501378,78643,0 -(183,43:30359393,9620049:173670,78643,0 -) -) -(183,43:30696917,9620049:501378,78643,0 -(183,43:30860771,9620049:173670,78643,0 -) -) -(183,43:31239539,9620049:1343490,485622,11795 -k183,43:31586882,9620049:347343 -g183,43:31786111,9620049 -) -g183,43:30911859,9620049 -g183,43:32583029,9620049 -) -(183,44:6630773,10461537:25952256,505283,134348 -g183,44:11218293,10461537 -h183,44:11218293,10461537:2490370,0,0 -h183,44:13708663,10461537:0,0,0 -g183,44:9121143,10461537 -(183,44:9121143,10461537:2097150,485622,11795 -k183,44:11218293,10461537:155974 -) -g183,44:12889461,10461537 -g183,44:14353535,10461537 -g183,44:15168802,10461537 -g183,44:15813020,10461537 -g183,44:17203694,10461537 -g183,44:20114148,10461537 -(183,44:20167979,10461537:501378,78643,0 -$183,44:20167979,10461537 -(183,44:20331833,10461537:173670,78643,0 -) -$183,44:20669357,10461537 -) -(183,44:20669357,10461537:501378,78643,0 -(183,44:20833211,10461537:173670,78643,0 -) -) -(183,44:21170735,10461537:501378,78643,0 -(183,44:21334589,10461537:173670,78643,0 -) -) -(183,44:21672113,10461537:501378,78643,0 -(183,44:21835967,10461537:173670,78643,0 -) -) -(183,44:22173491,10461537:501378,78643,0 -(183,44:22337345,10461537:173670,78643,0 -) -) -(183,44:22674869,10461537:501378,78643,0 -(183,44:22838723,10461537:173670,78643,0 -) -) -(183,44:23176247,10461537:501378,78643,0 -(183,44:23340101,10461537:173670,78643,0 -) -) -(183,44:23677625,10461537:501378,78643,0 -(183,44:23841479,10461537:173670,78643,0 -) -) -(183,44:24179003,10461537:501378,78643,0 -(183,44:24342857,10461537:173670,78643,0 -) -) -(183,44:24680381,10461537:501378,78643,0 -(183,44:24844235,10461537:173670,78643,0 -) -) -(183,44:25181759,10461537:501378,78643,0 -(183,44:25345613,10461537:173670,78643,0 -) -) -(183,44:25683137,10461537:501378,78643,0 -(183,44:25846991,10461537:173670,78643,0 -) -) -(183,44:26184515,10461537:501378,78643,0 -(183,44:26348369,10461537:173670,78643,0 -) -) -(183,44:26685893,10461537:501378,78643,0 -(183,44:26849747,10461537:173670,78643,0 -) -) -(183,44:27187271,10461537:501378,78643,0 -(183,44:27351125,10461537:173670,78643,0 -) -) -(183,44:27688649,10461537:501378,78643,0 -(183,44:27852503,10461537:173670,78643,0 -) -) -(183,44:28190027,10461537:501378,78643,0 -(183,44:28353881,10461537:173670,78643,0 -) -) -(183,44:28691405,10461537:501378,78643,0 -(183,44:28855259,10461537:173670,78643,0 -) -) -(183,44:29192783,10461537:501378,78643,0 -(183,44:29356637,10461537:173670,78643,0 -) -) -(183,44:29694161,10461537:501378,78643,0 -(183,44:29858015,10461537:173670,78643,0 -) -) -(183,44:30195539,10461537:501378,78643,0 -(183,44:30359393,10461537:173670,78643,0 -) -) -(183,44:30696917,10461537:501378,78643,0 -(183,44:30860771,10461537:173670,78643,0 -) -) -(183,44:31239539,10461537:1343490,485622,11795 -k183,44:31586882,10461537:347343 -g183,44:31786111,10461537 -) -g183,44:30911859,10461537 -g183,44:32583029,10461537 -) -(183,45:6630773,11303025:25952256,513147,11795 -g183,45:11218293,11303025 -h183,45:11218293,11303025:2490370,0,0 -h183,45:13708663,11303025:0,0,0 -g183,45:9121143,11303025 -(183,45:9121143,11303025:2097150,485622,11795 -k183,45:11218293,11303025:155974 -) -g183,45:12656152,11303025 -g183,45:13969494,11303025 -(183,45:14151443,11303025:501378,78643,0 -$183,45:14151443,11303025 -(183,45:14315297,11303025:173670,78643,0 -) -$183,45:14652821,11303025 -) -(183,45:14652821,11303025:501378,78643,0 -(183,45:14816675,11303025:173670,78643,0 -) -) -(183,45:15154199,11303025:501378,78643,0 -(183,45:15318053,11303025:173670,78643,0 -) -) -(183,45:15655577,11303025:501378,78643,0 -(183,45:15819431,11303025:173670,78643,0 -) -) -(183,45:16156955,11303025:501378,78643,0 -(183,45:16320809,11303025:173670,78643,0 -) -) -(183,45:16658333,11303025:501378,78643,0 -(183,45:16822187,11303025:173670,78643,0 -) -) -(183,45:17159711,11303025:501378,78643,0 -(183,45:17323565,11303025:173670,78643,0 -) -) -(183,45:17661089,11303025:501378,78643,0 -(183,45:17824943,11303025:173670,78643,0 -) -) -(183,45:18162467,11303025:501378,78643,0 -(183,45:18326321,11303025:173670,78643,0 -) -) -(183,45:18663845,11303025:501378,78643,0 -(183,45:18827699,11303025:173670,78643,0 -) -) -(183,45:19165223,11303025:501378,78643,0 -(183,45:19329077,11303025:173670,78643,0 -) -) -(183,45:19666601,11303025:501378,78643,0 -(183,45:19830455,11303025:173670,78643,0 -) -) -(183,45:20167979,11303025:501378,78643,0 -(183,45:20331833,11303025:173670,78643,0 -) -) -(183,45:20669357,11303025:501378,78643,0 -(183,45:20833211,11303025:173670,78643,0 -) -) -(183,45:21170735,11303025:501378,78643,0 -(183,45:21334589,11303025:173670,78643,0 -) -) -(183,45:21672113,11303025:501378,78643,0 -(183,45:21835967,11303025:173670,78643,0 -) -) -(183,45:22173491,11303025:501378,78643,0 -(183,45:22337345,11303025:173670,78643,0 -) -) -(183,45:22674869,11303025:501378,78643,0 -(183,45:22838723,11303025:173670,78643,0 -) -) -(183,45:23176247,11303025:501378,78643,0 -(183,45:23340101,11303025:173670,78643,0 -) -) -(183,45:23677625,11303025:501378,78643,0 -(183,45:23841479,11303025:173670,78643,0 -) -) -(183,45:24179003,11303025:501378,78643,0 -(183,45:24342857,11303025:173670,78643,0 -) -) -(183,45:24680381,11303025:501378,78643,0 -(183,45:24844235,11303025:173670,78643,0 -) -) -(183,45:25181759,11303025:501378,78643,0 -(183,45:25345613,11303025:173670,78643,0 -) -) -(183,45:25683137,11303025:501378,78643,0 -(183,45:25846991,11303025:173670,78643,0 -) -) -(183,45:26184515,11303025:501378,78643,0 -(183,45:26348369,11303025:173670,78643,0 -) -) -(183,45:26685893,11303025:501378,78643,0 -(183,45:26849747,11303025:173670,78643,0 -) -) -(183,45:27187271,11303025:501378,78643,0 -(183,45:27351125,11303025:173670,78643,0 -) -) -(183,45:27688649,11303025:501378,78643,0 -(183,45:27852503,11303025:173670,78643,0 -) -) -(183,45:28190027,11303025:501378,78643,0 -(183,45:28353881,11303025:173670,78643,0 -) -) -(183,45:28691405,11303025:501378,78643,0 -(183,45:28855259,11303025:173670,78643,0 -) -) -(183,45:29192783,11303025:501378,78643,0 -(183,45:29356637,11303025:173670,78643,0 -) -) -(183,45:29694161,11303025:501378,78643,0 -(183,45:29858015,11303025:173670,78643,0 -) -) -(183,45:30195539,11303025:501378,78643,0 -(183,45:30359393,11303025:173670,78643,0 -) -) -(183,45:30696917,11303025:501378,78643,0 -(183,45:30860771,11303025:173670,78643,0 -) -) -(183,45:31239538,11303025:1343490,485622,11795 -k183,45:31586881,11303025:347343 -g183,45:31786110,11303025 -) -g183,45:30911858,11303025 -g183,45:32583028,11303025 -) -(183,46:6630773,12144513:25952256,513147,11795 -g183,46:11218293,12144513 -h183,46:11218293,12144513:2490370,0,0 -h183,46:13708663,12144513:0,0,0 -g183,46:9121143,12144513 -(183,46:9121143,12144513:2097150,485622,11795 -k183,46:11218293,12144513:155974 -) -g183,46:12630593,12144513 -g183,46:13943935,12144513 -(183,46:14151443,12144513:501378,78643,0 -$183,46:14151443,12144513 -(183,46:14315297,12144513:173670,78643,0 -) -$183,46:14652821,12144513 -) -(183,46:14652821,12144513:501378,78643,0 -(183,46:14816675,12144513:173670,78643,0 -) -) -(183,46:15154199,12144513:501378,78643,0 -(183,46:15318053,12144513:173670,78643,0 -) -) -(183,46:15655577,12144513:501378,78643,0 -(183,46:15819431,12144513:173670,78643,0 -) -) -(183,46:16156955,12144513:501378,78643,0 -(183,46:16320809,12144513:173670,78643,0 -) -) -(183,46:16658333,12144513:501378,78643,0 -(183,46:16822187,12144513:173670,78643,0 -) -) -(183,46:17159711,12144513:501378,78643,0 -(183,46:17323565,12144513:173670,78643,0 -) -) -(183,46:17661089,12144513:501378,78643,0 -(183,46:17824943,12144513:173670,78643,0 -) -) -(183,46:18162467,12144513:501378,78643,0 -(183,46:18326321,12144513:173670,78643,0 -) -) -(183,46:18663845,12144513:501378,78643,0 -(183,46:18827699,12144513:173670,78643,0 -) -) -(183,46:19165223,12144513:501378,78643,0 -(183,46:19329077,12144513:173670,78643,0 -) -) -(183,46:19666601,12144513:501378,78643,0 -(183,46:19830455,12144513:173670,78643,0 -) -) -(183,46:20167979,12144513:501378,78643,0 -(183,46:20331833,12144513:173670,78643,0 -) -) -(183,46:20669357,12144513:501378,78643,0 -(183,46:20833211,12144513:173670,78643,0 -) -) -(183,46:21170735,12144513:501378,78643,0 -(183,46:21334589,12144513:173670,78643,0 -) -) -(183,46:21672113,12144513:501378,78643,0 -(183,46:21835967,12144513:173670,78643,0 -) -) -(183,46:22173491,12144513:501378,78643,0 -(183,46:22337345,12144513:173670,78643,0 -) -) -(183,46:22674869,12144513:501378,78643,0 -(183,46:22838723,12144513:173670,78643,0 -) -) -(183,46:23176247,12144513:501378,78643,0 -(183,46:23340101,12144513:173670,78643,0 -) -) -(183,46:23677625,12144513:501378,78643,0 -(183,46:23841479,12144513:173670,78643,0 -) -) -(183,46:24179003,12144513:501378,78643,0 -(183,46:24342857,12144513:173670,78643,0 -) -) -(183,46:24680381,12144513:501378,78643,0 -(183,46:24844235,12144513:173670,78643,0 -) -) -(183,46:25181759,12144513:501378,78643,0 -(183,46:25345613,12144513:173670,78643,0 -) -) -(183,46:25683137,12144513:501378,78643,0 -(183,46:25846991,12144513:173670,78643,0 -) -) -(183,46:26184515,12144513:501378,78643,0 -(183,46:26348369,12144513:173670,78643,0 -) -) -(183,46:26685893,12144513:501378,78643,0 -(183,46:26849747,12144513:173670,78643,0 -) -) -(183,46:27187271,12144513:501378,78643,0 -(183,46:27351125,12144513:173670,78643,0 -) -) -(183,46:27688649,12144513:501378,78643,0 -(183,46:27852503,12144513:173670,78643,0 -) -) -(183,46:28190027,12144513:501378,78643,0 -(183,46:28353881,12144513:173670,78643,0 -) -) -(183,46:28691405,12144513:501378,78643,0 -(183,46:28855259,12144513:173670,78643,0 -) -) -(183,46:29192783,12144513:501378,78643,0 -(183,46:29356637,12144513:173670,78643,0 -) -) -(183,46:29694161,12144513:501378,78643,0 -(183,46:29858015,12144513:173670,78643,0 -) -) -(183,46:30195539,12144513:501378,78643,0 -(183,46:30359393,12144513:173670,78643,0 -) -) -(183,46:30696917,12144513:501378,78643,0 -(183,46:30860771,12144513:173670,78643,0 -) -) -(183,46:31239539,12144513:1343490,485622,11795 -k183,46:31586882,12144513:347343 -g183,46:31786111,12144513 -) -g183,46:30911859,12144513 -g183,46:32583029,12144513 -) -(183,47:6630773,12986001:25952256,505283,134348 -g183,47:9121143,12986001 -h183,47:9121143,12986001:983040,0,0 -h183,47:10104183,12986001:0,0,0 -g183,47:7613813,12986001 -(183,47:7613813,12986001:1507330,485622,0 -k183,47:9121143,12986001:138283 -) -g183,47:11857271,12986001 -g183,47:12669262,12986001 -g183,47:14257854,12986001 -g183,47:14257854,12986001 -(183,47:14652821,12986001:501378,78643,0 -$183,47:14652821,12986001 -(183,47:14816675,12986001:173670,78643,0 -) -$183,47:15154199,12986001 -) -(183,47:15154199,12986001:501378,78643,0 -(183,47:15318053,12986001:173670,78643,0 -) -) -(183,47:15655577,12986001:501378,78643,0 -(183,47:15819431,12986001:173670,78643,0 -) -) -(183,47:16156955,12986001:501378,78643,0 -(183,47:16320809,12986001:173670,78643,0 -) -) -(183,47:16658333,12986001:501378,78643,0 -(183,47:16822187,12986001:173670,78643,0 -) -) -(183,47:17159711,12986001:501378,78643,0 -(183,47:17323565,12986001:173670,78643,0 -) -) -(183,47:17661089,12986001:501378,78643,0 -(183,47:17824943,12986001:173670,78643,0 -) -) -(183,47:18162467,12986001:501378,78643,0 -(183,47:18326321,12986001:173670,78643,0 -) -) -(183,47:18663845,12986001:501378,78643,0 -(183,47:18827699,12986001:173670,78643,0 -) -) -(183,47:19165223,12986001:501378,78643,0 -(183,47:19329077,12986001:173670,78643,0 -) -) -(183,47:19666601,12986001:501378,78643,0 -(183,47:19830455,12986001:173670,78643,0 -) -) -(183,47:20167979,12986001:501378,78643,0 -(183,47:20331833,12986001:173670,78643,0 -) -) -(183,47:20669357,12986001:501378,78643,0 -(183,47:20833211,12986001:173670,78643,0 -) -) -(183,47:21170735,12986001:501378,78643,0 -(183,47:21334589,12986001:173670,78643,0 -) -) -(183,47:21672113,12986001:501378,78643,0 -(183,47:21835967,12986001:173670,78643,0 -) -) -(183,47:22173491,12986001:501378,78643,0 -(183,47:22337345,12986001:173670,78643,0 -) -) -(183,47:22674869,12986001:501378,78643,0 -(183,47:22838723,12986001:173670,78643,0 -) -) -(183,47:23176247,12986001:501378,78643,0 -(183,47:23340101,12986001:173670,78643,0 -) -) -(183,47:23677625,12986001:501378,78643,0 -(183,47:23841479,12986001:173670,78643,0 -) -) -(183,47:24179003,12986001:501378,78643,0 -(183,47:24342857,12986001:173670,78643,0 -) -) -(183,47:24680381,12986001:501378,78643,0 -(183,47:24844235,12986001:173670,78643,0 -) -) -(183,47:25181759,12986001:501378,78643,0 -(183,47:25345613,12986001:173670,78643,0 -) -) -(183,47:25683137,12986001:501378,78643,0 -(183,47:25846991,12986001:173670,78643,0 -) -) -(183,47:26184515,12986001:501378,78643,0 -(183,47:26348369,12986001:173670,78643,0 -) -) -(183,47:26685893,12986001:501378,78643,0 -(183,47:26849747,12986001:173670,78643,0 -) -) -(183,47:27187271,12986001:501378,78643,0 -(183,47:27351125,12986001:173670,78643,0 -) -) -(183,47:27688649,12986001:501378,78643,0 -(183,47:27852503,12986001:173670,78643,0 -) -) -(183,47:28190027,12986001:501378,78643,0 -(183,47:28353881,12986001:173670,78643,0 -) -) -(183,47:28691405,12986001:501378,78643,0 -(183,47:28855259,12986001:173670,78643,0 -) -) -(183,47:29192783,12986001:501378,78643,0 -(183,47:29356637,12986001:173670,78643,0 -) -) -(183,47:29694161,12986001:501378,78643,0 -(183,47:29858015,12986001:173670,78643,0 -) -) -(183,47:30195539,12986001:501378,78643,0 -(183,47:30359393,12986001:173670,78643,0 -) -) -(183,47:30696917,12986001:501378,78643,0 -(183,47:30860771,12986001:173670,78643,0 -) -) -(183,47:31239538,12986001:1343490,485622,11795 -k183,47:31586881,12986001:347343 -g183,47:31786110,12986001 -) -g183,47:30911858,12986001 -g183,47:32583028,12986001 -) -(183,48:6630773,13827489:25952256,505283,134348 -g183,48:9121143,13827489 -h183,48:9121143,13827489:983040,0,0 -h183,48:10104183,13827489:0,0,0 -g183,48:7613813,13827489 -(183,48:7613813,13827489:1507330,485622,11795 -k183,48:9121143,13827489:138283 -) -g183,48:11799599,13827489 -g183,48:11799599,13827489 -(183,48:12145931,13827489:501378,78643,0 -$183,48:12145931,13827489 -(183,48:12309785,13827489:173670,78643,0 -) -$183,48:12647309,13827489 -) -(183,48:12647309,13827489:501378,78643,0 -(183,48:12811163,13827489:173670,78643,0 -) -) -(183,48:13148687,13827489:501378,78643,0 -(183,48:13312541,13827489:173670,78643,0 -) -) -(183,48:13650065,13827489:501378,78643,0 -(183,48:13813919,13827489:173670,78643,0 -) -) -(183,48:14151443,13827489:501378,78643,0 -(183,48:14315297,13827489:173670,78643,0 -) -) -(183,48:14652821,13827489:501378,78643,0 -(183,48:14816675,13827489:173670,78643,0 -) -) -(183,48:15154199,13827489:501378,78643,0 -(183,48:15318053,13827489:173670,78643,0 -) -) -(183,48:15655577,13827489:501378,78643,0 -(183,48:15819431,13827489:173670,78643,0 -) -) -(183,48:16156955,13827489:501378,78643,0 -(183,48:16320809,13827489:173670,78643,0 -) -) -(183,48:16658333,13827489:501378,78643,0 -(183,48:16822187,13827489:173670,78643,0 -) -) -(183,48:17159711,13827489:501378,78643,0 -(183,48:17323565,13827489:173670,78643,0 -) -) -(183,48:17661089,13827489:501378,78643,0 -(183,48:17824943,13827489:173670,78643,0 -) -) -(183,48:18162467,13827489:501378,78643,0 -(183,48:18326321,13827489:173670,78643,0 -) -) -(183,48:18663845,13827489:501378,78643,0 -(183,48:18827699,13827489:173670,78643,0 -) -) -(183,48:19165223,13827489:501378,78643,0 -(183,48:19329077,13827489:173670,78643,0 -) -) -(183,48:19666601,13827489:501378,78643,0 -(183,48:19830455,13827489:173670,78643,0 -) -) -(183,48:20167979,13827489:501378,78643,0 -(183,48:20331833,13827489:173670,78643,0 -) -) -(183,48:20669357,13827489:501378,78643,0 -(183,48:20833211,13827489:173670,78643,0 -) -) -(183,48:21170735,13827489:501378,78643,0 -(183,48:21334589,13827489:173670,78643,0 -) -) -(183,48:21672113,13827489:501378,78643,0 -(183,48:21835967,13827489:173670,78643,0 -) -) -(183,48:22173491,13827489:501378,78643,0 -(183,48:22337345,13827489:173670,78643,0 -) -) -(183,48:22674869,13827489:501378,78643,0 -(183,48:22838723,13827489:173670,78643,0 -) -) -(183,48:23176247,13827489:501378,78643,0 -(183,48:23340101,13827489:173670,78643,0 -) -) -(183,48:23677625,13827489:501378,78643,0 -(183,48:23841479,13827489:173670,78643,0 -) -) -(183,48:24179003,13827489:501378,78643,0 -(183,48:24342857,13827489:173670,78643,0 -) -) -(183,48:24680381,13827489:501378,78643,0 -(183,48:24844235,13827489:173670,78643,0 -) -) -(183,48:25181759,13827489:501378,78643,0 -(183,48:25345613,13827489:173670,78643,0 -) -) -(183,48:25683137,13827489:501378,78643,0 -(183,48:25846991,13827489:173670,78643,0 -) -) -(183,48:26184515,13827489:501378,78643,0 -(183,48:26348369,13827489:173670,78643,0 -) -) -(183,48:26685893,13827489:501378,78643,0 -(183,48:26849747,13827489:173670,78643,0 -) -) -(183,48:27187271,13827489:501378,78643,0 -(183,48:27351125,13827489:173670,78643,0 -) -) -(183,48:27688649,13827489:501378,78643,0 -(183,48:27852503,13827489:173670,78643,0 -) -) -(183,48:28190027,13827489:501378,78643,0 -(183,48:28353881,13827489:173670,78643,0 -) -) -(183,48:28691405,13827489:501378,78643,0 -(183,48:28855259,13827489:173670,78643,0 -) -) -(183,48:29192783,13827489:501378,78643,0 -(183,48:29356637,13827489:173670,78643,0 -) -) -(183,48:29694161,13827489:501378,78643,0 -(183,48:29858015,13827489:173670,78643,0 -) -) -(183,48:30195539,13827489:501378,78643,0 -(183,48:30359393,13827489:173670,78643,0 -) -) -(183,48:30696917,13827489:501378,78643,0 -(183,48:30860771,13827489:173670,78643,0 -) -) -(183,48:31239539,13827489:1343490,485622,11795 -k183,48:31586882,13827489:347343 -g183,48:31786111,13827489 -) -g183,48:30911859,13827489 -g183,48:32583029,13827489 -) -(183,49:6630773,14668977:25952256,505283,134348 -g183,49:9121143,14668977 -h183,49:9121143,14668977:983040,0,0 -h183,49:10104183,14668977:0,0,0 -g183,49:7613813,14668977 -(183,49:7613813,14668977:1507330,485622,11795 -k183,49:9121143,14668977:138283 -) -g183,49:11690154,14668977 -g183,49:14291933,14668977 -g183,49:14291933,14668977 -(183,49:14652821,14668977:501378,78643,0 -$183,49:14652821,14668977 -(183,49:14816675,14668977:173670,78643,0 -) -$183,49:15154199,14668977 -) -(183,49:15154199,14668977:501378,78643,0 -(183,49:15318053,14668977:173670,78643,0 -) -) -(183,49:15655577,14668977:501378,78643,0 -(183,49:15819431,14668977:173670,78643,0 -) -) -(183,49:16156955,14668977:501378,78643,0 -(183,49:16320809,14668977:173670,78643,0 -) -) -(183,49:16658333,14668977:501378,78643,0 -(183,49:16822187,14668977:173670,78643,0 -) -) -(183,49:17159711,14668977:501378,78643,0 -(183,49:17323565,14668977:173670,78643,0 -) -) -(183,49:17661089,14668977:501378,78643,0 -(183,49:17824943,14668977:173670,78643,0 -) -) -(183,49:18162467,14668977:501378,78643,0 -(183,49:18326321,14668977:173670,78643,0 -) -) -(183,49:18663845,14668977:501378,78643,0 -(183,49:18827699,14668977:173670,78643,0 -) -) -(183,49:19165223,14668977:501378,78643,0 -(183,49:19329077,14668977:173670,78643,0 -) -) -(183,49:19666601,14668977:501378,78643,0 -(183,49:19830455,14668977:173670,78643,0 -) -) -(183,49:20167979,14668977:501378,78643,0 -(183,49:20331833,14668977:173670,78643,0 -) -) -(183,49:20669357,14668977:501378,78643,0 -(183,49:20833211,14668977:173670,78643,0 -) -) -(183,49:21170735,14668977:501378,78643,0 -(183,49:21334589,14668977:173670,78643,0 -) -) -(183,49:21672113,14668977:501378,78643,0 -(183,49:21835967,14668977:173670,78643,0 -) -) -(183,49:22173491,14668977:501378,78643,0 -(183,49:22337345,14668977:173670,78643,0 -) -) -(183,49:22674869,14668977:501378,78643,0 -(183,49:22838723,14668977:173670,78643,0 -) -) -(183,49:23176247,14668977:501378,78643,0 -(183,49:23340101,14668977:173670,78643,0 -) -) -(183,49:23677625,14668977:501378,78643,0 -(183,49:23841479,14668977:173670,78643,0 -) -) -(183,49:24179003,14668977:501378,78643,0 -(183,49:24342857,14668977:173670,78643,0 -) -) -(183,49:24680381,14668977:501378,78643,0 -(183,49:24844235,14668977:173670,78643,0 -) -) -(183,49:25181759,14668977:501378,78643,0 -(183,49:25345613,14668977:173670,78643,0 -) -) -(183,49:25683137,14668977:501378,78643,0 -(183,49:25846991,14668977:173670,78643,0 -) -) -(183,49:26184515,14668977:501378,78643,0 -(183,49:26348369,14668977:173670,78643,0 -) -) -(183,49:26685893,14668977:501378,78643,0 -(183,49:26849747,14668977:173670,78643,0 -) -) -(183,49:27187271,14668977:501378,78643,0 -(183,49:27351125,14668977:173670,78643,0 -) -) -(183,49:27688649,14668977:501378,78643,0 -(183,49:27852503,14668977:173670,78643,0 -) -) -(183,49:28190027,14668977:501378,78643,0 -(183,49:28353881,14668977:173670,78643,0 -) -) -(183,49:28691405,14668977:501378,78643,0 -(183,49:28855259,14668977:173670,78643,0 -) -) -(183,49:29192783,14668977:501378,78643,0 -(183,49:29356637,14668977:173670,78643,0 -) -) -(183,49:29694161,14668977:501378,78643,0 -(183,49:29858015,14668977:173670,78643,0 -) -) -(183,49:30195539,14668977:501378,78643,0 -(183,49:30359393,14668977:173670,78643,0 -) -) -(183,49:30696917,14668977:501378,78643,0 -(183,49:30860771,14668977:173670,78643,0 -) -) -(183,49:31239539,14668977:1343490,485622,11795 -k183,49:31586882,14668977:347343 -g183,49:31786111,14668977 -) -g183,49:30911859,14668977 -g183,49:32583029,14668977 -) -(183,50:6630773,16165825:25952256,505283,134348 -g183,50:7613813,16165825 -h183,50:7613813,16165825:0,0,0 -g183,50:6630773,16165825 -(183,50:6630773,16165825:983040,485622,11795 -k183,50:7613813,16165825:574751 -) -g183,50:9083130,16165825 -g183,50:9759461,16165825 -g183,50:13090000,16165825 -g183,50:17603464,16165825 -g183,50:19028216,16165825 -k183,50:26537659,16165825:4701881 -k183,50:31239539,16165825:4701880 -(183,50:31239539,16165825:1343490,485622,11795 -k183,50:31766450,16165825:526911 -) -g183,50:31239539,16165825 -g183,50:32583029,16165825 -) -(183,51:6630773,17007313:25952256,513147,126483 -g183,51:9121143,17007313 -h183,51:9121143,17007313:983040,0,0 -h183,51:10104183,17007313:0,0,0 -g183,51:7613813,17007313 -(183,51:7613813,17007313:1507330,485622,11795 -k183,51:9121143,17007313:536742 -) -g183,51:10959427,17007313 -g183,51:11817948,17007313 -g183,51:13220418,17007313 -g183,51:15837270,17007313 -g183,51:15837270,17007313 -(183,51:16156955,17007313:501378,78643,0 -$183,51:16156955,17007313 -(183,51:16320809,17007313:173670,78643,0 -) -$183,51:16658333,17007313 -) -(183,51:16658333,17007313:501378,78643,0 -(183,51:16822187,17007313:173670,78643,0 -) -) -(183,51:17159711,17007313:501378,78643,0 -(183,51:17323565,17007313:173670,78643,0 -) -) -(183,51:17661089,17007313:501378,78643,0 -(183,51:17824943,17007313:173670,78643,0 -) -) -(183,51:18162467,17007313:501378,78643,0 -(183,51:18326321,17007313:173670,78643,0 -) -) -(183,51:18663845,17007313:501378,78643,0 -(183,51:18827699,17007313:173670,78643,0 -) -) -(183,51:19165223,17007313:501378,78643,0 -(183,51:19329077,17007313:173670,78643,0 -) -) -(183,51:19666601,17007313:501378,78643,0 -(183,51:19830455,17007313:173670,78643,0 -) -) -(183,51:20167979,17007313:501378,78643,0 -(183,51:20331833,17007313:173670,78643,0 -) -) -(183,51:20669357,17007313:501378,78643,0 -(183,51:20833211,17007313:173670,78643,0 -) -) -(183,51:21170735,17007313:501378,78643,0 -(183,51:21334589,17007313:173670,78643,0 -) -) -(183,51:21672113,17007313:501378,78643,0 -(183,51:21835967,17007313:173670,78643,0 -) -) -(183,51:22173491,17007313:501378,78643,0 -(183,51:22337345,17007313:173670,78643,0 -) -) -(183,51:22674869,17007313:501378,78643,0 -(183,51:22838723,17007313:173670,78643,0 -) -) -(183,51:23176247,17007313:501378,78643,0 -(183,51:23340101,17007313:173670,78643,0 -) -) -(183,51:23677625,17007313:501378,78643,0 -(183,51:23841479,17007313:173670,78643,0 -) -) -(183,51:24179003,17007313:501378,78643,0 -(183,51:24342857,17007313:173670,78643,0 -) -) -(183,51:24680381,17007313:501378,78643,0 -(183,51:24844235,17007313:173670,78643,0 -) -) -(183,51:25181759,17007313:501378,78643,0 -(183,51:25345613,17007313:173670,78643,0 -) -) -(183,51:25683137,17007313:501378,78643,0 -(183,51:25846991,17007313:173670,78643,0 -) -) -(183,51:26184515,17007313:501378,78643,0 -(183,51:26348369,17007313:173670,78643,0 -) -) -(183,51:26685893,17007313:501378,78643,0 -(183,51:26849747,17007313:173670,78643,0 -) -) -(183,51:27187271,17007313:501378,78643,0 -(183,51:27351125,17007313:173670,78643,0 -) -) -(183,51:27688649,17007313:501378,78643,0 -(183,51:27852503,17007313:173670,78643,0 -) -) -(183,51:28190027,17007313:501378,78643,0 -(183,51:28353881,17007313:173670,78643,0 -) -) -(183,51:28691405,17007313:501378,78643,0 -(183,51:28855259,17007313:173670,78643,0 -) -) -(183,51:29192783,17007313:501378,78643,0 -(183,51:29356637,17007313:173670,78643,0 -) -) -(183,51:29694161,17007313:501378,78643,0 -(183,51:29858015,17007313:173670,78643,0 -) -) -(183,51:30195539,17007313:501378,78643,0 -(183,51:30359393,17007313:173670,78643,0 -) -) -(183,51:30696917,17007313:501378,78643,0 -(183,51:30860771,17007313:173670,78643,0 -) -) -(183,51:31239539,17007313:1343490,485622,11795 -k183,51:31586882,17007313:347343 -g183,51:31786111,17007313 -) -g183,51:30911859,17007313 -g183,51:32583029,17007313 -) -(183,52:6630773,17848801:25952256,485622,134348 -g183,52:9121143,17848801 -h183,52:9121143,17848801:983040,0,0 -h183,52:10104183,17848801:0,0,0 -g183,52:7613813,17848801 -(183,52:7613813,17848801:1507330,485622,11795 -k183,52:9121143,17848801:536742 -) -g183,52:11663284,17848801 -g183,52:14023890,17848801 -g183,52:14023890,17848801 -(183,52:14151443,17848801:501378,78643,0 -$183,52:14151443,17848801 -(183,52:14315297,17848801:173670,78643,0 -) -$183,52:14652821,17848801 -) -(183,52:14652821,17848801:501378,78643,0 -(183,52:14816675,17848801:173670,78643,0 -) -) -(183,52:15154199,17848801:501378,78643,0 -(183,52:15318053,17848801:173670,78643,0 -) -) -(183,52:15655577,17848801:501378,78643,0 -(183,52:15819431,17848801:173670,78643,0 -) -) -(183,52:16156955,17848801:501378,78643,0 -(183,52:16320809,17848801:173670,78643,0 -) -) -(183,52:16658333,17848801:501378,78643,0 -(183,52:16822187,17848801:173670,78643,0 -) -) -(183,52:17159711,17848801:501378,78643,0 -(183,52:17323565,17848801:173670,78643,0 -) -) -(183,52:17661089,17848801:501378,78643,0 -(183,52:17824943,17848801:173670,78643,0 -) -) -(183,52:18162467,17848801:501378,78643,0 -(183,52:18326321,17848801:173670,78643,0 -) -) -(183,52:18663845,17848801:501378,78643,0 -(183,52:18827699,17848801:173670,78643,0 -) -) -(183,52:19165223,17848801:501378,78643,0 -(183,52:19329077,17848801:173670,78643,0 -) -) -(183,52:19666601,17848801:501378,78643,0 -(183,52:19830455,17848801:173670,78643,0 -) -) -(183,52:20167979,17848801:501378,78643,0 -(183,52:20331833,17848801:173670,78643,0 -) -) -(183,52:20669357,17848801:501378,78643,0 -(183,52:20833211,17848801:173670,78643,0 -) -) -(183,52:21170735,17848801:501378,78643,0 -(183,52:21334589,17848801:173670,78643,0 -) -) -(183,52:21672113,17848801:501378,78643,0 -(183,52:21835967,17848801:173670,78643,0 -) -) -(183,52:22173491,17848801:501378,78643,0 -(183,52:22337345,17848801:173670,78643,0 -) -) -(183,52:22674869,17848801:501378,78643,0 -(183,52:22838723,17848801:173670,78643,0 -) -) -(183,52:23176247,17848801:501378,78643,0 -(183,52:23340101,17848801:173670,78643,0 -) -) -(183,52:23677625,17848801:501378,78643,0 -(183,52:23841479,17848801:173670,78643,0 -) -) -(183,52:24179003,17848801:501378,78643,0 -(183,52:24342857,17848801:173670,78643,0 -) -) -(183,52:24680381,17848801:501378,78643,0 -(183,52:24844235,17848801:173670,78643,0 -) -) -(183,52:25181759,17848801:501378,78643,0 -(183,52:25345613,17848801:173670,78643,0 -) -) -(183,52:25683137,17848801:501378,78643,0 -(183,52:25846991,17848801:173670,78643,0 -) -) -(183,52:26184515,17848801:501378,78643,0 -(183,52:26348369,17848801:173670,78643,0 -) -) -(183,52:26685893,17848801:501378,78643,0 -(183,52:26849747,17848801:173670,78643,0 -) -) -(183,52:27187271,17848801:501378,78643,0 -(183,52:27351125,17848801:173670,78643,0 -) -) -(183,52:27688649,17848801:501378,78643,0 -(183,52:27852503,17848801:173670,78643,0 -) -) -(183,52:28190027,17848801:501378,78643,0 -(183,52:28353881,17848801:173670,78643,0 -) -) -(183,52:28691405,17848801:501378,78643,0 -(183,52:28855259,17848801:173670,78643,0 -) -) -(183,52:29192783,17848801:501378,78643,0 -(183,52:29356637,17848801:173670,78643,0 -) -) -(183,52:29694161,17848801:501378,78643,0 -(183,52:29858015,17848801:173670,78643,0 -) -) -(183,52:30195539,17848801:501378,78643,0 -(183,52:30359393,17848801:173670,78643,0 -) -) -(183,52:30696917,17848801:501378,78643,0 -(183,52:30860771,17848801:173670,78643,0 -) -) -(183,52:31239538,17848801:1343490,485622,11795 -k183,52:31586881,17848801:347343 -g183,52:31786110,17848801 -) -g183,52:30911858,17848801 -g183,52:32583028,17848801 -) -(183,53:6630773,18690289:25952256,505283,126483 -g183,53:11218293,18690289 -h183,53:11218293,18690289:2490370,0,0 -h183,53:13708663,18690289:0,0,0 -g183,53:9121143,18690289 -(183,53:9121143,18690289:2097150,485622,11795 -k183,53:11218293,18690289:554432 -) -g183,53:13051335,18690289 -g183,53:13782061,18690289 -g183,53:14337150,18690289 -g183,53:16495251,18690289 -(183,53:16658333,18690289:501378,78643,0 -$183,53:16658333,18690289 -(183,53:16822187,18690289:173670,78643,0 -) -$183,53:17159711,18690289 -) -(183,53:17159711,18690289:501378,78643,0 -(183,53:17323565,18690289:173670,78643,0 -) -) -(183,53:17661089,18690289:501378,78643,0 -(183,53:17824943,18690289:173670,78643,0 -) -) -(183,53:18162467,18690289:501378,78643,0 -(183,53:18326321,18690289:173670,78643,0 -) -) -(183,53:18663845,18690289:501378,78643,0 -(183,53:18827699,18690289:173670,78643,0 -) -) -(183,53:19165223,18690289:501378,78643,0 -(183,53:19329077,18690289:173670,78643,0 -) -) -(183,53:19666601,18690289:501378,78643,0 -(183,53:19830455,18690289:173670,78643,0 -) -) -(183,53:20167979,18690289:501378,78643,0 -(183,53:20331833,18690289:173670,78643,0 -) -) -(183,53:20669357,18690289:501378,78643,0 -(183,53:20833211,18690289:173670,78643,0 -) -) -(183,53:21170735,18690289:501378,78643,0 -(183,53:21334589,18690289:173670,78643,0 -) -) -(183,53:21672113,18690289:501378,78643,0 -(183,53:21835967,18690289:173670,78643,0 -) -) -(183,53:22173491,18690289:501378,78643,0 -(183,53:22337345,18690289:173670,78643,0 -) -) -(183,53:22674869,18690289:501378,78643,0 -(183,53:22838723,18690289:173670,78643,0 -) -) -(183,53:23176247,18690289:501378,78643,0 -(183,53:23340101,18690289:173670,78643,0 -) -) -(183,53:23677625,18690289:501378,78643,0 -(183,53:23841479,18690289:173670,78643,0 -) -) -(183,53:24179003,18690289:501378,78643,0 -(183,53:24342857,18690289:173670,78643,0 -) -) -(183,53:24680381,18690289:501378,78643,0 -(183,53:24844235,18690289:173670,78643,0 -) -) -(183,53:25181759,18690289:501378,78643,0 -(183,53:25345613,18690289:173670,78643,0 -) -) -(183,53:25683137,18690289:501378,78643,0 -(183,53:25846991,18690289:173670,78643,0 -) -) -(183,53:26184515,18690289:501378,78643,0 -(183,53:26348369,18690289:173670,78643,0 -) -) -(183,53:26685893,18690289:501378,78643,0 -(183,53:26849747,18690289:173670,78643,0 -) -) -(183,53:27187271,18690289:501378,78643,0 -(183,53:27351125,18690289:173670,78643,0 -) -) -(183,53:27688649,18690289:501378,78643,0 -(183,53:27852503,18690289:173670,78643,0 -) -) -(183,53:28190027,18690289:501378,78643,0 -(183,53:28353881,18690289:173670,78643,0 -) -) -(183,53:28691405,18690289:501378,78643,0 -(183,53:28855259,18690289:173670,78643,0 -) -) -(183,53:29192783,18690289:501378,78643,0 -(183,53:29356637,18690289:173670,78643,0 -) -) -(183,53:29694161,18690289:501378,78643,0 -(183,53:29858015,18690289:173670,78643,0 -) -) -(183,53:30195539,18690289:501378,78643,0 -(183,53:30359393,18690289:173670,78643,0 -) -) -(183,53:30696917,18690289:501378,78643,0 -(183,53:30860771,18690289:173670,78643,0 -) -) -(183,53:31239539,18690289:1343490,485622,11795 -k183,53:31586882,18690289:347343 -g183,53:31786111,18690289 -) -g183,53:30911859,18690289 -g183,53:32583029,18690289 -) -(183,54:6630773,19531777:25952256,505283,126483 -g183,54:11218293,19531777 -h183,54:11218293,19531777:2490370,0,0 -h183,54:13708663,19531777:0,0,0 -g183,54:9121143,19531777 -(183,54:9121143,19531777:2097150,485622,11795 -k183,54:11218293,19531777:554432 -) -g183,54:12838343,19531777 -g183,54:13852840,19531777 -g183,54:14920421,19531777 -g183,54:16212135,19531777 -g183,54:16767224,19531777 -g183,54:18925325,19531777 -(183,54:19165223,19531777:501378,78643,0 -$183,54:19165223,19531777 -(183,54:19329077,19531777:173670,78643,0 -) -$183,54:19666601,19531777 -) -(183,54:19666601,19531777:501378,78643,0 -(183,54:19830455,19531777:173670,78643,0 -) -) -(183,54:20167979,19531777:501378,78643,0 -(183,54:20331833,19531777:173670,78643,0 -) -) -(183,54:20669357,19531777:501378,78643,0 -(183,54:20833211,19531777:173670,78643,0 -) -) -(183,54:21170735,19531777:501378,78643,0 -(183,54:21334589,19531777:173670,78643,0 -) -) -(183,54:21672113,19531777:501378,78643,0 -(183,54:21835967,19531777:173670,78643,0 -) -) -(183,54:22173491,19531777:501378,78643,0 -(183,54:22337345,19531777:173670,78643,0 -) -) -(183,54:22674869,19531777:501378,78643,0 -(183,54:22838723,19531777:173670,78643,0 -) -) -(183,54:23176247,19531777:501378,78643,0 -(183,54:23340101,19531777:173670,78643,0 -) -) -(183,54:23677625,19531777:501378,78643,0 -(183,54:23841479,19531777:173670,78643,0 -) -) -(183,54:24179003,19531777:501378,78643,0 -(183,54:24342857,19531777:173670,78643,0 -) -) -(183,54:24680381,19531777:501378,78643,0 -(183,54:24844235,19531777:173670,78643,0 -) -) -(183,54:25181759,19531777:501378,78643,0 -(183,54:25345613,19531777:173670,78643,0 -) -) -(183,54:25683137,19531777:501378,78643,0 -(183,54:25846991,19531777:173670,78643,0 -) -) -(183,54:26184515,19531777:501378,78643,0 -(183,54:26348369,19531777:173670,78643,0 -) -) -(183,54:26685893,19531777:501378,78643,0 -(183,54:26849747,19531777:173670,78643,0 -) -) -(183,54:27187271,19531777:501378,78643,0 -(183,54:27351125,19531777:173670,78643,0 -) -) -(183,54:27688649,19531777:501378,78643,0 -(183,54:27852503,19531777:173670,78643,0 -) -) -(183,54:28190027,19531777:501378,78643,0 -(183,54:28353881,19531777:173670,78643,0 -) -) -(183,54:28691405,19531777:501378,78643,0 -(183,54:28855259,19531777:173670,78643,0 -) -) -(183,54:29192783,19531777:501378,78643,0 -(183,54:29356637,19531777:173670,78643,0 -) -) -(183,54:29694161,19531777:501378,78643,0 -(183,54:29858015,19531777:173670,78643,0 -) -) -(183,54:30195539,19531777:501378,78643,0 -(183,54:30359393,19531777:173670,78643,0 -) -) -(183,54:30696917,19531777:501378,78643,0 -(183,54:30860771,19531777:173670,78643,0 -) -) -(183,54:31239539,19531777:1343490,485622,11795 -k183,54:31586882,19531777:347343 -g183,54:31786111,19531777 -) -g183,54:30911859,19531777 -g183,54:32583029,19531777 -) -(183,55:6630773,20373265:25952256,485622,126483 -g183,55:11218293,20373265 -h183,55:11218293,20373265:2490370,0,0 -h183,55:13708663,20373265:0,0,0 -g183,55:9121143,20373265 -(183,55:9121143,20373265:2097150,485622,11795 -k183,55:11218293,20373265:554432 -) -g183,55:12838343,20373265 -g183,55:13689000,20373265 -g183,55:15503036,20373265 -g183,55:16058125,20373265 -g183,55:17889201,20373265 -(183,55:18162467,20373265:501378,78643,0 -$183,55:18162467,20373265 -(183,55:18326321,20373265:173670,78643,0 -) -$183,55:18663845,20373265 -) -(183,55:18663845,20373265:501378,78643,0 -(183,55:18827699,20373265:173670,78643,0 -) -) -(183,55:19165223,20373265:501378,78643,0 -(183,55:19329077,20373265:173670,78643,0 -) -) -(183,55:19666601,20373265:501378,78643,0 -(183,55:19830455,20373265:173670,78643,0 -) -) -(183,55:20167979,20373265:501378,78643,0 -(183,55:20331833,20373265:173670,78643,0 -) -) -(183,55:20669357,20373265:501378,78643,0 -(183,55:20833211,20373265:173670,78643,0 -) -) -(183,55:21170735,20373265:501378,78643,0 -(183,55:21334589,20373265:173670,78643,0 -) -) -(183,55:21672113,20373265:501378,78643,0 -(183,55:21835967,20373265:173670,78643,0 -) -) -(183,55:22173491,20373265:501378,78643,0 -(183,55:22337345,20373265:173670,78643,0 -) -) -(183,55:22674869,20373265:501378,78643,0 -(183,55:22838723,20373265:173670,78643,0 -) -) -(183,55:23176247,20373265:501378,78643,0 -(183,55:23340101,20373265:173670,78643,0 -) -) -(183,55:23677625,20373265:501378,78643,0 -(183,55:23841479,20373265:173670,78643,0 -) -) -(183,55:24179003,20373265:501378,78643,0 -(183,55:24342857,20373265:173670,78643,0 -) -) -(183,55:24680381,20373265:501378,78643,0 -(183,55:24844235,20373265:173670,78643,0 -) -) -(183,55:25181759,20373265:501378,78643,0 -(183,55:25345613,20373265:173670,78643,0 -) -) -(183,55:25683137,20373265:501378,78643,0 -(183,55:25846991,20373265:173670,78643,0 -) -) -(183,55:26184515,20373265:501378,78643,0 -(183,55:26348369,20373265:173670,78643,0 -) -) -(183,55:26685893,20373265:501378,78643,0 -(183,55:26849747,20373265:173670,78643,0 -) -) -(183,55:27187271,20373265:501378,78643,0 -(183,55:27351125,20373265:173670,78643,0 -) -) -(183,55:27688649,20373265:501378,78643,0 -(183,55:27852503,20373265:173670,78643,0 -) -) -(183,55:28190027,20373265:501378,78643,0 -(183,55:28353881,20373265:173670,78643,0 -) -) -(183,55:28691405,20373265:501378,78643,0 -(183,55:28855259,20373265:173670,78643,0 -) -) -(183,55:29192783,20373265:501378,78643,0 -(183,55:29356637,20373265:173670,78643,0 -) -) -(183,55:29694161,20373265:501378,78643,0 -(183,55:29858015,20373265:173670,78643,0 -) -) -(183,55:30195539,20373265:501378,78643,0 -(183,55:30359393,20373265:173670,78643,0 -) -) -(183,55:30696917,20373265:501378,78643,0 -(183,55:30860771,20373265:173670,78643,0 -) -) -(183,55:31239539,20373265:1343490,485622,11795 -k183,55:31586882,20373265:347343 -g183,55:31786111,20373265 -) -g183,55:30911859,20373265 -g183,55:32583029,20373265 -) -(183,56:6630773,21214753:25952256,505283,126483 -g183,56:11218293,21214753 -h183,56:11218293,21214753:2490370,0,0 -h183,56:13708663,21214753:0,0,0 -g183,56:9121143,21214753 -(183,56:9121143,21214753:2097150,485622,11795 -k183,56:11218293,21214753:554432 -) -g183,56:12614209,21214753 -g183,56:14343704,21214753 -g183,56:15194361,21214753 -g183,56:16141356,21214753 -g183,56:21314112,21214753 -g183,56:22164769,21214753 -g183,56:24300587,21214753 -(183,56:24680381,21214753:501378,78643,0 -$183,56:24680381,21214753 -(183,56:24844235,21214753:173670,78643,0 -) -$183,56:25181759,21214753 -) -(183,56:25181759,21214753:501378,78643,0 -(183,56:25345613,21214753:173670,78643,0 -) -) -(183,56:25683137,21214753:501378,78643,0 -(183,56:25846991,21214753:173670,78643,0 -) -) -(183,56:26184515,21214753:501378,78643,0 -(183,56:26348369,21214753:173670,78643,0 -) -) -(183,56:26685893,21214753:501378,78643,0 -(183,56:26849747,21214753:173670,78643,0 -) -) -(183,56:27187271,21214753:501378,78643,0 -(183,56:27351125,21214753:173670,78643,0 -) -) -(183,56:27688649,21214753:501378,78643,0 -(183,56:27852503,21214753:173670,78643,0 -) -) -(183,56:28190027,21214753:501378,78643,0 -(183,56:28353881,21214753:173670,78643,0 -) -) -(183,56:28691405,21214753:501378,78643,0 -(183,56:28855259,21214753:173670,78643,0 -) -) -(183,56:29192783,21214753:501378,78643,0 -(183,56:29356637,21214753:173670,78643,0 -) -) -(183,56:29694161,21214753:501378,78643,0 -(183,56:29858015,21214753:173670,78643,0 -) -) -(183,56:30195539,21214753:501378,78643,0 -(183,56:30359393,21214753:173670,78643,0 -) -) -(183,56:30696917,21214753:501378,78643,0 -(183,56:30860771,21214753:173670,78643,0 -) -) -(183,56:31239539,21214753:1343490,485622,11795 -k183,56:31586882,21214753:347343 -g183,56:31786111,21214753 -) -g183,56:30911859,21214753 -g183,56:32583029,21214753 -) -(183,57:6630773,22056241:25952256,505283,134348 -g183,57:11218293,22056241 -h183,57:11218293,22056241:2490370,0,0 -h183,57:13708663,22056241:0,0,0 -g183,57:9121143,22056241 -(183,57:9121143,22056241:2097150,485622,11795 -k183,57:11218293,22056241:554432 -) -g183,57:14822117,22056241 -g183,57:16983494,22056241 -(183,57:17159711,22056241:501378,78643,0 -$183,57:17159711,22056241 -(183,57:17323565,22056241:173670,78643,0 -) -$183,57:17661089,22056241 -) -(183,57:17661089,22056241:501378,78643,0 -(183,57:17824943,22056241:173670,78643,0 -) -) -(183,57:18162467,22056241:501378,78643,0 -(183,57:18326321,22056241:173670,78643,0 -) -) -(183,57:18663845,22056241:501378,78643,0 -(183,57:18827699,22056241:173670,78643,0 -) -) -(183,57:19165223,22056241:501378,78643,0 -(183,57:19329077,22056241:173670,78643,0 -) -) -(183,57:19666601,22056241:501378,78643,0 -(183,57:19830455,22056241:173670,78643,0 -) -) -(183,57:20167979,22056241:501378,78643,0 -(183,57:20331833,22056241:173670,78643,0 -) -) -(183,57:20669357,22056241:501378,78643,0 -(183,57:20833211,22056241:173670,78643,0 -) -) -(183,57:21170735,22056241:501378,78643,0 -(183,57:21334589,22056241:173670,78643,0 -) -) -(183,57:21672113,22056241:501378,78643,0 -(183,57:21835967,22056241:173670,78643,0 -) -) -(183,57:22173491,22056241:501378,78643,0 -(183,57:22337345,22056241:173670,78643,0 -) -) -(183,57:22674869,22056241:501378,78643,0 -(183,57:22838723,22056241:173670,78643,0 -) -) -(183,57:23176247,22056241:501378,78643,0 -(183,57:23340101,22056241:173670,78643,0 -) -) -(183,57:23677625,22056241:501378,78643,0 -(183,57:23841479,22056241:173670,78643,0 -) -) -(183,57:24179003,22056241:501378,78643,0 -(183,57:24342857,22056241:173670,78643,0 -) -) -(183,57:24680381,22056241:501378,78643,0 -(183,57:24844235,22056241:173670,78643,0 -) -) -(183,57:25181759,22056241:501378,78643,0 -(183,57:25345613,22056241:173670,78643,0 -) -) -(183,57:25683137,22056241:501378,78643,0 -(183,57:25846991,22056241:173670,78643,0 -) -) -(183,57:26184515,22056241:501378,78643,0 -(183,57:26348369,22056241:173670,78643,0 -) -) -(183,57:26685893,22056241:501378,78643,0 -(183,57:26849747,22056241:173670,78643,0 -) -) -(183,57:27187271,22056241:501378,78643,0 -(183,57:27351125,22056241:173670,78643,0 -) -) -(183,57:27688649,22056241:501378,78643,0 -(183,57:27852503,22056241:173670,78643,0 -) -) -(183,57:28190027,22056241:501378,78643,0 -(183,57:28353881,22056241:173670,78643,0 -) -) -(183,57:28691405,22056241:501378,78643,0 -(183,57:28855259,22056241:173670,78643,0 -) -) -(183,57:29192783,22056241:501378,78643,0 -(183,57:29356637,22056241:173670,78643,0 -) -) -(183,57:29694161,22056241:501378,78643,0 -(183,57:29858015,22056241:173670,78643,0 -) -) -(183,57:30195539,22056241:501378,78643,0 -(183,57:30359393,22056241:173670,78643,0 -) -) -(183,57:30696917,22056241:501378,78643,0 -(183,57:30860771,22056241:173670,78643,0 -) -) -(183,57:31239539,22056241:1343490,485622,11795 -k183,57:31239539,22056241:0 -k183,57:31387652,22056241:148113 -) -g183,57:30911859,22056241 -g183,57:32583029,22056241 -) -(183,58:6630773,22897729:25952256,513147,11795 -g183,58:9121143,22897729 -h183,58:9121143,22897729:983040,0,0 -h183,58:10104183,22897729:0,0,0 -g183,58:7613813,22897729 -(183,58:7613813,22897729:1507330,485622,11795 -k183,58:9121143,22897729:536742 -) -g183,58:11730131,22897729 -g183,58:12588652,22897729 -g183,58:15863486,22897729 -g183,58:17412757,22897729 -g183,58:17412757,22897729 -(183,58:17661089,22897729:501378,78643,0 -$183,58:17661089,22897729 -(183,58:17824943,22897729:173670,78643,0 -) -$183,58:18162467,22897729 -) -(183,58:18162467,22897729:501378,78643,0 -(183,58:18326321,22897729:173670,78643,0 -) -) -(183,58:18663845,22897729:501378,78643,0 -(183,58:18827699,22897729:173670,78643,0 -) -) -(183,58:19165223,22897729:501378,78643,0 -(183,58:19329077,22897729:173670,78643,0 -) -) -(183,58:19666601,22897729:501378,78643,0 -(183,58:19830455,22897729:173670,78643,0 -) -) -(183,58:20167979,22897729:501378,78643,0 -(183,58:20331833,22897729:173670,78643,0 -) -) -(183,58:20669357,22897729:501378,78643,0 -(183,58:20833211,22897729:173670,78643,0 -) -) -(183,58:21170735,22897729:501378,78643,0 -(183,58:21334589,22897729:173670,78643,0 -) -) -(183,58:21672113,22897729:501378,78643,0 -(183,58:21835967,22897729:173670,78643,0 -) -) -(183,58:22173491,22897729:501378,78643,0 -(183,58:22337345,22897729:173670,78643,0 -) -) -(183,58:22674869,22897729:501378,78643,0 -(183,58:22838723,22897729:173670,78643,0 -) -) -(183,58:23176247,22897729:501378,78643,0 -(183,58:23340101,22897729:173670,78643,0 -) -) -(183,58:23677625,22897729:501378,78643,0 -(183,58:23841479,22897729:173670,78643,0 -) -) -(183,58:24179003,22897729:501378,78643,0 -(183,58:24342857,22897729:173670,78643,0 -) -) -(183,58:24680381,22897729:501378,78643,0 -(183,58:24844235,22897729:173670,78643,0 -) -) -(183,58:25181759,22897729:501378,78643,0 -(183,58:25345613,22897729:173670,78643,0 -) -) -(183,58:25683137,22897729:501378,78643,0 -(183,58:25846991,22897729:173670,78643,0 -) -) -(183,58:26184515,22897729:501378,78643,0 -(183,58:26348369,22897729:173670,78643,0 -) -) -(183,58:26685893,22897729:501378,78643,0 -(183,58:26849747,22897729:173670,78643,0 -) -) -(183,58:27187271,22897729:501378,78643,0 -(183,58:27351125,22897729:173670,78643,0 -) -) -(183,58:27688649,22897729:501378,78643,0 -(183,58:27852503,22897729:173670,78643,0 -) -) -(183,58:28190027,22897729:501378,78643,0 -(183,58:28353881,22897729:173670,78643,0 -) -) -(183,58:28691405,22897729:501378,78643,0 -(183,58:28855259,22897729:173670,78643,0 -) -) -(183,58:29192783,22897729:501378,78643,0 -(183,58:29356637,22897729:173670,78643,0 -) -) -(183,58:29694161,22897729:501378,78643,0 -(183,58:29858015,22897729:173670,78643,0 -) -) -(183,58:30195539,22897729:501378,78643,0 -(183,58:30359393,22897729:173670,78643,0 -) -) -(183,58:30696917,22897729:501378,78643,0 -(183,58:30860771,22897729:173670,78643,0 -) -) -(183,58:31239539,22897729:1343490,485622,11795 -k183,58:31239539,22897729:0 -k183,58:31387652,22897729:148113 -) -g183,58:30911859,22897729 -g183,58:32583029,22897729 -) -(183,59:6630773,23739217:25952256,505283,126483 -g183,59:11218293,23739217 -h183,59:11218293,23739217:2490370,0,0 -h183,59:13708663,23739217:0,0,0 -g183,59:9121143,23739217 -(183,59:9121143,23739217:2097150,485622,11795 -k183,59:11218293,23739217:554432 -) -g183,59:14953189,23739217 -g183,59:18469851,23739217 -(183,59:18663845,23739217:501378,78643,0 -$183,59:18663845,23739217 -(183,59:18827699,23739217:173670,78643,0 -) -$183,59:19165223,23739217 -) -(183,59:19165223,23739217:501378,78643,0 -(183,59:19329077,23739217:173670,78643,0 -) -) -(183,59:19666601,23739217:501378,78643,0 -(183,59:19830455,23739217:173670,78643,0 -) -) -(183,59:20167979,23739217:501378,78643,0 -(183,59:20331833,23739217:173670,78643,0 -) -) -(183,59:20669357,23739217:501378,78643,0 -(183,59:20833211,23739217:173670,78643,0 -) -) -(183,59:21170735,23739217:501378,78643,0 -(183,59:21334589,23739217:173670,78643,0 -) -) -(183,59:21672113,23739217:501378,78643,0 -(183,59:21835967,23739217:173670,78643,0 -) -) -(183,59:22173491,23739217:501378,78643,0 -(183,59:22337345,23739217:173670,78643,0 -) -) -(183,59:22674869,23739217:501378,78643,0 -(183,59:22838723,23739217:173670,78643,0 -) -) -(183,59:23176247,23739217:501378,78643,0 -(183,59:23340101,23739217:173670,78643,0 -) -) -(183,59:23677625,23739217:501378,78643,0 -(183,59:23841479,23739217:173670,78643,0 -) -) -(183,59:24179003,23739217:501378,78643,0 -(183,59:24342857,23739217:173670,78643,0 -) -) -(183,59:24680381,23739217:501378,78643,0 -(183,59:24844235,23739217:173670,78643,0 -) -) -(183,59:25181759,23739217:501378,78643,0 -(183,59:25345613,23739217:173670,78643,0 -) -) -(183,59:25683137,23739217:501378,78643,0 -(183,59:25846991,23739217:173670,78643,0 -) -) -(183,59:26184515,23739217:501378,78643,0 -(183,59:26348369,23739217:173670,78643,0 -) -) -(183,59:26685893,23739217:501378,78643,0 -(183,59:26849747,23739217:173670,78643,0 -) -) -(183,59:27187271,23739217:501378,78643,0 -(183,59:27351125,23739217:173670,78643,0 -) -) -(183,59:27688649,23739217:501378,78643,0 -(183,59:27852503,23739217:173670,78643,0 -) -) -(183,59:28190027,23739217:501378,78643,0 -(183,59:28353881,23739217:173670,78643,0 -) -) -(183,59:28691405,23739217:501378,78643,0 -(183,59:28855259,23739217:173670,78643,0 -) -) -(183,59:29192783,23739217:501378,78643,0 -(183,59:29356637,23739217:173670,78643,0 -) -) -(183,59:29694161,23739217:501378,78643,0 -(183,59:29858015,23739217:173670,78643,0 -) -) -(183,59:30195539,23739217:501378,78643,0 -(183,59:30359393,23739217:173670,78643,0 -) -) -(183,59:30696917,23739217:501378,78643,0 -(183,59:30860771,23739217:173670,78643,0 -) -) -(183,59:31239539,23739217:1343490,485622,11795 -k183,59:31239539,23739217:0 -k183,59:31387652,23739217:148113 -) -g183,59:30911859,23739217 -g183,59:32583029,23739217 -) -(183,60:6630773,24580705:25952256,505283,11795 -g183,60:11218293,24580705 -h183,60:11218293,24580705:2490370,0,0 -h183,60:13708663,24580705:0,0,0 -g183,60:9121143,24580705 -(183,60:9121143,24580705:2097150,485622,11795 -k183,60:11218293,24580705:554432 -) -g183,60:15132758,24580705 -g183,60:18208363,24580705 -(183,60:18663845,24580705:501378,78643,0 -$183,60:18663845,24580705 -(183,60:18827699,24580705:173670,78643,0 -) -$183,60:19165223,24580705 -) -(183,60:19165223,24580705:501378,78643,0 -(183,60:19329077,24580705:173670,78643,0 -) -) -(183,60:19666601,24580705:501378,78643,0 -(183,60:19830455,24580705:173670,78643,0 -) -) -(183,60:20167979,24580705:501378,78643,0 -(183,60:20331833,24580705:173670,78643,0 -) -) -(183,60:20669357,24580705:501378,78643,0 -(183,60:20833211,24580705:173670,78643,0 -) -) -(183,60:21170735,24580705:501378,78643,0 -(183,60:21334589,24580705:173670,78643,0 -) -) -(183,60:21672113,24580705:501378,78643,0 -(183,60:21835967,24580705:173670,78643,0 -) -) -(183,60:22173491,24580705:501378,78643,0 -(183,60:22337345,24580705:173670,78643,0 -) -) -(183,60:22674869,24580705:501378,78643,0 -(183,60:22838723,24580705:173670,78643,0 -) -) -(183,60:23176247,24580705:501378,78643,0 -(183,60:23340101,24580705:173670,78643,0 -) -) -(183,60:23677625,24580705:501378,78643,0 -(183,60:23841479,24580705:173670,78643,0 -) -) -(183,60:24179003,24580705:501378,78643,0 -(183,60:24342857,24580705:173670,78643,0 -) -) -(183,60:24680381,24580705:501378,78643,0 -(183,60:24844235,24580705:173670,78643,0 -) -) -(183,60:25181759,24580705:501378,78643,0 -(183,60:25345613,24580705:173670,78643,0 -) -) -(183,60:25683137,24580705:501378,78643,0 -(183,60:25846991,24580705:173670,78643,0 -) -) -(183,60:26184515,24580705:501378,78643,0 -(183,60:26348369,24580705:173670,78643,0 -) -) -(183,60:26685893,24580705:501378,78643,0 -(183,60:26849747,24580705:173670,78643,0 -) -) -(183,60:27187271,24580705:501378,78643,0 -(183,60:27351125,24580705:173670,78643,0 -) -) -(183,60:27688649,24580705:501378,78643,0 -(183,60:27852503,24580705:173670,78643,0 -) -) -(183,60:28190027,24580705:501378,78643,0 -(183,60:28353881,24580705:173670,78643,0 -) -) -(183,60:28691405,24580705:501378,78643,0 -(183,60:28855259,24580705:173670,78643,0 -) -) -(183,60:29192783,24580705:501378,78643,0 -(183,60:29356637,24580705:173670,78643,0 -) -) -(183,60:29694161,24580705:501378,78643,0 -(183,60:29858015,24580705:173670,78643,0 -) -) -(183,60:30195539,24580705:501378,78643,0 -(183,60:30359393,24580705:173670,78643,0 -) -) -(183,60:30696917,24580705:501378,78643,0 -(183,60:30860771,24580705:173670,78643,0 -) -) -(183,60:31239539,24580705:1343490,485622,11795 -k183,60:31239539,24580705:0 -k183,60:31387652,24580705:148113 -) -g183,60:30911859,24580705 -g183,60:32583029,24580705 -) -(183,61:6630773,25422193:25952256,513147,102891 -g183,61:13905273,25422193 -h183,61:13905273,25422193:4587520,0,0 -h183,61:18492793,25422193:0,0,0 -g183,61:11218293,25422193 -(183,61:11218293,25422193:2686980,485622,11795 -k183,61:13905273,25422193:572133 -) -g183,61:18956132,25422193 -g183,61:20119395,25422193 -g183,61:21899352,25422193 -g183,61:23290026,25422193 -g183,61:25661119,25422193 -(183,61:25683137,25422193:501378,78643,0 -$183,61:25683137,25422193 -(183,61:25846991,25422193:173670,78643,0 -) -$183,61:26184515,25422193 -) -(183,61:26184515,25422193:501378,78643,0 -(183,61:26348369,25422193:173670,78643,0 -) -) -(183,61:26685893,25422193:501378,78643,0 -(183,61:26849747,25422193:173670,78643,0 -) -) -(183,61:27187271,25422193:501378,78643,0 -(183,61:27351125,25422193:173670,78643,0 -) -) -(183,61:27688649,25422193:501378,78643,0 -(183,61:27852503,25422193:173670,78643,0 -) -) -(183,61:28190027,25422193:501378,78643,0 -(183,61:28353881,25422193:173670,78643,0 -) -) -(183,61:28691405,25422193:501378,78643,0 -(183,61:28855259,25422193:173670,78643,0 -) -) -(183,61:29192783,25422193:501378,78643,0 -(183,61:29356637,25422193:173670,78643,0 -) -) -(183,61:29694161,25422193:501378,78643,0 -(183,61:29858015,25422193:173670,78643,0 -) -) -(183,61:30195539,25422193:501378,78643,0 -(183,61:30359393,25422193:173670,78643,0 -) -) -(183,61:30696917,25422193:501378,78643,0 -(183,61:30860771,25422193:173670,78643,0 -) -) -(183,61:31239539,25422193:1343490,485622,11795 -k183,61:31239539,25422193:0 -k183,61:31387652,25422193:148113 -) -g183,61:30911859,25422193 -g183,61:32583029,25422193 -) -(183,62:6630773,26263681:25952256,513147,95026 -g183,62:13905273,26263681 -h183,62:13905273,26263681:4587520,0,0 -h183,62:18492793,26263681:0,0,0 -g183,62:11218293,26263681 -(183,62:11218293,26263681:2686980,485622,11795 -k183,62:13905273,26263681:572133 -) -g183,62:17542521,26263681 -g183,62:20703978,26263681 -(183,62:21170735,26263681:501378,78643,0 -$183,62:21170735,26263681 -(183,62:21334589,26263681:173670,78643,0 -) -$183,62:21672113,26263681 -) -(183,62:21672113,26263681:501378,78643,0 -(183,62:21835967,26263681:173670,78643,0 -) -) -(183,62:22173491,26263681:501378,78643,0 -(183,62:22337345,26263681:173670,78643,0 -) -) -(183,62:22674869,26263681:501378,78643,0 -(183,62:22838723,26263681:173670,78643,0 -) -) -(183,62:23176247,26263681:501378,78643,0 -(183,62:23340101,26263681:173670,78643,0 -) -) -(183,62:23677625,26263681:501378,78643,0 -(183,62:23841479,26263681:173670,78643,0 -) -) -(183,62:24179003,26263681:501378,78643,0 -(183,62:24342857,26263681:173670,78643,0 -) -) -(183,62:24680381,26263681:501378,78643,0 -(183,62:24844235,26263681:173670,78643,0 -) -) -(183,62:25181759,26263681:501378,78643,0 -(183,62:25345613,26263681:173670,78643,0 -) -) -(183,62:25683137,26263681:501378,78643,0 -(183,62:25846991,26263681:173670,78643,0 -) -) -(183,62:26184515,26263681:501378,78643,0 -(183,62:26348369,26263681:173670,78643,0 -) -) -(183,62:26685893,26263681:501378,78643,0 -(183,62:26849747,26263681:173670,78643,0 -) -) -(183,62:27187271,26263681:501378,78643,0 -(183,62:27351125,26263681:173670,78643,0 -) -) -(183,62:27688649,26263681:501378,78643,0 -(183,62:27852503,26263681:173670,78643,0 -) -) -(183,62:28190027,26263681:501378,78643,0 -(183,62:28353881,26263681:173670,78643,0 -) -) -(183,62:28691405,26263681:501378,78643,0 -(183,62:28855259,26263681:173670,78643,0 -) -) -(183,62:29192783,26263681:501378,78643,0 -(183,62:29356637,26263681:173670,78643,0 -) -) -(183,62:29694161,26263681:501378,78643,0 -(183,62:29858015,26263681:173670,78643,0 -) -) -(183,62:30195539,26263681:501378,78643,0 -(183,62:30359393,26263681:173670,78643,0 -) -) -(183,62:30696917,26263681:501378,78643,0 -(183,62:30860771,26263681:173670,78643,0 -) -) -(183,62:31239539,26263681:1343490,485622,11795 -k183,62:31239539,26263681:0 -k183,62:31387652,26263681:148113 -) -g183,62:30911859,26263681 -g183,62:32583029,26263681 -) -(183,63:6630773,27105169:25952256,485622,11795 -g183,63:11218293,27105169 -h183,63:11218293,27105169:2490370,0,0 -h183,63:13708663,27105169:0,0,0 -g183,63:9121143,27105169 -(183,63:9121143,27105169:2097150,485622,11795 -k183,63:11218293,27105169:554432 -) -g183,63:13947212,27105169 -(183,63:14151443,27105169:501378,78643,0 -$183,63:14151443,27105169 -(183,63:14315297,27105169:173670,78643,0 -) -$183,63:14652821,27105169 -) -(183,63:14652821,27105169:501378,78643,0 -(183,63:14816675,27105169:173670,78643,0 -) -) -(183,63:15154199,27105169:501378,78643,0 -(183,63:15318053,27105169:173670,78643,0 -) -) -(183,63:15655577,27105169:501378,78643,0 -(183,63:15819431,27105169:173670,78643,0 -) -) -(183,63:16156955,27105169:501378,78643,0 -(183,63:16320809,27105169:173670,78643,0 -) -) -(183,63:16658333,27105169:501378,78643,0 -(183,63:16822187,27105169:173670,78643,0 -) -) -(183,63:17159711,27105169:501378,78643,0 -(183,63:17323565,27105169:173670,78643,0 -) -) -(183,63:17661089,27105169:501378,78643,0 -(183,63:17824943,27105169:173670,78643,0 -) -) -(183,63:18162467,27105169:501378,78643,0 -(183,63:18326321,27105169:173670,78643,0 -) -) -(183,63:18663845,27105169:501378,78643,0 -(183,63:18827699,27105169:173670,78643,0 -) -) -(183,63:19165223,27105169:501378,78643,0 -(183,63:19329077,27105169:173670,78643,0 -) -) -(183,63:19666601,27105169:501378,78643,0 -(183,63:19830455,27105169:173670,78643,0 -) -) -(183,63:20167979,27105169:501378,78643,0 -(183,63:20331833,27105169:173670,78643,0 -) -) -(183,63:20669357,27105169:501378,78643,0 -(183,63:20833211,27105169:173670,78643,0 -) -) -(183,63:21170735,27105169:501378,78643,0 -(183,63:21334589,27105169:173670,78643,0 -) -) -(183,63:21672113,27105169:501378,78643,0 -(183,63:21835967,27105169:173670,78643,0 -) -) -(183,63:22173491,27105169:501378,78643,0 -(183,63:22337345,27105169:173670,78643,0 -) -) -(183,63:22674869,27105169:501378,78643,0 -(183,63:22838723,27105169:173670,78643,0 -) -) -(183,63:23176247,27105169:501378,78643,0 -(183,63:23340101,27105169:173670,78643,0 -) -) -(183,63:23677625,27105169:501378,78643,0 -(183,63:23841479,27105169:173670,78643,0 -) -) -(183,63:24179003,27105169:501378,78643,0 -(183,63:24342857,27105169:173670,78643,0 -) -) -(183,63:24680381,27105169:501378,78643,0 -(183,63:24844235,27105169:173670,78643,0 -) -) -(183,63:25181759,27105169:501378,78643,0 -(183,63:25345613,27105169:173670,78643,0 -) -) -(183,63:25683137,27105169:501378,78643,0 -(183,63:25846991,27105169:173670,78643,0 -) -) -(183,63:26184515,27105169:501378,78643,0 -(183,63:26348369,27105169:173670,78643,0 -) -) -(183,63:26685893,27105169:501378,78643,0 -(183,63:26849747,27105169:173670,78643,0 -) -) -(183,63:27187271,27105169:501378,78643,0 -(183,63:27351125,27105169:173670,78643,0 -) -) -(183,63:27688649,27105169:501378,78643,0 -(183,63:27852503,27105169:173670,78643,0 -) -) -(183,63:28190027,27105169:501378,78643,0 -(183,63:28353881,27105169:173670,78643,0 -) -) -(183,63:28691405,27105169:501378,78643,0 -(183,63:28855259,27105169:173670,78643,0 -) -) -(183,63:29192783,27105169:501378,78643,0 -(183,63:29356637,27105169:173670,78643,0 -) -) -(183,63:29694161,27105169:501378,78643,0 -(183,63:29858015,27105169:173670,78643,0 -) -) -(183,63:30195539,27105169:501378,78643,0 -(183,63:30359393,27105169:173670,78643,0 -) -) -(183,63:30696917,27105169:501378,78643,0 -(183,63:30860771,27105169:173670,78643,0 -) -) -(183,63:31239540,27105169:1343490,485622,0 -k183,63:31239540,27105169:0 -k183,63:31387653,27105169:148113 -) -g183,63:30911860,27105169 -g183,63:32583030,27105169 -) -(183,64:6630773,27946657:25952256,513147,126483 -g183,64:13905273,27946657 -h183,64:13905273,27946657:4587520,0,0 -h183,64:18492793,27946657:0,0,0 -g183,64:11218293,27946657 -(183,64:11218293,27946657:2686980,485622,11795 -k183,64:13905273,27946657:572133 -) -g183,64:15290048,27946657 -g183,64:17035272,27946657 -(183,64:17159711,27946657:501378,78643,0 -$183,64:17159711,27946657 -(183,64:17323565,27946657:173670,78643,0 -) -$183,64:17661089,27946657 -) -(183,64:17661089,27946657:501378,78643,0 -(183,64:17824943,27946657:173670,78643,0 -) -) -(183,64:18162467,27946657:501378,78643,0 -(183,64:18326321,27946657:173670,78643,0 -) -) -(183,64:18663845,27946657:501378,78643,0 -(183,64:18827699,27946657:173670,78643,0 -) -) -(183,64:19165223,27946657:501378,78643,0 -(183,64:19329077,27946657:173670,78643,0 -) -) -(183,64:19666601,27946657:501378,78643,0 -(183,64:19830455,27946657:173670,78643,0 -) -) -(183,64:20167979,27946657:501378,78643,0 -(183,64:20331833,27946657:173670,78643,0 -) -) -(183,64:20669357,27946657:501378,78643,0 -(183,64:20833211,27946657:173670,78643,0 -) -) -(183,64:21170735,27946657:501378,78643,0 -(183,64:21334589,27946657:173670,78643,0 -) -) -(183,64:21672113,27946657:501378,78643,0 -(183,64:21835967,27946657:173670,78643,0 -) -) -(183,64:22173491,27946657:501378,78643,0 -(183,64:22337345,27946657:173670,78643,0 -) -) -(183,64:22674869,27946657:501378,78643,0 -(183,64:22838723,27946657:173670,78643,0 -) -) -(183,64:23176247,27946657:501378,78643,0 -(183,64:23340101,27946657:173670,78643,0 -) -) -(183,64:23677625,27946657:501378,78643,0 -(183,64:23841479,27946657:173670,78643,0 -) -) -(183,64:24179003,27946657:501378,78643,0 -(183,64:24342857,27946657:173670,78643,0 -) -) -(183,64:24680381,27946657:501378,78643,0 -(183,64:24844235,27946657:173670,78643,0 -) -) -(183,64:25181759,27946657:501378,78643,0 -(183,64:25345613,27946657:173670,78643,0 -) -) -(183,64:25683137,27946657:501378,78643,0 -(183,64:25846991,27946657:173670,78643,0 -) -) -(183,64:26184515,27946657:501378,78643,0 -(183,64:26348369,27946657:173670,78643,0 -) -) -(183,64:26685893,27946657:501378,78643,0 -(183,64:26849747,27946657:173670,78643,0 -) -) -(183,64:27187271,27946657:501378,78643,0 -(183,64:27351125,27946657:173670,78643,0 -) -) -(183,64:27688649,27946657:501378,78643,0 -(183,64:27852503,27946657:173670,78643,0 -) -) -(183,64:28190027,27946657:501378,78643,0 -(183,64:28353881,27946657:173670,78643,0 -) -) -(183,64:28691405,27946657:501378,78643,0 -(183,64:28855259,27946657:173670,78643,0 -) -) -(183,64:29192783,27946657:501378,78643,0 -(183,64:29356637,27946657:173670,78643,0 -) -) -(183,64:29694161,27946657:501378,78643,0 -(183,64:29858015,27946657:173670,78643,0 -) -) -(183,64:30195539,27946657:501378,78643,0 -(183,64:30359393,27946657:173670,78643,0 -) -) -(183,64:30696917,27946657:501378,78643,0 -(183,64:30860771,27946657:173670,78643,0 -) -) -(183,64:31239539,27946657:1343490,485622,11795 -k183,64:31239539,27946657:0 -k183,64:31387652,27946657:148113 -) -g183,64:30911859,27946657 -g183,64:32583029,27946657 -) -(183,65:6630773,28788145:25952256,505283,126483 -g183,65:13905273,28788145 -h183,65:13905273,28788145:4587520,0,0 -h183,65:18492793,28788145:0,0,0 -g183,65:11218293,28788145 -(183,65:11218293,28788145:2686980,485622,11795 -k183,65:13905273,28788145:572133 -) -g183,65:16080412,28788145 -g183,65:17825636,28788145 -(183,65:18162467,28788145:501378,78643,0 -$183,65:18162467,28788145 -(183,65:18326321,28788145:173670,78643,0 -) -$183,65:18663845,28788145 -) -(183,65:18663845,28788145:501378,78643,0 -(183,65:18827699,28788145:173670,78643,0 -) -) -(183,65:19165223,28788145:501378,78643,0 -(183,65:19329077,28788145:173670,78643,0 -) -) -(183,65:19666601,28788145:501378,78643,0 -(183,65:19830455,28788145:173670,78643,0 -) -) -(183,65:20167979,28788145:501378,78643,0 -(183,65:20331833,28788145:173670,78643,0 -) -) -(183,65:20669357,28788145:501378,78643,0 -(183,65:20833211,28788145:173670,78643,0 -) -) -(183,65:21170735,28788145:501378,78643,0 -(183,65:21334589,28788145:173670,78643,0 -) -) -(183,65:21672113,28788145:501378,78643,0 -(183,65:21835967,28788145:173670,78643,0 -) -) -(183,65:22173491,28788145:501378,78643,0 -(183,65:22337345,28788145:173670,78643,0 -) -) -(183,65:22674869,28788145:501378,78643,0 -(183,65:22838723,28788145:173670,78643,0 -) -) -(183,65:23176247,28788145:501378,78643,0 -(183,65:23340101,28788145:173670,78643,0 -) -) -(183,65:23677625,28788145:501378,78643,0 -(183,65:23841479,28788145:173670,78643,0 -) -) -(183,65:24179003,28788145:501378,78643,0 -(183,65:24342857,28788145:173670,78643,0 -) -) -(183,65:24680381,28788145:501378,78643,0 -(183,65:24844235,28788145:173670,78643,0 -) -) -(183,65:25181759,28788145:501378,78643,0 -(183,65:25345613,28788145:173670,78643,0 -) -) -(183,65:25683137,28788145:501378,78643,0 -(183,65:25846991,28788145:173670,78643,0 -) -) -(183,65:26184515,28788145:501378,78643,0 -(183,65:26348369,28788145:173670,78643,0 -) -) -(183,65:26685893,28788145:501378,78643,0 -(183,65:26849747,28788145:173670,78643,0 -) -) -(183,65:27187271,28788145:501378,78643,0 -(183,65:27351125,28788145:173670,78643,0 -) -) -(183,65:27688649,28788145:501378,78643,0 -(183,65:27852503,28788145:173670,78643,0 -) -) -(183,65:28190027,28788145:501378,78643,0 -(183,65:28353881,28788145:173670,78643,0 -) -) -(183,65:28691405,28788145:501378,78643,0 -(183,65:28855259,28788145:173670,78643,0 -) -) -(183,65:29192783,28788145:501378,78643,0 -(183,65:29356637,28788145:173670,78643,0 -) -) -(183,65:29694161,28788145:501378,78643,0 -(183,65:29858015,28788145:173670,78643,0 -) -) -(183,65:30195539,28788145:501378,78643,0 -(183,65:30359393,28788145:173670,78643,0 -) -) -(183,65:30696917,28788145:501378,78643,0 -(183,65:30860771,28788145:173670,78643,0 -) -) -(183,65:31239539,28788145:1343490,477757,11795 -k183,65:31239539,28788145:0 -k183,65:31387652,28788145:148113 -) -g183,65:30911859,28788145 -g183,65:32583029,28788145 -) -(183,66:6630773,29629633:25952256,505283,126483 -g183,66:13905273,29629633 -h183,66:13905273,29629633:4587520,0,0 -h183,66:18492793,29629633:0,0,0 -g183,66:11218293,29629633 -(183,66:11218293,29629633:2686980,485622,11795 -k183,66:13905273,29629633:572133 -) -g183,66:16475595,29629633 -g183,66:18220819,29629633 -(183,66:18663845,29629633:501378,78643,0 -$183,66:18663845,29629633 -(183,66:18827699,29629633:173670,78643,0 -) -$183,66:19165223,29629633 -) -(183,66:19165223,29629633:501378,78643,0 -(183,66:19329077,29629633:173670,78643,0 -) -) -(183,66:19666601,29629633:501378,78643,0 -(183,66:19830455,29629633:173670,78643,0 -) -) -(183,66:20167979,29629633:501378,78643,0 -(183,66:20331833,29629633:173670,78643,0 -) -) -(183,66:20669357,29629633:501378,78643,0 -(183,66:20833211,29629633:173670,78643,0 -) -) -(183,66:21170735,29629633:501378,78643,0 -(183,66:21334589,29629633:173670,78643,0 -) -) -(183,66:21672113,29629633:501378,78643,0 -(183,66:21835967,29629633:173670,78643,0 -) -) -(183,66:22173491,29629633:501378,78643,0 -(183,66:22337345,29629633:173670,78643,0 -) -) -(183,66:22674869,29629633:501378,78643,0 -(183,66:22838723,29629633:173670,78643,0 -) -) -(183,66:23176247,29629633:501378,78643,0 -(183,66:23340101,29629633:173670,78643,0 -) -) -(183,66:23677625,29629633:501378,78643,0 -(183,66:23841479,29629633:173670,78643,0 -) -) -(183,66:24179003,29629633:501378,78643,0 -(183,66:24342857,29629633:173670,78643,0 -) -) -(183,66:24680381,29629633:501378,78643,0 -(183,66:24844235,29629633:173670,78643,0 -) -) -(183,66:25181759,29629633:501378,78643,0 -(183,66:25345613,29629633:173670,78643,0 -) -) -(183,66:25683137,29629633:501378,78643,0 -(183,66:25846991,29629633:173670,78643,0 -) -) -(183,66:26184515,29629633:501378,78643,0 -(183,66:26348369,29629633:173670,78643,0 -) -) -(183,66:26685893,29629633:501378,78643,0 -(183,66:26849747,29629633:173670,78643,0 -) -) -(183,66:27187271,29629633:501378,78643,0 -(183,66:27351125,29629633:173670,78643,0 -) -) -(183,66:27688649,29629633:501378,78643,0 -(183,66:27852503,29629633:173670,78643,0 -) -) -(183,66:28190027,29629633:501378,78643,0 -(183,66:28353881,29629633:173670,78643,0 -) -) -(183,66:28691405,29629633:501378,78643,0 -(183,66:28855259,29629633:173670,78643,0 -) -) -(183,66:29192783,29629633:501378,78643,0 -(183,66:29356637,29629633:173670,78643,0 -) -) -(183,66:29694161,29629633:501378,78643,0 -(183,66:29858015,29629633:173670,78643,0 -) -) -(183,66:30195539,29629633:501378,78643,0 -(183,66:30359393,29629633:173670,78643,0 -) -) -(183,66:30696917,29629633:501378,78643,0 -(183,66:30860771,29629633:173670,78643,0 -) -) -(183,66:31239539,29629633:1343490,477757,0 -k183,66:31239539,29629633:0 -k183,66:31387652,29629633:148113 -) -g183,66:30911859,29629633 -g183,66:32583029,29629633 -) -(183,67:6630773,30471121:25952256,505283,126483 -g183,67:11218293,30471121 -h183,67:11218293,30471121:2490370,0,0 -h183,67:13708663,30471121:0,0,0 -g183,67:9121143,30471121 -(183,67:9121143,30471121:2097150,485622,11795 -k183,67:11218293,30471121:554432 -) -g183,67:13772231,30471121 -g183,67:15716684,30471121 -g183,67:17020195,30471121 -g183,67:17967190,30471121 -g183,67:19617386,30471121 -g183,67:20432653,30471121 -g183,67:21046725,30471121 -g183,67:21046725,30471121 -(183,67:21170735,30471121:501378,78643,0 -$183,67:21170735,30471121 -(183,67:21334589,30471121:173670,78643,0 -) -$183,67:21672113,30471121 -) -(183,67:21672113,30471121:501378,78643,0 -(183,67:21835967,30471121:173670,78643,0 -) -) -(183,67:22173491,30471121:501378,78643,0 -(183,67:22337345,30471121:173670,78643,0 -) -) -(183,67:22674869,30471121:501378,78643,0 -(183,67:22838723,30471121:173670,78643,0 -) -) -(183,67:23176247,30471121:501378,78643,0 -(183,67:23340101,30471121:173670,78643,0 -) -) -(183,67:23677625,30471121:501378,78643,0 -(183,67:23841479,30471121:173670,78643,0 -) -) -(183,67:24179003,30471121:501378,78643,0 -(183,67:24342857,30471121:173670,78643,0 -) -) -(183,67:24680381,30471121:501378,78643,0 -(183,67:24844235,30471121:173670,78643,0 -) -) -(183,67:25181759,30471121:501378,78643,0 -(183,67:25345613,30471121:173670,78643,0 -) -) -(183,67:25683137,30471121:501378,78643,0 -(183,67:25846991,30471121:173670,78643,0 -) -) -(183,67:26184515,30471121:501378,78643,0 -(183,67:26348369,30471121:173670,78643,0 -) -) -(183,67:26685893,30471121:501378,78643,0 -(183,67:26849747,30471121:173670,78643,0 -) -) -(183,67:27187271,30471121:501378,78643,0 -(183,67:27351125,30471121:173670,78643,0 -) -) -(183,67:27688649,30471121:501378,78643,0 -(183,67:27852503,30471121:173670,78643,0 -) -) -(183,67:28190027,30471121:501378,78643,0 -(183,67:28353881,30471121:173670,78643,0 -) -) -(183,67:28691405,30471121:501378,78643,0 -(183,67:28855259,30471121:173670,78643,0 -) -) -(183,67:29192783,30471121:501378,78643,0 -(183,67:29356637,30471121:173670,78643,0 -) -) -(183,67:29694161,30471121:501378,78643,0 -(183,67:29858015,30471121:173670,78643,0 -) -) -(183,67:30195539,30471121:501378,78643,0 -(183,67:30359393,30471121:173670,78643,0 -) -) -(183,67:30696917,30471121:501378,78643,0 -(183,67:30860771,30471121:173670,78643,0 -) -) -(183,67:31239539,30471121:1343490,485622,11795 -k183,67:31239539,30471121:0 -k183,67:31387652,30471121:148113 -) -g183,67:30911859,30471121 -g183,67:32583029,30471121 -) -(183,68:6630773,31312609:25952256,513147,134348 -g183,68:11218293,31312609 -h183,68:11218293,31312609:2490370,0,0 -h183,68:13708663,31312609:0,0,0 -g183,68:9121143,31312609 -(183,68:9121143,31312609:2097150,485622,11795 -k183,68:11218293,31312609:554432 -) -g183,68:13834490,31312609 -g183,68:14693011,31312609 -g183,68:16438235,31312609 -(183,68:16658333,31312609:501378,78643,0 -$183,68:16658333,31312609 -(183,68:16822187,31312609:173670,78643,0 -) -$183,68:17159711,31312609 -) -(183,68:17159711,31312609:501378,78643,0 -(183,68:17323565,31312609:173670,78643,0 -) -) -(183,68:17661089,31312609:501378,78643,0 -(183,68:17824943,31312609:173670,78643,0 -) -) -(183,68:18162467,31312609:501378,78643,0 -(183,68:18326321,31312609:173670,78643,0 -) -) -(183,68:18663845,31312609:501378,78643,0 -(183,68:18827699,31312609:173670,78643,0 -) -) -(183,68:19165223,31312609:501378,78643,0 -(183,68:19329077,31312609:173670,78643,0 -) -) -(183,68:19666601,31312609:501378,78643,0 -(183,68:19830455,31312609:173670,78643,0 -) -) -(183,68:20167979,31312609:501378,78643,0 -(183,68:20331833,31312609:173670,78643,0 -) -) -(183,68:20669357,31312609:501378,78643,0 -(183,68:20833211,31312609:173670,78643,0 -) -) -(183,68:21170735,31312609:501378,78643,0 -(183,68:21334589,31312609:173670,78643,0 -) -) -(183,68:21672113,31312609:501378,78643,0 -(183,68:21835967,31312609:173670,78643,0 -) -) -(183,68:22173491,31312609:501378,78643,0 -(183,68:22337345,31312609:173670,78643,0 -) -) -(183,68:22674869,31312609:501378,78643,0 -(183,68:22838723,31312609:173670,78643,0 -) -) -(183,68:23176247,31312609:501378,78643,0 -(183,68:23340101,31312609:173670,78643,0 -) -) -(183,68:23677625,31312609:501378,78643,0 -(183,68:23841479,31312609:173670,78643,0 -) -) -(183,68:24179003,31312609:501378,78643,0 -(183,68:24342857,31312609:173670,78643,0 -) -) -(183,68:24680381,31312609:501378,78643,0 -(183,68:24844235,31312609:173670,78643,0 -) -) -(183,68:25181759,31312609:501378,78643,0 -(183,68:25345613,31312609:173670,78643,0 -) -) -(183,68:25683137,31312609:501378,78643,0 -(183,68:25846991,31312609:173670,78643,0 -) -) -(183,68:26184515,31312609:501378,78643,0 -(183,68:26348369,31312609:173670,78643,0 -) -) -(183,68:26685893,31312609:501378,78643,0 -(183,68:26849747,31312609:173670,78643,0 -) -) -(183,68:27187271,31312609:501378,78643,0 -(183,68:27351125,31312609:173670,78643,0 -) -) -(183,68:27688649,31312609:501378,78643,0 -(183,68:27852503,31312609:173670,78643,0 -) -) -(183,68:28190027,31312609:501378,78643,0 -(183,68:28353881,31312609:173670,78643,0 -) -) -(183,68:28691405,31312609:501378,78643,0 -(183,68:28855259,31312609:173670,78643,0 -) -) -(183,68:29192783,31312609:501378,78643,0 -(183,68:29356637,31312609:173670,78643,0 -) -) -(183,68:29694161,31312609:501378,78643,0 -(183,68:29858015,31312609:173670,78643,0 -) -) -(183,68:30195539,31312609:501378,78643,0 -(183,68:30359393,31312609:173670,78643,0 -) -) -(183,68:30696917,31312609:501378,78643,0 -(183,68:30860771,31312609:173670,78643,0 -) -) -(183,68:31239539,31312609:1343490,485622,11795 -k183,68:31239539,31312609:0 -k183,68:31387652,31312609:148113 -) -g183,68:30911859,31312609 -g183,68:32583029,31312609 -) -(183,69:6630773,32154097:25952256,505283,126483 -g183,69:13905273,32154097 -h183,69:13905273,32154097:4587520,0,0 -h183,69:18492793,32154097:0,0,0 -g183,69:11218293,32154097 -(183,69:11218293,32154097:2686980,485622,11795 -k183,69:13905273,32154097:572133 -) -g183,69:16732496,32154097 -(183,69:17159711,32154097:501378,78643,0 -$183,69:17159711,32154097 -(183,69:17323565,32154097:173670,78643,0 -) -$183,69:17661089,32154097 -) -(183,69:17661089,32154097:501378,78643,0 -(183,69:17824943,32154097:173670,78643,0 -) -) -(183,69:18162467,32154097:501378,78643,0 -(183,69:18326321,32154097:173670,78643,0 -) -) -(183,69:18663845,32154097:501378,78643,0 -(183,69:18827699,32154097:173670,78643,0 -) -) -(183,69:19165223,32154097:501378,78643,0 -(183,69:19329077,32154097:173670,78643,0 -) -) -(183,69:19666601,32154097:501378,78643,0 -(183,69:19830455,32154097:173670,78643,0 -) -) -(183,69:20167979,32154097:501378,78643,0 -(183,69:20331833,32154097:173670,78643,0 -) -) -(183,69:20669357,32154097:501378,78643,0 -(183,69:20833211,32154097:173670,78643,0 -) -) -(183,69:21170735,32154097:501378,78643,0 -(183,69:21334589,32154097:173670,78643,0 -) -) -(183,69:21672113,32154097:501378,78643,0 -(183,69:21835967,32154097:173670,78643,0 -) -) -(183,69:22173491,32154097:501378,78643,0 -(183,69:22337345,32154097:173670,78643,0 -) -) -(183,69:22674869,32154097:501378,78643,0 -(183,69:22838723,32154097:173670,78643,0 -) -) -(183,69:23176247,32154097:501378,78643,0 -(183,69:23340101,32154097:173670,78643,0 -) -) -(183,69:23677625,32154097:501378,78643,0 -(183,69:23841479,32154097:173670,78643,0 -) -) -(183,69:24179003,32154097:501378,78643,0 -(183,69:24342857,32154097:173670,78643,0 -) -) -(183,69:24680381,32154097:501378,78643,0 -(183,69:24844235,32154097:173670,78643,0 -) -) -(183,69:25181759,32154097:501378,78643,0 -(183,69:25345613,32154097:173670,78643,0 -) -) -(183,69:25683137,32154097:501378,78643,0 -(183,69:25846991,32154097:173670,78643,0 -) -) -(183,69:26184515,32154097:501378,78643,0 -(183,69:26348369,32154097:173670,78643,0 -) -) -(183,69:26685893,32154097:501378,78643,0 -(183,69:26849747,32154097:173670,78643,0 -) -) -(183,69:27187271,32154097:501378,78643,0 -(183,69:27351125,32154097:173670,78643,0 -) -) -(183,69:27688649,32154097:501378,78643,0 -(183,69:27852503,32154097:173670,78643,0 -) -) -(183,69:28190027,32154097:501378,78643,0 -(183,69:28353881,32154097:173670,78643,0 -) -) -(183,69:28691405,32154097:501378,78643,0 -(183,69:28855259,32154097:173670,78643,0 -) -) -(183,69:29192783,32154097:501378,78643,0 -(183,69:29356637,32154097:173670,78643,0 -) -) -(183,69:29694161,32154097:501378,78643,0 -(183,69:29858015,32154097:173670,78643,0 -) -) -(183,69:30195539,32154097:501378,78643,0 -(183,69:30359393,32154097:173670,78643,0 -) -) -(183,69:30696917,32154097:501378,78643,0 -(183,69:30860771,32154097:173670,78643,0 -) -) -(183,69:31239539,32154097:1343490,485622,0 -k183,69:31239539,32154097:0 -k183,69:31387652,32154097:148113 -) -g183,69:30911859,32154097 -g183,69:32583029,32154097 -) -(183,70:6630773,32995585:25952256,513147,126483 -g183,70:9121143,32995585 -h183,70:9121143,32995585:983040,0,0 -h183,70:10104183,32995585:0,0,0 -g183,70:7613813,32995585 -(183,70:7613813,32995585:1507330,485622,11795 -k183,70:9121143,32995585:536742 -) -g183,70:11215673,32995585 -g183,70:14440699,32995585 -g183,70:14440699,32995585 -(183,70:14652821,32995585:501378,78643,0 -$183,70:14652821,32995585 -(183,70:14816675,32995585:173670,78643,0 -) -$183,70:15154199,32995585 -) -(183,70:15154199,32995585:501378,78643,0 -(183,70:15318053,32995585:173670,78643,0 -) -) -(183,70:15655577,32995585:501378,78643,0 -(183,70:15819431,32995585:173670,78643,0 -) -) -(183,70:16156955,32995585:501378,78643,0 -(183,70:16320809,32995585:173670,78643,0 -) -) -(183,70:16658333,32995585:501378,78643,0 -(183,70:16822187,32995585:173670,78643,0 -) -) -(183,70:17159711,32995585:501378,78643,0 -(183,70:17323565,32995585:173670,78643,0 -) -) -(183,70:17661089,32995585:501378,78643,0 -(183,70:17824943,32995585:173670,78643,0 -) -) -(183,70:18162467,32995585:501378,78643,0 -(183,70:18326321,32995585:173670,78643,0 -) -) -(183,70:18663845,32995585:501378,78643,0 -(183,70:18827699,32995585:173670,78643,0 -) -) -(183,70:19165223,32995585:501378,78643,0 -(183,70:19329077,32995585:173670,78643,0 -) -) -(183,70:19666601,32995585:501378,78643,0 -(183,70:19830455,32995585:173670,78643,0 -) -) -(183,70:20167979,32995585:501378,78643,0 -(183,70:20331833,32995585:173670,78643,0 -) -) -(183,70:20669357,32995585:501378,78643,0 -(183,70:20833211,32995585:173670,78643,0 -) -) -(183,70:21170735,32995585:501378,78643,0 -(183,70:21334589,32995585:173670,78643,0 -) -) -(183,70:21672113,32995585:501378,78643,0 -(183,70:21835967,32995585:173670,78643,0 -) -) -(183,70:22173491,32995585:501378,78643,0 -(183,70:22337345,32995585:173670,78643,0 -) -) -(183,70:22674869,32995585:501378,78643,0 -(183,70:22838723,32995585:173670,78643,0 -) -) -(183,70:23176247,32995585:501378,78643,0 -(183,70:23340101,32995585:173670,78643,0 -) -) -(183,70:23677625,32995585:501378,78643,0 -(183,70:23841479,32995585:173670,78643,0 -) -) -(183,70:24179003,32995585:501378,78643,0 -(183,70:24342857,32995585:173670,78643,0 -) -) -(183,70:24680381,32995585:501378,78643,0 -(183,70:24844235,32995585:173670,78643,0 -) -) -(183,70:25181759,32995585:501378,78643,0 -(183,70:25345613,32995585:173670,78643,0 -) -) -(183,70:25683137,32995585:501378,78643,0 -(183,70:25846991,32995585:173670,78643,0 -) -) -(183,70:26184515,32995585:501378,78643,0 -(183,70:26348369,32995585:173670,78643,0 -) -) -(183,70:26685893,32995585:501378,78643,0 -(183,70:26849747,32995585:173670,78643,0 -) -) -(183,70:27187271,32995585:501378,78643,0 -(183,70:27351125,32995585:173670,78643,0 -) -) -(183,70:27688649,32995585:501378,78643,0 -(183,70:27852503,32995585:173670,78643,0 -) -) -(183,70:28190027,32995585:501378,78643,0 -(183,70:28353881,32995585:173670,78643,0 -) -) -(183,70:28691405,32995585:501378,78643,0 -(183,70:28855259,32995585:173670,78643,0 -) -) -(183,70:29192783,32995585:501378,78643,0 -(183,70:29356637,32995585:173670,78643,0 -) -) -(183,70:29694161,32995585:501378,78643,0 -(183,70:29858015,32995585:173670,78643,0 -) -) -(183,70:30195539,32995585:501378,78643,0 -(183,70:30359393,32995585:173670,78643,0 -) -) -(183,70:30696917,32995585:501378,78643,0 -(183,70:30860771,32995585:173670,78643,0 -) -) -(183,70:31239539,32995585:1343490,485622,0 -k183,70:31239539,32995585:0 -k183,70:31387652,32995585:148113 -) -g183,70:30911859,32995585 -g183,70:32583029,32995585 -) -(183,71:6630773,33837073:25952256,513147,134348 -g183,71:11218293,33837073 -h183,71:11218293,33837073:2490370,0,0 -h183,71:13708663,33837073:0,0,0 -g183,71:9121143,33837073 -(183,71:9121143,33837073:2097150,485622,11795 -k183,71:11218293,33837073:554432 -) -g183,71:14303072,33837073 -g183,71:17528098,33837073 -g183,71:18378755,33837073 -g183,71:20886162,33837073 -g183,71:22276836,33837073 -g183,71:23600663,33837073 -(183,71:23677625,33837073:501378,78643,0 -$183,71:23677625,33837073 -(183,71:23841479,33837073:173670,78643,0 -) -$183,71:24179003,33837073 -) -(183,71:24179003,33837073:501378,78643,0 -(183,71:24342857,33837073:173670,78643,0 -) -) -(183,71:24680381,33837073:501378,78643,0 -(183,71:24844235,33837073:173670,78643,0 -) -) -(183,71:25181759,33837073:501378,78643,0 -(183,71:25345613,33837073:173670,78643,0 -) -) -(183,71:25683137,33837073:501378,78643,0 -(183,71:25846991,33837073:173670,78643,0 -) -) -(183,71:26184515,33837073:501378,78643,0 -(183,71:26348369,33837073:173670,78643,0 -) -) -(183,71:26685893,33837073:501378,78643,0 -(183,71:26849747,33837073:173670,78643,0 -) -) -(183,71:27187271,33837073:501378,78643,0 -(183,71:27351125,33837073:173670,78643,0 -) -) -(183,71:27688649,33837073:501378,78643,0 -(183,71:27852503,33837073:173670,78643,0 -) -) -(183,71:28190027,33837073:501378,78643,0 -(183,71:28353881,33837073:173670,78643,0 -) -) -(183,71:28691405,33837073:501378,78643,0 -(183,71:28855259,33837073:173670,78643,0 -) -) -(183,71:29192783,33837073:501378,78643,0 -(183,71:29356637,33837073:173670,78643,0 -) -) -(183,71:29694161,33837073:501378,78643,0 -(183,71:29858015,33837073:173670,78643,0 -) -) -(183,71:30195539,33837073:501378,78643,0 -(183,71:30359393,33837073:173670,78643,0 -) -) -(183,71:30696917,33837073:501378,78643,0 -(183,71:30860771,33837073:173670,78643,0 -) -) -(183,71:31239539,33837073:1343490,485622,0 -k183,71:31239539,33837073:0 -k183,71:31387652,33837073:148113 -) -g183,71:30911859,33837073 -g183,71:32583029,33837073 -) -(183,72:6630773,34678561:25952256,513147,134348 -g183,72:11218293,34678561 -h183,72:11218293,34678561:2490370,0,0 -h183,72:13708663,34678561:0,0,0 -g183,72:9121143,34678561 -(183,72:9121143,34678561:2097150,485622,11795 -k183,72:11218293,34678561:554432 -) -g183,72:14303072,34678561 -g183,72:17528098,34678561 -g183,72:18378755,34678561 -g183,72:21311491,34678561 -g183,72:22702165,34678561 -g183,72:24682008,34678561 -(183,72:25181759,34678561:501378,78643,0 -$183,72:25181759,34678561 -(183,72:25345613,34678561:173670,78643,0 -) -$183,72:25683137,34678561 -) -(183,72:25683137,34678561:501378,78643,0 -(183,72:25846991,34678561:173670,78643,0 -) -) -(183,72:26184515,34678561:501378,78643,0 -(183,72:26348369,34678561:173670,78643,0 -) -) -(183,72:26685893,34678561:501378,78643,0 -(183,72:26849747,34678561:173670,78643,0 -) -) -(183,72:27187271,34678561:501378,78643,0 -(183,72:27351125,34678561:173670,78643,0 -) -) -(183,72:27688649,34678561:501378,78643,0 -(183,72:27852503,34678561:173670,78643,0 -) -) -(183,72:28190027,34678561:501378,78643,0 -(183,72:28353881,34678561:173670,78643,0 -) -) -(183,72:28691405,34678561:501378,78643,0 -(183,72:28855259,34678561:173670,78643,0 -) -) -(183,72:29192783,34678561:501378,78643,0 -(183,72:29356637,34678561:173670,78643,0 -) -) -(183,72:29694161,34678561:501378,78643,0 -(183,72:29858015,34678561:173670,78643,0 -) -) -(183,72:30195539,34678561:501378,78643,0 -(183,72:30359393,34678561:173670,78643,0 -) -) -(183,72:30696917,34678561:501378,78643,0 -(183,72:30860771,34678561:173670,78643,0 -) -) -(183,72:31239539,34678561:1343490,485622,11795 -k183,72:31239539,34678561:0 -k183,72:31387652,34678561:148113 -) -g183,72:30911859,34678561 -g183,72:32583029,34678561 -) -(183,73:6630773,35520049:25952256,505283,126483 -g183,73:9121143,35520049 -h183,73:9121143,35520049:983040,0,0 -h183,73:10104183,35520049:0,0,0 -g183,73:7613813,35520049 -(183,73:7613813,35520049:1507330,485622,11795 -k183,73:9121143,35520049:536742 -) -g183,73:12440541,35520049 -g183,73:13924276,35520049 -g183,73:16421853,35520049 -g183,73:18366306,35520049 -g183,73:18366306,35520049 -(183,73:18663845,35520049:501378,78643,0 -$183,73:18663845,35520049 -(183,73:18827699,35520049:173670,78643,0 -) -$183,73:19165223,35520049 -) -(183,73:19165223,35520049:501378,78643,0 -(183,73:19329077,35520049:173670,78643,0 -) -) -(183,73:19666601,35520049:501378,78643,0 -(183,73:19830455,35520049:173670,78643,0 -) -) -(183,73:20167979,35520049:501378,78643,0 -(183,73:20331833,35520049:173670,78643,0 -) -) -(183,73:20669357,35520049:501378,78643,0 -(183,73:20833211,35520049:173670,78643,0 -) -) -(183,73:21170735,35520049:501378,78643,0 -(183,73:21334589,35520049:173670,78643,0 -) -) -(183,73:21672113,35520049:501378,78643,0 -(183,73:21835967,35520049:173670,78643,0 -) -) -(183,73:22173491,35520049:501378,78643,0 -(183,73:22337345,35520049:173670,78643,0 -) -) -(183,73:22674869,35520049:501378,78643,0 -(183,73:22838723,35520049:173670,78643,0 -) -) -(183,73:23176247,35520049:501378,78643,0 -(183,73:23340101,35520049:173670,78643,0 -) -) -(183,73:23677625,35520049:501378,78643,0 -(183,73:23841479,35520049:173670,78643,0 -) -) -(183,73:24179003,35520049:501378,78643,0 -(183,73:24342857,35520049:173670,78643,0 -) -) -(183,73:24680381,35520049:501378,78643,0 -(183,73:24844235,35520049:173670,78643,0 -) -) -(183,73:25181759,35520049:501378,78643,0 -(183,73:25345613,35520049:173670,78643,0 -) -) -(183,73:25683137,35520049:501378,78643,0 -(183,73:25846991,35520049:173670,78643,0 -) -) -(183,73:26184515,35520049:501378,78643,0 -(183,73:26348369,35520049:173670,78643,0 -) -) -(183,73:26685893,35520049:501378,78643,0 -(183,73:26849747,35520049:173670,78643,0 -) -) -(183,73:27187271,35520049:501378,78643,0 -(183,73:27351125,35520049:173670,78643,0 -) -) -(183,73:27688649,35520049:501378,78643,0 -(183,73:27852503,35520049:173670,78643,0 -) -) -(183,73:28190027,35520049:501378,78643,0 -(183,73:28353881,35520049:173670,78643,0 -) -) -(183,73:28691405,35520049:501378,78643,0 -(183,73:28855259,35520049:173670,78643,0 -) -) -(183,73:29192783,35520049:501378,78643,0 -(183,73:29356637,35520049:173670,78643,0 -) -) -(183,73:29694161,35520049:501378,78643,0 -(183,73:29858015,35520049:173670,78643,0 -) -) -(183,73:30195539,35520049:501378,78643,0 -(183,73:30359393,35520049:173670,78643,0 -) -) -(183,73:30696917,35520049:501378,78643,0 -(183,73:30860771,35520049:173670,78643,0 -) -) -(183,73:31239539,35520049:1343490,485622,0 -k183,73:31239539,35520049:0 -k183,73:31387652,35520049:148113 -) -g183,73:30911859,35520049 -g183,73:32583029,35520049 -) -(183,74:6630773,36361537:25952256,505283,134348 -g183,74:9121143,36361537 -h183,74:9121143,36361537:983040,0,0 -h183,74:10104183,36361537:0,0,0 -g183,74:7613813,36361537 -(183,74:7613813,36361537:1507330,485622,11795 -k183,74:9121143,36361537:536742 -) -g183,74:11394586,36361537 -g183,74:13662131,36361537 -g183,74:15052805,36361537 -g183,74:18226713,36361537 -g183,74:20622053,36361537 -g183,74:20622053,36361537 -(183,74:20669357,36361537:501378,78643,0 -$183,74:20669357,36361537 -(183,74:20833211,36361537:173670,78643,0 -) -$183,74:21170735,36361537 -) -(183,74:21170735,36361537:501378,78643,0 -(183,74:21334589,36361537:173670,78643,0 -) -) -(183,74:21672113,36361537:501378,78643,0 -(183,74:21835967,36361537:173670,78643,0 -) -) -(183,74:22173491,36361537:501378,78643,0 -(183,74:22337345,36361537:173670,78643,0 -) -) -(183,74:22674869,36361537:501378,78643,0 -(183,74:22838723,36361537:173670,78643,0 -) -) -(183,74:23176247,36361537:501378,78643,0 -(183,74:23340101,36361537:173670,78643,0 -) -) -(183,74:23677625,36361537:501378,78643,0 -(183,74:23841479,36361537:173670,78643,0 -) -) -(183,74:24179003,36361537:501378,78643,0 -(183,74:24342857,36361537:173670,78643,0 -) -) -(183,74:24680381,36361537:501378,78643,0 -(183,74:24844235,36361537:173670,78643,0 -) -) -(183,74:25181759,36361537:501378,78643,0 -(183,74:25345613,36361537:173670,78643,0 -) -) -(183,74:25683137,36361537:501378,78643,0 -(183,74:25846991,36361537:173670,78643,0 -) -) -(183,74:26184515,36361537:501378,78643,0 -(183,74:26348369,36361537:173670,78643,0 -) -) -(183,74:26685893,36361537:501378,78643,0 -(183,74:26849747,36361537:173670,78643,0 -) -) -(183,74:27187271,36361537:501378,78643,0 -(183,74:27351125,36361537:173670,78643,0 -) -) -(183,74:27688649,36361537:501378,78643,0 -(183,74:27852503,36361537:173670,78643,0 -) -) -(183,74:28190027,36361537:501378,78643,0 -(183,74:28353881,36361537:173670,78643,0 -) -) -(183,74:28691405,36361537:501378,78643,0 -(183,74:28855259,36361537:173670,78643,0 -) -) -(183,74:29192783,36361537:501378,78643,0 -(183,74:29356637,36361537:173670,78643,0 -) -) -(183,74:29694161,36361537:501378,78643,0 -(183,74:29858015,36361537:173670,78643,0 -) -) -(183,74:30195539,36361537:501378,78643,0 -(183,74:30359393,36361537:173670,78643,0 -) -) -(183,74:30696917,36361537:501378,78643,0 -(183,74:30860771,36361537:173670,78643,0 -) -) -(183,74:31239539,36361537:1343490,485622,11795 -k183,74:31239539,36361537:0 -k183,74:31387652,36361537:148113 -) -g183,74:30911859,36361537 -g183,74:32583029,36361537 -) -(183,75:6630773,37203025:25952256,513147,126483 -g183,75:9121143,37203025 -h183,75:9121143,37203025:983040,0,0 -h183,75:10104183,37203025:0,0,0 -g183,75:7613813,37203025 -(183,75:7613813,37203025:1507330,485622,11795 -k183,75:9121143,37203025:536742 -) -g183,75:10517059,37203025 -g183,75:13387535,37203025 -g183,75:15218610,37203025 -g183,75:16077131,37203025 -g183,75:18021584,37203025 -g183,75:18021584,37203025 -(183,75:18162467,37203025:501378,78643,0 -$183,75:18162467,37203025 -(183,75:18326321,37203025:173670,78643,0 -) -$183,75:18663845,37203025 -) -(183,75:18663845,37203025:501378,78643,0 -(183,75:18827699,37203025:173670,78643,0 -) -) -(183,75:19165223,37203025:501378,78643,0 -(183,75:19329077,37203025:173670,78643,0 -) -) -(183,75:19666601,37203025:501378,78643,0 -(183,75:19830455,37203025:173670,78643,0 -) -) -(183,75:20167979,37203025:501378,78643,0 -(183,75:20331833,37203025:173670,78643,0 -) -) -(183,75:20669357,37203025:501378,78643,0 -(183,75:20833211,37203025:173670,78643,0 -) -) -(183,75:21170735,37203025:501378,78643,0 -(183,75:21334589,37203025:173670,78643,0 -) -) -(183,75:21672113,37203025:501378,78643,0 -(183,75:21835967,37203025:173670,78643,0 -) -) -(183,75:22173491,37203025:501378,78643,0 -(183,75:22337345,37203025:173670,78643,0 -) -) -(183,75:22674869,37203025:501378,78643,0 -(183,75:22838723,37203025:173670,78643,0 -) -) -(183,75:23176247,37203025:501378,78643,0 -(183,75:23340101,37203025:173670,78643,0 -) -) -(183,75:23677625,37203025:501378,78643,0 -(183,75:23841479,37203025:173670,78643,0 -) -) -(183,75:24179003,37203025:501378,78643,0 -(183,75:24342857,37203025:173670,78643,0 -) -) -(183,75:24680381,37203025:501378,78643,0 -(183,75:24844235,37203025:173670,78643,0 -) -) -(183,75:25181759,37203025:501378,78643,0 -(183,75:25345613,37203025:173670,78643,0 -) -) -(183,75:25683137,37203025:501378,78643,0 -(183,75:25846991,37203025:173670,78643,0 -) -) -(183,75:26184515,37203025:501378,78643,0 -(183,75:26348369,37203025:173670,78643,0 -) -) -(183,75:26685893,37203025:501378,78643,0 -(183,75:26849747,37203025:173670,78643,0 -) -) -(183,75:27187271,37203025:501378,78643,0 -(183,75:27351125,37203025:173670,78643,0 -) -) -(183,75:27688649,37203025:501378,78643,0 -(183,75:27852503,37203025:173670,78643,0 -) -) -(183,75:28190027,37203025:501378,78643,0 -(183,75:28353881,37203025:173670,78643,0 -) -) -(183,75:28691405,37203025:501378,78643,0 -(183,75:28855259,37203025:173670,78643,0 -) -) -(183,75:29192783,37203025:501378,78643,0 -(183,75:29356637,37203025:173670,78643,0 -) -) -(183,75:29694161,37203025:501378,78643,0 -(183,75:29858015,37203025:173670,78643,0 -) -) -(183,75:30195539,37203025:501378,78643,0 -(183,75:30359393,37203025:173670,78643,0 -) -) -(183,75:30696917,37203025:501378,78643,0 -(183,75:30860771,37203025:173670,78643,0 -) -) -(183,75:31239539,37203025:1343490,485622,11795 -k183,75:31239539,37203025:0 -k183,75:31387652,37203025:148113 -) -g183,75:30911859,37203025 -g183,75:32583029,37203025 -) -(183,76:6630773,38044513:25952256,505283,134348 -g183,76:11218293,38044513 -h183,76:11218293,38044513:2490370,0,0 -h183,76:13708663,38044513:0,0,0 -g183,76:9121143,38044513 -(183,76:9121143,38044513:2097150,485622,11795 -k183,76:11218293,38044513:554432 -) -g183,76:13787304,38044513 -g183,76:16189854,38044513 -(183,76:16658333,38044513:501378,78643,0 -$183,76:16658333,38044513 -(183,76:16822187,38044513:173670,78643,0 -) -$183,76:17159711,38044513 -) -(183,76:17159711,38044513:501378,78643,0 -(183,76:17323565,38044513:173670,78643,0 -) -) -(183,76:17661089,38044513:501378,78643,0 -(183,76:17824943,38044513:173670,78643,0 -) -) -(183,76:18162467,38044513:501378,78643,0 -(183,76:18326321,38044513:173670,78643,0 -) -) -(183,76:18663845,38044513:501378,78643,0 -(183,76:18827699,38044513:173670,78643,0 -) -) -(183,76:19165223,38044513:501378,78643,0 -(183,76:19329077,38044513:173670,78643,0 -) -) -(183,76:19666601,38044513:501378,78643,0 -(183,76:19830455,38044513:173670,78643,0 -) -) -(183,76:20167979,38044513:501378,78643,0 -(183,76:20331833,38044513:173670,78643,0 -) -) -(183,76:20669357,38044513:501378,78643,0 -(183,76:20833211,38044513:173670,78643,0 -) -) -(183,76:21170735,38044513:501378,78643,0 -(183,76:21334589,38044513:173670,78643,0 -) -) -(183,76:21672113,38044513:501378,78643,0 -(183,76:21835967,38044513:173670,78643,0 -) -) -(183,76:22173491,38044513:501378,78643,0 -(183,76:22337345,38044513:173670,78643,0 -) -) -(183,76:22674869,38044513:501378,78643,0 -(183,76:22838723,38044513:173670,78643,0 -) -) -(183,76:23176247,38044513:501378,78643,0 -(183,76:23340101,38044513:173670,78643,0 -) -) -(183,76:23677625,38044513:501378,78643,0 -(183,76:23841479,38044513:173670,78643,0 -) -) -(183,76:24179003,38044513:501378,78643,0 -(183,76:24342857,38044513:173670,78643,0 -) -) -(183,76:24680381,38044513:501378,78643,0 -(183,76:24844235,38044513:173670,78643,0 -) -) -(183,76:25181759,38044513:501378,78643,0 -(183,76:25345613,38044513:173670,78643,0 -) -) -(183,76:25683137,38044513:501378,78643,0 -(183,76:25846991,38044513:173670,78643,0 -) -) -(183,76:26184515,38044513:501378,78643,0 -(183,76:26348369,38044513:173670,78643,0 -) -) -(183,76:26685893,38044513:501378,78643,0 -(183,76:26849747,38044513:173670,78643,0 -) -) -(183,76:27187271,38044513:501378,78643,0 -(183,76:27351125,38044513:173670,78643,0 -) -) -(183,76:27688649,38044513:501378,78643,0 -(183,76:27852503,38044513:173670,78643,0 -) -) -(183,76:28190027,38044513:501378,78643,0 -(183,76:28353881,38044513:173670,78643,0 -) -) -(183,76:28691405,38044513:501378,78643,0 -(183,76:28855259,38044513:173670,78643,0 -) -) -(183,76:29192783,38044513:501378,78643,0 -(183,76:29356637,38044513:173670,78643,0 -) -) -(183,76:29694161,38044513:501378,78643,0 -(183,76:29858015,38044513:173670,78643,0 -) -) -(183,76:30195539,38044513:501378,78643,0 -(183,76:30359393,38044513:173670,78643,0 -) -) -(183,76:30696917,38044513:501378,78643,0 -(183,76:30860771,38044513:173670,78643,0 -) -) -(183,76:31239539,38044513:1343490,485622,11795 -k183,76:31239539,38044513:0 -k183,76:31387652,38044513:148113 -) -g183,76:30911859,38044513 -g183,76:32583029,38044513 -) -(183,77:6630773,39541361:25952256,505283,134348 -g183,77:7613813,39541361 -h183,77:7613813,39541361:0,0,0 -g183,77:6630773,39541361 -(183,77:6630773,39541361:983040,479724,0 -k183,77:7613813,39541361:574751 -) -g183,77:9083130,39541361 -g183,77:9759461,39541361 -g183,77:13090000,39541361 -k183,77:23645228,39541361:7594311 -k183,77:31239539,39541361:7594311 -(183,77:31239539,39541361:1343490,485622,11795 -k183,77:31358161,39541361:118622 -) -g183,77:31239539,39541361 -g183,77:32583029,39541361 -) -(183,78:6630773,40382849:25952256,513147,126483 -g183,78:9121143,40382849 -h183,78:9121143,40382849:983040,0,0 -h183,78:10104183,40382849:0,0,0 -g183,78:7613813,40382849 -(183,78:7613813,40382849:1507330,481690,0 -k183,78:9121143,40382849:536742 -) -g183,78:10959427,40382849 -g183,78:11817948,40382849 -g183,78:13220418,40382849 -g183,78:15837270,40382849 -g183,78:15837270,40382849 -(183,78:16156955,40382849:501378,78643,0 -$183,78:16156955,40382849 -(183,78:16320809,40382849:173670,78643,0 -) -$183,78:16658333,40382849 -) -(183,78:16658333,40382849:501378,78643,0 -(183,78:16822187,40382849:173670,78643,0 -) -) -(183,78:17159711,40382849:501378,78643,0 -(183,78:17323565,40382849:173670,78643,0 -) -) -(183,78:17661089,40382849:501378,78643,0 -(183,78:17824943,40382849:173670,78643,0 -) -) -(183,78:18162467,40382849:501378,78643,0 -(183,78:18326321,40382849:173670,78643,0 -) -) -(183,78:18663845,40382849:501378,78643,0 -(183,78:18827699,40382849:173670,78643,0 -) -) -(183,78:19165223,40382849:501378,78643,0 -(183,78:19329077,40382849:173670,78643,0 -) -) -(183,78:19666601,40382849:501378,78643,0 -(183,78:19830455,40382849:173670,78643,0 -) -) -(183,78:20167979,40382849:501378,78643,0 -(183,78:20331833,40382849:173670,78643,0 -) -) -(183,78:20669357,40382849:501378,78643,0 -(183,78:20833211,40382849:173670,78643,0 -) -) -(183,78:21170735,40382849:501378,78643,0 -(183,78:21334589,40382849:173670,78643,0 -) -) -(183,78:21672113,40382849:501378,78643,0 -(183,78:21835967,40382849:173670,78643,0 -) -) -(183,78:22173491,40382849:501378,78643,0 -(183,78:22337345,40382849:173670,78643,0 -) -) -(183,78:22674869,40382849:501378,78643,0 -(183,78:22838723,40382849:173670,78643,0 -) -) -(183,78:23176247,40382849:501378,78643,0 -(183,78:23340101,40382849:173670,78643,0 -) -) -(183,78:23677625,40382849:501378,78643,0 -(183,78:23841479,40382849:173670,78643,0 -) -) -(183,78:24179003,40382849:501378,78643,0 -(183,78:24342857,40382849:173670,78643,0 -) -) -(183,78:24680381,40382849:501378,78643,0 -(183,78:24844235,40382849:173670,78643,0 -) -) -(183,78:25181759,40382849:501378,78643,0 -(183,78:25345613,40382849:173670,78643,0 -) -) -(183,78:25683137,40382849:501378,78643,0 -(183,78:25846991,40382849:173670,78643,0 -) -) -(183,78:26184515,40382849:501378,78643,0 -(183,78:26348369,40382849:173670,78643,0 -) -) -(183,78:26685893,40382849:501378,78643,0 -(183,78:26849747,40382849:173670,78643,0 -) -) -(183,78:27187271,40382849:501378,78643,0 -(183,78:27351125,40382849:173670,78643,0 -) -) -(183,78:27688649,40382849:501378,78643,0 -(183,78:27852503,40382849:173670,78643,0 -) -) -(183,78:28190027,40382849:501378,78643,0 -(183,78:28353881,40382849:173670,78643,0 -) -) -(183,78:28691405,40382849:501378,78643,0 -(183,78:28855259,40382849:173670,78643,0 -) -) -(183,78:29192783,40382849:501378,78643,0 -(183,78:29356637,40382849:173670,78643,0 -) -) -(183,78:29694161,40382849:501378,78643,0 -(183,78:29858015,40382849:173670,78643,0 -) -) -(183,78:30195539,40382849:501378,78643,0 -(183,78:30359393,40382849:173670,78643,0 -) -) -(183,78:30696917,40382849:501378,78643,0 -(183,78:30860771,40382849:173670,78643,0 -) -) -(183,78:31239539,40382849:1343490,485622,11795 -k183,78:31239539,40382849:0 -k183,78:31387652,40382849:148113 -) -g183,78:30911859,40382849 -g183,78:32583029,40382849 -) -(183,79:6630773,41224337:25952256,505283,11795 -g183,79:9121143,41224337 -h183,79:9121143,41224337:983040,0,0 -h183,79:10104183,41224337:0,0,0 -g183,79:7613813,41224337 -(183,79:7613813,41224337:1507330,485622,0 -k183,79:9121143,41224337:536742 -) -g183,79:12429400,41224337 -g183,79:16136771,41224337 -g183,79:16136771,41224337 -(183,79:16156955,41224337:501378,78643,0 -$183,79:16156955,41224337 -(183,79:16320809,41224337:173670,78643,0 -) -$183,79:16658333,41224337 -) -(183,79:16658333,41224337:501378,78643,0 -(183,79:16822187,41224337:173670,78643,0 -) -) -(183,79:17159711,41224337:501378,78643,0 -(183,79:17323565,41224337:173670,78643,0 -) -) -(183,79:17661089,41224337:501378,78643,0 -(183,79:17824943,41224337:173670,78643,0 -) -) -(183,79:18162467,41224337:501378,78643,0 -(183,79:18326321,41224337:173670,78643,0 -) -) -(183,79:18663845,41224337:501378,78643,0 -(183,79:18827699,41224337:173670,78643,0 -) -) -(183,79:19165223,41224337:501378,78643,0 -(183,79:19329077,41224337:173670,78643,0 -) -) -(183,79:19666601,41224337:501378,78643,0 -(183,79:19830455,41224337:173670,78643,0 -) -) -(183,79:20167979,41224337:501378,78643,0 -(183,79:20331833,41224337:173670,78643,0 -) -) -(183,79:20669357,41224337:501378,78643,0 -(183,79:20833211,41224337:173670,78643,0 -) -) -(183,79:21170735,41224337:501378,78643,0 -(183,79:21334589,41224337:173670,78643,0 -) -) -(183,79:21672113,41224337:501378,78643,0 -(183,79:21835967,41224337:173670,78643,0 -) -) -(183,79:22173491,41224337:501378,78643,0 -(183,79:22337345,41224337:173670,78643,0 -) -) -(183,79:22674869,41224337:501378,78643,0 -(183,79:22838723,41224337:173670,78643,0 -) -) -(183,79:23176247,41224337:501378,78643,0 -(183,79:23340101,41224337:173670,78643,0 -) -) -(183,79:23677625,41224337:501378,78643,0 -(183,79:23841479,41224337:173670,78643,0 -) -) -(183,79:24179003,41224337:501378,78643,0 -(183,79:24342857,41224337:173670,78643,0 -) -) -(183,79:24680381,41224337:501378,78643,0 -(183,79:24844235,41224337:173670,78643,0 -) -) -(183,79:25181759,41224337:501378,78643,0 -(183,79:25345613,41224337:173670,78643,0 -) -) -(183,79:25683137,41224337:501378,78643,0 -(183,79:25846991,41224337:173670,78643,0 -) -) -(183,79:26184515,41224337:501378,78643,0 -(183,79:26348369,41224337:173670,78643,0 -) -) -(183,79:26685893,41224337:501378,78643,0 -(183,79:26849747,41224337:173670,78643,0 -) -) -(183,79:27187271,41224337:501378,78643,0 -(183,79:27351125,41224337:173670,78643,0 -) -) -(183,79:27688649,41224337:501378,78643,0 -(183,79:27852503,41224337:173670,78643,0 -) -) -(183,79:28190027,41224337:501378,78643,0 -(183,79:28353881,41224337:173670,78643,0 -) -) -(183,79:28691405,41224337:501378,78643,0 -(183,79:28855259,41224337:173670,78643,0 -) -) -(183,79:29192783,41224337:501378,78643,0 -(183,79:29356637,41224337:173670,78643,0 -) -) -(183,79:29694161,41224337:501378,78643,0 -(183,79:29858015,41224337:173670,78643,0 -) -) -(183,79:30195539,41224337:501378,78643,0 -(183,79:30359393,41224337:173670,78643,0 -) -) -(183,79:30696917,41224337:501378,78643,0 -(183,79:30860771,41224337:173670,78643,0 -) -) -(183,79:31239539,41224337:1343490,485622,11795 -k183,79:31239539,41224337:0 -k183,79:31387652,41224337:148113 -) -g183,79:30911859,41224337 -g183,79:32583029,41224337 -) -(183,80:6630773,42065825:25952256,505283,11795 -g183,80:9121143,42065825 -h183,80:9121143,42065825:983040,0,0 -h183,80:10104183,42065825:0,0,0 -g183,80:7613813,42065825 -(183,80:7613813,42065825:1507330,485622,11795 -k183,80:9121143,42065825:536742 -) -g183,80:13514676,42065825 -g183,80:13514676,42065825 -(183,80:13650065,42065825:501378,78643,0 -$183,80:13650065,42065825 -(183,80:13813919,42065825:173670,78643,0 -) -$183,80:14151443,42065825 -) -(183,80:14151443,42065825:501378,78643,0 -(183,80:14315297,42065825:173670,78643,0 -) -) -(183,80:14652821,42065825:501378,78643,0 -(183,80:14816675,42065825:173670,78643,0 -) -) -(183,80:15154199,42065825:501378,78643,0 -(183,80:15318053,42065825:173670,78643,0 -) -) -(183,80:15655577,42065825:501378,78643,0 -(183,80:15819431,42065825:173670,78643,0 -) -) -(183,80:16156955,42065825:501378,78643,0 -(183,80:16320809,42065825:173670,78643,0 -) -) -(183,80:16658333,42065825:501378,78643,0 -(183,80:16822187,42065825:173670,78643,0 -) -) -(183,80:17159711,42065825:501378,78643,0 -(183,80:17323565,42065825:173670,78643,0 -) -) -(183,80:17661089,42065825:501378,78643,0 -(183,80:17824943,42065825:173670,78643,0 -) -) -(183,80:18162467,42065825:501378,78643,0 -(183,80:18326321,42065825:173670,78643,0 -) -) -(183,80:18663845,42065825:501378,78643,0 -(183,80:18827699,42065825:173670,78643,0 -) -) -(183,80:19165223,42065825:501378,78643,0 -(183,80:19329077,42065825:173670,78643,0 -) -) -(183,80:19666601,42065825:501378,78643,0 -(183,80:19830455,42065825:173670,78643,0 -) -) -(183,80:20167979,42065825:501378,78643,0 -(183,80:20331833,42065825:173670,78643,0 -) -) -(183,80:20669357,42065825:501378,78643,0 -(183,80:20833211,42065825:173670,78643,0 -) -) -(183,80:21170735,42065825:501378,78643,0 -(183,80:21334589,42065825:173670,78643,0 -) -) -(183,80:21672113,42065825:501378,78643,0 -(183,80:21835967,42065825:173670,78643,0 -) -) -(183,80:22173491,42065825:501378,78643,0 -(183,80:22337345,42065825:173670,78643,0 -) -) -(183,80:22674869,42065825:501378,78643,0 -(183,80:22838723,42065825:173670,78643,0 -) -) -(183,80:23176247,42065825:501378,78643,0 -(183,80:23340101,42065825:173670,78643,0 -) -) -(183,80:23677625,42065825:501378,78643,0 -(183,80:23841479,42065825:173670,78643,0 -) -) -(183,80:24179003,42065825:501378,78643,0 -(183,80:24342857,42065825:173670,78643,0 -) -) -(183,80:24680381,42065825:501378,78643,0 -(183,80:24844235,42065825:173670,78643,0 -) -) -(183,80:25181759,42065825:501378,78643,0 -(183,80:25345613,42065825:173670,78643,0 -) -) -(183,80:25683137,42065825:501378,78643,0 -(183,80:25846991,42065825:173670,78643,0 -) -) -(183,80:26184515,42065825:501378,78643,0 -(183,80:26348369,42065825:173670,78643,0 -) -) -(183,80:26685893,42065825:501378,78643,0 -(183,80:26849747,42065825:173670,78643,0 -) -) -(183,80:27187271,42065825:501378,78643,0 -(183,80:27351125,42065825:173670,78643,0 -) -) -(183,80:27688649,42065825:501378,78643,0 -(183,80:27852503,42065825:173670,78643,0 -) -) -(183,80:28190027,42065825:501378,78643,0 -(183,80:28353881,42065825:173670,78643,0 -) -) -(183,80:28691405,42065825:501378,78643,0 -(183,80:28855259,42065825:173670,78643,0 -) -) -(183,80:29192783,42065825:501378,78643,0 -(183,80:29356637,42065825:173670,78643,0 -) -) -(183,80:29694161,42065825:501378,78643,0 -(183,80:29858015,42065825:173670,78643,0 -) -) -(183,80:30195539,42065825:501378,78643,0 -(183,80:30359393,42065825:173670,78643,0 -) -) -(183,80:30696917,42065825:501378,78643,0 -(183,80:30860771,42065825:173670,78643,0 -) -) -(183,80:31239540,42065825:1343490,485622,11795 -k183,80:31239540,42065825:0 -k183,80:31387653,42065825:148113 -) -g183,80:30911860,42065825 -g183,80:32583030,42065825 -) -(183,81:6630773,42907313:25952256,513147,126483 -g183,81:11218293,42907313 -h183,81:11218293,42907313:2490370,0,0 -h183,81:13708663,42907313:0,0,0 -g183,81:9121143,42907313 -(183,81:9121143,42907313:2097150,485622,11795 -k183,81:11218293,42907313:554432 -) -g183,81:13832524,42907313 -g183,81:15599374,42907313 -g183,81:19210408,42907313 -(183,81:19666601,42907313:501378,78643,0 -$183,81:19666601,42907313 -(183,81:19830455,42907313:173670,78643,0 -) -$183,81:20167979,42907313 -) -(183,81:20167979,42907313:501378,78643,0 -(183,81:20331833,42907313:173670,78643,0 -) -) -(183,81:20669357,42907313:501378,78643,0 -(183,81:20833211,42907313:173670,78643,0 -) -) -(183,81:21170735,42907313:501378,78643,0 -(183,81:21334589,42907313:173670,78643,0 -) -) -(183,81:21672113,42907313:501378,78643,0 -(183,81:21835967,42907313:173670,78643,0 -) -) -(183,81:22173491,42907313:501378,78643,0 -(183,81:22337345,42907313:173670,78643,0 -) -) -(183,81:22674869,42907313:501378,78643,0 -(183,81:22838723,42907313:173670,78643,0 -) -) -(183,81:23176247,42907313:501378,78643,0 -(183,81:23340101,42907313:173670,78643,0 -) -) -(183,81:23677625,42907313:501378,78643,0 -(183,81:23841479,42907313:173670,78643,0 -) -) -(183,81:24179003,42907313:501378,78643,0 -(183,81:24342857,42907313:173670,78643,0 -) -) -(183,81:24680381,42907313:501378,78643,0 -(183,81:24844235,42907313:173670,78643,0 -) -) -(183,81:25181759,42907313:501378,78643,0 -(183,81:25345613,42907313:173670,78643,0 -) -) -(183,81:25683137,42907313:501378,78643,0 -(183,81:25846991,42907313:173670,78643,0 -) -) -(183,81:26184515,42907313:501378,78643,0 -(183,81:26348369,42907313:173670,78643,0 -) -) -(183,81:26685893,42907313:501378,78643,0 -(183,81:26849747,42907313:173670,78643,0 -) -) -(183,81:27187271,42907313:501378,78643,0 -(183,81:27351125,42907313:173670,78643,0 -) -) -(183,81:27688649,42907313:501378,78643,0 -(183,81:27852503,42907313:173670,78643,0 -) -) -(183,81:28190027,42907313:501378,78643,0 -(183,81:28353881,42907313:173670,78643,0 -) -) -(183,81:28691405,42907313:501378,78643,0 -(183,81:28855259,42907313:173670,78643,0 -) -) -(183,81:29192783,42907313:501378,78643,0 -(183,81:29356637,42907313:173670,78643,0 -) -) -(183,81:29694161,42907313:501378,78643,0 -(183,81:29858015,42907313:173670,78643,0 -) -) -(183,81:30195539,42907313:501378,78643,0 -(183,81:30359393,42907313:173670,78643,0 -) -) -(183,81:30696917,42907313:501378,78643,0 -(183,81:30860771,42907313:173670,78643,0 -) -) -(183,81:31239539,42907313:1343490,485622,11795 -k183,81:31239539,42907313:0 -k183,81:31387652,42907313:148113 -) -g183,81:30911859,42907313 -g183,81:32583029,42907313 -) -(183,82:6630773,43748801:25952256,513147,126483 -g183,82:11218293,43748801 -h183,82:11218293,43748801:2490370,0,0 -h183,82:13708663,43748801:0,0,0 -g183,82:9121143,43748801 -(183,82:9121143,43748801:2097150,485622,11795 -k183,82:11218293,43748801:554432 -) -g183,82:15375897,43748801 -g183,82:17142747,43748801 -g183,82:20953010,43748801 -g183,82:22343684,43748801 -g183,82:25274454,43748801 -(183,82:25683137,43748801:501378,78643,0 -$183,82:25683137,43748801 -(183,82:25846991,43748801:173670,78643,0 -) -$183,82:26184515,43748801 -) -(183,82:26184515,43748801:501378,78643,0 -(183,82:26348369,43748801:173670,78643,0 -) -) -(183,82:26685893,43748801:501378,78643,0 -(183,82:26849747,43748801:173670,78643,0 -) -) -(183,82:27187271,43748801:501378,78643,0 -(183,82:27351125,43748801:173670,78643,0 -) -) -(183,82:27688649,43748801:501378,78643,0 -(183,82:27852503,43748801:173670,78643,0 -) -) -(183,82:28190027,43748801:501378,78643,0 -(183,82:28353881,43748801:173670,78643,0 -) -) -(183,82:28691405,43748801:501378,78643,0 -(183,82:28855259,43748801:173670,78643,0 -) -) -(183,82:29192783,43748801:501378,78643,0 -(183,82:29356637,43748801:173670,78643,0 -) -) -(183,82:29694161,43748801:501378,78643,0 -(183,82:29858015,43748801:173670,78643,0 -) -) -(183,82:30195539,43748801:501378,78643,0 -(183,82:30359393,43748801:173670,78643,0 -) -) -(183,82:30696917,43748801:501378,78643,0 -(183,82:30860771,43748801:173670,78643,0 -) -) -(183,82:31239539,43748801:1343490,485622,11795 -k183,82:31239539,43748801:0 -k183,82:31387652,43748801:148113 -) -g183,82:30911859,43748801 -g183,82:32583029,43748801 -) -(183,83:6630773,44590289:25952256,513147,126483 -g183,83:11218293,44590289 -h183,83:11218293,44590289:2490370,0,0 -h183,83:13708663,44590289:0,0,0 -g183,83:9121143,44590289 -(183,83:9121143,44590289:2097150,485622,11795 -k183,83:11218293,44590289:554432 -) -g183,83:14453805,44590289 -g183,83:16220655,44590289 -g183,83:20030918,44590289 -g183,83:21421592,44590289 -g183,83:25425186,44590289 -(183,83:25683137,44590289:501378,78643,0 -$183,83:25683137,44590289 -(183,83:25846991,44590289:173670,78643,0 -) -$183,83:26184515,44590289 -) -(183,83:26184515,44590289:501378,78643,0 -(183,83:26348369,44590289:173670,78643,0 -) -) -(183,83:26685893,44590289:501378,78643,0 -(183,83:26849747,44590289:173670,78643,0 -) -) -(183,83:27187271,44590289:501378,78643,0 -(183,83:27351125,44590289:173670,78643,0 -) -) -(183,83:27688649,44590289:501378,78643,0 -(183,83:27852503,44590289:173670,78643,0 -) -) -(183,83:28190027,44590289:501378,78643,0 -(183,83:28353881,44590289:173670,78643,0 -) -) -(183,83:28691405,44590289:501378,78643,0 -(183,83:28855259,44590289:173670,78643,0 -) -) -(183,83:29192783,44590289:501378,78643,0 -(183,83:29356637,44590289:173670,78643,0 -) -) -(183,83:29694161,44590289:501378,78643,0 -(183,83:29858015,44590289:173670,78643,0 -) -) -(183,83:30195539,44590289:501378,78643,0 -(183,83:30359393,44590289:173670,78643,0 -) -) -(183,83:30696917,44590289:501378,78643,0 -(183,83:30860771,44590289:173670,78643,0 -) -) -(183,83:31239539,44590289:1343490,485622,11795 -k183,83:31239539,44590289:0 -k183,83:31387652,44590289:148113 -) -g183,83:30911859,44590289 -g183,83:32583029,44590289 -) -(183,84:6630773,45431777:25952256,513147,11795 -g183,84:11218293,45431777 -h183,84:11218293,45431777:2490370,0,0 -h183,84:13708663,45431777:0,0,0 -g183,84:9121143,45431777 -(183,84:9121143,45431777:2097150,485622,11795 -k183,84:11218293,45431777:554432 -) -g183,84:14668763,45431777 -g183,84:16784265,45431777 -g183,84:18551115,45431777 -g183,84:19106204,45431777 -g183,84:22887631,45431777 -(183,84:23176247,45431777:501378,78643,0 -$183,84:23176247,45431777 -(183,84:23340101,45431777:173670,78643,0 -) -$183,84:23677625,45431777 -) -(183,84:23677625,45431777:501378,78643,0 -(183,84:23841479,45431777:173670,78643,0 -) -) -(183,84:24179003,45431777:501378,78643,0 -(183,84:24342857,45431777:173670,78643,0 -) -) -(183,84:24680381,45431777:501378,78643,0 -(183,84:24844235,45431777:173670,78643,0 -) -) -(183,84:25181759,45431777:501378,78643,0 -(183,84:25345613,45431777:173670,78643,0 -) -) -(183,84:25683137,45431777:501378,78643,0 -(183,84:25846991,45431777:173670,78643,0 -) -) -(183,84:26184515,45431777:501378,78643,0 -(183,84:26348369,45431777:173670,78643,0 -) -) -(183,84:26685893,45431777:501378,78643,0 -(183,84:26849747,45431777:173670,78643,0 -) -) -(183,84:27187271,45431777:501378,78643,0 -(183,84:27351125,45431777:173670,78643,0 -) -) -(183,84:27688649,45431777:501378,78643,0 -(183,84:27852503,45431777:173670,78643,0 -) -) -(183,84:28190027,45431777:501378,78643,0 -(183,84:28353881,45431777:173670,78643,0 -) -) -(183,84:28691405,45431777:501378,78643,0 -(183,84:28855259,45431777:173670,78643,0 -) -) -(183,84:29192783,45431777:501378,78643,0 -(183,84:29356637,45431777:173670,78643,0 -) -) -(183,84:29694161,45431777:501378,78643,0 -(183,84:29858015,45431777:173670,78643,0 -) -) -(183,84:30195539,45431777:501378,78643,0 -(183,84:30359393,45431777:173670,78643,0 -) -) -(183,84:30696917,45431777:501378,78643,0 -(183,84:30860771,45431777:173670,78643,0 -) -) -(183,84:31239539,45431777:1343490,485622,11795 -k183,84:31239539,45431777:0 -k183,84:31387652,45431777:148113 -) -g183,84:30911859,45431777 -g183,84:32583029,45431777 -) -] -(183,86:32583029,45706769:0,0,0 -g183,86:32583029,45706769 -) -) -] -(183,86:6630773,47279633:25952256,0,0 -h183,86:6630773,47279633:25952256,0,0 -) -] -(183,86:4262630,4025873:0,0,0 -[183,86:-473656,4025873:0,0,0 -(183,86:-473656,-710413:0,0,0 -(183,86:-473656,-710413:0,0,0 -g183,86:-473656,-710413 -) -g183,86:-473656,-710413 -) -] -) -] -!125484 -}3 -!11 -{4 -[183,132:4262630,47279633:28320399,43253760,0 -(183,132:4262630,4025873:0,0,0 -[183,132:-473656,4025873:0,0,0 -(183,132:-473656,-710413:0,0,0 -(183,132:-473656,-644877:0,0,0 -k183,132:-473656,-644877:-65536 -) -(183,132:-473656,4736287:0,0,0 -k183,132:-473656,4736287:5209943 -) -g183,132:-473656,-710413 -) -] -) -[183,132:6630773,47279633:25952256,43253760,0 -[183,132:6630773,4812305:25952256,786432,0 -(183,132:6630773,4812305:25952256,485622,11795 -(183,132:6630773,4812305:25952256,485622,11795 -g183,132:3078558,4812305 -[183,132:3078558,4812305:0,0,0 -(183,132:3078558,2439708:0,1703936,0 -k183,132:1358238,2439708:-1720320 -(1,122:1358238,2439708:1720320,1703936,0 -(1,122:1358238,2439708:1179648,16384,0 -r183,132:2537886,2439708:1179648,16384,0 -) -g1,122:3062174,2439708 -(1,122:3062174,2439708:16384,1703936,0 -[1,122:3062174,2439708:25952256,1703936,0 -(1,122:3062174,1915420:25952256,1179648,0 -(1,122:3062174,1915420:16384,1179648,0 -r183,132:3078558,1915420:16384,1179648,0 -) -k1,122:29014430,1915420:25935872 -g1,122:29014430,1915420 -) -] -) -) -) -] -[183,132:3078558,4812305:0,0,0 -(183,132:3078558,2439708:0,1703936,0 -g183,132:29030814,2439708 -g183,132:36135244,2439708 -(1,122:36135244,2439708:1720320,1703936,0 -(1,122:36135244,2439708:16384,1703936,0 -[1,122:36135244,2439708:25952256,1703936,0 -(1,122:36135244,1915420:25952256,1179648,0 -(1,122:36135244,1915420:16384,1179648,0 -r183,132:36151628,1915420:16384,1179648,0 -) -k1,122:62087500,1915420:25935872 -g1,122:62087500,1915420 -) -] -) -g1,122:36675916,2439708 -(1,122:36675916,2439708:1179648,16384,0 -r183,132:37855564,2439708:1179648,16384,0 -) -) -k183,132:3078556,2439708:-34777008 -) -] -[183,132:3078558,4812305:0,0,0 -(183,132:3078558,49800853:0,16384,2228224 -k183,132:1358238,49800853:-1720320 -(1,122:1358238,49800853:1720320,16384,2228224 -(1,122:1358238,49800853:1179648,16384,0 -r183,132:2537886,49800853:1179648,16384,0 -) -g1,122:3062174,49800853 -(1,122:3062174,52029077:16384,1703936,0 -[1,122:3062174,52029077:25952256,1703936,0 -(1,122:3062174,51504789:25952256,1179648,0 -(1,122:3062174,51504789:16384,1179648,0 -r183,132:3078558,51504789:16384,1179648,0 -) -k1,122:29014430,51504789:25935872 -g1,122:29014430,51504789 -) -] -) -) -) -] -[183,132:3078558,4812305:0,0,0 -(183,132:3078558,49800853:0,16384,2228224 -g183,132:29030814,49800853 -g183,132:36135244,49800853 -(1,122:36135244,49800853:1720320,16384,2228224 -(1,122:36135244,52029077:16384,1703936,0 -[1,122:36135244,52029077:25952256,1703936,0 -(1,122:36135244,51504789:25952256,1179648,0 -(1,122:36135244,51504789:16384,1179648,0 -r183,132:36151628,51504789:16384,1179648,0 -) -k1,122:62087500,51504789:25935872 -g1,122:62087500,51504789 -) -] -) -g1,122:36675916,49800853 -(1,122:36675916,49800853:1179648,16384,0 -r183,132:37855564,49800853:1179648,16384,0 -) -) -k183,132:3078556,49800853:-34777008 -) -] -g183,132:6630773,4812305 -g183,132:6630773,4812305 -g183,132:9585136,4812305 -k183,132:31823468,4812305:22238332 -) -) -] -[183,132:6630773,45706769:25952256,40108032,0 -(183,132:6630773,45706769:25952256,40108032,0 -(183,132:6630773,45706769:0,0,0 -g183,132:6630773,45706769 -) -[183,132:6630773,45706769:25952256,40108032,0 -(183,85:6630773,6254097:25952256,505283,134348 -g183,85:9121143,6254097 -h183,85:9121143,6254097:983040,0,0 -h183,85:10104183,6254097:0,0,0 -g183,85:7613813,6254097 -(183,85:7613813,6254097:1507330,481690,0 -k183,85:9121143,6254097:536742 -) -g183,85:12571613,6254097 -g183,85:15693092,6254097 -g183,85:15693092,6254097 -(183,85:16156955,6254097:501378,78643,0 -$183,85:16156955,6254097 -(183,85:16320809,6254097:173670,78643,0 -) -$183,85:16658333,6254097 -) -(183,85:16658333,6254097:501378,78643,0 -(183,85:16822187,6254097:173670,78643,0 -) -) -(183,85:17159711,6254097:501378,78643,0 -(183,85:17323565,6254097:173670,78643,0 -) -) -(183,85:17661089,6254097:501378,78643,0 -(183,85:17824943,6254097:173670,78643,0 -) -) -(183,85:18162467,6254097:501378,78643,0 -(183,85:18326321,6254097:173670,78643,0 -) -) -(183,85:18663845,6254097:501378,78643,0 -(183,85:18827699,6254097:173670,78643,0 -) -) -(183,85:19165223,6254097:501378,78643,0 -(183,85:19329077,6254097:173670,78643,0 -) -) -(183,85:19666601,6254097:501378,78643,0 -(183,85:19830455,6254097:173670,78643,0 -) -) -(183,85:20167979,6254097:501378,78643,0 -(183,85:20331833,6254097:173670,78643,0 -) -) -(183,85:20669357,6254097:501378,78643,0 -(183,85:20833211,6254097:173670,78643,0 -) -) -(183,85:21170735,6254097:501378,78643,0 -(183,85:21334589,6254097:173670,78643,0 -) -) -(183,85:21672113,6254097:501378,78643,0 -(183,85:21835967,6254097:173670,78643,0 -) -) -(183,85:22173491,6254097:501378,78643,0 -(183,85:22337345,6254097:173670,78643,0 -) -) -(183,85:22674869,6254097:501378,78643,0 -(183,85:22838723,6254097:173670,78643,0 -) -) -(183,85:23176247,6254097:501378,78643,0 -(183,85:23340101,6254097:173670,78643,0 -) -) -(183,85:23677625,6254097:501378,78643,0 -(183,85:23841479,6254097:173670,78643,0 -) -) -(183,85:24179003,6254097:501378,78643,0 -(183,85:24342857,6254097:173670,78643,0 -) -) -(183,85:24680381,6254097:501378,78643,0 -(183,85:24844235,6254097:173670,78643,0 -) -) -(183,85:25181759,6254097:501378,78643,0 -(183,85:25345613,6254097:173670,78643,0 -) -) -(183,85:25683137,6254097:501378,78643,0 -(183,85:25846991,6254097:173670,78643,0 -) -) -(183,85:26184515,6254097:501378,78643,0 -(183,85:26348369,6254097:173670,78643,0 -) -) -(183,85:26685893,6254097:501378,78643,0 -(183,85:26849747,6254097:173670,78643,0 -) -) -(183,85:27187271,6254097:501378,78643,0 -(183,85:27351125,6254097:173670,78643,0 -) -) -(183,85:27688649,6254097:501378,78643,0 -(183,85:27852503,6254097:173670,78643,0 -) -) -(183,85:28190027,6254097:501378,78643,0 -(183,85:28353881,6254097:173670,78643,0 -) -) -(183,85:28691405,6254097:501378,78643,0 -(183,85:28855259,6254097:173670,78643,0 -) -) -(183,85:29192783,6254097:501378,78643,0 -(183,85:29356637,6254097:173670,78643,0 -) -) -(183,85:29694161,6254097:501378,78643,0 -(183,85:29858015,6254097:173670,78643,0 -) -) -(183,85:30195539,6254097:501378,78643,0 -(183,85:30359393,6254097:173670,78643,0 -) -) -(183,85:30696917,6254097:501378,78643,0 -(183,85:30860771,6254097:173670,78643,0 -) -) -(183,85:31239539,6254097:1343490,485622,11795 -k183,85:31239539,6254097:0 -k183,85:31387652,6254097:148113 -) -g183,85:30911859,6254097 -g183,85:32583029,6254097 -) -(183,86:6630773,7095585:25952256,505283,11795 -g183,86:9121143,7095585 -h183,86:9121143,7095585:983040,0,0 -h183,86:10104183,7095585:0,0,0 -g183,86:7613813,7095585 -(183,86:7613813,7095585:1507330,481690,11795 -k183,86:9121143,7095585:536742 -) -g183,86:12922886,7095585 -g183,86:12922886,7095585 -(183,86:13148687,7095585:501378,78643,0 -$183,86:13148687,7095585 -(183,86:13312541,7095585:173670,78643,0 -) -$183,86:13650065,7095585 -) -(183,86:13650065,7095585:501378,78643,0 -(183,86:13813919,7095585:173670,78643,0 -) -) -(183,86:14151443,7095585:501378,78643,0 -(183,86:14315297,7095585:173670,78643,0 -) -) -(183,86:14652821,7095585:501378,78643,0 -(183,86:14816675,7095585:173670,78643,0 -) -) -(183,86:15154199,7095585:501378,78643,0 -(183,86:15318053,7095585:173670,78643,0 -) -) -(183,86:15655577,7095585:501378,78643,0 -(183,86:15819431,7095585:173670,78643,0 -) -) -(183,86:16156955,7095585:501378,78643,0 -(183,86:16320809,7095585:173670,78643,0 -) -) -(183,86:16658333,7095585:501378,78643,0 -(183,86:16822187,7095585:173670,78643,0 -) -) -(183,86:17159711,7095585:501378,78643,0 -(183,86:17323565,7095585:173670,78643,0 -) -) -(183,86:17661089,7095585:501378,78643,0 -(183,86:17824943,7095585:173670,78643,0 -) -) -(183,86:18162467,7095585:501378,78643,0 -(183,86:18326321,7095585:173670,78643,0 -) -) -(183,86:18663845,7095585:501378,78643,0 -(183,86:18827699,7095585:173670,78643,0 -) -) -(183,86:19165223,7095585:501378,78643,0 -(183,86:19329077,7095585:173670,78643,0 -) -) -(183,86:19666601,7095585:501378,78643,0 -(183,86:19830455,7095585:173670,78643,0 -) -) -(183,86:20167979,7095585:501378,78643,0 -(183,86:20331833,7095585:173670,78643,0 -) -) -(183,86:20669357,7095585:501378,78643,0 -(183,86:20833211,7095585:173670,78643,0 -) -) -(183,86:21170735,7095585:501378,78643,0 -(183,86:21334589,7095585:173670,78643,0 -) -) -(183,86:21672113,7095585:501378,78643,0 -(183,86:21835967,7095585:173670,78643,0 -) -) -(183,86:22173491,7095585:501378,78643,0 -(183,86:22337345,7095585:173670,78643,0 -) -) -(183,86:22674869,7095585:501378,78643,0 -(183,86:22838723,7095585:173670,78643,0 -) -) -(183,86:23176247,7095585:501378,78643,0 -(183,86:23340101,7095585:173670,78643,0 -) -) -(183,86:23677625,7095585:501378,78643,0 -(183,86:23841479,7095585:173670,78643,0 -) -) -(183,86:24179003,7095585:501378,78643,0 -(183,86:24342857,7095585:173670,78643,0 -) -) -(183,86:24680381,7095585:501378,78643,0 -(183,86:24844235,7095585:173670,78643,0 -) -) -(183,86:25181759,7095585:501378,78643,0 -(183,86:25345613,7095585:173670,78643,0 -) -) -(183,86:25683137,7095585:501378,78643,0 -(183,86:25846991,7095585:173670,78643,0 -) -) -(183,86:26184515,7095585:501378,78643,0 -(183,86:26348369,7095585:173670,78643,0 -) -) -(183,86:26685893,7095585:501378,78643,0 -(183,86:26849747,7095585:173670,78643,0 -) -) -(183,86:27187271,7095585:501378,78643,0 -(183,86:27351125,7095585:173670,78643,0 -) -) -(183,86:27688649,7095585:501378,78643,0 -(183,86:27852503,7095585:173670,78643,0 -) -) -(183,86:28190027,7095585:501378,78643,0 -(183,86:28353881,7095585:173670,78643,0 -) -) -(183,86:28691405,7095585:501378,78643,0 -(183,86:28855259,7095585:173670,78643,0 -) -) -(183,86:29192783,7095585:501378,78643,0 -(183,86:29356637,7095585:173670,78643,0 -) -) -(183,86:29694161,7095585:501378,78643,0 -(183,86:29858015,7095585:173670,78643,0 -) -) -(183,86:30195539,7095585:501378,78643,0 -(183,86:30359393,7095585:173670,78643,0 -) -) -(183,86:30696917,7095585:501378,78643,0 -(183,86:30860771,7095585:173670,78643,0 -) -) -(183,86:31239538,7095585:1343490,485622,11795 -k183,86:31239538,7095585:0 -k183,86:31387651,7095585:148113 -) -g183,86:30911858,7095585 -g183,86:32583028,7095585 -) -(183,87:6630773,7937073:25952256,505283,11795 -g183,87:11218293,7937073 -h183,87:11218293,7937073:2490370,0,0 -h183,87:13708663,7937073:0,0,0 -g183,87:9121143,7937073 -(183,87:9121143,7937073:2097150,481690,11795 -k183,87:11218293,7937073:554432 -) -g183,87:14428246,7937073 -$183,87:14428246,7937073 -$183,87:14873235,7937073 -g183,87:14873235,7937073 -(183,87:15154199,7937073:501378,78643,0 -$183,87:15154199,7937073 -(183,87:15318053,7937073:173670,78643,0 -) -$183,87:15655577,7937073 -) -(183,87:15655577,7937073:501378,78643,0 -(183,87:15819431,7937073:173670,78643,0 -) -) -(183,87:16156955,7937073:501378,78643,0 -(183,87:16320809,7937073:173670,78643,0 -) -) -(183,87:16658333,7937073:501378,78643,0 -(183,87:16822187,7937073:173670,78643,0 -) -) -(183,87:17159711,7937073:501378,78643,0 -(183,87:17323565,7937073:173670,78643,0 -) -) -(183,87:17661089,7937073:501378,78643,0 -(183,87:17824943,7937073:173670,78643,0 -) -) -(183,87:18162467,7937073:501378,78643,0 -(183,87:18326321,7937073:173670,78643,0 -) -) -(183,87:18663845,7937073:501378,78643,0 -(183,87:18827699,7937073:173670,78643,0 -) -) -(183,87:19165223,7937073:501378,78643,0 -(183,87:19329077,7937073:173670,78643,0 -) -) -(183,87:19666601,7937073:501378,78643,0 -(183,87:19830455,7937073:173670,78643,0 -) -) -(183,87:20167979,7937073:501378,78643,0 -(183,87:20331833,7937073:173670,78643,0 -) -) -(183,87:20669357,7937073:501378,78643,0 -(183,87:20833211,7937073:173670,78643,0 -) -) -(183,87:21170735,7937073:501378,78643,0 -(183,87:21334589,7937073:173670,78643,0 -) -) -(183,87:21672113,7937073:501378,78643,0 -(183,87:21835967,7937073:173670,78643,0 -) -) -(183,87:22173491,7937073:501378,78643,0 -(183,87:22337345,7937073:173670,78643,0 -) -) -(183,87:22674869,7937073:501378,78643,0 -(183,87:22838723,7937073:173670,78643,0 -) -) -(183,87:23176247,7937073:501378,78643,0 -(183,87:23340101,7937073:173670,78643,0 -) -) -(183,87:23677625,7937073:501378,78643,0 -(183,87:23841479,7937073:173670,78643,0 -) -) -(183,87:24179003,7937073:501378,78643,0 -(183,87:24342857,7937073:173670,78643,0 -) -) -(183,87:24680381,7937073:501378,78643,0 -(183,87:24844235,7937073:173670,78643,0 -) -) -(183,87:25181759,7937073:501378,78643,0 -(183,87:25345613,7937073:173670,78643,0 -) -) -(183,87:25683137,7937073:501378,78643,0 -(183,87:25846991,7937073:173670,78643,0 -) -) -(183,87:26184515,7937073:501378,78643,0 -(183,87:26348369,7937073:173670,78643,0 -) -) -(183,87:26685893,7937073:501378,78643,0 -(183,87:26849747,7937073:173670,78643,0 -) -) -(183,87:27187271,7937073:501378,78643,0 -(183,87:27351125,7937073:173670,78643,0 -) -) -(183,87:27688649,7937073:501378,78643,0 -(183,87:27852503,7937073:173670,78643,0 -) -) -(183,87:28190027,7937073:501378,78643,0 -(183,87:28353881,7937073:173670,78643,0 -) -) -(183,87:28691405,7937073:501378,78643,0 -(183,87:28855259,7937073:173670,78643,0 -) -) -(183,87:29192783,7937073:501378,78643,0 -(183,87:29356637,7937073:173670,78643,0 -) -) -(183,87:29694161,7937073:501378,78643,0 -(183,87:29858015,7937073:173670,78643,0 -) -) -(183,87:30195539,7937073:501378,78643,0 -(183,87:30359393,7937073:173670,78643,0 -) -) -(183,87:30696917,7937073:501378,78643,0 -(183,87:30860771,7937073:173670,78643,0 -) -) -(183,87:31239539,7937073:1343490,485622,11795 -k183,87:31239539,7937073:0 -k183,87:31387652,7937073:148113 -) -g183,87:30911859,7937073 -g183,87:32583029,7937073 -) -(183,88:6630773,8778561:25952256,505283,126484 -g183,88:11218293,8778561 -h183,88:11218293,8778561:2490370,0,0 -h183,88:13708663,8778561:0,0,0 -g183,88:9121143,8778561 -(183,88:9121143,8778561:2097150,485622,11795 -k183,88:11218293,8778561:554432 -) -g183,88:14334529,8778561 -$183,88:14334529,8778561 -$183,88:14803111,8778561 -g183,88:15002340,8778561 -g183,88:16393014,8778561 -g183,88:20254395,8778561 -$183,88:20254395,8778561 -$183,88:20712492,8778561 -g183,88:20712492,8778561 -(183,88:21170735,8778561:501378,78643,0 -$183,88:21170735,8778561 -(183,88:21334589,8778561:173670,78643,0 -) -$183,88:21672113,8778561 -) -(183,88:21672113,8778561:501378,78643,0 -(183,88:21835967,8778561:173670,78643,0 -) -) -(183,88:22173491,8778561:501378,78643,0 -(183,88:22337345,8778561:173670,78643,0 -) -) -(183,88:22674869,8778561:501378,78643,0 -(183,88:22838723,8778561:173670,78643,0 -) -) -(183,88:23176247,8778561:501378,78643,0 -(183,88:23340101,8778561:173670,78643,0 -) -) -(183,88:23677625,8778561:501378,78643,0 -(183,88:23841479,8778561:173670,78643,0 -) -) -(183,88:24179003,8778561:501378,78643,0 -(183,88:24342857,8778561:173670,78643,0 -) -) -(183,88:24680381,8778561:501378,78643,0 -(183,88:24844235,8778561:173670,78643,0 -) -) -(183,88:25181759,8778561:501378,78643,0 -(183,88:25345613,8778561:173670,78643,0 -) -) -(183,88:25683137,8778561:501378,78643,0 -(183,88:25846991,8778561:173670,78643,0 -) -) -(183,88:26184515,8778561:501378,78643,0 -(183,88:26348369,8778561:173670,78643,0 -) -) -(183,88:26685893,8778561:501378,78643,0 -(183,88:26849747,8778561:173670,78643,0 -) -) -(183,88:27187271,8778561:501378,78643,0 -(183,88:27351125,8778561:173670,78643,0 -) -) -(183,88:27688649,8778561:501378,78643,0 -(183,88:27852503,8778561:173670,78643,0 -) -) -(183,88:28190027,8778561:501378,78643,0 -(183,88:28353881,8778561:173670,78643,0 -) -) -(183,88:28691405,8778561:501378,78643,0 -(183,88:28855259,8778561:173670,78643,0 -) -) -(183,88:29192783,8778561:501378,78643,0 -(183,88:29356637,8778561:173670,78643,0 -) -) -(183,88:29694161,8778561:501378,78643,0 -(183,88:29858015,8778561:173670,78643,0 -) -) -(183,88:30195539,8778561:501378,78643,0 -(183,88:30359393,8778561:173670,78643,0 -) -) -(183,88:30696917,8778561:501378,78643,0 -(183,88:30860771,8778561:173670,78643,0 -) -) -(183,88:31239539,8778561:1343490,481690,0 -k183,88:31239539,8778561:0 -k183,88:31387652,8778561:148113 -) -g183,88:30911859,8778561 -g183,88:32583029,8778561 -) -(183,89:6630773,9620049:25952256,513147,134348 -g183,89:9121143,9620049 -h183,89:9121143,9620049:983040,0,0 -h183,89:10104183,9620049:0,0,0 -g183,89:7613813,9620049 -(183,89:7613813,9620049:1507330,485622,11795 -k183,89:9121143,9620049:536742 -) -g183,89:11251718,9620049 -g183,89:13385570,9620049 -g183,89:14200837,9620049 -g183,89:14845055,9620049 -g183,89:14845055,9620049 -(183,89:15154199,9620049:501378,78643,0 -$183,89:15154199,9620049 -(183,89:15318053,9620049:173670,78643,0 -) -$183,89:15655577,9620049 -) -(183,89:15655577,9620049:501378,78643,0 -(183,89:15819431,9620049:173670,78643,0 -) -) -(183,89:16156955,9620049:501378,78643,0 -(183,89:16320809,9620049:173670,78643,0 -) -) -(183,89:16658333,9620049:501378,78643,0 -(183,89:16822187,9620049:173670,78643,0 -) -) -(183,89:17159711,9620049:501378,78643,0 -(183,89:17323565,9620049:173670,78643,0 -) -) -(183,89:17661089,9620049:501378,78643,0 -(183,89:17824943,9620049:173670,78643,0 -) -) -(183,89:18162467,9620049:501378,78643,0 -(183,89:18326321,9620049:173670,78643,0 -) -) -(183,89:18663845,9620049:501378,78643,0 -(183,89:18827699,9620049:173670,78643,0 -) -) -(183,89:19165223,9620049:501378,78643,0 -(183,89:19329077,9620049:173670,78643,0 -) -) -(183,89:19666601,9620049:501378,78643,0 -(183,89:19830455,9620049:173670,78643,0 -) -) -(183,89:20167979,9620049:501378,78643,0 -(183,89:20331833,9620049:173670,78643,0 -) -) -(183,89:20669357,9620049:501378,78643,0 -(183,89:20833211,9620049:173670,78643,0 -) -) -(183,89:21170735,9620049:501378,78643,0 -(183,89:21334589,9620049:173670,78643,0 -) -) -(183,89:21672113,9620049:501378,78643,0 -(183,89:21835967,9620049:173670,78643,0 -) -) -(183,89:22173491,9620049:501378,78643,0 -(183,89:22337345,9620049:173670,78643,0 -) -) -(183,89:22674869,9620049:501378,78643,0 -(183,89:22838723,9620049:173670,78643,0 -) -) -(183,89:23176247,9620049:501378,78643,0 -(183,89:23340101,9620049:173670,78643,0 -) -) -(183,89:23677625,9620049:501378,78643,0 -(183,89:23841479,9620049:173670,78643,0 -) -) -(183,89:24179003,9620049:501378,78643,0 -(183,89:24342857,9620049:173670,78643,0 -) -) -(183,89:24680381,9620049:501378,78643,0 -(183,89:24844235,9620049:173670,78643,0 -) -) -(183,89:25181759,9620049:501378,78643,0 -(183,89:25345613,9620049:173670,78643,0 -) -) -(183,89:25683137,9620049:501378,78643,0 -(183,89:25846991,9620049:173670,78643,0 -) -) -(183,89:26184515,9620049:501378,78643,0 -(183,89:26348369,9620049:173670,78643,0 -) -) -(183,89:26685893,9620049:501378,78643,0 -(183,89:26849747,9620049:173670,78643,0 -) -) -(183,89:27187271,9620049:501378,78643,0 -(183,89:27351125,9620049:173670,78643,0 -) -) -(183,89:27688649,9620049:501378,78643,0 -(183,89:27852503,9620049:173670,78643,0 -) -) -(183,89:28190027,9620049:501378,78643,0 -(183,89:28353881,9620049:173670,78643,0 -) -) -(183,89:28691405,9620049:501378,78643,0 -(183,89:28855259,9620049:173670,78643,0 -) -) -(183,89:29192783,9620049:501378,78643,0 -(183,89:29356637,9620049:173670,78643,0 -) -) -(183,89:29694161,9620049:501378,78643,0 -(183,89:29858015,9620049:173670,78643,0 -) -) -(183,89:30195539,9620049:501378,78643,0 -(183,89:30359393,9620049:173670,78643,0 -) -) -(183,89:30696917,9620049:501378,78643,0 -(183,89:30860771,9620049:173670,78643,0 -) -) -(183,89:31239539,9620049:1343490,481690,0 -k183,89:31239539,9620049:0 -k183,89:31387652,9620049:148113 -) -g183,89:30911859,9620049 -g183,89:32583029,9620049 -) -(183,90:6630773,10461537:25952256,505283,134348 -g183,90:9121143,10461537 -h183,90:9121143,10461537:983040,0,0 -h183,90:10104183,10461537:0,0,0 -g183,90:7613813,10461537 -(183,90:7613813,10461537:1507330,481690,0 -k183,90:9121143,10461537:536742 -) -g183,90:11384756,10461537 -g183,90:13396711,10461537 -g183,90:15913948,10461537 -g183,90:15913948,10461537 -(183,90:16156955,10461537:501378,78643,0 -$183,90:16156955,10461537 -(183,90:16320809,10461537:173670,78643,0 -) -$183,90:16658333,10461537 -) -(183,90:16658333,10461537:501378,78643,0 -(183,90:16822187,10461537:173670,78643,0 -) -) -(183,90:17159711,10461537:501378,78643,0 -(183,90:17323565,10461537:173670,78643,0 -) -) -(183,90:17661089,10461537:501378,78643,0 -(183,90:17824943,10461537:173670,78643,0 -) -) -(183,90:18162467,10461537:501378,78643,0 -(183,90:18326321,10461537:173670,78643,0 -) -) -(183,90:18663845,10461537:501378,78643,0 -(183,90:18827699,10461537:173670,78643,0 -) -) -(183,90:19165223,10461537:501378,78643,0 -(183,90:19329077,10461537:173670,78643,0 -) -) -(183,90:19666601,10461537:501378,78643,0 -(183,90:19830455,10461537:173670,78643,0 -) -) -(183,90:20167979,10461537:501378,78643,0 -(183,90:20331833,10461537:173670,78643,0 -) -) -(183,90:20669357,10461537:501378,78643,0 -(183,90:20833211,10461537:173670,78643,0 -) -) -(183,90:21170735,10461537:501378,78643,0 -(183,90:21334589,10461537:173670,78643,0 -) -) -(183,90:21672113,10461537:501378,78643,0 -(183,90:21835967,10461537:173670,78643,0 -) -) -(183,90:22173491,10461537:501378,78643,0 -(183,90:22337345,10461537:173670,78643,0 -) -) -(183,90:22674869,10461537:501378,78643,0 -(183,90:22838723,10461537:173670,78643,0 -) -) -(183,90:23176247,10461537:501378,78643,0 -(183,90:23340101,10461537:173670,78643,0 -) -) -(183,90:23677625,10461537:501378,78643,0 -(183,90:23841479,10461537:173670,78643,0 -) -) -(183,90:24179003,10461537:501378,78643,0 -(183,90:24342857,10461537:173670,78643,0 -) -) -(183,90:24680381,10461537:501378,78643,0 -(183,90:24844235,10461537:173670,78643,0 -) -) -(183,90:25181759,10461537:501378,78643,0 -(183,90:25345613,10461537:173670,78643,0 -) -) -(183,90:25683137,10461537:501378,78643,0 -(183,90:25846991,10461537:173670,78643,0 -) -) -(183,90:26184515,10461537:501378,78643,0 -(183,90:26348369,10461537:173670,78643,0 -) -) -(183,90:26685893,10461537:501378,78643,0 -(183,90:26849747,10461537:173670,78643,0 -) -) -(183,90:27187271,10461537:501378,78643,0 -(183,90:27351125,10461537:173670,78643,0 -) -) -(183,90:27688649,10461537:501378,78643,0 -(183,90:27852503,10461537:173670,78643,0 -) -) -(183,90:28190027,10461537:501378,78643,0 -(183,90:28353881,10461537:173670,78643,0 -) -) -(183,90:28691405,10461537:501378,78643,0 -(183,90:28855259,10461537:173670,78643,0 -) -) -(183,90:29192783,10461537:501378,78643,0 -(183,90:29356637,10461537:173670,78643,0 -) -) -(183,90:29694161,10461537:501378,78643,0 -(183,90:29858015,10461537:173670,78643,0 -) -) -(183,90:30195539,10461537:501378,78643,0 -(183,90:30359393,10461537:173670,78643,0 -) -) -(183,90:30696917,10461537:501378,78643,0 -(183,90:30860771,10461537:173670,78643,0 -) -) -(183,90:31239539,10461537:1343490,485622,0 -k183,90:31239539,10461537:0 -k183,90:31387652,10461537:148113 -) -g183,90:30911859,10461537 -g183,90:32583029,10461537 -) -(183,91:6630773,11303025:25952256,485622,134348 -g183,91:11218293,11303025 -h183,91:11218293,11303025:2490370,0,0 -h183,91:13708663,11303025:0,0,0 -g183,91:9121143,11303025 -(183,91:9121143,11303025:2097150,481690,0 -k183,91:11218293,11303025:554432 -) -g183,91:14691701,11303025 -(183,91:15154199,11303025:501378,78643,0 -$183,91:15154199,11303025 -(183,91:15318053,11303025:173670,78643,0 -) -$183,91:15655577,11303025 -) -(183,91:15655577,11303025:501378,78643,0 -(183,91:15819431,11303025:173670,78643,0 -) -) -(183,91:16156955,11303025:501378,78643,0 -(183,91:16320809,11303025:173670,78643,0 -) -) -(183,91:16658333,11303025:501378,78643,0 -(183,91:16822187,11303025:173670,78643,0 -) -) -(183,91:17159711,11303025:501378,78643,0 -(183,91:17323565,11303025:173670,78643,0 -) -) -(183,91:17661089,11303025:501378,78643,0 -(183,91:17824943,11303025:173670,78643,0 -) -) -(183,91:18162467,11303025:501378,78643,0 -(183,91:18326321,11303025:173670,78643,0 -) -) -(183,91:18663845,11303025:501378,78643,0 -(183,91:18827699,11303025:173670,78643,0 -) -) -(183,91:19165223,11303025:501378,78643,0 -(183,91:19329077,11303025:173670,78643,0 -) -) -(183,91:19666601,11303025:501378,78643,0 -(183,91:19830455,11303025:173670,78643,0 -) -) -(183,91:20167979,11303025:501378,78643,0 -(183,91:20331833,11303025:173670,78643,0 -) -) -(183,91:20669357,11303025:501378,78643,0 -(183,91:20833211,11303025:173670,78643,0 -) -) -(183,91:21170735,11303025:501378,78643,0 -(183,91:21334589,11303025:173670,78643,0 -) -) -(183,91:21672113,11303025:501378,78643,0 -(183,91:21835967,11303025:173670,78643,0 -) -) -(183,91:22173491,11303025:501378,78643,0 -(183,91:22337345,11303025:173670,78643,0 -) -) -(183,91:22674869,11303025:501378,78643,0 -(183,91:22838723,11303025:173670,78643,0 -) -) -(183,91:23176247,11303025:501378,78643,0 -(183,91:23340101,11303025:173670,78643,0 -) -) -(183,91:23677625,11303025:501378,78643,0 -(183,91:23841479,11303025:173670,78643,0 -) -) -(183,91:24179003,11303025:501378,78643,0 -(183,91:24342857,11303025:173670,78643,0 -) -) -(183,91:24680381,11303025:501378,78643,0 -(183,91:24844235,11303025:173670,78643,0 -) -) -(183,91:25181759,11303025:501378,78643,0 -(183,91:25345613,11303025:173670,78643,0 -) -) -(183,91:25683137,11303025:501378,78643,0 -(183,91:25846991,11303025:173670,78643,0 -) -) -(183,91:26184515,11303025:501378,78643,0 -(183,91:26348369,11303025:173670,78643,0 -) -) -(183,91:26685893,11303025:501378,78643,0 -(183,91:26849747,11303025:173670,78643,0 -) -) -(183,91:27187271,11303025:501378,78643,0 -(183,91:27351125,11303025:173670,78643,0 -) -) -(183,91:27688649,11303025:501378,78643,0 -(183,91:27852503,11303025:173670,78643,0 -) -) -(183,91:28190027,11303025:501378,78643,0 -(183,91:28353881,11303025:173670,78643,0 -) -) -(183,91:28691405,11303025:501378,78643,0 -(183,91:28855259,11303025:173670,78643,0 -) -) -(183,91:29192783,11303025:501378,78643,0 -(183,91:29356637,11303025:173670,78643,0 -) -) -(183,91:29694161,11303025:501378,78643,0 -(183,91:29858015,11303025:173670,78643,0 -) -) -(183,91:30195539,11303025:501378,78643,0 -(183,91:30359393,11303025:173670,78643,0 -) -) -(183,91:30696917,11303025:501378,78643,0 -(183,91:30860771,11303025:173670,78643,0 -) -) -(183,91:31239539,11303025:1343490,485622,11795 -k183,91:31239539,11303025:0 -k183,91:31387652,11303025:148113 -) -g183,91:30911859,11303025 -g183,91:32583029,11303025 -) -(183,92:6630773,12144513:25952256,513147,126483 -g183,92:11218293,12144513 -h183,92:11218293,12144513:2490370,0,0 -h183,92:13708663,12144513:0,0,0 -g183,92:9121143,12144513 -(183,92:9121143,12144513:2097150,485622,0 -k183,92:11218293,12144513:554432 -) -g183,92:14103843,12144513 -g183,92:14962364,12144513 -g183,92:17989472,12144513 -g183,92:20424135,12144513 -(183,92:20669357,12144513:501378,78643,0 -$183,92:20669357,12144513 -(183,92:20833211,12144513:173670,78643,0 -) -$183,92:21170735,12144513 -) -(183,92:21170735,12144513:501378,78643,0 -(183,92:21334589,12144513:173670,78643,0 -) -) -(183,92:21672113,12144513:501378,78643,0 -(183,92:21835967,12144513:173670,78643,0 -) -) -(183,92:22173491,12144513:501378,78643,0 -(183,92:22337345,12144513:173670,78643,0 -) -) -(183,92:22674869,12144513:501378,78643,0 -(183,92:22838723,12144513:173670,78643,0 -) -) -(183,92:23176247,12144513:501378,78643,0 -(183,92:23340101,12144513:173670,78643,0 -) -) -(183,92:23677625,12144513:501378,78643,0 -(183,92:23841479,12144513:173670,78643,0 -) -) -(183,92:24179003,12144513:501378,78643,0 -(183,92:24342857,12144513:173670,78643,0 -) -) -(183,92:24680381,12144513:501378,78643,0 -(183,92:24844235,12144513:173670,78643,0 -) -) -(183,92:25181759,12144513:501378,78643,0 -(183,92:25345613,12144513:173670,78643,0 -) -) -(183,92:25683137,12144513:501378,78643,0 -(183,92:25846991,12144513:173670,78643,0 -) -) -(183,92:26184515,12144513:501378,78643,0 -(183,92:26348369,12144513:173670,78643,0 -) -) -(183,92:26685893,12144513:501378,78643,0 -(183,92:26849747,12144513:173670,78643,0 -) -) -(183,92:27187271,12144513:501378,78643,0 -(183,92:27351125,12144513:173670,78643,0 -) -) -(183,92:27688649,12144513:501378,78643,0 -(183,92:27852503,12144513:173670,78643,0 -) -) -(183,92:28190027,12144513:501378,78643,0 -(183,92:28353881,12144513:173670,78643,0 -) -) -(183,92:28691405,12144513:501378,78643,0 -(183,92:28855259,12144513:173670,78643,0 -) -) -(183,92:29192783,12144513:501378,78643,0 -(183,92:29356637,12144513:173670,78643,0 -) -) -(183,92:29694161,12144513:501378,78643,0 -(183,92:29858015,12144513:173670,78643,0 -) -) -(183,92:30195539,12144513:501378,78643,0 -(183,92:30359393,12144513:173670,78643,0 -) -) -(183,92:30696917,12144513:501378,78643,0 -(183,92:30860771,12144513:173670,78643,0 -) -) -(183,92:31239539,12144513:1343490,485622,11795 -k183,92:31239539,12144513:0 -k183,92:31387652,12144513:148113 -) -g183,92:30911859,12144513 -g183,92:32583029,12144513 -) -(183,93:6630773,12986001:25952256,513147,126483 -g183,93:11218293,12986001 -h183,93:11218293,12986001:2490370,0,0 -h183,93:13708663,12986001:0,0,0 -g183,93:9121143,12986001 -(183,93:9121143,12986001:2097150,485622,11795 -k183,93:11218293,12986001:554432 -) -g183,93:14103843,12986001 -g183,93:14962364,12986001 -g183,93:18717576,12986001 -g183,93:21607714,12986001 -(183,93:21672113,12986001:501378,78643,0 -$183,93:21672113,12986001 -(183,93:21835967,12986001:173670,78643,0 -) -$183,93:22173491,12986001 -) -(183,93:22173491,12986001:501378,78643,0 -(183,93:22337345,12986001:173670,78643,0 -) -) -(183,93:22674869,12986001:501378,78643,0 -(183,93:22838723,12986001:173670,78643,0 -) -) -(183,93:23176247,12986001:501378,78643,0 -(183,93:23340101,12986001:173670,78643,0 -) -) -(183,93:23677625,12986001:501378,78643,0 -(183,93:23841479,12986001:173670,78643,0 -) -) -(183,93:24179003,12986001:501378,78643,0 -(183,93:24342857,12986001:173670,78643,0 -) -) -(183,93:24680381,12986001:501378,78643,0 -(183,93:24844235,12986001:173670,78643,0 -) -) -(183,93:25181759,12986001:501378,78643,0 -(183,93:25345613,12986001:173670,78643,0 -) -) -(183,93:25683137,12986001:501378,78643,0 -(183,93:25846991,12986001:173670,78643,0 -) -) -(183,93:26184515,12986001:501378,78643,0 -(183,93:26348369,12986001:173670,78643,0 -) -) -(183,93:26685893,12986001:501378,78643,0 -(183,93:26849747,12986001:173670,78643,0 -) -) -(183,93:27187271,12986001:501378,78643,0 -(183,93:27351125,12986001:173670,78643,0 -) -) -(183,93:27688649,12986001:501378,78643,0 -(183,93:27852503,12986001:173670,78643,0 -) -) -(183,93:28190027,12986001:501378,78643,0 -(183,93:28353881,12986001:173670,78643,0 -) -) -(183,93:28691405,12986001:501378,78643,0 -(183,93:28855259,12986001:173670,78643,0 -) -) -(183,93:29192783,12986001:501378,78643,0 -(183,93:29356637,12986001:173670,78643,0 -) -) -(183,93:29694161,12986001:501378,78643,0 -(183,93:29858015,12986001:173670,78643,0 -) -) -(183,93:30195539,12986001:501378,78643,0 -(183,93:30359393,12986001:173670,78643,0 -) -) -(183,93:30696917,12986001:501378,78643,0 -(183,93:30860771,12986001:173670,78643,0 -) -) -(183,93:31239539,12986001:1343490,485622,11795 -k183,93:31239539,12986001:0 -k183,93:31387652,12986001:148113 -) -g183,93:30911859,12986001 -g183,93:32583029,12986001 -) -(183,94:6630773,13827489:25952256,505283,11795 -g183,94:9121143,13827489 -h183,94:9121143,13827489:983040,0,0 -h183,94:10104183,13827489:0,0,0 -g183,94:7613813,13827489 -(183,94:7613813,13827489:1507330,485622,11795 -k183,94:9121143,13827489:536742 -) -g183,94:13118183,13827489 -g183,94:15130138,13827489 -g183,94:17647375,13827489 -g183,94:17647375,13827489 -(183,94:17661089,13827489:501378,78643,0 -$183,94:17661089,13827489 -(183,94:17824943,13827489:173670,78643,0 -) -$183,94:18162467,13827489 -) -(183,94:18162467,13827489:501378,78643,0 -(183,94:18326321,13827489:173670,78643,0 -) -) -(183,94:18663845,13827489:501378,78643,0 -(183,94:18827699,13827489:173670,78643,0 -) -) -(183,94:19165223,13827489:501378,78643,0 -(183,94:19329077,13827489:173670,78643,0 -) -) -(183,94:19666601,13827489:501378,78643,0 -(183,94:19830455,13827489:173670,78643,0 -) -) -(183,94:20167979,13827489:501378,78643,0 -(183,94:20331833,13827489:173670,78643,0 -) -) -(183,94:20669357,13827489:501378,78643,0 -(183,94:20833211,13827489:173670,78643,0 -) -) -(183,94:21170735,13827489:501378,78643,0 -(183,94:21334589,13827489:173670,78643,0 -) -) -(183,94:21672113,13827489:501378,78643,0 -(183,94:21835967,13827489:173670,78643,0 -) -) -(183,94:22173491,13827489:501378,78643,0 -(183,94:22337345,13827489:173670,78643,0 -) -) -(183,94:22674869,13827489:501378,78643,0 -(183,94:22838723,13827489:173670,78643,0 -) -) -(183,94:23176247,13827489:501378,78643,0 -(183,94:23340101,13827489:173670,78643,0 -) -) -(183,94:23677625,13827489:501378,78643,0 -(183,94:23841479,13827489:173670,78643,0 -) -) -(183,94:24179003,13827489:501378,78643,0 -(183,94:24342857,13827489:173670,78643,0 -) -) -(183,94:24680381,13827489:501378,78643,0 -(183,94:24844235,13827489:173670,78643,0 -) -) -(183,94:25181759,13827489:501378,78643,0 -(183,94:25345613,13827489:173670,78643,0 -) -) -(183,94:25683137,13827489:501378,78643,0 -(183,94:25846991,13827489:173670,78643,0 -) -) -(183,94:26184515,13827489:501378,78643,0 -(183,94:26348369,13827489:173670,78643,0 -) -) -(183,94:26685893,13827489:501378,78643,0 -(183,94:26849747,13827489:173670,78643,0 -) -) -(183,94:27187271,13827489:501378,78643,0 -(183,94:27351125,13827489:173670,78643,0 -) -) -(183,94:27688649,13827489:501378,78643,0 -(183,94:27852503,13827489:173670,78643,0 -) -) -(183,94:28190027,13827489:501378,78643,0 -(183,94:28353881,13827489:173670,78643,0 -) -) -(183,94:28691405,13827489:501378,78643,0 -(183,94:28855259,13827489:173670,78643,0 -) -) -(183,94:29192783,13827489:501378,78643,0 -(183,94:29356637,13827489:173670,78643,0 -) -) -(183,94:29694161,13827489:501378,78643,0 -(183,94:29858015,13827489:173670,78643,0 -) -) -(183,94:30195539,13827489:501378,78643,0 -(183,94:30359393,13827489:173670,78643,0 -) -) -(183,94:30696917,13827489:501378,78643,0 -(183,94:30860771,13827489:173670,78643,0 -) -) -(183,94:31239539,13827489:1343490,485622,11795 -k183,94:31239539,13827489:0 -k183,94:31387652,13827489:148113 -) -g183,94:30911859,13827489 -g183,94:32583029,13827489 -) -(183,95:6630773,14668977:25952256,505283,134348 -g183,95:9121143,14668977 -h183,95:9121143,14668977:983040,0,0 -h183,95:10104183,14668977:0,0,0 -g183,95:7613813,14668977 -(183,95:7613813,14668977:1507330,485622,11795 -k183,95:9121143,14668977:536742 -) -g183,95:12647635,14668977 -g183,95:16163641,14668977 -g183,95:16163641,14668977 -(183,95:16658333,14668977:501378,78643,0 -$183,95:16658333,14668977 -(183,95:16822187,14668977:173670,78643,0 -) -$183,95:17159711,14668977 -) -(183,95:17159711,14668977:501378,78643,0 -(183,95:17323565,14668977:173670,78643,0 -) -) -(183,95:17661089,14668977:501378,78643,0 -(183,95:17824943,14668977:173670,78643,0 -) -) -(183,95:18162467,14668977:501378,78643,0 -(183,95:18326321,14668977:173670,78643,0 -) -) -(183,95:18663845,14668977:501378,78643,0 -(183,95:18827699,14668977:173670,78643,0 -) -) -(183,95:19165223,14668977:501378,78643,0 -(183,95:19329077,14668977:173670,78643,0 -) -) -(183,95:19666601,14668977:501378,78643,0 -(183,95:19830455,14668977:173670,78643,0 -) -) -(183,95:20167979,14668977:501378,78643,0 -(183,95:20331833,14668977:173670,78643,0 -) -) -(183,95:20669357,14668977:501378,78643,0 -(183,95:20833211,14668977:173670,78643,0 -) -) -(183,95:21170735,14668977:501378,78643,0 -(183,95:21334589,14668977:173670,78643,0 -) -) -(183,95:21672113,14668977:501378,78643,0 -(183,95:21835967,14668977:173670,78643,0 -) -) -(183,95:22173491,14668977:501378,78643,0 -(183,95:22337345,14668977:173670,78643,0 -) -) -(183,95:22674869,14668977:501378,78643,0 -(183,95:22838723,14668977:173670,78643,0 -) -) -(183,95:23176247,14668977:501378,78643,0 -(183,95:23340101,14668977:173670,78643,0 -) -) -(183,95:23677625,14668977:501378,78643,0 -(183,95:23841479,14668977:173670,78643,0 -) -) -(183,95:24179003,14668977:501378,78643,0 -(183,95:24342857,14668977:173670,78643,0 -) -) -(183,95:24680381,14668977:501378,78643,0 -(183,95:24844235,14668977:173670,78643,0 -) -) -(183,95:25181759,14668977:501378,78643,0 -(183,95:25345613,14668977:173670,78643,0 -) -) -(183,95:25683137,14668977:501378,78643,0 -(183,95:25846991,14668977:173670,78643,0 -) -) -(183,95:26184515,14668977:501378,78643,0 -(183,95:26348369,14668977:173670,78643,0 -) -) -(183,95:26685893,14668977:501378,78643,0 -(183,95:26849747,14668977:173670,78643,0 -) -) -(183,95:27187271,14668977:501378,78643,0 -(183,95:27351125,14668977:173670,78643,0 -) -) -(183,95:27688649,14668977:501378,78643,0 -(183,95:27852503,14668977:173670,78643,0 -) -) -(183,95:28190027,14668977:501378,78643,0 -(183,95:28353881,14668977:173670,78643,0 -) -) -(183,95:28691405,14668977:501378,78643,0 -(183,95:28855259,14668977:173670,78643,0 -) -) -(183,95:29192783,14668977:501378,78643,0 -(183,95:29356637,14668977:173670,78643,0 -) -) -(183,95:29694161,14668977:501378,78643,0 -(183,95:29858015,14668977:173670,78643,0 -) -) -(183,95:30195539,14668977:501378,78643,0 -(183,95:30359393,14668977:173670,78643,0 -) -) -(183,95:30696917,14668977:501378,78643,0 -(183,95:30860771,14668977:173670,78643,0 -) -) -(183,95:31239539,14668977:1343490,485622,11795 -k183,95:31239539,14668977:0 -k183,95:31387652,14668977:148113 -) -g183,95:30911859,14668977 -g183,95:32583029,14668977 -) -(183,96:6630773,15510465:25952256,513147,11795 -g183,96:9121143,15510465 -h183,96:9121143,15510465:983040,0,0 -h183,96:10104183,15510465:0,0,0 -g183,96:7613813,15510465 -(183,96:7613813,15510465:1507330,485622,11795 -k183,96:9121143,15510465:138283 -) -g183,96:11251718,15510465 -g183,96:14324701,15510465 -g183,96:14324701,15510465 -(183,96:14652821,15510465:501378,78643,0 -$183,96:14652821,15510465 -(183,96:14816675,15510465:173670,78643,0 -) -$183,96:15154199,15510465 -) -(183,96:15154199,15510465:501378,78643,0 -(183,96:15318053,15510465:173670,78643,0 -) -) -(183,96:15655577,15510465:501378,78643,0 -(183,96:15819431,15510465:173670,78643,0 -) -) -(183,96:16156955,15510465:501378,78643,0 -(183,96:16320809,15510465:173670,78643,0 -) -) -(183,96:16658333,15510465:501378,78643,0 -(183,96:16822187,15510465:173670,78643,0 -) -) -(183,96:17159711,15510465:501378,78643,0 -(183,96:17323565,15510465:173670,78643,0 -) -) -(183,96:17661089,15510465:501378,78643,0 -(183,96:17824943,15510465:173670,78643,0 -) -) -(183,96:18162467,15510465:501378,78643,0 -(183,96:18326321,15510465:173670,78643,0 -) -) -(183,96:18663845,15510465:501378,78643,0 -(183,96:18827699,15510465:173670,78643,0 -) -) -(183,96:19165223,15510465:501378,78643,0 -(183,96:19329077,15510465:173670,78643,0 -) -) -(183,96:19666601,15510465:501378,78643,0 -(183,96:19830455,15510465:173670,78643,0 -) -) -(183,96:20167979,15510465:501378,78643,0 -(183,96:20331833,15510465:173670,78643,0 -) -) -(183,96:20669357,15510465:501378,78643,0 -(183,96:20833211,15510465:173670,78643,0 -) -) -(183,96:21170735,15510465:501378,78643,0 -(183,96:21334589,15510465:173670,78643,0 -) -) -(183,96:21672113,15510465:501378,78643,0 -(183,96:21835967,15510465:173670,78643,0 -) -) -(183,96:22173491,15510465:501378,78643,0 -(183,96:22337345,15510465:173670,78643,0 -) -) -(183,96:22674869,15510465:501378,78643,0 -(183,96:22838723,15510465:173670,78643,0 -) -) -(183,96:23176247,15510465:501378,78643,0 -(183,96:23340101,15510465:173670,78643,0 -) -) -(183,96:23677625,15510465:501378,78643,0 -(183,96:23841479,15510465:173670,78643,0 -) -) -(183,96:24179003,15510465:501378,78643,0 -(183,96:24342857,15510465:173670,78643,0 -) -) -(183,96:24680381,15510465:501378,78643,0 -(183,96:24844235,15510465:173670,78643,0 -) -) -(183,96:25181759,15510465:501378,78643,0 -(183,96:25345613,15510465:173670,78643,0 -) -) -(183,96:25683137,15510465:501378,78643,0 -(183,96:25846991,15510465:173670,78643,0 -) -) -(183,96:26184515,15510465:501378,78643,0 -(183,96:26348369,15510465:173670,78643,0 -) -) -(183,96:26685893,15510465:501378,78643,0 -(183,96:26849747,15510465:173670,78643,0 -) -) -(183,96:27187271,15510465:501378,78643,0 -(183,96:27351125,15510465:173670,78643,0 -) -) -(183,96:27688649,15510465:501378,78643,0 -(183,96:27852503,15510465:173670,78643,0 -) -) -(183,96:28190027,15510465:501378,78643,0 -(183,96:28353881,15510465:173670,78643,0 -) -) -(183,96:28691405,15510465:501378,78643,0 -(183,96:28855259,15510465:173670,78643,0 -) -) -(183,96:29192783,15510465:501378,78643,0 -(183,96:29356637,15510465:173670,78643,0 -) -) -(183,96:29694161,15510465:501378,78643,0 -(183,96:29858015,15510465:173670,78643,0 -) -) -(183,96:30195539,15510465:501378,78643,0 -(183,96:30359393,15510465:173670,78643,0 -) -) -(183,96:30696917,15510465:501378,78643,0 -(183,96:30860771,15510465:173670,78643,0 -) -) -(183,96:31239539,15510465:1343490,485622,11795 -k183,96:31239539,15510465:0 -k183,96:31387652,15510465:148113 -) -g183,96:30911859,15510465 -g183,96:32583029,15510465 -) -(183,97:6630773,16351953:25952256,485622,11795 -g183,97:9121143,16351953 -h183,97:9121143,16351953:983040,0,0 -h183,97:10104183,16351953:0,0,0 -g183,97:7613813,16351953 -(183,97:7613813,16351953:1507330,481690,0 -k183,97:9121143,16351953:138283 -) -g183,97:10923383,16351953 -g183,97:12967450,16351953 -g183,97:12967450,16351953 -(183,97:13148687,16351953:501378,78643,0 -$183,97:13148687,16351953 -(183,97:13312541,16351953:173670,78643,0 -) -$183,97:13650065,16351953 -) -(183,97:13650065,16351953:501378,78643,0 -(183,97:13813919,16351953:173670,78643,0 -) -) -(183,97:14151443,16351953:501378,78643,0 -(183,97:14315297,16351953:173670,78643,0 -) -) -(183,97:14652821,16351953:501378,78643,0 -(183,97:14816675,16351953:173670,78643,0 -) -) -(183,97:15154199,16351953:501378,78643,0 -(183,97:15318053,16351953:173670,78643,0 -) -) -(183,97:15655577,16351953:501378,78643,0 -(183,97:15819431,16351953:173670,78643,0 -) -) -(183,97:16156955,16351953:501378,78643,0 -(183,97:16320809,16351953:173670,78643,0 -) -) -(183,97:16658333,16351953:501378,78643,0 -(183,97:16822187,16351953:173670,78643,0 -) -) -(183,97:17159711,16351953:501378,78643,0 -(183,97:17323565,16351953:173670,78643,0 -) -) -(183,97:17661089,16351953:501378,78643,0 -(183,97:17824943,16351953:173670,78643,0 -) -) -(183,97:18162467,16351953:501378,78643,0 -(183,97:18326321,16351953:173670,78643,0 -) -) -(183,97:18663845,16351953:501378,78643,0 -(183,97:18827699,16351953:173670,78643,0 -) -) -(183,97:19165223,16351953:501378,78643,0 -(183,97:19329077,16351953:173670,78643,0 -) -) -(183,97:19666601,16351953:501378,78643,0 -(183,97:19830455,16351953:173670,78643,0 -) -) -(183,97:20167979,16351953:501378,78643,0 -(183,97:20331833,16351953:173670,78643,0 -) -) -(183,97:20669357,16351953:501378,78643,0 -(183,97:20833211,16351953:173670,78643,0 -) -) -(183,97:21170735,16351953:501378,78643,0 -(183,97:21334589,16351953:173670,78643,0 -) -) -(183,97:21672113,16351953:501378,78643,0 -(183,97:21835967,16351953:173670,78643,0 -) -) -(183,97:22173491,16351953:501378,78643,0 -(183,97:22337345,16351953:173670,78643,0 -) -) -(183,97:22674869,16351953:501378,78643,0 -(183,97:22838723,16351953:173670,78643,0 -) -) -(183,97:23176247,16351953:501378,78643,0 -(183,97:23340101,16351953:173670,78643,0 -) -) -(183,97:23677625,16351953:501378,78643,0 -(183,97:23841479,16351953:173670,78643,0 -) -) -(183,97:24179003,16351953:501378,78643,0 -(183,97:24342857,16351953:173670,78643,0 -) -) -(183,97:24680381,16351953:501378,78643,0 -(183,97:24844235,16351953:173670,78643,0 -) -) -(183,97:25181759,16351953:501378,78643,0 -(183,97:25345613,16351953:173670,78643,0 -) -) -(183,97:25683137,16351953:501378,78643,0 -(183,97:25846991,16351953:173670,78643,0 -) -) -(183,97:26184515,16351953:501378,78643,0 -(183,97:26348369,16351953:173670,78643,0 -) -) -(183,97:26685893,16351953:501378,78643,0 -(183,97:26849747,16351953:173670,78643,0 -) -) -(183,97:27187271,16351953:501378,78643,0 -(183,97:27351125,16351953:173670,78643,0 -) -) -(183,97:27688649,16351953:501378,78643,0 -(183,97:27852503,16351953:173670,78643,0 -) -) -(183,97:28190027,16351953:501378,78643,0 -(183,97:28353881,16351953:173670,78643,0 -) -) -(183,97:28691405,16351953:501378,78643,0 -(183,97:28855259,16351953:173670,78643,0 -) -) -(183,97:29192783,16351953:501378,78643,0 -(183,97:29356637,16351953:173670,78643,0 -) -) -(183,97:29694161,16351953:501378,78643,0 -(183,97:29858015,16351953:173670,78643,0 -) -) -(183,97:30195539,16351953:501378,78643,0 -(183,97:30359393,16351953:173670,78643,0 -) -) -(183,97:30696917,16351953:501378,78643,0 -(183,97:30860771,16351953:173670,78643,0 -) -) -(183,97:31239538,16351953:1343490,485622,11795 -k183,97:31239538,16351953:0 -k183,97:31387651,16351953:148113 -) -g183,97:30911858,16351953 -g183,97:32583028,16351953 -) -(183,98:6630773,17193441:25952256,505283,7863 -g183,98:9121143,17193441 -h183,98:9121143,17193441:983040,0,0 -h183,98:10104183,17193441:0,0,0 -g183,98:7613813,17193441 -(183,98:7613813,17193441:1507330,485622,0 -k183,98:9121143,17193441:138283 -) -g183,98:13124737,17193441 -g183,98:16177404,17193441 -g183,98:16177404,17193441 -(183,98:16658333,17193441:501378,78643,0 -$183,98:16658333,17193441 -(183,98:16822187,17193441:173670,78643,0 -) -$183,98:17159711,17193441 -) -(183,98:17159711,17193441:501378,78643,0 -(183,98:17323565,17193441:173670,78643,0 -) -) -(183,98:17661089,17193441:501378,78643,0 -(183,98:17824943,17193441:173670,78643,0 -) -) -(183,98:18162467,17193441:501378,78643,0 -(183,98:18326321,17193441:173670,78643,0 -) -) -(183,98:18663845,17193441:501378,78643,0 -(183,98:18827699,17193441:173670,78643,0 -) -) -(183,98:19165223,17193441:501378,78643,0 -(183,98:19329077,17193441:173670,78643,0 -) -) -(183,98:19666601,17193441:501378,78643,0 -(183,98:19830455,17193441:173670,78643,0 -) -) -(183,98:20167979,17193441:501378,78643,0 -(183,98:20331833,17193441:173670,78643,0 -) -) -(183,98:20669357,17193441:501378,78643,0 -(183,98:20833211,17193441:173670,78643,0 -) -) -(183,98:21170735,17193441:501378,78643,0 -(183,98:21334589,17193441:173670,78643,0 -) -) -(183,98:21672113,17193441:501378,78643,0 -(183,98:21835967,17193441:173670,78643,0 -) -) -(183,98:22173491,17193441:501378,78643,0 -(183,98:22337345,17193441:173670,78643,0 -) -) -(183,98:22674869,17193441:501378,78643,0 -(183,98:22838723,17193441:173670,78643,0 -) -) -(183,98:23176247,17193441:501378,78643,0 -(183,98:23340101,17193441:173670,78643,0 -) -) -(183,98:23677625,17193441:501378,78643,0 -(183,98:23841479,17193441:173670,78643,0 -) -) -(183,98:24179003,17193441:501378,78643,0 -(183,98:24342857,17193441:173670,78643,0 -) -) -(183,98:24680381,17193441:501378,78643,0 -(183,98:24844235,17193441:173670,78643,0 -) -) -(183,98:25181759,17193441:501378,78643,0 -(183,98:25345613,17193441:173670,78643,0 -) -) -(183,98:25683137,17193441:501378,78643,0 -(183,98:25846991,17193441:173670,78643,0 -) -) -(183,98:26184515,17193441:501378,78643,0 -(183,98:26348369,17193441:173670,78643,0 -) -) -(183,98:26685893,17193441:501378,78643,0 -(183,98:26849747,17193441:173670,78643,0 -) -) -(183,98:27187271,17193441:501378,78643,0 -(183,98:27351125,17193441:173670,78643,0 -) -) -(183,98:27688649,17193441:501378,78643,0 -(183,98:27852503,17193441:173670,78643,0 -) -) -(183,98:28190027,17193441:501378,78643,0 -(183,98:28353881,17193441:173670,78643,0 -) -) -(183,98:28691405,17193441:501378,78643,0 -(183,98:28855259,17193441:173670,78643,0 -) -) -(183,98:29192783,17193441:501378,78643,0 -(183,98:29356637,17193441:173670,78643,0 -) -) -(183,98:29694161,17193441:501378,78643,0 -(183,98:29858015,17193441:173670,78643,0 -) -) -(183,98:30195539,17193441:501378,78643,0 -(183,98:30359393,17193441:173670,78643,0 -) -) -(183,98:30696917,17193441:501378,78643,0 -(183,98:30860771,17193441:173670,78643,0 -) -) -(183,98:31239539,17193441:1343490,477757,0 -k183,98:31239539,17193441:0 -k183,98:31387652,17193441:148113 -) -g183,98:30911859,17193441 -g183,98:32583029,17193441 -) -(183,99:6630773,18034929:25952256,513147,126483 -g183,99:11218293,18034929 -h183,99:11218293,18034929:2490370,0,0 -h183,99:13708663,18034929:0,0,0 -g183,99:9121143,18034929 -(183,99:9121143,18034929:2097150,485622,0 -k183,99:11218293,18034929:155974 -) -g183,99:15221887,18034929 -g183,99:17975709,18034929 -g183,99:18834230,18034929 -g183,99:21488438,18034929 -(183,99:21672113,18034929:501378,78643,0 -$183,99:21672113,18034929 -(183,99:21835967,18034929:173670,78643,0 -) -$183,99:22173491,18034929 -) -(183,99:22173491,18034929:501378,78643,0 -(183,99:22337345,18034929:173670,78643,0 -) -) -(183,99:22674869,18034929:501378,78643,0 -(183,99:22838723,18034929:173670,78643,0 -) -) -(183,99:23176247,18034929:501378,78643,0 -(183,99:23340101,18034929:173670,78643,0 -) -) -(183,99:23677625,18034929:501378,78643,0 -(183,99:23841479,18034929:173670,78643,0 -) -) -(183,99:24179003,18034929:501378,78643,0 -(183,99:24342857,18034929:173670,78643,0 -) -) -(183,99:24680381,18034929:501378,78643,0 -(183,99:24844235,18034929:173670,78643,0 -) -) -(183,99:25181759,18034929:501378,78643,0 -(183,99:25345613,18034929:173670,78643,0 -) -) -(183,99:25683137,18034929:501378,78643,0 -(183,99:25846991,18034929:173670,78643,0 -) -) -(183,99:26184515,18034929:501378,78643,0 -(183,99:26348369,18034929:173670,78643,0 -) -) -(183,99:26685893,18034929:501378,78643,0 -(183,99:26849747,18034929:173670,78643,0 -) -) -(183,99:27187271,18034929:501378,78643,0 -(183,99:27351125,18034929:173670,78643,0 -) -) -(183,99:27688649,18034929:501378,78643,0 -(183,99:27852503,18034929:173670,78643,0 -) -) -(183,99:28190027,18034929:501378,78643,0 -(183,99:28353881,18034929:173670,78643,0 -) -) -(183,99:28691405,18034929:501378,78643,0 -(183,99:28855259,18034929:173670,78643,0 -) -) -(183,99:29192783,18034929:501378,78643,0 -(183,99:29356637,18034929:173670,78643,0 -) -) -(183,99:29694161,18034929:501378,78643,0 -(183,99:29858015,18034929:173670,78643,0 -) -) -(183,99:30195539,18034929:501378,78643,0 -(183,99:30359393,18034929:173670,78643,0 -) -) -(183,99:30696917,18034929:501378,78643,0 -(183,99:30860771,18034929:173670,78643,0 -) -) -(183,99:31239539,18034929:1343490,477757,0 -k183,99:31239539,18034929:0 -k183,99:31387652,18034929:148113 -) -g183,99:30911859,18034929 -g183,99:32583029,18034929 -) -(183,100:6630773,18876417:25952256,505283,126483 -g183,100:11218293,18876417 -h183,100:11218293,18876417:2490370,0,0 -h183,100:13708663,18876417:0,0,0 -g183,100:9121143,18876417 -(183,100:9121143,18876417:2097150,485622,0 -k183,100:11218293,18876417:155974 -) -g183,100:14213943,18876417 -g183,100:18340745,18876417 -g183,100:20895338,18876417 -(183,100:21170735,18876417:501378,78643,0 -$183,100:21170735,18876417 -(183,100:21334589,18876417:173670,78643,0 -) -$183,100:21672113,18876417 -) -(183,100:21672113,18876417:501378,78643,0 -(183,100:21835967,18876417:173670,78643,0 -) -) -(183,100:22173491,18876417:501378,78643,0 -(183,100:22337345,18876417:173670,78643,0 -) -) -(183,100:22674869,18876417:501378,78643,0 -(183,100:22838723,18876417:173670,78643,0 -) -) -(183,100:23176247,18876417:501378,78643,0 -(183,100:23340101,18876417:173670,78643,0 -) -) -(183,100:23677625,18876417:501378,78643,0 -(183,100:23841479,18876417:173670,78643,0 -) -) -(183,100:24179003,18876417:501378,78643,0 -(183,100:24342857,18876417:173670,78643,0 -) -) -(183,100:24680381,18876417:501378,78643,0 -(183,100:24844235,18876417:173670,78643,0 -) -) -(183,100:25181759,18876417:501378,78643,0 -(183,100:25345613,18876417:173670,78643,0 -) -) -(183,100:25683137,18876417:501378,78643,0 -(183,100:25846991,18876417:173670,78643,0 -) -) -(183,100:26184515,18876417:501378,78643,0 -(183,100:26348369,18876417:173670,78643,0 -) -) -(183,100:26685893,18876417:501378,78643,0 -(183,100:26849747,18876417:173670,78643,0 -) -) -(183,100:27187271,18876417:501378,78643,0 -(183,100:27351125,18876417:173670,78643,0 -) -) -(183,100:27688649,18876417:501378,78643,0 -(183,100:27852503,18876417:173670,78643,0 -) -) -(183,100:28190027,18876417:501378,78643,0 -(183,100:28353881,18876417:173670,78643,0 -) -) -(183,100:28691405,18876417:501378,78643,0 -(183,100:28855259,18876417:173670,78643,0 -) -) -(183,100:29192783,18876417:501378,78643,0 -(183,100:29356637,18876417:173670,78643,0 -) -) -(183,100:29694161,18876417:501378,78643,0 -(183,100:29858015,18876417:173670,78643,0 -) -) -(183,100:30195539,18876417:501378,78643,0 -(183,100:30359393,18876417:173670,78643,0 -) -) -(183,100:30696917,18876417:501378,78643,0 -(183,100:30860771,18876417:173670,78643,0 -) -) -(183,100:31239539,18876417:1343490,485622,11795 -k183,100:31239539,18876417:0 -k183,100:31387652,18876417:148113 -) -g183,100:30911859,18876417 -g183,100:32583029,18876417 -) -(183,101:6630773,19717905:25952256,505283,134348 -g183,101:11218293,19717905 -h183,101:11218293,19717905:2490370,0,0 -h183,101:13708663,19717905:0,0,0 -g183,101:9121143,19717905 -(183,101:9121143,19717905:2097150,485622,11795 -k183,101:11218293,19717905:155974 -) -g183,101:16965145,19717905 -g183,101:19180262,19717905 -(183,101:19666601,19717905:501378,78643,0 -$183,101:19666601,19717905 -(183,101:19830455,19717905:173670,78643,0 -) -$183,101:20167979,19717905 -) -(183,101:20167979,19717905:501378,78643,0 -(183,101:20331833,19717905:173670,78643,0 -) -) -(183,101:20669357,19717905:501378,78643,0 -(183,101:20833211,19717905:173670,78643,0 -) -) -(183,101:21170735,19717905:501378,78643,0 -(183,101:21334589,19717905:173670,78643,0 -) -) -(183,101:21672113,19717905:501378,78643,0 -(183,101:21835967,19717905:173670,78643,0 -) -) -(183,101:22173491,19717905:501378,78643,0 -(183,101:22337345,19717905:173670,78643,0 -) -) -(183,101:22674869,19717905:501378,78643,0 -(183,101:22838723,19717905:173670,78643,0 -) -) -(183,101:23176247,19717905:501378,78643,0 -(183,101:23340101,19717905:173670,78643,0 -) -) -(183,101:23677625,19717905:501378,78643,0 -(183,101:23841479,19717905:173670,78643,0 -) -) -(183,101:24179003,19717905:501378,78643,0 -(183,101:24342857,19717905:173670,78643,0 -) -) -(183,101:24680381,19717905:501378,78643,0 -(183,101:24844235,19717905:173670,78643,0 -) -) -(183,101:25181759,19717905:501378,78643,0 -(183,101:25345613,19717905:173670,78643,0 -) -) -(183,101:25683137,19717905:501378,78643,0 -(183,101:25846991,19717905:173670,78643,0 -) -) -(183,101:26184515,19717905:501378,78643,0 -(183,101:26348369,19717905:173670,78643,0 -) -) -(183,101:26685893,19717905:501378,78643,0 -(183,101:26849747,19717905:173670,78643,0 -) -) -(183,101:27187271,19717905:501378,78643,0 -(183,101:27351125,19717905:173670,78643,0 -) -) -(183,101:27688649,19717905:501378,78643,0 -(183,101:27852503,19717905:173670,78643,0 -) -) -(183,101:28190027,19717905:501378,78643,0 -(183,101:28353881,19717905:173670,78643,0 -) -) -(183,101:28691405,19717905:501378,78643,0 -(183,101:28855259,19717905:173670,78643,0 -) -) -(183,101:29192783,19717905:501378,78643,0 -(183,101:29356637,19717905:173670,78643,0 -) -) -(183,101:29694161,19717905:501378,78643,0 -(183,101:29858015,19717905:173670,78643,0 -) -) -(183,101:30195539,19717905:501378,78643,0 -(183,101:30359393,19717905:173670,78643,0 -) -) -(183,101:30696917,19717905:501378,78643,0 -(183,101:30860771,19717905:173670,78643,0 -) -) -(183,101:31239539,19717905:1343490,477757,11795 -k183,101:31239539,19717905:0 -k183,101:31387652,19717905:148113 -) -g183,101:30911859,19717905 -g183,101:32583029,19717905 -) -(183,102:6630773,20559393:25952256,505283,126483 -g183,102:11218293,20559393 -h183,102:11218293,20559393:2490370,0,0 -h183,102:13708663,20559393:0,0,0 -g183,102:9121143,20559393 -(183,102:9121143,20559393:2097150,485622,0 -k183,102:11218293,20559393:155974 -) -g183,102:13715870,20559393 -g183,102:16270463,20559393 -(183,102:16658333,20559393:501378,78643,0 -$183,102:16658333,20559393 -(183,102:16822187,20559393:173670,78643,0 -) -$183,102:17159711,20559393 -) -(183,102:17159711,20559393:501378,78643,0 -(183,102:17323565,20559393:173670,78643,0 -) -) -(183,102:17661089,20559393:501378,78643,0 -(183,102:17824943,20559393:173670,78643,0 -) -) -(183,102:18162467,20559393:501378,78643,0 -(183,102:18326321,20559393:173670,78643,0 -) -) -(183,102:18663845,20559393:501378,78643,0 -(183,102:18827699,20559393:173670,78643,0 -) -) -(183,102:19165223,20559393:501378,78643,0 -(183,102:19329077,20559393:173670,78643,0 -) -) -(183,102:19666601,20559393:501378,78643,0 -(183,102:19830455,20559393:173670,78643,0 -) -) -(183,102:20167979,20559393:501378,78643,0 -(183,102:20331833,20559393:173670,78643,0 -) -) -(183,102:20669357,20559393:501378,78643,0 -(183,102:20833211,20559393:173670,78643,0 -) -) -(183,102:21170735,20559393:501378,78643,0 -(183,102:21334589,20559393:173670,78643,0 -) -) -(183,102:21672113,20559393:501378,78643,0 -(183,102:21835967,20559393:173670,78643,0 -) -) -(183,102:22173491,20559393:501378,78643,0 -(183,102:22337345,20559393:173670,78643,0 -) -) -(183,102:22674869,20559393:501378,78643,0 -(183,102:22838723,20559393:173670,78643,0 -) -) -(183,102:23176247,20559393:501378,78643,0 -(183,102:23340101,20559393:173670,78643,0 -) -) -(183,102:23677625,20559393:501378,78643,0 -(183,102:23841479,20559393:173670,78643,0 -) -) -(183,102:24179003,20559393:501378,78643,0 -(183,102:24342857,20559393:173670,78643,0 -) -) -(183,102:24680381,20559393:501378,78643,0 -(183,102:24844235,20559393:173670,78643,0 -) -) -(183,102:25181759,20559393:501378,78643,0 -(183,102:25345613,20559393:173670,78643,0 -) -) -(183,102:25683137,20559393:501378,78643,0 -(183,102:25846991,20559393:173670,78643,0 -) -) -(183,102:26184515,20559393:501378,78643,0 -(183,102:26348369,20559393:173670,78643,0 -) -) -(183,102:26685893,20559393:501378,78643,0 -(183,102:26849747,20559393:173670,78643,0 -) -) -(183,102:27187271,20559393:501378,78643,0 -(183,102:27351125,20559393:173670,78643,0 -) -) -(183,102:27688649,20559393:501378,78643,0 -(183,102:27852503,20559393:173670,78643,0 -) -) -(183,102:28190027,20559393:501378,78643,0 -(183,102:28353881,20559393:173670,78643,0 -) -) -(183,102:28691405,20559393:501378,78643,0 -(183,102:28855259,20559393:173670,78643,0 -) -) -(183,102:29192783,20559393:501378,78643,0 -(183,102:29356637,20559393:173670,78643,0 -) -) -(183,102:29694161,20559393:501378,78643,0 -(183,102:29858015,20559393:173670,78643,0 -) -) -(183,102:30195539,20559393:501378,78643,0 -(183,102:30359393,20559393:173670,78643,0 -) -) -(183,102:30696917,20559393:501378,78643,0 -(183,102:30860771,20559393:173670,78643,0 -) -) -(183,102:31239539,20559393:1343490,485622,11795 -k183,102:31239539,20559393:0 -k183,102:31387652,20559393:148113 -) -g183,102:30911859,20559393 -g183,102:32583029,20559393 -) -(183,103:6630773,21400881:25952256,505283,134348 -g183,103:9121143,21400881 -h183,103:9121143,21400881:983040,0,0 -h183,103:10104183,21400881:0,0,0 -g183,103:7613813,21400881 -(183,103:7613813,21400881:1507330,485622,11795 -k183,103:9121143,21400881:138283 -) -g183,103:11690154,21400881 -g183,103:14291933,21400881 -g183,103:14291933,21400881 -(183,103:14652821,21400881:501378,78643,0 -$183,103:14652821,21400881 -(183,103:14816675,21400881:173670,78643,0 -) -$183,103:15154199,21400881 -) -(183,103:15154199,21400881:501378,78643,0 -(183,103:15318053,21400881:173670,78643,0 -) -) -(183,103:15655577,21400881:501378,78643,0 -(183,103:15819431,21400881:173670,78643,0 -) -) -(183,103:16156955,21400881:501378,78643,0 -(183,103:16320809,21400881:173670,78643,0 -) -) -(183,103:16658333,21400881:501378,78643,0 -(183,103:16822187,21400881:173670,78643,0 -) -) -(183,103:17159711,21400881:501378,78643,0 -(183,103:17323565,21400881:173670,78643,0 -) -) -(183,103:17661089,21400881:501378,78643,0 -(183,103:17824943,21400881:173670,78643,0 -) -) -(183,103:18162467,21400881:501378,78643,0 -(183,103:18326321,21400881:173670,78643,0 -) -) -(183,103:18663845,21400881:501378,78643,0 -(183,103:18827699,21400881:173670,78643,0 -) -) -(183,103:19165223,21400881:501378,78643,0 -(183,103:19329077,21400881:173670,78643,0 -) -) -(183,103:19666601,21400881:501378,78643,0 -(183,103:19830455,21400881:173670,78643,0 -) -) -(183,103:20167979,21400881:501378,78643,0 -(183,103:20331833,21400881:173670,78643,0 -) -) -(183,103:20669357,21400881:501378,78643,0 -(183,103:20833211,21400881:173670,78643,0 -) -) -(183,103:21170735,21400881:501378,78643,0 -(183,103:21334589,21400881:173670,78643,0 -) -) -(183,103:21672113,21400881:501378,78643,0 -(183,103:21835967,21400881:173670,78643,0 -) -) -(183,103:22173491,21400881:501378,78643,0 -(183,103:22337345,21400881:173670,78643,0 -) -) -(183,103:22674869,21400881:501378,78643,0 -(183,103:22838723,21400881:173670,78643,0 -) -) -(183,103:23176247,21400881:501378,78643,0 -(183,103:23340101,21400881:173670,78643,0 -) -) -(183,103:23677625,21400881:501378,78643,0 -(183,103:23841479,21400881:173670,78643,0 -) -) -(183,103:24179003,21400881:501378,78643,0 -(183,103:24342857,21400881:173670,78643,0 -) -) -(183,103:24680381,21400881:501378,78643,0 -(183,103:24844235,21400881:173670,78643,0 -) -) -(183,103:25181759,21400881:501378,78643,0 -(183,103:25345613,21400881:173670,78643,0 -) -) -(183,103:25683137,21400881:501378,78643,0 -(183,103:25846991,21400881:173670,78643,0 -) -) -(183,103:26184515,21400881:501378,78643,0 -(183,103:26348369,21400881:173670,78643,0 -) -) -(183,103:26685893,21400881:501378,78643,0 -(183,103:26849747,21400881:173670,78643,0 -) -) -(183,103:27187271,21400881:501378,78643,0 -(183,103:27351125,21400881:173670,78643,0 -) -) -(183,103:27688649,21400881:501378,78643,0 -(183,103:27852503,21400881:173670,78643,0 -) -) -(183,103:28190027,21400881:501378,78643,0 -(183,103:28353881,21400881:173670,78643,0 -) -) -(183,103:28691405,21400881:501378,78643,0 -(183,103:28855259,21400881:173670,78643,0 -) -) -(183,103:29192783,21400881:501378,78643,0 -(183,103:29356637,21400881:173670,78643,0 -) -) -(183,103:29694161,21400881:501378,78643,0 -(183,103:29858015,21400881:173670,78643,0 -) -) -(183,103:30195539,21400881:501378,78643,0 -(183,103:30359393,21400881:173670,78643,0 -) -) -(183,103:30696917,21400881:501378,78643,0 -(183,103:30860771,21400881:173670,78643,0 -) -) -(183,103:31239539,21400881:1343490,485622,11795 -k183,103:31239539,21400881:0 -k183,103:31387652,21400881:148113 -) -g183,103:30911859,21400881 -g183,103:32583029,21400881 -) -(183,104:6630773,22897729:25952256,505283,134348 -g183,104:7613813,22897729 -h183,104:7613813,22897729:0,0,0 -g183,104:6630773,22897729 -(183,104:6630773,22897729:983040,473825,11795 -k183,104:7613813,22897729:574751 -) -g183,104:9083130,22897729 -g183,104:9759461,22897729 -g183,104:13090000,22897729 -g183,104:15704231,22897729 -g183,104:17282338,22897729 -k183,104:25596235,22897729:5643305 -k183,104:31239539,22897729:5643304 -(183,104:31239539,22897729:1343490,485622,11795 -k183,104:31358161,22897729:118622 -) -g183,104:31239539,22897729 -g183,104:32583029,22897729 -) -(183,105:6630773,23739217:25952256,513147,126483 -g183,105:9121143,23739217 -h183,105:9121143,23739217:983040,0,0 -h183,105:10104183,23739217:0,0,0 -g183,105:7613813,23739217 -(183,105:7613813,23739217:1507330,477757,11795 -k183,105:9121143,23739217:536742 -) -g183,105:10959427,23739217 -g183,105:11817948,23739217 -g183,105:13220418,23739217 -g183,105:15837270,23739217 -g183,105:15837270,23739217 -(183,105:16156955,23739217:501378,78643,0 -$183,105:16156955,23739217 -(183,105:16320809,23739217:173670,78643,0 -) -$183,105:16658333,23739217 -) -(183,105:16658333,23739217:501378,78643,0 -(183,105:16822187,23739217:173670,78643,0 -) -) -(183,105:17159711,23739217:501378,78643,0 -(183,105:17323565,23739217:173670,78643,0 -) -) -(183,105:17661089,23739217:501378,78643,0 -(183,105:17824943,23739217:173670,78643,0 -) -) -(183,105:18162467,23739217:501378,78643,0 -(183,105:18326321,23739217:173670,78643,0 -) -) -(183,105:18663845,23739217:501378,78643,0 -(183,105:18827699,23739217:173670,78643,0 -) -) -(183,105:19165223,23739217:501378,78643,0 -(183,105:19329077,23739217:173670,78643,0 -) -) -(183,105:19666601,23739217:501378,78643,0 -(183,105:19830455,23739217:173670,78643,0 -) -) -(183,105:20167979,23739217:501378,78643,0 -(183,105:20331833,23739217:173670,78643,0 -) -) -(183,105:20669357,23739217:501378,78643,0 -(183,105:20833211,23739217:173670,78643,0 -) -) -(183,105:21170735,23739217:501378,78643,0 -(183,105:21334589,23739217:173670,78643,0 -) -) -(183,105:21672113,23739217:501378,78643,0 -(183,105:21835967,23739217:173670,78643,0 -) -) -(183,105:22173491,23739217:501378,78643,0 -(183,105:22337345,23739217:173670,78643,0 -) -) -(183,105:22674869,23739217:501378,78643,0 -(183,105:22838723,23739217:173670,78643,0 -) -) -(183,105:23176247,23739217:501378,78643,0 -(183,105:23340101,23739217:173670,78643,0 -) -) -(183,105:23677625,23739217:501378,78643,0 -(183,105:23841479,23739217:173670,78643,0 -) -) -(183,105:24179003,23739217:501378,78643,0 -(183,105:24342857,23739217:173670,78643,0 -) -) -(183,105:24680381,23739217:501378,78643,0 -(183,105:24844235,23739217:173670,78643,0 -) -) -(183,105:25181759,23739217:501378,78643,0 -(183,105:25345613,23739217:173670,78643,0 -) -) -(183,105:25683137,23739217:501378,78643,0 -(183,105:25846991,23739217:173670,78643,0 -) -) -(183,105:26184515,23739217:501378,78643,0 -(183,105:26348369,23739217:173670,78643,0 -) -) -(183,105:26685893,23739217:501378,78643,0 -(183,105:26849747,23739217:173670,78643,0 -) -) -(183,105:27187271,23739217:501378,78643,0 -(183,105:27351125,23739217:173670,78643,0 -) -) -(183,105:27688649,23739217:501378,78643,0 -(183,105:27852503,23739217:173670,78643,0 -) -) -(183,105:28190027,23739217:501378,78643,0 -(183,105:28353881,23739217:173670,78643,0 -) -) -(183,105:28691405,23739217:501378,78643,0 -(183,105:28855259,23739217:173670,78643,0 -) -) -(183,105:29192783,23739217:501378,78643,0 -(183,105:29356637,23739217:173670,78643,0 -) -) -(183,105:29694161,23739217:501378,78643,0 -(183,105:29858015,23739217:173670,78643,0 -) -) -(183,105:30195539,23739217:501378,78643,0 -(183,105:30359393,23739217:173670,78643,0 -) -) -(183,105:30696917,23739217:501378,78643,0 -(183,105:30860771,23739217:173670,78643,0 -) -) -(183,105:31239539,23739217:1343490,485622,11795 -k183,105:31239539,23739217:0 -k183,105:31387652,23739217:148113 -) -g183,105:30911859,23739217 -g183,105:32583029,23739217 -) -(183,106:6630773,24580705:25952256,505283,134348 -g183,106:9121143,24580705 -h183,106:9121143,24580705:983040,0,0 -h183,106:10104183,24580705:0,0,0 -g183,106:7613813,24580705 -(183,106:7613813,24580705:1507330,485622,11795 -k183,106:9121143,24580705:536742 -) -g183,106:12185606,24580705 -g183,106:12185606,24580705 -(183,106:12647309,24580705:501378,78643,0 -$183,106:12647309,24580705 -(183,106:12811163,24580705:173670,78643,0 -) -$183,106:13148687,24580705 -) -(183,106:13148687,24580705:501378,78643,0 -(183,106:13312541,24580705:173670,78643,0 -) -) -(183,106:13650065,24580705:501378,78643,0 -(183,106:13813919,24580705:173670,78643,0 -) -) -(183,106:14151443,24580705:501378,78643,0 -(183,106:14315297,24580705:173670,78643,0 -) -) -(183,106:14652821,24580705:501378,78643,0 -(183,106:14816675,24580705:173670,78643,0 -) -) -(183,106:15154199,24580705:501378,78643,0 -(183,106:15318053,24580705:173670,78643,0 -) -) -(183,106:15655577,24580705:501378,78643,0 -(183,106:15819431,24580705:173670,78643,0 -) -) -(183,106:16156955,24580705:501378,78643,0 -(183,106:16320809,24580705:173670,78643,0 -) -) -(183,106:16658333,24580705:501378,78643,0 -(183,106:16822187,24580705:173670,78643,0 -) -) -(183,106:17159711,24580705:501378,78643,0 -(183,106:17323565,24580705:173670,78643,0 -) -) -(183,106:17661089,24580705:501378,78643,0 -(183,106:17824943,24580705:173670,78643,0 -) -) -(183,106:18162467,24580705:501378,78643,0 -(183,106:18326321,24580705:173670,78643,0 -) -) -(183,106:18663845,24580705:501378,78643,0 -(183,106:18827699,24580705:173670,78643,0 -) -) -(183,106:19165223,24580705:501378,78643,0 -(183,106:19329077,24580705:173670,78643,0 -) -) -(183,106:19666601,24580705:501378,78643,0 -(183,106:19830455,24580705:173670,78643,0 -) -) -(183,106:20167979,24580705:501378,78643,0 -(183,106:20331833,24580705:173670,78643,0 -) -) -(183,106:20669357,24580705:501378,78643,0 -(183,106:20833211,24580705:173670,78643,0 -) -) -(183,106:21170735,24580705:501378,78643,0 -(183,106:21334589,24580705:173670,78643,0 -) -) -(183,106:21672113,24580705:501378,78643,0 -(183,106:21835967,24580705:173670,78643,0 -) -) -(183,106:22173491,24580705:501378,78643,0 -(183,106:22337345,24580705:173670,78643,0 -) -) -(183,106:22674869,24580705:501378,78643,0 -(183,106:22838723,24580705:173670,78643,0 -) -) -(183,106:23176247,24580705:501378,78643,0 -(183,106:23340101,24580705:173670,78643,0 -) -) -(183,106:23677625,24580705:501378,78643,0 -(183,106:23841479,24580705:173670,78643,0 -) -) -(183,106:24179003,24580705:501378,78643,0 -(183,106:24342857,24580705:173670,78643,0 -) -) -(183,106:24680381,24580705:501378,78643,0 -(183,106:24844235,24580705:173670,78643,0 -) -) -(183,106:25181759,24580705:501378,78643,0 -(183,106:25345613,24580705:173670,78643,0 -) -) -(183,106:25683137,24580705:501378,78643,0 -(183,106:25846991,24580705:173670,78643,0 -) -) -(183,106:26184515,24580705:501378,78643,0 -(183,106:26348369,24580705:173670,78643,0 -) -) -(183,106:26685893,24580705:501378,78643,0 -(183,106:26849747,24580705:173670,78643,0 -) -) -(183,106:27187271,24580705:501378,78643,0 -(183,106:27351125,24580705:173670,78643,0 -) -) -(183,106:27688649,24580705:501378,78643,0 -(183,106:27852503,24580705:173670,78643,0 -) -) -(183,106:28190027,24580705:501378,78643,0 -(183,106:28353881,24580705:173670,78643,0 -) -) -(183,106:28691405,24580705:501378,78643,0 -(183,106:28855259,24580705:173670,78643,0 -) -) -(183,106:29192783,24580705:501378,78643,0 -(183,106:29356637,24580705:173670,78643,0 -) -) -(183,106:29694161,24580705:501378,78643,0 -(183,106:29858015,24580705:173670,78643,0 -) -) -(183,106:30195539,24580705:501378,78643,0 -(183,106:30359393,24580705:173670,78643,0 -) -) -(183,106:30696917,24580705:501378,78643,0 -(183,106:30860771,24580705:173670,78643,0 -) -) -(183,106:31239538,24580705:1343490,485622,11795 -k183,106:31239538,24580705:0 -k183,106:31387651,24580705:148113 -) -g183,106:30911858,24580705 -g183,106:32583028,24580705 -) -(183,107:6630773,25422193:25952256,513147,134348 -g183,107:11218293,25422193 -h183,107:11218293,25422193:2490370,0,0 -h183,107:13708663,25422193:0,0,0 -g183,107:9121143,25422193 -(183,107:9121143,25422193:2097150,485622,11795 -k183,107:11218293,25422193:554432 -) -g183,107:13822038,25422193 -g183,107:14688423,25422193 -g183,107:18357783,25422193 -g183,107:21760412,25422193 -(183,107:22173491,25422193:501378,78643,0 -$183,107:22173491,25422193 -(183,107:22337345,25422193:173670,78643,0 -) -$183,107:22674869,25422193 -) -(183,107:22674869,25422193:501378,78643,0 -(183,107:22838723,25422193:173670,78643,0 -) -) -(183,107:23176247,25422193:501378,78643,0 -(183,107:23340101,25422193:173670,78643,0 -) -) -(183,107:23677625,25422193:501378,78643,0 -(183,107:23841479,25422193:173670,78643,0 -) -) -(183,107:24179003,25422193:501378,78643,0 -(183,107:24342857,25422193:173670,78643,0 -) -) -(183,107:24680381,25422193:501378,78643,0 -(183,107:24844235,25422193:173670,78643,0 -) -) -(183,107:25181759,25422193:501378,78643,0 -(183,107:25345613,25422193:173670,78643,0 -) -) -(183,107:25683137,25422193:501378,78643,0 -(183,107:25846991,25422193:173670,78643,0 -) -) -(183,107:26184515,25422193:501378,78643,0 -(183,107:26348369,25422193:173670,78643,0 -) -) -(183,107:26685893,25422193:501378,78643,0 -(183,107:26849747,25422193:173670,78643,0 -) -) -(183,107:27187271,25422193:501378,78643,0 -(183,107:27351125,25422193:173670,78643,0 -) -) -(183,107:27688649,25422193:501378,78643,0 -(183,107:27852503,25422193:173670,78643,0 -) -) -(183,107:28190027,25422193:501378,78643,0 -(183,107:28353881,25422193:173670,78643,0 -) -) -(183,107:28691405,25422193:501378,78643,0 -(183,107:28855259,25422193:173670,78643,0 -) -) -(183,107:29192783,25422193:501378,78643,0 -(183,107:29356637,25422193:173670,78643,0 -) -) -(183,107:29694161,25422193:501378,78643,0 -(183,107:29858015,25422193:173670,78643,0 -) -) -(183,107:30195539,25422193:501378,78643,0 -(183,107:30359393,25422193:173670,78643,0 -) -) -(183,107:30696917,25422193:501378,78643,0 -(183,107:30860771,25422193:173670,78643,0 -) -) -(183,107:31239539,25422193:1343490,485622,11795 -k183,107:31239539,25422193:0 -k183,107:31387652,25422193:148113 -) -g183,107:30911859,25422193 -g183,107:32583029,25422193 -) -(183,108:6630773,26263681:25952256,505283,134348 -g183,108:11218293,26263681 -h183,108:11218293,26263681:2490370,0,0 -h183,108:13708663,26263681:0,0,0 -g183,108:9121143,26263681 -(183,108:9121143,26263681:2097150,485622,11795 -k183,108:11218293,26263681:554432 -) -g183,108:12838343,26263681 -g183,108:15948026,26263681 -g183,108:17544483,26263681 -(183,108:17661089,26263681:501378,78643,0 -$183,108:17661089,26263681 -(183,108:17824943,26263681:173670,78643,0 -) -$183,108:18162467,26263681 -) -(183,108:18162467,26263681:501378,78643,0 -(183,108:18326321,26263681:173670,78643,0 -) -) -(183,108:18663845,26263681:501378,78643,0 -(183,108:18827699,26263681:173670,78643,0 -) -) -(183,108:19165223,26263681:501378,78643,0 -(183,108:19329077,26263681:173670,78643,0 -) -) -(183,108:19666601,26263681:501378,78643,0 -(183,108:19830455,26263681:173670,78643,0 -) -) -(183,108:20167979,26263681:501378,78643,0 -(183,108:20331833,26263681:173670,78643,0 -) -) -(183,108:20669357,26263681:501378,78643,0 -(183,108:20833211,26263681:173670,78643,0 -) -) -(183,108:21170735,26263681:501378,78643,0 -(183,108:21334589,26263681:173670,78643,0 -) -) -(183,108:21672113,26263681:501378,78643,0 -(183,108:21835967,26263681:173670,78643,0 -) -) -(183,108:22173491,26263681:501378,78643,0 -(183,108:22337345,26263681:173670,78643,0 -) -) -(183,108:22674869,26263681:501378,78643,0 -(183,108:22838723,26263681:173670,78643,0 -) -) -(183,108:23176247,26263681:501378,78643,0 -(183,108:23340101,26263681:173670,78643,0 -) -) -(183,108:23677625,26263681:501378,78643,0 -(183,108:23841479,26263681:173670,78643,0 -) -) -(183,108:24179003,26263681:501378,78643,0 -(183,108:24342857,26263681:173670,78643,0 -) -) -(183,108:24680381,26263681:501378,78643,0 -(183,108:24844235,26263681:173670,78643,0 -) -) -(183,108:25181759,26263681:501378,78643,0 -(183,108:25345613,26263681:173670,78643,0 -) -) -(183,108:25683137,26263681:501378,78643,0 -(183,108:25846991,26263681:173670,78643,0 -) -) -(183,108:26184515,26263681:501378,78643,0 -(183,108:26348369,26263681:173670,78643,0 -) -) -(183,108:26685893,26263681:501378,78643,0 -(183,108:26849747,26263681:173670,78643,0 -) -) -(183,108:27187271,26263681:501378,78643,0 -(183,108:27351125,26263681:173670,78643,0 -) -) -(183,108:27688649,26263681:501378,78643,0 -(183,108:27852503,26263681:173670,78643,0 -) -) -(183,108:28190027,26263681:501378,78643,0 -(183,108:28353881,26263681:173670,78643,0 -) -) -(183,108:28691405,26263681:501378,78643,0 -(183,108:28855259,26263681:173670,78643,0 -) -) -(183,108:29192783,26263681:501378,78643,0 -(183,108:29356637,26263681:173670,78643,0 -) -) -(183,108:29694161,26263681:501378,78643,0 -(183,108:29858015,26263681:173670,78643,0 -) -) -(183,108:30195539,26263681:501378,78643,0 -(183,108:30359393,26263681:173670,78643,0 -) -) -(183,108:30696917,26263681:501378,78643,0 -(183,108:30860771,26263681:173670,78643,0 -) -) -(183,108:31239539,26263681:1343490,485622,11795 -k183,108:31239539,26263681:0 -k183,108:31387652,26263681:148113 -) -g183,108:30911859,26263681 -g183,108:32583029,26263681 -) -(183,109:6630773,27105169:25952256,505283,102891 -g183,109:11218293,27105169 -h183,109:11218293,27105169:2490370,0,0 -h183,109:13708663,27105169:0,0,0 -g183,109:9121143,27105169 -(183,109:9121143,27105169:2097150,485622,11795 -k183,109:11218293,27105169:554432 -) -g183,109:14801146,27105169 -g183,109:18593059,27105169 -g183,109:19983733,27105169 -g183,109:21076218,27105169 -(183,109:21170735,27105169:501378,78643,0 -$183,109:21170735,27105169 -(183,109:21334589,27105169:173670,78643,0 -) -$183,109:21672113,27105169 -) -(183,109:21672113,27105169:501378,78643,0 -(183,109:21835967,27105169:173670,78643,0 -) -) -(183,109:22173491,27105169:501378,78643,0 -(183,109:22337345,27105169:173670,78643,0 -) -) -(183,109:22674869,27105169:501378,78643,0 -(183,109:22838723,27105169:173670,78643,0 -) -) -(183,109:23176247,27105169:501378,78643,0 -(183,109:23340101,27105169:173670,78643,0 -) -) -(183,109:23677625,27105169:501378,78643,0 -(183,109:23841479,27105169:173670,78643,0 -) -) -(183,109:24179003,27105169:501378,78643,0 -(183,109:24342857,27105169:173670,78643,0 -) -) -(183,109:24680381,27105169:501378,78643,0 -(183,109:24844235,27105169:173670,78643,0 -) -) -(183,109:25181759,27105169:501378,78643,0 -(183,109:25345613,27105169:173670,78643,0 -) -) -(183,109:25683137,27105169:501378,78643,0 -(183,109:25846991,27105169:173670,78643,0 -) -) -(183,109:26184515,27105169:501378,78643,0 -(183,109:26348369,27105169:173670,78643,0 -) -) -(183,109:26685893,27105169:501378,78643,0 -(183,109:26849747,27105169:173670,78643,0 -) -) -(183,109:27187271,27105169:501378,78643,0 -(183,109:27351125,27105169:173670,78643,0 -) -) -(183,109:27688649,27105169:501378,78643,0 -(183,109:27852503,27105169:173670,78643,0 -) -) -(183,109:28190027,27105169:501378,78643,0 -(183,109:28353881,27105169:173670,78643,0 -) -) -(183,109:28691405,27105169:501378,78643,0 -(183,109:28855259,27105169:173670,78643,0 -) -) -(183,109:29192783,27105169:501378,78643,0 -(183,109:29356637,27105169:173670,78643,0 -) -) -(183,109:29694161,27105169:501378,78643,0 -(183,109:29858015,27105169:173670,78643,0 -) -) -(183,109:30195539,27105169:501378,78643,0 -(183,109:30359393,27105169:173670,78643,0 -) -) -(183,109:30696917,27105169:501378,78643,0 -(183,109:30860771,27105169:173670,78643,0 -) -) -(183,109:31239539,27105169:1343490,485622,11795 -k183,109:31239539,27105169:0 -k183,109:31387652,27105169:148113 -) -g183,109:30911859,27105169 -g183,109:32583029,27105169 -) -(183,110:6630773,27946657:25952256,505283,134348 -g183,110:11218293,27946657 -h183,110:11218293,27946657:2490370,0,0 -h183,110:13708663,27946657:0,0,0 -g183,110:9121143,27946657 -(183,110:9121143,27946657:2097150,485622,11795 -k183,110:11218293,27946657:554432 -) -g183,110:13803688,27946657 -g183,110:16514912,27946657 -g183,110:19425366,27946657 -(183,110:19666601,27946657:501378,78643,0 -$183,110:19666601,27946657 -(183,110:19830455,27946657:173670,78643,0 -) -$183,110:20167979,27946657 -) -(183,110:20167979,27946657:501378,78643,0 -(183,110:20331833,27946657:173670,78643,0 -) -) -(183,110:20669357,27946657:501378,78643,0 -(183,110:20833211,27946657:173670,78643,0 -) -) -(183,110:21170735,27946657:501378,78643,0 -(183,110:21334589,27946657:173670,78643,0 -) -) -(183,110:21672113,27946657:501378,78643,0 -(183,110:21835967,27946657:173670,78643,0 -) -) -(183,110:22173491,27946657:501378,78643,0 -(183,110:22337345,27946657:173670,78643,0 -) -) -(183,110:22674869,27946657:501378,78643,0 -(183,110:22838723,27946657:173670,78643,0 -) -) -(183,110:23176247,27946657:501378,78643,0 -(183,110:23340101,27946657:173670,78643,0 -) -) -(183,110:23677625,27946657:501378,78643,0 -(183,110:23841479,27946657:173670,78643,0 -) -) -(183,110:24179003,27946657:501378,78643,0 -(183,110:24342857,27946657:173670,78643,0 -) -) -(183,110:24680381,27946657:501378,78643,0 -(183,110:24844235,27946657:173670,78643,0 -) -) -(183,110:25181759,27946657:501378,78643,0 -(183,110:25345613,27946657:173670,78643,0 -) -) -(183,110:25683137,27946657:501378,78643,0 -(183,110:25846991,27946657:173670,78643,0 -) -) -(183,110:26184515,27946657:501378,78643,0 -(183,110:26348369,27946657:173670,78643,0 -) -) -(183,110:26685893,27946657:501378,78643,0 -(183,110:26849747,27946657:173670,78643,0 -) -) -(183,110:27187271,27946657:501378,78643,0 -(183,110:27351125,27946657:173670,78643,0 -) -) -(183,110:27688649,27946657:501378,78643,0 -(183,110:27852503,27946657:173670,78643,0 -) -) -(183,110:28190027,27946657:501378,78643,0 -(183,110:28353881,27946657:173670,78643,0 -) -) -(183,110:28691405,27946657:501378,78643,0 -(183,110:28855259,27946657:173670,78643,0 -) -) -(183,110:29192783,27946657:501378,78643,0 -(183,110:29356637,27946657:173670,78643,0 -) -) -(183,110:29694161,27946657:501378,78643,0 -(183,110:29858015,27946657:173670,78643,0 -) -) -(183,110:30195539,27946657:501378,78643,0 -(183,110:30359393,27946657:173670,78643,0 -) -) -(183,110:30696917,27946657:501378,78643,0 -(183,110:30860771,27946657:173670,78643,0 -) -) -(183,110:31239539,27946657:1343490,485622,11795 -k183,110:31239539,27946657:0 -k183,110:31387652,27946657:148113 -) -g183,110:30911859,27946657 -g183,110:32583029,27946657 -) -(183,111:6630773,28788145:25952256,513147,134348 -g183,111:9121143,28788145 -h183,111:9121143,28788145:983040,0,0 -h183,111:10104183,28788145:0,0,0 -g183,111:7613813,28788145 -(183,111:7613813,28788145:1507330,485622,11795 -k183,111:9121143,28788145:536742 -) -g183,111:12006693,28788145 -g183,111:15231719,28788145 -g183,111:16622393,28788145 -g183,111:19898537,28788145 -g183,111:19898537,28788145 -(183,111:20167979,28788145:501378,78643,0 -$183,111:20167979,28788145 -(183,111:20331833,28788145:173670,78643,0 -) -$183,111:20669357,28788145 -) -(183,111:20669357,28788145:501378,78643,0 -(183,111:20833211,28788145:173670,78643,0 -) -) -(183,111:21170735,28788145:501378,78643,0 -(183,111:21334589,28788145:173670,78643,0 -) -) -(183,111:21672113,28788145:501378,78643,0 -(183,111:21835967,28788145:173670,78643,0 -) -) -(183,111:22173491,28788145:501378,78643,0 -(183,111:22337345,28788145:173670,78643,0 -) -) -(183,111:22674869,28788145:501378,78643,0 -(183,111:22838723,28788145:173670,78643,0 -) -) -(183,111:23176247,28788145:501378,78643,0 -(183,111:23340101,28788145:173670,78643,0 -) -) -(183,111:23677625,28788145:501378,78643,0 -(183,111:23841479,28788145:173670,78643,0 -) -) -(183,111:24179003,28788145:501378,78643,0 -(183,111:24342857,28788145:173670,78643,0 -) -) -(183,111:24680381,28788145:501378,78643,0 -(183,111:24844235,28788145:173670,78643,0 -) -) -(183,111:25181759,28788145:501378,78643,0 -(183,111:25345613,28788145:173670,78643,0 -) -) -(183,111:25683137,28788145:501378,78643,0 -(183,111:25846991,28788145:173670,78643,0 -) -) -(183,111:26184515,28788145:501378,78643,0 -(183,111:26348369,28788145:173670,78643,0 -) -) -(183,111:26685893,28788145:501378,78643,0 -(183,111:26849747,28788145:173670,78643,0 -) -) -(183,111:27187271,28788145:501378,78643,0 -(183,111:27351125,28788145:173670,78643,0 -) -) -(183,111:27688649,28788145:501378,78643,0 -(183,111:27852503,28788145:173670,78643,0 -) -) -(183,111:28190027,28788145:501378,78643,0 -(183,111:28353881,28788145:173670,78643,0 -) -) -(183,111:28691405,28788145:501378,78643,0 -(183,111:28855259,28788145:173670,78643,0 -) -) -(183,111:29192783,28788145:501378,78643,0 -(183,111:29356637,28788145:173670,78643,0 -) -) -(183,111:29694161,28788145:501378,78643,0 -(183,111:29858015,28788145:173670,78643,0 -) -) -(183,111:30195539,28788145:501378,78643,0 -(183,111:30359393,28788145:173670,78643,0 -) -) -(183,111:30696917,28788145:501378,78643,0 -(183,111:30860771,28788145:173670,78643,0 -) -) -(183,111:31239539,28788145:1343490,485622,11795 -k183,111:31239539,28788145:0 -k183,111:31387652,28788145:148113 -) -g183,111:30911859,28788145 -g183,111:32583029,28788145 -) -(183,112:6630773,29629633:25952256,513147,126483 -g183,112:11218293,29629633 -h183,112:11218293,29629633:2490370,0,0 -h183,112:13708663,29629633:0,0,0 -g183,112:9121143,29629633 -(183,112:9121143,29629633:2097150,485622,11795 -k183,112:11218293,29629633:554432 -) -g183,112:14257197,29629633 -g183,112:17282994,29629633 -(183,112:17661089,29629633:501378,78643,0 -$183,112:17661089,29629633 -(183,112:17824943,29629633:173670,78643,0 -) -$183,112:18162467,29629633 -) -(183,112:18162467,29629633:501378,78643,0 -(183,112:18326321,29629633:173670,78643,0 -) -) -(183,112:18663845,29629633:501378,78643,0 -(183,112:18827699,29629633:173670,78643,0 -) -) -(183,112:19165223,29629633:501378,78643,0 -(183,112:19329077,29629633:173670,78643,0 -) -) -(183,112:19666601,29629633:501378,78643,0 -(183,112:19830455,29629633:173670,78643,0 -) -) -(183,112:20167979,29629633:501378,78643,0 -(183,112:20331833,29629633:173670,78643,0 -) -) -(183,112:20669357,29629633:501378,78643,0 -(183,112:20833211,29629633:173670,78643,0 -) -) -(183,112:21170735,29629633:501378,78643,0 -(183,112:21334589,29629633:173670,78643,0 -) -) -(183,112:21672113,29629633:501378,78643,0 -(183,112:21835967,29629633:173670,78643,0 -) -) -(183,112:22173491,29629633:501378,78643,0 -(183,112:22337345,29629633:173670,78643,0 -) -) -(183,112:22674869,29629633:501378,78643,0 -(183,112:22838723,29629633:173670,78643,0 -) -) -(183,112:23176247,29629633:501378,78643,0 -(183,112:23340101,29629633:173670,78643,0 -) -) -(183,112:23677625,29629633:501378,78643,0 -(183,112:23841479,29629633:173670,78643,0 -) -) -(183,112:24179003,29629633:501378,78643,0 -(183,112:24342857,29629633:173670,78643,0 -) -) -(183,112:24680381,29629633:501378,78643,0 -(183,112:24844235,29629633:173670,78643,0 -) -) -(183,112:25181759,29629633:501378,78643,0 -(183,112:25345613,29629633:173670,78643,0 -) -) -(183,112:25683137,29629633:501378,78643,0 -(183,112:25846991,29629633:173670,78643,0 -) -) -(183,112:26184515,29629633:501378,78643,0 -(183,112:26348369,29629633:173670,78643,0 -) -) -(183,112:26685893,29629633:501378,78643,0 -(183,112:26849747,29629633:173670,78643,0 -) -) -(183,112:27187271,29629633:501378,78643,0 -(183,112:27351125,29629633:173670,78643,0 -) -) -(183,112:27688649,29629633:501378,78643,0 -(183,112:27852503,29629633:173670,78643,0 -) -) -(183,112:28190027,29629633:501378,78643,0 -(183,112:28353881,29629633:173670,78643,0 -) -) -(183,112:28691405,29629633:501378,78643,0 -(183,112:28855259,29629633:173670,78643,0 -) -) -(183,112:29192783,29629633:501378,78643,0 -(183,112:29356637,29629633:173670,78643,0 -) -) -(183,112:29694161,29629633:501378,78643,0 -(183,112:29858015,29629633:173670,78643,0 -) -) -(183,112:30195539,29629633:501378,78643,0 -(183,112:30359393,29629633:173670,78643,0 -) -) -(183,112:30696917,29629633:501378,78643,0 -(183,112:30860771,29629633:173670,78643,0 -) -) -(183,112:31239539,29629633:1343490,485622,11795 -k183,112:31239539,29629633:0 -k183,112:31387652,29629633:148113 -) -g183,112:30911859,29629633 -g183,112:32583029,29629633 -) -(183,113:6630773,30471121:25952256,485622,126483 -g183,113:11218293,30471121 -h183,113:11218293,30471121:2490370,0,0 -h183,113:13708663,30471121:0,0,0 -g183,113:9121143,30471121 -(183,113:9121143,30471121:2097150,485622,11795 -k183,113:11218293,30471121:554432 -) -g183,113:14409896,30471121 -(183,113:14652821,30471121:501378,78643,0 -$183,113:14652821,30471121 -(183,113:14816675,30471121:173670,78643,0 -) -$183,113:15154199,30471121 -) -(183,113:15154199,30471121:501378,78643,0 -(183,113:15318053,30471121:173670,78643,0 -) -) -(183,113:15655577,30471121:501378,78643,0 -(183,113:15819431,30471121:173670,78643,0 -) -) -(183,113:16156955,30471121:501378,78643,0 -(183,113:16320809,30471121:173670,78643,0 -) -) -(183,113:16658333,30471121:501378,78643,0 -(183,113:16822187,30471121:173670,78643,0 -) -) -(183,113:17159711,30471121:501378,78643,0 -(183,113:17323565,30471121:173670,78643,0 -) -) -(183,113:17661089,30471121:501378,78643,0 -(183,113:17824943,30471121:173670,78643,0 -) -) -(183,113:18162467,30471121:501378,78643,0 -(183,113:18326321,30471121:173670,78643,0 -) -) -(183,113:18663845,30471121:501378,78643,0 -(183,113:18827699,30471121:173670,78643,0 -) -) -(183,113:19165223,30471121:501378,78643,0 -(183,113:19329077,30471121:173670,78643,0 -) -) -(183,113:19666601,30471121:501378,78643,0 -(183,113:19830455,30471121:173670,78643,0 -) -) -(183,113:20167979,30471121:501378,78643,0 -(183,113:20331833,30471121:173670,78643,0 -) -) -(183,113:20669357,30471121:501378,78643,0 -(183,113:20833211,30471121:173670,78643,0 -) -) -(183,113:21170735,30471121:501378,78643,0 -(183,113:21334589,30471121:173670,78643,0 -) -) -(183,113:21672113,30471121:501378,78643,0 -(183,113:21835967,30471121:173670,78643,0 -) -) -(183,113:22173491,30471121:501378,78643,0 -(183,113:22337345,30471121:173670,78643,0 -) -) -(183,113:22674869,30471121:501378,78643,0 -(183,113:22838723,30471121:173670,78643,0 -) -) -(183,113:23176247,30471121:501378,78643,0 -(183,113:23340101,30471121:173670,78643,0 -) -) -(183,113:23677625,30471121:501378,78643,0 -(183,113:23841479,30471121:173670,78643,0 -) -) -(183,113:24179003,30471121:501378,78643,0 -(183,113:24342857,30471121:173670,78643,0 -) -) -(183,113:24680381,30471121:501378,78643,0 -(183,113:24844235,30471121:173670,78643,0 -) -) -(183,113:25181759,30471121:501378,78643,0 -(183,113:25345613,30471121:173670,78643,0 -) -) -(183,113:25683137,30471121:501378,78643,0 -(183,113:25846991,30471121:173670,78643,0 -) -) -(183,113:26184515,30471121:501378,78643,0 -(183,113:26348369,30471121:173670,78643,0 -) -) -(183,113:26685893,30471121:501378,78643,0 -(183,113:26849747,30471121:173670,78643,0 -) -) -(183,113:27187271,30471121:501378,78643,0 -(183,113:27351125,30471121:173670,78643,0 -) -) -(183,113:27688649,30471121:501378,78643,0 -(183,113:27852503,30471121:173670,78643,0 -) -) -(183,113:28190027,30471121:501378,78643,0 -(183,113:28353881,30471121:173670,78643,0 -) -) -(183,113:28691405,30471121:501378,78643,0 -(183,113:28855259,30471121:173670,78643,0 -) -) -(183,113:29192783,30471121:501378,78643,0 -(183,113:29356637,30471121:173670,78643,0 -) -) -(183,113:29694161,30471121:501378,78643,0 -(183,113:29858015,30471121:173670,78643,0 -) -) -(183,113:30195539,30471121:501378,78643,0 -(183,113:30359393,30471121:173670,78643,0 -) -) -(183,113:30696917,30471121:501378,78643,0 -(183,113:30860771,30471121:173670,78643,0 -) -) -(183,113:31239540,30471121:1343490,485622,11795 -k183,113:31239540,30471121:0 -k183,113:31387653,30471121:148113 -) -g183,113:30911860,30471121 -g183,113:32583030,30471121 -) -(183,114:6630773,31312609:25952256,505283,134348 -g183,114:9121143,31312609 -h183,114:9121143,31312609:983040,0,0 -h183,114:10104183,31312609:0,0,0 -g183,114:7613813,31312609 -(183,114:7613813,31312609:1507330,481690,11795 -k183,114:9121143,31312609:536742 -) -g183,114:11898558,31312609 -g183,114:14504269,31312609 -g183,114:15894943,31312609 -g183,114:18878797,31312609 -g183,114:18878797,31312609 -(183,114:19165223,31312609:501378,78643,0 -$183,114:19165223,31312609 -(183,114:19329077,31312609:173670,78643,0 -) -$183,114:19666601,31312609 -) -(183,114:19666601,31312609:501378,78643,0 -(183,114:19830455,31312609:173670,78643,0 -) -) -(183,114:20167979,31312609:501378,78643,0 -(183,114:20331833,31312609:173670,78643,0 -) -) -(183,114:20669357,31312609:501378,78643,0 -(183,114:20833211,31312609:173670,78643,0 -) -) -(183,114:21170735,31312609:501378,78643,0 -(183,114:21334589,31312609:173670,78643,0 -) -) -(183,114:21672113,31312609:501378,78643,0 -(183,114:21835967,31312609:173670,78643,0 -) -) -(183,114:22173491,31312609:501378,78643,0 -(183,114:22337345,31312609:173670,78643,0 -) -) -(183,114:22674869,31312609:501378,78643,0 -(183,114:22838723,31312609:173670,78643,0 -) -) -(183,114:23176247,31312609:501378,78643,0 -(183,114:23340101,31312609:173670,78643,0 -) -) -(183,114:23677625,31312609:501378,78643,0 -(183,114:23841479,31312609:173670,78643,0 -) -) -(183,114:24179003,31312609:501378,78643,0 -(183,114:24342857,31312609:173670,78643,0 -) -) -(183,114:24680381,31312609:501378,78643,0 -(183,114:24844235,31312609:173670,78643,0 -) -) -(183,114:25181759,31312609:501378,78643,0 -(183,114:25345613,31312609:173670,78643,0 -) -) -(183,114:25683137,31312609:501378,78643,0 -(183,114:25846991,31312609:173670,78643,0 -) -) -(183,114:26184515,31312609:501378,78643,0 -(183,114:26348369,31312609:173670,78643,0 -) -) -(183,114:26685893,31312609:501378,78643,0 -(183,114:26849747,31312609:173670,78643,0 -) -) -(183,114:27187271,31312609:501378,78643,0 -(183,114:27351125,31312609:173670,78643,0 -) -) -(183,114:27688649,31312609:501378,78643,0 -(183,114:27852503,31312609:173670,78643,0 -) -) -(183,114:28190027,31312609:501378,78643,0 -(183,114:28353881,31312609:173670,78643,0 -) -) -(183,114:28691405,31312609:501378,78643,0 -(183,114:28855259,31312609:173670,78643,0 -) -) -(183,114:29192783,31312609:501378,78643,0 -(183,114:29356637,31312609:173670,78643,0 -) -) -(183,114:29694161,31312609:501378,78643,0 -(183,114:29858015,31312609:173670,78643,0 -) -) -(183,114:30195539,31312609:501378,78643,0 -(183,114:30359393,31312609:173670,78643,0 -) -) -(183,114:30696917,31312609:501378,78643,0 -(183,114:30860771,31312609:173670,78643,0 -) -) -(183,114:31239539,31312609:1343490,485622,11795 -k183,114:31239539,31312609:0 -k183,114:31387652,31312609:148113 -) -g183,114:30911859,31312609 -g183,114:32583029,31312609 -) -(183,115:6630773,32154097:25952256,513147,126483 -g183,115:9121143,32154097 -h183,115:9121143,32154097:983040,0,0 -h183,115:10104183,32154097:0,0,0 -g183,115:7613813,32154097 -(183,115:7613813,32154097:1507330,473825,11795 -k183,115:9121143,32154097:536742 -) -g183,115:11171764,32154097 -g183,115:12030285,32154097 -g183,115:14297830,32154097 -g183,115:14297830,32154097 -(183,115:14652821,32154097:501378,78643,0 -$183,115:14652821,32154097 -(183,115:14816675,32154097:173670,78643,0 -) -$183,115:15154199,32154097 -) -(183,115:15154199,32154097:501378,78643,0 -(183,115:15318053,32154097:173670,78643,0 -) -) -(183,115:15655577,32154097:501378,78643,0 -(183,115:15819431,32154097:173670,78643,0 -) -) -(183,115:16156955,32154097:501378,78643,0 -(183,115:16320809,32154097:173670,78643,0 -) -) -(183,115:16658333,32154097:501378,78643,0 -(183,115:16822187,32154097:173670,78643,0 -) -) -(183,115:17159711,32154097:501378,78643,0 -(183,115:17323565,32154097:173670,78643,0 -) -) -(183,115:17661089,32154097:501378,78643,0 -(183,115:17824943,32154097:173670,78643,0 -) -) -(183,115:18162467,32154097:501378,78643,0 -(183,115:18326321,32154097:173670,78643,0 -) -) -(183,115:18663845,32154097:501378,78643,0 -(183,115:18827699,32154097:173670,78643,0 -) -) -(183,115:19165223,32154097:501378,78643,0 -(183,115:19329077,32154097:173670,78643,0 -) -) -(183,115:19666601,32154097:501378,78643,0 -(183,115:19830455,32154097:173670,78643,0 -) -) -(183,115:20167979,32154097:501378,78643,0 -(183,115:20331833,32154097:173670,78643,0 -) -) -(183,115:20669357,32154097:501378,78643,0 -(183,115:20833211,32154097:173670,78643,0 -) -) -(183,115:21170735,32154097:501378,78643,0 -(183,115:21334589,32154097:173670,78643,0 -) -) -(183,115:21672113,32154097:501378,78643,0 -(183,115:21835967,32154097:173670,78643,0 -) -) -(183,115:22173491,32154097:501378,78643,0 -(183,115:22337345,32154097:173670,78643,0 -) -) -(183,115:22674869,32154097:501378,78643,0 -(183,115:22838723,32154097:173670,78643,0 -) -) -(183,115:23176247,32154097:501378,78643,0 -(183,115:23340101,32154097:173670,78643,0 -) -) -(183,115:23677625,32154097:501378,78643,0 -(183,115:23841479,32154097:173670,78643,0 -) -) -(183,115:24179003,32154097:501378,78643,0 -(183,115:24342857,32154097:173670,78643,0 -) -) -(183,115:24680381,32154097:501378,78643,0 -(183,115:24844235,32154097:173670,78643,0 -) -) -(183,115:25181759,32154097:501378,78643,0 -(183,115:25345613,32154097:173670,78643,0 -) -) -(183,115:25683137,32154097:501378,78643,0 -(183,115:25846991,32154097:173670,78643,0 -) -) -(183,115:26184515,32154097:501378,78643,0 -(183,115:26348369,32154097:173670,78643,0 -) -) -(183,115:26685893,32154097:501378,78643,0 -(183,115:26849747,32154097:173670,78643,0 -) -) -(183,115:27187271,32154097:501378,78643,0 -(183,115:27351125,32154097:173670,78643,0 -) -) -(183,115:27688649,32154097:501378,78643,0 -(183,115:27852503,32154097:173670,78643,0 -) -) -(183,115:28190027,32154097:501378,78643,0 -(183,115:28353881,32154097:173670,78643,0 -) -) -(183,115:28691405,32154097:501378,78643,0 -(183,115:28855259,32154097:173670,78643,0 -) -) -(183,115:29192783,32154097:501378,78643,0 -(183,115:29356637,32154097:173670,78643,0 -) -) -(183,115:29694161,32154097:501378,78643,0 -(183,115:29858015,32154097:173670,78643,0 -) -) -(183,115:30195539,32154097:501378,78643,0 -(183,115:30359393,32154097:173670,78643,0 -) -) -(183,115:30696917,32154097:501378,78643,0 -(183,115:30860771,32154097:173670,78643,0 -) -) -(183,115:31239538,32154097:1343490,485622,11795 -k183,115:31239538,32154097:0 -k183,115:31387651,32154097:148113 -) -g183,115:30911858,32154097 -g183,115:32583028,32154097 -) -(183,116:6630773,32995585:25952256,505283,134348 -g183,116:9121143,32995585 -h183,116:9121143,32995585:983040,0,0 -h183,116:10104183,32995585:0,0,0 -g183,116:7613813,32995585 -(183,116:7613813,32995585:1507330,485622,11795 -k183,116:9121143,32995585:536742 -) -g183,116:11690154,32995585 -g183,116:14291933,32995585 -g183,116:14291933,32995585 -(183,116:14652821,32995585:501378,78643,0 -$183,116:14652821,32995585 -(183,116:14816675,32995585:173670,78643,0 -) -$183,116:15154199,32995585 -) -(183,116:15154199,32995585:501378,78643,0 -(183,116:15318053,32995585:173670,78643,0 -) -) -(183,116:15655577,32995585:501378,78643,0 -(183,116:15819431,32995585:173670,78643,0 -) -) -(183,116:16156955,32995585:501378,78643,0 -(183,116:16320809,32995585:173670,78643,0 -) -) -(183,116:16658333,32995585:501378,78643,0 -(183,116:16822187,32995585:173670,78643,0 -) -) -(183,116:17159711,32995585:501378,78643,0 -(183,116:17323565,32995585:173670,78643,0 -) -) -(183,116:17661089,32995585:501378,78643,0 -(183,116:17824943,32995585:173670,78643,0 -) -) -(183,116:18162467,32995585:501378,78643,0 -(183,116:18326321,32995585:173670,78643,0 -) -) -(183,116:18663845,32995585:501378,78643,0 -(183,116:18827699,32995585:173670,78643,0 -) -) -(183,116:19165223,32995585:501378,78643,0 -(183,116:19329077,32995585:173670,78643,0 -) -) -(183,116:19666601,32995585:501378,78643,0 -(183,116:19830455,32995585:173670,78643,0 -) -) -(183,116:20167979,32995585:501378,78643,0 -(183,116:20331833,32995585:173670,78643,0 -) -) -(183,116:20669357,32995585:501378,78643,0 -(183,116:20833211,32995585:173670,78643,0 -) -) -(183,116:21170735,32995585:501378,78643,0 -(183,116:21334589,32995585:173670,78643,0 -) -) -(183,116:21672113,32995585:501378,78643,0 -(183,116:21835967,32995585:173670,78643,0 -) -) -(183,116:22173491,32995585:501378,78643,0 -(183,116:22337345,32995585:173670,78643,0 -) -) -(183,116:22674869,32995585:501378,78643,0 -(183,116:22838723,32995585:173670,78643,0 -) -) -(183,116:23176247,32995585:501378,78643,0 -(183,116:23340101,32995585:173670,78643,0 -) -) -(183,116:23677625,32995585:501378,78643,0 -(183,116:23841479,32995585:173670,78643,0 -) -) -(183,116:24179003,32995585:501378,78643,0 -(183,116:24342857,32995585:173670,78643,0 -) -) -(183,116:24680381,32995585:501378,78643,0 -(183,116:24844235,32995585:173670,78643,0 -) -) -(183,116:25181759,32995585:501378,78643,0 -(183,116:25345613,32995585:173670,78643,0 -) -) -(183,116:25683137,32995585:501378,78643,0 -(183,116:25846991,32995585:173670,78643,0 -) -) -(183,116:26184515,32995585:501378,78643,0 -(183,116:26348369,32995585:173670,78643,0 -) -) -(183,116:26685893,32995585:501378,78643,0 -(183,116:26849747,32995585:173670,78643,0 -) -) -(183,116:27187271,32995585:501378,78643,0 -(183,116:27351125,32995585:173670,78643,0 -) -) -(183,116:27688649,32995585:501378,78643,0 -(183,116:27852503,32995585:173670,78643,0 -) -) -(183,116:28190027,32995585:501378,78643,0 -(183,116:28353881,32995585:173670,78643,0 -) -) -(183,116:28691405,32995585:501378,78643,0 -(183,116:28855259,32995585:173670,78643,0 -) -) -(183,116:29192783,32995585:501378,78643,0 -(183,116:29356637,32995585:173670,78643,0 -) -) -(183,116:29694161,32995585:501378,78643,0 -(183,116:29858015,32995585:173670,78643,0 -) -) -(183,116:30195539,32995585:501378,78643,0 -(183,116:30359393,32995585:173670,78643,0 -) -) -(183,116:30696917,32995585:501378,78643,0 -(183,116:30860771,32995585:173670,78643,0 -) -) -(183,116:31239539,32995585:1343490,485622,11795 -k183,116:31239539,32995585:0 -k183,116:31387652,32995585:148113 -) -g183,116:30911859,32995585 -g183,116:32583029,32995585 -) -(183,117:6630773,34492433:25952256,513147,134348 -g183,117:7613813,34492433 -h183,117:7613813,34492433:0,0,0 -g183,117:6630773,34492433 -(183,117:6630773,34492433:983040,485622,11795 -k183,117:7613813,34492433:574751 -) -g183,117:9279738,34492433 -g183,117:12821959,34492433 -g183,117:13703418,34492433 -k183,117:23176974,34492433:8062566 -k183,117:31239539,34492433:8062565 -(183,117:31239539,34492433:1343490,485622,11795 -k183,117:31358161,34492433:118622 -) -g183,117:31239539,34492433 -g183,117:32583029,34492433 -) -(183,118:6630773,35333921:25952256,513147,126483 -g183,118:9121143,35333921 -h183,118:9121143,35333921:983040,0,0 -h183,118:10104183,35333921:0,0,0 -g183,118:7613813,35333921 -(183,118:7613813,35333921:1507330,485622,11795 -k183,118:9121143,35333921:536742 -) -g183,118:10959427,35333921 -g183,118:11817948,35333921 -g183,118:13220418,35333921 -g183,118:15837270,35333921 -g183,118:15837270,35333921 -(183,118:16156955,35333921:501378,78643,0 -$183,118:16156955,35333921 -(183,118:16320809,35333921:173670,78643,0 -) -$183,118:16658333,35333921 -) -(183,118:16658333,35333921:501378,78643,0 -(183,118:16822187,35333921:173670,78643,0 -) -) -(183,118:17159711,35333921:501378,78643,0 -(183,118:17323565,35333921:173670,78643,0 -) -) -(183,118:17661089,35333921:501378,78643,0 -(183,118:17824943,35333921:173670,78643,0 -) -) -(183,118:18162467,35333921:501378,78643,0 -(183,118:18326321,35333921:173670,78643,0 -) -) -(183,118:18663845,35333921:501378,78643,0 -(183,118:18827699,35333921:173670,78643,0 -) -) -(183,118:19165223,35333921:501378,78643,0 -(183,118:19329077,35333921:173670,78643,0 -) -) -(183,118:19666601,35333921:501378,78643,0 -(183,118:19830455,35333921:173670,78643,0 -) -) -(183,118:20167979,35333921:501378,78643,0 -(183,118:20331833,35333921:173670,78643,0 -) -) -(183,118:20669357,35333921:501378,78643,0 -(183,118:20833211,35333921:173670,78643,0 -) -) -(183,118:21170735,35333921:501378,78643,0 -(183,118:21334589,35333921:173670,78643,0 -) -) -(183,118:21672113,35333921:501378,78643,0 -(183,118:21835967,35333921:173670,78643,0 -) -) -(183,118:22173491,35333921:501378,78643,0 -(183,118:22337345,35333921:173670,78643,0 -) -) -(183,118:22674869,35333921:501378,78643,0 -(183,118:22838723,35333921:173670,78643,0 -) -) -(183,118:23176247,35333921:501378,78643,0 -(183,118:23340101,35333921:173670,78643,0 -) -) -(183,118:23677625,35333921:501378,78643,0 -(183,118:23841479,35333921:173670,78643,0 -) -) -(183,118:24179003,35333921:501378,78643,0 -(183,118:24342857,35333921:173670,78643,0 -) -) -(183,118:24680381,35333921:501378,78643,0 -(183,118:24844235,35333921:173670,78643,0 -) -) -(183,118:25181759,35333921:501378,78643,0 -(183,118:25345613,35333921:173670,78643,0 -) -) -(183,118:25683137,35333921:501378,78643,0 -(183,118:25846991,35333921:173670,78643,0 -) -) -(183,118:26184515,35333921:501378,78643,0 -(183,118:26348369,35333921:173670,78643,0 -) -) -(183,118:26685893,35333921:501378,78643,0 -(183,118:26849747,35333921:173670,78643,0 -) -) -(183,118:27187271,35333921:501378,78643,0 -(183,118:27351125,35333921:173670,78643,0 -) -) -(183,118:27688649,35333921:501378,78643,0 -(183,118:27852503,35333921:173670,78643,0 -) -) -(183,118:28190027,35333921:501378,78643,0 -(183,118:28353881,35333921:173670,78643,0 -) -) -(183,118:28691405,35333921:501378,78643,0 -(183,118:28855259,35333921:173670,78643,0 -) -) -(183,118:29192783,35333921:501378,78643,0 -(183,118:29356637,35333921:173670,78643,0 -) -) -(183,118:29694161,35333921:501378,78643,0 -(183,118:29858015,35333921:173670,78643,0 -) -) -(183,118:30195539,35333921:501378,78643,0 -(183,118:30359393,35333921:173670,78643,0 -) -) -(183,118:30696917,35333921:501378,78643,0 -(183,118:30860771,35333921:173670,78643,0 -) -) -(183,118:31239539,35333921:1343490,485622,11795 -k183,118:31239539,35333921:0 -k183,118:31387652,35333921:148113 -) -g183,118:30911859,35333921 -g183,118:32583029,35333921 -) -(183,119:6630773,36175409:25952256,505283,11795 -g183,119:9121143,36175409 -h183,119:9121143,36175409:983040,0,0 -h183,119:10104183,36175409:0,0,0 -g183,119:7613813,36175409 -(183,119:7613813,36175409:1507330,485622,11795 -k183,119:9121143,36175409:536742 -) -g183,119:13324622,36175409 -g183,119:13324622,36175409 -(183,119:13650065,36175409:501378,78643,0 -$183,119:13650065,36175409 -(183,119:13813919,36175409:173670,78643,0 -) -$183,119:14151443,36175409 -) -(183,119:14151443,36175409:501378,78643,0 -(183,119:14315297,36175409:173670,78643,0 -) -) -(183,119:14652821,36175409:501378,78643,0 -(183,119:14816675,36175409:173670,78643,0 -) -) -(183,119:15154199,36175409:501378,78643,0 -(183,119:15318053,36175409:173670,78643,0 -) -) -(183,119:15655577,36175409:501378,78643,0 -(183,119:15819431,36175409:173670,78643,0 -) -) -(183,119:16156955,36175409:501378,78643,0 -(183,119:16320809,36175409:173670,78643,0 -) -) -(183,119:16658333,36175409:501378,78643,0 -(183,119:16822187,36175409:173670,78643,0 -) -) -(183,119:17159711,36175409:501378,78643,0 -(183,119:17323565,36175409:173670,78643,0 -) -) -(183,119:17661089,36175409:501378,78643,0 -(183,119:17824943,36175409:173670,78643,0 -) -) -(183,119:18162467,36175409:501378,78643,0 -(183,119:18326321,36175409:173670,78643,0 -) -) -(183,119:18663845,36175409:501378,78643,0 -(183,119:18827699,36175409:173670,78643,0 -) -) -(183,119:19165223,36175409:501378,78643,0 -(183,119:19329077,36175409:173670,78643,0 -) -) -(183,119:19666601,36175409:501378,78643,0 -(183,119:19830455,36175409:173670,78643,0 -) -) -(183,119:20167979,36175409:501378,78643,0 -(183,119:20331833,36175409:173670,78643,0 -) -) -(183,119:20669357,36175409:501378,78643,0 -(183,119:20833211,36175409:173670,78643,0 -) -) -(183,119:21170735,36175409:501378,78643,0 -(183,119:21334589,36175409:173670,78643,0 -) -) -(183,119:21672113,36175409:501378,78643,0 -(183,119:21835967,36175409:173670,78643,0 -) -) -(183,119:22173491,36175409:501378,78643,0 -(183,119:22337345,36175409:173670,78643,0 -) -) -(183,119:22674869,36175409:501378,78643,0 -(183,119:22838723,36175409:173670,78643,0 -) -) -(183,119:23176247,36175409:501378,78643,0 -(183,119:23340101,36175409:173670,78643,0 -) -) -(183,119:23677625,36175409:501378,78643,0 -(183,119:23841479,36175409:173670,78643,0 -) -) -(183,119:24179003,36175409:501378,78643,0 -(183,119:24342857,36175409:173670,78643,0 -) -) -(183,119:24680381,36175409:501378,78643,0 -(183,119:24844235,36175409:173670,78643,0 -) -) -(183,119:25181759,36175409:501378,78643,0 -(183,119:25345613,36175409:173670,78643,0 -) -) -(183,119:25683137,36175409:501378,78643,0 -(183,119:25846991,36175409:173670,78643,0 -) -) -(183,119:26184515,36175409:501378,78643,0 -(183,119:26348369,36175409:173670,78643,0 -) -) -(183,119:26685893,36175409:501378,78643,0 -(183,119:26849747,36175409:173670,78643,0 -) -) -(183,119:27187271,36175409:501378,78643,0 -(183,119:27351125,36175409:173670,78643,0 -) -) -(183,119:27688649,36175409:501378,78643,0 -(183,119:27852503,36175409:173670,78643,0 -) -) -(183,119:28190027,36175409:501378,78643,0 -(183,119:28353881,36175409:173670,78643,0 -) -) -(183,119:28691405,36175409:501378,78643,0 -(183,119:28855259,36175409:173670,78643,0 -) -) -(183,119:29192783,36175409:501378,78643,0 -(183,119:29356637,36175409:173670,78643,0 -) -) -(183,119:29694161,36175409:501378,78643,0 -(183,119:29858015,36175409:173670,78643,0 -) -) -(183,119:30195539,36175409:501378,78643,0 -(183,119:30359393,36175409:173670,78643,0 -) -) -(183,119:30696917,36175409:501378,78643,0 -(183,119:30860771,36175409:173670,78643,0 -) -) -(183,119:31239538,36175409:1343490,485622,11795 -k183,119:31239538,36175409:0 -k183,119:31387651,36175409:148113 -) -g183,119:30911858,36175409 -g183,119:32583028,36175409 -) -(183,120:6630773,37016897:25952256,505283,134348 -g183,120:9121143,37016897 -h183,120:9121143,37016897:983040,0,0 -h183,120:10104183,37016897:0,0,0 -g183,120:7613813,37016897 -(183,120:7613813,37016897:1507330,485622,11795 -k183,120:9121143,37016897:536742 -) -g183,120:12185606,37016897 -g183,120:13898061,37016897 -g183,120:14713328,37016897 -g183,120:16115798,37016897 -g183,120:18732650,37016897 -g183,120:18732650,37016897 -(183,120:19165223,37016897:501378,78643,0 -$183,120:19165223,37016897 -(183,120:19329077,37016897:173670,78643,0 -) -$183,120:19666601,37016897 -) -(183,120:19666601,37016897:501378,78643,0 -(183,120:19830455,37016897:173670,78643,0 -) -) -(183,120:20167979,37016897:501378,78643,0 -(183,120:20331833,37016897:173670,78643,0 -) -) -(183,120:20669357,37016897:501378,78643,0 -(183,120:20833211,37016897:173670,78643,0 -) -) -(183,120:21170735,37016897:501378,78643,0 -(183,120:21334589,37016897:173670,78643,0 -) -) -(183,120:21672113,37016897:501378,78643,0 -(183,120:21835967,37016897:173670,78643,0 -) -) -(183,120:22173491,37016897:501378,78643,0 -(183,120:22337345,37016897:173670,78643,0 -) -) -(183,120:22674869,37016897:501378,78643,0 -(183,120:22838723,37016897:173670,78643,0 -) -) -(183,120:23176247,37016897:501378,78643,0 -(183,120:23340101,37016897:173670,78643,0 -) -) -(183,120:23677625,37016897:501378,78643,0 -(183,120:23841479,37016897:173670,78643,0 -) -) -(183,120:24179003,37016897:501378,78643,0 -(183,120:24342857,37016897:173670,78643,0 -) -) -(183,120:24680381,37016897:501378,78643,0 -(183,120:24844235,37016897:173670,78643,0 -) -) -(183,120:25181759,37016897:501378,78643,0 -(183,120:25345613,37016897:173670,78643,0 -) -) -(183,120:25683137,37016897:501378,78643,0 -(183,120:25846991,37016897:173670,78643,0 -) -) -(183,120:26184515,37016897:501378,78643,0 -(183,120:26348369,37016897:173670,78643,0 -) -) -(183,120:26685893,37016897:501378,78643,0 -(183,120:26849747,37016897:173670,78643,0 -) -) -(183,120:27187271,37016897:501378,78643,0 -(183,120:27351125,37016897:173670,78643,0 -) -) -(183,120:27688649,37016897:501378,78643,0 -(183,120:27852503,37016897:173670,78643,0 -) -) -(183,120:28190027,37016897:501378,78643,0 -(183,120:28353881,37016897:173670,78643,0 -) -) -(183,120:28691405,37016897:501378,78643,0 -(183,120:28855259,37016897:173670,78643,0 -) -) -(183,120:29192783,37016897:501378,78643,0 -(183,120:29356637,37016897:173670,78643,0 -) -) -(183,120:29694161,37016897:501378,78643,0 -(183,120:29858015,37016897:173670,78643,0 -) -) -(183,120:30195539,37016897:501378,78643,0 -(183,120:30359393,37016897:173670,78643,0 -) -) -(183,120:30696917,37016897:501378,78643,0 -(183,120:30860771,37016897:173670,78643,0 -) -) -(183,120:31239539,37016897:1343490,485622,11795 -k183,120:31239539,37016897:0 -k183,120:31387652,37016897:148113 -) -g183,120:30911859,37016897 -g183,120:32583029,37016897 -) -(183,121:6630773,37858385:25952256,513147,126483 -g183,121:9121143,37858385 -h183,121:9121143,37858385:983040,0,0 -h183,121:10104183,37858385:0,0,0 -g183,121:7613813,37858385 -(183,121:7613813,37858385:1507330,485622,11795 -k183,121:9121143,37858385:536742 -) -g183,121:13744708,37858385 -g183,121:14891588,37858385 -g183,121:19042638,37858385 -g183,121:19042638,37858385 -(183,121:19165223,37858385:501378,78643,0 -$183,121:19165223,37858385 -(183,121:19329077,37858385:173670,78643,0 -) -$183,121:19666601,37858385 -) -(183,121:19666601,37858385:501378,78643,0 -(183,121:19830455,37858385:173670,78643,0 -) -) -(183,121:20167979,37858385:501378,78643,0 -(183,121:20331833,37858385:173670,78643,0 -) -) -(183,121:20669357,37858385:501378,78643,0 -(183,121:20833211,37858385:173670,78643,0 -) -) -(183,121:21170735,37858385:501378,78643,0 -(183,121:21334589,37858385:173670,78643,0 -) -) -(183,121:21672113,37858385:501378,78643,0 -(183,121:21835967,37858385:173670,78643,0 -) -) -(183,121:22173491,37858385:501378,78643,0 -(183,121:22337345,37858385:173670,78643,0 -) -) -(183,121:22674869,37858385:501378,78643,0 -(183,121:22838723,37858385:173670,78643,0 -) -) -(183,121:23176247,37858385:501378,78643,0 -(183,121:23340101,37858385:173670,78643,0 -) -) -(183,121:23677625,37858385:501378,78643,0 -(183,121:23841479,37858385:173670,78643,0 -) -) -(183,121:24179003,37858385:501378,78643,0 -(183,121:24342857,37858385:173670,78643,0 -) -) -(183,121:24680381,37858385:501378,78643,0 -(183,121:24844235,37858385:173670,78643,0 -) -) -(183,121:25181759,37858385:501378,78643,0 -(183,121:25345613,37858385:173670,78643,0 -) -) -(183,121:25683137,37858385:501378,78643,0 -(183,121:25846991,37858385:173670,78643,0 -) -) -(183,121:26184515,37858385:501378,78643,0 -(183,121:26348369,37858385:173670,78643,0 -) -) -(183,121:26685893,37858385:501378,78643,0 -(183,121:26849747,37858385:173670,78643,0 -) -) -(183,121:27187271,37858385:501378,78643,0 -(183,121:27351125,37858385:173670,78643,0 -) -) -(183,121:27688649,37858385:501378,78643,0 -(183,121:27852503,37858385:173670,78643,0 -) -) -(183,121:28190027,37858385:501378,78643,0 -(183,121:28353881,37858385:173670,78643,0 -) -) -(183,121:28691405,37858385:501378,78643,0 -(183,121:28855259,37858385:173670,78643,0 -) -) -(183,121:29192783,37858385:501378,78643,0 -(183,121:29356637,37858385:173670,78643,0 -) -) -(183,121:29694161,37858385:501378,78643,0 -(183,121:29858015,37858385:173670,78643,0 -) -) -(183,121:30195539,37858385:501378,78643,0 -(183,121:30359393,37858385:173670,78643,0 -) -) -(183,121:30696917,37858385:501378,78643,0 -(183,121:30860771,37858385:173670,78643,0 -) -) -(183,121:31239539,37858385:1343490,485622,11795 -k183,121:31239539,37858385:0 -k183,121:31387652,37858385:148113 -) -g183,121:30911859,37858385 -g183,121:32583029,37858385 -) -(183,122:6630773,38699873:25952256,505283,11795 -g183,122:11218293,38699873 -h183,122:11218293,38699873:2490370,0,0 -h183,122:13708663,38699873:0,0,0 -g183,122:9121143,38699873 -(183,122:9121143,38699873:2097150,485622,11795 -k183,122:11218293,38699873:554432 -) -g183,122:14927629,38699873 -g183,122:14927629,38699873 -(183,122:15154199,38699873:501378,78643,0 -$183,122:15154199,38699873 -(183,122:15318053,38699873:173670,78643,0 -) -$183,122:15655577,38699873 -) -(183,122:15655577,38699873:501378,78643,0 -(183,122:15819431,38699873:173670,78643,0 -) -) -(183,122:16156955,38699873:501378,78643,0 -(183,122:16320809,38699873:173670,78643,0 -) -) -(183,122:16658333,38699873:501378,78643,0 -(183,122:16822187,38699873:173670,78643,0 -) -) -(183,122:17159711,38699873:501378,78643,0 -(183,122:17323565,38699873:173670,78643,0 -) -) -(183,122:17661089,38699873:501378,78643,0 -(183,122:17824943,38699873:173670,78643,0 -) -) -(183,122:18162467,38699873:501378,78643,0 -(183,122:18326321,38699873:173670,78643,0 -) -) -(183,122:18663845,38699873:501378,78643,0 -(183,122:18827699,38699873:173670,78643,0 -) -) -(183,122:19165223,38699873:501378,78643,0 -(183,122:19329077,38699873:173670,78643,0 -) -) -(183,122:19666601,38699873:501378,78643,0 -(183,122:19830455,38699873:173670,78643,0 -) -) -(183,122:20167979,38699873:501378,78643,0 -(183,122:20331833,38699873:173670,78643,0 -) -) -(183,122:20669357,38699873:501378,78643,0 -(183,122:20833211,38699873:173670,78643,0 -) -) -(183,122:21170735,38699873:501378,78643,0 -(183,122:21334589,38699873:173670,78643,0 -) -) -(183,122:21672113,38699873:501378,78643,0 -(183,122:21835967,38699873:173670,78643,0 -) -) -(183,122:22173491,38699873:501378,78643,0 -(183,122:22337345,38699873:173670,78643,0 -) -) -(183,122:22674869,38699873:501378,78643,0 -(183,122:22838723,38699873:173670,78643,0 -) -) -(183,122:23176247,38699873:501378,78643,0 -(183,122:23340101,38699873:173670,78643,0 -) -) -(183,122:23677625,38699873:501378,78643,0 -(183,122:23841479,38699873:173670,78643,0 -) -) -(183,122:24179003,38699873:501378,78643,0 -(183,122:24342857,38699873:173670,78643,0 -) -) -(183,122:24680381,38699873:501378,78643,0 -(183,122:24844235,38699873:173670,78643,0 -) -) -(183,122:25181759,38699873:501378,78643,0 -(183,122:25345613,38699873:173670,78643,0 -) -) -(183,122:25683137,38699873:501378,78643,0 -(183,122:25846991,38699873:173670,78643,0 -) -) -(183,122:26184515,38699873:501378,78643,0 -(183,122:26348369,38699873:173670,78643,0 -) -) -(183,122:26685893,38699873:501378,78643,0 -(183,122:26849747,38699873:173670,78643,0 -) -) -(183,122:27187271,38699873:501378,78643,0 -(183,122:27351125,38699873:173670,78643,0 -) -) -(183,122:27688649,38699873:501378,78643,0 -(183,122:27852503,38699873:173670,78643,0 -) -) -(183,122:28190027,38699873:501378,78643,0 -(183,122:28353881,38699873:173670,78643,0 -) -) -(183,122:28691405,38699873:501378,78643,0 -(183,122:28855259,38699873:173670,78643,0 -) -) -(183,122:29192783,38699873:501378,78643,0 -(183,122:29356637,38699873:173670,78643,0 -) -) -(183,122:29694161,38699873:501378,78643,0 -(183,122:29858015,38699873:173670,78643,0 -) -) -(183,122:30195539,38699873:501378,78643,0 -(183,122:30359393,38699873:173670,78643,0 -) -) -(183,122:30696917,38699873:501378,78643,0 -(183,122:30860771,38699873:173670,78643,0 -) -) -(183,122:31239539,38699873:1343490,485622,11795 -k183,122:31239539,38699873:0 -k183,122:31387652,38699873:148113 -) -g183,122:30911859,38699873 -g183,122:32583029,38699873 -) -(183,123:6630773,39541361:25952256,505283,11795 -g183,123:11218293,39541361 -h183,123:11218293,39541361:2490370,0,0 -h183,123:13708663,39541361:0,0,0 -g183,123:9121143,39541361 -(183,123:9121143,39541361:2097150,485622,11795 -k183,123:11218293,39541361:554432 -) -g183,123:13579554,39541361 -g183,123:13579554,39541361 -(183,123:13650065,39541361:501378,78643,0 -$183,123:13650065,39541361 -(183,123:13813919,39541361:173670,78643,0 -) -$183,123:14151443,39541361 -) -(183,123:14151443,39541361:501378,78643,0 -(183,123:14315297,39541361:173670,78643,0 -) -) -(183,123:14652821,39541361:501378,78643,0 -(183,123:14816675,39541361:173670,78643,0 -) -) -(183,123:15154199,39541361:501378,78643,0 -(183,123:15318053,39541361:173670,78643,0 -) -) -(183,123:15655577,39541361:501378,78643,0 -(183,123:15819431,39541361:173670,78643,0 -) -) -(183,123:16156955,39541361:501378,78643,0 -(183,123:16320809,39541361:173670,78643,0 -) -) -(183,123:16658333,39541361:501378,78643,0 -(183,123:16822187,39541361:173670,78643,0 -) -) -(183,123:17159711,39541361:501378,78643,0 -(183,123:17323565,39541361:173670,78643,0 -) -) -(183,123:17661089,39541361:501378,78643,0 -(183,123:17824943,39541361:173670,78643,0 -) -) -(183,123:18162467,39541361:501378,78643,0 -(183,123:18326321,39541361:173670,78643,0 -) -) -(183,123:18663845,39541361:501378,78643,0 -(183,123:18827699,39541361:173670,78643,0 -) -) -(183,123:19165223,39541361:501378,78643,0 -(183,123:19329077,39541361:173670,78643,0 -) -) -(183,123:19666601,39541361:501378,78643,0 -(183,123:19830455,39541361:173670,78643,0 -) -) -(183,123:20167979,39541361:501378,78643,0 -(183,123:20331833,39541361:173670,78643,0 -) -) -(183,123:20669357,39541361:501378,78643,0 -(183,123:20833211,39541361:173670,78643,0 -) -) -(183,123:21170735,39541361:501378,78643,0 -(183,123:21334589,39541361:173670,78643,0 -) -) -(183,123:21672113,39541361:501378,78643,0 -(183,123:21835967,39541361:173670,78643,0 -) -) -(183,123:22173491,39541361:501378,78643,0 -(183,123:22337345,39541361:173670,78643,0 -) -) -(183,123:22674869,39541361:501378,78643,0 -(183,123:22838723,39541361:173670,78643,0 -) -) -(183,123:23176247,39541361:501378,78643,0 -(183,123:23340101,39541361:173670,78643,0 -) -) -(183,123:23677625,39541361:501378,78643,0 -(183,123:23841479,39541361:173670,78643,0 -) -) -(183,123:24179003,39541361:501378,78643,0 -(183,123:24342857,39541361:173670,78643,0 -) -) -(183,123:24680381,39541361:501378,78643,0 -(183,123:24844235,39541361:173670,78643,0 -) -) -(183,123:25181759,39541361:501378,78643,0 -(183,123:25345613,39541361:173670,78643,0 -) -) -(183,123:25683137,39541361:501378,78643,0 -(183,123:25846991,39541361:173670,78643,0 -) -) -(183,123:26184515,39541361:501378,78643,0 -(183,123:26348369,39541361:173670,78643,0 -) -) -(183,123:26685893,39541361:501378,78643,0 -(183,123:26849747,39541361:173670,78643,0 -) -) -(183,123:27187271,39541361:501378,78643,0 -(183,123:27351125,39541361:173670,78643,0 -) -) -(183,123:27688649,39541361:501378,78643,0 -(183,123:27852503,39541361:173670,78643,0 -) -) -(183,123:28190027,39541361:501378,78643,0 -(183,123:28353881,39541361:173670,78643,0 -) -) -(183,123:28691405,39541361:501378,78643,0 -(183,123:28855259,39541361:173670,78643,0 -) -) -(183,123:29192783,39541361:501378,78643,0 -(183,123:29356637,39541361:173670,78643,0 -) -) -(183,123:29694161,39541361:501378,78643,0 -(183,123:29858015,39541361:173670,78643,0 -) -) -(183,123:30195539,39541361:501378,78643,0 -(183,123:30359393,39541361:173670,78643,0 -) -) -(183,123:30696917,39541361:501378,78643,0 -(183,123:30860771,39541361:173670,78643,0 -) -) -(183,123:31239538,39541361:1343490,485622,11795 -k183,123:31239538,39541361:0 -k183,123:31387651,39541361:148113 -) -g183,123:30911858,39541361 -g183,123:32583028,39541361 -) -(183,124:6630773,40382849:25952256,485622,126483 -g183,124:9121143,40382849 -h183,124:9121143,40382849:983040,0,0 -h183,124:10104183,40382849:0,0,0 -g183,124:7613813,40382849 -(183,124:7613813,40382849:1507330,485622,11795 -k183,124:9121143,40382849:536742 -) -g183,124:10792311,40382849 -g183,124:12711860,40382849 -g183,124:12711860,40382849 -(183,124:13148687,40382849:501378,78643,0 -$183,124:13148687,40382849 -(183,124:13312541,40382849:173670,78643,0 -) -$183,124:13650065,40382849 -) -(183,124:13650065,40382849:501378,78643,0 -(183,124:13813919,40382849:173670,78643,0 -) -) -(183,124:14151443,40382849:501378,78643,0 -(183,124:14315297,40382849:173670,78643,0 -) -) -(183,124:14652821,40382849:501378,78643,0 -(183,124:14816675,40382849:173670,78643,0 -) -) -(183,124:15154199,40382849:501378,78643,0 -(183,124:15318053,40382849:173670,78643,0 -) -) -(183,124:15655577,40382849:501378,78643,0 -(183,124:15819431,40382849:173670,78643,0 -) -) -(183,124:16156955,40382849:501378,78643,0 -(183,124:16320809,40382849:173670,78643,0 -) -) -(183,124:16658333,40382849:501378,78643,0 -(183,124:16822187,40382849:173670,78643,0 -) -) -(183,124:17159711,40382849:501378,78643,0 -(183,124:17323565,40382849:173670,78643,0 -) -) -(183,124:17661089,40382849:501378,78643,0 -(183,124:17824943,40382849:173670,78643,0 -) -) -(183,124:18162467,40382849:501378,78643,0 -(183,124:18326321,40382849:173670,78643,0 -) -) -(183,124:18663845,40382849:501378,78643,0 -(183,124:18827699,40382849:173670,78643,0 -) -) -(183,124:19165223,40382849:501378,78643,0 -(183,124:19329077,40382849:173670,78643,0 -) -) -(183,124:19666601,40382849:501378,78643,0 -(183,124:19830455,40382849:173670,78643,0 -) -) -(183,124:20167979,40382849:501378,78643,0 -(183,124:20331833,40382849:173670,78643,0 -) -) -(183,124:20669357,40382849:501378,78643,0 -(183,124:20833211,40382849:173670,78643,0 -) -) -(183,124:21170735,40382849:501378,78643,0 -(183,124:21334589,40382849:173670,78643,0 -) -) -(183,124:21672113,40382849:501378,78643,0 -(183,124:21835967,40382849:173670,78643,0 -) -) -(183,124:22173491,40382849:501378,78643,0 -(183,124:22337345,40382849:173670,78643,0 -) -) -(183,124:22674869,40382849:501378,78643,0 -(183,124:22838723,40382849:173670,78643,0 -) -) -(183,124:23176247,40382849:501378,78643,0 -(183,124:23340101,40382849:173670,78643,0 -) -) -(183,124:23677625,40382849:501378,78643,0 -(183,124:23841479,40382849:173670,78643,0 -) -) -(183,124:24179003,40382849:501378,78643,0 -(183,124:24342857,40382849:173670,78643,0 -) -) -(183,124:24680381,40382849:501378,78643,0 -(183,124:24844235,40382849:173670,78643,0 -) -) -(183,124:25181759,40382849:501378,78643,0 -(183,124:25345613,40382849:173670,78643,0 -) -) -(183,124:25683137,40382849:501378,78643,0 -(183,124:25846991,40382849:173670,78643,0 -) -) -(183,124:26184515,40382849:501378,78643,0 -(183,124:26348369,40382849:173670,78643,0 -) -) -(183,124:26685893,40382849:501378,78643,0 -(183,124:26849747,40382849:173670,78643,0 -) -) -(183,124:27187271,40382849:501378,78643,0 -(183,124:27351125,40382849:173670,78643,0 -) -) -(183,124:27688649,40382849:501378,78643,0 -(183,124:27852503,40382849:173670,78643,0 -) -) -(183,124:28190027,40382849:501378,78643,0 -(183,124:28353881,40382849:173670,78643,0 -) -) -(183,124:28691405,40382849:501378,78643,0 -(183,124:28855259,40382849:173670,78643,0 -) -) -(183,124:29192783,40382849:501378,78643,0 -(183,124:29356637,40382849:173670,78643,0 -) -) -(183,124:29694161,40382849:501378,78643,0 -(183,124:29858015,40382849:173670,78643,0 -) -) -(183,124:30195539,40382849:501378,78643,0 -(183,124:30359393,40382849:173670,78643,0 -) -) -(183,124:30696917,40382849:501378,78643,0 -(183,124:30860771,40382849:173670,78643,0 -) -) -(183,124:31239540,40382849:1343490,485622,11795 -k183,124:31239540,40382849:0 -k183,124:31387653,40382849:148113 -) -g183,124:30911860,40382849 -g183,124:32583030,40382849 -) -(183,125:6630773,41224337:25952256,485622,11795 -g183,125:11218293,41224337 -h183,125:11218293,41224337:2490370,0,0 -h183,125:13708663,41224337:0,0,0 -g183,125:9121143,41224337 -(183,125:9121143,41224337:2097150,485622,11795 -k183,125:11218293,41224337:554432 -) -g183,125:12850139,41224337 -g183,125:13295128,41224337 -(183,125:13650065,41224337:501378,78643,0 -$183,125:13650065,41224337 -(183,125:13813919,41224337:173670,78643,0 -) -$183,125:14151443,41224337 -) -(183,125:14151443,41224337:501378,78643,0 -(183,125:14315297,41224337:173670,78643,0 -) -) -(183,125:14652821,41224337:501378,78643,0 -(183,125:14816675,41224337:173670,78643,0 -) -) -(183,125:15154199,41224337:501378,78643,0 -(183,125:15318053,41224337:173670,78643,0 -) -) -(183,125:15655577,41224337:501378,78643,0 -(183,125:15819431,41224337:173670,78643,0 -) -) -(183,125:16156955,41224337:501378,78643,0 -(183,125:16320809,41224337:173670,78643,0 -) -) -(183,125:16658333,41224337:501378,78643,0 -(183,125:16822187,41224337:173670,78643,0 -) -) -(183,125:17159711,41224337:501378,78643,0 -(183,125:17323565,41224337:173670,78643,0 -) -) -(183,125:17661089,41224337:501378,78643,0 -(183,125:17824943,41224337:173670,78643,0 -) -) -(183,125:18162467,41224337:501378,78643,0 -(183,125:18326321,41224337:173670,78643,0 -) -) -(183,125:18663845,41224337:501378,78643,0 -(183,125:18827699,41224337:173670,78643,0 -) -) -(183,125:19165223,41224337:501378,78643,0 -(183,125:19329077,41224337:173670,78643,0 -) -) -(183,125:19666601,41224337:501378,78643,0 -(183,125:19830455,41224337:173670,78643,0 -) -) -(183,125:20167979,41224337:501378,78643,0 -(183,125:20331833,41224337:173670,78643,0 -) -) -(183,125:20669357,41224337:501378,78643,0 -(183,125:20833211,41224337:173670,78643,0 -) -) -(183,125:21170735,41224337:501378,78643,0 -(183,125:21334589,41224337:173670,78643,0 -) -) -(183,125:21672113,41224337:501378,78643,0 -(183,125:21835967,41224337:173670,78643,0 -) -) -(183,125:22173491,41224337:501378,78643,0 -(183,125:22337345,41224337:173670,78643,0 -) -) -(183,125:22674869,41224337:501378,78643,0 -(183,125:22838723,41224337:173670,78643,0 -) -) -(183,125:23176247,41224337:501378,78643,0 -(183,125:23340101,41224337:173670,78643,0 -) -) -(183,125:23677625,41224337:501378,78643,0 -(183,125:23841479,41224337:173670,78643,0 -) -) -(183,125:24179003,41224337:501378,78643,0 -(183,125:24342857,41224337:173670,78643,0 -) -) -(183,125:24680381,41224337:501378,78643,0 -(183,125:24844235,41224337:173670,78643,0 -) -) -(183,125:25181759,41224337:501378,78643,0 -(183,125:25345613,41224337:173670,78643,0 -) -) -(183,125:25683137,41224337:501378,78643,0 -(183,125:25846991,41224337:173670,78643,0 -) -) -(183,125:26184515,41224337:501378,78643,0 -(183,125:26348369,41224337:173670,78643,0 -) -) -(183,125:26685893,41224337:501378,78643,0 -(183,125:26849747,41224337:173670,78643,0 -) -) -(183,125:27187271,41224337:501378,78643,0 -(183,125:27351125,41224337:173670,78643,0 -) -) -(183,125:27688649,41224337:501378,78643,0 -(183,125:27852503,41224337:173670,78643,0 -) -) -(183,125:28190027,41224337:501378,78643,0 -(183,125:28353881,41224337:173670,78643,0 -) -) -(183,125:28691405,41224337:501378,78643,0 -(183,125:28855259,41224337:173670,78643,0 -) -) -(183,125:29192783,41224337:501378,78643,0 -(183,125:29356637,41224337:173670,78643,0 -) -) -(183,125:29694161,41224337:501378,78643,0 -(183,125:29858015,41224337:173670,78643,0 -) -) -(183,125:30195539,41224337:501378,78643,0 -(183,125:30359393,41224337:173670,78643,0 -) -) -(183,125:30696917,41224337:501378,78643,0 -(183,125:30860771,41224337:173670,78643,0 -) -) -(183,125:31239540,41224337:1343490,485622,11795 -k183,125:31239540,41224337:0 -k183,125:31387653,41224337:148113 -) -g183,125:30911860,41224337 -g183,125:32583030,41224337 -) -(183,126:6630773,42065825:25952256,505283,134348 -g183,126:11218293,42065825 -h183,126:11218293,42065825:2490370,0,0 -h183,126:13708663,42065825:0,0,0 -g183,126:9121143,42065825 -(183,126:9121143,42065825:2097150,485622,11795 -k183,126:11218293,42065825:554432 -) -g183,126:14362709,42065825 -g183,126:14362709,42065825 -(183,126:14652821,42065825:501378,78643,0 -$183,126:14652821,42065825 -(183,126:14816675,42065825:173670,78643,0 -) -$183,126:15154199,42065825 -) -(183,126:15154199,42065825:501378,78643,0 -(183,126:15318053,42065825:173670,78643,0 -) -) -(183,126:15655577,42065825:501378,78643,0 -(183,126:15819431,42065825:173670,78643,0 -) -) -(183,126:16156955,42065825:501378,78643,0 -(183,126:16320809,42065825:173670,78643,0 -) -) -(183,126:16658333,42065825:501378,78643,0 -(183,126:16822187,42065825:173670,78643,0 -) -) -(183,126:17159711,42065825:501378,78643,0 -(183,126:17323565,42065825:173670,78643,0 -) -) -(183,126:17661089,42065825:501378,78643,0 -(183,126:17824943,42065825:173670,78643,0 -) -) -(183,126:18162467,42065825:501378,78643,0 -(183,126:18326321,42065825:173670,78643,0 -) -) -(183,126:18663845,42065825:501378,78643,0 -(183,126:18827699,42065825:173670,78643,0 -) -) -(183,126:19165223,42065825:501378,78643,0 -(183,126:19329077,42065825:173670,78643,0 -) -) -(183,126:19666601,42065825:501378,78643,0 -(183,126:19830455,42065825:173670,78643,0 -) -) -(183,126:20167979,42065825:501378,78643,0 -(183,126:20331833,42065825:173670,78643,0 -) -) -(183,126:20669357,42065825:501378,78643,0 -(183,126:20833211,42065825:173670,78643,0 -) -) -(183,126:21170735,42065825:501378,78643,0 -(183,126:21334589,42065825:173670,78643,0 -) -) -(183,126:21672113,42065825:501378,78643,0 -(183,126:21835967,42065825:173670,78643,0 -) -) -(183,126:22173491,42065825:501378,78643,0 -(183,126:22337345,42065825:173670,78643,0 -) -) -(183,126:22674869,42065825:501378,78643,0 -(183,126:22838723,42065825:173670,78643,0 -) -) -(183,126:23176247,42065825:501378,78643,0 -(183,126:23340101,42065825:173670,78643,0 -) -) -(183,126:23677625,42065825:501378,78643,0 -(183,126:23841479,42065825:173670,78643,0 -) -) -(183,126:24179003,42065825:501378,78643,0 -(183,126:24342857,42065825:173670,78643,0 -) -) -(183,126:24680381,42065825:501378,78643,0 -(183,126:24844235,42065825:173670,78643,0 -) -) -(183,126:25181759,42065825:501378,78643,0 -(183,126:25345613,42065825:173670,78643,0 -) -) -(183,126:25683137,42065825:501378,78643,0 -(183,126:25846991,42065825:173670,78643,0 -) -) -(183,126:26184515,42065825:501378,78643,0 -(183,126:26348369,42065825:173670,78643,0 -) -) -(183,126:26685893,42065825:501378,78643,0 -(183,126:26849747,42065825:173670,78643,0 -) -) -(183,126:27187271,42065825:501378,78643,0 -(183,126:27351125,42065825:173670,78643,0 -) -) -(183,126:27688649,42065825:501378,78643,0 -(183,126:27852503,42065825:173670,78643,0 -) -) -(183,126:28190027,42065825:501378,78643,0 -(183,126:28353881,42065825:173670,78643,0 -) -) -(183,126:28691405,42065825:501378,78643,0 -(183,126:28855259,42065825:173670,78643,0 -) -) -(183,126:29192783,42065825:501378,78643,0 -(183,126:29356637,42065825:173670,78643,0 -) -) -(183,126:29694161,42065825:501378,78643,0 -(183,126:29858015,42065825:173670,78643,0 -) -) -(183,126:30195539,42065825:501378,78643,0 -(183,126:30359393,42065825:173670,78643,0 -) -) -(183,126:30696917,42065825:501378,78643,0 -(183,126:30860771,42065825:173670,78643,0 -) -) -(183,126:31239539,42065825:1343490,485622,11795 -k183,126:31239539,42065825:0 -k183,126:31387652,42065825:148113 -) -g183,126:30911859,42065825 -g183,126:32583029,42065825 -) -(183,127:6630773,42907313:25952256,505283,126483 -g183,127:11218293,42907313 -h183,127:11218293,42907313:2490370,0,0 -h183,127:13708663,42907313:0,0,0 -g183,127:9121143,42907313 -(183,127:9121143,42907313:2097150,485622,11795 -k183,127:11218293,42907313:554432 -) -g183,127:13580209,42907313 -g183,127:13580209,42907313 -(183,127:13650065,42907313:501378,78643,0 -$183,127:13650065,42907313 -(183,127:13813919,42907313:173670,78643,0 -) -$183,127:14151443,42907313 -) -(183,127:14151443,42907313:501378,78643,0 -(183,127:14315297,42907313:173670,78643,0 -) -) -(183,127:14652821,42907313:501378,78643,0 -(183,127:14816675,42907313:173670,78643,0 -) -) -(183,127:15154199,42907313:501378,78643,0 -(183,127:15318053,42907313:173670,78643,0 -) -) -(183,127:15655577,42907313:501378,78643,0 -(183,127:15819431,42907313:173670,78643,0 -) -) -(183,127:16156955,42907313:501378,78643,0 -(183,127:16320809,42907313:173670,78643,0 -) -) -(183,127:16658333,42907313:501378,78643,0 -(183,127:16822187,42907313:173670,78643,0 -) -) -(183,127:17159711,42907313:501378,78643,0 -(183,127:17323565,42907313:173670,78643,0 -) -) -(183,127:17661089,42907313:501378,78643,0 -(183,127:17824943,42907313:173670,78643,0 -) -) -(183,127:18162467,42907313:501378,78643,0 -(183,127:18326321,42907313:173670,78643,0 -) -) -(183,127:18663845,42907313:501378,78643,0 -(183,127:18827699,42907313:173670,78643,0 -) -) -(183,127:19165223,42907313:501378,78643,0 -(183,127:19329077,42907313:173670,78643,0 -) -) -(183,127:19666601,42907313:501378,78643,0 -(183,127:19830455,42907313:173670,78643,0 -) -) -(183,127:20167979,42907313:501378,78643,0 -(183,127:20331833,42907313:173670,78643,0 -) -) -(183,127:20669357,42907313:501378,78643,0 -(183,127:20833211,42907313:173670,78643,0 -) -) -(183,127:21170735,42907313:501378,78643,0 -(183,127:21334589,42907313:173670,78643,0 -) -) -(183,127:21672113,42907313:501378,78643,0 -(183,127:21835967,42907313:173670,78643,0 -) -) -(183,127:22173491,42907313:501378,78643,0 -(183,127:22337345,42907313:173670,78643,0 -) -) -(183,127:22674869,42907313:501378,78643,0 -(183,127:22838723,42907313:173670,78643,0 -) -) -(183,127:23176247,42907313:501378,78643,0 -(183,127:23340101,42907313:173670,78643,0 -) -) -(183,127:23677625,42907313:501378,78643,0 -(183,127:23841479,42907313:173670,78643,0 -) -) -(183,127:24179003,42907313:501378,78643,0 -(183,127:24342857,42907313:173670,78643,0 -) -) -(183,127:24680381,42907313:501378,78643,0 -(183,127:24844235,42907313:173670,78643,0 -) -) -(183,127:25181759,42907313:501378,78643,0 -(183,127:25345613,42907313:173670,78643,0 -) -) -(183,127:25683137,42907313:501378,78643,0 -(183,127:25846991,42907313:173670,78643,0 -) -) -(183,127:26184515,42907313:501378,78643,0 -(183,127:26348369,42907313:173670,78643,0 -) -) -(183,127:26685893,42907313:501378,78643,0 -(183,127:26849747,42907313:173670,78643,0 -) -) -(183,127:27187271,42907313:501378,78643,0 -(183,127:27351125,42907313:173670,78643,0 -) -) -(183,127:27688649,42907313:501378,78643,0 -(183,127:27852503,42907313:173670,78643,0 -) -) -(183,127:28190027,42907313:501378,78643,0 -(183,127:28353881,42907313:173670,78643,0 -) -) -(183,127:28691405,42907313:501378,78643,0 -(183,127:28855259,42907313:173670,78643,0 -) -) -(183,127:29192783,42907313:501378,78643,0 -(183,127:29356637,42907313:173670,78643,0 -) -) -(183,127:29694161,42907313:501378,78643,0 -(183,127:29858015,42907313:173670,78643,0 -) -) -(183,127:30195539,42907313:501378,78643,0 -(183,127:30359393,42907313:173670,78643,0 -) -) -(183,127:30696917,42907313:501378,78643,0 -(183,127:30860771,42907313:173670,78643,0 -) -) -(183,127:31239539,42907313:1343490,485622,11795 -k183,127:31239539,42907313:0 -k183,127:31387652,42907313:148113 -) -g183,127:30911859,42907313 -g183,127:32583029,42907313 -) -(183,128:6630773,43748801:25952256,505283,134348 -g183,128:9121143,43748801 -h183,128:9121143,43748801:983040,0,0 -h183,128:10104183,43748801:0,0,0 -g183,128:7613813,43748801 -(183,128:7613813,43748801:1507330,485622,11795 -k183,128:9121143,43748801:536742 -) -g183,128:12624697,43748801 -g183,128:14217877,43748801 -g183,128:16221967,43748801 -g183,128:16221967,43748801 -(183,128:16658333,43748801:501378,78643,0 -$183,128:16658333,43748801 -(183,128:16822187,43748801:173670,78643,0 -) -$183,128:17159711,43748801 -) -(183,128:17159711,43748801:501378,78643,0 -(183,128:17323565,43748801:173670,78643,0 -) -) -(183,128:17661089,43748801:501378,78643,0 -(183,128:17824943,43748801:173670,78643,0 -) -) -(183,128:18162467,43748801:501378,78643,0 -(183,128:18326321,43748801:173670,78643,0 -) -) -(183,128:18663845,43748801:501378,78643,0 -(183,128:18827699,43748801:173670,78643,0 -) -) -(183,128:19165223,43748801:501378,78643,0 -(183,128:19329077,43748801:173670,78643,0 -) -) -(183,128:19666601,43748801:501378,78643,0 -(183,128:19830455,43748801:173670,78643,0 -) -) -(183,128:20167979,43748801:501378,78643,0 -(183,128:20331833,43748801:173670,78643,0 -) -) -(183,128:20669357,43748801:501378,78643,0 -(183,128:20833211,43748801:173670,78643,0 -) -) -(183,128:21170735,43748801:501378,78643,0 -(183,128:21334589,43748801:173670,78643,0 -) -) -(183,128:21672113,43748801:501378,78643,0 -(183,128:21835967,43748801:173670,78643,0 -) -) -(183,128:22173491,43748801:501378,78643,0 -(183,128:22337345,43748801:173670,78643,0 -) -) -(183,128:22674869,43748801:501378,78643,0 -(183,128:22838723,43748801:173670,78643,0 -) -) -(183,128:23176247,43748801:501378,78643,0 -(183,128:23340101,43748801:173670,78643,0 -) -) -(183,128:23677625,43748801:501378,78643,0 -(183,128:23841479,43748801:173670,78643,0 -) -) -(183,128:24179003,43748801:501378,78643,0 -(183,128:24342857,43748801:173670,78643,0 -) -) -(183,128:24680381,43748801:501378,78643,0 -(183,128:24844235,43748801:173670,78643,0 -) -) -(183,128:25181759,43748801:501378,78643,0 -(183,128:25345613,43748801:173670,78643,0 -) -) -(183,128:25683137,43748801:501378,78643,0 -(183,128:25846991,43748801:173670,78643,0 -) -) -(183,128:26184515,43748801:501378,78643,0 -(183,128:26348369,43748801:173670,78643,0 -) -) -(183,128:26685893,43748801:501378,78643,0 -(183,128:26849747,43748801:173670,78643,0 -) -) -(183,128:27187271,43748801:501378,78643,0 -(183,128:27351125,43748801:173670,78643,0 -) -) -(183,128:27688649,43748801:501378,78643,0 -(183,128:27852503,43748801:173670,78643,0 -) -) -(183,128:28190027,43748801:501378,78643,0 -(183,128:28353881,43748801:173670,78643,0 -) -) -(183,128:28691405,43748801:501378,78643,0 -(183,128:28855259,43748801:173670,78643,0 -) -) -(183,128:29192783,43748801:501378,78643,0 -(183,128:29356637,43748801:173670,78643,0 -) -) -(183,128:29694161,43748801:501378,78643,0 -(183,128:29858015,43748801:173670,78643,0 -) -) -(183,128:30195539,43748801:501378,78643,0 -(183,128:30359393,43748801:173670,78643,0 -) -) -(183,128:30696917,43748801:501378,78643,0 -(183,128:30860771,43748801:173670,78643,0 -) -) -(183,128:31239539,43748801:1343490,485622,11795 -k183,128:31239539,43748801:0 -k183,128:31387652,43748801:148113 -) -g183,128:30911859,43748801 -g183,128:32583029,43748801 -) -(183,129:6630773,44590289:25952256,505283,126483 -g183,129:9121143,44590289 -h183,129:9121143,44590289:983040,0,0 -h183,129:10104183,44590289:0,0,0 -g183,129:7613813,44590289 -(183,129:7613813,44590289:1507330,485622,11795 -k183,129:9121143,44590289:536742 -) -g183,129:10792311,44590289 -g183,129:15247448,44590289 -g183,129:16840628,44590289 -g183,129:19012490,44590289 -g183,129:19012490,44590289 -(183,129:19165223,44590289:501378,78643,0 -$183,129:19165223,44590289 -(183,129:19329077,44590289:173670,78643,0 -) -$183,129:19666601,44590289 -) -(183,129:19666601,44590289:501378,78643,0 -(183,129:19830455,44590289:173670,78643,0 -) -) -(183,129:20167979,44590289:501378,78643,0 -(183,129:20331833,44590289:173670,78643,0 -) -) -(183,129:20669357,44590289:501378,78643,0 -(183,129:20833211,44590289:173670,78643,0 -) -) -(183,129:21170735,44590289:501378,78643,0 -(183,129:21334589,44590289:173670,78643,0 -) -) -(183,129:21672113,44590289:501378,78643,0 -(183,129:21835967,44590289:173670,78643,0 -) -) -(183,129:22173491,44590289:501378,78643,0 -(183,129:22337345,44590289:173670,78643,0 -) -) -(183,129:22674869,44590289:501378,78643,0 -(183,129:22838723,44590289:173670,78643,0 -) -) -(183,129:23176247,44590289:501378,78643,0 -(183,129:23340101,44590289:173670,78643,0 -) -) -(183,129:23677625,44590289:501378,78643,0 -(183,129:23841479,44590289:173670,78643,0 -) -) -(183,129:24179003,44590289:501378,78643,0 -(183,129:24342857,44590289:173670,78643,0 -) -) -(183,129:24680381,44590289:501378,78643,0 -(183,129:24844235,44590289:173670,78643,0 -) -) -(183,129:25181759,44590289:501378,78643,0 -(183,129:25345613,44590289:173670,78643,0 -) -) -(183,129:25683137,44590289:501378,78643,0 -(183,129:25846991,44590289:173670,78643,0 -) -) -(183,129:26184515,44590289:501378,78643,0 -(183,129:26348369,44590289:173670,78643,0 -) -) -(183,129:26685893,44590289:501378,78643,0 -(183,129:26849747,44590289:173670,78643,0 -) -) -(183,129:27187271,44590289:501378,78643,0 -(183,129:27351125,44590289:173670,78643,0 -) -) -(183,129:27688649,44590289:501378,78643,0 -(183,129:27852503,44590289:173670,78643,0 -) -) -(183,129:28190027,44590289:501378,78643,0 -(183,129:28353881,44590289:173670,78643,0 -) -) -(183,129:28691405,44590289:501378,78643,0 -(183,129:28855259,44590289:173670,78643,0 -) -) -(183,129:29192783,44590289:501378,78643,0 -(183,129:29356637,44590289:173670,78643,0 -) -) -(183,129:29694161,44590289:501378,78643,0 -(183,129:29858015,44590289:173670,78643,0 -) -) -(183,129:30195539,44590289:501378,78643,0 -(183,129:30359393,44590289:173670,78643,0 -) -) -(183,129:30696917,44590289:501378,78643,0 -(183,129:30860771,44590289:173670,78643,0 -) -) -(183,129:31239539,44590289:1343490,485622,11795 -k183,129:31239539,44590289:0 -k183,129:31387652,44590289:148113 -) -g183,129:30911859,44590289 -g183,129:32583029,44590289 -) -(183,130:6630773,45431777:25952256,505283,126483 -g183,130:11218293,45431777 -h183,130:11218293,45431777:2490370,0,0 -h183,130:13708663,45431777:0,0,0 -g183,130:9121143,45431777 -(183,130:9121143,45431777:2097150,485622,11795 -k183,130:11218293,45431777:554432 -) -g183,130:14390890,45431777 -g183,130:18977100,45431777 -(183,130:19165223,45431777:501378,78643,0 -$183,130:19165223,45431777 -(183,130:19329077,45431777:173670,78643,0 -) -$183,130:19666601,45431777 -) -(183,130:19666601,45431777:501378,78643,0 -(183,130:19830455,45431777:173670,78643,0 -) -) -(183,130:20167979,45431777:501378,78643,0 -(183,130:20331833,45431777:173670,78643,0 -) -) -(183,130:20669357,45431777:501378,78643,0 -(183,130:20833211,45431777:173670,78643,0 -) -) -(183,130:21170735,45431777:501378,78643,0 -(183,130:21334589,45431777:173670,78643,0 -) -) -(183,130:21672113,45431777:501378,78643,0 -(183,130:21835967,45431777:173670,78643,0 -) -) -(183,130:22173491,45431777:501378,78643,0 -(183,130:22337345,45431777:173670,78643,0 -) -) -(183,130:22674869,45431777:501378,78643,0 -(183,130:22838723,45431777:173670,78643,0 -) -) -(183,130:23176247,45431777:501378,78643,0 -(183,130:23340101,45431777:173670,78643,0 -) -) -(183,130:23677625,45431777:501378,78643,0 -(183,130:23841479,45431777:173670,78643,0 -) -) -(183,130:24179003,45431777:501378,78643,0 -(183,130:24342857,45431777:173670,78643,0 -) -) -(183,130:24680381,45431777:501378,78643,0 -(183,130:24844235,45431777:173670,78643,0 -) -) -(183,130:25181759,45431777:501378,78643,0 -(183,130:25345613,45431777:173670,78643,0 -) -) -(183,130:25683137,45431777:501378,78643,0 -(183,130:25846991,45431777:173670,78643,0 -) -) -(183,130:26184515,45431777:501378,78643,0 -(183,130:26348369,45431777:173670,78643,0 -) -) -(183,130:26685893,45431777:501378,78643,0 -(183,130:26849747,45431777:173670,78643,0 -) -) -(183,130:27187271,45431777:501378,78643,0 -(183,130:27351125,45431777:173670,78643,0 -) -) -(183,130:27688649,45431777:501378,78643,0 -(183,130:27852503,45431777:173670,78643,0 -) -) -(183,130:28190027,45431777:501378,78643,0 -(183,130:28353881,45431777:173670,78643,0 -) -) -(183,130:28691405,45431777:501378,78643,0 -(183,130:28855259,45431777:173670,78643,0 -) -) -(183,130:29192783,45431777:501378,78643,0 -(183,130:29356637,45431777:173670,78643,0 -) -) -(183,130:29694161,45431777:501378,78643,0 -(183,130:29858015,45431777:173670,78643,0 -) -) -(183,130:30195539,45431777:501378,78643,0 -(183,130:30359393,45431777:173670,78643,0 -) -) -(183,130:30696917,45431777:501378,78643,0 -(183,130:30860771,45431777:173670,78643,0 -) -) -(183,130:31239539,45431777:1343490,485622,0 -k183,130:31239539,45431777:0 -k183,130:31387652,45431777:148113 -) -g183,130:30911859,45431777 -g183,130:32583029,45431777 -) -] -(183,132:32583029,45706769:0,0,0 -g183,132:32583029,45706769 -) -) -] -(183,132:6630773,47279633:25952256,0,0 -h183,132:6630773,47279633:25952256,0,0 -) -] -(183,132:4262630,4025873:0,0,0 -[183,132:-473656,4025873:0,0,0 -(183,132:-473656,-710413:0,0,0 -(183,132:-473656,-710413:0,0,0 -g183,132:-473656,-710413 -) -g183,132:-473656,-710413 -) -] -) -] -!138189 -}4 -!11 -{5 -[183,179:4262630,47279633:28320399,43253760,0 -(183,179:4262630,4025873:0,0,0 -[183,179:-473656,4025873:0,0,0 -(183,179:-473656,-710413:0,0,0 -(183,179:-473656,-644877:0,0,0 -k183,179:-473656,-644877:-65536 -) -(183,179:-473656,4736287:0,0,0 -k183,179:-473656,4736287:5209943 -) -g183,179:-473656,-710413 -) -] -) -[183,179:6630773,47279633:25952256,43253760,0 -[183,179:6630773,4812305:25952256,786432,0 -(183,179:6630773,4812305:25952256,485622,11795 -(183,179:6630773,4812305:25952256,485622,11795 -g183,179:3078558,4812305 -[183,179:3078558,4812305:0,0,0 -(183,179:3078558,2439708:0,1703936,0 -k183,179:1358238,2439708:-1720320 -(1,122:1358238,2439708:1720320,1703936,0 -(1,122:1358238,2439708:1179648,16384,0 -r183,179:2537886,2439708:1179648,16384,0 -) -g1,122:3062174,2439708 -(1,122:3062174,2439708:16384,1703936,0 -[1,122:3062174,2439708:25952256,1703936,0 -(1,122:3062174,1915420:25952256,1179648,0 -(1,122:3062174,1915420:16384,1179648,0 -r183,179:3078558,1915420:16384,1179648,0 -) -k1,122:29014430,1915420:25935872 -g1,122:29014430,1915420 -) -] -) -) -) -] -[183,179:3078558,4812305:0,0,0 -(183,179:3078558,2439708:0,1703936,0 -g183,179:29030814,2439708 -g183,179:36135244,2439708 -(1,122:36135244,2439708:1720320,1703936,0 -(1,122:36135244,2439708:16384,1703936,0 -[1,122:36135244,2439708:25952256,1703936,0 -(1,122:36135244,1915420:25952256,1179648,0 -(1,122:36135244,1915420:16384,1179648,0 -r183,179:36151628,1915420:16384,1179648,0 -) -k1,122:62087500,1915420:25935872 -g1,122:62087500,1915420 -) -] -) -g1,122:36675916,2439708 -(1,122:36675916,2439708:1179648,16384,0 -r183,179:37855564,2439708:1179648,16384,0 -) -) -k183,179:3078556,2439708:-34777008 -) -] -[183,179:3078558,4812305:0,0,0 -(183,179:3078558,49800853:0,16384,2228224 -k183,179:1358238,49800853:-1720320 -(1,122:1358238,49800853:1720320,16384,2228224 -(1,122:1358238,49800853:1179648,16384,0 -r183,179:2537886,49800853:1179648,16384,0 -) -g1,122:3062174,49800853 -(1,122:3062174,52029077:16384,1703936,0 -[1,122:3062174,52029077:25952256,1703936,0 -(1,122:3062174,51504789:25952256,1179648,0 -(1,122:3062174,51504789:16384,1179648,0 -r183,179:3078558,51504789:16384,1179648,0 -) -k1,122:29014430,51504789:25935872 -g1,122:29014430,51504789 -) -] -) -) -) -] -[183,179:3078558,4812305:0,0,0 -(183,179:3078558,49800853:0,16384,2228224 -g183,179:29030814,49800853 -g183,179:36135244,49800853 -(1,122:36135244,49800853:1720320,16384,2228224 -(1,122:36135244,52029077:16384,1703936,0 -[1,122:36135244,52029077:25952256,1703936,0 -(1,122:36135244,51504789:25952256,1179648,0 -(1,122:36135244,51504789:16384,1179648,0 -r183,179:36151628,51504789:16384,1179648,0 -) -k1,122:62087500,51504789:25935872 -g1,122:62087500,51504789 -) -] -) -g1,122:36675916,49800853 -(1,122:36675916,49800853:1179648,16384,0 -r183,179:37855564,49800853:1179648,16384,0 -) -) -k183,179:3078556,49800853:-34777008 -) -] -g183,179:6630773,4812305 -k183,179:29827895,4812305:22236364 -) -) -] -[183,179:6630773,45706769:25952256,40108032,0 -(183,179:6630773,45706769:25952256,40108032,0 -(183,179:6630773,45706769:0,0,0 -g183,179:6630773,45706769 -) -[183,179:6630773,45706769:25952256,40108032,0 -(183,131:6630773,6254097:25952256,505283,126483 -g183,131:11218293,6254097 -h183,131:11218293,6254097:2490370,0,0 -h183,131:13708663,6254097:0,0,0 -g183,131:9121143,6254097 -(183,131:9121143,6254097:2097150,485622,11795 -k183,131:11218293,6254097:554432 -) -g183,131:15028556,6254097 -g183,131:19614766,6254097 -(183,131:19666601,6254097:501378,78643,0 -$183,131:19666601,6254097 -(183,131:19830455,6254097:173670,78643,0 -) -$183,131:20167979,6254097 -) -(183,131:20167979,6254097:501378,78643,0 -(183,131:20331833,6254097:173670,78643,0 -) -) -(183,131:20669357,6254097:501378,78643,0 -(183,131:20833211,6254097:173670,78643,0 -) -) -(183,131:21170735,6254097:501378,78643,0 -(183,131:21334589,6254097:173670,78643,0 -) -) -(183,131:21672113,6254097:501378,78643,0 -(183,131:21835967,6254097:173670,78643,0 -) -) -(183,131:22173491,6254097:501378,78643,0 -(183,131:22337345,6254097:173670,78643,0 -) -) -(183,131:22674869,6254097:501378,78643,0 -(183,131:22838723,6254097:173670,78643,0 -) -) -(183,131:23176247,6254097:501378,78643,0 -(183,131:23340101,6254097:173670,78643,0 -) -) -(183,131:23677625,6254097:501378,78643,0 -(183,131:23841479,6254097:173670,78643,0 -) -) -(183,131:24179003,6254097:501378,78643,0 -(183,131:24342857,6254097:173670,78643,0 -) -) -(183,131:24680381,6254097:501378,78643,0 -(183,131:24844235,6254097:173670,78643,0 -) -) -(183,131:25181759,6254097:501378,78643,0 -(183,131:25345613,6254097:173670,78643,0 -) -) -(183,131:25683137,6254097:501378,78643,0 -(183,131:25846991,6254097:173670,78643,0 -) -) -(183,131:26184515,6254097:501378,78643,0 -(183,131:26348369,6254097:173670,78643,0 -) -) -(183,131:26685893,6254097:501378,78643,0 -(183,131:26849747,6254097:173670,78643,0 -) -) -(183,131:27187271,6254097:501378,78643,0 -(183,131:27351125,6254097:173670,78643,0 -) -) -(183,131:27688649,6254097:501378,78643,0 -(183,131:27852503,6254097:173670,78643,0 -) -) -(183,131:28190027,6254097:501378,78643,0 -(183,131:28353881,6254097:173670,78643,0 -) -) -(183,131:28691405,6254097:501378,78643,0 -(183,131:28855259,6254097:173670,78643,0 -) -) -(183,131:29192783,6254097:501378,78643,0 -(183,131:29356637,6254097:173670,78643,0 -) -) -(183,131:29694161,6254097:501378,78643,0 -(183,131:29858015,6254097:173670,78643,0 -) -) -(183,131:30195539,6254097:501378,78643,0 -(183,131:30359393,6254097:173670,78643,0 -) -) -(183,131:30696917,6254097:501378,78643,0 -(183,131:30860771,6254097:173670,78643,0 -) -) -(183,131:31239539,6254097:1343490,485622,0 -k183,131:31239539,6254097:0 -k183,131:31387652,6254097:148113 -) -g183,131:30911859,6254097 -g183,131:32583029,6254097 -) -(183,132:6630773,7095585:25952256,485622,95026 -g183,132:11218293,7095585 -h183,132:11218293,7095585:2490370,0,0 -h183,132:13708663,7095585:0,0,0 -g183,132:9121143,7095585 -(183,132:9121143,7095585:2097150,485622,11795 -k183,132:11218293,7095585:554432 -) -g183,132:12835722,7095585 -(183,132:13148687,7095585:501378,78643,0 -$183,132:13148687,7095585 -(183,132:13312541,7095585:173670,78643,0 -) -$183,132:13650065,7095585 -) -(183,132:13650065,7095585:501378,78643,0 -(183,132:13813919,7095585:173670,78643,0 -) -) -(183,132:14151443,7095585:501378,78643,0 -(183,132:14315297,7095585:173670,78643,0 -) -) -(183,132:14652821,7095585:501378,78643,0 -(183,132:14816675,7095585:173670,78643,0 -) -) -(183,132:15154199,7095585:501378,78643,0 -(183,132:15318053,7095585:173670,78643,0 -) -) -(183,132:15655577,7095585:501378,78643,0 -(183,132:15819431,7095585:173670,78643,0 -) -) -(183,132:16156955,7095585:501378,78643,0 -(183,132:16320809,7095585:173670,78643,0 -) -) -(183,132:16658333,7095585:501378,78643,0 -(183,132:16822187,7095585:173670,78643,0 -) -) -(183,132:17159711,7095585:501378,78643,0 -(183,132:17323565,7095585:173670,78643,0 -) -) -(183,132:17661089,7095585:501378,78643,0 -(183,132:17824943,7095585:173670,78643,0 -) -) -(183,132:18162467,7095585:501378,78643,0 -(183,132:18326321,7095585:173670,78643,0 -) -) -(183,132:18663845,7095585:501378,78643,0 -(183,132:18827699,7095585:173670,78643,0 -) -) -(183,132:19165223,7095585:501378,78643,0 -(183,132:19329077,7095585:173670,78643,0 -) -) -(183,132:19666601,7095585:501378,78643,0 -(183,132:19830455,7095585:173670,78643,0 -) -) -(183,132:20167979,7095585:501378,78643,0 -(183,132:20331833,7095585:173670,78643,0 -) -) -(183,132:20669357,7095585:501378,78643,0 -(183,132:20833211,7095585:173670,78643,0 -) -) -(183,132:21170735,7095585:501378,78643,0 -(183,132:21334589,7095585:173670,78643,0 -) -) -(183,132:21672113,7095585:501378,78643,0 -(183,132:21835967,7095585:173670,78643,0 -) -) -(183,132:22173491,7095585:501378,78643,0 -(183,132:22337345,7095585:173670,78643,0 -) -) -(183,132:22674869,7095585:501378,78643,0 -(183,132:22838723,7095585:173670,78643,0 -) -) -(183,132:23176247,7095585:501378,78643,0 -(183,132:23340101,7095585:173670,78643,0 -) -) -(183,132:23677625,7095585:501378,78643,0 -(183,132:23841479,7095585:173670,78643,0 -) -) -(183,132:24179003,7095585:501378,78643,0 -(183,132:24342857,7095585:173670,78643,0 -) -) -(183,132:24680381,7095585:501378,78643,0 -(183,132:24844235,7095585:173670,78643,0 -) -) -(183,132:25181759,7095585:501378,78643,0 -(183,132:25345613,7095585:173670,78643,0 -) -) -(183,132:25683137,7095585:501378,78643,0 -(183,132:25846991,7095585:173670,78643,0 -) -) -(183,132:26184515,7095585:501378,78643,0 -(183,132:26348369,7095585:173670,78643,0 -) -) -(183,132:26685893,7095585:501378,78643,0 -(183,132:26849747,7095585:173670,78643,0 -) -) -(183,132:27187271,7095585:501378,78643,0 -(183,132:27351125,7095585:173670,78643,0 -) -) -(183,132:27688649,7095585:501378,78643,0 -(183,132:27852503,7095585:173670,78643,0 -) -) -(183,132:28190027,7095585:501378,78643,0 -(183,132:28353881,7095585:173670,78643,0 -) -) -(183,132:28691405,7095585:501378,78643,0 -(183,132:28855259,7095585:173670,78643,0 -) -) -(183,132:29192783,7095585:501378,78643,0 -(183,132:29356637,7095585:173670,78643,0 -) -) -(183,132:29694161,7095585:501378,78643,0 -(183,132:29858015,7095585:173670,78643,0 -) -) -(183,132:30195539,7095585:501378,78643,0 -(183,132:30359393,7095585:173670,78643,0 -) -) -(183,132:30696917,7095585:501378,78643,0 -(183,132:30860771,7095585:173670,78643,0 -) -) -(183,132:31239538,7095585:1343490,485622,11795 -k183,132:31239538,7095585:0 -k183,132:31387651,7095585:148113 -) -g183,132:30911858,7095585 -g183,132:32583028,7095585 -) -(183,133:6630773,7937073:25952256,505283,134348 -g183,133:9121143,7937073 -h183,133:9121143,7937073:983040,0,0 -h183,133:10104183,7937073:0,0,0 -g183,133:7613813,7937073 -(183,133:7613813,7937073:1507330,485622,11795 -k183,133:9121143,7937073:536742 -) -g183,133:11690154,7937073 -g183,133:14291933,7937073 -g183,133:14291933,7937073 -(183,133:14652821,7937073:501378,78643,0 -$183,133:14652821,7937073 -(183,133:14816675,7937073:173670,78643,0 -) -$183,133:15154199,7937073 -) -(183,133:15154199,7937073:501378,78643,0 -(183,133:15318053,7937073:173670,78643,0 -) -) -(183,133:15655577,7937073:501378,78643,0 -(183,133:15819431,7937073:173670,78643,0 -) -) -(183,133:16156955,7937073:501378,78643,0 -(183,133:16320809,7937073:173670,78643,0 -) -) -(183,133:16658333,7937073:501378,78643,0 -(183,133:16822187,7937073:173670,78643,0 -) -) -(183,133:17159711,7937073:501378,78643,0 -(183,133:17323565,7937073:173670,78643,0 -) -) -(183,133:17661089,7937073:501378,78643,0 -(183,133:17824943,7937073:173670,78643,0 -) -) -(183,133:18162467,7937073:501378,78643,0 -(183,133:18326321,7937073:173670,78643,0 -) -) -(183,133:18663845,7937073:501378,78643,0 -(183,133:18827699,7937073:173670,78643,0 -) -) -(183,133:19165223,7937073:501378,78643,0 -(183,133:19329077,7937073:173670,78643,0 -) -) -(183,133:19666601,7937073:501378,78643,0 -(183,133:19830455,7937073:173670,78643,0 -) -) -(183,133:20167979,7937073:501378,78643,0 -(183,133:20331833,7937073:173670,78643,0 -) -) -(183,133:20669357,7937073:501378,78643,0 -(183,133:20833211,7937073:173670,78643,0 -) -) -(183,133:21170735,7937073:501378,78643,0 -(183,133:21334589,7937073:173670,78643,0 -) -) -(183,133:21672113,7937073:501378,78643,0 -(183,133:21835967,7937073:173670,78643,0 -) -) -(183,133:22173491,7937073:501378,78643,0 -(183,133:22337345,7937073:173670,78643,0 -) -) -(183,133:22674869,7937073:501378,78643,0 -(183,133:22838723,7937073:173670,78643,0 -) -) -(183,133:23176247,7937073:501378,78643,0 -(183,133:23340101,7937073:173670,78643,0 -) -) -(183,133:23677625,7937073:501378,78643,0 -(183,133:23841479,7937073:173670,78643,0 -) -) -(183,133:24179003,7937073:501378,78643,0 -(183,133:24342857,7937073:173670,78643,0 -) -) -(183,133:24680381,7937073:501378,78643,0 -(183,133:24844235,7937073:173670,78643,0 -) -) -(183,133:25181759,7937073:501378,78643,0 -(183,133:25345613,7937073:173670,78643,0 -) -) -(183,133:25683137,7937073:501378,78643,0 -(183,133:25846991,7937073:173670,78643,0 -) -) -(183,133:26184515,7937073:501378,78643,0 -(183,133:26348369,7937073:173670,78643,0 -) -) -(183,133:26685893,7937073:501378,78643,0 -(183,133:26849747,7937073:173670,78643,0 -) -) -(183,133:27187271,7937073:501378,78643,0 -(183,133:27351125,7937073:173670,78643,0 -) -) -(183,133:27688649,7937073:501378,78643,0 -(183,133:27852503,7937073:173670,78643,0 -) -) -(183,133:28190027,7937073:501378,78643,0 -(183,133:28353881,7937073:173670,78643,0 -) -) -(183,133:28691405,7937073:501378,78643,0 -(183,133:28855259,7937073:173670,78643,0 -) -) -(183,133:29192783,7937073:501378,78643,0 -(183,133:29356637,7937073:173670,78643,0 -) -) -(183,133:29694161,7937073:501378,78643,0 -(183,133:29858015,7937073:173670,78643,0 -) -) -(183,133:30195539,7937073:501378,78643,0 -(183,133:30359393,7937073:173670,78643,0 -) -) -(183,133:30696917,7937073:501378,78643,0 -(183,133:30860771,7937073:173670,78643,0 -) -) -(183,133:31239539,7937073:1343490,485622,11795 -k183,133:31239539,7937073:0 -k183,133:31387652,7937073:148113 -) -g183,133:30911859,7937073 -g183,133:32583029,7937073 -) -(183,134:6630773,9433921:25952256,513147,134348 -g183,134:7613813,9433921 -h183,134:7613813,9433921:0,0,0 -g183,134:6630773,9433921 -(183,134:6630773,9433921:983040,473825,0 -k183,134:7613813,9433921:574751 -) -g183,134:10913550,9433921 -g183,134:11795009,9433921 -k183,134:22930558,9433921:8308981 -k183,134:31239539,9433921:8308981 -(183,134:31239539,9433921:1343490,485622,0 -k183,134:31358161,9433921:118622 -) -g183,134:31239539,9433921 -g183,134:32583029,9433921 -) -(183,135:6630773,10275409:25952256,513147,126483 -g183,135:9121143,10275409 -h183,135:9121143,10275409:983040,0,0 -h183,135:10104183,10275409:0,0,0 -g183,135:7613813,10275409 -(183,135:7613813,10275409:1507330,477757,0 -k183,135:9121143,10275409:536742 -) -g183,135:10959427,10275409 -g183,135:11817948,10275409 -g183,135:13220418,10275409 -g183,135:15837270,10275409 -g183,135:15837270,10275409 -(183,135:16156955,10275409:501378,78643,0 -$183,135:16156955,10275409 -(183,135:16320809,10275409:173670,78643,0 -) -$183,135:16658333,10275409 -) -(183,135:16658333,10275409:501378,78643,0 -(183,135:16822187,10275409:173670,78643,0 -) -) -(183,135:17159711,10275409:501378,78643,0 -(183,135:17323565,10275409:173670,78643,0 -) -) -(183,135:17661089,10275409:501378,78643,0 -(183,135:17824943,10275409:173670,78643,0 -) -) -(183,135:18162467,10275409:501378,78643,0 -(183,135:18326321,10275409:173670,78643,0 -) -) -(183,135:18663845,10275409:501378,78643,0 -(183,135:18827699,10275409:173670,78643,0 -) -) -(183,135:19165223,10275409:501378,78643,0 -(183,135:19329077,10275409:173670,78643,0 -) -) -(183,135:19666601,10275409:501378,78643,0 -(183,135:19830455,10275409:173670,78643,0 -) -) -(183,135:20167979,10275409:501378,78643,0 -(183,135:20331833,10275409:173670,78643,0 -) -) -(183,135:20669357,10275409:501378,78643,0 -(183,135:20833211,10275409:173670,78643,0 -) -) -(183,135:21170735,10275409:501378,78643,0 -(183,135:21334589,10275409:173670,78643,0 -) -) -(183,135:21672113,10275409:501378,78643,0 -(183,135:21835967,10275409:173670,78643,0 -) -) -(183,135:22173491,10275409:501378,78643,0 -(183,135:22337345,10275409:173670,78643,0 -) -) -(183,135:22674869,10275409:501378,78643,0 -(183,135:22838723,10275409:173670,78643,0 -) -) -(183,135:23176247,10275409:501378,78643,0 -(183,135:23340101,10275409:173670,78643,0 -) -) -(183,135:23677625,10275409:501378,78643,0 -(183,135:23841479,10275409:173670,78643,0 -) -) -(183,135:24179003,10275409:501378,78643,0 -(183,135:24342857,10275409:173670,78643,0 -) -) -(183,135:24680381,10275409:501378,78643,0 -(183,135:24844235,10275409:173670,78643,0 -) -) -(183,135:25181759,10275409:501378,78643,0 -(183,135:25345613,10275409:173670,78643,0 -) -) -(183,135:25683137,10275409:501378,78643,0 -(183,135:25846991,10275409:173670,78643,0 -) -) -(183,135:26184515,10275409:501378,78643,0 -(183,135:26348369,10275409:173670,78643,0 -) -) -(183,135:26685893,10275409:501378,78643,0 -(183,135:26849747,10275409:173670,78643,0 -) -) -(183,135:27187271,10275409:501378,78643,0 -(183,135:27351125,10275409:173670,78643,0 -) -) -(183,135:27688649,10275409:501378,78643,0 -(183,135:27852503,10275409:173670,78643,0 -) -) -(183,135:28190027,10275409:501378,78643,0 -(183,135:28353881,10275409:173670,78643,0 -) -) -(183,135:28691405,10275409:501378,78643,0 -(183,135:28855259,10275409:173670,78643,0 -) -) -(183,135:29192783,10275409:501378,78643,0 -(183,135:29356637,10275409:173670,78643,0 -) -) -(183,135:29694161,10275409:501378,78643,0 -(183,135:29858015,10275409:173670,78643,0 -) -) -(183,135:30195539,10275409:501378,78643,0 -(183,135:30359393,10275409:173670,78643,0 -) -) -(183,135:30696917,10275409:501378,78643,0 -(183,135:30860771,10275409:173670,78643,0 -) -) -(183,135:31239539,10275409:1343490,485622,0 -k183,135:31239539,10275409:0 -k183,135:31387652,10275409:148113 -) -g183,135:30911859,10275409 -g183,135:32583029,10275409 -) -(183,136:6630773,11116897:25952256,505283,134348 -g183,136:9121143,11116897 -h183,136:9121143,11116897:983040,0,0 -h183,136:10104183,11116897:0,0,0 -g183,136:7613813,11116897 -(183,136:7613813,11116897:1507330,485622,0 -k183,136:9121143,11116897:536742 -) -g183,136:12185606,11116897 -g183,136:13898061,11116897 -g183,136:14713328,11116897 -g183,136:16115798,11116897 -g183,136:18732650,11116897 -g183,136:18732650,11116897 -(183,136:19165223,11116897:501378,78643,0 -$183,136:19165223,11116897 -(183,136:19329077,11116897:173670,78643,0 -) -$183,136:19666601,11116897 -) -(183,136:19666601,11116897:501378,78643,0 -(183,136:19830455,11116897:173670,78643,0 -) -) -(183,136:20167979,11116897:501378,78643,0 -(183,136:20331833,11116897:173670,78643,0 -) -) -(183,136:20669357,11116897:501378,78643,0 -(183,136:20833211,11116897:173670,78643,0 -) -) -(183,136:21170735,11116897:501378,78643,0 -(183,136:21334589,11116897:173670,78643,0 -) -) -(183,136:21672113,11116897:501378,78643,0 -(183,136:21835967,11116897:173670,78643,0 -) -) -(183,136:22173491,11116897:501378,78643,0 -(183,136:22337345,11116897:173670,78643,0 -) -) -(183,136:22674869,11116897:501378,78643,0 -(183,136:22838723,11116897:173670,78643,0 -) -) -(183,136:23176247,11116897:501378,78643,0 -(183,136:23340101,11116897:173670,78643,0 -) -) -(183,136:23677625,11116897:501378,78643,0 -(183,136:23841479,11116897:173670,78643,0 -) -) -(183,136:24179003,11116897:501378,78643,0 -(183,136:24342857,11116897:173670,78643,0 -) -) -(183,136:24680381,11116897:501378,78643,0 -(183,136:24844235,11116897:173670,78643,0 -) -) -(183,136:25181759,11116897:501378,78643,0 -(183,136:25345613,11116897:173670,78643,0 -) -) -(183,136:25683137,11116897:501378,78643,0 -(183,136:25846991,11116897:173670,78643,0 -) -) -(183,136:26184515,11116897:501378,78643,0 -(183,136:26348369,11116897:173670,78643,0 -) -) -(183,136:26685893,11116897:501378,78643,0 -(183,136:26849747,11116897:173670,78643,0 -) -) -(183,136:27187271,11116897:501378,78643,0 -(183,136:27351125,11116897:173670,78643,0 -) -) -(183,136:27688649,11116897:501378,78643,0 -(183,136:27852503,11116897:173670,78643,0 -) -) -(183,136:28190027,11116897:501378,78643,0 -(183,136:28353881,11116897:173670,78643,0 -) -) -(183,136:28691405,11116897:501378,78643,0 -(183,136:28855259,11116897:173670,78643,0 -) -) -(183,136:29192783,11116897:501378,78643,0 -(183,136:29356637,11116897:173670,78643,0 -) -) -(183,136:29694161,11116897:501378,78643,0 -(183,136:29858015,11116897:173670,78643,0 -) -) -(183,136:30195539,11116897:501378,78643,0 -(183,136:30359393,11116897:173670,78643,0 -) -) -(183,136:30696917,11116897:501378,78643,0 -(183,136:30860771,11116897:173670,78643,0 -) -) -(183,136:31239539,11116897:1343490,485622,0 -k183,136:31239539,11116897:0 -k183,136:31387652,11116897:148113 -) -g183,136:30911859,11116897 -g183,136:32583029,11116897 -) -(183,137:6630773,11958385:25952256,513147,134348 -g183,137:9121143,11958385 -h183,137:9121143,11958385:983040,0,0 -h183,137:10104183,11958385:0,0,0 -g183,137:7613813,11958385 -(183,137:7613813,11958385:1507330,485622,11795 -k183,137:9121143,11958385:536742 -) -g183,137:13324622,11958385 -g183,137:14175279,11958385 -g183,137:15393593,11958385 -g183,137:18495412,11958385 -g183,137:19353933,11958385 -g183,137:22272251,11958385 -g183,137:22272251,11958385 -(183,137:22674869,11958385:501378,78643,0 -$183,137:22674869,11958385 -(183,137:22838723,11958385:173670,78643,0 -) -$183,137:23176247,11958385 -) -(183,137:23176247,11958385:501378,78643,0 -(183,137:23340101,11958385:173670,78643,0 -) -) -(183,137:23677625,11958385:501378,78643,0 -(183,137:23841479,11958385:173670,78643,0 -) -) -(183,137:24179003,11958385:501378,78643,0 -(183,137:24342857,11958385:173670,78643,0 -) -) -(183,137:24680381,11958385:501378,78643,0 -(183,137:24844235,11958385:173670,78643,0 -) -) -(183,137:25181759,11958385:501378,78643,0 -(183,137:25345613,11958385:173670,78643,0 -) -) -(183,137:25683137,11958385:501378,78643,0 -(183,137:25846991,11958385:173670,78643,0 -) -) -(183,137:26184515,11958385:501378,78643,0 -(183,137:26348369,11958385:173670,78643,0 -) -) -(183,137:26685893,11958385:501378,78643,0 -(183,137:26849747,11958385:173670,78643,0 -) -) -(183,137:27187271,11958385:501378,78643,0 -(183,137:27351125,11958385:173670,78643,0 -) -) -(183,137:27688649,11958385:501378,78643,0 -(183,137:27852503,11958385:173670,78643,0 -) -) -(183,137:28190027,11958385:501378,78643,0 -(183,137:28353881,11958385:173670,78643,0 -) -) -(183,137:28691405,11958385:501378,78643,0 -(183,137:28855259,11958385:173670,78643,0 -) -) -(183,137:29192783,11958385:501378,78643,0 -(183,137:29356637,11958385:173670,78643,0 -) -) -(183,137:29694161,11958385:501378,78643,0 -(183,137:29858015,11958385:173670,78643,0 -) -) -(183,137:30195539,11958385:501378,78643,0 -(183,137:30359393,11958385:173670,78643,0 -) -) -(183,137:30696917,11958385:501378,78643,0 -(183,137:30860771,11958385:173670,78643,0 -) -) -(183,137:31239539,11958385:1343490,485622,0 -k183,137:31239539,11958385:0 -k183,137:31387652,11958385:148113 -) -g183,137:30911859,11958385 -g183,137:32583029,11958385 -) -(183,138:6630773,12799873:25952256,485622,11795 -g183,138:11218293,12799873 -h183,138:11218293,12799873:2490370,0,0 -h183,138:13708663,12799873:0,0,0 -g183,138:9121143,12799873 -(183,138:9121143,12799873:2097150,485622,11795 -k183,138:11218293,12799873:554432 -) -g183,138:12690232,12799873 -(183,138:13148687,12799873:501378,78643,0 -$183,138:13148687,12799873 -(183,138:13312541,12799873:173670,78643,0 -) -$183,138:13650065,12799873 -) -(183,138:13650065,12799873:501378,78643,0 -(183,138:13813919,12799873:173670,78643,0 -) -) -(183,138:14151443,12799873:501378,78643,0 -(183,138:14315297,12799873:173670,78643,0 -) -) -(183,138:14652821,12799873:501378,78643,0 -(183,138:14816675,12799873:173670,78643,0 -) -) -(183,138:15154199,12799873:501378,78643,0 -(183,138:15318053,12799873:173670,78643,0 -) -) -(183,138:15655577,12799873:501378,78643,0 -(183,138:15819431,12799873:173670,78643,0 -) -) -(183,138:16156955,12799873:501378,78643,0 -(183,138:16320809,12799873:173670,78643,0 -) -) -(183,138:16658333,12799873:501378,78643,0 -(183,138:16822187,12799873:173670,78643,0 -) -) -(183,138:17159711,12799873:501378,78643,0 -(183,138:17323565,12799873:173670,78643,0 -) -) -(183,138:17661089,12799873:501378,78643,0 -(183,138:17824943,12799873:173670,78643,0 -) -) -(183,138:18162467,12799873:501378,78643,0 -(183,138:18326321,12799873:173670,78643,0 -) -) -(183,138:18663845,12799873:501378,78643,0 -(183,138:18827699,12799873:173670,78643,0 -) -) -(183,138:19165223,12799873:501378,78643,0 -(183,138:19329077,12799873:173670,78643,0 -) -) -(183,138:19666601,12799873:501378,78643,0 -(183,138:19830455,12799873:173670,78643,0 -) -) -(183,138:20167979,12799873:501378,78643,0 -(183,138:20331833,12799873:173670,78643,0 -) -) -(183,138:20669357,12799873:501378,78643,0 -(183,138:20833211,12799873:173670,78643,0 -) -) -(183,138:21170735,12799873:501378,78643,0 -(183,138:21334589,12799873:173670,78643,0 -) -) -(183,138:21672113,12799873:501378,78643,0 -(183,138:21835967,12799873:173670,78643,0 -) -) -(183,138:22173491,12799873:501378,78643,0 -(183,138:22337345,12799873:173670,78643,0 -) -) -(183,138:22674869,12799873:501378,78643,0 -(183,138:22838723,12799873:173670,78643,0 -) -) -(183,138:23176247,12799873:501378,78643,0 -(183,138:23340101,12799873:173670,78643,0 -) -) -(183,138:23677625,12799873:501378,78643,0 -(183,138:23841479,12799873:173670,78643,0 -) -) -(183,138:24179003,12799873:501378,78643,0 -(183,138:24342857,12799873:173670,78643,0 -) -) -(183,138:24680381,12799873:501378,78643,0 -(183,138:24844235,12799873:173670,78643,0 -) -) -(183,138:25181759,12799873:501378,78643,0 -(183,138:25345613,12799873:173670,78643,0 -) -) -(183,138:25683137,12799873:501378,78643,0 -(183,138:25846991,12799873:173670,78643,0 -) -) -(183,138:26184515,12799873:501378,78643,0 -(183,138:26348369,12799873:173670,78643,0 -) -) -(183,138:26685893,12799873:501378,78643,0 -(183,138:26849747,12799873:173670,78643,0 -) -) -(183,138:27187271,12799873:501378,78643,0 -(183,138:27351125,12799873:173670,78643,0 -) -) -(183,138:27688649,12799873:501378,78643,0 -(183,138:27852503,12799873:173670,78643,0 -) -) -(183,138:28190027,12799873:501378,78643,0 -(183,138:28353881,12799873:173670,78643,0 -) -) -(183,138:28691405,12799873:501378,78643,0 -(183,138:28855259,12799873:173670,78643,0 -) -) -(183,138:29192783,12799873:501378,78643,0 -(183,138:29356637,12799873:173670,78643,0 -) -) -(183,138:29694161,12799873:501378,78643,0 -(183,138:29858015,12799873:173670,78643,0 -) -) -(183,138:30195539,12799873:501378,78643,0 -(183,138:30359393,12799873:173670,78643,0 -) -) -(183,138:30696917,12799873:501378,78643,0 -(183,138:30860771,12799873:173670,78643,0 -) -) -(183,138:31239540,12799873:1343490,485622,11795 -k183,138:31239540,12799873:0 -k183,138:31387653,12799873:148113 -) -g183,138:30911860,12799873 -g183,138:32583030,12799873 -) -(183,139:6630773,13641361:25952256,485622,134348 -g183,139:11218293,13641361 -h183,139:11218293,13641361:2490370,0,0 -h183,139:13708663,13641361:0,0,0 -g183,139:9121143,13641361 -(183,139:9121143,13641361:2097150,485622,11795 -k183,139:11218293,13641361:554432 -) -g183,139:13969494,13641361 -(183,139:14151443,13641361:501378,78643,0 -$183,139:14151443,13641361 -(183,139:14315297,13641361:173670,78643,0 -) -$183,139:14652821,13641361 -) -(183,139:14652821,13641361:501378,78643,0 -(183,139:14816675,13641361:173670,78643,0 -) -) -(183,139:15154199,13641361:501378,78643,0 -(183,139:15318053,13641361:173670,78643,0 -) -) -(183,139:15655577,13641361:501378,78643,0 -(183,139:15819431,13641361:173670,78643,0 -) -) -(183,139:16156955,13641361:501378,78643,0 -(183,139:16320809,13641361:173670,78643,0 -) -) -(183,139:16658333,13641361:501378,78643,0 -(183,139:16822187,13641361:173670,78643,0 -) -) -(183,139:17159711,13641361:501378,78643,0 -(183,139:17323565,13641361:173670,78643,0 -) -) -(183,139:17661089,13641361:501378,78643,0 -(183,139:17824943,13641361:173670,78643,0 -) -) -(183,139:18162467,13641361:501378,78643,0 -(183,139:18326321,13641361:173670,78643,0 -) -) -(183,139:18663845,13641361:501378,78643,0 -(183,139:18827699,13641361:173670,78643,0 -) -) -(183,139:19165223,13641361:501378,78643,0 -(183,139:19329077,13641361:173670,78643,0 -) -) -(183,139:19666601,13641361:501378,78643,0 -(183,139:19830455,13641361:173670,78643,0 -) -) -(183,139:20167979,13641361:501378,78643,0 -(183,139:20331833,13641361:173670,78643,0 -) -) -(183,139:20669357,13641361:501378,78643,0 -(183,139:20833211,13641361:173670,78643,0 -) -) -(183,139:21170735,13641361:501378,78643,0 -(183,139:21334589,13641361:173670,78643,0 -) -) -(183,139:21672113,13641361:501378,78643,0 -(183,139:21835967,13641361:173670,78643,0 -) -) -(183,139:22173491,13641361:501378,78643,0 -(183,139:22337345,13641361:173670,78643,0 -) -) -(183,139:22674869,13641361:501378,78643,0 -(183,139:22838723,13641361:173670,78643,0 -) -) -(183,139:23176247,13641361:501378,78643,0 -(183,139:23340101,13641361:173670,78643,0 -) -) -(183,139:23677625,13641361:501378,78643,0 -(183,139:23841479,13641361:173670,78643,0 -) -) -(183,139:24179003,13641361:501378,78643,0 -(183,139:24342857,13641361:173670,78643,0 -) -) -(183,139:24680381,13641361:501378,78643,0 -(183,139:24844235,13641361:173670,78643,0 -) -) -(183,139:25181759,13641361:501378,78643,0 -(183,139:25345613,13641361:173670,78643,0 -) -) -(183,139:25683137,13641361:501378,78643,0 -(183,139:25846991,13641361:173670,78643,0 -) -) -(183,139:26184515,13641361:501378,78643,0 -(183,139:26348369,13641361:173670,78643,0 -) -) -(183,139:26685893,13641361:501378,78643,0 -(183,139:26849747,13641361:173670,78643,0 -) -) -(183,139:27187271,13641361:501378,78643,0 -(183,139:27351125,13641361:173670,78643,0 -) -) -(183,139:27688649,13641361:501378,78643,0 -(183,139:27852503,13641361:173670,78643,0 -) -) -(183,139:28190027,13641361:501378,78643,0 -(183,139:28353881,13641361:173670,78643,0 -) -) -(183,139:28691405,13641361:501378,78643,0 -(183,139:28855259,13641361:173670,78643,0 -) -) -(183,139:29192783,13641361:501378,78643,0 -(183,139:29356637,13641361:173670,78643,0 -) -) -(183,139:29694161,13641361:501378,78643,0 -(183,139:29858015,13641361:173670,78643,0 -) -) -(183,139:30195539,13641361:501378,78643,0 -(183,139:30359393,13641361:173670,78643,0 -) -) -(183,139:30696917,13641361:501378,78643,0 -(183,139:30860771,13641361:173670,78643,0 -) -) -(183,139:31239538,13641361:1343490,485622,11795 -k183,139:31239538,13641361:0 -k183,139:31387651,13641361:148113 -) -g183,139:30911858,13641361 -g183,139:32583028,13641361 -) -(183,140:6630773,14482849:25952256,485622,11795 -g183,140:11218293,14482849 -h183,140:11218293,14482849:2490370,0,0 -h183,140:13708663,14482849:0,0,0 -g183,140:9121143,14482849 -(183,140:9121143,14482849:2097150,485622,11795 -k183,140:11218293,14482849:554432 -) -g183,140:14831293,14482849 -(183,140:15154199,14482849:501378,78643,0 -$183,140:15154199,14482849 -(183,140:15318053,14482849:173670,78643,0 -) -$183,140:15655577,14482849 -) -(183,140:15655577,14482849:501378,78643,0 -(183,140:15819431,14482849:173670,78643,0 -) -) -(183,140:16156955,14482849:501378,78643,0 -(183,140:16320809,14482849:173670,78643,0 -) -) -(183,140:16658333,14482849:501378,78643,0 -(183,140:16822187,14482849:173670,78643,0 -) -) -(183,140:17159711,14482849:501378,78643,0 -(183,140:17323565,14482849:173670,78643,0 -) -) -(183,140:17661089,14482849:501378,78643,0 -(183,140:17824943,14482849:173670,78643,0 -) -) -(183,140:18162467,14482849:501378,78643,0 -(183,140:18326321,14482849:173670,78643,0 -) -) -(183,140:18663845,14482849:501378,78643,0 -(183,140:18827699,14482849:173670,78643,0 -) -) -(183,140:19165223,14482849:501378,78643,0 -(183,140:19329077,14482849:173670,78643,0 -) -) -(183,140:19666601,14482849:501378,78643,0 -(183,140:19830455,14482849:173670,78643,0 -) -) -(183,140:20167979,14482849:501378,78643,0 -(183,140:20331833,14482849:173670,78643,0 -) -) -(183,140:20669357,14482849:501378,78643,0 -(183,140:20833211,14482849:173670,78643,0 -) -) -(183,140:21170735,14482849:501378,78643,0 -(183,140:21334589,14482849:173670,78643,0 -) -) -(183,140:21672113,14482849:501378,78643,0 -(183,140:21835967,14482849:173670,78643,0 -) -) -(183,140:22173491,14482849:501378,78643,0 -(183,140:22337345,14482849:173670,78643,0 -) -) -(183,140:22674869,14482849:501378,78643,0 -(183,140:22838723,14482849:173670,78643,0 -) -) -(183,140:23176247,14482849:501378,78643,0 -(183,140:23340101,14482849:173670,78643,0 -) -) -(183,140:23677625,14482849:501378,78643,0 -(183,140:23841479,14482849:173670,78643,0 -) -) -(183,140:24179003,14482849:501378,78643,0 -(183,140:24342857,14482849:173670,78643,0 -) -) -(183,140:24680381,14482849:501378,78643,0 -(183,140:24844235,14482849:173670,78643,0 -) -) -(183,140:25181759,14482849:501378,78643,0 -(183,140:25345613,14482849:173670,78643,0 -) -) -(183,140:25683137,14482849:501378,78643,0 -(183,140:25846991,14482849:173670,78643,0 -) -) -(183,140:26184515,14482849:501378,78643,0 -(183,140:26348369,14482849:173670,78643,0 -) -) -(183,140:26685893,14482849:501378,78643,0 -(183,140:26849747,14482849:173670,78643,0 -) -) -(183,140:27187271,14482849:501378,78643,0 -(183,140:27351125,14482849:173670,78643,0 -) -) -(183,140:27688649,14482849:501378,78643,0 -(183,140:27852503,14482849:173670,78643,0 -) -) -(183,140:28190027,14482849:501378,78643,0 -(183,140:28353881,14482849:173670,78643,0 -) -) -(183,140:28691405,14482849:501378,78643,0 -(183,140:28855259,14482849:173670,78643,0 -) -) -(183,140:29192783,14482849:501378,78643,0 -(183,140:29356637,14482849:173670,78643,0 -) -) -(183,140:29694161,14482849:501378,78643,0 -(183,140:29858015,14482849:173670,78643,0 -) -) -(183,140:30195539,14482849:501378,78643,0 -(183,140:30359393,14482849:173670,78643,0 -) -) -(183,140:30696917,14482849:501378,78643,0 -(183,140:30860771,14482849:173670,78643,0 -) -) -(183,140:31239539,14482849:1343490,485622,0 -k183,140:31239539,14482849:0 -k183,140:31387652,14482849:148113 -) -g183,140:30911859,14482849 -g183,140:32583029,14482849 -) -(183,141:6630773,15324337:25952256,485622,11795 -g183,141:11218293,15324337 -h183,141:11218293,15324337:2490370,0,0 -h183,141:13708663,15324337:0,0,0 -g183,141:9121143,15324337 -(183,141:9121143,15324337:2097150,485622,11795 -k183,141:11218293,15324337:554432 -) -g183,141:14096634,15324337 -(183,141:14151443,15324337:501378,78643,0 -$183,141:14151443,15324337 -(183,141:14315297,15324337:173670,78643,0 -) -$183,141:14652821,15324337 -) -(183,141:14652821,15324337:501378,78643,0 -(183,141:14816675,15324337:173670,78643,0 -) -) -(183,141:15154199,15324337:501378,78643,0 -(183,141:15318053,15324337:173670,78643,0 -) -) -(183,141:15655577,15324337:501378,78643,0 -(183,141:15819431,15324337:173670,78643,0 -) -) -(183,141:16156955,15324337:501378,78643,0 -(183,141:16320809,15324337:173670,78643,0 -) -) -(183,141:16658333,15324337:501378,78643,0 -(183,141:16822187,15324337:173670,78643,0 -) -) -(183,141:17159711,15324337:501378,78643,0 -(183,141:17323565,15324337:173670,78643,0 -) -) -(183,141:17661089,15324337:501378,78643,0 -(183,141:17824943,15324337:173670,78643,0 -) -) -(183,141:18162467,15324337:501378,78643,0 -(183,141:18326321,15324337:173670,78643,0 -) -) -(183,141:18663845,15324337:501378,78643,0 -(183,141:18827699,15324337:173670,78643,0 -) -) -(183,141:19165223,15324337:501378,78643,0 -(183,141:19329077,15324337:173670,78643,0 -) -) -(183,141:19666601,15324337:501378,78643,0 -(183,141:19830455,15324337:173670,78643,0 -) -) -(183,141:20167979,15324337:501378,78643,0 -(183,141:20331833,15324337:173670,78643,0 -) -) -(183,141:20669357,15324337:501378,78643,0 -(183,141:20833211,15324337:173670,78643,0 -) -) -(183,141:21170735,15324337:501378,78643,0 -(183,141:21334589,15324337:173670,78643,0 -) -) -(183,141:21672113,15324337:501378,78643,0 -(183,141:21835967,15324337:173670,78643,0 -) -) -(183,141:22173491,15324337:501378,78643,0 -(183,141:22337345,15324337:173670,78643,0 -) -) -(183,141:22674869,15324337:501378,78643,0 -(183,141:22838723,15324337:173670,78643,0 -) -) -(183,141:23176247,15324337:501378,78643,0 -(183,141:23340101,15324337:173670,78643,0 -) -) -(183,141:23677625,15324337:501378,78643,0 -(183,141:23841479,15324337:173670,78643,0 -) -) -(183,141:24179003,15324337:501378,78643,0 -(183,141:24342857,15324337:173670,78643,0 -) -) -(183,141:24680381,15324337:501378,78643,0 -(183,141:24844235,15324337:173670,78643,0 -) -) -(183,141:25181759,15324337:501378,78643,0 -(183,141:25345613,15324337:173670,78643,0 -) -) -(183,141:25683137,15324337:501378,78643,0 -(183,141:25846991,15324337:173670,78643,0 -) -) -(183,141:26184515,15324337:501378,78643,0 -(183,141:26348369,15324337:173670,78643,0 -) -) -(183,141:26685893,15324337:501378,78643,0 -(183,141:26849747,15324337:173670,78643,0 -) -) -(183,141:27187271,15324337:501378,78643,0 -(183,141:27351125,15324337:173670,78643,0 -) -) -(183,141:27688649,15324337:501378,78643,0 -(183,141:27852503,15324337:173670,78643,0 -) -) -(183,141:28190027,15324337:501378,78643,0 -(183,141:28353881,15324337:173670,78643,0 -) -) -(183,141:28691405,15324337:501378,78643,0 -(183,141:28855259,15324337:173670,78643,0 -) -) -(183,141:29192783,15324337:501378,78643,0 -(183,141:29356637,15324337:173670,78643,0 -) -) -(183,141:29694161,15324337:501378,78643,0 -(183,141:29858015,15324337:173670,78643,0 -) -) -(183,141:30195539,15324337:501378,78643,0 -(183,141:30359393,15324337:173670,78643,0 -) -) -(183,141:30696917,15324337:501378,78643,0 -(183,141:30860771,15324337:173670,78643,0 -) -) -(183,141:31239538,15324337:1343490,485622,0 -k183,141:31239538,15324337:0 -k183,141:31387651,15324337:148113 -) -g183,141:30911858,15324337 -g183,141:32583028,15324337 -) -(183,142:6630773,16165825:25952256,505283,11795 -g183,142:11218293,16165825 -h183,142:11218293,16165825:2490370,0,0 -h183,142:13708663,16165825:0,0,0 -g183,142:9121143,16165825 -(183,142:9121143,16165825:2097150,485622,11795 -k183,142:11218293,16165825:554432 -) -g183,142:13145707,16165825 -(183,142:13148687,16165825:501378,78643,0 -$183,142:13148687,16165825 -(183,142:13312541,16165825:173670,78643,0 -) -$183,142:13650065,16165825 -) -(183,142:13650065,16165825:501378,78643,0 -(183,142:13813919,16165825:173670,78643,0 -) -) -(183,142:14151443,16165825:501378,78643,0 -(183,142:14315297,16165825:173670,78643,0 -) -) -(183,142:14652821,16165825:501378,78643,0 -(183,142:14816675,16165825:173670,78643,0 -) -) -(183,142:15154199,16165825:501378,78643,0 -(183,142:15318053,16165825:173670,78643,0 -) -) -(183,142:15655577,16165825:501378,78643,0 -(183,142:15819431,16165825:173670,78643,0 -) -) -(183,142:16156955,16165825:501378,78643,0 -(183,142:16320809,16165825:173670,78643,0 -) -) -(183,142:16658333,16165825:501378,78643,0 -(183,142:16822187,16165825:173670,78643,0 -) -) -(183,142:17159711,16165825:501378,78643,0 -(183,142:17323565,16165825:173670,78643,0 -) -) -(183,142:17661089,16165825:501378,78643,0 -(183,142:17824943,16165825:173670,78643,0 -) -) -(183,142:18162467,16165825:501378,78643,0 -(183,142:18326321,16165825:173670,78643,0 -) -) -(183,142:18663845,16165825:501378,78643,0 -(183,142:18827699,16165825:173670,78643,0 -) -) -(183,142:19165223,16165825:501378,78643,0 -(183,142:19329077,16165825:173670,78643,0 -) -) -(183,142:19666601,16165825:501378,78643,0 -(183,142:19830455,16165825:173670,78643,0 -) -) -(183,142:20167979,16165825:501378,78643,0 -(183,142:20331833,16165825:173670,78643,0 -) -) -(183,142:20669357,16165825:501378,78643,0 -(183,142:20833211,16165825:173670,78643,0 -) -) -(183,142:21170735,16165825:501378,78643,0 -(183,142:21334589,16165825:173670,78643,0 -) -) -(183,142:21672113,16165825:501378,78643,0 -(183,142:21835967,16165825:173670,78643,0 -) -) -(183,142:22173491,16165825:501378,78643,0 -(183,142:22337345,16165825:173670,78643,0 -) -) -(183,142:22674869,16165825:501378,78643,0 -(183,142:22838723,16165825:173670,78643,0 -) -) -(183,142:23176247,16165825:501378,78643,0 -(183,142:23340101,16165825:173670,78643,0 -) -) -(183,142:23677625,16165825:501378,78643,0 -(183,142:23841479,16165825:173670,78643,0 -) -) -(183,142:24179003,16165825:501378,78643,0 -(183,142:24342857,16165825:173670,78643,0 -) -) -(183,142:24680381,16165825:501378,78643,0 -(183,142:24844235,16165825:173670,78643,0 -) -) -(183,142:25181759,16165825:501378,78643,0 -(183,142:25345613,16165825:173670,78643,0 -) -) -(183,142:25683137,16165825:501378,78643,0 -(183,142:25846991,16165825:173670,78643,0 -) -) -(183,142:26184515,16165825:501378,78643,0 -(183,142:26348369,16165825:173670,78643,0 -) -) -(183,142:26685893,16165825:501378,78643,0 -(183,142:26849747,16165825:173670,78643,0 -) -) -(183,142:27187271,16165825:501378,78643,0 -(183,142:27351125,16165825:173670,78643,0 -) -) -(183,142:27688649,16165825:501378,78643,0 -(183,142:27852503,16165825:173670,78643,0 -) -) -(183,142:28190027,16165825:501378,78643,0 -(183,142:28353881,16165825:173670,78643,0 -) -) -(183,142:28691405,16165825:501378,78643,0 -(183,142:28855259,16165825:173670,78643,0 -) -) -(183,142:29192783,16165825:501378,78643,0 -(183,142:29356637,16165825:173670,78643,0 -) -) -(183,142:29694161,16165825:501378,78643,0 -(183,142:29858015,16165825:173670,78643,0 -) -) -(183,142:30195539,16165825:501378,78643,0 -(183,142:30359393,16165825:173670,78643,0 -) -) -(183,142:30696917,16165825:501378,78643,0 -(183,142:30860771,16165825:173670,78643,0 -) -) -(183,142:31239539,16165825:1343490,485622,0 -k183,142:31239539,16165825:0 -k183,142:31387652,16165825:148113 -) -g183,142:30911859,16165825 -g183,142:32583029,16165825 -) -(183,143:6630773,17007313:25952256,505283,126483 -g183,143:11218293,17007313 -h183,143:11218293,17007313:2490370,0,0 -h183,143:13708663,17007313:0,0,0 -g183,143:9121143,17007313 -(183,143:9121143,17007313:2097150,485622,11795 -k183,143:11218293,17007313:554432 -) -g183,143:14947291,17007313 -g183,143:17523511,17007313 -(183,143:17661089,17007313:501378,78643,0 -$183,143:17661089,17007313 -(183,143:17824943,17007313:173670,78643,0 -) -$183,143:18162467,17007313 -) -(183,143:18162467,17007313:501378,78643,0 -(183,143:18326321,17007313:173670,78643,0 -) -) -(183,143:18663845,17007313:501378,78643,0 -(183,143:18827699,17007313:173670,78643,0 -) -) -(183,143:19165223,17007313:501378,78643,0 -(183,143:19329077,17007313:173670,78643,0 -) -) -(183,143:19666601,17007313:501378,78643,0 -(183,143:19830455,17007313:173670,78643,0 -) -) -(183,143:20167979,17007313:501378,78643,0 -(183,143:20331833,17007313:173670,78643,0 -) -) -(183,143:20669357,17007313:501378,78643,0 -(183,143:20833211,17007313:173670,78643,0 -) -) -(183,143:21170735,17007313:501378,78643,0 -(183,143:21334589,17007313:173670,78643,0 -) -) -(183,143:21672113,17007313:501378,78643,0 -(183,143:21835967,17007313:173670,78643,0 -) -) -(183,143:22173491,17007313:501378,78643,0 -(183,143:22337345,17007313:173670,78643,0 -) -) -(183,143:22674869,17007313:501378,78643,0 -(183,143:22838723,17007313:173670,78643,0 -) -) -(183,143:23176247,17007313:501378,78643,0 -(183,143:23340101,17007313:173670,78643,0 -) -) -(183,143:23677625,17007313:501378,78643,0 -(183,143:23841479,17007313:173670,78643,0 -) -) -(183,143:24179003,17007313:501378,78643,0 -(183,143:24342857,17007313:173670,78643,0 -) -) -(183,143:24680381,17007313:501378,78643,0 -(183,143:24844235,17007313:173670,78643,0 -) -) -(183,143:25181759,17007313:501378,78643,0 -(183,143:25345613,17007313:173670,78643,0 -) -) -(183,143:25683137,17007313:501378,78643,0 -(183,143:25846991,17007313:173670,78643,0 -) -) -(183,143:26184515,17007313:501378,78643,0 -(183,143:26348369,17007313:173670,78643,0 -) -) -(183,143:26685893,17007313:501378,78643,0 -(183,143:26849747,17007313:173670,78643,0 -) -) -(183,143:27187271,17007313:501378,78643,0 -(183,143:27351125,17007313:173670,78643,0 -) -) -(183,143:27688649,17007313:501378,78643,0 -(183,143:27852503,17007313:173670,78643,0 -) -) -(183,143:28190027,17007313:501378,78643,0 -(183,143:28353881,17007313:173670,78643,0 -) -) -(183,143:28691405,17007313:501378,78643,0 -(183,143:28855259,17007313:173670,78643,0 -) -) -(183,143:29192783,17007313:501378,78643,0 -(183,143:29356637,17007313:173670,78643,0 -) -) -(183,143:29694161,17007313:501378,78643,0 -(183,143:29858015,17007313:173670,78643,0 -) -) -(183,143:30195539,17007313:501378,78643,0 -(183,143:30359393,17007313:173670,78643,0 -) -) -(183,143:30696917,17007313:501378,78643,0 -(183,143:30860771,17007313:173670,78643,0 -) -) -(183,143:31239539,17007313:1343490,485622,11795 -k183,143:31239539,17007313:0 -k183,143:31387652,17007313:148113 -) -g183,143:30911859,17007313 -g183,143:32583029,17007313 -) -(183,144:6630773,17848801:25952256,505283,11795 -g183,144:11218293,17848801 -h183,144:11218293,17848801:2490370,0,0 -h183,144:13708663,17848801:0,0,0 -g183,144:9121143,17848801 -(183,144:9121143,17848801:2097150,485622,11795 -k183,144:11218293,17848801:554432 -) -g183,144:13712593,17848801 -(183,144:14151443,17848801:501378,78643,0 -$183,144:14151443,17848801 -(183,144:14315297,17848801:173670,78643,0 -) -$183,144:14652821,17848801 -) -(183,144:14652821,17848801:501378,78643,0 -(183,144:14816675,17848801:173670,78643,0 -) -) -(183,144:15154199,17848801:501378,78643,0 -(183,144:15318053,17848801:173670,78643,0 -) -) -(183,144:15655577,17848801:501378,78643,0 -(183,144:15819431,17848801:173670,78643,0 -) -) -(183,144:16156955,17848801:501378,78643,0 -(183,144:16320809,17848801:173670,78643,0 -) -) -(183,144:16658333,17848801:501378,78643,0 -(183,144:16822187,17848801:173670,78643,0 -) -) -(183,144:17159711,17848801:501378,78643,0 -(183,144:17323565,17848801:173670,78643,0 -) -) -(183,144:17661089,17848801:501378,78643,0 -(183,144:17824943,17848801:173670,78643,0 -) -) -(183,144:18162467,17848801:501378,78643,0 -(183,144:18326321,17848801:173670,78643,0 -) -) -(183,144:18663845,17848801:501378,78643,0 -(183,144:18827699,17848801:173670,78643,0 -) -) -(183,144:19165223,17848801:501378,78643,0 -(183,144:19329077,17848801:173670,78643,0 -) -) -(183,144:19666601,17848801:501378,78643,0 -(183,144:19830455,17848801:173670,78643,0 -) -) -(183,144:20167979,17848801:501378,78643,0 -(183,144:20331833,17848801:173670,78643,0 -) -) -(183,144:20669357,17848801:501378,78643,0 -(183,144:20833211,17848801:173670,78643,0 -) -) -(183,144:21170735,17848801:501378,78643,0 -(183,144:21334589,17848801:173670,78643,0 -) -) -(183,144:21672113,17848801:501378,78643,0 -(183,144:21835967,17848801:173670,78643,0 -) -) -(183,144:22173491,17848801:501378,78643,0 -(183,144:22337345,17848801:173670,78643,0 -) -) -(183,144:22674869,17848801:501378,78643,0 -(183,144:22838723,17848801:173670,78643,0 -) -) -(183,144:23176247,17848801:501378,78643,0 -(183,144:23340101,17848801:173670,78643,0 -) -) -(183,144:23677625,17848801:501378,78643,0 -(183,144:23841479,17848801:173670,78643,0 -) -) -(183,144:24179003,17848801:501378,78643,0 -(183,144:24342857,17848801:173670,78643,0 -) -) -(183,144:24680381,17848801:501378,78643,0 -(183,144:24844235,17848801:173670,78643,0 -) -) -(183,144:25181759,17848801:501378,78643,0 -(183,144:25345613,17848801:173670,78643,0 -) -) -(183,144:25683137,17848801:501378,78643,0 -(183,144:25846991,17848801:173670,78643,0 -) -) -(183,144:26184515,17848801:501378,78643,0 -(183,144:26348369,17848801:173670,78643,0 -) -) -(183,144:26685893,17848801:501378,78643,0 -(183,144:26849747,17848801:173670,78643,0 -) -) -(183,144:27187271,17848801:501378,78643,0 -(183,144:27351125,17848801:173670,78643,0 -) -) -(183,144:27688649,17848801:501378,78643,0 -(183,144:27852503,17848801:173670,78643,0 -) -) -(183,144:28190027,17848801:501378,78643,0 -(183,144:28353881,17848801:173670,78643,0 -) -) -(183,144:28691405,17848801:501378,78643,0 -(183,144:28855259,17848801:173670,78643,0 -) -) -(183,144:29192783,17848801:501378,78643,0 -(183,144:29356637,17848801:173670,78643,0 -) -) -(183,144:29694161,17848801:501378,78643,0 -(183,144:29858015,17848801:173670,78643,0 -) -) -(183,144:30195539,17848801:501378,78643,0 -(183,144:30359393,17848801:173670,78643,0 -) -) -(183,144:30696917,17848801:501378,78643,0 -(183,144:30860771,17848801:173670,78643,0 -) -) -(183,144:31239539,17848801:1343490,485622,11795 -k183,144:31239539,17848801:0 -k183,144:31387652,17848801:148113 -) -g183,144:30911859,17848801 -g183,144:32583029,17848801 -) -(183,145:6630773,18690289:25952256,505283,134348 -g183,145:11218293,18690289 -h183,145:11218293,18690289:2490370,0,0 -h183,145:13708663,18690289:0,0,0 -g183,145:9121143,18690289 -(183,145:9121143,18690289:2097150,485622,11795 -k183,145:11218293,18690289:554432 -) -g183,145:12649599,18690289 -g183,145:14609125,18690289 -(183,145:14652821,18690289:501378,78643,0 -$183,145:14652821,18690289 -(183,145:14816675,18690289:173670,78643,0 -) -$183,145:15154199,18690289 -) -(183,145:15154199,18690289:501378,78643,0 -(183,145:15318053,18690289:173670,78643,0 -) -) -(183,145:15655577,18690289:501378,78643,0 -(183,145:15819431,18690289:173670,78643,0 -) -) -(183,145:16156955,18690289:501378,78643,0 -(183,145:16320809,18690289:173670,78643,0 -) -) -(183,145:16658333,18690289:501378,78643,0 -(183,145:16822187,18690289:173670,78643,0 -) -) -(183,145:17159711,18690289:501378,78643,0 -(183,145:17323565,18690289:173670,78643,0 -) -) -(183,145:17661089,18690289:501378,78643,0 -(183,145:17824943,18690289:173670,78643,0 -) -) -(183,145:18162467,18690289:501378,78643,0 -(183,145:18326321,18690289:173670,78643,0 -) -) -(183,145:18663845,18690289:501378,78643,0 -(183,145:18827699,18690289:173670,78643,0 -) -) -(183,145:19165223,18690289:501378,78643,0 -(183,145:19329077,18690289:173670,78643,0 -) -) -(183,145:19666601,18690289:501378,78643,0 -(183,145:19830455,18690289:173670,78643,0 -) -) -(183,145:20167979,18690289:501378,78643,0 -(183,145:20331833,18690289:173670,78643,0 -) -) -(183,145:20669357,18690289:501378,78643,0 -(183,145:20833211,18690289:173670,78643,0 -) -) -(183,145:21170735,18690289:501378,78643,0 -(183,145:21334589,18690289:173670,78643,0 -) -) -(183,145:21672113,18690289:501378,78643,0 -(183,145:21835967,18690289:173670,78643,0 -) -) -(183,145:22173491,18690289:501378,78643,0 -(183,145:22337345,18690289:173670,78643,0 -) -) -(183,145:22674869,18690289:501378,78643,0 -(183,145:22838723,18690289:173670,78643,0 -) -) -(183,145:23176247,18690289:501378,78643,0 -(183,145:23340101,18690289:173670,78643,0 -) -) -(183,145:23677625,18690289:501378,78643,0 -(183,145:23841479,18690289:173670,78643,0 -) -) -(183,145:24179003,18690289:501378,78643,0 -(183,145:24342857,18690289:173670,78643,0 -) -) -(183,145:24680381,18690289:501378,78643,0 -(183,145:24844235,18690289:173670,78643,0 -) -) -(183,145:25181759,18690289:501378,78643,0 -(183,145:25345613,18690289:173670,78643,0 -) -) -(183,145:25683137,18690289:501378,78643,0 -(183,145:25846991,18690289:173670,78643,0 -) -) -(183,145:26184515,18690289:501378,78643,0 -(183,145:26348369,18690289:173670,78643,0 -) -) -(183,145:26685893,18690289:501378,78643,0 -(183,145:26849747,18690289:173670,78643,0 -) -) -(183,145:27187271,18690289:501378,78643,0 -(183,145:27351125,18690289:173670,78643,0 -) -) -(183,145:27688649,18690289:501378,78643,0 -(183,145:27852503,18690289:173670,78643,0 -) -) -(183,145:28190027,18690289:501378,78643,0 -(183,145:28353881,18690289:173670,78643,0 -) -) -(183,145:28691405,18690289:501378,78643,0 -(183,145:28855259,18690289:173670,78643,0 -) -) -(183,145:29192783,18690289:501378,78643,0 -(183,145:29356637,18690289:173670,78643,0 -) -) -(183,145:29694161,18690289:501378,78643,0 -(183,145:29858015,18690289:173670,78643,0 -) -) -(183,145:30195539,18690289:501378,78643,0 -(183,145:30359393,18690289:173670,78643,0 -) -) -(183,145:30696917,18690289:501378,78643,0 -(183,145:30860771,18690289:173670,78643,0 -) -) -(183,145:31239539,18690289:1343490,485622,11795 -k183,145:31239539,18690289:0 -k183,145:31387652,18690289:148113 -) -g183,145:30911859,18690289 -g183,145:32583029,18690289 -) -(183,146:6630773,19531777:25952256,505283,11795 -g183,146:11218293,19531777 -h183,146:11218293,19531777:2490370,0,0 -h183,146:13708663,19531777:0,0,0 -g183,146:9121143,19531777 -(183,146:9121143,19531777:2097150,485622,11795 -k183,146:11218293,19531777:554432 -) -g183,146:12649599,19531777 -g183,146:16683995,19531777 -(183,146:17159711,19531777:501378,78643,0 -$183,146:17159711,19531777 -(183,146:17323565,19531777:173670,78643,0 -) -$183,146:17661089,19531777 -) -(183,146:17661089,19531777:501378,78643,0 -(183,146:17824943,19531777:173670,78643,0 -) -) -(183,146:18162467,19531777:501378,78643,0 -(183,146:18326321,19531777:173670,78643,0 -) -) -(183,146:18663845,19531777:501378,78643,0 -(183,146:18827699,19531777:173670,78643,0 -) -) -(183,146:19165223,19531777:501378,78643,0 -(183,146:19329077,19531777:173670,78643,0 -) -) -(183,146:19666601,19531777:501378,78643,0 -(183,146:19830455,19531777:173670,78643,0 -) -) -(183,146:20167979,19531777:501378,78643,0 -(183,146:20331833,19531777:173670,78643,0 -) -) -(183,146:20669357,19531777:501378,78643,0 -(183,146:20833211,19531777:173670,78643,0 -) -) -(183,146:21170735,19531777:501378,78643,0 -(183,146:21334589,19531777:173670,78643,0 -) -) -(183,146:21672113,19531777:501378,78643,0 -(183,146:21835967,19531777:173670,78643,0 -) -) -(183,146:22173491,19531777:501378,78643,0 -(183,146:22337345,19531777:173670,78643,0 -) -) -(183,146:22674869,19531777:501378,78643,0 -(183,146:22838723,19531777:173670,78643,0 -) -) -(183,146:23176247,19531777:501378,78643,0 -(183,146:23340101,19531777:173670,78643,0 -) -) -(183,146:23677625,19531777:501378,78643,0 -(183,146:23841479,19531777:173670,78643,0 -) -) -(183,146:24179003,19531777:501378,78643,0 -(183,146:24342857,19531777:173670,78643,0 -) -) -(183,146:24680381,19531777:501378,78643,0 -(183,146:24844235,19531777:173670,78643,0 -) -) -(183,146:25181759,19531777:501378,78643,0 -(183,146:25345613,19531777:173670,78643,0 -) -) -(183,146:25683137,19531777:501378,78643,0 -(183,146:25846991,19531777:173670,78643,0 -) -) -(183,146:26184515,19531777:501378,78643,0 -(183,146:26348369,19531777:173670,78643,0 -) -) -(183,146:26685893,19531777:501378,78643,0 -(183,146:26849747,19531777:173670,78643,0 -) -) -(183,146:27187271,19531777:501378,78643,0 -(183,146:27351125,19531777:173670,78643,0 -) -) -(183,146:27688649,19531777:501378,78643,0 -(183,146:27852503,19531777:173670,78643,0 -) -) -(183,146:28190027,19531777:501378,78643,0 -(183,146:28353881,19531777:173670,78643,0 -) -) -(183,146:28691405,19531777:501378,78643,0 -(183,146:28855259,19531777:173670,78643,0 -) -) -(183,146:29192783,19531777:501378,78643,0 -(183,146:29356637,19531777:173670,78643,0 -) -) -(183,146:29694161,19531777:501378,78643,0 -(183,146:29858015,19531777:173670,78643,0 -) -) -(183,146:30195539,19531777:501378,78643,0 -(183,146:30359393,19531777:173670,78643,0 -) -) -(183,146:30696917,19531777:501378,78643,0 -(183,146:30860771,19531777:173670,78643,0 -) -) -(183,146:31239539,19531777:1343490,485622,11795 -k183,146:31239539,19531777:0 -k183,146:31387652,19531777:148113 -) -g183,146:30911859,19531777 -g183,146:32583029,19531777 -) -(183,147:6630773,20373265:25952256,505283,134348 -g183,147:11218293,20373265 -h183,147:11218293,20373265:2490370,0,0 -h183,147:13708663,20373265:0,0,0 -g183,147:9121143,20373265 -(183,147:9121143,20373265:2097150,485622,11795 -k183,147:11218293,20373265:155974 -) -g183,147:12979900,20373265 -g183,147:13865291,20373265 -g183,147:14479363,20373265 -g183,147:16769191,20373265 -(183,147:17159711,20373265:501378,78643,0 -$183,147:17159711,20373265 -(183,147:17323565,20373265:173670,78643,0 -) -$183,147:17661089,20373265 -) -(183,147:17661089,20373265:501378,78643,0 -(183,147:17824943,20373265:173670,78643,0 -) -) -(183,147:18162467,20373265:501378,78643,0 -(183,147:18326321,20373265:173670,78643,0 -) -) -(183,147:18663845,20373265:501378,78643,0 -(183,147:18827699,20373265:173670,78643,0 -) -) -(183,147:19165223,20373265:501378,78643,0 -(183,147:19329077,20373265:173670,78643,0 -) -) -(183,147:19666601,20373265:501378,78643,0 -(183,147:19830455,20373265:173670,78643,0 -) -) -(183,147:20167979,20373265:501378,78643,0 -(183,147:20331833,20373265:173670,78643,0 -) -) -(183,147:20669357,20373265:501378,78643,0 -(183,147:20833211,20373265:173670,78643,0 -) -) -(183,147:21170735,20373265:501378,78643,0 -(183,147:21334589,20373265:173670,78643,0 -) -) -(183,147:21672113,20373265:501378,78643,0 -(183,147:21835967,20373265:173670,78643,0 -) -) -(183,147:22173491,20373265:501378,78643,0 -(183,147:22337345,20373265:173670,78643,0 -) -) -(183,147:22674869,20373265:501378,78643,0 -(183,147:22838723,20373265:173670,78643,0 -) -) -(183,147:23176247,20373265:501378,78643,0 -(183,147:23340101,20373265:173670,78643,0 -) -) -(183,147:23677625,20373265:501378,78643,0 -(183,147:23841479,20373265:173670,78643,0 -) -) -(183,147:24179003,20373265:501378,78643,0 -(183,147:24342857,20373265:173670,78643,0 -) -) -(183,147:24680381,20373265:501378,78643,0 -(183,147:24844235,20373265:173670,78643,0 -) -) -(183,147:25181759,20373265:501378,78643,0 -(183,147:25345613,20373265:173670,78643,0 -) -) -(183,147:25683137,20373265:501378,78643,0 -(183,147:25846991,20373265:173670,78643,0 -) -) -(183,147:26184515,20373265:501378,78643,0 -(183,147:26348369,20373265:173670,78643,0 -) -) -(183,147:26685893,20373265:501378,78643,0 -(183,147:26849747,20373265:173670,78643,0 -) -) -(183,147:27187271,20373265:501378,78643,0 -(183,147:27351125,20373265:173670,78643,0 -) -) -(183,147:27688649,20373265:501378,78643,0 -(183,147:27852503,20373265:173670,78643,0 -) -) -(183,147:28190027,20373265:501378,78643,0 -(183,147:28353881,20373265:173670,78643,0 -) -) -(183,147:28691405,20373265:501378,78643,0 -(183,147:28855259,20373265:173670,78643,0 -) -) -(183,147:29192783,20373265:501378,78643,0 -(183,147:29356637,20373265:173670,78643,0 -) -) -(183,147:29694161,20373265:501378,78643,0 -(183,147:29858015,20373265:173670,78643,0 -) -) -(183,147:30195539,20373265:501378,78643,0 -(183,147:30359393,20373265:173670,78643,0 -) -) -(183,147:30696917,20373265:501378,78643,0 -(183,147:30860771,20373265:173670,78643,0 -) -) -(183,147:31239539,20373265:1343490,485622,11795 -k183,147:31239539,20373265:0 -k183,147:31387652,20373265:148113 -) -g183,147:30911859,20373265 -g183,147:32583029,20373265 -) -(183,148:6630773,21214753:25952256,505283,134348 -g183,148:11218293,21214753 -h183,148:11218293,21214753:2490370,0,0 -h183,148:13708663,21214753:0,0,0 -g183,148:9121143,21214753 -(183,148:9121143,21214753:2097150,485622,11795 -k183,148:11218293,21214753:155974 -) -g183,148:14499025,21214753 -g183,148:15349682,21214753 -g183,148:18524246,21214753 -(183,148:18663845,21214753:501378,78643,0 -$183,148:18663845,21214753 -(183,148:18827699,21214753:173670,78643,0 -) -$183,148:19165223,21214753 -) -(183,148:19165223,21214753:501378,78643,0 -(183,148:19329077,21214753:173670,78643,0 -) -) -(183,148:19666601,21214753:501378,78643,0 -(183,148:19830455,21214753:173670,78643,0 -) -) -(183,148:20167979,21214753:501378,78643,0 -(183,148:20331833,21214753:173670,78643,0 -) -) -(183,148:20669357,21214753:501378,78643,0 -(183,148:20833211,21214753:173670,78643,0 -) -) -(183,148:21170735,21214753:501378,78643,0 -(183,148:21334589,21214753:173670,78643,0 -) -) -(183,148:21672113,21214753:501378,78643,0 -(183,148:21835967,21214753:173670,78643,0 -) -) -(183,148:22173491,21214753:501378,78643,0 -(183,148:22337345,21214753:173670,78643,0 -) -) -(183,148:22674869,21214753:501378,78643,0 -(183,148:22838723,21214753:173670,78643,0 -) -) -(183,148:23176247,21214753:501378,78643,0 -(183,148:23340101,21214753:173670,78643,0 -) -) -(183,148:23677625,21214753:501378,78643,0 -(183,148:23841479,21214753:173670,78643,0 -) -) -(183,148:24179003,21214753:501378,78643,0 -(183,148:24342857,21214753:173670,78643,0 -) -) -(183,148:24680381,21214753:501378,78643,0 -(183,148:24844235,21214753:173670,78643,0 -) -) -(183,148:25181759,21214753:501378,78643,0 -(183,148:25345613,21214753:173670,78643,0 -) -) -(183,148:25683137,21214753:501378,78643,0 -(183,148:25846991,21214753:173670,78643,0 -) -) -(183,148:26184515,21214753:501378,78643,0 -(183,148:26348369,21214753:173670,78643,0 -) -) -(183,148:26685893,21214753:501378,78643,0 -(183,148:26849747,21214753:173670,78643,0 -) -) -(183,148:27187271,21214753:501378,78643,0 -(183,148:27351125,21214753:173670,78643,0 -) -) -(183,148:27688649,21214753:501378,78643,0 -(183,148:27852503,21214753:173670,78643,0 -) -) -(183,148:28190027,21214753:501378,78643,0 -(183,148:28353881,21214753:173670,78643,0 -) -) -(183,148:28691405,21214753:501378,78643,0 -(183,148:28855259,21214753:173670,78643,0 -) -) -(183,148:29192783,21214753:501378,78643,0 -(183,148:29356637,21214753:173670,78643,0 -) -) -(183,148:29694161,21214753:501378,78643,0 -(183,148:29858015,21214753:173670,78643,0 -) -) -(183,148:30195539,21214753:501378,78643,0 -(183,148:30359393,21214753:173670,78643,0 -) -) -(183,148:30696917,21214753:501378,78643,0 -(183,148:30860771,21214753:173670,78643,0 -) -) -(183,148:31239539,21214753:1343490,485622,11795 -k183,148:31239539,21214753:0 -k183,148:31387652,21214753:148113 -) -g183,148:30911859,21214753 -g183,148:32583029,21214753 -) -(183,149:6630773,22056241:25952256,485622,11795 -g183,149:9121143,22056241 -h183,149:9121143,22056241:983040,0,0 -h183,149:10104183,22056241:0,0,0 -g183,149:7613813,22056241 -(183,149:7613813,22056241:1507330,481690,0 -k183,149:9121143,22056241:536742 -) -g183,149:12933372,22056241 -g183,149:12933372,22056241 -(183,149:13148687,22056241:501378,78643,0 -$183,149:13148687,22056241 -(183,149:13312541,22056241:173670,78643,0 -) -$183,149:13650065,22056241 -) -(183,149:13650065,22056241:501378,78643,0 -(183,149:13813919,22056241:173670,78643,0 -) -) -(183,149:14151443,22056241:501378,78643,0 -(183,149:14315297,22056241:173670,78643,0 -) -) -(183,149:14652821,22056241:501378,78643,0 -(183,149:14816675,22056241:173670,78643,0 -) -) -(183,149:15154199,22056241:501378,78643,0 -(183,149:15318053,22056241:173670,78643,0 -) -) -(183,149:15655577,22056241:501378,78643,0 -(183,149:15819431,22056241:173670,78643,0 -) -) -(183,149:16156955,22056241:501378,78643,0 -(183,149:16320809,22056241:173670,78643,0 -) -) -(183,149:16658333,22056241:501378,78643,0 -(183,149:16822187,22056241:173670,78643,0 -) -) -(183,149:17159711,22056241:501378,78643,0 -(183,149:17323565,22056241:173670,78643,0 -) -) -(183,149:17661089,22056241:501378,78643,0 -(183,149:17824943,22056241:173670,78643,0 -) -) -(183,149:18162467,22056241:501378,78643,0 -(183,149:18326321,22056241:173670,78643,0 -) -) -(183,149:18663845,22056241:501378,78643,0 -(183,149:18827699,22056241:173670,78643,0 -) -) -(183,149:19165223,22056241:501378,78643,0 -(183,149:19329077,22056241:173670,78643,0 -) -) -(183,149:19666601,22056241:501378,78643,0 -(183,149:19830455,22056241:173670,78643,0 -) -) -(183,149:20167979,22056241:501378,78643,0 -(183,149:20331833,22056241:173670,78643,0 -) -) -(183,149:20669357,22056241:501378,78643,0 -(183,149:20833211,22056241:173670,78643,0 -) -) -(183,149:21170735,22056241:501378,78643,0 -(183,149:21334589,22056241:173670,78643,0 -) -) -(183,149:21672113,22056241:501378,78643,0 -(183,149:21835967,22056241:173670,78643,0 -) -) -(183,149:22173491,22056241:501378,78643,0 -(183,149:22337345,22056241:173670,78643,0 -) -) -(183,149:22674869,22056241:501378,78643,0 -(183,149:22838723,22056241:173670,78643,0 -) -) -(183,149:23176247,22056241:501378,78643,0 -(183,149:23340101,22056241:173670,78643,0 -) -) -(183,149:23677625,22056241:501378,78643,0 -(183,149:23841479,22056241:173670,78643,0 -) -) -(183,149:24179003,22056241:501378,78643,0 -(183,149:24342857,22056241:173670,78643,0 -) -) -(183,149:24680381,22056241:501378,78643,0 -(183,149:24844235,22056241:173670,78643,0 -) -) -(183,149:25181759,22056241:501378,78643,0 -(183,149:25345613,22056241:173670,78643,0 -) -) -(183,149:25683137,22056241:501378,78643,0 -(183,149:25846991,22056241:173670,78643,0 -) -) -(183,149:26184515,22056241:501378,78643,0 -(183,149:26348369,22056241:173670,78643,0 -) -) -(183,149:26685893,22056241:501378,78643,0 -(183,149:26849747,22056241:173670,78643,0 -) -) -(183,149:27187271,22056241:501378,78643,0 -(183,149:27351125,22056241:173670,78643,0 -) -) -(183,149:27688649,22056241:501378,78643,0 -(183,149:27852503,22056241:173670,78643,0 -) -) -(183,149:28190027,22056241:501378,78643,0 -(183,149:28353881,22056241:173670,78643,0 -) -) -(183,149:28691405,22056241:501378,78643,0 -(183,149:28855259,22056241:173670,78643,0 -) -) -(183,149:29192783,22056241:501378,78643,0 -(183,149:29356637,22056241:173670,78643,0 -) -) -(183,149:29694161,22056241:501378,78643,0 -(183,149:29858015,22056241:173670,78643,0 -) -) -(183,149:30195539,22056241:501378,78643,0 -(183,149:30359393,22056241:173670,78643,0 -) -) -(183,149:30696917,22056241:501378,78643,0 -(183,149:30860771,22056241:173670,78643,0 -) -) -(183,149:31239540,22056241:1343490,485622,11795 -k183,149:31239540,22056241:0 -k183,149:31387653,22056241:148113 -) -g183,149:30911860,22056241 -g183,149:32583030,22056241 -) -(183,150:6630773,22897729:25952256,485622,11795 -g183,150:11218293,22897729 -h183,150:11218293,22897729:2490370,0,0 -h183,150:13708663,22897729:0,0,0 -g183,150:9121143,22897729 -(183,150:9121143,22897729:2097150,481690,0 -k183,150:11218293,22897729:554432 -) -g183,150:12861281,22897729 -(183,150:13148687,22897729:501378,78643,0 -$183,150:13148687,22897729 -(183,150:13312541,22897729:173670,78643,0 -) -$183,150:13650065,22897729 -) -(183,150:13650065,22897729:501378,78643,0 -(183,150:13813919,22897729:173670,78643,0 -) -) -(183,150:14151443,22897729:501378,78643,0 -(183,150:14315297,22897729:173670,78643,0 -) -) -(183,150:14652821,22897729:501378,78643,0 -(183,150:14816675,22897729:173670,78643,0 -) -) -(183,150:15154199,22897729:501378,78643,0 -(183,150:15318053,22897729:173670,78643,0 -) -) -(183,150:15655577,22897729:501378,78643,0 -(183,150:15819431,22897729:173670,78643,0 -) -) -(183,150:16156955,22897729:501378,78643,0 -(183,150:16320809,22897729:173670,78643,0 -) -) -(183,150:16658333,22897729:501378,78643,0 -(183,150:16822187,22897729:173670,78643,0 -) -) -(183,150:17159711,22897729:501378,78643,0 -(183,150:17323565,22897729:173670,78643,0 -) -) -(183,150:17661089,22897729:501378,78643,0 -(183,150:17824943,22897729:173670,78643,0 -) -) -(183,150:18162467,22897729:501378,78643,0 -(183,150:18326321,22897729:173670,78643,0 -) -) -(183,150:18663845,22897729:501378,78643,0 -(183,150:18827699,22897729:173670,78643,0 -) -) -(183,150:19165223,22897729:501378,78643,0 -(183,150:19329077,22897729:173670,78643,0 -) -) -(183,150:19666601,22897729:501378,78643,0 -(183,150:19830455,22897729:173670,78643,0 -) -) -(183,150:20167979,22897729:501378,78643,0 -(183,150:20331833,22897729:173670,78643,0 -) -) -(183,150:20669357,22897729:501378,78643,0 -(183,150:20833211,22897729:173670,78643,0 -) -) -(183,150:21170735,22897729:501378,78643,0 -(183,150:21334589,22897729:173670,78643,0 -) -) -(183,150:21672113,22897729:501378,78643,0 -(183,150:21835967,22897729:173670,78643,0 -) -) -(183,150:22173491,22897729:501378,78643,0 -(183,150:22337345,22897729:173670,78643,0 -) -) -(183,150:22674869,22897729:501378,78643,0 -(183,150:22838723,22897729:173670,78643,0 -) -) -(183,150:23176247,22897729:501378,78643,0 -(183,150:23340101,22897729:173670,78643,0 -) -) -(183,150:23677625,22897729:501378,78643,0 -(183,150:23841479,22897729:173670,78643,0 -) -) -(183,150:24179003,22897729:501378,78643,0 -(183,150:24342857,22897729:173670,78643,0 -) -) -(183,150:24680381,22897729:501378,78643,0 -(183,150:24844235,22897729:173670,78643,0 -) -) -(183,150:25181759,22897729:501378,78643,0 -(183,150:25345613,22897729:173670,78643,0 -) -) -(183,150:25683137,22897729:501378,78643,0 -(183,150:25846991,22897729:173670,78643,0 -) -) -(183,150:26184515,22897729:501378,78643,0 -(183,150:26348369,22897729:173670,78643,0 -) -) -(183,150:26685893,22897729:501378,78643,0 -(183,150:26849747,22897729:173670,78643,0 -) -) -(183,150:27187271,22897729:501378,78643,0 -(183,150:27351125,22897729:173670,78643,0 -) -) -(183,150:27688649,22897729:501378,78643,0 -(183,150:27852503,22897729:173670,78643,0 -) -) -(183,150:28190027,22897729:501378,78643,0 -(183,150:28353881,22897729:173670,78643,0 -) -) -(183,150:28691405,22897729:501378,78643,0 -(183,150:28855259,22897729:173670,78643,0 -) -) -(183,150:29192783,22897729:501378,78643,0 -(183,150:29356637,22897729:173670,78643,0 -) -) -(183,150:29694161,22897729:501378,78643,0 -(183,150:29858015,22897729:173670,78643,0 -) -) -(183,150:30195539,22897729:501378,78643,0 -(183,150:30359393,22897729:173670,78643,0 -) -) -(183,150:30696917,22897729:501378,78643,0 -(183,150:30860771,22897729:173670,78643,0 -) -) -(183,150:31239539,22897729:1343490,485622,11795 -k183,150:31239539,22897729:0 -k183,150:31387652,22897729:148113 -) -g183,150:30911859,22897729 -g183,150:32583029,22897729 -) -(183,151:6630773,23739217:25952256,485622,134348 -g183,151:11218293,23739217 -h183,151:11218293,23739217:2490370,0,0 -h183,151:13708663,23739217:0,0,0 -g183,151:9121143,23739217 -(183,151:9121143,23739217:2097150,485622,0 -k183,151:11218293,23739217:554432 -) -g183,151:12452336,23739217 -(183,151:12647309,23739217:501378,78643,0 -$183,151:12647309,23739217 -(183,151:12811163,23739217:173670,78643,0 -) -$183,151:13148687,23739217 -) -(183,151:13148687,23739217:501378,78643,0 -(183,151:13312541,23739217:173670,78643,0 -) -) -(183,151:13650065,23739217:501378,78643,0 -(183,151:13813919,23739217:173670,78643,0 -) -) -(183,151:14151443,23739217:501378,78643,0 -(183,151:14315297,23739217:173670,78643,0 -) -) -(183,151:14652821,23739217:501378,78643,0 -(183,151:14816675,23739217:173670,78643,0 -) -) -(183,151:15154199,23739217:501378,78643,0 -(183,151:15318053,23739217:173670,78643,0 -) -) -(183,151:15655577,23739217:501378,78643,0 -(183,151:15819431,23739217:173670,78643,0 -) -) -(183,151:16156955,23739217:501378,78643,0 -(183,151:16320809,23739217:173670,78643,0 -) -) -(183,151:16658333,23739217:501378,78643,0 -(183,151:16822187,23739217:173670,78643,0 -) -) -(183,151:17159711,23739217:501378,78643,0 -(183,151:17323565,23739217:173670,78643,0 -) -) -(183,151:17661089,23739217:501378,78643,0 -(183,151:17824943,23739217:173670,78643,0 -) -) -(183,151:18162467,23739217:501378,78643,0 -(183,151:18326321,23739217:173670,78643,0 -) -) -(183,151:18663845,23739217:501378,78643,0 -(183,151:18827699,23739217:173670,78643,0 -) -) -(183,151:19165223,23739217:501378,78643,0 -(183,151:19329077,23739217:173670,78643,0 -) -) -(183,151:19666601,23739217:501378,78643,0 -(183,151:19830455,23739217:173670,78643,0 -) -) -(183,151:20167979,23739217:501378,78643,0 -(183,151:20331833,23739217:173670,78643,0 -) -) -(183,151:20669357,23739217:501378,78643,0 -(183,151:20833211,23739217:173670,78643,0 -) -) -(183,151:21170735,23739217:501378,78643,0 -(183,151:21334589,23739217:173670,78643,0 -) -) -(183,151:21672113,23739217:501378,78643,0 -(183,151:21835967,23739217:173670,78643,0 -) -) -(183,151:22173491,23739217:501378,78643,0 -(183,151:22337345,23739217:173670,78643,0 -) -) -(183,151:22674869,23739217:501378,78643,0 -(183,151:22838723,23739217:173670,78643,0 -) -) -(183,151:23176247,23739217:501378,78643,0 -(183,151:23340101,23739217:173670,78643,0 -) -) -(183,151:23677625,23739217:501378,78643,0 -(183,151:23841479,23739217:173670,78643,0 -) -) -(183,151:24179003,23739217:501378,78643,0 -(183,151:24342857,23739217:173670,78643,0 -) -) -(183,151:24680381,23739217:501378,78643,0 -(183,151:24844235,23739217:173670,78643,0 -) -) -(183,151:25181759,23739217:501378,78643,0 -(183,151:25345613,23739217:173670,78643,0 -) -) -(183,151:25683137,23739217:501378,78643,0 -(183,151:25846991,23739217:173670,78643,0 -) -) -(183,151:26184515,23739217:501378,78643,0 -(183,151:26348369,23739217:173670,78643,0 -) -) -(183,151:26685893,23739217:501378,78643,0 -(183,151:26849747,23739217:173670,78643,0 -) -) -(183,151:27187271,23739217:501378,78643,0 -(183,151:27351125,23739217:173670,78643,0 -) -) -(183,151:27688649,23739217:501378,78643,0 -(183,151:27852503,23739217:173670,78643,0 -) -) -(183,151:28190027,23739217:501378,78643,0 -(183,151:28353881,23739217:173670,78643,0 -) -) -(183,151:28691405,23739217:501378,78643,0 -(183,151:28855259,23739217:173670,78643,0 -) -) -(183,151:29192783,23739217:501378,78643,0 -(183,151:29356637,23739217:173670,78643,0 -) -) -(183,151:29694161,23739217:501378,78643,0 -(183,151:29858015,23739217:173670,78643,0 -) -) -(183,151:30195539,23739217:501378,78643,0 -(183,151:30359393,23739217:173670,78643,0 -) -) -(183,151:30696917,23739217:501378,78643,0 -(183,151:30860771,23739217:173670,78643,0 -) -) -(183,151:31239540,23739217:1343490,485622,11795 -k183,151:31239540,23739217:0 -k183,151:31387653,23739217:148113 -) -g183,151:30911860,23739217 -g183,151:32583030,23739217 -) -(183,152:6630773,24580705:25952256,505283,11795 -g183,152:11218293,24580705 -h183,152:11218293,24580705:2490370,0,0 -h183,152:13708663,24580705:0,0,0 -g183,152:9121143,24580705 -(183,152:9121143,24580705:2097150,485622,11795 -k183,152:11218293,24580705:554432 -) -g183,152:12745937,24580705 -g183,152:14136611,24580705 -g183,152:15484031,24580705 -(183,152:15655577,24580705:501378,78643,0 -$183,152:15655577,24580705 -(183,152:15819431,24580705:173670,78643,0 -) -$183,152:16156955,24580705 -) -(183,152:16156955,24580705:501378,78643,0 -(183,152:16320809,24580705:173670,78643,0 -) -) -(183,152:16658333,24580705:501378,78643,0 -(183,152:16822187,24580705:173670,78643,0 -) -) -(183,152:17159711,24580705:501378,78643,0 -(183,152:17323565,24580705:173670,78643,0 -) -) -(183,152:17661089,24580705:501378,78643,0 -(183,152:17824943,24580705:173670,78643,0 -) -) -(183,152:18162467,24580705:501378,78643,0 -(183,152:18326321,24580705:173670,78643,0 -) -) -(183,152:18663845,24580705:501378,78643,0 -(183,152:18827699,24580705:173670,78643,0 -) -) -(183,152:19165223,24580705:501378,78643,0 -(183,152:19329077,24580705:173670,78643,0 -) -) -(183,152:19666601,24580705:501378,78643,0 -(183,152:19830455,24580705:173670,78643,0 -) -) -(183,152:20167979,24580705:501378,78643,0 -(183,152:20331833,24580705:173670,78643,0 -) -) -(183,152:20669357,24580705:501378,78643,0 -(183,152:20833211,24580705:173670,78643,0 -) -) -(183,152:21170735,24580705:501378,78643,0 -(183,152:21334589,24580705:173670,78643,0 -) -) -(183,152:21672113,24580705:501378,78643,0 -(183,152:21835967,24580705:173670,78643,0 -) -) -(183,152:22173491,24580705:501378,78643,0 -(183,152:22337345,24580705:173670,78643,0 -) -) -(183,152:22674869,24580705:501378,78643,0 -(183,152:22838723,24580705:173670,78643,0 -) -) -(183,152:23176247,24580705:501378,78643,0 -(183,152:23340101,24580705:173670,78643,0 -) -) -(183,152:23677625,24580705:501378,78643,0 -(183,152:23841479,24580705:173670,78643,0 -) -) -(183,152:24179003,24580705:501378,78643,0 -(183,152:24342857,24580705:173670,78643,0 -) -) -(183,152:24680381,24580705:501378,78643,0 -(183,152:24844235,24580705:173670,78643,0 -) -) -(183,152:25181759,24580705:501378,78643,0 -(183,152:25345613,24580705:173670,78643,0 -) -) -(183,152:25683137,24580705:501378,78643,0 -(183,152:25846991,24580705:173670,78643,0 -) -) -(183,152:26184515,24580705:501378,78643,0 -(183,152:26348369,24580705:173670,78643,0 -) -) -(183,152:26685893,24580705:501378,78643,0 -(183,152:26849747,24580705:173670,78643,0 -) -) -(183,152:27187271,24580705:501378,78643,0 -(183,152:27351125,24580705:173670,78643,0 -) -) -(183,152:27688649,24580705:501378,78643,0 -(183,152:27852503,24580705:173670,78643,0 -) -) -(183,152:28190027,24580705:501378,78643,0 -(183,152:28353881,24580705:173670,78643,0 -) -) -(183,152:28691405,24580705:501378,78643,0 -(183,152:28855259,24580705:173670,78643,0 -) -) -(183,152:29192783,24580705:501378,78643,0 -(183,152:29356637,24580705:173670,78643,0 -) -) -(183,152:29694161,24580705:501378,78643,0 -(183,152:29858015,24580705:173670,78643,0 -) -) -(183,152:30195539,24580705:501378,78643,0 -(183,152:30359393,24580705:173670,78643,0 -) -) -(183,152:30696917,24580705:501378,78643,0 -(183,152:30860771,24580705:173670,78643,0 -) -) -(183,152:31239539,24580705:1343490,485622,0 -k183,152:31239539,24580705:0 -k183,152:31387652,24580705:148113 -) -g183,152:30911859,24580705 -g183,152:32583029,24580705 -) -(183,153:6630773,25422193:25952256,505283,11795 -g183,153:11218293,25422193 -h183,153:11218293,25422193:2490370,0,0 -h183,153:13708663,25422193:0,0,0 -g183,153:9121143,25422193 -(183,153:9121143,25422193:2097150,481690,0 -k183,153:11218293,25422193:554432 -) -g183,153:13723079,25422193 -(183,153:14151443,25422193:501378,78643,0 -$183,153:14151443,25422193 -(183,153:14315297,25422193:173670,78643,0 -) -$183,153:14652821,25422193 -) -(183,153:14652821,25422193:501378,78643,0 -(183,153:14816675,25422193:173670,78643,0 -) -) -(183,153:15154199,25422193:501378,78643,0 -(183,153:15318053,25422193:173670,78643,0 -) -) -(183,153:15655577,25422193:501378,78643,0 -(183,153:15819431,25422193:173670,78643,0 -) -) -(183,153:16156955,25422193:501378,78643,0 -(183,153:16320809,25422193:173670,78643,0 -) -) -(183,153:16658333,25422193:501378,78643,0 -(183,153:16822187,25422193:173670,78643,0 -) -) -(183,153:17159711,25422193:501378,78643,0 -(183,153:17323565,25422193:173670,78643,0 -) -) -(183,153:17661089,25422193:501378,78643,0 -(183,153:17824943,25422193:173670,78643,0 -) -) -(183,153:18162467,25422193:501378,78643,0 -(183,153:18326321,25422193:173670,78643,0 -) -) -(183,153:18663845,25422193:501378,78643,0 -(183,153:18827699,25422193:173670,78643,0 -) -) -(183,153:19165223,25422193:501378,78643,0 -(183,153:19329077,25422193:173670,78643,0 -) -) -(183,153:19666601,25422193:501378,78643,0 -(183,153:19830455,25422193:173670,78643,0 -) -) -(183,153:20167979,25422193:501378,78643,0 -(183,153:20331833,25422193:173670,78643,0 -) -) -(183,153:20669357,25422193:501378,78643,0 -(183,153:20833211,25422193:173670,78643,0 -) -) -(183,153:21170735,25422193:501378,78643,0 -(183,153:21334589,25422193:173670,78643,0 -) -) -(183,153:21672113,25422193:501378,78643,0 -(183,153:21835967,25422193:173670,78643,0 -) -) -(183,153:22173491,25422193:501378,78643,0 -(183,153:22337345,25422193:173670,78643,0 -) -) -(183,153:22674869,25422193:501378,78643,0 -(183,153:22838723,25422193:173670,78643,0 -) -) -(183,153:23176247,25422193:501378,78643,0 -(183,153:23340101,25422193:173670,78643,0 -) -) -(183,153:23677625,25422193:501378,78643,0 -(183,153:23841479,25422193:173670,78643,0 -) -) -(183,153:24179003,25422193:501378,78643,0 -(183,153:24342857,25422193:173670,78643,0 -) -) -(183,153:24680381,25422193:501378,78643,0 -(183,153:24844235,25422193:173670,78643,0 -) -) -(183,153:25181759,25422193:501378,78643,0 -(183,153:25345613,25422193:173670,78643,0 -) -) -(183,153:25683137,25422193:501378,78643,0 -(183,153:25846991,25422193:173670,78643,0 -) -) -(183,153:26184515,25422193:501378,78643,0 -(183,153:26348369,25422193:173670,78643,0 -) -) -(183,153:26685893,25422193:501378,78643,0 -(183,153:26849747,25422193:173670,78643,0 -) -) -(183,153:27187271,25422193:501378,78643,0 -(183,153:27351125,25422193:173670,78643,0 -) -) -(183,153:27688649,25422193:501378,78643,0 -(183,153:27852503,25422193:173670,78643,0 -) -) -(183,153:28190027,25422193:501378,78643,0 -(183,153:28353881,25422193:173670,78643,0 -) -) -(183,153:28691405,25422193:501378,78643,0 -(183,153:28855259,25422193:173670,78643,0 -) -) -(183,153:29192783,25422193:501378,78643,0 -(183,153:29356637,25422193:173670,78643,0 -) -) -(183,153:29694161,25422193:501378,78643,0 -(183,153:29858015,25422193:173670,78643,0 -) -) -(183,153:30195539,25422193:501378,78643,0 -(183,153:30359393,25422193:173670,78643,0 -) -) -(183,153:30696917,25422193:501378,78643,0 -(183,153:30860771,25422193:173670,78643,0 -) -) -(183,153:31239539,25422193:1343490,485622,11795 -k183,153:31239539,25422193:0 -k183,153:31387652,25422193:148113 -) -g183,153:30911859,25422193 -g183,153:32583029,25422193 -) -(183,154:6630773,26263681:25952256,505283,11795 -g183,154:11218293,26263681 -h183,154:11218293,26263681:2490370,0,0 -h183,154:13708663,26263681:0,0,0 -g183,154:9121143,26263681 -(183,154:9121143,26263681:2097150,481690,11795 -k183,154:11218293,26263681:554432 -) -g183,154:12736762,26263681 -(183,154:13148687,26263681:501378,78643,0 -$183,154:13148687,26263681 -(183,154:13312541,26263681:173670,78643,0 -) -$183,154:13650065,26263681 -) -(183,154:13650065,26263681:501378,78643,0 -(183,154:13813919,26263681:173670,78643,0 -) -) -(183,154:14151443,26263681:501378,78643,0 -(183,154:14315297,26263681:173670,78643,0 -) -) -(183,154:14652821,26263681:501378,78643,0 -(183,154:14816675,26263681:173670,78643,0 -) -) -(183,154:15154199,26263681:501378,78643,0 -(183,154:15318053,26263681:173670,78643,0 -) -) -(183,154:15655577,26263681:501378,78643,0 -(183,154:15819431,26263681:173670,78643,0 -) -) -(183,154:16156955,26263681:501378,78643,0 -(183,154:16320809,26263681:173670,78643,0 -) -) -(183,154:16658333,26263681:501378,78643,0 -(183,154:16822187,26263681:173670,78643,0 -) -) -(183,154:17159711,26263681:501378,78643,0 -(183,154:17323565,26263681:173670,78643,0 -) -) -(183,154:17661089,26263681:501378,78643,0 -(183,154:17824943,26263681:173670,78643,0 -) -) -(183,154:18162467,26263681:501378,78643,0 -(183,154:18326321,26263681:173670,78643,0 -) -) -(183,154:18663845,26263681:501378,78643,0 -(183,154:18827699,26263681:173670,78643,0 -) -) -(183,154:19165223,26263681:501378,78643,0 -(183,154:19329077,26263681:173670,78643,0 -) -) -(183,154:19666601,26263681:501378,78643,0 -(183,154:19830455,26263681:173670,78643,0 -) -) -(183,154:20167979,26263681:501378,78643,0 -(183,154:20331833,26263681:173670,78643,0 -) -) -(183,154:20669357,26263681:501378,78643,0 -(183,154:20833211,26263681:173670,78643,0 -) -) -(183,154:21170735,26263681:501378,78643,0 -(183,154:21334589,26263681:173670,78643,0 -) -) -(183,154:21672113,26263681:501378,78643,0 -(183,154:21835967,26263681:173670,78643,0 -) -) -(183,154:22173491,26263681:501378,78643,0 -(183,154:22337345,26263681:173670,78643,0 -) -) -(183,154:22674869,26263681:501378,78643,0 -(183,154:22838723,26263681:173670,78643,0 -) -) -(183,154:23176247,26263681:501378,78643,0 -(183,154:23340101,26263681:173670,78643,0 -) -) -(183,154:23677625,26263681:501378,78643,0 -(183,154:23841479,26263681:173670,78643,0 -) -) -(183,154:24179003,26263681:501378,78643,0 -(183,154:24342857,26263681:173670,78643,0 -) -) -(183,154:24680381,26263681:501378,78643,0 -(183,154:24844235,26263681:173670,78643,0 -) -) -(183,154:25181759,26263681:501378,78643,0 -(183,154:25345613,26263681:173670,78643,0 -) -) -(183,154:25683137,26263681:501378,78643,0 -(183,154:25846991,26263681:173670,78643,0 -) -) -(183,154:26184515,26263681:501378,78643,0 -(183,154:26348369,26263681:173670,78643,0 -) -) -(183,154:26685893,26263681:501378,78643,0 -(183,154:26849747,26263681:173670,78643,0 -) -) -(183,154:27187271,26263681:501378,78643,0 -(183,154:27351125,26263681:173670,78643,0 -) -) -(183,154:27688649,26263681:501378,78643,0 -(183,154:27852503,26263681:173670,78643,0 -) -) -(183,154:28190027,26263681:501378,78643,0 -(183,154:28353881,26263681:173670,78643,0 -) -) -(183,154:28691405,26263681:501378,78643,0 -(183,154:28855259,26263681:173670,78643,0 -) -) -(183,154:29192783,26263681:501378,78643,0 -(183,154:29356637,26263681:173670,78643,0 -) -) -(183,154:29694161,26263681:501378,78643,0 -(183,154:29858015,26263681:173670,78643,0 -) -) -(183,154:30195539,26263681:501378,78643,0 -(183,154:30359393,26263681:173670,78643,0 -) -) -(183,154:30696917,26263681:501378,78643,0 -(183,154:30860771,26263681:173670,78643,0 -) -) -(183,154:31239538,26263681:1343490,485622,11795 -k183,154:31239538,26263681:0 -k183,154:31387651,26263681:148113 -) -g183,154:30911858,26263681 -g183,154:32583028,26263681 -) -(183,155:6630773,27105169:25952256,513147,126483 -g183,155:11218293,27105169 -h183,155:11218293,27105169:2490370,0,0 -h183,155:13708663,27105169:0,0,0 -g183,155:9121143,27105169 -(183,155:9121143,27105169:2097150,485622,11795 -k183,155:11218293,27105169:554432 -) -g183,155:13567103,27105169 -g183,155:16372043,27105169 -g183,155:17381297,27105169 -(183,155:17661089,27105169:501378,78643,0 -$183,155:17661089,27105169 -(183,155:17824943,27105169:173670,78643,0 -) -$183,155:18162467,27105169 -) -(183,155:18162467,27105169:501378,78643,0 -(183,155:18326321,27105169:173670,78643,0 -) -) -(183,155:18663845,27105169:501378,78643,0 -(183,155:18827699,27105169:173670,78643,0 -) -) -(183,155:19165223,27105169:501378,78643,0 -(183,155:19329077,27105169:173670,78643,0 -) -) -(183,155:19666601,27105169:501378,78643,0 -(183,155:19830455,27105169:173670,78643,0 -) -) -(183,155:20167979,27105169:501378,78643,0 -(183,155:20331833,27105169:173670,78643,0 -) -) -(183,155:20669357,27105169:501378,78643,0 -(183,155:20833211,27105169:173670,78643,0 -) -) -(183,155:21170735,27105169:501378,78643,0 -(183,155:21334589,27105169:173670,78643,0 -) -) -(183,155:21672113,27105169:501378,78643,0 -(183,155:21835967,27105169:173670,78643,0 -) -) -(183,155:22173491,27105169:501378,78643,0 -(183,155:22337345,27105169:173670,78643,0 -) -) -(183,155:22674869,27105169:501378,78643,0 -(183,155:22838723,27105169:173670,78643,0 -) -) -(183,155:23176247,27105169:501378,78643,0 -(183,155:23340101,27105169:173670,78643,0 -) -) -(183,155:23677625,27105169:501378,78643,0 -(183,155:23841479,27105169:173670,78643,0 -) -) -(183,155:24179003,27105169:501378,78643,0 -(183,155:24342857,27105169:173670,78643,0 -) -) -(183,155:24680381,27105169:501378,78643,0 -(183,155:24844235,27105169:173670,78643,0 -) -) -(183,155:25181759,27105169:501378,78643,0 -(183,155:25345613,27105169:173670,78643,0 -) -) -(183,155:25683137,27105169:501378,78643,0 -(183,155:25846991,27105169:173670,78643,0 -) -) -(183,155:26184515,27105169:501378,78643,0 -(183,155:26348369,27105169:173670,78643,0 -) -) -(183,155:26685893,27105169:501378,78643,0 -(183,155:26849747,27105169:173670,78643,0 -) -) -(183,155:27187271,27105169:501378,78643,0 -(183,155:27351125,27105169:173670,78643,0 -) -) -(183,155:27688649,27105169:501378,78643,0 -(183,155:27852503,27105169:173670,78643,0 -) -) -(183,155:28190027,27105169:501378,78643,0 -(183,155:28353881,27105169:173670,78643,0 -) -) -(183,155:28691405,27105169:501378,78643,0 -(183,155:28855259,27105169:173670,78643,0 -) -) -(183,155:29192783,27105169:501378,78643,0 -(183,155:29356637,27105169:173670,78643,0 -) -) -(183,155:29694161,27105169:501378,78643,0 -(183,155:29858015,27105169:173670,78643,0 -) -) -(183,155:30195539,27105169:501378,78643,0 -(183,155:30359393,27105169:173670,78643,0 -) -) -(183,155:30696917,27105169:501378,78643,0 -(183,155:30860771,27105169:173670,78643,0 -) -) -(183,155:31239539,27105169:1343490,485622,11795 -k183,155:31239539,27105169:0 -k183,155:31387652,27105169:148113 -) -g183,155:30911859,27105169 -g183,155:32583029,27105169 -) -(183,156:6630773,27946657:25952256,485622,11795 -g183,156:11218293,27946657 -h183,156:11218293,27946657:2490370,0,0 -h183,156:13708663,27946657:0,0,0 -g183,156:9121143,27946657 -(183,156:9121143,27946657:2097150,481690,0 -k183,156:11218293,27946657:554432 -) -g183,156:12622074,27946657 -(183,156:12647309,27946657:501378,78643,0 -$183,156:12647309,27946657 -(183,156:12811163,27946657:173670,78643,0 -) -$183,156:13148687,27946657 -) -(183,156:13148687,27946657:501378,78643,0 -(183,156:13312541,27946657:173670,78643,0 -) -) -(183,156:13650065,27946657:501378,78643,0 -(183,156:13813919,27946657:173670,78643,0 -) -) -(183,156:14151443,27946657:501378,78643,0 -(183,156:14315297,27946657:173670,78643,0 -) -) -(183,156:14652821,27946657:501378,78643,0 -(183,156:14816675,27946657:173670,78643,0 -) -) -(183,156:15154199,27946657:501378,78643,0 -(183,156:15318053,27946657:173670,78643,0 -) -) -(183,156:15655577,27946657:501378,78643,0 -(183,156:15819431,27946657:173670,78643,0 -) -) -(183,156:16156955,27946657:501378,78643,0 -(183,156:16320809,27946657:173670,78643,0 -) -) -(183,156:16658333,27946657:501378,78643,0 -(183,156:16822187,27946657:173670,78643,0 -) -) -(183,156:17159711,27946657:501378,78643,0 -(183,156:17323565,27946657:173670,78643,0 -) -) -(183,156:17661089,27946657:501378,78643,0 -(183,156:17824943,27946657:173670,78643,0 -) -) -(183,156:18162467,27946657:501378,78643,0 -(183,156:18326321,27946657:173670,78643,0 -) -) -(183,156:18663845,27946657:501378,78643,0 -(183,156:18827699,27946657:173670,78643,0 -) -) -(183,156:19165223,27946657:501378,78643,0 -(183,156:19329077,27946657:173670,78643,0 -) -) -(183,156:19666601,27946657:501378,78643,0 -(183,156:19830455,27946657:173670,78643,0 -) -) -(183,156:20167979,27946657:501378,78643,0 -(183,156:20331833,27946657:173670,78643,0 -) -) -(183,156:20669357,27946657:501378,78643,0 -(183,156:20833211,27946657:173670,78643,0 -) -) -(183,156:21170735,27946657:501378,78643,0 -(183,156:21334589,27946657:173670,78643,0 -) -) -(183,156:21672113,27946657:501378,78643,0 -(183,156:21835967,27946657:173670,78643,0 -) -) -(183,156:22173491,27946657:501378,78643,0 -(183,156:22337345,27946657:173670,78643,0 -) -) -(183,156:22674869,27946657:501378,78643,0 -(183,156:22838723,27946657:173670,78643,0 -) -) -(183,156:23176247,27946657:501378,78643,0 -(183,156:23340101,27946657:173670,78643,0 -) -) -(183,156:23677625,27946657:501378,78643,0 -(183,156:23841479,27946657:173670,78643,0 -) -) -(183,156:24179003,27946657:501378,78643,0 -(183,156:24342857,27946657:173670,78643,0 -) -) -(183,156:24680381,27946657:501378,78643,0 -(183,156:24844235,27946657:173670,78643,0 -) -) -(183,156:25181759,27946657:501378,78643,0 -(183,156:25345613,27946657:173670,78643,0 -) -) -(183,156:25683137,27946657:501378,78643,0 -(183,156:25846991,27946657:173670,78643,0 -) -) -(183,156:26184515,27946657:501378,78643,0 -(183,156:26348369,27946657:173670,78643,0 -) -) -(183,156:26685893,27946657:501378,78643,0 -(183,156:26849747,27946657:173670,78643,0 -) -) -(183,156:27187271,27946657:501378,78643,0 -(183,156:27351125,27946657:173670,78643,0 -) -) -(183,156:27688649,27946657:501378,78643,0 -(183,156:27852503,27946657:173670,78643,0 -) -) -(183,156:28190027,27946657:501378,78643,0 -(183,156:28353881,27946657:173670,78643,0 -) -) -(183,156:28691405,27946657:501378,78643,0 -(183,156:28855259,27946657:173670,78643,0 -) -) -(183,156:29192783,27946657:501378,78643,0 -(183,156:29356637,27946657:173670,78643,0 -) -) -(183,156:29694161,27946657:501378,78643,0 -(183,156:29858015,27946657:173670,78643,0 -) -) -(183,156:30195539,27946657:501378,78643,0 -(183,156:30359393,27946657:173670,78643,0 -) -) -(183,156:30696917,27946657:501378,78643,0 -(183,156:30860771,27946657:173670,78643,0 -) -) -(183,156:31239538,27946657:1343490,485622,11795 -k183,156:31239538,27946657:0 -k183,156:31387651,27946657:148113 -) -g183,156:30911858,27946657 -g183,156:32583028,27946657 -) -(183,157:6630773,28788145:25952256,505283,11795 -g183,157:11218293,28788145 -h183,157:11218293,28788145:2490370,0,0 -h183,157:13708663,28788145:0,0,0 -g183,157:9121143,28788145 -(183,157:9121143,28788145:2097150,485622,11795 -k183,157:11218293,28788145:554432 -) -g183,157:12649599,28788145 -g183,157:14530482,28788145 -(183,157:14652821,28788145:501378,78643,0 -$183,157:14652821,28788145 -(183,157:14816675,28788145:173670,78643,0 -) -$183,157:15154199,28788145 -) -(183,157:15154199,28788145:501378,78643,0 -(183,157:15318053,28788145:173670,78643,0 -) -) -(183,157:15655577,28788145:501378,78643,0 -(183,157:15819431,28788145:173670,78643,0 -) -) -(183,157:16156955,28788145:501378,78643,0 -(183,157:16320809,28788145:173670,78643,0 -) -) -(183,157:16658333,28788145:501378,78643,0 -(183,157:16822187,28788145:173670,78643,0 -) -) -(183,157:17159711,28788145:501378,78643,0 -(183,157:17323565,28788145:173670,78643,0 -) -) -(183,157:17661089,28788145:501378,78643,0 -(183,157:17824943,28788145:173670,78643,0 -) -) -(183,157:18162467,28788145:501378,78643,0 -(183,157:18326321,28788145:173670,78643,0 -) -) -(183,157:18663845,28788145:501378,78643,0 -(183,157:18827699,28788145:173670,78643,0 -) -) -(183,157:19165223,28788145:501378,78643,0 -(183,157:19329077,28788145:173670,78643,0 -) -) -(183,157:19666601,28788145:501378,78643,0 -(183,157:19830455,28788145:173670,78643,0 -) -) -(183,157:20167979,28788145:501378,78643,0 -(183,157:20331833,28788145:173670,78643,0 -) -) -(183,157:20669357,28788145:501378,78643,0 -(183,157:20833211,28788145:173670,78643,0 -) -) -(183,157:21170735,28788145:501378,78643,0 -(183,157:21334589,28788145:173670,78643,0 -) -) -(183,157:21672113,28788145:501378,78643,0 -(183,157:21835967,28788145:173670,78643,0 -) -) -(183,157:22173491,28788145:501378,78643,0 -(183,157:22337345,28788145:173670,78643,0 -) -) -(183,157:22674869,28788145:501378,78643,0 -(183,157:22838723,28788145:173670,78643,0 -) -) -(183,157:23176247,28788145:501378,78643,0 -(183,157:23340101,28788145:173670,78643,0 -) -) -(183,157:23677625,28788145:501378,78643,0 -(183,157:23841479,28788145:173670,78643,0 -) -) -(183,157:24179003,28788145:501378,78643,0 -(183,157:24342857,28788145:173670,78643,0 -) -) -(183,157:24680381,28788145:501378,78643,0 -(183,157:24844235,28788145:173670,78643,0 -) -) -(183,157:25181759,28788145:501378,78643,0 -(183,157:25345613,28788145:173670,78643,0 -) -) -(183,157:25683137,28788145:501378,78643,0 -(183,157:25846991,28788145:173670,78643,0 -) -) -(183,157:26184515,28788145:501378,78643,0 -(183,157:26348369,28788145:173670,78643,0 -) -) -(183,157:26685893,28788145:501378,78643,0 -(183,157:26849747,28788145:173670,78643,0 -) -) -(183,157:27187271,28788145:501378,78643,0 -(183,157:27351125,28788145:173670,78643,0 -) -) -(183,157:27688649,28788145:501378,78643,0 -(183,157:27852503,28788145:173670,78643,0 -) -) -(183,157:28190027,28788145:501378,78643,0 -(183,157:28353881,28788145:173670,78643,0 -) -) -(183,157:28691405,28788145:501378,78643,0 -(183,157:28855259,28788145:173670,78643,0 -) -) -(183,157:29192783,28788145:501378,78643,0 -(183,157:29356637,28788145:173670,78643,0 -) -) -(183,157:29694161,28788145:501378,78643,0 -(183,157:29858015,28788145:173670,78643,0 -) -) -(183,157:30195539,28788145:501378,78643,0 -(183,157:30359393,28788145:173670,78643,0 -) -) -(183,157:30696917,28788145:501378,78643,0 -(183,157:30860771,28788145:173670,78643,0 -) -) -(183,157:31239539,28788145:1343490,485622,11795 -k183,157:31239539,28788145:0 -k183,157:31387652,28788145:148113 -) -g183,157:30911859,28788145 -g183,157:32583029,28788145 -) -(183,158:6630773,29629633:25952256,485622,11795 -g183,158:9121143,29629633 -h183,158:9121143,29629633:983040,0,0 -h183,158:10104183,29629633:0,0,0 -g183,158:7613813,29629633 -(183,158:7613813,29629633:1507330,473825,11795 -k183,158:9121143,29629633:536742 -) -g183,158:12198713,29629633 -g183,158:12198713,29629633 -(183,158:12647309,29629633:501378,78643,0 -$183,158:12647309,29629633 -(183,158:12811163,29629633:173670,78643,0 -) -$183,158:13148687,29629633 -) -(183,158:13148687,29629633:501378,78643,0 -(183,158:13312541,29629633:173670,78643,0 -) -) -(183,158:13650065,29629633:501378,78643,0 -(183,158:13813919,29629633:173670,78643,0 -) -) -(183,158:14151443,29629633:501378,78643,0 -(183,158:14315297,29629633:173670,78643,0 -) -) -(183,158:14652821,29629633:501378,78643,0 -(183,158:14816675,29629633:173670,78643,0 -) -) -(183,158:15154199,29629633:501378,78643,0 -(183,158:15318053,29629633:173670,78643,0 -) -) -(183,158:15655577,29629633:501378,78643,0 -(183,158:15819431,29629633:173670,78643,0 -) -) -(183,158:16156955,29629633:501378,78643,0 -(183,158:16320809,29629633:173670,78643,0 -) -) -(183,158:16658333,29629633:501378,78643,0 -(183,158:16822187,29629633:173670,78643,0 -) -) -(183,158:17159711,29629633:501378,78643,0 -(183,158:17323565,29629633:173670,78643,0 -) -) -(183,158:17661089,29629633:501378,78643,0 -(183,158:17824943,29629633:173670,78643,0 -) -) -(183,158:18162467,29629633:501378,78643,0 -(183,158:18326321,29629633:173670,78643,0 -) -) -(183,158:18663845,29629633:501378,78643,0 -(183,158:18827699,29629633:173670,78643,0 -) -) -(183,158:19165223,29629633:501378,78643,0 -(183,158:19329077,29629633:173670,78643,0 -) -) -(183,158:19666601,29629633:501378,78643,0 -(183,158:19830455,29629633:173670,78643,0 -) -) -(183,158:20167979,29629633:501378,78643,0 -(183,158:20331833,29629633:173670,78643,0 -) -) -(183,158:20669357,29629633:501378,78643,0 -(183,158:20833211,29629633:173670,78643,0 -) -) -(183,158:21170735,29629633:501378,78643,0 -(183,158:21334589,29629633:173670,78643,0 -) -) -(183,158:21672113,29629633:501378,78643,0 -(183,158:21835967,29629633:173670,78643,0 -) -) -(183,158:22173491,29629633:501378,78643,0 -(183,158:22337345,29629633:173670,78643,0 -) -) -(183,158:22674869,29629633:501378,78643,0 -(183,158:22838723,29629633:173670,78643,0 -) -) -(183,158:23176247,29629633:501378,78643,0 -(183,158:23340101,29629633:173670,78643,0 -) -) -(183,158:23677625,29629633:501378,78643,0 -(183,158:23841479,29629633:173670,78643,0 -) -) -(183,158:24179003,29629633:501378,78643,0 -(183,158:24342857,29629633:173670,78643,0 -) -) -(183,158:24680381,29629633:501378,78643,0 -(183,158:24844235,29629633:173670,78643,0 -) -) -(183,158:25181759,29629633:501378,78643,0 -(183,158:25345613,29629633:173670,78643,0 -) -) -(183,158:25683137,29629633:501378,78643,0 -(183,158:25846991,29629633:173670,78643,0 -) -) -(183,158:26184515,29629633:501378,78643,0 -(183,158:26348369,29629633:173670,78643,0 -) -) -(183,158:26685893,29629633:501378,78643,0 -(183,158:26849747,29629633:173670,78643,0 -) -) -(183,158:27187271,29629633:501378,78643,0 -(183,158:27351125,29629633:173670,78643,0 -) -) -(183,158:27688649,29629633:501378,78643,0 -(183,158:27852503,29629633:173670,78643,0 -) -) -(183,158:28190027,29629633:501378,78643,0 -(183,158:28353881,29629633:173670,78643,0 -) -) -(183,158:28691405,29629633:501378,78643,0 -(183,158:28855259,29629633:173670,78643,0 -) -) -(183,158:29192783,29629633:501378,78643,0 -(183,158:29356637,29629633:173670,78643,0 -) -) -(183,158:29694161,29629633:501378,78643,0 -(183,158:29858015,29629633:173670,78643,0 -) -) -(183,158:30195539,29629633:501378,78643,0 -(183,158:30359393,29629633:173670,78643,0 -) -) -(183,158:30696917,29629633:501378,78643,0 -(183,158:30860771,29629633:173670,78643,0 -) -) -(183,158:31239539,29629633:1343490,485622,11795 -k183,158:31239539,29629633:0 -k183,158:31387652,29629633:148113 -) -g183,158:30911859,29629633 -g183,158:32583029,29629633 -) -(183,159:6630773,30471121:25952256,485622,11795 -g183,159:11218293,30471121 -h183,159:11218293,30471121:2490370,0,0 -h183,159:13708663,30471121:0,0,0 -g183,159:9121143,30471121 -(183,159:9121143,30471121:2097150,477757,11795 -k183,159:11218293,30471121:554432 -) -g183,159:14338462,30471121 -(183,159:14652821,30471121:501378,78643,0 -$183,159:14652821,30471121 -(183,159:14816675,30471121:173670,78643,0 -) -$183,159:15154199,30471121 -) -(183,159:15154199,30471121:501378,78643,0 -(183,159:15318053,30471121:173670,78643,0 -) -) -(183,159:15655577,30471121:501378,78643,0 -(183,159:15819431,30471121:173670,78643,0 -) -) -(183,159:16156955,30471121:501378,78643,0 -(183,159:16320809,30471121:173670,78643,0 -) -) -(183,159:16658333,30471121:501378,78643,0 -(183,159:16822187,30471121:173670,78643,0 -) -) -(183,159:17159711,30471121:501378,78643,0 -(183,159:17323565,30471121:173670,78643,0 -) -) -(183,159:17661089,30471121:501378,78643,0 -(183,159:17824943,30471121:173670,78643,0 -) -) -(183,159:18162467,30471121:501378,78643,0 -(183,159:18326321,30471121:173670,78643,0 -) -) -(183,159:18663845,30471121:501378,78643,0 -(183,159:18827699,30471121:173670,78643,0 -) -) -(183,159:19165223,30471121:501378,78643,0 -(183,159:19329077,30471121:173670,78643,0 -) -) -(183,159:19666601,30471121:501378,78643,0 -(183,159:19830455,30471121:173670,78643,0 -) -) -(183,159:20167979,30471121:501378,78643,0 -(183,159:20331833,30471121:173670,78643,0 -) -) -(183,159:20669357,30471121:501378,78643,0 -(183,159:20833211,30471121:173670,78643,0 -) -) -(183,159:21170735,30471121:501378,78643,0 -(183,159:21334589,30471121:173670,78643,0 -) -) -(183,159:21672113,30471121:501378,78643,0 -(183,159:21835967,30471121:173670,78643,0 -) -) -(183,159:22173491,30471121:501378,78643,0 -(183,159:22337345,30471121:173670,78643,0 -) -) -(183,159:22674869,30471121:501378,78643,0 -(183,159:22838723,30471121:173670,78643,0 -) -) -(183,159:23176247,30471121:501378,78643,0 -(183,159:23340101,30471121:173670,78643,0 -) -) -(183,159:23677625,30471121:501378,78643,0 -(183,159:23841479,30471121:173670,78643,0 -) -) -(183,159:24179003,30471121:501378,78643,0 -(183,159:24342857,30471121:173670,78643,0 -) -) -(183,159:24680381,30471121:501378,78643,0 -(183,159:24844235,30471121:173670,78643,0 -) -) -(183,159:25181759,30471121:501378,78643,0 -(183,159:25345613,30471121:173670,78643,0 -) -) -(183,159:25683137,30471121:501378,78643,0 -(183,159:25846991,30471121:173670,78643,0 -) -) -(183,159:26184515,30471121:501378,78643,0 -(183,159:26348369,30471121:173670,78643,0 -) -) -(183,159:26685893,30471121:501378,78643,0 -(183,159:26849747,30471121:173670,78643,0 -) -) -(183,159:27187271,30471121:501378,78643,0 -(183,159:27351125,30471121:173670,78643,0 -) -) -(183,159:27688649,30471121:501378,78643,0 -(183,159:27852503,30471121:173670,78643,0 -) -) -(183,159:28190027,30471121:501378,78643,0 -(183,159:28353881,30471121:173670,78643,0 -) -) -(183,159:28691405,30471121:501378,78643,0 -(183,159:28855259,30471121:173670,78643,0 -) -) -(183,159:29192783,30471121:501378,78643,0 -(183,159:29356637,30471121:173670,78643,0 -) -) -(183,159:29694161,30471121:501378,78643,0 -(183,159:29858015,30471121:173670,78643,0 -) -) -(183,159:30195539,30471121:501378,78643,0 -(183,159:30359393,30471121:173670,78643,0 -) -) -(183,159:30696917,30471121:501378,78643,0 -(183,159:30860771,30471121:173670,78643,0 -) -) -(183,159:31239538,30471121:1343490,485622,11795 -k183,159:31239538,30471121:0 -k183,159:31387651,30471121:148113 -) -g183,159:30911858,30471121 -g183,159:32583028,30471121 -) -(183,160:6630773,31312609:25952256,485622,11795 -g183,160:11218293,31312609 -h183,160:11218293,31312609:2490370,0,0 -h183,160:13708663,31312609:0,0,0 -g183,160:9121143,31312609 -(183,160:9121143,31312609:2097150,485622,11795 -k183,160:11218293,31312609:554432 -) -g183,160:14751339,31312609 -(183,160:15154199,31312609:501378,78643,0 -$183,160:15154199,31312609 -(183,160:15318053,31312609:173670,78643,0 -) -$183,160:15655577,31312609 -) -(183,160:15655577,31312609:501378,78643,0 -(183,160:15819431,31312609:173670,78643,0 -) -) -(183,160:16156955,31312609:501378,78643,0 -(183,160:16320809,31312609:173670,78643,0 -) -) -(183,160:16658333,31312609:501378,78643,0 -(183,160:16822187,31312609:173670,78643,0 -) -) -(183,160:17159711,31312609:501378,78643,0 -(183,160:17323565,31312609:173670,78643,0 -) -) -(183,160:17661089,31312609:501378,78643,0 -(183,160:17824943,31312609:173670,78643,0 -) -) -(183,160:18162467,31312609:501378,78643,0 -(183,160:18326321,31312609:173670,78643,0 -) -) -(183,160:18663845,31312609:501378,78643,0 -(183,160:18827699,31312609:173670,78643,0 -) -) -(183,160:19165223,31312609:501378,78643,0 -(183,160:19329077,31312609:173670,78643,0 -) -) -(183,160:19666601,31312609:501378,78643,0 -(183,160:19830455,31312609:173670,78643,0 -) -) -(183,160:20167979,31312609:501378,78643,0 -(183,160:20331833,31312609:173670,78643,0 -) -) -(183,160:20669357,31312609:501378,78643,0 -(183,160:20833211,31312609:173670,78643,0 -) -) -(183,160:21170735,31312609:501378,78643,0 -(183,160:21334589,31312609:173670,78643,0 -) -) -(183,160:21672113,31312609:501378,78643,0 -(183,160:21835967,31312609:173670,78643,0 -) -) -(183,160:22173491,31312609:501378,78643,0 -(183,160:22337345,31312609:173670,78643,0 -) -) -(183,160:22674869,31312609:501378,78643,0 -(183,160:22838723,31312609:173670,78643,0 -) -) -(183,160:23176247,31312609:501378,78643,0 -(183,160:23340101,31312609:173670,78643,0 -) -) -(183,160:23677625,31312609:501378,78643,0 -(183,160:23841479,31312609:173670,78643,0 -) -) -(183,160:24179003,31312609:501378,78643,0 -(183,160:24342857,31312609:173670,78643,0 -) -) -(183,160:24680381,31312609:501378,78643,0 -(183,160:24844235,31312609:173670,78643,0 -) -) -(183,160:25181759,31312609:501378,78643,0 -(183,160:25345613,31312609:173670,78643,0 -) -) -(183,160:25683137,31312609:501378,78643,0 -(183,160:25846991,31312609:173670,78643,0 -) -) -(183,160:26184515,31312609:501378,78643,0 -(183,160:26348369,31312609:173670,78643,0 -) -) -(183,160:26685893,31312609:501378,78643,0 -(183,160:26849747,31312609:173670,78643,0 -) -) -(183,160:27187271,31312609:501378,78643,0 -(183,160:27351125,31312609:173670,78643,0 -) -) -(183,160:27688649,31312609:501378,78643,0 -(183,160:27852503,31312609:173670,78643,0 -) -) -(183,160:28190027,31312609:501378,78643,0 -(183,160:28353881,31312609:173670,78643,0 -) -) -(183,160:28691405,31312609:501378,78643,0 -(183,160:28855259,31312609:173670,78643,0 -) -) -(183,160:29192783,31312609:501378,78643,0 -(183,160:29356637,31312609:173670,78643,0 -) -) -(183,160:29694161,31312609:501378,78643,0 -(183,160:29858015,31312609:173670,78643,0 -) -) -(183,160:30195539,31312609:501378,78643,0 -(183,160:30359393,31312609:173670,78643,0 -) -) -(183,160:30696917,31312609:501378,78643,0 -(183,160:30860771,31312609:173670,78643,0 -) -) -(183,160:31239539,31312609:1343490,485622,11795 -k183,160:31239539,31312609:0 -k183,160:31387652,31312609:148113 -) -g183,160:30911859,31312609 -g183,160:32583029,31312609 -) -(183,161:6630773,32154097:25952256,505283,11795 -g183,161:11218293,32154097 -h183,161:11218293,32154097:2490370,0,0 -h183,161:13708663,32154097:0,0,0 -g183,161:9121143,32154097 -(183,161:9121143,32154097:2097150,485622,11795 -k183,161:11218293,32154097:554432 -) -g183,161:14819496,32154097 -g183,161:16210170,32154097 -g183,161:18528178,32154097 -(183,161:18663845,32154097:501378,78643,0 -$183,161:18663845,32154097 -(183,161:18827699,32154097:173670,78643,0 -) -$183,161:19165223,32154097 -) -(183,161:19165223,32154097:501378,78643,0 -(183,161:19329077,32154097:173670,78643,0 -) -) -(183,161:19666601,32154097:501378,78643,0 -(183,161:19830455,32154097:173670,78643,0 -) -) -(183,161:20167979,32154097:501378,78643,0 -(183,161:20331833,32154097:173670,78643,0 -) -) -(183,161:20669357,32154097:501378,78643,0 -(183,161:20833211,32154097:173670,78643,0 -) -) -(183,161:21170735,32154097:501378,78643,0 -(183,161:21334589,32154097:173670,78643,0 -) -) -(183,161:21672113,32154097:501378,78643,0 -(183,161:21835967,32154097:173670,78643,0 -) -) -(183,161:22173491,32154097:501378,78643,0 -(183,161:22337345,32154097:173670,78643,0 -) -) -(183,161:22674869,32154097:501378,78643,0 -(183,161:22838723,32154097:173670,78643,0 -) -) -(183,161:23176247,32154097:501378,78643,0 -(183,161:23340101,32154097:173670,78643,0 -) -) -(183,161:23677625,32154097:501378,78643,0 -(183,161:23841479,32154097:173670,78643,0 -) -) -(183,161:24179003,32154097:501378,78643,0 -(183,161:24342857,32154097:173670,78643,0 -) -) -(183,161:24680381,32154097:501378,78643,0 -(183,161:24844235,32154097:173670,78643,0 -) -) -(183,161:25181759,32154097:501378,78643,0 -(183,161:25345613,32154097:173670,78643,0 -) -) -(183,161:25683137,32154097:501378,78643,0 -(183,161:25846991,32154097:173670,78643,0 -) -) -(183,161:26184515,32154097:501378,78643,0 -(183,161:26348369,32154097:173670,78643,0 -) -) -(183,161:26685893,32154097:501378,78643,0 -(183,161:26849747,32154097:173670,78643,0 -) -) -(183,161:27187271,32154097:501378,78643,0 -(183,161:27351125,32154097:173670,78643,0 -) -) -(183,161:27688649,32154097:501378,78643,0 -(183,161:27852503,32154097:173670,78643,0 -) -) -(183,161:28190027,32154097:501378,78643,0 -(183,161:28353881,32154097:173670,78643,0 -) -) -(183,161:28691405,32154097:501378,78643,0 -(183,161:28855259,32154097:173670,78643,0 -) -) -(183,161:29192783,32154097:501378,78643,0 -(183,161:29356637,32154097:173670,78643,0 -) -) -(183,161:29694161,32154097:501378,78643,0 -(183,161:29858015,32154097:173670,78643,0 -) -) -(183,161:30195539,32154097:501378,78643,0 -(183,161:30359393,32154097:173670,78643,0 -) -) -(183,161:30696917,32154097:501378,78643,0 -(183,161:30860771,32154097:173670,78643,0 -) -) -(183,161:31239539,32154097:1343490,485622,11795 -k183,161:31239539,32154097:0 -k183,161:31387652,32154097:148113 -) -g183,161:30911859,32154097 -g183,161:32583029,32154097 -) -(183,162:6630773,32995585:25952256,505283,126483 -g183,162:11218293,32995585 -h183,162:11218293,32995585:2490370,0,0 -h183,162:13708663,32995585:0,0,0 -g183,162:9121143,32995585 -(183,162:9121143,32995585:2097150,481690,11795 -k183,162:11218293,32995585:554432 -) -g183,162:15206158,32995585 -g183,162:16596832,32995585 -g183,162:18741825,32995585 -(183,162:19165223,32995585:501378,78643,0 -$183,162:19165223,32995585 -(183,162:19329077,32995585:173670,78643,0 -) -$183,162:19666601,32995585 -) -(183,162:19666601,32995585:501378,78643,0 -(183,162:19830455,32995585:173670,78643,0 -) -) -(183,162:20167979,32995585:501378,78643,0 -(183,162:20331833,32995585:173670,78643,0 -) -) -(183,162:20669357,32995585:501378,78643,0 -(183,162:20833211,32995585:173670,78643,0 -) -) -(183,162:21170735,32995585:501378,78643,0 -(183,162:21334589,32995585:173670,78643,0 -) -) -(183,162:21672113,32995585:501378,78643,0 -(183,162:21835967,32995585:173670,78643,0 -) -) -(183,162:22173491,32995585:501378,78643,0 -(183,162:22337345,32995585:173670,78643,0 -) -) -(183,162:22674869,32995585:501378,78643,0 -(183,162:22838723,32995585:173670,78643,0 -) -) -(183,162:23176247,32995585:501378,78643,0 -(183,162:23340101,32995585:173670,78643,0 -) -) -(183,162:23677625,32995585:501378,78643,0 -(183,162:23841479,32995585:173670,78643,0 -) -) -(183,162:24179003,32995585:501378,78643,0 -(183,162:24342857,32995585:173670,78643,0 -) -) -(183,162:24680381,32995585:501378,78643,0 -(183,162:24844235,32995585:173670,78643,0 -) -) -(183,162:25181759,32995585:501378,78643,0 -(183,162:25345613,32995585:173670,78643,0 -) -) -(183,162:25683137,32995585:501378,78643,0 -(183,162:25846991,32995585:173670,78643,0 -) -) -(183,162:26184515,32995585:501378,78643,0 -(183,162:26348369,32995585:173670,78643,0 -) -) -(183,162:26685893,32995585:501378,78643,0 -(183,162:26849747,32995585:173670,78643,0 -) -) -(183,162:27187271,32995585:501378,78643,0 -(183,162:27351125,32995585:173670,78643,0 -) -) -(183,162:27688649,32995585:501378,78643,0 -(183,162:27852503,32995585:173670,78643,0 -) -) -(183,162:28190027,32995585:501378,78643,0 -(183,162:28353881,32995585:173670,78643,0 -) -) -(183,162:28691405,32995585:501378,78643,0 -(183,162:28855259,32995585:173670,78643,0 -) -) -(183,162:29192783,32995585:501378,78643,0 -(183,162:29356637,32995585:173670,78643,0 -) -) -(183,162:29694161,32995585:501378,78643,0 -(183,162:29858015,32995585:173670,78643,0 -) -) -(183,162:30195539,32995585:501378,78643,0 -(183,162:30359393,32995585:173670,78643,0 -) -) -(183,162:30696917,32995585:501378,78643,0 -(183,162:30860771,32995585:173670,78643,0 -) -) -(183,162:31239539,32995585:1343490,485622,11795 -k183,162:31239539,32995585:0 -k183,162:31387652,32995585:148113 -) -g183,162:30911859,32995585 -g183,162:32583029,32995585 -) -(183,163:6630773,33837073:25952256,513147,126483 -g183,163:11218293,33837073 -h183,163:11218293,33837073:2490370,0,0 -h183,163:13708663,33837073:0,0,0 -g183,163:9121143,33837073 -(183,163:9121143,33837073:2097150,473825,11795 -k183,163:11218293,33837073:554432 -) -g183,163:13832524,33837073 -g183,163:16858321,33837073 -(183,163:17159711,33837073:501378,78643,0 -$183,163:17159711,33837073 -(183,163:17323565,33837073:173670,78643,0 -) -$183,163:17661089,33837073 -) -(183,163:17661089,33837073:501378,78643,0 -(183,163:17824943,33837073:173670,78643,0 -) -) -(183,163:18162467,33837073:501378,78643,0 -(183,163:18326321,33837073:173670,78643,0 -) -) -(183,163:18663845,33837073:501378,78643,0 -(183,163:18827699,33837073:173670,78643,0 -) -) -(183,163:19165223,33837073:501378,78643,0 -(183,163:19329077,33837073:173670,78643,0 -) -) -(183,163:19666601,33837073:501378,78643,0 -(183,163:19830455,33837073:173670,78643,0 -) -) -(183,163:20167979,33837073:501378,78643,0 -(183,163:20331833,33837073:173670,78643,0 -) -) -(183,163:20669357,33837073:501378,78643,0 -(183,163:20833211,33837073:173670,78643,0 -) -) -(183,163:21170735,33837073:501378,78643,0 -(183,163:21334589,33837073:173670,78643,0 -) -) -(183,163:21672113,33837073:501378,78643,0 -(183,163:21835967,33837073:173670,78643,0 -) -) -(183,163:22173491,33837073:501378,78643,0 -(183,163:22337345,33837073:173670,78643,0 -) -) -(183,163:22674869,33837073:501378,78643,0 -(183,163:22838723,33837073:173670,78643,0 -) -) -(183,163:23176247,33837073:501378,78643,0 -(183,163:23340101,33837073:173670,78643,0 -) -) -(183,163:23677625,33837073:501378,78643,0 -(183,163:23841479,33837073:173670,78643,0 -) -) -(183,163:24179003,33837073:501378,78643,0 -(183,163:24342857,33837073:173670,78643,0 -) -) -(183,163:24680381,33837073:501378,78643,0 -(183,163:24844235,33837073:173670,78643,0 -) -) -(183,163:25181759,33837073:501378,78643,0 -(183,163:25345613,33837073:173670,78643,0 -) -) -(183,163:25683137,33837073:501378,78643,0 -(183,163:25846991,33837073:173670,78643,0 -) -) -(183,163:26184515,33837073:501378,78643,0 -(183,163:26348369,33837073:173670,78643,0 -) -) -(183,163:26685893,33837073:501378,78643,0 -(183,163:26849747,33837073:173670,78643,0 -) -) -(183,163:27187271,33837073:501378,78643,0 -(183,163:27351125,33837073:173670,78643,0 -) -) -(183,163:27688649,33837073:501378,78643,0 -(183,163:27852503,33837073:173670,78643,0 -) -) -(183,163:28190027,33837073:501378,78643,0 -(183,163:28353881,33837073:173670,78643,0 -) -) -(183,163:28691405,33837073:501378,78643,0 -(183,163:28855259,33837073:173670,78643,0 -) -) -(183,163:29192783,33837073:501378,78643,0 -(183,163:29356637,33837073:173670,78643,0 -) -) -(183,163:29694161,33837073:501378,78643,0 -(183,163:29858015,33837073:173670,78643,0 -) -) -(183,163:30195539,33837073:501378,78643,0 -(183,163:30359393,33837073:173670,78643,0 -) -) -(183,163:30696917,33837073:501378,78643,0 -(183,163:30860771,33837073:173670,78643,0 -) -) -(183,163:31239539,33837073:1343490,485622,11795 -k183,163:31239539,33837073:0 -k183,163:31387652,33837073:148113 -) -g183,163:30911859,33837073 -g183,163:32583029,33837073 -) -(183,164:6630773,34678561:25952256,505283,126483 -g183,164:11218293,34678561 -h183,164:11218293,34678561:2490370,0,0 -h183,164:13708663,34678561:0,0,0 -g183,164:9121143,34678561 -(183,164:9121143,34678561:2097150,485622,11795 -k183,164:11218293,34678561:554432 -) -g183,164:12576199,34678561 -g183,164:13966873,34678561 -g183,164:16992014,34678561 -g183,164:18599612,34678561 -(183,164:18663845,34678561:501378,78643,0 -$183,164:18663845,34678561 -(183,164:18827699,34678561:173670,78643,0 -) -$183,164:19165223,34678561 -) -(183,164:19165223,34678561:501378,78643,0 -(183,164:19329077,34678561:173670,78643,0 -) -) -(183,164:19666601,34678561:501378,78643,0 -(183,164:19830455,34678561:173670,78643,0 -) -) -(183,164:20167979,34678561:501378,78643,0 -(183,164:20331833,34678561:173670,78643,0 -) -) -(183,164:20669357,34678561:501378,78643,0 -(183,164:20833211,34678561:173670,78643,0 -) -) -(183,164:21170735,34678561:501378,78643,0 -(183,164:21334589,34678561:173670,78643,0 -) -) -(183,164:21672113,34678561:501378,78643,0 -(183,164:21835967,34678561:173670,78643,0 -) -) -(183,164:22173491,34678561:501378,78643,0 -(183,164:22337345,34678561:173670,78643,0 -) -) -(183,164:22674869,34678561:501378,78643,0 -(183,164:22838723,34678561:173670,78643,0 -) -) -(183,164:23176247,34678561:501378,78643,0 -(183,164:23340101,34678561:173670,78643,0 -) -) -(183,164:23677625,34678561:501378,78643,0 -(183,164:23841479,34678561:173670,78643,0 -) -) -(183,164:24179003,34678561:501378,78643,0 -(183,164:24342857,34678561:173670,78643,0 -) -) -(183,164:24680381,34678561:501378,78643,0 -(183,164:24844235,34678561:173670,78643,0 -) -) -(183,164:25181759,34678561:501378,78643,0 -(183,164:25345613,34678561:173670,78643,0 -) -) -(183,164:25683137,34678561:501378,78643,0 -(183,164:25846991,34678561:173670,78643,0 -) -) -(183,164:26184515,34678561:501378,78643,0 -(183,164:26348369,34678561:173670,78643,0 -) -) -(183,164:26685893,34678561:501378,78643,0 -(183,164:26849747,34678561:173670,78643,0 -) -) -(183,164:27187271,34678561:501378,78643,0 -(183,164:27351125,34678561:173670,78643,0 -) -) -(183,164:27688649,34678561:501378,78643,0 -(183,164:27852503,34678561:173670,78643,0 -) -) -(183,164:28190027,34678561:501378,78643,0 -(183,164:28353881,34678561:173670,78643,0 -) -) -(183,164:28691405,34678561:501378,78643,0 -(183,164:28855259,34678561:173670,78643,0 -) -) -(183,164:29192783,34678561:501378,78643,0 -(183,164:29356637,34678561:173670,78643,0 -) -) -(183,164:29694161,34678561:501378,78643,0 -(183,164:29858015,34678561:173670,78643,0 -) -) -(183,164:30195539,34678561:501378,78643,0 -(183,164:30359393,34678561:173670,78643,0 -) -) -(183,164:30696917,34678561:501378,78643,0 -(183,164:30860771,34678561:173670,78643,0 -) -) -(183,164:31239539,34678561:1343490,485622,0 -k183,164:31239539,34678561:0 -k183,164:31387652,34678561:148113 -) -g183,164:30911859,34678561 -g183,164:32583029,34678561 -) -(183,165:6630773,35520049:25952256,505283,126483 -g183,165:11218293,35520049 -h183,165:11218293,35520049:2490370,0,0 -h183,165:13708663,35520049:0,0,0 -g183,165:9121143,35520049 -(183,165:9121143,35520049:2097150,473825,11795 -k183,165:11218293,35520049:554432 -) -g183,165:13292507,35520049 -g183,165:14900105,35520049 -(183,165:15154199,35520049:501378,78643,0 -$183,165:15154199,35520049 -(183,165:15318053,35520049:173670,78643,0 -) -$183,165:15655577,35520049 -) -(183,165:15655577,35520049:501378,78643,0 -(183,165:15819431,35520049:173670,78643,0 -) -) -(183,165:16156955,35520049:501378,78643,0 -(183,165:16320809,35520049:173670,78643,0 -) -) -(183,165:16658333,35520049:501378,78643,0 -(183,165:16822187,35520049:173670,78643,0 -) -) -(183,165:17159711,35520049:501378,78643,0 -(183,165:17323565,35520049:173670,78643,0 -) -) -(183,165:17661089,35520049:501378,78643,0 -(183,165:17824943,35520049:173670,78643,0 -) -) -(183,165:18162467,35520049:501378,78643,0 -(183,165:18326321,35520049:173670,78643,0 -) -) -(183,165:18663845,35520049:501378,78643,0 -(183,165:18827699,35520049:173670,78643,0 -) -) -(183,165:19165223,35520049:501378,78643,0 -(183,165:19329077,35520049:173670,78643,0 -) -) -(183,165:19666601,35520049:501378,78643,0 -(183,165:19830455,35520049:173670,78643,0 -) -) -(183,165:20167979,35520049:501378,78643,0 -(183,165:20331833,35520049:173670,78643,0 -) -) -(183,165:20669357,35520049:501378,78643,0 -(183,165:20833211,35520049:173670,78643,0 -) -) -(183,165:21170735,35520049:501378,78643,0 -(183,165:21334589,35520049:173670,78643,0 -) -) -(183,165:21672113,35520049:501378,78643,0 -(183,165:21835967,35520049:173670,78643,0 -) -) -(183,165:22173491,35520049:501378,78643,0 -(183,165:22337345,35520049:173670,78643,0 -) -) -(183,165:22674869,35520049:501378,78643,0 -(183,165:22838723,35520049:173670,78643,0 -) -) -(183,165:23176247,35520049:501378,78643,0 -(183,165:23340101,35520049:173670,78643,0 -) -) -(183,165:23677625,35520049:501378,78643,0 -(183,165:23841479,35520049:173670,78643,0 -) -) -(183,165:24179003,35520049:501378,78643,0 -(183,165:24342857,35520049:173670,78643,0 -) -) -(183,165:24680381,35520049:501378,78643,0 -(183,165:24844235,35520049:173670,78643,0 -) -) -(183,165:25181759,35520049:501378,78643,0 -(183,165:25345613,35520049:173670,78643,0 -) -) -(183,165:25683137,35520049:501378,78643,0 -(183,165:25846991,35520049:173670,78643,0 -) -) -(183,165:26184515,35520049:501378,78643,0 -(183,165:26348369,35520049:173670,78643,0 -) -) -(183,165:26685893,35520049:501378,78643,0 -(183,165:26849747,35520049:173670,78643,0 -) -) -(183,165:27187271,35520049:501378,78643,0 -(183,165:27351125,35520049:173670,78643,0 -) -) -(183,165:27688649,35520049:501378,78643,0 -(183,165:27852503,35520049:173670,78643,0 -) -) -(183,165:28190027,35520049:501378,78643,0 -(183,165:28353881,35520049:173670,78643,0 -) -) -(183,165:28691405,35520049:501378,78643,0 -(183,165:28855259,35520049:173670,78643,0 -) -) -(183,165:29192783,35520049:501378,78643,0 -(183,165:29356637,35520049:173670,78643,0 -) -) -(183,165:29694161,35520049:501378,78643,0 -(183,165:29858015,35520049:173670,78643,0 -) -) -(183,165:30195539,35520049:501378,78643,0 -(183,165:30359393,35520049:173670,78643,0 -) -) -(183,165:30696917,35520049:501378,78643,0 -(183,165:30860771,35520049:173670,78643,0 -) -) -(183,165:31239539,35520049:1343490,485622,0 -k183,165:31239539,35520049:0 -k183,165:31387652,35520049:148113 -) -g183,165:30911859,35520049 -g183,165:32583029,35520049 -) -(183,166:6630773,36361537:25952256,505283,126483 -g183,166:9121143,36361537 -h183,166:9121143,36361537:983040,0,0 -h183,166:10104183,36361537:0,0,0 -g183,166:7613813,36361537 -(183,166:7613813,36361537:1507330,485622,11795 -k183,166:9121143,36361537:536742 -) -g183,166:11695397,36361537 -g183,166:13171923,36361537 -g183,166:15259244,36361537 -g183,166:15259244,36361537 -(183,166:15655577,36361537:501378,78643,0 -$183,166:15655577,36361537 -(183,166:15819431,36361537:173670,78643,0 -) -$183,166:16156955,36361537 -) -(183,166:16156955,36361537:501378,78643,0 -(183,166:16320809,36361537:173670,78643,0 -) -) -(183,166:16658333,36361537:501378,78643,0 -(183,166:16822187,36361537:173670,78643,0 -) -) -(183,166:17159711,36361537:501378,78643,0 -(183,166:17323565,36361537:173670,78643,0 -) -) -(183,166:17661089,36361537:501378,78643,0 -(183,166:17824943,36361537:173670,78643,0 -) -) -(183,166:18162467,36361537:501378,78643,0 -(183,166:18326321,36361537:173670,78643,0 -) -) -(183,166:18663845,36361537:501378,78643,0 -(183,166:18827699,36361537:173670,78643,0 -) -) -(183,166:19165223,36361537:501378,78643,0 -(183,166:19329077,36361537:173670,78643,0 -) -) -(183,166:19666601,36361537:501378,78643,0 -(183,166:19830455,36361537:173670,78643,0 -) -) -(183,166:20167979,36361537:501378,78643,0 -(183,166:20331833,36361537:173670,78643,0 -) -) -(183,166:20669357,36361537:501378,78643,0 -(183,166:20833211,36361537:173670,78643,0 -) -) -(183,166:21170735,36361537:501378,78643,0 -(183,166:21334589,36361537:173670,78643,0 -) -) -(183,166:21672113,36361537:501378,78643,0 -(183,166:21835967,36361537:173670,78643,0 -) -) -(183,166:22173491,36361537:501378,78643,0 -(183,166:22337345,36361537:173670,78643,0 -) -) -(183,166:22674869,36361537:501378,78643,0 -(183,166:22838723,36361537:173670,78643,0 -) -) -(183,166:23176247,36361537:501378,78643,0 -(183,166:23340101,36361537:173670,78643,0 -) -) -(183,166:23677625,36361537:501378,78643,0 -(183,166:23841479,36361537:173670,78643,0 -) -) -(183,166:24179003,36361537:501378,78643,0 -(183,166:24342857,36361537:173670,78643,0 -) -) -(183,166:24680381,36361537:501378,78643,0 -(183,166:24844235,36361537:173670,78643,0 -) -) -(183,166:25181759,36361537:501378,78643,0 -(183,166:25345613,36361537:173670,78643,0 -) -) -(183,166:25683137,36361537:501378,78643,0 -(183,166:25846991,36361537:173670,78643,0 -) -) -(183,166:26184515,36361537:501378,78643,0 -(183,166:26348369,36361537:173670,78643,0 -) -) -(183,166:26685893,36361537:501378,78643,0 -(183,166:26849747,36361537:173670,78643,0 -) -) -(183,166:27187271,36361537:501378,78643,0 -(183,166:27351125,36361537:173670,78643,0 -) -) -(183,166:27688649,36361537:501378,78643,0 -(183,166:27852503,36361537:173670,78643,0 -) -) -(183,166:28190027,36361537:501378,78643,0 -(183,166:28353881,36361537:173670,78643,0 -) -) -(183,166:28691405,36361537:501378,78643,0 -(183,166:28855259,36361537:173670,78643,0 -) -) -(183,166:29192783,36361537:501378,78643,0 -(183,166:29356637,36361537:173670,78643,0 -) -) -(183,166:29694161,36361537:501378,78643,0 -(183,166:29858015,36361537:173670,78643,0 -) -) -(183,166:30195539,36361537:501378,78643,0 -(183,166:30359393,36361537:173670,78643,0 -) -) -(183,166:30696917,36361537:501378,78643,0 -(183,166:30860771,36361537:173670,78643,0 -) -) -(183,166:31239539,36361537:1343490,485622,0 -k183,166:31239539,36361537:0 -k183,166:31387652,36361537:148113 -) -g183,166:30911859,36361537 -g183,166:32583029,36361537 -) -(183,167:6630773,37203025:25952256,485622,11795 -g183,167:9121143,37203025 -h183,167:9121143,37203025:983040,0,0 -h183,167:10104183,37203025:0,0,0 -g183,167:7613813,37203025 -(183,167:7613813,37203025:1507330,473825,0 -k183,167:9121143,37203025:536742 -) -g183,167:11303491,37203025 -g183,167:11303491,37203025 -(183,167:11644553,37203025:501378,78643,0 -$183,167:11644553,37203025 -(183,167:11808407,37203025:173670,78643,0 -) -$183,167:12145931,37203025 -) -(183,167:12145931,37203025:501378,78643,0 -(183,167:12309785,37203025:173670,78643,0 -) -) -(183,167:12647309,37203025:501378,78643,0 -(183,167:12811163,37203025:173670,78643,0 -) -) -(183,167:13148687,37203025:501378,78643,0 -(183,167:13312541,37203025:173670,78643,0 -) -) -(183,167:13650065,37203025:501378,78643,0 -(183,167:13813919,37203025:173670,78643,0 -) -) -(183,167:14151443,37203025:501378,78643,0 -(183,167:14315297,37203025:173670,78643,0 -) -) -(183,167:14652821,37203025:501378,78643,0 -(183,167:14816675,37203025:173670,78643,0 -) -) -(183,167:15154199,37203025:501378,78643,0 -(183,167:15318053,37203025:173670,78643,0 -) -) -(183,167:15655577,37203025:501378,78643,0 -(183,167:15819431,37203025:173670,78643,0 -) -) -(183,167:16156955,37203025:501378,78643,0 -(183,167:16320809,37203025:173670,78643,0 -) -) -(183,167:16658333,37203025:501378,78643,0 -(183,167:16822187,37203025:173670,78643,0 -) -) -(183,167:17159711,37203025:501378,78643,0 -(183,167:17323565,37203025:173670,78643,0 -) -) -(183,167:17661089,37203025:501378,78643,0 -(183,167:17824943,37203025:173670,78643,0 -) -) -(183,167:18162467,37203025:501378,78643,0 -(183,167:18326321,37203025:173670,78643,0 -) -) -(183,167:18663845,37203025:501378,78643,0 -(183,167:18827699,37203025:173670,78643,0 -) -) -(183,167:19165223,37203025:501378,78643,0 -(183,167:19329077,37203025:173670,78643,0 -) -) -(183,167:19666601,37203025:501378,78643,0 -(183,167:19830455,37203025:173670,78643,0 -) -) -(183,167:20167979,37203025:501378,78643,0 -(183,167:20331833,37203025:173670,78643,0 -) -) -(183,167:20669357,37203025:501378,78643,0 -(183,167:20833211,37203025:173670,78643,0 -) -) -(183,167:21170735,37203025:501378,78643,0 -(183,167:21334589,37203025:173670,78643,0 -) -) -(183,167:21672113,37203025:501378,78643,0 -(183,167:21835967,37203025:173670,78643,0 -) -) -(183,167:22173491,37203025:501378,78643,0 -(183,167:22337345,37203025:173670,78643,0 -) -) -(183,167:22674869,37203025:501378,78643,0 -(183,167:22838723,37203025:173670,78643,0 -) -) -(183,167:23176247,37203025:501378,78643,0 -(183,167:23340101,37203025:173670,78643,0 -) -) -(183,167:23677625,37203025:501378,78643,0 -(183,167:23841479,37203025:173670,78643,0 -) -) -(183,167:24179003,37203025:501378,78643,0 -(183,167:24342857,37203025:173670,78643,0 -) -) -(183,167:24680381,37203025:501378,78643,0 -(183,167:24844235,37203025:173670,78643,0 -) -) -(183,167:25181759,37203025:501378,78643,0 -(183,167:25345613,37203025:173670,78643,0 -) -) -(183,167:25683137,37203025:501378,78643,0 -(183,167:25846991,37203025:173670,78643,0 -) -) -(183,167:26184515,37203025:501378,78643,0 -(183,167:26348369,37203025:173670,78643,0 -) -) -(183,167:26685893,37203025:501378,78643,0 -(183,167:26849747,37203025:173670,78643,0 -) -) -(183,167:27187271,37203025:501378,78643,0 -(183,167:27351125,37203025:173670,78643,0 -) -) -(183,167:27688649,37203025:501378,78643,0 -(183,167:27852503,37203025:173670,78643,0 -) -) -(183,167:28190027,37203025:501378,78643,0 -(183,167:28353881,37203025:173670,78643,0 -) -) -(183,167:28691405,37203025:501378,78643,0 -(183,167:28855259,37203025:173670,78643,0 -) -) -(183,167:29192783,37203025:501378,78643,0 -(183,167:29356637,37203025:173670,78643,0 -) -) -(183,167:29694161,37203025:501378,78643,0 -(183,167:29858015,37203025:173670,78643,0 -) -) -(183,167:30195539,37203025:501378,78643,0 -(183,167:30359393,37203025:173670,78643,0 -) -) -(183,167:30696917,37203025:501378,78643,0 -(183,167:30860771,37203025:173670,78643,0 -) -) -(183,167:31239539,37203025:1343490,485622,11795 -k183,167:31239539,37203025:0 -k183,167:31387652,37203025:148113 -) -g183,167:30911859,37203025 -g183,167:32583029,37203025 -) -(183,168:6630773,38044513:25952256,505283,11795 -g183,168:9121143,38044513 -h183,168:9121143,38044513:983040,0,0 -h183,168:10104183,38044513:0,0,0 -g183,168:7613813,38044513 -(183,168:7613813,38044513:1507330,485622,11795 -k183,168:9121143,38044513:536742 -) -g183,168:11247786,38044513 -g183,168:11247786,38044513 -(183,168:11644553,38044513:501378,78643,0 -$183,168:11644553,38044513 -(183,168:11808407,38044513:173670,78643,0 -) -$183,168:12145931,38044513 -) -(183,168:12145931,38044513:501378,78643,0 -(183,168:12309785,38044513:173670,78643,0 -) -) -(183,168:12647309,38044513:501378,78643,0 -(183,168:12811163,38044513:173670,78643,0 -) -) -(183,168:13148687,38044513:501378,78643,0 -(183,168:13312541,38044513:173670,78643,0 -) -) -(183,168:13650065,38044513:501378,78643,0 -(183,168:13813919,38044513:173670,78643,0 -) -) -(183,168:14151443,38044513:501378,78643,0 -(183,168:14315297,38044513:173670,78643,0 -) -) -(183,168:14652821,38044513:501378,78643,0 -(183,168:14816675,38044513:173670,78643,0 -) -) -(183,168:15154199,38044513:501378,78643,0 -(183,168:15318053,38044513:173670,78643,0 -) -) -(183,168:15655577,38044513:501378,78643,0 -(183,168:15819431,38044513:173670,78643,0 -) -) -(183,168:16156955,38044513:501378,78643,0 -(183,168:16320809,38044513:173670,78643,0 -) -) -(183,168:16658333,38044513:501378,78643,0 -(183,168:16822187,38044513:173670,78643,0 -) -) -(183,168:17159711,38044513:501378,78643,0 -(183,168:17323565,38044513:173670,78643,0 -) -) -(183,168:17661089,38044513:501378,78643,0 -(183,168:17824943,38044513:173670,78643,0 -) -) -(183,168:18162467,38044513:501378,78643,0 -(183,168:18326321,38044513:173670,78643,0 -) -) -(183,168:18663845,38044513:501378,78643,0 -(183,168:18827699,38044513:173670,78643,0 -) -) -(183,168:19165223,38044513:501378,78643,0 -(183,168:19329077,38044513:173670,78643,0 -) -) -(183,168:19666601,38044513:501378,78643,0 -(183,168:19830455,38044513:173670,78643,0 -) -) -(183,168:20167979,38044513:501378,78643,0 -(183,168:20331833,38044513:173670,78643,0 -) -) -(183,168:20669357,38044513:501378,78643,0 -(183,168:20833211,38044513:173670,78643,0 -) -) -(183,168:21170735,38044513:501378,78643,0 -(183,168:21334589,38044513:173670,78643,0 -) -) -(183,168:21672113,38044513:501378,78643,0 -(183,168:21835967,38044513:173670,78643,0 -) -) -(183,168:22173491,38044513:501378,78643,0 -(183,168:22337345,38044513:173670,78643,0 -) -) -(183,168:22674869,38044513:501378,78643,0 -(183,168:22838723,38044513:173670,78643,0 -) -) -(183,168:23176247,38044513:501378,78643,0 -(183,168:23340101,38044513:173670,78643,0 -) -) -(183,168:23677625,38044513:501378,78643,0 -(183,168:23841479,38044513:173670,78643,0 -) -) -(183,168:24179003,38044513:501378,78643,0 -(183,168:24342857,38044513:173670,78643,0 -) -) -(183,168:24680381,38044513:501378,78643,0 -(183,168:24844235,38044513:173670,78643,0 -) -) -(183,168:25181759,38044513:501378,78643,0 -(183,168:25345613,38044513:173670,78643,0 -) -) -(183,168:25683137,38044513:501378,78643,0 -(183,168:25846991,38044513:173670,78643,0 -) -) -(183,168:26184515,38044513:501378,78643,0 -(183,168:26348369,38044513:173670,78643,0 -) -) -(183,168:26685893,38044513:501378,78643,0 -(183,168:26849747,38044513:173670,78643,0 -) -) -(183,168:27187271,38044513:501378,78643,0 -(183,168:27351125,38044513:173670,78643,0 -) -) -(183,168:27688649,38044513:501378,78643,0 -(183,168:27852503,38044513:173670,78643,0 -) -) -(183,168:28190027,38044513:501378,78643,0 -(183,168:28353881,38044513:173670,78643,0 -) -) -(183,168:28691405,38044513:501378,78643,0 -(183,168:28855259,38044513:173670,78643,0 -) -) -(183,168:29192783,38044513:501378,78643,0 -(183,168:29356637,38044513:173670,78643,0 -) -) -(183,168:29694161,38044513:501378,78643,0 -(183,168:29858015,38044513:173670,78643,0 -) -) -(183,168:30195539,38044513:501378,78643,0 -(183,168:30359393,38044513:173670,78643,0 -) -) -(183,168:30696917,38044513:501378,78643,0 -(183,168:30860771,38044513:173670,78643,0 -) -) -(183,168:31239538,38044513:1343490,485622,11795 -k183,168:31239538,38044513:0 -k183,168:31387651,38044513:148113 -) -g183,168:30911858,38044513 -g183,168:32583028,38044513 -) -(183,169:6630773,38886001:25952256,505283,126483 -g183,169:11218293,38886001 -h183,169:11218293,38886001:2490370,0,0 -h183,169:13708663,38886001:0,0,0 -g183,169:9121143,38886001 -(183,169:9121143,38886001:2097150,485622,11795 -k183,169:11218293,38886001:554432 -) -g183,169:12801642,38886001 -g183,169:14192316,38886001 -g183,169:15492550,38886001 -g183,169:17336733,38886001 -(183,169:17661089,38886001:501378,78643,0 -$183,169:17661089,38886001 -(183,169:17824943,38886001:173670,78643,0 -) -$183,169:18162467,38886001 -) -(183,169:18162467,38886001:501378,78643,0 -(183,169:18326321,38886001:173670,78643,0 -) -) -(183,169:18663845,38886001:501378,78643,0 -(183,169:18827699,38886001:173670,78643,0 -) -) -(183,169:19165223,38886001:501378,78643,0 -(183,169:19329077,38886001:173670,78643,0 -) -) -(183,169:19666601,38886001:501378,78643,0 -(183,169:19830455,38886001:173670,78643,0 -) -) -(183,169:20167979,38886001:501378,78643,0 -(183,169:20331833,38886001:173670,78643,0 -) -) -(183,169:20669357,38886001:501378,78643,0 -(183,169:20833211,38886001:173670,78643,0 -) -) -(183,169:21170735,38886001:501378,78643,0 -(183,169:21334589,38886001:173670,78643,0 -) -) -(183,169:21672113,38886001:501378,78643,0 -(183,169:21835967,38886001:173670,78643,0 -) -) -(183,169:22173491,38886001:501378,78643,0 -(183,169:22337345,38886001:173670,78643,0 -) -) -(183,169:22674869,38886001:501378,78643,0 -(183,169:22838723,38886001:173670,78643,0 -) -) -(183,169:23176247,38886001:501378,78643,0 -(183,169:23340101,38886001:173670,78643,0 -) -) -(183,169:23677625,38886001:501378,78643,0 -(183,169:23841479,38886001:173670,78643,0 -) -) -(183,169:24179003,38886001:501378,78643,0 -(183,169:24342857,38886001:173670,78643,0 -) -) -(183,169:24680381,38886001:501378,78643,0 -(183,169:24844235,38886001:173670,78643,0 -) -) -(183,169:25181759,38886001:501378,78643,0 -(183,169:25345613,38886001:173670,78643,0 -) -) -(183,169:25683137,38886001:501378,78643,0 -(183,169:25846991,38886001:173670,78643,0 -) -) -(183,169:26184515,38886001:501378,78643,0 -(183,169:26348369,38886001:173670,78643,0 -) -) -(183,169:26685893,38886001:501378,78643,0 -(183,169:26849747,38886001:173670,78643,0 -) -) -(183,169:27187271,38886001:501378,78643,0 -(183,169:27351125,38886001:173670,78643,0 -) -) -(183,169:27688649,38886001:501378,78643,0 -(183,169:27852503,38886001:173670,78643,0 -) -) -(183,169:28190027,38886001:501378,78643,0 -(183,169:28353881,38886001:173670,78643,0 -) -) -(183,169:28691405,38886001:501378,78643,0 -(183,169:28855259,38886001:173670,78643,0 -) -) -(183,169:29192783,38886001:501378,78643,0 -(183,169:29356637,38886001:173670,78643,0 -) -) -(183,169:29694161,38886001:501378,78643,0 -(183,169:29858015,38886001:173670,78643,0 -) -) -(183,169:30195539,38886001:501378,78643,0 -(183,169:30359393,38886001:173670,78643,0 -) -) -(183,169:30696917,38886001:501378,78643,0 -(183,169:30860771,38886001:173670,78643,0 -) -) -(183,169:31239539,38886001:1343490,485622,11795 -k183,169:31239539,38886001:0 -k183,169:31387652,38886001:148113 -) -g183,169:30911859,38886001 -g183,169:32583029,38886001 -) -(183,170:6630773,39727489:25952256,505283,11795 -g183,170:11218293,39727489 -h183,170:11218293,39727489:2490370,0,0 -h183,170:13708663,39727489:0,0,0 -g183,170:9121143,39727489 -(183,170:9121143,39727489:2097150,485622,11795 -k183,170:11218293,39727489:554432 -) -g183,170:15109820,39727489 -g183,170:17012330,39727489 -(183,170:17159711,39727489:501378,78643,0 -$183,170:17159711,39727489 -(183,170:17323565,39727489:173670,78643,0 -) -$183,170:17661089,39727489 -) -(183,170:17661089,39727489:501378,78643,0 -(183,170:17824943,39727489:173670,78643,0 -) -) -(183,170:18162467,39727489:501378,78643,0 -(183,170:18326321,39727489:173670,78643,0 -) -) -(183,170:18663845,39727489:501378,78643,0 -(183,170:18827699,39727489:173670,78643,0 -) -) -(183,170:19165223,39727489:501378,78643,0 -(183,170:19329077,39727489:173670,78643,0 -) -) -(183,170:19666601,39727489:501378,78643,0 -(183,170:19830455,39727489:173670,78643,0 -) -) -(183,170:20167979,39727489:501378,78643,0 -(183,170:20331833,39727489:173670,78643,0 -) -) -(183,170:20669357,39727489:501378,78643,0 -(183,170:20833211,39727489:173670,78643,0 -) -) -(183,170:21170735,39727489:501378,78643,0 -(183,170:21334589,39727489:173670,78643,0 -) -) -(183,170:21672113,39727489:501378,78643,0 -(183,170:21835967,39727489:173670,78643,0 -) -) -(183,170:22173491,39727489:501378,78643,0 -(183,170:22337345,39727489:173670,78643,0 -) -) -(183,170:22674869,39727489:501378,78643,0 -(183,170:22838723,39727489:173670,78643,0 -) -) -(183,170:23176247,39727489:501378,78643,0 -(183,170:23340101,39727489:173670,78643,0 -) -) -(183,170:23677625,39727489:501378,78643,0 -(183,170:23841479,39727489:173670,78643,0 -) -) -(183,170:24179003,39727489:501378,78643,0 -(183,170:24342857,39727489:173670,78643,0 -) -) -(183,170:24680381,39727489:501378,78643,0 -(183,170:24844235,39727489:173670,78643,0 -) -) -(183,170:25181759,39727489:501378,78643,0 -(183,170:25345613,39727489:173670,78643,0 -) -) -(183,170:25683137,39727489:501378,78643,0 -(183,170:25846991,39727489:173670,78643,0 -) -) -(183,170:26184515,39727489:501378,78643,0 -(183,170:26348369,39727489:173670,78643,0 -) -) -(183,170:26685893,39727489:501378,78643,0 -(183,170:26849747,39727489:173670,78643,0 -) -) -(183,170:27187271,39727489:501378,78643,0 -(183,170:27351125,39727489:173670,78643,0 -) -) -(183,170:27688649,39727489:501378,78643,0 -(183,170:27852503,39727489:173670,78643,0 -) -) -(183,170:28190027,39727489:501378,78643,0 -(183,170:28353881,39727489:173670,78643,0 -) -) -(183,170:28691405,39727489:501378,78643,0 -(183,170:28855259,39727489:173670,78643,0 -) -) -(183,170:29192783,39727489:501378,78643,0 -(183,170:29356637,39727489:173670,78643,0 -) -) -(183,170:29694161,39727489:501378,78643,0 -(183,170:29858015,39727489:173670,78643,0 -) -) -(183,170:30195539,39727489:501378,78643,0 -(183,170:30359393,39727489:173670,78643,0 -) -) -(183,170:30696917,39727489:501378,78643,0 -(183,170:30860771,39727489:173670,78643,0 -) -) -(183,170:31239539,39727489:1343490,485622,11795 -k183,170:31239539,39727489:0 -k183,170:31387652,39727489:148113 -) -g183,170:30911859,39727489 -g183,170:32583029,39727489 -) -(183,171:6630773,40568977:25952256,485622,11795 -g183,171:13905273,40568977 -h183,171:13905273,40568977:4587520,0,0 -h183,171:18492793,40568977:0,0,0 -g183,171:11218293,40568977 -(183,171:11218293,40568977:2686980,485622,11795 -k183,171:13905273,40568977:572133 -) -g183,171:15879873,40568977 -(183,171:16156955,40568977:501378,78643,0 -$183,171:16156955,40568977 -(183,171:16320809,40568977:173670,78643,0 -) -$183,171:16658333,40568977 -) -(183,171:16658333,40568977:501378,78643,0 -(183,171:16822187,40568977:173670,78643,0 -) -) -(183,171:17159711,40568977:501378,78643,0 -(183,171:17323565,40568977:173670,78643,0 -) -) -(183,171:17661089,40568977:501378,78643,0 -(183,171:17824943,40568977:173670,78643,0 -) -) -(183,171:18162467,40568977:501378,78643,0 -(183,171:18326321,40568977:173670,78643,0 -) -) -(183,171:18663845,40568977:501378,78643,0 -(183,171:18827699,40568977:173670,78643,0 -) -) -(183,171:19165223,40568977:501378,78643,0 -(183,171:19329077,40568977:173670,78643,0 -) -) -(183,171:19666601,40568977:501378,78643,0 -(183,171:19830455,40568977:173670,78643,0 -) -) -(183,171:20167979,40568977:501378,78643,0 -(183,171:20331833,40568977:173670,78643,0 -) -) -(183,171:20669357,40568977:501378,78643,0 -(183,171:20833211,40568977:173670,78643,0 -) -) -(183,171:21170735,40568977:501378,78643,0 -(183,171:21334589,40568977:173670,78643,0 -) -) -(183,171:21672113,40568977:501378,78643,0 -(183,171:21835967,40568977:173670,78643,0 -) -) -(183,171:22173491,40568977:501378,78643,0 -(183,171:22337345,40568977:173670,78643,0 -) -) -(183,171:22674869,40568977:501378,78643,0 -(183,171:22838723,40568977:173670,78643,0 -) -) -(183,171:23176247,40568977:501378,78643,0 -(183,171:23340101,40568977:173670,78643,0 -) -) -(183,171:23677625,40568977:501378,78643,0 -(183,171:23841479,40568977:173670,78643,0 -) -) -(183,171:24179003,40568977:501378,78643,0 -(183,171:24342857,40568977:173670,78643,0 -) -) -(183,171:24680381,40568977:501378,78643,0 -(183,171:24844235,40568977:173670,78643,0 -) -) -(183,171:25181759,40568977:501378,78643,0 -(183,171:25345613,40568977:173670,78643,0 -) -) -(183,171:25683137,40568977:501378,78643,0 -(183,171:25846991,40568977:173670,78643,0 -) -) -(183,171:26184515,40568977:501378,78643,0 -(183,171:26348369,40568977:173670,78643,0 -) -) -(183,171:26685893,40568977:501378,78643,0 -(183,171:26849747,40568977:173670,78643,0 -) -) -(183,171:27187271,40568977:501378,78643,0 -(183,171:27351125,40568977:173670,78643,0 -) -) -(183,171:27688649,40568977:501378,78643,0 -(183,171:27852503,40568977:173670,78643,0 -) -) -(183,171:28190027,40568977:501378,78643,0 -(183,171:28353881,40568977:173670,78643,0 -) -) -(183,171:28691405,40568977:501378,78643,0 -(183,171:28855259,40568977:173670,78643,0 -) -) -(183,171:29192783,40568977:501378,78643,0 -(183,171:29356637,40568977:173670,78643,0 -) -) -(183,171:29694161,40568977:501378,78643,0 -(183,171:29858015,40568977:173670,78643,0 -) -) -(183,171:30195539,40568977:501378,78643,0 -(183,171:30359393,40568977:173670,78643,0 -) -) -(183,171:30696917,40568977:501378,78643,0 -(183,171:30860771,40568977:173670,78643,0 -) -) -(183,171:31239539,40568977:1343490,485622,11795 -k183,171:31239539,40568977:0 -k183,171:31387652,40568977:148113 -) -g183,171:30911859,40568977 -g183,171:32583029,40568977 -) -(183,172:6630773,41410465:25952256,505283,11795 -g183,172:13905273,41410465 -h183,172:13905273,41410465:4587520,0,0 -h183,172:18492793,41410465:0,0,0 -g183,172:11218293,41410465 -(183,172:11218293,41410465:2686980,485622,11795 -k183,172:13905273,41410465:572133 -) -g183,172:15796642,41410465 -g183,172:17187316,41410465 -g183,172:18895184,41410465 -g183,172:20739367,41410465 -(183,172:21170735,41410465:501378,78643,0 -$183,172:21170735,41410465 -(183,172:21334589,41410465:173670,78643,0 -) -$183,172:21672113,41410465 -) -(183,172:21672113,41410465:501378,78643,0 -(183,172:21835967,41410465:173670,78643,0 -) -) -(183,172:22173491,41410465:501378,78643,0 -(183,172:22337345,41410465:173670,78643,0 -) -) -(183,172:22674869,41410465:501378,78643,0 -(183,172:22838723,41410465:173670,78643,0 -) -) -(183,172:23176247,41410465:501378,78643,0 -(183,172:23340101,41410465:173670,78643,0 -) -) -(183,172:23677625,41410465:501378,78643,0 -(183,172:23841479,41410465:173670,78643,0 -) -) -(183,172:24179003,41410465:501378,78643,0 -(183,172:24342857,41410465:173670,78643,0 -) -) -(183,172:24680381,41410465:501378,78643,0 -(183,172:24844235,41410465:173670,78643,0 -) -) -(183,172:25181759,41410465:501378,78643,0 -(183,172:25345613,41410465:173670,78643,0 -) -) -(183,172:25683137,41410465:501378,78643,0 -(183,172:25846991,41410465:173670,78643,0 -) -) -(183,172:26184515,41410465:501378,78643,0 -(183,172:26348369,41410465:173670,78643,0 -) -) -(183,172:26685893,41410465:501378,78643,0 -(183,172:26849747,41410465:173670,78643,0 -) -) -(183,172:27187271,41410465:501378,78643,0 -(183,172:27351125,41410465:173670,78643,0 -) -) -(183,172:27688649,41410465:501378,78643,0 -(183,172:27852503,41410465:173670,78643,0 -) -) -(183,172:28190027,41410465:501378,78643,0 -(183,172:28353881,41410465:173670,78643,0 -) -) -(183,172:28691405,41410465:501378,78643,0 -(183,172:28855259,41410465:173670,78643,0 -) -) -(183,172:29192783,41410465:501378,78643,0 -(183,172:29356637,41410465:173670,78643,0 -) -) -(183,172:29694161,41410465:501378,78643,0 -(183,172:29858015,41410465:173670,78643,0 -) -) -(183,172:30195539,41410465:501378,78643,0 -(183,172:30359393,41410465:173670,78643,0 -) -) -(183,172:30696917,41410465:501378,78643,0 -(183,172:30860771,41410465:173670,78643,0 -) -) -(183,172:31239539,41410465:1343490,485622,11795 -k183,172:31239539,41410465:0 -k183,172:31387652,41410465:148113 -) -g183,172:30911859,41410465 -g183,172:32583029,41410465 -) -(183,173:6630773,42251953:25952256,513147,11795 -g183,173:13905273,42251953 -h183,173:13905273,42251953:4587520,0,0 -h183,173:18492793,42251953:0,0,0 -g183,173:11218293,42251953 -(183,173:11218293,42251953:2686980,485622,11795 -k183,173:13905273,42251953:572133 -) -g183,173:18264072,42251953 -g183,173:20166582,42251953 -(183,173:20167979,42251953:501378,78643,0 -$183,173:20167979,42251953 -(183,173:20331833,42251953:173670,78643,0 -) -$183,173:20669357,42251953 -) -(183,173:20669357,42251953:501378,78643,0 -(183,173:20833211,42251953:173670,78643,0 -) -) -(183,173:21170735,42251953:501378,78643,0 -(183,173:21334589,42251953:173670,78643,0 -) -) -(183,173:21672113,42251953:501378,78643,0 -(183,173:21835967,42251953:173670,78643,0 -) -) -(183,173:22173491,42251953:501378,78643,0 -(183,173:22337345,42251953:173670,78643,0 -) -) -(183,173:22674869,42251953:501378,78643,0 -(183,173:22838723,42251953:173670,78643,0 -) -) -(183,173:23176247,42251953:501378,78643,0 -(183,173:23340101,42251953:173670,78643,0 -) -) -(183,173:23677625,42251953:501378,78643,0 -(183,173:23841479,42251953:173670,78643,0 -) -) -(183,173:24179003,42251953:501378,78643,0 -(183,173:24342857,42251953:173670,78643,0 -) -) -(183,173:24680381,42251953:501378,78643,0 -(183,173:24844235,42251953:173670,78643,0 -) -) -(183,173:25181759,42251953:501378,78643,0 -(183,173:25345613,42251953:173670,78643,0 -) -) -(183,173:25683137,42251953:501378,78643,0 -(183,173:25846991,42251953:173670,78643,0 -) -) -(183,173:26184515,42251953:501378,78643,0 -(183,173:26348369,42251953:173670,78643,0 -) -) -(183,173:26685893,42251953:501378,78643,0 -(183,173:26849747,42251953:173670,78643,0 -) -) -(183,173:27187271,42251953:501378,78643,0 -(183,173:27351125,42251953:173670,78643,0 -) -) -(183,173:27688649,42251953:501378,78643,0 -(183,173:27852503,42251953:173670,78643,0 -) -) -(183,173:28190027,42251953:501378,78643,0 -(183,173:28353881,42251953:173670,78643,0 -) -) -(183,173:28691405,42251953:501378,78643,0 -(183,173:28855259,42251953:173670,78643,0 -) -) -(183,173:29192783,42251953:501378,78643,0 -(183,173:29356637,42251953:173670,78643,0 -) -) -(183,173:29694161,42251953:501378,78643,0 -(183,173:29858015,42251953:173670,78643,0 -) -) -(183,173:30195539,42251953:501378,78643,0 -(183,173:30359393,42251953:173670,78643,0 -) -) -(183,173:30696917,42251953:501378,78643,0 -(183,173:30860771,42251953:173670,78643,0 -) -) -(183,173:31239539,42251953:1343490,485622,11795 -k183,173:31239539,42251953:0 -k183,173:31387652,42251953:148113 -) -g183,173:30911859,42251953 -g183,173:32583029,42251953 -) -(183,174:6630773,43093441:25952256,513147,138281 -g183,174:13905273,43093441 -h183,174:13905273,43093441:4587520,0,0 -h183,174:18492793,43093441:0,0,0 -g183,174:11218293,43093441 -(183,174:11218293,43093441:2686980,485622,11795 -k183,174:13905273,43093441:572133 -) -g183,174:16673513,43093441 -g183,174:17532034,43093441 -$183,174:17532034,43093441 -$183,174:18034695,43093441 -g183,174:18233924,43093441 -g183,174:19624598,43093441 -$183,174:19624598,43093441 -$183,174:20176411,43093441 -g183,174:20375640,43093441 -g183,174:21774178,43093441 -(183,174:22173491,43093441:501378,78643,0 -$183,174:22173491,43093441 -(183,174:22337345,43093441:173670,78643,0 -) -$183,174:22674869,43093441 -) -(183,174:22674869,43093441:501378,78643,0 -(183,174:22838723,43093441:173670,78643,0 -) -) -(183,174:23176247,43093441:501378,78643,0 -(183,174:23340101,43093441:173670,78643,0 -) -) -(183,174:23677625,43093441:501378,78643,0 -(183,174:23841479,43093441:173670,78643,0 -) -) -(183,174:24179003,43093441:501378,78643,0 -(183,174:24342857,43093441:173670,78643,0 -) -) -(183,174:24680381,43093441:501378,78643,0 -(183,174:24844235,43093441:173670,78643,0 -) -) -(183,174:25181759,43093441:501378,78643,0 -(183,174:25345613,43093441:173670,78643,0 -) -) -(183,174:25683137,43093441:501378,78643,0 -(183,174:25846991,43093441:173670,78643,0 -) -) -(183,174:26184515,43093441:501378,78643,0 -(183,174:26348369,43093441:173670,78643,0 -) -) -(183,174:26685893,43093441:501378,78643,0 -(183,174:26849747,43093441:173670,78643,0 -) -) -(183,174:27187271,43093441:501378,78643,0 -(183,174:27351125,43093441:173670,78643,0 -) -) -(183,174:27688649,43093441:501378,78643,0 -(183,174:27852503,43093441:173670,78643,0 -) -) -(183,174:28190027,43093441:501378,78643,0 -(183,174:28353881,43093441:173670,78643,0 -) -) -(183,174:28691405,43093441:501378,78643,0 -(183,174:28855259,43093441:173670,78643,0 -) -) -(183,174:29192783,43093441:501378,78643,0 -(183,174:29356637,43093441:173670,78643,0 -) -) -(183,174:29694161,43093441:501378,78643,0 -(183,174:29858015,43093441:173670,78643,0 -) -) -(183,174:30195539,43093441:501378,78643,0 -(183,174:30359393,43093441:173670,78643,0 -) -) -(183,174:30696917,43093441:501378,78643,0 -(183,174:30860771,43093441:173670,78643,0 -) -) -(183,174:31239539,43093441:1343490,485622,11795 -k183,174:31239539,43093441:0 -k183,174:31387652,43093441:148113 -) -g183,174:30911859,43093441 -g183,174:32583029,43093441 -) -(183,175:6630773,43934929:25952256,505283,126483 -g183,175:13905273,43934929 -h183,175:13905273,43934929:4587520,0,0 -h183,175:18492793,43934929:0,0,0 -g183,175:11218293,43934929 -(183,175:11218293,43934929:2686980,485622,11795 -k183,175:13905273,43934929:572133 -) -g183,175:17376059,43934929 -g183,175:18774597,43934929 -(183,175:19165223,43934929:501378,78643,0 -$183,175:19165223,43934929 -(183,175:19329077,43934929:173670,78643,0 -) -$183,175:19666601,43934929 -) -(183,175:19666601,43934929:501378,78643,0 -(183,175:19830455,43934929:173670,78643,0 -) -) -(183,175:20167979,43934929:501378,78643,0 -(183,175:20331833,43934929:173670,78643,0 -) -) -(183,175:20669357,43934929:501378,78643,0 -(183,175:20833211,43934929:173670,78643,0 -) -) -(183,175:21170735,43934929:501378,78643,0 -(183,175:21334589,43934929:173670,78643,0 -) -) -(183,175:21672113,43934929:501378,78643,0 -(183,175:21835967,43934929:173670,78643,0 -) -) -(183,175:22173491,43934929:501378,78643,0 -(183,175:22337345,43934929:173670,78643,0 -) -) -(183,175:22674869,43934929:501378,78643,0 -(183,175:22838723,43934929:173670,78643,0 -) -) -(183,175:23176247,43934929:501378,78643,0 -(183,175:23340101,43934929:173670,78643,0 -) -) -(183,175:23677625,43934929:501378,78643,0 -(183,175:23841479,43934929:173670,78643,0 -) -) -(183,175:24179003,43934929:501378,78643,0 -(183,175:24342857,43934929:173670,78643,0 -) -) -(183,175:24680381,43934929:501378,78643,0 -(183,175:24844235,43934929:173670,78643,0 -) -) -(183,175:25181759,43934929:501378,78643,0 -(183,175:25345613,43934929:173670,78643,0 -) -) -(183,175:25683137,43934929:501378,78643,0 -(183,175:25846991,43934929:173670,78643,0 -) -) -(183,175:26184515,43934929:501378,78643,0 -(183,175:26348369,43934929:173670,78643,0 -) -) -(183,175:26685893,43934929:501378,78643,0 -(183,175:26849747,43934929:173670,78643,0 -) -) -(183,175:27187271,43934929:501378,78643,0 -(183,175:27351125,43934929:173670,78643,0 -) -) -(183,175:27688649,43934929:501378,78643,0 -(183,175:27852503,43934929:173670,78643,0 -) -) -(183,175:28190027,43934929:501378,78643,0 -(183,175:28353881,43934929:173670,78643,0 -) -) -(183,175:28691405,43934929:501378,78643,0 -(183,175:28855259,43934929:173670,78643,0 -) -) -(183,175:29192783,43934929:501378,78643,0 -(183,175:29356637,43934929:173670,78643,0 -) -) -(183,175:29694161,43934929:501378,78643,0 -(183,175:29858015,43934929:173670,78643,0 -) -) -(183,175:30195539,43934929:501378,78643,0 -(183,175:30359393,43934929:173670,78643,0 -) -) -(183,175:30696917,43934929:501378,78643,0 -(183,175:30860771,43934929:173670,78643,0 -) -) -(183,175:31239539,43934929:1343490,485622,11795 -k183,175:31239539,43934929:0 -k183,175:31387652,43934929:148113 -) -g183,175:30911859,43934929 -g183,175:32583029,43934929 -) -(183,176:6630773,44776417:25952256,513147,138281 -g183,176:11218293,44776417 -h183,176:11218293,44776417:2490370,0,0 -h183,176:13708663,44776417:0,0,0 -g183,176:9121143,44776417 -(183,176:9121143,44776417:2097150,485622,11795 -k183,176:11218293,44776417:554432 -) -g183,176:13020533,44776417 -g183,176:14411207,44776417 -g183,176:15991280,44776417 -g183,176:18093019,44776417 -g183,176:19239899,44776417 -$183,176:19239899,44776417 -$183,176:19742560,44776417 -g183,176:19941789,44776417 -g183,176:21332463,44776417 -$183,176:21332463,44776417 -$183,176:21884276,44776417 -g183,176:21884276,44776417 -(183,176:22173491,44776417:501378,78643,0 -$183,176:22173491,44776417 -(183,176:22337345,44776417:173670,78643,0 -) -$183,176:22674869,44776417 -) -(183,176:22674869,44776417:501378,78643,0 -(183,176:22838723,44776417:173670,78643,0 -) -) -(183,176:23176247,44776417:501378,78643,0 -(183,176:23340101,44776417:173670,78643,0 -) -) -(183,176:23677625,44776417:501378,78643,0 -(183,176:23841479,44776417:173670,78643,0 -) -) -(183,176:24179003,44776417:501378,78643,0 -(183,176:24342857,44776417:173670,78643,0 -) -) -(183,176:24680381,44776417:501378,78643,0 -(183,176:24844235,44776417:173670,78643,0 -) -) -(183,176:25181759,44776417:501378,78643,0 -(183,176:25345613,44776417:173670,78643,0 -) -) -(183,176:25683137,44776417:501378,78643,0 -(183,176:25846991,44776417:173670,78643,0 -) -) -(183,176:26184515,44776417:501378,78643,0 -(183,176:26348369,44776417:173670,78643,0 -) -) -(183,176:26685893,44776417:501378,78643,0 -(183,176:26849747,44776417:173670,78643,0 -) -) -(183,176:27187271,44776417:501378,78643,0 -(183,176:27351125,44776417:173670,78643,0 -) -) -(183,176:27688649,44776417:501378,78643,0 -(183,176:27852503,44776417:173670,78643,0 -) -) -(183,176:28190027,44776417:501378,78643,0 -(183,176:28353881,44776417:173670,78643,0 -) -) -(183,176:28691405,44776417:501378,78643,0 -(183,176:28855259,44776417:173670,78643,0 -) -) -(183,176:29192783,44776417:501378,78643,0 -(183,176:29356637,44776417:173670,78643,0 -) -) -(183,176:29694161,44776417:501378,78643,0 -(183,176:29858015,44776417:173670,78643,0 -) -) -(183,176:30195539,44776417:501378,78643,0 -(183,176:30359393,44776417:173670,78643,0 -) -) -(183,176:30696917,44776417:501378,78643,0 -(183,176:30860771,44776417:173670,78643,0 -) -) -(183,176:31239539,44776417:1343490,485622,11795 -k183,176:31239539,44776417:0 -k183,176:31387652,44776417:148113 -) -g183,176:30911859,44776417 -g183,176:32583029,44776417 -) -(183,177:6630773,45617905:25952256,513147,138281 -g183,177:11218293,45617905 -h183,177:11218293,45617905:2490370,0,0 -h183,177:13708663,45617905:0,0,0 -g183,177:9121143,45617905 -(183,177:9121143,45617905:2097150,485622,11795 -k183,177:11218293,45617905:554432 -) -g183,177:14025855,45617905 -g183,177:16127594,45617905 -g183,177:17274474,45617905 -$183,177:17274474,45617905 -$183,177:17777135,45617905 -g183,177:17976364,45617905 -g183,177:19367038,45617905 -$183,177:19367038,45617905 -$183,177:19918851,45617905 -g183,177:19918851,45617905 -(183,177:20167979,45617905:501378,78643,0 -$183,177:20167979,45617905 -(183,177:20331833,45617905:173670,78643,0 -) -$183,177:20669357,45617905 -) -(183,177:20669357,45617905:501378,78643,0 -(183,177:20833211,45617905:173670,78643,0 -) -) -(183,177:21170735,45617905:501378,78643,0 -(183,177:21334589,45617905:173670,78643,0 -) -) -(183,177:21672113,45617905:501378,78643,0 -(183,177:21835967,45617905:173670,78643,0 -) -) -(183,177:22173491,45617905:501378,78643,0 -(183,177:22337345,45617905:173670,78643,0 -) -) -(183,177:22674869,45617905:501378,78643,0 -(183,177:22838723,45617905:173670,78643,0 -) -) -(183,177:23176247,45617905:501378,78643,0 -(183,177:23340101,45617905:173670,78643,0 -) -) -(183,177:23677625,45617905:501378,78643,0 -(183,177:23841479,45617905:173670,78643,0 -) -) -(183,177:24179003,45617905:501378,78643,0 -(183,177:24342857,45617905:173670,78643,0 -) -) -(183,177:24680381,45617905:501378,78643,0 -(183,177:24844235,45617905:173670,78643,0 -) -) -(183,177:25181759,45617905:501378,78643,0 -(183,177:25345613,45617905:173670,78643,0 -) -) -(183,177:25683137,45617905:501378,78643,0 -(183,177:25846991,45617905:173670,78643,0 -) -) -(183,177:26184515,45617905:501378,78643,0 -(183,177:26348369,45617905:173670,78643,0 -) -) -(183,177:26685893,45617905:501378,78643,0 -(183,177:26849747,45617905:173670,78643,0 -) -) -(183,177:27187271,45617905:501378,78643,0 -(183,177:27351125,45617905:173670,78643,0 -) -) -(183,177:27688649,45617905:501378,78643,0 -(183,177:27852503,45617905:173670,78643,0 -) -) -(183,177:28190027,45617905:501378,78643,0 -(183,177:28353881,45617905:173670,78643,0 -) -) -(183,177:28691405,45617905:501378,78643,0 -(183,177:28855259,45617905:173670,78643,0 -) -) -(183,177:29192783,45617905:501378,78643,0 -(183,177:29356637,45617905:173670,78643,0 -) -) -(183,177:29694161,45617905:501378,78643,0 -(183,177:29858015,45617905:173670,78643,0 -) -) -(183,177:30195539,45617905:501378,78643,0 -(183,177:30359393,45617905:173670,78643,0 -) -) -(183,177:30696917,45617905:501378,78643,0 -(183,177:30860771,45617905:173670,78643,0 -) -) -(183,177:31239539,45617905:1343490,485622,11795 -k183,177:31239539,45617905:0 -k183,177:31387652,45617905:148113 -) -g183,177:30911859,45617905 -g183,177:32583029,45617905 -) -] -(183,179:32583029,45706769:0,0,0 -g183,179:32583029,45706769 -) -) -] -(183,179:6630773,47279633:25952256,0,0 -h183,179:6630773,47279633:25952256,0,0 -) -] -(183,179:4262630,4025873:0,0,0 -[183,179:-473656,4025873:0,0,0 -(183,179:-473656,-710413:0,0,0 -(183,179:-473656,-710413:0,0,0 -g183,179:-473656,-710413 -) -g183,179:-473656,-710413 -) -] -) -] -!149733 -}5 -!11 -{6 -[183,226:4262630,47279633:28320399,43253760,0 -(183,226:4262630,4025873:0,0,0 -[183,226:-473656,4025873:0,0,0 -(183,226:-473656,-710413:0,0,0 -(183,226:-473656,-644877:0,0,0 -k183,226:-473656,-644877:-65536 -) -(183,226:-473656,4736287:0,0,0 -k183,226:-473656,4736287:5209943 -) -g183,226:-473656,-710413 -) -] -) -[183,226:6630773,47279633:25952256,43253760,0 -[183,226:6630773,4812305:25952256,786432,0 -(183,226:6630773,4812305:25952256,485622,11795 -(183,226:6630773,4812305:25952256,485622,11795 -g183,226:3078558,4812305 -[183,226:3078558,4812305:0,0,0 -(183,226:3078558,2439708:0,1703936,0 -k183,226:1358238,2439708:-1720320 -(1,122:1358238,2439708:1720320,1703936,0 -(1,122:1358238,2439708:1179648,16384,0 -r183,226:2537886,2439708:1179648,16384,0 -) -g1,122:3062174,2439708 -(1,122:3062174,2439708:16384,1703936,0 -[1,122:3062174,2439708:25952256,1703936,0 -(1,122:3062174,1915420:25952256,1179648,0 -(1,122:3062174,1915420:16384,1179648,0 -r183,226:3078558,1915420:16384,1179648,0 -) -k1,122:29014430,1915420:25935872 -g1,122:29014430,1915420 -) -] -) -) -) -] -[183,226:3078558,4812305:0,0,0 -(183,226:3078558,2439708:0,1703936,0 -g183,226:29030814,2439708 -g183,226:36135244,2439708 -(1,122:36135244,2439708:1720320,1703936,0 -(1,122:36135244,2439708:16384,1703936,0 -[1,122:36135244,2439708:25952256,1703936,0 -(1,122:36135244,1915420:25952256,1179648,0 -(1,122:36135244,1915420:16384,1179648,0 -r183,226:36151628,1915420:16384,1179648,0 -) -k1,122:62087500,1915420:25935872 -g1,122:62087500,1915420 -) -] -) -g1,122:36675916,2439708 -(1,122:36675916,2439708:1179648,16384,0 -r183,226:37855564,2439708:1179648,16384,0 -) -) -k183,226:3078556,2439708:-34777008 -) -] -[183,226:3078558,4812305:0,0,0 -(183,226:3078558,49800853:0,16384,2228224 -k183,226:1358238,49800853:-1720320 -(1,122:1358238,49800853:1720320,16384,2228224 -(1,122:1358238,49800853:1179648,16384,0 -r183,226:2537886,49800853:1179648,16384,0 -) -g1,122:3062174,49800853 -(1,122:3062174,52029077:16384,1703936,0 -[1,122:3062174,52029077:25952256,1703936,0 -(1,122:3062174,51504789:25952256,1179648,0 -(1,122:3062174,51504789:16384,1179648,0 -r183,226:3078558,51504789:16384,1179648,0 -) -k1,122:29014430,51504789:25935872 -g1,122:29014430,51504789 -) -] -) -) -) -] -[183,226:3078558,4812305:0,0,0 -(183,226:3078558,49800853:0,16384,2228224 -g183,226:29030814,49800853 -g183,226:36135244,49800853 -(1,122:36135244,49800853:1720320,16384,2228224 -(1,122:36135244,52029077:16384,1703936,0 -[1,122:36135244,52029077:25952256,1703936,0 -(1,122:36135244,51504789:25952256,1179648,0 -(1,122:36135244,51504789:16384,1179648,0 -r183,226:36151628,51504789:16384,1179648,0 -) -k1,122:62087500,51504789:25935872 -g1,122:62087500,51504789 -) -] -) -g1,122:36675916,49800853 -(1,122:36675916,49800853:1179648,16384,0 -r183,226:37855564,49800853:1179648,16384,0 -) -) -k183,226:3078556,49800853:-34777008 -) -] -g183,226:6630773,4812305 -g183,226:6630773,4812305 -g183,226:9585136,4812305 -k183,226:32016798,4812305:22431662 -) -) -] -[183,226:6630773,45706769:25952256,40108032,0 -(183,226:6630773,45706769:25952256,40108032,0 -(183,226:6630773,45706769:0,0,0 -g183,226:6630773,45706769 -) -[183,226:6630773,45706769:25952256,40108032,0 -(183,178:6630773,6254097:25952256,485622,11795 -g183,178:11218293,6254097 -h183,178:11218293,6254097:2490370,0,0 -h183,178:13708663,6254097:0,0,0 -g183,178:9121143,6254097 -(183,178:9121143,6254097:2097150,485622,11795 -k183,178:11218293,6254097:554432 -) -g183,178:12511974,6254097 -(183,178:12647309,6254097:501378,78643,0 -$183,178:12647309,6254097 -(183,178:12811163,6254097:173670,78643,0 -) -$183,178:13148687,6254097 -) -(183,178:13148687,6254097:501378,78643,0 -(183,178:13312541,6254097:173670,78643,0 -) -) -(183,178:13650065,6254097:501378,78643,0 -(183,178:13813919,6254097:173670,78643,0 -) -) -(183,178:14151443,6254097:501378,78643,0 -(183,178:14315297,6254097:173670,78643,0 -) -) -(183,178:14652821,6254097:501378,78643,0 -(183,178:14816675,6254097:173670,78643,0 -) -) -(183,178:15154199,6254097:501378,78643,0 -(183,178:15318053,6254097:173670,78643,0 -) -) -(183,178:15655577,6254097:501378,78643,0 -(183,178:15819431,6254097:173670,78643,0 -) -) -(183,178:16156955,6254097:501378,78643,0 -(183,178:16320809,6254097:173670,78643,0 -) -) -(183,178:16658333,6254097:501378,78643,0 -(183,178:16822187,6254097:173670,78643,0 -) -) -(183,178:17159711,6254097:501378,78643,0 -(183,178:17323565,6254097:173670,78643,0 -) -) -(183,178:17661089,6254097:501378,78643,0 -(183,178:17824943,6254097:173670,78643,0 -) -) -(183,178:18162467,6254097:501378,78643,0 -(183,178:18326321,6254097:173670,78643,0 -) -) -(183,178:18663845,6254097:501378,78643,0 -(183,178:18827699,6254097:173670,78643,0 -) -) -(183,178:19165223,6254097:501378,78643,0 -(183,178:19329077,6254097:173670,78643,0 -) -) -(183,178:19666601,6254097:501378,78643,0 -(183,178:19830455,6254097:173670,78643,0 -) -) -(183,178:20167979,6254097:501378,78643,0 -(183,178:20331833,6254097:173670,78643,0 -) -) -(183,178:20669357,6254097:501378,78643,0 -(183,178:20833211,6254097:173670,78643,0 -) -) -(183,178:21170735,6254097:501378,78643,0 -(183,178:21334589,6254097:173670,78643,0 -) -) -(183,178:21672113,6254097:501378,78643,0 -(183,178:21835967,6254097:173670,78643,0 -) -) -(183,178:22173491,6254097:501378,78643,0 -(183,178:22337345,6254097:173670,78643,0 -) -) -(183,178:22674869,6254097:501378,78643,0 -(183,178:22838723,6254097:173670,78643,0 -) -) -(183,178:23176247,6254097:501378,78643,0 -(183,178:23340101,6254097:173670,78643,0 -) -) -(183,178:23677625,6254097:501378,78643,0 -(183,178:23841479,6254097:173670,78643,0 -) -) -(183,178:24179003,6254097:501378,78643,0 -(183,178:24342857,6254097:173670,78643,0 -) -) -(183,178:24680381,6254097:501378,78643,0 -(183,178:24844235,6254097:173670,78643,0 -) -) -(183,178:25181759,6254097:501378,78643,0 -(183,178:25345613,6254097:173670,78643,0 -) -) -(183,178:25683137,6254097:501378,78643,0 -(183,178:25846991,6254097:173670,78643,0 -) -) -(183,178:26184515,6254097:501378,78643,0 -(183,178:26348369,6254097:173670,78643,0 -) -) -(183,178:26685893,6254097:501378,78643,0 -(183,178:26849747,6254097:173670,78643,0 -) -) -(183,178:27187271,6254097:501378,78643,0 -(183,178:27351125,6254097:173670,78643,0 -) -) -(183,178:27688649,6254097:501378,78643,0 -(183,178:27852503,6254097:173670,78643,0 -) -) -(183,178:28190027,6254097:501378,78643,0 -(183,178:28353881,6254097:173670,78643,0 -) -) -(183,178:28691405,6254097:501378,78643,0 -(183,178:28855259,6254097:173670,78643,0 -) -) -(183,178:29192783,6254097:501378,78643,0 -(183,178:29356637,6254097:173670,78643,0 -) -) -(183,178:29694161,6254097:501378,78643,0 -(183,178:29858015,6254097:173670,78643,0 -) -) -(183,178:30195539,6254097:501378,78643,0 -(183,178:30359393,6254097:173670,78643,0 -) -) -(183,178:30696917,6254097:501378,78643,0 -(183,178:30860771,6254097:173670,78643,0 -) -) -(183,178:31239538,6254097:1343490,485622,11795 -k183,178:31239538,6254097:0 -k183,178:31387651,6254097:148113 -) -g183,178:30911858,6254097 -g183,178:32583028,6254097 -) -(183,179:6630773,7095585:25952256,513147,11795 -g183,179:11218293,7095585 -h183,179:11218293,7095585:2490370,0,0 -h183,179:13708663,7095585:0,0,0 -g183,179:9121143,7095585 -(183,179:9121143,7095585:2097150,485622,11795 -k183,179:11218293,7095585:554432 -) -g183,179:13155537,7095585 -g183,179:14546211,7095585 -g183,179:15387038,7095585 -(183,179:15655577,7095585:501378,78643,0 -$183,179:15655577,7095585 -(183,179:15819431,7095585:173670,78643,0 -) -$183,179:16156955,7095585 -) -(183,179:16156955,7095585:501378,78643,0 -(183,179:16320809,7095585:173670,78643,0 -) -) -(183,179:16658333,7095585:501378,78643,0 -(183,179:16822187,7095585:173670,78643,0 -) -) -(183,179:17159711,7095585:501378,78643,0 -(183,179:17323565,7095585:173670,78643,0 -) -) -(183,179:17661089,7095585:501378,78643,0 -(183,179:17824943,7095585:173670,78643,0 -) -) -(183,179:18162467,7095585:501378,78643,0 -(183,179:18326321,7095585:173670,78643,0 -) -) -(183,179:18663845,7095585:501378,78643,0 -(183,179:18827699,7095585:173670,78643,0 -) -) -(183,179:19165223,7095585:501378,78643,0 -(183,179:19329077,7095585:173670,78643,0 -) -) -(183,179:19666601,7095585:501378,78643,0 -(183,179:19830455,7095585:173670,78643,0 -) -) -(183,179:20167979,7095585:501378,78643,0 -(183,179:20331833,7095585:173670,78643,0 -) -) -(183,179:20669357,7095585:501378,78643,0 -(183,179:20833211,7095585:173670,78643,0 -) -) -(183,179:21170735,7095585:501378,78643,0 -(183,179:21334589,7095585:173670,78643,0 -) -) -(183,179:21672113,7095585:501378,78643,0 -(183,179:21835967,7095585:173670,78643,0 -) -) -(183,179:22173491,7095585:501378,78643,0 -(183,179:22337345,7095585:173670,78643,0 -) -) -(183,179:22674869,7095585:501378,78643,0 -(183,179:22838723,7095585:173670,78643,0 -) -) -(183,179:23176247,7095585:501378,78643,0 -(183,179:23340101,7095585:173670,78643,0 -) -) -(183,179:23677625,7095585:501378,78643,0 -(183,179:23841479,7095585:173670,78643,0 -) -) -(183,179:24179003,7095585:501378,78643,0 -(183,179:24342857,7095585:173670,78643,0 -) -) -(183,179:24680381,7095585:501378,78643,0 -(183,179:24844235,7095585:173670,78643,0 -) -) -(183,179:25181759,7095585:501378,78643,0 -(183,179:25345613,7095585:173670,78643,0 -) -) -(183,179:25683137,7095585:501378,78643,0 -(183,179:25846991,7095585:173670,78643,0 -) -) -(183,179:26184515,7095585:501378,78643,0 -(183,179:26348369,7095585:173670,78643,0 -) -) -(183,179:26685893,7095585:501378,78643,0 -(183,179:26849747,7095585:173670,78643,0 -) -) -(183,179:27187271,7095585:501378,78643,0 -(183,179:27351125,7095585:173670,78643,0 -) -) -(183,179:27688649,7095585:501378,78643,0 -(183,179:27852503,7095585:173670,78643,0 -) -) -(183,179:28190027,7095585:501378,78643,0 -(183,179:28353881,7095585:173670,78643,0 -) -) -(183,179:28691405,7095585:501378,78643,0 -(183,179:28855259,7095585:173670,78643,0 -) -) -(183,179:29192783,7095585:501378,78643,0 -(183,179:29356637,7095585:173670,78643,0 -) -) -(183,179:29694161,7095585:501378,78643,0 -(183,179:29858015,7095585:173670,78643,0 -) -) -(183,179:30195539,7095585:501378,78643,0 -(183,179:30359393,7095585:173670,78643,0 -) -) -(183,179:30696917,7095585:501378,78643,0 -(183,179:30860771,7095585:173670,78643,0 -) -) -(183,179:31239539,7095585:1343490,485622,11795 -k183,179:31239539,7095585:0 -k183,179:31387652,7095585:148113 -) -g183,179:30911859,7095585 -g183,179:32583029,7095585 -) -(183,180:6630773,7937073:25952256,513147,11795 -g183,180:13905273,7937073 -h183,180:13905273,7937073:4587520,0,0 -h183,180:18492793,7937073:0,0,0 -g183,180:11218293,7937073 -(183,180:11218293,7937073:2686980,485622,11795 -k183,180:13905273,7937073:572133 -) -g183,180:15842517,7937073 -g183,180:19454206,7937073 -g183,180:20269473,7937073 -g183,180:20714462,7937073 -(183,180:21170735,7937073:501378,78643,0 -$183,180:21170735,7937073 -(183,180:21334589,7937073:173670,78643,0 -) -$183,180:21672113,7937073 -) -(183,180:21672113,7937073:501378,78643,0 -(183,180:21835967,7937073:173670,78643,0 -) -) -(183,180:22173491,7937073:501378,78643,0 -(183,180:22337345,7937073:173670,78643,0 -) -) -(183,180:22674869,7937073:501378,78643,0 -(183,180:22838723,7937073:173670,78643,0 -) -) -(183,180:23176247,7937073:501378,78643,0 -(183,180:23340101,7937073:173670,78643,0 -) -) -(183,180:23677625,7937073:501378,78643,0 -(183,180:23841479,7937073:173670,78643,0 -) -) -(183,180:24179003,7937073:501378,78643,0 -(183,180:24342857,7937073:173670,78643,0 -) -) -(183,180:24680381,7937073:501378,78643,0 -(183,180:24844235,7937073:173670,78643,0 -) -) -(183,180:25181759,7937073:501378,78643,0 -(183,180:25345613,7937073:173670,78643,0 -) -) -(183,180:25683137,7937073:501378,78643,0 -(183,180:25846991,7937073:173670,78643,0 -) -) -(183,180:26184515,7937073:501378,78643,0 -(183,180:26348369,7937073:173670,78643,0 -) -) -(183,180:26685893,7937073:501378,78643,0 -(183,180:26849747,7937073:173670,78643,0 -) -) -(183,180:27187271,7937073:501378,78643,0 -(183,180:27351125,7937073:173670,78643,0 -) -) -(183,180:27688649,7937073:501378,78643,0 -(183,180:27852503,7937073:173670,78643,0 -) -) -(183,180:28190027,7937073:501378,78643,0 -(183,180:28353881,7937073:173670,78643,0 -) -) -(183,180:28691405,7937073:501378,78643,0 -(183,180:28855259,7937073:173670,78643,0 -) -) -(183,180:29192783,7937073:501378,78643,0 -(183,180:29356637,7937073:173670,78643,0 -) -) -(183,180:29694161,7937073:501378,78643,0 -(183,180:29858015,7937073:173670,78643,0 -) -) -(183,180:30195539,7937073:501378,78643,0 -(183,180:30359393,7937073:173670,78643,0 -) -) -(183,180:30696917,7937073:501378,78643,0 -(183,180:30860771,7937073:173670,78643,0 -) -) -(183,180:31239539,7937073:1343490,485622,11795 -k183,180:31239539,7937073:0 -k183,180:31387652,7937073:148113 -) -g183,180:30911859,7937073 -g183,180:32583029,7937073 -) -(183,181:6630773,8778561:25952256,505283,11795 -g183,181:11218293,8778561 -h183,181:11218293,8778561:2490370,0,0 -h183,181:13708663,8778561:0,0,0 -g183,181:9121143,8778561 -(183,181:9121143,8778561:2097150,485622,11795 -k183,181:11218293,8778561:554432 -) -g183,181:15109820,8778561 -g183,181:19359829,8778561 -g183,181:21262339,8778561 -(183,181:21672113,8778561:501378,78643,0 -$183,181:21672113,8778561 -(183,181:21835967,8778561:173670,78643,0 -) -$183,181:22173491,8778561 -) -(183,181:22173491,8778561:501378,78643,0 -(183,181:22337345,8778561:173670,78643,0 -) -) -(183,181:22674869,8778561:501378,78643,0 -(183,181:22838723,8778561:173670,78643,0 -) -) -(183,181:23176247,8778561:501378,78643,0 -(183,181:23340101,8778561:173670,78643,0 -) -) -(183,181:23677625,8778561:501378,78643,0 -(183,181:23841479,8778561:173670,78643,0 -) -) -(183,181:24179003,8778561:501378,78643,0 -(183,181:24342857,8778561:173670,78643,0 -) -) -(183,181:24680381,8778561:501378,78643,0 -(183,181:24844235,8778561:173670,78643,0 -) -) -(183,181:25181759,8778561:501378,78643,0 -(183,181:25345613,8778561:173670,78643,0 -) -) -(183,181:25683137,8778561:501378,78643,0 -(183,181:25846991,8778561:173670,78643,0 -) -) -(183,181:26184515,8778561:501378,78643,0 -(183,181:26348369,8778561:173670,78643,0 -) -) -(183,181:26685893,8778561:501378,78643,0 -(183,181:26849747,8778561:173670,78643,0 -) -) -(183,181:27187271,8778561:501378,78643,0 -(183,181:27351125,8778561:173670,78643,0 -) -) -(183,181:27688649,8778561:501378,78643,0 -(183,181:27852503,8778561:173670,78643,0 -) -) -(183,181:28190027,8778561:501378,78643,0 -(183,181:28353881,8778561:173670,78643,0 -) -) -(183,181:28691405,8778561:501378,78643,0 -(183,181:28855259,8778561:173670,78643,0 -) -) -(183,181:29192783,8778561:501378,78643,0 -(183,181:29356637,8778561:173670,78643,0 -) -) -(183,181:29694161,8778561:501378,78643,0 -(183,181:29858015,8778561:173670,78643,0 -) -) -(183,181:30195539,8778561:501378,78643,0 -(183,181:30359393,8778561:173670,78643,0 -) -) -(183,181:30696917,8778561:501378,78643,0 -(183,181:30860771,8778561:173670,78643,0 -) -) -(183,181:31239539,8778561:1343490,485622,11795 -k183,181:31239539,8778561:0 -k183,181:31387652,8778561:148113 -) -g183,181:30911859,8778561 -g183,181:32583029,8778561 -) -(183,182:6630773,9620049:25952256,505283,11795 -g183,182:11218293,9620049 -h183,182:11218293,9620049:2490370,0,0 -h183,182:13708663,9620049:0,0,0 -g183,182:9121143,9620049 -(183,182:9121143,9620049:2097150,485622,11795 -k183,182:11218293,9620049:554432 -) -g183,182:14025855,9620049 -g183,182:18275864,9620049 -g183,182:20178374,9620049 -(183,182:20669357,9620049:501378,78643,0 -$183,182:20669357,9620049 -(183,182:20833211,9620049:173670,78643,0 -) -$183,182:21170735,9620049 -) -(183,182:21170735,9620049:501378,78643,0 -(183,182:21334589,9620049:173670,78643,0 -) -) -(183,182:21672113,9620049:501378,78643,0 -(183,182:21835967,9620049:173670,78643,0 -) -) -(183,182:22173491,9620049:501378,78643,0 -(183,182:22337345,9620049:173670,78643,0 -) -) -(183,182:22674869,9620049:501378,78643,0 -(183,182:22838723,9620049:173670,78643,0 -) -) -(183,182:23176247,9620049:501378,78643,0 -(183,182:23340101,9620049:173670,78643,0 -) -) -(183,182:23677625,9620049:501378,78643,0 -(183,182:23841479,9620049:173670,78643,0 -) -) -(183,182:24179003,9620049:501378,78643,0 -(183,182:24342857,9620049:173670,78643,0 -) -) -(183,182:24680381,9620049:501378,78643,0 -(183,182:24844235,9620049:173670,78643,0 -) -) -(183,182:25181759,9620049:501378,78643,0 -(183,182:25345613,9620049:173670,78643,0 -) -) -(183,182:25683137,9620049:501378,78643,0 -(183,182:25846991,9620049:173670,78643,0 -) -) -(183,182:26184515,9620049:501378,78643,0 -(183,182:26348369,9620049:173670,78643,0 -) -) -(183,182:26685893,9620049:501378,78643,0 -(183,182:26849747,9620049:173670,78643,0 -) -) -(183,182:27187271,9620049:501378,78643,0 -(183,182:27351125,9620049:173670,78643,0 -) -) -(183,182:27688649,9620049:501378,78643,0 -(183,182:27852503,9620049:173670,78643,0 -) -) -(183,182:28190027,9620049:501378,78643,0 -(183,182:28353881,9620049:173670,78643,0 -) -) -(183,182:28691405,9620049:501378,78643,0 -(183,182:28855259,9620049:173670,78643,0 -) -) -(183,182:29192783,9620049:501378,78643,0 -(183,182:29356637,9620049:173670,78643,0 -) -) -(183,182:29694161,9620049:501378,78643,0 -(183,182:29858015,9620049:173670,78643,0 -) -) -(183,182:30195539,9620049:501378,78643,0 -(183,182:30359393,9620049:173670,78643,0 -) -) -(183,182:30696917,9620049:501378,78643,0 -(183,182:30860771,9620049:173670,78643,0 -) -) -(183,182:31239539,9620049:1343490,485622,11795 -k183,182:31239539,9620049:0 -k183,182:31387652,9620049:148113 -) -g183,182:30911859,9620049 -g183,182:32583029,9620049 -) -(183,183:6630773,10461537:25952256,505283,11795 -g183,183:11218293,10461537 -h183,183:11218293,10461537:2490370,0,0 -h183,183:13708663,10461537:0,0,0 -g183,183:9121143,10461537 -(183,183:9121143,10461537:2097150,485622,11795 -k183,183:11218293,10461537:554432 -) -g183,183:13615600,10461537 -g183,183:15518110,10461537 -(183,183:15655577,10461537:501378,78643,0 -$183,183:15655577,10461537 -(183,183:15819431,10461537:173670,78643,0 -) -$183,183:16156955,10461537 -) -(183,183:16156955,10461537:501378,78643,0 -(183,183:16320809,10461537:173670,78643,0 -) -) -(183,183:16658333,10461537:501378,78643,0 -(183,183:16822187,10461537:173670,78643,0 -) -) -(183,183:17159711,10461537:501378,78643,0 -(183,183:17323565,10461537:173670,78643,0 -) -) -(183,183:17661089,10461537:501378,78643,0 -(183,183:17824943,10461537:173670,78643,0 -) -) -(183,183:18162467,10461537:501378,78643,0 -(183,183:18326321,10461537:173670,78643,0 -) -) -(183,183:18663845,10461537:501378,78643,0 -(183,183:18827699,10461537:173670,78643,0 -) -) -(183,183:19165223,10461537:501378,78643,0 -(183,183:19329077,10461537:173670,78643,0 -) -) -(183,183:19666601,10461537:501378,78643,0 -(183,183:19830455,10461537:173670,78643,0 -) -) -(183,183:20167979,10461537:501378,78643,0 -(183,183:20331833,10461537:173670,78643,0 -) -) -(183,183:20669357,10461537:501378,78643,0 -(183,183:20833211,10461537:173670,78643,0 -) -) -(183,183:21170735,10461537:501378,78643,0 -(183,183:21334589,10461537:173670,78643,0 -) -) -(183,183:21672113,10461537:501378,78643,0 -(183,183:21835967,10461537:173670,78643,0 -) -) -(183,183:22173491,10461537:501378,78643,0 -(183,183:22337345,10461537:173670,78643,0 -) -) -(183,183:22674869,10461537:501378,78643,0 -(183,183:22838723,10461537:173670,78643,0 -) -) -(183,183:23176247,10461537:501378,78643,0 -(183,183:23340101,10461537:173670,78643,0 -) -) -(183,183:23677625,10461537:501378,78643,0 -(183,183:23841479,10461537:173670,78643,0 -) -) -(183,183:24179003,10461537:501378,78643,0 -(183,183:24342857,10461537:173670,78643,0 -) -) -(183,183:24680381,10461537:501378,78643,0 -(183,183:24844235,10461537:173670,78643,0 -) -) -(183,183:25181759,10461537:501378,78643,0 -(183,183:25345613,10461537:173670,78643,0 -) -) -(183,183:25683137,10461537:501378,78643,0 -(183,183:25846991,10461537:173670,78643,0 -) -) -(183,183:26184515,10461537:501378,78643,0 -(183,183:26348369,10461537:173670,78643,0 -) -) -(183,183:26685893,10461537:501378,78643,0 -(183,183:26849747,10461537:173670,78643,0 -) -) -(183,183:27187271,10461537:501378,78643,0 -(183,183:27351125,10461537:173670,78643,0 -) -) -(183,183:27688649,10461537:501378,78643,0 -(183,183:27852503,10461537:173670,78643,0 -) -) -(183,183:28190027,10461537:501378,78643,0 -(183,183:28353881,10461537:173670,78643,0 -) -) -(183,183:28691405,10461537:501378,78643,0 -(183,183:28855259,10461537:173670,78643,0 -) -) -(183,183:29192783,10461537:501378,78643,0 -(183,183:29356637,10461537:173670,78643,0 -) -) -(183,183:29694161,10461537:501378,78643,0 -(183,183:29858015,10461537:173670,78643,0 -) -) -(183,183:30195539,10461537:501378,78643,0 -(183,183:30359393,10461537:173670,78643,0 -) -) -(183,183:30696917,10461537:501378,78643,0 -(183,183:30860771,10461537:173670,78643,0 -) -) -(183,183:31239539,10461537:1343490,485622,11795 -k183,183:31239539,10461537:0 -k183,183:31387652,10461537:148113 -) -g183,183:30911859,10461537 -g183,183:32583029,10461537 -) -(183,184:6630773,11303025:25952256,505283,126483 -g183,184:11218293,11303025 -h183,184:11218293,11303025:2490370,0,0 -h183,184:13708663,11303025:0,0,0 -g183,184:9121143,11303025 -(183,184:9121143,11303025:2097150,485622,11795 -k183,184:11218293,11303025:155974 -) -g183,184:13889540,11303025 -g183,184:15792050,11303025 -(183,184:16156955,11303025:501378,78643,0 -$183,184:16156955,11303025 -(183,184:16320809,11303025:173670,78643,0 -) -$183,184:16658333,11303025 -) -(183,184:16658333,11303025:501378,78643,0 -(183,184:16822187,11303025:173670,78643,0 -) -) -(183,184:17159711,11303025:501378,78643,0 -(183,184:17323565,11303025:173670,78643,0 -) -) -(183,184:17661089,11303025:501378,78643,0 -(183,184:17824943,11303025:173670,78643,0 -) -) -(183,184:18162467,11303025:501378,78643,0 -(183,184:18326321,11303025:173670,78643,0 -) -) -(183,184:18663845,11303025:501378,78643,0 -(183,184:18827699,11303025:173670,78643,0 -) -) -(183,184:19165223,11303025:501378,78643,0 -(183,184:19329077,11303025:173670,78643,0 -) -) -(183,184:19666601,11303025:501378,78643,0 -(183,184:19830455,11303025:173670,78643,0 -) -) -(183,184:20167979,11303025:501378,78643,0 -(183,184:20331833,11303025:173670,78643,0 -) -) -(183,184:20669357,11303025:501378,78643,0 -(183,184:20833211,11303025:173670,78643,0 -) -) -(183,184:21170735,11303025:501378,78643,0 -(183,184:21334589,11303025:173670,78643,0 -) -) -(183,184:21672113,11303025:501378,78643,0 -(183,184:21835967,11303025:173670,78643,0 -) -) -(183,184:22173491,11303025:501378,78643,0 -(183,184:22337345,11303025:173670,78643,0 -) -) -(183,184:22674869,11303025:501378,78643,0 -(183,184:22838723,11303025:173670,78643,0 -) -) -(183,184:23176247,11303025:501378,78643,0 -(183,184:23340101,11303025:173670,78643,0 -) -) -(183,184:23677625,11303025:501378,78643,0 -(183,184:23841479,11303025:173670,78643,0 -) -) -(183,184:24179003,11303025:501378,78643,0 -(183,184:24342857,11303025:173670,78643,0 -) -) -(183,184:24680381,11303025:501378,78643,0 -(183,184:24844235,11303025:173670,78643,0 -) -) -(183,184:25181759,11303025:501378,78643,0 -(183,184:25345613,11303025:173670,78643,0 -) -) -(183,184:25683137,11303025:501378,78643,0 -(183,184:25846991,11303025:173670,78643,0 -) -) -(183,184:26184515,11303025:501378,78643,0 -(183,184:26348369,11303025:173670,78643,0 -) -) -(183,184:26685893,11303025:501378,78643,0 -(183,184:26849747,11303025:173670,78643,0 -) -) -(183,184:27187271,11303025:501378,78643,0 -(183,184:27351125,11303025:173670,78643,0 -) -) -(183,184:27688649,11303025:501378,78643,0 -(183,184:27852503,11303025:173670,78643,0 -) -) -(183,184:28190027,11303025:501378,78643,0 -(183,184:28353881,11303025:173670,78643,0 -) -) -(183,184:28691405,11303025:501378,78643,0 -(183,184:28855259,11303025:173670,78643,0 -) -) -(183,184:29192783,11303025:501378,78643,0 -(183,184:29356637,11303025:173670,78643,0 -) -) -(183,184:29694161,11303025:501378,78643,0 -(183,184:29858015,11303025:173670,78643,0 -) -) -(183,184:30195539,11303025:501378,78643,0 -(183,184:30359393,11303025:173670,78643,0 -) -) -(183,184:30696917,11303025:501378,78643,0 -(183,184:30860771,11303025:173670,78643,0 -) -) -(183,184:31239539,11303025:1343490,485622,11795 -k183,184:31239539,11303025:0 -k183,184:31387652,11303025:148113 -) -g183,184:30911859,11303025 -g183,184:32583029,11303025 -) -(183,185:6630773,12144513:25952256,505283,134348 -g183,185:9121143,12144513 -h183,185:9121143,12144513:983040,0,0 -h183,185:10104183,12144513:0,0,0 -g183,185:7613813,12144513 -(183,185:7613813,12144513:1507330,485622,11795 -k183,185:9121143,12144513:536742 -) -g183,185:11639691,12144513 -g183,185:15629522,12144513 -g183,185:15629522,12144513 -(183,185:15655577,12144513:501378,78643,0 -$183,185:15655577,12144513 -(183,185:15819431,12144513:173670,78643,0 -) -$183,185:16156955,12144513 -) -(183,185:16156955,12144513:501378,78643,0 -(183,185:16320809,12144513:173670,78643,0 -) -) -(183,185:16658333,12144513:501378,78643,0 -(183,185:16822187,12144513:173670,78643,0 -) -) -(183,185:17159711,12144513:501378,78643,0 -(183,185:17323565,12144513:173670,78643,0 -) -) -(183,185:17661089,12144513:501378,78643,0 -(183,185:17824943,12144513:173670,78643,0 -) -) -(183,185:18162467,12144513:501378,78643,0 -(183,185:18326321,12144513:173670,78643,0 -) -) -(183,185:18663845,12144513:501378,78643,0 -(183,185:18827699,12144513:173670,78643,0 -) -) -(183,185:19165223,12144513:501378,78643,0 -(183,185:19329077,12144513:173670,78643,0 -) -) -(183,185:19666601,12144513:501378,78643,0 -(183,185:19830455,12144513:173670,78643,0 -) -) -(183,185:20167979,12144513:501378,78643,0 -(183,185:20331833,12144513:173670,78643,0 -) -) -(183,185:20669357,12144513:501378,78643,0 -(183,185:20833211,12144513:173670,78643,0 -) -) -(183,185:21170735,12144513:501378,78643,0 -(183,185:21334589,12144513:173670,78643,0 -) -) -(183,185:21672113,12144513:501378,78643,0 -(183,185:21835967,12144513:173670,78643,0 -) -) -(183,185:22173491,12144513:501378,78643,0 -(183,185:22337345,12144513:173670,78643,0 -) -) -(183,185:22674869,12144513:501378,78643,0 -(183,185:22838723,12144513:173670,78643,0 -) -) -(183,185:23176247,12144513:501378,78643,0 -(183,185:23340101,12144513:173670,78643,0 -) -) -(183,185:23677625,12144513:501378,78643,0 -(183,185:23841479,12144513:173670,78643,0 -) -) -(183,185:24179003,12144513:501378,78643,0 -(183,185:24342857,12144513:173670,78643,0 -) -) -(183,185:24680381,12144513:501378,78643,0 -(183,185:24844235,12144513:173670,78643,0 -) -) -(183,185:25181759,12144513:501378,78643,0 -(183,185:25345613,12144513:173670,78643,0 -) -) -(183,185:25683137,12144513:501378,78643,0 -(183,185:25846991,12144513:173670,78643,0 -) -) -(183,185:26184515,12144513:501378,78643,0 -(183,185:26348369,12144513:173670,78643,0 -) -) -(183,185:26685893,12144513:501378,78643,0 -(183,185:26849747,12144513:173670,78643,0 -) -) -(183,185:27187271,12144513:501378,78643,0 -(183,185:27351125,12144513:173670,78643,0 -) -) -(183,185:27688649,12144513:501378,78643,0 -(183,185:27852503,12144513:173670,78643,0 -) -) -(183,185:28190027,12144513:501378,78643,0 -(183,185:28353881,12144513:173670,78643,0 -) -) -(183,185:28691405,12144513:501378,78643,0 -(183,185:28855259,12144513:173670,78643,0 -) -) -(183,185:29192783,12144513:501378,78643,0 -(183,185:29356637,12144513:173670,78643,0 -) -) -(183,185:29694161,12144513:501378,78643,0 -(183,185:29858015,12144513:173670,78643,0 -) -) -(183,185:30195539,12144513:501378,78643,0 -(183,185:30359393,12144513:173670,78643,0 -) -) -(183,185:30696917,12144513:501378,78643,0 -(183,185:30860771,12144513:173670,78643,0 -) -) -(183,185:31239539,12144513:1343490,485622,11795 -k183,185:31239539,12144513:0 -k183,185:31387652,12144513:148113 -) -g183,185:30911859,12144513 -g183,185:32583029,12144513 -) -(183,186:6630773,12986001:25952256,505283,126483 -g183,186:9121143,12986001 -h183,186:9121143,12986001:983040,0,0 -h183,186:10104183,12986001:0,0,0 -g183,186:7613813,12986001 -(183,186:7613813,12986001:1507330,485622,11795 -k183,186:9121143,12986001:138283 -) -g183,186:13180443,12986001 -g183,186:14571117,12986001 -g183,186:17191246,12986001 -g183,186:18998073,12986001 -g183,186:18998073,12986001 -(183,186:19165223,12986001:501378,78643,0 -$183,186:19165223,12986001 -(183,186:19329077,12986001:173670,78643,0 -) -$183,186:19666601,12986001 -) -(183,186:19666601,12986001:501378,78643,0 -(183,186:19830455,12986001:173670,78643,0 -) -) -(183,186:20167979,12986001:501378,78643,0 -(183,186:20331833,12986001:173670,78643,0 -) -) -(183,186:20669357,12986001:501378,78643,0 -(183,186:20833211,12986001:173670,78643,0 -) -) -(183,186:21170735,12986001:501378,78643,0 -(183,186:21334589,12986001:173670,78643,0 -) -) -(183,186:21672113,12986001:501378,78643,0 -(183,186:21835967,12986001:173670,78643,0 -) -) -(183,186:22173491,12986001:501378,78643,0 -(183,186:22337345,12986001:173670,78643,0 -) -) -(183,186:22674869,12986001:501378,78643,0 -(183,186:22838723,12986001:173670,78643,0 -) -) -(183,186:23176247,12986001:501378,78643,0 -(183,186:23340101,12986001:173670,78643,0 -) -) -(183,186:23677625,12986001:501378,78643,0 -(183,186:23841479,12986001:173670,78643,0 -) -) -(183,186:24179003,12986001:501378,78643,0 -(183,186:24342857,12986001:173670,78643,0 -) -) -(183,186:24680381,12986001:501378,78643,0 -(183,186:24844235,12986001:173670,78643,0 -) -) -(183,186:25181759,12986001:501378,78643,0 -(183,186:25345613,12986001:173670,78643,0 -) -) -(183,186:25683137,12986001:501378,78643,0 -(183,186:25846991,12986001:173670,78643,0 -) -) -(183,186:26184515,12986001:501378,78643,0 -(183,186:26348369,12986001:173670,78643,0 -) -) -(183,186:26685893,12986001:501378,78643,0 -(183,186:26849747,12986001:173670,78643,0 -) -) -(183,186:27187271,12986001:501378,78643,0 -(183,186:27351125,12986001:173670,78643,0 -) -) -(183,186:27688649,12986001:501378,78643,0 -(183,186:27852503,12986001:173670,78643,0 -) -) -(183,186:28190027,12986001:501378,78643,0 -(183,186:28353881,12986001:173670,78643,0 -) -) -(183,186:28691405,12986001:501378,78643,0 -(183,186:28855259,12986001:173670,78643,0 -) -) -(183,186:29192783,12986001:501378,78643,0 -(183,186:29356637,12986001:173670,78643,0 -) -) -(183,186:29694161,12986001:501378,78643,0 -(183,186:29858015,12986001:173670,78643,0 -) -) -(183,186:30195539,12986001:501378,78643,0 -(183,186:30359393,12986001:173670,78643,0 -) -) -(183,186:30696917,12986001:501378,78643,0 -(183,186:30860771,12986001:173670,78643,0 -) -) -(183,186:31239539,12986001:1343490,485622,11795 -k183,186:31239539,12986001:0 -k183,186:31387652,12986001:148113 -) -g183,186:30911859,12986001 -g183,186:32583029,12986001 -) -(183,187:6630773,13827489:25952256,505283,126483 -g183,187:11218293,13827489 -h183,187:11218293,13827489:2490370,0,0 -h183,187:13708663,13827489:0,0,0 -g183,187:9121143,13827489 -(183,187:9121143,13827489:2097150,485622,11795 -k183,187:11218293,13827489:155974 -) -g183,187:14634029,13827489 -g183,187:16241627,13827489 -(183,187:16658333,13827489:501378,78643,0 -$183,187:16658333,13827489 -(183,187:16822187,13827489:173670,78643,0 -) -$183,187:17159711,13827489 -) -(183,187:17159711,13827489:501378,78643,0 -(183,187:17323565,13827489:173670,78643,0 -) -) -(183,187:17661089,13827489:501378,78643,0 -(183,187:17824943,13827489:173670,78643,0 -) -) -(183,187:18162467,13827489:501378,78643,0 -(183,187:18326321,13827489:173670,78643,0 -) -) -(183,187:18663845,13827489:501378,78643,0 -(183,187:18827699,13827489:173670,78643,0 -) -) -(183,187:19165223,13827489:501378,78643,0 -(183,187:19329077,13827489:173670,78643,0 -) -) -(183,187:19666601,13827489:501378,78643,0 -(183,187:19830455,13827489:173670,78643,0 -) -) -(183,187:20167979,13827489:501378,78643,0 -(183,187:20331833,13827489:173670,78643,0 -) -) -(183,187:20669357,13827489:501378,78643,0 -(183,187:20833211,13827489:173670,78643,0 -) -) -(183,187:21170735,13827489:501378,78643,0 -(183,187:21334589,13827489:173670,78643,0 -) -) -(183,187:21672113,13827489:501378,78643,0 -(183,187:21835967,13827489:173670,78643,0 -) -) -(183,187:22173491,13827489:501378,78643,0 -(183,187:22337345,13827489:173670,78643,0 -) -) -(183,187:22674869,13827489:501378,78643,0 -(183,187:22838723,13827489:173670,78643,0 -) -) -(183,187:23176247,13827489:501378,78643,0 -(183,187:23340101,13827489:173670,78643,0 -) -) -(183,187:23677625,13827489:501378,78643,0 -(183,187:23841479,13827489:173670,78643,0 -) -) -(183,187:24179003,13827489:501378,78643,0 -(183,187:24342857,13827489:173670,78643,0 -) -) -(183,187:24680381,13827489:501378,78643,0 -(183,187:24844235,13827489:173670,78643,0 -) -) -(183,187:25181759,13827489:501378,78643,0 -(183,187:25345613,13827489:173670,78643,0 -) -) -(183,187:25683137,13827489:501378,78643,0 -(183,187:25846991,13827489:173670,78643,0 -) -) -(183,187:26184515,13827489:501378,78643,0 -(183,187:26348369,13827489:173670,78643,0 -) -) -(183,187:26685893,13827489:501378,78643,0 -(183,187:26849747,13827489:173670,78643,0 -) -) -(183,187:27187271,13827489:501378,78643,0 -(183,187:27351125,13827489:173670,78643,0 -) -) -(183,187:27688649,13827489:501378,78643,0 -(183,187:27852503,13827489:173670,78643,0 -) -) -(183,187:28190027,13827489:501378,78643,0 -(183,187:28353881,13827489:173670,78643,0 -) -) -(183,187:28691405,13827489:501378,78643,0 -(183,187:28855259,13827489:173670,78643,0 -) -) -(183,187:29192783,13827489:501378,78643,0 -(183,187:29356637,13827489:173670,78643,0 -) -) -(183,187:29694161,13827489:501378,78643,0 -(183,187:29858015,13827489:173670,78643,0 -) -) -(183,187:30195539,13827489:501378,78643,0 -(183,187:30359393,13827489:173670,78643,0 -) -) -(183,187:30696917,13827489:501378,78643,0 -(183,187:30860771,13827489:173670,78643,0 -) -) -(183,187:31239539,13827489:1343490,485622,11795 -k183,187:31239539,13827489:0 -k183,187:31387652,13827489:148113 -) -g183,187:30911859,13827489 -g183,187:32583029,13827489 -) -(183,188:6630773,14668977:25952256,505283,11795 -g183,188:11218293,14668977 -h183,188:11218293,14668977:2490370,0,0 -h183,188:13708663,14668977:0,0,0 -g183,188:9121143,14668977 -(183,188:9121143,14668977:2097150,485622,11795 -k183,188:11218293,14668977:155974 -) -g183,188:12341580,14668977 -g183,188:14321423,14668977 -(183,188:14652821,14668977:501378,78643,0 -$183,188:14652821,14668977 -(183,188:14816675,14668977:173670,78643,0 -) -$183,188:15154199,14668977 -) -(183,188:15154199,14668977:501378,78643,0 -(183,188:15318053,14668977:173670,78643,0 -) -) -(183,188:15655577,14668977:501378,78643,0 -(183,188:15819431,14668977:173670,78643,0 -) -) -(183,188:16156955,14668977:501378,78643,0 -(183,188:16320809,14668977:173670,78643,0 -) -) -(183,188:16658333,14668977:501378,78643,0 -(183,188:16822187,14668977:173670,78643,0 -) -) -(183,188:17159711,14668977:501378,78643,0 -(183,188:17323565,14668977:173670,78643,0 -) -) -(183,188:17661089,14668977:501378,78643,0 -(183,188:17824943,14668977:173670,78643,0 -) -) -(183,188:18162467,14668977:501378,78643,0 -(183,188:18326321,14668977:173670,78643,0 -) -) -(183,188:18663845,14668977:501378,78643,0 -(183,188:18827699,14668977:173670,78643,0 -) -) -(183,188:19165223,14668977:501378,78643,0 -(183,188:19329077,14668977:173670,78643,0 -) -) -(183,188:19666601,14668977:501378,78643,0 -(183,188:19830455,14668977:173670,78643,0 -) -) -(183,188:20167979,14668977:501378,78643,0 -(183,188:20331833,14668977:173670,78643,0 -) -) -(183,188:20669357,14668977:501378,78643,0 -(183,188:20833211,14668977:173670,78643,0 -) -) -(183,188:21170735,14668977:501378,78643,0 -(183,188:21334589,14668977:173670,78643,0 -) -) -(183,188:21672113,14668977:501378,78643,0 -(183,188:21835967,14668977:173670,78643,0 -) -) -(183,188:22173491,14668977:501378,78643,0 -(183,188:22337345,14668977:173670,78643,0 -) -) -(183,188:22674869,14668977:501378,78643,0 -(183,188:22838723,14668977:173670,78643,0 -) -) -(183,188:23176247,14668977:501378,78643,0 -(183,188:23340101,14668977:173670,78643,0 -) -) -(183,188:23677625,14668977:501378,78643,0 -(183,188:23841479,14668977:173670,78643,0 -) -) -(183,188:24179003,14668977:501378,78643,0 -(183,188:24342857,14668977:173670,78643,0 -) -) -(183,188:24680381,14668977:501378,78643,0 -(183,188:24844235,14668977:173670,78643,0 -) -) -(183,188:25181759,14668977:501378,78643,0 -(183,188:25345613,14668977:173670,78643,0 -) -) -(183,188:25683137,14668977:501378,78643,0 -(183,188:25846991,14668977:173670,78643,0 -) -) -(183,188:26184515,14668977:501378,78643,0 -(183,188:26348369,14668977:173670,78643,0 -) -) -(183,188:26685893,14668977:501378,78643,0 -(183,188:26849747,14668977:173670,78643,0 -) -) -(183,188:27187271,14668977:501378,78643,0 -(183,188:27351125,14668977:173670,78643,0 -) -) -(183,188:27688649,14668977:501378,78643,0 -(183,188:27852503,14668977:173670,78643,0 -) -) -(183,188:28190027,14668977:501378,78643,0 -(183,188:28353881,14668977:173670,78643,0 -) -) -(183,188:28691405,14668977:501378,78643,0 -(183,188:28855259,14668977:173670,78643,0 -) -) -(183,188:29192783,14668977:501378,78643,0 -(183,188:29356637,14668977:173670,78643,0 -) -) -(183,188:29694161,14668977:501378,78643,0 -(183,188:29858015,14668977:173670,78643,0 -) -) -(183,188:30195539,14668977:501378,78643,0 -(183,188:30359393,14668977:173670,78643,0 -) -) -(183,188:30696917,14668977:501378,78643,0 -(183,188:30860771,14668977:173670,78643,0 -) -) -(183,188:31239539,14668977:1343490,485622,11795 -k183,188:31239539,14668977:0 -k183,188:31387652,14668977:148113 -) -g183,188:30911859,14668977 -g183,188:32583029,14668977 -) -(183,189:6630773,15510465:25952256,505283,11795 -g183,189:9121143,15510465 -h183,189:9121143,15510465:983040,0,0 -h183,189:10104183,15510465:0,0,0 -g183,189:7613813,15510465 -(183,189:7613813,15510465:1507330,477757,0 -k183,189:9121143,15510465:138283 -) -g183,189:11814672,15510465 -g183,189:11814672,15510465 -(183,189:12145931,15510465:501378,78643,0 -$183,189:12145931,15510465 -(183,189:12309785,15510465:173670,78643,0 -) -$183,189:12647309,15510465 -) -(183,189:12647309,15510465:501378,78643,0 -(183,189:12811163,15510465:173670,78643,0 -) -) -(183,189:13148687,15510465:501378,78643,0 -(183,189:13312541,15510465:173670,78643,0 -) -) -(183,189:13650065,15510465:501378,78643,0 -(183,189:13813919,15510465:173670,78643,0 -) -) -(183,189:14151443,15510465:501378,78643,0 -(183,189:14315297,15510465:173670,78643,0 -) -) -(183,189:14652821,15510465:501378,78643,0 -(183,189:14816675,15510465:173670,78643,0 -) -) -(183,189:15154199,15510465:501378,78643,0 -(183,189:15318053,15510465:173670,78643,0 -) -) -(183,189:15655577,15510465:501378,78643,0 -(183,189:15819431,15510465:173670,78643,0 -) -) -(183,189:16156955,15510465:501378,78643,0 -(183,189:16320809,15510465:173670,78643,0 -) -) -(183,189:16658333,15510465:501378,78643,0 -(183,189:16822187,15510465:173670,78643,0 -) -) -(183,189:17159711,15510465:501378,78643,0 -(183,189:17323565,15510465:173670,78643,0 -) -) -(183,189:17661089,15510465:501378,78643,0 -(183,189:17824943,15510465:173670,78643,0 -) -) -(183,189:18162467,15510465:501378,78643,0 -(183,189:18326321,15510465:173670,78643,0 -) -) -(183,189:18663845,15510465:501378,78643,0 -(183,189:18827699,15510465:173670,78643,0 -) -) -(183,189:19165223,15510465:501378,78643,0 -(183,189:19329077,15510465:173670,78643,0 -) -) -(183,189:19666601,15510465:501378,78643,0 -(183,189:19830455,15510465:173670,78643,0 -) -) -(183,189:20167979,15510465:501378,78643,0 -(183,189:20331833,15510465:173670,78643,0 -) -) -(183,189:20669357,15510465:501378,78643,0 -(183,189:20833211,15510465:173670,78643,0 -) -) -(183,189:21170735,15510465:501378,78643,0 -(183,189:21334589,15510465:173670,78643,0 -) -) -(183,189:21672113,15510465:501378,78643,0 -(183,189:21835967,15510465:173670,78643,0 -) -) -(183,189:22173491,15510465:501378,78643,0 -(183,189:22337345,15510465:173670,78643,0 -) -) -(183,189:22674869,15510465:501378,78643,0 -(183,189:22838723,15510465:173670,78643,0 -) -) -(183,189:23176247,15510465:501378,78643,0 -(183,189:23340101,15510465:173670,78643,0 -) -) -(183,189:23677625,15510465:501378,78643,0 -(183,189:23841479,15510465:173670,78643,0 -) -) -(183,189:24179003,15510465:501378,78643,0 -(183,189:24342857,15510465:173670,78643,0 -) -) -(183,189:24680381,15510465:501378,78643,0 -(183,189:24844235,15510465:173670,78643,0 -) -) -(183,189:25181759,15510465:501378,78643,0 -(183,189:25345613,15510465:173670,78643,0 -) -) -(183,189:25683137,15510465:501378,78643,0 -(183,189:25846991,15510465:173670,78643,0 -) -) -(183,189:26184515,15510465:501378,78643,0 -(183,189:26348369,15510465:173670,78643,0 -) -) -(183,189:26685893,15510465:501378,78643,0 -(183,189:26849747,15510465:173670,78643,0 -) -) -(183,189:27187271,15510465:501378,78643,0 -(183,189:27351125,15510465:173670,78643,0 -) -) -(183,189:27688649,15510465:501378,78643,0 -(183,189:27852503,15510465:173670,78643,0 -) -) -(183,189:28190027,15510465:501378,78643,0 -(183,189:28353881,15510465:173670,78643,0 -) -) -(183,189:28691405,15510465:501378,78643,0 -(183,189:28855259,15510465:173670,78643,0 -) -) -(183,189:29192783,15510465:501378,78643,0 -(183,189:29356637,15510465:173670,78643,0 -) -) -(183,189:29694161,15510465:501378,78643,0 -(183,189:29858015,15510465:173670,78643,0 -) -) -(183,189:30195539,15510465:501378,78643,0 -(183,189:30359393,15510465:173670,78643,0 -) -) -(183,189:30696917,15510465:501378,78643,0 -(183,189:30860771,15510465:173670,78643,0 -) -) -(183,189:31239540,15510465:1343490,485622,11795 -k183,189:31239540,15510465:0 -k183,189:31387653,15510465:148113 -) -g183,189:30911860,15510465 -g183,189:32583030,15510465 -) -(183,190:6630773,16351953:25952256,505283,126483 -g183,190:11218293,16351953 -h183,190:11218293,16351953:2490370,0,0 -h183,190:13708663,16351953:0,0,0 -g183,190:9121143,16351953 -(183,190:9121143,16351953:2097150,477757,0 -k183,190:11218293,16351953:155974 -) -g183,190:14464946,16351953 -g183,190:16781644,16351953 -(183,190:17159711,16351953:501378,78643,0 -$183,190:17159711,16351953 -(183,190:17323565,16351953:173670,78643,0 -) -$183,190:17661089,16351953 -) -(183,190:17661089,16351953:501378,78643,0 -(183,190:17824943,16351953:173670,78643,0 -) -) -(183,190:18162467,16351953:501378,78643,0 -(183,190:18326321,16351953:173670,78643,0 -) -) -(183,190:18663845,16351953:501378,78643,0 -(183,190:18827699,16351953:173670,78643,0 -) -) -(183,190:19165223,16351953:501378,78643,0 -(183,190:19329077,16351953:173670,78643,0 -) -) -(183,190:19666601,16351953:501378,78643,0 -(183,190:19830455,16351953:173670,78643,0 -) -) -(183,190:20167979,16351953:501378,78643,0 -(183,190:20331833,16351953:173670,78643,0 -) -) -(183,190:20669357,16351953:501378,78643,0 -(183,190:20833211,16351953:173670,78643,0 -) -) -(183,190:21170735,16351953:501378,78643,0 -(183,190:21334589,16351953:173670,78643,0 -) -) -(183,190:21672113,16351953:501378,78643,0 -(183,190:21835967,16351953:173670,78643,0 -) -) -(183,190:22173491,16351953:501378,78643,0 -(183,190:22337345,16351953:173670,78643,0 -) -) -(183,190:22674869,16351953:501378,78643,0 -(183,190:22838723,16351953:173670,78643,0 -) -) -(183,190:23176247,16351953:501378,78643,0 -(183,190:23340101,16351953:173670,78643,0 -) -) -(183,190:23677625,16351953:501378,78643,0 -(183,190:23841479,16351953:173670,78643,0 -) -) -(183,190:24179003,16351953:501378,78643,0 -(183,190:24342857,16351953:173670,78643,0 -) -) -(183,190:24680381,16351953:501378,78643,0 -(183,190:24844235,16351953:173670,78643,0 -) -) -(183,190:25181759,16351953:501378,78643,0 -(183,190:25345613,16351953:173670,78643,0 -) -) -(183,190:25683137,16351953:501378,78643,0 -(183,190:25846991,16351953:173670,78643,0 -) -) -(183,190:26184515,16351953:501378,78643,0 -(183,190:26348369,16351953:173670,78643,0 -) -) -(183,190:26685893,16351953:501378,78643,0 -(183,190:26849747,16351953:173670,78643,0 -) -) -(183,190:27187271,16351953:501378,78643,0 -(183,190:27351125,16351953:173670,78643,0 -) -) -(183,190:27688649,16351953:501378,78643,0 -(183,190:27852503,16351953:173670,78643,0 -) -) -(183,190:28190027,16351953:501378,78643,0 -(183,190:28353881,16351953:173670,78643,0 -) -) -(183,190:28691405,16351953:501378,78643,0 -(183,190:28855259,16351953:173670,78643,0 -) -) -(183,190:29192783,16351953:501378,78643,0 -(183,190:29356637,16351953:173670,78643,0 -) -) -(183,190:29694161,16351953:501378,78643,0 -(183,190:29858015,16351953:173670,78643,0 -) -) -(183,190:30195539,16351953:501378,78643,0 -(183,190:30359393,16351953:173670,78643,0 -) -) -(183,190:30696917,16351953:501378,78643,0 -(183,190:30860771,16351953:173670,78643,0 -) -) -(183,190:31239539,16351953:1343490,485622,11795 -k183,190:31239539,16351953:0 -k183,190:31387652,16351953:148113 -) -g183,190:30911859,16351953 -g183,190:32583029,16351953 -) -(183,191:6630773,17193441:25952256,505283,126483 -g183,191:11218293,17193441 -h183,191:11218293,17193441:2490370,0,0 -h183,191:13708663,17193441:0,0,0 -g183,191:9121143,17193441 -(183,191:9121143,17193441:2097150,485622,0 -k183,191:11218293,17193441:155974 -) -g183,191:14970884,17193441 -g183,191:17287582,17193441 -(183,191:17661089,17193441:501378,78643,0 -$183,191:17661089,17193441 -(183,191:17824943,17193441:173670,78643,0 -) -$183,191:18162467,17193441 -) -(183,191:18162467,17193441:501378,78643,0 -(183,191:18326321,17193441:173670,78643,0 -) -) -(183,191:18663845,17193441:501378,78643,0 -(183,191:18827699,17193441:173670,78643,0 -) -) -(183,191:19165223,17193441:501378,78643,0 -(183,191:19329077,17193441:173670,78643,0 -) -) -(183,191:19666601,17193441:501378,78643,0 -(183,191:19830455,17193441:173670,78643,0 -) -) -(183,191:20167979,17193441:501378,78643,0 -(183,191:20331833,17193441:173670,78643,0 -) -) -(183,191:20669357,17193441:501378,78643,0 -(183,191:20833211,17193441:173670,78643,0 -) -) -(183,191:21170735,17193441:501378,78643,0 -(183,191:21334589,17193441:173670,78643,0 -) -) -(183,191:21672113,17193441:501378,78643,0 -(183,191:21835967,17193441:173670,78643,0 -) -) -(183,191:22173491,17193441:501378,78643,0 -(183,191:22337345,17193441:173670,78643,0 -) -) -(183,191:22674869,17193441:501378,78643,0 -(183,191:22838723,17193441:173670,78643,0 -) -) -(183,191:23176247,17193441:501378,78643,0 -(183,191:23340101,17193441:173670,78643,0 -) -) -(183,191:23677625,17193441:501378,78643,0 -(183,191:23841479,17193441:173670,78643,0 -) -) -(183,191:24179003,17193441:501378,78643,0 -(183,191:24342857,17193441:173670,78643,0 -) -) -(183,191:24680381,17193441:501378,78643,0 -(183,191:24844235,17193441:173670,78643,0 -) -) -(183,191:25181759,17193441:501378,78643,0 -(183,191:25345613,17193441:173670,78643,0 -) -) -(183,191:25683137,17193441:501378,78643,0 -(183,191:25846991,17193441:173670,78643,0 -) -) -(183,191:26184515,17193441:501378,78643,0 -(183,191:26348369,17193441:173670,78643,0 -) -) -(183,191:26685893,17193441:501378,78643,0 -(183,191:26849747,17193441:173670,78643,0 -) -) -(183,191:27187271,17193441:501378,78643,0 -(183,191:27351125,17193441:173670,78643,0 -) -) -(183,191:27688649,17193441:501378,78643,0 -(183,191:27852503,17193441:173670,78643,0 -) -) -(183,191:28190027,17193441:501378,78643,0 -(183,191:28353881,17193441:173670,78643,0 -) -) -(183,191:28691405,17193441:501378,78643,0 -(183,191:28855259,17193441:173670,78643,0 -) -) -(183,191:29192783,17193441:501378,78643,0 -(183,191:29356637,17193441:173670,78643,0 -) -) -(183,191:29694161,17193441:501378,78643,0 -(183,191:29858015,17193441:173670,78643,0 -) -) -(183,191:30195539,17193441:501378,78643,0 -(183,191:30359393,17193441:173670,78643,0 -) -) -(183,191:30696917,17193441:501378,78643,0 -(183,191:30860771,17193441:173670,78643,0 -) -) -(183,191:31239539,17193441:1343490,485622,11795 -k183,191:31239539,17193441:0 -k183,191:31387652,17193441:148113 -) -g183,191:30911859,17193441 -g183,191:32583029,17193441 -) -(183,192:6630773,18034929:25952256,513147,134348 -g183,192:11218293,18034929 -h183,192:11218293,18034929:2490370,0,0 -h183,192:13708663,18034929:0,0,0 -g183,192:9121143,18034929 -(183,192:9121143,18034929:2097150,485622,11795 -k183,192:11218293,18034929:155974 -) -g183,192:14103843,18034929 -g183,192:14658932,18034929 -g183,192:16141356,18034929 -g183,192:18127752,18034929 -(183,192:18162467,18034929:501378,78643,0 -$183,192:18162467,18034929 -(183,192:18326321,18034929:173670,78643,0 -) -$183,192:18663845,18034929 -) -(183,192:18663845,18034929:501378,78643,0 -(183,192:18827699,18034929:173670,78643,0 -) -) -(183,192:19165223,18034929:501378,78643,0 -(183,192:19329077,18034929:173670,78643,0 -) -) -(183,192:19666601,18034929:501378,78643,0 -(183,192:19830455,18034929:173670,78643,0 -) -) -(183,192:20167979,18034929:501378,78643,0 -(183,192:20331833,18034929:173670,78643,0 -) -) -(183,192:20669357,18034929:501378,78643,0 -(183,192:20833211,18034929:173670,78643,0 -) -) -(183,192:21170735,18034929:501378,78643,0 -(183,192:21334589,18034929:173670,78643,0 -) -) -(183,192:21672113,18034929:501378,78643,0 -(183,192:21835967,18034929:173670,78643,0 -) -) -(183,192:22173491,18034929:501378,78643,0 -(183,192:22337345,18034929:173670,78643,0 -) -) -(183,192:22674869,18034929:501378,78643,0 -(183,192:22838723,18034929:173670,78643,0 -) -) -(183,192:23176247,18034929:501378,78643,0 -(183,192:23340101,18034929:173670,78643,0 -) -) -(183,192:23677625,18034929:501378,78643,0 -(183,192:23841479,18034929:173670,78643,0 -) -) -(183,192:24179003,18034929:501378,78643,0 -(183,192:24342857,18034929:173670,78643,0 -) -) -(183,192:24680381,18034929:501378,78643,0 -(183,192:24844235,18034929:173670,78643,0 -) -) -(183,192:25181759,18034929:501378,78643,0 -(183,192:25345613,18034929:173670,78643,0 -) -) -(183,192:25683137,18034929:501378,78643,0 -(183,192:25846991,18034929:173670,78643,0 -) -) -(183,192:26184515,18034929:501378,78643,0 -(183,192:26348369,18034929:173670,78643,0 -) -) -(183,192:26685893,18034929:501378,78643,0 -(183,192:26849747,18034929:173670,78643,0 -) -) -(183,192:27187271,18034929:501378,78643,0 -(183,192:27351125,18034929:173670,78643,0 -) -) -(183,192:27688649,18034929:501378,78643,0 -(183,192:27852503,18034929:173670,78643,0 -) -) -(183,192:28190027,18034929:501378,78643,0 -(183,192:28353881,18034929:173670,78643,0 -) -) -(183,192:28691405,18034929:501378,78643,0 -(183,192:28855259,18034929:173670,78643,0 -) -) -(183,192:29192783,18034929:501378,78643,0 -(183,192:29356637,18034929:173670,78643,0 -) -) -(183,192:29694161,18034929:501378,78643,0 -(183,192:29858015,18034929:173670,78643,0 -) -) -(183,192:30195539,18034929:501378,78643,0 -(183,192:30359393,18034929:173670,78643,0 -) -) -(183,192:30696917,18034929:501378,78643,0 -(183,192:30860771,18034929:173670,78643,0 -) -) -(183,192:31239539,18034929:1343490,485622,11795 -k183,192:31239539,18034929:0 -k183,192:31387652,18034929:148113 -) -g183,192:30911859,18034929 -g183,192:32583029,18034929 -) -(183,193:6630773,18876417:25952256,505283,134348 -g183,193:9121143,18876417 -h183,193:9121143,18876417:983040,0,0 -h183,193:10104183,18876417:0,0,0 -g183,193:7613813,18876417 -(183,193:7613813,18876417:1507330,485622,0 -k183,193:9121143,18876417:138283 -) -g183,193:12926163,18876417 -g183,193:14732990,18876417 -g183,193:14732990,18876417 -(183,193:15154199,18876417:501378,78643,0 -$183,193:15154199,18876417 -(183,193:15318053,18876417:173670,78643,0 -) -$183,193:15655577,18876417 -) -(183,193:15655577,18876417:501378,78643,0 -(183,193:15819431,18876417:173670,78643,0 -) -) -(183,193:16156955,18876417:501378,78643,0 -(183,193:16320809,18876417:173670,78643,0 -) -) -(183,193:16658333,18876417:501378,78643,0 -(183,193:16822187,18876417:173670,78643,0 -) -) -(183,193:17159711,18876417:501378,78643,0 -(183,193:17323565,18876417:173670,78643,0 -) -) -(183,193:17661089,18876417:501378,78643,0 -(183,193:17824943,18876417:173670,78643,0 -) -) -(183,193:18162467,18876417:501378,78643,0 -(183,193:18326321,18876417:173670,78643,0 -) -) -(183,193:18663845,18876417:501378,78643,0 -(183,193:18827699,18876417:173670,78643,0 -) -) -(183,193:19165223,18876417:501378,78643,0 -(183,193:19329077,18876417:173670,78643,0 -) -) -(183,193:19666601,18876417:501378,78643,0 -(183,193:19830455,18876417:173670,78643,0 -) -) -(183,193:20167979,18876417:501378,78643,0 -(183,193:20331833,18876417:173670,78643,0 -) -) -(183,193:20669357,18876417:501378,78643,0 -(183,193:20833211,18876417:173670,78643,0 -) -) -(183,193:21170735,18876417:501378,78643,0 -(183,193:21334589,18876417:173670,78643,0 -) -) -(183,193:21672113,18876417:501378,78643,0 -(183,193:21835967,18876417:173670,78643,0 -) -) -(183,193:22173491,18876417:501378,78643,0 -(183,193:22337345,18876417:173670,78643,0 -) -) -(183,193:22674869,18876417:501378,78643,0 -(183,193:22838723,18876417:173670,78643,0 -) -) -(183,193:23176247,18876417:501378,78643,0 -(183,193:23340101,18876417:173670,78643,0 -) -) -(183,193:23677625,18876417:501378,78643,0 -(183,193:23841479,18876417:173670,78643,0 -) -) -(183,193:24179003,18876417:501378,78643,0 -(183,193:24342857,18876417:173670,78643,0 -) -) -(183,193:24680381,18876417:501378,78643,0 -(183,193:24844235,18876417:173670,78643,0 -) -) -(183,193:25181759,18876417:501378,78643,0 -(183,193:25345613,18876417:173670,78643,0 -) -) -(183,193:25683137,18876417:501378,78643,0 -(183,193:25846991,18876417:173670,78643,0 -) -) -(183,193:26184515,18876417:501378,78643,0 -(183,193:26348369,18876417:173670,78643,0 -) -) -(183,193:26685893,18876417:501378,78643,0 -(183,193:26849747,18876417:173670,78643,0 -) -) -(183,193:27187271,18876417:501378,78643,0 -(183,193:27351125,18876417:173670,78643,0 -) -) -(183,193:27688649,18876417:501378,78643,0 -(183,193:27852503,18876417:173670,78643,0 -) -) -(183,193:28190027,18876417:501378,78643,0 -(183,193:28353881,18876417:173670,78643,0 -) -) -(183,193:28691405,18876417:501378,78643,0 -(183,193:28855259,18876417:173670,78643,0 -) -) -(183,193:29192783,18876417:501378,78643,0 -(183,193:29356637,18876417:173670,78643,0 -) -) -(183,193:29694161,18876417:501378,78643,0 -(183,193:29858015,18876417:173670,78643,0 -) -) -(183,193:30195539,18876417:501378,78643,0 -(183,193:30359393,18876417:173670,78643,0 -) -) -(183,193:30696917,18876417:501378,78643,0 -(183,193:30860771,18876417:173670,78643,0 -) -) -(183,193:31239539,18876417:1343490,485622,11795 -k183,193:31239539,18876417:0 -k183,193:31387652,18876417:148113 -) -g183,193:30911859,18876417 -g183,193:32583029,18876417 -) -(183,194:6630773,19717905:25952256,505283,134348 -g183,194:9121143,19717905 -h183,194:9121143,19717905:983040,0,0 -h183,194:10104183,19717905:0,0,0 -g183,194:7613813,19717905 -(183,194:7613813,19717905:1507330,485622,11795 -k183,194:9121143,19717905:138283 -) -g183,194:11112126,19717905 -g183,194:14236227,19717905 -g183,194:18205742,19717905 -g183,194:18205742,19717905 -(183,194:18663845,19717905:501378,78643,0 -$183,194:18663845,19717905 -(183,194:18827699,19717905:173670,78643,0 -) -$183,194:19165223,19717905 -) -(183,194:19165223,19717905:501378,78643,0 -(183,194:19329077,19717905:173670,78643,0 -) -) -(183,194:19666601,19717905:501378,78643,0 -(183,194:19830455,19717905:173670,78643,0 -) -) -(183,194:20167979,19717905:501378,78643,0 -(183,194:20331833,19717905:173670,78643,0 -) -) -(183,194:20669357,19717905:501378,78643,0 -(183,194:20833211,19717905:173670,78643,0 -) -) -(183,194:21170735,19717905:501378,78643,0 -(183,194:21334589,19717905:173670,78643,0 -) -) -(183,194:21672113,19717905:501378,78643,0 -(183,194:21835967,19717905:173670,78643,0 -) -) -(183,194:22173491,19717905:501378,78643,0 -(183,194:22337345,19717905:173670,78643,0 -) -) -(183,194:22674869,19717905:501378,78643,0 -(183,194:22838723,19717905:173670,78643,0 -) -) -(183,194:23176247,19717905:501378,78643,0 -(183,194:23340101,19717905:173670,78643,0 -) -) -(183,194:23677625,19717905:501378,78643,0 -(183,194:23841479,19717905:173670,78643,0 -) -) -(183,194:24179003,19717905:501378,78643,0 -(183,194:24342857,19717905:173670,78643,0 -) -) -(183,194:24680381,19717905:501378,78643,0 -(183,194:24844235,19717905:173670,78643,0 -) -) -(183,194:25181759,19717905:501378,78643,0 -(183,194:25345613,19717905:173670,78643,0 -) -) -(183,194:25683137,19717905:501378,78643,0 -(183,194:25846991,19717905:173670,78643,0 -) -) -(183,194:26184515,19717905:501378,78643,0 -(183,194:26348369,19717905:173670,78643,0 -) -) -(183,194:26685893,19717905:501378,78643,0 -(183,194:26849747,19717905:173670,78643,0 -) -) -(183,194:27187271,19717905:501378,78643,0 -(183,194:27351125,19717905:173670,78643,0 -) -) -(183,194:27688649,19717905:501378,78643,0 -(183,194:27852503,19717905:173670,78643,0 -) -) -(183,194:28190027,19717905:501378,78643,0 -(183,194:28353881,19717905:173670,78643,0 -) -) -(183,194:28691405,19717905:501378,78643,0 -(183,194:28855259,19717905:173670,78643,0 -) -) -(183,194:29192783,19717905:501378,78643,0 -(183,194:29356637,19717905:173670,78643,0 -) -) -(183,194:29694161,19717905:501378,78643,0 -(183,194:29858015,19717905:173670,78643,0 -) -) -(183,194:30195539,19717905:501378,78643,0 -(183,194:30359393,19717905:173670,78643,0 -) -) -(183,194:30696917,19717905:501378,78643,0 -(183,194:30860771,19717905:173670,78643,0 -) -) -(183,194:31239539,19717905:1343490,485622,11795 -k183,194:31239539,19717905:0 -k183,194:31387652,19717905:148113 -) -g183,194:30911859,19717905 -g183,194:32583029,19717905 -) -(183,195:6630773,20559393:25952256,505283,134348 -g183,195:9121143,20559393 -h183,195:9121143,20559393:983040,0,0 -h183,195:10104183,20559393:0,0,0 -g183,195:7613813,20559393 -(183,195:7613813,20559393:1507330,481690,0 -k183,195:9121143,20559393:138283 -) -g183,195:12014557,20559393 -g183,195:14900107,20559393 -g183,195:16488699,20559393 -g183,195:19313300,20559393 -g183,195:19313300,20559393 -(183,195:19666601,20559393:501378,78643,0 -$183,195:19666601,20559393 -(183,195:19830455,20559393:173670,78643,0 -) -$183,195:20167979,20559393 -) -(183,195:20167979,20559393:501378,78643,0 -(183,195:20331833,20559393:173670,78643,0 -) -) -(183,195:20669357,20559393:501378,78643,0 -(183,195:20833211,20559393:173670,78643,0 -) -) -(183,195:21170735,20559393:501378,78643,0 -(183,195:21334589,20559393:173670,78643,0 -) -) -(183,195:21672113,20559393:501378,78643,0 -(183,195:21835967,20559393:173670,78643,0 -) -) -(183,195:22173491,20559393:501378,78643,0 -(183,195:22337345,20559393:173670,78643,0 -) -) -(183,195:22674869,20559393:501378,78643,0 -(183,195:22838723,20559393:173670,78643,0 -) -) -(183,195:23176247,20559393:501378,78643,0 -(183,195:23340101,20559393:173670,78643,0 -) -) -(183,195:23677625,20559393:501378,78643,0 -(183,195:23841479,20559393:173670,78643,0 -) -) -(183,195:24179003,20559393:501378,78643,0 -(183,195:24342857,20559393:173670,78643,0 -) -) -(183,195:24680381,20559393:501378,78643,0 -(183,195:24844235,20559393:173670,78643,0 -) -) -(183,195:25181759,20559393:501378,78643,0 -(183,195:25345613,20559393:173670,78643,0 -) -) -(183,195:25683137,20559393:501378,78643,0 -(183,195:25846991,20559393:173670,78643,0 -) -) -(183,195:26184515,20559393:501378,78643,0 -(183,195:26348369,20559393:173670,78643,0 -) -) -(183,195:26685893,20559393:501378,78643,0 -(183,195:26849747,20559393:173670,78643,0 -) -) -(183,195:27187271,20559393:501378,78643,0 -(183,195:27351125,20559393:173670,78643,0 -) -) -(183,195:27688649,20559393:501378,78643,0 -(183,195:27852503,20559393:173670,78643,0 -) -) -(183,195:28190027,20559393:501378,78643,0 -(183,195:28353881,20559393:173670,78643,0 -) -) -(183,195:28691405,20559393:501378,78643,0 -(183,195:28855259,20559393:173670,78643,0 -) -) -(183,195:29192783,20559393:501378,78643,0 -(183,195:29356637,20559393:173670,78643,0 -) -) -(183,195:29694161,20559393:501378,78643,0 -(183,195:29858015,20559393:173670,78643,0 -) -) -(183,195:30195539,20559393:501378,78643,0 -(183,195:30359393,20559393:173670,78643,0 -) -) -(183,195:30696917,20559393:501378,78643,0 -(183,195:30860771,20559393:173670,78643,0 -) -) -(183,195:31239539,20559393:1343490,485622,11795 -k183,195:31239539,20559393:0 -k183,195:31387652,20559393:148113 -) -g183,195:30911859,20559393 -g183,195:32583029,20559393 -) -(183,196:6630773,21400881:25952256,513147,134348 -g183,196:9121143,21400881 -h183,196:9121143,21400881:983040,0,0 -h183,196:10104183,21400881:0,0,0 -g183,196:7613813,21400881 -(183,196:7613813,21400881:1507330,477757,11795 -k183,196:9121143,21400881:138283 -) -g183,196:12014557,21400881 -g183,196:13478631,21400881 -g183,196:14337152,21400881 -g183,196:16143979,21400881 -g183,196:16143979,21400881 -(183,196:16156955,21400881:501378,78643,0 -$183,196:16156955,21400881 -(183,196:16320809,21400881:173670,78643,0 -) -$183,196:16658333,21400881 -) -(183,196:16658333,21400881:501378,78643,0 -(183,196:16822187,21400881:173670,78643,0 -) -) -(183,196:17159711,21400881:501378,78643,0 -(183,196:17323565,21400881:173670,78643,0 -) -) -(183,196:17661089,21400881:501378,78643,0 -(183,196:17824943,21400881:173670,78643,0 -) -) -(183,196:18162467,21400881:501378,78643,0 -(183,196:18326321,21400881:173670,78643,0 -) -) -(183,196:18663845,21400881:501378,78643,0 -(183,196:18827699,21400881:173670,78643,0 -) -) -(183,196:19165223,21400881:501378,78643,0 -(183,196:19329077,21400881:173670,78643,0 -) -) -(183,196:19666601,21400881:501378,78643,0 -(183,196:19830455,21400881:173670,78643,0 -) -) -(183,196:20167979,21400881:501378,78643,0 -(183,196:20331833,21400881:173670,78643,0 -) -) -(183,196:20669357,21400881:501378,78643,0 -(183,196:20833211,21400881:173670,78643,0 -) -) -(183,196:21170735,21400881:501378,78643,0 -(183,196:21334589,21400881:173670,78643,0 -) -) -(183,196:21672113,21400881:501378,78643,0 -(183,196:21835967,21400881:173670,78643,0 -) -) -(183,196:22173491,21400881:501378,78643,0 -(183,196:22337345,21400881:173670,78643,0 -) -) -(183,196:22674869,21400881:501378,78643,0 -(183,196:22838723,21400881:173670,78643,0 -) -) -(183,196:23176247,21400881:501378,78643,0 -(183,196:23340101,21400881:173670,78643,0 -) -) -(183,196:23677625,21400881:501378,78643,0 -(183,196:23841479,21400881:173670,78643,0 -) -) -(183,196:24179003,21400881:501378,78643,0 -(183,196:24342857,21400881:173670,78643,0 -) -) -(183,196:24680381,21400881:501378,78643,0 -(183,196:24844235,21400881:173670,78643,0 -) -) -(183,196:25181759,21400881:501378,78643,0 -(183,196:25345613,21400881:173670,78643,0 -) -) -(183,196:25683137,21400881:501378,78643,0 -(183,196:25846991,21400881:173670,78643,0 -) -) -(183,196:26184515,21400881:501378,78643,0 -(183,196:26348369,21400881:173670,78643,0 -) -) -(183,196:26685893,21400881:501378,78643,0 -(183,196:26849747,21400881:173670,78643,0 -) -) -(183,196:27187271,21400881:501378,78643,0 -(183,196:27351125,21400881:173670,78643,0 -) -) -(183,196:27688649,21400881:501378,78643,0 -(183,196:27852503,21400881:173670,78643,0 -) -) -(183,196:28190027,21400881:501378,78643,0 -(183,196:28353881,21400881:173670,78643,0 -) -) -(183,196:28691405,21400881:501378,78643,0 -(183,196:28855259,21400881:173670,78643,0 -) -) -(183,196:29192783,21400881:501378,78643,0 -(183,196:29356637,21400881:173670,78643,0 -) -) -(183,196:29694161,21400881:501378,78643,0 -(183,196:29858015,21400881:173670,78643,0 -) -) -(183,196:30195539,21400881:501378,78643,0 -(183,196:30359393,21400881:173670,78643,0 -) -) -(183,196:30696917,21400881:501378,78643,0 -(183,196:30860771,21400881:173670,78643,0 -) -) -(183,196:31239539,21400881:1343490,485622,11795 -k183,196:31239539,21400881:0 -k183,196:31387652,21400881:148113 -) -g183,196:30911859,21400881 -g183,196:32583029,21400881 -) -(183,197:6630773,22242369:25952256,505283,134348 -g183,197:11218293,22242369 -h183,197:11218293,22242369:2490370,0,0 -h183,197:13708663,22242369:0,0,0 -g183,197:9121143,22242369 -(183,197:9121143,22242369:2097150,477757,11795 -k183,197:11218293,22242369:155974 -) -g183,197:13476008,22242369 -g183,197:14952534,22242369 -g183,197:17039855,22242369 -g183,197:18430529,22242369 -g183,197:20532268,22242369 -g183,197:21347535,22242369 -g183,197:24189176,22242369 -(183,197:24680381,22242369:501378,78643,0 -$183,197:24680381,22242369 -(183,197:24844235,22242369:173670,78643,0 -) -$183,197:25181759,22242369 -) -(183,197:25181759,22242369:501378,78643,0 -(183,197:25345613,22242369:173670,78643,0 -) -) -(183,197:25683137,22242369:501378,78643,0 -(183,197:25846991,22242369:173670,78643,0 -) -) -(183,197:26184515,22242369:501378,78643,0 -(183,197:26348369,22242369:173670,78643,0 -) -) -(183,197:26685893,22242369:501378,78643,0 -(183,197:26849747,22242369:173670,78643,0 -) -) -(183,197:27187271,22242369:501378,78643,0 -(183,197:27351125,22242369:173670,78643,0 -) -) -(183,197:27688649,22242369:501378,78643,0 -(183,197:27852503,22242369:173670,78643,0 -) -) -(183,197:28190027,22242369:501378,78643,0 -(183,197:28353881,22242369:173670,78643,0 -) -) -(183,197:28691405,22242369:501378,78643,0 -(183,197:28855259,22242369:173670,78643,0 -) -) -(183,197:29192783,22242369:501378,78643,0 -(183,197:29356637,22242369:173670,78643,0 -) -) -(183,197:29694161,22242369:501378,78643,0 -(183,197:29858015,22242369:173670,78643,0 -) -) -(183,197:30195539,22242369:501378,78643,0 -(183,197:30359393,22242369:173670,78643,0 -) -) -(183,197:30696917,22242369:501378,78643,0 -(183,197:30860771,22242369:173670,78643,0 -) -) -(183,197:31239539,22242369:1343490,485622,11795 -k183,197:31239539,22242369:0 -k183,197:31387652,22242369:148113 -) -g183,197:30911859,22242369 -g183,197:32583029,22242369 -) -(183,198:6630773,23083857:25952256,505283,134348 -g183,198:11218293,23083857 -h183,198:11218293,23083857:2490370,0,0 -h183,198:13708663,23083857:0,0,0 -g183,198:9121143,23083857 -(183,198:9121143,23083857:2097150,485622,11795 -k183,198:11218293,23083857:155974 -) -g183,198:13476008,23083857 -g183,198:14952534,23083857 -g183,198:17039855,23083857 -g183,198:18430529,23083857 -g183,198:20532268,23083857 -g183,198:21347535,23083857 -g183,198:22671362,23083857 -(183,198:22674869,23083857:501378,78643,0 -$183,198:22674869,23083857 -(183,198:22838723,23083857:173670,78643,0 -) -$183,198:23176247,23083857 -) -(183,198:23176247,23083857:501378,78643,0 -(183,198:23340101,23083857:173670,78643,0 -) -) -(183,198:23677625,23083857:501378,78643,0 -(183,198:23841479,23083857:173670,78643,0 -) -) -(183,198:24179003,23083857:501378,78643,0 -(183,198:24342857,23083857:173670,78643,0 -) -) -(183,198:24680381,23083857:501378,78643,0 -(183,198:24844235,23083857:173670,78643,0 -) -) -(183,198:25181759,23083857:501378,78643,0 -(183,198:25345613,23083857:173670,78643,0 -) -) -(183,198:25683137,23083857:501378,78643,0 -(183,198:25846991,23083857:173670,78643,0 -) -) -(183,198:26184515,23083857:501378,78643,0 -(183,198:26348369,23083857:173670,78643,0 -) -) -(183,198:26685893,23083857:501378,78643,0 -(183,198:26849747,23083857:173670,78643,0 -) -) -(183,198:27187271,23083857:501378,78643,0 -(183,198:27351125,23083857:173670,78643,0 -) -) -(183,198:27688649,23083857:501378,78643,0 -(183,198:27852503,23083857:173670,78643,0 -) -) -(183,198:28190027,23083857:501378,78643,0 -(183,198:28353881,23083857:173670,78643,0 -) -) -(183,198:28691405,23083857:501378,78643,0 -(183,198:28855259,23083857:173670,78643,0 -) -) -(183,198:29192783,23083857:501378,78643,0 -(183,198:29356637,23083857:173670,78643,0 -) -) -(183,198:29694161,23083857:501378,78643,0 -(183,198:29858015,23083857:173670,78643,0 -) -) -(183,198:30195539,23083857:501378,78643,0 -(183,198:30359393,23083857:173670,78643,0 -) -) -(183,198:30696917,23083857:501378,78643,0 -(183,198:30860771,23083857:173670,78643,0 -) -) -(183,198:31239539,23083857:1343490,485622,11795 -k183,198:31239539,23083857:0 -k183,198:31387652,23083857:148113 -) -g183,198:30911859,23083857 -g183,198:32583029,23083857 -) -(183,199:6630773,23925345:25952256,513147,134348 -g183,199:11218293,23925345 -h183,199:11218293,23925345:2490370,0,0 -h183,199:13708663,23925345:0,0,0 -g183,199:9121143,23925345 -(183,199:9121143,23925345:2097150,485622,11795 -k183,199:11218293,23925345:155974 -) -g183,199:13209276,23925345 -g183,199:16434302,23925345 -g183,199:17319693,23925345 -g183,199:20151503,23925345 -g183,199:22208023,23925345 -(183,199:22674869,23925345:501378,78643,0 -$183,199:22674869,23925345 -(183,199:22838723,23925345:173670,78643,0 -) -$183,199:23176247,23925345 -) -(183,199:23176247,23925345:501378,78643,0 -(183,199:23340101,23925345:173670,78643,0 -) -) -(183,199:23677625,23925345:501378,78643,0 -(183,199:23841479,23925345:173670,78643,0 -) -) -(183,199:24179003,23925345:501378,78643,0 -(183,199:24342857,23925345:173670,78643,0 -) -) -(183,199:24680381,23925345:501378,78643,0 -(183,199:24844235,23925345:173670,78643,0 -) -) -(183,199:25181759,23925345:501378,78643,0 -(183,199:25345613,23925345:173670,78643,0 -) -) -(183,199:25683137,23925345:501378,78643,0 -(183,199:25846991,23925345:173670,78643,0 -) -) -(183,199:26184515,23925345:501378,78643,0 -(183,199:26348369,23925345:173670,78643,0 -) -) -(183,199:26685893,23925345:501378,78643,0 -(183,199:26849747,23925345:173670,78643,0 -) -) -(183,199:27187271,23925345:501378,78643,0 -(183,199:27351125,23925345:173670,78643,0 -) -) -(183,199:27688649,23925345:501378,78643,0 -(183,199:27852503,23925345:173670,78643,0 -) -) -(183,199:28190027,23925345:501378,78643,0 -(183,199:28353881,23925345:173670,78643,0 -) -) -(183,199:28691405,23925345:501378,78643,0 -(183,199:28855259,23925345:173670,78643,0 -) -) -(183,199:29192783,23925345:501378,78643,0 -(183,199:29356637,23925345:173670,78643,0 -) -) -(183,199:29694161,23925345:501378,78643,0 -(183,199:29858015,23925345:173670,78643,0 -) -) -(183,199:30195539,23925345:501378,78643,0 -(183,199:30359393,23925345:173670,78643,0 -) -) -(183,199:30696917,23925345:501378,78643,0 -(183,199:30860771,23925345:173670,78643,0 -) -) -(183,199:31239539,23925345:1343490,485622,11795 -k183,199:31239539,23925345:0 -k183,199:31387652,23925345:148113 -) -g183,199:30911859,23925345 -g183,199:32583029,23925345 -) -(183,200:6630773,24766833:25952256,513147,134348 -g183,200:9121143,24766833 -h183,200:9121143,24766833:983040,0,0 -h183,200:10104183,24766833:0,0,0 -g183,200:7613813,24766833 -(183,200:7613813,24766833:1507330,485622,11795 -k183,200:9121143,24766833:138283 -) -g183,200:12800989,24766833 -g183,200:15158974,24766833 -g183,200:16671545,24766833 -g183,200:16671545,24766833 -(183,200:17159711,24766833:501378,78643,0 -$183,200:17159711,24766833 -(183,200:17323565,24766833:173670,78643,0 -) -$183,200:17661089,24766833 -) -(183,200:17661089,24766833:501378,78643,0 -(183,200:17824943,24766833:173670,78643,0 -) -) -(183,200:18162467,24766833:501378,78643,0 -(183,200:18326321,24766833:173670,78643,0 -) -) -(183,200:18663845,24766833:501378,78643,0 -(183,200:18827699,24766833:173670,78643,0 -) -) -(183,200:19165223,24766833:501378,78643,0 -(183,200:19329077,24766833:173670,78643,0 -) -) -(183,200:19666601,24766833:501378,78643,0 -(183,200:19830455,24766833:173670,78643,0 -) -) -(183,200:20167979,24766833:501378,78643,0 -(183,200:20331833,24766833:173670,78643,0 -) -) -(183,200:20669357,24766833:501378,78643,0 -(183,200:20833211,24766833:173670,78643,0 -) -) -(183,200:21170735,24766833:501378,78643,0 -(183,200:21334589,24766833:173670,78643,0 -) -) -(183,200:21672113,24766833:501378,78643,0 -(183,200:21835967,24766833:173670,78643,0 -) -) -(183,200:22173491,24766833:501378,78643,0 -(183,200:22337345,24766833:173670,78643,0 -) -) -(183,200:22674869,24766833:501378,78643,0 -(183,200:22838723,24766833:173670,78643,0 -) -) -(183,200:23176247,24766833:501378,78643,0 -(183,200:23340101,24766833:173670,78643,0 -) -) -(183,200:23677625,24766833:501378,78643,0 -(183,200:23841479,24766833:173670,78643,0 -) -) -(183,200:24179003,24766833:501378,78643,0 -(183,200:24342857,24766833:173670,78643,0 -) -) -(183,200:24680381,24766833:501378,78643,0 -(183,200:24844235,24766833:173670,78643,0 -) -) -(183,200:25181759,24766833:501378,78643,0 -(183,200:25345613,24766833:173670,78643,0 -) -) -(183,200:25683137,24766833:501378,78643,0 -(183,200:25846991,24766833:173670,78643,0 -) -) -(183,200:26184515,24766833:501378,78643,0 -(183,200:26348369,24766833:173670,78643,0 -) -) -(183,200:26685893,24766833:501378,78643,0 -(183,200:26849747,24766833:173670,78643,0 -) -) -(183,200:27187271,24766833:501378,78643,0 -(183,200:27351125,24766833:173670,78643,0 -) -) -(183,200:27688649,24766833:501378,78643,0 -(183,200:27852503,24766833:173670,78643,0 -) -) -(183,200:28190027,24766833:501378,78643,0 -(183,200:28353881,24766833:173670,78643,0 -) -) -(183,200:28691405,24766833:501378,78643,0 -(183,200:28855259,24766833:173670,78643,0 -) -) -(183,200:29192783,24766833:501378,78643,0 -(183,200:29356637,24766833:173670,78643,0 -) -) -(183,200:29694161,24766833:501378,78643,0 -(183,200:29858015,24766833:173670,78643,0 -) -) -(183,200:30195539,24766833:501378,78643,0 -(183,200:30359393,24766833:173670,78643,0 -) -) -(183,200:30696917,24766833:501378,78643,0 -(183,200:30860771,24766833:173670,78643,0 -) -) -(183,200:31239539,24766833:1343490,485622,11795 -k183,200:31239539,24766833:0 -k183,200:31387652,24766833:148113 -) -g183,200:30911859,24766833 -g183,200:32583029,24766833 -) -(183,201:6630773,25608321:25952256,505283,134348 -g183,201:9121143,25608321 -h183,201:9121143,25608321:983040,0,0 -h183,201:10104183,25608321:0,0,0 -g183,201:7613813,25608321 -(183,201:7613813,25608321:1507330,477757,0 -k183,201:9121143,25608321:138283 -) -g183,201:11690154,25608321 -g183,201:14291933,25608321 -g183,201:14291933,25608321 -(183,201:14652821,25608321:501378,78643,0 -$183,201:14652821,25608321 -(183,201:14816675,25608321:173670,78643,0 -) -$183,201:15154199,25608321 -) -(183,201:15154199,25608321:501378,78643,0 -(183,201:15318053,25608321:173670,78643,0 -) -) -(183,201:15655577,25608321:501378,78643,0 -(183,201:15819431,25608321:173670,78643,0 -) -) -(183,201:16156955,25608321:501378,78643,0 -(183,201:16320809,25608321:173670,78643,0 -) -) -(183,201:16658333,25608321:501378,78643,0 -(183,201:16822187,25608321:173670,78643,0 -) -) -(183,201:17159711,25608321:501378,78643,0 -(183,201:17323565,25608321:173670,78643,0 -) -) -(183,201:17661089,25608321:501378,78643,0 -(183,201:17824943,25608321:173670,78643,0 -) -) -(183,201:18162467,25608321:501378,78643,0 -(183,201:18326321,25608321:173670,78643,0 -) -) -(183,201:18663845,25608321:501378,78643,0 -(183,201:18827699,25608321:173670,78643,0 -) -) -(183,201:19165223,25608321:501378,78643,0 -(183,201:19329077,25608321:173670,78643,0 -) -) -(183,201:19666601,25608321:501378,78643,0 -(183,201:19830455,25608321:173670,78643,0 -) -) -(183,201:20167979,25608321:501378,78643,0 -(183,201:20331833,25608321:173670,78643,0 -) -) -(183,201:20669357,25608321:501378,78643,0 -(183,201:20833211,25608321:173670,78643,0 -) -) -(183,201:21170735,25608321:501378,78643,0 -(183,201:21334589,25608321:173670,78643,0 -) -) -(183,201:21672113,25608321:501378,78643,0 -(183,201:21835967,25608321:173670,78643,0 -) -) -(183,201:22173491,25608321:501378,78643,0 -(183,201:22337345,25608321:173670,78643,0 -) -) -(183,201:22674869,25608321:501378,78643,0 -(183,201:22838723,25608321:173670,78643,0 -) -) -(183,201:23176247,25608321:501378,78643,0 -(183,201:23340101,25608321:173670,78643,0 -) -) -(183,201:23677625,25608321:501378,78643,0 -(183,201:23841479,25608321:173670,78643,0 -) -) -(183,201:24179003,25608321:501378,78643,0 -(183,201:24342857,25608321:173670,78643,0 -) -) -(183,201:24680381,25608321:501378,78643,0 -(183,201:24844235,25608321:173670,78643,0 -) -) -(183,201:25181759,25608321:501378,78643,0 -(183,201:25345613,25608321:173670,78643,0 -) -) -(183,201:25683137,25608321:501378,78643,0 -(183,201:25846991,25608321:173670,78643,0 -) -) -(183,201:26184515,25608321:501378,78643,0 -(183,201:26348369,25608321:173670,78643,0 -) -) -(183,201:26685893,25608321:501378,78643,0 -(183,201:26849747,25608321:173670,78643,0 -) -) -(183,201:27187271,25608321:501378,78643,0 -(183,201:27351125,25608321:173670,78643,0 -) -) -(183,201:27688649,25608321:501378,78643,0 -(183,201:27852503,25608321:173670,78643,0 -) -) -(183,201:28190027,25608321:501378,78643,0 -(183,201:28353881,25608321:173670,78643,0 -) -) -(183,201:28691405,25608321:501378,78643,0 -(183,201:28855259,25608321:173670,78643,0 -) -) -(183,201:29192783,25608321:501378,78643,0 -(183,201:29356637,25608321:173670,78643,0 -) -) -(183,201:29694161,25608321:501378,78643,0 -(183,201:29858015,25608321:173670,78643,0 -) -) -(183,201:30195539,25608321:501378,78643,0 -(183,201:30359393,25608321:173670,78643,0 -) -) -(183,201:30696917,25608321:501378,78643,0 -(183,201:30860771,25608321:173670,78643,0 -) -) -(183,201:31239539,25608321:1343490,485622,11795 -k183,201:31239539,25608321:0 -k183,201:31387652,25608321:148113 -) -g183,201:30911859,25608321 -g183,201:32583029,25608321 -) -(183,202:6630773,27105169:25952256,505283,126483 -g183,202:7613813,27105169 -h183,202:7613813,27105169:0,0,0 -g183,202:6630773,27105169 -(183,202:6630773,27105169:983040,485622,11795 -k183,202:7613813,27105169:574751 -) -g183,202:9322336,27105169 -g183,202:11762896,27105169 -g183,202:13187648,27105169 -k183,202:23291661,27105169:7947878 -k183,202:31239539,27105169:7947878 -(183,202:31239539,27105169:1343490,485622,11795 -k183,202:31358161,27105169:118622 -) -g183,202:31239539,27105169 -g183,202:32583029,27105169 -) -(183,203:6630773,27946657:25952256,513147,126483 -g183,203:9121143,27946657 -h183,203:9121143,27946657:983040,0,0 -h183,203:10104183,27946657:0,0,0 -g183,203:7613813,27946657 -(183,203:7613813,27946657:1507330,485622,11795 -k183,203:9121143,27946657:536742 -) -g183,203:10959427,27946657 -g183,203:11817948,27946657 -g183,203:13220418,27946657 -g183,203:15837270,27946657 -g183,203:15837270,27946657 -(183,203:16156955,27946657:501378,78643,0 -$183,203:16156955,27946657 -(183,203:16320809,27946657:173670,78643,0 -) -$183,203:16658333,27946657 -) -(183,203:16658333,27946657:501378,78643,0 -(183,203:16822187,27946657:173670,78643,0 -) -) -(183,203:17159711,27946657:501378,78643,0 -(183,203:17323565,27946657:173670,78643,0 -) -) -(183,203:17661089,27946657:501378,78643,0 -(183,203:17824943,27946657:173670,78643,0 -) -) -(183,203:18162467,27946657:501378,78643,0 -(183,203:18326321,27946657:173670,78643,0 -) -) -(183,203:18663845,27946657:501378,78643,0 -(183,203:18827699,27946657:173670,78643,0 -) -) -(183,203:19165223,27946657:501378,78643,0 -(183,203:19329077,27946657:173670,78643,0 -) -) -(183,203:19666601,27946657:501378,78643,0 -(183,203:19830455,27946657:173670,78643,0 -) -) -(183,203:20167979,27946657:501378,78643,0 -(183,203:20331833,27946657:173670,78643,0 -) -) -(183,203:20669357,27946657:501378,78643,0 -(183,203:20833211,27946657:173670,78643,0 -) -) -(183,203:21170735,27946657:501378,78643,0 -(183,203:21334589,27946657:173670,78643,0 -) -) -(183,203:21672113,27946657:501378,78643,0 -(183,203:21835967,27946657:173670,78643,0 -) -) -(183,203:22173491,27946657:501378,78643,0 -(183,203:22337345,27946657:173670,78643,0 -) -) -(183,203:22674869,27946657:501378,78643,0 -(183,203:22838723,27946657:173670,78643,0 -) -) -(183,203:23176247,27946657:501378,78643,0 -(183,203:23340101,27946657:173670,78643,0 -) -) -(183,203:23677625,27946657:501378,78643,0 -(183,203:23841479,27946657:173670,78643,0 -) -) -(183,203:24179003,27946657:501378,78643,0 -(183,203:24342857,27946657:173670,78643,0 -) -) -(183,203:24680381,27946657:501378,78643,0 -(183,203:24844235,27946657:173670,78643,0 -) -) -(183,203:25181759,27946657:501378,78643,0 -(183,203:25345613,27946657:173670,78643,0 -) -) -(183,203:25683137,27946657:501378,78643,0 -(183,203:25846991,27946657:173670,78643,0 -) -) -(183,203:26184515,27946657:501378,78643,0 -(183,203:26348369,27946657:173670,78643,0 -) -) -(183,203:26685893,27946657:501378,78643,0 -(183,203:26849747,27946657:173670,78643,0 -) -) -(183,203:27187271,27946657:501378,78643,0 -(183,203:27351125,27946657:173670,78643,0 -) -) -(183,203:27688649,27946657:501378,78643,0 -(183,203:27852503,27946657:173670,78643,0 -) -) -(183,203:28190027,27946657:501378,78643,0 -(183,203:28353881,27946657:173670,78643,0 -) -) -(183,203:28691405,27946657:501378,78643,0 -(183,203:28855259,27946657:173670,78643,0 -) -) -(183,203:29192783,27946657:501378,78643,0 -(183,203:29356637,27946657:173670,78643,0 -) -) -(183,203:29694161,27946657:501378,78643,0 -(183,203:29858015,27946657:173670,78643,0 -) -) -(183,203:30195539,27946657:501378,78643,0 -(183,203:30359393,27946657:173670,78643,0 -) -) -(183,203:30696917,27946657:501378,78643,0 -(183,203:30860771,27946657:173670,78643,0 -) -) -(183,203:31239539,27946657:1343490,485622,11795 -k183,203:31239539,27946657:0 -k183,203:31387652,27946657:148113 -) -g183,203:30911859,27946657 -g183,203:32583029,27946657 -) -(183,204:6630773,28788145:25952256,505283,11795 -g183,204:9121143,28788145 -h183,204:9121143,28788145:983040,0,0 -h183,204:10104183,28788145:0,0,0 -g183,204:7613813,28788145 -(183,204:7613813,28788145:1507330,485622,11795 -k183,204:9121143,28788145:536742 -) -g183,204:13324622,28788145 -g183,204:13324622,28788145 -(183,204:13650065,28788145:501378,78643,0 -$183,204:13650065,28788145 -(183,204:13813919,28788145:173670,78643,0 -) -$183,204:14151443,28788145 -) -(183,204:14151443,28788145:501378,78643,0 -(183,204:14315297,28788145:173670,78643,0 -) -) -(183,204:14652821,28788145:501378,78643,0 -(183,204:14816675,28788145:173670,78643,0 -) -) -(183,204:15154199,28788145:501378,78643,0 -(183,204:15318053,28788145:173670,78643,0 -) -) -(183,204:15655577,28788145:501378,78643,0 -(183,204:15819431,28788145:173670,78643,0 -) -) -(183,204:16156955,28788145:501378,78643,0 -(183,204:16320809,28788145:173670,78643,0 -) -) -(183,204:16658333,28788145:501378,78643,0 -(183,204:16822187,28788145:173670,78643,0 -) -) -(183,204:17159711,28788145:501378,78643,0 -(183,204:17323565,28788145:173670,78643,0 -) -) -(183,204:17661089,28788145:501378,78643,0 -(183,204:17824943,28788145:173670,78643,0 -) -) -(183,204:18162467,28788145:501378,78643,0 -(183,204:18326321,28788145:173670,78643,0 -) -) -(183,204:18663845,28788145:501378,78643,0 -(183,204:18827699,28788145:173670,78643,0 -) -) -(183,204:19165223,28788145:501378,78643,0 -(183,204:19329077,28788145:173670,78643,0 -) -) -(183,204:19666601,28788145:501378,78643,0 -(183,204:19830455,28788145:173670,78643,0 -) -) -(183,204:20167979,28788145:501378,78643,0 -(183,204:20331833,28788145:173670,78643,0 -) -) -(183,204:20669357,28788145:501378,78643,0 -(183,204:20833211,28788145:173670,78643,0 -) -) -(183,204:21170735,28788145:501378,78643,0 -(183,204:21334589,28788145:173670,78643,0 -) -) -(183,204:21672113,28788145:501378,78643,0 -(183,204:21835967,28788145:173670,78643,0 -) -) -(183,204:22173491,28788145:501378,78643,0 -(183,204:22337345,28788145:173670,78643,0 -) -) -(183,204:22674869,28788145:501378,78643,0 -(183,204:22838723,28788145:173670,78643,0 -) -) -(183,204:23176247,28788145:501378,78643,0 -(183,204:23340101,28788145:173670,78643,0 -) -) -(183,204:23677625,28788145:501378,78643,0 -(183,204:23841479,28788145:173670,78643,0 -) -) -(183,204:24179003,28788145:501378,78643,0 -(183,204:24342857,28788145:173670,78643,0 -) -) -(183,204:24680381,28788145:501378,78643,0 -(183,204:24844235,28788145:173670,78643,0 -) -) -(183,204:25181759,28788145:501378,78643,0 -(183,204:25345613,28788145:173670,78643,0 -) -) -(183,204:25683137,28788145:501378,78643,0 -(183,204:25846991,28788145:173670,78643,0 -) -) -(183,204:26184515,28788145:501378,78643,0 -(183,204:26348369,28788145:173670,78643,0 -) -) -(183,204:26685893,28788145:501378,78643,0 -(183,204:26849747,28788145:173670,78643,0 -) -) -(183,204:27187271,28788145:501378,78643,0 -(183,204:27351125,28788145:173670,78643,0 -) -) -(183,204:27688649,28788145:501378,78643,0 -(183,204:27852503,28788145:173670,78643,0 -) -) -(183,204:28190027,28788145:501378,78643,0 -(183,204:28353881,28788145:173670,78643,0 -) -) -(183,204:28691405,28788145:501378,78643,0 -(183,204:28855259,28788145:173670,78643,0 -) -) -(183,204:29192783,28788145:501378,78643,0 -(183,204:29356637,28788145:173670,78643,0 -) -) -(183,204:29694161,28788145:501378,78643,0 -(183,204:29858015,28788145:173670,78643,0 -) -) -(183,204:30195539,28788145:501378,78643,0 -(183,204:30359393,28788145:173670,78643,0 -) -) -(183,204:30696917,28788145:501378,78643,0 -(183,204:30860771,28788145:173670,78643,0 -) -) -(183,204:31239538,28788145:1343490,485622,11795 -k183,204:31239538,28788145:0 -k183,204:31387651,28788145:148113 -) -g183,204:30911858,28788145 -g183,204:32583028,28788145 -) -(183,205:6630773,29629633:25952256,505283,134348 -g183,205:9121143,29629633 -h183,205:9121143,29629633:983040,0,0 -h183,205:10104183,29629633:0,0,0 -g183,205:7613813,29629633 -(183,205:7613813,29629633:1507330,485622,11795 -k183,205:9121143,29629633:536742 -) -g183,205:12185606,29629633 -g183,205:13898061,29629633 -g183,205:14713328,29629633 -g183,205:16115798,29629633 -g183,205:18732650,29629633 -g183,205:18732650,29629633 -(183,205:19165223,29629633:501378,78643,0 -$183,205:19165223,29629633 -(183,205:19329077,29629633:173670,78643,0 -) -$183,205:19666601,29629633 -) -(183,205:19666601,29629633:501378,78643,0 -(183,205:19830455,29629633:173670,78643,0 -) -) -(183,205:20167979,29629633:501378,78643,0 -(183,205:20331833,29629633:173670,78643,0 -) -) -(183,205:20669357,29629633:501378,78643,0 -(183,205:20833211,29629633:173670,78643,0 -) -) -(183,205:21170735,29629633:501378,78643,0 -(183,205:21334589,29629633:173670,78643,0 -) -) -(183,205:21672113,29629633:501378,78643,0 -(183,205:21835967,29629633:173670,78643,0 -) -) -(183,205:22173491,29629633:501378,78643,0 -(183,205:22337345,29629633:173670,78643,0 -) -) -(183,205:22674869,29629633:501378,78643,0 -(183,205:22838723,29629633:173670,78643,0 -) -) -(183,205:23176247,29629633:501378,78643,0 -(183,205:23340101,29629633:173670,78643,0 -) -) -(183,205:23677625,29629633:501378,78643,0 -(183,205:23841479,29629633:173670,78643,0 -) -) -(183,205:24179003,29629633:501378,78643,0 -(183,205:24342857,29629633:173670,78643,0 -) -) -(183,205:24680381,29629633:501378,78643,0 -(183,205:24844235,29629633:173670,78643,0 -) -) -(183,205:25181759,29629633:501378,78643,0 -(183,205:25345613,29629633:173670,78643,0 -) -) -(183,205:25683137,29629633:501378,78643,0 -(183,205:25846991,29629633:173670,78643,0 -) -) -(183,205:26184515,29629633:501378,78643,0 -(183,205:26348369,29629633:173670,78643,0 -) -) -(183,205:26685893,29629633:501378,78643,0 -(183,205:26849747,29629633:173670,78643,0 -) -) -(183,205:27187271,29629633:501378,78643,0 -(183,205:27351125,29629633:173670,78643,0 -) -) -(183,205:27688649,29629633:501378,78643,0 -(183,205:27852503,29629633:173670,78643,0 -) -) -(183,205:28190027,29629633:501378,78643,0 -(183,205:28353881,29629633:173670,78643,0 -) -) -(183,205:28691405,29629633:501378,78643,0 -(183,205:28855259,29629633:173670,78643,0 -) -) -(183,205:29192783,29629633:501378,78643,0 -(183,205:29356637,29629633:173670,78643,0 -) -) -(183,205:29694161,29629633:501378,78643,0 -(183,205:29858015,29629633:173670,78643,0 -) -) -(183,205:30195539,29629633:501378,78643,0 -(183,205:30359393,29629633:173670,78643,0 -) -) -(183,205:30696917,29629633:501378,78643,0 -(183,205:30860771,29629633:173670,78643,0 -) -) -(183,205:31239539,29629633:1343490,485622,11795 -k183,205:31239539,29629633:0 -k183,205:31387652,29629633:148113 -) -g183,205:30911859,29629633 -g183,205:32583029,29629633 -) -(183,206:6630773,30471121:25952256,505283,126483 -g183,206:9121143,30471121 -h183,206:9121143,30471121:983040,0,0 -h183,206:10104183,30471121:0,0,0 -g183,206:7613813,30471121 -(183,206:7613813,30471121:1507330,485622,11795 -k183,206:9121143,30471121:536742 -) -g183,206:10433173,30471121 -g183,206:12700718,30471121 -g183,206:14091392,30471121 -g183,206:17695216,30471121 -g183,206:17695216,30471121 -(183,206:18162467,30471121:501378,78643,0 -$183,206:18162467,30471121 -(183,206:18326321,30471121:173670,78643,0 -) -$183,206:18663845,30471121 -) -(183,206:18663845,30471121:501378,78643,0 -(183,206:18827699,30471121:173670,78643,0 -) -) -(183,206:19165223,30471121:501378,78643,0 -(183,206:19329077,30471121:173670,78643,0 -) -) -(183,206:19666601,30471121:501378,78643,0 -(183,206:19830455,30471121:173670,78643,0 -) -) -(183,206:20167979,30471121:501378,78643,0 -(183,206:20331833,30471121:173670,78643,0 -) -) -(183,206:20669357,30471121:501378,78643,0 -(183,206:20833211,30471121:173670,78643,0 -) -) -(183,206:21170735,30471121:501378,78643,0 -(183,206:21334589,30471121:173670,78643,0 -) -) -(183,206:21672113,30471121:501378,78643,0 -(183,206:21835967,30471121:173670,78643,0 -) -) -(183,206:22173491,30471121:501378,78643,0 -(183,206:22337345,30471121:173670,78643,0 -) -) -(183,206:22674869,30471121:501378,78643,0 -(183,206:22838723,30471121:173670,78643,0 -) -) -(183,206:23176247,30471121:501378,78643,0 -(183,206:23340101,30471121:173670,78643,0 -) -) -(183,206:23677625,30471121:501378,78643,0 -(183,206:23841479,30471121:173670,78643,0 -) -) -(183,206:24179003,30471121:501378,78643,0 -(183,206:24342857,30471121:173670,78643,0 -) -) -(183,206:24680381,30471121:501378,78643,0 -(183,206:24844235,30471121:173670,78643,0 -) -) -(183,206:25181759,30471121:501378,78643,0 -(183,206:25345613,30471121:173670,78643,0 -) -) -(183,206:25683137,30471121:501378,78643,0 -(183,206:25846991,30471121:173670,78643,0 -) -) -(183,206:26184515,30471121:501378,78643,0 -(183,206:26348369,30471121:173670,78643,0 -) -) -(183,206:26685893,30471121:501378,78643,0 -(183,206:26849747,30471121:173670,78643,0 -) -) -(183,206:27187271,30471121:501378,78643,0 -(183,206:27351125,30471121:173670,78643,0 -) -) -(183,206:27688649,30471121:501378,78643,0 -(183,206:27852503,30471121:173670,78643,0 -) -) -(183,206:28190027,30471121:501378,78643,0 -(183,206:28353881,30471121:173670,78643,0 -) -) -(183,206:28691405,30471121:501378,78643,0 -(183,206:28855259,30471121:173670,78643,0 -) -) -(183,206:29192783,30471121:501378,78643,0 -(183,206:29356637,30471121:173670,78643,0 -) -) -(183,206:29694161,30471121:501378,78643,0 -(183,206:29858015,30471121:173670,78643,0 -) -) -(183,206:30195539,30471121:501378,78643,0 -(183,206:30359393,30471121:173670,78643,0 -) -) -(183,206:30696917,30471121:501378,78643,0 -(183,206:30860771,30471121:173670,78643,0 -) -) -(183,206:31239539,30471121:1343490,485622,11795 -k183,206:31239539,30471121:0 -k183,206:31387652,30471121:148113 -) -g183,206:30911859,30471121 -g183,206:32583029,30471121 -) -(183,207:6630773,31312609:25952256,513147,134348 -g183,207:9121143,31312609 -h183,207:9121143,31312609:983040,0,0 -h183,207:10104183,31312609:0,0,0 -g183,207:7613813,31312609 -(183,207:7613813,31312609:1507330,485622,11795 -k183,207:9121143,31312609:536742 -) -g183,207:12002761,31312609 -g183,207:13393435,31312609 -g183,207:15846447,31312609 -g183,207:17028716,31312609 -g183,207:21064423,31312609 -g183,207:21064423,31312609 -(183,207:21170735,31312609:501378,78643,0 -$183,207:21170735,31312609 -(183,207:21334589,31312609:173670,78643,0 -) -$183,207:21672113,31312609 -) -(183,207:21672113,31312609:501378,78643,0 -(183,207:21835967,31312609:173670,78643,0 -) -) -(183,207:22173491,31312609:501378,78643,0 -(183,207:22337345,31312609:173670,78643,0 -) -) -(183,207:22674869,31312609:501378,78643,0 -(183,207:22838723,31312609:173670,78643,0 -) -) -(183,207:23176247,31312609:501378,78643,0 -(183,207:23340101,31312609:173670,78643,0 -) -) -(183,207:23677625,31312609:501378,78643,0 -(183,207:23841479,31312609:173670,78643,0 -) -) -(183,207:24179003,31312609:501378,78643,0 -(183,207:24342857,31312609:173670,78643,0 -) -) -(183,207:24680381,31312609:501378,78643,0 -(183,207:24844235,31312609:173670,78643,0 -) -) -(183,207:25181759,31312609:501378,78643,0 -(183,207:25345613,31312609:173670,78643,0 -) -) -(183,207:25683137,31312609:501378,78643,0 -(183,207:25846991,31312609:173670,78643,0 -) -) -(183,207:26184515,31312609:501378,78643,0 -(183,207:26348369,31312609:173670,78643,0 -) -) -(183,207:26685893,31312609:501378,78643,0 -(183,207:26849747,31312609:173670,78643,0 -) -) -(183,207:27187271,31312609:501378,78643,0 -(183,207:27351125,31312609:173670,78643,0 -) -) -(183,207:27688649,31312609:501378,78643,0 -(183,207:27852503,31312609:173670,78643,0 -) -) -(183,207:28190027,31312609:501378,78643,0 -(183,207:28353881,31312609:173670,78643,0 -) -) -(183,207:28691405,31312609:501378,78643,0 -(183,207:28855259,31312609:173670,78643,0 -) -) -(183,207:29192783,31312609:501378,78643,0 -(183,207:29356637,31312609:173670,78643,0 -) -) -(183,207:29694161,31312609:501378,78643,0 -(183,207:29858015,31312609:173670,78643,0 -) -) -(183,207:30195539,31312609:501378,78643,0 -(183,207:30359393,31312609:173670,78643,0 -) -) -(183,207:30696917,31312609:501378,78643,0 -(183,207:30860771,31312609:173670,78643,0 -) -) -(183,207:31239539,31312609:1343490,485622,11795 -k183,207:31239539,31312609:0 -k183,207:31387652,31312609:148113 -) -g183,207:30911859,31312609 -g183,207:32583029,31312609 -) -(183,208:6630773,32154097:25952256,513147,11795 -g183,208:9121143,32154097 -h183,208:9121143,32154097:983040,0,0 -h183,208:10104183,32154097:0,0,0 -g183,208:7613813,32154097 -(183,208:7613813,32154097:1507330,485622,11795 -k183,208:9121143,32154097:536742 -) -g183,208:12312091,32154097 -g183,208:13824662,32154097 -g183,208:13824662,32154097 -(183,208:14151443,32154097:501378,78643,0 -$183,208:14151443,32154097 -(183,208:14315297,32154097:173670,78643,0 -) -$183,208:14652821,32154097 -) -(183,208:14652821,32154097:501378,78643,0 -(183,208:14816675,32154097:173670,78643,0 -) -) -(183,208:15154199,32154097:501378,78643,0 -(183,208:15318053,32154097:173670,78643,0 -) -) -(183,208:15655577,32154097:501378,78643,0 -(183,208:15819431,32154097:173670,78643,0 -) -) -(183,208:16156955,32154097:501378,78643,0 -(183,208:16320809,32154097:173670,78643,0 -) -) -(183,208:16658333,32154097:501378,78643,0 -(183,208:16822187,32154097:173670,78643,0 -) -) -(183,208:17159711,32154097:501378,78643,0 -(183,208:17323565,32154097:173670,78643,0 -) -) -(183,208:17661089,32154097:501378,78643,0 -(183,208:17824943,32154097:173670,78643,0 -) -) -(183,208:18162467,32154097:501378,78643,0 -(183,208:18326321,32154097:173670,78643,0 -) -) -(183,208:18663845,32154097:501378,78643,0 -(183,208:18827699,32154097:173670,78643,0 -) -) -(183,208:19165223,32154097:501378,78643,0 -(183,208:19329077,32154097:173670,78643,0 -) -) -(183,208:19666601,32154097:501378,78643,0 -(183,208:19830455,32154097:173670,78643,0 -) -) -(183,208:20167979,32154097:501378,78643,0 -(183,208:20331833,32154097:173670,78643,0 -) -) -(183,208:20669357,32154097:501378,78643,0 -(183,208:20833211,32154097:173670,78643,0 -) -) -(183,208:21170735,32154097:501378,78643,0 -(183,208:21334589,32154097:173670,78643,0 -) -) -(183,208:21672113,32154097:501378,78643,0 -(183,208:21835967,32154097:173670,78643,0 -) -) -(183,208:22173491,32154097:501378,78643,0 -(183,208:22337345,32154097:173670,78643,0 -) -) -(183,208:22674869,32154097:501378,78643,0 -(183,208:22838723,32154097:173670,78643,0 -) -) -(183,208:23176247,32154097:501378,78643,0 -(183,208:23340101,32154097:173670,78643,0 -) -) -(183,208:23677625,32154097:501378,78643,0 -(183,208:23841479,32154097:173670,78643,0 -) -) -(183,208:24179003,32154097:501378,78643,0 -(183,208:24342857,32154097:173670,78643,0 -) -) -(183,208:24680381,32154097:501378,78643,0 -(183,208:24844235,32154097:173670,78643,0 -) -) -(183,208:25181759,32154097:501378,78643,0 -(183,208:25345613,32154097:173670,78643,0 -) -) -(183,208:25683137,32154097:501378,78643,0 -(183,208:25846991,32154097:173670,78643,0 -) -) -(183,208:26184515,32154097:501378,78643,0 -(183,208:26348369,32154097:173670,78643,0 -) -) -(183,208:26685893,32154097:501378,78643,0 -(183,208:26849747,32154097:173670,78643,0 -) -) -(183,208:27187271,32154097:501378,78643,0 -(183,208:27351125,32154097:173670,78643,0 -) -) -(183,208:27688649,32154097:501378,78643,0 -(183,208:27852503,32154097:173670,78643,0 -) -) -(183,208:28190027,32154097:501378,78643,0 -(183,208:28353881,32154097:173670,78643,0 -) -) -(183,208:28691405,32154097:501378,78643,0 -(183,208:28855259,32154097:173670,78643,0 -) -) -(183,208:29192783,32154097:501378,78643,0 -(183,208:29356637,32154097:173670,78643,0 -) -) -(183,208:29694161,32154097:501378,78643,0 -(183,208:29858015,32154097:173670,78643,0 -) -) -(183,208:30195539,32154097:501378,78643,0 -(183,208:30359393,32154097:173670,78643,0 -) -) -(183,208:30696917,32154097:501378,78643,0 -(183,208:30860771,32154097:173670,78643,0 -) -) -(183,208:31239538,32154097:1343490,485622,11795 -k183,208:31239538,32154097:0 -k183,208:31387651,32154097:148113 -) -g183,208:30911858,32154097 -g183,208:32583028,32154097 -) -(183,209:6630773,32995585:25952256,505283,11795 -g183,209:11218293,32995585 -h183,209:11218293,32995585:2490370,0,0 -h183,209:13708663,32995585:0,0,0 -g183,209:9121143,32995585 -(183,209:9121143,32995585:2097150,485622,11795 -k183,209:11218293,32995585:554432 -) -g183,209:12850139,32995585 -g183,209:13494357,32995585 -g183,209:14885031,32995585 -g183,209:16640741,32995585 -(183,209:16658333,32995585:501378,78643,0 -$183,209:16658333,32995585 -(183,209:16822187,32995585:173670,78643,0 -) -$183,209:17159711,32995585 -) -(183,209:17159711,32995585:501378,78643,0 -(183,209:17323565,32995585:173670,78643,0 -) -) -(183,209:17661089,32995585:501378,78643,0 -(183,209:17824943,32995585:173670,78643,0 -) -) -(183,209:18162467,32995585:501378,78643,0 -(183,209:18326321,32995585:173670,78643,0 -) -) -(183,209:18663845,32995585:501378,78643,0 -(183,209:18827699,32995585:173670,78643,0 -) -) -(183,209:19165223,32995585:501378,78643,0 -(183,209:19329077,32995585:173670,78643,0 -) -) -(183,209:19666601,32995585:501378,78643,0 -(183,209:19830455,32995585:173670,78643,0 -) -) -(183,209:20167979,32995585:501378,78643,0 -(183,209:20331833,32995585:173670,78643,0 -) -) -(183,209:20669357,32995585:501378,78643,0 -(183,209:20833211,32995585:173670,78643,0 -) -) -(183,209:21170735,32995585:501378,78643,0 -(183,209:21334589,32995585:173670,78643,0 -) -) -(183,209:21672113,32995585:501378,78643,0 -(183,209:21835967,32995585:173670,78643,0 -) -) -(183,209:22173491,32995585:501378,78643,0 -(183,209:22337345,32995585:173670,78643,0 -) -) -(183,209:22674869,32995585:501378,78643,0 -(183,209:22838723,32995585:173670,78643,0 -) -) -(183,209:23176247,32995585:501378,78643,0 -(183,209:23340101,32995585:173670,78643,0 -) -) -(183,209:23677625,32995585:501378,78643,0 -(183,209:23841479,32995585:173670,78643,0 -) -) -(183,209:24179003,32995585:501378,78643,0 -(183,209:24342857,32995585:173670,78643,0 -) -) -(183,209:24680381,32995585:501378,78643,0 -(183,209:24844235,32995585:173670,78643,0 -) -) -(183,209:25181759,32995585:501378,78643,0 -(183,209:25345613,32995585:173670,78643,0 -) -) -(183,209:25683137,32995585:501378,78643,0 -(183,209:25846991,32995585:173670,78643,0 -) -) -(183,209:26184515,32995585:501378,78643,0 -(183,209:26348369,32995585:173670,78643,0 -) -) -(183,209:26685893,32995585:501378,78643,0 -(183,209:26849747,32995585:173670,78643,0 -) -) -(183,209:27187271,32995585:501378,78643,0 -(183,209:27351125,32995585:173670,78643,0 -) -) -(183,209:27688649,32995585:501378,78643,0 -(183,209:27852503,32995585:173670,78643,0 -) -) -(183,209:28190027,32995585:501378,78643,0 -(183,209:28353881,32995585:173670,78643,0 -) -) -(183,209:28691405,32995585:501378,78643,0 -(183,209:28855259,32995585:173670,78643,0 -) -) -(183,209:29192783,32995585:501378,78643,0 -(183,209:29356637,32995585:173670,78643,0 -) -) -(183,209:29694161,32995585:501378,78643,0 -(183,209:29858015,32995585:173670,78643,0 -) -) -(183,209:30195539,32995585:501378,78643,0 -(183,209:30359393,32995585:173670,78643,0 -) -) -(183,209:30696917,32995585:501378,78643,0 -(183,209:30860771,32995585:173670,78643,0 -) -) -(183,209:31239539,32995585:1343490,485622,11795 -k183,209:31239539,32995585:0 -k183,209:31387652,32995585:148113 -) -g183,209:30911859,32995585 -g183,209:32583029,32995585 -) -(183,210:6630773,33837073:25952256,505283,11795 -g183,210:11218293,33837073 -h183,210:11218293,33837073:2490370,0,0 -h183,210:13708663,33837073:0,0,0 -g183,210:9121143,33837073 -(183,210:9121143,33837073:2097150,485622,11795 -k183,210:11218293,33837073:554432 -) -g183,210:12918952,33837073 -(183,210:13148687,33837073:501378,78643,0 -$183,210:13148687,33837073 -(183,210:13312541,33837073:173670,78643,0 -) -$183,210:13650065,33837073 -) -(183,210:13650065,33837073:501378,78643,0 -(183,210:13813919,33837073:173670,78643,0 -) -) -(183,210:14151443,33837073:501378,78643,0 -(183,210:14315297,33837073:173670,78643,0 -) -) -(183,210:14652821,33837073:501378,78643,0 -(183,210:14816675,33837073:173670,78643,0 -) -) -(183,210:15154199,33837073:501378,78643,0 -(183,210:15318053,33837073:173670,78643,0 -) -) -(183,210:15655577,33837073:501378,78643,0 -(183,210:15819431,33837073:173670,78643,0 -) -) -(183,210:16156955,33837073:501378,78643,0 -(183,210:16320809,33837073:173670,78643,0 -) -) -(183,210:16658333,33837073:501378,78643,0 -(183,210:16822187,33837073:173670,78643,0 -) -) -(183,210:17159711,33837073:501378,78643,0 -(183,210:17323565,33837073:173670,78643,0 -) -) -(183,210:17661089,33837073:501378,78643,0 -(183,210:17824943,33837073:173670,78643,0 -) -) -(183,210:18162467,33837073:501378,78643,0 -(183,210:18326321,33837073:173670,78643,0 -) -) -(183,210:18663845,33837073:501378,78643,0 -(183,210:18827699,33837073:173670,78643,0 -) -) -(183,210:19165223,33837073:501378,78643,0 -(183,210:19329077,33837073:173670,78643,0 -) -) -(183,210:19666601,33837073:501378,78643,0 -(183,210:19830455,33837073:173670,78643,0 -) -) -(183,210:20167979,33837073:501378,78643,0 -(183,210:20331833,33837073:173670,78643,0 -) -) -(183,210:20669357,33837073:501378,78643,0 -(183,210:20833211,33837073:173670,78643,0 -) -) -(183,210:21170735,33837073:501378,78643,0 -(183,210:21334589,33837073:173670,78643,0 -) -) -(183,210:21672113,33837073:501378,78643,0 -(183,210:21835967,33837073:173670,78643,0 -) -) -(183,210:22173491,33837073:501378,78643,0 -(183,210:22337345,33837073:173670,78643,0 -) -) -(183,210:22674869,33837073:501378,78643,0 -(183,210:22838723,33837073:173670,78643,0 -) -) -(183,210:23176247,33837073:501378,78643,0 -(183,210:23340101,33837073:173670,78643,0 -) -) -(183,210:23677625,33837073:501378,78643,0 -(183,210:23841479,33837073:173670,78643,0 -) -) -(183,210:24179003,33837073:501378,78643,0 -(183,210:24342857,33837073:173670,78643,0 -) -) -(183,210:24680381,33837073:501378,78643,0 -(183,210:24844235,33837073:173670,78643,0 -) -) -(183,210:25181759,33837073:501378,78643,0 -(183,210:25345613,33837073:173670,78643,0 -) -) -(183,210:25683137,33837073:501378,78643,0 -(183,210:25846991,33837073:173670,78643,0 -) -) -(183,210:26184515,33837073:501378,78643,0 -(183,210:26348369,33837073:173670,78643,0 -) -) -(183,210:26685893,33837073:501378,78643,0 -(183,210:26849747,33837073:173670,78643,0 -) -) -(183,210:27187271,33837073:501378,78643,0 -(183,210:27351125,33837073:173670,78643,0 -) -) -(183,210:27688649,33837073:501378,78643,0 -(183,210:27852503,33837073:173670,78643,0 -) -) -(183,210:28190027,33837073:501378,78643,0 -(183,210:28353881,33837073:173670,78643,0 -) -) -(183,210:28691405,33837073:501378,78643,0 -(183,210:28855259,33837073:173670,78643,0 -) -) -(183,210:29192783,33837073:501378,78643,0 -(183,210:29356637,33837073:173670,78643,0 -) -) -(183,210:29694161,33837073:501378,78643,0 -(183,210:29858015,33837073:173670,78643,0 -) -) -(183,210:30195539,33837073:501378,78643,0 -(183,210:30359393,33837073:173670,78643,0 -) -) -(183,210:30696917,33837073:501378,78643,0 -(183,210:30860771,33837073:173670,78643,0 -) -) -(183,210:31239540,33837073:1343490,485622,11795 -k183,210:31239540,33837073:0 -k183,210:31387653,33837073:148113 -) -g183,210:30911860,33837073 -g183,210:32583030,33837073 -) -(183,211:6630773,34678561:25952256,513147,11795 -g183,211:9121143,34678561 -h183,211:9121143,34678561:983040,0,0 -h183,211:10104183,34678561:0,0,0 -g183,211:7613813,34678561 -(183,211:7613813,34678561:1507330,485622,11795 -k183,211:9121143,34678561:536742 -) -g183,211:10679589,34678561 -g183,211:12070263,34678561 -g183,211:14137923,34678561 -g183,211:15650494,34678561 -g183,211:15650494,34678561 -(183,211:15655577,34678561:501378,78643,0 -$183,211:15655577,34678561 -(183,211:15819431,34678561:173670,78643,0 -) -$183,211:16156955,34678561 -) -(183,211:16156955,34678561:501378,78643,0 -(183,211:16320809,34678561:173670,78643,0 -) -) -(183,211:16658333,34678561:501378,78643,0 -(183,211:16822187,34678561:173670,78643,0 -) -) -(183,211:17159711,34678561:501378,78643,0 -(183,211:17323565,34678561:173670,78643,0 -) -) -(183,211:17661089,34678561:501378,78643,0 -(183,211:17824943,34678561:173670,78643,0 -) -) -(183,211:18162467,34678561:501378,78643,0 -(183,211:18326321,34678561:173670,78643,0 -) -) -(183,211:18663845,34678561:501378,78643,0 -(183,211:18827699,34678561:173670,78643,0 -) -) -(183,211:19165223,34678561:501378,78643,0 -(183,211:19329077,34678561:173670,78643,0 -) -) -(183,211:19666601,34678561:501378,78643,0 -(183,211:19830455,34678561:173670,78643,0 -) -) -(183,211:20167979,34678561:501378,78643,0 -(183,211:20331833,34678561:173670,78643,0 -) -) -(183,211:20669357,34678561:501378,78643,0 -(183,211:20833211,34678561:173670,78643,0 -) -) -(183,211:21170735,34678561:501378,78643,0 -(183,211:21334589,34678561:173670,78643,0 -) -) -(183,211:21672113,34678561:501378,78643,0 -(183,211:21835967,34678561:173670,78643,0 -) -) -(183,211:22173491,34678561:501378,78643,0 -(183,211:22337345,34678561:173670,78643,0 -) -) -(183,211:22674869,34678561:501378,78643,0 -(183,211:22838723,34678561:173670,78643,0 -) -) -(183,211:23176247,34678561:501378,78643,0 -(183,211:23340101,34678561:173670,78643,0 -) -) -(183,211:23677625,34678561:501378,78643,0 -(183,211:23841479,34678561:173670,78643,0 -) -) -(183,211:24179003,34678561:501378,78643,0 -(183,211:24342857,34678561:173670,78643,0 -) -) -(183,211:24680381,34678561:501378,78643,0 -(183,211:24844235,34678561:173670,78643,0 -) -) -(183,211:25181759,34678561:501378,78643,0 -(183,211:25345613,34678561:173670,78643,0 -) -) -(183,211:25683137,34678561:501378,78643,0 -(183,211:25846991,34678561:173670,78643,0 -) -) -(183,211:26184515,34678561:501378,78643,0 -(183,211:26348369,34678561:173670,78643,0 -) -) -(183,211:26685893,34678561:501378,78643,0 -(183,211:26849747,34678561:173670,78643,0 -) -) -(183,211:27187271,34678561:501378,78643,0 -(183,211:27351125,34678561:173670,78643,0 -) -) -(183,211:27688649,34678561:501378,78643,0 -(183,211:27852503,34678561:173670,78643,0 -) -) -(183,211:28190027,34678561:501378,78643,0 -(183,211:28353881,34678561:173670,78643,0 -) -) -(183,211:28691405,34678561:501378,78643,0 -(183,211:28855259,34678561:173670,78643,0 -) -) -(183,211:29192783,34678561:501378,78643,0 -(183,211:29356637,34678561:173670,78643,0 -) -) -(183,211:29694161,34678561:501378,78643,0 -(183,211:29858015,34678561:173670,78643,0 -) -) -(183,211:30195539,34678561:501378,78643,0 -(183,211:30359393,34678561:173670,78643,0 -) -) -(183,211:30696917,34678561:501378,78643,0 -(183,211:30860771,34678561:173670,78643,0 -) -) -(183,211:31239539,34678561:1343490,485622,11795 -k183,211:31239539,34678561:0 -k183,211:31387652,34678561:148113 -) -g183,211:30911859,34678561 -g183,211:32583029,34678561 -) -(183,212:6630773,35520049:25952256,505283,11795 -g183,212:11218293,35520049 -h183,212:11218293,35520049:2490370,0,0 -h183,212:13708663,35520049:0,0,0 -g183,212:9121143,35520049 -(183,212:9121143,35520049:2097150,485622,11795 -k183,212:11218293,35520049:554432 -) -g183,212:13154227,35520049 -(183,212:13650065,35520049:501378,78643,0 -$183,212:13650065,35520049 -(183,212:13813919,35520049:173670,78643,0 -) -$183,212:14151443,35520049 -) -(183,212:14151443,35520049:501378,78643,0 -(183,212:14315297,35520049:173670,78643,0 -) -) -(183,212:14652821,35520049:501378,78643,0 -(183,212:14816675,35520049:173670,78643,0 -) -) -(183,212:15154199,35520049:501378,78643,0 -(183,212:15318053,35520049:173670,78643,0 -) -) -(183,212:15655577,35520049:501378,78643,0 -(183,212:15819431,35520049:173670,78643,0 -) -) -(183,212:16156955,35520049:501378,78643,0 -(183,212:16320809,35520049:173670,78643,0 -) -) -(183,212:16658333,35520049:501378,78643,0 -(183,212:16822187,35520049:173670,78643,0 -) -) -(183,212:17159711,35520049:501378,78643,0 -(183,212:17323565,35520049:173670,78643,0 -) -) -(183,212:17661089,35520049:501378,78643,0 -(183,212:17824943,35520049:173670,78643,0 -) -) -(183,212:18162467,35520049:501378,78643,0 -(183,212:18326321,35520049:173670,78643,0 -) -) -(183,212:18663845,35520049:501378,78643,0 -(183,212:18827699,35520049:173670,78643,0 -) -) -(183,212:19165223,35520049:501378,78643,0 -(183,212:19329077,35520049:173670,78643,0 -) -) -(183,212:19666601,35520049:501378,78643,0 -(183,212:19830455,35520049:173670,78643,0 -) -) -(183,212:20167979,35520049:501378,78643,0 -(183,212:20331833,35520049:173670,78643,0 -) -) -(183,212:20669357,35520049:501378,78643,0 -(183,212:20833211,35520049:173670,78643,0 -) -) -(183,212:21170735,35520049:501378,78643,0 -(183,212:21334589,35520049:173670,78643,0 -) -) -(183,212:21672113,35520049:501378,78643,0 -(183,212:21835967,35520049:173670,78643,0 -) -) -(183,212:22173491,35520049:501378,78643,0 -(183,212:22337345,35520049:173670,78643,0 -) -) -(183,212:22674869,35520049:501378,78643,0 -(183,212:22838723,35520049:173670,78643,0 -) -) -(183,212:23176247,35520049:501378,78643,0 -(183,212:23340101,35520049:173670,78643,0 -) -) -(183,212:23677625,35520049:501378,78643,0 -(183,212:23841479,35520049:173670,78643,0 -) -) -(183,212:24179003,35520049:501378,78643,0 -(183,212:24342857,35520049:173670,78643,0 -) -) -(183,212:24680381,35520049:501378,78643,0 -(183,212:24844235,35520049:173670,78643,0 -) -) -(183,212:25181759,35520049:501378,78643,0 -(183,212:25345613,35520049:173670,78643,0 -) -) -(183,212:25683137,35520049:501378,78643,0 -(183,212:25846991,35520049:173670,78643,0 -) -) -(183,212:26184515,35520049:501378,78643,0 -(183,212:26348369,35520049:173670,78643,0 -) -) -(183,212:26685893,35520049:501378,78643,0 -(183,212:26849747,35520049:173670,78643,0 -) -) -(183,212:27187271,35520049:501378,78643,0 -(183,212:27351125,35520049:173670,78643,0 -) -) -(183,212:27688649,35520049:501378,78643,0 -(183,212:27852503,35520049:173670,78643,0 -) -) -(183,212:28190027,35520049:501378,78643,0 -(183,212:28353881,35520049:173670,78643,0 -) -) -(183,212:28691405,35520049:501378,78643,0 -(183,212:28855259,35520049:173670,78643,0 -) -) -(183,212:29192783,35520049:501378,78643,0 -(183,212:29356637,35520049:173670,78643,0 -) -) -(183,212:29694161,35520049:501378,78643,0 -(183,212:29858015,35520049:173670,78643,0 -) -) -(183,212:30195539,35520049:501378,78643,0 -(183,212:30359393,35520049:173670,78643,0 -) -) -(183,212:30696917,35520049:501378,78643,0 -(183,212:30860771,35520049:173670,78643,0 -) -) -(183,212:31239539,35520049:1343490,485622,11795 -k183,212:31239539,35520049:0 -k183,212:31387652,35520049:148113 -) -g183,212:30911859,35520049 -g183,212:32583029,35520049 -) -(183,213:6630773,36361537:25952256,513147,11795 -g183,213:9121143,36361537 -h183,213:9121143,36361537:983040,0,0 -h183,213:10104183,36361537:0,0,0 -g183,213:7613813,36361537 -(183,213:7613813,36361537:1507330,485622,11795 -k183,213:9121143,36361537:536742 -) -g183,213:10606188,36361537 -g183,213:12118759,36361537 -g183,213:12118759,36361537 -(183,213:12145931,36361537:501378,78643,0 -$183,213:12145931,36361537 -(183,213:12309785,36361537:173670,78643,0 -) -$183,213:12647309,36361537 -) -(183,213:12647309,36361537:501378,78643,0 -(183,213:12811163,36361537:173670,78643,0 -) -) -(183,213:13148687,36361537:501378,78643,0 -(183,213:13312541,36361537:173670,78643,0 -) -) -(183,213:13650065,36361537:501378,78643,0 -(183,213:13813919,36361537:173670,78643,0 -) -) -(183,213:14151443,36361537:501378,78643,0 -(183,213:14315297,36361537:173670,78643,0 -) -) -(183,213:14652821,36361537:501378,78643,0 -(183,213:14816675,36361537:173670,78643,0 -) -) -(183,213:15154199,36361537:501378,78643,0 -(183,213:15318053,36361537:173670,78643,0 -) -) -(183,213:15655577,36361537:501378,78643,0 -(183,213:15819431,36361537:173670,78643,0 -) -) -(183,213:16156955,36361537:501378,78643,0 -(183,213:16320809,36361537:173670,78643,0 -) -) -(183,213:16658333,36361537:501378,78643,0 -(183,213:16822187,36361537:173670,78643,0 -) -) -(183,213:17159711,36361537:501378,78643,0 -(183,213:17323565,36361537:173670,78643,0 -) -) -(183,213:17661089,36361537:501378,78643,0 -(183,213:17824943,36361537:173670,78643,0 -) -) -(183,213:18162467,36361537:501378,78643,0 -(183,213:18326321,36361537:173670,78643,0 -) -) -(183,213:18663845,36361537:501378,78643,0 -(183,213:18827699,36361537:173670,78643,0 -) -) -(183,213:19165223,36361537:501378,78643,0 -(183,213:19329077,36361537:173670,78643,0 -) -) -(183,213:19666601,36361537:501378,78643,0 -(183,213:19830455,36361537:173670,78643,0 -) -) -(183,213:20167979,36361537:501378,78643,0 -(183,213:20331833,36361537:173670,78643,0 -) -) -(183,213:20669357,36361537:501378,78643,0 -(183,213:20833211,36361537:173670,78643,0 -) -) -(183,213:21170735,36361537:501378,78643,0 -(183,213:21334589,36361537:173670,78643,0 -) -) -(183,213:21672113,36361537:501378,78643,0 -(183,213:21835967,36361537:173670,78643,0 -) -) -(183,213:22173491,36361537:501378,78643,0 -(183,213:22337345,36361537:173670,78643,0 -) -) -(183,213:22674869,36361537:501378,78643,0 -(183,213:22838723,36361537:173670,78643,0 -) -) -(183,213:23176247,36361537:501378,78643,0 -(183,213:23340101,36361537:173670,78643,0 -) -) -(183,213:23677625,36361537:501378,78643,0 -(183,213:23841479,36361537:173670,78643,0 -) -) -(183,213:24179003,36361537:501378,78643,0 -(183,213:24342857,36361537:173670,78643,0 -) -) -(183,213:24680381,36361537:501378,78643,0 -(183,213:24844235,36361537:173670,78643,0 -) -) -(183,213:25181759,36361537:501378,78643,0 -(183,213:25345613,36361537:173670,78643,0 -) -) -(183,213:25683137,36361537:501378,78643,0 -(183,213:25846991,36361537:173670,78643,0 -) -) -(183,213:26184515,36361537:501378,78643,0 -(183,213:26348369,36361537:173670,78643,0 -) -) -(183,213:26685893,36361537:501378,78643,0 -(183,213:26849747,36361537:173670,78643,0 -) -) -(183,213:27187271,36361537:501378,78643,0 -(183,213:27351125,36361537:173670,78643,0 -) -) -(183,213:27688649,36361537:501378,78643,0 -(183,213:27852503,36361537:173670,78643,0 -) -) -(183,213:28190027,36361537:501378,78643,0 -(183,213:28353881,36361537:173670,78643,0 -) -) -(183,213:28691405,36361537:501378,78643,0 -(183,213:28855259,36361537:173670,78643,0 -) -) -(183,213:29192783,36361537:501378,78643,0 -(183,213:29356637,36361537:173670,78643,0 -) -) -(183,213:29694161,36361537:501378,78643,0 -(183,213:29858015,36361537:173670,78643,0 -) -) -(183,213:30195539,36361537:501378,78643,0 -(183,213:30359393,36361537:173670,78643,0 -) -) -(183,213:30696917,36361537:501378,78643,0 -(183,213:30860771,36361537:173670,78643,0 -) -) -(183,213:31239539,36361537:1343490,485622,11795 -k183,213:31239539,36361537:0 -k183,213:31387652,36361537:148113 -) -g183,213:30911859,36361537 -g183,213:32583029,36361537 -) -(183,214:6630773,37203025:25952256,505283,11795 -g183,214:9121143,37203025 -h183,214:9121143,37203025:983040,0,0 -h183,214:10104183,37203025:0,0,0 -g183,214:7613813,37203025 -(183,214:7613813,37203025:1507330,485622,11795 -k183,214:9121143,37203025:536742 -) -g183,214:13029054,37203025 -g183,214:13029054,37203025 -(183,214:13148687,37203025:501378,78643,0 -$183,214:13148687,37203025 -(183,214:13312541,37203025:173670,78643,0 -) -$183,214:13650065,37203025 -) -(183,214:13650065,37203025:501378,78643,0 -(183,214:13813919,37203025:173670,78643,0 -) -) -(183,214:14151443,37203025:501378,78643,0 -(183,214:14315297,37203025:173670,78643,0 -) -) -(183,214:14652821,37203025:501378,78643,0 -(183,214:14816675,37203025:173670,78643,0 -) -) -(183,214:15154199,37203025:501378,78643,0 -(183,214:15318053,37203025:173670,78643,0 -) -) -(183,214:15655577,37203025:501378,78643,0 -(183,214:15819431,37203025:173670,78643,0 -) -) -(183,214:16156955,37203025:501378,78643,0 -(183,214:16320809,37203025:173670,78643,0 -) -) -(183,214:16658333,37203025:501378,78643,0 -(183,214:16822187,37203025:173670,78643,0 -) -) -(183,214:17159711,37203025:501378,78643,0 -(183,214:17323565,37203025:173670,78643,0 -) -) -(183,214:17661089,37203025:501378,78643,0 -(183,214:17824943,37203025:173670,78643,0 -) -) -(183,214:18162467,37203025:501378,78643,0 -(183,214:18326321,37203025:173670,78643,0 -) -) -(183,214:18663845,37203025:501378,78643,0 -(183,214:18827699,37203025:173670,78643,0 -) -) -(183,214:19165223,37203025:501378,78643,0 -(183,214:19329077,37203025:173670,78643,0 -) -) -(183,214:19666601,37203025:501378,78643,0 -(183,214:19830455,37203025:173670,78643,0 -) -) -(183,214:20167979,37203025:501378,78643,0 -(183,214:20331833,37203025:173670,78643,0 -) -) -(183,214:20669357,37203025:501378,78643,0 -(183,214:20833211,37203025:173670,78643,0 -) -) -(183,214:21170735,37203025:501378,78643,0 -(183,214:21334589,37203025:173670,78643,0 -) -) -(183,214:21672113,37203025:501378,78643,0 -(183,214:21835967,37203025:173670,78643,0 -) -) -(183,214:22173491,37203025:501378,78643,0 -(183,214:22337345,37203025:173670,78643,0 -) -) -(183,214:22674869,37203025:501378,78643,0 -(183,214:22838723,37203025:173670,78643,0 -) -) -(183,214:23176247,37203025:501378,78643,0 -(183,214:23340101,37203025:173670,78643,0 -) -) -(183,214:23677625,37203025:501378,78643,0 -(183,214:23841479,37203025:173670,78643,0 -) -) -(183,214:24179003,37203025:501378,78643,0 -(183,214:24342857,37203025:173670,78643,0 -) -) -(183,214:24680381,37203025:501378,78643,0 -(183,214:24844235,37203025:173670,78643,0 -) -) -(183,214:25181759,37203025:501378,78643,0 -(183,214:25345613,37203025:173670,78643,0 -) -) -(183,214:25683137,37203025:501378,78643,0 -(183,214:25846991,37203025:173670,78643,0 -) -) -(183,214:26184515,37203025:501378,78643,0 -(183,214:26348369,37203025:173670,78643,0 -) -) -(183,214:26685893,37203025:501378,78643,0 -(183,214:26849747,37203025:173670,78643,0 -) -) -(183,214:27187271,37203025:501378,78643,0 -(183,214:27351125,37203025:173670,78643,0 -) -) -(183,214:27688649,37203025:501378,78643,0 -(183,214:27852503,37203025:173670,78643,0 -) -) -(183,214:28190027,37203025:501378,78643,0 -(183,214:28353881,37203025:173670,78643,0 -) -) -(183,214:28691405,37203025:501378,78643,0 -(183,214:28855259,37203025:173670,78643,0 -) -) -(183,214:29192783,37203025:501378,78643,0 -(183,214:29356637,37203025:173670,78643,0 -) -) -(183,214:29694161,37203025:501378,78643,0 -(183,214:29858015,37203025:173670,78643,0 -) -) -(183,214:30195539,37203025:501378,78643,0 -(183,214:30359393,37203025:173670,78643,0 -) -) -(183,214:30696917,37203025:501378,78643,0 -(183,214:30860771,37203025:173670,78643,0 -) -) -(183,214:31239538,37203025:1343490,485622,11795 -k183,214:31239538,37203025:0 -k183,214:31387651,37203025:148113 -) -g183,214:30911858,37203025 -g183,214:32583028,37203025 -) -(183,215:6630773,38044513:25952256,513147,11795 -g183,215:11218293,38044513 -h183,215:11218293,38044513:2490370,0,0 -h183,215:13708663,38044513:0,0,0 -g183,215:9121143,38044513 -(183,215:9121143,38044513:2097150,485622,11795 -k183,215:11218293,38044513:554432 -) -g183,215:12686299,38044513 -g183,215:14198870,38044513 -g183,215:15084261,38044513 -g183,215:18681532,38044513 -(183,215:19165223,38044513:501378,78643,0 -$183,215:19165223,38044513 -(183,215:19329077,38044513:173670,78643,0 -) -$183,215:19666601,38044513 -) -(183,215:19666601,38044513:501378,78643,0 -(183,215:19830455,38044513:173670,78643,0 -) -) -(183,215:20167979,38044513:501378,78643,0 -(183,215:20331833,38044513:173670,78643,0 -) -) -(183,215:20669357,38044513:501378,78643,0 -(183,215:20833211,38044513:173670,78643,0 -) -) -(183,215:21170735,38044513:501378,78643,0 -(183,215:21334589,38044513:173670,78643,0 -) -) -(183,215:21672113,38044513:501378,78643,0 -(183,215:21835967,38044513:173670,78643,0 -) -) -(183,215:22173491,38044513:501378,78643,0 -(183,215:22337345,38044513:173670,78643,0 -) -) -(183,215:22674869,38044513:501378,78643,0 -(183,215:22838723,38044513:173670,78643,0 -) -) -(183,215:23176247,38044513:501378,78643,0 -(183,215:23340101,38044513:173670,78643,0 -) -) -(183,215:23677625,38044513:501378,78643,0 -(183,215:23841479,38044513:173670,78643,0 -) -) -(183,215:24179003,38044513:501378,78643,0 -(183,215:24342857,38044513:173670,78643,0 -) -) -(183,215:24680381,38044513:501378,78643,0 -(183,215:24844235,38044513:173670,78643,0 -) -) -(183,215:25181759,38044513:501378,78643,0 -(183,215:25345613,38044513:173670,78643,0 -) -) -(183,215:25683137,38044513:501378,78643,0 -(183,215:25846991,38044513:173670,78643,0 -) -) -(183,215:26184515,38044513:501378,78643,0 -(183,215:26348369,38044513:173670,78643,0 -) -) -(183,215:26685893,38044513:501378,78643,0 -(183,215:26849747,38044513:173670,78643,0 -) -) -(183,215:27187271,38044513:501378,78643,0 -(183,215:27351125,38044513:173670,78643,0 -) -) -(183,215:27688649,38044513:501378,78643,0 -(183,215:27852503,38044513:173670,78643,0 -) -) -(183,215:28190027,38044513:501378,78643,0 -(183,215:28353881,38044513:173670,78643,0 -) -) -(183,215:28691405,38044513:501378,78643,0 -(183,215:28855259,38044513:173670,78643,0 -) -) -(183,215:29192783,38044513:501378,78643,0 -(183,215:29356637,38044513:173670,78643,0 -) -) -(183,215:29694161,38044513:501378,78643,0 -(183,215:29858015,38044513:173670,78643,0 -) -) -(183,215:30195539,38044513:501378,78643,0 -(183,215:30359393,38044513:173670,78643,0 -) -) -(183,215:30696917,38044513:501378,78643,0 -(183,215:30860771,38044513:173670,78643,0 -) -) -(183,215:31239539,38044513:1343490,485622,11795 -k183,215:31239539,38044513:0 -k183,215:31387652,38044513:148113 -) -g183,215:30911859,38044513 -g183,215:32583029,38044513 -) -(183,216:6630773,38886001:25952256,505283,11795 -g183,216:11218293,38886001 -h183,216:11218293,38886001:2490370,0,0 -h183,216:13708663,38886001:0,0,0 -g183,216:9121143,38886001 -(183,216:9121143,38886001:2097150,485622,11795 -k183,216:11218293,38886001:554432 -) -g183,216:13548098,38886001 -(183,216:13650065,38886001:501378,78643,0 -$183,216:13650065,38886001 -(183,216:13813919,38886001:173670,78643,0 -) -$183,216:14151443,38886001 -) -(183,216:14151443,38886001:501378,78643,0 -(183,216:14315297,38886001:173670,78643,0 -) -) -(183,216:14652821,38886001:501378,78643,0 -(183,216:14816675,38886001:173670,78643,0 -) -) -(183,216:15154199,38886001:501378,78643,0 -(183,216:15318053,38886001:173670,78643,0 -) -) -(183,216:15655577,38886001:501378,78643,0 -(183,216:15819431,38886001:173670,78643,0 -) -) -(183,216:16156955,38886001:501378,78643,0 -(183,216:16320809,38886001:173670,78643,0 -) -) -(183,216:16658333,38886001:501378,78643,0 -(183,216:16822187,38886001:173670,78643,0 -) -) -(183,216:17159711,38886001:501378,78643,0 -(183,216:17323565,38886001:173670,78643,0 -) -) -(183,216:17661089,38886001:501378,78643,0 -(183,216:17824943,38886001:173670,78643,0 -) -) -(183,216:18162467,38886001:501378,78643,0 -(183,216:18326321,38886001:173670,78643,0 -) -) -(183,216:18663845,38886001:501378,78643,0 -(183,216:18827699,38886001:173670,78643,0 -) -) -(183,216:19165223,38886001:501378,78643,0 -(183,216:19329077,38886001:173670,78643,0 -) -) -(183,216:19666601,38886001:501378,78643,0 -(183,216:19830455,38886001:173670,78643,0 -) -) -(183,216:20167979,38886001:501378,78643,0 -(183,216:20331833,38886001:173670,78643,0 -) -) -(183,216:20669357,38886001:501378,78643,0 -(183,216:20833211,38886001:173670,78643,0 -) -) -(183,216:21170735,38886001:501378,78643,0 -(183,216:21334589,38886001:173670,78643,0 -) -) -(183,216:21672113,38886001:501378,78643,0 -(183,216:21835967,38886001:173670,78643,0 -) -) -(183,216:22173491,38886001:501378,78643,0 -(183,216:22337345,38886001:173670,78643,0 -) -) -(183,216:22674869,38886001:501378,78643,0 -(183,216:22838723,38886001:173670,78643,0 -) -) -(183,216:23176247,38886001:501378,78643,0 -(183,216:23340101,38886001:173670,78643,0 -) -) -(183,216:23677625,38886001:501378,78643,0 -(183,216:23841479,38886001:173670,78643,0 -) -) -(183,216:24179003,38886001:501378,78643,0 -(183,216:24342857,38886001:173670,78643,0 -) -) -(183,216:24680381,38886001:501378,78643,0 -(183,216:24844235,38886001:173670,78643,0 -) -) -(183,216:25181759,38886001:501378,78643,0 -(183,216:25345613,38886001:173670,78643,0 -) -) -(183,216:25683137,38886001:501378,78643,0 -(183,216:25846991,38886001:173670,78643,0 -) -) -(183,216:26184515,38886001:501378,78643,0 -(183,216:26348369,38886001:173670,78643,0 -) -) -(183,216:26685893,38886001:501378,78643,0 -(183,216:26849747,38886001:173670,78643,0 -) -) -(183,216:27187271,38886001:501378,78643,0 -(183,216:27351125,38886001:173670,78643,0 -) -) -(183,216:27688649,38886001:501378,78643,0 -(183,216:27852503,38886001:173670,78643,0 -) -) -(183,216:28190027,38886001:501378,78643,0 -(183,216:28353881,38886001:173670,78643,0 -) -) -(183,216:28691405,38886001:501378,78643,0 -(183,216:28855259,38886001:173670,78643,0 -) -) -(183,216:29192783,38886001:501378,78643,0 -(183,216:29356637,38886001:173670,78643,0 -) -) -(183,216:29694161,38886001:501378,78643,0 -(183,216:29858015,38886001:173670,78643,0 -) -) -(183,216:30195539,38886001:501378,78643,0 -(183,216:30359393,38886001:173670,78643,0 -) -) -(183,216:30696917,38886001:501378,78643,0 -(183,216:30860771,38886001:173670,78643,0 -) -) -(183,216:31239538,38886001:1343490,485622,11795 -k183,216:31239538,38886001:0 -k183,216:31387651,38886001:148113 -) -g183,216:30911858,38886001 -g183,216:32583028,38886001 -) -(183,217:6630773,39727489:25952256,505283,11795 -g183,217:11218293,39727489 -h183,217:11218293,39727489:2490370,0,0 -h183,217:13708663,39727489:0,0,0 -g183,217:9121143,39727489 -(183,217:9121143,39727489:2097150,485622,11795 -k183,217:11218293,39727489:554432 -) -g183,217:12831134,39727489 -(183,217:13148687,39727489:501378,78643,0 -$183,217:13148687,39727489 -(183,217:13312541,39727489:173670,78643,0 -) -$183,217:13650065,39727489 -) -(183,217:13650065,39727489:501378,78643,0 -(183,217:13813919,39727489:173670,78643,0 -) -) -(183,217:14151443,39727489:501378,78643,0 -(183,217:14315297,39727489:173670,78643,0 -) -) -(183,217:14652821,39727489:501378,78643,0 -(183,217:14816675,39727489:173670,78643,0 -) -) -(183,217:15154199,39727489:501378,78643,0 -(183,217:15318053,39727489:173670,78643,0 -) -) -(183,217:15655577,39727489:501378,78643,0 -(183,217:15819431,39727489:173670,78643,0 -) -) -(183,217:16156955,39727489:501378,78643,0 -(183,217:16320809,39727489:173670,78643,0 -) -) -(183,217:16658333,39727489:501378,78643,0 -(183,217:16822187,39727489:173670,78643,0 -) -) -(183,217:17159711,39727489:501378,78643,0 -(183,217:17323565,39727489:173670,78643,0 -) -) -(183,217:17661089,39727489:501378,78643,0 -(183,217:17824943,39727489:173670,78643,0 -) -) -(183,217:18162467,39727489:501378,78643,0 -(183,217:18326321,39727489:173670,78643,0 -) -) -(183,217:18663845,39727489:501378,78643,0 -(183,217:18827699,39727489:173670,78643,0 -) -) -(183,217:19165223,39727489:501378,78643,0 -(183,217:19329077,39727489:173670,78643,0 -) -) -(183,217:19666601,39727489:501378,78643,0 -(183,217:19830455,39727489:173670,78643,0 -) -) -(183,217:20167979,39727489:501378,78643,0 -(183,217:20331833,39727489:173670,78643,0 -) -) -(183,217:20669357,39727489:501378,78643,0 -(183,217:20833211,39727489:173670,78643,0 -) -) -(183,217:21170735,39727489:501378,78643,0 -(183,217:21334589,39727489:173670,78643,0 -) -) -(183,217:21672113,39727489:501378,78643,0 -(183,217:21835967,39727489:173670,78643,0 -) -) -(183,217:22173491,39727489:501378,78643,0 -(183,217:22337345,39727489:173670,78643,0 -) -) -(183,217:22674869,39727489:501378,78643,0 -(183,217:22838723,39727489:173670,78643,0 -) -) -(183,217:23176247,39727489:501378,78643,0 -(183,217:23340101,39727489:173670,78643,0 -) -) -(183,217:23677625,39727489:501378,78643,0 -(183,217:23841479,39727489:173670,78643,0 -) -) -(183,217:24179003,39727489:501378,78643,0 -(183,217:24342857,39727489:173670,78643,0 -) -) -(183,217:24680381,39727489:501378,78643,0 -(183,217:24844235,39727489:173670,78643,0 -) -) -(183,217:25181759,39727489:501378,78643,0 -(183,217:25345613,39727489:173670,78643,0 -) -) -(183,217:25683137,39727489:501378,78643,0 -(183,217:25846991,39727489:173670,78643,0 -) -) -(183,217:26184515,39727489:501378,78643,0 -(183,217:26348369,39727489:173670,78643,0 -) -) -(183,217:26685893,39727489:501378,78643,0 -(183,217:26849747,39727489:173670,78643,0 -) -) -(183,217:27187271,39727489:501378,78643,0 -(183,217:27351125,39727489:173670,78643,0 -) -) -(183,217:27688649,39727489:501378,78643,0 -(183,217:27852503,39727489:173670,78643,0 -) -) -(183,217:28190027,39727489:501378,78643,0 -(183,217:28353881,39727489:173670,78643,0 -) -) -(183,217:28691405,39727489:501378,78643,0 -(183,217:28855259,39727489:173670,78643,0 -) -) -(183,217:29192783,39727489:501378,78643,0 -(183,217:29356637,39727489:173670,78643,0 -) -) -(183,217:29694161,39727489:501378,78643,0 -(183,217:29858015,39727489:173670,78643,0 -) -) -(183,217:30195539,39727489:501378,78643,0 -(183,217:30359393,39727489:173670,78643,0 -) -) -(183,217:30696917,39727489:501378,78643,0 -(183,217:30860771,39727489:173670,78643,0 -) -) -(183,217:31239538,39727489:1343490,485622,11795 -k183,217:31239538,39727489:0 -k183,217:31387651,39727489:148113 -) -g183,217:30911858,39727489 -g183,217:32583028,39727489 -) -(183,218:6630773,40568977:25952256,505283,11795 -g183,218:11218293,40568977 -h183,218:11218293,40568977:2490370,0,0 -h183,218:13708663,40568977:0,0,0 -g183,218:9121143,40568977 -(183,218:9121143,40568977:2097150,485622,11795 -k183,218:11218293,40568977:554432 -) -g183,218:14345671,40568977 -(183,218:14652821,40568977:501378,78643,0 -$183,218:14652821,40568977 -(183,218:14816675,40568977:173670,78643,0 -) -$183,218:15154199,40568977 -) -(183,218:15154199,40568977:501378,78643,0 -(183,218:15318053,40568977:173670,78643,0 -) -) -(183,218:15655577,40568977:501378,78643,0 -(183,218:15819431,40568977:173670,78643,0 -) -) -(183,218:16156955,40568977:501378,78643,0 -(183,218:16320809,40568977:173670,78643,0 -) -) -(183,218:16658333,40568977:501378,78643,0 -(183,218:16822187,40568977:173670,78643,0 -) -) -(183,218:17159711,40568977:501378,78643,0 -(183,218:17323565,40568977:173670,78643,0 -) -) -(183,218:17661089,40568977:501378,78643,0 -(183,218:17824943,40568977:173670,78643,0 -) -) -(183,218:18162467,40568977:501378,78643,0 -(183,218:18326321,40568977:173670,78643,0 -) -) -(183,218:18663845,40568977:501378,78643,0 -(183,218:18827699,40568977:173670,78643,0 -) -) -(183,218:19165223,40568977:501378,78643,0 -(183,218:19329077,40568977:173670,78643,0 -) -) -(183,218:19666601,40568977:501378,78643,0 -(183,218:19830455,40568977:173670,78643,0 -) -) -(183,218:20167979,40568977:501378,78643,0 -(183,218:20331833,40568977:173670,78643,0 -) -) -(183,218:20669357,40568977:501378,78643,0 -(183,218:20833211,40568977:173670,78643,0 -) -) -(183,218:21170735,40568977:501378,78643,0 -(183,218:21334589,40568977:173670,78643,0 -) -) -(183,218:21672113,40568977:501378,78643,0 -(183,218:21835967,40568977:173670,78643,0 -) -) -(183,218:22173491,40568977:501378,78643,0 -(183,218:22337345,40568977:173670,78643,0 -) -) -(183,218:22674869,40568977:501378,78643,0 -(183,218:22838723,40568977:173670,78643,0 -) -) -(183,218:23176247,40568977:501378,78643,0 -(183,218:23340101,40568977:173670,78643,0 -) -) -(183,218:23677625,40568977:501378,78643,0 -(183,218:23841479,40568977:173670,78643,0 -) -) -(183,218:24179003,40568977:501378,78643,0 -(183,218:24342857,40568977:173670,78643,0 -) -) -(183,218:24680381,40568977:501378,78643,0 -(183,218:24844235,40568977:173670,78643,0 -) -) -(183,218:25181759,40568977:501378,78643,0 -(183,218:25345613,40568977:173670,78643,0 -) -) -(183,218:25683137,40568977:501378,78643,0 -(183,218:25846991,40568977:173670,78643,0 -) -) -(183,218:26184515,40568977:501378,78643,0 -(183,218:26348369,40568977:173670,78643,0 -) -) -(183,218:26685893,40568977:501378,78643,0 -(183,218:26849747,40568977:173670,78643,0 -) -) -(183,218:27187271,40568977:501378,78643,0 -(183,218:27351125,40568977:173670,78643,0 -) -) -(183,218:27688649,40568977:501378,78643,0 -(183,218:27852503,40568977:173670,78643,0 -) -) -(183,218:28190027,40568977:501378,78643,0 -(183,218:28353881,40568977:173670,78643,0 -) -) -(183,218:28691405,40568977:501378,78643,0 -(183,218:28855259,40568977:173670,78643,0 -) -) -(183,218:29192783,40568977:501378,78643,0 -(183,218:29356637,40568977:173670,78643,0 -) -) -(183,218:29694161,40568977:501378,78643,0 -(183,218:29858015,40568977:173670,78643,0 -) -) -(183,218:30195539,40568977:501378,78643,0 -(183,218:30359393,40568977:173670,78643,0 -) -) -(183,218:30696917,40568977:501378,78643,0 -(183,218:30860771,40568977:173670,78643,0 -) -) -(183,218:31239539,40568977:1343490,485622,11795 -k183,218:31239539,40568977:0 -k183,218:31387652,40568977:148113 -) -g183,218:30911859,40568977 -g183,218:32583029,40568977 -) -(183,219:6630773,41410465:25952256,513147,11795 -g183,219:9121143,41410465 -h183,219:9121143,41410465:983040,0,0 -h183,219:10104183,41410465:0,0,0 -g183,219:7613813,41410465 -(183,219:7613813,41410465:1507330,485622,11795 -k183,219:9121143,41410465:138283 -) -g183,219:12429400,41410465 -g183,219:15387695,41410465 -g183,219:15387695,41410465 -(183,219:15655577,41410465:501378,78643,0 -$183,219:15655577,41410465 -(183,219:15819431,41410465:173670,78643,0 -) -$183,219:16156955,41410465 -) -(183,219:16156955,41410465:501378,78643,0 -(183,219:16320809,41410465:173670,78643,0 -) -) -(183,219:16658333,41410465:501378,78643,0 -(183,219:16822187,41410465:173670,78643,0 -) -) -(183,219:17159711,41410465:501378,78643,0 -(183,219:17323565,41410465:173670,78643,0 -) -) -(183,219:17661089,41410465:501378,78643,0 -(183,219:17824943,41410465:173670,78643,0 -) -) -(183,219:18162467,41410465:501378,78643,0 -(183,219:18326321,41410465:173670,78643,0 -) -) -(183,219:18663845,41410465:501378,78643,0 -(183,219:18827699,41410465:173670,78643,0 -) -) -(183,219:19165223,41410465:501378,78643,0 -(183,219:19329077,41410465:173670,78643,0 -) -) -(183,219:19666601,41410465:501378,78643,0 -(183,219:19830455,41410465:173670,78643,0 -) -) -(183,219:20167979,41410465:501378,78643,0 -(183,219:20331833,41410465:173670,78643,0 -) -) -(183,219:20669357,41410465:501378,78643,0 -(183,219:20833211,41410465:173670,78643,0 -) -) -(183,219:21170735,41410465:501378,78643,0 -(183,219:21334589,41410465:173670,78643,0 -) -) -(183,219:21672113,41410465:501378,78643,0 -(183,219:21835967,41410465:173670,78643,0 -) -) -(183,219:22173491,41410465:501378,78643,0 -(183,219:22337345,41410465:173670,78643,0 -) -) -(183,219:22674869,41410465:501378,78643,0 -(183,219:22838723,41410465:173670,78643,0 -) -) -(183,219:23176247,41410465:501378,78643,0 -(183,219:23340101,41410465:173670,78643,0 -) -) -(183,219:23677625,41410465:501378,78643,0 -(183,219:23841479,41410465:173670,78643,0 -) -) -(183,219:24179003,41410465:501378,78643,0 -(183,219:24342857,41410465:173670,78643,0 -) -) -(183,219:24680381,41410465:501378,78643,0 -(183,219:24844235,41410465:173670,78643,0 -) -) -(183,219:25181759,41410465:501378,78643,0 -(183,219:25345613,41410465:173670,78643,0 -) -) -(183,219:25683137,41410465:501378,78643,0 -(183,219:25846991,41410465:173670,78643,0 -) -) -(183,219:26184515,41410465:501378,78643,0 -(183,219:26348369,41410465:173670,78643,0 -) -) -(183,219:26685893,41410465:501378,78643,0 -(183,219:26849747,41410465:173670,78643,0 -) -) -(183,219:27187271,41410465:501378,78643,0 -(183,219:27351125,41410465:173670,78643,0 -) -) -(183,219:27688649,41410465:501378,78643,0 -(183,219:27852503,41410465:173670,78643,0 -) -) -(183,219:28190027,41410465:501378,78643,0 -(183,219:28353881,41410465:173670,78643,0 -) -) -(183,219:28691405,41410465:501378,78643,0 -(183,219:28855259,41410465:173670,78643,0 -) -) -(183,219:29192783,41410465:501378,78643,0 -(183,219:29356637,41410465:173670,78643,0 -) -) -(183,219:29694161,41410465:501378,78643,0 -(183,219:29858015,41410465:173670,78643,0 -) -) -(183,219:30195539,41410465:501378,78643,0 -(183,219:30359393,41410465:173670,78643,0 -) -) -(183,219:30696917,41410465:501378,78643,0 -(183,219:30860771,41410465:173670,78643,0 -) -) -(183,219:31239539,41410465:1343490,485622,11795 -k183,219:31239539,41410465:0 -k183,219:31387652,41410465:148113 -) -g183,219:30911859,41410465 -g183,219:32583029,41410465 -) -(183,220:6630773,42251953:25952256,513147,134348 -g183,220:11218293,42251953 -h183,220:11218293,42251953:2490370,0,0 -h183,220:13708663,42251953:0,0,0 -g183,220:9121143,42251953 -(183,220:9121143,42251953:2097150,485622,11795 -k183,220:11218293,42251953:155974 -) -g183,220:13503533,42251953 -(183,220:13650065,42251953:501378,78643,0 -$183,220:13650065,42251953 -(183,220:13813919,42251953:173670,78643,0 -) -$183,220:14151443,42251953 -) -(183,220:14151443,42251953:501378,78643,0 -(183,220:14315297,42251953:173670,78643,0 -) -) -(183,220:14652821,42251953:501378,78643,0 -(183,220:14816675,42251953:173670,78643,0 -) -) -(183,220:15154199,42251953:501378,78643,0 -(183,220:15318053,42251953:173670,78643,0 -) -) -(183,220:15655577,42251953:501378,78643,0 -(183,220:15819431,42251953:173670,78643,0 -) -) -(183,220:16156955,42251953:501378,78643,0 -(183,220:16320809,42251953:173670,78643,0 -) -) -(183,220:16658333,42251953:501378,78643,0 -(183,220:16822187,42251953:173670,78643,0 -) -) -(183,220:17159711,42251953:501378,78643,0 -(183,220:17323565,42251953:173670,78643,0 -) -) -(183,220:17661089,42251953:501378,78643,0 -(183,220:17824943,42251953:173670,78643,0 -) -) -(183,220:18162467,42251953:501378,78643,0 -(183,220:18326321,42251953:173670,78643,0 -) -) -(183,220:18663845,42251953:501378,78643,0 -(183,220:18827699,42251953:173670,78643,0 -) -) -(183,220:19165223,42251953:501378,78643,0 -(183,220:19329077,42251953:173670,78643,0 -) -) -(183,220:19666601,42251953:501378,78643,0 -(183,220:19830455,42251953:173670,78643,0 -) -) -(183,220:20167979,42251953:501378,78643,0 -(183,220:20331833,42251953:173670,78643,0 -) -) -(183,220:20669357,42251953:501378,78643,0 -(183,220:20833211,42251953:173670,78643,0 -) -) -(183,220:21170735,42251953:501378,78643,0 -(183,220:21334589,42251953:173670,78643,0 -) -) -(183,220:21672113,42251953:501378,78643,0 -(183,220:21835967,42251953:173670,78643,0 -) -) -(183,220:22173491,42251953:501378,78643,0 -(183,220:22337345,42251953:173670,78643,0 -) -) -(183,220:22674869,42251953:501378,78643,0 -(183,220:22838723,42251953:173670,78643,0 -) -) -(183,220:23176247,42251953:501378,78643,0 -(183,220:23340101,42251953:173670,78643,0 -) -) -(183,220:23677625,42251953:501378,78643,0 -(183,220:23841479,42251953:173670,78643,0 -) -) -(183,220:24179003,42251953:501378,78643,0 -(183,220:24342857,42251953:173670,78643,0 -) -) -(183,220:24680381,42251953:501378,78643,0 -(183,220:24844235,42251953:173670,78643,0 -) -) -(183,220:25181759,42251953:501378,78643,0 -(183,220:25345613,42251953:173670,78643,0 -) -) -(183,220:25683137,42251953:501378,78643,0 -(183,220:25846991,42251953:173670,78643,0 -) -) -(183,220:26184515,42251953:501378,78643,0 -(183,220:26348369,42251953:173670,78643,0 -) -) -(183,220:26685893,42251953:501378,78643,0 -(183,220:26849747,42251953:173670,78643,0 -) -) -(183,220:27187271,42251953:501378,78643,0 -(183,220:27351125,42251953:173670,78643,0 -) -) -(183,220:27688649,42251953:501378,78643,0 -(183,220:27852503,42251953:173670,78643,0 -) -) -(183,220:28190027,42251953:501378,78643,0 -(183,220:28353881,42251953:173670,78643,0 -) -) -(183,220:28691405,42251953:501378,78643,0 -(183,220:28855259,42251953:173670,78643,0 -) -) -(183,220:29192783,42251953:501378,78643,0 -(183,220:29356637,42251953:173670,78643,0 -) -) -(183,220:29694161,42251953:501378,78643,0 -(183,220:29858015,42251953:173670,78643,0 -) -) -(183,220:30195539,42251953:501378,78643,0 -(183,220:30359393,42251953:173670,78643,0 -) -) -(183,220:30696917,42251953:501378,78643,0 -(183,220:30860771,42251953:173670,78643,0 -) -) -(183,220:31239539,42251953:1343490,485622,11795 -k183,220:31239539,42251953:0 -k183,220:31387652,42251953:148113 -) -g183,220:30911859,42251953 -g183,220:32583029,42251953 -) -(183,221:6630773,43093441:25952256,505283,11795 -g183,221:11218293,43093441 -h183,221:11218293,43093441:2490370,0,0 -h183,221:13708663,43093441:0,0,0 -g183,221:9121143,43093441 -(183,221:9121143,43093441:2097150,485622,11795 -k183,221:11218293,43093441:155974 -) -g183,221:13108351,43093441 -(183,221:13148687,43093441:501378,78643,0 -$183,221:13148687,43093441 -(183,221:13312541,43093441:173670,78643,0 -) -$183,221:13650065,43093441 -) -(183,221:13650065,43093441:501378,78643,0 -(183,221:13813919,43093441:173670,78643,0 -) -) -(183,221:14151443,43093441:501378,78643,0 -(183,221:14315297,43093441:173670,78643,0 -) -) -(183,221:14652821,43093441:501378,78643,0 -(183,221:14816675,43093441:173670,78643,0 -) -) -(183,221:15154199,43093441:501378,78643,0 -(183,221:15318053,43093441:173670,78643,0 -) -) -(183,221:15655577,43093441:501378,78643,0 -(183,221:15819431,43093441:173670,78643,0 -) -) -(183,221:16156955,43093441:501378,78643,0 -(183,221:16320809,43093441:173670,78643,0 -) -) -(183,221:16658333,43093441:501378,78643,0 -(183,221:16822187,43093441:173670,78643,0 -) -) -(183,221:17159711,43093441:501378,78643,0 -(183,221:17323565,43093441:173670,78643,0 -) -) -(183,221:17661089,43093441:501378,78643,0 -(183,221:17824943,43093441:173670,78643,0 -) -) -(183,221:18162467,43093441:501378,78643,0 -(183,221:18326321,43093441:173670,78643,0 -) -) -(183,221:18663845,43093441:501378,78643,0 -(183,221:18827699,43093441:173670,78643,0 -) -) -(183,221:19165223,43093441:501378,78643,0 -(183,221:19329077,43093441:173670,78643,0 -) -) -(183,221:19666601,43093441:501378,78643,0 -(183,221:19830455,43093441:173670,78643,0 -) -) -(183,221:20167979,43093441:501378,78643,0 -(183,221:20331833,43093441:173670,78643,0 -) -) -(183,221:20669357,43093441:501378,78643,0 -(183,221:20833211,43093441:173670,78643,0 -) -) -(183,221:21170735,43093441:501378,78643,0 -(183,221:21334589,43093441:173670,78643,0 -) -) -(183,221:21672113,43093441:501378,78643,0 -(183,221:21835967,43093441:173670,78643,0 -) -) -(183,221:22173491,43093441:501378,78643,0 -(183,221:22337345,43093441:173670,78643,0 -) -) -(183,221:22674869,43093441:501378,78643,0 -(183,221:22838723,43093441:173670,78643,0 -) -) -(183,221:23176247,43093441:501378,78643,0 -(183,221:23340101,43093441:173670,78643,0 -) -) -(183,221:23677625,43093441:501378,78643,0 -(183,221:23841479,43093441:173670,78643,0 -) -) -(183,221:24179003,43093441:501378,78643,0 -(183,221:24342857,43093441:173670,78643,0 -) -) -(183,221:24680381,43093441:501378,78643,0 -(183,221:24844235,43093441:173670,78643,0 -) -) -(183,221:25181759,43093441:501378,78643,0 -(183,221:25345613,43093441:173670,78643,0 -) -) -(183,221:25683137,43093441:501378,78643,0 -(183,221:25846991,43093441:173670,78643,0 -) -) -(183,221:26184515,43093441:501378,78643,0 -(183,221:26348369,43093441:173670,78643,0 -) -) -(183,221:26685893,43093441:501378,78643,0 -(183,221:26849747,43093441:173670,78643,0 -) -) -(183,221:27187271,43093441:501378,78643,0 -(183,221:27351125,43093441:173670,78643,0 -) -) -(183,221:27688649,43093441:501378,78643,0 -(183,221:27852503,43093441:173670,78643,0 -) -) -(183,221:28190027,43093441:501378,78643,0 -(183,221:28353881,43093441:173670,78643,0 -) -) -(183,221:28691405,43093441:501378,78643,0 -(183,221:28855259,43093441:173670,78643,0 -) -) -(183,221:29192783,43093441:501378,78643,0 -(183,221:29356637,43093441:173670,78643,0 -) -) -(183,221:29694161,43093441:501378,78643,0 -(183,221:29858015,43093441:173670,78643,0 -) -) -(183,221:30195539,43093441:501378,78643,0 -(183,221:30359393,43093441:173670,78643,0 -) -) -(183,221:30696917,43093441:501378,78643,0 -(183,221:30860771,43093441:173670,78643,0 -) -) -(183,221:31239539,43093441:1343490,485622,11795 -k183,221:31239539,43093441:0 -k183,221:31387652,43093441:148113 -) -g183,221:30911859,43093441 -g183,221:32583029,43093441 -) -(183,222:6630773,43934929:25952256,513147,11795 -g183,222:9121143,43934929 -h183,222:9121143,43934929:983040,0,0 -h183,222:10104183,43934929:0,0,0 -g183,222:7613813,43934929 -(183,222:7613813,43934929:1507330,485622,11795 -k183,222:9121143,43934929:138283 -) -g183,222:11734718,43934929 -g183,222:13247289,43934929 -g183,222:13247289,43934929 -(183,222:13650065,43934929:501378,78643,0 -$183,222:13650065,43934929 -(183,222:13813919,43934929:173670,78643,0 -) -$183,222:14151443,43934929 -) -(183,222:14151443,43934929:501378,78643,0 -(183,222:14315297,43934929:173670,78643,0 -) -) -(183,222:14652821,43934929:501378,78643,0 -(183,222:14816675,43934929:173670,78643,0 -) -) -(183,222:15154199,43934929:501378,78643,0 -(183,222:15318053,43934929:173670,78643,0 -) -) -(183,222:15655577,43934929:501378,78643,0 -(183,222:15819431,43934929:173670,78643,0 -) -) -(183,222:16156955,43934929:501378,78643,0 -(183,222:16320809,43934929:173670,78643,0 -) -) -(183,222:16658333,43934929:501378,78643,0 -(183,222:16822187,43934929:173670,78643,0 -) -) -(183,222:17159711,43934929:501378,78643,0 -(183,222:17323565,43934929:173670,78643,0 -) -) -(183,222:17661089,43934929:501378,78643,0 -(183,222:17824943,43934929:173670,78643,0 -) -) -(183,222:18162467,43934929:501378,78643,0 -(183,222:18326321,43934929:173670,78643,0 -) -) -(183,222:18663845,43934929:501378,78643,0 -(183,222:18827699,43934929:173670,78643,0 -) -) -(183,222:19165223,43934929:501378,78643,0 -(183,222:19329077,43934929:173670,78643,0 -) -) -(183,222:19666601,43934929:501378,78643,0 -(183,222:19830455,43934929:173670,78643,0 -) -) -(183,222:20167979,43934929:501378,78643,0 -(183,222:20331833,43934929:173670,78643,0 -) -) -(183,222:20669357,43934929:501378,78643,0 -(183,222:20833211,43934929:173670,78643,0 -) -) -(183,222:21170735,43934929:501378,78643,0 -(183,222:21334589,43934929:173670,78643,0 -) -) -(183,222:21672113,43934929:501378,78643,0 -(183,222:21835967,43934929:173670,78643,0 -) -) -(183,222:22173491,43934929:501378,78643,0 -(183,222:22337345,43934929:173670,78643,0 -) -) -(183,222:22674869,43934929:501378,78643,0 -(183,222:22838723,43934929:173670,78643,0 -) -) -(183,222:23176247,43934929:501378,78643,0 -(183,222:23340101,43934929:173670,78643,0 -) -) -(183,222:23677625,43934929:501378,78643,0 -(183,222:23841479,43934929:173670,78643,0 -) -) -(183,222:24179003,43934929:501378,78643,0 -(183,222:24342857,43934929:173670,78643,0 -) -) -(183,222:24680381,43934929:501378,78643,0 -(183,222:24844235,43934929:173670,78643,0 -) -) -(183,222:25181759,43934929:501378,78643,0 -(183,222:25345613,43934929:173670,78643,0 -) -) -(183,222:25683137,43934929:501378,78643,0 -(183,222:25846991,43934929:173670,78643,0 -) -) -(183,222:26184515,43934929:501378,78643,0 -(183,222:26348369,43934929:173670,78643,0 -) -) -(183,222:26685893,43934929:501378,78643,0 -(183,222:26849747,43934929:173670,78643,0 -) -) -(183,222:27187271,43934929:501378,78643,0 -(183,222:27351125,43934929:173670,78643,0 -) -) -(183,222:27688649,43934929:501378,78643,0 -(183,222:27852503,43934929:173670,78643,0 -) -) -(183,222:28190027,43934929:501378,78643,0 -(183,222:28353881,43934929:173670,78643,0 -) -) -(183,222:28691405,43934929:501378,78643,0 -(183,222:28855259,43934929:173670,78643,0 -) -) -(183,222:29192783,43934929:501378,78643,0 -(183,222:29356637,43934929:173670,78643,0 -) -) -(183,222:29694161,43934929:501378,78643,0 -(183,222:29858015,43934929:173670,78643,0 -) -) -(183,222:30195539,43934929:501378,78643,0 -(183,222:30359393,43934929:173670,78643,0 -) -) -(183,222:30696917,43934929:501378,78643,0 -(183,222:30860771,43934929:173670,78643,0 -) -) -(183,222:31239539,43934929:1343490,485622,11795 -k183,222:31239539,43934929:0 -k183,222:31387652,43934929:148113 -) -g183,222:30911859,43934929 -g183,222:32583029,43934929 -) -(183,223:6630773,44776417:25952256,513147,11795 -g183,223:11218293,44776417 -h183,223:11218293,44776417:2490370,0,0 -h183,223:13708663,44776417:0,0,0 -g183,223:9121143,44776417 -(183,223:9121143,44776417:2097150,485622,11795 -k183,223:11218293,44776417:155974 -) -g183,223:13050680,44776417 -(183,223:13148687,44776417:501378,78643,0 -$183,223:13148687,44776417 -(183,223:13312541,44776417:173670,78643,0 -) -$183,223:13650065,44776417 -) -(183,223:13650065,44776417:501378,78643,0 -(183,223:13813919,44776417:173670,78643,0 -) -) -(183,223:14151443,44776417:501378,78643,0 -(183,223:14315297,44776417:173670,78643,0 -) -) -(183,223:14652821,44776417:501378,78643,0 -(183,223:14816675,44776417:173670,78643,0 -) -) -(183,223:15154199,44776417:501378,78643,0 -(183,223:15318053,44776417:173670,78643,0 -) -) -(183,223:15655577,44776417:501378,78643,0 -(183,223:15819431,44776417:173670,78643,0 -) -) -(183,223:16156955,44776417:501378,78643,0 -(183,223:16320809,44776417:173670,78643,0 -) -) -(183,223:16658333,44776417:501378,78643,0 -(183,223:16822187,44776417:173670,78643,0 -) -) -(183,223:17159711,44776417:501378,78643,0 -(183,223:17323565,44776417:173670,78643,0 -) -) -(183,223:17661089,44776417:501378,78643,0 -(183,223:17824943,44776417:173670,78643,0 -) -) -(183,223:18162467,44776417:501378,78643,0 -(183,223:18326321,44776417:173670,78643,0 -) -) -(183,223:18663845,44776417:501378,78643,0 -(183,223:18827699,44776417:173670,78643,0 -) -) -(183,223:19165223,44776417:501378,78643,0 -(183,223:19329077,44776417:173670,78643,0 -) -) -(183,223:19666601,44776417:501378,78643,0 -(183,223:19830455,44776417:173670,78643,0 -) -) -(183,223:20167979,44776417:501378,78643,0 -(183,223:20331833,44776417:173670,78643,0 -) -) -(183,223:20669357,44776417:501378,78643,0 -(183,223:20833211,44776417:173670,78643,0 -) -) -(183,223:21170735,44776417:501378,78643,0 -(183,223:21334589,44776417:173670,78643,0 -) -) -(183,223:21672113,44776417:501378,78643,0 -(183,223:21835967,44776417:173670,78643,0 -) -) -(183,223:22173491,44776417:501378,78643,0 -(183,223:22337345,44776417:173670,78643,0 -) -) -(183,223:22674869,44776417:501378,78643,0 -(183,223:22838723,44776417:173670,78643,0 -) -) -(183,223:23176247,44776417:501378,78643,0 -(183,223:23340101,44776417:173670,78643,0 -) -) -(183,223:23677625,44776417:501378,78643,0 -(183,223:23841479,44776417:173670,78643,0 -) -) -(183,223:24179003,44776417:501378,78643,0 -(183,223:24342857,44776417:173670,78643,0 -) -) -(183,223:24680381,44776417:501378,78643,0 -(183,223:24844235,44776417:173670,78643,0 -) -) -(183,223:25181759,44776417:501378,78643,0 -(183,223:25345613,44776417:173670,78643,0 -) -) -(183,223:25683137,44776417:501378,78643,0 -(183,223:25846991,44776417:173670,78643,0 -) -) -(183,223:26184515,44776417:501378,78643,0 -(183,223:26348369,44776417:173670,78643,0 -) -) -(183,223:26685893,44776417:501378,78643,0 -(183,223:26849747,44776417:173670,78643,0 -) -) -(183,223:27187271,44776417:501378,78643,0 -(183,223:27351125,44776417:173670,78643,0 -) -) -(183,223:27688649,44776417:501378,78643,0 -(183,223:27852503,44776417:173670,78643,0 -) -) -(183,223:28190027,44776417:501378,78643,0 -(183,223:28353881,44776417:173670,78643,0 -) -) -(183,223:28691405,44776417:501378,78643,0 -(183,223:28855259,44776417:173670,78643,0 -) -) -(183,223:29192783,44776417:501378,78643,0 -(183,223:29356637,44776417:173670,78643,0 -) -) -(183,223:29694161,44776417:501378,78643,0 -(183,223:29858015,44776417:173670,78643,0 -) -) -(183,223:30195539,44776417:501378,78643,0 -(183,223:30359393,44776417:173670,78643,0 -) -) -(183,223:30696917,44776417:501378,78643,0 -(183,223:30860771,44776417:173670,78643,0 -) -) -(183,223:31239540,44776417:1343490,485622,11795 -k183,223:31239540,44776417:0 -k183,223:31387653,44776417:148113 -) -g183,223:30911860,44776417 -g183,223:32583030,44776417 -) -(183,224:6630773,45617905:25952256,505283,126483 -g183,224:11218293,45617905 -h183,224:11218293,45617905:2490370,0,0 -h183,224:13708663,45617905:0,0,0 -g183,224:9121143,45617905 -(183,224:9121143,45617905:2097150,485622,11795 -k183,224:11218293,45617905:155974 -) -g183,224:13206655,45617905 -(183,224:13650065,45617905:501378,78643,0 -$183,224:13650065,45617905 -(183,224:13813919,45617905:173670,78643,0 -) -$183,224:14151443,45617905 -) -(183,224:14151443,45617905:501378,78643,0 -(183,224:14315297,45617905:173670,78643,0 -) -) -(183,224:14652821,45617905:501378,78643,0 -(183,224:14816675,45617905:173670,78643,0 -) -) -(183,224:15154199,45617905:501378,78643,0 -(183,224:15318053,45617905:173670,78643,0 -) -) -(183,224:15655577,45617905:501378,78643,0 -(183,224:15819431,45617905:173670,78643,0 -) -) -(183,224:16156955,45617905:501378,78643,0 -(183,224:16320809,45617905:173670,78643,0 -) -) -(183,224:16658333,45617905:501378,78643,0 -(183,224:16822187,45617905:173670,78643,0 -) -) -(183,224:17159711,45617905:501378,78643,0 -(183,224:17323565,45617905:173670,78643,0 -) -) -(183,224:17661089,45617905:501378,78643,0 -(183,224:17824943,45617905:173670,78643,0 -) -) -(183,224:18162467,45617905:501378,78643,0 -(183,224:18326321,45617905:173670,78643,0 -) -) -(183,224:18663845,45617905:501378,78643,0 -(183,224:18827699,45617905:173670,78643,0 -) -) -(183,224:19165223,45617905:501378,78643,0 -(183,224:19329077,45617905:173670,78643,0 -) -) -(183,224:19666601,45617905:501378,78643,0 -(183,224:19830455,45617905:173670,78643,0 -) -) -(183,224:20167979,45617905:501378,78643,0 -(183,224:20331833,45617905:173670,78643,0 -) -) -(183,224:20669357,45617905:501378,78643,0 -(183,224:20833211,45617905:173670,78643,0 -) -) -(183,224:21170735,45617905:501378,78643,0 -(183,224:21334589,45617905:173670,78643,0 -) -) -(183,224:21672113,45617905:501378,78643,0 -(183,224:21835967,45617905:173670,78643,0 -) -) -(183,224:22173491,45617905:501378,78643,0 -(183,224:22337345,45617905:173670,78643,0 -) -) -(183,224:22674869,45617905:501378,78643,0 -(183,224:22838723,45617905:173670,78643,0 -) -) -(183,224:23176247,45617905:501378,78643,0 -(183,224:23340101,45617905:173670,78643,0 -) -) -(183,224:23677625,45617905:501378,78643,0 -(183,224:23841479,45617905:173670,78643,0 -) -) -(183,224:24179003,45617905:501378,78643,0 -(183,224:24342857,45617905:173670,78643,0 -) -) -(183,224:24680381,45617905:501378,78643,0 -(183,224:24844235,45617905:173670,78643,0 -) -) -(183,224:25181759,45617905:501378,78643,0 -(183,224:25345613,45617905:173670,78643,0 -) -) -(183,224:25683137,45617905:501378,78643,0 -(183,224:25846991,45617905:173670,78643,0 -) -) -(183,224:26184515,45617905:501378,78643,0 -(183,224:26348369,45617905:173670,78643,0 -) -) -(183,224:26685893,45617905:501378,78643,0 -(183,224:26849747,45617905:173670,78643,0 -) -) -(183,224:27187271,45617905:501378,78643,0 -(183,224:27351125,45617905:173670,78643,0 -) -) -(183,224:27688649,45617905:501378,78643,0 -(183,224:27852503,45617905:173670,78643,0 -) -) -(183,224:28190027,45617905:501378,78643,0 -(183,224:28353881,45617905:173670,78643,0 -) -) -(183,224:28691405,45617905:501378,78643,0 -(183,224:28855259,45617905:173670,78643,0 -) -) -(183,224:29192783,45617905:501378,78643,0 -(183,224:29356637,45617905:173670,78643,0 -) -) -(183,224:29694161,45617905:501378,78643,0 -(183,224:29858015,45617905:173670,78643,0 -) -) -(183,224:30195539,45617905:501378,78643,0 -(183,224:30359393,45617905:173670,78643,0 -) -) -(183,224:30696917,45617905:501378,78643,0 -(183,224:30860771,45617905:173670,78643,0 -) -) -(183,224:31239539,45617905:1343490,485622,11795 -k183,224:31239539,45617905:0 -k183,224:31387652,45617905:148113 -) -g183,224:30911859,45617905 -g183,224:32583029,45617905 -) -] -(183,226:32583029,45706769:0,0,0 -g183,226:32583029,45706769 -) -) -] -(183,226:6630773,47279633:25952256,0,0 -h183,226:6630773,47279633:25952256,0,0 -) -] -(183,226:4262630,4025873:0,0,0 -[183,226:-473656,4025873:0,0,0 -(183,226:-473656,-710413:0,0,0 -(183,226:-473656,-710413:0,0,0 -g183,226:-473656,-710413 -) -g183,226:-473656,-710413 -) -] -) -] -!148463 -}6 -!11 -{7 -[1,124:4262630,47279633:28320399,43253760,0 -(1,124:4262630,4025873:0,0,0 -[1,124:-473656,4025873:0,0,0 -(1,124:-473656,-710413:0,0,0 -(1,124:-473656,-644877:0,0,0 -k1,124:-473656,-644877:-65536 -) -(1,124:-473656,4736287:0,0,0 -k1,124:-473656,4736287:5209943 -) -g1,124:-473656,-710413 -) -] -) -[1,124:6630773,47279633:25952256,43253760,0 -[1,124:6630773,4812305:25952256,786432,0 -(1,124:6630773,4812305:25952256,485622,11795 -(1,124:6630773,4812305:25952256,485622,11795 -g1,124:3078558,4812305 -[1,124:3078558,4812305:0,0,0 -(1,124:3078558,2439708:0,1703936,0 -k1,124:1358238,2439708:-1720320 -(1,122:1358238,2439708:1720320,1703936,0 -(1,122:1358238,2439708:1179648,16384,0 -r1,124:2537886,2439708:1179648,16384,0 -) -g1,122:3062174,2439708 -(1,122:3062174,2439708:16384,1703936,0 -[1,122:3062174,2439708:25952256,1703936,0 -(1,122:3062174,1915420:25952256,1179648,0 -(1,122:3062174,1915420:16384,1179648,0 -r1,124:3078558,1915420:16384,1179648,0 -) -k1,122:29014430,1915420:25935872 -g1,122:29014430,1915420 -) -] -) -) -) -] -[1,124:3078558,4812305:0,0,0 -(1,124:3078558,2439708:0,1703936,0 -g1,124:29030814,2439708 -g1,124:36135244,2439708 -(1,122:36135244,2439708:1720320,1703936,0 -(1,122:36135244,2439708:16384,1703936,0 -[1,122:36135244,2439708:25952256,1703936,0 -(1,122:36135244,1915420:25952256,1179648,0 -(1,122:36135244,1915420:16384,1179648,0 -r1,124:36151628,1915420:16384,1179648,0 -) -k1,122:62087500,1915420:25935872 -g1,122:62087500,1915420 -) -] -) -g1,122:36675916,2439708 -(1,122:36675916,2439708:1179648,16384,0 -r1,124:37855564,2439708:1179648,16384,0 -) -) -k1,124:3078556,2439708:-34777008 -) -] -[1,124:3078558,4812305:0,0,0 -(1,124:3078558,49800853:0,16384,2228224 -k1,124:1358238,49800853:-1720320 -(1,122:1358238,49800853:1720320,16384,2228224 -(1,122:1358238,49800853:1179648,16384,0 -r1,124:2537886,49800853:1179648,16384,0 -) -g1,122:3062174,49800853 -(1,122:3062174,52029077:16384,1703936,0 -[1,122:3062174,52029077:25952256,1703936,0 -(1,122:3062174,51504789:25952256,1179648,0 -(1,122:3062174,51504789:16384,1179648,0 -r1,124:3078558,51504789:16384,1179648,0 -) -k1,122:29014430,51504789:25935872 -g1,122:29014430,51504789 -) -] -) -) -) -] -[1,124:3078558,4812305:0,0,0 -(1,124:3078558,49800853:0,16384,2228224 -g1,124:29030814,49800853 -g1,124:36135244,49800853 -(1,122:36135244,49800853:1720320,16384,2228224 -(1,122:36135244,52029077:16384,1703936,0 -[1,122:36135244,52029077:25952256,1703936,0 -(1,122:36135244,51504789:25952256,1179648,0 -(1,122:36135244,51504789:16384,1179648,0 -r1,124:36151628,51504789:16384,1179648,0 -) -k1,122:62087500,51504789:25935872 -g1,122:62087500,51504789 -) -] -) -g1,122:36675916,49800853 -(1,122:36675916,49800853:1179648,16384,0 -r1,124:37855564,49800853:1179648,16384,0 -) -) -k1,124:3078556,49800853:-34777008 -) -] -g1,124:6630773,4812305 -k1,124:29827895,4812305:22832086 -) -) -] -[1,124:6630773,45706769:25952256,40108032,0 -(1,124:6630773,45706769:25952256,40108032,0 -(1,124:6630773,45706769:0,0,0 -g1,124:6630773,45706769 -) -[1,124:6630773,45706769:25952256,40108032,0 -(183,225:6630773,6254097:25952256,505283,126483 -g183,225:9121143,6254097 -h183,225:9121143,6254097:983040,0,0 -h183,225:10104183,6254097:0,0,0 -g183,225:7613813,6254097 -(183,225:7613813,6254097:1507330,485622,11795 -k183,225:9121143,6254097:138283 -) -g183,225:12297673,6254097 -g183,225:14810978,6254097 -g183,225:16399570,6254097 -g183,225:16399570,6254097 -(183,225:16658333,6254097:501378,78643,0 -$183,225:16658333,6254097 -(183,225:16822187,6254097:173670,78643,0 -) -$183,225:17159711,6254097 -) -(183,225:17159711,6254097:501378,78643,0 -(183,225:17323565,6254097:173670,78643,0 -) -) -(183,225:17661089,6254097:501378,78643,0 -(183,225:17824943,6254097:173670,78643,0 -) -) -(183,225:18162467,6254097:501378,78643,0 -(183,225:18326321,6254097:173670,78643,0 -) -) -(183,225:18663845,6254097:501378,78643,0 -(183,225:18827699,6254097:173670,78643,0 -) -) -(183,225:19165223,6254097:501378,78643,0 -(183,225:19329077,6254097:173670,78643,0 -) -) -(183,225:19666601,6254097:501378,78643,0 -(183,225:19830455,6254097:173670,78643,0 -) -) -(183,225:20167979,6254097:501378,78643,0 -(183,225:20331833,6254097:173670,78643,0 -) -) -(183,225:20669357,6254097:501378,78643,0 -(183,225:20833211,6254097:173670,78643,0 -) -) -(183,225:21170735,6254097:501378,78643,0 -(183,225:21334589,6254097:173670,78643,0 -) -) -(183,225:21672113,6254097:501378,78643,0 -(183,225:21835967,6254097:173670,78643,0 -) -) -(183,225:22173491,6254097:501378,78643,0 -(183,225:22337345,6254097:173670,78643,0 -) -) -(183,225:22674869,6254097:501378,78643,0 -(183,225:22838723,6254097:173670,78643,0 -) -) -(183,225:23176247,6254097:501378,78643,0 -(183,225:23340101,6254097:173670,78643,0 -) -) -(183,225:23677625,6254097:501378,78643,0 -(183,225:23841479,6254097:173670,78643,0 -) -) -(183,225:24179003,6254097:501378,78643,0 -(183,225:24342857,6254097:173670,78643,0 -) -) -(183,225:24680381,6254097:501378,78643,0 -(183,225:24844235,6254097:173670,78643,0 -) -) -(183,225:25181759,6254097:501378,78643,0 -(183,225:25345613,6254097:173670,78643,0 -) -) -(183,225:25683137,6254097:501378,78643,0 -(183,225:25846991,6254097:173670,78643,0 -) -) -(183,225:26184515,6254097:501378,78643,0 -(183,225:26348369,6254097:173670,78643,0 -) -) -(183,225:26685893,6254097:501378,78643,0 -(183,225:26849747,6254097:173670,78643,0 -) -) -(183,225:27187271,6254097:501378,78643,0 -(183,225:27351125,6254097:173670,78643,0 -) -) -(183,225:27688649,6254097:501378,78643,0 -(183,225:27852503,6254097:173670,78643,0 -) -) -(183,225:28190027,6254097:501378,78643,0 -(183,225:28353881,6254097:173670,78643,0 -) -) -(183,225:28691405,6254097:501378,78643,0 -(183,225:28855259,6254097:173670,78643,0 -) -) -(183,225:29192783,6254097:501378,78643,0 -(183,225:29356637,6254097:173670,78643,0 -) -) -(183,225:29694161,6254097:501378,78643,0 -(183,225:29858015,6254097:173670,78643,0 -) -) -(183,225:30195539,6254097:501378,78643,0 -(183,225:30359393,6254097:173670,78643,0 -) -) -(183,225:30696917,6254097:501378,78643,0 -(183,225:30860771,6254097:173670,78643,0 -) -) -(183,225:31239539,6254097:1343490,485622,11795 -k183,225:31239539,6254097:0 -k183,225:31387652,6254097:148113 -) -g183,225:30911859,6254097 -g183,225:32583029,6254097 -) -(183,226:6630773,7095585:25952256,513147,126483 -g183,226:9121143,7095585 -h183,226:9121143,7095585:983040,0,0 -h183,226:10104183,7095585:0,0,0 -g183,226:7613813,7095585 -(183,226:7613813,7095585:1507330,485622,11795 -k183,226:9121143,7095585:138283 -) -g183,226:10792311,7095585 -g183,226:14500338,7095585 -g183,226:16267188,7095585 -g183,226:19089168,7095585 -g183,226:21626066,7095585 -g183,226:21626066,7095585 -(183,226:21672113,7095585:501378,78643,0 -$183,226:21672113,7095585 -(183,226:21835967,7095585:173670,78643,0 -) -$183,226:22173491,7095585 -) -(183,226:22173491,7095585:501378,78643,0 -(183,226:22337345,7095585:173670,78643,0 -) -) -(183,226:22674869,7095585:501378,78643,0 -(183,226:22838723,7095585:173670,78643,0 -) -) -(183,226:23176247,7095585:501378,78643,0 -(183,226:23340101,7095585:173670,78643,0 -) -) -(183,226:23677625,7095585:501378,78643,0 -(183,226:23841479,7095585:173670,78643,0 -) -) -(183,226:24179003,7095585:501378,78643,0 -(183,226:24342857,7095585:173670,78643,0 -) -) -(183,226:24680381,7095585:501378,78643,0 -(183,226:24844235,7095585:173670,78643,0 -) -) -(183,226:25181759,7095585:501378,78643,0 -(183,226:25345613,7095585:173670,78643,0 -) -) -(183,226:25683137,7095585:501378,78643,0 -(183,226:25846991,7095585:173670,78643,0 -) -) -(183,226:26184515,7095585:501378,78643,0 -(183,226:26348369,7095585:173670,78643,0 -) -) -(183,226:26685893,7095585:501378,78643,0 -(183,226:26849747,7095585:173670,78643,0 -) -) -(183,226:27187271,7095585:501378,78643,0 -(183,226:27351125,7095585:173670,78643,0 -) -) -(183,226:27688649,7095585:501378,78643,0 -(183,226:27852503,7095585:173670,78643,0 -) -) -(183,226:28190027,7095585:501378,78643,0 -(183,226:28353881,7095585:173670,78643,0 -) -) -(183,226:28691405,7095585:501378,78643,0 -(183,226:28855259,7095585:173670,78643,0 -) -) -(183,226:29192783,7095585:501378,78643,0 -(183,226:29356637,7095585:173670,78643,0 -) -) -(183,226:29694161,7095585:501378,78643,0 -(183,226:29858015,7095585:173670,78643,0 -) -) -(183,226:30195539,7095585:501378,78643,0 -(183,226:30359393,7095585:173670,78643,0 -) -) -(183,226:30696917,7095585:501378,78643,0 -(183,226:30860771,7095585:173670,78643,0 -) -) -(183,226:31239539,7095585:1343490,485622,11795 -k183,226:31239539,7095585:0 -k183,226:31387652,7095585:148113 -) -g183,226:30911859,7095585 -g183,226:32583029,7095585 -) -(183,227:6630773,7937073:25952256,505283,134348 -g183,227:11218293,7937073 -h183,227:11218293,7937073:2490370,0,0 -h183,227:13708663,7937073:0,0,0 -g183,227:9121143,7937073 -(183,227:9121143,7937073:2097150,485622,11795 -k183,227:11218293,7937073:155974 -) -g183,227:13595284,7937073 -(183,227:13650065,7937073:501378,78643,0 -$183,227:13650065,7937073 -(183,227:13813919,7937073:173670,78643,0 -) -$183,227:14151443,7937073 -) -(183,227:14151443,7937073:501378,78643,0 -(183,227:14315297,7937073:173670,78643,0 -) -) -(183,227:14652821,7937073:501378,78643,0 -(183,227:14816675,7937073:173670,78643,0 -) -) -(183,227:15154199,7937073:501378,78643,0 -(183,227:15318053,7937073:173670,78643,0 -) -) -(183,227:15655577,7937073:501378,78643,0 -(183,227:15819431,7937073:173670,78643,0 -) -) -(183,227:16156955,7937073:501378,78643,0 -(183,227:16320809,7937073:173670,78643,0 -) -) -(183,227:16658333,7937073:501378,78643,0 -(183,227:16822187,7937073:173670,78643,0 -) -) -(183,227:17159711,7937073:501378,78643,0 -(183,227:17323565,7937073:173670,78643,0 -) -) -(183,227:17661089,7937073:501378,78643,0 -(183,227:17824943,7937073:173670,78643,0 -) -) -(183,227:18162467,7937073:501378,78643,0 -(183,227:18326321,7937073:173670,78643,0 -) -) -(183,227:18663845,7937073:501378,78643,0 -(183,227:18827699,7937073:173670,78643,0 -) -) -(183,227:19165223,7937073:501378,78643,0 -(183,227:19329077,7937073:173670,78643,0 -) -) -(183,227:19666601,7937073:501378,78643,0 -(183,227:19830455,7937073:173670,78643,0 -) -) -(183,227:20167979,7937073:501378,78643,0 -(183,227:20331833,7937073:173670,78643,0 -) -) -(183,227:20669357,7937073:501378,78643,0 -(183,227:20833211,7937073:173670,78643,0 -) -) -(183,227:21170735,7937073:501378,78643,0 -(183,227:21334589,7937073:173670,78643,0 -) -) -(183,227:21672113,7937073:501378,78643,0 -(183,227:21835967,7937073:173670,78643,0 -) -) -(183,227:22173491,7937073:501378,78643,0 -(183,227:22337345,7937073:173670,78643,0 -) -) -(183,227:22674869,7937073:501378,78643,0 -(183,227:22838723,7937073:173670,78643,0 -) -) -(183,227:23176247,7937073:501378,78643,0 -(183,227:23340101,7937073:173670,78643,0 -) -) -(183,227:23677625,7937073:501378,78643,0 -(183,227:23841479,7937073:173670,78643,0 -) -) -(183,227:24179003,7937073:501378,78643,0 -(183,227:24342857,7937073:173670,78643,0 -) -) -(183,227:24680381,7937073:501378,78643,0 -(183,227:24844235,7937073:173670,78643,0 -) -) -(183,227:25181759,7937073:501378,78643,0 -(183,227:25345613,7937073:173670,78643,0 -) -) -(183,227:25683137,7937073:501378,78643,0 -(183,227:25846991,7937073:173670,78643,0 -) -) -(183,227:26184515,7937073:501378,78643,0 -(183,227:26348369,7937073:173670,78643,0 -) -) -(183,227:26685893,7937073:501378,78643,0 -(183,227:26849747,7937073:173670,78643,0 -) -) -(183,227:27187271,7937073:501378,78643,0 -(183,227:27351125,7937073:173670,78643,0 -) -) -(183,227:27688649,7937073:501378,78643,0 -(183,227:27852503,7937073:173670,78643,0 -) -) -(183,227:28190027,7937073:501378,78643,0 -(183,227:28353881,7937073:173670,78643,0 -) -) -(183,227:28691405,7937073:501378,78643,0 -(183,227:28855259,7937073:173670,78643,0 -) -) -(183,227:29192783,7937073:501378,78643,0 -(183,227:29356637,7937073:173670,78643,0 -) -) -(183,227:29694161,7937073:501378,78643,0 -(183,227:29858015,7937073:173670,78643,0 -) -) -(183,227:30195539,7937073:501378,78643,0 -(183,227:30359393,7937073:173670,78643,0 -) -) -(183,227:30696917,7937073:501378,78643,0 -(183,227:30860771,7937073:173670,78643,0 -) -) -(183,227:31239540,7937073:1343490,485622,11795 -k183,227:31239540,7937073:0 -k183,227:31387653,7937073:148113 -) -g183,227:30911860,7937073 -g183,227:32583030,7937073 -) -(183,228:6630773,8778561:25952256,505283,11795 -g183,228:9121143,8778561 -h183,228:9121143,8778561:983040,0,0 -h183,228:10104183,8778561:0,0,0 -g183,228:7613813,8778561 -(183,228:7613813,8778561:1507330,485622,11795 -k183,228:9121143,8778561:138283 -) -g183,228:12556540,8778561 -g183,228:12556540,8778561 -(183,228:12647309,8778561:501378,78643,0 -$183,228:12647309,8778561 -(183,228:12811163,8778561:173670,78643,0 -) -$183,228:13148687,8778561 -) -(183,228:13148687,8778561:501378,78643,0 -(183,228:13312541,8778561:173670,78643,0 -) -) -(183,228:13650065,8778561:501378,78643,0 -(183,228:13813919,8778561:173670,78643,0 -) -) -(183,228:14151443,8778561:501378,78643,0 -(183,228:14315297,8778561:173670,78643,0 -) -) -(183,228:14652821,8778561:501378,78643,0 -(183,228:14816675,8778561:173670,78643,0 -) -) -(183,228:15154199,8778561:501378,78643,0 -(183,228:15318053,8778561:173670,78643,0 -) -) -(183,228:15655577,8778561:501378,78643,0 -(183,228:15819431,8778561:173670,78643,0 -) -) -(183,228:16156955,8778561:501378,78643,0 -(183,228:16320809,8778561:173670,78643,0 -) -) -(183,228:16658333,8778561:501378,78643,0 -(183,228:16822187,8778561:173670,78643,0 -) -) -(183,228:17159711,8778561:501378,78643,0 -(183,228:17323565,8778561:173670,78643,0 -) -) -(183,228:17661089,8778561:501378,78643,0 -(183,228:17824943,8778561:173670,78643,0 -) -) -(183,228:18162467,8778561:501378,78643,0 -(183,228:18326321,8778561:173670,78643,0 -) -) -(183,228:18663845,8778561:501378,78643,0 -(183,228:18827699,8778561:173670,78643,0 -) -) -(183,228:19165223,8778561:501378,78643,0 -(183,228:19329077,8778561:173670,78643,0 -) -) -(183,228:19666601,8778561:501378,78643,0 -(183,228:19830455,8778561:173670,78643,0 -) -) -(183,228:20167979,8778561:501378,78643,0 -(183,228:20331833,8778561:173670,78643,0 -) -) -(183,228:20669357,8778561:501378,78643,0 -(183,228:20833211,8778561:173670,78643,0 -) -) -(183,228:21170735,8778561:501378,78643,0 -(183,228:21334589,8778561:173670,78643,0 -) -) -(183,228:21672113,8778561:501378,78643,0 -(183,228:21835967,8778561:173670,78643,0 -) -) -(183,228:22173491,8778561:501378,78643,0 -(183,228:22337345,8778561:173670,78643,0 -) -) -(183,228:22674869,8778561:501378,78643,0 -(183,228:22838723,8778561:173670,78643,0 -) -) -(183,228:23176247,8778561:501378,78643,0 -(183,228:23340101,8778561:173670,78643,0 -) -) -(183,228:23677625,8778561:501378,78643,0 -(183,228:23841479,8778561:173670,78643,0 -) -) -(183,228:24179003,8778561:501378,78643,0 -(183,228:24342857,8778561:173670,78643,0 -) -) -(183,228:24680381,8778561:501378,78643,0 -(183,228:24844235,8778561:173670,78643,0 -) -) -(183,228:25181759,8778561:501378,78643,0 -(183,228:25345613,8778561:173670,78643,0 -) -) -(183,228:25683137,8778561:501378,78643,0 -(183,228:25846991,8778561:173670,78643,0 -) -) -(183,228:26184515,8778561:501378,78643,0 -(183,228:26348369,8778561:173670,78643,0 -) -) -(183,228:26685893,8778561:501378,78643,0 -(183,228:26849747,8778561:173670,78643,0 -) -) -(183,228:27187271,8778561:501378,78643,0 -(183,228:27351125,8778561:173670,78643,0 -) -) -(183,228:27688649,8778561:501378,78643,0 -(183,228:27852503,8778561:173670,78643,0 -) -) -(183,228:28190027,8778561:501378,78643,0 -(183,228:28353881,8778561:173670,78643,0 -) -) -(183,228:28691405,8778561:501378,78643,0 -(183,228:28855259,8778561:173670,78643,0 -) -) -(183,228:29192783,8778561:501378,78643,0 -(183,228:29356637,8778561:173670,78643,0 -) -) -(183,228:29694161,8778561:501378,78643,0 -(183,228:29858015,8778561:173670,78643,0 -) -) -(183,228:30195539,8778561:501378,78643,0 -(183,228:30359393,8778561:173670,78643,0 -) -) -(183,228:30696917,8778561:501378,78643,0 -(183,228:30860771,8778561:173670,78643,0 -) -) -(183,228:31239540,8778561:1343490,485622,11795 -k183,228:31239540,8778561:0 -k183,228:31387653,8778561:148113 -) -g183,228:30911860,8778561 -g183,228:32583030,8778561 -) -(183,229:6630773,9620049:25952256,505283,134348 -g183,229:9121143,9620049 -h183,229:9121143,9620049:983040,0,0 -h183,229:10104183,9620049:0,0,0 -g183,229:7613813,9620049 -(183,229:7613813,9620049:1507330,485622,11795 -k183,229:9121143,9620049:138283 -) -g183,229:11690154,9620049 -g183,229:14291933,9620049 -g183,229:14291933,9620049 -(183,229:14652821,9620049:501378,78643,0 -$183,229:14652821,9620049 -(183,229:14816675,9620049:173670,78643,0 -) -$183,229:15154199,9620049 -) -(183,229:15154199,9620049:501378,78643,0 -(183,229:15318053,9620049:173670,78643,0 -) -) -(183,229:15655577,9620049:501378,78643,0 -(183,229:15819431,9620049:173670,78643,0 -) -) -(183,229:16156955,9620049:501378,78643,0 -(183,229:16320809,9620049:173670,78643,0 -) -) -(183,229:16658333,9620049:501378,78643,0 -(183,229:16822187,9620049:173670,78643,0 -) -) -(183,229:17159711,9620049:501378,78643,0 -(183,229:17323565,9620049:173670,78643,0 -) -) -(183,229:17661089,9620049:501378,78643,0 -(183,229:17824943,9620049:173670,78643,0 -) -) -(183,229:18162467,9620049:501378,78643,0 -(183,229:18326321,9620049:173670,78643,0 -) -) -(183,229:18663845,9620049:501378,78643,0 -(183,229:18827699,9620049:173670,78643,0 -) -) -(183,229:19165223,9620049:501378,78643,0 -(183,229:19329077,9620049:173670,78643,0 -) -) -(183,229:19666601,9620049:501378,78643,0 -(183,229:19830455,9620049:173670,78643,0 -) -) -(183,229:20167979,9620049:501378,78643,0 -(183,229:20331833,9620049:173670,78643,0 -) -) -(183,229:20669357,9620049:501378,78643,0 -(183,229:20833211,9620049:173670,78643,0 -) -) -(183,229:21170735,9620049:501378,78643,0 -(183,229:21334589,9620049:173670,78643,0 -) -) -(183,229:21672113,9620049:501378,78643,0 -(183,229:21835967,9620049:173670,78643,0 -) -) -(183,229:22173491,9620049:501378,78643,0 -(183,229:22337345,9620049:173670,78643,0 -) -) -(183,229:22674869,9620049:501378,78643,0 -(183,229:22838723,9620049:173670,78643,0 -) -) -(183,229:23176247,9620049:501378,78643,0 -(183,229:23340101,9620049:173670,78643,0 -) -) -(183,229:23677625,9620049:501378,78643,0 -(183,229:23841479,9620049:173670,78643,0 -) -) -(183,229:24179003,9620049:501378,78643,0 -(183,229:24342857,9620049:173670,78643,0 -) -) -(183,229:24680381,9620049:501378,78643,0 -(183,229:24844235,9620049:173670,78643,0 -) -) -(183,229:25181759,9620049:501378,78643,0 -(183,229:25345613,9620049:173670,78643,0 -) -) -(183,229:25683137,9620049:501378,78643,0 -(183,229:25846991,9620049:173670,78643,0 -) -) -(183,229:26184515,9620049:501378,78643,0 -(183,229:26348369,9620049:173670,78643,0 -) -) -(183,229:26685893,9620049:501378,78643,0 -(183,229:26849747,9620049:173670,78643,0 -) -) -(183,229:27187271,9620049:501378,78643,0 -(183,229:27351125,9620049:173670,78643,0 -) -) -(183,229:27688649,9620049:501378,78643,0 -(183,229:27852503,9620049:173670,78643,0 -) -) -(183,229:28190027,9620049:501378,78643,0 -(183,229:28353881,9620049:173670,78643,0 -) -) -(183,229:28691405,9620049:501378,78643,0 -(183,229:28855259,9620049:173670,78643,0 -) -) -(183,229:29192783,9620049:501378,78643,0 -(183,229:29356637,9620049:173670,78643,0 -) -) -(183,229:29694161,9620049:501378,78643,0 -(183,229:29858015,9620049:173670,78643,0 -) -) -(183,229:30195539,9620049:501378,78643,0 -(183,229:30359393,9620049:173670,78643,0 -) -) -(183,229:30696917,9620049:501378,78643,0 -(183,229:30860771,9620049:173670,78643,0 -) -) -(183,229:31239539,9620049:1343490,485622,11795 -k183,229:31239539,9620049:0 -k183,229:31387652,9620049:148113 -) -g183,229:30911859,9620049 -g183,229:32583029,9620049 -) -(183,230:6630773,11116897:25952256,505283,134348 -g183,230:7613813,11116897 -h183,230:7613813,11116897:0,0,0 -g183,230:6630773,11116897 -k183,230:21048037,11116897:10191502 -k183,230:31239539,11116897:10191502 -(183,230:31239539,11116897:1343490,485622,11795 -k183,230:31358161,11116897:118622 -) -g183,230:31239539,11116897 -g183,230:32583029,11116897 -) -(183,231:6630773,12613745:25952256,505283,11795 -g183,231:7613813,12613745 -h183,231:7613813,12613745:0,0,0 -g183,231:6630773,12613745 -g183,231:9374110,12613745 -k183,231:21224656,12613745:10014883 -k183,231:31239539,12613745:10014883 -(183,231:31239539,12613745:1343490,485622,11795 -k183,231:31358161,12613745:118622 -) -g183,231:31239539,12613745 -g183,231:32583029,12613745 -) -(183,232:6630773,14110593:25952256,513147,134348 -g183,232:7613813,14110593 -h183,232:7613813,14110593:0,0,0 -g183,232:6630773,14110593 -g183,232:8686637,14110593 -g183,232:9580548,14110593 -g183,232:10237218,14110593 -g183,232:12580130,14110593 -g183,232:13632638,14110593 -k183,232:23871327,14110593:7368212 -k183,232:31239539,14110593:7368212 -(183,232:31239539,14110593:1343490,485622,11795 -k183,232:31358161,14110593:118622 -) -g183,232:31239539,14110593 -g183,232:32583029,14110593 -) -(1,122:6630773,15607441:25952256,513147,126483 -g1,122:7613813,15607441 -h1,122:7613813,15607441:0,0,0 -g1,122:6630773,15607441 -g1,122:10399748,15607441 -g1,122:12439883,15607441 -g1,122:13333794,15607441 -g1,122:13990464,15607441 -k1,122:23684222,15607441:7555318 -k1,122:31239539,15607441:7555317 -(1,122:31239539,15607441:1343490,485622,11795 -k1,122:31358161,15607441:118622 -) -g1,122:31239539,15607441 -g1,122:32583029,15607441 -) -] -(1,124:32583029,45706769:0,0,0 -g1,124:32583029,45706769 -) -) -] -(1,124:6630773,47279633:25952256,0,0 -h1,124:6630773,47279633:25952256,0,0 -) -] -(1,124:4262630,4025873:0,0,0 -[1,124:-473656,4025873:0,0,0 -(1,124:-473656,-710413:0,0,0 -(1,124:-473656,-710413:0,0,0 -g1,124:-473656,-710413 -) -g1,124:-473656,-710413 -) -] -) -] -!20761 -}7 -Input:184:C:\Users\Aphalo\Documents\Own_manuscripts\Books\learnr-book-crc-2ed\frontmatter\preface.tex -!112 -{8 -[184,19:4262630,47279633:28320399,43253760,0 -(184,19:4262630,4025873:0,0,0 -[184,19:-473656,4025873:0,0,0 -(184,19:-473656,-710413:0,0,0 -(184,19:-473656,-644877:0,0,0 -k184,19:-473656,-644877:-65536 -) -(184,19:-473656,4736287:0,0,0 -k184,19:-473656,4736287:5209943 -) -g184,19:-473656,-710413 -) -] -) -[184,19:6630773,47279633:25952256,43253760,0 -[184,19:6630773,4812305:25952256,786432,0 -(184,19:6630773,4812305:25952256,0,0 -(184,19:6630773,4812305:25952256,0,0 -g184,19:3078558,4812305 -[184,19:3078558,4812305:0,0,0 -(184,19:3078558,2439708:0,1703936,0 -k184,19:1358238,2439708:-1720320 -(184,1:1358238,2439708:1720320,1703936,0 -(184,1:1358238,2439708:1179648,16384,0 -r184,19:2537886,2439708:1179648,16384,0 -) -g184,1:3062174,2439708 -(184,1:3062174,2439708:16384,1703936,0 -[184,1:3062174,2439708:25952256,1703936,0 -(184,1:3062174,1915420:25952256,1179648,0 -(184,1:3062174,1915420:16384,1179648,0 -r184,19:3078558,1915420:16384,1179648,0 -) -k184,1:29014430,1915420:25935872 -g184,1:29014430,1915420 -) -] -) -) -) -] -[184,19:3078558,4812305:0,0,0 -(184,19:3078558,2439708:0,1703936,0 -g184,19:29030814,2439708 -g184,19:36135244,2439708 -(184,1:36135244,2439708:1720320,1703936,0 -(184,1:36135244,2439708:16384,1703936,0 -[184,1:36135244,2439708:25952256,1703936,0 -(184,1:36135244,1915420:25952256,1179648,0 -(184,1:36135244,1915420:16384,1179648,0 -r184,19:36151628,1915420:16384,1179648,0 -) -k184,1:62087500,1915420:25935872 -g184,1:62087500,1915420 -) -] -) -g184,1:36675916,2439708 -(184,1:36675916,2439708:1179648,16384,0 -r184,19:37855564,2439708:1179648,16384,0 -) -) -k184,19:3078556,2439708:-34777008 -) -] -[184,19:3078558,4812305:0,0,0 -(184,19:3078558,49800853:0,16384,2228224 -k184,19:1358238,49800853:-1720320 -(184,1:1358238,49800853:1720320,16384,2228224 -(184,1:1358238,49800853:1179648,16384,0 -r184,19:2537886,49800853:1179648,16384,0 -) -g184,1:3062174,49800853 -(184,1:3062174,52029077:16384,1703936,0 -[184,1:3062174,52029077:25952256,1703936,0 -(184,1:3062174,51504789:25952256,1179648,0 -(184,1:3062174,51504789:16384,1179648,0 -r184,19:3078558,51504789:16384,1179648,0 -) -k184,1:29014430,51504789:25935872 -g184,1:29014430,51504789 -) -] -) -) -) -] -[184,19:3078558,4812305:0,0,0 -(184,19:3078558,49800853:0,16384,2228224 -g184,19:29030814,49800853 -g184,19:36135244,49800853 -(184,1:36135244,49800853:1720320,16384,2228224 -(184,1:36135244,52029077:16384,1703936,0 -[184,1:36135244,52029077:25952256,1703936,0 -(184,1:36135244,51504789:25952256,1179648,0 -(184,1:36135244,51504789:16384,1179648,0 -r184,19:36151628,51504789:16384,1179648,0 -) -k184,1:62087500,51504789:25935872 -g184,1:62087500,51504789 -) -] -) -g184,1:36675916,49800853 -(184,1:36675916,49800853:1179648,16384,0 -r184,19:37855564,49800853:1179648,16384,0 -) -) -k184,19:3078556,49800853:-34777008 -) -] -g184,19:6630773,4812305 -) -) -] -[184,19:6630773,45706769:25952256,40108032,0 -(184,19:6630773,45706769:25952256,40108032,0 -(184,19:6630773,45706769:0,0,0 -g184,19:6630773,45706769 -) -[184,19:6630773,45706769:25952256,40108032,0 -[184,1:6630773,12106481:25952256,6507744,0 -(184,1:6630773,7073297:25952256,32768,229376 -(184,1:6630773,7073297:0,32768,229376 -(184,1:6630773,7073297:5505024,32768,229376 -r184,19:12135797,7073297:5505024,262144,229376 -) -k184,1:6630773,7073297:-5505024 -) -) -(184,1:6630773,8803457:25952256,923664,227671 -h184,1:6630773,8803457:0,0,0 -k184,1:21844104,8803457:10738926 -k184,1:32583030,8803457:10738926 -) -(184,1:6630773,9419505:25952256,32768,0 -(184,1:6630773,9419505:5505024,32768,0 -r184,19:12135797,9419505:5505024,32768,0 -) -k184,1:22359413,9419505:10223616 -k184,1:32583029,9419505:10223616 -) -] -(184,3:6630773,13734401:25952256,131072,0 -r184,19:32583029,13734401:25952256,131072,0 -g184,3:32583029,13734401 -g184,3:32583029,13734401 -) -(184,5:6630773,15054302:25952256,505283,134348 -k184,5:8596853,15054302:1966080 -k184,4:11718282,15054302:137575 -k184,4:13140363,15054302:137575 -k184,4:14448411,15054302:137575 -k184,4:16134602,15054302:137575 -k184,4:16923605,15054302:137575 -k184,4:18769704,15054302:137575 -k184,4:19926365,15054302:137576 -k184,4:21357621,15054302:137575 -k184,4:23996705,15054302:137575 -k184,4:24785708,15054302:137575 -k184,4:25279143,15054302:137575 -k184,4:26770692,15054302:137575 -k184,4:28867793,15054302:137575 -k184,4:32583029,15054302:1966080 -) -(184,5:6630773,15895790:25952256,505283,126483 -k184,5:8596853,15895790:1966080 -k184,4:9734379,15895790:239683 -k184,4:11144535,15895790:239683 -k184,4:13694362,15895790:239683 -k184,4:15218551,15895790:239683 -k184,4:15814094,15895790:239683 -k184,4:17000118,15895790:239684 -k184,4:17771298,15895790:239683 -k184,4:18366841,15895790:239683 -k184,4:21532051,15895790:239683 -k184,4:23661792,15895790:239683 -k184,4:26843386,15895790:239683 -k184,4:32583029,15895790:1966080 -) -(184,5:6630773,16737278:25952256,505283,126483 -k184,5:8596853,16737278:1966080 -k184,4:11546038,16737278:172425 -k184,4:13112414,16737278:172425 -k184,4:16566227,16737278:172425 -k184,4:18658202,16737278:172425 -k184,4:19186487,16737278:172425 -k184,4:22680278,16737278:172426 -k184,4:24527148,16737278:172425 -k184,4:27031999,16737278:172425 -k184,4:28642939,16737278:172425 -k184,4:29612282,16737278:172425 -k184,4:32583029,16737278:1966080 -) -(184,5:6630773,17578766:25952256,513147,134348 -k184,5:8596853,17578766:1966080 -k184,4:10092439,17578766:255645 -k184,4:11601788,17578766:255645 -k184,4:14684001,17578766:255645 -k184,4:16600328,17578766:255645 -k184,4:17875058,17578766:255645 -k184,4:19145200,17578766:255645 -k184,4:19756704,17578766:255644 -k184,4:20868905,17578766:255645 -k184,4:21783842,17578766:255645 -k184,4:24801830,17578766:255645 -k184,4:26507787,17578766:255645 -k184,4:28800946,17578766:255645 -k184,4:32583029,17578766:1966080 -) -(184,5:6630773,18420254:25952256,505283,134348 -k184,5:8596853,18420254:1966080 -k184,4:10264798,18420254:216323 -k184,4:12080200,18420254:216324 -k184,4:13789433,18420254:216323 -k184,4:14463854,18420254:216324 -k184,4:15988931,18420254:216323 -k184,4:17224340,18420254:216324 -k184,4:18939471,18420254:216323 -k184,4:19984824,18420254:216323 -k184,4:21293633,18420254:216324 -k184,4:21968053,18420254:216323 -k184,4:23834574,18420254:216324 -k184,4:27123880,18420254:216323 -k184,5:32583029,18420254:1966080 -) -(184,5:6630773,19261742:25952256,513147,126483 -g184,5:8596853,19261742 -g184,4:10393850,19261742 -g184,4:11584639,19261742 -g184,4:13118836,19261742 -g184,4:15061978,19261742 -g184,4:16022735,19261742 -g184,4:19810715,19261742 -g184,4:21577565,19261742 -k184,5:30616949,19261742:5152444 -g184,5:32583029,19261742 -) -(184,6:6630773,20889662:25952256,475791,7863 -k184,6:27570837,20889662:20940064 -h184,6:27570837,20889662:0,0,0 -g184,6:28388726,20889662 -g184,6:29137147,20889662 -g184,6:30616950,20889662 -g184,6:32583030,20889662 -) -(184,7:6630773,21731150:25952256,505283,134348 -k184,7:16377944,21731150:9747171 -h184,6:16377944,21731150:0,0,0 -g184,6:17857091,21731150 -g184,6:18923361,21731150 -g184,6:20846187,21731150 -g184,6:25094886,21731150 -g184,6:29023113,21731150 -g184,7:30616949,21731150 -g184,7:32583029,21731150 -) -(184,7:6630773,22965854:25952256,131072,0 -r184,19:32583029,22965854:25952256,131072,0 -g184,7:32583029,22965854 -g184,7:34549109,22965854 -) -(184,15:6630773,24593774:25952256,513147,134348 -k184,14:8251787,24593774:240170 -k184,14:10073996,24593774:240170 -k184,14:12365443,24593774:240170 -k184,14:15367957,24593774:240171 -k184,14:17983152,24593774:240170 -k184,14:18882614,24593774:240170 -k184,14:20141869,24593774:240170 -k184,14:21474524,24593774:240170 -k184,14:22373986,24593774:240170 -k184,14:23633241,24593774:240170 -k184,14:24288213,24593774:240129 -k184,14:27544351,24593774:240171 -k184,14:30654343,24593774:240170 -h184,14:31052802,24593774:0,0,0 -k184,14:31292972,24593774:240170 -k184,14:32184570,24593774:240170 -h184,14:32583029,24593774:0,0,0 -k184,14:32583029,24593774:0 -) -(184,15:6630773,25435262:25952256,513147,134348 -k184,14:9455600,25435262:155546 -k184,14:10630231,25435262:155546 -k184,14:11200577,25435262:155503 -k184,14:14198419,25435262:155546 -k184,14:16133267,25435262:155546 -k184,14:17902309,25435262:155546 -k184,14:20805780,25435262:155546 -k184,14:23630607,25435262:155546 -k184,14:27188782,25435262:155546 -k184,14:27995756,25435262:155546 -k184,14:29170387,25435262:155546 -k184,14:29740733,25435262:155503 -k184,14:32583029,25435262:0 -) -(184,15:6630773,26276750:25952256,513147,134348 -k184,14:9580071,26276750:165329 -k184,14:12303927,26276750:165330 -k184,14:16198910,26276750:165329 -k184,14:19441809,26276750:165329 -k184,14:20626223,26276750:165329 -k184,14:23836356,26276750:165330 -k184,14:24617723,26276750:165329 -k184,14:26215670,26276750:165329 -k184,14:27572444,26276750:165329 -k184,14:28756859,26276750:165330 -k184,14:31966991,26276750:165329 -k184,14:32583029,26276750:0 -) -(184,15:6630773,27118238:25952256,505283,134348 -k184,14:9704888,27118238:190531 -k184,14:10523254,27118238:190531 -k184,14:11917025,27118238:190530 -k184,14:13863266,27118238:190531 -k184,14:18116374,27118238:190531 -k184,14:19298465,27118238:190531 -k184,14:21844360,27118238:190531 -k184,14:23107060,27118238:190531 -k184,14:25669338,27118238:190530 -k184,14:28514077,27118238:190531 -k184,14:29356036,27118238:190531 -k184,14:32583029,27118238:0 -) -(184,15:6630773,27959726:25952256,513147,134348 -k184,14:9285334,27959726:215311 -k184,14:10159937,27959726:215311 -k184,14:14355905,27959726:215311 -k184,14:15296044,27959726:215311 -k184,14:16197517,27959726:215311 -k184,14:17064256,27959726:215311 -k184,14:20550469,27959726:215311 -k184,14:21784865,27959726:215311 -k184,14:26132221,27959726:215311 -k184,14:27006824,27959726:215311 -k184,14:27577995,27959726:215311 -k184,14:30111314,27959726:215311 -k184,14:30985917,27959726:215311 -k184,15:32583029,27959726:0 -) -(184,15:6630773,28801214:25952256,505283,126483 -k184,14:9506056,28801214:252532 -k184,14:13576715,28801214:252532 -k184,14:15210091,28801214:252532 -k184,14:15994120,28801214:252532 -k184,14:17312923,28801214:252532 -k184,14:18336158,28801214:252532 -k184,14:21385110,28801214:252531 -k184,14:24455035,28801214:252532 -k184,14:25910808,28801214:252532 -k184,14:26694837,28801214:252532 -k184,14:27966454,28801214:252532 -k184,14:30497673,28801214:252532 -k184,14:32583029,28801214:0 -) -(184,15:6630773,29642702:25952256,513147,134348 -k184,14:9742333,29642702:263366 -k184,14:10664990,29642702:263365 -k184,14:12530056,29642702:263366 -k184,14:13452714,29642702:263366 -k184,14:14461224,29642702:263366 -k184,14:16054970,29642702:263365 -k184,14:17410821,29642702:263366 -k184,14:18088966,29642702:263302 -k184,14:21192661,29642702:263365 -k184,14:22403678,29642702:263366 -k184,14:23022904,29642702:263366 -k184,14:25454201,29642702:263366 -k184,14:26376858,29642702:263365 -k184,14:29402567,29642702:263366 -k184,14:32583029,29642702:0 -) -(184,15:6630773,30484190:25952256,505283,134348 -k184,14:8564135,30484190:216319 -k184,14:10255669,30484190:216319 -k184,14:12339765,30484190:216320 -k184,14:16218236,30484190:216319 -k184,14:17580780,30484190:216319 -k184,14:18816184,30484190:216319 -k184,14:20189214,30484190:216320 -k184,14:21918759,30484190:216319 -k184,14:23532961,30484190:216319 -k184,14:26651214,30484190:216319 -k184,14:27886619,30484190:216320 -k184,14:29582741,30484190:216319 -k184,14:31510860,30484190:216319 -k184,14:32583029,30484190:0 -) -(184,15:6630773,31325678:25952256,505283,134348 -g184,14:7042994,31325678 -g184,14:9198473,31325678 -g184,14:10497396,31325678 -g184,14:11154722,31325678 -g184,14:14255885,31325678 -g184,14:15106542,31325678 -g184,14:16053537,31325678 -k184,15:32583029,31325678:12048795 -g184,15:32583029,31325678 -) -(184,17:6630773,32167166:25952256,505283,126483 -h184,16:6630773,32167166:983040,0,0 -k184,16:8118362,32167166:291557 -k184,16:9225279,32167166:291649 -k184,16:10583200,32167166:291650 -k184,16:13236111,32167166:291649 -k184,16:16381198,32167166:291649 -k184,16:17355733,32167166:291650 -k184,16:19036745,32167166:291649 -k184,16:21882988,32167166:291650 -k184,16:24959262,32167166:291649 -k184,16:25866950,32167166:291650 -k184,16:27361840,32167166:291649 -k184,16:29409199,32167166:291649 -k184,16:29913748,32167166:291557 -k184,17:32583029,32167166:0 -) -(184,17:6630773,33008654:25952256,513147,134348 -k184,16:7316494,33008654:270878 -k184,16:8273605,33008654:270949 -k184,16:8900415,33008654:270950 -k184,16:12013661,33008654:270950 -k184,16:13232261,33008654:270949 -k184,16:14892574,33008654:270950 -k184,16:19419431,33008654:270949 -k184,16:20881826,33008654:270950 -k184,16:25405407,33008654:270950 -k184,16:26873043,33008654:270949 -k184,16:28469131,33008654:270950 -k184,16:29271578,33008654:270950 -k184,16:30490178,33008654:270949 -k184,16:31931601,33008654:270950 -k184,16:32583029,33008654:0 -) -(184,17:6630773,33850142:25952256,505283,134348 -k184,16:8468123,33850142:225820 -k184,16:9713029,33850142:225821 -k184,16:10353665,33850142:225793 -k184,16:13421781,33850142:225820 -k184,16:14263640,33850142:225821 -k184,16:14845320,33850142:225820 -k184,16:16309115,33850142:225820 -k184,16:20256725,33850142:225820 -k184,16:21133974,33850142:225821 -k184,16:22690175,33850142:225820 -k184,16:25542023,33850142:225820 -k184,16:27379373,33850142:225820 -k184,16:27961054,33850142:225821 -k184,16:31202841,33850142:225820 -k184,16:32583029,33850142:0 -) -(184,17:6630773,34691630:25952256,505283,134348 -k184,16:8509456,34691630:282226 -k184,16:9857953,34691630:282226 -k184,16:11688795,34691630:282226 -k184,16:12990106,34691630:282226 -k184,16:14858303,34691630:282226 -k184,16:16305759,34691630:282226 -k184,16:18726425,34691630:282226 -k184,16:19770178,34691630:282225 -k184,16:22798363,34691630:282226 -k184,16:23732017,34691630:282226 -k184,16:26150061,34691630:282226 -k184,16:28279092,34691630:282226 -k184,16:29752763,34691630:282226 -k184,16:31931601,34691630:282226 -k184,16:32583029,34691630:0 -) -(184,17:6630773,35533118:25952256,513147,126483 -k184,16:8413150,35533118:218033 -k184,16:10179799,35533118:218033 -k184,16:11778020,35533118:218033 -k184,16:13544669,35533118:218033 -k184,16:14414130,35533118:218033 -k184,16:15646660,35533118:218033 -k184,16:17373333,35533118:218034 -k184,16:20179383,35533118:218033 -k184,16:21171396,35533118:218033 -k184,16:23672048,35533118:218033 -k184,16:25606469,35533118:218033 -k184,16:28450530,35533118:218033 -k184,16:30890889,35533118:218033 -k184,16:32583029,35533118:0 -) -(184,17:6630773,36374606:25952256,513147,134348 -k184,16:9895730,36374606:228674 -k184,16:11196573,36374606:228674 -k184,16:12805435,36374606:228674 -k184,16:14025668,36374606:228673 -k184,16:15320613,36374606:228674 -k184,16:17622846,36374606:228674 -k184,16:18207380,36374606:228674 -k184,16:22229278,36374606:228674 -k184,16:23392495,36374606:228674 -k184,16:24280461,36374606:228674 -k184,16:26095105,36374606:228673 -k184,16:27470004,36374606:228674 -k184,16:29396716,36374606:228674 -k184,16:32227169,36374606:228674 -k184,16:32583029,36374606:0 -) -(184,17:6630773,37216094:25952256,513147,134348 -k184,16:9066595,37216094:194491 -k184,16:12103381,37216094:194490 -k184,16:12910634,37216094:194491 -k184,16:15351699,37216094:194491 -k184,16:17885169,37216094:194490 -k184,16:18738952,37216094:194491 -k184,16:21853072,37216094:194491 -k184,16:23218036,37216094:194491 -k184,16:24544988,37216094:194490 -k184,16:26151780,37216094:194491 -k184,16:28016128,37216094:194491 -k184,16:29402063,37216094:194490 -k184,16:31923737,37216094:194491 -k184,16:32583029,37216094:0 -) -(184,17:6630773,38057582:25952256,505283,134348 -k184,16:9789003,38057582:147506 -k184,16:11106983,38057582:147507 -k184,16:12386951,38057582:147506 -k184,16:13440821,38057582:147507 -k184,16:14239755,38057582:147506 -k184,16:16799641,38057582:147506 -k184,16:17361939,38057582:147455 -k184,16:19005633,38057582:147507 -k184,16:22669801,38057582:147506 -k184,16:23626677,38057582:147506 -k184,16:24130044,38057582:147507 -k184,16:29078718,38057582:147506 -k184,16:30396698,38057582:147507 -k184,16:31676666,38057582:147506 -k184,16:32583029,38057582:0 -) -(184,17:6630773,38899070:25952256,505283,134348 -k184,16:8279544,38899070:189940 -k184,16:10075771,38899070:189940 -k184,16:10878472,38899070:189939 -k184,16:12803805,38899070:189940 -k184,16:13408579,38899070:189931 -k184,16:14249947,38899070:189940 -k184,16:15454383,38899070:189939 -k184,16:16000183,38899070:189940 -k184,16:19266383,38899070:189940 -k184,16:21004939,38899070:189940 -k184,16:22365351,38899070:189939 -k184,16:24103907,38899070:189940 -k184,16:24751944,38899070:189940 -k184,16:25593312,38899070:189940 -k184,16:28744824,38899070:189940 -k184,16:29147746,38899070:189930 -k184,16:30152954,38899070:189940 -k184,16:32583029,38899070:0 -) -(184,17:6630773,39740558:25952256,513147,134348 -k184,16:10837573,39740558:144223 -k184,16:12173240,39740558:144222 -k184,16:15353746,39740558:144223 -k184,16:16570138,39740558:144223 -k184,16:17733446,39740558:144223 -k184,16:19202806,39740558:144222 -k184,16:20006321,39740558:144223 -k184,16:21353785,39740558:144223 -k184,16:23080047,39740558:144223 -k184,16:23755766,39740558:144222 -k184,16:24847640,39740558:144223 -k184,16:26162336,39740558:144223 -k184,16:26957987,39740558:144223 -k184,16:28194694,39740558:144222 -k184,16:29358002,39740558:144223 -k184,16:32583029,39740558:0 -) -(184,17:6630773,40582046:25952256,513147,134348 -k184,16:9762247,40582046:139755 -k184,16:10553431,40582046:139756 -k184,16:11959342,40582046:139755 -k184,16:13165368,40582046:139755 -k184,16:14066652,40582046:139756 -k184,16:16812774,40582046:139755 -k184,16:17971614,40582046:139755 -k184,16:20264883,40582046:139756 -k184,16:23075885,40582046:139755 -k184,16:24407085,40582046:139755 -k184,16:26685936,40582046:139756 -k184,16:30383641,40582046:139755 -k184,16:32583029,40582046:0 -) -(184,17:6630773,41423534:25952256,513147,134348 -k184,16:7837443,41423534:187585 -k184,16:8439859,41423534:187573 -k184,16:11643411,41423534:187585 -k184,16:14169976,41423534:187585 -k184,16:15016853,41423534:187585 -k184,16:17618784,41423534:187585 -k184,16:19544384,41423534:187585 -k184,16:20751054,41423534:187585 -k184,16:22913894,41423534:187585 -k184,16:24961391,41423534:187585 -k184,16:26096627,41423534:187585 -k184,16:27743043,41423534:187585 -k184,16:29236761,41423534:187585 -k184,16:32583029,41423534:0 -) -(184,17:6630773,42265022:25952256,513147,134348 -k184,16:7502963,42265022:256152 -k184,16:8347628,42265022:256152 -k184,16:9622865,42265022:256152 -k184,16:12955277,42265022:256152 -k184,16:14343891,42265022:256152 -k184,16:15942876,42265022:256152 -k184,16:17402270,42265022:256153 -k184,16:19067446,42265022:256152 -k184,16:20577302,42265022:256152 -k184,16:21965916,42265022:256152 -k184,16:23616019,42265022:256152 -k184,16:24633699,42265022:256152 -k184,16:28142403,42265022:256152 -k184,16:29417640,42265022:256152 -k184,16:32583029,42265022:0 -) -(184,17:6630773,43106510:25952256,505283,134348 -k184,16:7853574,43106510:197818 -k184,16:9381773,43106510:197818 -k184,16:10598676,43106510:197818 -k184,16:13872754,43106510:197818 -k184,16:17191397,43106510:197819 -k184,16:18882125,43106510:197818 -k184,16:19494784,43106510:197816 -k184,16:23357375,43106510:197818 -k184,16:24725667,43106510:197819 -k184,16:25606370,43106510:197818 -k184,16:27197483,43106510:197818 -k184,16:29187055,43106510:197818 -k184,16:29740733,43106510:197818 -k184,16:32583029,43106510:0 -) -(184,17:6630773,43947998:25952256,513147,134348 -k184,16:9219404,43947998:170352 -k184,16:9921253,43947998:170352 -k184,16:11110689,43947998:170351 -k184,16:12882741,43947998:170352 -k184,16:15605720,43947998:170352 -k184,16:17014047,43947998:170352 -k184,16:17843690,43947998:170351 -k184,16:20615821,43947998:170352 -k184,16:21417940,43947998:170352 -k184,16:22348510,43947998:170352 -k184,16:24254255,43947998:170352 -k184,16:25056373,43947998:170351 -k184,16:25439688,43947998:170323 -k184,16:27348055,43947998:170352 -k184,16:30006809,43947998:170352 -k184,16:32583029,43947998:0 -) -(184,17:6630773,44789486:25952256,505283,134348 -k184,16:9313519,44789486:251360 -k184,16:10756324,44789486:251360 -k184,16:13530821,44789486:251361 -k184,16:15943558,44789486:251360 -k184,16:16877803,44789486:251360 -k184,16:20201491,44789486:251360 -k184,16:23160143,44789486:251360 -k184,16:24602948,44789486:251360 -k184,16:27382033,44789486:251361 -k184,16:28316278,44789486:251360 -k184,16:30596633,44789486:251360 -k184,17:32583029,44789486:0 -) -(184,17:6630773,45630974:25952256,513147,134348 -k184,16:8572100,45630974:197414 -k184,16:11761234,45630974:197415 -k184,16:13526269,45630974:197414 -k184,16:15636025,45630974:197415 -k184,16:16516324,45630974:197414 -k184,16:17732824,45630974:197415 -k184,16:20631632,45630974:197414 -k184,16:22321957,45630974:197415 -k184,16:23585642,45630974:197414 -k184,16:25990310,45630974:197415 -k184,16:26873886,45630974:197414 -k184,16:28806694,45630974:197415 -k184,16:29359968,45630974:197414 -k184,17:32583029,45630974:0 -k184,17:32583029,45630974:0 -) -] -(184,19:32583029,45706769:0,0,0 -g184,19:32583029,45706769 -) -) -] -(184,19:6630773,47279633:25952256,473825,0 -(184,19:6630773,47279633:25952256,473825,0 -(184,19:6630773,47279633:0,0,0 -v184,19:6630773,47279633:0,0,0 -) -g184,19:6830002,47279633 -k184,19:32016798,47279633:25186796 -) -) -] -(184,19:4262630,4025873:0,0,0 -[184,19:-473656,4025873:0,0,0 -(184,19:-473656,-710413:0,0,0 -(184,19:-473656,-710413:0,0,0 -g184,19:-473656,-710413 -) -g184,19:-473656,-710413 -) -] -) -] -!20821 -}8 -!10 -{9 -[184,27:4262630,47279633:28320399,43253760,0 -(184,27:4262630,4025873:0,0,0 -[184,27:-473656,4025873:0,0,0 -(184,27:-473656,-710413:0,0,0 -(184,27:-473656,-644877:0,0,0 -k184,27:-473656,-644877:-65536 -) -(184,27:-473656,4736287:0,0,0 -k184,27:-473656,4736287:5209943 -) -g184,27:-473656,-710413 -) -] -) -[184,27:6630773,47279633:25952256,43253760,0 -[184,27:6630773,4812305:25952256,786432,0 -(184,27:6630773,4812305:25952256,513147,126483 -(184,27:6630773,4812305:25952256,513147,126483 -g184,27:3078558,4812305 -[184,27:3078558,4812305:0,0,0 -(184,27:3078558,2439708:0,1703936,0 -k184,27:1358238,2439708:-1720320 -(184,1:1358238,2439708:1720320,1703936,0 -(184,1:1358238,2439708:1179648,16384,0 -r184,27:2537886,2439708:1179648,16384,0 -) -g184,1:3062174,2439708 -(184,1:3062174,2439708:16384,1703936,0 -[184,1:3062174,2439708:25952256,1703936,0 -(184,1:3062174,1915420:25952256,1179648,0 -(184,1:3062174,1915420:16384,1179648,0 -r184,27:3078558,1915420:16384,1179648,0 -) -k184,1:29014430,1915420:25935872 -g184,1:29014430,1915420 -) -] -) -) -) -] -[184,27:3078558,4812305:0,0,0 -(184,27:3078558,2439708:0,1703936,0 -g184,27:29030814,2439708 -g184,27:36135244,2439708 -(184,1:36135244,2439708:1720320,1703936,0 -(184,1:36135244,2439708:16384,1703936,0 -[184,1:36135244,2439708:25952256,1703936,0 -(184,1:36135244,1915420:25952256,1179648,0 -(184,1:36135244,1915420:16384,1179648,0 -r184,27:36151628,1915420:16384,1179648,0 -) -k184,1:62087500,1915420:25935872 -g184,1:62087500,1915420 -) -] -) -g184,1:36675916,2439708 -(184,1:36675916,2439708:1179648,16384,0 -r184,27:37855564,2439708:1179648,16384,0 -) -) -k184,27:3078556,2439708:-34777008 -) -] -[184,27:3078558,4812305:0,0,0 -(184,27:3078558,49800853:0,16384,2228224 -k184,27:1358238,49800853:-1720320 -(184,1:1358238,49800853:1720320,16384,2228224 -(184,1:1358238,49800853:1179648,16384,0 -r184,27:2537886,49800853:1179648,16384,0 -) -g184,1:3062174,49800853 -(184,1:3062174,52029077:16384,1703936,0 -[184,1:3062174,52029077:25952256,1703936,0 -(184,1:3062174,51504789:25952256,1179648,0 -(184,1:3062174,51504789:16384,1179648,0 -r184,27:3078558,51504789:16384,1179648,0 -) -k184,1:29014430,51504789:25935872 -g184,1:29014430,51504789 -) -] -) -) -) -] -[184,27:3078558,4812305:0,0,0 -(184,27:3078558,49800853:0,16384,2228224 -g184,27:29030814,49800853 -g184,27:36135244,49800853 -(184,1:36135244,49800853:1720320,16384,2228224 -(184,1:36135244,52029077:16384,1703936,0 -[184,1:36135244,52029077:25952256,1703936,0 -(184,1:36135244,51504789:25952256,1179648,0 -(184,1:36135244,51504789:16384,1179648,0 -r184,27:36151628,51504789:16384,1179648,0 -) -k184,1:62087500,51504789:25935872 -g184,1:62087500,51504789 -) -] -) -g184,1:36675916,49800853 -(184,1:36675916,49800853:1179648,16384,0 -r184,27:37855564,49800853:1179648,16384,0 -) -) -k184,27:3078556,49800853:-34777008 -) -] -g184,27:6630773,4812305 -k184,27:30249948,4812305:22851748 -) -) -] -[184,27:6630773,45706769:25952256,40108032,0 -(184,27:6630773,45706769:25952256,40108032,0 -(184,27:6630773,45706769:0,0,0 -g184,27:6630773,45706769 -) -[184,27:6630773,45706769:25952256,40108032,0 -(184,19:6630773,6254097:25952256,505283,134348 -h184,18:6630773,6254097:983040,0,0 -k184,18:7978417,6254097:151612 -k184,18:9605292,6254097:151660 -k184,18:11266902,6254097:151660 -k184,18:13153954,6254097:151659 -k184,18:13720410,6254097:151613 -k184,18:15499328,6254097:151659 -k184,18:17940161,6254097:151660 -k184,18:19685657,6254097:151660 -k184,18:20520201,6254097:151659 -k184,18:22439367,6254097:151660 -k184,18:23663196,6254097:151660 -k184,18:24027800,6254097:151612 -k184,18:25155291,6254097:151660 -k184,18:26505604,6254097:151659 -k184,18:29981250,6254097:151660 -k184,18:32583029,6254097:0 -) -(184,19:6630773,7095585:25952256,513147,134348 -k184,18:8153529,7095585:239561 -k184,18:10385385,7095585:239562 -k184,18:12447502,7095585:239561 -k184,18:13101866,7095585:239521 -k184,18:14947059,7095585:239561 -k184,18:16378065,7095585:239561 -k184,18:17032429,7095585:239521 -k184,18:20356114,7095585:239561 -k184,18:22074823,7095585:239561 -k184,18:23913463,7095585:239562 -k184,18:24611121,7095585:239561 -k184,18:25951687,7095585:239561 -k184,18:28910337,7095585:239561 -k184,18:29765937,7095585:239562 -k184,18:30986572,7095585:239561 -k184,18:32583029,7095585:0 -) -(184,19:6630773,7937073:25952256,513147,134348 -k184,18:7544618,7937073:227683 -k184,18:8128161,7937073:227683 -k184,18:11697525,7937073:227683 -k184,18:13116653,7937073:227683 -k184,18:15688559,7937073:227683 -k184,18:18147743,7937073:227683 -k184,18:20077396,7937073:227683 -k184,18:22285577,7937073:227683 -k184,18:23172552,7937073:227683 -k184,18:26332971,7937073:227683 -k184,18:28156455,7937073:227683 -k184,18:30438691,7937073:227683 -k184,19:32583029,7937073:0 -) -(184,19:6630773,8778561:25952256,513147,134348 -k184,18:9863145,8778561:281286 -k184,18:11335876,8778561:281286 -k184,18:12075259,8778561:281286 -k184,18:13457550,8778561:281286 -k184,18:16182017,8778561:281285 -k184,18:16819163,8778561:281286 -k184,18:19302459,8778561:281286 -k184,18:21233942,8778561:281286 -k184,18:22174520,8778561:281286 -k184,18:23474891,8778561:281286 -k184,18:25007259,8778561:281286 -k184,18:26223088,8778561:281286 -k184,18:26717283,8778561:281203 -k184,18:28091054,8778561:281286 -k184,18:29319991,8778561:281286 -k184,18:32583029,8778561:0 -) -(184,19:6630773,9620049:25952256,505283,134348 -k184,18:9031234,9620049:206971 -k184,18:11246883,9620049:206971 -k184,18:13371436,9620049:206970 -k184,18:15664418,9620049:206971 -k184,18:17062834,9620049:206971 -k184,18:18736501,9620049:206971 -k184,18:20212248,9620049:206970 -k184,18:22421344,9620049:206971 -k184,18:24009159,9620049:206971 -k184,18:24747627,9620049:206971 -k184,18:25606025,9620049:206970 -k184,18:26860261,9620049:206971 -k184,18:28351738,9620049:206971 -k184,18:29016806,9620049:206971 -k184,18:29755273,9620049:206970 -k184,18:30981329,9620049:206971 -k184,18:32583029,9620049:0 -) -(184,19:6630773,10461537:25952256,513147,134348 -k184,18:8794218,10461537:186224 -k184,18:10630639,10461537:186224 -k184,18:11476155,10461537:186224 -k184,18:14421445,10461537:186224 -k184,18:15799114,10461537:186224 -k184,18:20337584,10461537:186224 -k184,18:23366104,10461537:186224 -k184,18:23765307,10461537:186211 -k184,18:25426746,10461537:186224 -k184,18:26953181,10461537:186224 -k184,18:29519017,10461537:186224 -k184,18:30356669,10461537:186224 -k184,18:31809049,10461537:186224 -k184,18:32583029,10461537:0 -) -(184,19:6630773,11303025:25952256,505283,134348 -k184,18:9143464,11303025:230072 -k184,18:9989574,11303025:230072 -k184,18:11645055,11303025:230073 -k184,18:12333224,11303025:230072 -k184,18:13695758,11303025:230072 -k184,18:14673596,11303025:230072 -k184,18:17622757,11303025:230072 -k184,18:18614358,11303025:230073 -k184,18:22198563,11303025:230072 -k184,18:24499573,11303025:230072 -k184,18:25801814,11303025:230072 -k184,18:26644648,11303025:230072 -k184,18:27893805,11303025:230072 -k184,18:30777431,11303025:230073 -k184,18:31465600,11303025:230072 -k184,18:32227169,11303025:230072 -k184,18:32583029,11303025:0 -) -(184,19:6630773,12144513:25952256,513147,134348 -g184,18:7931007,12144513 -g184,18:10972532,12144513 -g184,18:11823189,12144513 -g184,18:13633948,12144513 -g184,18:14780828,12144513 -g184,18:17688660,12144513 -g184,18:19281840,12144513 -g184,18:19836929,12144513 -g184,18:21566424,12144513 -g184,18:22417081,12144513 -g184,18:25046385,12144513 -g184,18:26437059,12144513 -g184,18:28931359,12144513 -k184,19:32583029,12144513:2088636 -g184,19:32583029,12144513 -) -(184,21:6630773,12986001:25952256,513147,134348 -h184,20:6630773,12986001:983040,0,0 -k184,20:9442456,12986001:194830 -k184,20:10168783,12986001:194830 -k184,20:10719473,12986001:194830 -k184,20:14083623,12986001:194829 -k184,20:14766037,12986001:194826 -k184,20:17803163,12986001:194830 -k184,20:18529489,12986001:194829 -k184,20:19080179,12986001:194830 -k184,20:21520928,12986001:194830 -k184,20:22375050,12986001:194830 -k184,20:27699383,12986001:194830 -k184,20:28309051,12986001:194825 -k184,20:29190043,12986001:194830 -k184,20:29740733,12986001:194830 -k184,20:32583029,12986001:0 -) -(184,21:6630773,13827489:25952256,513147,126483 -k184,20:8809746,13827489:167018 -k184,20:9721909,13827489:167019 -k184,20:10540355,13827489:167018 -k184,20:14999981,13827489:167018 -k184,20:16560951,13827489:167019 -k184,20:18429939,13827489:167018 -k184,20:21550665,13827489:167018 -k184,20:22376975,13827489:167018 -k184,20:23563079,13827489:167019 -k184,20:24144908,13827489:166986 -k184,20:28102528,13827489:167018 -k184,20:29460992,13827489:167019 -k184,20:31021961,13827489:167018 -k184,21:32583029,13827489:0 -) -(184,21:6630773,14668977:25952256,505283,134348 -k184,20:9067308,14668977:204379 -k184,20:10089576,14668977:204379 -k184,20:11687906,14668977:204379 -k184,20:12658401,14668977:204379 -k184,20:16035378,14668977:204379 -k184,20:16855795,14668977:204379 -k184,20:18912221,14668977:204379 -k184,20:20382756,14668977:204379 -k184,20:21001973,14668977:204374 -k184,20:23719002,14668977:204379 -k184,20:25283908,14668977:204379 -k184,20:28043536,14668977:204379 -k184,20:29439360,14668977:204379 -k184,20:30926934,14668977:204379 -k184,21:32583029,14668977:0 -) -(184,21:6630773,15510465:25952256,513147,134348 -k184,20:9306429,15510465:164316 -k184,20:10462306,15510465:164317 -k184,20:14743594,15510465:164316 -k184,20:16175376,15510465:164316 -k184,20:17358778,15510465:164317 -k184,20:20539061,15510465:164316 -k184,20:21894823,15510465:164317 -k184,20:23751279,15510465:164316 -k184,20:25949177,15510465:164316 -k184,20:29418475,15510465:164317 -k184,20:31096017,15510465:164316 -k184,20:32583029,15510465:0 -) -(184,21:6630773,16351953:25952256,513147,134348 -k184,20:7801853,16351953:179520 -k184,20:10924594,16351953:179519 -k184,20:11755542,16351953:179520 -k184,20:12954147,16351953:179520 -k184,20:15354681,16351953:179519 -k184,20:16193493,16351953:179520 -k184,20:17392098,16351953:179520 -k184,20:19927636,16351953:179519 -k184,20:20320128,16351953:179500 -k184,20:23168929,16351953:179520 -k184,20:25692672,16351953:179520 -k184,20:27694747,16351953:179519 -k184,20:29065712,16351953:179520 -k184,20:32583029,16351953:0 -) -(184,21:6630773,17193441:25952256,513147,134348 -k184,20:7456435,17193441:166370 -k184,20:8641890,17193441:166370 -k184,20:9223071,17193441:166338 -k184,20:12231737,17193441:166370 -k184,20:13014145,17193441:166370 -k184,20:13536375,17193441:166370 -k184,20:14940721,17193441:166371 -k184,20:18292141,17193441:166370 -k184,20:19109939,17193441:166370 -k184,20:19632169,17193441:166370 -k184,20:23213620,17193441:166370 -k184,20:26702011,17193441:166371 -k184,20:28262332,17193441:166370 -k184,20:31504962,17193441:166370 -k184,21:32583029,17193441:0 -) -(184,21:6630773,18034929:25952256,505283,134348 -k184,20:8305655,18034929:231779 -k184,20:9609603,18034929:231779 -k184,20:11235333,18034929:231779 -k184,20:13159252,18034929:231779 -k184,20:17180978,18034929:231779 -k184,20:18028795,18034929:231779 -k184,20:19649937,18034929:231779 -k184,20:22436309,18034929:231779 -k184,20:23354250,18034929:231779 -k184,20:25099255,18034929:231779 -k184,20:25947072,18034929:231779 -k184,20:28683637,18034929:231779 -k184,20:32583029,18034929:0 -) -(184,21:6630773,18876417:25952256,505283,7863 -g184,20:7512887,18876417 -g184,20:8731201,18876417 -k184,21:32583030,18876417:20120864 -g184,21:32583030,18876417 -) -(184,23:6630773,19717905:25952256,505283,134348 -h184,22:6630773,19717905:983040,0,0 -k184,22:9620945,19717905:223897 -k184,22:12717285,19717905:223897 -k184,22:13154149,19717905:223872 -k184,22:14817873,19717905:223898 -k184,22:15693198,19717905:223897 -k184,22:17240267,19717905:223897 -k184,22:19701563,19717905:223897 -k184,22:23566640,19717905:223897 -k184,22:26736380,19717905:223897 -k184,22:28911939,19717905:223897 -k184,22:30578283,19717905:223897 -k184,22:32583029,19717905:0 -) -(184,23:6630773,20559393:25952256,513147,126483 -k184,22:7571450,20559393:169974 -k184,22:12519000,20559393:169975 -k184,22:14493836,20559393:169974 -k184,22:16496197,20559393:169974 -k184,22:17657731,20559393:169974 -k184,22:19000145,20559393:169975 -k184,22:21631651,20559393:169974 -k184,22:22749276,20559393:169974 -k184,22:24296162,20559393:169975 -k184,22:26075700,20559393:169974 -k184,22:26458637,20559393:169945 -k184,22:28585516,20559393:169974 -k184,22:29441653,20559393:169975 -k184,22:29967487,20559393:169974 -k184,22:32583029,20559393:0 -) -(184,23:6630773,21400881:25952256,513147,134348 -k184,22:7962836,21400881:140618 -k184,22:8316387,21400881:140559 -k184,22:10068534,21400881:140617 -k184,22:11544120,21400881:140618 -k184,22:13987017,21400881:140617 -k184,22:14593596,21400881:140618 -k184,22:15753298,21400881:140617 -k184,22:17652902,21400881:140618 -k184,22:18325016,21400881:140617 -k184,22:19531905,21400881:140618 -k184,22:20718478,21400881:140618 -k184,22:22427372,21400881:140617 -k184,22:25007895,21400881:140618 -k184,22:25614473,21400881:140617 -k184,22:25968024,21400881:140559 -k184,22:28064892,21400881:140618 -k184,22:29589629,21400881:140617 -k184,22:30749332,21400881:140618 -k184,22:32583029,21400881:0 -) -(184,23:6630773,22242369:25952256,513147,134348 -k184,22:7991651,22242369:172055 -k184,22:8822999,22242369:172056 -k184,22:10014139,22242369:172055 -k184,22:10601011,22242369:172029 -k184,22:13789033,22242369:172055 -k184,22:14419185,22242369:172055 -k184,22:16547491,22242369:172056 -k184,22:18435279,22242369:172055 -k184,22:19626420,22242369:172056 -k184,22:22350447,22242369:172055 -k184,22:23540931,22242369:172055 -k184,22:25496222,22242369:172056 -k184,22:27318474,22242369:172055 -k184,22:29974345,22242369:172056 -k184,22:31599989,22242369:172055 -k184,22:32583029,22242369:0 -) -(184,23:6630773,23083857:25952256,505283,126483 -k184,22:8169176,23083857:284699 -k184,22:9586337,23083857:284699 -k184,22:10937307,23083857:284699 -k184,22:14481112,23083857:284700 -k184,22:15531927,23083857:284699 -k184,22:16835711,23083857:284699 -k184,22:19411549,23083857:284699 -k184,22:22082414,23083857:284699 -k184,22:24309601,23083857:284700 -k184,22:27529002,23083857:284699 -k184,22:28984174,23083857:284699 -k184,22:30870573,23083857:284699 -k184,22:32583029,23083857:0 -) -(184,23:6630773,23925345:25952256,513147,126483 -k184,22:7957003,23925345:193768 -k184,22:11409876,23925345:193768 -k184,22:12286529,23925345:193768 -k184,22:14973287,23925345:193768 -k184,22:15522915,23925345:193768 -k184,22:17486810,23925345:193768 -k184,22:18339870,23925345:193768 -k184,22:20231677,23925345:193769 -k184,22:21595918,23925345:193768 -k184,22:23319952,23925345:193768 -k184,22:24165148,23925345:193768 -k184,22:25106682,23925345:193768 -k184,22:27510324,23925345:193768 -k184,22:28386977,23925345:193768 -k184,22:30761128,23925345:193768 -k184,22:32583029,23925345:0 -) -(184,23:6630773,24766833:25952256,505283,126483 -k184,22:7903117,24766833:253259 -k184,22:10447515,24766833:253259 -k184,22:11624176,24766833:253259 -k184,22:12090373,24766833:253205 -k184,22:13476094,24766833:253259 -k184,22:15934639,24766833:253258 -k184,22:17358371,24766833:253259 -k184,22:18677901,24766833:253259 -k184,22:20306761,24766833:253259 -k184,22:21211448,24766833:253259 -k184,22:22483792,24766833:253259 -k184,22:24458026,24766833:253259 -k184,22:26582338,24766833:253259 -k184,22:27907766,24766833:253259 -k184,22:29446841,24766833:253259 -k184,22:30351528,24766833:253259 -k184,22:32583029,24766833:0 -) -(184,23:6630773,25608321:25952256,513147,134348 -k184,22:10217364,25608321:174787 -k184,22:11583596,25608321:174787 -k184,22:16860360,25608321:174786 -k184,22:19640858,25608321:174787 -k184,22:20474937,25608321:174787 -k184,22:21668809,25608321:174787 -k184,22:24859563,25608321:174787 -k184,22:26919821,25608321:174787 -k184,22:27307575,25608321:174762 -k184,22:28957577,25608321:174787 -k184,22:32583029,25608321:0 -) -(184,23:6630773,26449809:25952256,505283,134348 -k184,22:8218757,26449809:194033 -k184,22:10260906,26449809:194034 -k184,22:13014120,26449809:194033 -k184,22:14411394,26449809:194033 -k184,22:16187467,26449809:194034 -k184,22:17513962,26449809:194033 -k184,22:18455761,26449809:194033 -k184,22:20472351,26449809:194034 -k184,22:23677763,26449809:194033 -k184,22:24227657,26449809:194034 -k184,22:25704885,26449809:194033 -k184,22:27902354,26449809:194033 -k184,22:29299629,26449809:194034 -k184,22:31075701,26449809:194033 -k184,22:32583029,26449809:0 -) -(184,23:6630773,27291297:25952256,513147,134348 -g184,22:7481430,27291297 -g184,22:8428425,27291297 -g184,22:8983514,27291297 -g184,22:10993503,27291297 -g184,22:13124733,27291297 -g184,22:14396131,27291297 -g184,22:16866183,27291297 -g184,22:17421272,27291297 -g184,22:20570932,27291297 -g184,22:23447962,27291297 -g184,22:24744919,27291297 -g184,22:25300008,27291297 -g184,22:28596468,27291297 -g184,22:29462853,27291297 -g184,22:30076925,27291297 -k184,23:32583029,27291297:63577 -g184,23:32583029,27291297 -) -(184,25:6630773,28132785:25952256,505283,134348 -h184,24:6630773,28132785:983040,0,0 -k184,24:9400840,28132785:207609 -k184,24:10224487,28132785:207609 -k184,24:12088847,28132785:207610 -k184,24:13580962,28132785:207609 -k184,24:14246668,28132785:207609 -k184,24:14985774,28132785:207609 -k184,24:18644510,28132785:207610 -k184,24:19503547,28132785:207609 -k184,24:22970261,28132785:207609 -k184,24:26541178,28132785:207609 -k184,24:28571344,28132785:207610 -k184,24:29367466,28132785:207609 -k184,24:30771762,28132785:207609 -k184,24:31394206,28132785:207601 -k184,25:32583029,28132785:0 -) -(184,25:6630773,28974273:25952256,505283,134348 -k184,24:8900145,28974273:229236 -k184,24:9745418,28974273:229235 -k184,24:10330514,28974273:229236 -k184,24:12419661,28974273:229235 -k184,24:14592695,28974273:229236 -k184,24:15353427,28974273:229235 -k184,24:16882897,28974273:229236 -k184,24:19641822,28974273:229235 -k184,24:20659456,28974273:229236 -k184,24:24498414,28974273:229235 -k184,24:25831932,28974273:229236 -k184,24:26808933,28974273:229235 -k184,24:30130813,28974273:229236 -k184,24:31753999,28974273:229235 -k184,25:32583029,28974273:0 -) -(184,25:6630773,29815761:25952256,513147,134348 -k184,24:10761093,29815761:173256 -k184,24:14195419,29815761:173255 -k184,24:17452799,29815761:173256 -k184,24:20387742,29815761:173256 -k184,24:21212426,29815761:173256 -k184,24:22478166,29815761:173255 -k184,24:23066239,29815761:173230 -k184,24:25831444,29815761:173256 -k184,24:26663992,29815761:173256 -k184,24:29439026,29815761:173255 -k184,24:30631367,29815761:173256 -k184,24:32583029,29815761:0 -) -(184,25:6630773,30657249:25952256,513147,134348 -k184,24:8211502,30657249:209716 -k184,24:11904457,30657249:209716 -k184,24:13133257,30657249:209715 -k184,24:14677286,30657249:209716 -k184,24:15546294,30657249:209716 -k184,24:18012415,30657249:209716 -k184,24:19680962,30657249:209716 -k184,24:21128653,30657249:209716 -k184,24:21954406,30657249:209715 -k184,24:22578955,30657249:209706 -k184,24:23980116,30657249:209716 -k184,24:24978229,30657249:209715 -k184,24:30187687,30657249:209716 -k184,24:31025238,30657249:209716 -k184,24:32583029,30657249:0 -) -(184,25:6630773,31498737:25952256,513147,134348 -k184,24:8599534,31498737:201255 -k184,24:9819874,31498737:201255 -k184,24:12506911,31498737:201256 -k184,24:13367458,31498737:201255 -k184,24:16479167,31498737:201255 -k184,24:19464391,31498737:201255 -k184,24:20281684,31498737:201255 -k184,24:21502024,31498737:201255 -k184,24:26642729,31498737:201256 -k184,24:27258825,31498737:201253 -k184,24:29890155,31498737:201255 -k184,24:32583029,31498737:0 -) -(184,25:6630773,32340225:25952256,505283,126483 -k184,24:9096466,32340225:171278 -k184,24:11090983,32340225:171305 -k184,24:12281373,32340225:171305 -k184,24:14618643,32340225:171305 -k184,24:17133516,32340225:171306 -k184,24:19185021,32340225:171277 -k184,24:19887823,32340225:171305 -k184,24:21078214,32340225:171306 -k184,24:22851219,32340225:171305 -k184,24:26405492,32340225:171305 -k184,24:27648966,32340225:171305 -k184,24:28886543,32340225:171306 -k184,24:30607119,32340225:171305 -k184,24:32583029,32340225:0 -) -(184,25:6630773,33181713:25952256,513147,134348 -k184,24:10119104,33181713:204977 -k184,24:11271732,33181713:204977 -k184,24:11891547,33181713:204972 -k184,24:15180648,33181713:204977 -k184,24:16806446,33181713:204977 -k184,24:18595428,33181713:204977 -k184,24:19156266,33181713:204978 -k184,24:22520734,33181713:204977 -k184,24:23385003,33181713:204977 -k184,24:24609065,33181713:204977 -k184,24:25228880,33181713:204972 -k184,24:28276153,33181713:204977 -k184,24:29672575,33181713:204977 -k184,24:32583029,33181713:0 -) -(184,25:6630773,34023201:25952256,513147,126483 -k184,24:7271583,34023201:284950 -k184,24:8937378,34023201:284951 -k184,24:11082895,34023201:284950 -k184,24:14069895,34023201:284951 -k184,24:15164215,34023201:284950 -k184,24:16468251,34023201:284951 -k184,24:18139287,34023201:284950 -k184,24:19083530,34023201:284951 -k184,24:22210121,34023201:284950 -k184,24:23146500,34023201:284951 -k184,24:24179216,34023201:284950 -k184,24:26699600,34023201:284951 -k184,24:28224491,34023201:284950 -k184,24:29890286,34023201:284951 -k184,24:31757275,34023201:284950 -k184,25:32583029,34023201:0 -) -(184,25:6630773,34864689:25952256,513147,134348 -k184,24:9071089,34864689:208160 -k184,24:9930677,34864689:208160 -k184,24:11655995,34864689:208160 -k184,24:13034627,34864689:208159 -k184,24:13858825,34864689:208160 -k184,24:15086070,34864689:208160 -k184,24:16386715,34864689:208160 -k184,24:17254167,34864689:208160 -k184,24:18481412,34864689:208160 -k184,24:19104406,34864689:208151 -k184,24:22154862,34864689:208160 -k184,24:24142323,34864689:208159 -k184,24:25541928,34864689:208160 -k184,24:26409380,34864689:208160 -k184,24:29117739,34864689:208160 -k184,24:29740733,34864689:208151 -k184,24:32583029,34864689:0 -) -(184,25:6630773,35706177:25952256,513147,134348 -k184,24:10274509,35706177:241107 -k184,24:11463267,35706177:241107 -k184,24:13093737,35706177:241107 -k184,24:17590752,35706177:241107 -k184,24:19023304,35706177:241107 -k184,24:22214185,35706177:241106 -k184,24:24924033,35706177:241107 -k184,24:26965414,35706177:241107 -k184,24:28225606,35706177:241107 -k184,24:31923737,35706177:241107 -k184,24:32583029,35706177:0 -) -(184,25:6630773,36547665:25952256,505283,126483 -k184,24:10140031,36547665:284231 -k184,24:12336603,36547665:284231 -k184,24:13430204,36547665:284231 -k184,24:16798559,36547665:284231 -k184,24:19637384,36547665:284232 -k184,24:21315566,36547665:284231 -k184,24:22188310,36547665:284231 -k184,24:23088579,36547665:284231 -k184,24:24391895,36547665:284231 -k184,24:27081953,36547665:284231 -k184,24:28948223,36547665:284231 -k184,24:29445361,36547665:284146 -k184,24:30862054,36547665:284231 -k184,24:32583029,36547665:0 -) -(184,25:6630773,37389153:25952256,513147,134348 -k184,24:8189320,37389153:182946 -k184,24:9391351,37389153:182946 -k184,24:10966282,37389153:182946 -k184,24:14241218,37389153:182947 -k184,24:15083456,37389153:182946 -k184,24:16469643,37389153:182946 -k184,24:19136404,37389153:182946 -k184,24:20516037,37389153:182946 -k184,24:22352456,37389153:182946 -k184,24:23066900,37389153:182947 -k184,24:24557289,37389153:182946 -k184,24:25687886,37389153:182946 -k184,24:28450984,37389153:182946 -k184,24:32583029,37389153:0 -) -(184,25:6630773,38230641:25952256,505283,134348 -k184,24:7458328,38230641:211517 -k184,24:8258359,38230641:211518 -k184,24:9850720,38230641:211517 -k184,24:11644276,38230641:211517 -k184,24:12387291,38230641:211518 -k184,24:16209842,38230641:211517 -k184,24:20059262,38230641:211517 -k184,24:22438056,38230641:211518 -k184,24:23262335,38230641:211517 -k184,24:26172625,38230641:211517 -k184,24:30736389,38230641:211518 -k184,24:31563944,38230641:211517 -k184,24:32583029,38230641:0 -) -(184,25:6630773,39072129:25952256,513147,134348 -k184,24:8736395,39072129:215564 -k184,24:9971045,39072129:215565 -k184,24:11279094,39072129:215564 -k184,24:12161814,39072129:215564 -k184,24:12792205,39072129:215548 -k184,24:13659198,39072129:215565 -k184,24:16876966,39072129:215564 -k184,24:18111615,39072129:215564 -k184,24:21242877,39072129:215565 -k184,24:22117733,39072129:215564 -k184,24:23722660,39072129:215564 -k184,24:28367803,39072129:215565 -k184,24:31563944,39072129:215564 -k184,24:32583029,39072129:0 -) -(184,25:6630773,39913617:25952256,513147,134348 -k184,24:9684572,39913617:291456 -k184,24:11661615,39913617:291457 -k184,24:14879909,39913617:291456 -k184,24:16738986,39913617:291456 -k184,24:18419805,39913617:291456 -k184,24:20419786,39913617:291457 -k184,24:21902687,39913617:291456 -k184,24:25838600,39913617:291456 -k184,24:26781485,39913617:291457 -k184,24:28092026,39913617:291456 -k184,24:31923737,39913617:291456 -k184,24:32583029,39913617:0 -) -(184,25:6630773,40755105:25952256,505283,126483 -g184,24:12841620,40755105 -k184,25:32583029,40755105:15712256 -g184,25:32583029,40755105 -) -(184,27:6630773,41596593:25952256,513147,134348 -h184,26:6630773,41596593:983040,0,0 -k184,26:8662842,41596593:231140 -k184,26:10287934,41596593:231141 -k184,26:11285190,41596593:231140 -k184,26:13354616,41596593:231141 -k184,26:16932024,41596593:231140 -k184,26:18817948,41596593:231140 -k184,26:20040649,41596593:231141 -k184,26:22023566,41596593:231140 -k184,26:25017049,41596593:231140 -k184,26:26816467,41596593:231141 -k184,26:27706899,41596593:231140 -k184,26:29743557,41596593:231141 -k184,26:31966991,41596593:231140 -k184,27:32583029,41596593:0 -) -(184,27:6630773,42438081:25952256,513147,126483 -k184,26:7464437,42438081:245151 -k184,26:8337424,42438081:245152 -k184,26:10745263,42438081:245151 -k184,26:11756530,42438081:245151 -k184,26:13699064,42438081:245152 -k184,26:15598999,42438081:245151 -k184,26:16375648,42438081:245152 -k184,26:17430169,42438081:245151 -k184,26:22523674,42438081:245151 -k184,26:25381091,42438081:245152 -k184,26:26277670,42438081:245151 -k184,26:26878681,42438081:245151 -k184,26:29973994,42438081:245152 -k184,26:32051532,42438081:245151 -k184,26:32583029,42438081:0 -) -(184,27:6630773,43279569:25952256,505283,126483 -k184,26:8998152,43279569:238114 -k184,26:9592126,43279569:238114 -k184,26:13780750,43279569:238114 -k184,26:16890652,43279569:238114 -k184,26:19415973,43279569:238114 -k184,26:22289290,43279569:238114 -k184,26:23952812,43279569:238114 -k184,26:25961053,43279569:238114 -k184,26:26960695,43279569:238114 -k184,26:28217894,43279569:238114 -k184,26:29836852,43279569:238114 -k184,26:31266411,43279569:238114 -k184,27:32583029,43279569:0 -) -(184,27:6630773,44121057:25952256,513147,134348 -k184,26:9111411,44121057:148867 -k184,26:10685687,44121057:148868 -k184,26:13547089,44121057:148867 -k184,26:14311995,44121057:148868 -k184,26:15479947,44121057:148867 -k184,26:18878745,44121057:148868 -k184,26:20723028,44121057:148867 -k184,26:21531188,44121057:148868 -k184,26:22699140,44121057:148867 -k184,26:25758462,44121057:148868 -k184,26:27191835,44121057:148867 -k184,26:28332262,44121057:148867 -k184,26:30082830,44121057:148868 -k184,26:32583029,44121057:0 -) -(184,27:6630773,44962545:25952256,513147,134348 -k184,26:9982987,44962545:197966 -k184,26:11223630,44962545:197965 -k184,26:12487867,44962545:197966 -k184,26:14186606,44962545:197965 -k184,26:16082610,44962545:197966 -k184,26:16493566,44962545:197964 -k184,26:18947936,44962545:197965 -k184,26:20881295,44962545:197966 -k184,26:21667773,44962545:197965 -k184,26:23057184,44962545:197966 -k184,26:25006926,44962545:197965 -k184,26:25864184,44962545:197966 -k184,26:27758876,44962545:197965 -k184,26:30867296,44962545:197966 -k184,26:32583029,44962545:0 -) -] -(184,27:32583029,45706769:0,0,0 -g184,27:32583029,45706769 -) -) -] -(184,27:6630773,47279633:25952256,0,0 -h184,27:6630773,47279633:25952256,0,0 -) -] -(184,27:4262630,4025873:0,0,0 -[184,27:-473656,4025873:0,0,0 -(184,27:-473656,-710413:0,0,0 -(184,27:-473656,-710413:0,0,0 -g184,27:-473656,-710413 -) -g184,27:-473656,-710413 -) -] -) -] -!26988 -}9 -!10 -{10 -[184,37:4262630,47279633:28320399,43253760,0 -(184,37:4262630,4025873:0,0,0 -[184,37:-473656,4025873:0,0,0 -(184,37:-473656,-710413:0,0,0 -(184,37:-473656,-644877:0,0,0 -k184,37:-473656,-644877:-65536 -) -(184,37:-473656,4736287:0,0,0 -k184,37:-473656,4736287:5209943 -) -g184,37:-473656,-710413 -) -] -) -[184,37:6630773,47279633:25952256,43253760,0 -[184,37:6630773,4812305:25952256,786432,0 -(184,37:6630773,4812305:25952256,513147,126483 -(184,37:6630773,4812305:25952256,513147,126483 -g184,37:3078558,4812305 -[184,37:3078558,4812305:0,0,0 -(184,37:3078558,2439708:0,1703936,0 -k184,37:1358238,2439708:-1720320 -(184,1:1358238,2439708:1720320,1703936,0 -(184,1:1358238,2439708:1179648,16384,0 -r184,37:2537886,2439708:1179648,16384,0 -) -g184,1:3062174,2439708 -(184,1:3062174,2439708:16384,1703936,0 -[184,1:3062174,2439708:25952256,1703936,0 -(184,1:3062174,1915420:25952256,1179648,0 -(184,1:3062174,1915420:16384,1179648,0 -r184,37:3078558,1915420:16384,1179648,0 -) -k184,1:29014430,1915420:25935872 -g184,1:29014430,1915420 -) -] -) -) -) -] -[184,37:3078558,4812305:0,0,0 -(184,37:3078558,2439708:0,1703936,0 -g184,37:29030814,2439708 -g184,37:36135244,2439708 -(184,1:36135244,2439708:1720320,1703936,0 -(184,1:36135244,2439708:16384,1703936,0 -[184,1:36135244,2439708:25952256,1703936,0 -(184,1:36135244,1915420:25952256,1179648,0 -(184,1:36135244,1915420:16384,1179648,0 -r184,37:36151628,1915420:16384,1179648,0 -) -k184,1:62087500,1915420:25935872 -g184,1:62087500,1915420 -) -] -) -g184,1:36675916,2439708 -(184,1:36675916,2439708:1179648,16384,0 -r184,37:37855564,2439708:1179648,16384,0 -) -) -k184,37:3078556,2439708:-34777008 -) -] -[184,37:3078558,4812305:0,0,0 -(184,37:3078558,49800853:0,16384,2228224 -k184,37:1358238,49800853:-1720320 -(184,1:1358238,49800853:1720320,16384,2228224 -(184,1:1358238,49800853:1179648,16384,0 -r184,37:2537886,49800853:1179648,16384,0 -) -g184,1:3062174,49800853 -(184,1:3062174,52029077:16384,1703936,0 -[184,1:3062174,52029077:25952256,1703936,0 -(184,1:3062174,51504789:25952256,1179648,0 -(184,1:3062174,51504789:16384,1179648,0 -r184,37:3078558,51504789:16384,1179648,0 -) -k184,1:29014430,51504789:25935872 -g184,1:29014430,51504789 -) -] -) -) -) -] -[184,37:3078558,4812305:0,0,0 -(184,37:3078558,49800853:0,16384,2228224 -g184,37:29030814,49800853 -g184,37:36135244,49800853 -(184,1:36135244,49800853:1720320,16384,2228224 -(184,1:36135244,52029077:16384,1703936,0 -[184,1:36135244,52029077:25952256,1703936,0 -(184,1:36135244,51504789:25952256,1179648,0 -(184,1:36135244,51504789:16384,1179648,0 -r184,37:36151628,51504789:16384,1179648,0 -) -k184,1:62087500,51504789:25935872 -g184,1:62087500,51504789 -) -] -) -g184,1:36675916,49800853 -(184,1:36675916,49800853:1179648,16384,0 -r184,37:37855564,49800853:1179648,16384,0 -) -) -k184,37:3078556,49800853:-34777008 -) -] -g184,37:6630773,4812305 -g184,37:6630773,4812305 -g184,37:9163084,4812305 -k184,37:31614408,4812305:22451324 -) -) -] -[184,37:6630773,45706769:25952256,40108032,0 -(184,37:6630773,45706769:25952256,40108032,0 -(184,37:6630773,45706769:0,0,0 -g184,37:6630773,45706769 -) -[184,37:6630773,45706769:25952256,40108032,0 -(184,27:6630773,6254097:25952256,513147,134348 -k184,26:8173004,6254097:259036 -k184,26:12094192,6254097:259036 -k184,26:15310868,6254097:259036 -k184,26:16841302,6254097:259036 -k184,26:18869155,6254097:259036 -k184,26:20742998,6254097:259036 -k184,26:22753810,6254097:259035 -k184,26:25775189,6254097:259036 -k184,26:26449008,6254097:258976 -k184,26:28620385,6254097:259036 -k184,26:30273372,6254097:259036 -k184,26:30888268,6254097:259036 -k184,26:32583029,6254097:0 -) -(184,27:6630773,7095585:25952256,513147,134348 -k184,26:7972547,7095585:164747 -k184,26:9872688,7095585:164748 -k184,26:14126226,7095585:164747 -k184,26:17053316,7095585:164747 -k184,26:18786341,7095585:164748 -k184,26:19610380,7095585:164747 -k184,26:22775365,7095585:164747 -k184,26:23959197,7095585:164747 -k184,26:25777418,7095585:164748 -k184,26:28289009,7095585:164747 -k184,26:29081591,7095585:164747 -k184,26:30449580,7095585:164748 -k184,26:32370037,7095585:164747 -k184,26:32583029,7095585:0 -) -(184,27:6630773,7937073:25952256,513147,134348 -k184,26:8263879,7937073:148716 -k184,26:10541204,7937073:148716 -k184,26:11341349,7937073:148717 -k184,26:14400519,7937073:148716 -k184,26:15833741,7937073:148716 -k184,26:16974017,7937073:148716 -k184,26:20033187,7937073:148716 -k184,26:22682102,7937073:148716 -k184,26:25040693,7937073:148717 -k184,26:26473915,7937073:148716 -k184,26:26835573,7937073:148666 -k184,26:29715174,7937073:148716 -k184,26:32583029,7937073:0 -) -(184,27:6630773,8778561:25952256,513147,134348 -k184,26:9851264,8778561:190106 -k184,26:10254352,8778561:190096 -k184,26:11919673,8778561:190106 -k184,26:12725816,8778561:190105 -k184,26:16036746,8778561:190106 -k184,26:17741388,8778561:190105 -k184,26:18582922,8778561:190106 -k184,26:20257417,8778561:190105 -k184,26:22576132,8778561:190106 -k184,26:23417665,8778561:190105 -k184,26:26518225,8778561:190106 -k184,26:28102281,8778561:190105 -k184,26:30494397,8778561:190106 -k184,26:32583029,8778561:0 -) -(184,27:6630773,9620049:25952256,513147,134348 -k184,26:11072862,9620049:192735 -k184,26:14373315,9620049:192736 -k184,26:15182088,9620049:192735 -k184,26:17838977,9620049:192735 -k184,26:18683140,9620049:192735 -k184,26:20384515,9620049:192736 -k184,26:23891406,9620049:192735 -k184,26:25717954,9620049:192735 -k184,26:26442186,9620049:192735 -k184,26:28936546,9620049:192736 -k184,26:31391584,9620049:192735 -k184,26:32583029,9620049:0 -) -(184,27:6630773,10461537:25952256,513147,134348 -k184,26:7533313,10461537:286502 -k184,26:10940638,10461537:286501 -k184,26:12775756,10461537:286502 -k184,26:13593755,10461537:286502 -k184,26:14236116,10461537:286501 -k184,26:17026093,10461537:286502 -k184,26:18693439,10461537:286502 -k184,26:21963794,10461537:286501 -k184,26:24952345,10461537:286502 -k184,26:27864219,10461537:286502 -k184,26:28960090,10461537:286501 -k184,26:30698214,10461537:286502 -k184,26:32583029,10461537:0 -) -(184,27:6630773,11303025:25952256,513147,126483 -k184,26:10575909,11303025:214827 -k184,26:11982181,11303025:214827 -k184,26:14951486,11303025:214827 -k184,26:18753098,11303025:214827 -k184,26:23488599,11303025:214827 -k184,26:24722510,11303025:214826 -k184,26:27686572,11303025:214827 -k184,26:28560691,11303025:214827 -k184,26:29794603,11303025:214827 -k184,26:31591469,11303025:214827 -k184,26:32583029,11303025:0 -) -(184,27:6630773,12144513:25952256,513147,134348 -k184,26:9536847,12144513:280702 -k184,26:11873413,12144513:280702 -k184,26:12915643,12144513:280702 -k184,26:14177419,12144513:280702 -k184,26:15788502,12144513:280702 -k184,26:19973184,12144513:280702 -k184,26:20466796,12144513:280620 -k184,26:22222713,12144513:280702 -k184,26:24017952,12144513:280702 -k184,26:24950082,12144513:280702 -k184,26:26845591,12144513:280702 -k184,26:30118012,12144513:280702 -k184,26:31014752,12144513:280702 -k184,26:32583029,12144513:0 -) -(184,27:6630773,12986001:25952256,513147,134348 -k184,26:8171268,12986001:255989 -k184,26:10839637,12986001:255989 -k184,26:12303455,12986001:255989 -k184,26:15019666,12986001:255989 -k184,26:19869074,12986001:255990 -k184,26:23692843,12986001:255989 -k184,26:24161767,12986001:255932 -k184,26:27688658,12986001:255989 -k184,26:30322949,12986001:255989 -k184,26:31230366,12986001:255989 -k184,26:32583029,12986001:0 -) -(184,27:6630773,13827489:25952256,513147,134348 -k184,26:8110475,13827489:276461 -k184,26:9968975,13827489:276461 -k184,26:10931598,13827489:276461 -k184,26:11563919,13827489:276461 -k184,26:14318952,13827489:276461 -k184,26:16283620,13827489:276461 -k184,26:17507733,13827489:276462 -k184,26:20795573,13827489:276461 -k184,26:22091119,13827489:276461 -k184,26:23721554,13827489:276461 -k184,26:25749792,13827489:276461 -k184,26:29110377,13827489:276461 -k184,26:31391584,13827489:276461 -k184,26:32583029,13827489:0 -) -(184,27:6630773,14668977:25952256,505283,126483 -g184,26:10492154,14668977 -g184,26:12576854,14668977 -g184,26:12989075,14668977 -g184,26:14663519,14668977 -g184,26:15929019,14668977 -k184,27:32583029,14668977:13390317 -g184,27:32583029,14668977 -) -(184,29:6630773,15510465:25952256,513147,134348 -h184,28:6630773,15510465:983040,0,0 -k184,28:9193832,15510465:199175 -k184,28:11685456,15510465:199175 -k184,28:14125961,15510465:199174 -k184,28:16561880,15510465:199175 -k184,28:19099380,15510465:199175 -k184,28:21869532,15510465:199175 -k184,28:23353212,15510465:199174 -k184,28:24990902,15510465:199175 -k184,28:26852725,15510465:199175 -k184,28:27667938,15510465:199175 -k184,28:28281955,15510465:199174 -k184,28:29672575,15510465:199175 -k184,28:32583029,15510465:0 -) -(184,29:6630773,16351953:25952256,513147,134348 -k184,28:10081243,16351953:186777 -k184,28:11758310,16351953:186778 -k184,28:13299061,16351953:186777 -k184,28:14618956,16351953:186777 -k184,28:16301921,16351953:186778 -k184,28:18789667,16351953:186777 -k184,28:20544065,16351953:186777 -k184,28:21749928,16351953:186778 -k184,28:23242838,16351953:186777 -k184,28:25666359,16351953:186777 -k184,28:27044582,16351953:186778 -k184,28:29822653,16351953:186777 -k184,28:32583029,16351953:0 -) -(184,29:6630773,17193441:25952256,513147,134348 -k184,28:8390951,17193441:224669 -k184,28:11460538,17193441:224669 -k184,28:12892381,17193441:224670 -k184,28:13472910,17193441:224669 -k184,28:16277731,17193441:224669 -k184,28:17311770,17193441:224669 -k184,28:19560846,17193441:224669 -k184,28:22743155,17193441:224669 -k184,28:27162129,17193441:224670 -k184,28:29381714,17193441:224669 -k184,28:30890889,17193441:224669 -k184,28:32583029,17193441:0 -) -(184,29:6630773,18034929:25952256,505283,134348 -k184,28:9801340,18034929:178848 -k184,28:13178999,18034929:178847 -k184,28:15944553,18034929:178848 -k184,28:17195570,18034929:178848 -k184,28:20273074,18034929:178847 -k184,28:23487550,18034929:178848 -k184,28:24349283,18034929:178848 -k184,28:27602425,18034929:178848 -k184,28:29926265,18034929:178847 -$184,28:30133359,18034929 -$184,28:30654370,18034929 -k184,28:30833218,18034929:178848 -k184,28:32583029,18034929:0 -) -(184,29:6630773,18876417:25952256,513147,134348 -k184,28:9491202,18876417:196390 -k184,28:10354747,18876417:196389 -k184,28:10965977,18876417:196387 -k184,28:12637582,18876417:196390 -k184,28:16147471,18876417:196389 -k184,28:20941867,18876417:196390 -k184,28:22631823,18876417:196390 -k184,28:23514374,18876417:196389 -k184,28:24729849,18876417:196390 -k184,28:26209434,18876417:196390 -k184,28:27795842,18876417:196389 -k184,28:30912516,18876417:196390 -k184,29:32583029,18876417:0 -) -(184,29:6630773,19717905:25952256,513147,134348 -k184,28:8268577,19717905:230091 -k184,28:9973883,19717905:230091 -k184,28:11489790,19717905:230091 -k184,28:14149301,19717905:230091 -k184,28:17367834,19717905:230091 -k184,28:18881119,19717905:230090 -k184,28:21890592,19717905:230091 -k184,28:24006154,19717905:230091 -k184,28:25702941,19717905:230091 -k184,28:26398993,19717905:230091 -k184,28:29813478,19717905:230091 -k184,28:32583029,19717905:0 -) -(184,29:6630773,20559393:25952256,513147,134348 -k184,28:9261224,20559393:139428 -k184,28:12566040,20559393:139427 -k184,28:15135543,20559393:139428 -k184,28:16558166,20559393:139428 -k184,28:19476975,20559393:139427 -k184,28:20813090,20559393:139428 -k184,28:22534557,20559393:139428 -k184,28:23774989,20559393:139427 -k184,28:25424367,20559393:139428 -k184,28:28200964,20559393:139428 -k184,28:28991819,20559393:139427 -k184,28:31635378,20559393:139428 -k184,28:32583029,20559393:0 -) -(184,29:6630773,21400881:25952256,513147,134348 -k184,28:8542815,21400881:215315 -k184,28:11502779,21400881:215316 -k184,28:12345929,21400881:215315 -k184,28:15227249,21400881:215315 -k184,28:18389063,21400881:215315 -k184,28:19795824,21400881:215316 -k184,28:23341023,21400881:215315 -k184,28:25031553,21400881:215315 -k184,28:26756818,21400881:215315 -k184,28:28937559,21400881:215316 -k184,28:29804302,21400881:215315 -k184,28:32583029,21400881:0 -) -(184,29:6630773,22242369:25952256,513147,126483 -k184,28:11943323,22242369:216470 -k184,28:13356481,22242369:216471 -k184,28:14799130,22242369:216470 -k184,28:16583221,22242369:216470 -k184,28:17818777,22242369:216471 -k184,28:19341380,22242369:216470 -k184,28:21794594,22242369:216470 -k184,28:23218237,22242369:216470 -k184,28:25428969,22242369:216471 -k184,28:26296867,22242369:216470 -k184,28:27308944,22242369:216470 -k184,28:28291531,22242369:216471 -k184,28:30445245,22242369:216470 -k184,28:32583029,22242369:0 -) -(184,29:6630773,23083857:25952256,513147,126483 -g184,28:7481430,23083857 -g184,28:8699744,23083857 -g184,28:11024306,23083857 -g184,28:12414980,23083857 -g184,28:13265637,23083857 -g184,28:16094170,23083857 -g184,28:17312484,23083857 -g184,28:19513838,23083857 -g184,28:20372359,23083857 -g184,28:23892297,23083857 -g184,28:26451477,23083857 -k184,29:32583029,23083857:1895305 -g184,29:32583029,23083857 -) -(184,31:6630773,23925345:25952256,513147,134348 -h184,30:6630773,23925345:983040,0,0 -k184,30:8096291,23925345:269486 -k184,30:9498310,23925345:269557 -k184,30:13095784,23925345:269556 -k184,30:17134316,23925345:269557 -k184,30:18351523,23925345:269556 -k184,30:20896490,23925345:269557 -k184,30:24331435,23925345:269556 -k184,30:25792437,23925345:269557 -k184,30:29716936,23925345:269556 -k184,30:30645785,23925345:269557 -k184,30:32583029,23925345:0 -) -(184,31:6630773,24766833:25952256,513147,126483 -k184,30:8003276,24766833:181058 -k184,30:10544285,24766833:181058 -k184,30:13508002,24766833:181058 -k184,30:16217439,24766833:181058 -k184,30:17417582,24766833:181058 -k184,30:20590358,24766833:181057 -k184,30:22169299,24766833:181058 -k184,30:23825572,24766833:181058 -k184,30:25516580,24766833:181058 -k184,30:28541901,24766833:181058 -k184,30:30290580,24766833:181058 -k184,30:32583029,24766833:0 -) -(184,31:6630773,25608321:25952256,513147,134348 -k184,30:9293446,25608321:223423 -k184,30:10904266,25608321:223423 -k184,30:12879466,25608321:223423 -k184,30:14959524,25608321:223423 -k184,30:16249218,25608321:223423 -k184,30:17238758,25608321:223424 -k184,30:19901431,25608321:223423 -k184,30:21116414,25608321:223423 -k184,30:26041390,25608321:223423 -k184,30:26742570,25608321:223423 -k184,30:28136466,25608321:223423 -k184,30:31451222,25608321:223423 -k184,30:32583029,25608321:0 -) -(184,31:6630773,26449809:25952256,505283,126483 -k184,30:9469057,26449809:176867 -k184,30:10332085,26449809:176866 -k184,30:12298085,26449809:176867 -k184,30:13157836,26449809:176866 -k184,30:16183553,26449809:176867 -k184,30:18268172,26449809:176866 -k184,30:20451751,26449809:176867 -k184,30:21437988,26449809:176867 -k184,30:22582165,26449809:176866 -k184,30:24481974,26449809:176867 -k184,30:25383668,26449809:176866 -k184,30:26845041,26449809:176867 -k184,30:27234877,26449809:176844 -k184,30:28516026,26449809:176867 -k184,30:29890235,26449809:176866 -k184,30:30422962,26449809:176867 -k184,30:32583029,26449809:0 -) -(184,31:6630773,27291297:25952256,505283,134348 -k184,30:12721930,27291297:171290 -k184,30:13106183,27291297:171261 -k184,30:15628905,27291297:171290 -k184,30:17635203,27291297:171290 -k184,30:18825577,27291297:171289 -k184,30:21769040,27291297:171290 -k184,30:23270711,27291297:171290 -k184,30:24917215,27291297:171289 -k184,30:26935310,27291297:171290 -k184,30:28125684,27291297:171289 -k184,30:31391584,27291297:171290 -k184,30:32583029,27291297:0 -) -(184,31:6630773,28132785:25952256,505283,126483 -k184,30:8759634,28132785:215210 -k184,30:9993929,28132785:215210 -k184,30:13215931,28132785:215210 -k184,30:14715647,28132785:215210 -k184,30:16406072,28132785:215210 -k184,30:18777417,28132785:215210 -k184,30:19959938,28132785:215210 -k184,30:21789955,28132785:215210 -k184,30:23208406,28132785:215210 -k184,30:24649795,28132785:215210 -k184,30:26056450,28132785:215210 -k184,30:28514302,28132785:215210 -k184,30:29748597,28132785:215210 -k184,30:32583029,28132785:0 -) -(184,31:6630773,28974273:25952256,513147,126483 -k184,30:8028844,28974273:206626 -k184,30:9939406,28974273:206626 -k184,30:10805324,28974273:206626 -k184,30:13766428,28974273:206626 -k184,30:16810763,28974273:206626 -k184,30:17230374,28974273:206619 -k184,30:18912215,28974273:206626 -k184,30:20404657,28974273:206626 -k184,30:23254350,28974273:206626 -k184,30:24849029,28974273:206626 -k184,30:25865025,28974273:206626 -k184,30:28049528,28974273:206626 -k184,30:30568920,28974273:206626 -k184,30:31966991,28974273:206626 -k184,30:32583029,28974273:0 -) -(184,31:6630773,29815761:25952256,513147,134348 -k184,30:9073693,29815761:246809 -k184,30:10888122,29815761:246808 -k184,30:14359958,29815761:246809 -k184,30:16916255,29815761:246808 -k184,30:19542676,29815761:246809 -k184,30:21357105,29815761:246808 -k184,30:24323003,29815761:246809 -k184,30:26512298,29815761:246808 -k184,30:27752633,29815761:246809 -k184,30:31208739,29815761:246808 -k184,30:32583029,29815761:0 -) -(184,31:6630773,30657249:25952256,505283,134348 -k184,30:8819794,30657249:282579 -k184,30:11188384,30657249:282579 -k184,30:13963298,30657249:282580 -k184,30:17123563,30657249:282579 -k184,30:20439148,30657249:282579 -k184,30:21913172,30657249:282579 -k184,30:22957279,30657249:282579 -k184,30:26474060,30657249:282579 -k184,30:27408068,30657249:282580 -k184,30:29325115,30657249:282579 -k184,30:31299834,30657249:282579 -k184,30:32583029,30657249:0 -) -(184,31:6630773,31498737:25952256,505283,126483 -k184,30:9846756,31498737:209191 -k184,30:10865316,31498737:209190 -k184,30:12055581,31498737:209191 -k184,30:13768823,31498737:209191 -k184,30:14605849,31498737:209191 -k184,30:16566816,31498737:209190 -k184,30:18344284,31498737:209191 -k184,30:19756716,31498737:209191 -k184,30:21192086,31498737:209191 -k184,30:22994456,31498737:209190 -k184,30:24986882,31498737:209191 -k184,30:26846270,31498737:209191 -k184,30:27706889,31498737:209191 -k184,30:30051897,31498737:209190 -k184,30:31591469,31498737:209191 -k184,30:32583029,31498737:0 -) -(184,31:6630773,32340225:25952256,513147,126483 -k184,30:7883298,32340225:186254 -k184,30:10525186,32340225:186254 -k184,30:12153887,32340225:186254 -k184,30:12991570,32340225:186255 -k184,30:15480104,32340225:186254 -k184,30:18601060,32340225:186254 -k184,30:19473476,32340225:186254 -k184,30:19872709,32340225:186241 -k184,30:21034794,32340225:186254 -k184,30:22240133,32340225:186254 -k184,30:23583097,32340225:186254 -k184,30:25099733,32340225:186255 -k184,30:26386992,32340225:186254 -k184,30:28859797,32340225:186254 -k184,30:30249292,32340225:186254 -k184,30:32583029,32340225:0 -) -(184,31:6630773,33181713:25952256,513147,126483 -k184,30:8052251,33181713:230033 -k184,30:10773964,33181713:230034 -k184,30:12552613,33181713:230033 -k184,30:13434075,33181713:230034 -k184,30:16001777,33181713:230033 -k184,30:17423256,33181713:230034 -k184,30:20260967,33181713:230033 -k184,30:21177163,33181713:230034 -k184,30:23706199,33181713:230033 -k184,30:24149194,33181713:230003 -k184,30:25731890,33181713:230033 -k184,30:27051788,33181713:230034 -k184,30:31635378,33181713:230033 -k184,30:32583029,33181713:0 -) -(184,31:6630773,34023201:25952256,505283,126483 -g184,30:7961809,34023201 -g184,30:10098282,34023201 -g184,30:11488956,34023201 -k184,31:32583028,34023201:17009868 -g184,31:32583028,34023201 -) -(184,33:6630773,34864689:25952256,505283,134348 -h184,32:6630773,34864689:983040,0,0 -k184,32:9158785,34864689:162818 -k184,32:10796818,34864689:162818 -k184,32:11172592,34864689:162782 -k184,32:13570844,34864689:162819 -k184,32:14752747,34864689:162818 -k184,32:16183031,34864689:162818 -k184,32:18480357,34864689:162818 -k184,32:19266422,34864689:162818 -k184,32:20207153,34864689:162819 -k184,32:20768430,34864689:162818 -k184,32:24685151,34864689:162818 -k184,32:26228813,34864689:162818 -k184,32:27973670,34864689:162818 -k184,32:28667986,34864689:162819 -k184,32:30685473,34864689:162818 -k184,32:31657661,34864689:162818 -k184,33:32583029,34864689:0 -) -(184,33:6630773,35706177:25952256,505283,134348 -k184,32:9749512,35706177:186658 -k184,32:11127615,35706177:186658 -k184,32:13851828,35706177:186659 -k184,32:15322992,35706177:186658 -k184,32:17016978,35706177:186658 -k184,32:17816398,35706177:186658 -k184,32:20701829,35706177:186658 -k184,32:21539915,35706177:186658 -k184,32:24155994,35706177:186659 -k184,32:26684909,35706177:186658 -k184,32:29178434,35706177:186658 -k184,32:32583029,35706177:0 -) -(184,33:6630773,36547665:25952256,513147,134348 -k184,32:7671394,36547665:231251 -k184,32:9292007,36547665:231250 -k184,32:11258651,36547665:231251 -k184,32:12508987,36547665:231251 -k184,32:13155048,36547665:231218 -k184,32:16402266,36547665:231251 -k184,32:17103409,36547665:231250 -k184,32:19750317,36547665:231251 -k184,32:20790938,36547665:231251 -k184,32:22041273,36547665:231250 -k184,32:25288491,36547665:231251 -k184,32:27471404,36547665:231251 -k184,32:29145101,36547665:231250 -k184,32:30185722,36547665:231251 -k184,32:32583029,36547665:0 -) -(184,33:6630773,37389153:25952256,513147,134348 -k184,32:8515261,37389153:168100 -k184,32:9342652,37389153:168099 -k184,32:10900115,37389153:168100 -k184,32:13796479,37389153:168100 -k184,32:15156024,37389153:168100 -k184,32:17859711,37389153:168099 -k184,32:19046896,37389153:168100 -k184,32:21262996,37389153:168100 -k184,32:22082523,37389153:168099 -k184,32:24594846,37389153:168100 -k184,32:26585502,37389153:168100 -k184,32:27945047,37389153:168100 -k184,32:29606056,37389153:168099 -k184,32:30840427,37389153:168100 -k184,32:32583029,37389153:0 -) -(184,33:6630773,38230641:25952256,513147,134348 -k184,32:7869450,38230641:219592 -k184,32:10120659,38230641:219593 -k184,32:10999543,38230641:219592 -k184,32:12238220,38230641:219592 -k184,32:15473780,38230641:219593 -k184,32:17476607,38230641:219592 -k184,32:18564552,38230641:219593 -k184,32:19876629,38230641:219592 -k184,32:21193949,38230641:219592 -k184,32:23346854,38230641:219593 -k184,32:26408742,38230641:219592 -k184,32:27244372,38230641:219592 -k184,32:30302985,38230641:219593 -k184,32:31714677,38230641:219592 -k184,32:32583029,38230641:0 -) -(184,33:6630773,39072129:25952256,513147,134348 -k184,32:7635944,39072129:189903 -k184,32:8892118,39072129:189903 -k184,32:10762364,39072129:189903 -k184,32:12774823,39072129:189903 -k184,32:15867316,39072129:189903 -k184,32:17643190,39072129:189903 -k184,32:18515978,39072129:189903 -k184,32:21498370,39072129:189903 -k184,32:24793369,39072129:189903 -k184,32:27054210,39072129:189903 -k184,32:28191764,39072129:189903 -k184,32:29400752,39072129:189903 -k184,32:31900144,39072129:189903 -k184,32:32583029,39072129:0 -) -(184,33:6630773,39913617:25952256,513147,134348 -k184,32:10213261,39913617:260468 -k184,32:13804270,39913617:260469 -k184,32:14989451,39913617:260468 -k184,32:16426946,39913617:260468 -k184,32:17218912,39913617:260469 -k184,32:18427031,39913617:260468 -k184,32:19890740,39913617:260468 -k184,32:21733248,39913617:260469 -k184,32:22645144,39913617:260468 -k184,32:24293665,39913617:260468 -k184,32:25724607,39913617:260469 -k184,32:27563182,39913617:260468 -k184,32:28475078,39913617:260468 -k184,32:29828032,39913617:260469 -k184,32:30503282,39913617:260407 -k184,32:31379788,39913617:260468 -k184,32:32583029,39913617:0 -) -(184,33:6630773,40755105:25952256,513147,126483 -k184,32:8514277,40755105:230031 -k184,32:10155955,40755105:230032 -k184,32:11037414,40755105:230031 -k184,32:13710627,40755105:230031 -k184,32:15809090,40755105:230032 -k184,32:16655159,40755105:230031 -k184,32:17473704,40755105:230032 -k184,32:18900422,40755105:230031 -k184,32:20712492,40755105:230031 -k184,32:21474021,40755105:230032 -k184,32:25056219,40755105:230031 -k184,32:27575423,40755105:230031 -k184,32:28824540,40755105:230032 -k184,32:31923737,40755105:230031 -k184,32:32583029,40755105:0 -) -(184,33:6630773,41596593:25952256,505283,134348 -k184,32:9942962,41596593:139591 -k184,32:11476505,41596593:139592 -k184,32:14033719,41596593:139591 -k184,32:15771079,41596593:139592 -k184,32:17195176,41596593:139591 -k184,32:20192137,41596593:139591 -k184,32:21350814,41596593:139592 -k184,32:24204251,41596593:139591 -k184,32:26979046,41596593:139592 -k184,32:29410431,41596593:139591 -k184,32:32583029,41596593:0 -) -(184,33:6630773,42438081:25952256,505283,134348 -g184,32:7976227,42438081 -g184,32:10486911,42438081 -g184,32:11877585,42438081 -g184,32:13095899,42438081 -g184,32:13709971,42438081 -k184,33:32583029,42438081:15857091 -g184,33:32583029,42438081 -) -(184,36:6630773,43279569:25952256,505283,134348 -h184,35:6630773,43279569:983040,0,0 -k184,35:8013431,43279569:186626 -k184,35:11492599,43279569:186639 -k184,35:12824807,43279569:186639 -k184,35:13611100,43279569:186639 -k184,35:16799287,43279569:186638 -k184,35:17400102,43279569:186627 -k184,35:18672016,43279569:186638 -k184,35:19257114,43279569:186639 -k184,35:20953703,43279569:186639 -k184,35:24769726,43279569:186639 -k184,35:25847655,43279569:186639 -k184,35:26709314,43279569:186638 -k184,35:27956981,43279569:186639 -k184,35:30422962,43279569:186639 -k184,35:32583029,43279569:0 -) -(184,36:6630773,44121057:25952256,513147,134348 -k184,35:8559017,44121057:234138 -k184,35:10037028,44121057:234138 -k184,35:12917510,44121057:234138 -k184,35:13751302,44121057:234138 -k184,35:15950865,44121057:234138 -k184,35:16950464,44121057:234138 -k184,35:18197789,44121057:234138 -k184,35:21165435,44121057:234139 -k184,35:22558250,44121057:234138 -k184,35:24318066,44121057:234138 -k184,35:25762654,44121057:234138 -k184,35:27169231,44121057:234138 -k184,35:29701717,44121057:234138 -k184,35:31299004,44121057:234138 -k184,35:32121000,44121057:234138 -k184,35:32583029,44121057:0 -) -] -(184,37:32583029,45706769:0,0,0 -g184,37:32583029,45706769 -) -) -] -(184,37:6630773,47279633:25952256,0,0 -h184,37:6630773,47279633:25952256,0,0 -) -] -(184,37:4262630,4025873:0,0,0 -[184,37:-473656,4025873:0,0,0 -(184,37:-473656,-710413:0,0,0 -(184,37:-473656,-710413:0,0,0 -g184,37:-473656,-710413 -) -g184,37:-473656,-710413 -) -] -) -] -!25110 -}10 -!11 -{11 -[184,53:4262630,47279633:28320399,43253760,0 -(184,53:4262630,4025873:0,0,0 -[184,53:-473656,4025873:0,0,0 -(184,53:-473656,-710413:0,0,0 -(184,53:-473656,-644877:0,0,0 -k184,53:-473656,-644877:-65536 -) -(184,53:-473656,4736287:0,0,0 -k184,53:-473656,4736287:5209943 -) -g184,53:-473656,-710413 -) -] -) -[184,53:6630773,47279633:25952256,43253760,0 -[184,53:6630773,4812305:25952256,786432,0 -(184,53:6630773,4812305:25952256,513147,126483 -(184,53:6630773,4812305:25952256,513147,126483 -g184,53:3078558,4812305 -[184,53:3078558,4812305:0,0,0 -(184,53:3078558,2439708:0,1703936,0 -k184,53:1358238,2439708:-1720320 -(184,1:1358238,2439708:1720320,1703936,0 -(184,1:1358238,2439708:1179648,16384,0 -r184,53:2537886,2439708:1179648,16384,0 -) -g184,1:3062174,2439708 -(184,1:3062174,2439708:16384,1703936,0 -[184,1:3062174,2439708:25952256,1703936,0 -(184,1:3062174,1915420:25952256,1179648,0 -(184,1:3062174,1915420:16384,1179648,0 -r184,53:3078558,1915420:16384,1179648,0 -) -k184,1:29014430,1915420:25935872 -g184,1:29014430,1915420 -) -] -) -) -) -] -[184,53:3078558,4812305:0,0,0 -(184,53:3078558,2439708:0,1703936,0 -g184,53:29030814,2439708 -g184,53:36135244,2439708 -(184,1:36135244,2439708:1720320,1703936,0 -(184,1:36135244,2439708:16384,1703936,0 -[184,1:36135244,2439708:25952256,1703936,0 -(184,1:36135244,1915420:25952256,1179648,0 -(184,1:36135244,1915420:16384,1179648,0 -r184,53:36151628,1915420:16384,1179648,0 -) -k184,1:62087500,1915420:25935872 -g184,1:62087500,1915420 -) -] -) -g184,1:36675916,2439708 -(184,1:36675916,2439708:1179648,16384,0 -r184,53:37855564,2439708:1179648,16384,0 -) -) -k184,53:3078556,2439708:-34777008 -) -] -[184,53:3078558,4812305:0,0,0 -(184,53:3078558,49800853:0,16384,2228224 -k184,53:1358238,49800853:-1720320 -(184,1:1358238,49800853:1720320,16384,2228224 -(184,1:1358238,49800853:1179648,16384,0 -r184,53:2537886,49800853:1179648,16384,0 -) -g184,1:3062174,49800853 -(184,1:3062174,52029077:16384,1703936,0 -[184,1:3062174,52029077:25952256,1703936,0 -(184,1:3062174,51504789:25952256,1179648,0 -(184,1:3062174,51504789:16384,1179648,0 -r184,53:3078558,51504789:16384,1179648,0 -) -k184,1:29014430,51504789:25935872 -g184,1:29014430,51504789 -) -] -) -) -) -] -[184,53:3078558,4812305:0,0,0 -(184,53:3078558,49800853:0,16384,2228224 -g184,53:29030814,49800853 -g184,53:36135244,49800853 -(184,1:36135244,49800853:1720320,16384,2228224 -(184,1:36135244,52029077:16384,1703936,0 -[184,1:36135244,52029077:25952256,1703936,0 -(184,1:36135244,51504789:25952256,1179648,0 -(184,1:36135244,51504789:16384,1179648,0 -r184,53:36151628,51504789:16384,1179648,0 -) -k184,1:62087500,51504789:25935872 -g184,1:62087500,51504789 -) -] -) -g184,1:36675916,49800853 -(184,1:36675916,49800853:1179648,16384,0 -r184,53:37855564,49800853:1179648,16384,0 -) -) -k184,53:3078556,49800853:-34777008 -) -] -g184,53:6630773,4812305 -k184,53:30249947,4812305:22695772 -) -) -] -[184,53:6630773,45706769:25952256,40108032,0 -(184,53:6630773,45706769:25952256,40108032,0 -(184,53:6630773,45706769:0,0,0 -g184,53:6630773,45706769 -) -[184,53:6630773,45706769:25952256,40108032,0 -(184,36:6630773,6254097:25952256,513147,134348 -k184,35:7827373,6254097:210939 -k184,35:9797297,6254097:210938 -k184,35:11263250,6254097:210939 -k184,35:13851834,6254097:210938 -k184,35:15273223,6254097:210939 -k184,35:19085364,6254097:210938 -k184,35:20633893,6254097:210939 -k184,35:21243290,6254097:210938 -k184,35:23431450,6254097:210939 -k184,35:24104417,6254097:210938 -k184,35:25460925,6254097:210939 -k184,35:26638519,6254097:210938 -k184,35:27247917,6254097:210939 -k184,35:28739429,6254097:210938 -k184,35:31245439,6254097:210939 -k184,35:32583029,6254097:0 -) -(184,36:6630773,7095585:25952256,505283,134348 -g184,35:7228461,7095585 -g184,35:9231241,7095585 -g184,35:10030124,7095585 -g184,35:11939843,7095585 -g184,35:13124733,7095585 -k184,36:13124733,7095585:39322 -k184,36:32583028,7095585:17097688 -g184,36:32583028,7095585 -) -(184,37:6630773,9903153:25952256,32768,229376 -(184,37:6630773,9903153:0,32768,229376 -(184,37:6630773,9903153:5505024,32768,229376 -r184,53:12135797,9903153:5505024,262144,229376 -) -k184,37:6630773,9903153:-5505024 -) -(184,37:6630773,9903153:25952256,32768,0 -r184,53:32583029,9903153:25952256,32768,0 -) -) -(184,37:6630773,11507481:25952256,606339,161218 -(184,37:6630773,11507481:0,0,0 -g184,37:6630773,11507481 -) -k184,37:32583028,11507481:18137480 -g184,37:32583028,11507481 -) -(184,39:6630773,12742185:25952256,513147,134348 -k184,38:8335135,12742185:268468 -k184,38:8816526,12742185:268399 -k184,38:10920003,12742185:268469 -k184,38:13356402,12742185:268468 -k184,38:16665085,12742185:268468 -k184,38:17881205,12742185:268469 -k184,38:21864909,12742185:268468 -k184,38:23100689,12742185:268469 -k184,38:24020585,12742185:268468 -k184,38:25308138,12742185:268468 -k184,38:27010535,12742185:268469 -k184,38:28562198,12742185:268468 -k184,38:29419180,12742185:268469 -k184,38:31563944,12742185:268468 -k184,38:32583029,12742185:0 -) -(184,39:6630773,13583673:25952256,513147,126483 -k184,38:8139630,13583673:270882 -k184,38:10162289,13583673:270882 -k184,38:11711779,13583673:270883 -k184,38:14120445,13583673:270882 -k184,38:15582772,13583673:270882 -k184,38:16919925,13583673:270882 -k184,38:17915635,13583673:270882 -k184,38:20566785,13583673:270882 -k184,38:23193687,13583673:270883 -k184,38:24939784,13583673:270882 -k184,38:28236463,13583673:270882 -k184,38:29488419,13583673:270882 -k184,38:32583029,13583673:0 -) -(184,39:6630773,14425161:25952256,513147,134348 -k184,38:7491697,14425161:244886 -k184,38:9848153,14425161:244886 -k184,38:11284485,14425161:244887 -k184,38:13179568,14425161:244886 -k184,38:15979047,14425161:244886 -k184,38:16839971,14425161:244886 -k184,38:21690072,14425161:244886 -k184,38:22752847,14425161:244886 -k184,38:24423142,14425161:244887 -k184,38:26208124,14425161:244886 -k184,38:27388209,14425161:244886 -k184,38:30881059,14425161:244886 -k184,38:32583029,14425161:0 -) -(184,39:6630773,15266649:25952256,513147,134348 -k184,38:9514521,15266649:243958 -k184,38:13026758,15266649:243957 -k184,38:14737412,15266649:243958 -k184,38:15597408,15266649:243958 -k184,38:16860450,15266649:243957 -k184,38:19632132,15266649:243958 -k184,38:21067535,15266649:243958 -k184,38:21927530,15266649:243957 -k184,38:24541270,15266649:243958 -k184,38:27189744,15266649:243958 -k184,38:28452786,15266649:243957 -k184,38:30954459,15266649:243958 -k184,38:32583029,15266649:0 -) -(184,39:6630773,16108137:25952256,513147,134348 -k184,38:7777191,16108137:198767 -k184,38:8943269,16108137:198767 -k184,38:9793463,16108137:198766 -k184,38:11669952,16108137:198767 -k184,38:13136185,16108137:198767 -k184,38:14354037,16108137:198767 -k184,38:16743672,16108137:198766 -k184,38:17601731,16108137:198767 -k184,38:18819583,16108137:198767 -k184,38:19433192,16108137:198766 -k184,38:22647926,16108137:198767 -k184,38:23620673,16108137:198767 -k184,38:26102058,16108137:198766 -k184,38:26513817,16108137:198767 -k184,38:27911237,16108137:198766 -k184,38:29088457,16108137:198767 -k184,38:31015408,16108137:198767 -k184,38:32583029,16108137:0 -) -(184,39:6630773,16949625:25952256,513147,126483 -k184,38:8280972,16949625:224791 -k184,38:9157192,16949625:224792 -k184,38:10807391,16949625:224791 -k184,38:12223627,16949625:224791 -k184,38:13527142,16949625:224792 -k184,38:14699584,16949625:224791 -k184,38:16486099,16949625:224792 -k184,38:16923856,16949625:224765 -k184,38:18615999,16949625:224792 -k184,38:19492218,16949625:224791 -k184,38:22068441,16949625:224791 -k184,38:24128241,16949625:224792 -k184,38:25119148,16949625:224791 -k184,38:26363025,16949625:224792 -k184,38:28723634,16949625:224791 -k184,38:29161392,16949625:224766 -k184,38:30861398,16949625:224791 -k184,39:32583029,16949625:0 -) -(184,39:6630773,17791113:25952256,513147,134348 -k184,38:8502431,17791113:157236 -k184,38:10053618,17791113:157236 -k184,38:10826892,17791113:157236 -k184,38:13448281,17791113:157235 -k184,38:14256945,17791113:157236 -k184,38:15032841,17791113:157236 -k184,38:18170654,17791113:157236 -k184,38:21281598,17791113:157236 -k184,38:22098126,17791113:157236 -k184,38:23236435,17791113:157235 -k184,38:24724052,17791113:157236 -k184,38:27587270,17791113:157236 -k184,38:29810856,17791113:157236 -k184,38:32583029,17791113:0 -) -(184,39:6630773,18632601:25952256,505283,134348 -k184,38:10908581,18632601:196226 -k184,38:11720845,18632601:196226 -k184,38:12936157,18632601:196227 -k184,38:15571633,18632601:196226 -k184,38:15980848,18632601:196223 -k184,38:17652289,18632601:196226 -k184,38:20095746,18632601:196227 -k184,38:23600229,18632601:196226 -k184,38:24009444,18632601:196223 -k184,38:25680886,18632601:196227 -k184,38:29835487,18632601:196226 -k184,38:31599334,18632601:196226 -k184,39:32583029,18632601:0 -) -(184,39:6630773,19474089:25952256,513147,126483 -k184,38:8484258,19474089:168554 -k184,38:9312104,19474089:168554 -k184,38:10499743,19474089:168554 -k184,38:12580638,19474089:168554 -k184,38:12962154,19474089:168524 -k184,38:14605923,19474089:168554 -k184,38:16186778,19474089:168554 -k184,38:17546777,19474089:168554 -k184,38:19851149,19474089:168554 -k184,38:20232665,19474089:168524 -k184,38:21876434,19474089:168554 -k184,38:23420589,19474089:168554 -k184,38:24813356,19474089:168554 -k184,38:26959787,19474089:168554 -k184,38:27811226,19474089:168554 -k184,38:28592542,19474089:168554 -k184,38:32583029,19474089:0 -) -(184,39:6630773,20315577:25952256,513147,126483 -k184,38:7736596,20315577:207980 -k184,38:8603869,20315577:207981 -k184,38:10450904,20315577:207980 -k184,38:12134099,20315577:207980 -k184,38:14085993,20315577:207981 -k184,38:14752070,20315577:207980 -k184,38:17590010,20315577:207980 -k184,38:18745642,20315577:207981 -k184,38:19920933,20315577:207980 -k184,38:20780342,20315577:207981 -k184,38:22603129,20315577:207980 -k184,38:24014350,20315577:207980 -k184,38:25978041,20315577:207981 -k184,38:27566865,20315577:207980 -k184,38:28875850,20315577:207980 -k184,38:30593781,20315577:207981 -k184,38:31157621,20315577:207980 -k184,38:32583029,20315577:0 -) -(184,39:6630773,21157065:25952256,513147,134348 -k184,38:10360482,21157065:231397 -k184,38:13932903,21157065:231396 -k184,38:16049771,21157065:231397 -k184,38:17382172,21157065:231396 -k184,38:19031113,21157065:231397 -k184,38:20229821,21157065:231397 -k184,38:21507172,21157065:231396 -k184,38:23490346,21157065:231397 -k184,38:25564614,21157065:231396 -k184,38:27389847,21157065:231397 -k184,38:29188864,21157065:231396 -k184,38:30401335,21157065:231397 -k184,38:32583029,21157065:0 -) -(184,39:6630773,21998553:25952256,513147,134348 -k184,38:7543943,21998553:188342 -k184,38:7945266,21998553:188331 -k184,38:10893984,21998553:188342 -k184,38:12917334,21998553:188342 -k184,38:14940684,21998553:188342 -k184,38:16654704,21998553:188342 -k184,38:18034491,21998553:188342 -k184,38:20357996,21998553:188342 -k184,38:21493989,21998553:188342 -k184,38:23190970,21998553:188342 -k184,38:28208005,21998553:188342 -k184,38:28609328,21998553:188331 -k184,38:29773501,21998553:188342 -k184,38:32583029,21998553:0 -) -(184,39:6630773,22840041:25952256,505283,134348 -k184,38:7507168,22840041:224967 -k184,38:9393473,22840041:224967 -k184,38:11570758,22840041:224967 -k184,38:13301087,22840041:224967 -k184,38:16955553,22840041:224967 -k184,38:20467806,22840041:224967 -k184,38:24040352,22840041:224967 -k184,38:25769370,22840041:224967 -k184,38:27919129,22840041:224967 -k184,38:29359134,22840041:224967 -k184,38:30972809,22840041:224967 -k184,38:32583029,22840041:0 -) -(184,39:6630773,23681529:25952256,513147,134348 -k184,38:7976948,23681529:170459 -k184,38:10492941,23681529:170459 -k184,38:12813636,23681529:170459 -k184,38:14686065,23681529:170459 -k184,38:18338451,23681529:170458 -k184,38:21281083,23681529:170459 -k184,38:22642987,23681529:170459 -k184,38:26514264,23681529:170459 -k184,38:29713142,23681529:170459 -k184,38:30831252,23681529:170459 -k184,38:32583029,23681529:0 -) -(184,39:6630773,24523017:25952256,513147,126483 -k184,38:8191900,24523017:207153 -k184,38:10671842,24523017:207153 -k184,38:14196428,24523017:207154 -k184,38:15212951,24523017:207153 -k184,38:18182447,24523017:207153 -k184,38:21053639,24523017:207153 -k184,38:21920084,24523017:207153 -k184,38:23146322,24523017:207153 -k184,38:24935515,24523017:207154 -k184,38:28952931,24523017:207153 -k184,38:30400025,24523017:207153 -k184,38:32583029,24523017:0 -) -(184,39:6630773,25364505:25952256,513147,134348 -k184,38:7557288,25364505:240353 -k184,38:9880376,25364505:240354 -k184,38:11068380,25364505:240353 -k184,38:12255073,25364505:240353 -k184,38:17405383,25364505:240353 -k184,38:18837182,25364505:240354 -k184,38:21755336,25364505:240353 -k184,38:24109880,25364505:240353 -k184,38:25369318,25364505:240353 -k184,38:27492521,25364505:240354 -k184,38:30480143,25364505:240353 -k184,38:31379788,25364505:240353 -k184,38:32583029,25364505:0 -) -(184,39:6630773,26205993:25952256,513147,134348 -k184,38:8364049,26205993:151237 -k184,38:10773001,26205993:151237 -k184,38:13366108,26205993:151236 -k184,38:14882460,26205993:151237 -k184,38:17560110,26205993:151237 -k184,38:20233828,26205993:151237 -k184,38:22319031,26205993:151236 -k184,38:23661713,26205993:151237 -k184,38:25164302,26205993:151237 -k184,38:26891025,26205993:151237 -k184,38:27989912,26205993:151236 -k184,38:29649788,26205993:151237 -k184,38:31189078,26205993:151237 -k184,38:32583029,26205993:0 -) -(184,39:6630773,27047481:25952256,513147,134348 -g184,38:9592345,27047481 -g184,38:12166599,27047481 -g184,38:13025120,27047481 -g184,38:14427590,27047481 -k184,39:32583029,27047481:15713568 -g184,39:32583029,27047481 -) -(184,40:6630773,29855049:25952256,32768,229376 -(184,40:6630773,29855049:0,32768,229376 -(184,40:6630773,29855049:5505024,32768,229376 -r184,53:12135797,29855049:5505024,262144,229376 -) -k184,40:6630773,29855049:-5505024 -) -(184,40:6630773,29855049:25952256,32768,0 -r184,53:32583029,29855049:25952256,32768,0 -) -) -(184,40:6630773,31459377:25952256,615776,9436 -(184,40:6630773,31459377:0,0,0 -g184,40:6630773,31459377 -) -g184,40:8987710,31459377 -g184,40:11114222,31459377 -g184,40:12150740,31459377 -g184,40:14471501,31459377 -g184,40:18144925,31459377 -k184,40:32583029,31459377:11444944 -g184,40:32583029,31459377 -) -(184,43:6630773,32694081:25952256,513147,134348 -k184,42:8259342,32694081:224788 -k184,42:10321761,32694081:224789 -k184,42:11538109,32694081:224788 -k184,42:13276123,32694081:224788 -k184,42:17125708,32694081:224789 -k184,42:18369581,32694081:224788 -k184,42:20176408,32694081:224788 -k184,42:21052625,32694081:224789 -k184,42:24134783,32694081:224788 -k184,42:26778505,32694081:224788 -k184,42:28287800,32694081:224789 -k184,42:30185722,32694081:224788 -k184,42:32583029,32694081:0 -) -(184,43:6630773,33535569:25952256,513147,134348 -k184,42:8355529,33535569:159101 -k184,42:9130668,33535569:159101 -k184,42:10308855,33535569:159102 -k184,42:13069735,33535569:159101 -k184,42:15673984,33535569:159101 -k184,42:16515970,33535569:159101 -k184,42:17959578,33535569:159102 -k184,42:20410473,33535569:159101 -k184,42:22763719,33535569:159101 -k184,42:25822133,33535569:159101 -k184,42:27548856,33535569:159102 -k184,42:28727042,33535569:159101 -k184,42:31107814,33535569:159101 -k184,42:32583029,33535569:0 -) -(184,43:6630773,34377057:25952256,513147,126483 -k184,42:7965217,34377057:174457 -k184,42:10841723,34377057:174457 -k184,42:12172889,34377057:174456 -k184,42:13006638,34377057:174457 -k184,42:14316179,34377057:174457 -k184,42:17252979,34377057:174457 -k184,42:19101881,34377057:174457 -k184,42:20560843,34377057:174456 -k184,42:23266956,34377057:174457 -k184,42:24460498,34377057:174457 -k184,42:26021041,34377057:174457 -k184,42:26854790,34377057:174457 -k184,42:27817644,34377057:174456 -k184,42:30741336,34377057:174457 -k184,42:31601955,34377057:174457 -k184,43:32583029,34377057:0 -) -(184,43:6630773,35218545:25952256,505283,7863 -g184,42:9151943,35218545 -k184,42:32583029,35218545:21388984 -g184,43:32583029,35218545 -) -(184,43:6630773,36581044:25952256,0,0 -g184,43:6630773,36581044 -) -(184,46:6630773,37733954:25952256,1087374,134348 -k184,45:8164809,37733954:324333 -k184,45:10725885,37733954:324332 -k184,45:14732030,37733954:324333 -k184,45:16893992,37733954:324332 -k184,45:19103796,37733954:324333 -k184,45:21799876,37733954:324332 -k184,45:25865659,37733954:324333 -k184,45:31391584,37733954:324332 -k184,45:32583029,37733954:0 -) -(184,46:6630773,38575442:25952256,513147,126483 -g184,45:8810500,38575442 -g184,45:9676885,38575442 -g184,45:10290957,38575442 -g184,45:11986373,38575442 -g184,45:12837030,38575442 -g184,45:14379092,38575442 -g184,45:15972272,38575442 -g184,45:16784263,38575442 -g184,45:18002577,38575442 -g184,45:18616649,38575442 -k184,45:32583029,38575442:11372465 -g184,46:32583029,38575442 -) -(184,46:6630773,39937941:25952256,0,0 -g184,46:6630773,39937941 -) -(184,49:6630773,41287459:25952256,1283982,196608 -(184,48:6630773,41287459:0,1283982,196608 -r184,53:9196018,41287459:2565245,1480590,196608 -k184,48:6630773,41287459:-2565245 -) -(184,48:6630773,41287459:2565245,1283982,196608 -) -k184,48:9397794,41287459:201776 -k184,48:11836314,41287459:201776 -k184,48:15069785,41287459:201776 -k184,48:18953373,41287459:201776 -k184,48:20992779,41287459:201776 -k184,48:23080027,41287459:201777 -k184,48:24414265,41287459:201776 -k184,48:26907835,41287459:201776 -k184,48:28759808,41287459:201776 -k184,48:30386992,41287459:201776 -k184,48:31240196,41287459:201776 -k184,48:32583029,41287459:0 -) -(184,49:6630773,42128947:25952256,513147,134348 -g184,48:8223953,42128947 -g184,48:10465939,42128947 -g184,48:13424889,42128947 -g184,48:16455929,42128947 -g184,48:18097605,42128947 -g184,48:20570933,42128947 -g184,48:24451974,42128947 -k184,48:32583029,42128947:6119755 -g184,49:32583029,42128947 -) -(184,49:6630773,43491446:25952256,0,0 -g184,49:6630773,43491446 -) -(184,52:6630773,44642518:25952256,1085536,298548 -(184,51:6630773,44642518:0,1085536,298548 -r184,53:8137188,44642518:1506415,1384084,298548 -k184,51:6630773,44642518:-1506415 -) -(184,51:6630773,44642518:1506415,1085536,298548 -) -k184,51:8339896,44642518:202708 -k184,51:10779349,44642518:202709 -k184,51:14191355,44642518:202708 -k184,51:15582886,44642518:202708 -k184,51:16444887,44642518:202709 -k184,51:20454581,44642518:202708 -k184,51:21941796,44642518:202709 -k184,51:23766520,44642518:202708 -k184,51:24716994,44642518:202708 -k184,51:28946890,44642518:202709 -k184,51:30847636,44642518:202708 -k184,52:32583029,44642518:0 -) -(184,52:6630773,45484006:25952256,513147,134348 -g184,51:8969753,45484006 -g184,51:11479126,45484006 -g184,51:13370495,45484006 -g184,51:16120385,45484006 -g184,51:18595024,45484006 -g184,51:19453545,45484006 -g184,51:20671859,45484006 -k184,51:32583029,45484006:8895203 -g184,52:32583029,45484006 -) -] -(184,53:32583029,45706769:0,0,0 -g184,53:32583029,45706769 -) -) -] -(184,53:6630773,47279633:25952256,0,0 -h184,53:6630773,47279633:25952256,0,0 -) -] -(184,53:4262630,4025873:0,0,0 -[184,53:-473656,4025873:0,0,0 -(184,53:-473656,-710413:0,0,0 -(184,53:-473656,-710413:0,0,0 -g184,53:-473656,-710413 -) -g184,53:-473656,-710413 -) -] -) -] -!18521 -}11 -!11 -{12 -[1,124:4262630,47279633:28320399,43253760,0 -(1,124:4262630,4025873:0,0,0 -[1,124:-473656,4025873:0,0,0 -(1,124:-473656,-710413:0,0,0 -(1,124:-473656,-644877:0,0,0 -k1,124:-473656,-644877:-65536 -) -(1,124:-473656,4736287:0,0,0 -k1,124:-473656,4736287:5209943 -) -g1,124:-473656,-710413 -) -] -) -[1,124:6630773,47279633:25952256,43253760,0 -[1,124:6630773,4812305:25952256,786432,0 -(1,124:6630773,4812305:25952256,513147,126483 -(1,124:6630773,4812305:25952256,513147,126483 -g1,124:3078558,4812305 -[1,124:3078558,4812305:0,0,0 -(1,124:3078558,2439708:0,1703936,0 -k1,124:1358238,2439708:-1720320 -(184,1:1358238,2439708:1720320,1703936,0 -(184,1:1358238,2439708:1179648,16384,0 -r1,124:2537886,2439708:1179648,16384,0 -) -g184,1:3062174,2439708 -(184,1:3062174,2439708:16384,1703936,0 -[184,1:3062174,2439708:25952256,1703936,0 -(184,1:3062174,1915420:25952256,1179648,0 -(184,1:3062174,1915420:16384,1179648,0 -r1,124:3078558,1915420:16384,1179648,0 -) -k184,1:29014430,1915420:25935872 -g184,1:29014430,1915420 -) -] -) -) -) -] -[1,124:3078558,4812305:0,0,0 -(1,124:3078558,2439708:0,1703936,0 -g1,124:29030814,2439708 -g1,124:36135244,2439708 -(184,1:36135244,2439708:1720320,1703936,0 -(184,1:36135244,2439708:16384,1703936,0 -[184,1:36135244,2439708:25952256,1703936,0 -(184,1:36135244,1915420:25952256,1179648,0 -(184,1:36135244,1915420:16384,1179648,0 -r1,124:36151628,1915420:16384,1179648,0 -) -k184,1:62087500,1915420:25935872 -g184,1:62087500,1915420 -) -] -) -g184,1:36675916,2439708 -(184,1:36675916,2439708:1179648,16384,0 -r1,124:37855564,2439708:1179648,16384,0 -) -) -k1,124:3078556,2439708:-34777008 -) -] -[1,124:3078558,4812305:0,0,0 -(1,124:3078558,49800853:0,16384,2228224 -k1,124:1358238,49800853:-1720320 -(184,1:1358238,49800853:1720320,16384,2228224 -(184,1:1358238,49800853:1179648,16384,0 -r1,124:2537886,49800853:1179648,16384,0 -) -g184,1:3062174,49800853 -(184,1:3062174,52029077:16384,1703936,0 -[184,1:3062174,52029077:25952256,1703936,0 -(184,1:3062174,51504789:25952256,1179648,0 -(184,1:3062174,51504789:16384,1179648,0 -r1,124:3078558,51504789:16384,1179648,0 -) -k184,1:29014430,51504789:25935872 -g184,1:29014430,51504789 -) -] -) -) -) -] -[1,124:3078558,4812305:0,0,0 -(1,124:3078558,49800853:0,16384,2228224 -g1,124:29030814,49800853 -g1,124:36135244,49800853 -(184,1:36135244,49800853:1720320,16384,2228224 -(184,1:36135244,52029077:16384,1703936,0 -[184,1:36135244,52029077:25952256,1703936,0 -(184,1:36135244,51504789:25952256,1179648,0 -(184,1:36135244,51504789:16384,1179648,0 -r1,124:36151628,51504789:16384,1179648,0 -) -k184,1:62087500,51504789:25935872 -g184,1:62087500,51504789 -) -] -) -g184,1:36675916,49800853 -(184,1:36675916,49800853:1179648,16384,0 -r1,124:37855564,49800853:1179648,16384,0 -) -) -k1,124:3078556,49800853:-34777008 -) -] -g1,124:6630773,4812305 -g1,124:6630773,4812305 -g1,124:9163084,4812305 -k1,124:31860822,4812305:22697738 -) -) -] -[1,124:6630773,45706769:25952256,40108032,0 -(1,124:6630773,45706769:25952256,40108032,0 -(1,124:6630773,45706769:0,0,0 -g1,124:6630773,45706769 -) -[1,124:6630773,45706769:25952256,40108032,0 -(184,52:6630773,6254097:25952256,0,0 -g184,52:6630773,6254097 -) -(184,55:6630773,7481518:25952256,1161885,196608 -(184,54:6630773,7481518:0,1161885,196608 -r1,124:8178409,7481518:1547636,1358493,196608 -k184,54:6630773,7481518:-1547636 -) -(184,54:6630773,7481518:1547636,1161885,196608 -) -k184,54:8317700,7481518:139291 -k184,54:10693735,7481518:139291 -k184,54:13522624,7481518:139291 -k184,54:17724492,7481518:139291 -k184,54:18523075,7481518:139291 -k184,54:21059672,7481518:139290 -k184,54:23217472,7481518:139291 -k184,54:24641269,7481518:139291 -k184,54:26117494,7481518:139291 -k184,54:28548579,7481518:139291 -k184,54:29858343,7481518:139291 -k184,54:30649062,7481518:139291 -k184,54:32583029,7481518:0 -) -(184,55:6630773,8323006:25952256,513147,134348 -k184,54:8269828,8323006:213647 -k184,54:11327738,8323006:213647 -k184,54:13426856,8323006:213647 -k184,54:14256542,8323006:213648 -k184,54:16803271,8323006:213647 -k184,54:18121200,8323006:213647 -k184,54:19082613,8323006:213647 -k184,54:21829882,8323006:213647 -k184,54:22852899,8323006:213647 -k184,54:24372679,8323006:213647 -k184,54:27162547,8323006:213648 -k184,54:28448363,8323006:213647 -k184,54:29313438,8323006:213647 -k184,54:31412556,8323006:213647 -k184,54:32583029,8323006:0 -) -(184,55:6630773,9164494:25952256,513147,126483 -g184,54:9010385,9164494 -g184,54:11220259,9164494 -g184,54:12032250,9164494 -g184,54:12587339,9164494 -g184,54:14240157,9164494 -g184,54:17128984,9164494 -g184,54:18927291,9164494 -g184,54:22405942,9164494 -g184,54:23999122,9164494 -g184,54:24554211,9164494 -g184,54:25922602,9164494 -g184,54:26781123,9164494 -g184,54:28888760,9164494 -g184,54:29770874,9164494 -k184,54:32583029,9164494:1678382 -g184,55:32583029,9164494 -) -(184,55:6630773,10526993:25952256,0,0 -g184,55:6630773,10526993 -) -(184,60:6630773,11614875:25952256,1022346,134348 -k184,57:8085911,11614875:199625 -k184,57:10522279,11614875:199624 -k184,57:11948083,11614875:199625 -k184,57:13985337,11614875:199624 -k184,57:17257945,11614875:199625 -k184,57:19790651,11614875:199624 -k184,57:23797262,11614875:199625 -k184,57:25063158,11614875:199625 -k184,57:27677128,11614875:199624 -k184,57:30098424,11614875:199625 -k184,57:30949476,11614875:199624 -k184,57:32168186,11614875:199625 -k184,60:32583029,11614875:0 -) -(184,60:6630773,12456363:25952256,505283,134348 -k184,57:32583028,12456363:22936288 -g184,60:32583028,12456363 -) -(184,60:6630773,13818862:25952256,0,0 -g184,60:6630773,13818862 -) -] -(1,124:32583029,45706769:0,0,0 -g1,124:32583029,45706769 -) -) -] -(1,124:6630773,47279633:25952256,0,0 -h1,124:6630773,47279633:25952256,0,0 -) -] -(1,124:4262630,4025873:0,0,0 -[1,124:-473656,4025873:0,0,0 -(1,124:-473656,-710413:0,0,0 -(1,124:-473656,-710413:0,0,0 -g1,124:-473656,-710413 -) -g1,124:-473656,-710413 -) -] -) -] -!5697 -}12 -!10 -{13 -[1,127:4262630,47279633:28320399,43253760,0 -(1,127:4262630,4025873:0,0,0 -[1,127:-473656,4025873:0,0,0 -(1,127:-473656,-710413:0,0,0 -(1,127:-473656,-644877:0,0,0 -k1,127:-473656,-644877:-65536 -) -(1,127:-473656,4736287:0,0,0 -k1,127:-473656,4736287:5209943 -) -g1,127:-473656,-710413 -) -] -) -[1,127:6630773,47279633:25952256,43253760,0 -[1,127:6630773,4812305:25952256,786432,0 -(1,127:6630773,4812305:25952256,0,0 -(1,127:6630773,4812305:25952256,0,0 -g1,127:3078558,4812305 -[1,127:3078558,4812305:0,0,0 -(1,127:3078558,2439708:0,1703936,0 -k1,127:1358238,2439708:-1720320 -(1,127:1358238,2439708:1720320,1703936,0 -(1,127:1358238,2439708:1179648,16384,0 -r1,127:2537886,2439708:1179648,16384,0 -) -g1,127:3062174,2439708 -(1,127:3062174,2439708:16384,1703936,0 -[1,127:3062174,2439708:25952256,1703936,0 -(1,127:3062174,1915420:25952256,1179648,0 -(1,127:3062174,1915420:16384,1179648,0 -r1,127:3078558,1915420:16384,1179648,0 -) -k1,127:29014430,1915420:25935872 -g1,127:29014430,1915420 -) -] -) -) -) -] -[1,127:3078558,4812305:0,0,0 -(1,127:3078558,2439708:0,1703936,0 -g1,127:29030814,2439708 -g1,127:36135244,2439708 -(1,127:36135244,2439708:1720320,1703936,0 -(1,127:36135244,2439708:16384,1703936,0 -[1,127:36135244,2439708:25952256,1703936,0 -(1,127:36135244,1915420:25952256,1179648,0 -(1,127:36135244,1915420:16384,1179648,0 -r1,127:36151628,1915420:16384,1179648,0 -) -k1,127:62087500,1915420:25935872 -g1,127:62087500,1915420 -) -] -) -g1,127:36675916,2439708 -(1,127:36675916,2439708:1179648,16384,0 -r1,127:37855564,2439708:1179648,16384,0 -) -) -k1,127:3078556,2439708:-34777008 -) -] -[1,127:3078558,4812305:0,0,0 -(1,127:3078558,49800853:0,16384,2228224 -k1,127:1358238,49800853:-1720320 -(1,127:1358238,49800853:1720320,16384,2228224 -(1,127:1358238,49800853:1179648,16384,0 -r1,127:2537886,49800853:1179648,16384,0 -) -g1,127:3062174,49800853 -(1,127:3062174,52029077:16384,1703936,0 -[1,127:3062174,52029077:25952256,1703936,0 -(1,127:3062174,51504789:25952256,1179648,0 -(1,127:3062174,51504789:16384,1179648,0 -r1,127:3078558,51504789:16384,1179648,0 -) -k1,127:29014430,51504789:25935872 -g1,127:29014430,51504789 -) -] -) -) -) -] -[1,127:3078558,4812305:0,0,0 -(1,127:3078558,49800853:0,16384,2228224 -g1,127:29030814,49800853 -g1,127:36135244,49800853 -(1,127:36135244,49800853:1720320,16384,2228224 -(1,127:36135244,52029077:16384,1703936,0 -[1,127:36135244,52029077:25952256,1703936,0 -(1,127:36135244,51504789:25952256,1179648,0 -(1,127:36135244,51504789:16384,1179648,0 -r1,127:36151628,51504789:16384,1179648,0 -) -k1,127:62087500,51504789:25935872 -g1,127:62087500,51504789 -) -] -) -g1,127:36675916,49800853 -(1,127:36675916,49800853:1179648,16384,0 -r1,127:37855564,49800853:1179648,16384,0 -) -) -k1,127:3078556,49800853:-34777008 -) -] -g1,127:6630773,4812305 -) -) -] -[1,127:6630773,45706769:0,40108032,0 -(1,127:6630773,45706769:0,40108032,0 -(1,127:6630773,45706769:0,0,0 -g1,127:6630773,45706769 -) -[1,127:6630773,45706769:0,40108032,0 -h1,127:6630773,6254097:0,0,0 -] -(1,127:6630773,45706769:0,0,0 -g1,127:6630773,45706769 -) -) -] -(1,127:6630773,47279633:25952256,0,0 -h1,127:6630773,47279633:25952256,0,0 -) -] -(1,127:4262630,4025873:0,0,0 -[1,127:-473656,4025873:0,0,0 -(1,127:-473656,-710413:0,0,0 -(1,127:-473656,-710413:0,0,0 -g1,127:-473656,-710413 -) -g1,127:-473656,-710413 -) -] -) -] -!3216 -}13 -!10 -{14 -[1,155:4262630,47279633:28320399,43253760,0 -(1,155:4262630,4025873:0,0,0 -[1,155:-473656,4025873:0,0,0 -(1,155:-473656,-710413:0,0,0 -(1,155:-473656,-644877:0,0,0 -k1,155:-473656,-644877:-65536 -) -(1,155:-473656,4736287:0,0,0 -k1,155:-473656,4736287:5209943 -) -g1,155:-473656,-710413 -) -] -) -[1,155:6630773,47279633:25952256,43253760,0 -[1,155:6630773,4812305:25952256,786432,0 -(1,155:6630773,4812305:25952256,0,0 -(1,155:6630773,4812305:25952256,0,0 -g1,155:3078558,4812305 -[1,155:3078558,4812305:0,0,0 -(1,155:3078558,2439708:0,1703936,0 -k1,155:1358238,2439708:-1720320 -(1,135:1358238,2439708:1720320,1703936,0 -(1,135:1358238,2439708:1179648,16384,0 -r1,155:2537886,2439708:1179648,16384,0 -) -g1,135:3062174,2439708 -(1,135:3062174,2439708:16384,1703936,0 -[1,135:3062174,2439708:25952256,1703936,0 -(1,135:3062174,1915420:25952256,1179648,0 -(1,135:3062174,1915420:16384,1179648,0 -r1,155:3078558,1915420:16384,1179648,0 -) -k1,135:29014430,1915420:25935872 -g1,135:29014430,1915420 -) -] -) -) -) -] -[1,155:3078558,4812305:0,0,0 -(1,155:3078558,2439708:0,1703936,0 -g1,155:29030814,2439708 -g1,155:36135244,2439708 -(1,135:36135244,2439708:1720320,1703936,0 -(1,135:36135244,2439708:16384,1703936,0 -[1,135:36135244,2439708:25952256,1703936,0 -(1,135:36135244,1915420:25952256,1179648,0 -(1,135:36135244,1915420:16384,1179648,0 -r1,155:36151628,1915420:16384,1179648,0 -) -k1,135:62087500,1915420:25935872 -g1,135:62087500,1915420 -) -] -) -g1,135:36675916,2439708 -(1,135:36675916,2439708:1179648,16384,0 -r1,155:37855564,2439708:1179648,16384,0 -) -) -k1,155:3078556,2439708:-34777008 -) -] -[1,155:3078558,4812305:0,0,0 -(1,155:3078558,49800853:0,16384,2228224 -k1,155:1358238,49800853:-1720320 -(1,135:1358238,49800853:1720320,16384,2228224 -(1,135:1358238,49800853:1179648,16384,0 -r1,155:2537886,49800853:1179648,16384,0 -) -g1,135:3062174,49800853 -(1,135:3062174,52029077:16384,1703936,0 -[1,135:3062174,52029077:25952256,1703936,0 -(1,135:3062174,51504789:25952256,1179648,0 -(1,135:3062174,51504789:16384,1179648,0 -r1,155:3078558,51504789:16384,1179648,0 -) -k1,135:29014430,51504789:25935872 -g1,135:29014430,51504789 -) -] -) -) -) -] -[1,155:3078558,4812305:0,0,0 -(1,155:3078558,49800853:0,16384,2228224 -g1,155:29030814,49800853 -g1,155:36135244,49800853 -(1,135:36135244,49800853:1720320,16384,2228224 -(1,135:36135244,52029077:16384,1703936,0 -[1,135:36135244,52029077:25952256,1703936,0 -(1,135:36135244,51504789:25952256,1179648,0 -(1,135:36135244,51504789:16384,1179648,0 -r1,155:36151628,51504789:16384,1179648,0 -) -k1,135:62087500,51504789:25935872 -g1,135:62087500,51504789 -) -] -) -g1,135:36675916,49800853 -(1,135:36675916,49800853:1179648,16384,0 -r1,155:37855564,49800853:1179648,16384,0 -) -) -k1,155:3078556,49800853:-34777008 -) -] -g1,155:6630773,4812305 -) -) -] -[1,155:6630773,45706769:25952256,40108032,0 -(1,155:6630773,45706769:25952256,40108032,0 -(1,155:6630773,45706769:0,0,0 -g1,155:6630773,45706769 -) -[1,155:6630773,45706769:25952256,40108032,0 -[1,135:6630773,11644859:25952256,6046122,0 -(1,135:6630773,6614283:25952256,1146618,0 -h1,135:6630773,6614283:0,0,0 -k1,135:20096848,6614283:12486181 -k1,135:32583029,6614283:12486181 -) -(1,135:6630773,7314219:25952256,32768,229376 -(1,135:6630773,7314219:0,32768,229376 -(1,135:6630773,7314219:5505024,32768,229376 -r1,155:12135797,7314219:5505024,262144,229376 -) -k1,135:6630773,7314219:-5505024 -) -(1,135:6630773,7314219:25952256,32768,0 -r1,155:32583029,7314219:25952256,32768,0 -) -) -(1,135:6630773,9109915:25952256,909509,241827 -h1,135:6630773,9109915:0,0,0 -g1,135:8111231,9109915 -g1,135:10607366,9109915 -g1,135:16260239,9109915 -g1,135:18797662,9109915 -g1,135:20930466,9109915 -k1,135:29270578,9109915:3312452 -k1,135:32583029,9109915:3312451 -) -(1,135:6630773,9809851:25952256,32768,0 -(1,135:6630773,9809851:5505024,32768,0 -r1,155:12135797,9809851:5505024,32768,0 -) -k1,135:22359413,9809851:10223616 -k1,135:32583029,9809851:10223616 -) -] -(1,137:6630773,14537624:25952256,131072,0 -r1,155:32583029,14537624:25952256,131072,0 -g1,137:32583029,14537624 -g1,137:32583029,14537624 -) -(1,139:6630773,15857525:25952256,513147,134348 -k1,139:8596853,15857525:1966080 -k1,138:9474380,15857525:249692 -k1,138:10079932,15857525:249692 -k1,138:12159390,15857525:249693 -k1,138:13068374,15857525:249692 -k1,138:13973426,15857525:249692 -k1,138:17296101,15857525:249692 -k1,138:20313378,15857525:249692 -k1,138:21510721,15857525:249692 -k1,138:23410611,15857525:249693 -k1,138:24319595,15857525:249692 -k1,138:28106265,15857525:249692 -k1,138:29512667,15857525:249692 -k1,138:32583029,15857525:1966080 -) -(1,139:6630773,16699013:25952256,513147,134348 -k1,139:8596853,16699013:1966080 -k1,138:10084708,16699013:210558 -k1,138:11872717,16699013:210557 -k1,138:12742567,16699013:210558 -k1,138:13972210,16699013:210558 -k1,138:15804129,16699013:210558 -k1,138:23138449,16699013:210557 -k1,138:25524802,16699013:210558 -k1,138:32583029,16699013:1966080 -) -(1,139:6630773,17540501:25952256,513147,134348 -g1,139:8596853,17540501 -g1,138:10363703,17540501 -g1,138:11582017,17540501 -g1,138:14358777,17540501 -g1,138:15217298,17540501 -g1,138:17000532,17540501 -k1,139:30616949,17540501:10683681 -g1,139:32583029,17540501 -) -(1,140:6630773,19168421:25952256,505283,134348 -k1,140:20158061,19168421:13527288 -h1,140:20158061,19168421:0,0,0 -g1,140:22016662,19168421 -g1,140:22995769,19168421 -g1,140:26470487,19168421 -g1,140:27861161,19168421 -g1,140:29300331,19168421 -g1,140:30616949,19168421 -g1,140:32583029,19168421 -) -(1,141:6630773,20009909:25952256,513147,134348 -k1,141:19372939,20009909:12742166 -h1,140:19372939,20009909:0,0,0 -g1,140:20759680,20009909 -g1,140:23444690,20009909 -g1,140:24259957,20009909 -g1,140:29023113,20009909 -g1,141:30616949,20009909 -g1,141:32583029,20009909 -) -(1,141:6630773,21244613:25952256,131072,0 -r1,155:32583029,21244613:25952256,131072,0 -g1,141:32583029,21244613 -g1,141:34549109,21244613 -) -(1,144:6630773,24052181:25952256,32768,229376 -(1,144:6630773,24052181:0,32768,229376 -(1,144:6630773,24052181:5505024,32768,229376 -r1,155:12135797,24052181:5505024,262144,229376 -) -k1,144:6630773,24052181:-5505024 -) -(1,144:6630773,24052181:25952256,32768,0 -r1,155:32583029,24052181:25952256,32768,0 -) -) -(1,144:6630773,25656509:25952256,615776,151780 -(1,144:6630773,25656509:1974731,573309,0 -g1,144:6630773,25656509 -g1,144:8605504,25656509 -) -g1,144:10904245,25656509 -g1,144:11961996,25656509 -g1,144:13695292,25656509 -k1,144:32583029,25656509:15886712 -g1,144:32583029,25656509 -) -(1,147:6630773,26891213:25952256,513147,134348 -k1,146:7435742,26891213:177134 -k1,146:8816118,26891213:177135 -k1,146:11410875,26891213:177134 -k1,146:12758482,26891213:177134 -k1,146:14068079,26891213:177135 -k1,146:15856743,26891213:177134 -k1,146:17726017,26891213:177134 -k1,146:19444559,26891213:177135 -k1,146:21444249,26891213:177134 -k1,146:22640469,26891213:177135 -k1,146:25064833,26891213:177134 -k1,146:26433412,26891213:177134 -k1,146:28699179,26891213:177135 -k1,146:30383641,26891213:177134 -k1,146:32583029,26891213:0 -) -(1,147:6630773,27732701:25952256,505283,134348 -k1,146:7858438,27732701:208580 -k1,146:8481852,27732701:208571 -k1,146:11706400,27732701:208581 -k1,146:12703378,27732701:208580 -k1,146:17968717,27732701:208581 -k1,146:18793335,27732701:208580 -k1,146:20021000,27732701:208580 -k1,146:20644414,27732701:208571 -k1,146:23768692,27732701:208581 -k1,146:25168717,27732701:208580 -k1,146:26707678,27732701:208580 -k1,146:27374356,27732701:208581 -k1,146:28114433,27732701:208580 -k1,146:29836240,27732701:208581 -k1,146:30660858,27732701:208580 -k1,146:32583029,27732701:0 -) -(1,147:6630773,28574189:25952256,513147,134348 -k1,146:9384596,28574189:216269 -k1,146:11298903,28574189:216269 -k1,146:13550719,28574189:216268 -k1,146:14379750,28574189:216269 -k1,146:14951879,28574189:216269 -k1,146:18418077,28574189:216268 -k1,146:19888050,28574189:216269 -k1,146:21236781,28574189:216269 -k1,146:23064580,28574189:216269 -k1,146:24299934,28574189:216269 -k1,146:27702562,28574189:216268 -k1,146:30554034,28574189:216269 -k1,146:32583029,28574189:0 -) -(1,147:6630773,29415677:25952256,513147,134348 -k1,146:10392486,29415677:271921 -k1,146:14764996,29415677:271922 -k1,146:17439467,29415677:271921 -k1,146:19163010,29415677:271921 -k1,146:21518976,29415677:271921 -k1,146:24664652,29415677:271922 -k1,146:26504194,29415677:271921 -k1,146:27190885,29415677:271848 -k1,146:28272176,29415677:271921 -k1,146:29563183,29415677:271922 -k1,146:31896867,29415677:271921 -k1,146:32583029,29415677:0 -) -(1,147:6630773,30257165:25952256,513147,134348 -k1,146:8072196,30257165:270950 -k1,146:9729231,30257165:270949 -k1,146:12068497,30257165:270950 -k1,146:14074840,30257165:270950 -k1,146:14760561,30257165:270878 -k1,146:17192887,30257165:270949 -k1,146:18115265,30257165:270950 -k1,146:20798595,30257165:270950 -k1,146:21425404,30257165:270949 -k1,146:23318370,30257165:270950 -k1,146:25474791,30257165:270950 -k1,146:27466716,30257165:270950 -k1,146:29910839,30257165:270949 -k1,146:31129440,30257165:270950 -k1,146:32583029,30257165:0 -) -(1,147:6630773,31098653:25952256,505283,126483 -g1,146:10145468,31098653 -g1,146:11106225,31098653 -g1,146:12324539,31098653 -k1,147:32583029,31098653:18703976 -g1,147:32583029,31098653 -) -(1,149:6630773,31940141:25952256,513147,134348 -h1,148:6630773,31940141:983040,0,0 -k1,148:7972771,31940141:145966 -k1,148:9251253,31940141:146020 -k1,148:12066553,31940141:146019 -k1,148:13231657,31940141:146019 -k1,148:16946768,31940141:146020 -k1,148:18284232,31940141:146019 -k1,148:22951580,31940141:146019 -k1,148:23756891,31940141:146019 -k1,148:26104921,31940141:146020 -k1,148:29410431,31940141:146019 -k1,148:32583029,31940141:0 -) -(1,149:6630773,32781629:25952256,513147,126483 -k1,148:8386160,32781629:261821 -k1,148:9334144,32781629:261822 -k1,148:10010745,32781629:261758 -k1,148:13453685,32781629:261822 -k1,148:14366934,32781629:261821 -k1,148:18668395,32781629:261822 -k1,148:20311060,32781629:261821 -k1,148:23713366,32781629:261821 -k1,148:24661350,32781629:261822 -k1,148:28228152,32781629:261821 -k1,148:30003200,32781629:261822 -k1,148:30881059,32781629:261821 -k1,148:32583029,32781629:0 -) -(1,149:6630773,33623117:25952256,513147,126483 -k1,148:9728210,33623117:243999 -k1,148:12731275,33623117:243999 -k1,148:14166719,33623117:243999 -k1,148:18296347,33623117:243998 -k1,148:19826162,33623117:243999 -k1,148:21464112,33623117:243999 -k1,148:22296624,33623117:243999 -k1,148:22753570,33623117:243954 -k1,148:24130031,33623117:243999 -k1,148:26735291,33623117:243998 -k1,148:27998375,33623117:243999 -k1,148:29477728,33623117:243999 -k1,148:30381019,33623117:243999 -k1,148:32583029,33623117:0 -) -(1,149:6630773,34464605:25952256,513147,134348 -g1,148:10002600,34464605 -g1,148:10817867,34464605 -g1,148:12036181,34464605 -g1,148:13589384,34464605 -g1,148:16997911,34464605 -g1,148:19961449,34464605 -g1,148:20819970,34464605 -g1,148:25754831,34464605 -g1,148:26613352,34464605 -g1,148:28201944,34464605 -k1,149:32583029,34464605:1506676 -g1,149:32583029,34464605 -) -(1,151:6630773,35306093:25952256,513147,126483 -h1,150:6630773,35306093:983040,0,0 -k1,150:9909942,35306093:193734 -k1,150:11274150,35306093:193735 -k1,150:12600346,35306093:193734 -k1,150:14405611,35306093:193735 -k1,150:16421901,35306093:193734 -k1,150:17634720,35306093:193734 -k1,150:20590798,35306093:193735 -k1,150:22500920,35306093:193734 -k1,150:23886099,35306093:193734 -k1,150:26519084,35306093:193735 -k1,150:27372110,35306093:193734 -k1,150:28953898,35306093:193735 -k1,150:31931601,35306093:193734 -k1,151:32583029,35306093:0 -) -(1,151:6630773,36147581:25952256,513147,102891 -g1,150:7244845,36147581 -g1,150:9328889,36147581 -g1,150:10719563,36147581 -g1,150:12249173,36147581 -g1,150:13099830,36147581 -g1,150:14634027,36147581 -g1,150:16548989,36147581 -g1,150:17840703,36147581 -g1,150:18699224,36147581 -k1,151:32583029,36147581:12071079 -g1,151:32583029,36147581 -) -(1,152:6630773,38955149:25952256,32768,229376 -(1,152:6630773,38955149:0,32768,229376 -(1,152:6630773,38955149:5505024,32768,229376 -r1,155:12135797,38955149:5505024,262144,229376 -) -k1,152:6630773,38955149:-5505024 -) -(1,152:6630773,38955149:25952256,32768,0 -r1,155:32583029,38955149:25952256,32768,0 -) -) -(1,152:6630773,40559477:25952256,606339,161218 -(1,152:6630773,40559477:1974731,582746,0 -g1,152:6630773,40559477 -g1,152:8605504,40559477 -) -g1,152:12794041,40559477 -k1,152:32583029,40559477:14394064 -g1,152:32583029,40559477 -) -(1,155:6630773,41794181:25952256,513147,134348 -k1,154:7890867,41794181:306545 -k1,154:9301693,41794181:306544 -k1,154:13168809,41794181:306545 -k1,154:14647793,41794181:306545 -k1,154:17153725,41794181:306544 -k1,154:18076308,41794181:306545 -k1,154:19401938,41794181:306545 -k1,154:23840527,41794181:306544 -k1,154:24806364,41794181:306545 -k1,154:25468769,41794181:306545 -k1,154:28851573,41794181:306544 -k1,154:31900144,41794181:306545 -k1,154:32583029,41794181:0 -) -(1,155:6630773,42635669:25952256,505283,134348 -k1,154:8913774,42635669:278255 -k1,154:10388716,42635669:278255 -k1,154:12755603,42635669:278255 -k1,154:14902944,42635669:278254 -k1,154:15712696,42635669:278255 -k1,154:17010036,42635669:278255 -k1,154:19124610,42635669:278255 -k1,154:20931820,42635669:278255 -k1,154:23923921,42635669:278255 -k1,154:25750791,42635669:278254 -k1,154:27048131,42635669:278255 -k1,154:30402646,42635669:278255 -k1,154:32583029,42635669:0 -) -(1,155:6630773,43477157:25952256,505283,134348 -k1,154:7652713,43477157:206672 -k1,154:9050831,43477157:206673 -k1,154:10806119,43477157:206672 -k1,154:14454086,43477157:206672 -k1,154:15793221,43477157:206673 -k1,154:16747659,43477157:206672 -k1,154:18641229,43477157:206673 -k1,154:21108893,43477157:206672 -k1,154:21847062,43477157:206672 -k1,154:23072820,43477157:206673 -k1,154:25520823,43477157:206672 -k1,154:27770252,43477157:206672 -k1,154:29168370,43477157:206673 -k1,154:31966991,43477157:206672 -k1,154:32583029,43477157:0 -) -(1,155:6630773,44318645:25952256,505283,134348 -k1,154:10294438,44318645:209262 -k1,154:10859559,44318645:209261 -k1,154:13157453,44318645:209262 -k1,154:14634180,44318645:209261 -k1,154:15199302,44318645:209262 -k1,154:17103324,44318645:209261 -k1,154:20388846,44318645:209262 -k1,154:23614074,44318645:209261 -k1,154:25316902,44318645:209262 -k1,154:26212325,44318645:209261 -k1,154:27010100,44318645:209262 -k1,154:28416048,44318645:209261 -k1,154:32051532,44318645:209262 -k1,154:32583029,44318645:0 -) -(1,155:6630773,45160133:25952256,505283,134348 -k1,154:7878817,45160133:181773 -k1,154:11332147,45160133:181773 -k1,154:13044186,45160133:181773 -k1,154:14404952,45160133:181773 -k1,154:15272887,45160133:181773 -k1,154:17741866,45160133:181772 -k1,154:19621677,45160133:181773 -k1,154:24155696,45160133:181773 -k1,154:25494179,45160133:181773 -k1,154:27947430,45160133:181773 -k1,154:30913172,45160133:181773 -k1,154:32583029,45160133:0 -) -] -(1,155:32583029,45706769:0,0,0 -g1,155:32583029,45706769 -) -) -] -(1,155:6630773,47279633:25952256,477757,0 -(1,155:6630773,47279633:25952256,477757,0 -(1,155:6630773,47279633:0,0,0 -v1,155:6630773,47279633:0,0,0 -) -g1,155:6830002,47279633 -k1,155:32184570,47279633:25354568 -) -) -] -(1,155:4262630,4025873:0,0,0 -[1,155:-473656,4025873:0,0,0 -(1,155:-473656,-710413:0,0,0 -(1,155:-473656,-710413:0,0,0 -g1,155:-473656,-710413 -) -g1,155:-473656,-710413 -) -] -) -] -!14906 -}14 -!11 -{15 -[1,167:4262630,47279633:28320399,43253760,0 -(1,167:4262630,4025873:0,0,0 -[1,167:-473656,4025873:0,0,0 -(1,167:-473656,-710413:0,0,0 -(1,167:-473656,-644877:0,0,0 -k1,167:-473656,-644877:-65536 -) -(1,167:-473656,4736287:0,0,0 -k1,167:-473656,4736287:5209943 -) -g1,167:-473656,-710413 -) -] -) -[1,167:6630773,47279633:25952256,43253760,0 -[1,167:6630773,4812305:25952256,786432,0 -(1,167:6630773,4812305:25952256,505283,134348 -(1,167:6630773,4812305:25952256,505283,134348 -g1,167:3078558,4812305 -[1,167:3078558,4812305:0,0,0 -(1,167:3078558,2439708:0,1703936,0 -k1,167:1358238,2439708:-1720320 -(1,135:1358238,2439708:1720320,1703936,0 -(1,135:1358238,2439708:1179648,16384,0 -r1,167:2537886,2439708:1179648,16384,0 -) -g1,135:3062174,2439708 -(1,135:3062174,2439708:16384,1703936,0 -[1,135:3062174,2439708:25952256,1703936,0 -(1,135:3062174,1915420:25952256,1179648,0 -(1,135:3062174,1915420:16384,1179648,0 -r1,167:3078558,1915420:16384,1179648,0 -) -k1,135:29014430,1915420:25935872 -g1,135:29014430,1915420 -) -] -) -) -) -] -[1,167:3078558,4812305:0,0,0 -(1,167:3078558,2439708:0,1703936,0 -g1,167:29030814,2439708 -g1,167:36135244,2439708 -(1,135:36135244,2439708:1720320,1703936,0 -(1,135:36135244,2439708:16384,1703936,0 -[1,135:36135244,2439708:25952256,1703936,0 -(1,135:36135244,1915420:25952256,1179648,0 -(1,135:36135244,1915420:16384,1179648,0 -r1,167:36151628,1915420:16384,1179648,0 -) -k1,135:62087500,1915420:25935872 -g1,135:62087500,1915420 -) -] -) -g1,135:36675916,2439708 -(1,135:36675916,2439708:1179648,16384,0 -r1,167:37855564,2439708:1179648,16384,0 -) -) -k1,167:3078556,2439708:-34777008 -) -] -[1,167:3078558,4812305:0,0,0 -(1,167:3078558,49800853:0,16384,2228224 -k1,167:1358238,49800853:-1720320 -(1,135:1358238,49800853:1720320,16384,2228224 -(1,135:1358238,49800853:1179648,16384,0 -r1,167:2537886,49800853:1179648,16384,0 -) -g1,135:3062174,49800853 -(1,135:3062174,52029077:16384,1703936,0 -[1,135:3062174,52029077:25952256,1703936,0 -(1,135:3062174,51504789:25952256,1179648,0 -(1,135:3062174,51504789:16384,1179648,0 -r1,167:3078558,51504789:16384,1179648,0 -) -k1,135:29014430,51504789:25935872 -g1,135:29014430,51504789 -) -] -) -) -) -] -[1,167:3078558,4812305:0,0,0 -(1,167:3078558,49800853:0,16384,2228224 -g1,167:29030814,49800853 -g1,167:36135244,49800853 -(1,135:36135244,49800853:1720320,16384,2228224 -(1,135:36135244,52029077:16384,1703936,0 -[1,135:36135244,52029077:25952256,1703936,0 -(1,135:36135244,51504789:25952256,1179648,0 -(1,135:36135244,51504789:16384,1179648,0 -r1,167:36151628,51504789:16384,1179648,0 -) -k1,135:62087500,51504789:25935872 -g1,135:62087500,51504789 -) -] -) -g1,135:36675916,49800853 -(1,135:36675916,49800853:1179648,16384,0 -r1,167:37855564,49800853:1179648,16384,0 -) -) -k1,167:3078556,49800853:-34777008 -) -] -g1,167:6630773,4812305 -k1,167:21845614,4812305:14816382 -g1,167:22668090,4812305 -g1,167:24054831,4812305 -g1,167:27195316,4812305 -g1,167:28604995,4812305 -g1,167:29789885,4812305 -) -) -] -[1,167:6630773,45706769:25952256,40108032,0 -(1,167:6630773,45706769:25952256,40108032,0 -(1,167:6630773,45706769:0,0,0 -g1,167:6630773,45706769 -) -[1,167:6630773,45706769:25952256,40108032,0 -(1,155:6630773,6254097:25952256,513147,134348 -k1,154:7457750,6254097:199142 -k1,154:8012752,6254097:199142 -k1,154:11054190,6254097:199142 -k1,154:12399557,6254097:199142 -k1,154:13881894,6254097:199142 -k1,154:14949388,6254097:199142 -k1,154:16241015,6254097:199142 -k1,154:19058320,6254097:199142 -k1,154:19916754,6254097:199142 -k1,154:22937876,6254097:199142 -k1,154:25369830,6254097:199142 -k1,154:26760417,6254097:199142 -k1,154:30273715,6254097:199142 -k1,154:31100692,6254097:199142 -k1,154:31714677,6254097:199142 -k1,154:32583029,6254097:0 -) -(1,155:6630773,7095585:25952256,505283,134348 -k1,154:7877822,7095585:154564 -k1,154:10959224,7095585:154564 -k1,154:12398294,7095585:154564 -k1,154:14982933,7095585:154564 -k1,154:18540126,7095585:154564 -k1,154:19346118,7095585:154564 -k1,154:20519768,7095585:154565 -k1,154:23690299,7095585:154564 -k1,154:24768265,7095585:154564 -k1,154:25538867,7095585:154564 -k1,154:27295131,7095585:154564 -k1,154:29320748,7095585:154564 -k1,154:30494397,7095585:154564 -k1,154:32583029,7095585:0 -) -(1,155:6630773,7937073:25952256,513147,134348 -k1,154:8516900,7937073:221513 -k1,154:9686065,7937073:221514 -k1,154:10263438,7937073:221513 -k1,154:14641900,7937073:221513 -k1,154:16694490,7937073:221514 -k1,154:17532041,7937073:221513 -k1,154:18168375,7937073:221491 -k1,154:20882222,7937073:221513 -k1,154:22594025,7937073:221514 -k1,154:23834623,7937073:221513 -k1,154:27140260,7937073:221513 -k1,154:30617603,7937073:221514 -k1,154:31490544,7937073:221513 -k1,154:32583029,7937073:0 -) -(1,155:6630773,8778561:25952256,513147,134348 -k1,154:7948500,8778561:216722 -k1,154:9675173,8778561:216723 -k1,154:12557244,8778561:216722 -k1,154:13390004,8778561:216722 -k1,154:16417566,8778561:216723 -k1,154:18182904,8778561:216722 -k1,154:21153449,8778561:216722 -k1,154:21836132,8778561:216722 -k1,154:23358332,8778561:216723 -k1,154:24226482,8778561:216722 -k1,154:25709360,8778561:216722 -k1,154:27117528,8778561:216723 -k1,154:28353335,8778561:216722 -k1,154:32583029,8778561:0 -) -(1,155:6630773,9620049:25952256,513147,126483 -k1,154:7516585,9620049:226520 -k1,154:8762191,9620049:226521 -k1,154:10674297,9620049:226520 -k1,154:13199165,9620049:226520 -k1,154:14077113,9620049:226520 -k1,154:16485328,9620049:226521 -k1,154:17730933,9620049:226520 -k1,154:19520487,9620049:226520 -k1,154:22390730,9620049:226521 -k1,154:25117449,9620049:226520 -k1,154:27156695,9620049:226520 -k1,154:28820420,9620049:226520 -k1,154:30685996,9620049:226521 -k1,154:31563944,9620049:226520 -k1,154:32583029,9620049:0 -) -(1,155:6630773,10461537:25952256,513147,134348 -k1,154:9871801,10461537:215231 -k1,154:10703070,10461537:215231 -k1,154:11937386,10461537:215231 -k1,154:15063071,10461537:215231 -k1,154:16965199,10461537:215231 -k1,154:18371875,10461537:215231 -k1,154:21573581,10461537:215230 -k1,154:22807897,10461537:215231 -k1,154:25196302,10461537:215231 -k1,154:27267513,10461537:215231 -k1,154:30998751,10461537:215231 -k1,154:31896867,10461537:215231 -k1,154:32583029,10461537:0 -) -(1,155:6630773,11303025:25952256,513147,126483 -k1,154:8209229,11303025:178607 -k1,154:9015672,11303025:178608 -k1,154:10579055,11303025:178607 -k1,154:12359362,11303025:178607 -k1,154:13197262,11303025:178608 -k1,154:14394954,11303025:178607 -k1,154:16706103,11303025:178607 -k1,154:21041660,11303025:178608 -k1,154:22716454,11303025:178607 -k1,154:24606206,11303025:178607 -k1,154:26399621,11303025:178608 -k1,154:27194266,11303025:178607 -k1,154:28881512,11303025:178607 -k1,154:31221497,11303025:178608 -k1,154:31931601,11303025:178607 -k1,154:32583029,11303025:0 -) -(1,155:6630773,12144513:25952256,513147,134348 -k1,154:9338229,12144513:160727 -k1,154:10888319,12144513:160727 -k1,154:13208457,12144513:160727 -k1,154:15142588,12144513:160727 -k1,154:17047228,12144513:160727 -k1,154:19195662,12144513:160727 -k1,154:21494173,12144513:160727 -k1,154:22846345,12144513:160727 -k1,154:25302143,12144513:160727 -k1,154:26481955,12144513:160727 -k1,154:28989526,12144513:160727 -k1,154:29778088,12144513:160727 -k1,154:32583029,12144513:0 -) -(1,155:6630773,12986001:25952256,513147,134348 -k1,154:9083606,12986001:195118 -k1,154:10561920,12986001:195119 -k1,154:13841162,12986001:195118 -k1,154:16658375,12986001:195118 -k1,154:18636729,12986001:195119 -k1,154:20482044,12986001:195118 -k1,154:22449912,12986001:195119 -k1,154:25212731,12986001:195118 -k1,154:27670152,12986001:195118 -k1,154:28524563,12986001:195119 -k1,154:30186377,12986001:195118 -k1,155:32583029,12986001:0 -) -(1,155:6630773,13827489:25952256,513147,134348 -k1,154:9090994,13827489:249692 -k1,154:10532131,13827489:249692 -k1,154:11800908,13827489:249692 -k1,154:14860784,13827489:249692 -k1,154:15761904,13827489:249692 -k1,154:17896411,13827489:249692 -k1,154:19815960,13827489:249692 -k1,154:20693488,13827489:249693 -k1,154:22146421,13827489:249692 -k1,154:24151823,13827489:249692 -k1,154:25269867,13827489:249692 -k1,154:27257574,13827489:249692 -k1,154:28316636,13827489:249692 -k1,154:29585413,13827489:249692 -k1,154:31923737,13827489:249692 -k1,154:32583029,13827489:0 -) -(1,155:6630773,14668977:25952256,505283,134348 -g1,154:8991379,14668977 -g1,154:10382053,14668977 -g1,154:12089921,14668977 -k1,155:32583029,14668977:18180342 -g1,155:32583029,14668977 -) -(1,158:6630773,15510465:25952256,513147,134348 -h1,156:6630773,15510465:983040,0,0 -k1,156:11561583,15510465:227291 -k1,156:13462007,15510465:227290 -k1,156:14045158,15510465:227291 -k1,156:16474459,15510465:227291 -k1,156:17937103,15510465:227290 -k1,156:18780432,15510465:227291 -k1,156:22086603,15510465:227290 -k1,156:25256461,15510465:227291 -k1,156:27995747,15510465:227291 -k1,156:29170688,15510465:227290 -k1,156:31923737,15510465:227291 -k1,156:32583029,15510465:0 -) -(1,158:6630773,16351953:25952256,513147,134348 -k1,156:9030225,16351953:197442 -k1,156:12408129,16351953:197442 -k1,156:15854191,16351953:197442 -k1,156:16703061,16351953:197442 -k1,156:18668009,16351953:197442 -k1,156:20873473,16351953:197441 -k1,156:22583486,16351953:197442 -k1,156:24382628,16351953:197442 -k1,156:27789368,16351953:197442 -k1,156:30186854,16351953:197442 -k1,156:31635378,16351953:197442 -k1,156:32583029,16351953:0 -) -(1,158:6630773,17193441:25952256,513147,134348 -k1,156:8915834,17193441:145966 -k1,156:10455752,17193441:145967 -k1,156:14107239,17193441:145966 -k1,156:14784703,17193441:145967 -k1,156:18693091,17193441:145966 -k1,156:22140106,17193441:145967 -k1,156:22641932,17193441:145966 -k1,156:25474220,17193441:145967 -k1,156:28296676,17193441:145966 -k1,156:30623026,17193441:145967 -k1,156:31835263,17193441:145966 -k1,156:32583029,17193441:0 -) -(1,158:6630773,18034929:25952256,513147,134348 -k1,156:9624622,18034929:150897 -k1,157:13712266,18034929:150896 -k1,157:14479201,18034929:150897 -k1,157:16472970,18034929:150897 -k1,157:17283158,18034929:150896 -k1,157:20510315,18034929:150897 -k1,157:24499000,18034929:150897 -k1,157:25305256,18034929:150896 -k1,157:26528322,18034929:150897 -k1,157:28630881,18034929:150897 -k1,157:29397815,18034929:150896 -k1,157:31391584,18034929:150897 -k1,157:32583029,18034929:0 -) -(1,158:6630773,18876417:25952256,513147,126483 -k1,157:9193707,18876417:206915 -k1,157:11692416,18876417:206915 -k1,157:12550759,18876417:206915 -k1,157:13776759,18876417:206915 -k1,157:16660164,18876417:206915 -k1,157:18646381,18876417:206915 -k1,157:22199564,18876417:206915 -k1,157:23022517,18876417:206915 -k1,157:24921572,18876417:206915 -k1,157:27640482,18876417:206915 -k1,157:30091350,18876417:206915 -k1,157:32583029,18876417:0 -) -(1,158:6630773,19717905:25952256,505283,126483 -k1,157:8869840,19717905:231044 -k1,157:10628528,19717905:231044 -k1,157:14880206,19717905:231044 -k1,157:15642747,19717905:231044 -k1,157:16892876,19717905:231044 -k1,157:18361896,19717905:231045 -k1,157:19461292,19717905:231044 -k1,157:21319595,19717905:231044 -k1,157:22616910,19717905:231044 -k1,157:23203814,19717905:231044 -k1,157:29598519,19717905:231044 -k1,157:32583029,19717905:0 -) -(1,158:6630773,20559393:25952256,513147,126483 -k1,157:7460679,20559393:178478 -k1,157:8658242,20559393:178478 -k1,157:11448985,20559393:178478 -k1,157:12286756,20559393:178479 -k1,157:15151555,20559393:178478 -k1,157:18810650,20559393:178478 -k1,157:19476695,20559393:178457 -k1,157:21779850,20559393:178478 -k1,157:24619746,20559393:178479 -k1,157:25457516,20559393:178478 -k1,157:26406697,20559393:178478 -k1,157:30173926,20559393:178478 -k1,157:32583029,20559393:0 -) -(1,158:6630773,21400881:25952256,513147,134348 -k1,157:7652589,21400881:212446 -k1,157:10154863,21400881:212446 -k1,157:10898805,21400881:212445 -k1,157:12130336,21400881:212446 -k1,157:14844291,21400881:212446 -k1,157:15716029,21400881:212446 -k1,157:17370266,21400881:212445 -k1,157:18867218,21400881:212446 -k1,157:22079247,21400881:212446 -k1,157:25587499,21400881:212446 -k1,157:27957389,21400881:212445 -k1,157:30329246,21400881:212446 -k1,157:32583029,21400881:0 -) -(1,158:6630773,22242369:25952256,513147,134348 -k1,157:9558266,22242369:248381 -k1,157:11722921,22242369:248382 -k1,157:13162747,22242369:248381 -k1,157:15162906,22242369:248382 -k1,157:17113257,22242369:248381 -k1,157:19291674,22242369:248382 -k1,157:20442486,22242369:248381 -k1,157:23352284,22242369:248381 -k1,157:24259958,22242369:248382 -k1,157:25279042,22242369:248381 -k1,157:29116175,22242369:248382 -k1,157:31773659,22242369:248381 -k1,157:32583029,22242369:0 -) -(1,158:6630773,23083857:25952256,513147,134348 -k1,157:7618299,23083857:216823 -k1,157:9792027,23083857:216823 -k1,157:10540348,23083857:216824 -k1,157:11776256,23083857:216823 -k1,157:13386374,23083857:216823 -k1,157:15373324,23083857:216823 -k1,157:17475619,23083857:216824 -k1,157:21054439,23083857:216823 -k1,157:22080632,23083857:216823 -k1,157:23316540,23083857:216823 -k1,157:25902491,23083857:216824 -k1,157:27456248,23083857:216823 -k1,157:29820686,23083857:216823 -k1,157:32583029,23083857:0 -) -(1,158:6630773,23925345:25952256,505283,126483 -g1,157:9117209,23925345 -g1,157:10600944,23925345 -g1,157:12536877,23925345 -g1,157:14938116,23925345 -g1,157:16644673,23925345 -g1,157:17526787,23925345 -k1,158:32583029,23925345:11935418 -g1,158:32583029,23925345 -) -(1,160:6630773,24766833:25952256,513147,134348 -h1,159:6630773,24766833:983040,0,0 -k1,159:9181195,24766833:206855 -k1,159:12219862,24766833:206856 -k1,159:13618162,24766833:206855 -k1,159:15656093,24766833:206855 -k1,159:16522241,24766833:206856 -k1,159:21081342,24766833:206855 -k1,159:22763413,24766833:206856 -k1,159:25927252,24766833:206855 -k1,159:27761366,24766833:206855 -k1,159:29735728,24766833:206856 -k1,159:31134028,24766833:206855 -k1,160:32583029,24766833:0 -) -(1,160:6630773,25608321:25952256,513147,126483 -k1,159:8140968,25608321:254525 -k1,159:10203632,25608321:254526 -k1,159:11477242,25608321:254525 -k1,159:13288248,25608321:254526 -k1,159:15781483,25608321:254525 -k1,159:17891332,25608321:254525 -k1,159:19337303,25608321:254526 -k1,159:20875023,25608321:254525 -k1,159:22972420,25608321:254525 -k1,159:24218506,25608321:254526 -k1,159:25089069,25608321:254525 -k1,159:26609751,25608321:254526 -k1,159:27936445,25608321:254525 -k1,159:29210055,25608321:254525 -k1,159:30699935,25608321:254526 -k1,159:31613752,25608321:254525 -k1,160:32583029,25608321:0 -) -(1,160:6630773,26449809:25952256,513147,126483 -k1,159:9744225,26449809:280986 -k1,159:12583080,26449809:280985 -k1,159:13550228,26449809:280986 -k1,159:17214181,26449809:280985 -k1,159:18397598,26449809:280986 -k1,159:21887882,26449809:280986 -k1,159:25595089,26449809:280985 -k1,159:26407572,26449809:280986 -k1,159:27304595,26449809:280985 -k1,159:28604666,26449809:280986 -k1,159:30623666,26449809:280985 -k1,159:31563944,26449809:280986 -k1,159:32583029,26449809:0 -) -(1,160:6630773,27291297:25952256,513147,134348 -k1,159:10919055,27291297:195559 -k1,159:13401822,27291297:195560 -k1,159:14458524,27291297:195559 -k1,159:17117582,27291297:195560 -k1,159:19361141,27291297:195559 -k1,159:24538747,27291297:195559 -k1,159:26900272,27291297:195560 -k1,159:28375749,27291297:195559 -k1,159:29738505,27291297:195560 -k1,159:30585492,27291297:195559 -k1,160:32583029,27291297:0 -) -(1,160:6630773,28132785:25952256,505283,134348 -k1,159:8547210,28132785:231506 -k1,159:9970160,28132785:231505 -k1,159:15045432,28132785:231506 -k1,159:18939090,28132785:231506 -k1,159:20060574,28132785:231505 -k1,159:23866414,28132785:231506 -k1,159:24749347,28132785:231505 -k1,159:28057113,28132785:231506 -k1,159:32583029,28132785:0 -) -(1,160:6630773,28974273:25952256,513147,126483 -k1,159:10780155,28974273:179211 -k1,159:12930034,28974273:179211 -k1,159:16093755,28974273:179211 -k1,159:18138776,28974273:179211 -k1,159:19337072,28974273:179211 -k1,159:21117984,28974273:179212 -k1,159:23274416,28974273:179211 -k1,159:27042378,28974273:179211 -k1,159:27880881,28974273:179211 -k1,159:28415952,28974273:179211 -k1,159:31601955,28974273:179211 -k1,160:32583029,28974273:0 -) -(1,160:6630773,29815761:25952256,513147,134348 -k1,159:8744038,29815761:179298 -k1,159:9732707,29815761:179299 -k1,159:10931090,29815761:179298 -k1,159:13188536,29815761:179299 -k1,159:14027126,29815761:179298 -k1,159:15225510,29815761:179299 -k1,159:18081298,29815761:179298 -k1,159:19492674,29815761:179299 -k1,159:22111222,29815761:179298 -k1,159:24265240,29815761:179418 -k1,159:25262427,29815761:179298 -k1,159:26310078,29815761:179299 -k1,159:27621838,29815761:179298 -k1,159:28826120,29815761:179299 -k1,159:31563944,29815761:179298 -k1,159:32583029,29815761:0 -) -(1,160:6630773,30657249:25952256,505283,134348 -k1,159:8580743,30657249:194260 -k1,159:9794088,30657249:194260 -k1,159:10403186,30657249:194255 -k1,159:13439742,30657249:194260 -k1,159:14165499,30657249:194260 -k1,159:16718400,30657249:194260 -k1,159:17528698,30657249:194260 -k1,159:18926199,30657249:194260 -k1,159:21618691,30657249:194260 -k1,159:23004396,30657249:194260 -k1,159:26055370,30657249:194260 -k1,159:28920877,30657249:194260 -k1,159:32583029,30657249:0 -) -(1,160:6630773,31498737:25952256,513147,126483 -k1,159:8054520,31498737:232302 -k1,159:9795461,31498737:232302 -k1,159:13160385,31498737:232303 -k1,159:14658843,31498737:232302 -k1,159:15305955,31498737:232269 -k1,159:17143889,31498737:232302 -k1,159:19095857,31498737:232303 -k1,159:20952797,31498737:232302 -k1,159:23427741,31498737:232302 -k1,159:24469413,31498737:232302 -k1,159:25057576,31498737:232303 -k1,159:27241540,31498737:232302 -k1,159:29598519,31498737:232302 -k1,159:32583029,31498737:0 -) -(1,160:6630773,32340225:25952256,513147,134348 -k1,159:7474877,32340225:192676 -k1,159:12511318,32340225:192675 -k1,159:17229910,32340225:192676 -k1,159:19205821,32340225:192676 -k1,159:21656212,32340225:192676 -k1,159:24183935,32340225:192675 -k1,159:24834708,32340225:192676 -k1,159:25558881,32340225:192676 -k1,159:28302218,32340225:192676 -k1,159:29146321,32340225:192675 -k1,159:31299834,32340225:192676 -k1,159:32583029,32340225:0 -) -(1,160:6630773,33181713:25952256,513147,134348 -k1,159:9030527,33181713:166942 -k1,159:9856761,33181713:166942 -k1,159:12487201,33181713:166942 -k1,159:13726312,33181713:166942 -k1,159:14509292,33181713:166942 -k1,159:16838922,33181713:166942 -k1,159:18707179,33181713:166942 -k1,159:20705196,33181713:166941 -k1,159:21740490,33181713:166942 -k1,159:23623165,33181713:166942 -k1,159:24882592,33181713:166942 -k1,159:25708826,33181713:166942 -k1,159:28108580,33181713:166942 -k1,159:28934814,33181713:166942 -k1,159:31391584,33181713:166942 -k1,159:32583029,33181713:0 -) -(1,160:6630773,34023201:25952256,513147,134348 -g1,159:8338641,34023201 -g1,159:13161435,34023201 -g1,159:16318959,34023201 -g1,159:17984884,34023201 -g1,159:20565691,34023201 -g1,159:21380958,34023201 -g1,159:21995030,34023201 -g1,159:23385704,34023201 -g1,159:24200971,34023201 -g1,159:27472528,34023201 -k1,160:32583029,34023201:2026377 -g1,160:32583029,34023201 -) -(1,161:6630773,36830769:25952256,32768,229376 -(1,161:6630773,36830769:0,32768,229376 -(1,161:6630773,36830769:5505024,32768,229376 -r1,167:12135797,36830769:5505024,262144,229376 -) -k1,161:6630773,36830769:-5505024 -) -(1,161:6630773,36830769:25952256,32768,0 -r1,167:32583029,36830769:25952256,32768,0 -) -) -(1,161:6630773,38435097:25952256,582746,14155 -(1,161:6630773,38435097:1974731,582746,14155 -g1,161:6630773,38435097 -g1,161:8605504,38435097 -) -k1,161:32583029,38435097:23411294 -g1,161:32583029,38435097 -) -(1,163:6630773,39739925:25952256,555811,12975 -(1,163:6630773,39739925:2450326,534184,12975 -g1,163:6630773,39739925 -g1,163:9081099,39739925 -) -g1,163:11147187,39739925 -g1,163:11984148,39739925 -k1,163:32583030,39739925:19715784 -g1,163:32583030,39739925 -) -(1,167:6630773,40974629:25952256,513147,134348 -k1,165:8358024,40974629:181912 -k1,165:10675753,40974629:181911 -k1,165:12538008,40974629:181912 -k1,166:12538008,40974629:7864 -k1,166:13387076,40974629:181912 -k1,166:13983814,40974629:181895 -k1,166:14851887,40974629:181911 -k1,166:15389659,40974629:181912 -k1,166:18647831,40974629:181912 -k1,166:21745439,40974629:181911 -k1,166:22342177,40974629:181895 -k1,166:23055586,40974629:181912 -k1,166:25389700,40974629:181912 -k1,166:25927471,40974629:181911 -k1,166:29185643,40974629:181912 -k1,167:32583029,40974629:0 -) -(1,167:6630773,41816117:25952256,513147,134348 -k1,166:7259871,41816117:273238 -k1,166:9183307,41816117:273239 -k1,166:10115837,41816117:273238 -k1,166:13803501,41816117:273238 -k1,166:15148908,41816117:273238 -k1,166:15880244,41816117:273239 -k1,166:16684979,41816117:273238 -k1,166:18244033,41816117:273238 -k1,166:18873132,41816117:273239 -k1,166:22222630,41816117:273238 -k1,166:25511835,41816117:273238 -k1,166:29986586,41816117:273238 -k1,166:30875863,41816117:273239 -k1,166:32168186,41816117:273238 -k1,167:32583029,41816117:0 -) -(1,167:6630773,42657605:25952256,513147,134348 -k1,166:9767729,42657605:221259 -k1,166:11564475,42657605:221260 -k1,166:12988975,42657605:221259 -k1,166:14925968,42657605:221260 -k1,166:15503087,42657605:221259 -k1,166:19237732,42657605:221260 -k1,166:20754638,42657605:221259 -k1,166:22525169,42657605:221260 -k1,166:25301021,42657605:221259 -k1,166:26390633,42657605:221260 -k1,166:27803337,42657605:221259 -k1,166:29400198,42657605:221260 -k1,166:30778167,42657605:221259 -k1,167:32583029,42657605:0 -) -(1,167:6630773,43499093:25952256,513147,134348 -k1,166:9004487,43499093:174981 -k1,166:14236226,43499093:174981 -k1,166:15078364,43499093:174982 -k1,166:15841858,43499093:174981 -k1,166:17035924,43499093:174981 -k1,166:19952931,43499093:174981 -k1,166:20716425,43499093:174981 -k1,166:23602631,43499093:174982 -k1,166:26250285,43499093:174981 -k1,166:31482024,43499093:174981 -k1,166:32583029,43499093:0 -) -(1,167:6630773,44340581:25952256,513147,134348 -k1,166:8988633,44340581:243669 -k1,166:10924442,44340581:243669 -k1,166:14661180,44340581:243669 -k1,166:17895701,44340581:253288 -k1,166:18563786,44340581:253242 -k1,166:20500905,44340581:243669 -k1,166:22850246,44340581:243669 -k1,166:24979386,44340581:243669 -k1,166:25754552,44340581:243669 -k1,166:28412567,44340581:243669 -k1,166:30510905,44340581:243669 -k1,166:31563944,44340581:243669 -k1,167:32583029,44340581:0 -) -(1,167:6630773,45182069:25952256,513147,134348 -k1,166:7291793,45182069:246177 -k1,166:10280044,45182069:246225 -k1,166:12093890,45182069:246225 -k1,166:13527626,45182069:246224 -k1,166:14223381,45182069:246178 -k1,166:16640157,45182069:246224 -k1,166:17810440,45182069:246225 -k1,166:21087049,45182069:246224 -k1,166:25001979,45182069:246225 -k1,166:26765970,45182069:246177 -k1,166:27543692,45182069:246225 -k1,166:30879939,45182069:246224 -k1,166:31812326,45182069:246225 -k1,166:32583029,45182069:0 -) -] -(1,167:32583029,45706769:0,0,0 -g1,167:32583029,45706769 -) -) -] -(1,167:6630773,47279633:25952256,0,0 -h1,167:6630773,47279633:25952256,0,0 -) -] -(1,167:4262630,4025873:0,0,0 -[1,167:-473656,4025873:0,0,0 -(1,167:-473656,-710413:0,0,0 -(1,167:-473656,-710413:0,0,0 -g1,167:-473656,-710413 -) -g1,167:-473656,-710413 -) -] -) -] -!22408 -}15 -!11 -{16 -[1,181:4262630,47279633:28320399,43253760,0 -(1,181:4262630,4025873:0,0,0 -[1,181:-473656,4025873:0,0,0 -(1,181:-473656,-710413:0,0,0 -(1,181:-473656,-644877:0,0,0 -k1,181:-473656,-644877:-65536 -) -(1,181:-473656,4736287:0,0,0 -k1,181:-473656,4736287:5209943 -) -g1,181:-473656,-710413 -) -] -) -[1,181:6630773,47279633:25952256,43253760,0 -[1,181:6630773,4812305:25952256,786432,0 -(1,181:6630773,4812305:25952256,485622,11795 -(1,181:6630773,4812305:25952256,485622,11795 -g1,181:3078558,4812305 -[1,181:3078558,4812305:0,0,0 -(1,181:3078558,2439708:0,1703936,0 -k1,181:1358238,2439708:-1720320 -(1,135:1358238,2439708:1720320,1703936,0 -(1,135:1358238,2439708:1179648,16384,0 -r1,181:2537886,2439708:1179648,16384,0 -) -g1,135:3062174,2439708 -(1,135:3062174,2439708:16384,1703936,0 -[1,135:3062174,2439708:25952256,1703936,0 -(1,135:3062174,1915420:25952256,1179648,0 -(1,135:3062174,1915420:16384,1179648,0 -r1,181:3078558,1915420:16384,1179648,0 -) -k1,135:29014430,1915420:25935872 -g1,135:29014430,1915420 -) -] -) -) -) -] -[1,181:3078558,4812305:0,0,0 -(1,181:3078558,2439708:0,1703936,0 -g1,181:29030814,2439708 -g1,181:36135244,2439708 -(1,135:36135244,2439708:1720320,1703936,0 -(1,135:36135244,2439708:16384,1703936,0 -[1,135:36135244,2439708:25952256,1703936,0 -(1,135:36135244,1915420:25952256,1179648,0 -(1,135:36135244,1915420:16384,1179648,0 -r1,181:36151628,1915420:16384,1179648,0 -) -k1,135:62087500,1915420:25935872 -g1,135:62087500,1915420 -) -] -) -g1,135:36675916,2439708 -(1,135:36675916,2439708:1179648,16384,0 -r1,181:37855564,2439708:1179648,16384,0 -) -) -k1,181:3078556,2439708:-34777008 -) -] -[1,181:3078558,4812305:0,0,0 -(1,181:3078558,49800853:0,16384,2228224 -k1,181:1358238,49800853:-1720320 -(1,135:1358238,49800853:1720320,16384,2228224 -(1,135:1358238,49800853:1179648,16384,0 -r1,181:2537886,49800853:1179648,16384,0 -) -g1,135:3062174,49800853 -(1,135:3062174,52029077:16384,1703936,0 -[1,135:3062174,52029077:25952256,1703936,0 -(1,135:3062174,51504789:25952256,1179648,0 -(1,135:3062174,51504789:16384,1179648,0 -r1,181:3078558,51504789:16384,1179648,0 -) -k1,135:29014430,51504789:25935872 -g1,135:29014430,51504789 -) -] -) -) -) -] -[1,181:3078558,4812305:0,0,0 -(1,181:3078558,49800853:0,16384,2228224 -g1,181:29030814,49800853 -g1,181:36135244,49800853 -(1,135:36135244,49800853:1720320,16384,2228224 -(1,135:36135244,52029077:16384,1703936,0 -[1,135:36135244,52029077:25952256,1703936,0 -(1,135:36135244,51504789:25952256,1179648,0 -(1,135:36135244,51504789:16384,1179648,0 -r1,181:36151628,51504789:16384,1179648,0 -) -k1,135:62087500,51504789:25935872 -g1,135:62087500,51504789 -) -] -) -g1,135:36675916,49800853 -(1,135:36675916,49800853:1179648,16384,0 -r1,181:37855564,49800853:1179648,16384,0 -) -) -k1,181:3078556,49800853:-34777008 -) -] -g1,181:6630773,4812305 -g1,181:6630773,4812305 -g1,181:7279579,4812305 -k1,181:32184571,4812305:24904992 -) -) -] -[1,181:6630773,45706769:25952256,40108032,0 -(1,181:6630773,45706769:25952256,40108032,0 -(1,181:6630773,45706769:0,0,0 -g1,181:6630773,45706769 -) -[1,181:6630773,45706769:25952256,40108032,0 -(1,167:6630773,6254097:25952256,513147,126483 -k1,166:9934621,6254097:254458 -k1,166:13970507,6254097:254459 -k1,166:14892121,6254097:254458 -k1,166:15735092,6254097:254458 -k1,166:17863881,6254097:254459 -k1,166:19290778,6254097:254458 -k1,166:20899211,6254097:254459 -k1,166:23355679,6254097:254458 -k1,166:28997196,6254097:254458 -k1,166:30243215,6254097:254459 -k1,166:31563944,6254097:254458 -k1,166:32583029,6254097:0 -) -(1,167:6630773,7095585:25952256,505283,126483 -k1,166:8259343,7095585:252969 -k1,166:9999324,7095585:252969 -k1,166:13209933,7095585:252969 -k1,166:14535070,7095585:252968 -k1,166:16820310,7095585:252969 -k1,166:18064839,7095585:252969 -k1,166:19384079,7095585:252969 -k1,166:20253086,7095585:252969 -k1,166:24159687,7095585:252969 -k1,166:25678812,7095585:252969 -k1,166:26559615,7095585:252968 -k1,166:28514554,7095585:252969 -k1,166:30896132,7095585:252969 -k1,166:32168186,7095585:252969 -k1,167:32583029,7095585:0 -) -(1,167:6630773,7937073:25952256,513147,134348 -k1,166:9703266,7937073:230197 -k1,166:11037745,7937073:230197 -k1,166:12015708,7937073:230197 -k1,166:13759131,7937073:230197 -k1,166:15055599,7937073:230197 -k1,166:16661397,7937073:230197 -k1,166:17507632,7937073:230197 -k1,166:18756914,7937073:230197 -k1,166:19401923,7937073:230166 -k1,166:22547817,7937073:230197 -k1,166:23969459,7937073:230197 -k1,166:24657753,7937073:230197 -k1,166:25419447,7937073:230197 -k1,166:28102001,7937073:230197 -k1,166:29616704,7937073:230197 -k1,166:31548871,7937073:230197 -k1,167:32583029,7937073:0 -) -(1,167:6630773,8778561:25952256,513147,126483 -g1,166:11395895,8778561 -g1,166:12727586,8778561 -g1,166:13674581,8778561 -g1,166:17134881,8778561 -g1,166:17950148,8778561 -g1,166:19168462,8778561 -k1,167:32583029,8778561:11253845 -g1,167:32583029,8778561 -) -(1,169:6630773,9620049:25952256,513147,134348 -h1,168:6630773,9620049:983040,0,0 -k1,168:9072742,9620049:262242 -k1,168:11072999,9620049:262242 -k1,168:13069323,9620049:262241 -k1,168:13746345,9620049:262179 -k1,168:13746345,9620049:0 -k1,168:14308678,9620049:262178 -k1,168:15102417,9620049:262242 -k1,168:16877885,9620049:262242 -k1,168:17791555,9620049:262242 -k1,168:21614367,9620049:262241 -k1,168:22291389,9620049:262179 -k1,168:24332933,9620049:262242 -k1,168:25281336,9620049:262241 -k1,168:26159616,9620049:262242 -k1,168:27440943,9620049:262242 -k1,168:28117964,9620049:262178 -k1,168:31753999,9620049:262242 -k1,169:32583029,9620049:0 -) -(1,169:6630773,10461537:25952256,513147,134348 -k1,168:8986492,10461537:213347 -k1,168:9815877,10461537:213347 -k1,168:11048309,10461537:213347 -k1,168:11676485,10461537:213333 -k1,168:15844930,10461537:213347 -k1,168:17625898,10461537:213347 -k1,168:18254074,10461537:213333 -k1,168:19083459,10461537:213347 -k1,168:19652666,10461537:213347 -k1,168:22361624,10461537:213347 -k1,168:24518769,10461537:213347 -k1,168:26617587,10461537:213347 -k1,168:29498905,10461537:213347 -k1,168:32583029,10461537:0 -) -(1,169:6630773,11303025:25952256,513147,134348 -k1,168:7348976,11303025:230615 -k1,168:8712741,11303025:230647 -k1,168:11853841,11303025:230646 -k1,168:13076048,11303025:230647 -k1,168:16065104,11303025:230646 -k1,168:16911789,11303025:230647 -k1,168:18161520,11303025:230646 -k1,168:18806978,11303025:230615 -k1,168:22992723,11303025:230647 -k1,168:24912887,11303025:230646 -k1,168:26745234,11303025:230647 -k1,168:27390692,11303025:230615 -k1,168:30531792,11303025:230646 -k1,168:31753999,11303025:230647 -k1,169:32583029,11303025:0 -) -(1,169:6630773,12144513:25952256,513147,126483 -k1,168:10773959,12144513:186122 -k1,168:14221152,12144513:186122 -k1,168:17809903,12144513:186122 -k1,168:19280531,12144513:186122 -k1,168:20570936,12144513:186123 -k1,168:21504824,12144513:186122 -k1,168:23835284,12144513:186122 -k1,168:25589027,12144513:186122 -k1,168:29044085,12144513:186122 -k1,168:32583029,12144513:0 -) -(1,169:6630773,12986001:25952256,513147,7863 -k1,169:32583029,12986001:24465244 -g1,169:32583029,12986001 -) -(1,171:6630773,13827489:25952256,505283,134348 -h1,170:6630773,13827489:983040,0,0 -k1,170:9568501,13827489:217984 -k1,170:11070991,13827489:217984 -k1,170:11703800,13827489:217966 -k1,170:12453281,13827489:217984 -k1,170:16026708,13827489:217984 -k1,170:16600552,13827489:217984 -k1,170:21359526,13827489:217984 -k1,170:25311751,13827489:217984 -k1,170:25987832,13827489:217984 -k1,170:27310099,13827489:217985 -k1,170:28275849,13827489:217984 -k1,170:30007059,13827489:217984 -k1,170:31034413,13827489:217984 -k1,170:32583029,13827489:0 -) -(1,171:6630773,14668977:25952256,513147,134348 -k1,170:10026914,14668977:241893 -k1,170:11260367,14668977:241893 -k1,170:13405426,14668977:241893 -k1,170:17078129,14668977:241893 -k1,170:20568643,14668977:241894 -k1,170:24115517,14668977:241893 -k1,170:25008838,14668977:241893 -k1,170:25606591,14668977:241893 -k1,170:28605584,14668977:241893 -k1,170:31923737,14668977:241893 -k1,170:32583029,14668977:0 -) -(1,171:6630773,15510465:25952256,505283,134348 -k1,170:8526178,15510465:240621 -k1,170:11322703,15510465:240621 -k1,170:12861592,15510465:240621 -k1,170:13517015,15510465:240580 -k1,170:14861918,15510465:240621 -k1,170:16220583,15510465:240621 -k1,170:17927900,15510465:240621 -k1,170:18977891,15510465:240621 -k1,170:20237597,15510465:240621 -k1,170:23715697,15510465:240621 -k1,170:24706705,15510465:240621 -k1,170:25303186,15510465:240621 -k1,170:30723117,15510465:240621 -k1,170:32583029,15510465:0 -) -(1,171:6630773,16351953:25952256,513147,134348 -k1,170:8208574,16351953:183850 -k1,170:9411510,16351953:183851 -k1,170:13030757,16351953:183850 -k1,170:15186585,16351953:183850 -k1,170:16029727,16351953:183850 -k1,170:16569438,16351953:183851 -k1,170:19123070,16351953:183850 -k1,170:21158312,16351953:183850 -k1,170:23508127,16351953:183850 -k1,170:24436467,16351953:183851 -k1,170:25639402,16351953:183850 -k1,170:27525222,16351953:183850 -k1,170:28891997,16351953:183850 -k1,170:29735140,16351953:183851 -k1,170:30938075,16351953:183850 -k1,171:32583029,16351953:0 -) -(1,171:6630773,17193441:25952256,513147,134348 -k1,170:8632245,17193441:247729 -k1,170:9689345,17193441:247730 -k1,170:11699992,17193441:247729 -k1,170:14804435,17193441:247729 -k1,170:17515008,17193441:247730 -k1,170:18177531,17193441:247680 -k1,170:19529543,17193441:247730 -k1,170:20525038,17193441:247729 -k1,170:22285993,17193441:247729 -k1,170:23481373,17193441:247729 -k1,170:24748188,17193441:247730 -k1,170:27550510,17193441:247729 -k1,170:28457531,17193441:247729 -k1,170:29681092,17193441:247730 -k1,170:31318184,17193441:247729 -k1,170:32583029,17193441:0 -) -(1,171:6630773,18034929:25952256,513147,126483 -k1,170:8194244,18034929:169520 -k1,170:10936051,18034929:169519 -k1,170:11764863,18034929:169520 -k1,170:16179805,18034929:169520 -k1,170:17770146,18034929:169520 -k1,170:20796379,18034929:169519 -k1,170:21321759,18034929:169520 -k1,170:24567539,18034929:169520 -k1,170:25907532,18034929:169520 -k1,170:27209513,18034929:169519 -k1,170:28909299,18034929:169520 -k1,170:30211281,18034929:169520 -k1,170:32583029,18034929:0 -) -(1,171:6630773,18876417:25952256,513147,126483 -k1,170:7649010,18876417:208867 -k1,170:8876962,18876417:208867 -k1,170:10354606,18876417:208867 -k1,170:11222765,18876417:208867 -k1,170:12450717,18876417:208867 -k1,170:14048947,18876417:208867 -k1,170:15522659,18876417:208867 -k1,170:16901999,18876417:208867 -k1,170:18659482,18876417:208867 -k1,170:19519777,18876417:208867 -k1,170:22332389,18876417:208867 -k1,170:23350626,18876417:208867 -k1,170:24889874,18876417:208867 -k1,170:27352524,18876417:208867 -k1,170:28731864,18876417:208867 -k1,170:30105961,18876417:208867 -k1,170:31124198,18876417:208867 -k1,170:32583029,18876417:0 -) -(1,171:6630773,19717905:25952256,513147,134348 -g1,170:8811811,19717905 -g1,170:10831630,19717905 -g1,170:13583486,19717905 -g1,170:17224010,19717905 -g1,170:18614684,19717905 -g1,170:19465341,19717905 -g1,170:21279377,19717905 -g1,170:23662921,19717905 -k1,171:32583029,19717905:7250251 -g1,171:32583029,19717905 -) -(1,173:6630773,20559393:25952256,513147,134348 -h1,172:6630773,20559393:983040,0,0 -k1,172:9175023,20559393:289812 -k1,172:11233653,20559393:289813 -k1,172:13203808,20559393:289812 -k1,172:14160777,20559393:289813 -k1,172:14865341,20559393:289721 -k1,172:15841315,20559393:289812 -k1,172:16486988,20559393:289813 -k1,172:18897545,20559393:289812 -k1,172:19846650,20559393:289813 -k1,172:20907165,20559393:289812 -k1,172:23230559,20559393:289812 -k1,172:26536339,20559393:289813 -k1,172:28693927,20559393:289812 -k1,172:29510649,20559393:289813 -k1,172:30153609,20559393:289721 -k1,172:32583029,20559393:0 -) -(1,173:6630773,21400881:25952256,505283,134348 -k1,172:8120948,21400881:222709 -k1,172:10201603,21400881:222709 -k1,172:12739698,21400881:222708 -k1,172:13566649,21400881:222709 -k1,172:14524064,21400881:222756 -k1,172:16721513,21400881:222849 -k1,172:17297437,21400881:222685 -k1,172:18711591,21400881:222709 -k1,172:20792246,21400881:222709 -k1,172:22006515,21400881:222709 -k1,172:25928730,21400881:222708 -k1,172:29397437,21400881:222709 -k1,172:30811591,21400881:222709 -k1,173:32583029,21400881:0 -) -(1,173:6630773,22242369:25952256,505283,134348 -k1,172:8456659,22242369:228118 -k1,172:9300815,22242369:228118 -k1,172:10548018,22242369:228118 -k1,172:13618431,22242369:228117 -k1,172:16803533,22242369:228118 -k1,172:18407252,22242369:228118 -k1,172:21270573,22242369:228118 -k1,172:24336400,22242369:228118 -k1,172:24979332,22242369:228089 -k1,172:27463854,22242369:228117 -k1,172:28378134,22242369:228118 -k1,172:28962112,22242369:228118 -k1,172:30688383,22242369:228118 -k1,172:32583029,22242369:0 -) -(1,173:6630773,23083857:25952256,513147,134348 -k1,172:11102840,23083857:157177 -k1,172:16316775,23083857:157177 -k1,172:17141109,23083857:157178 -k1,172:17825195,23083857:157177 -k1,172:18930023,23083857:157177 -k1,172:20179685,23083857:157177 -k1,172:20952901,23083857:157178 -k1,172:23982521,23083857:157177 -k1,172:26554044,23083857:157177 -k1,172:27299734,23083857:157177 -k1,172:28475997,23083857:157178 -k1,172:31548871,23083857:157177 -k1,173:32583029,23083857:0 -) -(1,173:6630773,23925345:25952256,513147,134348 -k1,172:10204301,23925345:193181 -k1,172:10753342,23925345:193181 -k1,172:13026636,23925345:193181 -k1,172:13879108,23925345:193180 -k1,172:15091374,23925345:193181 -k1,172:15637788,23925345:193175 -k1,172:18846936,23925345:193181 -k1,172:20236804,23925345:193181 -k1,172:20844822,23925345:193175 -k1,172:23780028,23925345:193180 -k1,172:26402629,23925345:193181 -k1,172:28088720,23925345:193181 -k1,172:29657502,23925345:193181 -k1,172:32583029,23925345:0 -) -(1,173:6630773,24766833:25952256,513147,102891 -k1,172:7947811,24766833:183920 -k1,172:11648394,24766833:183921 -k1,172:14467517,24766833:183920 -k1,172:15004661,24766833:183905 -k1,172:16380026,24766833:183920 -k1,172:16978774,24766833:183905 -k1,172:20332016,24766833:183921 -k1,172:21707381,24766833:183920 -k1,172:23588028,24766833:183920 -k1,172:27288611,24766833:183921 -k1,172:28464091,24766833:183920 -k1,173:32583029,24766833:0 -) -(1,173:6630773,25608321:25952256,513147,134348 -k1,172:9364697,25608321:206856 -k1,172:10230845,25608321:206856 -k1,172:11123863,25608321:206856 -k1,172:14644220,25608321:206857 -k1,172:19623408,25608321:206856 -k1,172:20648153,25608321:206856 -k1,172:21269844,25608321:206848 -k1,172:24303268,25608321:206857 -k1,172:26368070,25608321:206856 -k1,172:27190964,25608321:206856 -k1,172:30890889,25608321:206856 -k1,172:32583029,25608321:0 -) -(1,173:6630773,26449809:25952256,513147,126483 -k1,172:7464885,26449809:174820 -k1,172:8658791,26449809:174821 -k1,172:10116806,26449809:174820 -k1,172:12897337,26449809:174820 -k1,172:13688195,26449809:174820 -k1,172:14277834,26449809:174796 -k1,172:16196568,26449809:174821 -k1,172:17880027,26449809:174820 -k1,172:19292822,26449809:174820 -k1,172:20950067,26449809:174821 -k1,172:22392353,26449809:174820 -k1,172:24598789,26449809:174820 -k1,172:25188428,26449809:174796 -k1,172:25894745,26449809:174820 -k1,172:27317372,26449809:174821 -k1,172:28683637,26449809:174820 -k1,172:32583029,26449809:0 -) -(1,173:6630773,27291297:25952256,513147,11795 -g1,172:8021447,27291297 -g1,172:9239761,27291297 -g1,172:11177005,27291297 -g1,172:12670571,27291297 -g1,172:13223039,27291297 -g1,172:13953765,27291297 -g1,172:17600843,27291297 -g1,172:19313298,27291297 -g1,172:20163955,27291297 -g1,172:21899348,27291297 -g1,172:22750005,27291297 -k1,173:32583029,27291297:9244511 -g1,173:32583029,27291297 -) -(1,175:6630773,28132785:25952256,513147,134348 -h1,174:6630773,28132785:983040,0,0 -k1,174:9498449,28132785:250823 -k1,174:11795306,28132785:250823 -k1,174:12460920,28132785:250771 -k1,174:15474086,28132785:250823 -k1,174:17292530,28132785:250823 -k1,174:19139154,28132785:250823 -k1,174:20722324,28132785:250823 -k1,174:22258308,28132785:250823 -k1,174:23040628,28132785:250823 -k1,174:24575957,28132785:250823 -k1,174:25179967,28132785:250771 -k1,174:26637963,28132785:250823 -k1,174:29745500,28132785:250823 -k1,174:31563944,28132785:250823 -k1,174:32583029,28132785:0 -) -(1,175:6630773,28974273:25952256,513147,134348 -k1,174:8299201,28974273:180105 -k1,174:9165467,28974273:180104 -k1,174:9701432,28974273:180105 -k1,174:12957797,28974273:180105 -k1,174:17490147,28974273:180104 -k1,174:20686219,28974273:180105 -k1,174:22247167,28974273:180104 -k1,174:23764206,28974273:180105 -k1,174:25331053,28974273:180105 -k1,174:29550141,28974273:180104 -k1,174:30677897,28974273:180105 -k1,175:32583029,28974273:0 -) -(1,175:6630773,29815761:25952256,513147,134348 -k1,174:7962363,29815761:174880 -k1,174:9203514,29815761:174880 -k1,174:11866797,29815761:174881 -k1,174:14562192,29815761:174880 -k1,174:15419957,29815761:174880 -k1,174:17717548,29815761:174880 -k1,174:18543857,29815761:174881 -k1,174:20333544,29815761:174880 -k1,174:23267490,29815761:174880 -k1,174:24390021,29815761:174880 -k1,174:25954265,29815761:174881 -k1,174:28857409,29815761:174880 -k1,174:31966991,29815761:174880 -k1,174:32583029,29815761:0 -) -(1,175:6630773,30657249:25952256,513147,134348 -k1,174:8868267,30657249:221607 -k1,174:9547971,30657249:221607 -k1,174:11815612,30657249:221607 -k1,174:12393079,30657249:221607 -k1,174:14165922,30657249:221606 -k1,174:17573889,30657249:221607 -k1,174:20325186,30657249:221607 -k1,174:20961614,30657249:221585 -k1,174:21714718,30657249:221607 -k1,174:23737253,30657249:221606 -k1,174:27348382,30657249:221607 -k1,174:28330207,30657249:221607 -k1,174:29755055,30657249:221607 -k1,174:30845014,30657249:221607 -k1,174:32583029,30657249:0 -) -(1,175:6630773,31498737:25952256,513147,126483 -k1,174:8152519,31498737:237240 -k1,174:9672954,31498737:237240 -k1,174:13985878,31498737:237240 -k1,174:15327400,31498737:237240 -k1,174:16312406,31498737:237240 -k1,174:18350576,31498737:237241 -k1,174:20726911,31498737:237240 -k1,174:22155596,31498737:237240 -k1,174:24723952,31498737:237240 -k1,174:26152637,31498737:237240 -k1,174:27593118,31498737:237240 -k1,174:29113553,31498737:237240 -k1,175:32583029,31498737:0 -) -(1,175:6630773,32340225:25952256,513147,134348 -k1,174:7670876,32340225:220903 -k1,174:8423276,32340225:220903 -k1,174:9295607,32340225:220903 -k1,174:10535596,32340225:220904 -k1,174:12137343,32340225:220903 -k1,174:17843609,32340225:220903 -k1,174:19632133,32340225:220903 -k1,174:21137542,32340225:220903 -k1,174:22836937,32340225:220903 -k1,174:24325306,32340225:220903 -k1,174:25134723,32340225:220904 -k1,174:25983461,32340225:220903 -k1,174:27906334,32340225:220903 -k1,174:30255846,32340225:220903 -k1,174:32583029,32340225:0 -) -(1,175:6630773,33181713:25952256,513147,134348 -k1,174:7525793,33181713:235728 -k1,174:9879645,33181713:235728 -k1,174:10766800,33181713:235727 -k1,174:13060358,33181713:235728 -k1,174:15931289,33181713:235728 -k1,174:18929360,33181713:235728 -k1,174:21145585,33181713:235727 -k1,174:22040605,33181713:235728 -k1,174:25035399,33181713:235728 -k1,174:25922555,33181713:235728 -k1,174:26973550,33181713:235727 -k1,174:29971621,33181713:235728 -k1,174:31923737,33181713:235728 -k1,174:32583029,33181713:0 -) -(1,175:6630773,34023201:25952256,513147,134348 -k1,174:9538737,34023201:207225 -k1,174:10428847,34023201:207225 -k1,174:12417342,34023201:207226 -k1,174:13781277,34023201:207225 -k1,174:15092784,34023201:207225 -k1,174:17587216,34023201:207225 -k1,174:19060597,34023201:207225 -k1,174:20038526,34023201:207226 -k1,174:20660586,34023201:207217 -k1,174:23447963,34023201:207225 -k1,174:24939694,34023201:207225 -k1,174:26279381,34023201:207225 -k1,174:28916682,34023201:207226 -k1,174:30142992,34023201:207225 -k1,174:31931601,34023201:207225 -k1,174:32583029,34023201:0 -) -(1,175:6630773,34864689:25952256,505283,134348 -k1,174:7649764,34864689:203723 -k1,174:8872573,34864689:203724 -k1,174:10098002,34864689:203723 -k1,174:12311714,34864689:203723 -k1,174:13103950,34864689:203723 -k1,174:14349696,34864689:203724 -k1,174:16297332,34864689:203723 -k1,174:19385294,34864689:203723 -k1,174:21394535,34864689:203724 -k1,174:23800268,34864689:203723 -k1,174:26704730,34864689:203723 -k1,174:27927538,34864689:203723 -k1,174:30113071,34864689:203724 -k1,174:30968222,34864689:203723 -k1,174:32583029,34864689:0 -) -(1,175:6630773,35706177:25952256,513147,134348 -k1,174:7190349,35706177:203716 -k1,174:9078996,35706177:203716 -k1,174:12198410,35706177:203717 -k1,174:15849975,35706177:203716 -k1,174:17282491,35706177:203716 -k1,174:17842067,35706177:203716 -k1,174:20536807,35706177:203717 -k1,174:21399815,35706177:203716 -k1,174:23102339,35706177:203716 -k1,174:23965347,35706177:203716 -k1,174:25838921,35706177:203717 -k1,174:28054592,35706177:203716 -k1,174:31923737,35706177:203716 -k1,174:32583029,35706177:0 -) -(1,175:6630773,36547665:25952256,505283,134348 -k1,174:9110600,36547665:161819 -k1,174:12146829,36547665:161820 -k1,174:13350670,36547665:161819 -k1,174:15256403,36547665:161820 -k1,174:17540933,36547665:161819 -k1,174:18354180,36547665:161819 -k1,174:20449967,36547665:161820 -k1,174:22037194,36547665:161819 -k1,174:26724930,36547665:161820 -k1,174:28266937,36547665:161819 -k1,174:29903972,36547665:161820 -k1,174:31084876,36547665:161819 -k1,174:32583029,36547665:0 -) -(1,175:6630773,37389153:25952256,505283,134348 -g1,174:8407454,37389153 -g1,174:9258111,37389153 -g1,174:12089921,37389153 -g1,174:13308235,37389153 -g1,174:15088848,37389153 -g1,174:16668265,37389153 -g1,174:18397760,37389153 -g1,174:20295027,37389153 -g1,174:22190983,37389153 -g1,174:23205480,37389153 -g1,174:24470980,37389153 -g1,174:27004601,37389153 -k1,175:32583029,37389153:3903983 -g1,175:32583029,37389153 -) -(1,177:6630773,38230641:25952256,513147,134348 -h1,176:6630773,38230641:983040,0,0 -k1,176:10820646,38230641:272131 -k1,176:12111863,38230641:272132 -k1,176:13985694,38230641:272131 -k1,176:17467123,38230641:272131 -k1,176:20978043,38230641:272131 -k1,176:21909467,38230641:272132 -k1,176:23916991,38230641:272131 -k1,176:24544982,38230641:272131 -k1,176:27659409,38230641:272131 -k1,176:29077766,38230641:272132 -k1,176:29764667,38230641:272058 -k1,176:30568295,38230641:272131 -k1,176:32124932,38230641:272131 -k1,176:32583029,38230641:0 -) -(1,177:6630773,39072129:25952256,505283,126483 -k1,176:8913515,39072129:236708 -k1,176:9608320,39072129:236708 -k1,176:11239633,39072129:236707 -k1,176:12127769,39072129:236708 -k1,176:13179745,39072129:236708 -k1,176:14805816,39072129:236708 -k1,176:17743262,39072129:236707 -k1,176:18596008,39072129:236708 -k1,176:19188576,39072129:236708 -k1,176:20663259,39072129:236708 -k1,176:22184472,39072129:236707 -k1,176:24894509,39072129:236708 -k1,176:26415723,39072129:236708 -k1,176:28032619,39072129:236708 -k1,176:29373608,39072129:236707 -k1,176:30358082,39072129:236708 -k1,176:32583029,39072129:0 -) -(1,177:6630773,39913617:25952256,513147,134348 -k1,176:9828649,39913617:239581 -k1,176:10696065,39913617:239581 -k1,176:12637616,39913617:239581 -k1,176:15005806,39913617:239581 -k1,176:16264472,39913617:239581 -k1,176:18788638,39913617:239581 -k1,176:22267008,39913617:239581 -k1,176:23165880,39913617:239580 -k1,176:25140854,39913617:239581 -k1,176:25968948,39913617:239581 -k1,176:26894691,39913617:239581 -k1,176:27490132,39913617:239581 -k1,176:30745680,39913617:239581 -k1,176:31516758,39913617:239581 -k1,176:32583029,39913617:0 -) -(1,177:6630773,40755105:25952256,505283,134348 -k1,176:7435555,40755105:188744 -k1,176:12559814,40755105:188743 -k1,176:14142509,40755105:188744 -k1,176:15350338,40755105:188744 -k1,176:18789012,40755105:188744 -k1,176:20049924,40755105:188743 -k1,176:20854706,40755105:188744 -k1,176:25978966,40755105:188744 -k1,176:26819138,40755105:188744 -k1,176:28709851,40755105:188743 -k1,176:31034413,40755105:188744 -k1,176:32583029,40755105:0 -) -(1,177:6630773,41596593:25952256,513147,134348 -k1,176:7906672,41596593:174894 -k1,176:9591515,41596593:174893 -k1,176:11517531,41596593:174894 -k1,176:12308463,41596593:174894 -k1,176:12839217,41596593:174894 -k1,176:14252085,41596593:174893 -k1,176:15711485,41596593:174894 -k1,176:16417876,41596593:174894 -k1,176:21102302,41596593:174894 -k1,176:22051175,41596593:174893 -k1,176:24508688,41596593:174894 -k1,176:26385552,41596593:174894 -k1,176:28696264,41596593:174894 -k1,176:30208091,41596593:174893 -k1,176:31931601,41596593:174894 -k1,176:32583029,41596593:0 -) -(1,177:6630773,42438081:25952256,505283,126483 -k1,176:7935040,42438081:186223 -k1,176:9140348,42438081:186223 -k1,176:10980044,42438081:186223 -k1,176:14656059,42438081:186223 -k1,176:15458320,42438081:186223 -k1,176:18117216,42438081:186223 -k1,176:21553370,42438081:186224 -k1,176:22811762,42438081:186223 -k1,176:24196639,42438081:186223 -k1,176:24840959,42438081:186223 -k1,176:27095498,42438081:186223 -k1,176:28566227,42438081:186223 -k1,176:29108310,42438081:186223 -k1,176:32583029,42438081:0 -) -(1,177:6630773,43279569:25952256,513147,126483 -k1,176:8407000,43279569:208606 -k1,176:8971466,43279569:208606 -k1,176:10114615,43279569:208606 -k1,176:10982513,43279569:208606 -k1,176:15028907,43279569:208606 -k1,176:15888941,43279569:208606 -k1,176:17116633,43279569:208607 -k1,176:20401499,43279569:208606 -k1,176:21877571,43279569:208606 -k1,176:23312356,43279569:208606 -k1,176:26242017,43279569:208606 -k1,176:27102051,43279569:208606 -k1,176:31563944,43279569:208606 -k1,176:32583029,43279569:0 -) -(1,177:6630773,44121057:25952256,513147,134348 -k1,176:9794742,44121057:203052 -k1,176:11189239,44121057:203052 -k1,176:14176917,44121057:203053 -k1,176:16658656,44121057:203052 -k1,176:17521000,44121057:203052 -k1,176:18079912,44121057:203052 -k1,176:21962811,44121057:203052 -k1,176:23648287,44121057:203052 -k1,176:24382837,44121057:203053 -k1,176:27083466,44121057:203052 -k1,176:29966941,44121057:203052 -k1,176:31563944,44121057:203052 -k1,176:32583029,44121057:0 -) -(1,177:6630773,44962545:25952256,505283,134348 -g1,176:10533441,44962545 -g1,176:13019877,44962545 -g1,176:15946714,44962545 -k1,177:32583029,44962545:15846606 -g1,177:32583029,44962545 -) -] -(1,181:32583029,45706769:0,0,0 -g1,181:32583029,45706769 -) -) -] -(1,181:6630773,47279633:25952256,0,0 -h1,181:6630773,47279633:25952256,0,0 -) -] -(1,181:4262630,4025873:0,0,0 -[1,181:-473656,4025873:0,0,0 -(1,181:-473656,-710413:0,0,0 -(1,181:-473656,-710413:0,0,0 -g1,181:-473656,-710413 -) -g1,181:-473656,-710413 -) -] -) -] -!25536 -}16 -Input:185:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:186:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:187:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:188:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!375 -{17 -[1,201:4262630,47279633:28320399,43253760,0 -(1,201:4262630,4025873:0,0,0 -[1,201:-473656,4025873:0,0,0 -(1,201:-473656,-710413:0,0,0 -(1,201:-473656,-644877:0,0,0 -k1,201:-473656,-644877:-65536 -) -(1,201:-473656,4736287:0,0,0 -k1,201:-473656,4736287:5209943 -) -g1,201:-473656,-710413 -) -] -) -[1,201:6630773,47279633:25952256,43253760,0 -[1,201:6630773,4812305:25952256,786432,0 -(1,201:6630773,4812305:25952256,505283,134348 -(1,201:6630773,4812305:25952256,505283,134348 -g1,201:3078558,4812305 -[1,201:3078558,4812305:0,0,0 -(1,201:3078558,2439708:0,1703936,0 -k1,201:1358238,2439708:-1720320 -(1,135:1358238,2439708:1720320,1703936,0 -(1,135:1358238,2439708:1179648,16384,0 -r1,201:2537886,2439708:1179648,16384,0 -) -g1,135:3062174,2439708 -(1,135:3062174,2439708:16384,1703936,0 -[1,135:3062174,2439708:25952256,1703936,0 -(1,135:3062174,1915420:25952256,1179648,0 -(1,135:3062174,1915420:16384,1179648,0 -r1,201:3078558,1915420:16384,1179648,0 -) -k1,135:29014430,1915420:25935872 -g1,135:29014430,1915420 -) -] -) -) -) -] -[1,201:3078558,4812305:0,0,0 -(1,201:3078558,2439708:0,1703936,0 -g1,201:29030814,2439708 -g1,201:36135244,2439708 -(1,135:36135244,2439708:1720320,1703936,0 -(1,135:36135244,2439708:16384,1703936,0 -[1,135:36135244,2439708:25952256,1703936,0 -(1,135:36135244,1915420:25952256,1179648,0 -(1,135:36135244,1915420:16384,1179648,0 -r1,201:36151628,1915420:16384,1179648,0 -) -k1,135:62087500,1915420:25935872 -g1,135:62087500,1915420 -) -] -) -g1,135:36675916,2439708 -(1,135:36675916,2439708:1179648,16384,0 -r1,201:37855564,2439708:1179648,16384,0 -) -) -k1,201:3078556,2439708:-34777008 -) -] -[1,201:3078558,4812305:0,0,0 -(1,201:3078558,49800853:0,16384,2228224 -k1,201:1358238,49800853:-1720320 -(1,135:1358238,49800853:1720320,16384,2228224 -(1,135:1358238,49800853:1179648,16384,0 -r1,201:2537886,49800853:1179648,16384,0 -) -g1,135:3062174,49800853 -(1,135:3062174,52029077:16384,1703936,0 -[1,135:3062174,52029077:25952256,1703936,0 -(1,135:3062174,51504789:25952256,1179648,0 -(1,135:3062174,51504789:16384,1179648,0 -r1,201:3078558,51504789:16384,1179648,0 -) -k1,135:29014430,51504789:25935872 -g1,135:29014430,51504789 -) -] -) -) -) -] -[1,201:3078558,4812305:0,0,0 -(1,201:3078558,49800853:0,16384,2228224 -g1,201:29030814,49800853 -g1,201:36135244,49800853 -(1,135:36135244,49800853:1720320,16384,2228224 -(1,135:36135244,52029077:16384,1703936,0 -[1,135:36135244,52029077:25952256,1703936,0 -(1,135:36135244,51504789:25952256,1179648,0 -(1,135:36135244,51504789:16384,1179648,0 -r1,201:36151628,51504789:16384,1179648,0 -) -k1,135:62087500,51504789:25935872 -g1,135:62087500,51504789 -) -] -) -g1,135:36675916,49800853 -(1,135:36675916,49800853:1179648,16384,0 -r1,201:37855564,49800853:1179648,16384,0 -) -) -k1,201:3078556,49800853:-34777008 -) -] -g1,201:6630773,4812305 -k1,201:21845614,4812305:14816382 -g1,201:22668090,4812305 -g1,201:24054831,4812305 -g1,201:27195316,4812305 -g1,201:28604995,4812305 -g1,201:29789885,4812305 -) -) -] -[1,201:6630773,45706769:25952256,40108032,0 -(1,201:6630773,45706769:25952256,40108032,0 -(1,201:6630773,45706769:0,0,0 -g1,201:6630773,45706769 -) -[1,201:6630773,45706769:25952256,40108032,0 -(1,178:6630773,6254097:25952256,555811,147783 -(1,178:6630773,6254097:2450326,534184,12975 -g1,178:6630773,6254097 -g1,178:9081099,6254097 -) -g1,178:9825064,6254097 -g1,178:10828552,6254097 -g1,178:11454290,6254097 -k1,178:32583029,6254097:17881102 -g1,178:32583029,6254097 -) -(1,181:6630773,7488801:25952256,513147,134348 -k1,180:7262797,7488801:217181 -k1,180:8011492,7488801:217198 -k1,180:8584551,7488801:217199 -k1,180:11878010,7488801:217199 -k1,180:14937505,7488801:217199 -k1,180:18011417,7488801:217198 -k1,180:19176267,7488801:217199 -k1,180:20782829,7488801:217199 -k1,180:23554621,7488801:217199 -k1,180:24963265,7488801:217199 -k1,180:26569826,7488801:217198 -k1,180:31039656,7488801:217199 -k1,181:32583029,7488801:0 -) -(1,181:6630773,8330289:25952256,513147,134348 -k1,180:8330952,8330289:186297 -k1,180:9133287,8330289:186297 -k1,180:11950855,8330289:186297 -k1,180:12788580,8330289:186297 -k1,180:14667017,8330289:186297 -k1,180:16555284,8330289:186297 -k1,180:19562906,8330289:186297 -k1,180:23095470,8330289:186296 -k1,180:23739864,8330289:186297 -k1,180:24631328,8330289:186297 -k1,180:26385246,8330289:186297 -k1,180:27590628,8330289:186297 -k1,180:29465132,8330289:186297 -k1,180:30310721,8330289:186297 -k1,180:31923737,8330289:186297 -k1,180:32583029,8330289:0 -) -(1,181:6630773,9171777:25952256,513147,134348 -k1,180:9859142,9171777:152109 -k1,180:14537167,9171777:152109 -k1,180:15045136,9171777:152109 -k1,180:18122772,9171777:152109 -k1,180:22230634,9171777:152109 -k1,180:22914240,9171777:152109 -k1,180:24132620,9171777:152109 -k1,180:26756747,9171777:152109 -k1,180:28040663,9171777:152109 -k1,180:31402070,9171777:152109 -k1,181:32583029,9171777:0 -) -(1,181:6630773,10013265:25952256,513147,134348 -k1,180:8312209,10013265:200322 -k1,180:9140365,10013265:200321 -k1,180:11042657,10013265:200322 -k1,180:13371588,10013265:200322 -k1,180:14381279,10013265:200321 -k1,180:18652697,10013265:200322 -k1,180:22257614,10013265:200322 -k1,180:23140820,10013265:200321 -k1,180:24730505,10013265:200322 -k1,180:26647215,10013265:200322 -k1,180:27839096,10013265:200321 -k1,180:30316794,10013265:200322 -k1,181:32583029,10013265:0 -) -(1,181:6630773,10854753:25952256,513147,134348 -k1,180:8255959,10854753:258760 -k1,180:10489676,10854753:259117 -k1,180:10961368,10854753:258700 -k1,180:13998855,10854753:258760 -k1,180:16040850,10854753:258760 -k1,180:16958902,10854753:258760 -k1,180:18006060,10854753:258760 -k1,180:20685065,10854753:258760 -k1,180:21595252,10854753:258759 -k1,180:22873097,10854753:258760 -k1,180:24342962,10854753:258760 -k1,180:25886228,10854753:258760 -k1,180:26933386,10854753:258760 -k1,180:29280778,10854753:258760 -k1,180:32227169,10854753:258760 -k1,180:32583029,10854753:0 -) -(1,181:6630773,11696241:25952256,505283,134348 -k1,180:8169559,11696241:184812 -k1,180:9938377,11696241:184813 -k1,180:12536225,11696241:184812 -k1,180:15356241,11696241:184813 -k1,180:18846034,11696241:184812 -k1,180:21032972,11696241:184813 -k1,180:22409229,11696241:184812 -k1,180:25919994,11696241:184813 -k1,180:26519635,11696241:184798 -k1,180:28633173,11696241:184813 -k1,180:29430747,11696241:184812 -k1,180:32583029,11696241:0 -) -(1,181:6630773,12537729:25952256,513147,126483 -k1,180:9022884,12537729:226801 -k1,180:9901114,12537729:226802 -k1,180:10916313,12537729:226801 -k1,180:15032020,12537729:226801 -k1,180:15871583,12537729:226801 -k1,180:17117470,12537729:226802 -k1,180:18659579,12537729:226801 -k1,180:19545672,12537729:226801 -k1,180:21148075,12537729:226802 -k1,180:21730736,12537729:226801 -k1,180:24988577,12537729:226801 -k1,180:26475635,12537729:226801 -k1,180:27361729,12537729:226802 -k1,180:30893511,12537729:226801 -k1,180:32583029,12537729:0 -) -(1,181:6630773,13379217:25952256,513147,126483 -k1,180:8838502,13379217:205604 -k1,180:9575603,13379217:205604 -k1,180:12344976,13379217:205605 -k1,180:13312108,13379217:205604 -k1,180:16329207,13379217:205604 -k1,180:21360882,13379217:205604 -k1,180:22225778,13379217:205604 -k1,180:25834011,13379217:205604 -k1,180:27231061,13379217:205605 -k1,180:29963078,13379217:205604 -k1,180:31116333,13379217:205604 -k1,180:32583029,13379217:0 -) -(1,181:6630773,14220705:25952256,513147,134348 -k1,180:11672094,14220705:197555 -k1,180:13061093,14220705:197554 -k1,180:16515132,14220705:197555 -k1,180:20374838,14220705:197554 -k1,180:21223821,14220705:197555 -k1,180:25947291,14220705:197554 -k1,180:27341533,14220705:197555 -k1,180:29192560,14220705:197554 -k1,180:31044899,14220705:197555 -k1,181:32583029,14220705:0 -) -(1,181:6630773,15062193:25952256,505283,126483 -g1,180:8668287,15062193 -g1,180:9971798,15062193 -g1,180:10918793,15062193 -g1,180:12403838,15062193 -g1,180:14403996,15062193 -g1,180:17695869,15062193 -g1,180:18656626,15062193 -g1,180:20236699,15062193 -g1,180:21932115,15062193 -g1,180:24417895,15062193 -g1,180:25233162,15062193 -k1,181:32583029,15062193:6761354 -g1,181:32583029,15062193 -) -(1,183:6630773,15903681:25952256,513147,126483 -h1,182:6630773,15903681:983040,0,0 -k1,182:8591504,15903681:159802 -k1,182:12169008,15903681:159801 -k1,182:14357805,15903681:159802 -k1,182:14932411,15903681:159763 -k1,182:17348617,15903681:159801 -k1,182:18194581,15903681:159802 -k1,182:18710243,15903681:159802 -k1,182:20117850,15903681:159801 -k1,182:21469097,15903681:159802 -k1,182:25528291,15903681:159802 -k1,182:30744850,15903681:159801 -k1,182:31563944,15903681:159802 -k1,183:32583029,15903681:0 -) -(1,183:6630773,16745169:25952256,505283,134348 -k1,182:7220377,16745169:236365 -k1,182:10299075,16745169:236402 -k1,182:12850864,16745169:236402 -k1,182:14278712,16745169:236403 -k1,182:17727689,16745169:236402 -k1,182:19731745,16745169:236550 -k1,182:22076441,16745169:236403 -k1,182:22917085,16745169:236402 -k1,182:23888220,16745169:236476 -k1,182:26099445,16745169:236625 -k1,182:27289397,16745169:236403 -k1,182:28658261,16745169:236402 -k1,182:31563944,16745169:236402 -k1,182:32583029,16745169:0 -) -(1,183:6630773,17586657:25952256,513147,134348 -k1,182:9485996,17586657:249512 -k1,182:10394800,17586657:249512 -k1,182:11663397,17586657:249512 -k1,182:12327702,17586657:249462 -k1,182:15419510,17586657:249512 -k1,182:16285060,17586657:249512 -k1,182:17988161,17586657:249512 -k1,182:21159268,17586657:249512 -k1,182:22897103,17586657:249512 -k1,182:23359557,17586657:249462 -k1,182:26432360,17586657:249512 -k1,182:27629523,17586657:249512 -k1,182:29622948,17586657:249512 -k1,182:31266411,17586657:249512 -k1,183:32583029,17586657:0 -) -(1,183:6630773,18428145:25952256,513147,134348 -k1,182:10072724,18428145:193331 -k1,182:13852840,18428145:193331 -k1,182:15330677,18428145:193331 -k1,182:15982105,18428145:193331 -k1,182:17668346,18428145:193331 -k1,182:19336892,18428145:193331 -k1,182:21222363,18428145:193331 -k1,182:24021405,18428145:193331 -k1,182:25499242,18428145:193331 -k1,182:27408306,18428145:193331 -k1,182:28059734,18428145:193331 -k1,182:31015408,18428145:193331 -k1,182:32583029,18428145:0 -) -(1,183:6630773,19269633:25952256,513147,134348 -k1,182:8549848,19269633:217105 -k1,182:12071933,19269633:217104 -k1,182:13802264,19269633:217105 -k1,182:18371614,19269633:217104 -k1,182:21934987,19269633:217105 -k1,182:23194113,19269633:217104 -k1,182:26246305,19269633:217105 -k1,182:26878234,19269633:217086 -k1,182:28588249,19269633:217105 -k1,182:29871624,19269633:217104 -k1,182:31563944,19269633:217105 -k1,182:32583029,19269633:0 -) -(1,183:6630773,20111121:25952256,513147,126483 -k1,182:8492520,20111121:194511 -k1,182:10073117,20111121:194511 -k1,182:12419830,20111121:194511 -k1,182:13281496,20111121:194510 -k1,182:15420460,20111121:194511 -k1,182:16297856,20111121:194511 -k1,182:17949232,20111121:194511 -k1,182:18613636,20111121:194511 -k1,182:19909152,20111121:194511 -k1,182:23180578,20111121:194511 -k1,182:24659595,20111121:194511 -k1,182:25958387,20111121:194510 -k1,182:27505561,20111121:194511 -k1,182:30008250,20111121:194511 -k1,182:31394206,20111121:194511 -k1,183:32583029,20111121:0 -) -(1,183:6630773,20952609:25952256,513147,134348 -k1,182:8563823,20952609:175374 -k1,182:9425359,20952609:175374 -k1,182:12573446,20952609:175374 -k1,182:15420723,20952609:175374 -k1,182:17246294,20952609:175374 -k1,182:19777033,20952609:175375 -k1,182:22694433,20952609:175374 -k1,182:26386469,20952609:175374 -k1,182:27509494,20952609:175374 -k1,182:29178434,20952609:175374 -k1,182:32583029,20952609:0 -) -(1,183:6630773,21794097:25952256,513147,134348 -k1,182:8280248,21794097:207028 -k1,182:10189247,21794097:207029 -k1,182:13742543,21794097:207028 -k1,182:16292483,21794097:207028 -k1,182:19745510,21794097:207029 -k1,182:22712914,21794097:207028 -k1,182:25270718,21794097:207028 -k1,182:26669191,21794097:207028 -k1,182:28084049,21794097:207029 -k1,182:29960934,21794097:207028 -k1,182:32583029,21794097:0 -) -(1,183:6630773,22635585:25952256,513147,134348 -k1,182:10145318,22635585:203011 -k1,182:11742279,22635585:203010 -k1,182:13637430,22635585:203011 -k1,182:14499732,22635585:203010 -k1,182:16399470,22635585:203011 -k1,182:21116601,22635585:203011 -k1,182:21978903,22635585:203010 -k1,182:23200999,22635585:203011 -k1,182:23818849,22635585:203007 -k1,182:27037826,22635585:203010 -k1,182:28282859,22635585:203011 -k1,182:30229782,22635585:203010 -k1,182:32168186,22635585:203011 -k1,183:32583029,22635585:0 -) -(1,183:6630773,23477073:25952256,513147,134348 -k1,182:10963060,23477073:231699 -k1,182:11877645,23477073:231700 -k1,182:14367059,23477073:231699 -k1,182:16283690,23477073:231700 -k1,182:18850437,23477073:231699 -k1,182:20778864,23477073:231700 -k1,182:25103942,23477073:231699 -k1,182:27941353,23477073:231700 -k1,182:29888785,23477073:231699 -k1,182:31138914,23477073:231700 -k1,182:31726473,23477073:231699 -k1,182:32583029,23477073:0 -) -(1,183:6630773,24318561:25952256,505283,134348 -g1,182:8700400,24318561 -g1,182:9661157,24318561 -g1,182:11893968,24318561 -k1,183:32583029,24318561:18486396 -g1,183:32583029,24318561 -) -v1,185:6630773,25684337:0,393216,0 -(1,186:6630773,29727856:25952256,4436735,616038 -g1,186:6630773,29727856 -(1,186:6630773,29727856:25952256,4436735,616038 -(1,186:6630773,30343894:25952256,5052773,0 -[1,186:6630773,30343894:25952256,5052773,0 -(1,186:6630773,30317680:25952256,5000345,0 -r1,201:6656987,30317680:26214,5000345,0 -[1,186:6656987,30317680:25899828,5000345,0 -(1,186:6656987,29727856:25899828,3820697,0 -[1,186:7246811,29727856:24720180,3820697,0 -(1,186:7246811,27069044:24720180,1161885,196608 -(1,185:7246811,27069044:0,1161885,196608 -r1,201:8794447,27069044:1547636,1358493,196608 -k1,185:7246811,27069044:-1547636 -) -(1,185:7246811,27069044:1547636,1161885,196608 -) -k1,185:9065209,27069044:270762 -k1,185:11053013,27069044:270761 -k1,185:14496373,27069044:270762 -k1,185:16242349,27069044:270761 -k1,185:18023061,27069044:270762 -k1,185:22670316,27069044:270761 -k1,185:24132523,27069044:270762 -k1,185:25911923,27069044:270761 -k1,185:29085275,27069044:270762 -k1,185:30457041,27069044:270761 -k1,185:31966991,27069044:0 -) -(1,186:7246811,27910532:24720180,513147,126483 -k1,185:10220343,27910532:278692 -k1,185:13054284,27910532:278692 -k1,185:13921489,27910532:278692 -k1,185:14816218,27910532:278691 -k1,185:17726181,27910532:278692 -k1,185:18536370,27910532:278692 -k1,185:19881333,27910532:278692 -k1,185:24536519,27910532:278692 -k1,185:26006656,27910532:278692 -k1,185:27940131,27910532:278691 -k1,185:28750320,27910532:278692 -k1,185:29838382,27910532:278692 -k1,185:31966991,27910532:0 -) -(1,186:7246811,28752020:24720180,513147,134348 -k1,185:10442909,28752020:293508 -k1,185:13992245,28752020:293507 -k1,185:15209155,28752020:293508 -k1,185:16521748,28752020:293508 -k1,185:17230004,28752020:293413 -k1,185:20365808,28752020:293508 -k1,185:21190813,28752020:293508 -k1,185:23865898,28752020:293507 -k1,185:24920934,28752020:293508 -k1,185:26233527,28752020:293508 -k1,185:29286756,28752020:293508 -k1,185:30239555,28752020:293507 -k1,185:31552148,28752020:293508 -k1,186:31966991,28752020:0 -) -(1,186:7246811,29593508:24720180,355205,134348 -k1,186:31966992,29593508:21804484 -g1,186:31966992,29593508 -) -] -) -] -r1,201:32583029,30317680:26214,5000345,0 -) -] -) -) -g1,186:32583029,29727856 -) -h1,186:6630773,30343894:0,0,0 -(1,188:6630773,32435154:25952256,534184,147783 -(1,188:6630773,32435154:2450326,534184,12975 -g1,188:6630773,32435154 -g1,188:9081099,32435154 -) -g1,188:9825064,32435154 -g1,188:10828552,32435154 -g1,188:11454290,32435154 -g1,188:15171230,32435154 -k1,188:32583029,32435154:14301133 -g1,188:32583029,32435154 -) -(1,192:6630773,33669858:25952256,513147,134348 -k1,191:8027546,33669858:200086 -k1,191:8642475,33669858:200086 -k1,191:11584587,33669858:200086 -k1,191:13390306,33669858:200087 -k1,191:14121889,33669858:200086 -k1,191:18395038,33669858:200086 -k1,191:19786570,33669858:200087 -k1,191:21005741,33669858:200086 -k1,191:23314777,33669858:200087 -k1,191:25011050,33669858:200086 -k1,191:25742633,33669858:200086 -k1,191:28726689,33669858:200087 -k1,191:29874426,33669858:200086 -k1,191:32583029,33669858:0 -) -(1,192:6630773,34511346:25952256,513147,126483 -k1,191:7522822,34511346:240621 -k1,191:10242015,34511346:240621 -k1,191:12744939,34511346:240621 -k1,191:14177005,34511346:240621 -k1,191:15683782,34511346:240621 -k1,191:16411949,34511346:240579 -k1,191:18368958,34511346:240621 -k1,191:21119608,34511346:240621 -k1,191:22019521,34511346:240621 -k1,191:23971287,34511346:240621 -k1,191:25344370,34511346:240621 -k1,191:27999337,34511346:240621 -k1,191:31548871,34511346:240621 -k1,192:32583029,34511346:0 -) -(1,192:6630773,35352834:25952256,513147,134348 -k1,191:10598525,35352834:190257 -k1,191:11440209,35352834:190256 -k1,191:12649551,35352834:190257 -k1,191:13254642,35352834:190248 -k1,191:16186924,35352834:190256 -k1,191:18156483,35352834:190257 -k1,191:19418908,35352834:190256 -k1,191:20067262,35352834:190257 -k1,191:20789016,35352834:190257 -k1,191:23782902,35352834:190256 -k1,191:25164604,35352834:190257 -k1,191:27098773,35352834:190256 -k1,191:31591469,35352834:190257 -k1,191:32583029,35352834:0 -) -(1,192:6630773,36194322:25952256,505283,134348 -k1,191:10007898,36194322:167827 -k1,191:10791764,36194322:167828 -k1,191:13318232,36194322:167827 -k1,191:13900871,36194322:167796 -k1,191:16593145,36194322:167827 -k1,191:17957659,36194322:167827 -k1,191:21672951,36194322:167828 -k1,191:22859863,36194322:167827 -k1,191:23442502,36194322:167796 -k1,191:26352355,36194322:167827 -k1,191:27388534,36194322:167827 -k1,191:30044764,36194322:167828 -k1,191:31478747,36194322:167827 -k1,191:32583029,36194322:0 -) -(1,192:6630773,37035810:25952256,513147,134348 -k1,191:7658705,37035810:280166 -k1,191:9417363,37035810:280166 -k1,191:10645181,37035810:280167 -k1,191:13687690,37035810:280166 -k1,191:17021834,37035810:280166 -k1,191:19878220,37035810:280166 -k1,191:21349831,37035810:280166 -k1,191:24706258,37035810:280167 -k1,191:28152468,37035810:280166 -k1,191:29629321,37035810:280166 -k1,191:32583029,37035810:0 -) -(1,192:6630773,37877298:25952256,513147,134348 -k1,191:7534971,37877298:244906 -k1,191:8798963,37877298:244907 -k1,191:9458666,37877298:244860 -k1,191:13186812,37877298:244907 -k1,191:15011791,37877298:244906 -k1,191:16972430,37877298:244906 -k1,191:17988040,37877298:244907 -k1,191:21442244,37877298:244906 -k1,191:23459900,37877298:244907 -k1,191:24356234,37877298:244906 -k1,191:26109123,37877298:244906 -k1,191:27373115,37877298:244907 -k1,191:29791195,37877298:244906 -k1,191:32583029,37877298:0 -) -(1,192:6630773,38718786:25952256,513147,126483 -k1,191:8430451,38718786:232057 -k1,191:12464251,38718786:232057 -k1,191:14273759,38718786:232056 -k1,191:15315186,38718786:232057 -k1,191:16313359,38718786:232057 -k1,191:17564501,38718786:232057 -k1,191:20558901,38718786:232057 -k1,191:22763592,38718786:232057 -k1,191:24187093,38718786:232056 -k1,191:27495410,38718786:232057 -k1,191:31896867,38718786:232057 -k1,191:32583029,38718786:0 -) -(1,192:6630773,39560274:25952256,505283,126483 -k1,191:10139868,39560274:228363 -k1,191:11054393,39560274:228363 -k1,191:14086386,39560274:228363 -k1,191:15511436,39560274:228363 -k1,191:16916826,39560274:228363 -k1,191:17676687,39560274:228364 -k1,191:18556478,39560274:228363 -k1,191:20927868,39560274:228363 -k1,191:22440737,39560274:228363 -k1,191:27063289,39560274:228363 -k1,191:29302297,39560274:228363 -k1,191:32583029,39560274:0 -) -(1,192:6630773,40401762:25952256,513147,134348 -k1,191:9046270,40401762:242323 -k1,191:10354864,40401762:242323 -k1,191:11972787,40401762:242322 -k1,191:14248037,40401762:242323 -k1,191:17037089,40401762:242323 -k1,191:17930840,40401762:242323 -k1,191:18587962,40401762:242279 -k1,191:19902454,40401762:242323 -k1,191:21430593,40401762:242323 -k1,191:23705842,40401762:242322 -k1,191:26710508,40401762:242323 -k1,191:30006809,40401762:242323 -k1,191:32583029,40401762:0 -) -(1,192:6630773,41243250:25952256,505283,134348 -g1,191:7976227,41243250 -g1,191:10102214,41243250 -g1,191:11753065,41243250 -g1,191:15139965,41243250 -g1,191:16209513,41243250 -g1,191:17199761,41243250 -g1,191:18590435,41243250 -g1,191:22903358,41243250 -g1,191:24294032,41243250 -g1,191:27569521,41243250 -k1,192:32583029,41243250:1847464 -g1,192:32583029,41243250 -) -(1,200:6630773,42084738:25952256,513147,134348 -h1,199:6630773,42084738:983040,0,0 -k1,199:9037811,42084738:227311 -k1,199:9679937,42084738:227283 -k1,199:12649275,42084738:227312 -k1,199:14369496,42084738:227311 -k1,199:15663078,42084738:227311 -k1,199:17365605,42084738:227312 -k1,199:17948776,42084738:227311 -k1,199:21125862,42084738:227311 -k1,199:22734018,42084738:227312 -k1,199:25771513,42084738:227311 -k1,199:27750601,42084738:227311 -k1,199:28660798,42084738:227312 -k1,199:31015408,42084738:227311 -k1,199:32583029,42084738:0 -) -(1,200:6630773,42926226:25952256,513147,126483 -k1,199:8747641,42926226:231397 -k1,199:9630465,42926226:231396 -k1,199:11350185,42926226:231397 -k1,199:14343924,42926226:231396 -k1,199:16291709,42926226:231397 -k1,199:17182397,42926226:231396 -k1,199:20288203,42926226:231397 -k1,199:23032249,42926226:231396 -k1,199:24282731,42926226:231397 -k1,199:25894971,42926226:231396 -k1,199:27842756,42926226:231397 -k1,199:29093237,42926226:231396 -k1,199:32583029,42926226:0 -) -(1,200:6630773,43767714:25952256,505283,134348 -k1,199:7470900,43767714:227365 -k1,199:8717350,43767714:227365 -k1,199:9359530,43767714:227337 -k1,199:12007140,43767714:227365 -k1,199:14426684,43767714:227365 -h1,199:15397272,43767714:0,0,0 -k1,199:16005401,43767714:227365 -k1,199:17429453,43767714:227365 -k1,199:19310291,43767714:227365 -k1,199:21739667,43767714:227366 -k1,199:25456824,43767714:227365 -k1,199:26788471,43767714:227365 -k1,199:28301652,43767714:227365 -k1,199:29276783,43767714:227365 -k1,199:31315563,43767714:227365 -k1,199:32583029,43767714:0 -) -(1,200:6630773,44609202:25952256,513147,126483 -k1,199:7252622,44609202:265989 -k1,199:8744790,44609202:265989 -k1,199:10167488,44609202:265988 -k1,199:11601984,44609202:265989 -k1,199:12629501,44609202:265989 -k1,199:14237667,44609202:265989 -k1,199:15695101,44609202:265989 -k1,199:17454655,44609202:265988 -k1,199:18076504,44609202:265989 -k1,199:19499203,44609202:265989 -k1,199:21632968,44609202:265989 -k1,199:22254817,44609202:265989 -k1,199:24952191,44609202:265988 -k1,199:26322462,44609202:265989 -k1,199:29798404,44609202:265989 -k1,199:32583029,44609202:0 -) -(1,200:6630773,45450690:25952256,513147,134348 -k1,199:8890505,45450690:230737 -k1,199:9780534,45450690:230737 -k1,199:11030356,45450690:230737 -k1,199:12914566,45450690:230737 -k1,199:16085248,45450690:230737 -k1,199:16975277,45450690:230737 -k1,199:20869476,45450690:230736 -k1,199:22883448,45450690:230737 -k1,199:23982537,45450690:230737 -k1,199:25809731,45450690:230737 -k1,199:26653230,45450690:230737 -k1,199:27903052,45450690:230737 -k1,199:30554034,45450690:230737 -k1,199:32583029,45450690:0 -) -] -(1,201:32583029,45706769:0,0,0 -g1,201:32583029,45706769 -) -) -] -(1,201:6630773,47279633:25952256,0,0 -h1,201:6630773,47279633:25952256,0,0 -) -] -(1,201:4262630,4025873:0,0,0 -[1,201:-473656,4025873:0,0,0 -(1,201:-473656,-710413:0,0,0 -(1,201:-473656,-710413:0,0,0 -g1,201:-473656,-710413 -) -g1,201:-473656,-710413 -) -] -) -] -!22578 -}17 -Input:189:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!102 -{18 -[1,208:4262630,47279633:28320399,43253760,0 -(1,208:4262630,4025873:0,0,0 -[1,208:-473656,4025873:0,0,0 -(1,208:-473656,-710413:0,0,0 -(1,208:-473656,-644877:0,0,0 -k1,208:-473656,-644877:-65536 -) -(1,208:-473656,4736287:0,0,0 -k1,208:-473656,4736287:5209943 -) -g1,208:-473656,-710413 -) -] -) -[1,208:6630773,47279633:25952256,43253760,0 -[1,208:6630773,4812305:25952256,786432,0 -(1,208:6630773,4812305:25952256,475791,11795 -(1,208:6630773,4812305:25952256,475791,11795 -g1,208:3078558,4812305 -[1,208:3078558,4812305:0,0,0 -(1,208:3078558,2439708:0,1703936,0 -k1,208:1358238,2439708:-1720320 -(1,135:1358238,2439708:1720320,1703936,0 -(1,135:1358238,2439708:1179648,16384,0 -r1,208:2537886,2439708:1179648,16384,0 -) -g1,135:3062174,2439708 -(1,135:3062174,2439708:16384,1703936,0 -[1,135:3062174,2439708:25952256,1703936,0 -(1,135:3062174,1915420:25952256,1179648,0 -(1,135:3062174,1915420:16384,1179648,0 -r1,208:3078558,1915420:16384,1179648,0 -) -k1,135:29014430,1915420:25935872 -g1,135:29014430,1915420 -) -] -) -) -) -] -[1,208:3078558,4812305:0,0,0 -(1,208:3078558,2439708:0,1703936,0 -g1,208:29030814,2439708 -g1,208:36135244,2439708 -(1,135:36135244,2439708:1720320,1703936,0 -(1,135:36135244,2439708:16384,1703936,0 -[1,135:36135244,2439708:25952256,1703936,0 -(1,135:36135244,1915420:25952256,1179648,0 -(1,135:36135244,1915420:16384,1179648,0 -r1,208:36151628,1915420:16384,1179648,0 -) -k1,135:62087500,1915420:25935872 -g1,135:62087500,1915420 -) -] -) -g1,135:36675916,2439708 -(1,135:36675916,2439708:1179648,16384,0 -r1,208:37855564,2439708:1179648,16384,0 -) -) -k1,208:3078556,2439708:-34777008 -) -] -[1,208:3078558,4812305:0,0,0 -(1,208:3078558,49800853:0,16384,2228224 -k1,208:1358238,49800853:-1720320 -(1,135:1358238,49800853:1720320,16384,2228224 -(1,135:1358238,49800853:1179648,16384,0 -r1,208:2537886,49800853:1179648,16384,0 -) -g1,135:3062174,49800853 -(1,135:3062174,52029077:16384,1703936,0 -[1,135:3062174,52029077:25952256,1703936,0 -(1,135:3062174,51504789:25952256,1179648,0 -(1,135:3062174,51504789:16384,1179648,0 -r1,208:3078558,51504789:16384,1179648,0 -) -k1,135:29014430,51504789:25935872 -g1,135:29014430,51504789 -) -] -) -) -) -] -[1,208:3078558,4812305:0,0,0 -(1,208:3078558,49800853:0,16384,2228224 -g1,208:29030814,49800853 -g1,208:36135244,49800853 -(1,135:36135244,49800853:1720320,16384,2228224 -(1,135:36135244,52029077:16384,1703936,0 -[1,135:36135244,52029077:25952256,1703936,0 -(1,135:36135244,51504789:25952256,1179648,0 -(1,135:36135244,51504789:16384,1179648,0 -r1,208:36151628,51504789:16384,1179648,0 -) -k1,135:62087500,51504789:25935872 -g1,135:62087500,51504789 -) -] -) -g1,135:36675916,49800853 -(1,135:36675916,49800853:1179648,16384,0 -r1,208:37855564,49800853:1179648,16384,0 -) -) -k1,208:3078556,49800853:-34777008 -) -] -g1,208:6630773,4812305 -g1,208:6630773,4812305 -g1,208:7279579,4812305 -k1,208:32184571,4812305:24904992 -) -) -] -[1,208:6630773,45706769:25952256,40108032,0 -(1,208:6630773,45706769:25952256,40108032,0 -(1,208:6630773,45706769:0,0,0 -g1,208:6630773,45706769 -) -[1,208:6630773,45706769:25952256,40108032,0 -[1,197:6630773,16574217:25952256,10975480,0 -[1,197:6630773,16574217:25952256,10975480,0 -(1,196:6630773,9901958:25952256,4303221,0 -k1,196:8577113,9901958:1946340 -h1,195:8577113,9901958:0,0,0 -(1,195:8577113,9901958:22059576,4303221,0 -) -g1,196:30636689,9901958 -k1,196:32583029,9901958:1946340 -) -(1,196:6630773,11398806:25952256,485622,11795 -h1,196:6630773,11398806:0,0,0 -g1,196:9295467,11398806 -k1,196:32583028,11398806:22297312 -g1,196:32583028,11398806 -) -(1,196:6630773,12240294:25952256,505283,126483 -h1,196:6630773,12240294:0,0,0 -k1,196:7979638,12240294:152178 -k1,196:8546611,12240294:152130 -k1,196:11119034,12240294:152178 -k1,196:13190106,12240294:152178 -k1,196:14361368,12240294:152177 -k1,196:15894390,12240294:152178 -k1,196:17150849,12240294:152177 -k1,196:18689113,12240294:152178 -k1,196:21043300,12240294:152177 -k1,196:24685270,12240294:152178 -k1,196:25994158,12240294:152178 -k1,196:26907863,12240294:152177 -k1,196:28390422,12240294:152178 -k1,196:30030922,12240294:152177 -k1,196:31202185,12240294:152178 -k1,196:32583029,12240294:0 -) -(1,196:6630773,13081782:25952256,513147,134348 -k1,196:7914793,13081782:183015 -k1,196:9904636,13081782:183015 -(1,196:9904636,13081782:0,452978,115847 -r1,208:14835156,13081782:4930520,568825,115847 -k1,196:9904636,13081782:-4930520 -) -(1,196:9904636,13081782:4930520,452978,115847 -k1,196:9904636,13081782:3277 -h1,196:14831879,13081782:0,411205,112570 -) -k1,196:15018171,13081782:183015 -k1,196:16392631,13081782:183015 -k1,196:18982128,13081782:183015 -k1,196:19623240,13081782:183015 -k1,196:20567782,13081782:183014 -k1,196:22923971,13081782:183015 -k1,196:24126071,13081782:183015 -k1,196:25477593,13081782:183015 -k1,196:26319900,13081782:183015 -k1,196:27729094,13081782:183015 -k1,196:28673637,13081782:183015 -k1,196:31563944,13081782:183015 -k1,196:32583029,13081782:0 -) -(1,196:6630773,13923270:25952256,513147,134348 -k1,196:9069750,13923270:183883 -k1,196:10528308,13923270:183883 -k1,196:11908878,13923270:183883 -k1,196:13935633,13923270:183883 -k1,196:14778808,13923270:183883 -k1,196:17485827,13923270:183883 -k1,196:18688796,13923270:183884 -k1,196:22032170,13923270:183883 -k1,196:22747550,13923270:183883 -k1,196:25994586,13923270:183883 -k1,196:28046900,13923270:183883 -k1,196:29249868,13923270:183883 -k1,196:32583029,13923270:0 -) -(1,196:6630773,14764758:25952256,513147,126483 -k1,196:7972526,14764758:145066 -k1,196:11092271,14764758:145066 -k1,196:11850099,14764758:145066 -k1,196:13014250,14764758:145066 -k1,196:14698100,14764758:145065 -k1,196:15502458,14764758:145066 -k1,196:16666609,14764758:145066 -k1,196:18520199,14764758:145066 -k1,196:20007442,14764758:145066 -k1,196:20508368,14764758:145066 -$1,196:20808523,14764758 -$1,196:21329534,14764758 -k1,196:21774755,14764758:145066 -k1,196:22535859,14764758:145066 -k1,196:23884165,14764758:145065 -k1,196:25569982,14764758:145066 -k1,196:26246545,14764758:145066 -k1,196:28259387,14764758:145066 -k1,196:29423538,14764758:145066 -k1,196:32583029,14764758:0 -) -(1,196:6630773,15606246:25952256,505283,134348 -k1,196:9439646,15606246:233963 -k1,196:12545398,15606246:233964 -k1,196:14698255,15606246:233963 -k1,196:15288078,15606246:233963 -k1,196:18681533,15606246:233964 -k1,196:20019778,15606246:233963 -k1,196:21001507,15606246:233963 -k1,196:23042299,15606246:233964 -k1,196:24065971,15606246:233963 -k1,196:27911623,15606246:233963 -k1,196:30568453,15606246:233964 -k1,196:31563944,15606246:233963 -k1,196:32583029,15606246:0 -) -(1,196:6630773,16447734:25952256,505283,126483 -g1,196:8210846,16447734 -g1,196:9401635,16447734 -g1,196:12664017,16447734 -g1,196:13479284,16447734 -g1,196:14908624,16447734 -g1,196:16797371,16447734 -g1,196:19169774,16447734 -g1,196:22147730,16447734 -g1,196:23108487,16447734 -g1,196:23722559,16447734 -g1,196:24913348,16447734 -g1,196:28175730,16447734 -g1,196:28990997,16447734 -k1,196:32583029,16447734:2050625 -g1,196:32583029,16447734 -) -] -] -(1,200:6630773,18540297:25952256,505283,126483 -k1,199:7456614,18540297:209803 -k1,199:11156210,18540297:209804 -k1,199:12522723,18540297:209803 -k1,199:13494054,18540297:209803 -k1,199:15034239,18540297:209804 -k1,199:16112394,18540297:209803 -k1,199:17369462,18540297:209803 -k1,199:18863771,18540297:209803 -k1,199:19941927,18540297:209804 -k1,199:21244215,18540297:209803 -k1,199:21868851,18540297:209793 -k1,199:26179242,18540297:209803 -k1,199:28172280,18540297:209803 -k1,199:29250436,18540297:209804 -k1,199:30578283,18540297:209803 -k1,199:32583029,18540297:0 -) -(1,200:6630773,19381785:25952256,505283,134348 -g1,199:7698354,19381785 -g1,199:9234517,19381785 -g1,199:10481011,19381785 -g1,199:11964746,19381785 -g1,199:13032327,19381785 -g1,199:14349600,19381785 -g1,199:14904689,19381785 -g1,199:17165681,19381785 -k1,200:32583029,19381785:13921816 -g1,200:32583029,19381785 -) -(1,202:6630773,20223273:25952256,513147,134348 -h1,201:6630773,20223273:983040,0,0 -k1,201:9015830,20223273:205330 -k1,201:10393599,20223273:205330 -k1,201:14261080,20223273:205329 -k1,201:17556433,20223273:205330 -k1,201:19617087,20223273:205330 -k1,201:20813977,20223273:205330 -k1,201:22341167,20223273:205329 -k1,201:23205789,20223273:205330 -k1,201:24430204,20223273:205330 -k1,201:25050371,20223273:205324 -k1,201:27997726,20223273:205329 -k1,201:28964584,20223273:205330 -k1,201:30949216,20223273:205330 -k1,202:32583029,20223273:0 -) -(1,202:6630773,21064761:25952256,513147,134348 -k1,201:8330871,21064761:186216 -k1,201:8975184,21064761:186216 -k1,201:9692897,21064761:186216 -k1,201:12656528,21064761:186215 -k1,201:13494172,21064761:186216 -k1,201:14772873,21064761:186216 -k1,201:15314949,21064761:186216 -k1,201:17742496,21064761:186216 -k1,201:20670738,21064761:186216 -k1,201:21543116,21064761:186216 -k1,201:22085191,21064761:186215 -k1,201:25286718,21064761:186216 -k1,201:26155819,21064761:186216 -k1,201:29947826,21064761:186216 -k1,201:32583029,21064761:0 -) -(1,202:6630773,21906249:25952256,513147,134348 -k1,201:7832377,21906249:182519 -k1,201:9395740,21906249:182519 -k1,201:10769703,21906249:182518 -k1,201:11971307,21906249:182519 -k1,201:12568652,21906249:182502 -k1,201:15666868,21906249:182519 -k1,201:17367856,21906249:182519 -k1,201:17906234,21906249:182518 -k1,201:20830779,21906249:182519 -k1,201:23025253,21906249:182519 -k1,201:24857969,21906249:182519 -k1,201:28014511,21906249:182518 -k1,201:29388475,21906249:182519 -k1,201:30671999,21906249:182519 -k1,202:32583029,21906249:0 -) -(1,202:6630773,22747737:25952256,513147,134348 -k1,201:7761597,22747737:157614 -k1,201:10524922,22747737:157614 -k1,201:11967042,22747737:157614 -k1,201:13840389,22747737:157614 -k1,201:16643036,22747737:157614 -k1,201:20290442,22747737:157614 -k1,201:21130941,22747737:157614 -k1,201:23546270,22747737:157614 -k1,201:25865261,22747737:157614 -k1,201:28066943,22747737:157614 -k1,201:32583029,22747737:0 -) -(1,202:6630773,23589225:25952256,505283,134348 -k1,201:7831475,23589225:209142 -k1,201:9239272,23589225:209143 -k1,201:11025866,23589225:209142 -k1,201:11996536,23589225:209142 -k1,201:14430626,23589225:209143 -k1,201:15658853,23589225:209142 -k1,201:17521468,23589225:209142 -k1,201:18145444,23589225:209133 -k1,201:21270283,23589225:209142 -k1,201:22676112,23589225:209142 -k1,201:25597134,23589225:209142 -k1,201:27889011,23589225:209143 -k1,201:28629650,23589225:209142 -k1,201:29490220,23589225:209142 -k1,201:30791848,23589225:209143 -k1,201:31356850,23589225:209142 -k1,201:32583029,23589225:0 -) -(1,202:6630773,24430713:25952256,513147,126483 -k1,201:8745416,24430713:205579 -k1,201:10097219,24430713:205578 -k1,201:12300991,24430713:205579 -k1,201:13157997,24430713:205578 -k1,201:14589755,24430713:205579 -k1,201:15814418,24430713:205578 -k1,201:18181374,24430713:205579 -k1,201:19578397,24430713:205578 -k1,201:21217904,24430713:205579 -k1,201:22541526,24430713:205578 -k1,201:23766190,24430713:205579 -k1,201:26133145,24430713:205578 -k1,201:26954762,24430713:205579 -k1,201:27575177,24430713:205572 -k1,201:29348376,24430713:205578 -k1,201:31563944,24430713:205579 -k1,201:32583029,24430713:0 -) -(1,202:6630773,25272201:25952256,505283,134348 -k1,201:8879790,25272201:166283 -k1,201:10525220,25272201:166282 -k1,201:12383643,25272201:166283 -k1,201:14789291,25272201:166283 -k1,201:16101798,25272201:166282 -k1,201:18439944,25272201:166283 -k1,201:20557888,25272201:166282 -k1,201:22308176,25272201:166283 -k1,201:25980635,25272201:166283 -k1,201:26678414,25272201:166282 -k1,201:29648327,25272201:166283 -k1,201:32583029,25272201:0 -) -(1,202:6630773,26113689:25952256,513147,134348 -k1,201:9940705,26113689:155684 -k1,201:11751174,26113689:155685 -k1,201:12898418,26113689:155684 -k1,201:14339919,26113689:155685 -k1,201:17771092,26113689:155684 -k1,201:22141397,26113689:155685 -k1,201:26708309,26113689:155684 -k1,201:28695725,26113689:155685 -k1,201:31635378,26113689:155684 -k1,202:32583029,26113689:0 -) -(1,202:6630773,26955177:25952256,505283,134348 -k1,201:7468083,26955177:248797 -k1,201:8619311,26955177:248797 -k1,201:9955301,26955177:248748 -k1,201:11670794,26955177:248797 -k1,201:13529811,26955177:248797 -k1,201:15809569,26955177:248797 -k1,201:16709794,26955177:248797 -k1,201:17977677,26955177:248798 -k1,201:18641267,26955177:248747 -k1,201:21310309,26955177:248797 -k1,201:22175144,26955177:248797 -k1,201:23580651,26955177:248797 -k1,201:26302778,26955177:248798 -k1,201:27743020,26955177:248797 -k1,201:30752193,26955177:248797 -k1,201:31356850,26955177:248797 -k1,201:32583029,26955177:0 -) -(1,202:6630773,27796665:25952256,513147,134348 -k1,201:8769515,27796665:229678 -k1,201:9946845,27796665:229679 -k1,201:12434238,27796665:229678 -k1,201:14825294,27796665:229679 -k1,201:15671010,27796665:229678 -k1,201:18373362,27796665:229679 -k1,201:21250039,27796665:229678 -k1,201:22253698,27796665:229679 -k1,201:23502461,27796665:229678 -k1,201:26516109,27796665:229679 -k1,201:28163331,27796665:229678 -k1,201:29340661,27796665:229679 -k1,201:30158852,27796665:229678 -k1,201:32583029,27796665:0 -) -(1,202:6630773,28638153:25952256,505283,134348 -g1,201:7361499,28638153 -g1,201:10471182,28638153 -g1,201:11689496,28638153 -g1,201:13490425,28638153 -g1,201:16189853,28638153 -g1,201:17150610,28638153 -g1,201:17705699,28638153 -g1,201:19395217,28638153 -k1,202:32583029,28638153:10759703 -g1,202:32583029,28638153 -) -(1,203:6630773,30266073:25952256,505283,134348 -(1,203:6630773,30266073:2809528,485622,11795 -g1,203:6630773,30266073 -g1,203:9440301,30266073 -) -g1,203:11511894,30266073 -g1,203:12188225,30266073 -k1,203:32583029,30266073:16199844 -g1,203:32583029,30266073 -) -(1,206:6630773,31500777:25952256,505283,134348 -k1,205:7354733,31500777:236372 -k1,205:10213894,31500777:236410 -k1,205:13139901,31500777:236409 -k1,205:16544321,31500777:236410 -k1,205:18151744,31500777:236410 -k1,205:21202924,31500777:236409 -k1,205:23708190,31500777:236410 -k1,205:26500503,31500777:236409 -k1,205:27861511,31500777:236410 -k1,205:29305093,31500777:236409 -k1,205:30871884,31500777:236410 -k1,205:32583029,31500777:0 -) -(1,206:6630773,32342265:25952256,513147,126483 -k1,205:11619082,32342265:274960 -k1,205:13287993,32342265:274960 -k1,205:17143184,32342265:274959 -k1,205:18609589,32342265:274960 -k1,205:20091722,32342265:274960 -k1,205:23671663,32342265:274960 -k1,205:25814398,32342265:274959 -k1,205:26445218,32342265:274960 -k1,205:29177778,32342265:274960 -k1,205:32583029,32342265:0 -) -(1,206:6630773,33183753:25952256,513147,126483 -k1,205:7255069,33183753:268436 -k1,205:10338275,33183753:268435 -k1,205:13416895,33183753:268436 -k1,205:14336759,33183753:268436 -k1,205:14961054,33183753:268435 -k1,205:18479420,33183753:268436 -k1,205:19363894,33183753:268436 -k1,205:21234029,33183753:268435 -k1,205:23199847,33183753:268436 -k1,205:23824143,33183753:268436 -k1,205:26565907,33183753:268435 -k1,205:27517228,33183753:268436 -k1,205:28141524,33183753:268436 -k1,205:29948744,33183753:268435 -k1,205:32227169,33183753:268436 -k1,205:32583029,33183753:0 -) -(1,206:6630773,34025241:25952256,513147,134348 -k1,205:9778935,34025241:198387 -k1,205:11358166,34025241:198387 -k1,205:14540407,34025241:198387 -k1,205:15270290,34025241:198386 -k1,205:16667331,34025241:198387 -k1,205:18733494,34025241:198387 -k1,205:19287741,34025241:198387 -k1,205:22080043,34025241:198387 -k1,205:22906265,34025241:198387 -k1,205:24202379,34025241:198386 -k1,205:25941517,34025241:198387 -k1,205:27158989,34025241:198387 -k1,205:27772218,34025241:198386 -k1,205:30390850,34025241:198387 -k1,205:32583029,34025241:0 -) -(1,206:6630773,34866729:25952256,513147,95026 -h1,205:7601361,34866729:0,0,0 -g1,205:8181354,34866729 -g1,205:9761427,34866729 -g1,205:10492153,34866729 -g1,205:11710467,34866729 -g1,205:13843008,34866729 -g1,205:15423081,34866729 -g1,205:18432494,34866729 -g1,205:19298879,34866729 -k1,206:32583029,34866729:12695637 -g1,206:32583029,34866729 -) -(1,208:6630773,35708217:25952256,513147,134348 -h1,207:6630773,35708217:983040,0,0 -k1,207:9986823,35708217:166413 -k1,207:13643029,35708217:166414 -k1,207:14422204,35708217:166413 -k1,207:15607703,35708217:166414 -k1,207:16188927,35708217:166381 -k1,207:18775585,35708217:166413 -k1,207:19473495,35708217:166413 -k1,207:21617130,35708217:166414 -k1,207:23481581,35708217:166413 -k1,207:24804705,35708217:166414 -k1,207:25502615,35708217:166413 -k1,207:28002111,35708217:166414 -k1,207:30631367,35708217:166413 -k1,207:32583029,35708217:0 -) -(1,208:6630773,36549705:25952256,513147,134348 -k1,207:9777266,36549705:190164 -k1,207:12978810,36549705:190165 -k1,207:15334939,36549705:190164 -k1,207:16207988,36549705:190164 -k1,207:18294765,36549705:190165 -k1,207:19136357,36549705:190164 -k1,207:22991294,36549705:190164 -k1,207:24511840,36549705:190165 -k1,207:25472707,36549705:190164 -k1,207:26077705,36549705:190155 -k1,207:28963366,36549705:190165 -k1,207:29836415,36549705:190164 -k1,207:32583029,36549705:0 -) -(1,208:6630773,37391193:25952256,513147,134348 -k1,207:7698109,37391193:198984 -k1,207:8888652,37391193:198983 -k1,207:10153907,37391193:198984 -k1,207:12845224,37391193:198983 -k1,207:14438159,37391193:198984 -k1,207:16737571,37391193:198983 -k1,207:18541532,37391193:198984 -k1,207:19608867,37391193:198983 -k1,207:21356467,37391193:198984 -k1,207:22206879,37391193:198984 -k1,207:23913845,37391193:198983 -k1,207:25740088,37391193:198984 -k1,207:26598363,37391193:198983 -k1,207:28345963,37391193:198984 -k1,207:29413298,37391193:198983 -k1,207:30603842,37391193:198984 -k1,207:32583029,37391193:0 -) -(1,208:6630773,38232681:25952256,513147,134348 -k1,207:8440954,38232681:155397 -k1,207:9587912,38232681:155398 -k1,207:11640576,38232681:155397 -k1,207:13364251,38232681:155398 -k1,207:14178940,38232681:155397 -k1,207:16069731,38232681:155398 -k1,207:16813641,38232681:155397 -k1,207:18854510,38232681:155398 -k1,207:20691561,38232681:155397 -k1,207:21592103,38232681:155398 -k1,207:22398928,38232681:155397 -k1,207:24062309,38232681:155398 -k1,207:24573566,38232681:155397 -k1,207:26801868,38232681:155398 -k1,207:27616557,38232681:155397 -k1,207:29102336,38232681:155398 -k1,207:30028436,38232681:155397 -k1,207:32583029,38232681:0 -) -(1,208:6630773,39074169:25952256,513147,134348 -k1,207:7903965,39074169:172187 -k1,207:9586101,39074169:172186 -k1,207:11993721,39074169:172187 -k1,207:13405849,39074169:172187 -k1,207:14774722,39074169:172186 -k1,207:17709252,39074169:172187 -k1,207:19449716,39074169:172187 -k1,207:20281194,39074169:172186 -k1,207:22188774,39074169:172187 -k1,207:22775777,39074169:172160 -k1,207:23939523,39074169:172186 -k1,207:25177981,39074169:172187 -k1,207:28252102,39074169:172187 -k1,207:29083580,39074169:172186 -k1,207:30707389,39074169:172187 -k1,207:32583029,39074169:0 -) -(1,208:6630773,39915657:25952256,505283,126483 -k1,207:7602160,39915657:246559 -k1,207:9450419,39915657:246559 -k1,207:11408123,39915657:246559 -k1,207:12787144,39915657:246559 -k1,207:14126188,39915657:246559 -k1,207:15391832,39915657:246559 -k1,207:16053187,39915657:246512 -k1,207:18719991,39915657:246559 -k1,207:19617978,39915657:246559 -k1,207:21055982,39915657:246559 -k1,207:24495455,39915657:246559 -k1,207:28231806,39915657:246559 -k1,207:29669810,39915657:246559 -k1,207:31193666,39915657:246559 -k1,207:32583029,39915657:0 -) -(1,208:6630773,40757145:25952256,513147,134348 -k1,207:8970757,40757145:225793 -k1,207:10215636,40757145:225794 -k1,207:11747562,40757145:225793 -k1,207:13968271,40757145:225793 -k1,207:14853356,40757145:225793 -k1,207:18897277,40757145:225794 -k1,207:19940959,40757145:225793 -k1,207:21700950,40757145:225793 -k1,207:22612905,40757145:225793 -k1,207:23707051,40757145:225794 -k1,207:26003782,40757145:225793 -k1,207:27559956,40757145:225793 -k1,207:28654101,40757145:225793 -k1,207:30428511,40757145:225794 -k1,207:31305732,40757145:225793 -k1,207:32583029,40757145:0 -) -(1,208:6630773,41598633:25952256,513147,134348 -k1,207:7486981,41598633:173323 -k1,207:10090380,41598633:173324 -k1,207:11282788,41598633:173323 -k1,207:13019145,41598633:173323 -k1,207:13650565,41598633:173323 -k1,207:14355386,41598633:173324 -k1,207:15863677,41598633:173323 -k1,207:16688428,41598633:173323 -k1,207:18350075,41598633:173324 -k1,207:20258791,41598633:173323 -k1,207:22767162,41598633:173323 -k1,207:24321330,41598633:173324 -k1,207:25026150,41598633:173323 -k1,207:26265744,41598633:173323 -k1,207:29250562,41598633:173323 -k1,207:30039924,41598633:173324 -k1,207:31345054,41598633:173323 -k1,207:32583029,41598633:0 -) -(1,208:6630773,42440121:25952256,505283,134348 -k1,207:7665636,42440121:273335 -k1,207:8527485,42440121:273336 -k1,207:9872989,42440121:273335 -k1,207:12307702,42440121:273336 -k1,207:13572597,42440121:273335 -k1,207:15394549,42440121:273336 -k1,207:17430802,42440121:273335 -k1,207:19713472,42440121:273336 -k1,207:20638235,42440121:273335 -k1,207:22363849,42440121:273336 -k1,207:23656269,42440121:273335 -k1,207:25531305,42440121:273336 -k1,207:29013938,42440121:273335 -k1,207:32583029,42440121:0 -) -(1,208:6630773,43281609:25952256,513147,134348 -k1,207:7506521,43281609:216456 -k1,207:9458370,43281609:216456 -k1,207:10030686,43281609:216456 -k1,207:14599388,43281609:216456 -k1,207:17658140,43281609:216456 -k1,207:18822247,43281609:216456 -k1,207:20428066,43281609:216456 -k1,207:23372786,43281609:216456 -k1,207:24217077,43281609:216456 -k1,207:26418619,43281609:216456 -h1,207:27389207,43281609:0,0,0 -k1,207:27605663,43281609:216456 -k1,207:28690471,43281609:216456 -k1,207:30011209,43281609:216456 -k1,207:31252648,43281609:216456 -k1,207:32583029,43281609:0 -) -(1,208:6630773,44123097:25952256,513147,126483 -k1,207:7867824,44123097:217966 -k1,207:8500614,44123097:217947 -k1,207:11138825,44123097:217966 -k1,207:13247505,44123097:217966 -k1,207:14662158,44123097:217966 -k1,207:16106303,44123097:217966 -k1,207:16940307,44123097:217966 -k1,207:18214713,44123097:217966 -k1,207:19533684,44123097:217966 -k1,207:21261600,44123097:217966 -k1,207:23286394,44123097:217966 -k1,207:24120398,44123097:217966 -k1,207:25099892,44123097:217966 -k1,207:26336943,44123097:217966 -k1,207:28109423,44123097:217966 -k1,207:30398327,44123097:217966 -k1,207:31563944,44123097:217966 -k1,207:32583029,44123097:0 -) -(1,208:6630773,44964585:25952256,505283,126483 -k1,207:9172841,44964585:140829 -(1,207:9172841,44964585:0,414482,115847 -r1,208:9700406,44964585:527565,530329,115847 -k1,207:9172841,44964585:-527565 -) -(1,207:9172841,44964585:527565,414482,115847 -$1,207:9176118,44964585 -$1,207:9697129,44964585 -h1,207:9697129,44964585:0,411205,112570 -) -k1,207:10014904,44964585:140828 -k1,207:11347178,44964585:140829 -k1,207:12507092,44964585:140829 -k1,207:13874100,44964585:140829 -k1,207:14630966,44964585:140828 -k1,207:16139531,44964585:140829 -k1,207:16811857,44964585:140829 -k1,207:18501301,44964585:140828 -k1,207:19056915,44964585:140771 -k1,207:20298749,44964585:140829 -k1,207:23502730,44964585:140828 -k1,207:24259597,44964585:140829 -k1,207:27447850,44964585:140829 -k1,207:28058572,44964585:140829 -k1,207:28730897,44964585:140828 -k1,207:32227169,44964585:140829 -k1,207:32583029,44964585:0 -) -] -(1,208:32583029,45706769:0,0,0 -g1,208:32583029,45706769 -) -) -] -(1,208:6630773,47279633:25952256,0,0 -h1,208:6630773,47279633:25952256,0,0 -) -] -(1,208:4262630,4025873:0,0,0 -[1,208:-473656,4025873:0,0,0 -(1,208:-473656,-710413:0,0,0 -(1,208:-473656,-710413:0,0,0 -g1,208:-473656,-710413 -) -g1,208:-473656,-710413 -) -] -) -] -!22727 -}18 -Input:190:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:191:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:192:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:193:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:194:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:195:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!557 -{19 -[1,228:4262630,47279633:28320399,43253760,0 -(1,228:4262630,4025873:0,0,0 -[1,228:-473656,4025873:0,0,0 -(1,228:-473656,-710413:0,0,0 -(1,228:-473656,-644877:0,0,0 -k1,228:-473656,-644877:-65536 -) -(1,228:-473656,4736287:0,0,0 -k1,228:-473656,4736287:5209943 -) -g1,228:-473656,-710413 -) -] -) -[1,228:6630773,47279633:25952256,43253760,0 -[1,228:6630773,4812305:25952256,786432,0 -(1,228:6630773,4812305:25952256,505283,134348 -(1,228:6630773,4812305:25952256,505283,134348 -g1,228:3078558,4812305 -[1,228:3078558,4812305:0,0,0 -(1,228:3078558,2439708:0,1703936,0 -k1,228:1358238,2439708:-1720320 -(1,135:1358238,2439708:1720320,1703936,0 -(1,135:1358238,2439708:1179648,16384,0 -r1,228:2537886,2439708:1179648,16384,0 -) -g1,135:3062174,2439708 -(1,135:3062174,2439708:16384,1703936,0 -[1,135:3062174,2439708:25952256,1703936,0 -(1,135:3062174,1915420:25952256,1179648,0 -(1,135:3062174,1915420:16384,1179648,0 -r1,228:3078558,1915420:16384,1179648,0 -) -k1,135:29014430,1915420:25935872 -g1,135:29014430,1915420 -) -] -) -) -) -] -[1,228:3078558,4812305:0,0,0 -(1,228:3078558,2439708:0,1703936,0 -g1,228:29030814,2439708 -g1,228:36135244,2439708 -(1,135:36135244,2439708:1720320,1703936,0 -(1,135:36135244,2439708:16384,1703936,0 -[1,135:36135244,2439708:25952256,1703936,0 -(1,135:36135244,1915420:25952256,1179648,0 -(1,135:36135244,1915420:16384,1179648,0 -r1,228:36151628,1915420:16384,1179648,0 -) -k1,135:62087500,1915420:25935872 -g1,135:62087500,1915420 -) -] -) -g1,135:36675916,2439708 -(1,135:36675916,2439708:1179648,16384,0 -r1,228:37855564,2439708:1179648,16384,0 -) -) -k1,228:3078556,2439708:-34777008 -) -] -[1,228:3078558,4812305:0,0,0 -(1,228:3078558,49800853:0,16384,2228224 -k1,228:1358238,49800853:-1720320 -(1,135:1358238,49800853:1720320,16384,2228224 -(1,135:1358238,49800853:1179648,16384,0 -r1,228:2537886,49800853:1179648,16384,0 -) -g1,135:3062174,49800853 -(1,135:3062174,52029077:16384,1703936,0 -[1,135:3062174,52029077:25952256,1703936,0 -(1,135:3062174,51504789:25952256,1179648,0 -(1,135:3062174,51504789:16384,1179648,0 -r1,228:3078558,51504789:16384,1179648,0 -) -k1,135:29014430,51504789:25935872 -g1,135:29014430,51504789 -) -] -) -) -) -] -[1,228:3078558,4812305:0,0,0 -(1,228:3078558,49800853:0,16384,2228224 -g1,228:29030814,49800853 -g1,228:36135244,49800853 -(1,135:36135244,49800853:1720320,16384,2228224 -(1,135:36135244,52029077:16384,1703936,0 -[1,135:36135244,52029077:25952256,1703936,0 -(1,135:36135244,51504789:25952256,1179648,0 -(1,135:36135244,51504789:16384,1179648,0 -r1,228:36151628,51504789:16384,1179648,0 -) -k1,135:62087500,51504789:25935872 -g1,135:62087500,51504789 -) -] -) -g1,135:36675916,49800853 -(1,135:36675916,49800853:1179648,16384,0 -r1,228:37855564,49800853:1179648,16384,0 -) -) -k1,228:3078556,49800853:-34777008 -) -] -g1,228:6630773,4812305 -k1,228:21845614,4812305:14816382 -g1,228:22668090,4812305 -g1,228:24054831,4812305 -g1,228:27195316,4812305 -g1,228:28604995,4812305 -g1,228:29789885,4812305 -) -) -] -[1,228:6630773,45706769:25952256,40108032,0 -(1,228:6630773,45706769:25952256,40108032,0 -(1,228:6630773,45706769:0,0,0 -g1,228:6630773,45706769 -) -[1,228:6630773,45706769:25952256,40108032,0 -[1,213:6630773,14814196:25952256,9215459,0 -[1,213:6630773,14814196:25952256,9215459,0 -(1,212:6630773,10666401:25952256,5067664,0 -g1,212:6630773,10666401 -h1,211:6630773,10666401:0,0,0 -(1,211:6630773,10666401:25952256,5067664,0 -) -g1,212:32583029,10666401 -g1,212:32583029,10666401 -) -(1,212:6630773,12163249:25952256,485622,11795 -h1,212:6630773,12163249:0,0,0 -g1,212:9295467,12163249 -k1,212:32583028,12163249:22297312 -g1,212:32583028,12163249 -) -(1,212:6630773,13004737:25952256,505283,126483 -h1,212:6630773,13004737:0,0,0 -k1,212:8054217,13004737:226757 -k1,212:8695789,13004737:226729 -k1,212:11342791,13004737:226757 -k1,212:14894188,13004737:226756 -k1,212:15736983,13004737:226757 -k1,212:18561587,13004737:226757 -k1,212:19985031,13004737:226757 -k1,212:21865260,13004737:226756 -k1,212:25581809,13004737:226757 -k1,212:27283781,13004737:226757 -k1,212:29020488,13004737:226757 -k1,212:31054072,13004737:226756 -k1,212:31896867,13004737:226757 -k1,212:32583029,13004737:0 -) -(1,212:6630773,13846225:25952256,505283,134348 -k1,212:7416549,13846225:169738 -k1,212:9571373,13846225:169738 -h1,212:10541961,13846225:0,0,0 -k1,212:10885369,13846225:169738 -k1,212:14666797,13846225:169739 -k1,212:17259401,13846225:169738 -k1,212:18190667,13846225:169738 -k1,212:19379490,13846225:169738 -k1,212:20930072,13846225:169738 -k1,212:22091370,13846225:169738 -k1,212:25324262,13846225:169739 -k1,212:26110038,13846225:169738 -k1,212:28550599,13846225:169738 -k1,212:30409855,13846225:169738 -k1,212:32583029,13846225:0 -) -(1,212:6630773,14687713:25952256,505283,126483 -g1,212:9608729,14687713 -g1,212:10569486,14687713 -g1,212:11183558,14687713 -g1,212:12374347,14687713 -g1,212:15636729,14687713 -g1,212:16451996,14687713 -k1,212:32583029,14687713:14269811 -g1,212:32583029,14687713 -) -] -] -[1,221:6630773,25878043:25952256,10277415,0 -[1,221:6630773,25878043:25952256,10277415,0 -(1,220:6630773,22571736:25952256,6971108,0 -g1,220:6630773,22571736 -h1,219:6630773,22571736:0,0,0 -(1,219:6630773,22571736:25952256,6971108,0 -) -g1,220:32583029,22571736 -g1,220:32583029,22571736 -) -(1,220:6630773,24068584:25952256,485622,11795 -h1,220:6630773,24068584:0,0,0 -g1,220:9295467,24068584 -k1,220:32583028,24068584:22297312 -g1,220:32583028,24068584 -) -(1,220:6630773,24910072:25952256,513147,126483 -h1,220:6630773,24910072:0,0,0 -k1,220:8037295,24910072:209835 -k1,220:8661963,24910072:209825 -k1,220:11292043,24910072:209835 -k1,220:13015105,24910072:209836 -k1,220:15456441,24910072:209835 -k1,220:19156068,24910072:209835 -k1,220:20841119,24910072:209836 -k1,220:22560904,24910072:209835 -k1,220:25367275,24910072:209835 -k1,220:29188800,24910072:209836 -k1,220:31821501,24910072:209835 -k1,220:32583029,24910072:0 -) -(1,220:6630773,25751560:25952256,505283,126483 -g1,220:7849087,25751560 -g1,220:9429160,25751560 -g1,220:10619949,25751560 -g1,220:13882331,25751560 -g1,220:14697598,25751560 -g1,220:16126938,25751560 -g1,220:18015685,25751560 -g1,220:20388088,25751560 -g1,220:23366044,25751560 -g1,220:24326801,25751560 -g1,220:24940873,25751560 -g1,220:26131662,25751560 -g1,220:29394044,25751560 -g1,220:30209311,25751560 -k1,220:32583029,25751560:832311 -g1,220:32583029,25751560 -) -] -] -(1,208:6630773,27844123:25952256,513147,134348 -k1,207:9500867,27844123:156248 -k1,207:12292319,27844123:156249 -k1,207:13829411,27844123:156248 -k1,207:15177105,27844123:156249 -k1,207:15921866,27844123:156248 -k1,207:17274802,27844123:156249 -k1,207:19851295,27844123:156248 -k1,207:21111826,27844123:156249 -k1,207:22580760,27844123:156248 -k1,207:25499352,27844123:156249 -k1,207:27353638,27844123:156248 -k1,207:30573040,27844123:156249 -k1,207:32583029,27844123:0 -) -(1,208:6630773,28685611:25952256,513147,126483 -k1,207:7603720,28685611:202244 -k1,207:8893204,28685611:202242 -k1,207:10241673,28685611:202244 -k1,207:13041764,28685611:202244 -k1,207:14316177,28685611:202244 -k1,207:15537507,28685611:202245 -k1,207:17115352,28685611:202244 -k1,207:20503956,28685611:202244 -k1,207:21237697,28685611:202244 -k1,207:22055980,28685611:202245 -k1,207:23277309,28685611:202244 -k1,207:27120078,28685611:202244 -k1,207:27981614,28685611:202244 -k1,207:29202944,28685611:202245 -k1,207:30631367,28685611:202244 -k1,207:32583029,28685611:0 -) -(1,208:6630773,29527099:25952256,513147,134348 -g1,207:8272449,29527099 -g1,207:9087716,29527099 -g1,207:10306030,29527099 -g1,207:11731438,29527099 -g1,207:13536299,29527099 -g1,207:14714636,29527099 -g1,207:17229252,29527099 -h1,207:18199840,29527099:0,0,0 -g1,207:18399069,29527099 -g1,207:19789743,29527099 -h1,207:20760331,29527099:0,0,0 -k1,208:32583029,29527099:11441934 -g1,208:32583029,29527099 -) -(1,216:6630773,30368587:25952256,513147,134348 -h1,215:6630773,30368587:983040,0,0 -k1,215:9006780,30368587:196280 -k1,215:10375500,30368587:196281 -k1,215:13326258,30368587:196280 -k1,215:15708165,30368587:196281 -k1,215:18333209,30368587:196280 -k1,215:19548574,30368587:196280 -k1,215:21587727,30368587:196281 -k1,215:22443299,30368587:196280 -k1,215:25284613,30368587:196281 -k1,215:25836753,30368587:196280 -k1,215:27906053,30368587:196281 -k1,215:31435494,30368587:196280 -k1,216:32583029,30368587:0 -) -(1,216:6630773,31210075:25952256,513147,102891 -k1,215:7844499,31210075:163184 -h1,215:8815087,31210075:0,0,0 -k1,215:8978272,31210075:163185 -k1,215:11132440,31210075:163184 -k1,215:12626006,31210075:163185 -k1,215:13808275,31210075:163184 -k1,215:16391705,31210075:163185 -k1,215:18271932,31210075:163184 -k1,215:19948343,31210075:163185 -k1,215:21130612,31210075:163184 -k1,215:22674641,31210075:163185 -k1,215:23938830,31210075:163184 -k1,215:26524881,31210075:163185 -k1,215:28919566,31210075:163184 -k1,215:32583029,31210075:0 -) -(1,216:6630773,32051563:25952256,513147,126483 -g1,215:8281624,32051563 -g1,215:9167015,32051563 -g1,215:9722104,32051563 -g1,215:12624038,32051563 -g1,215:13991774,32051563 -g1,215:14850295,32051563 -k1,216:32583029,32051563:16332885 -g1,216:32583029,32051563 -) -(1,224:6630773,32893051:25952256,513147,126483 -h1,223:6630773,32893051:983040,0,0 -k1,223:9109562,32893051:299062 -k1,223:12400344,32893051:299063 -k1,223:13315444,32893051:299062 -k1,223:14817748,32893051:299063 -k1,223:16698849,32893051:299062 -k1,223:19289706,32893051:299063 -k1,223:20964369,32893051:299062 -k1,223:22282516,32893051:299062 -k1,223:25001824,32893051:299063 -k1,223:27774215,32893051:299062 -k1,223:29020929,32893051:299063 -k1,223:30700835,32893051:299062 -k1,223:32583029,32893051:0 -) -(1,224:6630773,33734539:25952256,505283,134348 -k1,223:10766571,33734539:152520 -k1,223:13991419,33734539:152520 -k1,223:15135499,33734539:152520 -k1,223:16354290,33734539:152520 -k1,223:20022161,33734539:152520 -k1,223:21525378,33734539:152520 -k1,223:23058086,33734539:152520 -k1,223:24202166,33734539:152520 -k1,223:25583486,33734539:152520 -k1,223:29077687,33734539:152520 -k1,223:30928245,33734539:152520 -k1,223:32583029,33734539:0 -) -(1,224:6630773,34576027:25952256,513147,126483 -k1,223:7371049,34576027:208779 -k1,223:7935688,34576027:208779 -k1,223:9674733,34576027:208779 -k1,223:10534939,34576027:208778 -k1,223:11678261,34576027:208779 -k1,223:13241014,34576027:208779 -k1,223:15201570,34576027:208779 -k1,223:17823385,34576027:208779 -k1,223:19223609,34576027:208779 -k1,223:21647505,34576027:208779 -k1,223:23423904,34576027:208778 -k1,223:25384460,34576027:208779 -k1,223:28355582,34576027:208779 -k1,223:31025238,34576027:208779 -k1,223:32583029,34576027:0 -) -(1,224:6630773,35417515:25952256,513147,126483 -k1,223:7768538,35417515:146205 -k1,223:9200558,35417515:146204 -k1,223:11830578,35417515:146205 -k1,223:12628211,35417515:146205 -k1,223:15595085,35417515:146204 -k1,223:17439328,35417515:146205 -k1,223:21474438,35417515:146204 -k1,223:22152140,35417515:146205 -k1,223:24828035,35417515:146205 -k1,223:26165684,35417515:146204 -k1,223:28009927,35417515:146205 -k1,223:32583029,35417515:0 -) -(1,224:6630773,36259003:25952256,513147,134348 -k1,223:10072658,36259003:180814 -k1,223:12986322,36259003:180813 -k1,223:13826428,36259003:180814 -k1,223:15361216,36259003:180814 -k1,223:18304372,36259003:180813 -k1,223:23113339,36259003:180814 -k1,223:24824419,36259003:180814 -k1,223:25656661,36259003:180814 -k1,223:26585240,36259003:180813 -k1,223:30203417,36259003:180814 -k1,223:32583029,36259003:0 -) -(1,224:6630773,37100491:25952256,505283,134348 -k1,223:10060818,37100491:257447 -k1,223:11604081,37100491:257447 -k1,223:13336743,37100491:257447 -k1,223:14613275,37100491:257447 -k1,223:18283182,37100491:257447 -k1,223:19192058,37100491:257448 -k1,223:20197271,37100491:257447 -k1,223:23716445,37100491:257447 -k1,223:24589930,37100491:257447 -k1,223:26300966,37100491:257447 -k1,223:29480008,37100491:257447 -k1,223:31021961,37100491:257447 -k1,224:32583029,37100491:0 -) -(1,224:6630773,37941979:25952256,513147,126483 -k1,223:8669240,37941979:227052 -k1,223:12166539,37941979:227052 -k1,223:13497874,37941979:227053 -k1,223:14472692,37941979:227052 -k1,223:16737914,37941979:227052 -k1,223:17581004,37941979:227052 -k1,223:20241408,37941979:227052 -k1,223:21659905,37941979:227052 -k1,223:27897265,37941979:227053 -k1,223:29350496,37941979:227052 -k1,223:31064560,37941979:227052 -k1,223:32583029,37941979:0 -) -(1,224:6630773,38783467:25952256,513147,126483 -k1,223:8124380,38783467:180265 -k1,223:11511977,38783467:180265 -k1,223:12048101,38783467:180264 -k1,223:14301270,38783467:180265 -k1,223:15140827,38783467:180265 -k1,223:16087208,38783467:180265 -k1,223:17286558,38783467:180265 -k1,223:19152408,38783467:180264 -k1,223:21019570,38783467:180265 -k1,223:22391280,38783467:180265 -k1,223:23187583,38783467:180265 -k1,223:24969548,38783467:180265 -k1,223:27020866,38783467:180265 -k1,223:29247164,38783467:180264 -k1,223:29885526,38783467:180265 -k1,223:31931601,38783467:180265 -k1,223:32583029,38783467:0 -) -(1,224:6630773,39624955:25952256,505283,126483 -k1,223:10080457,39624955:193855 -k1,223:11293398,39624955:193856 -k1,223:13140726,39624955:193855 -k1,223:15020168,39624955:193856 -k1,223:15826785,39624955:193855 -k1,223:16376500,39624955:193855 -k1,223:18023945,39624955:193856 -k1,223:19816878,39624955:193855 -k1,223:22197015,39624955:193856 -k1,223:23382430,39624955:193855 -k1,223:23932145,39624955:193855 -k1,223:25479975,39624955:193856 -k1,223:27798507,39624955:193855 -k1,223:29183808,39624955:193856 -k1,223:31345054,39624955:193855 -k1,223:32583029,39624955:0 -) -(1,224:6630773,40466443:25952256,513147,134348 -g1,223:7489294,40466443 -g1,223:12624039,40466443 -g1,223:13474696,40466443 -g1,223:15375895,40466443 -g1,223:17286269,40466443 -g1,223:18815879,40466443 -g1,223:19666536,40466443 -g1,223:20681033,40466443 -g1,223:21236122,40466443 -g1,223:23130112,40466443 -g1,223:24718704,40466443 -k1,224:32583029,40466443:5136061 -g1,224:32583029,40466443 -) -v1,226:6630773,41832219:0,393216,0 -(1,228:6630773,45026385:25952256,3587382,589824 -g1,228:6630773,45026385 -(1,228:6630773,45026385:25952256,3587382,589824 -(1,228:6630773,45616209:25952256,4177206,0 -[1,228:6630773,45616209:25952256,4177206,0 -(1,228:6630773,45616209:25952256,4150992,0 -r1,228:6656987,45616209:26214,4150992,0 -[1,228:6656987,45616209:25899828,4150992,0 -(1,228:6656987,45026385:25899828,2971344,0 -[1,228:7246811,45026385:24720180,2971344,0 -(1,228:7246811,43216926:24720180,1161885,196608 -(1,226:7246811,43216926:0,1161885,196608 -r1,228:8794447,43216926:1547636,1358493,196608 -k1,226:7246811,43216926:-1547636 -) -(1,226:7246811,43216926:1547636,1161885,196608 -) -k1,226:9035050,43216926:240603 -k1,226:9903487,43216926:240602 -k1,226:11163175,43216926:240603 -k1,226:13824022,43216926:240602 -k1,226:15221335,43216926:240603 -k1,226:17178325,43216926:240602 -k1,226:20908720,43216926:240603 -k1,226:21762084,43216926:240602 -k1,226:23021772,43216926:240603 -(1,226:23021772,43216926:0,414482,115847 -r1,228:23380038,43216926:358266,530329,115847 -k1,226:23021772,43216926:-358266 -) -(1,226:23021772,43216926:358266,414482,115847 -k1,226:23021772,43216926:3277 -h1,226:23376761,43216926:0,411205,112570 -) -k1,226:23620640,43216926:240602 -k1,226:26436153,43216926:240603 -k1,226:28459990,43216926:240602 -k1,226:29857303,43216926:240603 -k1,226:31611131,43216926:240602 -k1,226:31966991,43216926:0 -) -(1,228:7246811,44058414:24720180,513147,134348 -k1,226:8632406,44058414:217088 -k1,226:9611022,44058414:217088 -k1,226:12535402,44058414:217088 -k1,226:13771575,44058414:217088 -k1,226:15999308,44058414:217088 -k1,226:16899281,44058414:217088 -k1,226:18771153,44058414:217088 -k1,226:20262916,44058414:217088 -k1,226:20945965,44058414:217088 -k1,226:22182138,44058414:217088 -k1,226:23567733,44058414:217088 -k1,226:24889103,44058414:217088 -k1,226:25853957,44058414:217088 -k1,226:29661107,44058414:217088 -k1,226:30564357,44058414:217088 -k1,226:31552148,44058414:217088 -k1,228:31966991,44058414:0 -) -(1,228:7246811,44899902:24720180,513147,126483 -k1,226:10721545,44899902:141573 -k1,226:11882203,44899902:141573 -k1,226:13866649,44899902:141574 -k1,226:15140684,44899902:141573 -k1,226:16030023,44899902:141573 -k1,226:18521717,44899902:141573 -k1,226:19276052,44899902:141573 -k1,226:20436711,44899902:141574 -k1,226:23172199,44899902:141573 -k1,226:26066939,44899902:141573 -k1,226:26970040,44899902:141573 -k1,226:27467474,44899902:141574 -k1,226:28892242,44899902:141573 -(1,226:28892242,44899902:0,414482,115847 -r1,228:29250508,44899902:358266,530329,115847 -k1,226:28892242,44899902:-358266 -) -(1,226:28892242,44899902:358266,414482,115847 -k1,226:28892242,44899902:3277 -h1,226:29247231,44899902:0,411205,112570 -) -k1,226:29392081,44899902:141573 -k1,226:31966991,44899902:0 -) -] -) -] -r1,228:32583029,45616209:26214,4150992,0 -) -] -) -) -g1,228:32583029,45026385 -) -] -(1,228:32583029,45706769:0,0,0 -g1,228:32583029,45706769 -) -) -] -(1,228:6630773,47279633:25952256,0,0 -h1,228:6630773,47279633:25952256,0,0 -) -] -(1,228:4262630,4025873:0,0,0 -[1,228:-473656,4025873:0,0,0 -(1,228:-473656,-710413:0,0,0 -(1,228:-473656,-710413:0,0,0 -g1,228:-473656,-710413 -) -g1,228:-473656,-710413 -) -] -) -] -!16657 -}19 -Input:196:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:197:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!193 -{20 -[1,245:4262630,47279633:28320399,43253760,0 -(1,245:4262630,4025873:0,0,0 -[1,245:-473656,4025873:0,0,0 -(1,245:-473656,-710413:0,0,0 -(1,245:-473656,-644877:0,0,0 -k1,245:-473656,-644877:-65536 -) -(1,245:-473656,4736287:0,0,0 -k1,245:-473656,4736287:5209943 -) -g1,245:-473656,-710413 -) -] -) -[1,245:6630773,47279633:25952256,43253760,0 -[1,245:6630773,4812305:25952256,786432,0 -(1,245:6630773,4812305:25952256,475791,0 -(1,245:6630773,4812305:25952256,475791,0 -g1,245:3078558,4812305 -[1,245:3078558,4812305:0,0,0 -(1,245:3078558,2439708:0,1703936,0 -k1,245:1358238,2439708:-1720320 -(1,135:1358238,2439708:1720320,1703936,0 -(1,135:1358238,2439708:1179648,16384,0 -r1,245:2537886,2439708:1179648,16384,0 -) -g1,135:3062174,2439708 -(1,135:3062174,2439708:16384,1703936,0 -[1,135:3062174,2439708:25952256,1703936,0 -(1,135:3062174,1915420:25952256,1179648,0 -(1,135:3062174,1915420:16384,1179648,0 -r1,245:3078558,1915420:16384,1179648,0 -) -k1,135:29014430,1915420:25935872 -g1,135:29014430,1915420 -) -] -) -) -) -] -[1,245:3078558,4812305:0,0,0 -(1,245:3078558,2439708:0,1703936,0 -g1,245:29030814,2439708 -g1,245:36135244,2439708 -(1,135:36135244,2439708:1720320,1703936,0 -(1,135:36135244,2439708:16384,1703936,0 -[1,135:36135244,2439708:25952256,1703936,0 -(1,135:36135244,1915420:25952256,1179648,0 -(1,135:36135244,1915420:16384,1179648,0 -r1,245:36151628,1915420:16384,1179648,0 -) -k1,135:62087500,1915420:25935872 -g1,135:62087500,1915420 -) -] -) -g1,135:36675916,2439708 -(1,135:36675916,2439708:1179648,16384,0 -r1,245:37855564,2439708:1179648,16384,0 -) -) -k1,245:3078556,2439708:-34777008 -) -] -[1,245:3078558,4812305:0,0,0 -(1,245:3078558,49800853:0,16384,2228224 -k1,245:1358238,49800853:-1720320 -(1,135:1358238,49800853:1720320,16384,2228224 -(1,135:1358238,49800853:1179648,16384,0 -r1,245:2537886,49800853:1179648,16384,0 -) -g1,135:3062174,49800853 -(1,135:3062174,52029077:16384,1703936,0 -[1,135:3062174,52029077:25952256,1703936,0 -(1,135:3062174,51504789:25952256,1179648,0 -(1,135:3062174,51504789:16384,1179648,0 -r1,245:3078558,51504789:16384,1179648,0 -) -k1,135:29014430,51504789:25935872 -g1,135:29014430,51504789 -) -] -) -) -) -] -[1,245:3078558,4812305:0,0,0 -(1,245:3078558,49800853:0,16384,2228224 -g1,245:29030814,49800853 -g1,245:36135244,49800853 -(1,135:36135244,49800853:1720320,16384,2228224 -(1,135:36135244,52029077:16384,1703936,0 -[1,135:36135244,52029077:25952256,1703936,0 -(1,135:36135244,51504789:25952256,1179648,0 -(1,135:36135244,51504789:16384,1179648,0 -r1,245:36151628,51504789:16384,1179648,0 -) -k1,135:62087500,51504789:25935872 -g1,135:62087500,51504789 -) -] -) -g1,135:36675916,49800853 -(1,135:36675916,49800853:1179648,16384,0 -r1,245:37855564,49800853:1179648,16384,0 -) -) -k1,245:3078556,49800853:-34777008 -) -] -g1,245:6630773,4812305 -g1,245:6630773,4812305 -g1,245:7279579,4812305 -k1,245:32184571,4812305:24904992 -) -) -] -[1,245:6630773,45706769:25952256,40108032,0 -(1,245:6630773,45706769:25952256,40108032,0 -(1,245:6630773,45706769:0,0,0 -g1,245:6630773,45706769 -) -[1,245:6630773,45706769:25952256,40108032,0 -[1,238:6630773,22800618:25952256,17201881,0 -[1,238:6630773,22800618:25952256,17201881,0 -(1,237:6630773,19494311:25952256,13895574,0 -g1,237:6630773,19494311 -h1,236:6630773,19494311:0,0,0 -(1,236:6630773,19494311:25952256,13895574,0 -) -g1,237:32583029,19494311 -g1,237:32583029,19494311 -) -(1,237:6630773,20991159:25952256,485622,11795 -h1,237:6630773,20991159:0,0,0 -g1,237:9295467,20991159 -k1,237:32583028,20991159:22297312 -g1,237:32583028,20991159 -) -(1,237:6630773,21832647:25952256,513147,134348 -h1,237:6630773,21832647:0,0,0 -k1,237:8940263,21832647:222824 -k1,237:11580710,21832647:222824 -k1,237:12462826,21832647:222824 -k1,237:13704735,21832647:222824 -k1,237:14342379,21832647:222801 -k1,237:16985448,21832647:222824 -k1,237:18399717,21832647:222824 -k1,237:20531605,21832647:222824 -k1,237:21983229,21832647:222824 -k1,237:23719280,21832647:222825 -k1,237:26465240,21832647:222824 -k1,237:27043924,21832647:222824 -k1,237:29271494,21832647:222824 -k1,237:30691005,21832647:222824 -k1,237:32583029,21832647:0 -) -(1,237:6630773,22674135:25952256,513147,126483 -g1,237:8368787,22674135 -g1,237:10559000,22674135 -g1,237:11777314,22674135 -g1,237:12391386,22674135 -g1,237:15184530,22674135 -g1,237:16575204,22674135 -g1,237:17793518,22674135 -g1,237:19749112,22674135 -g1,237:21660797,22674135 -g1,237:22879111,22674135 -g1,237:24909416,22674135 -g1,237:26091685,22674135 -g1,237:26906952,22674135 -g1,237:27876884,22674135 -k1,237:32583029,22674135:2623411 -g1,237:32583029,22674135 -) -] -] -v1,228:6630773,24766698:0,393216,0 -(1,228:6630773,28968888:25952256,4595406,616038 -g1,228:6630773,28968888 -(1,228:6630773,28968888:25952256,4595406,616038 -(1,228:6630773,29584926:25952256,5211444,0 -[1,228:6630773,29584926:25952256,5211444,0 -(1,228:6630773,29558712:25952256,5185230,0 -r1,245:6656987,29558712:26214,5185230,0 -[1,228:6656987,29558712:25899828,5185230,0 -(1,228:6656987,28968888:25899828,4005582,0 -[1,228:7246811,28968888:24720180,4005582,0 -(1,228:7246811,25476453:24720180,513147,126483 -k1,227:8001803,25476453:277235 -k1,227:9298124,25476453:277236 -k1,227:12734850,25476453:277235 -k1,227:13543582,25476453:277235 -k1,227:17536053,25476453:277235 -k1,227:18169149,25476453:277236 -(1,227:18169149,25476453:0,414482,115847 -r1,245:18527415,25476453:358266,530329,115847 -k1,227:18169149,25476453:-358266 -) -(1,227:18169149,25476453:358266,414482,115847 -k1,227:18169149,25476453:3277 -h1,227:18524138,25476453:0,411205,112570 -) -k1,227:18804650,25476453:277235 -k1,227:23135942,25476453:277235 -k1,227:25814416,25476453:277235 -k1,227:27224114,25476453:277236 -k1,227:28249115,25476453:277235 -k1,227:30775546,25476453:277235 -k1,227:31966991,25476453:0 -) -(1,228:7246811,26317941:24720180,513147,126483 -k1,227:8628679,26317941:211395 -k1,227:9972535,26317941:211394 -k1,227:10931696,26317941:211395 -k1,227:12451845,26317941:211395 -k1,227:13314667,26317941:211394 -k1,227:14912148,26317941:211395 -k1,227:15739580,26317941:211394 -k1,227:16970060,26317941:211395 -k1,227:18404357,26317941:211395 -k1,227:19275043,26317941:211394 -k1,227:20505523,26317941:211395 -k1,227:24050079,26317941:211395 -k1,227:25303495,26317941:211394 -k1,227:28176307,26317941:211395 -k1,227:28853662,26317941:211394 -k1,227:30084142,26317941:211395 -k1,227:31966991,26317941:0 -) -(1,228:7246811,27159429:24720180,513147,126483 -k1,227:10945209,27159429:226956 -k1,227:12456672,27159429:226957 -k1,227:13854101,27159429:226956 -k1,227:16037308,27159429:226957 -k1,227:17410489,27159429:226956 -k1,227:18288874,27159429:226957 -k1,227:19331098,27159429:226956 -k1,227:20089552,27159429:226957 -$1,227:20089552,27159429 -k1,227:20653929,27159429:165918 -k1,227:21388044,27159429:165918 -k1,227:21952422,27159429:165919 -k1,227:22686537,27159429:165918 -$1,227:23084996,27159429 -k1,227:23485623,27159429:226957 -k1,227:24178540,27159429:226956 -k1,227:25575970,27159429:226957 -k1,227:27457710,27159429:226956 -k1,227:28300705,27159429:226957 -k1,227:29546746,27159429:226956 -k1,228:31966991,27159429:0 -) -(1,228:7246811,28000917:24720180,505283,134348 -(1,227:7246811,28000917:0,435480,115847 -r1,245:9715349,28000917:2468538,551327,115847 -k1,227:7246811,28000917:-2468538 -) -(1,227:7246811,28000917:2468538,435480,115847 -g1,227:7953512,28000917 -g1,227:8656936,28000917 -g1,227:9360360,28000917 -h1,227:9712072,28000917:0,411205,112570 -) -k1,227:9912908,28000917:197559 -k1,227:10726505,28000917:197559 -k1,227:12080774,28000917:197559 -k1,227:13620509,28000917:197558 -k1,227:14988541,28000917:197559 -k1,227:16318562,28000917:197559 -k1,227:17494574,28000917:197559 -k1,227:18047993,28000917:197559 -k1,227:22299609,28000917:197559 -k1,227:24898407,28000917:197559 -k1,227:27014859,28000917:197558 -k1,227:28382891,28000917:197559 -k1,227:29712912,28000917:197559 -k1,227:30658237,28000917:197559 -k1,227:31966991,28000917:0 -) -(1,228:7246811,28842405:24720180,513147,126483 -k1,227:8069287,28842405:171048 -k1,227:9626421,28842405:171048 -(1,227:9626421,28842405:0,435480,115847 -r1,245:9984687,28842405:358266,551327,115847 -k1,227:9626421,28842405:-358266 -) -(1,227:9626421,28842405:358266,435480,115847 -k1,227:9626421,28842405:3277 -h1,227:9981410,28842405:0,411205,112570 -) -k1,227:10329405,28842405:171048 -k1,227:13435156,28842405:171049 -k1,227:14072165,28842405:171048 -k1,227:15413686,28842405:171048 -k1,227:16970820,28842405:171048 -(1,227:16970820,28842405:0,435480,115847 -r1,245:18735934,28842405:1765114,551327,115847 -k1,227:16970820,28842405:-1765114 -) -(1,227:16970820,28842405:1765114,435480,115847 -g1,227:17677521,28842405 -g1,227:18380945,28842405 -h1,227:18732657,28842405:0,411205,112570 -) -k1,227:19080652,28842405:171048 -k1,227:20270785,28842405:171048 -k1,227:22284705,28842405:171048 -k1,227:23588216,28842405:171049 -k1,227:24507030,28842405:171048 -k1,227:28080707,28842405:171048 -k1,227:29443200,28842405:171048 -k1,228:31966991,28842405:0 -k1,228:31966991,28842405:0 -) -] -) -] -r1,245:32583029,29558712:26214,5185230,0 -) -] -) -) -g1,228:32583029,28968888 -) -h1,228:6630773,29584926:0,0,0 -(1,230:6630773,31212846:25952256,505283,134348 -(1,230:6630773,31212846:2809528,485622,11795 -g1,230:6630773,31212846 -g1,230:9440301,31212846 -) -g1,230:11511894,31212846 -g1,230:12188225,31212846 -g1,230:13034294,31212846 -g1,230:13603146,31212846 -g1,230:15937538,31212846 -k1,230:32583029,31212846:15281031 -g1,230:32583029,31212846 -) -(1,233:6630773,32447550:25952256,513147,134348 -k1,232:7670328,32447550:210525 -k1,232:8998897,32447550:210525 -k1,232:9565281,32447550:210524 -k1,232:11606882,32447550:210525 -k1,232:12685759,32447550:210525 -k1,232:14426550,32447550:210525 -k1,232:15943207,32447550:210524 -k1,232:16805160,32447550:210525 -k1,232:19484426,32447550:210525 -k1,232:20050811,32447550:210525 -k1,232:22092411,32447550:210524 -k1,232:22918974,32447550:210525 -k1,232:23485359,32447550:210525 -k1,232:24922063,32447550:210525 -k1,232:27215321,32447550:210524 -k1,232:29410932,32447550:210525 -h1,232:30381520,32447550:0,0,0 -k1,232:30592045,32447550:210525 -k1,232:32583029,32447550:0 -) -(1,233:6630773,33289038:25952256,513147,134348 -k1,232:7870563,33289038:220705 -k1,232:10511513,33289038:220705 -k1,232:14668966,33289038:220705 -k1,232:16402897,33289038:220705 -k1,232:19146738,33289038:220705 -k1,232:20386528,33289038:220705 -k1,232:22438309,33289038:220705 -k1,232:23642054,33289038:220705 -k1,232:25938284,33289038:220705 -k1,232:26775027,33289038:220705 -k1,232:28014817,33289038:220705 -k1,232:29461701,33289038:220705 -k1,232:31765140,33289038:220705 -k1,232:32583029,33289038:0 -) -(1,233:6630773,34130526:25952256,513147,126483 -k1,232:9028494,34130526:181293 -k1,232:10266226,34130526:181292 -k1,232:11847368,34130526:181293 -k1,232:13047745,34130526:181292 -k1,232:16388529,34130526:181293 -(1,232:16388529,34130526:0,452978,115847 -r1,245:23781031,34130526:7392502,568825,115847 -k1,232:16388529,34130526:-7392502 -) -(1,232:16388529,34130526:7392502,452978,115847 -k1,232:16388529,34130526:3277 -h1,232:23777754,34130526:0,411205,112570 -) -k1,232:24135993,34130526:181292 -k1,232:25524459,34130526:181293 -k1,232:27512579,34130526:181292 -k1,232:28455400,34130526:181293 -k1,232:29655777,34130526:181292 -k1,232:31391584,34130526:181293 -k1,232:32583029,34130526:0 -) -(1,233:6630773,34972014:25952256,513147,126483 -k1,232:7878041,34972014:228183 -k1,232:9473959,34972014:228182 -k1,232:10928321,34972014:228183 -k1,232:11772542,34972014:228183 -k1,232:13019809,34972014:228182 -k1,232:15668237,34972014:228183 -k1,232:16427917,34972014:228183 -k1,232:18204715,34972014:228182 -k1,232:19640071,34972014:228183 -k1,232:22931407,34972014:228183 -k1,232:23921117,34972014:228182 -k1,232:24564114,34972014:228154 -k1,232:25478458,34972014:228182 -k1,232:26062501,34972014:228183 -k1,232:28133556,34972014:228183 -k1,232:29021030,34972014:228182 -k1,232:30452454,34972014:228183 -k1,232:32583029,34972014:0 -) -(1,233:6630773,35813502:25952256,513147,102891 -k1,232:8093162,35813502:265702 -k1,232:9626329,35813502:265701 -k1,232:10936675,35813502:265702 -k1,232:11861669,35813502:265702 -k1,232:13146455,35813502:265701 -k1,232:16006072,35813502:265702 -k1,232:18262757,35813502:265701 -k1,232:22380665,35813502:265702 -k1,232:24335885,35813502:265702 -k1,232:25620671,35813502:265701 -k1,232:27153839,35813502:265702 -k1,232:28464185,35813502:265702 -k1,232:29389178,35813502:265701 -k1,232:30673965,35813502:265702 -k1,232:32583029,35813502:0 -) -(1,233:6630773,36654990:25952256,513147,126483 -k1,232:8855925,36654990:234168 -k1,232:10109178,36654990:234168 -k1,232:11787760,36654990:234168 -k1,232:12673357,36654990:234169 -k1,232:13926610,36654990:234168 -k1,232:15991854,36654990:234168 -k1,232:17209062,36654990:234168 -k1,232:18727736,36654990:234168 -k1,232:19493401,36654990:234168 -k1,232:21305021,36654990:234168 -k1,232:22730634,36654990:234168 -k1,232:24738206,36654990:234168 -k1,232:25623803,36654990:234169 -k1,232:26605737,36654990:234168 -k1,232:28834166,36654990:234168 -k1,232:31821501,36654990:234168 -k1,232:32583029,36654990:0 -) -(1,233:6630773,37496478:25952256,505283,7863 -k1,233:32583030,37496478:22611232 -g1,233:32583030,37496478 -) -v1,241:6630773,38862254:0,393216,0 -(1,242:6630773,41980071:25952256,3511033,616038 -g1,242:6630773,41980071 -(1,242:6630773,41980071:25952256,3511033,616038 -(1,242:6630773,42596109:25952256,4127071,0 -[1,242:6630773,42596109:25952256,4127071,0 -(1,242:6630773,42569895:25952256,4074643,0 -r1,245:6656987,42569895:26214,4074643,0 -[1,242:6656987,42569895:25899828,4074643,0 -(1,242:6656987,41980071:25899828,2894995,0 -[1,242:7246811,41980071:24720180,2894995,0 -(1,242:7246811,40170612:24720180,1085536,298548 -(1,241:7246811,40170612:0,1085536,298548 -r1,245:8753226,40170612:1506415,1384084,298548 -k1,241:7246811,40170612:-1506415 -) -(1,241:7246811,40170612:1506415,1085536,298548 -) -k1,241:8971428,40170612:218202 -k1,241:10972864,40170612:218201 -k1,241:13777772,40170612:218202 -k1,241:14608735,40170612:218201 -k1,241:15846022,40170612:218202 -k1,241:19223715,40170612:218202 -k1,241:22016826,40170612:218201 -k1,241:23836728,40170612:218202 -k1,241:26228103,40170612:218201 -k1,241:27437865,40170612:218202 -k1,241:30006187,40170612:218201 -k1,241:30985917,40170612:218202 -k1,242:31966991,40170612:0 -) -(1,242:7246811,41012100:24720180,513147,126483 -k1,241:9230016,41012100:312037 -k1,241:12476756,41012100:312038 -k1,241:14798782,41012100:312037 -k1,241:17272197,41012100:312038 -k1,241:18740944,41012100:312037 -k1,241:20913548,41012100:312037 -k1,241:21877014,41012100:312038 -k1,241:23281536,41012100:312037 -k1,241:26289070,41012100:312038 -(1,241:26289070,41012100:0,452978,115847 -r1,245:28757607,41012100:2468537,568825,115847 -k1,241:26289070,41012100:-2468537 -) -(1,241:26289070,41012100:2468537,452978,115847 -k1,241:26289070,41012100:3277 -h1,241:28754330,41012100:0,411205,112570 -) -k1,241:29069644,41012100:312037 -k1,241:31966991,41012100:0 -) -(1,242:7246811,41853588:24720180,505283,126483 -g1,241:9144078,41853588 -g1,241:9699167,41853588 -g1,241:11741268,41853588 -g1,241:12471994,41853588 -g1,241:13322651,41853588 -g1,241:14269646,41853588 -k1,242:31966991,41853588:14460522 -g1,242:31966991,41853588 -) -] -) -] -r1,245:32583029,42569895:26214,4074643,0 -) -] -) -) -g1,242:32583029,41980071 -) -h1,242:6630773,42596109:0,0,0 -(1,245:6630773,43961885:25952256,505283,134348 -h1,244:6630773,43961885:983040,0,0 -k1,244:8291570,43961885:190169 -k1,244:9789191,43961885:190178 -k1,244:12041133,43961885:190179 -k1,244:13553172,43961885:190178 -k1,244:14274847,43961885:190178 -k1,244:15531296,43961885:190178 -k1,244:16839518,43961885:190178 -k1,244:17642458,43961885:190178 -k1,244:18851722,43961885:190179 -k1,244:19456734,43961885:190169 -k1,244:22067157,43961885:190178 -k1,244:23329504,43961885:190178 -k1,244:24132444,43961885:190178 -k1,244:25341708,43961885:190179 -k1,244:28585864,43961885:190178 -k1,244:31021961,43961885:190178 -k1,245:32583029,43961885:0 -) -(1,245:6630773,44803373:25952256,513147,134348 -k1,244:8690187,44803373:247999 -k1,244:11513096,44803373:247999 -k1,244:12443980,44803373:247999 -k1,244:14368390,44803373:247999 -k1,244:15813076,44803373:247999 -k1,244:17563816,44803373:247999 -k1,244:18343312,44803373:247999 -k1,244:19610396,44803373:247999 -k1,244:22278640,44803373:247999 -k1,244:23185931,44803373:247999 -k1,244:24453015,44803373:247999 -k1,244:27754992,44803373:247999 -k1,245:32583029,44803373:0 -) -(1,245:6630773,45644861:25952256,505283,134348 -k1,244:8439565,45644861:183500 -k1,244:9492746,45644861:190727 -k1,244:10260170,45644861:183499 -k1,244:11126555,45644861:183500 -k1,244:15423748,45644861:183499 -k1,244:17592334,45644861:183500 -h1,244:18562922,45644861:0,0,0 -k1,244:18746421,45644861:183499 -k1,244:20920905,45644861:183500 -k1,244:22434785,45644861:183499 -k1,244:25141421,45644861:183500 -k1,244:25680780,45644861:183499 -k1,244:27695356,45644861:183500 -k1,244:28491617,45644861:183499 -k1,244:29694202,45644861:183500 -k1,244:32583029,45644861:0 -) -] -(1,245:32583029,45706769:0,0,0 -g1,245:32583029,45706769 -) -) -] -(1,245:6630773,47279633:25952256,0,0 -h1,245:6630773,47279633:25952256,0,0 -) -] -(1,245:4262630,4025873:0,0,0 -[1,245:-473656,4025873:0,0,0 -(1,245:-473656,-710413:0,0,0 -(1,245:-473656,-710413:0,0,0 -g1,245:-473656,-710413 -) -g1,245:-473656,-710413 -) -] -) -] -!16858 -}20 -Input:198:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:199:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!193 -{21 -[1,255:4262630,47279633:28320399,43253760,0 -(1,255:4262630,4025873:0,0,0 -[1,255:-473656,4025873:0,0,0 -(1,255:-473656,-710413:0,0,0 -(1,255:-473656,-644877:0,0,0 -k1,255:-473656,-644877:-65536 -) -(1,255:-473656,4736287:0,0,0 -k1,255:-473656,4736287:5209943 -) -g1,255:-473656,-710413 -) -] -) -[1,255:6630773,47279633:25952256,43253760,0 -[1,255:6630773,4812305:25952256,786432,0 -(1,255:6630773,4812305:25952256,505283,134348 -(1,255:6630773,4812305:25952256,505283,134348 -g1,255:3078558,4812305 -[1,255:3078558,4812305:0,0,0 -(1,255:3078558,2439708:0,1703936,0 -k1,255:1358238,2439708:-1720320 -(1,135:1358238,2439708:1720320,1703936,0 -(1,135:1358238,2439708:1179648,16384,0 -r1,255:2537886,2439708:1179648,16384,0 -) -g1,135:3062174,2439708 -(1,135:3062174,2439708:16384,1703936,0 -[1,135:3062174,2439708:25952256,1703936,0 -(1,135:3062174,1915420:25952256,1179648,0 -(1,135:3062174,1915420:16384,1179648,0 -r1,255:3078558,1915420:16384,1179648,0 -) -k1,135:29014430,1915420:25935872 -g1,135:29014430,1915420 -) -] -) -) -) -] -[1,255:3078558,4812305:0,0,0 -(1,255:3078558,2439708:0,1703936,0 -g1,255:29030814,2439708 -g1,255:36135244,2439708 -(1,135:36135244,2439708:1720320,1703936,0 -(1,135:36135244,2439708:16384,1703936,0 -[1,135:36135244,2439708:25952256,1703936,0 -(1,135:36135244,1915420:25952256,1179648,0 -(1,135:36135244,1915420:16384,1179648,0 -r1,255:36151628,1915420:16384,1179648,0 -) -k1,135:62087500,1915420:25935872 -g1,135:62087500,1915420 -) -] -) -g1,135:36675916,2439708 -(1,135:36675916,2439708:1179648,16384,0 -r1,255:37855564,2439708:1179648,16384,0 -) -) -k1,255:3078556,2439708:-34777008 -) -] -[1,255:3078558,4812305:0,0,0 -(1,255:3078558,49800853:0,16384,2228224 -k1,255:1358238,49800853:-1720320 -(1,135:1358238,49800853:1720320,16384,2228224 -(1,135:1358238,49800853:1179648,16384,0 -r1,255:2537886,49800853:1179648,16384,0 -) -g1,135:3062174,49800853 -(1,135:3062174,52029077:16384,1703936,0 -[1,135:3062174,52029077:25952256,1703936,0 -(1,135:3062174,51504789:25952256,1179648,0 -(1,135:3062174,51504789:16384,1179648,0 -r1,255:3078558,51504789:16384,1179648,0 -) -k1,135:29014430,51504789:25935872 -g1,135:29014430,51504789 -) -] -) -) -) -] -[1,255:3078558,4812305:0,0,0 -(1,255:3078558,49800853:0,16384,2228224 -g1,255:29030814,49800853 -g1,255:36135244,49800853 -(1,135:36135244,49800853:1720320,16384,2228224 -(1,135:36135244,52029077:16384,1703936,0 -[1,135:36135244,52029077:25952256,1703936,0 -(1,135:36135244,51504789:25952256,1179648,0 -(1,135:36135244,51504789:16384,1179648,0 -r1,255:36151628,51504789:16384,1179648,0 -) -k1,135:62087500,51504789:25935872 -g1,135:62087500,51504789 -) -] -) -g1,135:36675916,49800853 -(1,135:36675916,49800853:1179648,16384,0 -r1,255:37855564,49800853:1179648,16384,0 -) -) -k1,255:3078556,49800853:-34777008 -) -] -g1,255:6630773,4812305 -k1,255:21845614,4812305:14816382 -g1,255:22668090,4812305 -g1,255:24054831,4812305 -g1,255:27195316,4812305 -g1,255:28604995,4812305 -g1,255:29789885,4812305 -) -) -] -[1,255:6630773,45706769:25952256,40108032,0 -(1,255:6630773,45706769:25952256,40108032,0 -(1,255:6630773,45706769:0,0,0 -g1,255:6630773,45706769 -) -[1,255:6630773,45706769:25952256,40108032,0 -[1,250:6630773,22184597:25952256,16585860,0 -[1,250:6630773,22184597:25952256,16585860,0 -(1,249:6630773,17218906:25952256,11620169,0 -g1,249:6630773,17218906 -h1,248:6630773,17218906:0,0,0 -(1,248:6630773,17218906:25952256,11620169,0 -) -g1,249:32583029,17218906 -g1,249:32583029,17218906 -) -(1,249:6630773,18715754:25952256,485622,11795 -h1,249:6630773,18715754:0,0,0 -g1,249:9295467,18715754 -k1,249:32583028,18715754:22297312 -g1,249:32583028,18715754 -) -(1,249:6630773,19557242:25952256,513147,134348 -h1,249:6630773,19557242:0,0,0 -k1,249:8927631,19557242:210192 -k1,249:11555446,19557242:210192 -k1,249:12424929,19557242:210191 -k1,249:13654206,19557242:210192 -k1,249:17804422,19557242:210192 -k1,249:21174105,19557242:210192 -k1,249:23804542,19557242:210192 -k1,249:25243534,19557242:210192 -k1,249:26966951,19557242:210191 -k1,249:29700279,19557242:210192 -k1,249:30929556,19557242:210192 -k1,249:32583029,19557242:0 -) -(1,249:6630773,20398730:25952256,505283,126483 -k1,249:8844986,20398730:209467 -k1,249:10542775,20398730:209466 -k1,249:11620594,20398730:209467 -k1,249:12922545,20398730:209466 -(1,249:12922545,20398730:0,452978,115847 -r1,255:15391082,20398730:2468537,568825,115847 -k1,249:12922545,20398730:-2468537 -) -(1,249:12922545,20398730:2468537,452978,115847 -k1,249:12922545,20398730:3277 -h1,249:15387805,20398730:0,411205,112570 -) -k1,249:15600549,20398730:209467 -k1,249:16461444,20398730:209467 -k1,249:17788954,20398730:209466 -k1,249:19017506,20398730:209467 -k1,249:21231718,20398730:209466 -k1,249:22460270,20398730:209467 -k1,249:24328453,20398730:209467 -k1,249:26621964,20398730:209466 -k1,249:27963893,20398730:209467 -k1,249:30545107,20398730:209466 -k1,249:31563944,20398730:209467 -k1,249:32583029,20398730:0 -) -(1,249:6630773,21240218:25952256,505283,134348 -k1,249:9895263,21240218:210512 -k1,249:12351693,21240218:210511 -k1,249:13178243,21240218:210512 -k1,249:14654910,21240218:210511 -k1,249:15493257,21240218:210512 -k1,249:16907010,21240218:210512 -k1,249:18658272,21240218:210511 -k1,249:19283615,21240218:210500 -k1,249:21406468,21240218:210512 -k1,249:22636065,21240218:210512 -k1,249:25019750,21240218:210511 -k1,249:25843024,21240218:210512 -k1,249:27072620,21240218:210511 -k1,249:30337110,21240218:210512 -k1,249:32583029,21240218:0 -) -(1,249:6630773,22081706:25952256,505283,102891 -g1,249:9250247,22081706 -g1,249:10132361,22081706 -g1,249:12008001,22081706 -g1,249:14158892,22081706 -g1,249:15800568,22081706 -g1,249:16615835,22081706 -g1,249:17603462,22081706 -g1,249:19133072,22081706 -g1,249:19747144,22081706 -k1,249:32583029,22081706:10241970 -g1,249:32583029,22081706 -) -] -] -(1,245:6630773,24150677:25952256,505283,134348 -k1,244:10038548,24150677:248284 -k1,244:12688071,24150677:248284 -k1,244:14827070,24150677:248285 -k1,244:15562892,24150677:248234 -k1,244:17642253,24150677:248285 -k1,244:18994819,24150677:248284 -k1,244:19990869,24150677:248284 -k1,244:21357197,24150677:248284 -k1,244:22218243,24150677:248284 -k1,244:23485612,24150677:248284 -k1,244:26787875,24150677:248285 -k1,244:29282078,24150677:248284 -k1,244:31931601,24150677:248284 -k1,244:32583029,24150677:0 -) -(1,245:6630773,24992165:25952256,513147,134348 -k1,244:7657369,24992165:211328 -k1,244:13005410,24992165:211329 -k1,244:17018481,24992165:211328 -k1,244:18623761,24992165:211329 -k1,244:19854174,24992165:211328 -k1,244:22224259,24992165:211329 -k1,244:24247002,24992165:211328 -k1,244:25109759,24992165:211329 -k1,244:25676947,24992165:211328 -k1,244:27044986,24992165:211329 -k1,244:28527712,24992165:211328 -k1,244:30075975,24992165:211329 -k1,244:31379788,24992165:211328 -k1,244:32583029,24992165:0 -) -(1,245:6630773,25833653:25952256,505283,134348 -k1,244:9832207,25833653:216924 -k1,244:10858501,25833653:216924 -k1,244:11431285,25833653:216924 -k1,244:13780752,25833653:216925 -k1,244:15218612,25833653:216924 -k1,244:16086964,25833653:216924 -k1,244:17916729,25833653:216924 -k1,244:18489513,25833653:216924 -k1,244:20277335,25833653:216924 -k1,244:21883622,25833653:216924 -k1,244:24655140,25833653:216925 -k1,244:25893770,25833653:216924 -k1,244:28633830,25833653:216924 -k1,244:31900144,25833653:216924 -k1,244:32583029,25833653:0 -) -(1,245:6630773,26675141:25952256,513147,126483 -g1,244:8296698,26675141 -g1,244:9443578,26675141 -g1,244:11874308,26675141 -k1,245:32583029,26675141:19067044 -g1,245:32583029,26675141 -) -(1,252:6630773,28303061:25952256,505283,11795 -(1,252:6630773,28303061:2809528,485622,11795 -g1,252:6630773,28303061 -g1,252:9440301,28303061 -) -g1,252:11984408,28303061 -g1,252:13409160,28303061 -k1,252:32583029,28303061:17687512 -g1,252:32583029,28303061 -) -(1,255:6630773,29537765:25952256,505283,134348 -k1,254:10088370,29537765:182108 -k1,254:14485098,29537765:182108 -k1,254:19078434,29537765:182108 -k1,254:21092273,29537765:182108 -k1,254:22265942,29537765:182109 -k1,254:23961276,29537765:182108 -k1,254:25841422,29537765:182108 -k1,254:29506769,29537765:182108 -k1,254:32583029,29537765:0 -) -(1,255:6630773,30379253:25952256,513147,134348 -k1,254:10086963,30379253:210192 -k1,254:11714698,30379253:210191 -k1,254:14354965,30379253:210192 -k1,254:14921017,30379253:210192 -k1,254:18692435,30379253:210192 -k1,254:20283470,30379253:210191 -k1,254:23303846,30379253:210192 -k1,254:25081659,30379253:210192 -k1,254:27301840,30379253:210192 -k1,254:29397502,30379253:210191 -k1,254:30626779,30379253:210192 -k1,255:32583029,30379253:0 -) -(1,255:6630773,31220741:25952256,505283,134348 -k1,254:7831786,31220741:181928 -k1,254:9595098,31220741:181928 -k1,254:11290251,31220741:181927 -k1,254:12123607,31220741:181928 -k1,254:14234915,31220741:181928 -k1,254:15608288,31220741:181928 -k1,254:16981661,31220741:181928 -k1,254:17519448,31220741:181927 -k1,254:20777636,31220741:181928 -k1,254:23701590,31220741:181928 -k1,254:24987800,31220741:181928 -k1,254:25917494,31220741:181928 -k1,254:28898464,31220741:181927 -k1,254:30271837,31220741:181928 -k1,254:31966991,31220741:181928 -k1,254:32583029,31220741:0 -) -(1,255:6630773,32062229:25952256,513147,134348 -k1,254:11060941,32062229:185401 -k1,254:12791682,32062229:185402 -k1,254:14394627,32062229:185401 -k1,254:16917697,32062229:185401 -k1,254:17458958,32062229:185401 -k1,254:20748800,32062229:185402 -k1,254:22843265,32062229:185401 -k1,254:25447600,32062229:185401 -k1,254:26292294,32062229:185402 -k1,254:28561740,32062229:185401 -k1,254:32583029,32062229:0 -) -(1,255:6630773,32903717:25952256,505283,134348 -k1,254:8018662,32903717:196444 -k1,254:9681802,32903717:196444 -k1,254:11874473,32903717:196444 -k1,254:13763057,32903717:196444 -k1,254:16967604,32903717:196444 -k1,254:19385718,32903717:196443 -k1,254:20233590,32903717:196444 -k1,254:21449119,32903717:196444 -k1,254:25997809,32903717:196444 -k1,254:29036549,32903717:196444 -k1,254:29849031,32903717:196444 -k1,254:31311631,32903717:196444 -k1,254:32583029,32903717:0 -) -(1,255:6630773,33745205:25952256,513147,134348 -k1,254:8604970,33745205:205380 -k1,254:11479630,33745205:205379 -k1,254:13178576,33745205:205380 -k1,254:14154658,33745205:205379 -k1,254:16269102,33745205:205380 -k1,254:17160644,33745205:205380 -k1,254:18385108,33745205:205379 -k1,254:21895469,33745205:205380 -k1,254:22760141,33745205:205380 -k1,254:23321380,33745205:205379 -k1,254:25151398,33745205:205380 -k1,254:28484810,33745205:205379 -k1,254:30084141,33745205:205380 -k1,254:32583029,33745205:0 -) -(1,255:6630773,34586693:25952256,513147,134348 -k1,254:8024623,34586693:202405 -k1,254:11129618,34586693:202405 -k1,254:14317843,34586693:202405 -k1,254:15804755,34586693:202406 -k1,254:17111442,34586693:202405 -k1,254:18767436,34586693:202405 -k1,254:20792397,34586693:202405 -k1,254:23493690,34586693:202405 -k1,254:24887540,34586693:202405 -k1,254:27173991,34586693:202406 -k1,254:29313640,34586693:202405 -k1,254:30463696,34586693:202405 -k1,254:31021961,34586693:202405 -k1,255:32583029,34586693:0 -) -(1,255:6630773,35428181:25952256,513147,134348 -k1,254:8626911,35428181:267954 -k1,254:11737160,35428181:267953 -k1,254:13151339,35428181:267954 -k1,254:13834066,35428181:267884 -k1,254:16429203,35428181:267954 -k1,254:17356448,35428181:267953 -k1,254:18572053,35428181:267954 -k1,254:19195867,35428181:267954 -k1,254:21755614,35428181:267953 -k1,254:24865864,35428181:267954 -k1,254:26280042,35428181:267953 -k1,254:29033121,35428181:267954 -k1,254:29928909,35428181:267953 -k1,254:31215948,35428181:267954 -k1,254:32583029,35428181:0 -) -(1,255:6630773,36269669:25952256,513147,134348 -k1,254:7527258,36269669:229329 -k1,254:10354434,36269669:229329 -k1,254:11602848,36269669:229329 -k1,254:13597718,36269669:229330 -k1,254:14899216,36269669:229329 -k1,254:16194816,36269669:229329 -k1,254:17799746,36269669:229329 -k1,254:20871371,36269669:229329 -k1,254:24395195,36269669:229329 -k1,254:25156021,36269669:229329 -k1,254:25973864,36269669:229330 -k1,254:27399880,36269669:229329 -k1,254:29221079,36269669:229329 -k1,254:31923737,36269669:229329 -k1,254:32583029,36269669:0 -) -(1,255:6630773,37111157:25952256,505283,126483 -k1,254:8202207,37111157:153890 -k1,254:10643305,37111157:153891 -k1,254:13422567,37111157:153890 -k1,254:15226654,37111157:153890 -k1,254:16822992,37111157:153891 -k1,254:18133592,37111157:153890 -k1,254:19826268,37111157:153891 -k1,254:25006114,37111157:153890 -k1,254:26821997,37111157:153890 -k1,254:28985877,37111157:153891 -k1,254:30158852,37111157:153890 -k1,254:32583029,37111157:0 -) -(1,255:6630773,37952645:25952256,513147,126483 -k1,254:8133167,37952645:241481 -k1,254:9531358,37952645:241481 -k1,254:10873844,37952645:241481 -k1,254:13146287,37952645:241482 -k1,254:14039196,37952645:241481 -k1,254:15299762,37952645:241481 -k1,254:15956044,37952645:241439 -k1,254:18791440,37952645:241481 -k1,254:19388781,37952645:241481 -k1,254:20856441,37952645:241481 -k1,254:23180656,37952645:241481 -k1,254:23777998,37952645:241482 -k1,254:27461430,37952645:241481 -k1,254:30446903,37952645:241481 -k1,254:31044244,37952645:241481 -k1,254:32583029,37952645:0 -) -(1,255:6630773,38794133:25952256,513147,134348 -k1,254:7805233,38794133:226809 -k1,254:10981817,38794133:226809 -k1,254:13541052,38794133:226809 -k1,254:14959306,38794133:226809 -k1,254:17217076,38794133:226809 -k1,254:18095313,38794133:226809 -k1,254:20553622,38794133:226808 -k1,254:24007424,38794133:226809 -k1,254:25815617,38794133:226809 -k1,254:27535992,38794133:226809 -k1,254:28448963,38794133:226809 -k1,254:29623423,38794133:226809 -k1,254:32583029,38794133:0 -) -(1,255:6630773,39635621:25952256,505283,134348 -k1,254:8109069,39635621:286851 -k1,254:11255256,39635621:286851 -k1,254:14614435,39635621:286851 -k1,254:17985410,39635621:286851 -k1,254:21235144,39635621:286851 -k1,254:23946171,39635621:286850 -k1,254:27089736,39635621:286851 -k1,254:28730561,39635621:286851 -k1,254:30296019,39635621:286851 -k1,254:31601955,39635621:286851 -k1,255:32583029,39635621:0 -) -(1,255:6630773,40477109:25952256,513147,134348 -k1,254:10250881,40477109:256145 -k1,254:11166318,40477109:256145 -k1,254:12993361,40477109:256145 -k1,254:15410883,40477109:256145 -k1,254:16858473,40477109:256145 -k1,254:20198742,40477109:256145 -k1,254:20912983,40477109:256144 -k1,254:21700625,40477109:256145 -k1,254:25040894,40477109:256145 -k1,254:25913077,40477109:256145 -k1,254:27150296,40477109:256145 -k1,254:30021983,40477109:256145 -k1,254:31563944,40477109:256145 -k1,254:32583029,40477109:0 -) -(1,255:6630773,41318597:25952256,513147,134348 -k1,254:8197627,41318597:231886 -k1,254:11059472,41318597:231885 -k1,254:12529333,41318597:231886 -k1,254:13420510,41318597:231885 -k1,254:15387789,41318597:231886 -k1,254:16034484,41318597:231852 -k1,254:16879132,41318597:231886 -k1,254:18130102,41318597:231885 -k1,254:20782233,41318597:231886 -k1,254:21700280,41318597:231885 -k1,254:22390263,41318597:231886 -k1,254:23723153,41318597:231885 -k1,254:24974124,41318597:231886 -k1,254:25620820,41318597:231853 -k1,254:27240758,41318597:231885 -k1,254:29718563,41318597:231886 -k1,254:31304422,41318597:231885 -k1,254:32583029,41318597:0 -) -(1,255:6630773,42160085:25952256,505283,134348 -k1,254:10057419,42160085:162953 -k1,254:11687068,42160085:162953 -k1,254:12466059,42160085:162953 -k1,254:13648097,42160085:162953 -k1,254:15720114,42160085:162953 -k1,254:17074512,42160085:162953 -k1,254:17652271,42160085:162916 -k1,254:20409139,42160085:162953 -k1,254:22557178,42160085:162953 -h1,254:23527766,42160085:0,0,0 -k1,254:23690719,42160085:162953 -k1,254:25844656,42160085:162953 -k1,254:27026694,42160085:162953 -k1,254:28781517,42160085:162953 -k1,254:31417799,42160085:162953 -k1,255:32583029,42160085:0 -) -(1,255:6630773,43001573:25952256,513147,134348 -k1,254:8958239,43001573:216551 -k1,254:9936318,43001573:216551 -k1,254:12577045,43001573:216550 -k1,254:14306822,43001573:216551 -k1,254:17046509,43001573:216551 -k1,254:18282145,43001573:216551 -k1,254:20152169,43001573:216551 -k1,254:22199796,43001573:216551 -k1,254:23102508,43001573:216550 -k1,254:25394584,43001573:216551 -k1,254:27466459,43001573:216551 -k1,254:28295772,43001573:216551 -k1,254:29531408,43001573:216551 -k1,254:30162784,43001573:216533 -k1,254:32583029,43001573:0 -) -(1,255:6630773,43843061:25952256,505283,134348 -k1,254:8997731,43843061:174779 -h1,254:9968319,43843061:0,0,0 -k1,254:10350193,43843061:174780 -k1,254:11716417,43843061:174779 -k1,254:12503958,43843061:174779 -k1,254:13697823,43843061:174780 -k1,254:16926580,43843061:174779 -k1,254:19347278,43843061:174779 -k1,254:22681548,43843061:174779 -k1,254:25257567,43843061:174780 -k1,254:27624525,43843061:174779 -h1,254:28595113,43843061:0,0,0 -k1,254:29150656,43843061:174779 -k1,254:30278985,43843061:174780 -k1,254:31558046,43843061:174779 -k1,254:32583029,43843061:0 -) -(1,255:6630773,44684549:25952256,513147,134348 -k1,254:7642497,44684549:250196 -k1,254:11295978,44684549:250196 -k1,254:13242901,44684549:250196 -k1,254:15147882,44684549:250197 -k1,254:17583704,44684549:250196 -k1,254:19164281,44684549:250196 -k1,254:21838654,44684549:250196 -k1,254:22620347,44684549:250196 -k1,254:24633461,44684549:250196 -k1,254:25239518,44684549:250197 -k1,254:27047505,44684549:250196 -k1,254:29932904,44684549:250196 -k1,254:31202185,44684549:250196 -k1,254:32583029,44684549:0 -) -(1,255:6630773,45526037:25952256,513147,134348 -k1,254:8020246,45526037:198028 -k1,254:8988977,45526037:198028 -k1,254:12851778,45526037:198028 -k1,254:13464648,45526037:198027 -k1,254:17210140,45526037:198028 -k1,254:18604855,45526037:198028 -k1,254:20633959,45526037:198028 -k1,254:22039160,45526037:198028 -k1,254:24766878,45526037:198028 -k1,254:25726434,45526037:198028 -k1,254:28631754,45526037:198028 -k1,254:29848867,45526037:198028 -k1,254:32583029,45526037:0 -) -] -(1,255:32583029,45706769:0,0,0 -g1,255:32583029,45706769 -) -) -] -(1,255:6630773,47279633:25952256,0,0 -h1,255:6630773,47279633:25952256,0,0 -) -] -(1,255:4262630,4025873:0,0,0 -[1,255:-473656,4025873:0,0,0 -(1,255:-473656,-710413:0,0,0 -(1,255:-473656,-710413:0,0,0 -g1,255:-473656,-710413 -) -g1,255:-473656,-710413 -) -] -) -] -!17603 -}21 -!11 -{22 -[1,271:4262630,47279633:28320399,43253760,0 -(1,271:4262630,4025873:0,0,0 -[1,271:-473656,4025873:0,0,0 -(1,271:-473656,-710413:0,0,0 -(1,271:-473656,-644877:0,0,0 -k1,271:-473656,-644877:-65536 -) -(1,271:-473656,4736287:0,0,0 -k1,271:-473656,4736287:5209943 -) -g1,271:-473656,-710413 -) -] -) -[1,271:6630773,47279633:25952256,43253760,0 -[1,271:6630773,4812305:25952256,786432,0 -(1,271:6630773,4812305:25952256,485622,11795 -(1,271:6630773,4812305:25952256,485622,11795 -g1,271:3078558,4812305 -[1,271:3078558,4812305:0,0,0 -(1,271:3078558,2439708:0,1703936,0 -k1,271:1358238,2439708:-1720320 -(1,135:1358238,2439708:1720320,1703936,0 -(1,135:1358238,2439708:1179648,16384,0 -r1,271:2537886,2439708:1179648,16384,0 -) -g1,135:3062174,2439708 -(1,135:3062174,2439708:16384,1703936,0 -[1,135:3062174,2439708:25952256,1703936,0 -(1,135:3062174,1915420:25952256,1179648,0 -(1,135:3062174,1915420:16384,1179648,0 -r1,271:3078558,1915420:16384,1179648,0 -) -k1,135:29014430,1915420:25935872 -g1,135:29014430,1915420 -) -] -) -) -) -] -[1,271:3078558,4812305:0,0,0 -(1,271:3078558,2439708:0,1703936,0 -g1,271:29030814,2439708 -g1,271:36135244,2439708 -(1,135:36135244,2439708:1720320,1703936,0 -(1,135:36135244,2439708:16384,1703936,0 -[1,135:36135244,2439708:25952256,1703936,0 -(1,135:36135244,1915420:25952256,1179648,0 -(1,135:36135244,1915420:16384,1179648,0 -r1,271:36151628,1915420:16384,1179648,0 -) -k1,135:62087500,1915420:25935872 -g1,135:62087500,1915420 -) -] -) -g1,135:36675916,2439708 -(1,135:36675916,2439708:1179648,16384,0 -r1,271:37855564,2439708:1179648,16384,0 -) -) -k1,271:3078556,2439708:-34777008 -) -] -[1,271:3078558,4812305:0,0,0 -(1,271:3078558,49800853:0,16384,2228224 -k1,271:1358238,49800853:-1720320 -(1,135:1358238,49800853:1720320,16384,2228224 -(1,135:1358238,49800853:1179648,16384,0 -r1,271:2537886,49800853:1179648,16384,0 -) -g1,135:3062174,49800853 -(1,135:3062174,52029077:16384,1703936,0 -[1,135:3062174,52029077:25952256,1703936,0 -(1,135:3062174,51504789:25952256,1179648,0 -(1,135:3062174,51504789:16384,1179648,0 -r1,271:3078558,51504789:16384,1179648,0 -) -k1,135:29014430,51504789:25935872 -g1,135:29014430,51504789 -) -] -) -) -) -] -[1,271:3078558,4812305:0,0,0 -(1,271:3078558,49800853:0,16384,2228224 -g1,271:29030814,49800853 -g1,271:36135244,49800853 -(1,135:36135244,49800853:1720320,16384,2228224 -(1,135:36135244,52029077:16384,1703936,0 -[1,135:36135244,52029077:25952256,1703936,0 -(1,135:36135244,51504789:25952256,1179648,0 -(1,135:36135244,51504789:16384,1179648,0 -r1,271:36151628,51504789:16384,1179648,0 -) -k1,135:62087500,51504789:25935872 -g1,135:62087500,51504789 -) -] -) -g1,135:36675916,49800853 -(1,135:36675916,49800853:1179648,16384,0 -r1,271:37855564,49800853:1179648,16384,0 -) -) -k1,271:3078556,49800853:-34777008 -) -] -g1,271:6630773,4812305 -g1,271:6630773,4812305 -g1,271:7279579,4812305 -k1,271:32184571,4812305:24904992 -) -) -] -[1,271:6630773,45706769:25952256,40108032,0 -(1,271:6630773,45706769:25952256,40108032,0 -(1,271:6630773,45706769:0,0,0 -g1,271:6630773,45706769 -) -[1,271:6630773,45706769:25952256,40108032,0 -[1,260:6630773,22437907:25952256,16839170,0 -[1,260:6630773,22437907:25952256,16839170,0 -(1,259:6630773,18290112:25952256,12691375,0 -g1,259:6630773,18290112 -h1,258:6630773,18290112:0,0,0 -(1,258:6630773,18290112:25952256,12691375,0 -) -g1,259:32583029,18290112 -g1,259:32583029,18290112 -) -(1,259:6630773,19786960:25952256,485622,11795 -h1,259:6630773,19786960:0,0,0 -g1,259:9295467,19786960 -k1,259:32583028,19786960:22297312 -g1,259:32583028,19786960 -) -(1,259:6630773,20628448:25952256,513147,134348 -h1,259:6630773,20628448:0,0,0 -k1,259:7977890,20628448:150430 -k1,259:10552498,20628448:150431 -k1,259:13513112,20628448:150430 -k1,259:14892342,20628448:150430 -k1,259:16555999,20628448:150431 -k1,259:19229565,20628448:150430 -k1,259:20399080,20628448:150430 -k1,259:22202983,20628448:150430 -k1,259:24358160,20628448:150431 -k1,259:25996913,20628448:150430 -k1,259:27015695,20628448:150430 -k1,259:28679352,20628448:150431 -k1,259:29848867,20628448:150430 -k1,259:32583029,20628448:0 -) -(1,259:6630773,21469936:25952256,505283,126483 -k1,259:9003836,21469936:234623 -k1,259:9889887,21469936:234623 -k1,259:11242554,21469936:234623 -k1,259:12496262,21469936:234623 -k1,259:14735631,21469936:234623 -k1,259:15598089,21469936:234623 -k1,259:17035953,21469936:234623 -k1,259:18811327,21469936:234623 -k1,259:19460757,21469936:234587 -k1,259:21607721,21469936:234623 -k1,259:22861429,21469936:234623 -k1,259:25269226,21469936:234623 -k1,259:26155277,21469936:234623 -k1,259:27408985,21469936:234623 -k1,259:28058415,21469936:234587 -k1,259:30713283,21469936:234623 -k1,259:31563944,21469936:234623 -k1,259:32583029,21469936:0 -) -(1,259:6630773,22311424:25952256,513147,126483 -g1,259:8586367,22311424 -g1,259:9859731,22311424 -k1,259:32583029,22311424:21010842 -g1,259:32583029,22311424 -) -] -] -(1,255:6630773,24403987:25952256,513147,134348 -k1,254:9020778,24403987:251565 -k1,254:9885104,24403987:251564 -k1,254:11155754,24403987:251565 -k1,254:12479487,24403987:251564 -k1,254:13390344,24403987:251565 -k1,254:14660993,24403987:251564 -k1,254:16821622,24403987:251565 -k1,254:18785642,24403987:251564 -k1,254:21635054,24403987:251565 -k1,254:22502656,24403987:251564 -k1,254:25627975,24403987:251565 -k1,254:26530967,24403987:251564 -k1,254:28159443,24403987:251565 -k1,254:31563944,24403987:251564 -k1,254:32583029,24403987:0 -) -(1,255:6630773,25245475:25952256,513147,102891 -k1,254:8357693,25245475:230733 -k1,254:10886775,25245475:230734 -k1,254:11768936,25245475:230733 -k1,254:14108618,25245475:230733 -k1,254:15358436,25245475:230733 -k1,254:16572210,25245475:230734 -k1,254:17994388,25245475:230733 -k1,254:21248297,25245475:230733 -k1,254:21937128,25245475:230734 -k1,254:22780623,25245475:230733 -k1,254:24030441,25245475:230733 -k1,254:26855089,25245475:230733 -k1,254:28104908,25245475:230734 -k1,254:29989114,25245475:230733 -k1,254:32583029,25245475:0 -) -(1,255:6630773,26086963:25952256,505283,126483 -g1,254:8748896,26086963 -g1,254:9816477,26086963 -g1,254:11971956,26086963 -g1,254:13557271,26086963 -g1,254:14888307,26086963 -g1,254:15502379,26086963 -k1,255:32583029,26086963:13417187 -g1,255:32583029,26086963 -) -(1,263:6630773,26928451:25952256,513147,134348 -h1,262:6630773,26928451:983040,0,0 -k1,262:9656419,26928451:259371 -k1,262:10271650,26928451:259371 -k1,262:12362097,26928451:259371 -k1,262:13152966,26928451:259372 -k1,262:14704052,26928451:259371 -k1,262:15429384,26928451:259371 -k1,262:16459458,26928451:259371 -k1,262:18325772,26928451:259371 -k1,262:19116640,26928451:259371 -k1,262:22448340,26928451:259372 -k1,262:25131888,26928451:259371 -k1,262:29708116,26928451:259371 -k1,262:31563944,26928451:259371 -k1,262:32583029,26928451:0 -) -(1,263:6630773,27769939:25952256,513147,134348 -k1,262:9396720,27769939:209388 -k1,262:10265399,27769939:209387 -k1,262:11493872,27769939:209388 -k1,262:13483872,27769939:209387 -k1,262:16117437,27769939:209388 -k1,262:19183538,27769939:209387 -k1,262:20412011,27769939:209388 -k1,262:23122907,27769939:209387 -k1,262:23991587,27769939:209388 -k1,262:26799477,27769939:209387 -k1,262:29680768,27769939:209388 -k1,262:31923737,27769939:209387 -k1,262:32583029,27769939:0 -) -(1,263:6630773,28611427:25952256,513147,134348 -k1,262:9381374,28611427:238606 -k1,262:10676419,28611427:238605 -k1,262:13356896,28611427:238606 -k1,262:15312544,28611427:238605 -k1,262:18156861,28611427:238606 -k1,262:19387027,28611427:238606 -k1,262:21964612,28611427:238605 -k1,262:23751834,28611427:238606 -k1,262:25160912,28611427:238605 -k1,262:26929784,28611427:238606 -k1,262:28116040,28611427:238605 -k1,262:31193666,28611427:238606 -k1,262:32583029,28611427:0 -) -(1,263:6630773,29452915:25952256,513147,134348 -k1,262:9477525,29452915:292159 -k1,262:10961130,29452915:292160 -k1,262:13198398,29452915:292159 -k1,262:14103320,29452915:292160 -k1,262:16975631,29452915:292159 -k1,262:21573505,29452915:292159 -k1,262:23359231,29452915:292160 -k1,262:24337552,29452915:292159 -k1,262:28135888,29452915:292160 -k1,262:29087339,29452915:292159 -k1,262:32583029,29452915:0 -) -(1,263:6630773,30294403:25952256,513147,134348 -k1,262:9975932,30294403:280696 -k1,262:11065997,30294403:280695 -k1,262:13457608,30294403:280696 -k1,262:16467878,30294403:280695 -k1,262:17940019,30294403:280696 -k1,262:20131744,30294403:280695 -k1,262:23059439,30294403:280696 -k1,262:23999426,30294403:280695 -k1,262:25776309,30294403:280696 -k1,262:26781832,30294403:280695 -k1,262:27748690,30294403:280696 -k1,262:28680813,30294403:280695 -k1,262:31391584,30294403:280696 -k1,262:32583029,30294403:0 -) -(1,263:6630773,31135891:25952256,513147,134348 -k1,262:9505062,31135891:244985 -k1,262:13999402,31135891:244986 -k1,262:14714280,31135891:244985 -k1,262:18132519,31135891:244986 -k1,262:20903917,31135891:244985 -k1,262:22096554,31135891:244986 -k1,262:23324579,31135891:244985 -k1,262:25903302,31135891:244986 -k1,262:28609819,31135891:244985 -k1,262:30740276,31135891:244986 -k1,262:31516758,31135891:244985 -k1,262:32583029,31135891:0 -) -(1,263:6630773,31977379:25952256,513147,134348 -k1,262:8246563,31977379:240189 -k1,262:10463974,31977379:240190 -k1,262:11651814,31977379:240189 -k1,262:14472156,31977379:240190 -k1,262:19018060,31977379:240189 -k1,262:20330419,31977379:240190 -k1,262:21856424,31977379:240189 -k1,262:23044264,31977379:240189 -k1,262:25782686,31977379:240190 -k1,262:27650134,31977379:240189 -k1,262:28549616,31977379:240190 -k1,262:29808890,31977379:240189 -k1,262:32583029,31977379:0 -) -(1,263:6630773,32818867:25952256,513147,126483 -g1,262:7512887,32818867 -g1,262:11912974,32818867 -g1,262:12728241,32818867 -g1,262:13946555,32818867 -g1,262:16700377,32818867 -g1,262:17558898,32818867 -k1,263:32583029,32818867:13461097 -g1,263:32583029,32818867 -) -(1,265:6630773,33660355:25952256,513147,126483 -h1,264:6630773,33660355:983040,0,0 -k1,264:9032113,33660355:221613 -k1,264:11587462,33660355:221612 -k1,264:12476231,33660355:221613 -k1,264:15122020,33660355:221612 -k1,264:16628139,33660355:221613 -k1,264:18006461,33660355:221612 -k1,264:19650861,33660355:221613 -k1,264:22106595,33660355:221612 -k1,264:23397756,33660355:221613 -k1,264:26356807,33660355:221612 -k1,264:27194458,33660355:221613 -k1,264:27771930,33660355:221612 -k1,264:31069803,33660355:221613 -k1,264:32583029,33660355:0 -) -(1,265:6630773,34501843:25952256,513147,134348 -k1,264:8875802,34501843:184577 -k1,264:9821908,34501843:184578 -k1,264:10362345,34501843:184577 -k1,264:12419942,34501843:184578 -k1,264:14159033,34501843:184577 -k1,264:15791957,34501843:184578 -k1,264:17370485,34501843:184577 -k1,264:18325765,34501843:184577 -k1,264:20673031,34501843:184578 -k1,264:23594391,34501843:184577 -k1,264:25159813,34501843:184578 -k1,264:28154574,34501843:184577 -k1,264:29148522,34501843:184578 -k1,264:30934799,34501843:184577 -k1,265:32583029,34501843:0 -) -(1,265:6630773,35343331:25952256,505283,134348 -k1,264:7908692,35343331:227377 -k1,264:11190047,35343331:227377 -k1,264:14167315,35343331:227377 -k1,264:15888258,35343331:227377 -k1,264:16801797,35343331:227377 -k1,264:18955932,35343331:227377 -k1,264:20808602,35343331:227378 -k1,264:21907380,35343331:236324 -k1,264:22718682,35343331:227377 -k1,264:24137504,35343331:227377 -k1,264:28478575,35343331:227377 -k1,264:30538339,35343331:227377 -k1,264:31297213,35343331:227377 -k1,264:32583029,35343331:0 -) -(1,265:6630773,36184819:25952256,505283,134348 -k1,264:7185950,36184819:199317 -k1,264:9344137,36184819:199316 -k1,264:11877191,36184819:199317 -k1,264:13361014,36184819:199317 -k1,264:15008676,36184819:199316 -k1,264:16017363,36184819:199317 -k1,264:18143438,36184819:199317 -k1,264:19534199,36184819:199316 -k1,264:21018022,36184819:199317 -k1,264:22321621,36184819:199317 -k1,264:23268703,36184819:199316 -k1,264:24981246,36184819:199317 -k1,264:28001233,36184819:199317 -k1,264:30759075,36184819:199316 -k1,264:31314252,36184819:199317 -k1,264:32583029,36184819:0 -) -(1,265:6630773,37026307:25952256,513147,7863 -g1,264:9573994,37026307 -g1,264:10969910,37026307 -g1,264:12549983,37026307 -g1,264:15559396,37026307 -g1,264:16290122,37026307 -g1,264:17688005,37026307 -g1,264:18906319,37026307 -k1,265:32583029,37026307:11849566 -g1,265:32583029,37026307 -) -(1,267:6630773,37867795:25952256,505283,126484 -h1,266:6630773,37867795:983040,0,0 -k1,266:10349869,37867795:311879 -k1,266:11193244,37867795:311878 -k1,266:13391249,37867795:311879 -k1,266:15555174,37867795:311878 -k1,266:20172768,37867795:311879 -k1,266:21676091,37867795:311878 -k1,266:25311956,37867795:311879 -k1,266:28847550,37867795:311878 -k1,266:30607119,37867795:311879 -$1,266:30607119,37867795 -k1,266:32187847,37867795:0 -k1,267:32583029,37867795:0 -) -(1,267:6630773,38709283:25952256,513147,134349 -k1,266:7025955,38709283:0 -k1,266:7421137,38709283:0 -k1,266:8606683,38709283:0 -k1,266:9001865,38709283:0 -k1,266:11768139,38709283:0 -k1,266:12163321,38709283:0 -$1,266:13744049,38709283 -k1,266:14015122,38709283:271073 -k1,266:15233847,38709283:271074 -k1,266:16275623,38709283:271073 -k1,266:19840536,38709283:271074 -k1,266:23721332,38709283:271073 -k1,266:25183850,38709283:271073 -k1,266:28582302,38709283:271074 -k1,266:30044820,38709283:271073 -k1,267:32583029,38709283:0 -) -(1,267:6630773,39550771:25952256,513147,134348 -k1,266:8109379,39550771:211140 -k1,266:12331979,39550771:211141 -k1,266:13893161,39550771:211140 -k1,266:16016643,39550771:211141 -k1,266:19779179,39550771:211140 -k1,266:21181765,39550771:211141 -k1,266:24016967,39550771:211140 -k1,266:25995662,39550771:211189 -k1,266:27360891,39550771:211140 -k1,266:28763477,39550771:211141 -k1,266:30782100,39550771:211140 -k1,266:32583029,39550771:0 -) -(1,267:6630773,40392259:25952256,505283,134348 -k1,266:9463941,40392259:163887 -k1,266:10819273,40392259:163887 -k1,266:12691683,40392259:163886 -k1,266:14185951,40392259:163887 -k1,266:15001266,40392259:163887 -k1,266:16257638,40392259:163887 -k1,266:18845701,40392259:163886 -k1,266:21469810,40392259:163887 -k1,266:23392683,40392259:163887 -k1,266:24172608,40392259:163887 -k1,266:26197062,40392259:163887 -k1,266:27628414,40392259:163886 -k1,266:29181664,40392259:163887 -k1,266:31900144,40392259:163887 -k1,266:32583029,40392259:0 -) -(1,267:6630773,41233747:25952256,505283,126483 -k1,266:9883390,41233747:225509 -k1,266:12953163,41233747:225510 -k1,266:13864834,41233747:225509 -k1,266:16514520,41233747:225509 -k1,266:17271527,41233747:225510 -k1,266:19383162,41233747:225509 -k1,266:20962645,41233747:225509 -k1,266:23040201,41233747:225509 -k1,266:27571426,41233747:225510 -k1,266:30028436,41233747:225509 -k1,266:32583029,41233747:0 -) -(1,267:6630773,42075235:25952256,513147,126483 -k1,266:8785269,42075235:189071 -k1,266:12183638,42075235:189071 -k1,266:14978421,42075235:189072 -k1,266:16159052,42075235:189071 -k1,266:17414394,42075235:189071 -k1,266:20693489,42075235:189072 -k1,266:21498598,42075235:189071 -k1,266:23384396,42075235:189071 -k1,266:25659478,42075235:189071 -k1,266:27102254,42075235:189072 -k1,266:28423787,42075235:189071 -k1,266:29879014,42075235:189071 -k1,266:32583029,42075235:0 -) -(1,267:6630773,42916723:25952256,505283,134349 -g1,266:8021447,42916723 -g1,266:11514515,42916723 -g1,266:13422268,42916723 -g1,266:15648526,42916723 -g1,266:16460517,42916723 -$1,266:16460517,42916723 -g1,266:18041245,42916723 -g1,266:18436427,42916723 -g1,266:18831609,42916723 -g1,266:19226791,42916723 -g1,266:20412337,42916723 -g1,266:20807519,42916723 -g1,266:23573793,42916723 -g1,266:23968975,42916723 -$1,266:25549703,42916723 -k1,267:32583029,42916723:6859656 -g1,267:32583029,42916723 -) -] -(1,271:32583029,45706769:0,0,0 -g1,271:32583029,45706769 -) -) -] -(1,271:6630773,47279633:25952256,0,0 -h1,271:6630773,47279633:25952256,0,0 -) -] -(1,271:4262630,4025873:0,0,0 -[1,271:-473656,4025873:0,0,0 -(1,271:-473656,-710413:0,0,0 -(1,271:-473656,-710413:0,0,0 -g1,271:-473656,-710413 -) -g1,271:-473656,-710413 -) -] -) -] -!15449 -}22 -!11 -{23 -[1,281:4262630,47279633:28320399,43253760,0 -(1,281:4262630,4025873:0,0,0 -[1,281:-473656,4025873:0,0,0 -(1,281:-473656,-710413:0,0,0 -(1,281:-473656,-644877:0,0,0 -k1,281:-473656,-644877:-65536 -) -(1,281:-473656,4736287:0,0,0 -k1,281:-473656,4736287:5209943 -) -g1,281:-473656,-710413 -) -] -) -[1,281:6630773,47279633:25952256,43253760,0 -[1,281:6630773,4812305:25952256,786432,0 -(1,281:6630773,4812305:25952256,505283,134348 -(1,281:6630773,4812305:25952256,505283,134348 -g1,281:3078558,4812305 -[1,281:3078558,4812305:0,0,0 -(1,281:3078558,2439708:0,1703936,0 -k1,281:1358238,2439708:-1720320 -(1,135:1358238,2439708:1720320,1703936,0 -(1,135:1358238,2439708:1179648,16384,0 -r1,281:2537886,2439708:1179648,16384,0 -) -g1,135:3062174,2439708 -(1,135:3062174,2439708:16384,1703936,0 -[1,135:3062174,2439708:25952256,1703936,0 -(1,135:3062174,1915420:25952256,1179648,0 -(1,135:3062174,1915420:16384,1179648,0 -r1,281:3078558,1915420:16384,1179648,0 -) -k1,135:29014430,1915420:25935872 -g1,135:29014430,1915420 -) -] -) -) -) -] -[1,281:3078558,4812305:0,0,0 -(1,281:3078558,2439708:0,1703936,0 -g1,281:29030814,2439708 -g1,281:36135244,2439708 -(1,135:36135244,2439708:1720320,1703936,0 -(1,135:36135244,2439708:16384,1703936,0 -[1,135:36135244,2439708:25952256,1703936,0 -(1,135:36135244,1915420:25952256,1179648,0 -(1,135:36135244,1915420:16384,1179648,0 -r1,281:36151628,1915420:16384,1179648,0 -) -k1,135:62087500,1915420:25935872 -g1,135:62087500,1915420 -) -] -) -g1,135:36675916,2439708 -(1,135:36675916,2439708:1179648,16384,0 -r1,281:37855564,2439708:1179648,16384,0 -) -) -k1,281:3078556,2439708:-34777008 -) -] -[1,281:3078558,4812305:0,0,0 -(1,281:3078558,49800853:0,16384,2228224 -k1,281:1358238,49800853:-1720320 -(1,135:1358238,49800853:1720320,16384,2228224 -(1,135:1358238,49800853:1179648,16384,0 -r1,281:2537886,49800853:1179648,16384,0 -) -g1,135:3062174,49800853 -(1,135:3062174,52029077:16384,1703936,0 -[1,135:3062174,52029077:25952256,1703936,0 -(1,135:3062174,51504789:25952256,1179648,0 -(1,135:3062174,51504789:16384,1179648,0 -r1,281:3078558,51504789:16384,1179648,0 -) -k1,135:29014430,51504789:25935872 -g1,135:29014430,51504789 -) -] -) -) -) -] -[1,281:3078558,4812305:0,0,0 -(1,281:3078558,49800853:0,16384,2228224 -g1,281:29030814,49800853 -g1,281:36135244,49800853 -(1,135:36135244,49800853:1720320,16384,2228224 -(1,135:36135244,52029077:16384,1703936,0 -[1,135:36135244,52029077:25952256,1703936,0 -(1,135:36135244,51504789:25952256,1179648,0 -(1,135:36135244,51504789:16384,1179648,0 -r1,281:36151628,51504789:16384,1179648,0 -) -k1,135:62087500,51504789:25935872 -g1,135:62087500,51504789 -) -] -) -g1,135:36675916,49800853 -(1,135:36675916,49800853:1179648,16384,0 -r1,281:37855564,49800853:1179648,16384,0 -) -) -k1,281:3078556,49800853:-34777008 -) -] -g1,281:6630773,4812305 -k1,281:21845614,4812305:14417923 -g1,281:22668090,4812305 -g1,281:24054831,4812305 -g1,281:27195316,4812305 -g1,281:28604995,4812305 -g1,281:29789885,4812305 -) -) -] -[1,281:6630773,45706769:25952256,40108032,0 -(1,281:6630773,45706769:25952256,40108032,0 -(1,281:6630773,45706769:0,0,0 -g1,281:6630773,45706769 -) -[1,281:6630773,45706769:25952256,40108032,0 -(1,268:6630773,6254097:25952256,32768,229376 -(1,268:6630773,6254097:0,32768,229376 -(1,268:6630773,6254097:5505024,32768,229376 -r1,281:12135797,6254097:5505024,262144,229376 -) -k1,268:6630773,6254097:-5505024 -) -(1,268:6630773,6254097:25952256,32768,0 -r1,281:32583029,6254097:25952256,32768,0 -) -) -(1,268:6630773,7858425:25952256,606339,151780 -(1,268:6630773,7858425:1974731,575668,0 -g1,268:6630773,7858425 -g1,268:8605504,7858425 -) -g1,268:14129403,7858425 -g1,268:16067958,7858425 -k1,268:32583029,7858425:13276544 -g1,268:32583029,7858425 -) -(1,271:6630773,9093129:25952256,513147,126483 -k1,270:11020255,9093129:170274 -k1,270:12579893,9093129:170275 -k1,270:15304760,9093129:170274 -k1,270:16006532,9093129:170275 -k1,270:17960041,9093129:170274 -k1,270:19780513,9093129:170275 -k1,270:21393234,9093129:170274 -k1,270:21919369,9093129:170275 -k1,270:25774732,9093129:170274 -k1,270:29338461,9093129:170275 -k1,270:31451222,9093129:170274 -k1,270:32583029,9093129:0 -) -(1,271:6630773,9934617:25952256,513147,126483 -k1,270:9722689,9934617:265348 -k1,270:11906931,9934617:265348 -k1,270:16658218,9934617:265348 -k1,270:17455063,9934617:265348 -k1,270:21103379,9934617:265348 -k1,270:22936348,9934617:265348 -k1,270:26051201,9934617:265348 -k1,270:29022531,9934617:265348 -k1,270:29939307,9934617:265348 -k1,270:32583029,9934617:0 -) -(1,271:6630773,10776105:25952256,513147,134348 -k1,270:9201619,10776105:212205 -k1,270:10029863,10776105:212206 -k1,270:13941576,10776105:212206 -k1,270:17900474,10776105:212205 -k1,270:21202046,10776105:212205 -k1,270:23613640,10776105:212206 -k1,270:26113708,10776105:212206 -k1,270:27517358,10776105:212205 -k1,270:29645836,10776105:212205 -k1,270:31049487,10776105:212206 -k1,271:32583029,10776105:0 -) -(1,271:6630773,11617593:25952256,505283,134348 -k1,270:10160018,11617593:231473 -k1,270:12579738,11617593:231473 -k1,270:16978645,11617593:231473 -k1,270:18948133,11617593:231473 -k1,270:20488361,11617593:231474 -k1,270:21371262,11617593:231473 -k1,270:24858564,11617593:231473 -k1,270:25445897,11617593:231473 -k1,270:27066733,11617593:231473 -k1,270:29852799,11617593:231473 -k1,270:32583029,11617593:0 -) -(1,271:6630773,12459081:25952256,513147,126483 -k1,270:7919320,12459081:269462 -k1,270:9842255,12459081:269462 -k1,270:13879382,12459081:269462 -k1,270:15716465,12459081:269462 -k1,270:17005012,12459081:269462 -k1,270:18927948,12459081:269463 -k1,270:20586773,12459081:269462 -k1,270:21387732,12459081:269462 -k1,270:23963406,12459081:269462 -k1,270:25778207,12459081:269462 -k1,270:29709821,12459081:269462 -k1,270:30630711,12459081:269462 -k1,271:32583029,12459081:0 -) -(1,271:6630773,13300569:25952256,505283,134348 -k1,270:9218724,13300569:264700 -k1,270:10872787,13300569:264700 -k1,270:13692079,13300569:264699 -k1,270:14948339,13300569:264700 -k1,270:17067708,13300569:264700 -k1,270:18141778,13300569:264700 -k1,270:22051590,13300569:264700 -k1,270:24312516,13300569:264699 -k1,270:27972636,13300569:264700 -k1,270:29428781,13300569:264700 -k1,270:32583029,13300569:0 -) -(1,271:6630773,14142057:25952256,513147,134348 -k1,270:7598135,14142057:281200 -k1,270:9201196,14142057:281200 -k1,270:10141687,14142057:281199 -k1,270:11441972,14142057:281200 -k1,270:13893069,14142057:281200 -k1,270:14940385,14142057:281200 -k1,270:16240669,14142057:281199 -k1,270:19598129,14142057:281200 -k1,270:23369121,14142057:281200 -k1,270:25163547,14142057:281200 -k1,270:26096174,14142057:281199 -k1,270:29109570,14142057:281200 -k1,270:30409855,14142057:281200 -k1,270:32583029,14142057:0 -) -(1,271:6630773,14983545:25952256,505283,126483 -k1,271:32583028,14983545:22604676 -g1,271:32583028,14983545 -) -(1,273:6630773,15825033:25952256,513147,126483 -h1,272:6630773,15825033:983040,0,0 -k1,272:8257397,15825033:155996 -k1,272:12484532,15825033:156039 -k1,272:16571420,15825033:156039 -k1,272:17675110,15825033:156039 -k1,272:22566781,15825033:156039 -k1,272:23254318,15825033:156040 -k1,272:23766217,15825033:156039 -k1,272:26273032,15825033:156039 -k1,272:28501975,15825033:156039 -k1,272:29317306,15825033:156039 -k1,272:31021961,15825033:156039 -k1,273:32583029,15825033:0 -) -(1,273:6630773,16666521:25952256,513147,126483 -k1,272:9002474,16666521:229984 -k1,272:10707674,16666521:229985 -k1,272:12447608,16666521:229984 -k1,272:13795637,16666521:229985 -k1,272:14834991,16666521:229984 -k1,272:16950447,16666521:229985 -k1,272:18743465,16666521:229984 -k1,272:20491918,16666521:229984 -k1,272:21077763,16666521:229985 -k1,272:23380651,16666521:229984 -k1,272:24142133,16666521:229985 -k1,272:27479834,16666521:229984 -k1,272:30193634,16666521:229985 -k1,272:31075046,16666521:229984 -k1,272:32583029,16666521:0 -) -(1,273:6630773,17508009:25952256,505283,134348 -k1,272:8580290,17508009:251479 -k1,272:11098660,17508009:251480 -k1,272:14839931,17508009:251479 -k1,272:17649936,17508009:251479 -k1,272:20028715,17508009:251480 -k1,272:21471639,17508009:251479 -k1,272:24436965,17508009:251480 -k1,272:26526074,17508009:251479 -k1,272:27393591,17508009:251479 -k1,272:28000931,17508009:251480 -k1,272:31202185,17508009:251479 -k1,272:32583029,17508009:0 -) -(1,273:6630773,18349497:25952256,513147,134348 -k1,272:9649198,18349497:208241 -k1,272:10540325,18349497:208242 -k1,272:14675483,18349497:208241 -k1,272:15496486,18349497:208241 -k1,272:16060587,18349497:208241 -k1,272:18862744,18349497:208242 -k1,272:20561274,18349497:208241 -k1,272:23356221,18349497:208241 -k1,272:27491379,18349497:208241 -k1,272:28312383,18349497:208242 -k1,272:29539709,18349497:208241 -k1,272:30162784,18349497:208232 -k1,272:32583029,18349497:0 -) -(1,273:6630773,19190985:25952256,505283,134348 -k1,272:8567221,19190985:201055 -k1,272:10278226,19190985:201055 -k1,272:11670726,19190985:201055 -k1,272:13582926,19190985:201055 -k1,272:14435409,19190985:201055 -k1,272:16974133,19190985:201055 -k1,272:20664980,19190985:201055 -k1,272:22057480,19190985:201055 -k1,272:24431709,19190985:201055 -k1,272:25248802,19190985:201055 -k1,272:25805717,19190985:201055 -k1,272:28002999,19190985:201055 -k1,272:28735551,19190985:201055 -k1,272:30543549,19190985:201055 -k1,272:32583029,19190985:0 -) -(1,273:6630773,20032473:25952256,505283,7863 -g1,272:8021447,20032473 -k1,273:32583030,20032473:21402748 -g1,273:32583030,20032473 -) -(1,275:6630773,20873961:25952256,513147,126483 -h1,274:6630773,20873961:983040,0,0 -k1,274:8300805,20873961:199404 -k1,274:10775619,20873961:199404 -k1,274:14905872,20873961:199404 -k1,274:15636773,20873961:199404 -k1,274:16487606,20873961:199405 -k1,274:17434776,20873961:199404 -k1,274:18942934,20873961:199404 -k1,274:19793766,20873961:199404 -k1,274:21974323,20873961:199404 -k1,274:23192812,20873961:199404 -k1,274:25550973,20873961:199405 -k1,274:26409669,20873961:199404 -k1,274:27628158,20873961:199404 -k1,274:28242405,20873961:199404 -k1,274:31931601,20873961:199404 -k1,274:32583029,20873961:0 -) -(1,275:6630773,21715449:25952256,513147,126483 -k1,274:7882292,21715449:232434 -k1,274:9996920,21715449:232434 -k1,274:10707112,21715449:232435 -k1,274:11958631,21715449:232434 -k1,274:14022141,21715449:232434 -k1,274:15975550,21715449:232434 -k1,274:17227069,21715449:232434 -k1,274:19618260,21715449:232435 -k1,274:20502122,21715449:232434 -k1,274:23437261,21715449:232434 -k1,274:25156707,21715449:232434 -k1,274:26823069,21715449:232434 -k1,274:28074589,21715449:232435 -k1,274:29687867,21715449:232434 -k1,274:31052763,21715449:232434 -k1,274:32583029,21715449:0 -) -(1,275:6630773,22556937:25952256,513147,126483 -k1,274:7525462,22556937:243261 -k1,274:9121387,22556937:243262 -k1,274:10689786,22556937:243261 -k1,274:12217554,22556937:243262 -k1,274:13479900,22556937:243261 -k1,274:15554238,22556937:243262 -k1,274:17608914,22556937:243261 -k1,274:18535061,22556937:243262 -k1,274:20935767,22556937:243261 -k1,274:21865190,22556937:243261 -k1,274:22464312,22556937:243262 -k1,274:24780477,22556937:243261 -k1,274:25683031,22556937:243262 -k1,274:26945377,22556937:243261 -k1,274:28578002,22556937:243262 -k1,274:31375856,22556937:243261 -k1,274:32583029,22556937:0 -) -(1,275:6630773,23398425:25952256,513147,134348 -k1,274:7884149,23398425:234291 -k1,274:9275150,23398425:234291 -k1,274:11997843,23398425:234291 -k1,274:13745360,23398425:234291 -k1,274:14927302,23398425:234291 -k1,274:18175594,23398425:234291 -k1,274:19428970,23398425:234291 -k1,274:22427570,23398425:234291 -k1,274:24835035,23398425:234291 -k1,274:26260771,23398425:234291 -k1,274:30436397,23398425:234291 -k1,274:32051532,23398425:234291 -k1,274:32583029,23398425:0 -) -(1,275:6630773,24239913:25952256,513147,134348 -k1,274:9302402,24239913:198956 -k1,274:13187104,24239913:198957 -k1,274:15050674,24239913:198956 -k1,274:15865669,24239913:198957 -k1,274:17083710,24239913:198956 -k1,274:20269142,24239913:198956 -k1,274:21127391,24239913:198957 -k1,274:22715710,24239913:198956 -k1,274:25642931,24239913:198957 -k1,274:26670917,24239913:198956 -k1,274:28504342,24239913:198957 -k1,274:29906539,24239913:198956 -k1,274:32583029,24239913:0 -) -(1,275:6630773,25081401:25952256,505283,134348 -k1,274:7541961,25081401:140485 -k1,274:10666957,25081401:140486 -k1,274:12014615,25081401:140485 -k1,274:15589842,25081401:140485 -k1,274:18355044,25081401:140485 -k1,274:19111568,25081401:140486 -k1,274:20800669,25081401:140485 -k1,274:21472651,25081401:140485 -k1,274:23480912,25081401:140485 -k1,274:25850933,25081401:140486 -k1,274:30410510,25081401:140485 -k1,274:32583029,25081401:0 -) -(1,275:6630773,25922889:25952256,505283,134348 -k1,274:8836538,25922889:231165 -k1,274:10264199,25922889:230974 -k1,274:11820312,25922889:230975 -k1,274:12582783,25922889:230974 -k1,274:14098264,25922889:230975 -k1,274:16852374,25922889:230974 -k1,274:18102434,25922889:230975 -k1,274:20164484,25922889:230974 -k1,274:21527921,25922889:230975 -k1,274:24379024,25922889:230974 -k1,274:24965859,25922889:230975 -k1,274:28399578,25922889:230975 -k1,274:29915058,25922889:230974 -k1,274:32583029,25922889:0 -) -(1,275:6630773,26764377:25952256,513147,134348 -k1,274:7817195,26764377:167337 -k1,274:9968307,26764377:167337 -k1,274:10794937,26764377:167338 -k1,274:11981359,26764377:167337 -k1,274:12563507,26764377:167305 -k1,274:14227031,26764377:167337 -k1,274:16081266,26764377:167338 -k1,274:17267688,26764377:167337 -k1,274:19608199,26764377:167337 -k1,274:20434828,26764377:167337 -k1,274:23125301,26764377:167337 -k1,274:24495879,26764377:167337 -k1,274:26159404,26764377:167338 -k1,274:27518186,26764377:167337 -k1,274:28817330,26764377:167337 -k1,274:32583029,26764377:0 -) -(1,275:6630773,27605865:25952256,505283,126483 -g1,274:8056181,27605865 -g1,274:10553758,27605865 -g1,274:11404415,27605865 -g1,274:15268417,27605865 -g1,274:16659091,27605865 -g1,274:19680300,27605865 -g1,274:20898614,27605865 -k1,275:32583029,27605865:8956151 -g1,275:32583029,27605865 -) -(1,277:6630773,28447353:25952256,513147,134348 -h1,276:6630773,28447353:983040,0,0 -k1,276:10827282,28447353:250586 -k1,276:11433727,28447353:250585 -k1,276:13930232,28447353:250586 -k1,276:16599752,28447353:250586 -k1,276:17509630,28447353:250586 -k1,276:21023253,28447353:250585 -k1,276:22767405,28447353:250586 -k1,276:25344519,28447353:250586 -k1,276:26989056,28447353:250586 -k1,276:27828154,28447353:250585 -k1,276:29946516,28447353:250586 -k1,276:32583029,28447353:0 -) -(1,277:6630773,29288841:25952256,513147,126483 -k1,276:9074247,29288841:244086 -k1,276:11293067,29288841:244220 -k1,276:12638158,29288841:244086 -k1,276:14392194,29288841:244086 -k1,276:17420249,29288841:244086 -k1,276:18611986,29288841:244086 -k1,276:19211932,29288841:244086 -k1,276:21572175,29288841:244085 -k1,276:24545836,29288841:244086 -k1,276:25248019,29288841:244086 -k1,276:26699278,29288841:244086 -k1,276:28895026,29288841:244086 -k1,276:31391584,29288841:244086 -k1,276:32583029,29288841:0 -) -(1,277:6630773,30130329:25952256,505283,134348 -k1,276:7859677,30130329:162633 -k1,276:11316805,30130329:162633 -k1,276:12240966,30130329:162633 -k1,276:13174301,30130329:162632 -k1,276:14597847,30130329:162633 -k1,276:17119121,30130329:162633 -k1,276:18070152,30130329:162633 -k1,276:19325270,30130329:162633 -k1,276:21439565,30130329:162633 -k1,276:24141718,30130329:162633 -k1,276:24791902,30130329:162596 -k1,276:26604732,30130329:162633 -k1,276:29321958,30130329:162633 -k1,276:32583029,30130329:0 -) -(1,277:6630773,30971817:25952256,505283,134348 -k1,276:9052274,30971817:175582 -k1,276:11095632,30971817:175582 -k1,276:13110152,30971817:175581 -k1,276:14471936,30971817:175582 -k1,276:16448447,30971817:175582 -k1,276:19304452,30971817:175582 -k1,276:20873985,30971817:175582 -k1,276:21837965,30971817:175582 -k1,276:25519722,30971817:175581 -k1,276:26962770,30971817:175582 -k1,276:29562529,30971817:175582 -k1,276:30839116,30971817:175582 -k1,276:32583029,30971817:0 -) -(1,277:6630773,31813305:25952256,513147,126483 -k1,276:7913079,31813305:263221 -k1,276:9268784,31813305:263220 -k1,276:10191297,31813305:263221 -k1,276:11657759,31813305:263221 -k1,276:13307065,31813305:263220 -k1,276:14229578,31813305:263221 -k1,276:16819327,31813305:263221 -k1,276:18436521,31813305:263220 -k1,276:20268019,31813305:263221 -k1,276:21727926,31813305:263220 -k1,276:23592847,31813305:263221 -k1,276:25844430,31813305:263221 -k1,276:30239695,31813305:263220 -k1,276:31034413,31813305:263221 -k1,276:32583029,31813305:0 -) -(1,277:6630773,32654793:25952256,513147,126483 -k1,276:7958480,32654793:226702 -k1,276:9695132,32654793:226702 -k1,276:11789610,32654793:226702 -k1,276:12431128,32654793:226675 -k1,276:15813389,32654793:226702 -k1,276:19080962,32654793:226702 -k1,276:21317653,32654793:226702 -k1,276:24142202,32654793:226702 -k1,276:25749748,32654793:226702 -k1,276:27259645,32654793:226702 -k1,276:29935427,32654793:226702 -k1,276:31266411,32654793:226702 -k1,277:32583029,32654793:0 -) -(1,277:6630773,33496281:25952256,513147,134348 -k1,276:8317578,33496281:170302 -k1,276:9506965,33496281:170302 -k1,276:12398322,33496281:170302 -k1,276:14564851,33496281:170302 -k1,276:15394445,33496281:170302 -k1,276:18087883,33496281:170302 -k1,276:19277270,33496281:170302 -k1,276:21278648,33496281:170302 -k1,276:22135112,33496281:170302 -k1,276:23076117,33496281:170302 -k1,276:25114821,33496281:170273 -k1,276:26441833,33496281:170302 -k1,276:29897455,33496281:170302 -k1,276:31086842,33496281:170302 -k1,276:32583029,33496281:0 -) -(1,277:6630773,34337769:25952256,513147,126483 -k1,276:8305654,34337769:161655 -k1,276:12461074,34337769:161656 -k1,276:14016680,34337769:161655 -k1,276:15197421,34337769:161656 -k1,276:17532250,34337769:161655 -k1,276:19703894,34337769:161655 -k1,276:20884635,34337769:161656 -k1,276:23781763,34337769:161655 -k1,276:24926459,34337769:161656 -k1,276:25774276,34337769:161655 -k1,276:26551970,34337769:161656 -k1,276:28747207,34337769:161655 -k1,276:32583029,34337769:0 -) -(1,277:6630773,35179257:25952256,513147,134348 -k1,276:9774043,35179257:208568 -k1,276:11185852,35179257:208568 -k1,276:13313315,35179257:208569 -k1,276:16506393,35179257:208568 -k1,276:18161341,35179257:208568 -k1,276:19836605,35179257:208568 -k1,276:22494253,35179257:208568 -k1,276:23721906,35179257:208568 -k1,276:25852646,35179257:208569 -k1,276:28170163,35179257:208568 -k1,276:30209807,35179257:208568 -k1,276:31931601,35179257:208568 -k1,276:32583029,35179257:0 -) -(1,277:6630773,36020745:25952256,513147,134348 -k1,276:9507763,36020745:144794 -k1,276:10671643,36020745:144795 -k1,276:12812664,36020745:144794 -k1,276:13488955,36020745:144794 -k1,276:16958391,36020745:144795 -k1,276:17719223,36020745:144794 -k1,276:18883102,36020745:144794 -k1,276:20896274,36020745:144741 -k1,276:22024108,36020745:144794 -k1,276:22828194,36020745:144794 -k1,276:23992074,36020745:144795 -k1,276:26133095,36020745:144794 -k1,276:27469334,36020745:144794 -k1,276:28718411,36020745:144795 -k1,276:29610971,36020745:144794 -k1,276:32583029,36020745:0 -) -(1,277:6630773,36862233:25952256,505283,134348 -k1,276:8061752,36862233:239534 -k1,276:9419330,36862233:239534 -k1,276:11012838,36862233:239534 -k1,276:13053301,36862233:239534 -k1,276:14484280,36862233:239534 -k1,276:18948920,36862233:239534 -k1,276:21724041,36862233:239533 -k1,276:23344419,36862233:239534 -k1,276:25652269,36862233:239534 -k1,276:27176309,36862233:239534 -k1,276:29704360,36862233:239534 -k1,276:31274275,36862233:239534 -k1,276:32583029,36862233:0 -) -(1,277:6630773,37703721:25952256,513147,134348 -k1,276:8908664,37703721:246930 -k1,276:9807022,37703721:246930 -k1,276:11073038,37703721:246931 -k1,276:13478724,37703721:246930 -k1,276:14384946,37703721:246930 -k1,276:15650961,37703721:246930 -k1,276:18452485,37703721:246931 -k1,276:19315453,37703721:246930 -k1,276:21782743,37703721:246930 -k1,276:24750728,37703721:246930 -k1,276:26565279,37703721:246930 -k1,276:28098026,37703721:246931 -k1,276:29653710,37703721:246930 -k1,276:31931601,37703721:246930 -k1,276:32583029,37703721:0 -) -(1,277:6630773,38545209:25952256,513147,134348 -g1,276:7849087,38545209 -g1,276:9544503,38545209 -g1,276:11256958,38545209 -g1,276:12107615,38545209 -g1,276:15039040,38545209 -g1,276:16257354,38545209 -g1,276:18626480,38545209 -g1,276:19441747,38545209 -g1,276:22717236,38545209 -g1,276:26290258,38545209 -k1,277:32583029,38545209:3938718 -g1,277:32583029,38545209 -) -(1,279:6630773,39386697:25952256,513147,134348 -h1,278:6630773,39386697:983040,0,0 -k1,278:10366025,39386697:223833 -k1,278:11249149,39386697:223832 -k1,278:13169709,39386697:223833 -k1,278:15381903,39386697:223832 -k1,278:20241753,39386697:223833 -k1,278:20880403,39386697:223807 -k1,278:21635733,39386697:223833 -k1,278:22630268,39386697:223832 -k1,278:24384367,39386697:223833 -k1,278:27450495,39386697:223832 -k1,278:28325756,39386697:223833 -k1,278:29642074,39386697:223833 -k1,278:31563944,39386697:223832 -k1,278:32583029,39386697:0 -) -(1,279:6630773,40228185:25952256,513147,134348 -k1,278:8192496,40228185:231997 -k1,278:9083786,40228185:231998 -k1,278:14051415,40228185:231997 -k1,278:14814909,40228185:231997 -k1,278:18429875,40228185:231998 -k1,278:20858639,40228185:231997 -k1,278:23078998,40228185:231997 -k1,278:24993961,40228185:231998 -k1,278:26245043,40228185:231997 -k1,278:29153530,40228185:231997 -k1,278:30044820,40228185:231998 -k1,278:31295902,40228185:231997 -k1,278:32583029,40228185:0 -) -(1,279:6630773,41069673:25952256,513147,126483 -k1,278:7513739,41069673:223674 -k1,278:12473045,41069673:223674 -k1,278:13312758,41069673:223675 -k1,278:16385937,41069673:223674 -k1,278:19315593,41069673:223674 -k1,278:20640272,41069673:223674 -k1,278:22373896,41069673:223674 -k1,278:25023714,41069673:223675 -k1,278:28376732,41069673:223674 -k1,278:29791851,41069673:223674 -k1,278:32583029,41069673:0 -) -(1,279:6630773,41911161:25952256,513147,134348 -k1,278:9815099,41911161:182121 -k1,278:11971922,41911161:182223 -k1,278:13425441,41911161:182121 -k1,278:14266855,41911161:182122 -k1,278:15468061,41911161:182121 -k1,278:18656974,41911161:182121 -k1,278:20561381,41911161:182121 -k1,278:22441540,41911161:182121 -k1,278:26128526,41911161:182121 -k1,278:26962075,41911161:182121 -k1,278:30400025,41911161:182121 -k1,279:32583029,41911161:0 -) -(1,279:6630773,42752649:25952256,505283,134348 -k1,278:9010988,42752649:180171 -k1,278:10961285,42752649:180170 -k1,278:11672953,42752649:180171 -k1,278:15751861,42752649:180171 -k1,278:16951117,42752649:180171 -k1,278:18520650,42752649:180170 -k1,278:21429085,42752649:180171 -k1,278:22024080,42752649:180152 -k1,278:24884674,42752649:180171 -k1,278:26458796,42752649:180171 -k1,278:28335693,42752649:180170 -k1,278:31001645,42752649:180171 -k1,278:32583029,42752649:0 -) -(1,279:6630773,43594137:25952256,513147,134348 -g1,278:7934284,43594137 -g1,278:9521566,43594137 -g1,278:10336833,43594137 -g1,278:13255806,43594137 -g1,278:14658276,43594137 -g1,278:16966454,43594137 -g1,278:17824975,43594137 -g1,278:19311331,43594137 -g1,278:20169852,43594137 -k1,279:32583029,43594137:7503875 -g1,279:32583029,43594137 -) -(1,281:6630773,44435625:25952256,513147,126483 -h1,280:6630773,44435625:983040,0,0 -k1,280:9232443,44435625:197809 -k1,280:12286966,44435625:197809 -k1,280:13476336,44435625:197810 -k1,280:15370872,44435625:197809 -k1,280:17150065,44435625:197809 -k1,280:18539319,44435625:197809 -k1,280:20067510,44435625:197810 -k1,280:22893313,44435625:197809 -k1,280:24648913,44435625:197809 -k1,280:25838283,44435625:197810 -k1,280:28892806,44435625:197809 -k1,280:30282060,44435625:197809 -k1,280:32583029,44435625:0 -) -(1,281:6630773,45277113:25952256,505283,134348 -k1,280:9129099,45277113:137719 -k1,280:9918246,45277113:137719 -k1,280:11670772,45277113:137719 -k1,280:13691340,45277113:137719 -k1,280:15915070,45277113:137719 -k1,280:17546355,45277113:137719 -k1,280:18370236,45277113:137719 -k1,280:19711197,45277113:137720 -k1,280:21202890,45277113:137719 -k1,280:22922648,45277113:137719 -k1,280:24230840,45277113:137719 -k1,280:25360119,45277113:137719 -k1,280:26828219,45277113:137719 -k1,280:29542158,45277113:137719 -k1,280:32583029,45277113:0 -) -] -(1,281:32583029,45706769:0,0,0 -g1,281:32583029,45706769 -) -) -] -(1,281:6630773,47279633:25952256,0,0 -h1,281:6630773,47279633:25952256,0,0 -) -] -(1,281:4262630,4025873:0,0,0 -[1,281:-473656,4025873:0,0,0 -(1,281:-473656,-710413:0,0,0 -(1,281:-473656,-710413:0,0,0 -g1,281:-473656,-710413 -) -g1,281:-473656,-710413 -) -] -) -] -!23677 -}23 -!11 -{24 -[1,291:4262630,47279633:28320399,43253760,0 -(1,291:4262630,4025873:0,0,0 -[1,291:-473656,4025873:0,0,0 -(1,291:-473656,-710413:0,0,0 -(1,291:-473656,-644877:0,0,0 -k1,291:-473656,-644877:-65536 -) -(1,291:-473656,4736287:0,0,0 -k1,291:-473656,4736287:5209943 -) -g1,291:-473656,-710413 -) -] -) -[1,291:6630773,47279633:25952256,43253760,0 -[1,291:6630773,4812305:25952256,786432,0 -(1,291:6630773,4812305:25952256,513147,134348 -(1,291:6630773,4812305:25952256,513147,134348 -g1,291:3078558,4812305 -[1,291:3078558,4812305:0,0,0 -(1,291:3078558,2439708:0,1703936,0 -k1,291:1358238,2439708:-1720320 -(1,135:1358238,2439708:1720320,1703936,0 -(1,135:1358238,2439708:1179648,16384,0 -r1,291:2537886,2439708:1179648,16384,0 -) -g1,135:3062174,2439708 -(1,135:3062174,2439708:16384,1703936,0 -[1,135:3062174,2439708:25952256,1703936,0 -(1,135:3062174,1915420:25952256,1179648,0 -(1,135:3062174,1915420:16384,1179648,0 -r1,291:3078558,1915420:16384,1179648,0 -) -k1,135:29014430,1915420:25935872 -g1,135:29014430,1915420 -) -] -) -) -) -] -[1,291:3078558,4812305:0,0,0 -(1,291:3078558,2439708:0,1703936,0 -g1,291:29030814,2439708 -g1,291:36135244,2439708 -(1,135:36135244,2439708:1720320,1703936,0 -(1,135:36135244,2439708:16384,1703936,0 -[1,135:36135244,2439708:25952256,1703936,0 -(1,135:36135244,1915420:25952256,1179648,0 -(1,135:36135244,1915420:16384,1179648,0 -r1,291:36151628,1915420:16384,1179648,0 -) -k1,135:62087500,1915420:25935872 -g1,135:62087500,1915420 -) -] -) -g1,135:36675916,2439708 -(1,135:36675916,2439708:1179648,16384,0 -r1,291:37855564,2439708:1179648,16384,0 -) -) -k1,291:3078556,2439708:-34777008 -) -] -[1,291:3078558,4812305:0,0,0 -(1,291:3078558,49800853:0,16384,2228224 -k1,291:1358238,49800853:-1720320 -(1,135:1358238,49800853:1720320,16384,2228224 -(1,135:1358238,49800853:1179648,16384,0 -r1,291:2537886,49800853:1179648,16384,0 -) -g1,135:3062174,49800853 -(1,135:3062174,52029077:16384,1703936,0 -[1,135:3062174,52029077:25952256,1703936,0 -(1,135:3062174,51504789:25952256,1179648,0 -(1,135:3062174,51504789:16384,1179648,0 -r1,291:3078558,51504789:16384,1179648,0 -) -k1,135:29014430,51504789:25935872 -g1,135:29014430,51504789 -) -] -) -) -) -] -[1,291:3078558,4812305:0,0,0 -(1,291:3078558,49800853:0,16384,2228224 -g1,291:29030814,49800853 -g1,291:36135244,49800853 -(1,135:36135244,49800853:1720320,16384,2228224 -(1,135:36135244,52029077:16384,1703936,0 -[1,135:36135244,52029077:25952256,1703936,0 -(1,135:36135244,51504789:25952256,1179648,0 -(1,135:36135244,51504789:16384,1179648,0 -r1,291:36151628,51504789:16384,1179648,0 -) -k1,135:62087500,51504789:25935872 -g1,135:62087500,51504789 -) -] -) -g1,135:36675916,49800853 -(1,135:36675916,49800853:1179648,16384,0 -r1,291:37855564,49800853:1179648,16384,0 -) -) -k1,291:3078556,49800853:-34777008 -) -] -g1,291:6630773,4812305 -g1,291:6630773,4812305 -g1,291:9189953,4812305 -g1,291:12564401,4812305 -g1,291:16510323,4812305 -k1,291:31786111,4812305:15275788 -) -) -] -[1,291:6630773,45706769:25952256,40108032,0 -(1,291:6630773,45706769:25952256,40108032,0 -(1,291:6630773,45706769:0,0,0 -g1,291:6630773,45706769 -) -[1,291:6630773,45706769:25952256,40108032,0 -(1,281:6630773,6254097:25952256,513147,173670 -k1,280:8206691,6254097:181967 -k1,280:8977171,6254097:181967 -k1,280:10998077,6254097:181967 -k1,280:12371489,6254097:181967 -[1,280:12500595,6254097:341312,473825,0 -(1,280:12500595,6116078:341312,335806,0 -) -] -(1,280:13068861,6427767:370934,473825,0 -) -k1,280:14144084,6254097:181967 -k1,280:15223894,6254097:181967 -k1,280:17234315,6254097:181967 -k1,280:18032320,6254097:181967 -k1,280:19233372,6254097:181967 -k1,280:20997378,6254097:181967 -k1,280:22170905,6254097:181967 -k1,280:25505809,6254097:181967 -k1,280:28275793,6254097:181967 -k1,280:29223876,6254097:181967 -k1,280:31591469,6254097:181967 -k1,280:32583029,6254097:0 -) -(1,281:6630773,7095585:25952256,513147,134348 -k1,280:10010576,7095585:226866 -k1,280:10998970,7095585:226866 -k1,280:11640651,7095585:226838 -k1,280:13058962,7095585:226866 -k1,280:16044238,7095585:226866 -k1,280:20761631,7095585:226866 -k1,280:23059435,7095585:226866 -k1,280:24233952,7095585:226866 -k1,280:25479903,7095585:226866 -k1,280:27892395,7095585:226866 -k1,280:28735299,7095585:226866 -k1,280:30165406,7095585:226866 -k1,280:32583029,7095585:0 -) -(1,281:6630773,7937073:25952256,513147,134348 -k1,280:8107855,7937073:192576 -k1,280:9775645,7937073:192575 -k1,280:11478171,7937073:192576 -k1,280:14603482,7937073:192575 -k1,280:17634422,7937073:192576 -k1,280:19394618,7937073:192575 -k1,280:20606279,7937073:192576 -k1,280:23875114,7937073:192575 -k1,280:26303123,7937073:192576 -k1,280:27877852,7937073:192575 -k1,280:29046259,7937073:192576 -k1,280:29451819,7937073:192568 -k1,280:31379788,7937073:192576 -k1,280:32583029,7937073:0 -) -(1,281:6630773,8778561:25952256,513147,126483 -k1,280:10139284,8778561:196977 -k1,280:11772154,8778561:196976 -k1,280:14498821,8778561:196977 -k1,280:14908787,8778561:196974 -k1,280:16654380,8778561:196977 -k1,280:17502784,8778561:196976 -k1,280:19415494,8778561:196977 -k1,280:20993314,8778561:196976 -k1,280:22474797,8778561:196977 -k1,280:24373089,8778561:196977 -k1,280:25428587,8778561:196976 -k1,280:26284856,8778561:196977 -k1,280:27978019,8778561:196976 -k1,280:28861158,8778561:196977 -k1,280:30228607,8778561:196976 -k1,280:31558046,8778561:196977 -k1,280:32583029,8778561:0 -) -(1,281:6630773,9620049:25952256,505283,126483 -k1,280:9369944,9620049:215380 -k1,280:11033671,9620049:215381 -k1,280:13709273,9620049:215380 -k1,280:15705266,9620049:215380 -k1,280:16548482,9620049:215381 -k1,280:19603537,9620049:215380 -k1,280:20031893,9620049:215364 -k1,280:21795889,9620049:215380 -k1,280:22662698,9620049:215381 -k1,280:24593811,9620049:215380 -k1,280:26190035,9620049:215380 -k1,280:27689921,9620049:215380 -k1,280:28924387,9620049:215381 -k1,280:31298523,9620049:215380 -k1,280:32583029,9620049:0 -) -(1,281:6630773,10461537:25952256,513147,134348 -k1,280:7962346,10461537:161100 -k1,280:9255909,10461537:161101 -k1,280:10441992,10461537:161100 -k1,280:12471524,10461537:161101 -k1,280:14333939,10461537:161100 -k1,280:15663547,10461537:161101 -k1,280:16507532,10461537:161100 -k1,280:18639300,10461537:161100 -k1,280:19467557,10461537:161101 -k1,280:20043462,10461537:161062 -k1,280:23046859,10461537:161101 -k1,280:24704146,10461537:161100 -k1,280:25396744,10461537:161101 -k1,280:27782791,10461537:161100 -k1,280:29492507,10461537:161100 -k1,280:30068413,10461537:161063 -k1,280:32583029,10461537:0 -) -(1,281:6630773,11303025:25952256,513147,134348 -k1,280:11012766,11303025:188344 -k1,280:11659208,11303025:188345 -k1,280:13568527,11303025:188344 -k1,280:14112731,11303025:188344 -k1,280:15157631,11303025:188344 -k1,280:16005268,11303025:188345 -k1,280:17790069,11303025:188344 -k1,280:18926064,11303025:188344 -k1,280:20081719,11303025:188344 -k1,280:20956226,11303025:188345 -k1,280:23443573,11303025:188344 -k1,280:24318079,11303025:188344 -k1,280:24719405,11303025:188334 -k1,280:26012031,11303025:188344 -k1,280:27429175,11303025:188344 -k1,280:29833947,11303025:188344 -k1,280:30437124,11303025:188334 -k1,280:31816913,11303025:188344 -k1,280:32583029,11303025:0 -) -(1,281:6630773,12144513:25952256,505283,134348 -k1,280:7871588,12144513:221730 -k1,280:11003772,12144513:221730 -k1,280:12738728,12144513:221730 -k1,280:13611886,12144513:221730 -k1,280:15342255,12144513:221730 -k1,280:17316418,12144513:221730 -k1,280:20045555,12144513:221730 -k1,280:21458731,12144513:221731 -k1,280:23322793,12144513:221730 -k1,280:24563608,12144513:221730 -k1,280:26367377,12144513:221730 -k1,280:28464747,12144513:221730 -k1,280:29337905,12144513:221730 -k1,280:31067618,12144513:221730 -k1,280:31747445,12144513:221730 -k1,280:32583029,12144513:0 -) -(1,281:6630773,12986001:25952256,513147,7863 -g1,280:7481430,12986001 -g1,280:9061503,12986001 -g1,280:10452177,12986001 -g1,280:11899212,12986001 -g1,280:12757733,12986001 -k1,281:32583028,12986001:17714380 -g1,281:32583028,12986001 -) -(1,284:6630773,13827489:25952256,513147,134348 -h1,282:6630773,13827489:983040,0,0 -k1,282:10762210,13827489:185514 -k1,282:11966808,13827489:185513 -k1,282:13244807,13827489:185514 -k1,282:14089613,13827489:185514 -k1,282:15971853,13827489:185513 -k1,282:17738751,13827489:185514 -k1,282:18455761,13827489:185513 -k1,282:22024243,13827489:185514 -k1,282:23589945,13827489:185514 -k1,282:24767018,13827489:185513 -k1,282:27318382,13827489:185514 -k1,282:28522981,13827489:185514 -k1,282:30534982,13827489:185513 -k1,282:31379788,13827489:185514 -k1,282:32583029,13827489:0 -) -(1,284:6630773,14668977:25952256,505283,102891 -k1,282:8401598,14668977:188786 -k1,282:9781829,14668977:188786 -k1,282:11249222,14668977:188786 -k1,282:14528031,14668977:188786 -k1,282:15332855,14668977:188786 -k1,282:17223610,14668977:188785 -k1,282:19324737,14668977:188786 -k1,282:22515728,14668977:188786 -k1,282:24472062,14668977:188828 -k1,282:25639956,14668977:188786 -k1,282:27803404,14668977:188848 -k1,282:29215747,14668977:188786 -k1,282:31102571,14668977:188786 -k1,284:32583029,14668977:0 -) -(1,284:6630773,15510465:25952256,513147,134348 -k1,282:7815843,15510465:194821 -k1,282:9680520,15510465:194820 -k1,282:11610734,15510465:194821 -k1,282:12161415,15510465:194821 -k1,282:15636967,15510465:194820 -k1,282:17332562,15510465:194821 -k1,282:18475033,15510465:194820 -k1,282:22097387,15510465:194821 -k1,282:23483653,15510465:194821 -k1,282:27531335,15510465:194820 -k1,282:30502261,15510465:194821 -k1,284:32583029,15510465:0 -) -(1,284:6630773,16351953:25952256,505283,134348 -k1,282:7867175,16351953:246153 -k1,282:10624668,16351953:246153 -k1,282:13112808,16351953:246153 -k1,282:14550406,16351953:246153 -k1,282:16984151,16351953:246153 -k1,282:19432314,16351953:246153 -k1,282:23741044,16351953:246153 -k1,282:24603235,16351953:246153 -k1,282:28166820,16351953:246153 -k1,282:30111011,16351953:246153 -k1,282:32583029,16351953:0 -) -(1,284:6630773,17193441:25952256,513147,126483 -k1,282:8590677,17193441:241550 -k1,282:10186201,17193441:241550 -k1,282:12210985,17193441:241549 -k1,282:13846486,17193441:241550 -k1,282:17482146,17193441:241550 -k1,282:18671347,17193441:241550 -k1,282:21637229,17193441:241550 -k1,282:22091728,17193441:241507 -k1,282:23808493,17193441:241550 -k1,282:25564580,17193441:241550 -k1,282:26457558,17193441:241550 -k1,282:27446873,17193441:241549 -k1,282:28374585,17193441:241550 -k1,282:31896867,17193441:241550 -k1,282:32583029,17193441:0 -) -(1,284:6630773,18034929:25952256,505283,134348 -k1,282:9483392,18034929:222659 -k1,282:13330846,18034929:222658 -k1,282:14572590,18034929:222659 -k1,282:16678097,18034929:222658 -k1,282:18482795,18034929:222659 -k1,282:19321491,18034929:222658 -k1,282:20747391,18034929:222659 -k1,282:23468281,18034929:222658 -k1,282:25084891,18034929:222659 -k1,282:26683150,18034929:222658 -k1,282:28622197,18034929:222659 -k1,282:31601955,18034929:222658 -k1,284:32583029,18034929:0 -) -(1,284:6630773,18876417:25952256,513147,126483 -g1,282:9341997,18876417 -g1,282:11108847,18876417 -g1,282:12327161,18876417 -g1,282:14247365,18876417 -g1,282:16121039,18876417 -k1,284:32583029,18876417:16461990 -g1,284:32583029,18876417 -) -(1,285:6630773,21683985:25952256,32768,229376 -(1,285:6630773,21683985:0,32768,229376 -(1,285:6630773,21683985:5505024,32768,229376 -r1,291:12135797,21683985:5505024,262144,229376 -) -k1,285:6630773,21683985:-5505024 -) -(1,285:6630773,21683985:25952256,32768,0 -r1,291:32583029,21683985:25952256,32768,0 -) -) -(1,285:6630773,23288313:25952256,615776,161218 -(1,285:6630773,23288313:1974731,573309,14155 -g1,285:6630773,23288313 -g1,285:8605504,23288313 -) -g1,285:11833808,23288313 -g1,285:16051443,23288313 -k1,285:32583029,23288313:11827150 -g1,285:32583029,23288313 -) -(1,288:6630773,24523017:25952256,513147,134348 -k1,287:8628512,24523017:214504 -k1,287:11903547,24523017:214504 -k1,287:13065703,24523017:214505 -k1,287:16041894,24523017:214504 -k1,287:18325370,24523017:214504 -k1,287:19487525,24523017:214504 -k1,287:21717917,24523017:214505 -k1,287:22615306,24523017:214504 -k1,287:25232360,24523017:214504 -k1,287:27532875,24523017:214504 -k1,287:28917853,24523017:214505 -k1,287:30264819,24523017:214504 -k1,287:31227089,24523017:214504 -k1,288:32583029,24523017:0 -) -(1,288:6630773,25364505:25952256,513147,134348 -k1,287:9263909,25364505:245659 -k1,287:10903519,25364505:245659 -k1,287:13911521,25364505:245659 -k1,287:15725457,25364505:245659 -k1,287:16630408,25364505:245659 -k1,287:20850826,25364505:245659 -k1,287:22115569,25364505:245658 -k1,287:24014701,25364505:245659 -k1,287:26099956,25364505:245659 -k1,287:27243458,25364505:245659 -k1,287:28555388,25364505:245659 -k1,287:30482701,25364505:245659 -k1,287:31931601,25364505:245659 -k1,287:32583029,25364505:0 -) -(1,288:6630773,26205993:25952256,505283,126483 -k1,287:10280285,26205993:153822 -k1,287:11778251,26205993:153823 -k1,287:12548111,26205993:153822 -k1,287:14303633,26205993:153822 -k1,287:16154837,26205993:153822 -k1,287:16766757,26205993:153823 -k1,287:18053041,26205993:153822 -k1,287:19273134,26205993:153822 -k1,287:21552290,26205993:153823 -k1,287:22392274,26205993:153822 -k1,287:24297873,26205993:153822 -k1,287:28845884,26205993:153822 -k1,287:30103989,26205993:153823 -k1,287:31005577,26205993:153822 -k1,287:32583029,26205993:0 -) -(1,288:6630773,27047481:25952256,513147,134348 -k1,287:7464250,27047481:217439 -k1,287:8270202,27047481:217439 -k1,287:9173803,27047481:217439 -k1,287:10007280,27047481:217439 -k1,287:11356526,27047481:217439 -k1,287:14589932,27047481:217439 -k1,287:15423409,27047481:217439 -k1,287:17872349,27047481:217439 -k1,287:20852131,27047481:217439 -k1,287:22811517,27047481:217439 -k1,287:24227610,27047481:217439 -k1,287:27459050,27047481:217439 -k1,287:28695574,27047481:217439 -k1,287:30566486,27047481:217439 -k1,287:32583029,27047481:0 -) -(1,288:6630773,27888969:25952256,513147,126483 -k1,287:8012423,27888969:184963 -k1,287:10959728,27888969:184962 -k1,287:14806843,27888969:184963 -k1,287:16328739,27888969:184962 -k1,287:18256960,27888969:184963 -k1,287:20600024,27888969:184963 -k1,287:21401024,27888969:184962 -k1,287:22758426,27888969:184963 -k1,287:25492084,27888969:184963 -k1,287:26282599,27888969:184962 -k1,287:27797943,27888969:184963 -k1,287:30703960,27888969:184962 -k1,287:31540351,27888969:184963 -k1,288:32583029,27888969:0 -) -(1,288:6630773,28730457:25952256,513147,134348 -k1,287:8504884,28730457:153136 -k1,287:9649579,28730457:153135 -k1,287:10821800,28730457:153136 -k1,287:14812724,28730457:153136 -k1,287:16660621,28730457:153136 -k1,287:17465184,28730457:153135 -k1,287:18637405,28730457:153136 -k1,287:21866801,28730457:153136 -k1,287:22706099,28730457:153136 -k1,287:24181095,28730457:153135 -k1,287:24993523,28730457:153136 -k1,287:25502519,28730457:153136 -k1,287:27486731,28730457:153136 -k1,287:28322751,28730457:153135 -k1,287:31391584,28730457:153136 -k1,287:32583029,28730457:0 -) -(1,288:6630773,29571945:25952256,513147,126483 -k1,287:7436765,29571945:200439 -k1,287:8967586,29571945:200440 -k1,287:10375854,29571945:200439 -k1,287:11595378,29571945:200439 -k1,287:13292005,29571945:200440 -k1,287:15114460,29571945:200439 -k1,287:17414017,29571945:200439 -k1,287:21678343,29571945:200439 -k1,287:23304191,29571945:200440 -k1,287:24036127,29571945:200439 -k1,287:25007269,29571945:200439 -k1,287:28417007,29571945:200440 -k1,287:31966991,29571945:200439 -k1,287:32583029,29571945:0 -) -(1,288:6630773,30413433:25952256,505283,134348 -k1,287:8278675,30413433:189071 -k1,287:10237874,30413433:189072 -k1,287:11655745,30413433:189071 -k1,287:15588888,30413433:189071 -k1,287:16587329,30413433:189071 -k1,287:19034116,30413433:189072 -k1,287:20719374,30413433:189071 -k1,287:22192951,30413433:189071 -k1,287:22913520,30413433:189072 -k1,287:24497197,30413433:189071 -k1,287:25337696,30413433:189071 -k1,287:29191540,30413433:189071 -k1,287:30032040,30413433:189072 -k1,287:31391584,30413433:189071 -k1,287:32583029,30413433:0 -) -(1,288:6630773,31254921:25952256,513147,126483 -k1,287:7504822,31254921:222621 -k1,287:9933384,31254921:222620 -k1,287:11347450,31254921:222621 -k1,287:15795176,31254921:222620 -k1,287:17412403,31254921:222621 -k1,287:18286451,31254921:222620 -k1,287:20330973,31254921:222621 -k1,287:21745038,31254921:222620 -k1,287:23869514,31254921:222621 -k1,287:24866114,31254921:222620 -k1,287:27371354,31254921:222621 -k1,287:28409242,31254921:222620 -k1,287:30761128,31254921:222621 -k1,287:32583029,31254921:0 -) -(1,288:6630773,32096409:25952256,513147,134348 -k1,287:7981634,32096409:219054 -k1,287:9696875,32096409:219054 -k1,287:11086402,32096409:219054 -k1,287:12920262,32096409:219053 -k1,287:14086967,32096409:219054 -k1,287:17314124,32096409:219054 -k1,287:20812600,32096409:219054 -k1,287:22767047,32096409:219054 -k1,287:24908272,32096409:219054 -k1,287:28308443,32096409:219053 -k1,287:29718942,32096409:219054 -k1,287:31635378,32096409:219054 -k1,287:32583029,32096409:0 -) -(1,288:6630773,32937897:25952256,505283,134348 -k1,287:8003949,32937897:241369 -k1,287:10931639,32937897:241369 -k1,287:14644450,32937897:241369 -k1,287:15568704,32937897:241369 -k1,287:17276769,32937897:241369 -k1,287:20443664,32937897:241368 -k1,287:22809710,32937897:241369 -k1,287:25386127,32937897:241369 -k1,287:27986792,32937897:241369 -k1,287:29419606,32937897:241369 -k1,287:32583029,32937897:0 -) -(1,288:6630773,33779385:25952256,505283,134348 -k1,287:7799129,33779385:176796 -k1,287:11114444,33779385:176796 -k1,287:14500538,33779385:176796 -k1,287:16362920,33779385:176796 -k1,287:17155754,33779385:176796 -k1,287:18721913,33779385:176796 -k1,287:21626972,33779385:176795 -k1,287:22528596,33779385:176796 -k1,287:23683845,33779385:176796 -k1,287:25128107,33779385:176796 -k1,287:26508144,33779385:176796 -k1,287:28314165,33779385:176796 -k1,287:30180479,33779385:176796 -k1,287:32583029,33779385:0 -) -(1,288:6630773,34620873:25952256,513147,134348 -k1,287:8055352,34620873:221338 -k1,287:10032401,34620873:221339 -k1,287:12613035,34620873:221338 -k1,287:14164754,34620873:221338 -k1,287:16087407,34620873:221338 -k1,287:19004242,34620873:221339 -k1,287:21326009,34620873:221338 -k1,287:22233509,34620873:221338 -k1,287:22667817,34620873:221316 -k1,287:24021618,34620873:221339 -k1,287:27241228,34620873:221338 -k1,287:28633039,34620873:221338 -k1,287:29505805,34620873:221338 -k1,287:30542412,34620873:221339 -k1,287:31379788,34620873:221338 -k1,287:32583029,34620873:0 -) -(1,288:6630773,35462361:25952256,513147,134348 -g1,287:8585712,35462361 -g1,287:9316438,35462361 -g1,287:10128429,35462361 -g1,287:11346743,35462361 -g1,287:12909776,35462361 -g1,287:13768297,35462361 -g1,287:15099333,35462361 -g1,287:17383918,35462361 -g1,287:18972510,35462361 -g1,287:21726332,35462361 -g1,287:22608446,35462361 -g1,287:26238485,35462361 -k1,288:32583029,35462361:1818628 -g1,288:32583029,35462361 -) -v1,290:6630773,36828137:0,393216,0 -(1,291:6630773,44161259:25952256,7726338,589824 -g1,291:6630773,44161259 -(1,291:6630773,44161259:25952256,7726338,589824 -(1,291:6630773,44751083:25952256,8316162,0 -[1,291:6630773,44751083:25952256,8316162,0 -(1,291:6630773,44751083:25952256,8289948,0 -r1,291:6656987,44751083:26214,8289948,0 -[1,291:6656987,44751083:25899828,8289948,0 -(1,291:6656987,44161259:25899828,7110300,0 -[1,291:7246811,44161259:24720180,7110300,0 -(1,291:7246811,38136495:24720180,1085536,298548 -(1,290:7246811,38136495:0,1085536,298548 -r1,291:8753226,38136495:1506415,1384084,298548 -k1,290:7246811,38136495:-1506415 -) -(1,290:7246811,38136495:1506415,1085536,298548 -) -k1,290:8932766,38136495:179540 -k1,290:10742842,38136495:179540 -k1,290:13958010,38136495:179540 -k1,290:15577377,38136495:179541 -k1,290:16408345,38136495:179540 -k1,290:17335651,38136495:179540 -k1,290:19085434,38136495:179540 -k1,290:19881012,38136495:179540 -k1,290:20649065,38136495:179540 -k1,290:22020050,38136495:179540 -k1,290:23536525,38136495:179541 -k1,290:26007859,38136495:179540 -k1,290:27879539,38136495:179540 -k1,290:30073656,38136495:179540 -k1,291:31966991,38136495:0 -) -(1,291:7246811,38977983:24720180,505283,134348 -k1,290:8458572,38977983:221512 -k1,290:10889958,38977983:221512 -k1,290:16944173,38977983:221511 -k1,290:17817113,38977983:221512 -k1,290:21703398,38977983:221512 -k1,290:22943995,38977983:221512 -k1,290:24362193,38977983:221511 -k1,290:26365629,38977983:221512 -k1,290:28786529,38977983:221512 -k1,290:31966991,38977983:0 -) -(1,291:7246811,39819471:24720180,513147,126483 -k1,290:9202607,39819471:172561 -k1,290:10545641,39819471:172561 -k1,290:11709762,39819471:172561 -k1,290:12948595,39819471:172562 -k1,290:14502000,39819471:172561 -k1,290:15845034,39819471:172561 -k1,290:19682368,39819471:172561 -k1,290:21185310,39819471:172561 -k1,290:23050011,39819471:172561 -k1,290:26382064,39819471:172562 -k1,290:28655054,39819471:172561 -k1,290:29285712,39819471:172561 -k1,290:29989770,39819471:172561 -k1,290:31966991,39819471:0 -) -(1,291:7246811,40660959:24720180,513147,126483 -k1,290:8073220,40660959:210371 -k1,290:10035367,40660959:210370 -k1,290:11943120,40660959:210371 -k1,290:12804918,40660959:210370 -k1,290:13921652,40660959:210371 -k1,290:16256699,40660959:210370 -k1,290:19458789,40660959:210371 -k1,290:20616810,40660959:210370 -k1,290:22712652,40660959:210371 -k1,290:24093495,40660959:210370 -k1,290:26026808,40660959:210371 -k1,290:27256263,40660959:210370 -k1,290:29709276,40660959:210371 -k1,290:31966991,40660959:0 -) -(1,291:7246811,41502447:24720180,513147,126483 -k1,290:8643103,41502447:204847 -k1,290:9872933,41502447:204847 -k1,290:10543740,41502447:204846 -k1,290:11919060,41502447:204847 -k1,290:13228189,41502447:204847 -k1,290:16688865,41502447:204847 -k1,290:18532767,41502447:204847 -k1,290:20131564,41502447:204846 -k1,290:20924924,41502447:204847 -k1,290:23658150,41502447:204847 -k1,290:24522289,41502447:204847 -k1,290:26104046,41502447:204846 -k1,290:27512134,41502447:204847 -k1,290:29299020,41502447:204847 -k1,290:31966991,41502447:0 -) -(1,291:7246811,42343935:24720180,505283,134348 -k1,290:9152598,42343935:213647 -k1,290:10862432,42343935:213647 -k1,290:14067799,42343935:213648 -k1,290:15565952,42343935:213647 -k1,290:17910174,42343935:213647 -k1,290:20234736,42343935:213647 -k1,290:23210070,42343935:213647 -k1,290:24075146,42343935:213648 -k1,290:27110773,42343935:213647 -k1,290:28931363,42343935:213647 -k1,290:31966991,42343935:0 -) -(1,291:7246811,43185423:24720180,513147,126483 -k1,290:8036561,43185423:258253 -k1,290:9616675,43185423:258253 -k1,290:10534220,43185423:258253 -k1,290:12341089,43185423:258253 -k1,290:13130838,43185423:258252 -k1,290:15687439,43185423:258253 -k1,290:16597120,43185423:258253 -k1,290:19298555,43185423:258253 -k1,290:19912668,43185423:258253 -k1,290:23258977,43185423:258253 -k1,290:24898074,43185423:258253 -k1,290:25823483,43185423:258253 -k1,290:26670248,43185423:258252 -k1,290:27757531,43185423:258253 -k1,290:29207229,43185423:258253 -k1,290:30924313,43185423:258253 -k1,291:31966991,43185423:0 -) -(1,291:7246811,44026911:24720180,513147,134348 -k1,290:11271985,44026911:199838 -k1,290:12131115,44026911:199838 -k1,290:13661334,44026911:199838 -k1,290:14217032,44026911:199838 -k1,290:15913057,44026911:199838 -k1,290:19299255,44026911:199838 -k1,290:20181979,44026911:199839 -k1,290:23077313,44026911:199838 -k1,290:25377580,44026911:199838 -k1,290:26035515,44026911:199838 -k1,290:26766850,44026911:199838 -k1,290:28550693,44026911:199838 -k1,290:29401959,44026911:199838 -k1,290:30508160,44026911:199838 -k1,290:31966991,44026911:0 -) -] -) -] -r1,291:32583029,44751083:26214,8289948,0 -) -] -) -) -g1,291:32583029,44161259 -) -] -(1,291:32583029,45706769:0,0,0 -g1,291:32583029,45706769 -) -) -] -(1,291:6630773,47279633:25952256,0,0 -h1,291:6630773,47279633:25952256,0,0 -) -] -(1,291:4262630,4025873:0,0,0 -[1,291:-473656,4025873:0,0,0 -(1,291:-473656,-710413:0,0,0 -(1,291:-473656,-710413:0,0,0 -g1,291:-473656,-710413 -) -g1,291:-473656,-710413 -) -] -) -] -!23160 -}24 -Input:200:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:201:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:202:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:203:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:204:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:205:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:206:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!648 -{25 -[1,325:4262630,47279633:28320399,43253760,0 -(1,325:4262630,4025873:0,0,0 -[1,325:-473656,4025873:0,0,0 -(1,325:-473656,-710413:0,0,0 -(1,325:-473656,-644877:0,0,0 -k1,325:-473656,-644877:-65536 -) -(1,325:-473656,4736287:0,0,0 -k1,325:-473656,4736287:5209943 -) -g1,325:-473656,-710413 -) -] -) -[1,325:6630773,47279633:25952256,43253760,0 -[1,325:6630773,4812305:25952256,786432,0 -(1,325:6630773,4812305:25952256,505283,134348 -(1,325:6630773,4812305:25952256,505283,134348 -g1,325:3078558,4812305 -[1,325:3078558,4812305:0,0,0 -(1,325:3078558,2439708:0,1703936,0 -k1,325:1358238,2439708:-1720320 -(1,135:1358238,2439708:1720320,1703936,0 -(1,135:1358238,2439708:1179648,16384,0 -r1,325:2537886,2439708:1179648,16384,0 -) -g1,135:3062174,2439708 -(1,135:3062174,2439708:16384,1703936,0 -[1,135:3062174,2439708:25952256,1703936,0 -(1,135:3062174,1915420:25952256,1179648,0 -(1,135:3062174,1915420:16384,1179648,0 -r1,325:3078558,1915420:16384,1179648,0 -) -k1,135:29014430,1915420:25935872 -g1,135:29014430,1915420 -) -] -) -) -) -] -[1,325:3078558,4812305:0,0,0 -(1,325:3078558,2439708:0,1703936,0 -g1,325:29030814,2439708 -g1,325:36135244,2439708 -(1,135:36135244,2439708:1720320,1703936,0 -(1,135:36135244,2439708:16384,1703936,0 -[1,135:36135244,2439708:25952256,1703936,0 -(1,135:36135244,1915420:25952256,1179648,0 -(1,135:36135244,1915420:16384,1179648,0 -r1,325:36151628,1915420:16384,1179648,0 -) -k1,135:62087500,1915420:25935872 -g1,135:62087500,1915420 -) -] -) -g1,135:36675916,2439708 -(1,135:36675916,2439708:1179648,16384,0 -r1,325:37855564,2439708:1179648,16384,0 -) -) -k1,325:3078556,2439708:-34777008 -) -] -[1,325:3078558,4812305:0,0,0 -(1,325:3078558,49800853:0,16384,2228224 -k1,325:1358238,49800853:-1720320 -(1,135:1358238,49800853:1720320,16384,2228224 -(1,135:1358238,49800853:1179648,16384,0 -r1,325:2537886,49800853:1179648,16384,0 -) -g1,135:3062174,49800853 -(1,135:3062174,52029077:16384,1703936,0 -[1,135:3062174,52029077:25952256,1703936,0 -(1,135:3062174,51504789:25952256,1179648,0 -(1,135:3062174,51504789:16384,1179648,0 -r1,325:3078558,51504789:16384,1179648,0 -) -k1,135:29014430,51504789:25935872 -g1,135:29014430,51504789 -) -] -) -) -) -] -[1,325:3078558,4812305:0,0,0 -(1,325:3078558,49800853:0,16384,2228224 -g1,325:29030814,49800853 -g1,325:36135244,49800853 -(1,135:36135244,49800853:1720320,16384,2228224 -(1,135:36135244,52029077:16384,1703936,0 -[1,135:36135244,52029077:25952256,1703936,0 -(1,135:36135244,51504789:25952256,1179648,0 -(1,135:36135244,51504789:16384,1179648,0 -r1,325:36151628,51504789:16384,1179648,0 -) -k1,135:62087500,51504789:25935872 -g1,135:62087500,51504789 -) -] -) -g1,135:36675916,49800853 -(1,135:36675916,49800853:1179648,16384,0 -r1,325:37855564,49800853:1179648,16384,0 -) -) -k1,325:3078556,49800853:-34777008 -) -] -g1,325:6630773,4812305 -k1,325:21845614,4812305:14417923 -g1,325:22668090,4812305 -g1,325:24054831,4812305 -g1,325:27195316,4812305 -g1,325:28604995,4812305 -g1,325:29789885,4812305 -) -) -] -[1,325:6630773,45706769:25952256,40108032,0 -(1,325:6630773,45706769:25952256,40108032,0 -(1,325:6630773,45706769:0,0,0 -g1,325:6630773,45706769 -) -[1,325:6630773,45706769:25952256,40108032,0 -v1,291:6630773,6254097:0,393216,0 -(1,291:6630773,7813203:25952256,1952322,616038 -g1,291:6630773,7813203 -(1,291:6630773,7813203:25952256,1952322,616038 -(1,291:6630773,8429241:25952256,2568360,0 -[1,291:6630773,8429241:25952256,2568360,0 -(1,291:6630773,8403027:25952256,2542146,0 -r1,325:6656987,8403027:26214,2542146,0 -[1,291:6656987,8403027:25899828,2542146,0 -(1,291:6656987,7813203:25899828,1362498,0 -[1,291:7246811,7813203:24720180,1362498,0 -(1,291:7246811,6963852:24720180,513147,134348 -k1,290:9063328,6963852:210230 -k1,290:9886320,6963852:210230 -k1,290:12278244,6963852:210230 -k1,290:13276872,6963852:210230 -k1,290:15475464,6963852:210230 -k1,290:17867388,6963852:210230 -k1,290:19963090,6963852:210231 -k1,290:23329534,6963852:210230 -k1,290:24199056,6963852:210230 -k1,290:24765146,6963852:210230 -k1,290:26625573,6963852:210230 -k1,290:28331990,6963852:210230 -k1,290:29533780,6963852:210230 -k1,290:31284106,6963852:210230 -k1,290:31966991,6963852:0 -) -(1,291:7246811,7805340:24720180,426639,7863 -k1,291:31966992,7805340:23480240 -g1,291:31966992,7805340 -) -] -) -] -r1,325:32583029,8403027:26214,2542146,0 -) -] -) -) -g1,291:32583029,7813203 -) -h1,291:6630773,8429241:0,0,0 -(1,293:6630773,10520501:25952256,555811,139132 -(1,293:6630773,10520501:2450326,525533,12975 -g1,293:6630773,10520501 -g1,293:9081099,10520501 -) -g1,293:10393851,10520501 -g1,293:13214718,10520501 -k1,293:32583029,10520501:17787386 -g1,293:32583029,10520501 -) -(1,296:6630773,11755205:25952256,513147,134348 -k1,295:7684843,11755205:225040 -k1,295:9940843,11755205:225039 -k1,295:11553936,11755205:225040 -k1,295:13607429,11755205:225039 -k1,295:16390995,11755205:225040 -k1,295:17635119,11755205:225039 -k1,295:21019650,11755205:225040 -k1,295:23645928,11755205:225039 -k1,295:24739320,11755205:225040 -k1,295:26056844,11755205:225039 -k1,295:28977380,11755205:225040 -(1,295:28977380,11755205:0,452978,115847 -r1,325:31094205,11755205:2116825,568825,115847 -k1,295:28977380,11755205:-2116825 -) -(1,295:28977380,11755205:2116825,452978,115847 -k1,295:28977380,11755205:3277 -h1,295:31090928,11755205:0,411205,112570 -) -k1,295:31319244,11755205:225039 -k1,295:32227169,11755205:225040 -k1,295:32583029,11755205:0 -) -(1,296:6630773,12596693:25952256,513147,134348 -k1,295:9534500,12596693:139418 -k1,295:11504340,12596693:139419 -k1,295:13368666,12596693:139418 -k1,295:15467610,12596693:139418 -k1,295:18448015,12596693:139419 -k1,295:19348961,12596693:139418 -k1,295:20259082,12596693:139418 -k1,295:20813284,12596693:139359 -k1,295:23532854,12596693:139418 -k1,295:27078834,12596693:139419 -k1,295:30176547,12596693:139418 -k1,295:32583029,12596693:0 -) -(1,296:6630773,13438181:25952256,505283,134348 -k1,295:8449876,13438181:222646 -k1,295:9204018,13438181:222645 -k1,295:13571161,13438181:222646 -k1,295:17266560,13438181:222646 -k1,295:17845065,13438181:222645 -k1,295:19940730,13438181:222646 -k1,295:21551429,13438181:222646 -k1,295:23272227,13438181:222645 -k1,295:27027919,13438181:222646 -k1,295:29482066,13438181:222646 -k1,295:30119531,13438181:222622 -k1,295:32583029,13438181:0 -) -(1,296:6630773,14279669:25952256,513147,134348 -k1,295:9162122,14279669:187782 -k1,295:9962667,14279669:187783 -k1,295:11169534,14279669:187782 -k1,295:12540241,14279669:187782 -k1,295:13387315,14279669:187782 -k1,295:14594183,14279669:187783 -k1,295:16170018,14279669:187782 -k1,295:18359925,14279669:187782 -k1,295:20239847,14279669:187782 -k1,295:23419349,14279669:187783 -k1,295:24598691,14279669:187782 -k1,295:26654904,14279669:187782 -k1,295:28728157,14279669:187782 -k1,295:30355766,14279669:187783 -k1,295:31194976,14279669:187782 -k1,295:32583029,14279669:0 -) -(1,296:6630773,15121157:25952256,513147,134348 -k1,295:8221382,15121157:236635 -k1,295:10241253,15121157:236636 -k1,295:11093926,15121157:236635 -k1,295:13932341,15121157:236636 -k1,295:15499357,15121157:236635 -k1,295:16387420,15121157:236635 -k1,295:17716541,15121157:236636 -k1,295:18972261,15121157:236635 -k1,295:22234693,15121157:236635 -k1,295:25735022,15121157:236636 -k1,295:27013679,15121157:236635 -k1,295:30085402,15121157:236636 -k1,295:31478747,15121157:236635 -k1,295:32583029,15121157:0 -) -(1,296:6630773,15962645:25952256,513147,134348 -g1,295:8900284,15962645 -g1,295:10047164,15962645 -g1,295:10602253,15962645 -g1,295:12189535,15962645 -g1,295:13886917,15962645 -g1,295:14698908,15962645 -g1,295:15917222,15962645 -g1,295:16531294,15962645 -k1,296:32583029,15962645:13457820 -g1,296:32583029,15962645 -) -v1,298:6630773,17153111:0,393216,0 -(1,303:6630773,18033197:25952256,1273302,196608 -g1,303:6630773,18033197 -g1,303:6630773,18033197 -g1,303:6434165,18033197 -(1,303:6434165,18033197:0,1273302,196608 -r1,325:32779637,18033197:26345472,1469910,196608 -k1,303:6434165,18033197:-26345472 -) -(1,303:6434165,18033197:26345472,1273302,196608 -[1,303:6630773,18033197:25952256,1076694,0 -(1,300:6630773,17360729:25952256,404226,101187 -(1,299:6630773,17360729:0,0,0 -g1,299:6630773,17360729 -g1,299:6630773,17360729 -g1,299:6303093,17360729 -(1,299:6303093,17360729:0,0,0 -) -g1,299:6630773,17360729 -) -k1,300:6630773,17360729:0 -h1,300:10108376,17360729:0,0,0 -k1,300:32583028,17360729:22474652 -g1,300:32583028,17360729 -) -(1,301:6630773,18026907:25952256,388497,6290 -h1,301:6630773,18026907:0,0,0 -h1,301:7895356,18026907:0,0,0 -k1,301:32583028,18026907:24687672 -g1,301:32583028,18026907 -) -] -) -g1,303:32583029,18033197 -g1,303:6630773,18033197 -g1,303:6630773,18033197 -g1,303:32583029,18033197 -g1,303:32583029,18033197 -) -h1,303:6630773,18229805:0,0,0 -v1,307:6630773,20119869:0,393216,0 -(1,316:6630773,24491720:25952256,4765067,616038 -g1,316:6630773,24491720 -(1,316:6630773,24491720:25952256,4765067,616038 -(1,316:6630773,25107758:25952256,5381105,0 -[1,316:6630773,25107758:25952256,5381105,0 -(1,316:6630773,25081544:25952256,5328677,0 -r1,325:6656987,25081544:26214,5328677,0 -[1,316:6656987,25081544:25899828,5328677,0 -(1,316:6656987,24491720:25899828,4149029,0 -[1,316:7246811,24491720:24720180,4149029,0 -(1,308:7246811,21430065:24720180,1087374,126483 -k1,307:8644287,21430065:187773 -k1,307:10378711,21430065:187774 -k1,307:11179246,21430065:187773 -k1,307:12755072,21430065:187773 -k1,307:13890497,21430065:187774 -k1,307:15770410,21430065:187773 -k1,307:17660153,21430065:187773 -k1,307:20873723,21430065:187773 -k1,307:22207722,21430065:187774 -(1,307:22207722,21430065:0,452978,115847 -r1,325:24324547,21430065:2116825,568825,115847 -k1,307:22207722,21430065:-2116825 -) -(1,307:22207722,21430065:2116825,452978,115847 -k1,307:22207722,21430065:3277 -h1,307:24321270,21430065:0,411205,112570 -) -k1,307:24685990,21430065:187773 -(1,307:24685990,21430065:0,452978,115847 -r1,325:26451103,21430065:1765113,568825,115847 -k1,307:24685990,21430065:-1765113 -) -(1,307:24685990,21430065:1765113,452978,115847 -k1,307:24685990,21430065:3277 -h1,307:26447826,21430065:0,411205,112570 -) -k1,307:26812546,21430065:187773 -(1,307:26812546,21430065:0,452978,115847 -r1,325:28929371,21430065:2116825,568825,115847 -k1,307:26812546,21430065:-2116825 -) -(1,307:26812546,21430065:2116825,452978,115847 -k1,307:26812546,21430065:3277 -h1,307:28926094,21430065:0,411205,112570 -) -k1,307:29117145,21430065:187774 -k1,307:30670033,21430065:187773 -k1,307:31966991,21430065:0 -) -(1,308:7246811,22271553:24720180,513147,115847 -g1,307:8685981,22271553 -(1,307:8685981,22271553:0,452978,115847 -r1,325:10802806,22271553:2116825,568825,115847 -k1,307:8685981,22271553:-2116825 -) -(1,307:8685981,22271553:2116825,452978,115847 -k1,307:8685981,22271553:3277 -h1,307:10799529,22271553:0,411205,112570 -) -g1,307:11002035,22271553 -k1,308:31966991,22271553:19185654 -g1,308:31966991,22271553 -) -v1,310:7246811,23462019:0,393216,0 -(1,314:7246811,23770824:24720180,702021,196608 -g1,314:7246811,23770824 -g1,314:7246811,23770824 -g1,314:7050203,23770824 -(1,314:7050203,23770824:0,702021,196608 -r1,325:32163599,23770824:25113396,898629,196608 -k1,314:7050203,23770824:-25113396 -) -(1,314:7050203,23770824:25113396,702021,196608 -[1,314:7246811,23770824:24720180,505413,0 -(1,312:7246811,23669637:24720180,404226,101187 -(1,311:7246811,23669637:0,0,0 -g1,311:7246811,23669637 -g1,311:7246811,23669637 -g1,311:6919131,23669637 -(1,311:6919131,23669637:0,0,0 -) -g1,311:7246811,23669637 -) -k1,312:7246811,23669637:0 -h1,312:10408268,23669637:0,0,0 -k1,312:31966992,23669637:21558724 -g1,312:31966992,23669637 -) -] -) -g1,314:31966991,23770824 -g1,314:7246811,23770824 -g1,314:7246811,23770824 -g1,314:31966991,23770824 -g1,314:31966991,23770824 -) -h1,314:7246811,23967432:0,0,0 -] -) -] -r1,325:32583029,25081544:26214,5328677,0 -) -] -) -) -g1,316:32583029,24491720 -) -h1,316:6630773,25107758:0,0,0 -(1,319:6630773,26473534:25952256,513147,134348 -h1,318:6630773,26473534:983040,0,0 -k1,318:9677038,26473534:279990 -k1,318:11692421,26473534:279990 -k1,318:14396588,26473534:279990 -k1,318:16331361,26473534:279989 -k1,318:17602911,26473534:279990 -k1,318:19753299,26473534:279990 -k1,318:21601566,26473534:279990 -k1,318:22540848,26473534:279990 -k1,318:26127129,26473534:279990 -k1,318:27058546,26473534:279989 -k1,318:27694396,26473534:279990 -k1,318:29362439,26473534:279990 -k1,318:31140582,26473534:279990 -k1,318:32583029,26473534:0 -) -(1,319:6630773,27315022:25952256,513147,134348 -k1,318:8587021,27315022:220855 -k1,318:11503373,27315022:220856 -(1,318:11503373,27315022:0,452978,115847 -r1,325:13620198,27315022:2116825,568825,115847 -k1,318:11503373,27315022:-2116825 -) -(1,318:11503373,27315022:2116825,452978,115847 -k1,318:11503373,27315022:3277 -h1,318:13616921,27315022:0,411205,112570 -) -k1,318:14014723,27315022:220855 -k1,318:15183230,27315022:220856 -k1,318:18239172,27315022:220855 -k1,318:19853979,27315022:220856 -k1,318:21093919,27315022:220855 -k1,318:23364740,27315022:220855 -k1,318:24394966,27315022:220856 -k1,318:25634906,27315022:220855 -k1,318:27593777,27315022:220856 -k1,318:28473924,27315022:220855 -k1,318:29050640,27315022:220856 -k1,318:31966991,27315022:220855 -k1,318:32583029,27315022:0 -) -(1,319:6630773,28156510:25952256,505283,134348 -k1,318:7799186,28156510:149328 -k1,318:9857579,28156510:149329 -k1,318:10689792,28156510:149328 -k1,318:13433035,28156510:149328 -k1,318:16289656,28156510:149329 -k1,318:17458069,28156510:149328 -k1,318:18364993,28156510:149328 -k1,318:19615327,28156510:149329 -k1,318:21672408,28156510:149328 -k1,318:22840822,28156510:149329 -k1,318:27613715,28156510:149328 -k1,318:29151096,28156510:149328 -k1,318:30798578,28156510:149329 -k1,318:31563944,28156510:149328 -k1,318:32583029,28156510:0 -) -(1,319:6630773,28997998:25952256,513147,134348 -k1,318:8212201,28997998:193375 -k1,318:10118031,28997998:193374 -k1,318:12527834,28997998:193375 -k1,318:13740294,28997998:193375 -k1,318:15983635,28997998:193375 -k1,318:17979249,28997998:193374 -k1,318:19120275,28997998:193375 -k1,318:19669510,28997998:193375 -k1,318:20996003,28997998:193375 -k1,318:23761010,28997998:193374 -k1,318:25341782,28997998:193375 -k1,318:26554242,28997998:193375 -k1,318:28485632,28997998:193375 -k1,318:29338298,28997998:193374 -k1,318:29887533,28997998:193375 -k1,318:32583029,28997998:0 -) -(1,319:6630773,29839486:25952256,513147,126483 -k1,318:7427692,29839486:184157 -k1,318:8630934,29839486:184157 -k1,318:9229919,29839486:184142 -k1,318:11834321,29839486:184157 -k1,318:13150940,29839486:184157 -k1,318:14912549,29839486:184157 -k1,318:17565447,29839486:184157 -k1,318:19437811,29839486:184157 -k1,318:20569619,29839486:184157 -k1,318:21385543,29839486:184157 -k1,318:22047457,29839486:184157 -k1,318:23250699,29839486:184157 -k1,318:26130352,29839486:184157 -k1,318:26846006,29839486:184157 -k1,318:29411741,29839486:184157 -k1,318:30211936,29839486:184157 -k1,318:30751953,29839486:184157 -k1,318:32583029,29839486:0 -) -(1,319:6630773,30680974:25952256,513147,134348 -k1,318:7529534,30680974:215876 -k1,318:10218082,30680974:215875 -k1,318:11416998,30680974:215876 -k1,318:12917379,30680974:215875 -k1,318:13664752,30680974:215876 -k1,318:15458079,30680974:215875 -k1,318:16289993,30680974:215876 -k1,318:17524953,30680974:215875 -k1,318:19649893,30680974:215876 -k1,318:21578224,30680974:215875 -k1,318:22950810,30680974:215876 -k1,318:24270967,30680974:215875 -k1,318:26901189,30680974:215876 -k1,318:29780447,30680974:215875 -k1,318:31563944,30680974:215876 -k1,318:32583029,30680974:0 -) -(1,319:6630773,31522462:25952256,513147,11795 -k1,318:8068414,31522462:269134 -k1,318:10256443,31522462:269135 -k1,318:11544662,31522462:269134 -k1,318:14509293,31522462:269135 -k1,318:15309924,31522462:269134 -k1,318:17446834,31522462:269134 -k1,318:18367397,31522462:269135 -k1,318:20555425,31522462:269134 -k1,318:21282657,31522462:269135 -k1,318:22083288,31522462:269134 -k1,318:24907671,31522462:269134 -k1,318:25804641,31522462:269135 -k1,318:28497952,31522462:269134 -k1,318:29923797,31522462:269135 -k1,318:31297213,31522462:269134 -k1,318:32583029,31522462:0 -) -(1,319:6630773,32363950:25952256,513147,134348 -g1,318:8900284,32363950 -g1,318:10047164,32363950 -g1,318:11634446,32363950 -g1,318:14392201,32363950 -g1,318:15610515,32363950 -g1,318:18759519,32363950 -k1,319:32583029,32363950:10839656 -g1,319:32583029,32363950 -) -(1,321:6630773,33205438:25952256,513147,134348 -h1,320:6630773,33205438:983040,0,0 -k1,320:8490361,33205438:248713 -k1,320:11405079,33205438:248713 -k1,320:12305220,33205438:248713 -k1,320:13941986,33205438:248713 -k1,320:16192824,33205438:248713 -k1,320:17360352,33205438:248713 -k1,320:21390492,33205438:248713 -k1,320:24307176,33205438:248713 -k1,320:26533111,33205438:248714 -k1,320:29478631,33205438:248713 -k1,320:30413506,33205438:248713 -k1,320:31900144,33205438:248663 -k1,320:32583029,33205438:0 -) -(1,321:6630773,34046926:25952256,513147,134348 -k1,320:8712687,34046926:213483 -k1,320:10413196,34046926:213497 -k1,320:12501023,34046926:213497 -k1,320:13818802,34046926:213497 -k1,320:14780065,34046926:213497 -k1,320:17792605,34046926:213497 -k1,320:19607802,34046926:213497 -k1,320:21622228,34046926:213497 -k1,320:24394252,34046926:213498 -k1,320:25626834,34046926:213497 -k1,320:27318823,34046926:213497 -k1,320:29329317,34046926:213497 -k1,320:30158852,34046926:213497 -k1,320:32583029,34046926:0 -) -(1,321:6630773,34888414:25952256,513147,134348 -k1,320:7551171,34888414:237513 -k1,320:9601410,34888414:237514 -k1,320:12934844,34888414:237513 -k1,320:16082811,34888414:237513 -k1,320:18750400,34888414:237514 -k1,320:20375966,34888414:237513 -k1,320:22441933,34888414:237513 -k1,320:23627098,34888414:237514 -k1,320:24883696,34888414:237513 -k1,320:28147006,34888414:237513 -k1,320:29575965,34888414:237514 -k1,320:31202841,34888414:237513 -k1,320:32583029,34888414:0 -) -(1,321:6630773,35729902:25952256,505283,134348 -k1,320:9125470,35729902:248123 -k1,320:11156827,35729902:248122 -k1,320:11760810,35729902:248123 -k1,320:14589084,35729902:248122 -k1,320:15368704,35729902:248123 -k1,320:17761164,35729902:248122 -k1,320:19276753,35729902:248123 -k1,320:20295578,35729902:248122 -k1,320:20958495,35729902:248074 -k1,320:23729098,35729902:248122 -k1,320:24765619,35729902:248123 -k1,320:26401794,35729902:248122 -k1,320:28478371,35729902:248123 -k1,320:29718054,35729902:248123 -k1,320:31931601,35729902:248122 -k1,320:32583029,35729902:0 -) -(1,321:6630773,36571390:25952256,513147,134348 -k1,320:7848619,36571390:198761 -k1,320:9980693,36571390:198762 -k1,320:11567507,36571390:198761 -k1,320:12433424,36571390:198761 -k1,320:13220698,36571390:198761 -k1,320:14047295,36571390:198762 -k1,320:16912061,36571390:198761 -k1,320:17762250,36571390:198761 -k1,320:19657739,36571390:198762 -k1,320:23049414,36571390:198761 -k1,320:24636228,36571390:198761 -k1,320:26837114,36571390:198761 -k1,320:28487498,36571390:198762 -k1,320:31266411,36571390:198761 -k1,321:32583029,36571390:0 -) -(1,321:6630773,37412878:25952256,513147,134348 -k1,320:8436945,37412878:149422 -k1,320:9357070,37412878:149422 -k1,320:11255648,37412878:149422 -k1,320:12064362,37412878:149422 -k1,320:13002182,37412878:149422 -k1,320:17775169,37412878:149422 -k1,320:19312645,37412878:149423 -k1,320:21290521,37412878:149422 -k1,320:22387594,37412878:149422 -k1,320:24248161,37412878:149422 -k1,320:25049011,37412878:149422 -k1,320:27654067,37412878:149422 -k1,320:29498905,37412878:149422 -k1,320:32583029,37412878:0 -) -(1,321:6630773,38254366:25952256,505283,134348 -g1,320:9201750,38254366 -g1,320:12219683,38254366 -g1,320:13912478,38254366 -g1,320:14797869,38254366 -g1,320:16434303,38254366 -g1,320:18827677,38254366 -g1,320:19709791,38254366 -g1,320:22227684,38254366 -g1,320:25739103,38254366 -g1,320:26957417,38254366 -g1,320:30597941,38254366 -k1,321:32583029,38254366:298191 -g1,321:32583029,38254366 -) -(1,323:6630773,39095854:25952256,505283,134348 -h1,322:6630773,39095854:983040,0,0 -k1,322:9680620,39095854:234420 -k1,322:10906600,39095854:234420 -k1,322:12833159,39095854:234419 -k1,322:14336356,39095854:234420 -k1,322:16036816,39095854:234420 -k1,322:17555742,39095854:234420 -k1,322:19070080,39095854:234420 -k1,322:21335460,39095854:234419 -k1,322:22221308,39095854:234420 -k1,322:22870536,39095854:234385 -k1,322:27931026,39095854:234419 -k1,322:30723972,39095854:234420 -k1,322:31314252,39095854:234420 -k1,322:32583029,39095854:0 -) -(1,323:6630773,39937342:25952256,505283,134348 -k1,322:8948399,39937342:185084 -k1,322:11007814,39937342:185085 -k1,322:12658938,39937342:185084 -k1,322:13948305,39937342:185085 -k1,322:14881155,39937342:185084 -k1,322:16420213,39937342:185084 -k1,322:20087881,39937342:185085 -k1,322:21971003,39937342:185084 -k1,322:25167467,39937342:185085 -k1,322:27943189,39937342:185084 -k1,322:28484134,39937342:185085 -k1,322:30867296,39937342:185084 -k1,323:32583029,39937342:0 -) -(1,323:6630773,40778830:25952256,513147,134348 -k1,322:7946988,40778830:238803 -k1,322:9954608,40778830:238803 -k1,322:10941177,40778830:238803 -k1,322:13157201,40778830:238803 -k1,322:14343655,40778830:238803 -k1,322:14938318,40778830:238803 -k1,322:17375198,40778830:238802 -k1,322:20464162,40778830:238803 -k1,322:21389127,40778830:238803 -k1,322:23008118,40778830:238803 -k1,322:24928575,40778830:238803 -k1,322:28092250,40778830:238803 -k1,322:29522498,40778830:238803 -k1,322:32583029,40778830:0 -) -(1,323:6630773,41620318:25952256,513147,134348 -k1,322:7879103,41620318:229245 -k1,322:12934419,41620318:229245 -k1,322:15623885,41620318:229244 -k1,322:17383396,41620318:229245 -k1,322:18271933,41620318:229245 -k1,322:21460784,41620318:229245 -k1,322:22709114,41620318:229245 -k1,322:26022482,41620318:229244 -k1,322:27968770,41620318:229245 -k1,322:30778167,41620318:229245 -k1,323:32583029,41620318:0 -) -(1,323:6630773,42461806:25952256,513147,134348 -k1,322:9010385,42461806:184811 -k1,322:10670412,42461806:184812 -k1,322:12124000,42461806:184811 -k1,322:13774852,42461806:184812 -k1,322:15353614,42461806:184811 -k1,322:18765419,42461806:184812 -k1,322:23776301,42461806:184811 -k1,322:24908764,42461806:184812 -k1,322:26602214,42461806:184811 -k1,322:28117407,42461806:184812 -k1,322:31386342,42461806:184811 -k1,322:32583029,42461806:0 -) -(1,323:6630773,43303294:25952256,513147,134348 -k1,322:11221681,43303294:223589 -k1,322:12128180,43303294:223614 -k1,322:15093140,43303294:223589 -k1,322:15976045,43303294:223613 -k1,322:19110113,43303294:223614 -k1,322:21763802,43303294:223614 -k1,322:24333604,43303294:223613 -k1,322:28364204,43303294:223614 -k1,322:29535468,43303294:223613 -k1,322:30778167,43303294:223614 -k1,323:32583029,43303294:0 -) -(1,323:6630773,44144782:25952256,505283,134348 -k1,322:8853239,44144782:184296 -k1,322:10581564,44144782:184297 -k1,322:11417288,44144782:184296 -k1,322:12870362,44144782:184297 -k1,322:14694369,44144782:184296 -k1,322:16070111,44144782:184297 -k1,322:20092195,44144782:184296 -k1,322:21085861,44144782:184296 -k1,322:22600539,44144782:184297 -k1,322:23436263,44144782:184296 -k1,322:25616787,44144782:184297 -k1,322:27494533,44144782:184296 -k1,322:28496719,44144782:184297 -k1,322:31591469,44144782:184296 -k1,322:32583029,44144782:0 -) -(1,323:6630773,44986270:25952256,505283,134348 -k1,322:10595974,44986270:235547 -k1,322:11593050,44986270:235548 -k1,322:15835468,44986270:235547 -k1,322:18700319,44986270:235547 -k1,322:20316054,44986270:235547 -k1,322:22731985,44986270:235548 -k1,322:23715298,44986270:235547 -k1,322:25510602,44986270:235547 -k1,322:26362187,44986270:235547 -k1,322:29263740,44986270:235548 -k1,322:30150715,44986270:235547 -k1,322:32168186,44986270:235547 -k1,323:32583029,44986270:0 -) -] -(1,325:32583029,45706769:0,0,0 -g1,325:32583029,45706769 -) -) -] -(1,325:6630773,47279633:25952256,0,0 -h1,325:6630773,47279633:25952256,0,0 -) -] -(1,325:4262630,4025873:0,0,0 -[1,325:-473656,4025873:0,0,0 -(1,325:-473656,-710413:0,0,0 -(1,325:-473656,-710413:0,0,0 -g1,325:-473656,-710413 -) -g1,325:-473656,-710413 -) -] -) -] -!23214 -}25 -Input:207:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!102 -{26 -[1,368:4262630,47279633:28320399,43253760,0 -(1,368:4262630,4025873:0,0,0 -[1,368:-473656,4025873:0,0,0 -(1,368:-473656,-710413:0,0,0 -(1,368:-473656,-644877:0,0,0 -k1,368:-473656,-644877:-65536 -) -(1,368:-473656,4736287:0,0,0 -k1,368:-473656,4736287:5209943 -) -g1,368:-473656,-710413 -) -] -) -[1,368:6630773,47279633:25952256,43253760,0 -[1,368:6630773,4812305:25952256,786432,0 -(1,368:6630773,4812305:25952256,513147,134348 -(1,368:6630773,4812305:25952256,513147,134348 -g1,368:3078558,4812305 -[1,368:3078558,4812305:0,0,0 -(1,368:3078558,2439708:0,1703936,0 -k1,368:1358238,2439708:-1720320 -(1,135:1358238,2439708:1720320,1703936,0 -(1,135:1358238,2439708:1179648,16384,0 -r1,368:2537886,2439708:1179648,16384,0 -) -g1,135:3062174,2439708 -(1,135:3062174,2439708:16384,1703936,0 -[1,135:3062174,2439708:25952256,1703936,0 -(1,135:3062174,1915420:25952256,1179648,0 -(1,135:3062174,1915420:16384,1179648,0 -r1,368:3078558,1915420:16384,1179648,0 -) -k1,135:29014430,1915420:25935872 -g1,135:29014430,1915420 -) -] -) -) -) -] -[1,368:3078558,4812305:0,0,0 -(1,368:3078558,2439708:0,1703936,0 -g1,368:29030814,2439708 -g1,368:36135244,2439708 -(1,135:36135244,2439708:1720320,1703936,0 -(1,135:36135244,2439708:16384,1703936,0 -[1,135:36135244,2439708:25952256,1703936,0 -(1,135:36135244,1915420:25952256,1179648,0 -(1,135:36135244,1915420:16384,1179648,0 -r1,368:36151628,1915420:16384,1179648,0 -) -k1,135:62087500,1915420:25935872 -g1,135:62087500,1915420 -) -] -) -g1,135:36675916,2439708 -(1,135:36675916,2439708:1179648,16384,0 -r1,368:37855564,2439708:1179648,16384,0 -) -) -k1,368:3078556,2439708:-34777008 -) -] -[1,368:3078558,4812305:0,0,0 -(1,368:3078558,49800853:0,16384,2228224 -k1,368:1358238,49800853:-1720320 -(1,135:1358238,49800853:1720320,16384,2228224 -(1,135:1358238,49800853:1179648,16384,0 -r1,368:2537886,49800853:1179648,16384,0 -) -g1,135:3062174,49800853 -(1,135:3062174,52029077:16384,1703936,0 -[1,135:3062174,52029077:25952256,1703936,0 -(1,135:3062174,51504789:25952256,1179648,0 -(1,135:3062174,51504789:16384,1179648,0 -r1,368:3078558,51504789:16384,1179648,0 -) -k1,135:29014430,51504789:25935872 -g1,135:29014430,51504789 -) -] -) -) -) -] -[1,368:3078558,4812305:0,0,0 -(1,368:3078558,49800853:0,16384,2228224 -g1,368:29030814,49800853 -g1,368:36135244,49800853 -(1,135:36135244,49800853:1720320,16384,2228224 -(1,135:36135244,52029077:16384,1703936,0 -[1,135:36135244,52029077:25952256,1703936,0 -(1,135:36135244,51504789:25952256,1179648,0 -(1,135:36135244,51504789:16384,1179648,0 -r1,368:36151628,51504789:16384,1179648,0 -) -k1,135:62087500,51504789:25935872 -g1,135:62087500,51504789 -) -] -) -g1,135:36675916,49800853 -(1,135:36675916,49800853:1179648,16384,0 -r1,368:37855564,49800853:1179648,16384,0 -) -) -k1,368:3078556,49800853:-34777008 -) -] -g1,368:6630773,4812305 -g1,368:6630773,4812305 -g1,368:9189953,4812305 -g1,368:12564401,4812305 -g1,368:16510323,4812305 -k1,368:31786111,4812305:15275788 -) -) -] -[1,368:6630773,45706769:25952256,40108032,0 -(1,368:6630773,45706769:25952256,40108032,0 -(1,368:6630773,45706769:0,0,0 -g1,368:6630773,45706769 -) -[1,368:6630773,45706769:25952256,40108032,0 -(1,323:6630773,6254097:25952256,513147,134348 -k1,322:8631930,6254097:221855 -k1,322:9268606,6254097:221833 -k1,322:12185957,6254097:221855 -(1,322:12185957,6254097:0,452978,115847 -r1,368:15709629,6254097:3523672,568825,115847 -k1,322:12185957,6254097:-3523672 -) -(1,322:12185957,6254097:3523672,452978,115847 -k1,322:12185957,6254097:3277 -h1,322:15706352,6254097:0,411205,112570 -) -k1,322:15931484,6254097:221855 -k1,322:17851377,6254097:221855 -k1,322:19941008,6254097:221855 -k1,322:21556815,6254097:221856 -k1,322:22797755,6254097:221855 -k1,322:24757625,6254097:221855 -k1,322:25638772,6254097:221855 -k1,322:26216487,6254097:221855 -k1,322:29018495,6254097:221856 -k1,322:29926512,6254097:221855 -k1,322:30936765,6254097:221855 -k1,323:32583029,6254097:0 -) -(1,323:6630773,7095585:25952256,513147,134348 -k1,322:8472838,7095585:203010 -k1,322:11436224,7095585:203010 -k1,322:12658319,7095585:203010 -k1,322:15840597,7095585:203011 -k1,322:17328113,7095585:203010 -k1,322:19711506,7095585:203010 -k1,322:20662282,7095585:203010 -k1,322:22425049,7095585:203010 -k1,322:23575710,7095585:203010 -k1,322:24797806,7095585:203011 -k1,322:27754639,7095585:203010 -k1,322:29149094,7095585:203010 -k1,322:31812326,7095585:203010 -k1,322:32583029,7095585:0 -) -(1,323:6630773,7937073:25952256,513147,134348 -g1,322:9161118,7937073 -g1,322:12606345,7937073 -g1,322:13824659,7937073 -g1,322:17003155,7937073 -g1,322:17853812,7937073 -g1,322:19192057,7937073 -g1,322:20338937,7937073 -g1,322:21557251,7937073 -g1,322:24090217,7937073 -g1,322:24956602,7937073 -g1,322:25570674,7937073 -g1,322:26385941,7937073 -k1,323:32583029,7937073:4930932 -g1,323:32583029,7937073 -) -v1,325:6630773,9127539:0,393216,0 -(1,352:6630773,23497909:25952256,14763586,196608 -g1,352:6630773,23497909 -g1,352:6630773,23497909 -g1,352:6434165,23497909 -(1,352:6434165,23497909:0,14763586,196608 -r1,368:32779637,23497909:26345472,14960194,196608 -k1,352:6434165,23497909:-26345472 -) -(1,352:6434165,23497909:26345472,14763586,196608 -[1,352:6630773,23497909:25952256,14566978,0 -(1,327:6630773,9335157:25952256,404226,76021 -(1,326:6630773,9335157:0,0,0 -g1,326:6630773,9335157 -g1,326:6630773,9335157 -g1,326:6303093,9335157 -(1,326:6303093,9335157:0,0,0 -) -g1,326:6630773,9335157 -) -k1,327:6630773,9335157:0 -h1,327:9792229,9335157:0,0,0 -k1,327:32583029,9335157:22790800 -g1,327:32583029,9335157 -) -(1,351:6630773,10066871:25952256,379060,0 -(1,329:6630773,10066871:0,0,0 -g1,329:6630773,10066871 -g1,329:6630773,10066871 -g1,329:6303093,10066871 -(1,329:6303093,10066871:0,0,0 -) -g1,329:6630773,10066871 -) -h1,351:7263064,10066871:0,0,0 -k1,351:32583028,10066871:25319964 -g1,351:32583028,10066871 -) -(1,351:6630773,10733049:25952256,404226,101187 -h1,351:6630773,10733049:0,0,0 -g1,351:7579210,10733049 -g1,351:8527647,10733049 -g1,351:10108376,10733049 -g1,351:10740668,10733049 -g1,351:11689105,10733049 -g1,351:15798999,10733049 -h1,351:17063582,10733049:0,0,0 -k1,351:32583029,10733049:15519447 -g1,351:32583029,10733049 -) -(1,351:6630773,11399227:25952256,379060,0 -h1,351:6630773,11399227:0,0,0 -h1,351:7263064,11399227:0,0,0 -k1,351:32583028,11399227:25319964 -g1,351:32583028,11399227 -) -(1,351:6630773,12065405:25952256,410518,107478 -h1,351:6630773,12065405:0,0,0 -g1,351:7579210,12065405 -g1,351:7895356,12065405 -g1,351:8211502,12065405 -g1,351:8843794,12065405 -g1,351:10424523,12065405 -g1,351:12005252,12065405 -g1,351:14534418,12065405 -g1,351:15482855,12065405 -g1,351:16115147,12065405 -g1,351:18960458,12065405 -g1,351:20225041,12065405 -g1,351:24018789,12065405 -g1,351:25283372,12065405 -h1,351:28760974,12065405:0,0,0 -k1,351:32583029,12065405:3822055 -g1,351:32583029,12065405 -) -(1,351:6630773,12731583:25952256,410518,107478 -h1,351:6630773,12731583:0,0,0 -g1,351:7579210,12731583 -g1,351:7895356,12731583 -g1,351:8211502,12731583 -g1,351:11689105,12731583 -g1,351:12321397,12731583 -g1,351:15799000,12731583 -g1,351:17063583,12731583 -g1,351:20857331,12731583 -g1,351:24334934,12731583 -g1,351:26864100,12731583 -h1,351:29393265,12731583:0,0,0 -k1,351:32583029,12731583:3189764 -g1,351:32583029,12731583 -) -(1,351:6630773,13397761:25952256,404226,107478 -h1,351:6630773,13397761:0,0,0 -g1,351:7579210,13397761 -g1,351:7895356,13397761 -g1,351:8211502,13397761 -g1,351:9476085,13397761 -k1,351:9476085,13397761:0 -h1,351:18012019,13397761:0,0,0 -k1,351:32583029,13397761:14571010 -g1,351:32583029,13397761 -) -(1,351:6630773,14063939:25952256,379060,0 -h1,351:6630773,14063939:0,0,0 -h1,351:7263064,14063939:0,0,0 -k1,351:32583028,14063939:25319964 -g1,351:32583028,14063939 -) -(1,351:6630773,14730117:25952256,410518,101187 -h1,351:6630773,14730117:0,0,0 -g1,351:7579210,14730117 -g1,351:8211502,14730117 -g1,351:10424522,14730117 -g1,351:12321396,14730117 -g1,351:13585979,14730117 -g1,351:15482853,14730117 -g1,351:17379727,14730117 -h1,351:18012018,14730117:0,0,0 -k1,351:32583029,14730117:14571011 -g1,351:32583029,14730117 -) -(1,351:6630773,15396295:25952256,379060,0 -h1,351:6630773,15396295:0,0,0 -h1,351:7263064,15396295:0,0,0 -k1,351:32583028,15396295:25319964 -g1,351:32583028,15396295 -) -(1,351:6630773,16062473:25952256,404226,107478 -h1,351:6630773,16062473:0,0,0 -g1,351:7579210,16062473 -g1,351:7895356,16062473 -g1,351:8211502,16062473 -k1,351:8211502,16062473:0 -h1,351:11056813,16062473:0,0,0 -k1,351:32583029,16062473:21526216 -g1,351:32583029,16062473 -) -(1,351:6630773,16728651:25952256,410518,107478 -h1,351:6630773,16728651:0,0,0 -g1,351:7579210,16728651 -g1,351:7895356,16728651 -g1,351:8211502,16728651 -g1,351:8527648,16728651 -g1,351:8843794,16728651 -g1,351:10740668,16728651 -g1,351:11372960,16728651 -g1,351:12637543,16728651 -g1,351:13269835,16728651 -g1,351:16115146,16728651 -g1,351:17379729,16728651 -g1,351:21173477,16728651 -g1,351:22438060,16728651 -g1,351:26231808,16728651 -k1,351:26231808,16728651:0 -h1,351:29709411,16728651:0,0,0 -k1,351:32583029,16728651:2873618 -g1,351:32583029,16728651 -) -(1,351:6630773,17394829:25952256,404226,82312 -h1,351:6630773,17394829:0,0,0 -g1,351:7579210,17394829 -g1,351:7895356,17394829 -g1,351:8211502,17394829 -g1,351:8527648,17394829 -g1,351:8843794,17394829 -g1,351:11056814,17394829 -g1,351:11689106,17394829 -g1,351:12953689,17394829 -g1,351:14534418,17394829 -k1,351:14534418,17394829:0 -h1,351:16747438,17394829:0,0,0 -k1,351:32583029,17394829:15835591 -g1,351:32583029,17394829 -) -(1,351:6630773,18061007:25952256,410518,107478 -h1,351:6630773,18061007:0,0,0 -g1,351:7579210,18061007 -g1,351:7895356,18061007 -g1,351:8211502,18061007 -g1,351:8527648,18061007 -g1,351:8843794,18061007 -g1,351:12953688,18061007 -g1,351:13585980,18061007 -g1,351:14534417,18061007 -g1,351:18012020,18061007 -g1,351:19276603,18061007 -g1,351:23070351,18061007 -k1,351:23070351,18061007:0 -h1,351:26547954,18061007:0,0,0 -k1,351:32583029,18061007:6035075 -g1,351:32583029,18061007 -) -(1,351:6630773,18727185:25952256,404226,82312 -h1,351:6630773,18727185:0,0,0 -g1,351:7579210,18727185 -g1,351:7895356,18727185 -g1,351:8211502,18727185 -g1,351:8527648,18727185 -g1,351:8843794,18727185 -g1,351:11372960,18727185 -g1,351:12005252,18727185 -g1,351:14850564,18727185 -k1,351:14850564,18727185:0 -h1,351:17695875,18727185:0,0,0 -k1,351:32583029,18727185:14887154 -g1,351:32583029,18727185 -) -(1,351:6630773,19393363:25952256,404226,101187 -h1,351:6630773,19393363:0,0,0 -g1,351:7579210,19393363 -g1,351:7895356,19393363 -g1,351:8211502,19393363 -g1,351:8527648,19393363 -g1,351:8843794,19393363 -g1,351:10424523,19393363 -g1,351:11056815,19393363 -k1,351:11056815,19393363:0 -h1,351:13269835,19393363:0,0,0 -k1,351:32583029,19393363:19313194 -g1,351:32583029,19393363 -) -(1,351:6630773,20059541:25952256,404226,107478 -h1,351:6630773,20059541:0,0,0 -g1,351:7579210,20059541 -g1,351:7895356,20059541 -g1,351:8211502,20059541 -g1,351:8527648,20059541 -g1,351:8843794,20059541 -g1,351:10108377,20059541 -g1,351:10740669,20059541 -k1,351:10740669,20059541:0 -h1,351:19908895,20059541:0,0,0 -k1,351:32583029,20059541:12674134 -g1,351:32583029,20059541 -) -(1,351:6630773,20725719:25952256,404226,76021 -h1,351:6630773,20725719:0,0,0 -g1,351:7579210,20725719 -g1,351:7895356,20725719 -g1,351:8211502,20725719 -h1,351:8527648,20725719:0,0,0 -k1,351:32583028,20725719:24055380 -g1,351:32583028,20725719 -) -(1,351:6630773,21391897:25952256,379060,0 -h1,351:6630773,21391897:0,0,0 -h1,351:7263064,21391897:0,0,0 -k1,351:32583028,21391897:25319964 -g1,351:32583028,21391897 -) -(1,351:6630773,22058075:25952256,410518,107478 -h1,351:6630773,22058075:0,0,0 -g1,351:7579210,22058075 -g1,351:8527647,22058075 -g1,351:10108376,22058075 -g1,351:12953687,22058075 -g1,351:13585979,22058075 -g1,351:14850562,22058075 -g1,351:15798999,22058075 -g1,351:17379728,22058075 -g1,351:18644311,22058075 -g1,351:20857331,22058075 -g1,351:21805768,22058075 -g1,351:24651079,22058075 -g1,351:25599517,22058075 -g1,351:27812537,22058075 -g1,351:29393266,22058075 -h1,351:30025557,22058075:0,0,0 -k1,351:32583029,22058075:2557472 -g1,351:32583029,22058075 -) -(1,351:6630773,22724253:25952256,410518,107478 -h1,351:6630773,22724253:0,0,0 -g1,351:7579210,22724253 -g1,351:9159939,22724253 -g1,351:11056813,22724253 -g1,351:12005250,22724253 -g1,351:13269833,22724253 -g1,351:14850562,22724253 -g1,351:18012019,22724253 -g1,351:19276602,22724253 -g1,351:20857331,22724253 -g1,351:27812537,22724253 -h1,351:28760974,22724253:0,0,0 -k1,351:32583029,22724253:3822055 -g1,351:32583029,22724253 -) -(1,351:6630773,23390431:25952256,404226,107478 -h1,351:6630773,23390431:0,0,0 -g1,351:7579210,23390431 -g1,351:9792230,23390431 -g1,351:10424522,23390431 -h1,351:13269833,23390431:0,0,0 -k1,351:32583029,23390431:19313196 -g1,351:32583029,23390431 -) -] -) -g1,352:32583029,23497909 -g1,352:6630773,23497909 -g1,352:6630773,23497909 -g1,352:32583029,23497909 -g1,352:32583029,23497909 -) -h1,352:6630773,23694517:0,0,0 -v1,356:6630773,25584581:0,393216,0 -(1,357:6630773,27870613:25952256,2679248,616038 -g1,357:6630773,27870613 -(1,357:6630773,27870613:25952256,2679248,616038 -(1,357:6630773,28486651:25952256,3295286,0 -[1,357:6630773,28486651:25952256,3295286,0 -(1,357:6630773,28460437:25952256,3242858,0 -r1,368:6656987,28460437:26214,3242858,0 -[1,357:6656987,28460437:25899828,3242858,0 -(1,357:6656987,27870613:25899828,2063210,0 -[1,357:7246811,27870613:24720180,2063210,0 -(1,357:7246811,26894777:24720180,1087374,134348 -k1,356:8684319,26894777:227805 -k1,356:10458774,26894777:227805 -k1,356:11299341,26894777:227805 -k1,356:12546231,26894777:227805 -k1,356:14162089,26894777:227805 -k1,356:15888047,26894777:227805 -k1,356:17063503,26894777:227805 -k1,356:19986804,26894777:227805 -(1,356:19986804,26894777:0,452978,115847 -r1,368:23510476,26894777:3523672,568825,115847 -k1,356:19986804,26894777:-3523672 -) -(1,356:19986804,26894777:3523672,452978,115847 -k1,356:19986804,26894777:3277 -h1,356:23507199,26894777:0,411205,112570 -) -k1,356:23738281,26894777:227805 -k1,356:24913737,26894777:227805 -k1,356:25497402,26894777:227805 -k1,356:29097034,26894777:227805 -k1,356:29984131,26894777:227805 -k1,356:31508894,26894777:227805 -k1,356:31966991,26894777:0 -) -(1,357:7246811,27736265:24720180,513147,134348 -g1,356:7977537,27736265 -g1,356:11386064,27736265 -g1,356:12532944,27736265 -g1,356:14443318,27736265 -g1,356:15293975,27736265 -g1,356:16632220,27736265 -g1,356:17246292,27736265 -g1,356:18636966,27736265 -g1,356:21746649,27736265 -g1,356:23643916,27736265 -g1,356:25578538,27736265 -k1,357:31966991,27736265:4575727 -g1,357:31966991,27736265 -) -] -) -] -r1,368:32583029,28460437:26214,3242858,0 -) -] -) -) -g1,357:32583029,27870613 -) -h1,357:6630773,28486651:0,0,0 -(1,359:6630773,30577911:25952256,564462,147783 -(1,359:6630773,30577911:2450326,534184,12975 -g1,359:6630773,30577911 -g1,359:9081099,30577911 -) -g1,359:12875896,30577911 -g1,359:14681741,30577911 -g1,359:16681507,30577911 -g1,359:19167878,30577911 -k1,359:32583029,30577911:10791089 -g1,359:32583029,30577911 -) -(1,362:6630773,31812615:25952256,513147,134348 -k1,361:8578448,31812615:164440 -k1,361:12083259,31812615:164441 -k1,361:13635752,31812615:164440 -k1,361:15802318,31812615:164441 -k1,361:19026634,31812615:164440 -k1,361:20382520,31812615:164441 -k1,361:23190683,31812615:164441 -k1,361:25267464,31812615:164440 -k1,361:26044666,31812615:164440 -k1,361:27815394,31812615:164441 -k1,361:29337085,31812615:164440 -k1,361:30152954,31812615:164441 -k1,361:32583029,31812615:0 -) -(1,362:6630773,32654103:25952256,513147,126483 -k1,361:7897382,32654103:247524 -k1,361:11951892,32654103:247524 -k1,361:14671435,32654103:247525 -k1,361:15938044,32654103:247524 -k1,361:17569688,32654103:247524 -k1,361:19172497,32654103:247524 -k1,361:20071450,32654103:247525 -k1,361:22304060,32654103:247524 -k1,361:23083081,32654103:247524 -k1,361:23982033,32654103:247524 -k1,361:26299840,32654103:247525 -k1,361:29075088,32654103:247524 -k1,361:31635378,32654103:247524 -k1,361:32583029,32654103:0 -) -(1,362:6630773,33495591:25952256,513147,134348 -k1,361:9289064,33495591:167268 -k1,361:12044349,33495591:167268 -k1,361:12863045,33495591:167268 -k1,361:14690995,33495591:167268 -k1,361:18126543,33495591:167268 -k1,361:20077046,33495591:167268 -k1,361:21941041,33495591:167268 -k1,361:23793895,33495591:167268 -k1,361:24988112,33495591:167268 -k1,361:25806808,33495591:167268 -k1,361:27608544,33495591:167268 -k1,361:28131672,33495591:167268 -k1,361:31149101,33495591:167268 -k1,361:32583029,33495591:0 -) -(1,362:6630773,34337079:25952256,513147,134348 -k1,361:7253447,34337079:164577 -k1,361:7949521,34337079:164577 -k1,361:9539507,34337079:164578 -k1,361:10355512,34337079:164577 -k1,361:11598812,34337079:164577 -k1,361:12711040,34337079:164577 -k1,361:14437340,34337079:164577 -k1,361:16457897,34337079:164577 -k1,361:18190096,34337079:164578 -k1,361:19848894,34337079:164577 -k1,361:22369490,34337079:164577 -k1,361:23216952,34337079:164577 -k1,361:24143057,34337079:164577 -k1,361:26700354,34337079:164578 -k1,361:28323762,34337079:164577 -k1,361:29818720,34337079:164577 -k1,361:32583029,34337079:0 -) -(1,362:6630773,35178567:25952256,513147,134348 -k1,361:7444917,35178567:198106 -k1,361:7998883,35178567:198106 -k1,361:10708984,35178567:198106 -k1,361:12884967,35178567:198106 -k1,361:15239208,35178567:198106 -k1,361:17220549,35178567:198106 -k1,361:19811373,35178567:198105 -k1,361:22729223,35178567:198106 -k1,361:23874980,35178567:198106 -k1,361:25634809,35178567:198106 -k1,361:26989625,35178567:198106 -k1,361:29048298,35178567:198106 -k1,361:29897832,35178567:198106 -k1,361:31821501,35178567:198106 -k1,361:32583029,35178567:0 -) -(1,362:6630773,36020055:25952256,505283,126483 -g1,361:8378618,36020055 -g1,361:9109344,36020055 -g1,361:11595780,36020055 -g1,361:14885032,36020055 -g1,361:15770423,36020055 -k1,362:32583029,36020055:12790662 -g1,362:32583029,36020055 -) -(1,363:6630773,37647975:25952256,505283,126483 -(1,363:6630773,37647975:2809528,485622,11795 -g1,363:6630773,37647975 -g1,363:9440301,37647975 -) -k1,363:32583029,37647975:19695534 -g1,363:32583029,37647975 -) -(1,365:6630773,38882679:25952256,513147,134348 -k1,364:7546311,38882679:287703 -k1,364:9435714,38882679:287703 -k1,364:12251141,38882679:287703 -k1,364:15025279,38882679:287702 -k1,364:15668842,38882679:287703 -k1,364:18154623,38882679:287703 -k1,364:21202047,38882679:287703 -k1,364:22021247,38882679:287703 -k1,364:25147970,38882679:287703 -k1,364:27003293,38882679:287702 -k1,364:29034909,38882679:287703 -k1,364:31391584,38882679:287703 -k1,364:32583029,38882679:0 -) -(1,365:6630773,39724167:25952256,513147,134348 -k1,364:10169062,39724167:290325 -k1,364:13727666,39724167:290324 -k1,364:15735034,39724167:290325 -k1,364:17741746,39724167:290324 -k1,364:18691363,39724167:290325 -k1,364:23066546,39724167:290324 -k1,364:24503096,39724167:290325 -k1,364:25885905,39724167:290324 -k1,364:26835522,39724167:290325 -k1,364:30004188,39724167:290325 -k1,364:30977397,39724167:290324 -k1,365:32583029,39724167:0 -) -(1,365:6630773,40565655:25952256,513147,134348 -k1,364:9798027,40565655:193230 -k1,364:13007225,40565655:193231 -k1,364:14332917,40565655:193230 -k1,364:16813354,40565655:193230 -k1,364:18849457,40565655:193231 -k1,364:19658725,40565655:193230 -k1,364:20871040,40565655:193230 -k1,364:22445114,40565655:193230 -k1,364:24558550,40565655:193231 -k1,364:27009495,40565655:193230 -k1,364:29068535,40565655:193230 -k1,364:29877804,40565655:193231 -k1,364:30426894,40565655:193230 -k1,364:32583029,40565655:0 -) -(1,365:6630773,41407143:25952256,505283,134348 -k1,364:10211482,41407143:146622 -k1,364:12276997,41407143:146621 -k1,364:16508478,41407143:146622 -k1,364:17787562,41407143:146622 -k1,364:20221391,41407143:146622 -k1,364:22210884,41407143:146621 -k1,364:22973544,41407143:146622 -k1,364:24139251,41407143:146622 -k1,364:26721191,41407143:146622 -k1,364:29632121,41407143:146621 -k1,364:30845014,41407143:146622 -k1,364:32583029,41407143:0 -) -(1,365:6630773,42248631:25952256,513147,134348 -k1,364:9903760,42248631:247190 -k1,364:11342394,42248631:247189 -k1,364:13916767,42248631:247190 -k1,364:15183042,42248631:247190 -k1,364:18106722,42248631:247190 -k1,364:21979363,42248631:247189 -k1,364:22842591,42248631:247190 -k1,364:24108866,42248631:247190 -k1,364:26152398,42248631:247190 -k1,364:27027422,42248631:247189 -k1,364:29607694,42248631:247190 -k1,364:32583029,42248631:0 -) -(1,365:6630773,43090119:25952256,513147,134348 -k1,364:7857607,43090119:207749 -k1,364:9750942,43090119:207749 -k1,364:11720299,43090119:207749 -k1,364:13796479,43090119:207749 -k1,364:15136690,43090119:207749 -k1,364:17533342,43090119:207749 -k1,364:20359910,43090119:207749 -k1,364:22026490,43090119:207749 -k1,364:24764584,43090119:207749 -k1,364:25631625,43090119:207749 -k1,364:28064977,43090119:207749 -k1,364:28628586,43090119:207749 -k1,364:31391584,43090119:207749 -k1,364:32583029,43090119:0 -) -(1,365:6630773,43931607:25952256,513147,7863 -g1,364:8807223,43931607 -k1,365:32583029,43931607:21344420 -g1,365:32583029,43931607 -) -(1,368:7679349,45428455:24903680,513147,134348 -(1,367:7679349,45428455:0,355205,0 -g1,367:7679349,45428455 -g1,367:6368629,45428455 -g1,367:6040949,45428455 -(1,367:6040949,45428455:1310720,355205,0 -k1,367:7351669,45428455:1310720 -(1,367:7351669,45428455:0,355205,0 -k1,367:6953210,45428455:-398459 -) -) -g1,367:7679349,45428455 -) -k1,367:8857388,45428455:280196 -k1,367:10596415,45428455:280196 -k1,367:14423420,45428455:280197 -k1,367:16009749,45428455:280196 -k1,367:18360227,45428455:280196 -k1,367:19588074,45428455:280196 -k1,367:22359293,45428455:280196 -k1,367:25227507,45428455:280197 -k1,367:26159131,45428455:280196 -k1,367:27898158,45428455:280196 -k1,367:31116333,45428455:280196 -k1,367:32583029,45428455:0 -) -] -(1,368:32583029,45706769:0,0,0 -g1,368:32583029,45706769 -) -) -] -(1,368:6630773,47279633:25952256,0,0 -h1,368:6630773,47279633:25952256,0,0 -) -] -(1,368:4262630,4025873:0,0,0 -[1,368:-473656,4025873:0,0,0 -(1,368:-473656,-710413:0,0,0 -(1,368:-473656,-710413:0,0,0 -g1,368:-473656,-710413 -) -g1,368:-473656,-710413 -) -] -) -] -!21417 -}26 -!11 -{27 -[1,390:4262630,47279633:28320399,43253760,0 -(1,390:4262630,4025873:0,0,0 -[1,390:-473656,4025873:0,0,0 -(1,390:-473656,-710413:0,0,0 -(1,390:-473656,-644877:0,0,0 -k1,390:-473656,-644877:-65536 -) -(1,390:-473656,4736287:0,0,0 -k1,390:-473656,4736287:5209943 -) -g1,390:-473656,-710413 -) -] -) -[1,390:6630773,47279633:25952256,43253760,0 -[1,390:6630773,4812305:25952256,786432,0 -(1,390:6630773,4812305:25952256,505283,134348 -(1,390:6630773,4812305:25952256,505283,134348 -g1,390:3078558,4812305 -[1,390:3078558,4812305:0,0,0 -(1,390:3078558,2439708:0,1703936,0 -k1,390:1358238,2439708:-1720320 -(1,135:1358238,2439708:1720320,1703936,0 -(1,135:1358238,2439708:1179648,16384,0 -r1,390:2537886,2439708:1179648,16384,0 -) -g1,135:3062174,2439708 -(1,135:3062174,2439708:16384,1703936,0 -[1,135:3062174,2439708:25952256,1703936,0 -(1,135:3062174,1915420:25952256,1179648,0 -(1,135:3062174,1915420:16384,1179648,0 -r1,390:3078558,1915420:16384,1179648,0 -) -k1,135:29014430,1915420:25935872 -g1,135:29014430,1915420 -) -] -) -) -) -] -[1,390:3078558,4812305:0,0,0 -(1,390:3078558,2439708:0,1703936,0 -g1,390:29030814,2439708 -g1,390:36135244,2439708 -(1,135:36135244,2439708:1720320,1703936,0 -(1,135:36135244,2439708:16384,1703936,0 -[1,135:36135244,2439708:25952256,1703936,0 -(1,135:36135244,1915420:25952256,1179648,0 -(1,135:36135244,1915420:16384,1179648,0 -r1,390:36151628,1915420:16384,1179648,0 -) -k1,135:62087500,1915420:25935872 -g1,135:62087500,1915420 -) -] -) -g1,135:36675916,2439708 -(1,135:36675916,2439708:1179648,16384,0 -r1,390:37855564,2439708:1179648,16384,0 -) -) -k1,390:3078556,2439708:-34777008 -) -] -[1,390:3078558,4812305:0,0,0 -(1,390:3078558,49800853:0,16384,2228224 -k1,390:1358238,49800853:-1720320 -(1,135:1358238,49800853:1720320,16384,2228224 -(1,135:1358238,49800853:1179648,16384,0 -r1,390:2537886,49800853:1179648,16384,0 -) -g1,135:3062174,49800853 -(1,135:3062174,52029077:16384,1703936,0 -[1,135:3062174,52029077:25952256,1703936,0 -(1,135:3062174,51504789:25952256,1179648,0 -(1,135:3062174,51504789:16384,1179648,0 -r1,390:3078558,51504789:16384,1179648,0 -) -k1,135:29014430,51504789:25935872 -g1,135:29014430,51504789 -) -] -) -) -) -] -[1,390:3078558,4812305:0,0,0 -(1,390:3078558,49800853:0,16384,2228224 -g1,390:29030814,49800853 -g1,390:36135244,49800853 -(1,135:36135244,49800853:1720320,16384,2228224 -(1,135:36135244,52029077:16384,1703936,0 -[1,135:36135244,52029077:25952256,1703936,0 -(1,135:36135244,51504789:25952256,1179648,0 -(1,135:36135244,51504789:16384,1179648,0 -r1,390:36151628,51504789:16384,1179648,0 -) -k1,135:62087500,51504789:25935872 -g1,135:62087500,51504789 -) -] -) -g1,135:36675916,49800853 -(1,135:36675916,49800853:1179648,16384,0 -r1,390:37855564,49800853:1179648,16384,0 -) -) -k1,390:3078556,49800853:-34777008 -) -] -g1,390:6630773,4812305 -k1,390:21845614,4812305:14417923 -g1,390:22668090,4812305 -g1,390:24054831,4812305 -g1,390:27195316,4812305 -g1,390:28604995,4812305 -g1,390:29789885,4812305 -) -) -] -[1,390:6630773,45706769:25952256,40108032,0 -(1,390:6630773,45706769:25952256,40108032,0 -(1,390:6630773,45706769:0,0,0 -g1,390:6630773,45706769 -) -[1,390:6630773,45706769:25952256,40108032,0 -(1,368:7679349,6254097:24903680,505283,126483 -k1,367:9833935,6254097:176709 -k1,367:11202088,6254097:176708 -k1,367:11994835,6254097:176709 -k1,367:13190629,6254097:176709 -k1,367:18367079,6254097:176708 -k1,367:19648725,6254097:176709 -k1,367:22475054,6254097:176708 -k1,367:23936269,6254097:176709 -k1,367:25283451,6254097:176709 -k1,367:28742857,6254097:176708 -k1,367:30122807,6254097:176709 -k1,367:32583029,6254097:0 -) -(1,368:7679349,7095585:24903680,505283,126483 -g1,367:10298823,7095585 -g1,367:12196090,7095585 -g1,367:13565792,7095585 -g1,367:15167491,7095585 -g1,367:16825551,7095585 -k1,368:32583029,7095585:12612405 -g1,368:32583029,7095585 -) -(1,369:7679349,8461361:24903680,513147,126483 -(1,368:7679349,8461361:0,355205,0 -g1,368:7679349,8461361 -g1,368:6368629,8461361 -g1,368:6040949,8461361 -(1,368:6040949,8461361:1310720,355205,0 -k1,368:7351669,8461361:1310720 -(1,368:7351669,8461361:0,355205,0 -k1,368:6953210,8461361:-398459 -) -) -g1,368:7679349,8461361 -) -k1,368:10322535,8461361:258331 -k1,368:10936726,8461361:258331 -k1,368:12725323,8461361:258331 -k1,368:16715929,8461361:258331 -k1,368:17633552,8461361:258331 -k1,368:18910967,8461361:258330 -k1,368:22019459,8461361:258331 -k1,368:23469235,8461361:258331 -k1,368:24493682,8461361:258331 -k1,368:25771098,8461361:258331 -k1,368:28602372,8461361:258331 -k1,368:32583029,8461361:0 -) -(1,369:7679349,9302849:24903680,513147,134348 -k1,368:9008474,9302849:256956 -k1,368:9731390,9302849:256955 -k1,368:10446443,9302849:256956 -k1,368:13560768,9302849:256955 -k1,368:14406237,9302849:256956 -k1,368:15682278,9302849:256956 -k1,368:18446640,9302849:256955 -k1,368:21757574,9302849:256956 -k1,368:24434118,9302849:256955 -k1,368:25882519,9302849:256956 -k1,368:27271281,9302849:256955 -k1,368:30438691,9302849:256956 -k1,368:32583029,9302849:0 -) -(1,369:7679349,10144337:24903680,505283,7863 -g1,368:9070023,10144337 -g1,368:10777891,10144337 -k1,369:32583028,10144337:18967428 -g1,369:32583028,10144337 -) -(1,370:7679349,11510113:24903680,513147,126483 -(1,369:7679349,11510113:0,355205,0 -g1,369:7679349,11510113 -g1,369:6368629,11510113 -g1,369:6040949,11510113 -(1,369:6040949,11510113:1310720,355205,0 -k1,369:7351669,11510113:1310720 -(1,369:7351669,11510113:0,355205,0 -k1,369:6953210,11510113:-398459 -) -) -g1,369:7679349,11510113 -) -k1,369:8330995,11510113:173889 -k1,369:9117646,11510113:173889 -k1,369:10057650,11510113:173888 -k1,369:13035169,11510113:173889 -k1,369:15639133,11510113:173889 -k1,369:16168882,11510113:173889 -k1,369:19519956,11510113:173889 -k1,369:20885290,11510113:173889 -k1,369:22917780,11510113:173889 -k1,369:24163837,11510113:173888 -k1,369:29011754,11510113:173889 -k1,369:30681830,11510113:173889 -k1,370:32583029,11510113:0 -) -(1,370:7679349,12351601:24903680,505283,126483 -g1,369:8851788,12351601 -g1,369:10335523,12351601 -g1,369:14120882,12351601 -g1,369:15339196,12351601 -g1,369:18214915,12351601 -g1,369:22069087,12351601 -g1,369:24136092,12351601 -k1,370:32583029,12351601:6008342 -g1,370:32583029,12351601 -) -(1,371:7679349,13717377:24903680,505283,126483 -(1,370:7679349,13717377:0,355205,0 -g1,370:7679349,13717377 -g1,370:6368629,13717377 -g1,370:6040949,13717377 -(1,370:6040949,13717377:1310720,355205,0 -k1,370:7351669,13717377:1310720 -(1,370:7351669,13717377:0,355205,0 -k1,370:6953210,13717377:-398459 -) -) -g1,370:7679349,13717377 -) -g1,370:8625033,13717377 -k1,371:32583028,13717377:21958492 -g1,371:32583028,13717377 -) -(1,372:7679349,15083153:24903680,513147,134348 -(1,371:7679349,15083153:0,355205,0 -g1,371:7679349,15083153 -g1,371:6368629,15083153 -g1,371:6040949,15083153 -(1,371:6040949,15083153:1310720,355205,0 -k1,371:7351669,15083153:1310720 -(1,371:7351669,15083153:0,355205,0 -k1,371:6953210,15083153:-398459 -) -) -g1,371:7679349,15083153 -) -k1,371:11340846,15083153:230687 -k1,371:12222960,15083153:230686 -k1,371:13472732,15083153:230687 -k1,371:15685883,15083153:230687 -k1,371:16678097,15083153:230686 -k1,371:20156748,15083153:230687 -k1,371:22089404,15083153:230686 -k1,371:24204906,15083153:230687 -k1,371:27530203,15083153:230687 -k1,371:29458927,15083153:230686 -k1,371:30860087,15083153:230687 -k1,371:32583029,15083153:0 -) -(1,372:7679349,15924641:24903680,505283,7863 -g1,371:8897663,15924641 -k1,372:32583029,15924641:21253980 -g1,372:32583029,15924641 -) -(1,374:6630773,17552561:25952256,513147,11795 -(1,374:6630773,17552561:2809528,485622,11795 -g1,374:6630773,17552561 -g1,374:9440301,17552561 -) -k1,374:32583029,17552561:18321900 -g1,374:32583029,17552561 -) -(1,377:6630773,18787265:25952256,513147,126484 -k1,376:10343388,18787265:307364 -k1,376:15196985,18787265:307364 -$1,376:15404079,18787265 -k1,376:16984807,18787265:0 -k1,376:17379989,18787265:0 -k1,376:17775171,18787265:0 -k1,376:18170353,18787265:0 -k1,376:23307719,18787265:0 -k1,376:23702901,18787265:0 -$1,376:25283629,18787265 -k1,376:25798087,18787265:307364 -k1,376:26636947,18787265:307363 -k1,376:27963396,18787265:307364 -k1,376:29605728,18787265:307364 -k1,377:32583029,18787265:0 -) -(1,377:6630773,19628753:25952256,513147,134348 -k1,376:10517912,19628753:224987 -k1,376:12825217,19628753:224961 -k1,376:15576617,19628753:224987 -k1,376:16937343,19628753:224987 -k1,376:18109981,19628753:224987 -k1,376:18923481,19628753:224987 -k1,376:19776302,19628753:224986 -k1,376:21602989,19628753:224987 -k1,376:23699029,19628753:224987 -k1,376:26984547,19628753:224987 -k1,376:28157185,19628753:224987 -k1,376:30873195,19628753:224987 -k1,377:32583029,19628753:0 -) -(1,377:6630773,20470241:25952256,513147,134348 -k1,376:8420070,20470241:191529 -k1,376:9803044,20470241:191529 -k1,376:11503211,20470241:191528 -k1,376:14456427,20470241:191529 -k1,376:15780418,20470241:191529 -k1,376:16719713,20470241:191529 -k1,376:17677358,20470241:191529 -k1,376:19153392,20470241:191528 -k1,376:20515394,20470241:191529 -k1,376:22237189,20470241:191529 -k1,376:23080146,20470241:191529 -k1,376:24260613,20470241:191529 -k1,376:24929899,20470241:191529 -k1,376:27190399,20470241:191528 -k1,376:27737788,20470241:191529 -k1,376:30867296,20470241:191529 -k1,376:32583029,20470241:0 -) -(1,377:6630773,21311729:25952256,513147,126483 -k1,376:8242260,21311729:230643 -k1,376:9757409,21311729:230643 -k1,376:10446149,21311729:230643 -k1,376:11208289,21311729:230643 -k1,376:13201850,21311729:230643 -k1,376:13788353,21311729:230643 -k1,376:15302191,21311729:230643 -k1,376:18470812,21311729:230642 -k1,376:19179212,21311729:230643 -k1,376:21064639,21311729:230643 -k1,376:21826779,21311729:230643 -k1,376:23749562,21311729:230643 -k1,376:26744514,21311729:230643 -k1,376:28259663,21311729:230643 -k1,376:30207349,21311729:230643 -k1,376:32583029,21311729:0 -) -(1,377:6630773,22153217:25952256,513147,126483 -g1,376:8545735,22153217 -g1,376:10275230,22153217 -g1,376:11804840,22153217 -g1,376:13462900,22153217 -g1,376:16426438,22153217 -g1,376:17157164,22153217 -k1,377:32583029,22153217:12489852 -g1,377:32583029,22153217 -) -(1,379:6630773,22994705:25952256,513147,134348 -h1,378:6630773,22994705:983040,0,0 -k1,378:12319429,22994705:159383 -k1,378:13579817,22994705:159383 -k1,378:14095061,22994705:159384 -k1,378:17714090,22994705:159383 -k1,378:20119392,22994705:159383 -k1,378:22133444,22994705:159383 -k1,378:23102197,22994705:159383 -k1,378:26786763,22994705:159384 -k1,378:28137591,22994705:159383 -k1,378:31391584,22994705:159383 -k1,378:32583029,22994705:0 -) -(1,379:6630773,23836193:25952256,505283,126483 -k1,378:9383191,23836193:164401 -k1,378:10651875,23836193:164402 -k1,378:11564042,23836193:164401 -k1,378:12777020,23836193:164402 -k1,378:14132866,23836193:164401 -k1,378:18211733,23836193:164402 -k1,378:20297650,23836193:164401 -k1,378:21856003,23836193:164402 -k1,378:23039489,23836193:164401 -k1,378:24805591,23836193:164402 -k1,378:27704809,23836193:164401 -k1,378:28860771,23836193:164402 -k1,378:30786780,23836193:164401 -k1,378:31563944,23836193:164402 -k1,378:32583029,23836193:0 -) -(1,379:6630773,24677681:25952256,513147,126483 -k1,378:7922581,24677681:219639 -k1,378:8801512,24677681:219639 -k1,378:11942747,24677681:219640 -k1,378:12640143,24677681:219639 -k1,378:13878867,24677681:219639 -k1,378:17193116,24677681:219639 -k1,378:18095641,24677681:219640 -k1,378:20903297,24677681:219639 -k1,378:22293409,24677681:219639 -k1,378:24127855,24677681:219639 -k1,378:25339054,24677681:219639 -k1,378:28557621,24677681:219640 -k1,378:30290486,24677681:219639 -k1,378:31680598,24677681:219639 -k1,379:32583029,24677681:0 -) -(1,379:6630773,25519169:25952256,505283,134348 -k1,378:9765062,25519169:185824 -k1,378:12311493,25519169:185824 -k1,378:16022499,25519169:185824 -k1,378:17378796,25519169:185824 -k1,378:19910154,25519169:185824 -k1,378:22324858,25519169:185825 -k1,378:23702127,25519169:185824 -k1,378:25927431,25519169:185824 -k1,378:27606821,25519169:185824 -k1,378:28478807,25519169:185824 -k1,378:30881059,25519169:185824 -k1,378:32583029,25519169:0 -) -(1,379:6630773,26360657:25952256,513147,134348 -k1,378:8688548,26360657:172960 -k1,378:11956118,26360657:172960 -k1,378:13320524,26360657:172961 -k1,378:16081501,26360657:172960 -k1,378:16937346,26360657:172960 -k1,378:18563895,26360657:172960 -k1,378:19719896,26360657:172961 -k1,378:21359552,26360657:172960 -k1,378:24100213,26360657:172960 -k1,378:26266123,26360657:172960 -k1,378:29027101,26360657:172961 -k1,378:29882946,26360657:172960 -k1,378:32583029,26360657:0 -) -(1,379:6630773,27202145:25952256,513147,126483 -k1,378:9993950,27202145:268567 -k1,378:11830137,27202145:268566 -k1,378:13117789,27202145:268567 -k1,378:15805944,27202145:268566 -k1,378:17455355,27202145:268567 -k1,378:20029478,27202145:268566 -k1,378:24361277,27202145:268567 -k1,378:25702012,27202145:268566 -k1,378:27897337,27202145:268567 -k1,378:31304422,27202145:268566 -k1,378:32583029,27202145:0 -) -(1,379:6630773,28043633:25952256,513147,134348 -k1,378:7471499,28043633:227964 -k1,378:10485399,28043633:227965 -k1,378:11997869,28043633:227964 -k1,378:13244918,28043633:227964 -k1,378:14906811,28043633:227965 -k1,378:15794067,28043633:227964 -k1,378:19116641,28043633:227964 -k1,378:20536050,28043633:227964 -k1,378:23352032,28043633:227965 -k1,378:24111493,28043633:227964 -k1,378:26912400,28043633:227964 -k1,378:28331810,28043633:227965 -k1,378:30976086,28043633:227964 -k1,379:32583029,28043633:0 -) -(1,379:6630773,28885121:25952256,513147,134348 -k1,378:7850464,28885121:153420 -k1,378:10196062,28885121:153419 -k1,378:11158852,28885121:153420 -k1,378:14738494,28885121:153420 -k1,378:18691690,28885121:153419 -k1,378:20628345,28885121:153420 -k1,378:22517158,28885121:153420 -k1,378:27390481,28885121:153420 -k1,378:28359168,28885121:153419 -k1,378:31821501,28885121:153420 -k1,378:32583029,28885121:0 -) -(1,379:6630773,29726609:25952256,513147,134348 -k1,378:9880638,29726609:211616 -k1,378:12334895,29726609:211615 -k1,378:15308198,29726609:211616 -k1,378:18567237,29726609:211615 -k1,378:21873463,29726609:211616 -k1,378:23276523,29726609:211615 -k1,378:26076156,29726609:211616 -k1,378:27572277,29726609:211615 -k1,378:28954366,29726609:211616 -k1,378:30432137,29726609:211615 -k1,378:32583029,29726609:0 -) -(1,379:6630773,30568097:25952256,513147,134348 -k1,378:10829307,30568097:235572 -k1,378:12808792,30568097:235572 -k1,378:14214838,30568097:235573 -k1,378:17181295,30568097:235572 -k1,378:19088690,30568097:235572 -k1,378:20515707,30568097:235572 -k1,378:23280313,30568097:235572 -k1,378:24198770,30568097:235572 -k1,378:27667234,30568097:235573 -k1,378:29840050,30568097:235572 -k1,378:31246095,30568097:235572 -k1,378:32583029,30568097:0 -) -(1,379:6630773,31409585:25952256,505283,7863 -k1,379:32583029,31409585:23105372 -g1,379:32583029,31409585 -) -(1,380:6630773,33037505:25952256,505283,134348 -(1,380:6630773,33037505:2809528,485622,11795 -g1,380:6630773,33037505 -g1,380:9440301,33037505 -) -g1,380:12908466,33037505 -k1,380:32583029,33037505:18090558 -g1,380:32583029,33037505 -) -(1,383:6630773,34272209:25952256,513147,134348 -k1,382:8552765,34272209:185288 -k1,382:10947927,34272209:185288 -k1,382:11749254,34272209:185289 -k1,382:12953627,34272209:185288 -k1,382:16883642,34272209:185288 -k1,382:17728222,34272209:185288 -k1,382:18269370,34272209:185288 -k1,382:22517235,34272209:185288 -k1,382:25363941,34272209:185289 -k1,382:26080726,34272209:185288 -k1,382:29373731,34272209:185288 -k1,382:32583029,34272209:0 -) -(1,383:6630773,35113697:25952256,513147,134348 -k1,382:8492159,35113697:163348 -k1,382:9825981,35113697:163349 -k1,382:12045193,35113697:163348 -k1,382:12859970,35113697:163349 -k1,382:15019545,35113697:163348 -k1,382:15538754,35113697:163349 -k1,382:16891580,35113697:163348 -k1,382:17706356,35113697:163348 -k1,382:18888790,35113697:163349 -k1,382:22508507,35113697:163348 -k1,382:23331148,35113697:163349 -k1,382:24626303,35113697:163348 -k1,382:26439849,35113697:163349 -k1,382:27262489,35113697:163348 -k1,382:30358574,35113697:163349 -k1,382:31563944,35113697:163348 -k1,382:32583029,35113697:0 -) -(1,383:6630773,35955185:25952256,513147,134348 -k1,382:9539026,35955185:231763 -k1,382:10422218,35955185:231764 -k1,382:11401747,35955185:231763 -k1,382:13370869,35955185:231763 -k1,382:14621718,35955185:231764 -k1,382:17049592,35955185:231763 -k1,382:19795972,35955185:231764 -k1,382:21046820,35955185:231763 -k1,382:22948440,35955185:231763 -k1,382:25040771,35955185:231764 -k1,382:25923962,35955185:231763 -k1,382:26903491,35955185:231763 -k1,382:28444009,35955185:231764 -k1,382:29327200,35955185:231763 -k1,382:32583029,35955185:0 -) -(1,383:6630773,36796673:25952256,513147,134348 -k1,382:7840786,36796673:190928 -k1,382:10881875,36796673:190928 -k1,382:12264248,36796673:190928 -k1,382:13968402,36796673:190928 -k1,382:17411882,36796673:190928 -k1,382:18621895,36796673:190928 -k1,382:20482680,36796673:190928 -k1,382:22534176,36796673:190929 -k1,382:23376532,36796673:190928 -k1,382:24315226,36796673:190928 -k1,382:25814908,36796673:190928 -k1,382:26657264,36796673:190928 -k1,382:28039637,36796673:190928 -k1,382:28696526,36796673:190928 -k1,382:29906539,36796673:190928 -k1,382:32583029,36796673:0 -) -(1,383:6630773,37638161:25952256,513147,134348 -k1,382:7927381,37638161:195603 -k1,382:9632934,37638161:195603 -k1,382:11883746,37638161:195603 -k1,382:12762235,37638161:195604 -k1,382:14197779,37638161:195603 -k1,382:17328084,37638161:195603 -k1,382:18990383,37638161:195603 -k1,382:19651947,37638161:195603 -k1,382:21018023,37638161:195603 -k1,382:22205186,37638161:195603 -k1,382:24345242,37638161:195603 -k1,382:24896706,37638161:195604 -k1,382:27768799,37638161:195603 -k1,382:30167067,37638161:195603 -k1,382:31124198,37638161:195603 -k1,382:32583029,37638161:0 -) -(1,383:6630773,38479649:25952256,513147,134348 -k1,382:12661289,38479649:224026 -k1,382:13544606,38479649:224025 -k1,382:15099013,38479649:224026 -k1,382:15737857,38479649:224001 -k1,382:18062312,38479649:224026 -k1,382:19305423,38479649:224026 -k1,382:21942484,38479649:224025 -k1,382:23185595,38479649:224026 -k1,382:26244708,38479649:224026 -k1,382:27487819,38479649:224026 -k1,382:29362041,38479649:224025 -k1,382:31298523,38479649:224026 -k1,382:32583029,38479649:0 -) -(1,383:6630773,39321137:25952256,505283,134348 -k1,382:9700479,39321137:220856 -k1,382:11053797,39321137:220856 -k1,382:13587420,39321137:220857 -k1,382:15943439,39321137:220856 -k1,382:17712911,39321137:220856 -k1,382:19392598,39321137:220856 -k1,382:22516044,39321137:220856 -k1,382:23944073,39321137:220856 -k1,382:25862968,39321137:220857 -k1,382:28341539,39321137:220856 -k1,382:29581480,39321137:220856 -k1,382:31298523,39321137:220856 -k1,382:32583029,39321137:0 -) -(1,383:6630773,40162625:25952256,513147,126483 -g1,382:9780433,40162625 -g1,382:10335522,40162625 -g1,382:12377623,40162625 -g1,382:15339195,40162625 -g1,382:17106045,40162625 -g1,382:18853890,40162625 -g1,382:20223592,40162625 -k1,383:32583029,40162625:9346747 -g1,383:32583029,40162625 -) -v1,385:6630773,41528401:0,393216,0 -(1,390:6630773,44722567:25952256,3587382,589824 -g1,390:6630773,44722567 -(1,390:6630773,44722567:25952256,3587382,589824 -(1,390:6630773,45312391:25952256,4177206,0 -[1,390:6630773,45312391:25952256,4177206,0 -(1,390:6630773,45312391:25952256,4150992,0 -r1,390:6656987,45312391:26214,4150992,0 -[1,390:6656987,45312391:25899828,4150992,0 -(1,390:6656987,44722567:25899828,2971344,0 -[1,390:7246811,44722567:24720180,2971344,0 -(1,386:7246811,42913108:24720180,1161885,196608 -(1,385:7246811,42913108:0,1161885,196608 -r1,390:8794447,42913108:1547636,1358493,196608 -k1,385:7246811,42913108:-1547636 -) -(1,385:7246811,42913108:1547636,1161885,196608 -) -k1,385:9087209,42913108:292762 -k1,385:10800793,42913108:292763 -k1,385:11744983,42913108:292762 -k1,385:14506486,42913108:292762 -k1,385:15155109,42913108:292763 -k1,385:19510448,42913108:292762 -k1,385:22464627,42913108:292762 -k1,385:26002733,42913108:292763 -k1,385:26782989,42913108:292668 -k1,385:29133582,42913108:292762 -k1,385:29957842,42913108:292763 -k1,385:30606464,42913108:292762 -k1,386:31966991,42913108:0 -) -(1,386:7246811,43754596:24720180,513147,134348 -k1,385:10572982,43754596:186341 -k1,385:11950767,43754596:186340 -k1,385:12823270,43754596:186341 -k1,385:15134287,43754596:186340 -k1,385:16006790,43754596:186341 -k1,385:18823090,43754596:186340 -k1,385:20659628,43754596:186341 -k1,385:21505261,43754596:186341 -k1,385:24767861,43754596:186340 -k1,385:26450389,43754596:186341 -k1,385:27921235,43754596:186340 -k1,385:30568453,43754596:186341 -k1,385:31966991,43754596:0 -) -(1,386:7246811,44596084:24720180,513147,126483 -k1,385:8147275,44596084:175636 -k1,385:12893393,44596084:175637 -k1,385:13424889,44596084:175636 -k1,385:16450687,44596084:175637 -k1,385:17104080,44596084:175636 -k1,385:20083347,44596084:175637 -k1,385:21957021,44596084:175636 -k1,385:23303131,44596084:175637 -k1,385:25009033,44596084:175636 -k1,385:25836098,44596084:175637 -k1,385:27104219,44596084:175636 -k1,385:28842890,44596084:175637 -k1,385:30874506,44596084:175636 -k1,385:31966991,44596084:0 -) -] -) -] -r1,390:32583029,45312391:26214,4150992,0 -) -] -) -) -g1,390:32583029,44722567 -) -] -(1,390:32583029,45706769:0,0,0 -g1,390:32583029,45706769 -) -) -] -(1,390:6630773,47279633:25952256,0,0 -h1,390:6630773,47279633:25952256,0,0 -) -] -(1,390:4262630,4025873:0,0,0 -[1,390:-473656,4025873:0,0,0 -(1,390:-473656,-710413:0,0,0 -(1,390:-473656,-710413:0,0,0 -g1,390:-473656,-710413 -) -g1,390:-473656,-710413 -) -] -) -] -!20866 -}27 -!11 -{28 -[1,404:4262630,47279633:28320399,43253760,0 -(1,404:4262630,4025873:0,0,0 -[1,404:-473656,4025873:0,0,0 -(1,404:-473656,-710413:0,0,0 -(1,404:-473656,-644877:0,0,0 -k1,404:-473656,-644877:-65536 -) -(1,404:-473656,4736287:0,0,0 -k1,404:-473656,4736287:5209943 -) -g1,404:-473656,-710413 -) -] -) -[1,404:6630773,47279633:25952256,43253760,0 -[1,404:6630773,4812305:25952256,786432,0 -(1,404:6630773,4812305:25952256,505283,126483 -(1,404:6630773,4812305:25952256,505283,126483 -g1,404:3078558,4812305 -[1,404:3078558,4812305:0,0,0 -(1,404:3078558,2439708:0,1703936,0 -k1,404:1358238,2439708:-1720320 -(1,135:1358238,2439708:1720320,1703936,0 -(1,135:1358238,2439708:1179648,16384,0 -r1,404:2537886,2439708:1179648,16384,0 -) -g1,135:3062174,2439708 -(1,135:3062174,2439708:16384,1703936,0 -[1,135:3062174,2439708:25952256,1703936,0 -(1,135:3062174,1915420:25952256,1179648,0 -(1,135:3062174,1915420:16384,1179648,0 -r1,404:3078558,1915420:16384,1179648,0 -) -k1,135:29014430,1915420:25935872 -g1,135:29014430,1915420 -) -] -) -) -) -] -[1,404:3078558,4812305:0,0,0 -(1,404:3078558,2439708:0,1703936,0 -g1,404:29030814,2439708 -g1,404:36135244,2439708 -(1,135:36135244,2439708:1720320,1703936,0 -(1,135:36135244,2439708:16384,1703936,0 -[1,135:36135244,2439708:25952256,1703936,0 -(1,135:36135244,1915420:25952256,1179648,0 -(1,135:36135244,1915420:16384,1179648,0 -r1,404:36151628,1915420:16384,1179648,0 -) -k1,135:62087500,1915420:25935872 -g1,135:62087500,1915420 -) -] -) -g1,135:36675916,2439708 -(1,135:36675916,2439708:1179648,16384,0 -r1,404:37855564,2439708:1179648,16384,0 -) -) -k1,404:3078556,2439708:-34777008 -) -] -[1,404:3078558,4812305:0,0,0 -(1,404:3078558,49800853:0,16384,2228224 -k1,404:1358238,49800853:-1720320 -(1,135:1358238,49800853:1720320,16384,2228224 -(1,135:1358238,49800853:1179648,16384,0 -r1,404:2537886,49800853:1179648,16384,0 -) -g1,135:3062174,49800853 -(1,135:3062174,52029077:16384,1703936,0 -[1,135:3062174,52029077:25952256,1703936,0 -(1,135:3062174,51504789:25952256,1179648,0 -(1,135:3062174,51504789:16384,1179648,0 -r1,404:3078558,51504789:16384,1179648,0 -) -k1,135:29014430,51504789:25935872 -g1,135:29014430,51504789 -) -] -) -) -) -] -[1,404:3078558,4812305:0,0,0 -(1,404:3078558,49800853:0,16384,2228224 -g1,404:29030814,49800853 -g1,404:36135244,49800853 -(1,135:36135244,49800853:1720320,16384,2228224 -(1,135:36135244,52029077:16384,1703936,0 -[1,135:36135244,52029077:25952256,1703936,0 -(1,135:36135244,51504789:25952256,1179648,0 -(1,135:36135244,51504789:16384,1179648,0 -r1,404:36151628,51504789:16384,1179648,0 -) -k1,135:62087500,51504789:25935872 -g1,135:62087500,51504789 -) -] -) -g1,135:36675916,49800853 -(1,135:36675916,49800853:1179648,16384,0 -r1,404:37855564,49800853:1179648,16384,0 -) -) -k1,404:3078556,49800853:-34777008 -) -] -g1,404:6630773,4812305 -g1,404:6630773,4812305 -g1,404:8450052,4812305 -g1,404:9127038,4812305 -g1,404:11555146,4812305 -g1,404:12354029,4812305 -g1,404:13687686,4812305 -g1,404:14872576,4812305 -g1,404:17978327,4812305 -g1,404:18780487,4812305 -g1,404:20103658,4812305 -g1,404:22103161,4812305 -k1,404:31786111,4812305:9682950 -) -) -] -[1,404:6630773,45706769:25952256,40108032,0 -(1,404:6630773,45706769:25952256,40108032,0 -(1,404:6630773,45706769:0,0,0 -g1,404:6630773,45706769 -) -[1,404:6630773,45706769:25952256,40108032,0 -v1,390:6630773,6254097:0,393216,0 -(1,390:6630773,14663727:25952256,8802846,616038 -g1,390:6630773,14663727 -(1,390:6630773,14663727:25952256,8802846,616038 -(1,390:6630773,15279765:25952256,9418884,0 -[1,390:6630773,15279765:25952256,9418884,0 -(1,390:6630773,15253551:25952256,9392670,0 -r1,404:6656987,15253551:26214,9392670,0 -[1,390:6656987,15253551:25899828,9392670,0 -(1,390:6656987,14663727:25899828,8213022,0 -[1,390:7246811,14663727:24720180,8213022,0 -(1,386:7246811,6963852:24720180,513147,134348 -k1,385:7790386,6963852:187715 -k1,385:9367464,6963852:187715 -k1,385:10489721,6963852:187714 -k1,385:13435846,6963852:187715 -k1,385:14239599,6963852:187715 -k1,385:15861242,6963852:187715 -k1,385:16463788,6963852:187703 -k1,385:17334388,6963852:187715 -k1,385:20254299,6963852:187715 -k1,385:23070663,6963852:187715 -k1,385:24647741,6963852:187715 -k1,385:26845444,6963852:187714 -k1,385:28052244,6963852:187715 -k1,385:30297134,6963852:187715 -k1,385:31966991,6963852:0 -) -(1,386:7246811,7805340:24720180,513147,126483 -k1,385:7946595,7805340:222027 -k1,385:9339094,7805340:222026 -k1,385:10665403,7805340:222027 -k1,385:14143258,7805340:222026 -k1,385:15384370,7805340:222027 -k1,385:18282886,7805340:222026 -k1,385:19880514,7805340:222027 -k1,385:21496491,7805340:222026 -k1,385:23177349,7805340:222027 -k1,385:24729756,7805340:222026 -k1,385:26514817,7805340:222027 -k1,385:28170771,7805340:222026 -k1,385:29563271,7805340:222027 -k1,385:31315563,7805340:222026 -k1,385:31966991,7805340:0 -) -(1,386:7246811,8646828:24720180,513147,134348 -g1,385:9876115,8646828 -g1,385:10431204,8646828 -g1,385:13248596,8646828 -g1,385:15527938,8646828 -g1,385:16386459,8646828 -g1,385:17043785,8646828 -g1,385:18527520,8646828 -g1,385:21187626,8646828 -g1,385:22405940,8646828 -k1,386:31966991,8646828:6710890 -g1,386:31966991,8646828 -) -(1,388:7246811,9488316:24720180,513147,134348 -h1,387:7246811,9488316:983040,0,0 -k1,387:10246175,9488316:241609 -k1,387:13599434,9488316:241610 -k1,387:14860128,9488316:241609 -k1,387:17159568,9488316:241609 -k1,387:18571650,9488316:241609 -k1,387:19945722,9488316:241610 -k1,387:21717597,9488316:241609 -k1,387:22610634,9488316:241609 -k1,387:25456644,9488316:241609 -k1,387:26717339,9488316:241610 -k1,387:28628805,9488316:241609 -k1,387:30061859,9488316:241609 -k1,388:31966991,9488316:0 -) -(1,388:7246811,10329804:24720180,513147,134348 -k1,387:9222340,10329804:219819 -k1,387:10645399,10329804:219818 -k1,387:12220503,10329804:219819 -k1,387:14452276,10329804:219818 -k1,387:15842568,10329804:219819 -k1,387:16713814,10329804:219818 -k1,387:19772653,10329804:219819 -k1,387:21011557,10329804:219819 -k1,387:24081536,10329804:219818 -k1,387:26736018,10329804:219819 -k1,387:28998593,10329804:219818 -k1,387:31611131,10329804:219819 -k1,387:31966991,10329804:0 -) -(1,388:7246811,11171292:24720180,513147,134348 -k1,387:9452469,11171292:148483 -k1,387:11752499,11171292:148483 -k1,387:12359079,11171292:148483 -k1,387:13039059,11171292:148483 -k1,387:14587391,11171292:148483 -k1,387:15387302,11171292:148483 -k1,387:17357686,11171292:148483 -k1,387:17964266,11171292:148483 -k1,387:19506700,11171292:148483 -k1,387:20674268,11171292:148483 -k1,387:22575184,11171292:148483 -k1,387:25387706,11171292:148483 -k1,387:26203345,11171292:148483 -k1,387:26766621,11171292:148433 -k1,387:28106549,11171292:148483 -k1,387:29386839,11171292:148483 -k1,387:31966991,11171292:0 -) -(1,388:7246811,12012780:24720180,505283,134348 -g1,387:9184055,12012780 -k1,388:31966992,12012780:21096040 -g1,388:31966992,12012780 -) -(1,390:7246811,12854268:24720180,513147,126483 -h1,389:7246811,12854268:983040,0,0 -k1,389:8669224,12854268:226381 -k1,389:10851883,12854268:226409 -k1,389:12125557,12854268:226409 -k1,389:13636472,12854268:226409 -k1,389:15685436,12854268:226408 -k1,389:17084284,12854268:226409 -k1,389:18376964,12854268:226409 -k1,389:19262664,12854268:226408 -k1,389:21143857,12854268:226409 -k1,389:23125976,12854268:226409 -k1,389:23565349,12854268:226381 -k1,389:26260499,12854268:226409 -k1,389:26842768,12854268:226409 -k1,389:29270530,12854268:226408 -k1,389:29955036,12854268:226409 -k1,389:31966991,12854268:0 -) -(1,390:7246811,13695756:24720180,513147,126483 -k1,389:8436793,13695756:222671 -k1,389:9310892,13695756:222671 -k1,389:11316798,13695756:222671 -k1,389:13436737,13695756:222672 -k1,389:17324181,13695756:222671 -k1,389:18565937,13695756:222671 -k1,389:21465098,13695756:222671 -k1,389:22879214,13695756:222671 -k1,389:24368041,13695756:222671 -k1,389:25609798,13695756:222672 -k1,389:27166782,13695756:222671 -k1,389:28048745,13695756:222671 -k1,389:29290501,13695756:222671 -k1,389:31966991,13695756:0 -) -(1,390:7246811,14537244:24720180,505283,126483 -g1,389:8637485,14537244 -g1,389:9192574,14537244 -g1,389:12004068,14537244 -g1,389:12886182,14537244 -g1,389:13441271,14537244 -g1,389:17739122,14537244 -g1,389:18747721,14537244 -g1,389:19928024,14537244 -k1,390:31966991,14537244:10534916 -g1,390:31966991,14537244 -) -] -) -] -r1,404:32583029,15253551:26214,9392670,0 -) -] -) -) -g1,390:32583029,14663727 -) -h1,390:6630773,15279765:0,0,0 -(1,392:6630773,18087333:25952256,32768,229376 -(1,392:6630773,18087333:0,32768,229376 -(1,392:6630773,18087333:5505024,32768,229376 -r1,404:12135797,18087333:5505024,262144,229376 -) -k1,392:6630773,18087333:-5505024 -) -(1,392:6630773,18087333:25952256,32768,0 -r1,404:32583029,18087333:25952256,32768,0 -) -) -(1,392:6630773,19691661:25952256,606339,151780 -(1,392:6630773,19691661:1974731,582746,14155 -g1,392:6630773,19691661 -g1,392:8605504,19691661 -) -g1,392:10859418,19691661 -g1,392:11772466,19691661 -g1,392:14883591,19691661 -g1,392:15920109,19691661 -g1,392:17557461,19691661 -g1,392:19065051,19691661 -g1,392:23050689,19691661 -g1,392:24065973,19691661 -g1,392:25799269,19691661 -k1,392:32583029,19691661:4398512 -g1,392:32583029,19691661 -) -(1,395:6630773,20926365:25952256,513147,126483 -k1,394:8018476,20926365:191016 -k1,394:9791530,20926365:191015 -k1,394:10514043,20926365:191016 -k1,394:12991609,20926365:191015 -k1,394:14576576,20926365:191016 -k1,394:15786677,20926365:191016 -k1,394:19671956,20926365:191015 -k1,394:21147478,20926365:191016 -k1,394:22508966,20926365:191015 -k1,394:23832444,20926365:191016 -k1,394:25141504,20926365:191016 -k1,394:26934219,20926365:191015 -k1,394:27784527,20926365:191016 -k1,394:28994627,20926365:191015 -k1,394:30681830,20926365:191016 -k1,395:32583029,20926365:0 -) -(1,395:6630773,21767853:25952256,505283,126483 -k1,394:8105660,21767853:171376 -k1,394:9468482,21767853:171377 -k1,394:10546221,21767853:171376 -k1,394:11403760,21767853:171377 -k1,394:13326913,21767853:171376 -k1,394:15200260,21767853:171377 -k1,394:18527850,21767853:171376 -k1,394:19385389,21767853:171377 -k1,394:21855114,21767853:171377 -k1,394:23519400,21767853:171376 -k1,394:24861249,21767853:171376 -k1,394:26024186,21767853:171377 -k1,394:27576406,21767853:171376 -k1,394:28918256,21767853:171377 -k1,394:32583029,21767853:0 -) -(1,395:6630773,22609341:25952256,513147,134348 -k1,394:7848986,22609341:199128 -k1,394:9669476,22609341:199129 -k1,394:12054885,22609341:199128 -k1,394:12913306,22609341:199129 -k1,394:14131519,22609341:199128 -k1,394:14745491,22609341:199129 -k1,394:17786915,22609341:199128 -k1,394:19177489,22609341:199129 -k1,394:20706998,22609341:199128 -k1,394:22357749,22609341:199129 -k1,394:25252373,22609341:199128 -k1,394:26134387,22609341:199129 -k1,394:29493006,22609341:199128 -k1,394:32583029,22609341:0 -) -(1,395:6630773,23450829:25952256,505283,134348 -k1,394:8977336,23450829:246134 -k1,394:10041360,23450829:246135 -k1,394:13705197,23450829:246134 -k1,394:15980326,23450829:246134 -k1,394:17396934,23450829:246135 -k1,394:18634628,23450829:246134 -k1,394:21719783,23450829:246135 -k1,394:22617345,23450829:246134 -k1,394:23955964,23450829:246134 -k1,394:25405340,23450829:246135 -k1,394:27233513,23450829:246134 -k1,394:28165809,23450829:246134 -k1,394:28767804,23450829:246135 -k1,394:30824698,23450829:246134 -k1,394:32583029,23450829:0 -) -(1,395:6630773,24292317:25952256,513147,126483 -g1,394:7777653,24292317 -g1,394:9435713,24292317 -g1,394:13279399,24292317 -g1,394:14137920,24292317 -g1,394:15356234,24292317 -g1,394:17385228,24292317 -g1,394:18251613,24292317 -k1,395:32583029,24292317:13742903 -g1,395:32583029,24292317 -) -(1,397:6630773,25133805:25952256,505283,134348 -h1,396:6630773,25133805:983040,0,0 -k1,396:8187288,25133805:158632 -k1,396:8877457,25133805:158672 -k1,396:9802245,25133805:158672 -k1,396:11245423,25133805:158672 -k1,396:11935591,25133805:158671 -k1,396:14392611,25133805:158672 -k1,396:15202711,25133805:158672 -k1,396:16957840,25133805:158672 -k1,396:19675038,25133805:158672 -k1,396:20599826,25133805:158672 -k1,396:21777583,25133805:158672 -k1,396:24927974,25133805:158672 -k1,396:25702684,25133805:158672 -k1,396:27064597,25133805:158672 -k1,396:28978979,25133805:158672 -k1,396:30209820,25133805:158672 -k1,396:30826589,25133805:158672 -k1,396:31516758,25133805:158672 -k1,396:32583029,25133805:0 -) -(1,397:6630773,25975293:25952256,513147,134348 -k1,396:7203927,25975293:217294 -k1,396:10903804,25975293:217294 -k1,396:12359073,25975293:217294 -k1,396:13235659,25975293:217294 -k1,396:15258470,25975293:217294 -k1,396:16852675,25975293:217294 -k1,396:17282943,25975293:217276 -k1,396:21286907,25975293:217294 -k1,396:22788707,25975293:217294 -k1,396:24176474,25975293:217294 -k1,396:25486253,25975293:217294 -k1,396:26474250,25975293:217294 -k1,396:28600608,25975293:217294 -k1,396:29500787,25975293:217294 -k1,396:30488784,25975293:217294 -k1,396:31966991,25975293:217294 -k1,396:32583029,25975293:0 -) -(1,397:6630773,26816781:25952256,513147,126483 -k1,396:9923432,26816781:171835 -k1,396:12519444,26816781:171835 -k1,396:12519444,26816781:0 -k1,396:12864950,26816781:171836 -k1,396:15460962,26816781:171835 -k1,396:16164294,26816781:171835 -k1,396:17716973,26816781:171835 -k1,396:20565954,26816781:171835 -k1,396:23156069,26816781:171836 -k1,396:27090326,26816781:171835 -k1,396:28683637,26816781:171835 -k1,396:32583029,26816781:0 -) -(1,397:6630773,27658269:25952256,505283,126483 -k1,396:8071528,27658269:249310 -k1,396:11104807,27658269:249310 -k1,396:12820812,27658269:249309 -k1,396:13686160,27658269:249310 -k1,396:16498583,27658269:249310 -k1,396:17939338,27658269:249310 -k1,396:20147518,27658269:249309 -k1,396:23234537,27658269:249310 -k1,396:24680534,27658269:249310 -k1,396:27492957,27658269:249310 -k1,396:30076003,27658269:249309 -k1,396:31773659,27658269:249310 -k1,397:32583029,27658269:0 -) -(1,397:6630773,28499757:25952256,505283,102891 -g1,396:10943696,28499757 -g1,396:13069683,28499757 -g1,396:14460357,28499757 -g1,396:15529905,28499757 -g1,396:16139389,28499757 -g1,396:17530063,28499757 -g1,396:19431262,28499757 -g1,396:21082113,28499757 -k1,397:32583029,28499757:7215517 -g1,397:32583029,28499757 -) -(1,400:6630773,29341245:25952256,513147,134348 -h1,398:6630773,29341245:983040,0,0 -k1,398:8597925,29341245:210132 -k1,398:10917006,29341245:210132 -k1,398:12825176,29341245:210132 -k1,398:15893333,29341245:210132 -k1,398:17988936,29341245:210132 -k1,398:20108132,29341245:210132 -k1,398:20969692,29341245:210132 -k1,398:22445980,29341245:210132 -k1,398:25413212,29341245:210132 -k1,398:29353653,29341245:210132 -k1,398:30755230,29341245:210132 -k1,400:32583029,29341245:0 -) -(1,400:6630773,30182733:25952256,513147,134348 -k1,398:7926896,30182733:156452 -k1,398:11394883,30182733:156453 -k1,398:12894168,30182733:156452 -k1,398:13821323,30182733:156452 -k1,398:17187073,30182733:156452 -k1,398:18752550,30182733:156453 -k1,399:22115023,30182733:156452 -k1,399:23219126,30182733:156452 -k1,399:24394663,30182733:156452 -k1,399:28683161,30182733:156453 -k1,399:29498905,30182733:156452 -k1,399:32583029,30182733:0 -) -(1,400:6630773,31024221:25952256,505283,134348 -k1,399:7071805,31024221:228040 -k1,399:8392360,31024221:228070 -k1,399:11044606,31024221:228069 -k1,399:14914511,31024221:228069 -k1,399:16184603,31024221:228070 -k1,399:18670387,31024221:228069 -k1,399:20101698,31024221:228070 -k1,399:21911806,31024221:228069 -k1,399:22352838,31024221:228040 -k1,399:24056123,31024221:228070 -k1,399:25797418,31024221:228069 -k1,399:27492183,31024221:228069 -k1,399:30144430,31024221:228070 -k1,399:31563944,31024221:228069 -k1,399:32583029,31024221:0 -) -(1,400:6630773,31865709:25952256,513147,134348 -k1,399:8140402,31865709:283450 -k1,399:10332916,31865709:283450 -k1,399:12785608,31865709:283450 -k1,399:14954529,31865709:283450 -k1,399:16338983,31865709:283449 -k1,399:19148846,31865709:283450 -k1,399:20379947,31865709:283450 -k1,399:21078156,31865709:283366 -k1,399:24042028,31865709:283449 -k1,399:25719429,31865709:283450 -k1,399:28825515,31865709:283450 -k1,399:31635378,31865709:283450 -k1,399:32583029,31865709:0 -) -(1,400:6630773,32707197:25952256,505283,173670 -[1,399:6759879,32707197:341312,473825,0 -(1,399:6759879,32569178:341312,335806,0 -) -] -(1,399:7328145,32880867:370934,473825,0 -) -k1,399:8473763,32707197:252362 -k1,399:10509361,32707197:252363 -k1,399:13348429,32707197:252362 -k1,399:14410161,32707197:252362 -k1,399:15018384,32707197:252363 -k1,399:16841644,32707197:252362 -k1,399:19362207,32707197:252362 -k1,399:20297455,32707197:252363 -k1,399:24730359,32707197:252362 -k1,399:26376672,32707197:252362 -k1,399:28331005,32707197:252363 -k1,399:29972730,32707197:252362 -k1,399:32583029,32707197:0 -) -(1,400:6630773,33548685:25952256,513147,134348 -k1,399:7540019,33548685:226361 -k1,399:11612033,33548685:226361 -k1,399:12995105,33548685:226362 -k1,399:14197297,33548685:226361 -k1,399:17662447,33548685:226361 -k1,399:18548100,33548685:226361 -k1,399:19130321,33548685:226361 -k1,399:21602602,33548685:226362 -k1,399:23683632,33548685:226361 -k1,399:24719363,33548685:226361 -k1,399:26543492,33548685:226361 -k1,399:27996032,33548685:226361 -k1,399:29535736,33548685:226362 -k1,399:31255663,33548685:226361 -k1,399:32168186,33548685:226361 -k1,400:32583029,33548685:0 -) -(1,400:6630773,34390173:25952256,513147,134348 -k1,399:9148900,34390173:183079 -k1,399:9863476,34390173:183079 -k1,399:11331062,34390173:183080 -k1,399:12533226,34390173:183079 -k1,399:14369778,34390173:183079 -k1,399:15866199,34390173:183079 -k1,399:17153560,34390173:183079 -k1,399:18084406,34390173:183080 -k1,399:20261746,34390173:183079 -k1,399:21838776,34390173:183079 -k1,399:24784198,34390173:183079 -k1,399:28039606,34390173:183080 -k1,399:29414130,34390173:183079 -k1,399:31483335,34390173:183079 -k1,400:32583029,34390173:0 -) -(1,400:6630773,35231661:25952256,513147,134348 -k1,399:8726669,35231661:176346 -k1,399:11956994,35231661:176347 -k1,399:14709560,35231661:176346 -k1,399:15572068,35231661:176346 -k1,399:18046763,35231661:176347 -k1,399:18905994,35231661:176346 -k1,399:21317773,35231661:176346 -k1,399:22255648,35231661:176347 -k1,399:23451079,35231661:176346 -k1,399:26389768,35231661:176346 -k1,399:29092528,35231661:176347 -k1,399:31966991,35231661:176346 -k1,399:32583029,35231661:0 -) -(1,400:6630773,36073149:25952256,473825,134348 -g1,399:7185862,36073149 -k1,400:32583029,36073149:22955296 -g1,400:32583029,36073149 -) -(1,402:6630773,36914637:25952256,505283,134348 -h1,401:6630773,36914637:983040,0,0 -k1,401:9567586,36914637:170538 -k1,401:9951088,36914637:170510 -k1,401:12378031,36914637:170538 -k1,401:14283962,36914637:170538 -k1,401:15043013,36914637:170538 -k1,401:17186185,36914637:170538 -k1,401:18529162,36914637:170538 -k1,401:21255604,36914637:170538 -k1,401:22724410,36914637:170538 -k1,401:23107912,36914637:170510 -k1,401:24485623,36914637:170538 -k1,401:26391554,36914637:170538 -k1,401:28264062,36914637:170538 -k1,401:30847636,36914637:170538 -k1,401:32583029,36914637:0 -) -(1,402:6630773,37756125:25952256,505283,134348 -k1,401:7909078,37756125:259220 -k1,401:11222276,37756125:259220 -k1,401:13727415,37756125:259220 -k1,401:15489375,37756125:259219 -k1,401:16104455,37756125:259220 -k1,401:17220231,37756125:259220 -k1,401:19303318,37756125:259220 -k1,401:20753983,37756125:259220 -k1,401:24247405,37756125:259220 -k1,401:25900575,37756125:259219 -k1,401:29481815,37756125:259220 -k1,401:30427197,37756125:259220 -k1,401:31495787,37756125:259220 -k1,401:32583029,37756125:0 -) -(1,402:6630773,38597613:25952256,513147,134348 -k1,401:8027181,38597613:189235 -k1,401:11174056,38597613:189235 -k1,401:12559978,38597613:189235 -k1,401:14124815,38597613:189236 -k1,401:17767797,38597613:189235 -k1,401:19541037,38597613:189235 -k1,401:23236448,38597613:189235 -k1,401:24819634,38597613:189235 -k1,401:25779572,38597613:189235 -k1,401:27877872,38597613:189236 -k1,401:29274280,38597613:189235 -k1,401:30411166,38597613:189235 -k1,401:32583029,38597613:0 -) -(1,402:6630773,39439101:25952256,505283,126483 -k1,401:8649401,39439101:133157 -k1,401:9989731,39439101:133157 -k1,401:12179409,39439101:133158 -k1,401:15096535,39439101:133157 -k1,401:16605293,39439101:133157 -k1,401:18624576,39439101:133157 -k1,401:21568572,39439101:133157 -k1,401:24451620,39439101:133157 -k1,401:26385052,39439101:133158 -k1,401:27499283,39439101:133157 -k1,401:28996244,39439101:133157 -k1,401:32583029,39439101:0 -) -(1,402:6630773,40280589:25952256,513147,134348 -k1,401:7050852,40280589:207087 -k1,401:10528848,40280589:207094 -k1,401:11906416,40280589:207095 -k1,401:12764939,40280589:207095 -k1,401:14064518,40280589:207094 -k1,401:15042316,40280589:207095 -k1,401:16336645,40280589:207087 -k1,401:17491391,40280589:207095 -k1,401:18286998,40280589:207094 -k1,401:20918270,40280589:207095 -k1,401:21656862,40280589:207095 -k1,401:25018204,40280589:207094 -k1,401:26579273,40280589:207095 -k1,401:29460237,40280589:207095 -k1,401:30739500,40280589:207094 -k1,401:31412556,40280589:207095 -k1,401:32583029,40280589:0 -) -(1,402:6630773,41122077:25952256,513147,134348 -k1,401:7651868,41122077:205827 -k1,401:8923965,41122077:205826 -k1,401:10276017,41122077:205827 -k1,401:11113610,41122077:205826 -k1,401:12849703,41122077:205827 -k1,401:13411390,41122077:205827 -k1,401:16379559,41122077:205826 -k1,401:17519929,41122077:205827 -k1,401:18385047,41122077:205826 -k1,401:21370256,41122077:205827 -k1,401:23069649,41122077:205827 -k1,401:23961637,41122077:205826 -k1,401:27673640,41122077:205827 -k1,401:29273417,41122077:205826 -k1,401:31900144,41122077:205827 -k1,401:32583029,41122077:0 -) -(1,402:6630773,41963565:25952256,513147,126483 -k1,401:7770182,41963565:147849 -k1,401:10252423,41963565:147849 -k1,401:12892606,41963565:147849 -k1,401:14434407,41963565:147850 -k1,401:15601341,41963565:147849 -k1,401:17930228,41963565:147849 -k1,401:19338990,41963565:147849 -k1,401:20657312,41963565:147849 -k1,401:22142095,41963565:147849 -k1,401:23838560,41963565:147849 -k1,401:24637837,41963565:147849 -k1,401:25692050,41963565:147850 -k1,401:26858984,41963565:147849 -k1,401:28390298,41963565:147849 -k1,401:29799060,41963565:147849 -k1,401:32583029,41963565:0 -) -(1,402:6630773,42805053:25952256,513147,134349 -g1,401:8397623,42805053 -$1,401:8397623,42805053 -g1,401:9978351,42805053 -g1,401:10373533,42805053 -g1,401:10768715,42805053 -g1,401:11163897,42805053 -g1,401:12744625,42805053 -g1,401:13139807,42805053 -$1,401:14325353,42805053 -k1,402:32583029,42805053:18084006 -g1,402:32583029,42805053 -) -(1,404:6630773,43646541:25952256,513147,126483 -h1,403:6630773,43646541:983040,0,0 -k1,403:8955087,43646541:144587 -k1,403:12091392,43646541:144586 -k1,403:12852017,43646541:144587 -k1,403:14199844,43646541:144586 -k1,403:15926470,43646541:144587 -k1,403:17786789,43646541:144586 -k1,403:19023861,43646541:144587 -k1,403:19827739,43646541:144586 -k1,403:22203827,43646541:144587 -k1,403:24162451,43646541:144587 -k1,403:27091006,43646541:144586 -k1,403:27650381,43646541:144532 -k1,403:30867296,43646541:144587 -k1,404:32583029,43646541:0 -) -(1,404:6630773,44488029:25952256,513147,134348 -k1,403:8418923,44488029:206766 -k1,403:10511160,44488029:206766 -k1,403:11822209,44488029:206767 -k1,403:12776741,44488029:206766 -k1,403:15720946,44488029:206766 -k1,403:17495333,44488029:206766 -k1,403:19755997,44488029:206766 -k1,403:21234161,44488029:206766 -k1,403:22100220,44488029:206767 -k1,403:24119712,44488029:206766 -k1,403:28306478,44488029:206766 -k1,403:29799060,44488029:206766 -k1,403:32583029,44488029:0 -) -(1,404:6630773,45329517:25952256,513147,134348 -k1,403:9394973,45329517:205674 -k1,403:11654544,45329517:205673 -k1,403:14562267,45329517:205674 -k1,403:16157304,45329517:205674 -k1,403:17627823,45329517:205674 -k1,403:19024942,45329517:205674 -k1,403:20543957,45329517:205673 -k1,403:23146938,45329517:205674 -k1,403:24004040,45329517:205674 -k1,403:25412954,45329517:205673 -k1,403:27374338,45329517:205674 -k1,403:28776699,45329517:205674 -k1,403:32583029,45329517:0 -) -] -(1,404:32583029,45706769:0,0,0 -g1,404:32583029,45706769 -) -) -] -(1,404:6630773,47279633:25952256,0,0 -h1,404:6630773,47279633:25952256,0,0 -) -] -(1,404:4262630,4025873:0,0,0 -[1,404:-473656,4025873:0,0,0 -(1,404:-473656,-710413:0,0,0 -(1,404:-473656,-710413:0,0,0 -g1,404:-473656,-710413 -) -g1,404:-473656,-710413 -) -] -) -] -!23545 -}28 -!11 -{29 -[1,416:4262630,47279633:28320399,43253760,0 -(1,416:4262630,4025873:0,0,0 -[1,416:-473656,4025873:0,0,0 -(1,416:-473656,-710413:0,0,0 -(1,416:-473656,-644877:0,0,0 -k1,416:-473656,-644877:-65536 -) -(1,416:-473656,4736287:0,0,0 -k1,416:-473656,4736287:5209943 -) -g1,416:-473656,-710413 -) -] -) -[1,416:6630773,47279633:25952256,43253760,0 -[1,416:6630773,4812305:25952256,786432,0 -(1,416:6630773,4812305:25952256,505283,134348 -(1,416:6630773,4812305:25952256,505283,134348 -g1,416:3078558,4812305 -[1,416:3078558,4812305:0,0,0 -(1,416:3078558,2439708:0,1703936,0 -k1,416:1358238,2439708:-1720320 -(1,135:1358238,2439708:1720320,1703936,0 -(1,135:1358238,2439708:1179648,16384,0 -r1,416:2537886,2439708:1179648,16384,0 -) -g1,135:3062174,2439708 -(1,135:3062174,2439708:16384,1703936,0 -[1,135:3062174,2439708:25952256,1703936,0 -(1,135:3062174,1915420:25952256,1179648,0 -(1,135:3062174,1915420:16384,1179648,0 -r1,416:3078558,1915420:16384,1179648,0 -) -k1,135:29014430,1915420:25935872 -g1,135:29014430,1915420 -) -] -) -) -) -] -[1,416:3078558,4812305:0,0,0 -(1,416:3078558,2439708:0,1703936,0 -g1,416:29030814,2439708 -g1,416:36135244,2439708 -(1,135:36135244,2439708:1720320,1703936,0 -(1,135:36135244,2439708:16384,1703936,0 -[1,135:36135244,2439708:25952256,1703936,0 -(1,135:36135244,1915420:25952256,1179648,0 -(1,135:36135244,1915420:16384,1179648,0 -r1,416:36151628,1915420:16384,1179648,0 -) -k1,135:62087500,1915420:25935872 -g1,135:62087500,1915420 -) -] -) -g1,135:36675916,2439708 -(1,135:36675916,2439708:1179648,16384,0 -r1,416:37855564,2439708:1179648,16384,0 -) -) -k1,416:3078556,2439708:-34777008 -) -] -[1,416:3078558,4812305:0,0,0 -(1,416:3078558,49800853:0,16384,2228224 -k1,416:1358238,49800853:-1720320 -(1,135:1358238,49800853:1720320,16384,2228224 -(1,135:1358238,49800853:1179648,16384,0 -r1,416:2537886,49800853:1179648,16384,0 -) -g1,135:3062174,49800853 -(1,135:3062174,52029077:16384,1703936,0 -[1,135:3062174,52029077:25952256,1703936,0 -(1,135:3062174,51504789:25952256,1179648,0 -(1,135:3062174,51504789:16384,1179648,0 -r1,416:3078558,51504789:16384,1179648,0 -) -k1,135:29014430,51504789:25935872 -g1,135:29014430,51504789 -) -] -) -) -) -] -[1,416:3078558,4812305:0,0,0 -(1,416:3078558,49800853:0,16384,2228224 -g1,416:29030814,49800853 -g1,416:36135244,49800853 -(1,135:36135244,49800853:1720320,16384,2228224 -(1,135:36135244,52029077:16384,1703936,0 -[1,135:36135244,52029077:25952256,1703936,0 -(1,135:36135244,51504789:25952256,1179648,0 -(1,135:36135244,51504789:16384,1179648,0 -r1,416:36151628,51504789:16384,1179648,0 -) -k1,135:62087500,51504789:25935872 -g1,135:62087500,51504789 -) -] -) -g1,135:36675916,49800853 -(1,135:36675916,49800853:1179648,16384,0 -r1,416:37855564,49800853:1179648,16384,0 -) -) -k1,416:3078556,49800853:-34777008 -) -] -g1,416:6630773,4812305 -k1,416:21845614,4812305:14417923 -g1,416:22668090,4812305 -g1,416:24054831,4812305 -g1,416:27195316,4812305 -g1,416:28604995,4812305 -g1,416:29789885,4812305 -) -) -] -[1,416:6630773,45706769:25952256,40108032,0 -(1,416:6630773,45706769:25952256,40108032,0 -(1,416:6630773,45706769:0,0,0 -g1,416:6630773,45706769 -) -[1,416:6630773,45706769:25952256,40108032,0 -(1,404:6630773,6254097:25952256,513147,134348 -k1,403:9380827,6254097:169902 -k1,403:12252778,6254097:169902 -k1,403:16015364,6254097:169902 -k1,403:20023054,6254097:169902 -k1,403:21384401,6254097:169902 -k1,403:23365718,6254097:169902 -k1,403:24859448,6254097:169903 -k1,403:25688642,6254097:169902 -k1,403:26877629,6254097:169902 -k1,403:29115847,6254097:169902 -k1,403:29945041,6254097:169902 -k1,403:30881059,6254097:169902 -k1,403:32583029,6254097:0 -) -(1,404:6630773,7095585:25952256,505283,134348 -k1,403:9823925,7095585:282698 -k1,403:11619850,7095585:282699 -k1,403:12518586,7095585:282698 -k1,403:13820369,7095585:282698 -k1,403:15858778,7095585:282699 -k1,403:19991061,7095585:282698 -k1,403:21083130,7095585:282699 -k1,403:24325434,7095585:282698 -k1,403:25196645,7095585:282698 -k1,403:26561343,7095585:282699 -k1,403:29441888,7095585:282698 -k1,403:32583029,7095585:0 -) -(1,404:6630773,7937073:25952256,513147,126483 -k1,403:7998162,7937073:175944 -k1,403:9876075,7937073:175943 -k1,403:11633403,7937073:175944 -k1,403:12800907,7937073:175944 -k1,403:15760820,7937073:175944 -k1,403:18088310,7937073:175943 -k1,403:18892089,7937073:175944 -k1,403:20819810,7937073:175944 -k1,403:22693136,7937073:175944 -k1,403:23888164,7937073:175943 -k1,403:24711581,7937073:175921 -k1,403:26316210,7937073:175944 -k1,403:27104915,7937073:175943 -k1,403:28739690,7937073:175944 -k1,403:31900144,7937073:175944 -k1,403:32583029,7937073:0 -) -(1,404:6630773,8778561:25952256,513147,126483 -k1,403:8902775,8778561:199098 -k1,403:10234336,8778561:199099 -k1,403:12156376,8778561:199098 -k1,403:13685855,8778561:199098 -k1,403:14536381,8778561:199098 -k1,403:16704837,8778561:199099 -k1,403:18716661,8778561:199098 -k1,403:19598644,8778561:199098 -k1,403:21177930,8778561:199098 -k1,403:22713963,8778561:199099 -k1,403:24379757,8778561:199098 -k1,403:25326621,8778561:199098 -k1,403:28284129,8778561:199098 -k1,403:29099266,8778561:199099 -k1,403:30317449,8778561:199098 -k1,403:32583029,8778561:0 -) -(1,404:6630773,9620049:25952256,505283,134348 -k1,403:9948256,9620049:241223 -k1,403:12133277,9620049:241223 -k1,403:13002335,9620049:241223 -k1,403:16083232,9620049:241222 -k1,403:16680315,9620049:241223 -k1,403:18190315,9620049:241223 -k1,403:19567277,9620049:241223 -k1,403:23325162,9620049:241223 -k1,403:24585470,9620049:241223 -k1,403:26408731,9620049:241222 -k1,403:27782416,9620049:241223 -k1,403:28771405,9620049:241223 -k1,403:31796597,9620049:241223 -k1,403:32583029,9620049:0 -) -(1,404:6630773,10461537:25952256,513147,126484 -g1,403:8211501,10461537 -g1,403:8606683,10461537 -g1,403:9001865,10461537 -g1,403:9397047,10461537 -g1,403:10582593,10461537 -g1,403:10977775,10461537 -(1,403:13744049,10559851:32768,0,0 -) -g1,403:15357545,10461537 -g1,403:15752727,10461537 -$1,403:17333455,10461537 -k1,404:32583029,10461537:15075904 -g1,404:32583029,10461537 -) -(1,405:6630773,13269105:25952256,32768,229376 -(1,405:6630773,13269105:0,32768,229376 -(1,405:6630773,13269105:5505024,32768,229376 -r1,416:12135797,13269105:5505024,262144,229376 -) -k1,405:6630773,13269105:-5505024 -) -(1,405:6630773,13269105:25952256,32768,0 -r1,416:32583029,13269105:25952256,32768,0 -) -) -(1,405:6630773,14873433:25952256,606339,161218 -(1,405:6630773,14873433:1974731,573309,0 -g1,405:6630773,14873433 -g1,405:8605504,14873433 -) -g1,405:11813360,14873433 -k1,405:32583030,14873433:17773364 -g1,405:32583030,14873433 -) -(1,407:6630773,16108137:25952256,513147,134348 -k1,406:10672004,16108137:247352 -k1,406:11867006,16108137:247351 -k1,406:14389768,16108137:247352 -k1,406:17039669,16108137:247351 -k1,406:18278581,16108137:247352 -k1,406:21916765,16108137:247351 -k1,406:22973487,16108137:247352 -k1,406:24551219,16108137:247351 -k1,406:25969044,16108137:247352 -k1,406:27612967,16108137:247351 -k1,406:28511747,16108137:247352 -k1,406:29851583,16108137:247351 -k1,406:30687448,16108137:247352 -k1,406:31412556,16108137:247351 -k1,406:32583029,16108137:0 -) -(1,407:6630773,16949625:25952256,513147,134348 -k1,406:9510097,16949625:217907 -k1,406:12334371,16949625:217907 -k1,406:15075415,16949625:217908 -k1,406:17054930,16949625:217907 -k1,406:18624845,16949625:217907 -k1,406:20728878,16949625:217907 -k1,406:22699873,16949625:217907 -k1,406:23600665,16949625:217907 -k1,406:25443865,16949625:217908 -k1,406:26832245,16949625:217907 -k1,406:29006402,16949625:217907 -k1,406:31015408,16949625:217907 -k1,406:32583029,16949625:0 -) -(1,407:6630773,17791113:25952256,505283,134348 -k1,406:9500058,17791113:267506 -k1,406:10418992,17791113:267506 -k1,406:12301305,17791113:267506 -k1,406:14071552,17791113:267506 -k1,406:16674106,17791113:267506 -k1,406:19469990,17791113:267505 -k1,406:21252033,17791113:267506 -k1,406:22051036,17791113:267506 -k1,406:24375062,17791113:267506 -k1,406:26155794,17791113:267506 -k1,406:29751218,17791113:267506 -k1,406:32583029,17791113:0 -) -(1,407:6630773,18632601:25952256,513147,126483 -k1,406:7814453,18632601:198019 -k1,406:9503417,18632601:198020 -k1,406:11226458,18632601:198019 -k1,406:14382773,18632601:198020 -k1,406:15772237,18632601:198019 -k1,406:19377474,18632601:198020 -k1,406:21376422,18632601:198019 -k1,406:22678724,18632601:198020 -k1,406:23624509,18632601:198019 -k1,406:28550952,18632601:198020 -k1,406:29226728,18632601:198019 -k1,406:30595221,18632601:198020 -k1,406:31970267,18632601:198019 -k1,406:32583029,18632601:0 -) -(1,407:6630773,19474089:25952256,513147,134348 -k1,406:9065314,19474089:176826 -k1,406:9656960,19474089:176803 -k1,406:11329973,19474089:176826 -k1,406:12791304,19474089:176825 -k1,406:13499627,19474089:176826 -k1,406:15435439,19474089:176826 -k1,406:16263692,19474089:176825 -k1,406:17188284,19474089:176826 -k1,406:19687706,19474089:176826 -k1,406:21055976,19474089:176825 -k1,406:22708017,19474089:176826 -k1,406:24576982,19474089:176825 -k1,406:28065342,19474089:176826 -k1,406:29636119,19474089:176826 -k1,406:30440123,19474089:176825 -k1,406:31900144,19474089:176826 -k1,407:32583029,19474089:0 -) -(1,407:6630773,20315577:25952256,513147,134348 -k1,406:8259044,20315577:187790 -k1,406:10849385,20315577:187791 -k1,406:12224687,20315577:187790 -k1,406:14898259,20315577:187791 -k1,406:15702087,20315577:187790 -k1,406:20289965,20315577:187791 -k1,406:23960338,20315577:187790 -k1,406:25339574,20315577:187791 -k1,406:26843982,20315577:187790 -k1,406:28832702,20315577:187791 -k1,406:30152954,20315577:187790 -k1,406:32583029,20315577:0 -) -(1,407:6630773,21157065:25952256,513147,134348 -k1,406:7204570,21157065:217937 -k1,406:9590438,21157065:217937 -k1,406:16870534,21157065:217936 -k1,406:18515190,21157065:217937 -k1,406:19392419,21157065:217937 -k1,406:23962602,21157065:217937 -k1,406:24866701,21157065:217937 -k1,406:25855341,21157065:217937 -k1,406:28397184,21157065:217936 -k1,406:29806566,21157065:217937 -k1,406:31412556,21157065:217937 -k1,406:32583029,21157065:0 -) -(1,407:6630773,21998553:25952256,513147,126483 -g1,406:9028735,21998553 -g1,406:10247049,21998553 -g1,406:14634684,21998553 -g1,406:16636808,21998553 -g1,406:17495329,21998553 -g1,406:18713643,21998553 -k1,407:32583029,21998553:12026514 -g1,407:32583029,21998553 -) -] -(1,416:32583029,45706769:0,0,0 -g1,416:32583029,45706769 -) -) -] -(1,416:6630773,47279633:25952256,0,0 -h1,416:6630773,47279633:25952256,0,0 -) -] -(1,416:4262630,4025873:0,0,0 -[1,416:-473656,4025873:0,0,0 -(1,416:-473656,-710413:0,0,0 -(1,416:-473656,-710413:0,0,0 -g1,416:-473656,-710413 -) -g1,416:-473656,-710413 -) -] -) -] -!10280 -}29 -!11 -{30 -[1,439:4262630,47279633:28320399,43253760,0 -(1,439:4262630,4025873:0,0,0 -[1,439:-473656,4025873:0,0,0 -(1,439:-473656,-710413:0,0,0 -(1,439:-473656,-644877:0,0,0 -k1,439:-473656,-644877:-65536 -) -(1,439:-473656,4736287:0,0,0 -k1,439:-473656,4736287:5209943 -) -g1,439:-473656,-710413 -) -] -) -[1,439:6630773,47279633:25952256,43253760,0 -[1,439:6630773,4812305:25952256,786432,0 -(1,439:6630773,4812305:25952256,0,0 -(1,439:6630773,4812305:25952256,0,0 -g1,439:3078558,4812305 -[1,439:3078558,4812305:0,0,0 -(1,439:3078558,2439708:0,1703936,0 -k1,439:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,439:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,439:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,439:3078558,4812305:0,0,0 -(1,439:3078558,2439708:0,1703936,0 -g1,439:29030814,2439708 -g1,439:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,439:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,439:37855564,2439708:1179648,16384,0 -) -) -k1,439:3078556,2439708:-34777008 -) -] -[1,439:3078558,4812305:0,0,0 -(1,439:3078558,49800853:0,16384,2228224 -k1,439:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,439:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,439:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,439:3078558,4812305:0,0,0 -(1,439:3078558,49800853:0,16384,2228224 -g1,439:29030814,49800853 -g1,439:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,439:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,439:37855564,49800853:1179648,16384,0 -) -) -k1,439:3078556,49800853:-34777008 -) -] -g1,439:6630773,4812305 -) -) -] -[1,439:6630773,45706769:25952256,40108032,0 -(1,439:6630773,45706769:25952256,40108032,0 -(1,439:6630773,45706769:0,0,0 -g1,439:6630773,45706769 -) -[1,439:6630773,45706769:25952256,40108032,0 -[1,416:6630773,11663733:25952256,6064996,0 -(1,416:6630773,6633157:25952256,1165492,0 -h1,416:6630773,6633157:0,0,0 -k1,416:20096848,6633157:12486181 -k1,416:32583029,6633157:12486181 -) -(1,416:6630773,7333093:25952256,32768,229376 -(1,416:6630773,7333093:0,32768,229376 -(1,416:6630773,7333093:5505024,32768,229376 -r1,439:12135797,7333093:5505024,262144,229376 -) -k1,416:6630773,7333093:-5505024 -) -(1,416:6630773,7333093:25952256,32768,0 -r1,439:32583029,7333093:25952256,32768,0 -) -) -(1,416:6630773,9128789:25952256,909509,241827 -h1,416:6630773,9128789:0,0,0 -g1,416:9126908,9128789 -g1,416:10294760,9128789 -g1,416:16260240,9128789 -g1,416:21184091,9128789 -g1,416:23721514,9128789 -k1,416:31367992,9128789:1215037 -k1,416:32583029,9128789:1215037 -) -(1,416:6630773,9828725:25952256,32768,0 -(1,416:6630773,9828725:5505024,32768,0 -r1,439:12135797,9828725:5505024,32768,0 -) -k1,416:22359413,9828725:10223616 -k1,416:32583029,9828725:10223616 -) -] -(1,418:6630773,14556498:25952256,131072,0 -r1,439:32583029,14556498:25952256,131072,0 -g1,418:32583029,14556498 -g1,418:32583029,14556498 -) -(1,420:6630773,15876399:25952256,513147,7863 -k1,420:8596853,15876399:1966080 -k1,419:10012496,15876399:218956 -k1,419:12166729,15876399:218955 -k1,419:13037113,15876399:218956 -k1,419:16699330,15876399:218955 -k1,419:18343694,15876399:218956 -k1,419:19754095,15876399:218956 -k1,419:22173094,15876399:218955 -k1,419:24164799,15876399:218956 -k1,419:24999792,15876399:218955 -k1,419:29055881,15876399:218956 -k1,420:32583029,15876399:1966080 -) -(1,420:6630773,16717887:25952256,505283,126483 -k1,420:8596853,16717887:1966080 -k1,419:11989592,16717887:172955 -k1,419:13353993,16717887:172956 -k1,419:14178376,16717887:172955 -k1,419:17301106,16717887:172955 -k1,419:19694421,16717887:172955 -k1,419:22255509,16717887:172956 -k1,419:23079892,16717887:172955 -k1,419:25033460,16717887:172955 -k1,419:25737912,16717887:172955 -k1,419:28737436,16717887:172956 -k1,419:29596553,16717887:172955 -k1,419:32583029,16717887:1966080 -) -(1,420:6630773,17559375:25952256,513147,7863 -g1,420:8596853,17559375 -g1,419:9482244,17559375 -g1,419:10700558,17559375 -g1,419:13207965,17559375 -g1,419:14066486,17559375 -g1,419:17541860,17559375 -k1,420:30616949,17559375:11295787 -g1,420:32583029,17559375 -) -(1,421:6630773,19187295:25952256,505283,7863 -k1,421:26088411,19187295:19457638 -h1,421:26088411,19187295:0,0,0 -g1,421:28773421,19187295 -g1,421:30616949,19187295 -g1,421:32583029,19187295 -) -(1,422:6630773,20028783:25952256,505283,134348 -k1,422:10735950,20028783:4105177 -h1,421:10735950,20028783:0,0,0 -g1,421:13781408,20028783 -g1,421:17149958,20028783 -g1,421:20806211,20028783 -g1,421:23871329,20028783 -g1,421:25838064,20028783 -g1,421:29023113,20028783 -g1,422:30616949,20028783 -g1,422:32583029,20028783 -) -(1,422:6630773,21263487:25952256,131072,0 -r1,439:32583029,21263487:25952256,131072,0 -g1,422:32583029,21263487 -g1,422:34549109,21263487 -) -(1,426:6630773,24071055:25952256,32768,229376 -(1,426:6630773,24071055:0,32768,229376 -(1,426:6630773,24071055:5505024,32768,229376 -r1,439:12135797,24071055:5505024,262144,229376 -) -k1,426:6630773,24071055:-5505024 -) -(1,426:6630773,24071055:25952256,32768,0 -r1,439:32583029,24071055:25952256,32768,0 -) -) -(1,426:6630773,25675383:25952256,615776,151780 -(1,426:6630773,25675383:1974731,582746,0 -g1,426:6630773,25675383 -g1,426:8605504,25675383 -) -g1,426:10904245,25675383 -g1,426:11961996,25675383 -g1,426:13695292,25675383 -k1,426:32583029,25675383:15886712 -g1,426:32583029,25675383 -) -(1,429:6630773,26910087:25952256,513147,134348 -k1,428:7492375,26910087:233767 -k1,428:8707216,26910087:233767 -k1,428:12527767,26910087:233766 -k1,428:13709185,26910087:233767 -k1,428:15686865,26910087:233767 -k1,428:16986903,26910087:233767 -k1,428:19713004,26910087:233767 -k1,428:21340721,26910087:233766 -k1,428:24650748,26910087:233767 -k1,428:29236761,26910087:233767 -k1,428:32583029,26910087:0 -) -(1,429:6630773,27751575:25952256,513147,134348 -k1,428:7825455,27751575:175597 -k1,428:9336020,27751575:175597 -k1,428:10817750,27751575:175597 -k1,428:12348632,27751575:175597 -k1,428:13140267,27751575:175597 -k1,428:15917642,27751575:175596 -k1,428:17112324,27751575:175597 -k1,428:17702741,27751575:175574 -k1,428:20720634,27751575:175597 -k1,428:21427728,27751575:175597 -k1,428:22254752,27751575:175596 -k1,428:23522834,27751575:175597 -k1,428:24156528,27751575:175597 -k1,428:28259042,27751575:175597 -k1,428:29196167,27751575:175597 -k1,428:31400759,27751575:175597 -k1,429:32583029,27751575:0 -) -(1,429:6630773,28593063:25952256,505283,126483 -k1,428:8032260,28593063:168755 -k1,428:11690807,28593063:168755 -k1,428:12472324,28593063:168755 -k1,428:13660164,28593063:168755 -k1,428:16112849,28593063:168755 -k1,428:16964489,28593063:168755 -k1,428:20292735,28593063:168755 -k1,428:21803667,28593063:168755 -k1,428:23353266,28593063:168755 -k1,428:24654483,28593063:168755 -k1,428:26531762,28593063:168755 -k1,428:27766788,28593063:168755 -k1,428:29311144,28593063:168755 -k1,428:30498984,28593063:168755 -k1,428:32583029,28593063:0 -) -(1,429:6630773,29434551:25952256,513147,134348 -k1,428:8058299,29434551:236081 -k1,428:11196969,29434551:236080 -k1,428:13192692,29434551:236081 -k1,428:14500941,29434551:236080 -k1,428:16022838,29434551:236081 -k1,428:17538837,29434551:236081 -k1,428:18945390,29434551:236080 -k1,428:19537331,29434551:236081 -k1,428:22272300,29434551:236081 -k1,428:23121142,29434551:236080 -k1,428:24376308,29434551:236081 -k1,428:28181479,29434551:236080 -k1,428:29609005,29434551:236081 -k1,428:32583029,29434551:0 -) -(1,429:6630773,30276039:25952256,513147,126483 -g1,428:7489294,30276039 -g1,428:8891764,30276039 -g1,428:12075503,30276039 -g1,428:12926160,30276039 -g1,428:14514752,30276039 -k1,429:32583029,30276039:15340013 -g1,429:32583029,30276039 -) -(1,431:6630773,31117527:25952256,513147,126483 -h1,430:6630773,31117527:983040,0,0 -k1,430:8488198,31117527:246550 -k1,430:9753832,31117527:246549 -k1,430:11306515,31117527:246550 -k1,430:12874925,31117527:246549 -k1,430:13780767,31117527:246550 -k1,430:15046401,31117527:246549 -k1,430:17710574,31117527:246550 -k1,430:18825475,31117527:246549 -k1,430:20204487,31117527:246550 -k1,430:21543521,31117527:246549 -k1,430:22204866,31117527:246502 -k1,430:23102844,31117527:246550 -k1,430:24164661,31117527:246549 -k1,430:27250231,31117527:246550 -k1,430:31298523,31117527:246549 -k1,430:32583029,31117527:0 -) -(1,431:6630773,31959015:25952256,513147,126483 -k1,430:8975083,31959015:163927 -k1,430:9886777,31959015:163928 -k1,430:10775532,31959015:163927 -k1,430:12334065,31959015:163927 -k1,430:13689437,31959015:163927 -k1,430:16345699,31959015:163928 -k1,430:17794132,31959015:163927 -k1,430:19128532,31959015:163927 -k1,430:20424921,31959015:163927 -k1,430:21655120,31959015:163928 -k1,430:23349313,31959015:163927 -k1,430:24164668,31959015:163927 -k1,430:26008938,31959015:163927 -k1,430:27995422,31959015:163928 -k1,430:29178434,31959015:163927 -k1,430:32583029,31959015:0 -) -(1,431:6630773,32800503:25952256,513147,134348 -k1,430:10521951,32800503:160869 -k1,430:12063664,32800503:160869 -k1,430:13619139,32800503:160869 -k1,430:15268331,32800503:160869 -k1,430:16561662,32800503:160869 -k1,430:18002449,32800503:160869 -k1,430:19333791,32800503:160869 -k1,430:19850519,32800503:160868 -k1,430:22211432,32800503:160869 -k1,430:23023729,32800503:160869 -k1,430:24922613,32800503:160869 -k1,430:25892852,32800503:160869 -k1,430:28655500,32800503:160869 -k1,430:30146750,32800503:160869 -k1,430:30959047,32800503:160869 -k1,430:32583029,32800503:0 -) -(1,431:6630773,33641991:25952256,505283,126483 -g1,430:9032012,33641991 -g1,430:12721033,33641991 -g1,430:13533024,33641991 -g1,430:14751338,33641991 -g1,430:18110058,33641991 -k1,431:32583029,33641991:11898061 -g1,431:32583029,33641991 -) -(1,433:6630773,34483479:25952256,513147,134348 -h1,432:6630773,34483479:983040,0,0 -k1,432:9455142,34483479:227833 -k1,432:10299013,34483479:227833 -k1,432:11545931,34483479:227833 -k1,432:14365058,34483479:227833 -k1,432:15763365,34483479:227834 -k1,432:17123660,34483479:227833 -k1,432:20332726,34483479:227833 -k1,432:22090825,34483479:227833 -k1,432:22970086,34483479:227833 -k1,432:24935934,34483479:227833 -k1,432:26813964,34483479:227833 -k1,432:27851167,34483479:227833 -k1,432:29098086,34483479:227834 -k1,432:29740733,34483479:227804 -k1,432:32583029,34483479:0 -) -(1,433:6630773,35324967:25952256,513147,134348 -k1,432:7981514,35324967:159296 -k1,432:8929208,35324967:159296 -k1,432:11991094,35324967:159296 -k1,432:13341835,35324967:159296 -k1,432:14714202,35324967:159296 -k1,432:15682868,35324967:159296 -k1,432:17172545,35324967:159296 -k1,432:20821633,35324967:159296 -k1,432:21972489,35324967:159296 -k1,432:24728321,35324967:159296 -k1,432:25647835,35324967:159296 -k1,432:26826216,35324967:159296 -k1,432:28168437,35324967:159296 -k1,432:28987025,35324967:159296 -k1,432:30165406,35324967:159296 -k1,432:32583029,35324967:0 -) -(1,433:6630773,36166455:25952256,513147,134348 -k1,432:7999001,36166455:197755 -k1,432:9329218,36166455:197755 -k1,432:10274739,36166455:197755 -k1,432:12964828,36166455:197755 -k1,432:14556534,36166455:197755 -k1,432:16355988,36166455:197754 -k1,432:17213035,36166455:197755 -k1,432:18429875,36166455:197755 -k1,432:20387272,36166455:197755 -k1,432:21244319,36166455:197755 -k1,432:23997323,36166455:197755 -k1,432:25708304,36166455:197755 -k1,432:26522097,36166455:197755 -k1,432:27738937,36166455:197755 -k1,432:28351533,36166455:197753 -k1,432:31391584,36166455:197755 -k1,432:32583029,36166455:0 -) -(1,433:6630773,37007943:25952256,505283,126483 -g1,432:8000475,37007943 -g1,432:9332166,37007943 -g1,432:10279161,37007943 -g1,432:11787144,37007943 -g1,432:12637801,37007943 -g1,432:14451837,37007943 -g1,432:16775743,37007943 -g1,432:20698072,37007943 -g1,432:21513339,37007943 -k1,433:32583029,37007943:10481177 -g1,433:32583029,37007943 -) -(1,435:6630773,37849431:25952256,513147,134348 -h1,434:6630773,37849431:983040,0,0 -k1,434:9647308,37849431:157199 -k1,434:10823591,37849431:157198 -k1,434:13572084,37849431:157199 -k1,434:13942233,37849431:157157 -k1,434:15231893,37849431:157198 -k1,434:19274722,37849431:157199 -k1,434:21092602,37849431:157198 -k1,434:22268886,37849431:157199 -k1,434:25731066,37849431:157199 -k1,434:26547556,37849431:157198 -k1,434:27723840,37849431:157199 -k1,434:28295840,37849431:157157 -k1,434:29949225,37849431:157198 -k1,434:30722462,37849431:157199 -k1,435:32583029,37849431:0 -) -(1,435:6630773,38690919:25952256,513147,126483 -k1,434:9501632,38690919:195024 -k1,434:12559924,38690919:195024 -k1,434:13232705,38690919:195024 -k1,434:14598202,38690919:195024 -k1,434:15784786,38690919:195024 -k1,434:17046081,38690919:195024 -k1,434:19733440,38690919:195025 -k1,434:21322415,38690919:195024 -k1,434:22536524,38690919:195024 -k1,434:27054958,38690919:195024 -k1,434:30113250,38690919:195024 -k1,434:31478747,38690919:195024 -k1,434:32583029,38690919:0 -) -(1,435:6630773,39532407:25952256,513147,134348 -g1,434:8694501,39532407 -g1,434:10914205,39532407 -g1,434:11745201,39532407 -g1,434:12630592,39532407 -g1,434:14218529,39532407 -g1,434:15103920,39532407 -g1,434:16473622,39532407 -g1,434:20337624,39532407 -g1,434:21555938,39532407 -g1,434:22170010,39532407 -k1,435:32583029,39532407:8743162 -g1,435:32583029,39532407 -) -] -(1,439:32583029,45706769:0,0,0 -g1,439:32583029,45706769 -) -) -] -(1,439:6630773,47279633:25952256,477757,0 -(1,439:6630773,47279633:25952256,477757,0 -(1,439:6630773,47279633:0,0,0 -v1,439:6630773,47279633:0,0,0 -) -g1,439:6830002,47279633 -k1,439:31786110,47279633:24956108 -) -) -] -(1,439:4262630,4025873:0,0,0 -[1,439:-473656,4025873:0,0,0 -(1,439:-473656,-710413:0,0,0 -(1,439:-473656,-710413:0,0,0 -g1,439:-473656,-710413 -) -g1,439:-473656,-710413 -) -] -) -] -!14328 -}30 -Input:208:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:209:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:210:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:211:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:212:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:213:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:214:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:215:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:216:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:217:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:218:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:219:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:220:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:221:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:222:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:223:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1467 -{31 -[1,452:4262630,47279633:28320399,43253760,0 -(1,452:4262630,4025873:0,0,0 -[1,452:-473656,4025873:0,0,0 -(1,452:-473656,-710413:0,0,0 -(1,452:-473656,-644877:0,0,0 -k1,452:-473656,-644877:-65536 -) -(1,452:-473656,4736287:0,0,0 -k1,452:-473656,4736287:5209943 -) -g1,452:-473656,-710413 -) -] -) -[1,452:6630773,47279633:25952256,43253760,0 -[1,452:6630773,4812305:25952256,786432,0 -(1,452:6630773,4812305:25952256,505283,134348 -(1,452:6630773,4812305:25952256,505283,134348 -g1,452:3078558,4812305 -[1,452:3078558,4812305:0,0,0 -(1,452:3078558,2439708:0,1703936,0 -k1,452:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,452:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,452:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,452:3078558,4812305:0,0,0 -(1,452:3078558,2439708:0,1703936,0 -g1,452:29030814,2439708 -g1,452:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,452:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,452:37855564,2439708:1179648,16384,0 -) -) -k1,452:3078556,2439708:-34777008 -) -] -[1,452:3078558,4812305:0,0,0 -(1,452:3078558,49800853:0,16384,2228224 -k1,452:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,452:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,452:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,452:3078558,4812305:0,0,0 -(1,452:3078558,49800853:0,16384,2228224 -g1,452:29030814,49800853 -g1,452:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,452:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,452:37855564,49800853:1179648,16384,0 -) -) -k1,452:3078556,49800853:-34777008 -) -] -g1,452:6630773,4812305 -k1,452:19515153,4812305:12087462 -g1,452:20901894,4812305 -g1,452:21550700,4812305 -g1,452:24864855,4812305 -g1,452:27600327,4812305 -g1,452:29010006,4812305 -) -) -] -[1,452:6630773,45706769:25952256,40108032,0 -(1,452:6630773,45706769:25952256,40108032,0 -(1,452:6630773,45706769:0,0,0 -g1,452:6630773,45706769 -) -[1,452:6630773,45706769:25952256,40108032,0 -(1,436:6630773,6254097:25952256,32768,229376 -(1,436:6630773,6254097:0,32768,229376 -(1,436:6630773,6254097:5505024,32768,229376 -r1,452:12135797,6254097:5505024,262144,229376 -) -k1,436:6630773,6254097:-5505024 -) -(1,436:6630773,6254097:25952256,32768,0 -r1,452:32583029,6254097:25952256,32768,0 -) -) -(1,436:6630773,7858425:25952256,606339,161218 -(1,436:6630773,7858425:1974731,582746,0 -g1,436:6630773,7858425 -g1,436:8605504,7858425 -) -g1,436:11784262,7858425 -g1,436:13493965,7858425 -g1,436:17548809,7858425 -k1,436:32583029,7858425:11079253 -g1,436:32583029,7858425 -) -(1,439:6630773,9093129:25952256,513147,134348 -k1,438:9991590,9093129:162660 -k1,438:13326848,9093129:162660 -k1,438:14964723,9093129:162660 -k1,438:16794619,9093129:162660 -k1,438:18543250,9093129:162660 -k1,438:19897356,9093129:162661 -k1,438:23847997,9093129:162660 -k1,438:25202102,9093129:162660 -k1,438:28505903,9093129:162660 -k1,438:29660123,9093129:162660 -k1,439:32583029,9093129:0 -) -(1,439:6630773,9934617:25952256,505283,134348 -k1,438:7800137,9934617:179115 -k1,438:9801808,9934617:179115 -k1,438:12091837,9934617:179114 -k1,438:13828743,9934617:179115 -k1,438:15140320,9934617:179115 -k1,438:16943417,9934617:179115 -k1,438:18729474,9934617:179114 -k1,438:22117887,9934617:179115 -k1,438:23369171,9934617:179115 -k1,438:24164324,9934617:179115 -k1,438:26974709,9934617:179114 -k1,438:27805252,9934617:179115 -k1,438:30204727,9934617:179115 -k1,438:32583029,9934617:0 -) -(1,439:6630773,10776105:25952256,505283,134348 -k1,438:7526709,10776105:213051 -k1,438:10635142,10776105:213052 -k1,438:11980655,10776105:213051 -k1,438:13259978,10776105:213052 -k1,438:15270026,10776105:213051 -k1,438:16941909,10776105:213052 -k1,438:20387851,10776105:213051 -k1,438:21792348,10776105:213052 -k1,438:24957141,10776105:213051 -k1,438:28104895,10776105:213052 -k1,438:31394206,10776105:213051 -k1,439:32583029,10776105:0 -) -(1,439:6630773,11617593:25952256,513147,134348 -k1,438:9019460,11617593:191920 -k1,438:10686594,11617593:191919 -k1,438:11234374,11617593:191920 -k1,438:13209529,11617593:191920 -k1,438:15753535,11617593:191919 -k1,438:16879998,11617593:191920 -k1,438:17731210,11617593:191920 -k1,438:19878069,11617593:191920 -k1,438:21512435,11617593:191919 -k1,438:23996149,11617593:191920 -k1,438:27534337,11617593:191920 -k1,438:29219822,11617593:191919 -k1,438:30097904,11617593:191920 -k1,438:32583029,11617593:0 -) -(1,439:6630773,12459081:25952256,513147,134348 -k1,438:7383781,12459081:275251 -k1,438:8829505,12459081:275251 -k1,438:10096316,12459081:275251 -k1,438:11654762,12459081:275251 -k1,438:12581442,12459081:275252 -k1,438:15932953,12459081:275251 -k1,438:20734120,12459081:275251 -k1,438:25664393,12459081:275251 -k1,438:26958729,12459081:275251 -k1,438:29947826,12459081:275251 -k1,438:32583029,12459081:0 -) -(1,439:6630773,13300569:25952256,513147,134348 -g1,438:9906262,13300569 -g1,438:11296936,13300569 -g1,438:13787959,13300569 -g1,438:17159786,13300569 -g1,438:18695949,13300569 -g1,438:19642944,13300569 -k1,439:32583029,13300569:10789193 -g1,439:32583029,13300569 -) -(1,441:6630773,14142057:25952256,513147,95026 -h1,440:6630773,14142057:983040,0,0 -k1,440:9135995,14142057:250784 -k1,440:10491062,14142057:250785 -k1,440:12422189,14142057:250784 -k1,440:13332265,14142057:250784 -k1,440:16340805,14142057:250785 -k1,440:18602234,14142057:250784 -k1,440:20044463,14142057:250784 -k1,440:23136889,14142057:250785 -k1,440:25605411,14142057:250784 -k1,440:27894365,14142057:250784 -k1,440:30031276,14142057:250785 -k1,440:30637920,14142057:250784 -k1,440:32583029,14142057:0 -) -(1,441:6630773,14983545:25952256,513147,126483 -k1,440:7499933,14983545:182998 -k1,440:9652288,14983545:182998 -k1,440:11026731,14983545:182998 -k1,440:11869020,14983545:182997 -k1,440:15128933,14983545:182998 -k1,440:16503376,14983545:182998 -k1,440:19712171,14983545:182998 -k1,440:20581331,14983545:182998 -k1,440:22661596,14983545:182998 -k1,440:23332165,14983545:182981 -k1,440:26440690,14983545:182998 -k1,440:29956849,14983545:182998 -k1,440:30822732,14983545:182998 -k1,441:32583029,14983545:0 -) -(1,441:6630773,15825033:25952256,513147,134348 -k1,440:8686161,15825033:242662 -k1,440:9460320,15825033:242662 -k1,440:10722067,15825033:242662 -k1,440:14269710,15825033:242662 -k1,440:15171664,15825033:242662 -k1,440:15770186,15825033:242662 -k1,440:18304642,15825033:242662 -k1,440:21389600,15825033:242662 -k1,440:24598421,15825033:242662 -k1,440:25497098,15825033:242662 -k1,440:30805693,15825033:242662 -k1,441:32583029,15825033:0 -) -(1,441:6630773,16666521:25952256,505283,126483 -k1,440:8786470,16666521:230249 -k1,440:10213405,16666521:230248 -k1,440:12568331,16666521:230249 -k1,440:15984940,16666521:230249 -(1,440:15984940,16666521:0,435480,115847 -r1,452:17750054,16666521:1765114,551327,115847 -k1,440:15984940,16666521:-1765114 -) -(1,440:15984940,16666521:1765114,435480,115847 -g1,440:16691641,16666521 -g1,440:17395065,16666521 -h1,440:17746777,16666521:0,411205,112570 -) -k1,440:17980302,16666521:230248 -k1,440:19311556,16666521:230249 -k1,440:21196589,16666521:230249 -k1,440:25528081,16666521:230249 -(1,440:25528081,16666521:0,414482,115847 -r1,452:25886347,16666521:358266,530329,115847 -k1,440:25528081,16666521:-358266 -) -(1,440:25528081,16666521:358266,414482,115847 -k1,440:25528081,16666521:3277 -h1,440:25883070,16666521:0,411205,112570 -) -k1,440:26290265,16666521:230248 -k1,440:26876374,16666521:230249 -k1,440:29791633,16666521:230249 -(1,440:29791633,16666521:0,414482,115847 -r1,452:30149899,16666521:358266,530329,115847 -k1,440:29791633,16666521:-358266 -) -(1,440:29791633,16666521:358266,414482,115847 -k1,440:29791633,16666521:3277 -h1,440:30146622,16666521:0,411205,112570 -) -k1,440:30553817,16666521:230248 -k1,440:31554769,16666521:230249 -k1,441:32583029,16666521:0 -) -(1,441:6630773,17508009:25952256,513147,126483 -k1,440:8804310,17508009:242191 -k1,440:10237945,17508009:242190 -(1,440:10237945,17508009:0,435480,115847 -r1,452:10596211,17508009:358266,551327,115847 -k1,440:10237945,17508009:-358266 -) -(1,440:10237945,17508009:358266,435480,115847 -k1,440:10237945,17508009:3277 -h1,440:10592934,17508009:0,411205,112570 -) -k1,440:10838402,17508009:242191 -k1,440:11436452,17508009:242190 -k1,440:14610068,17508009:242191 -k1,440:16048946,17508009:242191 -k1,440:19477496,17508009:242190 -(1,440:19477496,17508009:0,452978,115847 -r1,452:21946033,17508009:2468537,568825,115847 -k1,440:19477496,17508009:-2468537 -) -(1,440:19477496,17508009:2468537,452978,115847 -k1,440:19477496,17508009:3277 -h1,440:21942756,17508009:0,411205,112570 -) -k1,440:22188224,17508009:242191 -k1,440:23531419,17508009:242190 -k1,440:24946049,17508009:242191 -k1,440:29289482,17508009:242190 -k1,440:29887533,17508009:242191 -k1,441:32583029,17508009:0 -) -(1,441:6630773,18349497:25952256,662897,126483 -(1,440:6630773,18349497:0,452978,115847 -r1,452:8747598,18349497:2116825,568825,115847 -k1,440:6630773,18349497:-2116825 -) -(1,440:6630773,18349497:2116825,452978,115847 -k1,440:6630773,18349497:3277 -h1,440:8744321,18349497:0,411205,112570 -) -k1,440:9010692,18349497:263094 -k1,440:10465231,18349497:263094 -k1,440:11084185,18349497:263094 -k1,440:14528396,18349497:263093 -k1,440:17549245,18349497:263094 -(1,440:17549245,18349497:0,424981,115847 -r1,452:17907511,18349497:358266,540828,115847 -k1,440:17549245,18349497:-358266 -) -(1,440:17549245,18349497:358266,424981,115847 -k1,440:17549245,18349497:3277 -h1,440:17904234,18349497:0,411205,112570 -) -k1,440:18344275,18349497:263094 -k1,440:19560918,18349497:263094 -k1,440:20871277,18349497:263094 -k1,440:22418877,18349497:263094 -k1,440:23633554,18349497:263094 -k1,440:26684549,18349497:263093 -$1,440:26684549,18349497 -(1,440:26684549,18349497:994181,662897,96010 -[1,440:26684549,17739028:595722,26214,706479 -] -[1,440:27280271,18349497:398459,662897,0 -(1,440:27280271,18349497:398459,481690,0 -) -] -) -$1,440:27678730,18349497 -k1,440:27941824,18349497:263094 -k1,440:29073270,18349497:263094 -k1,440:30466204,18349497:263094 -(1,440:30466204,18349497:0,452978,115847 -r1,452:32583029,18349497:2116825,568825,115847 -k1,440:30466204,18349497:-2116825 -) -(1,440:30466204,18349497:2116825,452978,115847 -k1,440:30466204,18349497:3277 -h1,440:32579752,18349497:0,411205,112570 -) -k1,440:32583029,18349497:0 -) -(1,441:6630773,19190985:25952256,505283,134348 -g1,440:8223953,19190985 -(1,440:8223953,19190985:0,424981,115847 -r1,452:8582219,19190985:358266,540828,115847 -k1,440:8223953,19190985:-358266 -) -(1,440:8223953,19190985:358266,424981,115847 -k1,440:8223953,19190985:3277 -h1,440:8578942,19190985:0,411205,112570 -) -g1,440:8781448,19190985 -g1,440:9666839,19190985 -g1,440:10654466,19190985 -k1,441:32583030,19190985:18336536 -g1,441:32583030,19190985 -) -(1,443:6630773,20032473:25952256,505283,134348 -h1,442:6630773,20032473:983040,0,0 -k1,442:10722589,20032473:145893 -k1,442:11634598,20032473:145893 -k1,442:13791136,20032473:145893 -k1,442:17950454,20032473:145893 -k1,442:18712385,20032473:145893 -k1,442:19214138,20032473:145893 -k1,442:21375264,20032473:145894 -k1,442:24597417,20032473:145893 -k1,442:25734870,20032473:145893 -k1,442:27918933,20032473:145893 -k1,442:28750988,20032473:145893 -k1,442:30020824,20032473:145893 -k1,442:30782755,20032473:145893 -k1,443:32583029,20032473:0 -) -(1,443:6630773,20873961:25952256,505283,134348 -k1,442:8006046,20873961:157614 -k1,442:10834907,20873961:157614 -k1,442:15768130,20873961:157614 -k1,442:16917304,20873961:157614 -k1,442:19878547,20873961:157613 -k1,442:23103246,20873961:157614 -k1,442:25466802,20873961:157614 -k1,442:27694043,20873961:157614 -k1,442:30035972,20873961:157614 -k1,442:31478747,20873961:157614 -k1,442:32583029,20873961:0 -) -(1,443:6630773,21715449:25952256,505283,134348 -k1,442:7671936,21715449:293397 -k1,442:10644445,21715449:293397 -k1,442:12205307,21715449:293396 -k1,442:13687527,21715449:293397 -k1,442:15172369,21715449:293397 -k1,442:18150776,21715449:293397 -k1,442:19130335,21715449:293397 -k1,442:20812439,21715449:293396 -k1,442:21791998,21715449:293397 -k1,442:23594034,21715449:293397 -k1,442:25273517,21715449:293397 -k1,442:26249799,21715449:293397 -(1,442:26249799,21715449:0,452978,115847 -r1,452:27663200,21715449:1413401,568825,115847 -k1,442:26249799,21715449:-1413401 -) -(1,442:26249799,21715449:1413401,452978,115847 -k1,442:26249799,21715449:3277 -h1,442:27659923,21715449:0,411205,112570 -) -k1,442:27956596,21715449:293396 -k1,442:28781490,21715449:293397 -k1,442:31386342,21715449:293397 -k1,442:32583029,21715449:0 -) -(1,443:6630773,22556937:25952256,513147,126483 -k1,442:9392694,22556937:260412 -k1,442:10320262,22556937:260412 -(1,442:10320262,22556937:0,452978,115847 -r1,452:12085375,22556937:1765113,568825,115847 -k1,442:10320262,22556937:-1765113 -) -(1,442:10320262,22556937:1765113,452978,115847 -k1,442:10320262,22556937:3277 -h1,442:12082098,22556937:0,411205,112570 -) -k1,442:12345788,22556937:260413 -k1,442:13137697,22556937:260412 -k1,442:14464380,22556937:260412 -k1,442:17139138,22556937:260412 -k1,442:19621222,22556937:260413 -k1,442:20533062,22556937:260412 -k1,442:22123855,22556937:260412 -k1,442:24394912,22556937:260412 -k1,442:25646885,22556937:260413 -k1,442:28586409,22556937:260412 -k1,442:30544859,22556937:260412 -k1,442:32583029,22556937:0 -) -(1,443:6630773,23398425:25952256,513147,126483 -k1,442:7470617,23398425:223806 -k1,442:10770682,23398425:223805 -k1,442:13799429,23398425:223806 -k1,442:15095403,23398425:223805 -k1,442:17646392,23398425:223806 -k1,442:19378836,23398425:223805 -k1,442:24047949,23398425:223806 -k1,442:24957916,23398425:223805 -k1,442:26503583,23398425:223806 -k1,442:27386680,23398425:223805 -k1,442:27966346,23398425:223806 -k1,442:31266411,23398425:223805 -k1,443:32583029,23398425:0 -) -(1,443:6630773,24239913:25952256,513147,134348 -k1,442:8661130,24239913:218287 -k1,442:9832965,24239913:218286 -k1,442:11155534,24239913:218287 -k1,442:13022707,24239913:218287 -k1,442:14188644,24239913:218286 -k1,442:17242018,24239913:218287 -k1,442:18784112,24239913:218267 -k1,442:20618517,24239913:218287 -k1,442:23021119,24239913:218287 -k1,442:25277575,24239913:218286 -k1,442:26182024,24239913:218287 -k1,442:28055094,24239913:218286 -k1,442:31089463,24239913:218287 -k1,442:32583029,24239913:0 -) -(1,443:6630773,25081401:25952256,505283,115847 -k1,442:7525636,25081401:208701 -(1,442:7525636,25081401:0,435480,115847 -r1,452:10697597,25081401:3171961,551327,115847 -k1,442:7525636,25081401:-3171961 -) -(1,442:7525636,25081401:3171961,435480,115847 -g1,442:8584049,25081401 -g1,442:9639185,25081401 -h1,442:10694320,25081401:0,411205,112570 -) -k1,442:11079967,25081401:208700 -k1,442:11974830,25081401:208701 -k1,442:16150425,25081401:208701 -k1,442:19175207,25081401:208700 -k1,442:21422078,25081401:208701 -k1,442:22316940,25081401:208700 -k1,442:25830622,25081401:208701 -k1,442:28923562,25081401:208701 -k1,442:29815147,25081401:208700 -k1,442:31490544,25081401:208701 -k1,442:32583029,25081401:0 -) -(1,443:6630773,25922889:25952256,513147,134348 -k1,442:8599506,25922889:238583 -k1,442:10906405,25922889:238583 -k1,442:13183158,25922889:238583 -k1,442:14107903,25922889:238583 -k1,442:17321165,25922889:238583 -k1,442:19755859,25922889:238583 -k1,442:21140666,25922889:238582 -(1,442:21140666,25922889:0,452978,115847 -r1,452:23257491,25922889:2116825,568825,115847 -k1,442:21140666,25922889:-2116825 -) -(1,442:21140666,25922889:2116825,452978,115847 -k1,442:21140666,25922889:3277 -h1,442:23254214,25922889:0,411205,112570 -) -k1,442:23669744,25922889:238583 -k1,442:24861876,25922889:238583 -k1,442:26869276,25922889:238583 -k1,442:29037239,25922889:238583 -k1,442:29631682,25922889:238583 -(1,442:29631682,25922889:0,452978,115847 -r1,452:31396795,25922889:1765113,568825,115847 -k1,442:29631682,25922889:-1765113 -) -(1,442:29631682,25922889:1765113,452978,115847 -k1,442:29631682,25922889:3277 -h1,442:31393518,25922889:0,411205,112570 -) -k1,442:31635378,25922889:238583 -k1,442:32583029,25922889:0 -) -(1,443:6630773,26764377:25952256,513147,134348 -k1,442:8782636,26764377:205444 -k1,442:10723473,26764377:205444 -k1,442:12060724,26764377:205444 -k1,442:12925460,26764377:205444 -k1,442:14827631,26764377:205444 -k1,442:20201900,26764377:205444 -k1,442:22262013,26764377:205444 -k1,442:23276827,26764377:205444 -k1,442:24654710,26764377:205444 -k1,442:27622497,26764377:205444 -k1,442:30114492,26764377:205444 -(1,442:30114492,26764377:0,452978,115847 -r1,452:32583029,26764377:2468537,568825,115847 -k1,442:30114492,26764377:-2468537 -) -(1,442:30114492,26764377:2468537,452978,115847 -k1,442:30114492,26764377:3277 -h1,442:32579752,26764377:0,411205,112570 -) -k1,442:32583029,26764377:0 -) -(1,443:6630773,27605865:25952256,505283,115847 -g1,442:8021447,27605865 -(1,442:8021447,27605865:0,452978,115847 -r1,452:11193407,27605865:3171960,568825,115847 -k1,442:8021447,27605865:-3171960 -) -(1,442:8021447,27605865:3171960,452978,115847 -k1,442:8021447,27605865:3277 -h1,442:11190130,27605865:0,411205,112570 -) -k1,443:32583029,27605865:21215952 -g1,443:32583029,27605865 -) -(1,445:6630773,28447353:25952256,513147,134348 -h1,444:6630773,28447353:983040,0,0 -k1,444:8443737,28447353:202089 -k1,444:9849067,28447353:202089 -k1,444:12468779,28447353:202089 -k1,444:13539220,28447353:202089 -k1,444:14873771,28447353:202089 -k1,444:16813876,28447353:202090 -k1,444:17825335,28447353:202089 -k1,444:21220338,28447353:202089 -k1,444:24164453,28447353:202089 -k1,444:28056874,28447353:202089 -k1,444:29278048,28447353:202089 -k1,444:32583029,28447353:0 -) -(1,445:6630773,29288841:25952256,513147,134348 -k1,444:7506132,29288841:216067 -k1,444:10844990,29288841:216067 -k1,444:11677095,29288841:216067 -k1,444:14184956,29288841:216067 -k1,444:17416990,29288841:216067 -k1,444:18260892,29288841:216067 -k1,444:19930548,29288841:216067 -k1,444:22894540,29288841:216067 -k1,444:24281080,29288841:216067 -k1,444:25629609,29288841:216067 -k1,444:27457206,29288841:216067 -k1,444:29003654,29288841:216067 -k1,444:29871149,29288841:216067 -k1,444:32583029,29288841:0 -) -(1,445:6630773,30130329:25952256,513147,134348 -k1,444:8565832,30130329:296004 -k1,444:9513264,30130329:296004 -k1,444:11738649,30130329:296005 -k1,444:15448423,30130329:296004 -k1,444:19434759,30130329:296004 -k1,444:20749848,30130329:296004 -k1,444:24350834,30130329:296005 -k1,444:25306130,30130329:296004 -k1,444:30949216,30130329:296004 -k1,445:32583029,30130329:0 -) -(1,445:6630773,30971817:25952256,513147,134348 -k1,444:9156343,30971817:167585 -k1,444:10515373,30971817:167585 -k1,444:13018006,30971817:167585 -k1,444:14204675,30971817:167584 -k1,444:17677241,30971817:167585 -k1,444:18504118,30971817:167585 -k1,444:20900582,30971817:167585 -k1,444:22321871,30971817:167585 -k1,444:23621918,30971817:167585 -k1,444:25075319,30971817:167585 -k1,444:26854433,30971817:167584 -k1,444:28352399,30971817:167585 -k1,444:29171412,30971817:167585 -k1,444:31299834,30971817:167585 -k1,444:32583029,30971817:0 -) -(1,445:6630773,31813305:25952256,513147,126483 -k1,444:8707172,31813305:179132 -k1,444:12861717,31813305:179131 -k1,444:16066646,31813305:179132 -k1,444:17437222,31813305:179131 -k1,444:20866940,31813305:179132 -k1,444:22237516,31813305:179131 -k1,444:23699843,31813305:179132 -k1,444:26022001,31813305:179131 -k1,444:30176547,31813305:179132 -k1,445:32583029,31813305:0 -k1,445:32583029,31813305:0 -) -(1,446:6630773,34620873:25952256,32768,229376 -(1,446:6630773,34620873:0,32768,229376 -(1,446:6630773,34620873:5505024,32768,229376 -r1,452:12135797,34620873:5505024,262144,229376 -) -k1,446:6630773,34620873:-5505024 -) -(1,446:6630773,34620873:25952256,32768,0 -r1,452:32583029,34620873:25952256,32768,0 -) -) -(1,446:6630773,36225201:25952256,606339,14155 -(1,446:6630773,36225201:1974731,582746,14155 -g1,446:6630773,36225201 -g1,446:8605504,36225201 -) -g1,446:12231742,36225201 -g1,446:15055033,36225201 -g1,446:16764736,36225201 -k1,446:32583029,36225201:11752439 -g1,446:32583029,36225201 -) -(1,449:6630773,37459905:25952256,505283,134348 -k1,448:8650597,37459905:236589 -k1,448:11473891,37459905:236588 -k1,448:12326518,37459905:236589 -k1,448:12977912,37459905:236551 -k1,448:14608451,37459905:236588 -k1,448:18121185,37459905:236589 -k1,448:22301730,37459905:236588 -k1,448:23557404,37459905:236589 -k1,448:26072679,37459905:236588 -k1,448:30632678,37459905:236589 -k1,449:32583029,37459905:0 -) -(1,449:6630773,38301393:25952256,505283,126483 -k1,448:8705139,38301393:210522 -k1,448:10501631,38301393:210521 -k1,448:11703713,38301393:210522 -k1,448:15180549,38301393:210522 -k1,448:16463239,38301393:210521 -k1,448:20527933,38301393:210522 -k1,448:21842737,38301393:210522 -k1,448:22801025,38301393:210522 -k1,448:24524772,38301393:210521 -k1,448:25386722,38301393:210522 -k1,448:27050833,38301393:210522 -k1,448:28464595,38301393:210521 -k1,448:30588113,38301393:210522 -k1,449:32583029,38301393:0 -) -(1,449:6630773,39142881:25952256,505283,126483 -k1,448:8937187,39142881:279385 -k1,448:10320854,39142881:279385 -k1,448:11348005,39142881:279385 -k1,448:13918528,39142881:279384 -k1,448:15270082,39142881:279385 -k1,448:16165505,39142881:279385 -k1,448:19076161,39142881:279385 -k1,448:20006974,39142881:279385 -k1,448:21305444,39142881:279385 -k1,448:23305804,39142881:279385 -k1,448:26122742,39142881:279384 -k1,448:27018165,39142881:279385 -k1,448:31563944,39142881:279385 -k1,448:32583029,39142881:0 -) -(1,449:6630773,39984369:25952256,505283,134348 -g1,448:8483475,39984369 -g1,448:12390731,39984369 -g1,448:14901415,39984369 -g1,448:15632141,39984369 -g1,448:17344596,39984369 -g1,448:18156587,39984369 -g1,448:19121932,39984369 -g1,448:21660796,39984369 -k1,449:32583029,39984369:8956153 -g1,449:32583029,39984369 -) -v1,451:6630773,41140429:0,393216,0 -(1,452:6630773,45116945:25952256,4369732,589824 -g1,452:6630773,45116945 -(1,452:6630773,45116945:25952256,4369732,589824 -(1,452:6630773,45706769:25952256,4959556,0 -[1,452:6630773,45706769:25952256,4959556,0 -(1,452:6630773,45706769:25952256,4933342,0 -r1,452:6656987,45706769:26214,4933342,0 -[1,452:6656987,45706769:25899828,4933342,0 -(1,452:6656987,45116945:25899828,3753694,0 -[1,452:7246811,45116945:24720180,3753694,0 -(1,452:7246811,42525136:24720180,1161885,196608 -(1,451:7246811,42525136:0,1161885,196608 -r1,452:8794447,42525136:1547636,1358493,196608 -k1,451:7246811,42525136:-1547636 -) -(1,451:7246811,42525136:1547636,1161885,196608 -) -k1,451:9050488,42525136:256041 -k1,451:10771913,42525136:256040 -k1,451:11643992,42525136:256041 -k1,451:15992755,42525136:256040 -k1,451:17440241,42525136:256041 -k1,451:22048527,42525136:256040 -k1,451:25477166,42525136:256041 -k1,451:28452295,42525136:256040 -k1,451:31966991,42525136:0 -) -(1,452:7246811,43366624:24720180,513147,126483 -k1,451:8965165,43366624:157286 -k1,451:12366483,43366624:157286 -k1,451:14409240,43366624:157286 -k1,451:19482382,43366624:157286 -k1,451:20631228,43366624:157286 -k1,451:23849702,43366624:157287 -k1,451:25313121,43366624:157286 -k1,451:26661852,43366624:157286 -k1,451:28704609,43366624:157286 -k1,451:30489154,43366624:157286 -k1,452:31966991,43366624:0 -) -(1,452:7246811,44208112:24720180,505283,126483 -k1,451:8988686,44208112:191293 -k1,451:9831407,44208112:191293 -k1,451:12916770,44208112:191293 -k1,451:16230854,44208112:191293 -k1,451:20069881,44208112:191293 -k1,451:20676010,44208112:191286 -k1,451:23838050,44208112:191293 -k1,451:26649472,44208112:191293 -k1,451:30611051,44208112:191293 -k1,452:31966991,44208112:0 -) -(1,452:7246811,45049600:24720180,513147,134348 -k1,451:9769685,45049600:303825 -k1,451:13150425,45049600:303825 -k1,451:16571142,45049600:303825 -k1,451:17526395,45049600:303825 -k1,451:18849304,45049600:303824 -k1,451:20739100,45049600:303825 -k1,451:21702217,45049600:303825 -k1,451:26272436,45049600:303825 -k1,451:27204096,45049600:303825 -k1,451:28527006,45049600:303825 -k1,451:31966991,45049600:0 -) -] -) -] -r1,452:32583029,45706769:26214,4933342,0 -) -] -) -) -g1,452:32583029,45116945 -) -] -(1,452:32583029,45706769:0,0,0 -g1,452:32583029,45706769 -) -) -] -(1,452:6630773,47279633:25952256,0,0 -h1,452:6630773,47279633:25952256,0,0 -) -] -(1,452:4262630,4025873:0,0,0 -[1,452:-473656,4025873:0,0,0 -(1,452:-473656,-710413:0,0,0 -(1,452:-473656,-710413:0,0,0 -g1,452:-473656,-710413 -) -g1,452:-473656,-710413 -) -] -) -] -!24669 -}31 -Input:224:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:225:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:226:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:227:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:228:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:229:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!557 -{32 -[1,525:4262630,47279633:28320399,43253760,0 -(1,525:4262630,4025873:0,0,0 -[1,525:-473656,4025873:0,0,0 -(1,525:-473656,-710413:0,0,0 -(1,525:-473656,-644877:0,0,0 -k1,525:-473656,-644877:-65536 -) -(1,525:-473656,4736287:0,0,0 -k1,525:-473656,4736287:5209943 -) -g1,525:-473656,-710413 -) -] -) -[1,525:6630773,47279633:25952256,43253760,0 -[1,525:6630773,4812305:25952256,786432,0 -(1,525:6630773,4812305:25952256,505283,11795 -(1,525:6630773,4812305:25952256,505283,11795 -g1,525:3078558,4812305 -[1,525:3078558,4812305:0,0,0 -(1,525:3078558,2439708:0,1703936,0 -k1,525:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,525:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,525:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,525:3078558,4812305:0,0,0 -(1,525:3078558,2439708:0,1703936,0 -g1,525:29030814,2439708 -g1,525:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,525:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,525:37855564,2439708:1179648,16384,0 -) -) -k1,525:3078556,2439708:-34777008 -) -] -[1,525:3078558,4812305:0,0,0 -(1,525:3078558,49800853:0,16384,2228224 -k1,525:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,525:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,525:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,525:3078558,4812305:0,0,0 -(1,525:3078558,49800853:0,16384,2228224 -g1,525:29030814,49800853 -g1,525:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,525:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,525:37855564,49800853:1179648,16384,0 -) -) -k1,525:3078556,49800853:-34777008 -) -] -g1,525:6630773,4812305 -g1,525:6630773,4812305 -g1,525:9516978,4812305 -g1,525:11710468,4812305 -g1,525:13120147,4812305 -g1,525:16560787,4812305 -k1,525:31786111,4812305:15225324 -) -) -] -[1,525:6630773,45706769:25952256,40108032,0 -(1,525:6630773,45706769:25952256,40108032,0 -(1,525:6630773,45706769:0,0,0 -g1,525:6630773,45706769 -) -[1,525:6630773,45706769:25952256,40108032,0 -v1,452:6630773,6254097:0,393216,0 -(1,452:6630773,9488315:25952256,3627434,616038 -g1,452:6630773,9488315 -(1,452:6630773,9488315:25952256,3627434,616038 -(1,452:6630773,10104353:25952256,4243472,0 -[1,452:6630773,10104353:25952256,4243472,0 -(1,452:6630773,10078139:25952256,4217258,0 -r1,525:6656987,10078139:26214,4217258,0 -[1,452:6656987,10078139:25899828,4217258,0 -(1,452:6656987,9488315:25899828,3037610,0 -[1,452:7246811,9488315:24720180,3037610,0 -(1,452:7246811,6955988:24720180,505283,126483 -k1,451:7842501,6955988:197231 -k1,451:8607929,6955988:197231 -k1,451:9203618,6955988:197230 -k1,451:9969046,6955988:197231 -$1,451:10367505,6955988 -k1,451:10810963,6955988:269788 -k1,451:12099836,6955988:269788 -k1,451:14899313,6955988:269787 -$1,451:14899313,6955988 -k1,451:15495003,6955988:197231 -k1,451:16260431,6955988:197231 -$1,451:16658890,6955988 -k1,451:16928678,6955988:269788 -k1,451:18299471,6955988:269788 -k1,451:22170461,6955988:269787 -k1,451:23827646,6955988:269788 -k1,451:25116519,6955988:269788 -k1,451:28225982,6955988:269788 -k1,451:29687214,6955988:269787 -k1,451:30488499,6955988:269788 -k1,452:31966991,6955988:0 -) -(1,452:7246811,7797476:24720180,513147,134348 -k1,451:9262807,7797476:220310 -k1,451:10962921,7797476:220311 -k1,451:13708989,7797476:220310 -k1,451:14615461,7797476:220310 -k1,451:15854856,7797476:220310 -k1,451:17918039,7797476:220311 -k1,451:18797641,7797476:220310 -k1,451:20037036,7797476:220310 -k1,451:22140195,7797476:220310 -k1,451:25974161,7797476:220311 -k1,451:26766600,7797476:220310 -k1,451:27614745,7797476:220310 -k1,451:31966991,7797476:0 -) -(1,452:7246811,8638964:24720180,505283,134348 -k1,451:10801186,8638964:208107 -k1,451:13211302,8638964:208106 -k1,451:15005380,8638964:208107 -k1,451:16977060,8638964:208106 -k1,451:17836595,8638964:208107 -k1,451:18810817,8638964:208106 -k1,451:22269510,8638964:208107 -k1,451:23944312,8638964:208106 -k1,451:25896332,8638964:208107 -k1,451:28100009,8638964:208106 -k1,451:28994278,8638964:208107 -k1,451:31966991,8638964:0 -) -(1,452:7246811,9480452:24720180,505283,7863 -g1,451:11503374,9480452 -k1,452:31966991,9480452:18279302 -g1,452:31966991,9480452 -) -] -) -] -r1,525:32583029,10078139:26214,4217258,0 -) -] -) -) -g1,452:32583029,9488315 -) -h1,452:6630773,10104353:0,0,0 -(1,455:6630773,11323330:25952256,513147,134348 -h1,454:6630773,11323330:983040,0,0 -k1,454:8295136,11323330:211430 -k1,454:9038063,11323330:211430 -k1,454:12458792,11323330:211431 -k1,454:13321650,11323330:211430 -k1,454:15041063,11323330:211430 -k1,454:15868531,11323330:211430 -k1,454:17736711,11323330:211430 -k1,454:19232647,11323330:211430 -k1,454:20060116,11323330:211431 -k1,454:20686376,11323330:211417 -k1,454:25269714,11323330:211431 -k1,454:28506941,11323330:211430 -k1,454:31540351,11323330:211430 -k1,455:32583029,11323330:0 -) -(1,455:6630773,12164818:25952256,505283,134348 -g1,454:8620446,12164818 -g1,454:10830320,12164818 -g1,454:15061324,12164818 -g1,454:17288237,12164818 -g1,454:18173628,12164818 -g1,454:20110872,12164818 -g1,454:23507603,12164818 -g1,454:24322870,12164818 -k1,455:32583029,12164818:5719328 -g1,455:32583029,12164818 -) -(1,457:6630773,13006306:25952256,513147,126483 -h1,456:6630773,13006306:983040,0,0 -g1,456:9009729,13006306 -g1,456:12513939,13006306 -g1,456:13372460,13006306 -g1,456:14590774,13006306 -g1,456:16437578,13006306 -g1,456:20076792,13006306 -g1,456:20076792,13006306 -g1,456:20276021,13006306 -g1,456:20276021,13006306 -k1,457:32583029,13006306:12307008 -g1,457:32583029,13006306 -) -(1,459:18563541,14744203:2086720,1074017,479774 -(1,459:18563541,14744203:2086720,1074017,479774 -(1,459:18563541,14744203:2086720,1074017,479774 -h1,459:18563541,14744203:78643,0,0 -[1,459:18642184,14744203:1929434,1074017,479774 -(1,459:18642184,14285402:1929434,615216,11796 -g1,459:19186291,14285402 -g1,459:19900136,14285402 -(1,459:20259929,14010121:311689,339935,0 -) -) -(1,459:18642184,15216113:1929434,473825,7864 -k1,459:18789444,15216113:147260 -(1,459:18789444,15216113:946340,473825,7864 -) -g1,459:19845020,15216113 -k1,459:20571618,15216113:147260 -) -] -h1,459:20571618,14744203:78643,0,0 -) -) -) -(1,461:6630773,16274521:25952256,513147,102891 -g1,460:7535169,16274521 -g1,460:8350436,16274521 -g1,460:9138178,16274521 -g1,460:11623958,16274521 -g1,460:12509349,16274521 -k1,461:32583030,16274521:17584624 -g1,461:32583030,16274521 -) -v1,463:6630773,17318188:0,393216,0 -(1,470:6630773,18333541:25952256,1408569,196608 -g1,470:6630773,18333541 -g1,470:6630773,18333541 -g1,470:6434165,18333541 -(1,470:6434165,18333541:0,1408569,196608 -r1,525:32779637,18333541:26345472,1605177,196608 -k1,470:6434165,18333541:-26345472 -) -(1,470:6434165,18333541:26345472,1408569,196608 -[1,470:6630773,18333541:25952256,1211961,0 -(1,465:6630773,17525806:25952256,404226,101187 -(1,464:6630773,17525806:0,0,0 -g1,464:6630773,17525806 -g1,464:6630773,17525806 -g1,464:6303093,17525806 -(1,464:6303093,17525806:0,0,0 -) -g1,464:6630773,17525806 -) -g1,465:7579211,17525806 -g1,465:8211503,17525806 -g1,465:10740669,17525806 -g1,465:11372961,17525806 -k1,465:11372961,17525806:0 -h1,465:13585981,17525806:0,0,0 -k1,465:32583029,17525806:18997048 -g1,465:32583029,17525806 -) -(1,469:6630773,18257520:25952256,404226,76021 -(1,467:6630773,18257520:0,0,0 -g1,467:6630773,18257520 -g1,467:6630773,18257520 -g1,467:6303093,18257520 -(1,467:6303093,18257520:0,0,0 -) -g1,467:6630773,18257520 -) -g1,469:7579210,18257520 -g1,469:8843793,18257520 -h1,469:12637541,18257520:0,0,0 -k1,469:32583029,18257520:19945488 -g1,469:32583029,18257520 -) -] -) -g1,470:32583029,18333541 -g1,470:6630773,18333541 -g1,470:6630773,18333541 -g1,470:32583029,18333541 -g1,470:32583029,18333541 -) -h1,470:6630773,18530149:0,0,0 -(1,474:6630773,19749126:25952256,513147,126483 -h1,473:6630773,19749126:983040,0,0 -k1,473:8271945,19749126:188239 -k1,473:9564467,19749126:188240 -k1,473:10500472,19749126:188239 -k1,473:12128538,19749126:188240 -k1,473:14172101,19749126:188239 -k1,473:15644847,19749126:188240 -k1,473:20156496,19749126:188239 -k1,473:23432792,19749126:188240 -k1,473:24812476,19749126:188239 -k1,473:28026513,19749126:188240 -k1,473:29206312,19749126:188239 -k1,473:30716413,19749126:188240 -k1,473:31563944,19749126:188239 -k1,474:32583029,19749126:0 -) -(1,474:6630773,20590614:25952256,513147,134348 -k1,473:7268953,20590614:223337 -k1,473:10508280,20590614:223360 -k1,473:12003039,20590614:223361 -k1,473:13888393,20590614:223361 -k1,473:14763182,20590614:223361 -k1,473:18245647,20590614:223360 -k1,473:20167046,20590614:223361 -k1,473:23844810,20590614:223361 -k1,473:26754492,20590614:223361 -k1,473:29818182,20590614:223360 -k1,473:30727705,20590614:223361 -k1,473:32583029,20590614:0 -) -(1,474:6630773,21432102:25952256,513147,134348 -k1,473:8191091,21432102:292852 -k1,473:8898693,21432102:292759 -k1,473:10861402,21432102:292852 -k1,473:11685751,21432102:292852 -k1,473:13263110,21432102:292853 -k1,473:14172000,21432102:292852 -k1,473:17740997,21432102:292852 -k1,473:21804136,21432102:292853 -k1,473:23116073,21432102:292852 -k1,473:24453569,21432102:292852 -k1,473:25405713,21432102:292852 -k1,473:26717651,21432102:292853 -k1,473:29520532,21432102:292852 -k1,473:32583029,21432102:0 -) -(1,474:6630773,22273590:25952256,513147,134348 -k1,473:7238493,22273590:251860 -k1,473:10373282,22273590:251860 -k1,473:11909648,22273590:251860 -k1,473:13945397,22273590:251859 -k1,473:15216342,22273590:251860 -k1,473:17746889,22273590:251860 -k1,473:21599952,22273590:251860 -k1,473:22511104,22273590:251860 -k1,473:26341230,22273590:251860 -k1,473:27220925,22273590:251860 -k1,473:30277725,22273590:251859 -k1,473:31145623,22273590:251860 -k1,473:32168186,22273590:251860 -k1,474:32583029,22273590:0 -) -(1,474:6630773,23115078:25952256,505283,134348 -g1,473:10269987,23115078 -g1,473:11672457,23115078 -g1,473:14754615,23115078 -g1,473:16575860,23115078 -g1,473:17522855,23115078 -g1,473:20619431,23115078 -g1,473:23468281,23115078 -g1,473:25061461,23115078 -g1,473:28487683,23115078 -k1,474:32583029,23115078:67503 -g1,474:32583029,23115078 -) -(1,476:6630773,23956566:25952256,513147,126483 -h1,475:6630773,23956566:983040,0,0 -k1,475:8275373,23956566:183803 -k1,475:9629650,23956566:183804 -k1,475:10805013,23956566:183803 -k1,475:11604854,23956566:183803 -k1,475:13676095,23956566:183804 -k1,475:15682454,23956566:183803 -k1,475:17196638,23956566:183803 -k1,475:20981644,23956566:183803 -k1,475:22751419,23956566:183804 -k1,475:24705349,23956566:183803 -k1,475:26059625,23956566:183803 -k1,475:27347711,23956566:183804 -k1,475:28728857,23956566:183803 -k1,475:32583029,23956566:0 -) -(1,476:6630773,24798054:25952256,513147,126483 -k1,475:7494033,24798054:211832 -k1,475:9421599,24798054:211833 -k1,475:11014275,24798054:211832 -k1,475:12245192,24798054:211832 -k1,475:14196351,24798054:211833 -k1,475:15067475,24798054:211832 -k1,475:19673496,24798054:211832 -k1,475:20416825,24798054:211832 -k1,475:21647743,24798054:211833 -k1,475:23016285,24798054:211832 -k1,475:24398590,24798054:211832 -k1,475:26839958,24798054:211833 -k1,475:30542893,24798054:211832 -k1,476:32583029,24798054:0 -) -(1,476:6630773,25639542:25952256,513147,7863 -g1,475:8857031,25639542 -g1,475:10531475,25639542 -g1,475:11540074,25639542 -k1,476:32583029,25639542:19098502 -g1,476:32583029,25639542 -) -v1,478:6630773,26683208:0,393216,0 -(1,497:6630773,31789336:25952256,5499344,196608 -g1,497:6630773,31789336 -g1,497:6630773,31789336 -g1,497:6434165,31789336 -(1,497:6434165,31789336:0,5499344,196608 -r1,525:32779637,31789336:26345472,5695952,196608 -k1,497:6434165,31789336:-26345472 -) -(1,497:6434165,31789336:26345472,5499344,196608 -[1,497:6630773,31789336:25952256,5302736,0 -(1,480:6630773,26875097:25952256,388497,9436 -(1,479:6630773,26875097:0,0,0 -g1,479:6630773,26875097 -g1,479:6630773,26875097 -g1,479:6303093,26875097 -(1,479:6303093,26875097:0,0,0 -) -g1,479:6630773,26875097 -) -g1,480:7263065,26875097 -g1,480:7895357,26875097 -g1,480:8527649,26875097 -g1,480:9159941,26875097 -h1,480:9476087,26875097:0,0,0 -k1,480:32583029,26875097:23106942 -g1,480:32583029,26875097 -) -(1,484:6630773,27606811:25952256,404226,76021 -(1,482:6630773,27606811:0,0,0 -g1,482:6630773,27606811 -g1,482:6630773,27606811 -g1,482:6303093,27606811 -(1,482:6303093,27606811:0,0,0 -) -g1,482:6630773,27606811 -) -g1,484:7579210,27606811 -g1,484:8843793,27606811 -h1,484:9159939,27606811:0,0,0 -k1,484:32583029,27606811:23423090 -g1,484:32583029,27606811 -) -(1,486:6630773,28928349:25952256,404226,76021 -(1,485:6630773,28928349:0,0,0 -g1,485:6630773,28928349 -g1,485:6630773,28928349 -g1,485:6303093,28928349 -(1,485:6303093,28928349:0,0,0 -) -g1,485:6630773,28928349 -) -g1,486:7263065,28928349 -g1,486:7895357,28928349 -g1,486:8843795,28928349 -g1,486:9476087,28928349 -h1,486:10108379,28928349:0,0,0 -k1,486:32583029,28928349:22474650 -g1,486:32583029,28928349 -) -(1,490:6630773,29660063:25952256,404226,76021 -(1,488:6630773,29660063:0,0,0 -g1,488:6630773,29660063 -g1,488:6630773,29660063 -g1,488:6303093,29660063 -(1,488:6303093,29660063:0,0,0 -) -g1,488:6630773,29660063 -) -g1,490:7579210,29660063 -g1,490:8843793,29660063 -h1,490:9159939,29660063:0,0,0 -k1,490:32583029,29660063:23423090 -g1,490:32583029,29660063 -) -(1,492:6630773,30981601:25952256,404226,76021 -(1,491:6630773,30981601:0,0,0 -g1,491:6630773,30981601 -g1,491:6630773,30981601 -g1,491:6303093,30981601 -(1,491:6303093,30981601:0,0,0 -) -g1,491:6630773,30981601 -) -g1,492:7579211,30981601 -g1,492:8211503,30981601 -g1,492:9159941,30981601 -g1,492:9792233,30981601 -h1,492:10108379,30981601:0,0,0 -k1,492:32583029,30981601:22474650 -g1,492:32583029,30981601 -) -(1,496:6630773,31713315:25952256,404226,76021 -(1,494:6630773,31713315:0,0,0 -g1,494:6630773,31713315 -g1,494:6630773,31713315 -g1,494:6303093,31713315 -(1,494:6303093,31713315:0,0,0 -) -g1,494:6630773,31713315 -) -g1,496:7579210,31713315 -g1,496:8843793,31713315 -h1,496:9159939,31713315:0,0,0 -k1,496:32583029,31713315:23423090 -g1,496:32583029,31713315 -) -] -) -g1,497:32583029,31789336 -g1,497:6630773,31789336 -g1,497:6630773,31789336 -g1,497:32583029,31789336 -g1,497:32583029,31789336 -) -h1,497:6630773,31985944:0,0,0 -(1,501:6630773,33204921:25952256,513147,134348 -h1,500:6630773,33204921:983040,0,0 -k1,500:9006616,33204921:196116 -k1,500:11688514,33204921:196117 -k1,500:12543922,33204921:196116 -k1,500:15307739,33204921:196116 -k1,500:16785085,33204921:196117 -k1,500:18487874,33204921:196116 -k1,500:19875435,33204921:196116 -k1,500:22325335,33204921:196117 -k1,500:24264053,33204921:196116 -k1,500:25966842,33204921:196116 -k1,500:30017131,33204921:196117 -k1,500:31835263,33204921:196116 -k1,500:32583029,33204921:0 -) -(1,501:6630773,34046409:25952256,505283,126483 -k1,500:9872979,34046409:234759 -k1,500:11299184,34046409:234760 -k1,500:12914131,34046409:234759 -k1,500:14770906,34046409:234759 -k1,500:15753431,34046409:234759 -k1,500:18302267,34046409:234760 -k1,500:19261854,34046409:234759 -k1,500:20781119,34046409:234759 -k1,500:22467501,34046409:234760 -k1,500:25496060,34046409:234759 -k1,500:27243390,34046409:234759 -k1,500:28009646,34046409:234759 -k1,500:28600266,34046409:234760 -k1,500:30375121,34046409:234759 -k1,501:32583029,34046409:0 -) -(1,501:6630773,34887897:25952256,505283,126483 -k1,500:9177408,34887897:218141 -k1,500:13009204,34887897:218141 -k1,500:14296893,34887897:218141 -k1,500:16011221,34887897:218141 -k1,500:17513868,34887897:218141 -k1,500:18836291,34887897:218141 -k1,500:19802199,34887897:218142 -k1,500:23081527,34887897:218141 -k1,500:23951096,34887897:218141 -k1,500:26179882,34887897:218141 -k1,500:26753883,34887897:218141 -k1,500:28826038,34887897:218141 -k1,500:29400039,34887897:218141 -k1,500:31298523,34887897:218141 -k1,500:32583029,34887897:0 -) -(1,501:6630773,35729385:25952256,513147,126483 -k1,500:7988570,35729385:253515 -k1,500:8989851,35729385:253515 -k1,500:11850388,35729385:253515 -k1,500:12719941,35729385:253515 -k1,500:14636104,35729385:253515 -k1,500:15548912,35729385:253516 -k1,500:16821512,35729385:253515 -k1,500:20515012,35729385:253515 -k1,500:23562327,35729385:253515 -k1,500:24431880,35729385:253515 -k1,500:28393422,35729385:253515 -k1,500:30689694,35729385:253515 -k1,501:32583029,35729385:0 -) -(1,501:6630773,36570873:25952256,513147,134348 -k1,500:8460908,36570873:227124 -k1,500:9707116,36570873:227123 -k1,500:13152058,36570873:227124 -k1,500:14038473,36570873:227123 -k1,500:15284682,36570873:227124 -k1,500:19125460,36570873:227123 -k1,500:20394606,36570873:227124 -k1,500:23456816,36570873:227123 -(1,500:23456816,36570873:0,452978,115847 -r1,525:27332202,36570873:3875386,568825,115847 -k1,500:23456816,36570873:-3875386 -) -(1,500:23456816,36570873:3875386,452978,115847 -g1,500:24515229,36570873 -g1,500:25218653,36570873 -g1,500:26273789,36570873 -g1,500:26977213,36570873 -h1,500:27328925,36570873:0,411205,112570 -) -k1,500:27559326,36570873:227124 -k1,500:29299675,36570873:227123 -k1,501:32583029,36570873:0 -) -(1,501:6630773,37412361:25952256,505283,134348 -(1,500:6630773,37412361:0,452978,115847 -r1,525:9099311,37412361:2468538,568825,115847 -k1,500:6630773,37412361:-2468538 -) -(1,500:6630773,37412361:2468538,452978,115847 -g1,500:7689186,37412361 -g1,500:8392610,37412361 -h1,500:9096034,37412361:0,411205,112570 -) -k1,500:9272624,37412361:173313 -k1,500:12219421,37412361:173313 -(1,500:12219421,37412361:0,435480,115847 -r1,525:13984535,37412361:1765114,551327,115847 -k1,500:12219421,37412361:-1765114 -) -(1,500:12219421,37412361:1765114,435480,115847 -g1,500:12926122,37412361 -g1,500:13629546,37412361 -h1,500:13981258,37412361:0,411205,112570 -) -k1,500:14157848,37412361:173313 -k1,500:16856918,37412361:173312 -(1,500:16856918,37412361:0,435480,115847 -r1,525:17215184,37412361:358266,551327,115847 -k1,500:16856918,37412361:-358266 -) -(1,500:16856918,37412361:358266,435480,115847 -k1,500:16856918,37412361:3277 -h1,500:17211907,37412361:0,411205,112570 -) -k1,500:17562167,37412361:173313 -k1,500:18363315,37412361:173313 -k1,500:21341569,37412361:173313 -(1,500:21341569,37412361:0,452978,115847 -r1,525:25216955,37412361:3875386,568825,115847 -k1,500:21341569,37412361:-3875386 -) -(1,500:21341569,37412361:3875386,452978,115847 -g1,500:22399982,37412361 -g1,500:23455118,37412361 -g1,500:24158542,37412361 -g1,500:24861966,37412361 -h1,500:25213678,37412361:0,411205,112570 -) -k1,500:25390268,37412361:173313 -k1,500:26095078,37412361:173313 -k1,500:26624250,37412361:173312 -k1,500:28881608,37412361:173313 -k1,500:30661864,37412361:173313 -k1,500:31521339,37412361:173313 -(1,500:31521339,37412361:0,435480,115847 -r1,525:32583029,37412361:1061690,551327,115847 -k1,500:31521339,37412361:-1061690 -) -(1,500:31521339,37412361:1061690,435480,115847 -g1,500:32228040,37412361 -h1,500:32579752,37412361:0,411205,112570 -) -k1,500:32583029,37412361:0 -) -(1,501:6630773,38253849:25952256,505283,126483 -g1,500:7361499,38253849 -g1,500:11102294,38253849 -g1,500:12492968,38253849 -g1,500:14185107,38253849 -g1,500:15450607,38253849 -g1,500:17185345,38253849 -g1,500:17740434,38253849 -k1,501:32583029,38253849:12183144 -g1,501:32583029,38253849 -) -v1,503:6630773,39472826:0,393216,0 -(1,525:6630773,45116945:25952256,6037335,589824 -g1,525:6630773,45116945 -(1,525:6630773,45116945:25952256,6037335,589824 -(1,525:6630773,45706769:25952256,6627159,0 -[1,525:6630773,45706769:25952256,6627159,0 -(1,525:6630773,45706769:25952256,6600945,0 -r1,525:6656987,45706769:26214,6600945,0 -[1,525:6656987,45706769:25899828,6600945,0 -(1,525:6656987,45116945:25899828,5421297,0 -[1,525:7246811,45116945:24720180,5421297,0 -(1,504:7246811,40783022:24720180,1087374,126483 -k1,503:8734861,40783022:278347 -k1,503:10501531,40783022:278347 -k1,503:12953052,40783022:278347 -k1,503:14222959,40783022:278347 -k1,503:15567577,40783022:278347 -k1,503:18095120,40783022:278347 -k1,503:20247798,40783022:278348 -k1,503:21517705,40783022:278347 -k1,503:24787771,40783022:278347 -k1,503:26013769,40783022:278347 -k1,503:27462589,40783022:278347 -k1,503:28392364,40783022:278347 -k1,503:30056797,40783022:278347 -k1,503:30947906,40783022:278347 -k1,503:31966991,40783022:0 -) -(1,504:7246811,41624510:24720180,505283,134348 -k1,503:10624688,41624510:218386 -k1,503:13417984,41624510:218386 -k1,503:14264205,41624510:218386 -k1,503:16815673,41624510:218386 -k1,503:18204532,41624510:218386 -k1,503:20603301,41624510:218386 -k1,503:21887958,41624510:218386 -k1,503:23451143,41624510:218386 -k1,503:25482255,41624510:218386 -k1,503:26386803,41624510:218386 -k1,503:27221227,41624510:218386 -k1,503:29191390,41624510:218386 -k1,503:31280829,41624510:218386 -k1,503:31966991,41624510:0 -) -(1,504:7246811,42465998:24720180,505283,134348 -k1,503:8816160,42465998:175398 -k1,503:10010643,42465998:175398 -k1,503:13702703,42465998:175398 -k1,503:17503553,42465998:175398 -k1,503:19072902,42465998:175398 -k1,503:22565733,42465998:175399 -k1,503:23357169,42465998:175398 -k1,503:24551652,42465998:175398 -k1,503:26223237,42465998:175398 -k1,503:28369303,42465998:175398 -k1,503:30586803,42465998:175398 -k1,503:31966991,42465998:0 -) -(1,504:7246811,43307486:24720180,505283,134348 -k1,503:8894922,43307486:172896 -k1,503:12421951,43307486:172896 -k1,503:13246274,43307486:172895 -k1,503:15127694,43307486:172896 -k1,503:15983475,43307486:172896 -k1,503:20363127,43307486:172896 -k1,503:21789727,43307486:172896 -k1,503:22954183,43307486:172896 -k1,503:25752450,43307486:172895 -k1,503:29616989,43307486:172896 -k1,503:30441313,43307486:172896 -k1,503:31966991,43307486:0 -) -(1,504:7246811,44148974:24720180,513147,126483 -k1,503:8141213,44148974:278364 -k1,503:10121547,44148974:278364 -k1,503:12528521,44148974:278365 -k1,503:14736265,44148974:278364 -k1,503:16297824,44148974:278364 -k1,503:19732402,44148974:278364 -k1,503:20670058,44148974:278364 -k1,503:21967507,44148974:278364 -k1,503:25237591,44148974:278365 -k1,503:26707400,44148974:278364 -k1,503:29398144,44148974:278364 -k1,503:31315563,44148974:278364 -k1,503:31966991,44148974:0 -) -(1,504:7246811,44990462:24720180,505283,126483 -g1,503:9814511,44990462 -g1,503:11344121,44990462 -g1,503:11958193,44990462 -g1,503:14257851,44990462 -g1,503:14257851,44990462 -g1,503:14457080,44990462 -g1,503:14457080,44990462 -g1,503:14656309,44990462 -g1,503:14656309,44990462 -k1,504:31966991,44990462:17310682 -g1,504:31966991,44990462 -) -] -) -] -r1,525:32583029,45706769:26214,6600945,0 -) -] -) -) -g1,525:32583029,45116945 -) -] -(1,525:32583029,45706769:0,0,0 -g1,525:32583029,45706769 -) -) -] -(1,525:6630773,47279633:25952256,0,0 -h1,525:6630773,47279633:25952256,0,0 -) -] -(1,525:4262630,4025873:0,0,0 -[1,525:-473656,4025873:0,0,0 -(1,525:-473656,-710413:0,0,0 -(1,525:-473656,-710413:0,0,0 -g1,525:-473656,-710413 -) -g1,525:-473656,-710413 -) -] -) -] -!23110 -}32 -Input:230:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:231:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:232:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:233:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:234:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:235:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:236:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:237:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:238:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!830 -{33 -[1,592:4262630,47279633:28320399,43253760,0 -(1,592:4262630,4025873:0,0,0 -[1,592:-473656,4025873:0,0,0 -(1,592:-473656,-710413:0,0,0 -(1,592:-473656,-644877:0,0,0 -k1,592:-473656,-644877:-65536 -) -(1,592:-473656,4736287:0,0,0 -k1,592:-473656,4736287:5209943 -) -g1,592:-473656,-710413 -) -] -) -[1,592:6630773,47279633:25952256,43253760,0 -[1,592:6630773,4812305:25952256,786432,0 -(1,592:6630773,4812305:25952256,505283,134348 -(1,592:6630773,4812305:25952256,505283,134348 -g1,592:3078558,4812305 -[1,592:3078558,4812305:0,0,0 -(1,592:3078558,2439708:0,1703936,0 -k1,592:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,592:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,592:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,592:3078558,4812305:0,0,0 -(1,592:3078558,2439708:0,1703936,0 -g1,592:29030814,2439708 -g1,592:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,592:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,592:37855564,2439708:1179648,16384,0 -) -) -k1,592:3078556,2439708:-34777008 -) -] -[1,592:3078558,4812305:0,0,0 -(1,592:3078558,49800853:0,16384,2228224 -k1,592:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,592:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,592:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,592:3078558,4812305:0,0,0 -(1,592:3078558,49800853:0,16384,2228224 -g1,592:29030814,49800853 -g1,592:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,592:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,592:37855564,49800853:1179648,16384,0 -) -) -k1,592:3078556,49800853:-34777008 -) -] -g1,592:6630773,4812305 -k1,592:19515153,4812305:12087462 -g1,592:20901894,4812305 -g1,592:21550700,4812305 -g1,592:24864855,4812305 -g1,592:27600327,4812305 -g1,592:29010006,4812305 -) -) -] -[1,592:6630773,45706769:25952256,40108032,0 -(1,592:6630773,45706769:25952256,40108032,0 -(1,592:6630773,45706769:0,0,0 -g1,592:6630773,45706769 -) -[1,592:6630773,45706769:25952256,40108032,0 -v1,525:6630773,6254097:0,393216,0 -(1,525:6630773,15852029:25952256,9991148,616038 -g1,525:6630773,15852029 -(1,525:6630773,15852029:25952256,9991148,616038 -(1,525:6630773,16468067:25952256,10607186,0 -[1,525:6630773,16468067:25952256,10607186,0 -(1,525:6630773,16441853:25952256,10580972,0 -r1,592:6656987,16441853:26214,10580972,0 -[1,525:6656987,16441853:25899828,10580972,0 -(1,525:6656987,15852029:25899828,9401324,0 -[1,525:7246811,15852029:24720180,9401324,0 -v1,506:7246811,6843921:0,393216,0 -(1,522:7246811,15131133:24720180,8680428,196608 -g1,522:7246811,15131133 -g1,522:7246811,15131133 -g1,522:7050203,15131133 -(1,522:7050203,15131133:0,8680428,196608 -r1,592:32163599,15131133:25113396,8877036,196608 -k1,522:7050203,15131133:-25113396 -) -(1,522:7050203,15131133:25113396,8680428,196608 -[1,522:7246811,15131133:24720180,8483820,0 -(1,508:7246811,7035810:24720180,388497,0 -(1,507:7246811,7035810:0,0,0 -g1,507:7246811,7035810 -g1,507:7246811,7035810 -g1,507:6919131,7035810 -(1,507:6919131,7035810:0,0,0 -) -g1,507:7246811,7035810 -) -g1,508:7879103,7035810 -g1,508:8511395,7035810 -h1,508:8827541,7035810:0,0,0 -k1,508:31966991,7035810:23139450 -g1,508:31966991,7035810 -) -(1,509:7246811,7701988:24720180,388497,0 -h1,509:7246811,7701988:0,0,0 -g1,509:7879103,7701988 -g1,509:8511395,7701988 -h1,509:8827541,7701988:0,0,0 -k1,509:31966991,7701988:23139450 -g1,509:31966991,7701988 -) -(1,510:7246811,8368166:24720180,404226,76021 -h1,510:7246811,8368166:0,0,0 -g1,510:7879103,8368166 -g1,510:8511395,8368166 -g1,510:9459832,8368166 -g1,510:10092124,8368166 -h1,510:10408270,8368166:0,0,0 -k1,510:31966990,8368166:21558720 -g1,510:31966990,8368166 -) -(1,511:7246811,9034344:24720180,404226,76021 -h1,511:7246811,9034344:0,0,0 -g1,511:8195249,9034344 -g1,511:8827541,9034344 -g1,511:10092124,9034344 -g1,511:10724416,9034344 -h1,511:11040562,9034344:0,0,0 -k1,511:31966990,9034344:20926428 -g1,511:31966990,9034344 -) -(1,512:7246811,9700522:24720180,388497,9436 -h1,512:7246811,9700522:0,0,0 -g1,512:8827540,9700522 -g1,512:9459832,9700522 -h1,512:9775978,9700522:0,0,0 -k1,512:31966990,9700522:22191012 -g1,512:31966990,9700522 -) -(1,513:7246811,10366700:24720180,404226,101187 -h1,513:7246811,10366700:0,0,0 -k1,513:7246811,10366700:0 -h1,513:9459832,10366700:0,0,0 -k1,513:31966992,10366700:22507160 -g1,513:31966992,10366700 -) -(1,514:7246811,11032878:24720180,404226,107478 -h1,514:7246811,11032878:0,0,0 -g1,514:8195248,11032878 -g1,514:8827540,11032878 -g1,514:10724414,11032878 -g1,514:13885871,11032878 -g1,514:15150454,11032878 -g1,514:17047328,11032878 -g1,514:18628057,11032878 -k1,514:18628057,11032878:11010 -h1,514:21168232,11032878:0,0,0 -k1,514:31966991,11032878:10798759 -g1,514:31966991,11032878 -) -(1,515:7246811,11699056:24720180,404226,107478 -h1,515:7246811,11699056:0,0,0 -g1,515:10408268,11699056 -g1,515:12621288,11699056 -g1,515:13253580,11699056 -h1,515:14202017,11699056:0,0,0 -k1,515:31966991,11699056:17764974 -g1,515:31966991,11699056 -) -(1,516:7246811,12365234:24720180,410518,101187 -h1,516:7246811,12365234:0,0,0 -g1,516:9775977,12365234 -g1,516:10408269,12365234 -g1,516:12305143,12365234 -g1,516:13885872,12365234 -g1,516:14834309,12365234 -g1,516:16098892,12365234 -k1,516:16098892,12365234:0 -h1,516:19892640,12365234:0,0,0 -k1,516:31966991,12365234:12074351 -g1,516:31966991,12365234 -) -(1,517:7246811,13031412:24720180,404226,107478 -h1,517:7246811,13031412:0,0,0 -k1,517:7246811,13031412:0 -h1,517:9775977,13031412:0,0,0 -k1,517:31966991,13031412:22191014 -g1,517:31966991,13031412 -) -(1,518:7246811,13697590:24720180,404226,107478 -h1,518:7246811,13697590:0,0,0 -k1,518:7246811,13697590:0 -h1,518:10408268,13697590:0,0,0 -k1,518:31966992,13697590:21558724 -g1,518:31966992,13697590 -) -(1,519:7246811,14363768:24720180,404226,107478 -h1,519:7246811,14363768:0,0,0 -k1,519:7246811,14363768:0 -h1,519:9459832,14363768:0,0,0 -k1,519:31966992,14363768:22507160 -g1,519:31966992,14363768 -) -(1,520:7246811,15029946:24720180,404226,101187 -h1,520:7246811,15029946:0,0,0 -k1,520:7246811,15029946:0 -h1,520:9143686,15029946:0,0,0 -k1,520:31966990,15029946:22823304 -g1,520:31966990,15029946 -) -] -) -g1,522:31966991,15131133 -g1,522:7246811,15131133 -g1,522:7246811,15131133 -g1,522:31966991,15131133 -g1,522:31966991,15131133 -) -h1,522:7246811,15327741:0,0,0 -] -) -] -r1,592:32583029,16441853:26214,10580972,0 -) -] -) -) -g1,525:32583029,15852029 -) -h1,525:6630773,16468067:0,0,0 -(1,528:6630773,17624127:25952256,513147,134348 -h1,527:6630773,17624127:983040,0,0 -k1,527:10840993,17624127:284613 -k1,527:12117167,17624127:284614 -k1,527:13915006,17624127:284613 -k1,527:14851047,17624127:284613 -k1,527:16753090,17624127:284614 -k1,527:19222018,17624127:284613 -k1,527:21151586,17624127:284614 -k1,527:22304551,17624127:284613 -k1,527:24563109,17624127:284613 -k1,527:25203583,17624127:284614 -k1,527:27168539,17624127:284613 -k1,527:28104580,17624127:284613 -k1,527:28745054,17624127:284614 -k1,527:31714677,17624127:284613 -k1,527:32583029,17624127:0 -) -(1,528:6630773,18465615:25952256,513147,126483 -k1,527:8019604,18465615:284549 -k1,527:9396638,18465615:284549 -k1,527:10297225,18465615:284549 -k1,527:11679502,18465615:284549 -k1,527:13460238,18465615:284549 -k1,527:14763872,18465615:284549 -k1,527:16786436,18465615:284549 -k1,527:17730278,18465615:284550 -k1,527:19033912,18465615:284549 -k1,527:21829801,18465615:284549 -k1,527:22730388,18465615:284549 -k1,527:24677585,18465615:284549 -k1,527:25621426,18465615:284549 -k1,527:26925060,18465615:284549 -k1,527:29247779,18465615:284549 -k1,527:31386342,18465615:284549 -k1,527:32583029,18465615:0 -) -(1,528:6630773,19307103:25952256,505283,134348 -k1,527:9191519,19307103:239461 -k1,527:13076748,19307103:239461 -k1,527:16062822,19307103:239460 -k1,527:16833780,19307103:239461 -(1,527:16833780,19307103:0,414482,115847 -r1,592:17543758,19307103:709978,530329,115847 -k1,527:16833780,19307103:-709978 -) -(1,527:16833780,19307103:709978,414482,115847 -k1,527:16833780,19307103:3277 -h1,527:17540481,19307103:0,411205,112570 -) -k1,527:17956889,19307103:239461 -k1,527:18824185,19307103:239461 -k1,527:19652158,19307103:239460 -k1,527:20657735,19307103:239461 -k1,527:23139183,19307103:239461 -k1,527:26359221,19307103:239461 -k1,527:29110021,19307103:239460 -k1,527:31591469,19307103:239461 -k1,527:32583029,19307103:0 -) -(1,528:6630773,20148591:25952256,513147,115847 -k1,527:8174784,20148591:176930 -k1,527:11311975,20148591:176930 -k1,527:14431472,20148591:176930 -(1,527:14431472,20148591:0,414482,115847 -r1,592:14789738,20148591:358266,530329,115847 -k1,527:14431472,20148591:-358266 -) -(1,527:14431472,20148591:358266,414482,115847 -k1,527:14431472,20148591:3277 -h1,527:14786461,20148591:0,411205,112570 -) -k1,527:14966667,20148591:176929 -k1,527:16335042,20148591:176930 -(1,527:16335042,20148591:0,414482,115847 -r1,592:16693308,20148591:358266,530329,115847 -k1,527:16335042,20148591:-358266 -) -(1,527:16335042,20148591:358266,414482,115847 -k1,527:16335042,20148591:3277 -h1,527:16690031,20148591:0,411205,112570 -) -k1,527:16870238,20148591:176930 -k1,527:18038728,20148591:176930 -k1,527:19388097,20148591:176930 -k1,527:22327370,20148591:176930 -k1,527:25519610,20148591:176929 -k1,527:28308805,20148591:176930 -k1,527:30554051,20148591:176930 -k1,527:31835263,20148591:176930 -k1,527:32583029,20148591:0 -) -(1,528:6630773,20990079:25952256,505283,134348 -k1,527:8255014,20990079:235533 -k1,527:9106585,20990079:235533 -k1,527:9756925,20990079:235497 -k1,527:12823613,20990079:235533 -k1,527:13517243,20990079:235533 -k1,527:14284273,20990079:235533 -k1,527:15586077,20990079:235533 -k1,527:16177470,20990079:235533 -k1,527:17997009,20990079:235534 -k1,527:19557680,20990079:235533 -k1,527:20444641,20990079:235533 -k1,527:21772659,20990079:235533 -k1,527:23362166,20990079:235533 -k1,527:24986407,20990079:235533 -k1,527:27463927,20990079:235533 -k1,527:29187783,20990079:235533 -k1,527:29636272,20990079:235497 -k1,527:30847636,20990079:235533 -k1,527:32583029,20990079:0 -) -(1,528:6630773,21831567:25952256,505283,134348 -k1,527:8197084,21831567:212337 -k1,527:10094351,21831567:212336 -k1,527:12548675,21831567:212337 -k1,527:16115144,21831567:212336 -k1,527:17611987,21831567:212337 -k1,527:18355820,21831567:212336 -k1,527:20855364,21831567:212337 -k1,527:22353516,21831567:212336 -k1,527:22921713,21831567:212337 -k1,527:24488023,21831567:212336 -k1,527:25877387,21831567:212337 -k1,527:27588531,21831567:212336 -k1,527:30735570,21831567:212337 -k1,527:31563944,21831567:212336 -k1,527:32583029,21831567:0 -) -(1,528:6630773,22673055:25952256,505283,126483 -k1,527:9859329,22673055:236837 -k1,527:10712204,22673055:236837 -k1,527:12152282,22673055:236837 -k1,527:14806742,22673055:236837 -k1,527:16962473,22673055:236837 -k1,527:18218395,22673055:236837 -k1,527:20493401,22673055:236836 -k1,527:22740883,22673055:236837 -k1,527:24452935,22673055:236837 -k1,527:25499142,22673055:236837 -k1,527:29242155,22673055:236837 -k1,527:30130420,22673055:236837 -k1,527:31386342,22673055:236837 -k1,527:32583029,22673055:0 -) -(1,528:6630773,23514543:25952256,505283,126483 -k1,527:8820516,23514543:186307 -k1,527:11131499,23514543:186306 -k1,527:13386122,23514543:186307 -k1,527:16999961,23514543:186306 -k1,527:18694907,23514543:186307 -k1,527:21459399,23514543:186306 -k1,527:23897523,23514543:186307 -k1,527:24711664,23514543:186306 -k1,527:25917056,23514543:186307 -k1,527:28074030,23514543:186306 -k1,527:30302439,23514543:186307 -(1,527:30302439,23514543:0,414482,115847 -r1,592:30660705,23514543:358266,530329,115847 -k1,527:30302439,23514543:-358266 -) -(1,527:30302439,23514543:358266,414482,115847 -k1,527:30302439,23514543:3277 -h1,527:30657428,23514543:0,411205,112570 -) -k1,527:30847011,23514543:186306 -k1,527:32224763,23514543:186307 -(1,527:32224763,23514543:0,452978,115847 -r1,592:32583029,23514543:358266,568825,115847 -k1,527:32224763,23514543:-358266 -) -(1,527:32224763,23514543:358266,452978,115847 -k1,527:32224763,23514543:3277 -h1,527:32579752,23514543:0,411205,112570 -) -k1,527:32583029,23514543:0 -) -(1,528:6630773,24356031:25952256,505283,126483 -k1,527:7804661,24356031:182328 -k1,527:11189733,24356031:182328 -k1,527:13607494,24356031:182328 -k1,527:16301163,24356031:182329 -k1,527:18725478,24356031:182328 -k1,527:19120781,24356031:182311 -k1,527:21071926,24356031:182328 -k1,527:22729469,24356031:182328 -k1,527:24425024,24356031:182329 -k1,527:26675668,24356031:182328 -k1,527:28004221,24356031:182328 -(1,527:28004221,24356031:0,452978,115847 -r1,592:32583029,24356031:4578808,568825,115847 -k1,527:28004221,24356031:-4578808 -) -(1,527:28004221,24356031:4578808,452978,115847 -k1,527:28004221,24356031:3277 -h1,527:32579752,24356031:0,411205,112570 -) -k1,527:32583029,24356031:0 -) -(1,528:6630773,25197519:25952256,513147,126483 -g1,527:7512887,25197519 -(1,527:7512887,25197519:0,452978,115847 -r1,592:14201965,25197519:6689078,568825,115847 -k1,527:7512887,25197519:-6689078 -) -(1,527:7512887,25197519:6689078,452978,115847 -k1,527:7512887,25197519:3277 -h1,527:14198688,25197519:0,411205,112570 -) -g1,527:14401194,25197519 -g1,527:15066384,25197519 -g1,527:16645801,25197519 -g1,527:18036475,25197519 -g1,527:19745654,25197519 -g1,527:21922104,25197519 -g1,527:22772761,25197519 -g1,527:25180553,25197519 -k1,528:32583029,25197519:3421819 -g1,528:32583029,25197519 -) -v1,530:6630773,26178269:0,393216,0 -(1,558:6630773,35336183:25952256,9551130,196608 -g1,558:6630773,35336183 -g1,558:6630773,35336183 -g1,558:6434165,35336183 -(1,558:6434165,35336183:0,9551130,196608 -r1,592:32779637,35336183:26345472,9747738,196608 -k1,558:6434165,35336183:-26345472 -) -(1,558:6434165,35336183:26345472,9551130,196608 -[1,558:6630773,35336183:25952256,9354522,0 -(1,532:6630773,26370158:25952256,388497,4718 -(1,531:6630773,26370158:0,0,0 -g1,531:6630773,26370158 -g1,531:6630773,26370158 -g1,531:6303093,26370158 -(1,531:6303093,26370158:0,0,0 -) -g1,531:6630773,26370158 -) -g1,532:7263065,26370158 -g1,532:8211503,26370158 -h1,532:8527649,26370158:0,0,0 -k1,532:32583029,26370158:24055380 -g1,532:32583029,26370158 -) -(1,533:6630773,27036336:25952256,388497,4718 -h1,533:6630773,27036336:0,0,0 -g1,533:7263065,27036336 -g1,533:7895357,27036336 -h1,533:8211503,27036336:0,0,0 -k1,533:32583029,27036336:24371526 -g1,533:32583029,27036336 -) -(1,537:6630773,27768050:25952256,404226,76021 -(1,535:6630773,27768050:0,0,0 -g1,535:6630773,27768050 -g1,535:6630773,27768050 -g1,535:6303093,27768050 -(1,535:6303093,27768050:0,0,0 -) -g1,535:6630773,27768050 -) -g1,537:7579210,27768050 -g1,537:8843793,27768050 -h1,537:9159939,27768050:0,0,0 -k1,537:32583029,27768050:23423090 -g1,537:32583029,27768050 -) -(1,539:6630773,29089588:25952256,284164,4718 -(1,538:6630773,29089588:0,0,0 -g1,538:6630773,29089588 -g1,538:6630773,29089588 -g1,538:6303093,29089588 -(1,538:6303093,29089588:0,0,0 -) -g1,538:6630773,29089588 -) -h1,539:6946919,29089588:0,0,0 -k1,539:32583029,29089588:25636110 -g1,539:32583029,29089588 -) -(1,543:6630773,29821302:25952256,404226,76021 -(1,541:6630773,29821302:0,0,0 -g1,541:6630773,29821302 -g1,541:6630773,29821302 -g1,541:6303093,29821302 -(1,541:6303093,29821302:0,0,0 -) -g1,541:6630773,29821302 -) -g1,543:7579210,29821302 -g1,543:8843793,29821302 -h1,543:9159939,29821302:0,0,0 -k1,543:32583029,29821302:23423090 -g1,543:32583029,29821302 -) -(1,545:6630773,31142840:25952256,404226,9436 -(1,544:6630773,31142840:0,0,0 -g1,544:6630773,31142840 -g1,544:6630773,31142840 -g1,544:6303093,31142840 -(1,544:6303093,31142840:0,0,0 -) -g1,544:6630773,31142840 -) -g1,545:7263065,31142840 -g1,545:8211503,31142840 -h1,545:8843794,31142840:0,0,0 -k1,545:32583030,31142840:23739236 -g1,545:32583030,31142840 -) -(1,546:6630773,31809018:25952256,404226,6290 -h1,546:6630773,31809018:0,0,0 -g1,546:7263065,31809018 -g1,546:8211503,31809018 -g1,546:8843795,31809018 -g1,546:9476087,31809018 -h1,546:9792233,31809018:0,0,0 -k1,546:32583029,31809018:22790796 -g1,546:32583029,31809018 -) -(1,547:6630773,32475196:25952256,404226,6290 -h1,547:6630773,32475196:0,0,0 -h1,547:6946919,32475196:0,0,0 -k1,547:32583029,32475196:25636110 -g1,547:32583029,32475196 -) -(1,551:6630773,33206910:25952256,404226,76021 -(1,549:6630773,33206910:0,0,0 -g1,549:6630773,33206910 -g1,549:6630773,33206910 -g1,549:6303093,33206910 -(1,549:6303093,33206910:0,0,0 -) -g1,549:6630773,33206910 -) -g1,551:7579210,33206910 -g1,551:8843793,33206910 -h1,551:9476084,33206910:0,0,0 -k1,551:32583028,33206910:23106944 -g1,551:32583028,33206910 -) -(1,553:6630773,34528448:25952256,388497,9436 -(1,552:6630773,34528448:0,0,0 -g1,552:6630773,34528448 -g1,552:6630773,34528448 -g1,552:6303093,34528448 -(1,552:6303093,34528448:0,0,0 -) -g1,552:6630773,34528448 -) -k1,553:6630773,34528448:0 -g1,553:8211501,34528448 -g1,553:8843793,34528448 -h1,553:9792230,34528448:0,0,0 -k1,553:32583030,34528448:22790800 -g1,553:32583030,34528448 -) -(1,557:6630773,35260162:25952256,404226,76021 -(1,555:6630773,35260162:0,0,0 -g1,555:6630773,35260162 -g1,555:6630773,35260162 -g1,555:6303093,35260162 -(1,555:6303093,35260162:0,0,0 -) -g1,555:6630773,35260162 -) -g1,557:7579210,35260162 -g1,557:8843793,35260162 -h1,557:10108376,35260162:0,0,0 -k1,557:32583028,35260162:22474652 -g1,557:32583028,35260162 -) -] -) -g1,558:32583029,35336183 -g1,558:6630773,35336183 -g1,558:6630773,35336183 -g1,558:32583029,35336183 -g1,558:32583029,35336183 -) -h1,558:6630773,35532791:0,0,0 -(1,562:6630773,36688851:25952256,513147,134348 -h1,561:6630773,36688851:983040,0,0 -k1,561:10441408,36688851:158969 -k1,561:11619461,36688851:158968 -k1,561:13516445,36688851:158969 -k1,561:14334706,36688851:158969 -k1,561:14849534,36688851:158968 -k1,561:17519843,36688851:158969 -k1,561:18309924,36688851:158969 -k1,561:19454554,36688851:158969 -k1,561:20063059,36688851:158928 -k1,561:22505958,36688851:158969 -k1,561:25671063,36688851:158969 -k1,561:27260027,36688851:158968 -k1,561:30114492,36688851:158969 -(1,561:30114492,36688851:0,452978,115847 -r1,592:32583029,36688851:2468537,568825,115847 -k1,561:30114492,36688851:-2468537 -) -(1,561:30114492,36688851:2468537,452978,115847 -k1,561:30114492,36688851:3277 -h1,561:32579752,36688851:0,411205,112570 -) -k1,561:32583029,36688851:0 -) -(1,562:6630773,37530339:25952256,505283,134348 -k1,561:10156862,37530339:240769 -k1,561:11416716,37530339:240769 -k1,561:13695655,37530339:240769 -k1,561:15616767,37530339:240769 -k1,561:16666906,37530339:240769 -k1,561:17926760,37530339:240769 -k1,561:20761445,37530339:240770 -k1,561:22198901,37530339:240769 -k1,561:24093143,37530339:240769 -k1,561:26615220,37530339:240769 -k1,561:27507417,37530339:240769 -k1,561:28879993,37530339:240769 -k1,561:30822732,37530339:240769 -k1,562:32583029,37530339:0 -) -(1,562:6630773,38371827:25952256,513147,126483 -k1,561:8505868,38371827:236040 -k1,561:11164775,38371827:236041 -k1,561:12031927,38371827:236040 -k1,561:13253629,38371827:236041 -k1,561:13939210,38371827:236004 -k1,561:16632850,38371827:236040 -(1,561:16632850,38371827:0,452978,115847 -r1,592:19101387,38371827:2468537,568825,115847 -k1,561:16632850,38371827:-2468537 -) -(1,561:16632850,38371827:2468537,452978,115847 -k1,561:16632850,38371827:3277 -h1,561:19098110,38371827:0,411205,112570 -) -k1,561:19337428,38371827:236041 -k1,561:20104965,38371827:236040 -k1,561:23347142,38371827:236041 -k1,561:25450958,38371827:236040 -k1,561:27080950,38371827:236041 -k1,561:28336075,38371827:236040 -k1,561:30414988,38371827:236041 -k1,561:31310320,38371827:236040 -k1,562:32583029,38371827:0 -) -(1,562:6630773,39213315:25952256,505283,134348 -g1,561:8825573,39213315 -g1,561:10043887,39213315 -g1,561:13429476,39213315 -g1,561:14314867,39213315 -g1,561:15302494,39213315 -k1,562:32583029,39213315:14034537 -g1,562:32583029,39213315 -) -v1,564:6630773,40194065:0,393216,0 -(1,589:6630773,45510161:25952256,5709312,196608 -g1,589:6630773,45510161 -g1,589:6630773,45510161 -g1,589:6434165,45510161 -(1,589:6434165,45510161:0,5709312,196608 -r1,592:32779637,45510161:26345472,5905920,196608 -k1,589:6434165,45510161:-26345472 -) -(1,589:6434165,45510161:26345472,5709312,196608 -[1,589:6630773,45510161:25952256,5512704,0 -(1,566:6630773,40281621:25952256,284164,4718 -(1,565:6630773,40281621:0,0,0 -g1,565:6630773,40281621 -g1,565:6630773,40281621 -g1,565:6303093,40281621 -(1,565:6303093,40281621:0,0,0 -) -g1,565:6630773,40281621 -) -h1,566:6946919,40281621:0,0,0 -k1,566:32583029,40281621:25636110 -g1,566:32583029,40281621 -) -(1,570:6630773,40764913:25952256,404226,76021 -(1,568:6630773,40764913:0,0,0 -g1,568:6630773,40764913 -g1,568:6630773,40764913 -g1,568:6303093,40764913 -(1,568:6303093,40764913:0,0,0 -) -g1,568:6630773,40764913 -) -g1,570:7579210,40764913 -g1,570:8843793,40764913 -h1,570:9159939,40764913:0,0,0 -k1,570:32583029,40764913:23423090 -g1,570:32583029,40764913 -) -(1,572:6630773,41838030:25952256,404226,101187 -(1,571:6630773,41838030:0,0,0 -g1,571:6630773,41838030 -g1,571:6630773,41838030 -g1,571:6303093,41838030 -(1,571:6303093,41838030:0,0,0 -) -g1,571:6630773,41838030 -) -k1,572:6630773,41838030:0 -h1,572:9159938,41838030:0,0,0 -k1,572:32583030,41838030:23423092 -g1,572:32583030,41838030 -) -(1,576:6630773,42321322:25952256,404226,76021 -(1,574:6630773,42321322:0,0,0 -g1,574:6630773,42321322 -g1,574:6630773,42321322 -g1,574:6303093,42321322 -(1,574:6303093,42321322:0,0,0 -) -g1,574:6630773,42321322 -) -g1,576:7579210,42321322 -g1,576:8843793,42321322 -h1,576:9159939,42321322:0,0,0 -k1,576:32583029,42321322:23423090 -g1,576:32583029,42321322 -) -(1,578:6630773,43394439:25952256,388497,4718 -(1,577:6630773,43394439:0,0,0 -g1,577:6630773,43394439 -g1,577:6630773,43394439 -g1,577:6303093,43394439 -(1,577:6303093,43394439:0,0,0 -) -g1,577:6630773,43394439 -) -g1,578:7263065,43394439 -g1,578:7895357,43394439 -h1,578:8211503,43394439:0,0,0 -k1,578:32583029,43394439:24371526 -g1,578:32583029,43394439 -) -(1,582:6630773,43877731:25952256,404226,76021 -(1,580:6630773,43877731:0,0,0 -g1,580:6630773,43877731 -g1,580:6630773,43877731 -g1,580:6303093,43877731 -(1,580:6303093,43877731:0,0,0 -) -g1,580:6630773,43877731 -) -g1,582:7579210,43877731 -g1,582:8843793,43877731 -h1,582:9159939,43877731:0,0,0 -k1,582:32583029,43877731:23423090 -g1,582:32583029,43877731 -) -(1,584:6630773,44950848:25952256,404226,101187 -(1,583:6630773,44950848:0,0,0 -g1,583:6630773,44950848 -g1,583:6630773,44950848 -g1,583:6303093,44950848 -(1,583:6303093,44950848:0,0,0 -) -g1,583:6630773,44950848 -) -k1,584:6630773,44950848:0 -g1,584:9159938,44950848 -g1,584:9792230,44950848 -h1,584:10424522,44950848:0,0,0 -k1,584:32583030,44950848:22158508 -g1,584:32583030,44950848 -) -(1,588:6630773,45434140:25952256,404226,76021 -(1,586:6630773,45434140:0,0,0 -g1,586:6630773,45434140 -g1,586:6630773,45434140 -g1,586:6303093,45434140 -(1,586:6303093,45434140:0,0,0 -) -g1,586:6630773,45434140 -) -g1,588:7579210,45434140 -g1,588:8843793,45434140 -h1,588:9159939,45434140:0,0,0 -k1,588:32583029,45434140:23423090 -g1,588:32583029,45434140 -) -] -) -g1,589:32583029,45510161 -g1,589:6630773,45510161 -g1,589:6630773,45510161 -g1,589:32583029,45510161 -g1,589:32583029,45510161 -) -h1,589:6630773,45706769:0,0,0 -] -(1,592:32583029,45706769:0,0,0 -g1,592:32583029,45706769 -) -) -] -(1,592:6630773,47279633:25952256,0,0 -h1,592:6630773,47279633:25952256,0,0 -) -] -(1,592:4262630,4025873:0,0,0 -[1,592:-473656,4025873:0,0,0 -(1,592:-473656,-710413:0,0,0 -(1,592:-473656,-710413:0,0,0 -g1,592:-473656,-710413 -) -g1,592:-473656,-710413 -) -] -) -] -!23784 -}33 -Input:239:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:240:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:241:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:242:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:243:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:244:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:245:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:246:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:247:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:248:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:249:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:250:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:251:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:252:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:253:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:254:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:255:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:256:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1649 -{34 -[1,683:4262630,47279633:28320399,43253760,0 -(1,683:4262630,4025873:0,0,0 -[1,683:-473656,4025873:0,0,0 -(1,683:-473656,-710413:0,0,0 -(1,683:-473656,-644877:0,0,0 -k1,683:-473656,-644877:-65536 -) -(1,683:-473656,4736287:0,0,0 -k1,683:-473656,4736287:5209943 -) -g1,683:-473656,-710413 -) -] -) -[1,683:6630773,47279633:25952256,43253760,0 -[1,683:6630773,4812305:25952256,786432,0 -(1,683:6630773,4812305:25952256,505283,7863 -(1,683:6630773,4812305:25952256,505283,7863 -g1,683:3078558,4812305 -[1,683:3078558,4812305:0,0,0 -(1,683:3078558,2439708:0,1703936,0 -k1,683:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,683:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,683:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,683:3078558,4812305:0,0,0 -(1,683:3078558,2439708:0,1703936,0 -g1,683:29030814,2439708 -g1,683:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,683:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,683:37855564,2439708:1179648,16384,0 -) -) -k1,683:3078556,2439708:-34777008 -) -] -[1,683:3078558,4812305:0,0,0 -(1,683:3078558,49800853:0,16384,2228224 -k1,683:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,683:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,683:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,683:3078558,4812305:0,0,0 -(1,683:3078558,49800853:0,16384,2228224 -g1,683:29030814,49800853 -g1,683:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,683:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,683:37855564,49800853:1179648,16384,0 -) -) -k1,683:3078556,49800853:-34777008 -) -] -g1,683:6630773,4812305 -g1,683:6630773,4812305 -g1,683:9516978,4812305 -g1,683:11710468,4812305 -g1,683:13120147,4812305 -g1,683:16560787,4812305 -k1,683:31786111,4812305:15225324 -) -) -] -[1,683:6630773,45706769:25952256,40108032,0 -(1,683:6630773,45706769:25952256,40108032,0 -(1,683:6630773,45706769:0,0,0 -g1,683:6630773,45706769 -) -[1,683:6630773,45706769:25952256,40108032,0 -v1,592:6630773,6254097:0,393216,0 -(1,609:6630773,20241653:25952256,14380772,616038 -g1,609:6630773,20241653 -(1,609:6630773,20241653:25952256,14380772,616038 -(1,609:6630773,20857691:25952256,14996810,0 -[1,609:6630773,20857691:25952256,14996810,0 -(1,609:6630773,20831477:25952256,14944382,0 -r1,683:6656987,20831477:26214,14944382,0 -[1,609:6656987,20831477:25899828,14944382,0 -(1,609:6656987,20241653:25899828,13764734,0 -[1,609:7246811,20241653:24720180,13764734,0 -(1,593:7246811,7564293:24720180,1087374,134348 -k1,592:8608923,7564293:152409 -k1,592:10593719,7564293:152409 -k1,592:11737688,7564293:152409 -k1,592:13582237,7564293:152409 -k1,592:17706128,7564293:152409 -k1,592:19346205,7564293:152410 -k1,592:23144382,7564293:152409 -k1,592:26813453,7564293:152409 -k1,592:28250368,7564293:152409 -k1,592:29394337,7564293:152409 -k1,592:30613017,7564293:152409 -k1,592:31966991,7564293:0 -) -(1,593:7246811,8405781:24720180,513147,126483 -k1,592:10769933,8405781:218141 -k1,592:12674971,8405781:218141 -k1,592:13965282,8405781:218142 -k1,592:15353896,8405781:218141 -k1,592:17752420,8405781:218141 -k1,592:18718327,8405781:218141 -k1,592:20804900,8405781:218142 -k1,592:22307547,8405781:218141 -k1,592:23905876,8405781:218141 -k1,592:25115577,8405781:218141 -k1,592:27047484,8405781:218141 -k1,592:27951788,8405781:218142 -k1,592:29550117,8405781:218141 -k1,592:30900720,8405781:218141 -k1,592:31966991,8405781:0 -) -(1,593:7246811,9247269:24720180,505283,134348 -k1,592:9579619,9247269:202233 -k1,592:11388796,9247269:202234 -k1,592:14800327,9247269:202233 -k1,592:16194005,9247269:202233 -k1,592:17733172,9247269:202233 -k1,592:20556846,9247269:202234 -k1,592:22103222,9247269:202233 -k1,592:23502142,9247269:202233 -k1,592:25306075,9247269:202233 -k1,592:28717607,9247269:202234 -k1,592:30581833,9247269:202233 -k1,592:31315563,9247269:202233 -k1,592:31966991,9247269:0 -) -(1,593:7246811,10088757:24720180,505283,134348 -k1,592:9088639,10088757:227021 -k1,592:10811847,10088757:227021 -k1,592:15059502,10088757:227021 -k1,592:16483210,10088757:227021 -k1,592:20709238,10088757:227021 -k1,592:24582027,10088757:227021 -k1,592:27555662,10088757:227021 -(1,592:27555662,10088757:0,414482,115847 -r1,683:28265640,10088757:709978,530329,115847 -k1,592:27555662,10088757:-709978 -) -(1,592:27555662,10088757:709978,414482,115847 -k1,592:27555662,10088757:3277 -h1,592:28262363,10088757:0,411205,112570 -) -k1,592:28492661,10088757:227021 -k1,592:29911127,10088757:227021 -k1,593:31966991,10088757:0 -) -(1,593:7246811,10930245:24720180,513147,134348 -k1,592:8461099,10930245:224039 -k1,592:10181324,10930245:224038 -k1,592:11551588,10930245:224039 -(1,592:11551588,10930245:0,435480,115847 -r1,683:13668414,10930245:2116826,551327,115847 -k1,592:11551588,10930245:-2116826 -) -(1,592:11551588,10930245:2116826,435480,115847 -g1,592:12258289,10930245 -g1,592:13313425,10930245 -h1,592:13665137,10930245:0,411205,112570 -) -k1,592:13892452,10930245:224038 -k1,592:15108051,10930245:224039 -k1,592:16872185,10930245:224038 -k1,592:18168393,10930245:224039 -k1,592:19605503,10930245:224039 -k1,592:23134522,10930245:224038 -k1,592:25045458,10930245:224039 -k1,592:26466183,10930245:224038 -k1,592:27782707,10930245:224039 -k1,592:28666037,10930245:224038 -k1,592:29909161,10930245:224039 -k1,592:31966991,10930245:0 -) -(1,593:7246811,11771733:24720180,513147,134348 -k1,592:8782974,11771733:215613 -(1,592:8990068,11771733:0,414482,115847 -r1,683:9348334,11771733:358266,530329,115847 -k1,592:8990068,11771733:-358266 -) -(1,592:8990068,11771733:358266,414482,115847 -k1,592:8990068,11771733:3277 -h1,592:9345057,11771733:0,411205,112570 -) -k1,592:9771041,11771733:215613 -k1,592:10934305,11771733:215613 -k1,592:14795686,11771733:215613 -k1,592:15627337,11771733:215613 -k1,592:17505598,11771733:215613 -k1,592:18388366,11771733:215612 -(1,592:18388366,11771733:0,414482,115847 -r1,683:19098344,11771733:709978,530329,115847 -k1,592:18388366,11771733:-709978 -) -(1,592:18388366,11771733:709978,414482,115847 -k1,592:18388366,11771733:3277 -h1,592:19095067,11771733:0,411205,112570 -) -k1,592:19313957,11771733:215613 -k1,592:22360725,11771733:215613 -k1,592:24116434,11771733:215613 -k1,592:24863544,11771733:215613 -k1,592:29134525,11771733:215613 -k1,592:31966991,11771733:0 -) -(1,593:7246811,12613221:24720180,513147,134348 -k1,592:11385222,12613221:162342 -k1,592:12233726,12613221:162342 -k1,592:13012106,12613221:162342 -k1,592:14193533,12613221:162342 -k1,592:15662008,12613221:162342 -k1,592:19010710,12613221:162342 -k1,592:21041483,12613221:162342 -k1,592:22308107,12613221:162342 -k1,592:23218215,12613221:162342 -k1,592:24893783,12613221:162342 -k1,592:25707553,12613221:162342 -k1,592:27751434,12613221:162342 -k1,592:28565204,12613221:162342 -k1,592:29746631,12613221:162342 -k1,592:31966991,12613221:0 -) -(1,593:7246811,13454709:24720180,505283,134348 -g1,592:9494040,13454709 -g1,592:10977775,13454709 -(1,592:10977775,13454709:0,414482,115847 -r1,683:11336041,13454709:358266,530329,115847 -k1,592:10977775,13454709:-358266 -) -(1,592:10977775,13454709:358266,414482,115847 -k1,592:10977775,13454709:3277 -h1,592:11332764,13454709:0,411205,112570 -) -g1,592:11708940,13454709 -(1,592:11708940,13454709:0,452978,115847 -r1,683:12067206,13454709:358266,568825,115847 -k1,592:11708940,13454709:-358266 -) -(1,592:11708940,13454709:358266,452978,115847 -k1,592:11708940,13454709:3277 -h1,592:12063929,13454709:0,411205,112570 -) -g1,592:12266435,13454709 -g1,592:13657109,13454709 -(1,592:13657109,13454709:0,414482,115847 -r1,683:14015375,13454709:358266,530329,115847 -k1,592:13657109,13454709:-358266 -) -(1,592:13657109,13454709:358266,414482,115847 -k1,592:13657109,13454709:3277 -h1,592:14012098,13454709:0,411205,112570 -) -g1,592:14214604,13454709 -g1,592:15405393,13454709 -g1,592:17342637,13454709 -g1,592:20316660,13454709 -g1,592:21534974,13454709 -g1,592:23387676,13454709 -k1,593:31966991,13454709:6725301 -g1,593:31966991,13454709 -) -v1,595:7246811,14645175:0,393216,0 -(1,606:7246811,19520757:24720180,5268798,196608 -g1,606:7246811,19520757 -g1,606:7246811,19520757 -g1,606:7050203,19520757 -(1,606:7050203,19520757:0,5268798,196608 -r1,683:32163599,19520757:25113396,5465406,196608 -k1,606:7050203,19520757:-25113396 -) -(1,606:7050203,19520757:25113396,5268798,196608 -[1,606:7246811,19520757:24720180,5072190,0 -(1,597:7246811,14852793:24720180,404226,9436 -(1,596:7246811,14852793:0,0,0 -g1,596:7246811,14852793 -g1,596:7246811,14852793 -g1,596:6919131,14852793 -(1,596:6919131,14852793:0,0,0 -) -g1,596:7246811,14852793 -) -g1,597:7879103,14852793 -g1,597:8827541,14852793 -g1,597:9459833,14852793 -g1,597:10408271,14852793 -g1,597:11040563,14852793 -g1,597:11989001,14852793 -h1,597:12937438,14852793:0,0,0 -k1,597:31966990,14852793:19029552 -g1,597:31966990,14852793 -) -(1,598:7246811,15518971:24720180,284164,4718 -h1,598:7246811,15518971:0,0,0 -h1,598:7562957,15518971:0,0,0 -k1,598:31966991,15518971:24404034 -g1,598:31966991,15518971 -) -(1,599:7246811,16185149:24720180,404226,6290 -h1,599:7246811,16185149:0,0,0 -h1,599:7562957,16185149:0,0,0 -k1,599:31966991,16185149:24404034 -g1,599:31966991,16185149 -) -(1,600:7246811,16851327:24720180,284164,6290 -h1,600:7246811,16851327:0,0,0 -h1,600:7562957,16851327:0,0,0 -k1,600:31966991,16851327:24404034 -g1,600:31966991,16851327 -) -(1,601:7246811,17517505:24720180,388497,4718 -h1,601:7246811,17517505:0,0,0 -g1,601:7879103,17517505 -g1,601:8827541,17517505 -h1,601:9143687,17517505:0,0,0 -k1,601:31966991,17517505:22823304 -g1,601:31966991,17517505 -) -(1,602:7246811,18183683:24720180,284164,4718 -h1,602:7246811,18183683:0,0,0 -h1,602:7562957,18183683:0,0,0 -k1,602:31966991,18183683:24404034 -g1,602:31966991,18183683 -) -(1,603:7246811,18849861:24720180,388497,9436 -h1,603:7246811,18849861:0,0,0 -g1,603:7879103,18849861 -g1,603:8511395,18849861 -h1,603:8827541,18849861:0,0,0 -k1,603:31966991,18849861:23139450 -g1,603:31966991,18849861 -) -(1,604:7246811,19516039:24720180,284164,4718 -h1,604:7246811,19516039:0,0,0 -h1,604:7562957,19516039:0,0,0 -k1,604:31966991,19516039:24404034 -g1,604:31966991,19516039 -) -] -) -g1,606:31966991,19520757 -g1,606:7246811,19520757 -g1,606:7246811,19520757 -g1,606:31966991,19520757 -g1,606:31966991,19520757 -) -h1,606:7246811,19717365:0,0,0 -] -) -] -r1,683:32583029,20831477:26214,14944382,0 -) -] -) -) -g1,609:32583029,20241653 -) -h1,609:6630773,20857691:0,0,0 -v1,612:6630773,22223467:0,393216,0 -(1,683:6630773,44805309:25952256,22975058,589824 -g1,683:6630773,44805309 -(1,683:6630773,44805309:25952256,22975058,589824 -(1,683:6630773,45395133:25952256,23564882,0 -[1,683:6630773,45395133:25952256,23564882,0 -(1,683:6630773,45395133:25952256,23538668,0 -r1,683:6656987,45395133:26214,23538668,0 -[1,683:6656987,45395133:25899828,23538668,0 -(1,683:6656987,44805309:25899828,22359020,0 -[1,683:7246811,44805309:24720180,22359020,0 -(1,613:7246811,23608174:24720180,1161885,196608 -(1,612:7246811,23608174:0,1161885,196608 -r1,683:8794447,23608174:1547636,1358493,196608 -k1,612:7246811,23608174:-1547636 -) -(1,612:7246811,23608174:1547636,1161885,196608 -) -k1,612:9018671,23608174:224224 -k1,612:9870730,23608174:224224 -k1,612:10683467,23608174:224224 -k1,612:11673808,23608174:224225 -k1,612:14714114,23608174:224224 -k1,612:17074812,23608174:224224 -k1,612:17950464,23608174:224224 -k1,612:19957267,23608174:224224 -(1,612:19957267,23608174:0,452978,115847 -r1,683:22425804,23608174:2468537,568825,115847 -k1,612:19957267,23608174:-2468537 -) -(1,612:19957267,23608174:2468537,452978,115847 -k1,612:19957267,23608174:3277 -h1,612:22422527,23608174:0,411205,112570 -) -k1,612:22650028,23608174:224224 -k1,612:23949699,23608174:224225 -k1,612:25306385,23608174:224224 -k1,612:27891871,23608174:224224 -k1,612:29135180,23608174:224224 -k1,612:31966991,23608174:0 -) -(1,613:7246811,24449662:24720180,513147,134348 -k1,612:8124762,24449662:218659 -k1,612:10067018,24449662:218659 -k1,612:11477122,24449662:218659 -k1,612:13202454,24449662:218659 -k1,612:14037150,24449662:218658 -k1,612:16534496,24449662:218659 -h1,612:17505084,24449662:0,0,0 -k1,612:17723743,24449662:218659 -k1,612:18751772,24449662:218659 -k1,612:20468584,24449662:218659 -h1,612:21265502,24449662:0,0,0 -k1,612:21864925,24449662:218659 -k1,612:23037133,24449662:218659 -k1,612:24360074,24449662:218659 -k1,612:26394735,24449662:218658 -k1,612:27079355,24449662:218659 -k1,612:28317099,24449662:218659 -k1,612:30318337,24449662:218659 -k1,612:31196288,24449662:218659 -k1,612:31966991,24449662:0 -) -(1,613:7246811,25291150:24720180,513147,134348 -g1,612:9405566,25291150 -g1,612:10136292,25291150 -(1,612:10136292,25291150:0,452978,115847 -r1,683:12604829,25291150:2468537,568825,115847 -k1,612:10136292,25291150:-2468537 -) -(1,612:10136292,25291150:2468537,452978,115847 -k1,612:10136292,25291150:3277 -h1,612:12601552,25291150:0,411205,112570 -) -g1,612:12804058,25291150 -g1,612:14397238,25291150 -g1,612:17291963,25291150 -(1,612:17291963,25291150:0,452978,115847 -r1,683:21519059,25291150:4227096,568825,115847 -k1,612:17291963,25291150:-4227096 -) -(1,612:17291963,25291150:4227096,452978,115847 -k1,612:17291963,25291150:3277 -h1,612:21515782,25291150:0,411205,112570 -) -k1,613:31966991,25291150:10274262 -g1,613:31966991,25291150 -) -v1,615:7246811,26481616:0,393216,0 -(1,629:7246811,30216399:24720180,4127999,196608 -g1,629:7246811,30216399 -g1,629:7246811,30216399 -g1,629:7050203,30216399 -(1,629:7050203,30216399:0,4127999,196608 -r1,683:32163599,30216399:25113396,4324607,196608 -k1,629:7050203,30216399:-25113396 -) -(1,629:7050203,30216399:25113396,4127999,196608 -[1,629:7246811,30216399:24720180,3931391,0 -(1,617:7246811,26689234:24720180,404226,76021 -(1,616:7246811,26689234:0,0,0 -g1,616:7246811,26689234 -g1,616:7246811,26689234 -g1,616:6919131,26689234 -(1,616:6919131,26689234:0,0,0 -) -g1,616:7246811,26689234 -) -k1,617:7246811,26689234:0 -h1,617:9459832,26689234:0,0,0 -k1,617:31966992,26689234:22507160 -g1,617:31966992,26689234 -) -(1,621:7246811,27420948:24720180,404226,76021 -(1,619:7246811,27420948:0,0,0 -g1,619:7246811,27420948 -g1,619:7246811,27420948 -g1,619:6919131,27420948 -(1,619:6919131,27420948:0,0,0 -) -g1,619:7246811,27420948 -) -g1,621:8195248,27420948 -g1,621:9459831,27420948 -h1,621:12305142,27420948:0,0,0 -k1,621:31966990,27420948:19661848 -g1,621:31966990,27420948 -) -(1,623:7246811,28742486:24720180,388497,4718 -(1,622:7246811,28742486:0,0,0 -g1,622:7246811,28742486 -g1,622:7246811,28742486 -g1,622:6919131,28742486 -(1,622:6919131,28742486:0,0,0 -) -g1,622:7246811,28742486 -) -g1,623:7879103,28742486 -g1,623:8827541,28742486 -h1,623:9143687,28742486:0,0,0 -k1,623:31966991,28742486:22823304 -g1,623:31966991,28742486 -) -(1,624:7246811,29408664:24720180,404226,76021 -h1,624:7246811,29408664:0,0,0 -k1,624:7246811,29408664:0 -h1,624:11356705,29408664:0,0,0 -k1,624:31966991,29408664:20610286 -g1,624:31966991,29408664 -) -(1,628:7246811,30140378:24720180,404226,76021 -(1,626:7246811,30140378:0,0,0 -g1,626:7246811,30140378 -g1,626:7246811,30140378 -g1,626:6919131,30140378 -(1,626:6919131,30140378:0,0,0 -) -g1,626:7246811,30140378 -) -g1,628:8195248,30140378 -g1,628:9459831,30140378 -h1,628:10724414,30140378:0,0,0 -k1,628:31966990,30140378:21242576 -g1,628:31966990,30140378 -) -] -) -g1,629:31966991,30216399 -g1,629:7246811,30216399 -g1,629:7246811,30216399 -g1,629:31966991,30216399 -g1,629:31966991,30216399 -) -h1,629:7246811,30413007:0,0,0 -(1,633:7246811,31778783:24720180,513147,134348 -h1,632:7246811,31778783:983040,0,0 -k1,632:11062972,31778783:304742 -k1,632:14183796,31778783:304742 -k1,632:15592821,31778783:304743 -k1,632:16645329,31778783:304742 -k1,632:18988241,31778783:304742 -k1,632:19909021,31778783:304742 -k1,632:22976107,31778783:304743 -k1,632:25965204,31778783:304742 -k1,632:29204648,31778783:304742 -k1,632:31966991,31778783:0 -) -(1,633:7246811,32620271:24720180,513147,134348 -k1,632:10305522,32620271:271465 -k1,632:11236278,32620271:271464 -k1,632:14584003,32620271:271465 -k1,632:17486738,32620271:271464 -k1,632:18814643,32620271:271465 -k1,632:20940121,32620271:271464 -k1,632:22813286,32620271:271465 -k1,632:26515560,32620271:271464 -k1,632:29959623,32620271:271465 -k1,633:31966991,32620271:0 -) -(1,633:7246811,33461759:24720180,513147,126483 -k1,632:9123542,33461759:237676 -k1,632:11592719,33461759:237676 -k1,632:14592737,33461759:237675 -k1,632:16546801,33461759:237676 -k1,632:17443769,33461759:237676 -k1,632:20671197,33461759:237676 -k1,632:21536707,33461759:237675 -k1,632:23376083,33461759:237676 -k1,632:25311141,33461759:237676 -k1,632:26467632,33461759:237676 -(1,632:26467632,33461759:0,452978,115847 -r1,683:29639592,33461759:3171960,568825,115847 -k1,632:26467632,33461759:-3171960 -) -(1,632:26467632,33461759:3171960,452978,115847 -k1,632:26467632,33461759:3277 -h1,632:29636315,33461759:0,411205,112570 -) -k1,632:29877267,33461759:237675 -k1,632:31219225,33461759:237676 -k1,632:31966991,33461759:0 -) -(1,633:7246811,34303247:24720180,505283,126483 -k1,632:8946764,34303247:186727 -k1,632:12753700,34303247:186727 -k1,632:14224933,34303247:186727 -k1,632:14767521,34303247:186728 -k1,632:17440029,34303247:186727 -k1,632:18158253,34303247:186727 -k1,632:21357670,34303247:186727 -k1,632:24479099,34303247:186727 -k1,632:25281864,34303247:186727 -k1,632:27160732,34303247:186728 -k1,632:29044841,34303247:186727 -k1,632:29689665,34303247:186727 -k1,632:30977397,34303247:186727 -k1,633:31966991,34303247:0 -) -(1,633:7246811,35144735:24720180,505283,134348 -k1,632:10220015,35144735:180715 -k1,632:11052159,35144735:180716 -k1,632:14130221,35144735:180715 -k1,632:16842593,35144735:180716 -k1,632:18307814,35144735:180715 -k1,632:19356881,35144735:180715 -k1,632:20670059,35144735:180716 -k1,632:22468203,35144735:180715 -k1,632:23331804,35144735:180716 -k1,632:25923589,35144735:180715 -k1,632:26913675,35144735:180716 -k1,632:28977239,35144735:180715 -k1,632:31966991,35144735:0 -) -(1,633:7246811,35986223:24720180,505283,134348 -k1,632:8078781,35986223:215932 -k1,632:10180184,35986223:215932 -k1,632:11763196,35986223:215931 -k1,632:12847480,35986223:215932 -k1,632:14167694,35986223:215932 -k1,632:15476111,35986223:215932 -k1,632:17247211,35986223:215931 -(1,632:17247211,35986223:0,452978,122846 -r1,683:19715748,35986223:2468537,575824,122846 -k1,632:17247211,35986223:-2468537 -) -(1,632:17247211,35986223:2468537,452978,122846 -k1,632:17247211,35986223:3277 -h1,632:19712471,35986223:0,411205,112570 -) -k1,632:20105350,35986223:215932 -k1,632:21715233,35986223:215932 -k1,632:24161355,35986223:215932 -k1,632:27465342,35986223:215931 -k1,632:30633671,35986223:215932 -k1,632:31611131,35986223:215932 -k1,632:31966991,35986223:0 -) -(1,633:7246811,36827711:24720180,505283,134348 -g1,632:9743732,36827711 -g1,632:12072226,36827711 -g1,632:13410471,36827711 -g1,632:14295862,36827711 -g1,632:15111129,36827711 -(1,632:15111129,36827711:0,435480,115847 -r1,683:16172818,36827711:1061689,551327,115847 -k1,632:15111129,36827711:-1061689 -) -(1,632:15111129,36827711:1061689,435480,115847 -k1,632:15111129,36827711:3277 -h1,632:16169541,36827711:0,411205,112570 -) -k1,633:31966991,36827711:15620503 -g1,633:31966991,36827711 -) -v1,635:7246811,38018177:0,393216,0 -(1,654:7246811,43140034:24720180,5515073,196608 -g1,654:7246811,43140034 -g1,654:7246811,43140034 -g1,654:7050203,43140034 -(1,654:7050203,43140034:0,5515073,196608 -r1,683:32163599,43140034:25113396,5711681,196608 -k1,654:7050203,43140034:-25113396 -) -(1,654:7050203,43140034:25113396,5515073,196608 -[1,654:7246811,43140034:24720180,5318465,0 -(1,637:7246811,38225795:24720180,404226,76021 -(1,636:7246811,38225795:0,0,0 -g1,636:7246811,38225795 -g1,636:7246811,38225795 -g1,636:6919131,38225795 -(1,636:6919131,38225795:0,0,0 -) -g1,636:7246811,38225795 -) -k1,637:7246811,38225795:0 -h1,637:11672851,38225795:0,0,0 -k1,637:31966991,38225795:20294140 -g1,637:31966991,38225795 -) -(1,641:7246811,38957509:24720180,404226,76021 -(1,639:7246811,38957509:0,0,0 -g1,639:7246811,38957509 -g1,639:7246811,38957509 -g1,639:6919131,38957509 -(1,639:6919131,38957509:0,0,0 -) -g1,639:7246811,38957509 -) -g1,641:8195248,38957509 -g1,641:9459831,38957509 -h1,641:10724414,38957509:0,0,0 -k1,641:31966990,38957509:21242576 -g1,641:31966990,38957509 -) -(1,643:7246811,40279047:24720180,404226,107478 -(1,642:7246811,40279047:0,0,0 -g1,642:7246811,40279047 -g1,642:7246811,40279047 -g1,642:6919131,40279047 -(1,642:6919131,40279047:0,0,0 -) -g1,642:7246811,40279047 -) -k1,643:7246811,40279047:0 -h1,643:11672851,40279047:0,0,0 -k1,643:31966991,40279047:20294140 -g1,643:31966991,40279047 -) -(1,647:7246811,41010761:24720180,404226,76021 -(1,645:7246811,41010761:0,0,0 -g1,645:7246811,41010761 -g1,645:7246811,41010761 -g1,645:6919131,41010761 -(1,645:6919131,41010761:0,0,0 -) -g1,645:7246811,41010761 -) -g1,647:8195248,41010761 -g1,647:9459831,41010761 -h1,647:10724414,41010761:0,0,0 -k1,647:31966990,41010761:21242576 -g1,647:31966990,41010761 -) -(1,649:7246811,42332299:24720180,404226,76021 -(1,648:7246811,42332299:0,0,0 -g1,648:7246811,42332299 -g1,648:7246811,42332299 -g1,648:6919131,42332299 -(1,648:6919131,42332299:0,0,0 -) -g1,648:7246811,42332299 -) -k1,649:7246811,42332299:0 -h1,649:11356705,42332299:0,0,0 -k1,649:31966991,42332299:20610286 -g1,649:31966991,42332299 -) -(1,653:7246811,43064013:24720180,404226,76021 -(1,651:7246811,43064013:0,0,0 -g1,651:7246811,43064013 -g1,651:7246811,43064013 -g1,651:6919131,43064013 -(1,651:6919131,43064013:0,0,0 -) -g1,651:7246811,43064013 -) -g1,653:8195248,43064013 -g1,653:9459831,43064013 -h1,653:11040559,43064013:0,0,0 -k1,653:31966991,43064013:20926432 -g1,653:31966991,43064013 -) -] -) -g1,654:31966991,43140034 -g1,654:7246811,43140034 -g1,654:7246811,43140034 -g1,654:31966991,43140034 -g1,654:31966991,43140034 -) -h1,654:7246811,43336642:0,0,0 -(1,658:7246811,44702418:24720180,505283,102891 -h1,657:7246811,44702418:983040,0,0 -k1,657:9870157,44702418:286988 -k1,657:12973227,44702418:286988 -k1,657:14251776,44702418:286989 -k1,657:14894624,44702418:286988 -k1,657:19505022,44702418:286988 -k1,657:23554432,44702418:286988 -k1,657:25032865,44702418:286988 -k1,657:26135122,44702418:286989 -k1,657:27488381,44702418:286988 -k1,657:29250584,44702418:286988 -k1,657:30308275,44702418:286988 -k1,657:31966991,44702418:0 -) -] -) -] -r1,683:32583029,45395133:26214,23538668,0 -) -] -) -) -g1,683:32583029,44805309 -) -] -(1,683:32583029,45706769:0,0,0 -g1,683:32583029,45706769 -) -) -] -(1,683:6630773,47279633:25952256,0,0 -h1,683:6630773,47279633:25952256,0,0 -) -] -(1,683:4262630,4025873:0,0,0 -[1,683:-473656,4025873:0,0,0 -(1,683:-473656,-710413:0,0,0 -(1,683:-473656,-710413:0,0,0 -g1,683:-473656,-710413 -) -g1,683:-473656,-710413 -) -] -) -] -!23076 -}34 -Input:257:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:258:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:259:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:260:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:261:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:262:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:263:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:264:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!739 -{35 -[1,729:4262630,47279633:28320399,43253760,0 -(1,729:4262630,4025873:0,0,0 -[1,729:-473656,4025873:0,0,0 -(1,729:-473656,-710413:0,0,0 -(1,729:-473656,-644877:0,0,0 -k1,729:-473656,-644877:-65536 -) -(1,729:-473656,4736287:0,0,0 -k1,729:-473656,4736287:5209943 -) -g1,729:-473656,-710413 -) -] -) -[1,729:6630773,47279633:25952256,43253760,0 -[1,729:6630773,4812305:25952256,786432,0 -(1,729:6630773,4812305:25952256,505283,134348 -(1,729:6630773,4812305:25952256,505283,134348 -g1,729:3078558,4812305 -[1,729:3078558,4812305:0,0,0 -(1,729:3078558,2439708:0,1703936,0 -k1,729:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,729:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,729:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,729:3078558,4812305:0,0,0 -(1,729:3078558,2439708:0,1703936,0 -g1,729:29030814,2439708 -g1,729:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,729:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,729:37855564,2439708:1179648,16384,0 -) -) -k1,729:3078556,2439708:-34777008 -) -] -[1,729:3078558,4812305:0,0,0 -(1,729:3078558,49800853:0,16384,2228224 -k1,729:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,729:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,729:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,729:3078558,4812305:0,0,0 -(1,729:3078558,49800853:0,16384,2228224 -g1,729:29030814,49800853 -g1,729:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,729:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,729:37855564,49800853:1179648,16384,0 -) -) -k1,729:3078556,49800853:-34777008 -) -] -g1,729:6630773,4812305 -k1,729:19515153,4812305:12087462 -g1,729:20901894,4812305 -g1,729:21550700,4812305 -g1,729:24864855,4812305 -g1,729:27600327,4812305 -g1,729:29010006,4812305 -) -) -] -[1,729:6630773,45706769:25952256,40108032,0 -(1,729:6630773,45706769:25952256,40108032,0 -(1,729:6630773,45706769:0,0,0 -g1,729:6630773,45706769 -) -[1,729:6630773,45706769:25952256,40108032,0 -v1,683:6630773,6254097:0,393216,0 -(1,683:6630773,20021835:25952256,14160954,616038 -g1,683:6630773,20021835 -(1,683:6630773,20021835:25952256,14160954,616038 -(1,683:6630773,20637873:25952256,14776992,0 -[1,683:6630773,20637873:25952256,14776992,0 -(1,683:6630773,20611659:25952256,14750778,0 -r1,729:6656987,20611659:26214,14750778,0 -[1,683:6656987,20611659:25899828,14750778,0 -(1,683:6656987,20021835:25899828,13571130,0 -[1,683:7246811,20021835:24720180,13571130,0 -(1,658:7246811,6963852:24720180,513147,126483 -k1,657:10751611,6963852:199819 -k1,657:11567469,6963852:199820 -k1,657:15347520,6963852:199819 -k1,657:17886319,6963852:199819 -k1,657:18745431,6963852:199820 -k1,657:20298568,6963852:199819 -k1,657:23488139,6963852:199819 -k1,657:27094519,6963852:199819 -k1,657:28911768,6963852:199820 -k1,657:30303032,6963852:199819 -k1,658:31966991,6963852:0 -) -(1,658:7246811,7805340:24720180,513147,134348 -k1,657:8345587,7805340:138674 -k1,657:9293631,7805340:138674 -k1,657:12248387,7805340:138674 -k1,657:13671568,7805340:138675 -k1,657:14801802,7805340:138674 -k1,657:18011493,7805340:138674 -k1,657:18801595,7805340:138674 -k1,657:19296129,7805340:138674 -k1,657:21294715,7805340:138674 -k1,657:22505558,7805340:138674 -k1,657:24295084,7805340:138674 -k1,657:26214372,7805340:138675 -k1,657:27012338,7805340:138674 -k1,657:29161657,7805340:138674 -k1,657:30491776,7805340:138674 -k1,657:31966991,7805340:0 -) -(1,658:7246811,8646828:24720180,513147,134348 -k1,657:7785736,8646828:183065 -k1,657:9619654,8646828:183066 -k1,657:13224354,8646828:183065 -k1,657:14965210,8646828:183065 -k1,657:16139835,8646828:183065 -k1,657:18364347,8646828:183066 -k1,657:20279529,8646828:183065 -k1,657:21352573,8646828:183065 -k1,657:25809896,8646828:183065 -k1,657:29189808,8646828:183066 -k1,657:29988911,8646828:183065 -k1,657:30586803,8646828:183049 -k1,657:31966991,8646828:0 -) -(1,658:7246811,9488316:24720180,513147,134348 -g1,657:8214777,9488316 -g1,657:9175534,9488316 -g1,657:10393848,9488316 -g1,657:12331092,9488316 -g1,657:13197477,9488316 -(1,657:13197477,9488316:0,452978,115847 -r1,729:15314302,9488316:2116825,568825,115847 -k1,657:13197477,9488316:-2116825 -) -(1,657:13197477,9488316:2116825,452978,115847 -k1,657:13197477,9488316:3277 -h1,657:15311025,9488316:0,411205,112570 -) -g1,657:15513531,9488316 -g1,657:16904205,9488316 -g1,657:18207716,9488316 -g1,657:19154711,9488316 -g1,657:21704061,9488316 -g1,657:23297241,9488316 -g1,657:24515555,9488316 -g1,657:28421500,9488316 -(1,657:28421500,9488316:0,452978,115847 -r1,729:31241749,9488316:2820249,568825,115847 -k1,657:28421500,9488316:-2820249 -) -(1,657:28421500,9488316:2820249,452978,115847 -k1,657:28421500,9488316:3277 -h1,657:31238472,9488316:0,411205,112570 -) -k1,658:31966991,9488316:551572 -g1,658:31966991,9488316 -) -v1,660:7246811,10678782:0,393216,0 -(1,679:7246811,15800639:24720180,5515073,196608 -g1,679:7246811,15800639 -g1,679:7246811,15800639 -g1,679:7050203,15800639 -(1,679:7050203,15800639:0,5515073,196608 -r1,729:32163599,15800639:25113396,5711681,196608 -k1,679:7050203,15800639:-25113396 -) -(1,679:7050203,15800639:25113396,5515073,196608 -[1,679:7246811,15800639:24720180,5318465,0 -(1,662:7246811,10886400:24720180,404226,76021 -(1,661:7246811,10886400:0,0,0 -g1,661:7246811,10886400 -g1,661:7246811,10886400 -g1,661:6919131,10886400 -(1,661:6919131,10886400:0,0,0 -) -g1,661:7246811,10886400 -) -k1,662:7246811,10886400:0 -h1,662:11356706,10886400:0,0,0 -k1,662:31966990,10886400:20610284 -g1,662:31966990,10886400 -) -(1,666:7246811,11618114:24720180,404226,76021 -(1,664:7246811,11618114:0,0,0 -g1,664:7246811,11618114 -g1,664:7246811,11618114 -g1,664:6919131,11618114 -(1,664:6919131,11618114:0,0,0 -) -g1,664:7246811,11618114 -) -g1,666:8195248,11618114 -g1,666:9459831,11618114 -h1,666:10724414,11618114:0,0,0 -k1,666:31966990,11618114:21242576 -g1,666:31966990,11618114 -) -(1,668:7246811,12939652:24720180,404226,107478 -(1,667:7246811,12939652:0,0,0 -g1,667:7246811,12939652 -g1,667:7246811,12939652 -g1,667:6919131,12939652 -(1,667:6919131,12939652:0,0,0 -) -g1,667:7246811,12939652 -) -k1,668:7246811,12939652:0 -h1,668:11356706,12939652:0,0,0 -k1,668:31966990,12939652:20610284 -g1,668:31966990,12939652 -) -(1,672:7246811,13671366:24720180,404226,76021 -(1,670:7246811,13671366:0,0,0 -g1,670:7246811,13671366 -g1,670:7246811,13671366 -g1,670:6919131,13671366 -(1,670:6919131,13671366:0,0,0 -) -g1,670:7246811,13671366 -) -g1,672:8195248,13671366 -g1,672:9459831,13671366 -h1,672:11040559,13671366:0,0,0 -k1,672:31966991,13671366:20926432 -g1,672:31966991,13671366 -) -(1,674:7246811,14992904:24720180,404226,76021 -(1,673:7246811,14992904:0,0,0 -g1,673:7246811,14992904 -g1,673:7246811,14992904 -g1,673:6919131,14992904 -(1,673:6919131,14992904:0,0,0 -) -g1,673:7246811,14992904 -) -k1,674:7246811,14992904:0 -h1,674:11040560,14992904:0,0,0 -k1,674:31966992,14992904:20926432 -g1,674:31966992,14992904 -) -(1,678:7246811,15724618:24720180,404226,76021 -(1,676:7246811,15724618:0,0,0 -g1,676:7246811,15724618 -g1,676:7246811,15724618 -g1,676:6919131,15724618 -(1,676:6919131,15724618:0,0,0 -) -g1,676:7246811,15724618 -) -g1,678:8195248,15724618 -g1,678:9459831,15724618 -h1,678:10724414,15724618:0,0,0 -k1,678:31966990,15724618:21242576 -g1,678:31966990,15724618 -) -] -) -g1,679:31966991,15800639 -g1,679:7246811,15800639 -g1,679:7246811,15800639 -g1,679:31966991,15800639 -g1,679:31966991,15800639 -) -h1,679:7246811,15997247:0,0,0 -(1,683:7246811,17363023:24720180,513147,134348 -h1,682:7246811,17363023:983040,0,0 -k1,682:9694640,17363023:268102 -k1,682:11700756,17363023:268101 -(1,682:11700756,17363023:0,452978,115847 -r1,729:13817581,17363023:2116825,568825,115847 -k1,682:11700756,17363023:-2116825 -) -(1,682:11700756,17363023:2116825,452978,115847 -k1,682:11700756,17363023:3277 -h1,682:13814304,17363023:0,411205,112570 -) -k1,682:14085683,17363023:268102 -k1,682:17518518,17363023:268101 -k1,682:19354241,17363023:268102 -k1,682:20641428,17363023:268102 -k1,682:21362969,17363023:268032 -k1,682:24647038,17363023:268102 -k1,682:25531177,17363023:268101 -k1,682:27684750,17363023:268102 -k1,682:29607635,17363023:268101 -k1,682:30867297,17363023:268102 -k1,683:31966991,17363023:0 -) -(1,683:7246811,18204511:24720180,513147,126483 -k1,682:9394971,18204511:228610 -k1,682:11339970,18204511:228611 -k1,682:12227872,18204511:228610 -k1,682:14228576,18204511:228610 -k1,682:17414826,18204511:228610 -k1,682:19122585,18204511:228611 -k1,682:20370280,18204511:228610 -k1,682:22336905,18204511:228610 -(1,682:22336905,18204511:0,452978,115847 -r1,729:24453730,18204511:2116825,568825,115847 -k1,682:22336905,18204511:-2116825 -) -(1,682:22336905,18204511:2116825,452978,115847 -k1,682:22336905,18204511:3277 -h1,682:24450453,18204511:0,411205,112570 -) -k1,682:24682340,18204511:228610 -k1,682:26424177,18204511:228611 -k1,682:27304215,18204511:228610 -k1,682:29270840,18204511:228610 -k1,683:31966991,18204511:0 -) -(1,683:7246811,19045999:24720180,513147,134348 -k1,682:10361519,19045999:182627 -k1,682:14877387,19045999:182627 -k1,682:18349920,19045999:182626 -k1,682:21499362,19045999:182627 -k1,682:22701074,19045999:182627 -k1,682:23976186,19045999:182627 -k1,682:24825969,19045999:182627 -(1,682:24825969,19045999:0,414482,115847 -r1,729:25184235,19045999:358266,530329,115847 -k1,682:24825969,19045999:-358266 -) -(1,682:24825969,19045999:358266,414482,115847 -k1,682:24825969,19045999:3277 -h1,682:25180958,19045999:0,411205,112570 -) -k1,682:25366862,19045999:182627 -k1,682:27434303,19045999:182626 -k1,682:29184551,19045999:182627 -k1,682:30386263,19045999:182627 -k1,683:31966991,19045999:0 -) -(1,683:7246811,19887487:24720180,505283,134348 -g1,682:8832126,19887487 -g1,682:9647393,19887487 -g1,682:10473801,19887487 -g1,682:13401294,19887487 -g1,682:15289386,19887487 -g1,682:17718805,19887487 -k1,683:31966991,19887487:10958279 -g1,683:31966991,19887487 -) -] -) -] -r1,729:32583029,20611659:26214,14750778,0 -) -] -) -) -g1,683:32583029,20021835 -) -h1,683:6630773,20637873:0,0,0 -(1,686:6630773,21944419:25952256,505283,134348 -h1,685:6630773,21944419:983040,0,0 -k1,685:10554890,21944419:243615 -k1,685:13640146,21944419:243615 -k1,685:14988043,21944419:243615 -k1,685:17603406,21944419:243615 -k1,685:19497218,21944419:243615 -k1,685:21183280,21944419:243615 -k1,685:22583605,21944419:243615 -k1,685:24681234,21944419:243615 -k1,685:26415138,21944419:243615 -k1,685:28531772,21944419:243615 -k1,685:31591469,21944419:243615 -k1,685:32583029,21944419:0 -) -(1,686:6630773,22785907:25952256,513147,134348 -k1,685:7483783,22785907:236972 -k1,685:8135560,22785907:236934 -(1,685:8135560,22785907:0,414482,115847 -r1,729:10252385,22785907:2116825,530329,115847 -k1,685:8135560,22785907:-2116825 -) -(1,685:8135560,22785907:2116825,414482,115847 -k1,685:8135560,22785907:3277 -h1,685:10249108,22785907:0,411205,112570 -) -k1,685:10489357,22785907:236972 -k1,685:11056630,22785907:236972 -k1,685:11952894,22785907:236972 -k1,685:14203132,22785907:236972 -k1,685:15770485,22785907:236972 -k1,685:16961006,22785907:236972 -k1,685:18330440,22785907:236972 -k1,685:20021001,22785907:236972 -k1,685:21282956,22785907:236972 -k1,685:22816886,22785907:236972 -k1,685:24257099,22785907:236972 -k1,685:25025568,22785907:236972 -k1,685:28645508,22785907:236972 -k1,685:29700369,22785907:236972 -k1,685:31107814,22785907:236972 -k1,685:32583029,22785907:0 -) -(1,686:6630773,23627395:25952256,513147,126483 -k1,685:8262064,23627395:191465 -k1,685:10482525,23627395:191466 -k1,685:11693075,23627395:191465 -k1,685:14057715,23627395:191466 -k1,685:14908472,23627395:191465 -k1,685:18901680,23627395:191465 -k1,685:20597197,23627395:191466 -k1,685:23138783,23627395:191465 -k1,685:26256431,23627395:191465 -k1,685:27841848,23627395:191466 -(1,685:27841848,23627395:0,452978,115847 -r1,729:28903537,23627395:1061689,568825,115847 -k1,685:27841848,23627395:-1061689 -) -(1,685:27841848,23627395:1061689,452978,115847 -k1,685:27841848,23627395:3277 -h1,685:28900260,23627395:0,411205,112570 -) -k1,685:29268672,23627395:191465 -k1,685:30840982,23627395:191466 -k1,685:31563944,23627395:191465 -k1,685:32583029,23627395:0 -) -(1,686:6630773,24468883:25952256,513147,126483 -k1,685:8556483,24468883:176554 -k1,685:9415922,24468883:176554 -k1,685:12206706,24468883:176553 -k1,685:12999298,24468883:176554 -k1,685:14194937,24468883:176554 -k1,685:16349368,24468883:176554 -k1,685:17185214,24468883:176554 -k1,685:18380852,24468883:176553 -k1,685:19863539,24468883:176554 -k1,685:22525874,24468883:176554 -k1,685:23592407,24468883:176554 -k1,685:25470931,24468883:176554 -k1,685:27534921,24468883:176553 -k1,685:30774628,24468883:176554 -k1,685:31563944,24468883:176554 -k1,685:32583029,24468883:0 -) -(1,686:6630773,25310371:25952256,513147,126483 -k1,685:8393929,25310371:224371 -k1,685:9277593,25310371:224372 -k1,685:10521049,25310371:224371 -k1,685:13089643,25310371:224371 -k1,685:14656192,25310371:224372 -k1,685:17463337,25310371:224371 -k1,685:18303747,25310371:224372 -k1,685:22851528,25310371:224371 -k1,685:25939167,25310371:224371 -k1,685:27155099,25310371:224372 -k1,685:31189078,25310371:224371 -k1,685:32583029,25310371:0 -) -(1,686:6630773,26151859:25952256,505283,126483 -g1,685:10005221,26151859 -k1,686:32583029,26151859:18831770 -g1,686:32583029,26151859 -) -(1,688:15414961,26993347:17168068,505283,103819 -(1,688:15414961,26993347:8383880,351273,103819 -h1,688:15414961,26993347:0,0,0 -(1,688:15877645,27091661:1131020,334430,5505 -) -g1,688:17190725,26993347 -g1,688:17940982,26993347 -(1,688:18403666,27091661:311689,334430,0 -) -g1,688:19013990,26993347 -(1,688:19476674,27091661:311689,339935,0 -) -g1,688:20086998,26993347 -g1,688:20773606,26993347 -(1,688:21236290,27091661:233243,346358,5505 -) -g1,688:21768168,26993347 -g1,688:22454776,26993347 -g1,688:22753411,26993347 -(1,688:23216095,27091661:393347,248644,5505 -) -) -(1,688:31198253,26993347:1384776,505283,95026 -(1,688:31198253,26993347:1384776,505283,95026 -) -) -) -(1,690:6630773,28183629:25952256,513147,134348 -k1,689:8815925,28183629:266258 -$1,689:8815925,28183629 -(1,689:9278609,28281943:1131020,334430,5505 -) -$1,689:10409629,28183629 -k1,689:10675886,28183629:266257 -k1,689:14313971,28183629:266258 -k1,689:15599313,28183629:266257 -k1,689:17748420,28183629:266258 -k1,689:19992555,28183629:266258 -k1,689:21450257,28183629:266257 -$1,689:21450257,28183629 -(1,689:21912941,28281943:311689,334430,0 -) -$1,689:22224630,28183629 -k1,689:22490888,28183629:266258 -k1,689:23545544,28183629:266258 -k1,689:25117934,28183629:266257 -k1,689:28181269,28183629:266258 -k1,689:29644213,28183629:266257 -k1,689:31923737,28183629:266258 -k1,689:32583029,28183629:0 -) -(1,690:6630773,29025117:25952256,505283,103819 -(1,689:7093457,29123431:1131020,334430,5505 -) -$1,689:8224477,29025117 -g1,689:8423706,29025117 -g1,689:9154432,29025117 -$1,689:9154432,29025117 -$1,689:9669545,29025117 -g1,689:9868774,29025117 -g1,689:10754165,29025117 -g1,689:11411491,29025117 -g1,689:14312769,29025117 -$1,689:14312769,29025117 -$1,689:14827882,29025117 -g1,689:15027111,29025117 -k1,690:32583029,29025117:14428540 -g1,690:32583029,29025117 -) -(1,692:6630773,29866605:25952256,513147,134348 -h1,691:6630773,29866605:983040,0,0 -k1,691:9083621,29866605:198410 -k1,691:10386312,29866605:198409 -k1,691:11677207,29866605:198410 -(1,691:11677207,29866605:0,452978,115847 -r1,729:12738896,29866605:1061689,568825,115847 -k1,691:11677207,29866605:-1061689 -) -(1,691:11677207,29866605:1061689,452978,115847 -k1,691:11677207,29866605:3277 -h1,691:12735619,29866605:0,411205,112570 -) -k1,691:12937306,29866605:198410 -k1,691:17547600,29866605:198410 -k1,691:18397437,29866605:198409 -k1,691:20525227,29866605:198410 -k1,691:21079497,29866605:198410 -k1,691:23255784,29866605:198410 -k1,691:25021814,29866605:198409 -k1,691:26922194,29866605:198410 -k1,691:29602452,29866605:198410 -k1,691:32583029,29866605:0 -) -(1,692:6630773,30708093:25952256,513147,134348 -g1,691:9138180,30708093 -g1,691:9996701,30708093 -g1,691:12209196,30708093 -g1,691:12980554,30708093 -g1,691:14673349,30708093 -g1,691:15558740,30708093 -g1,691:16777054,30708093 -(1,691:16777054,30708093:0,452978,115847 -r1,729:19245591,30708093:2468537,568825,115847 -k1,691:16777054,30708093:-2468537 -) -(1,691:16777054,30708093:2468537,452978,115847 -k1,691:16777054,30708093:3277 -h1,691:19242314,30708093:0,411205,112570 -) -g1,691:19444820,30708093 -g1,691:22732105,30708093 -g1,691:23547372,30708093 -g1,691:24765686,30708093 -g1,691:28481577,30708093 -k1,692:32583029,30708093:2059350 -g1,692:32583029,30708093 -) -v1,694:6630773,31839330:0,393216,0 -(1,723:6630773,41679151:25952256,10233037,196608 -g1,723:6630773,41679151 -g1,723:6630773,41679151 -g1,723:6434165,41679151 -(1,723:6434165,41679151:0,10233037,196608 -r1,729:32779637,41679151:26345472,10429645,196608 -k1,723:6434165,41679151:-26345472 -) -(1,723:6434165,41679151:26345472,10233037,196608 -[1,723:6630773,41679151:25952256,10036429,0 -(1,696:6630773,32046948:25952256,404226,82312 -(1,695:6630773,32046948:0,0,0 -g1,695:6630773,32046948 -g1,695:6630773,32046948 -g1,695:6303093,32046948 -(1,695:6303093,32046948:0,0,0 -) -g1,695:6630773,32046948 -) -g1,696:7263065,32046948 -g1,696:8211503,32046948 -g1,696:9792233,32046948 -g1,696:10740671,32046948 -h1,696:11372963,32046948:0,0,0 -k1,696:32583029,32046948:21210066 -g1,696:32583029,32046948 -) -(1,697:6630773,32713126:25952256,284164,4718 -h1,697:6630773,32713126:0,0,0 -h1,697:6946919,32713126:0,0,0 -k1,697:32583029,32713126:25636110 -g1,697:32583029,32713126 -) -(1,701:6630773,33444840:25952256,404226,76021 -(1,699:6630773,33444840:0,0,0 -g1,699:6630773,33444840 -g1,699:6630773,33444840 -g1,699:6303093,33444840 -(1,699:6303093,33444840:0,0,0 -) -g1,699:6630773,33444840 -) -g1,701:7579210,33444840 -g1,701:8843793,33444840 -g1,701:9476085,33444840 -g1,701:10108377,33444840 -h1,701:10424523,33444840:0,0,0 -k1,701:32583029,33444840:22158506 -g1,701:32583029,33444840 -) -(1,703:6630773,34766378:25952256,404226,82312 -(1,702:6630773,34766378:0,0,0 -g1,702:6630773,34766378 -g1,702:6630773,34766378 -g1,702:6303093,34766378 -(1,702:6303093,34766378:0,0,0 -) -g1,702:6630773,34766378 -) -g1,703:7263065,34766378 -g1,703:8211503,34766378 -g1,703:9792233,34766378 -g1,703:10740671,34766378 -h1,703:11372963,34766378:0,0,0 -k1,703:32583029,34766378:21210066 -g1,703:32583029,34766378 -) -(1,704:6630773,35432556:25952256,404226,6290 -h1,704:6630773,35432556:0,0,0 -h1,704:6946919,35432556:0,0,0 -k1,704:32583029,35432556:25636110 -g1,704:32583029,35432556 -) -(1,708:6630773,36164270:25952256,404226,76021 -(1,706:6630773,36164270:0,0,0 -g1,706:6630773,36164270 -g1,706:6630773,36164270 -g1,706:6303093,36164270 -(1,706:6303093,36164270:0,0,0 -) -g1,706:6630773,36164270 -) -g1,708:7579210,36164270 -g1,708:8843793,36164270 -g1,708:9476085,36164270 -g1,708:10108377,36164270 -h1,708:10424523,36164270:0,0,0 -k1,708:32583029,36164270:22158506 -g1,708:32583029,36164270 -) -(1,710:6630773,37485808:25952256,404226,82312 -(1,709:6630773,37485808:0,0,0 -g1,709:6630773,37485808 -g1,709:6630773,37485808 -g1,709:6303093,37485808 -(1,709:6303093,37485808:0,0,0 -) -g1,709:6630773,37485808 -) -g1,710:7263065,37485808 -g1,710:8211503,37485808 -g1,710:9792232,37485808 -h1,710:10424523,37485808:0,0,0 -k1,710:32583029,37485808:22158506 -g1,710:32583029,37485808 -) -(1,711:6630773,38151986:25952256,284164,6290 -h1,711:6630773,38151986:0,0,0 -h1,711:6946919,38151986:0,0,0 -k1,711:32583029,38151986:25636110 -g1,711:32583029,38151986 -) -(1,715:6630773,38883700:25952256,404226,76021 -(1,713:6630773,38883700:0,0,0 -g1,713:6630773,38883700 -g1,713:6630773,38883700 -g1,713:6303093,38883700 -(1,713:6303093,38883700:0,0,0 -) -g1,713:6630773,38883700 -) -g1,715:7579210,38883700 -g1,715:8843793,38883700 -g1,715:9476085,38883700 -g1,715:10108377,38883700 -g1,715:10740669,38883700 -g1,715:11372961,38883700 -g1,715:12005253,38883700 -h1,715:12321399,38883700:0,0,0 -k1,715:32583029,38883700:20261630 -g1,715:32583029,38883700 -) -(1,717:6630773,40205238:25952256,404226,82312 -(1,716:6630773,40205238:0,0,0 -g1,716:6630773,40205238 -g1,716:6630773,40205238 -g1,716:6303093,40205238 -(1,716:6303093,40205238:0,0,0 -) -g1,716:6630773,40205238 -) -g1,717:7263065,40205238 -g1,717:8211503,40205238 -g1,717:9792232,40205238 -h1,717:10424523,40205238:0,0,0 -k1,717:32583029,40205238:22158506 -g1,717:32583029,40205238 -) -(1,718:6630773,40871416:25952256,404226,6290 -h1,718:6630773,40871416:0,0,0 -h1,718:6946919,40871416:0,0,0 -k1,718:32583029,40871416:25636110 -g1,718:32583029,40871416 -) -(1,722:6630773,41603130:25952256,404226,76021 -(1,720:6630773,41603130:0,0,0 -g1,720:6630773,41603130 -g1,720:6630773,41603130 -g1,720:6303093,41603130 -(1,720:6303093,41603130:0,0,0 -) -g1,720:6630773,41603130 -) -g1,722:7579210,41603130 -g1,722:8843793,41603130 -g1,722:9476085,41603130 -g1,722:10108377,41603130 -g1,722:10740669,41603130 -g1,722:11372961,41603130 -g1,722:12005253,41603130 -h1,722:12321399,41603130:0,0,0 -k1,722:32583029,41603130:20261630 -g1,722:32583029,41603130 -) -] -) -g1,723:32583029,41679151 -g1,723:6630773,41679151 -g1,723:6630773,41679151 -g1,723:32583029,41679151 -g1,723:32583029,41679151 -) -h1,723:6630773,41875759:0,0,0 -(1,727:6630773,43182305:25952256,505283,134348 -h1,726:6630773,43182305:983040,0,0 -k1,726:10201114,43182305:189339 -(1,726:10201114,43182305:0,452978,115847 -r1,729:11262803,43182305:1061689,568825,115847 -k1,726:10201114,43182305:-1061689 -) -(1,726:10201114,43182305:1061689,452978,115847 -k1,726:10201114,43182305:3277 -h1,726:11259526,43182305:0,411205,112570 -) -k1,726:11452142,43182305:189339 -k1,726:14019782,43182305:189338 -k1,726:14895283,43182305:189339 -k1,726:18487251,43182305:189339 -k1,726:19849029,43182305:189339 -k1,726:20721253,43182305:189339 -k1,726:22560789,43182305:189339 -k1,726:25058305,43182305:189338 -k1,726:26439089,43182305:189339 -k1,726:30770303,43182305:189339 -k1,726:32583029,43182305:0 -) -(1,727:6630773,44023793:25952256,513147,126483 -k1,726:7958204,44023793:170721 -k1,726:9642152,44023793:170722 -k1,726:12459217,44023793:170721 -k1,726:14360088,44023793:170721 -k1,726:17835790,44023793:170721 -k1,726:18874864,44023793:170722 -k1,726:20382519,44023793:170721 -k1,726:22083506,44023793:170721 -k1,726:22905656,44023793:170722 -k1,726:24915317,44023793:170721 -k1,726:26242748,44023793:170721 -k1,726:28391346,44023793:170721 -k1,726:29178106,44023793:170722 -k1,726:30367912,44023793:170721 -k1,726:32583029,44023793:0 -) -(1,727:6630773,44865281:25952256,513147,134348 -k1,726:7511764,44865281:221699 -k1,726:10379806,44865281:221698 -k1,726:11643527,44865281:221699 -k1,726:13068466,44865281:221698 -k1,726:16538129,44865281:221699 -(1,726:16538129,44865281:0,452978,115847 -r1,729:17599818,44865281:1061689,568825,115847 -k1,726:16538129,44865281:-1061689 -) -(1,726:16538129,44865281:1061689,452978,115847 -k1,726:16538129,44865281:3277 -h1,726:17596541,44865281:0,411205,112570 -) -k1,726:17821516,44865281:221698 -k1,726:18574712,44865281:221699 -k1,726:19862682,44865281:221699 -k1,726:22061601,44865281:221698 -k1,726:23044828,44865281:221699 -k1,726:25045828,44865281:221698 -k1,726:26538925,44865281:221699 -k1,726:28529440,44865281:221698 -k1,726:29843624,44865281:221699 -k1,726:32583029,44865281:0 -) -(1,727:6630773,45706769:25952256,513147,126483 -k1,726:10051103,45706769:287709 -k1,726:11732763,45706769:287709 -(1,726:11732763,45706769:0,452978,115847 -r1,729:12794452,45706769:1061689,568825,115847 -k1,726:11732763,45706769:-1061689 -) -(1,726:11732763,45706769:1061689,452978,115847 -k1,726:11732763,45706769:3277 -h1,726:12791175,45706769:0,411205,112570 -) -k1,726:13255831,45706769:287709 -k1,726:14615709,45706769:287709 -k1,726:16106659,45706769:287709 -k1,726:16925865,45706769:287709 -k1,726:18279844,45706769:287708 -k1,726:20865901,45706769:287709 -k1,726:21839772,45706769:287709 -k1,726:22542235,45706769:287620 -k1,726:25590320,45706769:287709 -k1,726:26233889,45706769:287709 -k1,726:29217094,45706769:287709 -k1,726:31923737,45706769:287709 -k1,726:32583029,45706769:0 -) -] -(1,729:32583029,45706769:0,0,0 -g1,729:32583029,45706769 -) -) -] -(1,729:6630773,47279633:25952256,0,0 -h1,729:6630773,47279633:25952256,0,0 -) -] -(1,729:4262630,4025873:0,0,0 -[1,729:-473656,4025873:0,0,0 -(1,729:-473656,-710413:0,0,0 -(1,729:-473656,-710413:0,0,0 -g1,729:-473656,-710413 -) -g1,729:-473656,-710413 -) -] -) -] -!24678 -}35 -Input:265:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:266:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:267:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:268:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:269:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:270:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:271:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:272:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:273:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:274:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:275:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1012 -{36 -[1,810:4262630,47279633:28320399,43253760,0 -(1,810:4262630,4025873:0,0,0 -[1,810:-473656,4025873:0,0,0 -(1,810:-473656,-710413:0,0,0 -(1,810:-473656,-644877:0,0,0 -k1,810:-473656,-644877:-65536 -) -(1,810:-473656,4736287:0,0,0 -k1,810:-473656,4736287:5209943 -) -g1,810:-473656,-710413 -) -] -) -[1,810:6630773,47279633:25952256,43253760,0 -[1,810:6630773,4812305:25952256,786432,0 -(1,810:6630773,4812305:25952256,505283,11795 -(1,810:6630773,4812305:25952256,505283,11795 -g1,810:3078558,4812305 -[1,810:3078558,4812305:0,0,0 -(1,810:3078558,2439708:0,1703936,0 -k1,810:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,810:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,810:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,810:3078558,4812305:0,0,0 -(1,810:3078558,2439708:0,1703936,0 -g1,810:29030814,2439708 -g1,810:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,810:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,810:37855564,2439708:1179648,16384,0 -) -) -k1,810:3078556,2439708:-34777008 -) -] -[1,810:3078558,4812305:0,0,0 -(1,810:3078558,49800853:0,16384,2228224 -k1,810:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,810:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,810:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,810:3078558,4812305:0,0,0 -(1,810:3078558,49800853:0,16384,2228224 -g1,810:29030814,49800853 -g1,810:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,810:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,810:37855564,49800853:1179648,16384,0 -) -) -k1,810:3078556,49800853:-34777008 -) -] -g1,810:6630773,4812305 -g1,810:6630773,4812305 -g1,810:9516978,4812305 -g1,810:11710468,4812305 -g1,810:13120147,4812305 -g1,810:16560787,4812305 -k1,810:31786111,4812305:15225324 -) -) -] -[1,810:6630773,45706769:25952256,40108032,0 -(1,810:6630773,45706769:25952256,40108032,0 -(1,810:6630773,45706769:0,0,0 -g1,810:6630773,45706769 -) -[1,810:6630773,45706769:25952256,40108032,0 -(1,727:6630773,6254097:25952256,505283,134348 -k1,726:9193090,6254097:147971 -k1,726:11146578,6254097:147971 -k1,726:12497789,6254097:147970 -k1,726:15893724,6254097:147971 -k1,726:19004578,6254097:147971 -k1,726:19610646,6254097:147971 -k1,726:20862898,6254097:147970 -k1,726:21758635,6254097:147971 -k1,726:23419832,6254097:147971 -k1,726:24219231,6254097:147971 -k1,726:26806452,6254097:147971 -k1,726:29138737,6254097:147970 -k1,726:29744805,6254097:147971 -k1,726:30424273,6254097:147971 -k1,727:32583029,6254097:0 -) -(1,727:6630773,7095585:25952256,513147,126483 -(1,726:6630773,7095585:0,452978,115847 -r1,810:9451022,7095585:2820249,568825,115847 -k1,726:6630773,7095585:-2820249 -) -(1,726:6630773,7095585:2820249,452978,115847 -k1,726:6630773,7095585:3277 -h1,726:9447745,7095585:0,411205,112570 -) -g1,726:9823921,7095585 -g1,726:11214595,7095585 -g1,726:12175352,7095585 -g1,726:14813831,7095585 -g1,726:15471157,7095585 -g1,726:17822588,7095585 -g1,726:20732386,7095585 -g1,726:22088325,7095585 -g1,726:24265431,7095585 -g1,726:25077422,7095585 -g1,726:26295736,7095585 -g1,726:27677890,7095585 -g1,726:28536411,7095585 -k1,727:32583029,7095585:1400274 -g1,727:32583029,7095585 -) -v1,729:6630773,8236777:0,393216,0 -(1,736:6630773,9252130:25952256,1408569,196608 -g1,736:6630773,9252130 -g1,736:6630773,9252130 -g1,736:6434165,9252130 -(1,736:6434165,9252130:0,1408569,196608 -r1,810:32779637,9252130:26345472,1605177,196608 -k1,736:6434165,9252130:-26345472 -) -(1,736:6434165,9252130:26345472,1408569,196608 -[1,736:6630773,9252130:25952256,1211961,0 -(1,731:6630773,8444395:25952256,404226,101187 -(1,730:6630773,8444395:0,0,0 -g1,730:6630773,8444395 -g1,730:6630773,8444395 -g1,730:6303093,8444395 -(1,730:6303093,8444395:0,0,0 -) -g1,730:6630773,8444395 -) -k1,731:6630773,8444395:0 -g1,731:9792230,8444395 -h1,731:10424521,8444395:0,0,0 -k1,731:32583029,8444395:22158508 -g1,731:32583029,8444395 -) -(1,735:6630773,9176109:25952256,404226,76021 -(1,733:6630773,9176109:0,0,0 -g1,733:6630773,9176109 -g1,733:6630773,9176109 -g1,733:6303093,9176109 -(1,733:6303093,9176109:0,0,0 -) -g1,733:6630773,9176109 -) -g1,735:7579210,9176109 -g1,735:8843793,9176109 -g1,735:9476085,9176109 -g1,735:10108377,9176109 -g1,735:10740669,9176109 -g1,735:11372961,9176109 -g1,735:12005253,9176109 -h1,735:12321399,9176109:0,0,0 -k1,735:32583029,9176109:20261630 -g1,735:32583029,9176109 -) -] -) -g1,736:32583029,9252130 -g1,736:6630773,9252130 -g1,736:6630773,9252130 -g1,736:32583029,9252130 -g1,736:32583029,9252130 -) -h1,736:6630773,9448738:0,0,0 -(1,740:6630773,10765239:25952256,513147,126483 -h1,739:6630773,10765239:983040,0,0 -k1,739:9024246,10765239:213746 -k1,739:11396748,10765239:213746 -k1,739:13465817,10765239:213745 -k1,739:14211060,10765239:213746 -k1,739:15443891,10765239:213746 -k1,739:17311110,10765239:213746 -k1,739:18211017,10765239:213745 -k1,739:19372414,10765239:213746 -(1,739:19372414,10765239:0,452978,115847 -r1,810:21840951,10765239:2468537,568825,115847 -k1,739:19372414,10765239:-2468537 -) -(1,739:19372414,10765239:2468537,452978,115847 -g1,739:21134250,10765239 -h1,739:21837674,10765239:0,411205,112570 -) -k1,739:22228367,10765239:213746 -k1,739:25286376,10765239:213746 -(1,739:25286376,10765239:0,452978,115847 -r1,810:28106625,10765239:2820249,568825,115847 -k1,739:25286376,10765239:-2820249 -) -(1,739:25286376,10765239:2820249,452978,115847 -k1,739:25286376,10765239:3277 -h1,739:28103348,10765239:0,411205,112570 -) -k1,739:28320370,10765239:213745 -k1,739:30912418,10765239:213746 -k1,739:31812326,10765239:213746 -k1,739:32583029,10765239:0 -) -(1,740:6630773,11606727:25952256,513147,134348 -k1,739:9981152,11606727:278051 -k1,739:11029907,11606727:278052 -k1,739:13057114,11606727:278051 -k1,739:15949396,11606727:278051 -k1,739:17740674,11606727:278052 -k1,739:19904196,11606727:278051 -k1,739:20833676,11606727:278052 -k1,739:24092304,11606727:278051 -k1,739:25158753,11606727:278051 -k1,739:27678136,11606727:278052 -k1,739:31202185,11606727:278051 -k1,739:32583029,11606727:0 -) -(1,740:6630773,12448215:25952256,513147,126483 -k1,739:8982659,12448215:178712 -k1,739:9777408,12448215:178711 -k1,739:10726823,12448215:178712 -k1,739:12726779,12448215:178711 -k1,739:15979785,12448215:178712 -k1,739:17856534,12448215:178711 -k1,739:19054331,12448215:178712 -k1,739:20982198,12448215:178711 -k1,739:23179419,12448215:178712 -k1,739:23970892,12448215:178711 -k1,739:25281411,12448215:178712 -k1,739:28074353,12448215:178711 -k1,739:31015408,12448215:178712 -k1,739:32583029,12448215:0 -) -(1,740:6630773,13289703:25952256,513147,7863 -g1,739:7849087,13289703 -g1,739:9231241,13289703 -g1,739:10089762,13289703 -g1,739:11308076,13289703 -k1,740:32583029,13289703:19123406 -g1,740:32583029,13289703 -) -v1,742:6630773,14430895:0,393216,0 -(1,749:6630773,15452540:25952256,1414861,196608 -g1,749:6630773,15452540 -g1,749:6630773,15452540 -g1,749:6434165,15452540 -(1,749:6434165,15452540:0,1414861,196608 -r1,810:32779637,15452540:26345472,1611469,196608 -k1,749:6434165,15452540:-26345472 -) -(1,749:6434165,15452540:26345472,1414861,196608 -[1,749:6630773,15452540:25952256,1218253,0 -(1,744:6630773,14644805:25952256,410518,101187 -(1,743:6630773,14644805:0,0,0 -g1,743:6630773,14644805 -g1,743:6630773,14644805 -g1,743:6303093,14644805 -(1,743:6303093,14644805:0,0,0 -) -g1,743:6630773,14644805 -) -k1,744:6630773,14644805:0 -g1,744:9792230,14644805 -g1,744:12005250,14644805 -g1,744:12637542,14644805 -g1,744:13585980,14644805 -g1,744:15482854,14644805 -g1,744:16115146,14644805 -h1,744:17063583,14644805:0,0,0 -k1,744:32583029,14644805:15519446 -g1,744:32583029,14644805 -) -(1,748:6630773,15376519:25952256,404226,76021 -(1,746:6630773,15376519:0,0,0 -g1,746:6630773,15376519 -g1,746:6630773,15376519 -g1,746:6303093,15376519 -(1,746:6303093,15376519:0,0,0 -) -g1,746:6630773,15376519 -) -g1,748:7579210,15376519 -g1,748:8843793,15376519 -g1,748:9476085,15376519 -g1,748:10108377,15376519 -g1,748:10740669,15376519 -g1,748:11372961,15376519 -g1,748:12005253,15376519 -h1,748:12321399,15376519:0,0,0 -k1,748:32583029,15376519:20261630 -g1,748:32583029,15376519 -) -] -) -g1,749:32583029,15452540 -g1,749:6630773,15452540 -g1,749:6630773,15452540 -g1,749:32583029,15452540 -g1,749:32583029,15452540 -) -h1,749:6630773,15649148:0,0,0 -(1,753:6630773,16965650:25952256,505283,115847 -h1,752:6630773,16965650:983040,0,0 -g1,752:9278427,16965650 -(1,752:9278427,16965650:0,452978,115847 -r1,810:10340116,16965650:1061689,568825,115847 -k1,752:9278427,16965650:-1061689 -) -(1,752:9278427,16965650:1061689,452978,115847 -k1,752:9278427,16965650:3277 -h1,752:10336839,16965650:0,411205,112570 -) -g1,752:10539345,16965650 -g1,752:11930019,16965650 -(1,752:11930019,16965650:0,452978,115847 -r1,810:14750268,16965650:2820249,568825,115847 -k1,752:11930019,16965650:-2820249 -) -(1,752:11930019,16965650:2820249,452978,115847 -k1,752:11930019,16965650:3277 -h1,752:14746991,16965650:0,411205,112570 -) -g1,752:14949497,16965650 -g1,752:16253008,16965650 -g1,752:17738053,16965650 -g1,752:18685048,16965650 -g1,752:20397503,16965650 -g1,752:21990683,16965650 -k1,753:32583029,16965650:9094848 -g1,753:32583029,16965650 -) -v1,755:6630773,18282152:0,393216,0 -(1,772:6630773,28889599:25952256,11000663,616038 -g1,772:6630773,28889599 -(1,772:6630773,28889599:25952256,11000663,616038 -(1,772:6630773,29505637:25952256,11616701,0 -[1,772:6630773,29505637:25952256,11616701,0 -(1,772:6630773,29479423:25952256,11564273,0 -r1,810:6656987,29479423:26214,11564273,0 -[1,772:6656987,29479423:25899828,11564273,0 -(1,772:6656987,28889599:25899828,10384625,0 -[1,772:7246811,28889599:24720180,10384625,0 -(1,756:7246811,19592348:24720180,1087374,134348 -k1,755:8614916,19592348:158402 -k1,755:10044715,19592348:158401 -k1,755:11307399,19592348:158402 -k1,755:13395180,19592348:158401 -k1,755:16823829,19592348:158402 -k1,755:18717623,19592348:158401 -k1,755:21571521,19592348:158402 -(1,755:21571521,19592348:0,452978,115847 -r1,810:23336634,19592348:1765113,568825,115847 -k1,755:21571521,19592348:-1765113 -) -(1,755:21571521,19592348:1765113,452978,115847 -k1,755:21571521,19592348:3277 -h1,755:23333357,19592348:0,411205,112570 -) -k1,755:23495035,19592348:158401 -k1,755:24336322,19592348:158402 -k1,755:25513808,19592348:158401 -k1,755:28418824,19592348:158402 -(1,755:28418824,19592348:0,414482,115847 -r1,810:28777090,19592348:358266,530329,115847 -k1,755:28418824,19592348:-358266 -) -(1,755:28418824,19592348:358266,414482,115847 -k1,755:28418824,19592348:3277 -h1,755:28773813,19592348:0,411205,112570 -) -k1,755:29109161,19592348:158401 -k1,755:29950448,19592348:158402 -k1,755:31966991,19592348:0 -) -(1,756:7246811,20433836:24720180,513147,134348 -k1,755:9551001,20433836:293545 -k1,755:11579939,20433836:293545 -k1,755:14568980,20433836:293545 -(1,755:14568980,20433836:0,452978,115847 -r1,810:16334093,20433836:1765113,568825,115847 -k1,755:14568980,20433836:-1765113 -) -(1,755:14568980,20433836:1765113,452978,115847 -k1,755:14568980,20433836:3277 -h1,755:16330816,20433836:0,411205,112570 -) -k1,755:16801308,20433836:293545 -k1,755:17722688,20433836:293545 -k1,755:19219473,20433836:293544 -k1,755:21053769,20433836:293545 -k1,755:21560212,20433836:293451 -k1,755:23466598,20433836:293545 -k1,755:24411570,20433836:293544 -k1,755:25724200,20433836:293545 -k1,755:28065745,20433836:293545 -k1,755:29010718,20433836:293545 -k1,755:30900720,20433836:293545 -k1,755:31966991,20433836:0 -) -(1,756:7246811,21275324:24720180,513147,134348 -k1,755:8545483,21275324:279587 -k1,755:10411040,21275324:279586 -k1,755:11452155,21275324:279587 -k1,755:14254877,21275324:279586 -k1,755:16231191,21275324:279587 -k1,755:17702223,21275324:279587 -k1,755:20314235,21275324:279586 -k1,755:21924203,21275324:279587 -k1,755:25369179,21275324:279587 -k1,755:27042716,21275324:279586 -k1,755:28341388,21275324:279587 -k1,755:30009027,21275324:279586 -k1,755:30947906,21275324:279587 -k1,755:31966991,21275324:0 -) -(1,756:7246811,22116812:24720180,505283,134348 -g1,755:12445782,22116812 -g1,755:15428980,22116812 -g1,755:18186735,22116812 -(1,755:18186735,22116812:0,452978,115847 -r1,810:21358695,22116812:3171960,568825,115847 -k1,755:18186735,22116812:-3171960 -) -(1,755:18186735,22116812:3171960,452978,115847 -k1,755:18186735,22116812:3277 -h1,755:21355418,22116812:0,411205,112570 -) -g1,755:21557924,22116812 -g1,755:22948598,22116812 -(1,755:22948598,22116812:0,452978,115847 -r1,810:26120558,22116812:3171960,568825,115847 -k1,755:22948598,22116812:-3171960 -) -(1,755:22948598,22116812:3171960,452978,115847 -k1,755:22948598,22116812:3277 -h1,755:26117281,22116812:0,411205,112570 -) -k1,756:31966991,22116812:5672763 -g1,756:31966991,22116812 -) -v1,758:7246811,23307278:0,393216,0 -(1,769:7246811,28168703:24720180,5254641,196608 -g1,769:7246811,28168703 -g1,769:7246811,28168703 -g1,769:7050203,28168703 -(1,769:7050203,28168703:0,5254641,196608 -r1,810:32163599,28168703:25113396,5451249,196608 -k1,769:7050203,28168703:-25113396 -) -(1,769:7050203,28168703:25113396,5254641,196608 -[1,769:7246811,28168703:24720180,5058033,0 -(1,760:7246811,23499167:24720180,388497,9436 -(1,759:7246811,23499167:0,0,0 -g1,759:7246811,23499167 -g1,759:7246811,23499167 -g1,759:6919131,23499167 -(1,759:6919131,23499167:0,0,0 -) -g1,759:7246811,23499167 -) -g1,760:7879103,23499167 -g1,760:8827541,23499167 -k1,760:8827541,23499167:0 -h1,760:10092125,23499167:0,0,0 -k1,760:31966991,23499167:21874866 -g1,760:31966991,23499167 -) -(1,761:7246811,24165345:24720180,284164,4718 -h1,761:7246811,24165345:0,0,0 -h1,761:7562957,24165345:0,0,0 -k1,761:31966991,24165345:24404034 -g1,761:31966991,24165345 -) -(1,762:7246811,24831523:24720180,404226,9436 -h1,762:7246811,24831523:0,0,0 -g1,762:7879103,24831523 -g1,762:8827541,24831523 -k1,762:8827541,24831523:0 -h1,762:10092125,24831523:0,0,0 -k1,762:31966991,24831523:21874866 -g1,762:31966991,24831523 -) -(1,763:7246811,25497701:24720180,404226,6290 -h1,763:7246811,25497701:0,0,0 -h1,763:7562957,25497701:0,0,0 -k1,763:31966991,25497701:24404034 -g1,763:31966991,25497701 -) -(1,764:7246811,26163879:24720180,410518,101187 -h1,764:7246811,26163879:0,0,0 -g1,764:7879103,26163879 -g1,764:8827541,26163879 -g1,764:11672853,26163879 -g1,764:12305145,26163879 -g1,764:13569729,26163879 -g1,764:14518166,26163879 -g1,764:15150458,26163879 -g1,764:16098896,26163879 -g1,764:17047333,26163879 -g1,764:17679625,26163879 -h1,764:18944208,26163879:0,0,0 -k1,764:31966991,26163879:13022783 -g1,764:31966991,26163879 -) -(1,765:7246811,26830057:24720180,284164,6290 -h1,765:7246811,26830057:0,0,0 -h1,765:7562957,26830057:0,0,0 -k1,765:31966991,26830057:24404034 -g1,765:31966991,26830057 -) -(1,766:7246811,27496235:24720180,404226,101187 -h1,766:7246811,27496235:0,0,0 -g1,766:7879103,27496235 -g1,766:8827541,27496235 -g1,766:11356708,27496235 -h1,766:11989000,27496235:0,0,0 -k1,766:31966992,27496235:19977992 -g1,766:31966992,27496235 -) -(1,767:7246811,28162413:24720180,404226,6290 -h1,767:7246811,28162413:0,0,0 -h1,767:7562957,28162413:0,0,0 -k1,767:31966991,28162413:24404034 -g1,767:31966991,28162413 -) -] -) -g1,769:31966991,28168703 -g1,769:7246811,28168703 -g1,769:7246811,28168703 -g1,769:31966991,28168703 -g1,769:31966991,28168703 -) -h1,769:7246811,28365311:0,0,0 -] -) -] -r1,810:32583029,29479423:26214,11564273,0 -) -] -) -) -g1,772:32583029,28889599 -) -h1,772:6630773,29505637:0,0,0 -(1,775:6630773,30822138:25952256,513147,134348 -h1,774:6630773,30822138:983040,0,0 -k1,774:9554934,30822138:305998 -k1,774:13215065,30822138:305998 -k1,774:14805569,30822138:305998 -k1,774:17157602,30822138:305999 -k1,774:17878335,30822138:305890 -k1,774:20946677,30822138:305999 -k1,774:22820296,30822138:305998 -k1,774:24727994,30822138:305998 -k1,774:26735962,30822138:305998 -k1,774:31394206,30822138:305998 -k1,775:32583029,30822138:0 -) -(1,775:6630773,31663626:25952256,513147,134348 -k1,774:9173570,31663626:172360 -k1,774:12683022,31663626:172359 -k1,774:16305197,31663626:172360 -k1,774:19669159,31663626:172359 -k1,774:21032964,31663626:172360 -k1,774:24231120,31663626:172359 -k1,774:25687986,31663626:172360 -k1,774:26851905,31663626:172359 -k1,774:30361358,31663626:172360 -k1,774:32583029,31663626:0 -) -(1,775:6630773,32505114:25952256,513147,134348 -k1,774:7452342,32505114:135407 -k1,774:11164050,32505114:135408 -k1,774:13607635,32505114:135407 -k1,774:14402335,32505114:135408 -k1,774:17334163,32505114:135407 -k1,774:19656506,32505114:135407 -k1,774:20407952,32505114:135408 -k1,774:22428830,32505114:135407 -k1,774:23931318,32505114:135407 -k1,774:25085811,32505114:135408 -k1,774:27064090,32505114:135407 -k1,774:29978225,32505114:135408 -k1,774:30645129,32505114:135407 -k1,775:32583029,32505114:0 -) -(1,775:6630773,33346602:25952256,513147,134348 -k1,774:8380202,33346602:169356 -k1,774:9200986,33346602:169356 -k1,774:11488465,33346602:169355 -k1,774:14029569,33346602:169356 -k1,774:15218010,33346602:169356 -k1,774:17040839,33346602:169356 -k1,774:19905691,33346602:169356 -k1,774:20757932,33346602:169356 -k1,774:23673901,33346602:169355 -k1,774:27602402,33346602:169356 -k1,774:28423186,33346602:169356 -k1,774:30044164,33346602:169356 -k1,774:32583029,33346602:0 -) -(1,775:6630773,34188090:25952256,513147,7863 -g1,774:7489294,34188090 -g1,774:8707608,34188090 -k1,775:32583029,34188090:21723874 -g1,775:32583029,34188090 -) -v1,777:6630773,35329282:0,393216,0 -(1,802:6630773,42510683:25952256,7574617,196608 -g1,802:6630773,42510683 -g1,802:6630773,42510683 -g1,802:6434165,42510683 -(1,802:6434165,42510683:0,7574617,196608 -r1,810:32779637,42510683:26345472,7771225,196608 -k1,802:6434165,42510683:-26345472 -) -(1,802:6434165,42510683:26345472,7574617,196608 -[1,802:6630773,42510683:25952256,7378009,0 -(1,779:6630773,35543192:25952256,410518,101187 -(1,778:6630773,35543192:0,0,0 -g1,778:6630773,35543192 -g1,778:6630773,35543192 -g1,778:6303093,35543192 -(1,778:6303093,35543192:0,0,0 -) -g1,778:6630773,35543192 -) -g1,779:7263065,35543192 -g1,779:7895357,35543192 -g1,779:8527649,35543192 -g1,779:9159941,35543192 -g1,779:10108378,35543192 -g1,779:11372961,35543192 -g1,779:12637544,35543192 -g1,779:13585981,35543192 -g1,779:15799001,35543192 -g1,779:16431293,35543192 -g1,779:18960459,35543192 -k1,779:18960459,35543192:1573 -h1,779:20542760,35543192:0,0,0 -k1,779:32583029,35543192:12040269 -g1,779:32583029,35543192 -) -(1,783:6630773,36274906:25952256,404226,76021 -(1,781:6630773,36274906:0,0,0 -g1,781:6630773,36274906 -g1,781:6630773,36274906 -g1,781:6303093,36274906 -(1,781:6303093,36274906:0,0,0 -) -g1,781:6630773,36274906 -) -g1,783:7579210,36274906 -g1,783:8843793,36274906 -g1,783:9476085,36274906 -g1,783:10108377,36274906 -h1,783:10424523,36274906:0,0,0 -k1,783:32583029,36274906:22158506 -g1,783:32583029,36274906 -) -(1,785:6630773,37596444:25952256,404226,76021 -(1,784:6630773,37596444:0,0,0 -g1,784:6630773,37596444 -g1,784:6630773,37596444 -g1,784:6303093,37596444 -(1,784:6303093,37596444:0,0,0 -) -g1,784:6630773,37596444 -) -g1,785:7579210,37596444 -g1,785:8211502,37596444 -g1,785:9159940,37596444 -g1,785:9792232,37596444 -h1,785:10108378,37596444:0,0,0 -k1,785:32583030,37596444:22474652 -g1,785:32583030,37596444 -) -(1,789:6630773,38328158:25952256,404226,76021 -(1,787:6630773,38328158:0,0,0 -g1,787:6630773,38328158 -g1,787:6630773,38328158 -g1,787:6303093,38328158 -(1,787:6303093,38328158:0,0,0 -) -g1,787:6630773,38328158 -) -g1,789:7579210,38328158 -g1,789:8843793,38328158 -g1,789:9476085,38328158 -g1,789:10108377,38328158 -h1,789:10424523,38328158:0,0,0 -k1,789:32583029,38328158:22158506 -g1,789:32583029,38328158 -) -(1,791:6630773,39649696:25952256,404226,6290 -(1,790:6630773,39649696:0,0,0 -g1,790:6630773,39649696 -g1,790:6630773,39649696 -g1,790:6303093,39649696 -(1,790:6303093,39649696:0,0,0 -) -g1,790:6630773,39649696 -) -g1,791:7263065,39649696 -g1,791:7895357,39649696 -h1,791:8211503,39649696:0,0,0 -k1,791:32583029,39649696:24371526 -g1,791:32583029,39649696 -) -(1,795:6630773,40381410:25952256,404226,76021 -(1,793:6630773,40381410:0,0,0 -g1,793:6630773,40381410 -g1,793:6630773,40381410 -g1,793:6303093,40381410 -(1,793:6303093,40381410:0,0,0 -) -g1,793:6630773,40381410 -) -g1,795:7579210,40381410 -g1,795:8843793,40381410 -g1,795:9476085,40381410 -g1,795:10108377,40381410 -h1,795:10424523,40381410:0,0,0 -k1,795:32583029,40381410:22158506 -g1,795:32583029,40381410 -) -(1,797:6630773,41702948:25952256,284164,4718 -(1,796:6630773,41702948:0,0,0 -g1,796:6630773,41702948 -g1,796:6630773,41702948 -g1,796:6303093,41702948 -(1,796:6303093,41702948:0,0,0 -) -g1,796:6630773,41702948 -) -g1,797:7263065,41702948 -g1,797:7895357,41702948 -h1,797:8211503,41702948:0,0,0 -k1,797:32583029,41702948:24371526 -g1,797:32583029,41702948 -) -(1,801:6630773,42434662:25952256,404226,76021 -(1,799:6630773,42434662:0,0,0 -g1,799:6630773,42434662 -g1,799:6630773,42434662 -g1,799:6303093,42434662 -(1,799:6303093,42434662:0,0,0 -) -g1,799:6630773,42434662 -) -g1,801:7579210,42434662 -g1,801:8843793,42434662 -g1,801:9476085,42434662 -g1,801:10108377,42434662 -h1,801:10424523,42434662:0,0,0 -k1,801:32583029,42434662:22158506 -g1,801:32583029,42434662 -) -] -) -g1,802:32583029,42510683 -g1,802:6630773,42510683 -g1,802:6630773,42510683 -g1,802:32583029,42510683 -g1,802:32583029,42510683 -) -h1,802:6630773,42707291:0,0,0 -(1,806:6630773,44023793:25952256,513147,126483 -h1,805:6630773,44023793:983040,0,0 -k1,805:8633052,44023793:201350 -k1,805:9292498,44023793:201349 -k1,805:10598130,44023793:201350 -k1,805:11547246,44023793:201350 -k1,805:13188421,44023793:201349 -k1,805:14005809,44023793:201350 -k1,805:15226244,44023793:201350 -k1,805:16733726,44023793:201349 -k1,805:18103583,44023793:201350 -k1,805:20333927,44023793:201349 -k1,805:23007950,44023793:201350 -k1,805:26595545,44023793:201350 -k1,805:27464050,44023793:201349 -k1,805:28253913,44023793:201350 -k1,805:28986760,44023793:201350 -k1,805:30736725,44023793:201349 -k1,805:31469572,44023793:201350 -k1,806:32583029,44023793:0 -) -(1,806:6630773,44865281:25952256,513147,134348 -k1,805:9202234,44865281:166945 -k1,805:11236955,44865281:166945 -k1,805:14863546,44865281:166945 -k1,805:15689782,44865281:166944 -k1,805:19433027,44865281:166945 -k1,805:20286134,44865281:166945 -k1,805:22430956,44865281:166945 -(1,805:22430956,44865281:0,414482,115847 -r1,810:22789222,44865281:358266,530329,115847 -k1,805:22430956,44865281:-358266 -) -(1,805:22430956,44865281:358266,414482,115847 -k1,805:22430956,44865281:3277 -h1,805:22785945,44865281:0,411205,112570 -) -k1,805:22956167,44865281:166945 -k1,805:23654609,44865281:166945 -k1,805:24480846,44865281:166945 -k1,805:26661056,44865281:166944 -k1,805:27400130,44865281:166945 -k1,805:28639244,44865281:166945 -k1,805:29825274,44865281:166945 -k1,805:32583029,44865281:0 -) -(1,806:6630773,45706769:25952256,513147,134348 -k1,805:7281589,45706769:252357 -k1,805:8065443,45706769:252357 -k1,805:8673661,45706769:252358 -k1,805:10903895,45706769:252357 -k1,805:11815544,45706769:252357 -k1,805:14081167,45706769:252357 -k1,805:14905653,45706769:252357 -k1,805:16361252,45706769:252358 -k1,805:18298540,45706769:252357 -k1,805:21308652,45706769:252357 -k1,805:23538886,45706769:252357 -k1,805:24322740,45706769:252357 -k1,805:27669053,45706769:252358 -k1,805:28682938,45706769:252357 -k1,805:31794631,45706769:252357 -k1,805:32583029,45706769:0 -) -] -(1,810:32583029,45706769:0,0,0 -g1,810:32583029,45706769 -) -) -] -(1,810:6630773,47279633:25952256,0,0 -h1,810:6630773,47279633:25952256,0,0 -) -] -(1,810:4262630,4025873:0,0,0 -[1,810:-473656,4025873:0,0,0 -(1,810:-473656,-710413:0,0,0 -(1,810:-473656,-710413:0,0,0 -g1,810:-473656,-710413 -) -g1,810:-473656,-710413 -) -] -) -] -!23950 -}36 -Input:276:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:277:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:278:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!284 -{37 -[1,921:4262630,47279633:28320399,43253760,0 -(1,921:4262630,4025873:0,0,0 -[1,921:-473656,4025873:0,0,0 -(1,921:-473656,-710413:0,0,0 -(1,921:-473656,-644877:0,0,0 -k1,921:-473656,-644877:-65536 -) -(1,921:-473656,4736287:0,0,0 -k1,921:-473656,4736287:5209943 -) -g1,921:-473656,-710413 -) -] -) -[1,921:6630773,47279633:25952256,43253760,0 -[1,921:6630773,4812305:25952256,786432,0 -(1,921:6630773,4812305:25952256,505283,134348 -(1,921:6630773,4812305:25952256,505283,134348 -g1,921:3078558,4812305 -[1,921:3078558,4812305:0,0,0 -(1,921:3078558,2439708:0,1703936,0 -k1,921:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,921:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,921:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,921:3078558,4812305:0,0,0 -(1,921:3078558,2439708:0,1703936,0 -g1,921:29030814,2439708 -g1,921:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,921:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,921:37855564,2439708:1179648,16384,0 -) -) -k1,921:3078556,2439708:-34777008 -) -] -[1,921:3078558,4812305:0,0,0 -(1,921:3078558,49800853:0,16384,2228224 -k1,921:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,921:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,921:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,921:3078558,4812305:0,0,0 -(1,921:3078558,49800853:0,16384,2228224 -g1,921:29030814,49800853 -g1,921:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,921:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,921:37855564,49800853:1179648,16384,0 -) -) -k1,921:3078556,49800853:-34777008 -) -] -g1,921:6630773,4812305 -k1,921:19515153,4812305:12087462 -g1,921:20901894,4812305 -g1,921:21550700,4812305 -g1,921:24864855,4812305 -g1,921:27600327,4812305 -g1,921:29010006,4812305 -) -) -] -[1,921:6630773,45706769:25952256,40108032,0 -(1,921:6630773,45706769:25952256,40108032,0 -(1,921:6630773,45706769:0,0,0 -g1,921:6630773,45706769 -) -[1,921:6630773,45706769:25952256,40108032,0 -(1,806:6630773,6254097:25952256,513147,134348 -k1,805:8752917,6254097:268130 -k1,805:10288512,6254097:268129 -k1,805:10912502,6254097:268130 -k1,805:13158508,6254097:268129 -k1,805:14085930,6254097:268130 -k1,805:15250593,6254097:268130 -k1,805:18730641,6254097:268129 -k1,805:19354631,6254097:268130 -k1,805:21600637,6254097:268129 -k1,805:22528059,6254097:268130 -k1,805:23815274,6254097:268130 -k1,805:25736876,6254097:268129 -k1,805:28018272,6254097:268130 -k1,805:28972563,6254097:268129 -k1,805:30259778,6254097:268130 -k1,805:32583029,6254097:0 -) -(1,806:6630773,7095585:25952256,505283,115847 -g1,805:8807879,7095585 -g1,805:9623146,7095585 -g1,805:10841460,7095585 -g1,805:14400720,7095585 -(1,805:14400720,7095585:0,414482,115847 -r1,921:14758986,7095585:358266,530329,115847 -k1,805:14400720,7095585:-358266 -) -(1,805:14400720,7095585:358266,414482,115847 -k1,805:14400720,7095585:3277 -h1,805:14755709,7095585:0,411205,112570 -) -k1,806:32583028,7095585:17650372 -g1,806:32583028,7095585 -) -(1,808:6630773,7937073:25952256,505283,134348 -h1,807:6630773,7937073:983040,0,0 -k1,807:9590260,7937073:317075 -k1,807:11288179,7937073:317075 -k1,807:12775727,7937073:317075 -k1,807:16757575,7937073:317075 -k1,807:18623266,7937073:317075 -k1,807:22742084,7937073:317075 -k1,807:24050719,7937073:317075 -k1,807:26363365,7937073:317075 -k1,807:28343088,7937073:317075 -k1,807:29276201,7937073:317075 -k1,807:30612361,7937073:317075 -k1,807:32583029,7937073:0 -) -(1,808:6630773,8778561:25952256,505283,102891 -g1,807:8858997,8778561 -g1,807:10249671,8778561 -g1,807:11734716,8778561 -g1,807:12953030,8778561 -g1,807:14308969,8778561 -k1,808:32583029,8778561:16231958 -g1,808:32583029,8778561 -) -v1,810:6630773,9759311:0,393216,0 -(1,838:6630773,19522778:25952256,10156683,196608 -g1,838:6630773,19522778 -g1,838:6630773,19522778 -g1,838:6434165,19522778 -(1,838:6434165,19522778:0,10156683,196608 -r1,921:32779637,19522778:26345472,10353291,196608 -k1,838:6434165,19522778:-26345472 -) -(1,838:6434165,19522778:26345472,10156683,196608 -[1,838:6630773,19522778:25952256,9960075,0 -(1,812:6630773,9966929:25952256,404226,101187 -(1,811:6630773,9966929:0,0,0 -g1,811:6630773,9966929 -g1,811:6630773,9966929 -g1,811:6303093,9966929 -(1,811:6303093,9966929:0,0,0 -) -g1,811:6630773,9966929 -) -g1,812:7263065,9966929 -g1,812:8211503,9966929 -g1,812:10424524,9966929 -h1,812:11056816,9966929:0,0,0 -k1,812:32583028,9966929:21526212 -g1,812:32583028,9966929 -) -(1,813:6630773,10633107:25952256,284164,4718 -h1,813:6630773,10633107:0,0,0 -h1,813:6946919,10633107:0,0,0 -k1,813:32583029,10633107:25636110 -g1,813:32583029,10633107 -) -(1,817:6630773,11364821:25952256,404226,76021 -(1,815:6630773,11364821:0,0,0 -g1,815:6630773,11364821 -g1,815:6630773,11364821 -g1,815:6303093,11364821 -(1,815:6303093,11364821:0,0,0 -) -g1,815:6630773,11364821 -) -g1,817:7579210,11364821 -g1,817:8843793,11364821 -g1,817:9476085,11364821 -g1,817:10108377,11364821 -g1,817:10740669,11364821 -g1,817:11372961,11364821 -g1,817:12005253,11364821 -h1,817:12321399,11364821:0,0,0 -k1,817:32583029,11364821:20261630 -g1,817:32583029,11364821 -) -(1,819:6630773,12686359:25952256,388497,4718 -(1,818:6630773,12686359:0,0,0 -g1,818:6630773,12686359 -g1,818:6630773,12686359 -g1,818:6303093,12686359 -(1,818:6303093,12686359:0,0,0 -) -g1,818:6630773,12686359 -) -g1,819:7263065,12686359 -g1,819:7895357,12686359 -h1,819:8843795,12686359:0,0,0 -k1,819:32583029,12686359:23739234 -g1,819:32583029,12686359 -) -(1,823:6630773,13418073:25952256,404226,76021 -(1,821:6630773,13418073:0,0,0 -g1,821:6630773,13418073 -g1,821:6630773,13418073 -g1,821:6303093,13418073 -(1,821:6303093,13418073:0,0,0 -) -g1,821:6630773,13418073 -) -g1,823:7579210,13418073 -g1,823:8843793,13418073 -g1,823:9476085,13418073 -g1,823:10108377,13418073 -g1,823:10740669,13418073 -g1,823:11372961,13418073 -g1,823:12005253,13418073 -h1,823:12321399,13418073:0,0,0 -k1,823:32583029,13418073:20261630 -g1,823:32583029,13418073 -) -(1,825:6630773,14739611:25952256,388497,9436 -(1,824:6630773,14739611:0,0,0 -g1,824:6630773,14739611 -g1,824:6630773,14739611 -g1,824:6303093,14739611 -(1,824:6303093,14739611:0,0,0 -) -g1,824:6630773,14739611 -) -g1,825:7263065,14739611 -g1,825:7895357,14739611 -h1,825:8843795,14739611:0,0,0 -k1,825:32583029,14739611:23739234 -g1,825:32583029,14739611 -) -(1,829:6630773,15471325:25952256,404226,76021 -(1,827:6630773,15471325:0,0,0 -g1,827:6630773,15471325 -g1,827:6630773,15471325 -g1,827:6303093,15471325 -(1,827:6303093,15471325:0,0,0 -) -g1,827:6630773,15471325 -) -g1,829:7579210,15471325 -g1,829:8843793,15471325 -g1,829:9476085,15471325 -g1,829:10108377,15471325 -g1,829:10740669,15471325 -g1,829:11372961,15471325 -g1,829:12005253,15471325 -h1,829:12321399,15471325:0,0,0 -k1,829:32583029,15471325:20261630 -g1,829:32583029,15471325 -) -(1,831:6630773,16792863:25952256,388497,4718 -(1,830:6630773,16792863:0,0,0 -g1,830:6630773,16792863 -g1,830:6630773,16792863 -g1,830:6303093,16792863 -(1,830:6303093,16792863:0,0,0 -) -g1,830:6630773,16792863 -) -g1,831:7263065,16792863 -g1,831:7895357,16792863 -h1,831:8843795,16792863:0,0,0 -k1,831:32583029,16792863:23739234 -g1,831:32583029,16792863 -) -(1,835:6630773,18114401:25952256,410518,107478 -k1,835:7644326,18114401:381262 -k1,835:10238608,18114401:381262 -k1,835:11252162,18114401:381263 -k1,835:11949570,18114401:381262 -k1,835:12646978,18114401:381262 -k1,835:14292823,18114401:381262 -k1,835:16570959,18114401:381262 -k1,835:18849096,18114401:381263 -k1,835:21127232,18114401:381262 -k1,835:22140785,18114401:381262 -k1,835:23470484,18114401:381262 -k1,835:24167892,18114401:381262 -k1,835:27078320,18114401:381263 -k1,835:28091873,18114401:381262 -k1,835:30686155,18114401:381262 -k1,835:32583029,18114401:0 -) -(1,835:6630773,18780579:25952256,404226,107478 -k1,835:32583029,18780579:24055382 -g1,835:32583029,18780579 -) -(1,837:6630773,19446757:25952256,404226,76021 -(1,835:6630773,19446757:0,0,0 -g1,835:6630773,19446757 -g1,835:6630773,19446757 -g1,835:6303093,19446757 -(1,835:6303093,19446757:0,0,0 -) -g1,835:6630773,19446757 -) -g1,837:7579210,19446757 -g1,837:8843793,19446757 -g1,837:9476085,19446757 -g1,837:10108377,19446757 -g1,837:10740669,19446757 -g1,837:11372961,19446757 -g1,837:12005253,19446757 -h1,837:12321399,19446757:0,0,0 -k1,837:32583029,19446757:20261630 -g1,837:32583029,19446757 -) -] -) -g1,838:32583029,19522778 -g1,838:6630773,19522778 -g1,838:6630773,19522778 -g1,838:32583029,19522778 -g1,838:32583029,19522778 -) -h1,838:6630773,19719386:0,0,0 -v1,842:6630773,21190018:0,393216,0 -(1,921:6630773,45116945:25952256,24320143,589824 -g1,921:6630773,45116945 -(1,921:6630773,45116945:25952256,24320143,589824 -(1,921:6630773,45706769:25952256,24909967,0 -[1,921:6630773,45706769:25952256,24909967,0 -(1,921:6630773,45706769:25952256,24883753,0 -r1,921:6656987,45706769:26214,24883753,0 -[1,921:6656987,45706769:25899828,24883753,0 -(1,921:6656987,45116945:25899828,23704105,0 -[1,921:7246811,45116945:24720180,23704105,0 -(1,843:7246811,22574725:24720180,1161885,196608 -(1,842:7246811,22574725:0,1161885,196608 -r1,921:8794447,22574725:1547636,1358493,196608 -k1,842:7246811,22574725:-1547636 -) -(1,842:7246811,22574725:1547636,1161885,196608 -) -k1,842:9001284,22574725:206837 -k1,842:9695701,22574725:206829 -k1,842:11879758,22574725:206836 -k1,842:13748588,22574725:206837 -k1,842:14606852,22574725:206836 -k1,842:16710301,22574725:206837 -k1,842:17272998,22574725:206837 -k1,842:19457711,22574725:206836 -k1,842:20768830,22574725:206837 -k1,842:22450882,22574725:206837 -k1,842:24670984,22574725:206836 -k1,842:26471657,22574725:206837 -k1,842:29087596,22574725:206836 -k1,842:29953725,22574725:206837 -k1,842:31966991,22574725:0 -) -(1,843:7246811,23416213:24720180,513147,134348 -k1,842:8825923,23416213:158947 -k1,842:10321803,23416213:158946 -k1,842:12125704,23416213:158947 -k1,842:12897412,23416213:158946 -k1,842:14362492,23416213:158947 -k1,842:16098890,23416213:158946 -k1,842:17882475,23416213:158947 -k1,842:20520648,23416213:158946 -k1,842:21751764,23416213:158947 -k1,842:22526748,23416213:158946 -k1,842:23896800,23416213:158947 -k1,842:25435934,23416213:158946 -k1,842:26586441,23416213:158947 -k1,842:28099361,23416213:158946 -k1,842:30409200,23416213:158947 -k1,842:31966991,23416213:0 -) -(1,843:7246811,24257701:24720180,513147,134348 -k1,842:9211984,24257701:283519 -k1,842:10514588,24257701:283519 -k1,842:13599770,24257701:283518 -k1,842:14542581,24257701:283519 -k1,842:15935625,24257701:283519 -k1,842:18227822,24257701:283519 -k1,842:19194225,24257701:283518 -k1,842:22249262,24257701:283519 -k1,842:23184209,24257701:283519 -k1,842:24583151,24257701:283519 -k1,842:26564051,24257701:283518 -k1,842:27533732,24257701:283519 -k1,842:30095938,24257701:283519 -k1,842:31966991,24257701:0 -) -(1,843:7246811,25099189:24720180,513147,134348 -k1,842:9346772,25099189:214490 -k1,842:10177300,25099189:214490 -k1,842:11410875,25099189:214490 -k1,842:14155055,25099189:214490 -k1,842:15028837,25099189:214490 -k1,842:17551505,25099189:214490 -k1,842:18425287,25099189:214490 -k1,842:20653042,25099189:214489 -k1,842:22287697,25099189:214490 -k1,842:24458437,25099189:214490 -k1,842:26964721,25099189:214490 -k1,842:27830639,25099189:214490 -k1,842:28792895,25099189:214490 -k1,842:31280829,25099189:214490 -k1,842:31966991,25099189:0 -) -(1,843:7246811,25940677:24720180,513147,126483 -k1,842:9615935,25940677:174979 -k1,842:11661968,25940677:174980 -k1,842:15995862,25940677:174979 -k1,842:17118493,25940677:174980 -k1,842:18771964,25940677:174979 -k1,842:19562982,25940677:174980 -k1,842:21970773,25940677:174979 -k1,842:23291978,25940677:174980 -(1,842:23291978,25940677:0,452978,115847 -r1,921:26463938,25940677:3171960,568825,115847 -k1,842:23291978,25940677:-3171960 -) -(1,842:23291978,25940677:3171960,452978,115847 -k1,842:23291978,25940677:3277 -h1,842:26460661,25940677:0,411205,112570 -) -k1,842:26638917,25940677:174979 -k1,842:28824542,25940677:174980 -k1,842:31307699,25940677:174979 -k1,842:31966991,25940677:0 -) -(1,843:7246811,26782165:24720180,513147,134348 -k1,842:7820151,26782165:217480 -k1,842:10050897,26782165:217480 -k1,842:11963138,26782165:217480 -k1,842:12942146,26782165:217480 -k1,842:14668266,26782165:217481 -k1,842:16191879,26782165:217480 -k1,842:19655357,26782165:217480 -k1,842:21758308,26782165:217480 -k1,842:24571669,26782165:217480 -k1,842:25440577,26782165:217480 -k1,842:27251893,26782165:217480 -k1,842:27682347,26782165:217462 -k1,842:30569108,26782165:217480 -k1,842:31966991,26782165:0 -) -(1,843:7246811,27623653:24720180,513147,134348 -g1,842:7801900,27623653 -g1,842:9978350,27623653 -g1,842:13046745,27623653 -(1,842:13046745,27623653:0,452978,122846 -r1,921:15866994,27623653:2820249,575824,122846 -k1,842:13046745,27623653:-2820249 -) -(1,842:13046745,27623653:2820249,452978,122846 -k1,842:13046745,27623653:3277 -h1,842:15863717,27623653:0,411205,112570 -) -g1,842:16066223,27623653 -g1,842:18150923,27623653 -g1,842:20691098,27623653 -g1,842:21909412,27623653 -g1,842:24121907,27623653 -g1,842:24980428,27623653 -g1,842:25535517,27623653 -g1,842:27712623,27623653 -g1,842:28594737,27623653 -k1,843:31966991,27623653:2205058 -g1,843:31966991,27623653 -) -v1,845:7246811,28693353:0,393216,0 -(1,859:7246811,32428136:24720180,4127999,196608 -g1,859:7246811,32428136 -g1,859:7246811,32428136 -g1,859:7050203,32428136 -(1,859:7050203,32428136:0,4127999,196608 -r1,921:32163599,32428136:25113396,4324607,196608 -k1,859:7050203,32428136:-25113396 -) -(1,859:7050203,32428136:25113396,4127999,196608 -[1,859:7246811,32428136:24720180,3931391,0 -(1,847:7246811,28900971:24720180,404226,76021 -(1,846:7246811,28900971:0,0,0 -g1,846:7246811,28900971 -g1,846:7246811,28900971 -g1,846:6919131,28900971 -(1,846:6919131,28900971:0,0,0 -) -g1,846:7246811,28900971 -) -g1,847:7879103,28900971 -g1,847:8827541,28900971 -k1,847:8827541,28900971:0 -h1,847:11988999,28900971:0,0,0 -k1,847:31966991,28900971:19977992 -g1,847:31966991,28900971 -) -(1,848:7246811,29567149:24720180,277873,0 -h1,848:7246811,29567149:0,0,0 -h1,848:7562957,29567149:0,0,0 -k1,848:31966991,29567149:24404034 -g1,848:31966991,29567149 -) -(1,852:7246811,30298863:24720180,404226,76021 -(1,850:7246811,30298863:0,0,0 -g1,850:7246811,30298863 -g1,850:7246811,30298863 -g1,850:6919131,30298863 -(1,850:6919131,30298863:0,0,0 -) -g1,850:7246811,30298863 -) -g1,852:8195248,30298863 -h1,852:11356705,30298863:0,0,0 -k1,852:31966991,30298863:20610286 -g1,852:31966991,30298863 -) -(1,854:7246811,31620401:24720180,404226,107478 -(1,853:7246811,31620401:0,0,0 -g1,853:7246811,31620401 -g1,853:7246811,31620401 -g1,853:6919131,31620401 -(1,853:6919131,31620401:0,0,0 -) -g1,853:7246811,31620401 -) -k1,854:7246811,31620401:0 -h1,854:10092122,31620401:0,0,0 -k1,854:31966990,31620401:21874868 -g1,854:31966990,31620401 -) -(1,858:7246811,32352115:24720180,404226,76021 -(1,856:7246811,32352115:0,0,0 -g1,856:7246811,32352115 -g1,856:7246811,32352115 -g1,856:6919131,32352115 -(1,856:6919131,32352115:0,0,0 -) -g1,856:7246811,32352115 -) -g1,858:8195248,32352115 -g1,858:9459831,32352115 -h1,858:9775977,32352115:0,0,0 -k1,858:31966991,32352115:22191014 -g1,858:31966991,32352115 -) -] -) -g1,859:31966991,32428136 -g1,859:7246811,32428136 -g1,859:7246811,32428136 -g1,859:31966991,32428136 -g1,859:31966991,32428136 -) -h1,859:7246811,32624744:0,0,0 -v1,863:7246811,34097965:0,393216,0 -(1,878:7246811,38498926:24720180,4794177,196608 -g1,878:7246811,38498926 -g1,878:7246811,38498926 -g1,878:7050203,38498926 -(1,878:7050203,38498926:0,4794177,196608 -r1,921:32163599,38498926:25113396,4990785,196608 -k1,878:7050203,38498926:-25113396 -) -(1,878:7050203,38498926:25113396,4794177,196608 -[1,878:7246811,38498926:24720180,4597569,0 -(1,865:7246811,34305583:24720180,404226,76021 -(1,864:7246811,34305583:0,0,0 -g1,864:7246811,34305583 -g1,864:7246811,34305583 -g1,864:6919131,34305583 -(1,864:6919131,34305583:0,0,0 -) -g1,864:7246811,34305583 -) -g1,865:8195248,34305583 -g1,865:9143686,34305583 -k1,865:9143686,34305583:0 -h1,865:11988997,34305583:0,0,0 -k1,865:31966991,34305583:19977994 -g1,865:31966991,34305583 -) -(1,866:7246811,34971761:24720180,388497,0 -h1,866:7246811,34971761:0,0,0 -h1,866:7879102,34971761:0,0,0 -k1,866:31966990,34971761:24087888 -g1,866:31966990,34971761 -) -(1,870:7246811,35703475:24720180,404226,76021 -(1,868:7246811,35703475:0,0,0 -g1,868:7246811,35703475 -g1,868:7246811,35703475 -g1,868:6919131,35703475 -(1,868:6919131,35703475:0,0,0 -) -g1,868:7246811,35703475 -) -g1,870:8195248,35703475 -h1,870:11356705,35703475:0,0,0 -k1,870:31966991,35703475:20610286 -g1,870:31966991,35703475 -) -(1,872:7246811,37025013:24720180,404226,107478 -(1,871:7246811,37025013:0,0,0 -g1,871:7246811,37025013 -g1,871:7246811,37025013 -g1,871:6919131,37025013 -(1,871:6919131,37025013:0,0,0 -) -g1,871:7246811,37025013 -) -g1,872:8195248,37025013 -g1,872:9143686,37025013 -g1,872:13885872,37025013 -g1,872:14518164,37025013 -h1,872:15150456,37025013:0,0,0 -k1,872:31966992,37025013:16816536 -g1,872:31966992,37025013 -) -(1,873:7246811,37691191:24720180,388497,0 -h1,873:7246811,37691191:0,0,0 -h1,873:7879102,37691191:0,0,0 -k1,873:31966990,37691191:24087888 -g1,873:31966990,37691191 -) -(1,877:7246811,38422905:24720180,404226,76021 -(1,875:7246811,38422905:0,0,0 -g1,875:7246811,38422905 -g1,875:7246811,38422905 -g1,875:6919131,38422905 -(1,875:6919131,38422905:0,0,0 -) -g1,875:7246811,38422905 -) -g1,877:8195248,38422905 -h1,877:11356705,38422905:0,0,0 -k1,877:31966991,38422905:20610286 -g1,877:31966991,38422905 -) -] -) -g1,878:31966991,38498926 -g1,878:7246811,38498926 -g1,878:7246811,38498926 -g1,878:31966991,38498926 -g1,878:31966991,38498926 -) -h1,878:7246811,38695534:0,0,0 -(1,882:7246811,39940544:24720180,513147,134348 -h1,881:7246811,39940544:983040,0,0 -k1,881:10894544,39940544:255590 -k1,881:12341580,39940544:255591 -k1,881:13920997,39940544:255590 -k1,881:14835880,39940544:255591 -k1,881:17104736,39940544:255590 -k1,881:18954163,39940544:255591 -k1,881:21432734,39940544:255590 -k1,881:22304363,39940544:255591 -k1,881:24161653,39940544:255590 -k1,881:26288297,39940544:255591 -k1,881:27230049,39940544:255590 -k1,881:31966991,39940544:0 -) -(1,882:7246811,40782032:24720180,505283,126483 -g1,881:8826228,40782032 -g1,881:10129739,40782032 -g1,881:11076734,40782032 -g1,881:15508278,40782032 -g1,881:16393669,40782032 -g1,881:18668423,40782032 -k1,882:31966991,40782032:11727015 -g1,882:31966991,40782032 -) -v1,884:7246811,41851732:0,393216,0 -(1,897:7246811,44920337:24720180,3461821,196608 -g1,897:7246811,44920337 -g1,897:7246811,44920337 -g1,897:7050203,44920337 -(1,897:7050203,44920337:0,3461821,196608 -r1,921:32163599,44920337:25113396,3658429,196608 -k1,897:7050203,44920337:-25113396 -) -(1,897:7050203,44920337:25113396,3461821,196608 -[1,897:7246811,44920337:24720180,3265213,0 -(1,886:7246811,42059350:24720180,404226,107478 -(1,885:7246811,42059350:0,0,0 -g1,885:7246811,42059350 -g1,885:7246811,42059350 -g1,885:6919131,42059350 -(1,885:6919131,42059350:0,0,0 -) -g1,885:7246811,42059350 -) -k1,886:7246811,42059350:0 -g1,886:11040560,42059350 -g1,886:14834310,42059350 -h1,886:15782747,42059350:0,0,0 -k1,886:31966991,42059350:16184244 -g1,886:31966991,42059350 -) -(1,890:7246811,42791064:24720180,404226,76021 -(1,888:7246811,42791064:0,0,0 -g1,888:7246811,42791064 -g1,888:7246811,42791064 -g1,888:6919131,42791064 -(1,888:6919131,42791064:0,0,0 -) -g1,888:7246811,42791064 -) -g1,890:8195248,42791064 -g1,890:9459831,42791064 -h1,890:9775977,42791064:0,0,0 -k1,890:31966991,42791064:22191014 -g1,890:31966991,42791064 -) -(1,892:7246811,44112602:24720180,404226,107478 -(1,891:7246811,44112602:0,0,0 -g1,891:7246811,44112602 -g1,891:7246811,44112602 -g1,891:6919131,44112602 -(1,891:6919131,44112602:0,0,0 -) -g1,891:7246811,44112602 -) -k1,892:7246811,44112602:0 -g1,892:11040560,44112602 -h1,892:11988997,44112602:0,0,0 -k1,892:31966991,44112602:19977994 -g1,892:31966991,44112602 -) -(1,896:7246811,44844316:24720180,404226,76021 -(1,894:7246811,44844316:0,0,0 -g1,894:7246811,44844316 -g1,894:7246811,44844316 -g1,894:6919131,44844316 -(1,894:6919131,44844316:0,0,0 -) -g1,894:7246811,44844316 -) -g1,896:8195248,44844316 -g1,896:9459831,44844316 -h1,896:9775977,44844316:0,0,0 -k1,896:31966991,44844316:22191014 -g1,896:31966991,44844316 -) -] -) -g1,897:31966991,44920337 -g1,897:7246811,44920337 -g1,897:7246811,44920337 -g1,897:31966991,44920337 -g1,897:31966991,44920337 -) -h1,897:7246811,45116945:0,0,0 -] -) -] -r1,921:32583029,45706769:26214,24883753,0 -) -] -) -) -g1,921:32583029,45116945 -) -] -(1,921:32583029,45706769:0,0,0 -g1,921:32583029,45706769 -) -) -] -(1,921:6630773,47279633:25952256,0,0 -h1,921:6630773,47279633:25952256,0,0 -) -] -(1,921:4262630,4025873:0,0,0 -[1,921:-473656,4025873:0,0,0 -(1,921:-473656,-710413:0,0,0 -(1,921:-473656,-710413:0,0,0 -g1,921:-473656,-710413 -) -g1,921:-473656,-710413 -) -] -) -] -!21276 -}37 -Input:279:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:280:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:281:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:282:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:283:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:284:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:285:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:286:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:287:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:288:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!921 -{38 -[1,988:4262630,47279633:28320399,43253760,0 -(1,988:4262630,4025873:0,0,0 -[1,988:-473656,4025873:0,0,0 -(1,988:-473656,-710413:0,0,0 -(1,988:-473656,-644877:0,0,0 -k1,988:-473656,-644877:-65536 -) -(1,988:-473656,4736287:0,0,0 -k1,988:-473656,4736287:5209943 -) -g1,988:-473656,-710413 -) -] -) -[1,988:6630773,47279633:25952256,43253760,0 -[1,988:6630773,4812305:25952256,786432,0 -(1,988:6630773,4812305:25952256,505283,11795 -(1,988:6630773,4812305:25952256,505283,11795 -g1,988:3078558,4812305 -[1,988:3078558,4812305:0,0,0 -(1,988:3078558,2439708:0,1703936,0 -k1,988:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,988:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,988:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,988:3078558,4812305:0,0,0 -(1,988:3078558,2439708:0,1703936,0 -g1,988:29030814,2439708 -g1,988:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,988:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,988:37855564,2439708:1179648,16384,0 -) -) -k1,988:3078556,2439708:-34777008 -) -] -[1,988:3078558,4812305:0,0,0 -(1,988:3078558,49800853:0,16384,2228224 -k1,988:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,988:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,988:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,988:3078558,4812305:0,0,0 -(1,988:3078558,49800853:0,16384,2228224 -g1,988:29030814,49800853 -g1,988:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,988:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,988:37855564,49800853:1179648,16384,0 -) -) -k1,988:3078556,49800853:-34777008 -) -] -g1,988:6630773,4812305 -g1,988:6630773,4812305 -g1,988:9516978,4812305 -g1,988:11710468,4812305 -g1,988:13120147,4812305 -g1,988:16560787,4812305 -k1,988:31786111,4812305:15225324 -) -) -] -[1,988:6630773,45706769:25952256,40108032,0 -(1,988:6630773,45706769:25952256,40108032,0 -(1,988:6630773,45706769:0,0,0 -g1,988:6630773,45706769 -) -[1,988:6630773,45706769:25952256,40108032,0 -v1,921:6630773,6254097:0,393216,0 -(1,921:6630773,16277742:25952256,10416861,616038 -g1,921:6630773,16277742 -(1,921:6630773,16277742:25952256,10416861,616038 -(1,921:6630773,16893780:25952256,11032899,0 -[1,921:6630773,16893780:25952256,11032899,0 -(1,921:6630773,16867566:25952256,11006685,0 -r1,988:6656987,16867566:26214,11006685,0 -[1,921:6656987,16867566:25899828,11006685,0 -(1,921:6656987,16277742:25899828,9827037,0 -[1,921:7246811,16277742:24720180,9827037,0 -(1,901:7246811,6963852:24720180,513147,126483 -h1,900:7246811,6963852:983040,0,0 -k1,900:10113891,6963852:188624 -k1,900:13501984,6963852:188625 -k1,900:15184174,6963852:188624 -k1,900:16058960,6963852:188624 -k1,900:17166400,6963852:188625 -k1,900:19332901,6963852:188624 -k1,900:22547323,6963852:188625 -k1,900:23927392,6963852:188624 -k1,900:27366602,6963852:188624 -k1,900:28687689,6963852:188625 -k1,900:30924313,6963852:188624 -k1,901:31966991,6963852:0 -) -(1,901:7246811,7805340:24720180,513147,134348 -k1,900:9277823,7805340:240568 -k1,900:11826568,7805340:240567 -k1,900:12726428,7805340:240568 -k1,900:14980261,7805340:240567 -k1,900:16640994,7805340:240568 -k1,900:17567723,7805340:240567 -k1,900:19348387,7805340:240568 -k1,900:21471148,7805340:240567 -k1,900:24712610,7805340:240568 -k1,900:26238993,7805340:240567 -k1,900:26835421,7805340:240568 -k1,900:29053865,7805340:240567 -k1,900:29953725,7805340:240568 -k1,900:31966991,7805340:0 -) -(1,901:7246811,8646828:24720180,505283,134348 -k1,900:9009125,8646828:168478 -k1,900:11444493,8646828:168478 -k1,900:13883794,8646828:168478 -k1,900:14408132,8646828:168478 -k1,900:17146932,8646828:168478 -k1,900:18413138,8646828:168478 -k1,900:19352318,8646828:168477 -k1,900:21127739,8646828:168478 -k1,900:24175214,8646828:168478 -k1,900:24971527,8646828:168478 -k1,900:26841975,8646828:168478 -k1,900:29139062,8646828:168478 -k1,900:30921036,8646828:168478 -k1,900:31966991,8646828:0 -) -(1,901:7246811,9488316:24720180,505283,126483 -g1,900:8987447,9488316 -g1,900:12511973,9488316 -g1,900:13327240,9488316 -k1,901:31966991,9488316:18051238 -g1,901:31966991,9488316 -) -v1,903:7246811,10678782:0,393216,0 -(1,916:7246811,13747387:24720180,3461821,196608 -g1,916:7246811,13747387 -g1,916:7246811,13747387 -g1,916:7050203,13747387 -(1,916:7050203,13747387:0,3461821,196608 -r1,988:32163599,13747387:25113396,3658429,196608 -k1,916:7050203,13747387:-25113396 -) -(1,916:7050203,13747387:25113396,3461821,196608 -[1,916:7246811,13747387:24720180,3265213,0 -(1,905:7246811,10886400:24720180,404226,107478 -(1,904:7246811,10886400:0,0,0 -g1,904:7246811,10886400 -g1,904:7246811,10886400 -g1,904:6919131,10886400 -(1,904:6919131,10886400:0,0,0 -) -g1,904:7246811,10886400 -) -k1,905:7246811,10886400:0 -k1,905:7246811,10886400:0 -h1,905:11988997,10886400:0,0,0 -k1,905:31966991,10886400:19977994 -g1,905:31966991,10886400 -) -(1,909:7246811,11618114:24720180,404226,76021 -(1,907:7246811,11618114:0,0,0 -g1,907:7246811,11618114 -g1,907:7246811,11618114 -g1,907:6919131,11618114 -(1,907:6919131,11618114:0,0,0 -) -g1,907:7246811,11618114 -) -g1,909:8195248,11618114 -h1,909:11356705,11618114:0,0,0 -k1,909:31966991,11618114:20610286 -g1,909:31966991,11618114 -) -(1,911:7246811,12939652:24720180,404226,76021 -(1,910:7246811,12939652:0,0,0 -g1,910:7246811,12939652 -g1,910:7246811,12939652 -g1,910:6919131,12939652 -(1,910:6919131,12939652:0,0,0 -) -g1,910:7246811,12939652 -) -g1,911:7879103,12939652 -g1,911:8511395,12939652 -k1,911:8511395,12939652:0 -h1,911:11672853,12939652:0,0,0 -k1,911:31966991,12939652:20294138 -g1,911:31966991,12939652 -) -(1,915:7246811,13671366:24720180,404226,76021 -(1,913:7246811,13671366:0,0,0 -g1,913:7246811,13671366 -g1,913:7246811,13671366 -g1,913:6919131,13671366 -(1,913:6919131,13671366:0,0,0 -) -g1,913:7246811,13671366 -) -g1,915:8195248,13671366 -h1,915:11356705,13671366:0,0,0 -k1,915:31966991,13671366:20610286 -g1,915:31966991,13671366 -) -] -) -g1,916:31966991,13747387 -g1,916:7246811,13747387 -g1,916:7246811,13747387 -g1,916:31966991,13747387 -g1,916:31966991,13747387 -) -h1,916:7246811,13943995:0,0,0 -(1,920:7246811,15309771:24720180,513147,134348 -h1,919:7246811,15309771:983040,0,0 -k1,919:9949113,15309771:228973 -k1,919:11876123,15309771:228972 -k1,919:12764388,15309771:228973 -k1,919:15006627,15309771:228973 -k1,919:16829435,15309771:228972 -k1,919:19366586,15309771:228973 -k1,919:20410827,15309771:228973 -k1,919:22115015,15309771:228973 -k1,919:22995415,15309771:228972 -k1,919:25360862,15309771:228973 -k1,919:26241263,15309771:228973 -k1,919:26826095,15309771:228972 -k1,919:28610237,15309771:228973 -k1,919:31966991,15309771:0 -) -(1,920:7246811,16151259:24720180,513147,126483 -g1,919:8393691,16151259 -g1,919:9612005,16151259 -g1,919:13059198,16151259 -(1,919:13059198,16151259:0,452978,115847 -r1,988:18693142,16151259:5633944,568825,115847 -k1,919:13059198,16151259:-5633944 -) -(1,919:13059198,16151259:5633944,452978,115847 -g1,919:13765899,16151259 -g1,919:14469323,16151259 -h1,919:18689865,16151259:0,411205,112570 -) -g1,919:18892371,16151259 -g1,919:19623097,16151259 -g1,919:20593029,16151259 -k1,920:31966991,16151259:9593349 -g1,920:31966991,16151259 -) -] -) -] -r1,988:32583029,16867566:26214,11006685,0 -) -] -) -) -g1,921:32583029,16277742 -) -h1,921:6630773,16893780:0,0,0 -(1,924:6630773,18049840:25952256,513147,126483 -h1,923:6630773,18049840:983040,0,0 -k1,923:8279639,18049840:195933 -k1,923:9007069,18049840:195933 -k1,923:11832962,18049840:195933 -k1,923:12680323,18049840:195933 -k1,923:15214581,18049840:195933 -k1,923:18252155,18049840:195933 -k1,923:20015709,18049840:195933 -k1,923:21230727,18049840:195933 -k1,923:24810939,18049840:195933 -k1,923:26400823,18049840:195933 -(1,923:26400823,18049840:0,452978,115847 -r1,988:27814224,18049840:1413401,568825,115847 -k1,923:26400823,18049840:-1413401 -) -(1,923:26400823,18049840:1413401,452978,115847 -k1,923:26400823,18049840:3277 -h1,923:27810947,18049840:0,411205,112570 -) -k1,923:28183827,18049840:195933 -k1,923:31169628,18049840:195933 -(1,923:31169628,18049840:0,452978,115847 -r1,988:32583029,18049840:1413401,568825,115847 -k1,923:31169628,18049840:-1413401 -) -(1,923:31169628,18049840:1413401,452978,115847 -k1,923:31169628,18049840:3277 -h1,923:32579752,18049840:0,411205,112570 -) -k1,923:32583029,18049840:0 -) -(1,924:6630773,18891328:25952256,513147,134348 -k1,923:9214156,18891328:242437 -k1,923:9812452,18891328:242436 -k1,923:11004504,18891328:242436 -k1,923:11906233,18891328:242437 -k1,923:12914786,18891328:242437 -k1,923:15447050,18891328:242436 -k1,923:17732244,18891328:242437 -k1,923:18590718,18891328:242436 -k1,923:19852240,18891328:242437 -k1,923:22438899,18891328:242436 -k1,923:26912340,18891328:242437 -k1,923:27837661,18891328:242436 -k1,923:28841626,18891328:242437 -k1,923:32227169,18891328:242436 -k1,924:32583029,18891328:0 -) -(1,924:6630773,19732816:25952256,505283,134348 -(1,923:6630773,19732816:0,414482,115847 -r1,988:9099310,19732816:2468537,530329,115847 -k1,923:6630773,19732816:-2468537 -) -(1,923:6630773,19732816:2468537,414482,115847 -k1,923:6630773,19732816:3277 -h1,923:9096033,19732816:0,411205,112570 -) -k1,923:9273911,19732816:174601 -k1,923:12694510,19732816:174601 -k1,923:14244713,19732816:174602 -k1,923:15438399,19732816:174601 -k1,923:17902828,19732816:174601 -k1,923:19471380,19732816:174601 -k1,923:21714297,19732816:174601 -k1,923:24860300,19732816:174601 -k1,923:26053987,19732816:174602 -(1,923:26053987,19732816:0,414482,115847 -r1,988:28522524,19732816:2468537,530329,115847 -k1,923:26053987,19732816:-2468537 -) -(1,923:26053987,19732816:2468537,414482,115847 -k1,923:26053987,19732816:3277 -h1,923:28519247,19732816:0,411205,112570 -) -k1,923:28870795,19732816:174601 -k1,923:30242083,19732816:174601 -k1,923:32583029,19732816:0 -) -(1,924:6630773,20574304:25952256,505283,134348 -k1,923:7322178,20574304:159908 -k1,923:9176847,20574304:159908 -k1,923:10022916,20574304:159907 -k1,923:10538684,20574304:159908 -k1,923:12972691,20574304:159908 -k1,923:16746254,20574304:159908 -k1,923:18300113,20574304:159908 -h1,923:18300113,20574304:0,0,0 -k1,923:19250385,20574304:159908 -k1,923:22426259,20574304:159907 -k1,923:25973068,20574304:159908 -k1,923:29104378,20574304:159908 -k1,923:32583029,20574304:0 -) -(1,924:6630773,21415792:25952256,513147,134348 -h1,923:6630773,21415792:0,0,0 -k1,923:7319909,21415792:293954 -k1,923:8805308,21415792:293954 -h1,923:8805308,21415792:0,0,0 -k1,923:9668114,21415792:293954 -k1,923:13136632,21415792:293954 -k1,923:14449671,21415792:293954 -k1,923:17646215,21415792:293954 -k1,923:18599462,21415792:293955 -k1,923:19912501,21415792:293954 -k1,923:21944470,21415792:293954 -k1,923:23933840,21415792:293954 -k1,923:25419239,21415792:293954 -k1,923:27069788,21415792:293954 -k1,923:31541007,21415792:293954 -k1,923:32583029,21415792:0 -) -(1,924:6630773,22257280:25952256,513147,134348 -k1,923:9607855,22257280:141995 -h1,923:9607855,22257280:0,0,0 -k1,923:11725759,22257280:141994 -k1,923:14526550,22257280:141995 -k1,923:16044145,22257280:141994 -k1,923:17205225,22257280:141995 -k1,923:19220238,22257280:141994 -k1,923:22336912,22257280:141995 -k1,923:23216187,22257280:141995 -k1,923:25047699,22257280:141994 -h1,923:25047699,22257280:0,0,0 -k1,923:26770422,22257280:141995 -k1,923:29571212,22257280:141994 -k1,923:30845014,22257280:141995 -k1,923:32583029,22257280:0 -) -(1,924:6630773,23098768:25952256,513147,134348 -k1,923:9284092,23098768:174747 -k1,923:10852790,23098768:174747 -k1,923:11938487,23098768:174747 -k1,923:12741068,23098768:174746 -k1,923:15547086,23098768:174747 -h1,923:15547086,23098768:0,0,0 -k1,923:18883290,23098768:174747 -k1,923:21716833,23098768:174747 -k1,923:23358276,23098768:174747 -k1,923:24270303,23098768:174747 -k1,923:25636495,23098768:174747 -k1,923:26519685,23098768:174746 -k1,923:27766601,23098768:174747 -k1,923:30212171,23098768:174747 -k1,923:31485301,23098768:174747 -k1,923:32583029,23098768:0 -) -(1,924:6630773,23940256:25952256,513147,134348 -k1,923:8071963,23940256:169136 -k1,923:9432543,23940256:169135 -h1,923:9432543,23940256:0,0,0 -k1,923:12763135,23940256:169136 -k1,923:15591066,23940256:169135 -k1,923:16892009,23940256:169136 -k1,923:18799159,23940256:169135 -k1,923:21446867,23940256:169136 -k1,923:23009953,23940256:169135 -k1,923:23534949,23940256:169136 -k1,923:26827530,23940256:169135 -k1,923:28720888,23940256:169106 -k1,923:30765663,23940256:169135 -k1,923:31412556,23940256:169136 -k1,923:32583029,23940256:0 -) -(1,924:6630773,24781744:25952256,505283,134348 -k1,923:7861489,24781744:239156 -k1,923:9836038,24781744:239156 -k1,923:12673041,24781744:239156 -k1,923:13678312,24781744:239155 -k1,923:16207296,24781744:239156 -k1,923:17438012,24781744:239156 -k1,923:19438776,24781744:239156 -k1,923:20293970,24781744:239156 -k1,923:21552211,24781744:239156 -k1,923:25872293,24781744:239155 -k1,923:27823905,24781744:239156 -k1,923:29254506,24781744:239156 -k1,923:30512747,24781744:239156 -k1,923:32583029,24781744:0 -) -(1,924:6630773,25623232:25952256,513147,134348 -g1,923:7989989,25623232 -g1,923:8848510,25623232 -g1,923:10066824,25623232 -g1,923:12009966,25623232 -g1,923:13313477,25623232 -g1,923:14260472,25623232 -g1,923:15972927,25623232 -g1,923:16823584,25623232 -g1,923:18288969,25623232 -g1,923:18844058,25623232 -g1,923:20738048,25623232 -k1,924:32583029,25623232:9711784 -g1,924:32583029,25623232 -) -v1,926:6630773,26603982:0,393216,0 -(1,940:6630773,30345057:25952256,4134291,196608 -g1,940:6630773,30345057 -g1,940:6630773,30345057 -g1,940:6434165,30345057 -(1,940:6434165,30345057:0,4134291,196608 -r1,988:32779637,30345057:26345472,4330899,196608 -k1,940:6434165,30345057:-26345472 -) -(1,940:6434165,30345057:26345472,4134291,196608 -[1,940:6630773,30345057:25952256,3937683,0 -(1,928:6630773,26817892:25952256,410518,101187 -(1,927:6630773,26817892:0,0,0 -g1,927:6630773,26817892 -g1,927:6630773,26817892 -g1,927:6303093,26817892 -(1,927:6303093,26817892:0,0,0 -) -g1,927:6630773,26817892 -) -k1,928:6630773,26817892:0 -h1,928:12005250,26817892:0,0,0 -k1,928:32583030,26817892:20577780 -g1,928:32583030,26817892 -) -(1,932:6630773,27549606:25952256,404226,76021 -(1,930:6630773,27549606:0,0,0 -g1,930:6630773,27549606 -g1,930:6630773,27549606 -g1,930:6303093,27549606 -(1,930:6303093,27549606:0,0,0 -) -g1,930:6630773,27549606 -) -g1,932:7579210,27549606 -g1,932:8843793,27549606 -h1,932:9792230,27549606:0,0,0 -k1,932:32583030,27549606:22790800 -g1,932:32583030,27549606 -) -(1,934:6630773,28871144:25952256,404226,76021 -(1,933:6630773,28871144:0,0,0 -g1,933:6630773,28871144 -g1,933:6630773,28871144 -g1,933:6303093,28871144 -(1,933:6303093,28871144:0,0,0 -) -g1,933:6630773,28871144 -) -k1,934:6630773,28871144:0 -h1,934:8211501,28871144:0,0,0 -k1,934:32583029,28871144:24371528 -g1,934:32583029,28871144 -) -(1,935:6630773,29537322:25952256,410518,101187 -h1,935:6630773,29537322:0,0,0 -k1,935:6630773,29537322:0 -h1,935:12005250,29537322:0,0,0 -k1,935:32583030,29537322:20577780 -g1,935:32583030,29537322 -) -(1,939:6630773,30269036:25952256,404226,76021 -(1,937:6630773,30269036:0,0,0 -g1,937:6630773,30269036 -g1,937:6630773,30269036 -g1,937:6303093,30269036 -(1,937:6303093,30269036:0,0,0 -) -g1,937:6630773,30269036 -) -g1,939:7579210,30269036 -h1,939:11372958,30269036:0,0,0 -k1,939:32583030,30269036:21210072 -g1,939:32583030,30269036 -) -] -) -g1,940:32583029,30345057 -g1,940:6630773,30345057 -g1,940:6630773,30345057 -g1,940:32583029,30345057 -g1,940:32583029,30345057 -) -h1,940:6630773,30541665:0,0,0 -(1,944:6630773,31697725:25952256,513147,134348 -h1,943:6630773,31697725:983040,0,0 -k1,943:9595125,31697725:148925 -k1,943:10735610,31697725:148925 -k1,943:12576675,31697725:148925 -k1,943:14919745,31697725:148925 -k1,943:17079315,31697725:148925 -k1,943:20012209,31697725:148925 -k1,943:21108785,31697725:148925 -k1,943:24247462,31697725:148925 -(1,943:24247462,31697725:0,414482,115847 -r1,988:24957440,31697725:709978,530329,115847 -k1,943:24247462,31697725:-709978 -) -(1,943:24247462,31697725:709978,414482,115847 -k1,943:24247462,31697725:3277 -h1,943:24954163,31697725:0,411205,112570 -) -k1,943:25106365,31697725:148925 -k1,943:27983554,31697725:148925 -k1,943:29498905,31697725:148925 -k1,943:32583029,31697725:0 -) -(1,944:6630773,32539213:25952256,513147,134348 -k1,943:7317741,32539213:155471 -k1,943:8986438,32539213:155471 -k1,943:10089560,32539213:155471 -k1,943:12717049,32539213:155471 -k1,943:15056835,32539213:155471 -k1,943:19135946,32539213:155471 -k1,943:20395698,32539213:155470 -k1,943:21836985,32539213:155471 -k1,943:23527965,32539213:155471 -k1,943:24702521,32539213:155471 -k1,943:27833327,32539213:155471 -k1,943:29999443,32539213:155471 -(1,943:29999443,32539213:0,414482,115847 -r1,988:31061132,32539213:1061689,530329,115847 -k1,943:29999443,32539213:-1061689 -) -(1,943:29999443,32539213:1061689,414482,115847 -k1,943:29999443,32539213:3277 -h1,943:31057855,32539213:0,411205,112570 -) -k1,943:31216603,32539213:155471 -k1,943:32583029,32539213:0 -) -(1,944:6630773,33380701:25952256,513147,134348 -k1,943:7134889,33380701:148256 -k1,943:10242751,33380701:148256 -(1,943:10242751,33380701:0,459977,115847 -r1,988:11304440,33380701:1061689,575824,115847 -k1,943:10242751,33380701:-1061689 -) -(1,943:10242751,33380701:1061689,459977,115847 -k1,943:10242751,33380701:3277 -h1,943:11301163,33380701:0,411205,112570 -) -k1,943:11452696,33380701:148256 -k1,943:12792397,33380701:148256 -(1,943:12792397,33380701:0,459977,115847 -r1,988:14205798,33380701:1413401,575824,115847 -k1,943:12792397,33380701:-1413401 -) -(1,943:12792397,33380701:1413401,459977,115847 -k1,943:12792397,33380701:3277 -h1,943:14202521,33380701:0,411205,112570 -) -k1,943:14354054,33380701:148256 -k1,943:15449961,33380701:148256 -$1,943:15449961,33380701 -$1,943:16124982,33380701 -k1,943:16273238,33380701:148256 -k1,943:17612939,33380701:148256 -$1,943:17612939,33380701 -$1,943:18856157,33380701 -k1,943:19178083,33380701:148256 -k1,943:20144228,33380701:148256 -k1,943:21462957,33380701:148256 -k1,943:22743675,33380701:148256 -k1,943:23916914,33380701:148256 -k1,943:26107272,33380701:148256 -k1,943:30057271,33380701:148256 -k1,943:32583029,33380701:0 -) -(1,944:6630773,34222189:25952256,505283,134348 -k1,943:8502884,34222189:175384 -k1,943:10688913,34222189:175384 -k1,943:11679565,34222189:175384 -k1,943:12942847,34222189:175384 -k1,943:15248806,34222189:175384 -k1,943:17361434,34222189:175384 -k1,943:18219702,34222189:175383 -k1,943:21469380,34222189:175384 -k1,943:22330926,34222189:175384 -k1,943:23886498,34222189:175384 -k1,943:25053442,34222189:175384 -k1,943:29632190,34222189:175384 -k1,943:31521340,34222189:175384 -(1,943:31521340,34222189:0,459977,115847 -r1,988:32583029,34222189:1061689,575824,115847 -k1,943:31521340,34222189:-1061689 -) -(1,943:31521340,34222189:1061689,459977,115847 -k1,943:31521340,34222189:3277 -h1,943:32579752,34222189:0,411205,112570 -) -k1,943:32583029,34222189:0 -) -(1,944:6630773,35063677:25952256,513147,126483 -g1,943:8021447,35063677 -(1,943:8021447,35063677:0,459977,115847 -r1,988:9434848,35063677:1413401,575824,115847 -k1,943:8021447,35063677:-1413401 -) -(1,943:8021447,35063677:1413401,459977,115847 -k1,943:8021447,35063677:3277 -h1,943:9431571,35063677:0,411205,112570 -) -g1,943:9634077,35063677 -g1,943:10824866,35063677 -g1,943:12309911,35063677 -g1,943:14049236,35063677 -g1,943:17429583,35063677 -g1,943:19639457,35063677 -g1,943:20786337,35063677 -g1,943:22694090,35063677 -g1,943:24084764,35063677 -k1,944:32583029,35063677:5236538 -g1,944:32583029,35063677 -) -v1,946:6630773,36044427:0,393216,0 -(1,985:6630773,45510161:25952256,9858950,196608 -g1,985:6630773,45510161 -g1,985:6630773,45510161 -g1,985:6434165,45510161 -(1,985:6434165,45510161:0,9858950,196608 -r1,988:32779637,45510161:26345472,10055558,196608 -k1,985:6434165,45510161:-26345472 -) -(1,985:6434165,45510161:26345472,9858950,196608 -[1,985:6630773,45510161:25952256,9662342,0 -(1,948:6630773,36176023:25952256,328204,4718 -(1,947:6630773,36176023:0,0,0 -g1,947:6630773,36176023 -g1,947:6630773,36176023 -g1,947:6303093,36176023 -(1,947:6303093,36176023:0,0,0 -) -g1,947:6630773,36176023 -) -g1,948:7263065,36176023 -g1,948:8211503,36176023 -h1,948:8843794,36176023:0,0,0 -k1,948:32583030,36176023:23739236 -g1,948:32583030,36176023 -) -(1,949:6630773,36842201:25952256,284164,4718 -h1,949:6630773,36842201:0,0,0 -h1,949:6946919,36842201:0,0,0 -k1,949:32583029,36842201:25636110 -g1,949:32583029,36842201 -) -(1,953:6630773,37294623:25952256,404226,76021 -(1,951:6630773,37294623:0,0,0 -g1,951:6630773,37294623 -g1,951:6630773,37294623 -g1,951:6303093,37294623 -(1,951:6303093,37294623:0,0,0 -) -g1,951:6630773,37294623 -) -g1,953:7579210,37294623 -g1,953:8843793,37294623 -h1,953:9476084,37294623:0,0,0 -k1,953:32583028,37294623:23106944 -g1,953:32583028,37294623 -) -(1,955:6630773,38336869:25952256,404226,76021 -(1,954:6630773,38336869:0,0,0 -g1,954:6630773,38336869 -g1,954:6630773,38336869 -g1,954:6303093,38336869 -(1,954:6303093,38336869:0,0,0 -) -g1,954:6630773,38336869 -) -k1,955:6630773,38336869:0 -g1,955:7579211,38336869 -g1,955:8211503,38336869 -h1,955:8527649,38336869:0,0,0 -k1,955:32583029,38336869:24055380 -g1,955:32583029,38336869 -) -(1,959:6630773,38789291:25952256,410518,76021 -(1,957:6630773,38789291:0,0,0 -g1,957:6630773,38789291 -g1,957:6630773,38789291 -g1,957:6303093,38789291 -(1,957:6303093,38789291:0,0,0 -) -g1,957:6630773,38789291 -) -g1,959:7579210,38789291 -g1,959:8843793,38789291 -k1,959:8843793,38789291:0 -h1,959:10108376,38789291:0,0,0 -k1,959:32583028,38789291:22474652 -g1,959:32583028,38789291 -) -(1,961:6630773,39831537:25952256,404226,76021 -(1,960:6630773,39831537:0,0,0 -g1,960:6630773,39831537 -g1,960:6630773,39831537 -g1,960:6303093,39831537 -(1,960:6303093,39831537:0,0,0 -) -g1,960:6630773,39831537 -) -g1,961:7263065,39831537 -g1,961:7895357,39831537 -h1,961:8211503,39831537:0,0,0 -k1,961:32583029,39831537:24371526 -g1,961:32583029,39831537 -) -(1,965:6630773,40283958:25952256,410518,76021 -(1,963:6630773,40283958:0,0,0 -g1,963:6630773,40283958 -g1,963:6630773,40283958 -g1,963:6303093,40283958 -(1,963:6303093,40283958:0,0,0 -) -g1,963:6630773,40283958 -) -g1,965:7579210,40283958 -g1,965:8843793,40283958 -h1,965:9792230,40283958:0,0,0 -k1,965:32583030,40283958:22790800 -g1,965:32583030,40283958 -) -(1,967:6630773,41326204:25952256,410518,76021 -(1,966:6630773,41326204:0,0,0 -g1,966:6630773,41326204 -g1,966:6630773,41326204 -g1,966:6303093,41326204 -(1,966:6303093,41326204:0,0,0 -) -g1,966:6630773,41326204 -) -g1,967:7895356,41326204 -g1,967:8527648,41326204 -h1,967:9476085,41326204:0,0,0 -k1,967:32583029,41326204:23106944 -g1,967:32583029,41326204 -) -(1,971:6630773,41778626:25952256,404226,76021 -(1,969:6630773,41778626:0,0,0 -g1,969:6630773,41778626 -g1,969:6630773,41778626 -g1,969:6303093,41778626 -(1,969:6303093,41778626:0,0,0 -) -g1,969:6630773,41778626 -) -g1,971:7579210,41778626 -g1,971:8843793,41778626 -h1,971:9792230,41778626:0,0,0 -k1,971:32583030,41778626:22790800 -g1,971:32583030,41778626 -) -(1,973:6630773,42820872:25952256,410518,0 -(1,972:6630773,42820872:0,0,0 -g1,972:6630773,42820872 -g1,972:6630773,42820872 -g1,972:6303093,42820872 -(1,972:6303093,42820872:0,0,0 -) -g1,972:6630773,42820872 -) -g1,973:7895356,42820872 -g1,973:8527648,42820872 -h1,973:8843794,42820872:0,0,0 -k1,973:32583030,42820872:23739236 -g1,973:32583030,42820872 -) -(1,977:6630773,43273294:25952256,410518,76021 -(1,975:6630773,43273294:0,0,0 -g1,975:6630773,43273294 -g1,975:6630773,43273294 -g1,975:6303093,43273294 -(1,975:6303093,43273294:0,0,0 -) -g1,975:6630773,43273294 -) -g1,977:7579210,43273294 -g1,977:8843793,43273294 -h1,977:9792230,43273294:0,0,0 -k1,977:32583030,43273294:22790800 -g1,977:32583030,43273294 -) -(1,979:6630773,44315540:25952256,410518,6290 -(1,978:6630773,44315540:0,0,0 -g1,978:6630773,44315540 -g1,978:6630773,44315540 -g1,978:6303093,44315540 -(1,978:6303093,44315540:0,0,0 -) -g1,978:6630773,44315540 -) -g1,979:7263065,44315540 -g1,979:8211503,44315540 -k1,979:8211503,44315540:0 -h1,979:9476086,44315540:0,0,0 -k1,979:32583030,44315540:23106944 -g1,979:32583030,44315540 -) -(1,980:6630773,44981718:25952256,404226,6290 -h1,980:6630773,44981718:0,0,0 -g1,980:7263065,44981718 -g1,980:7895357,44981718 -k1,980:7895357,44981718:0 -h1,980:8527649,44981718:0,0,0 -k1,980:32583029,44981718:24055380 -g1,980:32583029,44981718 -) -(1,984:6630773,45434140:25952256,410518,76021 -(1,982:6630773,45434140:0,0,0 -g1,982:6630773,45434140 -g1,982:6630773,45434140 -g1,982:6303093,45434140 -(1,982:6303093,45434140:0,0,0 -) -g1,982:6630773,45434140 -) -g1,984:7579210,45434140 -g1,984:8843793,45434140 -h1,984:9792230,45434140:0,0,0 -k1,984:32583030,45434140:22790800 -g1,984:32583030,45434140 -) -] -) -g1,985:32583029,45510161 -g1,985:6630773,45510161 -g1,985:6630773,45510161 -g1,985:32583029,45510161 -g1,985:32583029,45510161 -) -h1,985:6630773,45706769:0,0,0 -] -(1,988:32583029,45706769:0,0,0 -g1,988:32583029,45706769 -) -) -] -(1,988:6630773,47279633:25952256,0,0 -h1,988:6630773,47279633:25952256,0,0 -) -] -(1,988:4262630,4025873:0,0,0 -[1,988:-473656,4025873:0,0,0 -(1,988:-473656,-710413:0,0,0 -(1,988:-473656,-710413:0,0,0 -g1,988:-473656,-710413 -) -g1,988:-473656,-710413 -) -] -) -] -!25454 -}38 -Input:289:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:290:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:291:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:292:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:293:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:294:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:295:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:296:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:297:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:298:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:299:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:300:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:301:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:302:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1285 -{39 -[1,1060:4262630,47279633:28320399,43253760,0 -(1,1060:4262630,4025873:0,0,0 -[1,1060:-473656,4025873:0,0,0 -(1,1060:-473656,-710413:0,0,0 -(1,1060:-473656,-644877:0,0,0 -k1,1060:-473656,-644877:-65536 -) -(1,1060:-473656,4736287:0,0,0 -k1,1060:-473656,4736287:5209943 -) -g1,1060:-473656,-710413 -) -] -) -[1,1060:6630773,47279633:25952256,43253760,0 -[1,1060:6630773,4812305:25952256,786432,0 -(1,1060:6630773,4812305:25952256,505283,134348 -(1,1060:6630773,4812305:25952256,505283,134348 -g1,1060:3078558,4812305 -[1,1060:3078558,4812305:0,0,0 -(1,1060:3078558,2439708:0,1703936,0 -k1,1060:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,1060:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,1060:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,1060:3078558,4812305:0,0,0 -(1,1060:3078558,2439708:0,1703936,0 -g1,1060:29030814,2439708 -g1,1060:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,1060:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,1060:37855564,2439708:1179648,16384,0 -) -) -k1,1060:3078556,2439708:-34777008 -) -] -[1,1060:3078558,4812305:0,0,0 -(1,1060:3078558,49800853:0,16384,2228224 -k1,1060:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,1060:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,1060:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,1060:3078558,4812305:0,0,0 -(1,1060:3078558,49800853:0,16384,2228224 -g1,1060:29030814,49800853 -g1,1060:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,1060:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,1060:37855564,49800853:1179648,16384,0 -) -) -k1,1060:3078556,49800853:-34777008 -) -] -g1,1060:6630773,4812305 -k1,1060:19515153,4812305:12087462 -g1,1060:20901894,4812305 -g1,1060:21550700,4812305 -g1,1060:24864855,4812305 -g1,1060:27600327,4812305 -g1,1060:29010006,4812305 -) -) -] -[1,1060:6630773,45706769:25952256,40108032,0 -(1,1060:6630773,45706769:25952256,40108032,0 -(1,1060:6630773,45706769:0,0,0 -g1,1060:6630773,45706769 -) -[1,1060:6630773,45706769:25952256,40108032,0 -(1,989:6630773,6254097:25952256,513147,126483 -h1,988:6630773,6254097:983040,0,0 -k1,988:8904908,6254097:147492 -k1,988:11836369,6254097:147492 -(1,988:12043463,6254097:0,414482,115847 -r1,1060:12753441,6254097:709978,530329,115847 -k1,988:12043463,6254097:-709978 -) -(1,988:12043463,6254097:709978,414482,115847 -k1,988:12043463,6254097:3277 -h1,988:12750164,6254097:0,411205,112570 -) -k1,988:13108027,6254097:147492 -k1,988:15266164,6254097:147492 -k1,988:16405216,6254097:147492 -k1,988:17906681,6254097:147491 -k1,988:21263471,6254097:147492 -k1,988:22027001,6254097:147492 -k1,988:23193578,6254097:147492 -k1,988:25895663,6254097:147492 -k1,988:26702447,6254097:147492 -k1,988:31019995,6254097:147492 -k1,988:32583029,6254097:0 -) -(1,989:6630773,7095585:25952256,513147,134348 -k1,988:7502759,7095585:185824 -k1,988:10993565,7095585:185825 -k1,988:12871529,7095585:185824 -k1,988:17129105,7095585:185824 -k1,988:18306489,7095585:185824 -k1,988:20964332,7095585:185825 -k1,988:22717777,7095585:185824 -k1,988:23674304,7095585:185824 -k1,988:26961947,7095585:185824 -k1,988:30073299,7095585:185825 -k1,988:31648486,7095585:185824 -k1,988:32583029,7095585:0 -) -(1,989:6630773,7937073:25952256,513147,134348 -k1,988:8052703,7937073:239005 -k1,988:8943135,7937073:239004 -k1,988:12776790,7937073:239005 -k1,988:15129986,7937073:239005 -k1,988:16388075,7937073:239004 -k1,988:18736029,7937073:239005 -k1,988:19634326,7937073:239005 -k1,988:20644034,7937073:239005 -k1,988:24665776,7937073:239004 -k1,988:25374674,7937073:239005 -k1,988:26145176,7937073:239005 -k1,988:29593478,7937073:239004 -k1,988:30483911,7937073:239005 -k1,989:32583029,7937073:0 -) -(1,989:6630773,8778561:25952256,513147,134348 -k1,988:8669961,8778561:260541 -k1,988:10260884,8778561:260542 -k1,988:11172854,8778561:260542 -k1,988:14255375,8778561:260541 -(1,988:14255375,8778561:0,414482,115847 -r1,1060:14965353,8778561:709978,530329,115847 -k1,988:14255375,8778561:-709978 -) -(1,988:14255375,8778561:709978,414482,115847 -k1,988:14255375,8778561:3277 -h1,988:14962076,8778561:0,411205,112570 -) -k1,988:15903537,8778561:260542 -k1,988:17721869,8778561:260541 -k1,988:18973970,8778561:260541 -k1,988:21359189,8778561:260542 -k1,988:25683618,8778561:260542 -k1,988:26891810,8778561:260541 -k1,988:30506485,8778561:260542 -k1,988:32051532,8778561:260541 -k1,988:32583029,8778561:0 -) -(1,989:6630773,9620049:25952256,505283,102891 -g1,988:10617328,9620049 -g1,988:11432595,9620049 -g1,988:13333794,9620049 -g1,988:15661632,9620049 -k1,989:32583029,9620049:13832686 -g1,989:32583029,9620049 -) -v1,991:6630773,10810515:0,393216,0 -(1,1011:6630773,16522528:25952256,6105229,196608 -g1,1011:6630773,16522528 -g1,1011:6630773,16522528 -g1,1011:6434165,16522528 -(1,1011:6434165,16522528:0,6105229,196608 -r1,1060:32779637,16522528:26345472,6301837,196608 -k1,1011:6434165,16522528:-26345472 -) -(1,1011:6434165,16522528:26345472,6105229,196608 -[1,1011:6630773,16522528:25952256,5908621,0 -(1,993:6630773,10942111:25952256,328204,0 -(1,992:6630773,10942111:0,0,0 -g1,992:6630773,10942111 -g1,992:6630773,10942111 -g1,992:6303093,10942111 -(1,992:6303093,10942111:0,0,0 -) -g1,992:6630773,10942111 -) -g1,993:7263065,10942111 -g1,993:8211503,10942111 -h1,993:8843794,10942111:0,0,0 -k1,993:32583030,10942111:23739236 -g1,993:32583030,10942111 -) -(1,994:6630773,11608289:25952256,328204,0 -h1,994:6630773,11608289:0,0,0 -h1,994:6946919,11608289:0,0,0 -k1,994:32583029,11608289:25636110 -g1,994:32583029,11608289 -) -(1,998:6630773,12340003:25952256,404226,76021 -(1,996:6630773,12340003:0,0,0 -g1,996:6630773,12340003 -g1,996:6630773,12340003 -g1,996:6303093,12340003 -(1,996:6303093,12340003:0,0,0 -) -g1,996:6630773,12340003 -) -g1,998:7579210,12340003 -g1,998:8843793,12340003 -h1,998:9476084,12340003:0,0,0 -k1,998:32583028,12340003:23106944 -g1,998:32583028,12340003 -) -(1,1000:6630773,13661541:25952256,388497,0 -(1,999:6630773,13661541:0,0,0 -g1,999:6630773,13661541 -g1,999:6630773,13661541 -g1,999:6303093,13661541 -(1,999:6303093,13661541:0,0,0 -) -g1,999:6630773,13661541 -) -g1,1000:7263065,13661541 -g1,1000:7895357,13661541 -h1,1000:8211503,13661541:0,0,0 -k1,1000:32583029,13661541:24371526 -g1,1000:32583029,13661541 -) -(1,1004:6630773,14393255:25952256,404226,76021 -(1,1002:6630773,14393255:0,0,0 -g1,1002:6630773,14393255 -g1,1002:6630773,14393255 -g1,1002:6303093,14393255 -(1,1002:6303093,14393255:0,0,0 -) -g1,1002:6630773,14393255 -) -g1,1004:7579210,14393255 -g1,1004:8843793,14393255 -h1,1004:9476084,14393255:0,0,0 -k1,1004:32583028,14393255:23106944 -g1,1004:32583028,14393255 -) -(1,1006:6630773,15714793:25952256,410518,0 -(1,1005:6630773,15714793:0,0,0 -g1,1005:6630773,15714793 -g1,1005:6630773,15714793 -g1,1005:6303093,15714793 -(1,1005:6303093,15714793:0,0,0 -) -g1,1005:6630773,15714793 -) -g1,1006:7263065,15714793 -g1,1006:7895357,15714793 -h1,1006:8843794,15714793:0,0,0 -k1,1006:32583030,15714793:23739236 -g1,1006:32583030,15714793 -) -(1,1010:6630773,16446507:25952256,404226,76021 -(1,1008:6630773,16446507:0,0,0 -g1,1008:6630773,16446507 -g1,1008:6630773,16446507 -g1,1008:6303093,16446507 -(1,1008:6303093,16446507:0,0,0 -) -g1,1008:6630773,16446507 -) -g1,1010:7579210,16446507 -g1,1010:8843793,16446507 -h1,1010:9476084,16446507:0,0,0 -k1,1010:32583028,16446507:23106944 -g1,1010:32583028,16446507 -) -] -) -g1,1011:32583029,16522528 -g1,1011:6630773,16522528 -g1,1011:6630773,16522528 -g1,1011:32583029,16522528 -g1,1011:32583029,16522528 -) -h1,1011:6630773,16719136:0,0,0 -v1,1015:6630773,18609200:0,393216,0 -(1,1029:6630773,29580242:25952256,11364258,616038 -g1,1029:6630773,29580242 -(1,1029:6630773,29580242:25952256,11364258,616038 -(1,1029:6630773,30196280:25952256,11980296,0 -[1,1029:6630773,30196280:25952256,11980296,0 -(1,1029:6630773,30170066:25952256,11927868,0 -r1,1060:6656987,30170066:26214,11927868,0 -[1,1029:6656987,30170066:25899828,11927868,0 -(1,1029:6656987,29580242:25899828,10748220,0 -[1,1029:7246811,29580242:24720180,10748220,0 -(1,1016:7246811,19919396:24720180,1087374,134348 -k1,1015:8691501,19919396:234987 -k1,1015:10784065,19919396:241172 -k1,1015:11684529,19919396:241172 -k1,1015:13066026,19919396:241171 -k1,1015:15766109,19919396:241172 -k1,1015:16684268,19919396:241172 -k1,1015:19011450,19919396:241171 -k1,1015:20884468,19919396:241172 -k1,1015:22345920,19919396:241172 -k1,1015:24389331,19919396:241171 -(1,1015:24389331,19919396:0,414482,115847 -r1,1060:25099309,19919396:709978,530329,115847 -k1,1015:24389331,19919396:-709978 -) -(1,1015:24389331,19919396:709978,414482,115847 -k1,1015:24389331,19919396:3277 -h1,1015:25096032,19919396:0,411205,112570 -) -k1,1015:26008662,19919396:234988 -k1,1015:27903021,19919396:234987 -k1,1015:29518853,19919396:234988 -k1,1015:30924313,19919396:234987 -k1,1016:31966991,19919396:0 -) -(1,1016:7246811,20760884:24720180,513147,134348 -k1,1015:10348236,20760884:266338 -k1,1015:11633660,20760884:266339 -k1,1015:13408637,20760884:266338 -k1,1015:15874363,20760884:266338 -k1,1015:17159787,20760884:266339 -k1,1015:20188468,20760884:266338 -k1,1015:23214527,20760884:266338 -k1,1015:24140157,20760884:266338 -k1,1015:27432293,20760884:266339 -k1,1015:28890076,20760884:266338 -k1,1015:31966991,20760884:0 -) -(1,1016:7246811,21602372:24720180,505283,126483 -k1,1015:8888594,21602372:247832 -k1,1015:11460988,21602372:247832 -k1,1015:12360247,21602372:247831 -(1,1015:12360247,21602372:0,414482,115847 -r1,1060:13070225,21602372:709978,530329,115847 -k1,1015:12360247,21602372:-709978 -) -(1,1015:12360247,21602372:709978,414482,115847 -k1,1015:12360247,21602372:3277 -h1,1015:13066948,21602372:0,411205,112570 -) -k1,1015:13318057,21602372:247832 -k1,1015:14757334,21602372:247832 -(1,1015:14757334,21602372:0,452978,115847 -r1,1060:17929294,21602372:3171960,568825,115847 -k1,1015:14757334,21602372:-3171960 -) -(1,1015:14757334,21602372:3171960,452978,115847 -k1,1015:14757334,21602372:3277 -h1,1015:17926017,21602372:0,411205,112570 -) -k1,1015:18177126,21602372:247832 -k1,1015:19107842,21602372:247831 -k1,1015:20144072,21602372:247832 -k1,1015:23696885,21602372:247832 -(1,1015:23696885,21602372:0,452978,115847 -r1,1060:27220557,21602372:3523672,568825,115847 -k1,1015:23696885,21602372:-3523672 -) -(1,1015:23696885,21602372:3523672,452978,115847 -k1,1015:23696885,21602372:3277 -h1,1015:27217280,21602372:0,411205,112570 -) -k1,1015:27642059,21602372:247832 -k1,1015:29523703,21602372:247831 -k1,1015:30586803,21602372:247832 -k1,1015:31966991,21602372:0 -) -(1,1016:7246811,22443860:24720180,513147,134348 -g1,1015:10814591,22443860 -g1,1015:12395974,22443860 -(1,1015:12395974,22443860:0,414482,115847 -r1,1060:13105952,22443860:709978,530329,115847 -k1,1015:12395974,22443860:-709978 -) -(1,1015:12395974,22443860:709978,414482,115847 -k1,1015:12395974,22443860:3277 -h1,1015:13102675,22443860:0,411205,112570 -) -g1,1015:13305181,22443860 -g1,1015:13834711,22443860 -g1,1015:15025500,22443860 -g1,1015:16291000,22443860 -g1,1015:19105116,22443860 -g1,1015:20993863,22443860 -g1,1015:23501270,22443860 -g1,1015:24359791,22443860 -g1,1015:26572286,22443860 -g1,1015:28191680,22443860 -k1,1016:31966991,22443860:2456727 -g1,1016:31966991,22443860 -) -v1,1018:7246811,23634326:0,393216,0 -(1,1023:7246811,24517558:24720180,1276448,196608 -g1,1023:7246811,24517558 -g1,1023:7246811,24517558 -g1,1023:7050203,24517558 -(1,1023:7050203,24517558:0,1276448,196608 -r1,1060:32163599,24517558:25113396,1473056,196608 -k1,1023:7050203,24517558:-25113396 -) -(1,1023:7050203,24517558:25113396,1276448,196608 -[1,1023:7246811,24517558:24720180,1079840,0 -(1,1020:7246811,23841944:24720180,404226,76021 -(1,1019:7246811,23841944:0,0,0 -g1,1019:7246811,23841944 -g1,1019:7246811,23841944 -g1,1019:6919131,23841944 -(1,1019:6919131,23841944:0,0,0 -) -g1,1019:7246811,23841944 -) -g1,1020:8511394,23841944 -g1,1020:9143686,23841944 -k1,1020:9143686,23841944:0 -h1,1020:11988997,23841944:0,0,0 -k1,1020:31966991,23841944:19977994 -g1,1020:31966991,23841944 -) -(1,1021:7246811,24508122:24720180,388497,9436 -h1,1021:7246811,24508122:0,0,0 -g1,1021:8511394,24508122 -g1,1021:9143686,24508122 -h1,1021:9775977,24508122:0,0,0 -k1,1021:31966991,24508122:22191014 -g1,1021:31966991,24508122 -) -] -) -g1,1023:31966991,24517558 -g1,1023:7246811,24517558 -g1,1023:7246811,24517558 -g1,1023:31966991,24517558 -g1,1023:31966991,24517558 -) -h1,1023:7246811,24714166:0,0,0 -(1,1028:7246811,26079942:24720180,505283,134348 -h1,1026:7246811,26079942:983040,0,0 -k1,1026:10267723,26079942:176650 -k1,1027:12915081,26079942:176651 -(1,1027:12915081,26079942:0,414482,115847 -r1,1060:13625059,26079942:709978,530329,115847 -k1,1027:12915081,26079942:-709978 -) -(1,1027:12915081,26079942:709978,414482,115847 -k1,1027:12915081,26079942:3277 -h1,1027:13621782,26079942:0,411205,112570 -) -k1,1027:13801709,26079942:176650 -k1,1027:14509857,26079942:176651 -k1,1027:16199733,26079942:176650 -k1,1027:17027812,26079942:176651 -k1,1027:19086001,26079942:176650 -k1,1027:19618511,26079942:176650 -k1,1027:21475505,26079942:176651 -k1,1027:22936661,26079942:176650 -k1,1027:24620640,26079942:176651 -k1,1027:26284302,26079942:176650 -k1,1027:27143838,26079942:176651 -k1,1027:28827816,26079942:176650 -k1,1027:31966991,26079942:0 -) -(1,1028:7246811,26921430:24720180,513147,134348 -k1,1027:8581238,26921430:262258 -k1,1027:9374994,26921430:262259 -k1,1027:13250907,26921430:262258 -k1,1027:16042855,26921430:262258 -k1,1027:16964406,26921430:262259 -k1,1027:18918804,26921430:262258 -k1,1027:22018771,26921430:262258 -k1,1027:22768555,26921430:262196 -k1,1027:25008690,26921430:262258 -k1,1027:25930240,26921430:262258 -k1,1027:28205765,26921430:262259 -k1,1027:30061859,26921430:262258 -k1,1028:31966991,26921430:0 -) -(1,1028:7246811,27762918:24720180,513147,126483 -k1,1027:9178515,27762918:252016 -k1,1027:10239900,27762918:252015 -k1,1027:12676231,27762918:252016 -k1,1027:14000416,27762918:252016 -k1,1027:16262420,27762918:252015 -k1,1027:17533521,27762918:252016 -k1,1027:20064223,27762918:252015 -k1,1027:24514475,27762918:252016 -k1,1027:25394326,27762918:252016 -k1,1027:28940836,27762918:252015 -k1,1027:29658813,27762918:252016 -k1,1027:31966991,27762918:0 -) -(1,1028:7246811,28604406:24720180,513147,134348 -k1,1027:8460491,28604406:222120 -k1,1027:11521631,28604406:222120 -k1,1027:12395180,28604406:222121 -k1,1027:14092515,28604406:222120 -k1,1027:14670495,28604406:222120 -k1,1027:17090693,28604406:222120 -k1,1027:19499750,28604406:222121 -k1,1027:20404755,28604406:222120 -k1,1027:21092836,28604406:222120 -k1,1027:23064112,28604406:222120 -k1,1027:26230765,28604406:222120 -k1,1027:28197454,28604406:222121 -k1,1027:28775434,28604406:222120 -k1,1027:30975431,28604406:222120 -k1,1027:31966991,28604406:0 -) -(1,1028:7246811,29445894:24720180,513147,134348 -g1,1027:11232710,29445894 -g1,1027:12865867,29445894 -g1,1027:14800489,29445894 -(1,1027:14800489,29445894:0,414482,115847 -r1,1060:15510467,29445894:709978,530329,115847 -k1,1027:14800489,29445894:-709978 -) -(1,1027:14800489,29445894:709978,414482,115847 -k1,1027:14800489,29445894:3277 -h1,1027:15507190,29445894:0,411205,112570 -) -g1,1027:15709696,29445894 -g1,1027:16440422,29445894 -g1,1027:16995511,29445894 -k1,1028:31966991,29445894:13175794 -g1,1028:31966991,29445894 -) -] -) -] -r1,1060:32583029,30170066:26214,11927868,0 -) -] -) -) -g1,1029:32583029,29580242 -) -h1,1029:6630773,30196280:0,0,0 -(1,1032:6630773,31562056:25952256,513147,134348 -h1,1031:6630773,31562056:983040,0,0 -k1,1031:9092775,31562056:215428 -k1,1031:12556167,31562056:215428 -k1,1031:14238291,31562056:215428 -k1,1031:15975465,31562056:215428 -k1,1031:16850185,31562056:215428 -k1,1031:19786012,31562056:215428 -k1,1031:22921723,31562056:215427 -k1,1031:24293861,31562056:215428 -k1,1031:25192174,31562056:215428 -k1,1031:27057799,31562056:215428 -(1,1031:27057799,31562056:0,414482,115847 -r1,1060:27767777,31562056:709978,530329,115847 -k1,1031:27057799,31562056:-709978 -) -(1,1031:27057799,31562056:709978,414482,115847 -k1,1031:27057799,31562056:3277 -h1,1031:27764500,31562056:0,411205,112570 -) -k1,1031:28487177,31562056:215428 -k1,1031:30713250,31562056:215428 -k1,1031:31699381,31562056:215428 -(1,1031:31699381,31562056:0,414482,115847 -r1,1060:32409359,31562056:709978,530329,115847 -k1,1031:31699381,31562056:-709978 -) -(1,1031:31699381,31562056:709978,414482,115847 -k1,1031:31699381,31562056:3277 -h1,1031:32406082,31562056:0,411205,112570 -) -k1,1031:32583029,31562056:0 -) -(1,1032:6630773,32403544:25952256,513147,126483 -k1,1031:7467362,32403544:208754 -k1,1031:9378086,32403544:208754 -k1,1031:11715449,32403544:208754 -k1,1031:13622241,32403544:208754 -k1,1031:14987705,32403544:208754 -k1,1031:16904983,32403544:208754 -k1,1031:17765165,32403544:208754 -k1,1031:18329779,32403544:208754 -k1,1031:22009975,32403544:208754 -k1,1031:22750226,32403544:208754 -k1,1031:26100121,32403544:208754 -k1,1031:27327960,32403544:208754 -k1,1031:29379586,32403544:208754 -k1,1031:30247632,32403544:208754 -k1,1031:31475471,32403544:208754 -k1,1032:32583029,32403544:0 -) -(1,1032:6630773,33245032:25952256,513147,134348 -k1,1031:9424321,33245032:216672 -k1,1031:10172490,33245032:216672 -k1,1031:13530303,33245032:216672 -k1,1031:15127818,33245032:216671 -k1,1031:17412806,33245032:216672 -k1,1031:18913984,33245032:216672 -k1,1031:19486516,33245032:216672 -k1,1031:21897333,33245032:216672 -k1,1031:24809501,33245032:216672 -k1,1031:25557669,33245032:216671 -k1,1031:28072689,33245032:216672 -k1,1031:29237012,33245032:216672 -k1,1031:31635378,33245032:216672 -k1,1031:32583029,33245032:0 -) -(1,1032:6630773,34086520:25952256,513147,126483 -g1,1031:7849087,34086520 -g1,1031:10878161,34086520 -g1,1031:11744546,34086520 -(1,1031:11744546,34086520:0,414482,115847 -r1,1060:12454524,34086520:709978,530329,115847 -k1,1031:11744546,34086520:-709978 -) -(1,1031:11744546,34086520:709978,414482,115847 -k1,1031:11744546,34086520:3277 -h1,1031:12451247,34086520:0,411205,112570 -) -g1,1031:12653753,34086520 -k1,1032:32583028,34086520:17744960 -g1,1032:32583028,34086520 -) -v1,1034:6630773,35276986:0,393216,0 -(1,1041:6630773,36292339:25952256,1408569,196608 -g1,1041:6630773,36292339 -g1,1041:6630773,36292339 -g1,1041:6434165,36292339 -(1,1041:6434165,36292339:0,1408569,196608 -r1,1060:32779637,36292339:26345472,1605177,196608 -k1,1041:6434165,36292339:-26345472 -) -(1,1041:6434165,36292339:26345472,1408569,196608 -[1,1041:6630773,36292339:25952256,1211961,0 -(1,1036:6630773,35484604:25952256,404226,82312 -(1,1035:6630773,35484604:0,0,0 -g1,1035:6630773,35484604 -g1,1035:6630773,35484604 -g1,1035:6303093,35484604 -(1,1035:6303093,35484604:0,0,0 -) -g1,1035:6630773,35484604 -) -k1,1036:6630773,35484604:0 -g1,1036:10424522,35484604 -h1,1036:11372959,35484604:0,0,0 -k1,1036:32583029,35484604:21210070 -g1,1036:32583029,35484604 -) -(1,1040:6630773,36216318:25952256,404226,76021 -(1,1038:6630773,36216318:0,0,0 -g1,1038:6630773,36216318 -g1,1038:6630773,36216318 -g1,1038:6303093,36216318 -(1,1038:6303093,36216318:0,0,0 -) -g1,1038:6630773,36216318 -) -g1,1040:7579210,36216318 -g1,1040:8843793,36216318 -g1,1040:9159939,36216318 -g1,1040:10740668,36216318 -h1,1040:12321396,36216318:0,0,0 -k1,1040:32583028,36216318:20261632 -g1,1040:32583028,36216318 -) -] -) -g1,1041:32583029,36292339 -g1,1041:6630773,36292339 -g1,1041:6630773,36292339 -g1,1041:32583029,36292339 -g1,1041:32583029,36292339 -) -h1,1041:6630773,36488947:0,0,0 -(1,1045:6630773,37854723:25952256,505283,126483 -h1,1044:6630773,37854723:983040,0,0 -k1,1044:8500155,37854723:258507 -k1,1044:9777747,37854723:258507 -k1,1044:12697671,37854723:258507 -k1,1044:14985173,37854723:258507 -k1,1044:16112032,37854723:258507 -k1,1044:17474821,37854723:258507 -k1,1044:19019145,37854723:258508 -k1,1044:20302635,37854723:258507 -k1,1044:21845648,37854723:258507 -(1,1044:21845648,37854723:0,452978,115847 -r1,1060:24314185,37854723:2468537,568825,115847 -k1,1044:21845648,37854723:-2468537 -) -(1,1044:21845648,37854723:2468537,452978,115847 -k1,1044:21845648,37854723:3277 -h1,1044:24310908,37854723:0,411205,112570 -) -k1,1044:24572692,37854723:258507 -k1,1044:25362696,37854723:258507 -k1,1044:29131967,37854723:258507 -k1,1044:30581919,37854723:258507 -k1,1044:32124932,37854723:258507 -k1,1044:32583029,37854723:0 -) -(1,1045:6630773,38696211:25952256,513147,134348 -k1,1044:9146498,38696211:234417 -k1,1044:10400000,38696211:234417 -k1,1044:11825862,38696211:234417 -k1,1044:12711708,38696211:234418 -k1,1044:14397747,38696211:234417 -k1,1044:15291456,38696211:234417 -k1,1044:16544958,38696211:234417 -k1,1044:17951814,38696211:234417 -k1,1044:21055397,38696211:234417 -k1,1044:21949107,38696211:234418 -k1,1044:23202609,38696211:234417 -k1,1044:25414903,38696211:234417 -k1,1044:29582135,38696211:234417 -k1,1044:32583029,38696211:0 -) -(1,1045:6630773,39537699:25952256,513147,134348 -g1,1044:7849087,39537699 -g1,1044:9891188,39537699 -g1,1044:10776579,39537699 -g1,1044:11331668,39537699 -g1,1044:13600524,39537699 -g1,1044:15777630,39537699 -g1,1044:16636151,39537699 -g1,1044:18848646,39537699 -k1,1045:32583029,39537699:12388273 -g1,1045:32583029,39537699 -) -(1,1047:6630773,40379187:25952256,513147,134348 -h1,1046:6630773,40379187:983040,0,0 -k1,1046:9176565,40379187:291354 -k1,1046:11129913,40379187:291355 -k1,1046:12072695,40379187:291354 -k1,1046:13111815,40379187:291354 -k1,1046:15271601,40379187:291355 -k1,1046:16222247,40379187:291354 -k1,1046:17505162,40379187:291355 -k1,1046:18815601,40379187:291354 -k1,1046:23520149,40379187:291354 -k1,1046:24470796,40379187:291355 -k1,1046:25781235,40379187:291354 -k1,1046:27283694,40379187:291354 -k1,1046:28859555,40379187:291355 -k1,1046:31966991,40379187:291354 -k1,1046:32583029,40379187:0 -) -(1,1047:6630773,41220675:25952256,513147,134348 -k1,1046:10222503,41220675:185169 -k1,1046:11399231,41220675:185168 -k1,1046:13747088,41220675:185169 -k1,1046:16061522,41220675:185169 -k1,1046:18284861,41220675:185169 -k1,1046:19863980,41220675:185168 -k1,1046:21700001,41220675:185169 -k1,1046:24817251,41220675:185169 -k1,1046:27212294,41220675:185169 -k1,1046:29351746,41220675:185168 -k1,1046:30556000,41220675:185169 -k1,1047:32583029,41220675:0 -) -(1,1047:6630773,42062163:25952256,513147,126483 -k1,1046:9055009,42062163:213707 -k1,1046:11651605,42062163:213707 -k1,1046:13432933,42062163:213707 -k1,1046:14665725,42062163:213707 -k1,1046:19202842,42062163:213707 -k1,1046:22498706,42062163:213706 -k1,1046:23371705,42062163:213707 -k1,1046:24938730,42062163:213707 -k1,1046:27968519,42062163:213707 -k1,1046:29173786,42062163:213707 -k1,1046:30453764,42062163:213707 -k1,1046:32583029,42062163:0 -) -(1,1047:6630773,42903651:25952256,513147,134348 -g1,1046:9497317,42903651 -g1,1046:10746433,42903651 -g1,1046:11964747,42903651 -g1,1046:13323963,42903651 -g1,1046:14332562,42903651 -g1,1046:16029944,42903651 -h1,1046:16826862,42903651:0,0,0 -g1,1046:17026091,42903651 -g1,1046:18172971,42903651 -g1,1046:19142903,42903651 -g1,1046:22031730,42903651 -k1,1047:32583029,42903651:6645353 -g1,1047:32583029,42903651 -) -v1,1049:6630773,44094117:0,393216,0 -(1,1056:6630773,45093741:25952256,1392840,196608 -g1,1056:6630773,45093741 -g1,1056:6630773,45093741 -g1,1056:6434165,45093741 -(1,1056:6434165,45093741:0,1392840,196608 -r1,1060:32779637,45093741:26345472,1589448,196608 -k1,1056:6434165,45093741:-26345472 -) -(1,1056:6434165,45093741:26345472,1392840,196608 -[1,1056:6630773,45093741:25952256,1196232,0 -(1,1051:6630773,44286006:25952256,388497,9436 -(1,1050:6630773,44286006:0,0,0 -g1,1050:6630773,44286006 -g1,1050:6630773,44286006 -g1,1050:6303093,44286006 -(1,1050:6303093,44286006:0,0,0 -) -g1,1050:6630773,44286006 -) -g1,1051:7263065,44286006 -g1,1051:7895357,44286006 -k1,1051:7895357,44286006:0 -h1,1051:9476085,44286006:0,0,0 -k1,1051:32583029,44286006:23106944 -g1,1051:32583029,44286006 -) -(1,1055:6630773,45017720:25952256,404226,76021 -(1,1053:6630773,45017720:0,0,0 -g1,1053:6630773,45017720 -g1,1053:6630773,45017720 -g1,1053:6303093,45017720 -(1,1053:6303093,45017720:0,0,0 -) -g1,1053:6630773,45017720 -) -g1,1055:7579210,45017720 -g1,1055:8843793,45017720 -h1,1055:9159939,45017720:0,0,0 -k1,1055:32583029,45017720:23423090 -g1,1055:32583029,45017720 -) -] -) -g1,1056:32583029,45093741 -g1,1056:6630773,45093741 -g1,1056:6630773,45093741 -g1,1056:32583029,45093741 -g1,1056:32583029,45093741 -) -h1,1056:6630773,45290349:0,0,0 -] -(1,1060:32583029,45706769:0,0,0 -g1,1060:32583029,45706769 -) -) -] -(1,1060:6630773,47279633:25952256,0,0 -h1,1060:6630773,47279633:25952256,0,0 -) -] -(1,1060:4262630,4025873:0,0,0 -[1,1060:-473656,4025873:0,0,0 -(1,1060:-473656,-710413:0,0,0 -(1,1060:-473656,-710413:0,0,0 -g1,1060:-473656,-710413 -) -g1,1060:-473656,-710413 -) -] -) -] -!25036 -}39 -Input:303:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:304:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:305:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:306:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:307:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:308:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:309:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:310:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:311:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:312:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:313:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1012 -{40 -[1,1159:4262630,47279633:28320399,43253760,0 -(1,1159:4262630,4025873:0,0,0 -[1,1159:-473656,4025873:0,0,0 -(1,1159:-473656,-710413:0,0,0 -(1,1159:-473656,-644877:0,0,0 -k1,1159:-473656,-644877:-65536 -) -(1,1159:-473656,4736287:0,0,0 -k1,1159:-473656,4736287:5209943 -) -g1,1159:-473656,-710413 -) -] -) -[1,1159:6630773,47279633:25952256,43253760,0 -[1,1159:6630773,4812305:25952256,786432,0 -(1,1159:6630773,4812305:25952256,505283,7863 -(1,1159:6630773,4812305:25952256,505283,7863 -g1,1159:3078558,4812305 -[1,1159:3078558,4812305:0,0,0 -(1,1159:3078558,2439708:0,1703936,0 -k1,1159:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,1159:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,1159:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,1159:3078558,4812305:0,0,0 -(1,1159:3078558,2439708:0,1703936,0 -g1,1159:29030814,2439708 -g1,1159:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,1159:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,1159:37855564,2439708:1179648,16384,0 -) -) -k1,1159:3078556,2439708:-34777008 -) -] -[1,1159:3078558,4812305:0,0,0 -(1,1159:3078558,49800853:0,16384,2228224 -k1,1159:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,1159:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,1159:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,1159:3078558,4812305:0,0,0 -(1,1159:3078558,49800853:0,16384,2228224 -g1,1159:29030814,49800853 -g1,1159:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,1159:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,1159:37855564,49800853:1179648,16384,0 -) -) -k1,1159:3078556,49800853:-34777008 -) -] -g1,1159:6630773,4812305 -g1,1159:6630773,4812305 -g1,1159:9516978,4812305 -g1,1159:11710468,4812305 -g1,1159:13120147,4812305 -g1,1159:16560787,4812305 -k1,1159:31786111,4812305:15225324 -) -) -] -[1,1159:6630773,45706769:25952256,40108032,0 -(1,1159:6630773,45706769:25952256,40108032,0 -(1,1159:6630773,45706769:0,0,0 -g1,1159:6630773,45706769 -) -[1,1159:6630773,45706769:25952256,40108032,0 -(1,1060:6630773,6254097:25952256,505283,134348 -h1,1059:6630773,6254097:983040,0,0 -k1,1059:9596840,6254097:199792 -k1,1059:13199918,6254097:199793 -(1,1059:13199918,6254097:0,452978,122846 -r1,1159:15668455,6254097:2468537,575824,122846 -k1,1059:13199918,6254097:-2468537 -) -(1,1059:13199918,6254097:2468537,452978,122846 -k1,1059:13199918,6254097:3277 -h1,1059:15665178,6254097:0,411205,112570 -) -k1,1059:15868247,6254097:199792 -k1,1059:15868247,6254097:0 -k1,1059:16068040,6254097:199793 -k1,1059:18278477,6254097:199792 -k1,1059:20174997,6254097:199793 -k1,1059:23381581,6254097:199792 -k1,1059:24396641,6254097:199792 -k1,1059:25662705,6254097:199793 -k1,1059:27536942,6254097:199792 -k1,1059:28422897,6254097:199793 -k1,1059:30852879,6254097:199792 -k1,1060:32583029,6254097:0 -) -(1,1060:6630773,7095585:25952256,513147,134348 -k1,1059:8686473,7095585:296714 -k1,1059:9514685,7095585:296715 -k1,1059:10877670,7095585:296714 -k1,1059:13721768,7095585:296714 -k1,1059:14780011,7095585:296715 -k1,1059:16336982,7095585:296714 -k1,1059:17292988,7095585:296714 -k1,1059:20521784,7095585:296715 -k1,1059:21434536,7095585:296714 -k1,1059:25532993,7095585:296714 -k1,1059:28900725,7095585:296715 -k1,1059:29848867,7095585:296714 -k1,1059:32583029,7095585:0 -) -(1,1060:6630773,7937073:25952256,513147,134348 -k1,1059:9419330,7937073:260178 -k1,1059:10338800,7937073:260178 -k1,1059:11618062,7937073:260177 -k1,1059:13116215,7937073:260178 -k1,1059:15936885,7937073:260178 -k1,1059:17188623,7937073:260178 -k1,1059:19486970,7937073:260177 -k1,1059:20363186,7937073:260178 -k1,1059:21642449,7937073:260178 -k1,1059:24533898,7937073:260178 -k1,1059:25453367,7937073:260177 -k1,1059:29293777,7937073:260178 -k1,1059:31563944,7937073:260178 -k1,1059:32583029,7937073:0 -) -(1,1060:6630773,8778561:25952256,513147,134348 -k1,1059:11207152,8778561:226099 -k1,1059:13387535,8778561:226099 -k1,1059:14993822,8778561:226099 -k1,1059:16211481,8778561:226099 -k1,1059:18475750,8778561:226099 -k1,1059:21100467,8778561:226099 -k1,1059:22597964,8778561:226099 -k1,1059:23928345,8778561:226099 -k1,1059:25834787,8778561:226099 -k1,1059:26720178,8778561:226099 -k1,1059:30022537,8778561:226099 -k1,1059:32583029,8778561:0 -) -(1,1060:6630773,9620049:25952256,513147,134348 -g1,1059:7516164,9620049 -g1,1059:8071253,9620049 -g1,1059:10350595,9620049 -g1,1059:11209116,9620049 -g1,1059:13291194,9620049 -g1,1059:16306505,9620049 -g1,1059:19576751,9620049 -g1,1059:20427408,9620049 -g1,1059:20982497,9620049 -g1,1059:23379804,9620049 -g1,1059:25359646,9620049 -g1,1059:26218167,9620049 -k1,1060:32583029,9620049:4180547 -g1,1060:32583029,9620049 -) -v1,1062:6630773,10810515:0,393216,0 -(1,1093:6630773,20023147:25952256,9605848,196608 -g1,1093:6630773,20023147 -g1,1093:6630773,20023147 -g1,1093:6434165,20023147 -(1,1093:6434165,20023147:0,9605848,196608 -r1,1159:32779637,20023147:26345472,9802456,196608 -k1,1093:6434165,20023147:-26345472 -) -(1,1093:6434165,20023147:26345472,9605848,196608 -[1,1093:6630773,20023147:25952256,9409240,0 -(1,1064:6630773,11002404:25952256,388497,9436 -(1,1063:6630773,11002404:0,0,0 -g1,1063:6630773,11002404 -g1,1063:6630773,11002404 -g1,1063:6303093,11002404 -(1,1063:6303093,11002404:0,0,0 -) -g1,1063:6630773,11002404 -) -g1,1064:7579210,11002404 -g1,1064:8211502,11002404 -h1,1064:8843793,11002404:0,0,0 -k1,1064:32583029,11002404:23739236 -g1,1064:32583029,11002404 -) -(1,1068:6630773,11734118:25952256,404226,76021 -(1,1066:6630773,11734118:0,0,0 -g1,1066:6630773,11734118 -g1,1066:6630773,11734118 -g1,1066:6303093,11734118 -(1,1066:6303093,11734118:0,0,0 -) -g1,1066:6630773,11734118 -) -g1,1068:7579210,11734118 -g1,1068:8843793,11734118 -h1,1068:9159939,11734118:0,0,0 -k1,1068:32583029,11734118:23423090 -g1,1068:32583029,11734118 -) -(1,1070:6630773,13055656:25952256,388497,9436 -(1,1069:6630773,13055656:0,0,0 -g1,1069:6630773,13055656 -g1,1069:6630773,13055656 -g1,1069:6303093,13055656 -(1,1069:6303093,13055656:0,0,0 -) -g1,1069:6630773,13055656 -) -g1,1070:7579210,13055656 -g1,1070:8211502,13055656 -h1,1070:8843793,13055656:0,0,0 -k1,1070:32583029,13055656:23739236 -g1,1070:32583029,13055656 -) -(1,1074:6630773,13787370:25952256,404226,76021 -(1,1072:6630773,13787370:0,0,0 -g1,1072:6630773,13787370 -g1,1072:6630773,13787370 -g1,1072:6303093,13787370 -(1,1072:6303093,13787370:0,0,0 -) -g1,1072:6630773,13787370 -) -g1,1074:7579210,13787370 -g1,1074:8843793,13787370 -h1,1074:9159939,13787370:0,0,0 -k1,1074:32583029,13787370:23423090 -g1,1074:32583029,13787370 -) -(1,1076:6630773,15108908:25952256,404226,76021 -(1,1075:6630773,15108908:0,0,0 -g1,1075:6630773,15108908 -g1,1075:6630773,15108908 -g1,1075:6303093,15108908 -(1,1075:6303093,15108908:0,0,0 -) -g1,1075:6630773,15108908 -) -g1,1076:7579210,15108908 -g1,1076:8843793,15108908 -h1,1076:9476084,15108908:0,0,0 -k1,1076:32583028,15108908:23106944 -g1,1076:32583028,15108908 -) -(1,1080:6630773,15840622:25952256,404226,76021 -(1,1078:6630773,15840622:0,0,0 -g1,1078:6630773,15840622 -g1,1078:6630773,15840622 -g1,1078:6303093,15840622 -(1,1078:6303093,15840622:0,0,0 -) -g1,1078:6630773,15840622 -) -g1,1080:7579210,15840622 -g1,1080:8843793,15840622 -h1,1080:9159939,15840622:0,0,0 -k1,1080:32583029,15840622:23423090 -g1,1080:32583029,15840622 -) -(1,1082:6630773,17162160:25952256,388497,9436 -(1,1081:6630773,17162160:0,0,0 -g1,1081:6630773,17162160 -g1,1081:6630773,17162160 -g1,1081:6303093,17162160 -(1,1081:6303093,17162160:0,0,0 -) -g1,1081:6630773,17162160 -) -g1,1082:7579210,17162160 -g1,1082:8527647,17162160 -h1,1082:9159938,17162160:0,0,0 -k1,1082:32583030,17162160:23423092 -g1,1082:32583030,17162160 -) -(1,1086:6630773,17893874:25952256,404226,76021 -(1,1084:6630773,17893874:0,0,0 -g1,1084:6630773,17893874 -g1,1084:6630773,17893874 -g1,1084:6303093,17893874 -(1,1084:6303093,17893874:0,0,0 -) -g1,1084:6630773,17893874 -) -g1,1086:7579210,17893874 -g1,1086:8843793,17893874 -h1,1086:9159939,17893874:0,0,0 -k1,1086:32583029,17893874:23423090 -g1,1086:32583029,17893874 -) -(1,1088:6630773,19215412:25952256,404226,76021 -(1,1087:6630773,19215412:0,0,0 -g1,1087:6630773,19215412 -g1,1087:6630773,19215412 -g1,1087:6303093,19215412 -(1,1087:6303093,19215412:0,0,0 -) -g1,1087:6630773,19215412 -) -g1,1088:7579210,19215412 -g1,1088:8211502,19215412 -h1,1088:8843793,19215412:0,0,0 -k1,1088:32583029,19215412:23739236 -g1,1088:32583029,19215412 -) -(1,1092:6630773,19947126:25952256,404226,76021 -(1,1090:6630773,19947126:0,0,0 -g1,1090:6630773,19947126 -g1,1090:6630773,19947126 -g1,1090:6303093,19947126 -(1,1090:6303093,19947126:0,0,0 -) -g1,1090:6630773,19947126 -) -g1,1092:7579210,19947126 -g1,1092:8843793,19947126 -h1,1092:11689104,19947126:0,0,0 -k1,1092:32583028,19947126:20893924 -g1,1092:32583028,19947126 -) -] -) -g1,1093:32583029,20023147 -g1,1093:6630773,20023147 -g1,1093:6630773,20023147 -g1,1093:32583029,20023147 -g1,1093:32583029,20023147 -) -h1,1093:6630773,20219755:0,0,0 -(1,1097:6630773,21585531:25952256,505283,134348 -h1,1096:6630773,21585531:983040,0,0 -k1,1096:8954024,21585531:143524 -k1,1096:10245739,21585531:143524 -k1,1096:13575622,21585531:143523 -k1,1096:14335184,21585531:143524 -k1,1096:15497793,21585531:143524 -k1,1096:18302734,21585531:143524 -k1,1096:22383006,21585531:143524 -k1,1096:24555525,21585531:143524 -k1,1096:26434441,21585531:143523 -k1,1096:27597050,21585531:143524 -k1,1096:30061859,21585531:143524 -k1,1096:32583029,21585531:0 -) -(1,1097:6630773,22427019:25952256,513147,134348 -k1,1096:9608466,22427019:231079 -k1,1096:11705354,22427019:231078 -k1,1096:12292293,22427019:231079 -k1,1096:16856612,22427019:231078 -(1,1096:16856612,22427019:0,452978,115847 -r1,1159:18973437,22427019:2116825,568825,115847 -k1,1096:16856612,22427019:-2116825 -) -(1,1096:16856612,22427019:2116825,452978,115847 -k1,1096:16856612,22427019:3277 -h1,1096:18970160,22427019:0,411205,112570 -) -k1,1096:19204516,22427019:231079 -k1,1096:21452138,22427019:231079 -k1,1096:23372734,22427019:231078 -k1,1096:24622898,22427019:231079 -k1,1096:27084166,22427019:231078 -k1,1096:29836415,22427019:231079 -k1,1097:32583029,22427019:0 -) -(1,1097:6630773,23268507:25952256,513147,134348 -(1,1096:6630773,23268507:0,452978,115847 -r1,1159:7692462,23268507:1061689,568825,115847 -k1,1096:6630773,23268507:-1061689 -) -(1,1096:6630773,23268507:1061689,452978,115847 -k1,1096:6630773,23268507:3277 -h1,1096:7689185,23268507:0,411205,112570 -) -k1,1096:7924256,23268507:231794 -k1,1096:10021860,23268507:231794 -k1,1096:11024357,23268507:231794 -(1,1096:11024357,23268507:0,452978,122846 -r1,1159:13492894,23268507:2468537,575824,122846 -k1,1096:11024357,23268507:-2468537 -) -(1,1096:11024357,23268507:2468537,452978,122846 -k1,1096:11024357,23268507:3277 -h1,1096:13489617,23268507:0,411205,112570 -) -k1,1096:13724687,23268507:231793 -k1,1096:15973024,23268507:231794 -k1,1096:17396263,23268507:231794 -(1,1096:17396263,23268507:0,435480,115847 -r1,1159:18106241,23268507:709978,551327,115847 -k1,1096:17396263,23268507:-709978 -) -(1,1096:17396263,23268507:709978,435480,115847 -k1,1096:17396263,23268507:3277 -h1,1096:18102964,23268507:0,411205,112570 -) -k1,1096:18338035,23268507:231794 -k1,1096:20910775,23268507:231794 -k1,1096:22161654,23268507:231794 -k1,1096:25677456,23268507:231793 -k1,1096:27476871,23268507:231794 -k1,1096:28727750,23268507:231794 -k1,1096:31189734,23268507:231794 -k1,1097:32583029,23268507:0 -) -(1,1097:6630773,24109995:25952256,513147,134348 -k1,1096:8290145,24109995:144835 -k1,1096:8912736,24109995:144834 -k1,1096:9743733,24109995:144835 -k1,1096:10244427,24109995:144834 -k1,1096:12232134,24109995:144835 -k1,1096:13036261,24109995:144835 -k1,1096:13951798,24109995:144834 -k1,1096:17170927,24109995:144835 -k1,1096:18334846,24109995:144834 -k1,1096:20322553,24109995:144835 -k1,1096:21828571,24109995:144835 -k1,1096:24339255,24109995:144834 -k1,1096:25503175,24109995:144835 -k1,1096:27428622,24109995:144834 -k1,1096:28232749,24109995:144835 -k1,1096:32583029,24109995:0 -) -(1,1097:6630773,24951483:25952256,505283,115847 -g1,1096:9014317,24951483 -g1,1096:10232631,24951483 -g1,1096:13210587,24951483 -g1,1096:15090159,24951483 -g1,1096:15820885,24951483 -(1,1096:15820885,24951483:0,414482,115847 -r1,1159:16530863,24951483:709978,530329,115847 -k1,1096:15820885,24951483:-709978 -) -(1,1096:15820885,24951483:709978,414482,115847 -k1,1096:15820885,24951483:3277 -h1,1096:16527586,24951483:0,411205,112570 -) -k1,1097:32583029,24951483:15878496 -g1,1097:32583029,24951483 -) -v1,1099:6630773,26141949:0,393216,0 -(1,1108:6630773,28397575:25952256,2648842,196608 -g1,1108:6630773,28397575 -g1,1108:6630773,28397575 -g1,1108:6434165,28397575 -(1,1108:6434165,28397575:0,2648842,196608 -r1,1159:32779637,28397575:26345472,2845450,196608 -k1,1108:6434165,28397575:-26345472 -) -(1,1108:6434165,28397575:26345472,2648842,196608 -[1,1108:6630773,28397575:25952256,2452234,0 -(1,1101:6630773,26333838:25952256,388497,9436 -(1,1100:6630773,26333838:0,0,0 -g1,1100:6630773,26333838 -g1,1100:6630773,26333838 -g1,1100:6303093,26333838 -(1,1100:6303093,26333838:0,0,0 -) -g1,1100:6630773,26333838 -) -g1,1101:9476084,26333838 -g1,1101:10108376,26333838 -h1,1101:12637541,26333838:0,0,0 -k1,1101:32583029,26333838:19945488 -g1,1101:32583029,26333838 -) -(1,1105:6630773,27655376:25952256,410518,107478 -g1,1105:7579210,27655376 -g1,1105:10108376,27655376 -g1,1105:11056813,27655376 -g1,1105:13902124,27655376 -g1,1105:14534416,27655376 -g1,1105:17695873,27655376 -g1,1105:18960456,27655376 -g1,1105:21805767,27655376 -g1,1105:22754204,27655376 -g1,1105:25283370,27655376 -k1,1105:32583029,27655376:4770494 -g1,1105:32583029,27655376 -) -(1,1107:6630773,28321554:25952256,404226,76021 -(1,1105:6630773,28321554:0,0,0 -g1,1105:6630773,28321554 -g1,1105:6630773,28321554 -g1,1105:6303093,28321554 -(1,1105:6303093,28321554:0,0,0 -) -g1,1105:6630773,28321554 -) -g1,1107:7579210,28321554 -g1,1107:8843793,28321554 -h1,1107:9476084,28321554:0,0,0 -k1,1107:32583028,28321554:23106944 -g1,1107:32583028,28321554 -) -] -) -g1,1108:32583029,28397575 -g1,1108:6630773,28397575 -g1,1108:6630773,28397575 -g1,1108:32583029,28397575 -g1,1108:32583029,28397575 -) -h1,1108:6630773,28594183:0,0,0 -(1,1112:6630773,29959959:25952256,505283,134348 -h1,1111:6630773,29959959:983040,0,0 -k1,1111:9283736,29959959:204538 -k1,1111:12001579,29959959:204537 -k1,1111:13397562,29959959:204538 -k1,1111:16162591,29959959:204537 -k1,1111:17358689,29959959:204538 -k1,1111:21062194,29959959:204538 -k1,1111:24060531,29959959:204537 -k1,1111:24892904,29959959:204538 -k1,1111:26699141,29959959:204537 -k1,1111:30234219,29959959:204538 -k1,1112:32583029,29959959:0 -) -(1,1112:6630773,30801447:25952256,513147,126483 -k1,1111:8130471,30801447:158831 -k1,1111:8820799,30801447:158831 -k1,1111:12169267,30801447:158831 -k1,1111:13519543,30801447:158831 -k1,1111:14546726,30801447:158831 -k1,1111:15520825,30801447:158831 -k1,1111:16745927,30801447:158831 -k1,1111:18435024,30801447:158831 -k1,1111:19245283,30801447:158831 -k1,1111:21257472,30801447:158831 -k1,1111:23238859,30801447:158831 -k1,1111:24416775,30801447:158831 -k1,1111:28092268,30801447:158831 -k1,1111:30886302,30801447:158831 -k1,1111:32583029,30801447:0 -) -(1,1112:6630773,31642935:25952256,513147,126483 -k1,1111:7967506,31642935:164294 -k1,1111:9848187,31642935:164293 -k1,1111:10671773,31642935:164294 -k1,1111:13456195,31642935:164293 -k1,1111:15804804,31642935:164294 -k1,1111:17165784,31642935:164293 -k1,1111:18714198,31642935:164294 -k1,1111:20849159,31642935:164293 -k1,1111:23004437,31642935:164294 -k1,1111:25947457,31642935:164293 -k1,1111:28122396,31642935:164294 -k1,1111:29571195,31642935:164293 -k1,1111:30727049,31642935:164294 -k1,1112:32583029,31642935:0 -) -(1,1112:6630773,32484423:25952256,505283,122846 -(1,1111:6630773,32484423:0,414482,115847 -r1,1159:8044174,32484423:1413401,530329,115847 -k1,1111:6630773,32484423:-1413401 -) -(1,1111:6630773,32484423:1413401,414482,115847 -k1,1111:6630773,32484423:3277 -h1,1111:8040897,32484423:0,411205,112570 -) -g1,1111:8243403,32484423 -g1,1111:9125517,32484423 -(1,1111:9125517,32484423:0,414482,115847 -r1,1159:10890630,32484423:1765113,530329,115847 -k1,1111:9125517,32484423:-1765113 -) -(1,1111:9125517,32484423:1765113,414482,115847 -k1,1111:9125517,32484423:3277 -h1,1111:10887353,32484423:0,411205,112570 -) -g1,1111:11263529,32484423 -g1,1111:13337088,32484423 -g1,1111:14527877,32484423 -(1,1111:14527877,32484423:0,452978,122846 -r1,1159:16996414,32484423:2468537,575824,122846 -k1,1111:14527877,32484423:-2468537 -) -(1,1111:14527877,32484423:2468537,452978,122846 -k1,1111:14527877,32484423:3277 -h1,1111:16993137,32484423:0,411205,112570 -) -g1,1111:17195643,32484423 -g1,1111:19405517,32484423 -g1,1111:20889252,32484423 -g1,1111:22220943,32484423 -g1,1111:23167938,32484423 -g1,1111:26496511,32484423 -g1,1111:27311778,32484423 -g1,1111:28530092,32484423 -g1,1111:30113441,32484423 -k1,1112:32583029,32484423:17231 -g1,1112:32583029,32484423 -) -v1,1114:6630773,33674889:0,393216,0 -(1,1145:6630773,42903250:25952256,9621577,196608 -g1,1145:6630773,42903250 -g1,1145:6630773,42903250 -g1,1145:6434165,42903250 -(1,1145:6434165,42903250:0,9621577,196608 -r1,1159:32779637,42903250:26345472,9818185,196608 -k1,1145:6434165,42903250:-26345472 -) -(1,1145:6434165,42903250:26345472,9621577,196608 -[1,1145:6630773,42903250:25952256,9424969,0 -(1,1116:6630773,33882507:25952256,404226,76021 -(1,1115:6630773,33882507:0,0,0 -g1,1115:6630773,33882507 -g1,1115:6630773,33882507 -g1,1115:6303093,33882507 -(1,1115:6303093,33882507:0,0,0 -) -g1,1115:6630773,33882507 -) -k1,1116:6630773,33882507:0 -h1,1116:11056813,33882507:0,0,0 -k1,1116:32583029,33882507:21526216 -g1,1116:32583029,33882507 -) -(1,1120:6630773,34614221:25952256,404226,76021 -(1,1118:6630773,34614221:0,0,0 -g1,1118:6630773,34614221 -g1,1118:6630773,34614221 -g1,1118:6303093,34614221 -(1,1118:6303093,34614221:0,0,0 -) -g1,1118:6630773,34614221 -) -g1,1120:7579210,34614221 -g1,1120:8843793,34614221 -h1,1120:10108376,34614221:0,0,0 -k1,1120:32583028,34614221:22474652 -g1,1120:32583028,34614221 -) -(1,1122:6630773,35935759:25952256,404226,107478 -(1,1121:6630773,35935759:0,0,0 -g1,1121:6630773,35935759 -g1,1121:6630773,35935759 -g1,1121:6303093,35935759 -(1,1121:6303093,35935759:0,0,0 -) -g1,1121:6630773,35935759 -) -k1,1122:6630773,35935759:0 -h1,1122:11056813,35935759:0,0,0 -k1,1122:32583029,35935759:21526216 -g1,1122:32583029,35935759 -) -(1,1126:6630773,36667473:25952256,404226,76021 -(1,1124:6630773,36667473:0,0,0 -g1,1124:6630773,36667473 -g1,1124:6630773,36667473 -g1,1124:6303093,36667473 -(1,1124:6303093,36667473:0,0,0 -) -g1,1124:6630773,36667473 -) -g1,1126:7579210,36667473 -g1,1126:8843793,36667473 -h1,1126:10108376,36667473:0,0,0 -k1,1126:32583028,36667473:22474652 -g1,1126:32583028,36667473 -) -(1,1128:6630773,37989011:25952256,404226,76021 -(1,1127:6630773,37989011:0,0,0 -g1,1127:6630773,37989011 -g1,1127:6630773,37989011 -g1,1127:6303093,37989011 -(1,1127:6303093,37989011:0,0,0 -) -g1,1127:6630773,37989011 -) -k1,1128:6630773,37989011:0 -h1,1128:10740667,37989011:0,0,0 -k1,1128:32583029,37989011:21842362 -g1,1128:32583029,37989011 -) -(1,1132:6630773,38720725:25952256,404226,76021 -(1,1130:6630773,38720725:0,0,0 -g1,1130:6630773,38720725 -g1,1130:6630773,38720725 -g1,1130:6303093,38720725 -(1,1130:6303093,38720725:0,0,0 -) -g1,1130:6630773,38720725 -) -g1,1132:7579210,38720725 -g1,1132:8843793,38720725 -h1,1132:10424521,38720725:0,0,0 -k1,1132:32583029,38720725:22158508 -g1,1132:32583029,38720725 -) -(1,1134:6630773,40042263:25952256,404226,76021 -(1,1133:6630773,40042263:0,0,0 -g1,1133:6630773,40042263 -g1,1133:6630773,40042263 -g1,1133:6303093,40042263 -(1,1133:6303093,40042263:0,0,0 -) -g1,1133:6630773,40042263 -) -k1,1134:6630773,40042263:0 -g1,1134:10740667,40042263 -g1,1134:11372959,40042263 -h1,1134:12321396,40042263:0,0,0 -k1,1134:32583028,40042263:20261632 -g1,1134:32583028,40042263 -) -(1,1138:6630773,40773977:25952256,404226,76021 -(1,1136:6630773,40773977:0,0,0 -g1,1136:6630773,40773977 -g1,1136:6630773,40773977 -g1,1136:6303093,40773977 -(1,1136:6303093,40773977:0,0,0 -) -g1,1136:6630773,40773977 -) -g1,1138:7579210,40773977 -g1,1138:8843793,40773977 -h1,1138:10108376,40773977:0,0,0 -k1,1138:32583028,40773977:22474652 -g1,1138:32583028,40773977 -) -(1,1140:6630773,42095515:25952256,404226,76021 -(1,1139:6630773,42095515:0,0,0 -g1,1139:6630773,42095515 -g1,1139:6630773,42095515 -g1,1139:6303093,42095515 -(1,1139:6303093,42095515:0,0,0 -) -g1,1139:6630773,42095515 -) -k1,1140:6630773,42095515:0 -g1,1140:11056813,42095515 -g1,1140:11689105,42095515 -h1,1140:12637542,42095515:0,0,0 -k1,1140:32583030,42095515:19945488 -g1,1140:32583030,42095515 -) -(1,1144:6630773,42827229:25952256,404226,76021 -(1,1142:6630773,42827229:0,0,0 -g1,1142:6630773,42827229 -g1,1142:6630773,42827229 -g1,1142:6303093,42827229 -(1,1142:6303093,42827229:0,0,0 -) -g1,1142:6630773,42827229 -) -g1,1144:7579210,42827229 -g1,1144:8843793,42827229 -h1,1144:10108376,42827229:0,0,0 -k1,1144:32583028,42827229:22474652 -g1,1144:32583028,42827229 -) -] -) -g1,1145:32583029,42903250 -g1,1145:6630773,42903250 -g1,1145:6630773,42903250 -g1,1145:32583029,42903250 -g1,1145:32583029,42903250 -) -h1,1145:6630773,43099858:0,0,0 -v1,1149:6630773,44989922:0,393216,0 -] -(1,1159:32583029,45706769:0,0,0 -g1,1159:32583029,45706769 -) -) -] -(1,1159:6630773,47279633:25952256,0,0 -h1,1159:6630773,47279633:25952256,0,0 -) -] -(1,1159:4262630,4025873:0,0,0 -[1,1159:-473656,4025873:0,0,0 -(1,1159:-473656,-710413:0,0,0 -(1,1159:-473656,-710413:0,0,0 -g1,1159:-473656,-710413 -) -g1,1159:-473656,-710413 -) -] -) -] -!22018 -}40 -Input:314:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:315:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:316:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:317:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!375 -{41 -[1,1237:4262630,47279633:28320399,43253760,0 -(1,1237:4262630,4025873:0,0,0 -[1,1237:-473656,4025873:0,0,0 -(1,1237:-473656,-710413:0,0,0 -(1,1237:-473656,-644877:0,0,0 -k1,1237:-473656,-644877:-65536 -) -(1,1237:-473656,4736287:0,0,0 -k1,1237:-473656,4736287:5209943 -) -g1,1237:-473656,-710413 -) -] -) -[1,1237:6630773,47279633:25952256,43253760,0 -[1,1237:6630773,4812305:25952256,786432,0 -(1,1237:6630773,4812305:25952256,505283,134348 -(1,1237:6630773,4812305:25952256,505283,134348 -g1,1237:3078558,4812305 -[1,1237:3078558,4812305:0,0,0 -(1,1237:3078558,2439708:0,1703936,0 -k1,1237:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,1237:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,1237:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,1237:3078558,4812305:0,0,0 -(1,1237:3078558,2439708:0,1703936,0 -g1,1237:29030814,2439708 -g1,1237:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,1237:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,1237:37855564,2439708:1179648,16384,0 -) -) -k1,1237:3078556,2439708:-34777008 -) -] -[1,1237:3078558,4812305:0,0,0 -(1,1237:3078558,49800853:0,16384,2228224 -k1,1237:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,1237:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,1237:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,1237:3078558,4812305:0,0,0 -(1,1237:3078558,49800853:0,16384,2228224 -g1,1237:29030814,49800853 -g1,1237:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,1237:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,1237:37855564,49800853:1179648,16384,0 -) -) -k1,1237:3078556,49800853:-34777008 -) -] -g1,1237:6630773,4812305 -k1,1237:19515153,4812305:12087462 -g1,1237:20901894,4812305 -g1,1237:21550700,4812305 -g1,1237:24864855,4812305 -g1,1237:27600327,4812305 -g1,1237:29010006,4812305 -) -) -] -[1,1237:6630773,45706769:25952256,40108032,0 -(1,1237:6630773,45706769:25952256,40108032,0 -(1,1237:6630773,45706769:0,0,0 -g1,1237:6630773,45706769 -) -[1,1237:6630773,45706769:25952256,40108032,0 -v1,1159:6630773,6254097:0,393216,0 -(1,1159:6630773,12222742:25952256,6361861,616038 -g1,1159:6630773,12222742 -(1,1159:6630773,12222742:25952256,6361861,616038 -(1,1159:6630773,12838780:25952256,6977899,0 -[1,1159:6630773,12838780:25952256,6977899,0 -(1,1159:6630773,12812566:25952256,6925471,0 -r1,1237:6656987,12812566:26214,6925471,0 -[1,1159:6656987,12812566:25899828,6925471,0 -(1,1159:6656987,12222742:25899828,5745823,0 -[1,1159:7246811,12222742:24720180,5745823,0 -(1,1150:7246811,7760901:24720180,1283982,196608 -(1,1149:7246811,7760901:0,1283982,196608 -r1,1237:9812056,7760901:2565245,1480590,196608 -k1,1149:7246811,7760901:-2565245 -) -(1,1149:7246811,7760901:2565245,1283982,196608 -) -k1,1149:10070431,7760901:258375 -k1,1149:12137601,7760901:258376 -k1,1149:13415061,7760901:258375 -k1,1149:16829651,7760901:258376 -k1,1149:17747318,7760901:258375 -k1,1149:19024779,7760901:258376 -k1,1149:22037632,7760901:258375 -k1,1149:24957425,7760901:258376 -k1,1149:27291325,7760901:258375 -k1,1149:29591803,7760901:258376 -k1,1149:31041623,7760901:258375 -k1,1150:31966991,7760901:0 -) -(1,1150:7246811,8602389:24720180,513147,126483 -k1,1149:9063771,8602389:219192 -k1,1149:10579920,8602389:219191 -k1,1149:11818197,8602389:219192 -k1,1149:13209827,8602389:219191 -k1,1149:16945681,8602389:219192 -k1,1149:19175518,8602389:219192 -k1,1149:22157052,8602389:219191 -k1,1149:24560559,8602389:219192 -k1,1149:26331644,8602389:219192 -k1,1149:26949294,8602389:219191 -k1,1149:27699983,8602389:219192 -k1,1149:28275034,8602389:219191 -(1,1149:28275034,8602389:0,452978,115847 -r1,1237:30391859,8602389:2116825,568825,115847 -k1,1149:28275034,8602389:-2116825 -) -(1,1149:28275034,8602389:2116825,452978,115847 -k1,1149:28275034,8602389:3277 -h1,1149:30388582,8602389:0,411205,112570 -) -k1,1149:30611051,8602389:219192 -k1,1150:31966991,8602389:0 -) -(1,1150:7246811,9443877:24720180,505283,126483 -g1,1149:9234518,9443877 -g1,1149:10687451,9443877 -g1,1149:11990962,9443877 -g1,1149:13282676,9443877 -(1,1149:13282676,9443877:0,452978,122846 -r1,1237:17509772,9443877:4227096,575824,122846 -k1,1149:13282676,9443877:-4227096 -) -(1,1149:13282676,9443877:4227096,452978,122846 -k1,1149:13282676,9443877:3277 -h1,1149:17506495,9443877:0,411205,112570 -) -g1,1149:17709001,9443877 -g1,1149:19099675,9443877 -(1,1149:19099675,9443877:0,452978,115847 -r1,1237:22975059,9443877:3875384,568825,115847 -k1,1149:19099675,9443877:-3875384 -) -(1,1149:19099675,9443877:3875384,452978,115847 -k1,1149:19099675,9443877:3277 -h1,1149:22971782,9443877:0,411205,112570 -) -g1,1149:23174288,9443877 -g1,1149:23989555,9443877 -g1,1149:25647615,9443877 -k1,1150:31966991,9443877:2170947 -g1,1150:31966991,9443877 -) -v1,1152:7246811,10634343:0,393216,0 -(1,1157:7246811,11501846:24720180,1260719,196608 -g1,1157:7246811,11501846 -g1,1157:7246811,11501846 -g1,1157:7050203,11501846 -(1,1157:7050203,11501846:0,1260719,196608 -r1,1237:32163599,11501846:25113396,1457327,196608 -k1,1157:7050203,11501846:-25113396 -) -(1,1157:7050203,11501846:25113396,1260719,196608 -[1,1157:7246811,11501846:24720180,1064111,0 -(1,1154:7246811,10826232:24720180,388497,9436 -(1,1153:7246811,10826232:0,0,0 -g1,1153:7246811,10826232 -g1,1153:7246811,10826232 -g1,1153:6919131,10826232 -(1,1153:6919131,10826232:0,0,0 -) -g1,1153:7246811,10826232 -) -g1,1154:7879103,10826232 -g1,1154:8511395,10826232 -g1,1154:11356706,10826232 -g1,1154:11988998,10826232 -h1,1154:14518163,10826232:0,0,0 -k1,1154:31966991,10826232:17448828 -g1,1154:31966991,10826232 -) -(1,1155:7246811,11492410:24720180,388497,9436 -h1,1155:7246811,11492410:0,0,0 -g1,1155:10092122,11492410 -g1,1155:10724414,11492410 -g1,1155:13569725,11492410 -g1,1155:14202017,11492410 -h1,1155:14518163,11492410:0,0,0 -k1,1155:31966991,11492410:17448828 -g1,1155:31966991,11492410 -) -] -) -g1,1157:31966991,11501846 -g1,1157:7246811,11501846 -g1,1157:7246811,11501846 -g1,1157:31966991,11501846 -g1,1157:31966991,11501846 -) -h1,1157:7246811,11698454:0,0,0 -] -) -] -r1,1237:32583029,12812566:26214,6925471,0 -) -] -) -) -g1,1159:32583029,12222742 -) -h1,1159:6630773,12838780:0,0,0 -(1,1162:6630773,14204556:25952256,513147,134348 -h1,1161:6630773,14204556:983040,0,0 -k1,1161:9360948,14204556:281750 -k1,1161:11340736,14204556:281750 -k1,1161:14907807,14204556:281751 -k1,1161:18005639,14204556:281750 -k1,1161:18970274,14204556:281750 -k1,1161:19938186,14204556:281750 -k1,1161:21541797,14204556:281750 -k1,1161:22482839,14204556:281750 -k1,1161:27332449,14204556:281751 -k1,1161:28482551,14204556:281750 -k1,1161:30101235,14204556:281750 -k1,1161:31931601,14204556:281750 -k1,1161:32583029,14204556:0 -) -(1,1162:6630773,15046044:25952256,513147,134348 -k1,1161:9576364,15046044:174729 -k1,1161:10770178,15046044:174729 -k1,1161:13430688,15046044:174729 -k1,1161:14264709,15046044:174729 -k1,1161:17752938,15046044:174729 -k1,1161:19712212,15046044:174729 -k1,1161:20569826,15046044:174729 -k1,1161:21763640,15046044:174729 -k1,1161:24424150,15046044:174729 -k1,1161:25258171,15046044:174729 -k1,1161:27217445,15046044:174729 -k1,1161:28905400,15046044:174729 -k1,1161:30099214,15046044:174729 -k1,1161:32583029,15046044:0 -) -(1,1162:6630773,15887532:25952256,513147,134348 -k1,1161:9368633,15887532:271740 -k1,1161:10386828,15887532:271740 -k1,1161:12527000,15887532:271741 -k1,1161:14083246,15887532:271740 -k1,1161:14971024,15887532:271740 -k1,1161:16261849,15887532:271740 -k1,1161:19525309,15887532:271741 -k1,1161:21839151,15887532:271740 -k1,1161:23577587,15887532:271740 -k1,1161:24315288,15887532:271740 -k1,1161:27159316,15887532:271740 -k1,1161:27962554,15887532:271741 -k1,1161:29972309,15887532:271740 -k1,1161:31821501,15887532:271740 -k1,1161:32583029,15887532:0 -) -(1,1162:6630773,16729020:25952256,513147,126483 -k1,1161:9295247,16729020:225224 -k1,1161:11217198,16729020:225224 -k1,1161:14468218,16729020:225223 -k1,1161:16704087,16729020:225224 -(1,1161:16704087,16729020:0,452978,115847 -r1,1237:19172624,16729020:2468537,568825,115847 -k1,1161:16704087,16729020:-2468537 -) -(1,1161:16704087,16729020:2468537,452978,115847 -k1,1161:16704087,16729020:3277 -h1,1161:19169347,16729020:0,411205,112570 -) -k1,1161:19397848,16729020:225224 -k1,1161:21633717,16729020:225224 -k1,1161:23143447,16729020:225224 -k1,1161:24360231,16729020:225224 -k1,1161:27347797,16729020:225223 -k1,1161:29140642,16729020:225224 -k1,1161:30874505,16729020:225224 -k1,1161:32583029,16729020:0 -) -(1,1162:6630773,17570508:25952256,505283,126483 -k1,1161:8060230,17570508:238012 -k1,1161:9402524,17570508:238012 -k1,1161:10388302,17570508:238012 -k1,1161:12664484,17570508:238012 -k1,1161:14093941,17570508:238012 -k1,1161:15845179,17570508:238012 -k1,1161:16699230,17570508:238013 -k1,1161:21505101,17570508:238012 -k1,1161:24532981,17570508:238012 -(1,1161:24532981,17570508:0,452978,115847 -r1,1237:27001518,17570508:2468537,568825,115847 -k1,1161:24532981,17570508:-2468537 -) -(1,1161:24532981,17570508:2468537,452978,115847 -k1,1161:24532981,17570508:3277 -h1,1161:26998241,17570508:0,411205,112570 -) -k1,1161:27239530,17570508:238012 -k1,1161:28009039,17570508:238012 -k1,1161:29760277,17570508:238012 -k1,1161:30649717,17570508:238012 -k1,1161:32583029,17570508:0 -) -(1,1162:6630773,18411996:25952256,513147,126483 -k1,1161:9608477,18411996:161622 -k1,1161:10421526,18411996:161621 -k1,1161:10939008,18411996:161622 -k1,1161:13298708,18411996:161622 -k1,1161:15946110,18411996:161621 -k1,1161:16767024,18411996:161622 -k1,1161:19412461,18411996:161622 -k1,1161:21567033,18411996:161622 -k1,1161:23241880,18411996:161621 -k1,1161:24086387,18411996:161622 -k1,1161:26290766,18411996:161622 -k1,1161:27471472,18411996:161621 -k1,1161:30116909,18411996:161622 -k1,1161:32583029,18411996:0 -) -(1,1162:6630773,19253484:25952256,513147,134348 -g1,1161:8519520,19253484 -(1,1161:8519520,19253484:0,459977,122846 -r1,1237:11339769,19253484:2820249,582823,122846 -k1,1161:8519520,19253484:-2820249 -) -(1,1161:8519520,19253484:2820249,459977,122846 -k1,1161:8519520,19253484:3277 -h1,1161:11336492,19253484:0,411205,112570 -) -g1,1161:11538998,19253484 -g1,1161:14001841,19253484 -g1,1161:14852498,19253484 -g1,1161:16070812,19253484 -g1,1161:19427566,19253484 -g1,1161:22112576,19253484 -g1,1161:22971097,19253484 -g1,1161:26483826,19253484 -k1,1162:32583029,19253484:4140987 -g1,1162:32583029,19253484 -) -v1,1164:6630773,20443950:0,393216,0 -(1,1215:6630773,37164423:25952256,17113689,196608 -g1,1215:6630773,37164423 -g1,1215:6630773,37164423 -g1,1215:6434165,37164423 -(1,1215:6434165,37164423:0,17113689,196608 -r1,1237:32779637,37164423:26345472,17310297,196608 -k1,1215:6434165,37164423:-26345472 -) -(1,1215:6434165,37164423:26345472,17113689,196608 -[1,1215:6630773,37164423:25952256,16917081,0 -(1,1166:6630773,20651568:25952256,404226,107478 -(1,1165:6630773,20651568:0,0,0 -g1,1165:6630773,20651568 -g1,1165:6630773,20651568 -g1,1165:6303093,20651568 -(1,1165:6303093,20651568:0,0,0 -) -g1,1165:6630773,20651568 -) -k1,1166:6630773,20651568:0 -g1,1166:12005250,20651568 -g1,1166:14218270,20651568 -g1,1166:14850562,20651568 -h1,1166:15482854,20651568:0,0,0 -k1,1166:32583030,20651568:17100176 -g1,1166:32583030,20651568 -) -(1,1170:6630773,21383282:25952256,404226,76021 -(1,1168:6630773,21383282:0,0,0 -g1,1168:6630773,21383282 -g1,1168:6630773,21383282 -g1,1168:6303093,21383282 -(1,1168:6303093,21383282:0,0,0 -) -g1,1168:6630773,21383282 -) -g1,1170:7579210,21383282 -g1,1170:8843793,21383282 -h1,1170:10424521,21383282:0,0,0 -k1,1170:32583029,21383282:22158508 -g1,1170:32583029,21383282 -) -(1,1172:6630773,22704820:25952256,410518,107478 -(1,1171:6630773,22704820:0,0,0 -g1,1171:6630773,22704820 -g1,1171:6630773,22704820 -g1,1171:6303093,22704820 -(1,1171:6303093,22704820:0,0,0 -) -g1,1171:6630773,22704820 -) -k1,1172:6630773,22704820:0 -g1,1172:12321396,22704820 -g1,1172:14534416,22704820 -g1,1172:15166708,22704820 -h1,1172:15799000,22704820:0,0,0 -k1,1172:32583028,22704820:16784028 -g1,1172:32583028,22704820 -) -(1,1176:6630773,23436534:25952256,404226,76021 -(1,1174:6630773,23436534:0,0,0 -g1,1174:6630773,23436534 -g1,1174:6630773,23436534 -g1,1174:6303093,23436534 -(1,1174:6303093,23436534:0,0,0 -) -g1,1174:6630773,23436534 -) -g1,1176:7579210,23436534 -g1,1176:8843793,23436534 -h1,1176:10740667,23436534:0,0,0 -k1,1176:32583029,23436534:21842362 -g1,1176:32583029,23436534 -) -(1,1178:6630773,24758072:25952256,404226,107478 -(1,1177:6630773,24758072:0,0,0 -g1,1177:6630773,24758072 -g1,1177:6630773,24758072 -g1,1177:6303093,24758072 -(1,1177:6303093,24758072:0,0,0 -) -g1,1177:6630773,24758072 -) -k1,1178:6630773,24758072:0 -g1,1178:12005250,24758072 -g1,1178:14218270,24758072 -g1,1178:14850562,24758072 -h1,1178:15482854,24758072:0,0,0 -k1,1178:32583030,24758072:17100176 -g1,1178:32583030,24758072 -) -(1,1182:6630773,25489786:25952256,404226,76021 -(1,1180:6630773,25489786:0,0,0 -g1,1180:6630773,25489786 -g1,1180:6630773,25489786 -g1,1180:6303093,25489786 -(1,1180:6303093,25489786:0,0,0 -) -g1,1180:6630773,25489786 -) -g1,1182:7579210,25489786 -g1,1182:8843793,25489786 -h1,1182:11372958,25489786:0,0,0 -k1,1182:32583030,25489786:21210072 -g1,1182:32583030,25489786 -) -(1,1184:6630773,26811324:25952256,410518,107478 -(1,1183:6630773,26811324:0,0,0 -g1,1183:6630773,26811324 -g1,1183:6630773,26811324 -g1,1183:6303093,26811324 -(1,1183:6303093,26811324:0,0,0 -) -g1,1183:6630773,26811324 -) -k1,1184:6630773,26811324:0 -g1,1184:12321396,26811324 -g1,1184:14534416,26811324 -g1,1184:15166708,26811324 -h1,1184:15799000,26811324:0,0,0 -k1,1184:32583028,26811324:16784028 -g1,1184:32583028,26811324 -) -(1,1188:6630773,27543038:25952256,404226,76021 -(1,1186:6630773,27543038:0,0,0 -g1,1186:6630773,27543038 -g1,1186:6630773,27543038 -g1,1186:6303093,27543038 -(1,1186:6303093,27543038:0,0,0 -) -g1,1186:6630773,27543038 -) -g1,1188:7579210,27543038 -g1,1188:8843793,27543038 -h1,1188:10108376,27543038:0,0,0 -k1,1188:32583028,27543038:22474652 -g1,1188:32583028,27543038 -) -(1,1190:6630773,28864576:25952256,404226,107478 -(1,1189:6630773,28864576:0,0,0 -g1,1189:6630773,28864576 -g1,1189:6630773,28864576 -g1,1189:6303093,28864576 -(1,1189:6303093,28864576:0,0,0 -) -g1,1189:6630773,28864576 -) -k1,1190:6630773,28864576:0 -g1,1190:12005250,28864576 -g1,1190:14218270,28864576 -g1,1190:14850562,28864576 -k1,1190:14850562,28864576:0 -h1,1190:15799000,28864576:0,0,0 -k1,1190:32583028,28864576:16784028 -g1,1190:32583028,28864576 -) -(1,1194:6630773,29596290:25952256,404226,76021 -(1,1192:6630773,29596290:0,0,0 -g1,1192:6630773,29596290 -g1,1192:6630773,29596290 -g1,1192:6303093,29596290 -(1,1192:6303093,29596290:0,0,0 -) -g1,1192:6630773,29596290 -) -g1,1194:7579210,29596290 -g1,1194:8843793,29596290 -h1,1194:10108376,29596290:0,0,0 -k1,1194:32583028,29596290:22474652 -g1,1194:32583028,29596290 -) -(1,1196:6630773,30917828:25952256,388497,9436 -(1,1195:6630773,30917828:0,0,0 -g1,1195:6630773,30917828 -g1,1195:6630773,30917828 -g1,1195:6303093,30917828 -(1,1195:6303093,30917828:0,0,0 -) -g1,1195:6630773,30917828 -) -g1,1196:7263065,30917828 -g1,1196:8211503,30917828 -h1,1196:10424523,30917828:0,0,0 -k1,1196:32583029,30917828:22158506 -g1,1196:32583029,30917828 -) -(1,1197:6630773,31584006:25952256,404226,107478 -h1,1197:6630773,31584006:0,0,0 -g1,1197:7263065,31584006 -g1,1197:8211503,31584006 -g1,1197:11056814,31584006 -g1,1197:13269834,31584006 -g1,1197:13902126,31584006 -h1,1197:14534418,31584006:0,0,0 -k1,1197:32583030,31584006:18048612 -g1,1197:32583030,31584006 -) -(1,1198:6630773,32250184:25952256,404226,6290 -h1,1198:6630773,32250184:0,0,0 -g1,1198:7263065,32250184 -g1,1198:8211502,32250184 -h1,1198:8527648,32250184:0,0,0 -k1,1198:32583028,32250184:24055380 -g1,1198:32583028,32250184 -) -(1,1202:6630773,32981898:25952256,404226,76021 -(1,1200:6630773,32981898:0,0,0 -g1,1200:6630773,32981898 -g1,1200:6630773,32981898 -g1,1200:6303093,32981898 -(1,1200:6303093,32981898:0,0,0 -) -g1,1200:6630773,32981898 -) -g1,1202:7579210,32981898 -g1,1202:8843793,32981898 -h1,1202:10424521,32981898:0,0,0 -k1,1202:32583029,32981898:22158508 -g1,1202:32583029,32981898 -) -(1,1204:6630773,34303436:25952256,404226,6290 -(1,1203:6630773,34303436:0,0,0 -g1,1203:6630773,34303436 -g1,1203:6630773,34303436 -g1,1203:6303093,34303436 -(1,1203:6303093,34303436:0,0,0 -) -g1,1203:6630773,34303436 -) -g1,1204:7263065,34303436 -g1,1204:7895357,34303436 -h1,1204:8211503,34303436:0,0,0 -k1,1204:32583029,34303436:24371526 -g1,1204:32583029,34303436 -) -(1,1208:6630773,35035150:25952256,404226,76021 -(1,1206:6630773,35035150:0,0,0 -g1,1206:6630773,35035150 -g1,1206:6630773,35035150 -g1,1206:6303093,35035150 -(1,1206:6303093,35035150:0,0,0 -) -g1,1206:6630773,35035150 -) -g1,1208:7579210,35035150 -g1,1208:8843793,35035150 -h1,1208:11056813,35035150:0,0,0 -k1,1208:32583029,35035150:21526216 -g1,1208:32583029,35035150 -) -(1,1210:6630773,36356688:25952256,404226,6290 -(1,1209:6630773,36356688:0,0,0 -g1,1209:6630773,36356688 -g1,1209:6630773,36356688 -g1,1209:6303093,36356688 -(1,1209:6303093,36356688:0,0,0 -) -g1,1209:6630773,36356688 -) -h1,1210:6946919,36356688:0,0,0 -k1,1210:32583029,36356688:25636110 -g1,1210:32583029,36356688 -) -(1,1214:6630773,37088402:25952256,404226,76021 -(1,1212:6630773,37088402:0,0,0 -g1,1212:6630773,37088402 -g1,1212:6630773,37088402 -g1,1212:6303093,37088402 -(1,1212:6303093,37088402:0,0,0 -) -g1,1212:6630773,37088402 -) -g1,1214:7579210,37088402 -g1,1214:8843793,37088402 -h1,1214:10108376,37088402:0,0,0 -k1,1214:32583028,37088402:22474652 -g1,1214:32583028,37088402 -) -] -) -g1,1215:32583029,37164423 -g1,1215:6630773,37164423 -g1,1215:6630773,37164423 -g1,1215:32583029,37164423 -g1,1215:32583029,37164423 -) -h1,1215:6630773,37361031:0,0,0 -v1,1219:6630773,39251095:0,393216,0 -(1,1237:6630773,42445261:25952256,3587382,589824 -g1,1237:6630773,42445261 -(1,1237:6630773,42445261:25952256,3587382,589824 -(1,1237:6630773,43035085:25952256,4177206,0 -[1,1237:6630773,43035085:25952256,4177206,0 -(1,1237:6630773,43035085:25952256,4150992,0 -r1,1237:6656987,43035085:26214,4150992,0 -[1,1237:6656987,43035085:25899828,4150992,0 -(1,1237:6656987,42445261:25899828,2971344,0 -[1,1237:7246811,42445261:24720180,2971344,0 -(1,1220:7246811,40635802:24720180,1161885,196608 -(1,1219:7246811,40635802:0,1161885,196608 -r1,1237:8794447,40635802:1547636,1358493,196608 -k1,1219:7246811,40635802:-1547636 -) -(1,1219:7246811,40635802:1547636,1161885,196608 -) -k1,1219:8962903,40635802:168456 -k1,1219:10868063,40635802:168456 -(1,1219:10868063,40635802:0,452978,122846 -r1,1237:12984888,40635802:2116825,575824,122846 -k1,1219:10868063,40635802:-2116825 -) -(1,1219:10868063,40635802:2116825,452978,122846 -k1,1219:10868063,40635802:3277 -h1,1219:12981611,40635802:0,411205,112570 -) -k1,1219:13327014,40635802:168456 -k1,1219:14514555,40635802:168456 -k1,1219:16924342,40635802:168456 -k1,1219:20373529,40635802:168455 -k1,1219:21201277,40635802:168456 -k1,1219:23066460,40635802:168456 -k1,1219:26434384,40635802:168456 -k1,1219:27621925,40635802:168456 -k1,1219:30862709,40635802:168456 -k1,1219:31966991,40635802:0 -) -(1,1220:7246811,41477290:24720180,513147,126483 -k1,1219:8744964,41477290:212337 -k1,1219:9705066,41477290:212336 -k1,1219:12122690,41477290:212337 -k1,1219:13096554,41477290:212336 -k1,1219:16096793,41477290:212337 -k1,1219:19243831,41477290:212336 -k1,1219:20952355,41477290:212337 -k1,1219:21696188,41477290:212336 -k1,1219:24195732,41477290:212337 -k1,1219:26278466,41477290:212336 -k1,1219:27142231,41477290:212337 -k1,1219:31019340,41477290:212336 -k1,1219:31966991,41477290:0 -) -(1,1220:7246811,42318778:24720180,505283,126483 -g1,1219:9996701,42318778 -g1,1219:11893968,42318778 -g1,1219:15373929,42318778 -g1,1219:17641474,42318778 -g1,1219:18832263,42318778 -g1,1219:20775405,42318778 -k1,1220:31966991,42318778:8686800 -g1,1220:31966991,42318778 -) -] -) -] -r1,1237:32583029,43035085:26214,4150992,0 -) -] -) -) -g1,1237:32583029,42445261 -) -] -(1,1237:32583029,45706769:0,0,0 -g1,1237:32583029,45706769 -) -) -] -(1,1237:6630773,47279633:25952256,0,0 -h1,1237:6630773,47279633:25952256,0,0 -) -] -(1,1237:4262630,4025873:0,0,0 -[1,1237:-473656,4025873:0,0,0 -(1,1237:-473656,-710413:0,0,0 -(1,1237:-473656,-710413:0,0,0 -g1,1237:-473656,-710413 -) -g1,1237:-473656,-710413 -) -] -) -] -!20711 -}41 -Input:318:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:319:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:320:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:321:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:322:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:323:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:324:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:325:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:326:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:327:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:328:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:329:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:330:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:331:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:332:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:333:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:334:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:335:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1649 -{42 -[1,1300:4262630,47279633:28320399,43253760,0 -(1,1300:4262630,4025873:0,0,0 -[1,1300:-473656,4025873:0,0,0 -(1,1300:-473656,-710413:0,0,0 -(1,1300:-473656,-644877:0,0,0 -k1,1300:-473656,-644877:-65536 -) -(1,1300:-473656,4736287:0,0,0 -k1,1300:-473656,4736287:5209943 -) -g1,1300:-473656,-710413 -) -] -) -[1,1300:6630773,47279633:25952256,43253760,0 -[1,1300:6630773,4812305:25952256,786432,0 -(1,1300:6630773,4812305:25952256,505283,134348 -(1,1300:6630773,4812305:25952256,505283,134348 -g1,1300:3078558,4812305 -[1,1300:3078558,4812305:0,0,0 -(1,1300:3078558,2439708:0,1703936,0 -k1,1300:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,1300:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,1300:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,1300:3078558,4812305:0,0,0 -(1,1300:3078558,2439708:0,1703936,0 -g1,1300:29030814,2439708 -g1,1300:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,1300:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,1300:37855564,2439708:1179648,16384,0 -) -) -k1,1300:3078556,2439708:-34777008 -) -] -[1,1300:3078558,4812305:0,0,0 -(1,1300:3078558,49800853:0,16384,2228224 -k1,1300:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,1300:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,1300:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,1300:3078558,4812305:0,0,0 -(1,1300:3078558,49800853:0,16384,2228224 -g1,1300:29030814,49800853 -g1,1300:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,1300:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,1300:37855564,49800853:1179648,16384,0 -) -) -k1,1300:3078556,49800853:-34777008 -) -] -g1,1300:6630773,4812305 -g1,1300:6630773,4812305 -g1,1300:9062814,4812305 -g1,1300:11256304,4812305 -g1,1300:12665983,4812305 -g1,1300:15337230,4812305 -g1,1300:17955393,4812305 -k1,1300:31786111,4812305:13830718 -) -) -] -[1,1300:6630773,45706769:25952256,40108032,0 -(1,1300:6630773,45706769:25952256,40108032,0 -(1,1300:6630773,45706769:0,0,0 -g1,1300:6630773,45706769 -) -[1,1300:6630773,45706769:25952256,40108032,0 -v1,1237:6630773,6254097:0,393216,0 -(1,1237:6630773,10633422:25952256,4772541,616038 -g1,1237:6630773,10633422 -(1,1237:6630773,10633422:25952256,4772541,616038 -(1,1237:6630773,11249460:25952256,5388579,0 -[1,1237:6630773,11249460:25952256,5388579,0 -(1,1237:6630773,11223246:25952256,5362365,0 -r1,1300:6656987,11223246:26214,5362365,0 -[1,1237:6656987,11223246:25899828,5362365,0 -(1,1237:6656987,10633422:25899828,4182717,0 -[1,1237:7246811,10633422:24720180,4182717,0 -v1,1222:7246811,6843921:0,393216,0 -(1,1235:7246811,9912526:24720180,3461821,196608 -g1,1235:7246811,9912526 -g1,1235:7246811,9912526 -g1,1235:7050203,9912526 -(1,1235:7050203,9912526:0,3461821,196608 -r1,1300:32163599,9912526:25113396,3658429,196608 -k1,1235:7050203,9912526:-25113396 -) -(1,1235:7050203,9912526:25113396,3461821,196608 -[1,1235:7246811,9912526:24720180,3265213,0 -(1,1224:7246811,7051539:24720180,404226,107478 -(1,1223:7246811,7051539:0,0,0 -g1,1223:7246811,7051539 -g1,1223:7246811,7051539 -g1,1223:6919131,7051539 -(1,1223:6919131,7051539:0,0,0 -) -g1,1223:7246811,7051539 -) -k1,1224:7246811,7051539:0 -g1,1224:12621288,7051539 -g1,1224:14834308,7051539 -g1,1224:15466600,7051539 -h1,1224:16098892,7051539:0,0,0 -k1,1224:31966991,7051539:15868099 -g1,1224:31966991,7051539 -) -(1,1228:7246811,7783253:24720180,404226,76021 -(1,1226:7246811,7783253:0,0,0 -g1,1226:7246811,7783253 -g1,1226:7246811,7783253 -g1,1226:6919131,7783253 -(1,1226:6919131,7783253:0,0,0 -) -g1,1226:7246811,7783253 -) -g1,1228:8195248,7783253 -g1,1228:9459831,7783253 -h1,1228:11040559,7783253:0,0,0 -k1,1228:31966991,7783253:20926432 -g1,1228:31966991,7783253 -) -(1,1230:7246811,9104791:24720180,404226,82312 -(1,1229:7246811,9104791:0,0,0 -g1,1229:7246811,9104791 -g1,1229:7246811,9104791 -g1,1229:6919131,9104791 -(1,1229:6919131,9104791:0,0,0 -) -g1,1229:7246811,9104791 -) -k1,1230:7246811,9104791:0 -g1,1230:12621288,9104791 -h1,1230:13253580,9104791:0,0,0 -k1,1230:31966992,9104791:18713412 -g1,1230:31966992,9104791 -) -(1,1234:7246811,9836505:24720180,404226,76021 -(1,1232:7246811,9836505:0,0,0 -g1,1232:7246811,9836505 -g1,1232:7246811,9836505 -g1,1232:6919131,9836505 -(1,1232:6919131,9836505:0,0,0 -) -g1,1232:7246811,9836505 -) -g1,1234:8195248,9836505 -g1,1234:9459831,9836505 -h1,1234:11040559,9836505:0,0,0 -k1,1234:31966991,9836505:20926432 -g1,1234:31966991,9836505 -) -] -) -g1,1235:31966991,9912526 -g1,1235:7246811,9912526 -g1,1235:7246811,9912526 -g1,1235:31966991,9912526 -g1,1235:31966991,9912526 -) -h1,1235:7246811,10109134:0,0,0 -] -) -] -r1,1300:32583029,11223246:26214,5362365,0 -) -] -) -) -g1,1237:32583029,10633422 -) -h1,1237:6630773,11249460:0,0,0 -(1,1240:6630773,12405520:25952256,513147,126483 -h1,1239:6630773,12405520:983040,0,0 -k1,1239:10986183,12405520:252201 -(1,1239:10986183,12405520:0,452978,115847 -r1,1300:13454720,12405520:2468537,568825,115847 -k1,1239:10986183,12405520:-2468537 -) -(1,1239:10986183,12405520:2468537,452978,115847 -k1,1239:10986183,12405520:3277 -h1,1239:13451443,12405520:0,411205,112570 -) -k1,1239:13706921,12405520:252201 -k1,1239:15150567,12405520:252201 -(1,1239:15150567,12405520:0,452978,122846 -r1,1300:18322527,12405520:3171960,575824,122846 -k1,1239:15150567,12405520:-3171960 -) -(1,1239:15150567,12405520:3171960,452978,122846 -k1,1239:15150567,12405520:3277 -h1,1239:18319250,12405520:0,411205,112570 -) -k1,1239:18574728,12405520:252201 -k1,1239:20837575,12405520:252202 -k1,1239:22108861,12405520:252201 -k1,1239:26869284,12405520:252201 -k1,1239:28443346,12405520:252201 -k1,1239:29354839,12405520:252201 -k1,1239:29962900,12405520:252201 -k1,1239:32583029,12405520:0 -) -(1,1240:6630773,13247008:25952256,513147,134348 -k1,1239:8500796,13247008:189680 -k1,1239:9376638,13247008:189680 -k1,1239:9922178,13247008:189680 -k1,1239:11395052,13247008:189679 -k1,1239:14204861,13247008:189680 -k1,1239:16248555,13247008:189680 -k1,1239:17996026,13247008:189680 -k1,1239:19928964,13247008:189680 -k1,1239:20734682,13247008:189680 -k1,1239:22254743,13247008:189680 -k1,1239:23824610,13247008:189679 -k1,1239:26173046,13247008:189680 -k1,1239:29017589,13247008:189680 -k1,1239:31391584,13247008:189680 -k1,1239:32583029,13247008:0 -) -(1,1240:6630773,14088496:25952256,513147,7863 -g1,1239:9100825,14088496 -g1,1239:9959346,14088496 -g1,1239:11797630,14088496 -g1,1239:14260473,14088496 -g1,1239:15478787,14088496 -g1,1239:18456743,14088496 -g1,1239:20336315,14088496 -g1,1239:21186972,14088496 -g1,1239:22405286,14088496 -g1,1239:24945461,14088496 -g1,1239:27027539,14088496 -k1,1240:32583029,14088496:2896039 -g1,1240:32583029,14088496 -) -v1,1242:6630773,15244556:0,393216,0 -(1,1248:6630773,23827315:25952256,8975975,616038 -g1,1248:6630773,23827315 -(1,1248:6630773,23827315:25952256,8975975,616038 -(1,1248:6630773,24443353:25952256,9592013,0 -[1,1248:6630773,24443353:25952256,9592013,0 -(1,1248:6630773,24417139:25952256,9539585,0 -r1,1300:6656987,24417139:26214,9539585,0 -[1,1248:6656987,24417139:25899828,9539585,0 -(1,1248:6656987,23827315:25899828,8359937,0 -[1,1248:7246811,23827315:24720180,8359937,0 -(1,1243:7246811,16554752:24720180,1087374,115847 -k1,1242:8663834,16554752:207320 -k1,1242:10504967,16554752:207320 -k1,1242:12205197,16554752:207320 -k1,1242:14092860,16554752:207320 -k1,1242:17632031,16554752:207321 -k1,1242:19904390,16554752:207320 -k1,1242:22901578,16554752:207320 -(1,1242:22901578,16554752:0,452978,115847 -r1,1300:25370115,16554752:2468537,568825,115847 -k1,1242:22901578,16554752:-2468537 -) -(1,1242:22901578,16554752:2468537,452978,115847 -k1,1242:22901578,16554752:3277 -h1,1242:25366838,16554752:0,411205,112570 -) -k1,1242:25577435,16554752:207320 -k1,1242:28783682,16554752:207320 -k1,1242:29346862,16554752:207320 -k1,1242:31966991,16554752:0 -) -(1,1243:7246811,17396240:24720180,505283,122846 -g1,1242:9300054,17396240 -g1,1242:10571452,17396240 -g1,1242:11228778,17396240 -g1,1242:12920917,17396240 -g1,1242:14186417,17396240 -g1,1242:16396291,17396240 -g1,1242:17366223,17396240 -(1,1242:17366223,17396240:0,452978,122846 -r1,1300:19834760,17396240:2468537,575824,122846 -k1,1242:17366223,17396240:-2468537 -) -(1,1242:17366223,17396240:2468537,452978,122846 -k1,1242:17366223,17396240:3277 -h1,1242:19831483,17396240:0,411205,112570 -) -k1,1243:31966991,17396240:11958561 -g1,1243:31966991,17396240 -) -(1,1245:8295387,18762016:23671604,513147,126483 -(1,1244:8295387,18762016:0,355205,0 -g1,1244:8295387,18762016 -g1,1244:6984667,18762016 -g1,1244:6656987,18762016 -(1,1244:6656987,18762016:1310720,355205,0 -k1,1244:7967707,18762016:1310720 -(1,1244:7967707,18762016:0,355205,0 -k1,1244:7569248,18762016:-398459 -) -) -g1,1244:8295387,18762016 -) -k1,1244:10835698,18762016:148247 -k1,1244:12314327,18762016:148248 -(1,1244:12314327,18762016:0,452978,115847 -r1,1300:14782864,18762016:2468537,568825,115847 -k1,1244:12314327,18762016:-2468537 -) -(1,1244:12314327,18762016:2468537,452978,115847 -k1,1244:12314327,18762016:3277 -h1,1244:14779587,18762016:0,411205,112570 -) -k1,1244:14931111,18762016:148247 -k1,1244:16270803,18762016:148247 -(1,1244:16270803,18762016:0,452978,122846 -r1,1300:19442763,18762016:3171960,575824,122846 -k1,1244:16270803,18762016:-3171960 -) -(1,1244:16270803,18762016:3171960,452978,122846 -k1,1244:16270803,18762016:3277 -h1,1244:19439486,18762016:0,411205,112570 -) -k1,1244:19591011,18762016:148248 -k1,1244:21656186,18762016:148247 -k1,1244:23173481,18762016:148248 -k1,1244:24960783,18762016:148247 -k1,1244:26575726,18762016:148247 -k1,1244:28117925,18762016:148248 -k1,1244:30775546,18762016:148247 -k1,1244:31966991,18762016:0 -) -(1,1245:8295387,19603504:23671604,505283,134348 -g1,1244:11149479,19603504 -k1,1245:31966990,19603504:18633196 -g1,1245:31966990,19603504 -) -(1,1246:8295387,20969280:23671604,513147,126483 -(1,1245:8295387,20969280:0,355205,0 -g1,1245:8295387,20969280 -g1,1245:6984667,20969280 -g1,1245:6656987,20969280 -(1,1245:6656987,20969280:1310720,355205,0 -k1,1245:7967707,20969280:1310720 -(1,1245:7967707,20969280:0,355205,0 -k1,1245:7569248,20969280:-398459 -) -) -g1,1245:8295387,20969280 -) -k1,1245:11813923,20969280:196516 -k1,1245:13159284,20969280:196515 -k1,1245:16051296,20969280:196516 -(1,1245:16051296,20969280:0,452978,115847 -r1,1300:17816409,20969280:1765113,568825,115847 -k1,1245:16051296,20969280:-1765113 -) -(1,1245:16051296,20969280:1765113,452978,115847 -k1,1245:16051296,20969280:3277 -h1,1245:17813132,20969280:0,411205,112570 -) -k1,1245:18012924,20969280:196515 -k1,1245:19400885,20969280:196516 -k1,1245:22674315,20969280:196515 -(1,1245:22674315,20969280:0,414482,115847 -r1,1300:23032581,20969280:358266,530329,115847 -k1,1245:22674315,20969280:-358266 -) -(1,1245:22674315,20969280:358266,414482,115847 -k1,1245:22674315,20969280:3277 -h1,1245:23029304,20969280:0,411205,112570 -) -k1,1245:23229097,20969280:196516 -k1,1245:24617058,20969280:196516 -(1,1245:24617058,20969280:0,414482,115847 -r1,1300:24975324,20969280:358266,530329,115847 -k1,1245:24617058,20969280:-358266 -) -(1,1245:24617058,20969280:358266,414482,115847 -k1,1245:24617058,20969280:3277 -h1,1245:24972047,20969280:0,411205,112570 -) -k1,1245:25171839,20969280:196515 -k1,1245:26019783,20969280:196516 -k1,1245:29472127,20969280:196515 -k1,1245:30687728,20969280:196516 -k1,1246:31966991,20969280:0 -) -(1,1246:8295387,21810768:23671604,513147,126483 -g1,1245:9587101,21810768 -g1,1245:10453486,21810768 -(1,1245:10453486,21810768:0,452978,115847 -r1,1300:12922023,21810768:2468537,568825,115847 -k1,1245:10453486,21810768:-2468537 -) -(1,1245:10453486,21810768:2468537,452978,115847 -k1,1245:10453486,21810768:3277 -h1,1245:12918746,21810768:0,411205,112570 -) -g1,1245:13121252,21810768 -g1,1245:14511926,21810768 -(1,1245:14511926,21810768:0,452978,122846 -r1,1300:17683886,21810768:3171960,575824,122846 -k1,1245:14511926,21810768:-3171960 -) -(1,1245:14511926,21810768:3171960,452978,122846 -k1,1245:14511926,21810768:3277 -h1,1245:17680609,21810768:0,411205,112570 -) -g1,1245:17883115,21810768 -g1,1245:19029995,21810768 -g1,1245:20248309,21810768 -g1,1245:23209881,21810768 -k1,1246:31966991,21810768:6544615 -g1,1246:31966991,21810768 -) -(1,1247:8295387,23176544:23671604,513147,126483 -(1,1246:8295387,23176544:0,355205,0 -g1,1246:8295387,23176544 -g1,1246:6984667,23176544 -g1,1246:6656987,23176544 -(1,1246:6656987,23176544:1310720,355205,0 -k1,1246:7967707,23176544:1310720 -(1,1246:7967707,23176544:0,355205,0 -k1,1246:7569248,23176544:-398459 -) -) -g1,1246:8295387,23176544 -) -g1,1246:9720795,23176544 -(1,1246:9720795,23176544:0,452978,115847 -r1,1300:12189332,23176544:2468537,568825,115847 -k1,1246:9720795,23176544:-2468537 -) -(1,1246:9720795,23176544:2468537,452978,115847 -k1,1246:9720795,23176544:3277 -h1,1246:12186055,23176544:0,411205,112570 -) -g1,1246:12388561,23176544 -g1,1246:13779235,23176544 -(1,1246:13779235,23176544:0,452978,122846 -r1,1300:16951195,23176544:3171960,575824,122846 -k1,1246:13779235,23176544:-3171960 -) -(1,1246:13779235,23176544:3171960,452978,122846 -k1,1246:13779235,23176544:3277 -h1,1246:16947918,23176544:0,411205,112570 -) -g1,1246:17150424,23176544 -g1,1246:18097419,23176544 -g1,1246:21795615,23176544 -g1,1246:23380930,23176544 -g1,1246:27056844,23176544 -g1,1246:30281870,23176544 -g1,1246:31097137,23176544 -k1,1247:31966991,23176544:127986 -g1,1247:31966991,23176544 -) -] -) -] -r1,1300:32583029,24417139:26214,9539585,0 -) -] -) -) -g1,1248:32583029,23827315 -) -h1,1248:6630773,24443353:0,0,0 -(1,1252:6630773,27565493:25952256,32768,229376 -(1,1252:6630773,27565493:0,32768,229376 -(1,1252:6630773,27565493:5505024,32768,229376 -r1,1300:12135797,27565493:5505024,262144,229376 -) -k1,1252:6630773,27565493:-5505024 -) -(1,1252:6630773,27565493:25952256,32768,0 -r1,1300:32583029,27565493:25952256,32768,0 -) -) -(1,1252:6630773,29169821:25952256,606339,161218 -(1,1252:6630773,29169821:1974731,582746,0 -g1,1252:6630773,29169821 -g1,1252:8605504,29169821 -) -g1,1252:11640345,29169821 -g1,1252:14463636,29169821 -g1,1252:16173339,29169821 -g1,1252:19540841,29169821 -k1,1252:32583029,29169821:10132389 -g1,1252:32583029,29169821 -) -(1,1255:6630773,30404525:25952256,505283,126483 -k1,1254:8420360,30404525:155774 -k1,1254:9192172,30404525:155774 -k1,1254:13384308,30404525:155774 -k1,1254:14531642,30404525:155774 -k1,1254:16974623,30404525:155774 -k1,1254:18998173,30404525:155774 -k1,1254:21665288,30404525:155775 -k1,1254:24005377,30404525:155774 -k1,1254:25152711,30404525:155774 -k1,1254:27176261,30404525:155774 -(1,1254:27176261,30404525:0,452978,122846 -r1,1300:29644798,30404525:2468537,575824,122846 -k1,1254:27176261,30404525:-2468537 -) -(1,1254:27176261,30404525:2468537,452978,122846 -k1,1254:27176261,30404525:3277 -h1,1254:29641521,30404525:0,411205,112570 -) -k1,1254:29800572,30404525:155774 -k1,1254:31966991,30404525:155774 -k1,1255:32583029,30404525:0 -) -(1,1255:6630773,31246013:25952256,505283,126483 -k1,1254:7422126,31246013:202840 -k1,1254:9182756,31246013:202839 -k1,1254:10489878,31246013:202840 -k1,1254:12167932,31246013:202839 -k1,1254:13746373,31246013:202840 -k1,1254:15121651,31246013:202839 -k1,1254:17335136,31246013:202840 -(1,1254:17335136,31246013:0,414482,115847 -r1,1300:18748537,31246013:1413401,530329,115847 -k1,1254:17335136,31246013:-1413401 -) -(1,1254:17335136,31246013:1413401,414482,115847 -k1,1254:17335136,31246013:3277 -h1,1254:18745260,31246013:0,411205,112570 -) -k1,1254:18951376,31246013:202839 -k1,1254:20345661,31246013:202840 -(1,1254:20345661,31246013:0,414482,115847 -r1,1300:22110774,31246013:1765113,530329,115847 -k1,1254:20345661,31246013:-1765113 -) -(1,1254:20345661,31246013:1765113,414482,115847 -k1,1254:20345661,31246013:3277 -h1,1254:22107497,31246013:0,411205,112570 -) -k1,1254:22487283,31246013:202839 -k1,1254:23306161,31246013:202840 -k1,1254:26175005,31246013:202839 -k1,1254:27029273,31246013:202840 -(1,1254:27029273,31246013:0,414482,115847 -r1,1300:27739251,31246013:709978,530329,115847 -k1,1254:27029273,31246013:-709978 -) -(1,1254:27029273,31246013:709978,414482,115847 -k1,1254:27029273,31246013:3277 -h1,1254:27735974,31246013:0,411205,112570 -) -k1,1254:27942090,31246013:202839 -k1,1254:29418295,31246013:202840 -k1,1254:32583029,31246013:0 -) -(1,1255:6630773,32087501:25952256,505283,126483 -k1,1254:8368584,32087501:180020 -k1,1254:9540165,32087501:180021 -k1,1254:12028363,32087501:180020 -k1,1254:12894545,32087501:180020 -k1,1254:13840681,32087501:180020 -k1,1254:15722672,32087501:180021 -k1,1254:18064725,32087501:180020 -k1,1254:19961133,32087501:180020 -k1,1254:20757191,32087501:180020 -k1,1254:21352035,32087501:180001 -k1,1254:22500678,32087501:180021 -k1,1254:24840110,32087501:180020 -k1,1254:25888482,32087501:180020 -k1,1254:27806517,32087501:180020 -k1,1254:29271044,32087501:180021 -k1,1254:30902686,32087501:180020 -k1,1254:32583029,32087501:0 -) -(1,1255:6630773,32928989:25952256,513147,134348 -k1,1254:7417806,32928989:255536 -k1,1254:8739612,32928989:255535 -k1,1254:12256875,32928989:255536 -k1,1254:13171702,32928989:255535 -k1,1254:16060475,32928989:255536 -k1,1254:18148398,32928989:255536 -k1,1254:19395493,32928989:255535 -k1,1254:20936845,32928989:255536 -k1,1254:23262007,32928989:255535 -k1,1254:26594458,32928989:255536 -k1,1254:28134499,32928989:255535 -k1,1254:30071689,32928989:255536 -k1,1254:32583029,32928989:0 -) -(1,1255:6630773,33770477:25952256,513147,134348 -g1,1254:9330856,33770477 -g1,1254:10157920,33770477 -g1,1254:11376234,33770477 -g1,1254:13546131,33770477 -g1,1254:15613791,33770477 -g1,1254:16681372,33770477 -g1,1254:19291671,33770477 -g1,1254:20300270,33770477 -(1,1254:20300270,33770477:0,452978,122846 -r1,1300:22768807,33770477:2468537,575824,122846 -k1,1254:20300270,33770477:-2468537 -) -(1,1254:20300270,33770477:2468537,452978,122846 -k1,1254:20300270,33770477:3277 -h1,1254:22765530,33770477:0,411205,112570 -) -g1,1254:22968036,33770477 -g1,1254:25475443,33770477 -g1,1254:26333964,33770477 -g1,1254:28546459,33770477 -k1,1255:32583029,33770477:2706189 -g1,1255:32583029,33770477 -) -v1,1257:6630773,34751227:0,393216,0 -(1,1296:6630773,45510161:25952256,11152150,196608 -g1,1296:6630773,45510161 -g1,1296:6630773,45510161 -g1,1296:6434165,45510161 -(1,1296:6434165,45510161:0,11152150,196608 -r1,1300:32779637,45510161:26345472,11348758,196608 -k1,1296:6434165,45510161:-26345472 -) -(1,1296:6434165,45510161:26345472,11152150,196608 -[1,1296:6630773,45510161:25952256,10955542,0 -(1,1259:6630773,34882823:25952256,328204,7863 -(1,1258:6630773,34882823:0,0,0 -g1,1258:6630773,34882823 -g1,1258:6630773,34882823 -g1,1258:6303093,34882823 -(1,1258:6303093,34882823:0,0,0 -) -g1,1258:6630773,34882823 -) -g1,1259:7263065,34882823 -g1,1259:8211503,34882823 -h1,1259:9476086,34882823:0,0,0 -k1,1259:32583030,34882823:23106944 -g1,1259:32583030,34882823 -) -(1,1260:6630773,35549001:25952256,404226,7863 -h1,1260:6630773,35549001:0,0,0 -g1,1260:7263065,35549001 -g1,1260:8211503,35549001 -h1,1260:9792231,35549001:0,0,0 -k1,1260:32583029,35549001:22790798 -g1,1260:32583029,35549001 -) -(1,1261:6630773,36215179:25952256,404226,76021 -h1,1261:6630773,36215179:0,0,0 -k1,1261:6630773,36215179:0 -h1,1261:8843793,36215179:0,0,0 -k1,1261:32583029,36215179:23739236 -g1,1261:32583029,36215179 -) -(1,1265:6630773,36785165:25952256,404226,107478 -(1,1263:6630773,36785165:0,0,0 -g1,1263:6630773,36785165 -g1,1263:6630773,36785165 -g1,1263:6303093,36785165 -(1,1263:6303093,36785165:0,0,0 -) -g1,1263:6630773,36785165 -) -g1,1265:7579210,36785165 -g1,1265:8843793,36785165 -h1,1265:11689104,36785165:0,0,0 -k1,1265:32583028,36785165:20893924 -g1,1265:32583028,36785165 -) -(1,1267:6630773,37944974:25952256,284164,4718 -(1,1266:6630773,37944974:0,0,0 -g1,1266:6630773,37944974 -g1,1266:6630773,37944974 -g1,1266:6303093,37944974 -(1,1266:6303093,37944974:0,0,0 -) -g1,1266:6630773,37944974 -) -h1,1267:6946919,37944974:0,0,0 -k1,1267:32583029,37944974:25636110 -g1,1267:32583029,37944974 -) -(1,1271:6630773,38514960:25952256,404226,76021 -(1,1269:6630773,38514960:0,0,0 -g1,1269:6630773,38514960 -g1,1269:6630773,38514960 -g1,1269:6303093,38514960 -(1,1269:6303093,38514960:0,0,0 -) -g1,1269:6630773,38514960 -) -g1,1271:7579210,38514960 -g1,1271:8843793,38514960 -h1,1271:10108376,38514960:0,0,0 -k1,1271:32583028,38514960:22474652 -g1,1271:32583028,38514960 -) -(1,1273:6630773,39674769:25952256,404226,107478 -(1,1272:6630773,39674769:0,0,0 -g1,1272:6630773,39674769 -g1,1272:6630773,39674769 -g1,1272:6303093,39674769 -(1,1272:6303093,39674769:0,0,0 -) -g1,1272:6630773,39674769 -) -g1,1273:7579211,39674769 -g1,1273:8211503,39674769 -k1,1273:8211503,39674769:0 -h1,1273:10740668,39674769:0,0,0 -k1,1273:32583028,39674769:21842360 -g1,1273:32583028,39674769 -) -(1,1277:6630773,40244755:25952256,404226,76021 -(1,1275:6630773,40244755:0,0,0 -g1,1275:6630773,40244755 -g1,1275:6630773,40244755 -g1,1275:6303093,40244755 -(1,1275:6303093,40244755:0,0,0 -) -g1,1275:6630773,40244755 -) -g1,1277:7579210,40244755 -g1,1277:8843793,40244755 -h1,1277:10424521,40244755:0,0,0 -k1,1277:32583029,40244755:22158508 -g1,1277:32583029,40244755 -) -(1,1279:6630773,41404564:25952256,404226,107478 -(1,1278:6630773,41404564:0,0,0 -g1,1278:6630773,41404564 -g1,1278:6630773,41404564 -g1,1278:6303093,41404564 -(1,1278:6303093,41404564:0,0,0 -) -g1,1278:6630773,41404564 -) -g1,1279:7263065,41404564 -g1,1279:8211502,41404564 -g1,1279:8843794,41404564 -g1,1279:9476086,41404564 -g1,1279:12005252,41404564 -k1,1279:12005252,41404564:35127 -h1,1279:12988816,41404564:0,0,0 -k1,1279:32583028,41404564:19594212 -g1,1279:32583028,41404564 -) -(1,1283:6630773,41974550:25952256,404226,76021 -(1,1281:6630773,41974550:0,0,0 -g1,1281:6630773,41974550 -g1,1281:6630773,41974550 -g1,1281:6303093,41974550 -(1,1281:6303093,41974550:0,0,0 -) -g1,1281:6630773,41974550 -) -g1,1283:7579210,41974550 -g1,1283:8843793,41974550 -h1,1283:10424521,41974550:0,0,0 -k1,1283:32583029,41974550:22158508 -g1,1283:32583029,41974550 -) -(1,1285:6630773,43134359:25952256,404226,107478 -(1,1284:6630773,43134359:0,0,0 -g1,1284:6630773,43134359 -g1,1284:6630773,43134359 -g1,1284:6303093,43134359 -(1,1284:6303093,43134359:0,0,0 -) -g1,1284:6630773,43134359 -) -g1,1285:7263065,43134359 -g1,1285:8211502,43134359 -g1,1285:8843794,43134359 -g1,1285:9476086,43134359 -g1,1285:12005252,43134359 -k1,1285:12005252,43134359:1573 -h1,1285:12639116,43134359:0,0,0 -k1,1285:32583028,43134359:19943912 -g1,1285:32583028,43134359 -) -(1,1289:6630773,43704345:25952256,404226,76021 -(1,1287:6630773,43704345:0,0,0 -g1,1287:6630773,43704345 -g1,1287:6630773,43704345 -g1,1287:6303093,43704345 -(1,1287:6303093,43704345:0,0,0 -) -g1,1287:6630773,43704345 -) -g1,1289:7579210,43704345 -g1,1289:8843793,43704345 -h1,1289:10108376,43704345:0,0,0 -k1,1289:32583028,43704345:22474652 -g1,1289:32583028,43704345 -) -(1,1291:6630773,44864154:25952256,404226,82312 -(1,1290:6630773,44864154:0,0,0 -g1,1290:6630773,44864154 -g1,1290:6630773,44864154 -g1,1290:6303093,44864154 -(1,1290:6303093,44864154:0,0,0 -) -g1,1290:6630773,44864154 -) -k1,1291:6630773,44864154:0 -g1,1291:8843793,44864154 -g1,1291:9792230,44864154 -g1,1291:10424522,44864154 -g1,1291:13585979,44864154 -k1,1291:13585979,44864154:1573 -h1,1291:14219843,44864154:0,0,0 -k1,1291:32583029,44864154:18363186 -g1,1291:32583029,44864154 -) -(1,1295:6630773,45434140:25952256,404226,76021 -(1,1293:6630773,45434140:0,0,0 -g1,1293:6630773,45434140 -g1,1293:6630773,45434140 -g1,1293:6303093,45434140 -(1,1293:6303093,45434140:0,0,0 -) -g1,1293:6630773,45434140 -) -g1,1295:7579210,45434140 -g1,1295:8843793,45434140 -h1,1295:10108376,45434140:0,0,0 -k1,1295:32583028,45434140:22474652 -g1,1295:32583028,45434140 -) -] -) -g1,1296:32583029,45510161 -g1,1296:6630773,45510161 -g1,1296:6630773,45510161 -g1,1296:32583029,45510161 -g1,1296:32583029,45510161 -) -h1,1296:6630773,45706769:0,0,0 -] -(1,1300:32583029,45706769:0,0,0 -g1,1300:32583029,45706769 -) -) -] -(1,1300:6630773,47279633:25952256,0,0 -h1,1300:6630773,47279633:25952256,0,0 -) -] -(1,1300:4262630,4025873:0,0,0 -[1,1300:-473656,4025873:0,0,0 -(1,1300:-473656,-710413:0,0,0 -(1,1300:-473656,-710413:0,0,0 -g1,1300:-473656,-710413 -) -g1,1300:-473656,-710413 -) -] -) -] -!24480 -}42 -Input:336:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:337:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:338:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:339:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:340:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:341:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:342:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:343:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:344:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:345:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:346:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:347:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:348:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1194 -{43 -[1,1385:4262630,47279633:28320399,43253760,0 -(1,1385:4262630,4025873:0,0,0 -[1,1385:-473656,4025873:0,0,0 -(1,1385:-473656,-710413:0,0,0 -(1,1385:-473656,-644877:0,0,0 -k1,1385:-473656,-644877:-65536 -) -(1,1385:-473656,4736287:0,0,0 -k1,1385:-473656,4736287:5209943 -) -g1,1385:-473656,-710413 -) -] -) -[1,1385:6630773,47279633:25952256,43253760,0 -[1,1385:6630773,4812305:25952256,786432,0 -(1,1385:6630773,4812305:25952256,505283,134348 -(1,1385:6630773,4812305:25952256,505283,134348 -g1,1385:3078558,4812305 -[1,1385:3078558,4812305:0,0,0 -(1,1385:3078558,2439708:0,1703936,0 -k1,1385:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,1385:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,1385:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,1385:3078558,4812305:0,0,0 -(1,1385:3078558,2439708:0,1703936,0 -g1,1385:29030814,2439708 -g1,1385:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,1385:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,1385:37855564,2439708:1179648,16384,0 -) -) -k1,1385:3078556,2439708:-34777008 -) -] -[1,1385:3078558,4812305:0,0,0 -(1,1385:3078558,49800853:0,16384,2228224 -k1,1385:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,1385:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,1385:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,1385:3078558,4812305:0,0,0 -(1,1385:3078558,49800853:0,16384,2228224 -g1,1385:29030814,49800853 -g1,1385:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,1385:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,1385:37855564,49800853:1179648,16384,0 -) -) -k1,1385:3078556,49800853:-34777008 -) -] -g1,1385:6630773,4812305 -k1,1385:19515153,4812305:12087462 -g1,1385:20901894,4812305 -g1,1385:21550700,4812305 -g1,1385:24864855,4812305 -g1,1385:27600327,4812305 -g1,1385:29010006,4812305 -) -) -] -[1,1385:6630773,45706769:25952256,40108032,0 -(1,1385:6630773,45706769:25952256,40108032,0 -(1,1385:6630773,45706769:0,0,0 -g1,1385:6630773,45706769 -) -[1,1385:6630773,45706769:25952256,40108032,0 -(1,1301:6630773,6254097:25952256,505283,134348 -h1,1300:6630773,6254097:983040,0,0 -k1,1300:8629883,6254097:198181 -k1,1300:10222015,6254097:198181 -k1,1300:13696340,6254097:198180 -k1,1300:17145107,6254097:198181 -k1,1300:21535626,6254097:198181 -k1,1300:22265304,6254097:198181 -k1,1300:25247454,6254097:198181 -k1,1300:26839585,6254097:198180 -k1,1300:28651262,6254097:198181 -k1,1300:30919070,6254097:198181 -k1,1301:32583029,6254097:0 -) -(1,1301:6630773,7095585:25952256,513147,134348 -k1,1300:8617029,7095585:186637 -k1,1300:10000353,7095585:186637 -k1,1300:13644014,7095585:186637 -k1,1300:14489944,7095585:186638 -k1,1300:15849020,7095585:186637 -k1,1300:17795299,7095585:186637 -k1,1300:18641228,7095585:186637 -k1,1300:20897492,7095585:186637 -k1,1300:24161044,7095585:186637 -k1,1300:24879178,7095585:186637 -k1,1300:26222526,7095585:186638 -k1,1300:27068455,7095585:186637 -k1,1300:28274177,7095585:186637 -k1,1300:30062514,7095585:186637 -k1,1301:32583029,7095585:0 -) -(1,1301:6630773,7937073:25952256,513147,134348 -k1,1300:8531591,7937073:208678 -k1,1300:11115294,7937073:208678 -k1,1300:11983265,7937073:208679 -k1,1300:13211028,7937073:208678 -k1,1300:13834540,7937073:208669 -k1,1300:16885514,7937073:208678 -k1,1300:18041843,7937073:208678 -k1,1300:21543050,7937073:208678 -k1,1300:23302965,7937073:208678 -k1,1300:24170936,7937073:208679 -k1,1300:28284904,7937073:208678 -k1,1300:30563209,7937073:208678 -k1,1301:32583029,7937073:0 -) -(1,1301:6630773,8778561:25952256,513147,126483 -k1,1300:8059339,8778561:158478 -k1,1300:10440798,8778561:158478 -k1,1300:14101519,8778561:158477 -k1,1300:15352482,8778561:158478 -k1,1300:17712970,8778561:158478 -k1,1300:19955493,8778561:158478 -k1,1300:21305416,8778561:158478 -k1,1300:22556379,8778561:158478 -k1,1300:24916866,8778561:158477 -k1,1300:27890771,8778561:158478 -k1,1300:29245936,8778561:158478 -k1,1300:32583029,8778561:0 -) -(1,1301:6630773,9620049:25952256,505283,134348 -k1,1300:9866265,9620049:158577 -k1,1300:11500057,9620049:158577 -k1,1300:16719323,9620049:158576 -k1,1300:18946216,9620049:158577 -(1,1300:18946216,9620049:0,435480,115847 -r1,1385:19304482,9620049:358266,551327,115847 -k1,1300:18946216,9620049:-358266 -) -(1,1300:18946216,9620049:358266,435480,115847 -k1,1300:18946216,9620049:3277 -h1,1300:19301205,9620049:0,411205,112570 -) -k1,1300:19463059,9620049:158577 -k1,1300:20813081,9620049:158577 -(1,1300:20813081,9620049:0,452978,115847 -r1,1385:21171347,9620049:358266,568825,115847 -k1,1300:20813081,9620049:-358266 -) -(1,1300:20813081,9620049:358266,452978,115847 -k1,1300:20813081,9620049:3277 -h1,1300:21168070,9620049:0,411205,112570 -) -k1,1300:21503594,9620049:158577 -k1,1300:23351689,9620049:158577 -k1,1300:24529350,9620049:158576 -k1,1300:29462225,9620049:158577 -k1,1300:31107814,9620049:158577 -k1,1300:32583029,9620049:0 -) -(1,1301:6630773,10461537:25952256,513147,134348 -k1,1300:12234671,10461537:233223 -k1,1300:14536211,10461537:233224 -(1,1300:14536211,10461537:0,435480,115847 -r1,1385:15246189,10461537:709978,551327,115847 -k1,1300:14536211,10461537:-709978 -) -(1,1300:14536211,10461537:709978,435480,115847 -k1,1300:14536211,10461537:3277 -h1,1300:15242912,10461537:0,411205,112570 -) -k1,1300:15479412,10461537:233223 -k1,1300:16904081,10461537:233224 -(1,1300:16904081,10461537:0,452978,115847 -r1,1385:17614059,10461537:709978,568825,115847 -k1,1300:16904081,10461537:-709978 -) -(1,1300:16904081,10461537:709978,452978,115847 -k1,1300:16904081,10461537:3277 -h1,1300:17610782,10461537:0,411205,112570 -) -k1,1300:18020952,10461537:233223 -k1,1300:20086562,10461537:233223 -k1,1300:20851283,10461537:233224 -k1,1300:22460107,10461537:233223 -k1,1300:23850040,10461537:233223 -k1,1300:26417001,10461537:233224 -k1,1300:27309516,10461537:233223 -k1,1300:28561825,10461537:233224 -k1,1300:31554769,10461537:233223 -k1,1301:32583029,10461537:0 -) -(1,1301:6630773,11303025:25952256,505283,134348 -k1,1300:8774907,11303025:212788 -(1,1300:8774907,11303025:0,424981,115847 -r1,1385:9133173,11303025:358266,540828,115847 -k1,1300:8774907,11303025:-358266 -) -(1,1300:8774907,11303025:358266,424981,115847 -k1,1300:8774907,11303025:3277 -h1,1300:9129896,11303025:0,411205,112570 -) -k1,1300:9345961,11303025:212788 -k1,1300:10843254,11303025:212787 -k1,1300:11587539,11303025:212788 -k1,1300:15311091,11303025:212788 -k1,1300:16151714,11303025:212788 -k1,1300:18230312,11303025:212788 -k1,1300:19515268,11303025:212787 -k1,1300:20794327,11303025:212788 -k1,1300:21773231,11303025:212788 -k1,1300:23857072,11303025:212788 -k1,1300:24425720,11303025:212788 -k1,1300:27208829,11303025:212787 -k1,1300:28554079,11303025:212788 -k1,1300:31298523,11303025:212788 -k1,1300:32583029,11303025:0 -) -(1,1301:6630773,12144513:25952256,505283,126483 -g1,1300:8484786,12144513 -g1,1300:9215512,12144513 -g1,1300:9770601,12144513 -g1,1300:12599790,12144513 -k1,1301:32583029,12144513:17133078 -g1,1301:32583029,12144513 -) -v1,1303:6630773,13334979:0,393216,0 -(1,1348:6630773,29127130:25952256,16185367,196608 -g1,1348:6630773,29127130 -g1,1348:6630773,29127130 -g1,1348:6434165,29127130 -(1,1348:6434165,29127130:0,16185367,196608 -r1,1385:32779637,29127130:26345472,16381975,196608 -k1,1348:6434165,29127130:-26345472 -) -(1,1348:6434165,29127130:26345472,16185367,196608 -[1,1348:6630773,29127130:25952256,15988759,0 -(1,1305:6630773,13542597:25952256,404226,82312 -(1,1304:6630773,13542597:0,0,0 -g1,1304:6630773,13542597 -g1,1304:6630773,13542597 -g1,1304:6303093,13542597 -(1,1304:6303093,13542597:0,0,0 -) -g1,1304:6630773,13542597 -) -g1,1305:7263065,13542597 -g1,1305:8211503,13542597 -k1,1305:8211503,13542597:0 -h1,1305:12321398,13542597:0,0,0 -k1,1305:32583030,13542597:20261632 -g1,1305:32583030,13542597 -) -(1,1306:6630773,14208775:25952256,404226,82312 -h1,1306:6630773,14208775:0,0,0 -g1,1306:7263065,14208775 -g1,1306:8211503,14208775 -k1,1306:8211503,14208775:0 -h1,1306:12005253,14208775:0,0,0 -k1,1306:32583029,14208775:20577776 -g1,1306:32583029,14208775 -) -(1,1307:6630773,14874953:25952256,284164,4718 -h1,1307:6630773,14874953:0,0,0 -h1,1307:6946919,14874953:0,0,0 -k1,1307:32583029,14874953:25636110 -g1,1307:32583029,14874953 -) -(1,1311:6630773,15606667:25952256,404226,76021 -(1,1309:6630773,15606667:0,0,0 -g1,1309:6630773,15606667 -g1,1309:6630773,15606667 -g1,1309:6303093,15606667 -(1,1309:6303093,15606667:0,0,0 -) -g1,1309:6630773,15606667 -) -g1,1311:7579210,15606667 -g1,1311:8843793,15606667 -g1,1311:9159939,15606667 -g1,1311:10740668,15606667 -h1,1311:12321396,15606667:0,0,0 -k1,1311:32583028,15606667:20261632 -g1,1311:32583028,15606667 -) -(1,1313:6630773,16928205:25952256,404226,6290 -(1,1312:6630773,16928205:0,0,0 -g1,1312:6630773,16928205 -g1,1312:6630773,16928205 -g1,1312:6303093,16928205 -(1,1312:6303093,16928205:0,0,0 -) -g1,1312:6630773,16928205 -) -h1,1313:6946919,16928205:0,0,0 -k1,1313:32583029,16928205:25636110 -g1,1313:32583029,16928205 -) -(1,1317:6630773,17659919:25952256,404226,76021 -(1,1315:6630773,17659919:0,0,0 -g1,1315:6630773,17659919 -g1,1315:6630773,17659919 -g1,1315:6303093,17659919 -(1,1315:6303093,17659919:0,0,0 -) -g1,1315:6630773,17659919 -) -g1,1317:7579210,17659919 -g1,1317:8843793,17659919 -g1,1317:10424522,17659919 -h1,1317:11689105,17659919:0,0,0 -k1,1317:32583029,17659919:20893924 -g1,1317:32583029,17659919 -) -(1,1319:6630773,18981457:25952256,404226,9436 -(1,1318:6630773,18981457:0,0,0 -g1,1318:6630773,18981457 -g1,1318:6630773,18981457 -g1,1318:6303093,18981457 -(1,1318:6303093,18981457:0,0,0 -) -g1,1318:6630773,18981457 -) -g1,1319:7263065,18981457 -g1,1319:7895357,18981457 -g1,1319:8527649,18981457 -g1,1319:9159941,18981457 -g1,1319:12637544,18981457 -k1,1319:12637544,18981457:35127 -h1,1319:13621108,18981457:0,0,0 -k1,1319:32583028,18981457:18961920 -g1,1319:32583028,18981457 -) -(1,1323:6630773,19713171:25952256,404226,76021 -(1,1321:6630773,19713171:0,0,0 -g1,1321:6630773,19713171 -g1,1321:6630773,19713171 -g1,1321:6303093,19713171 -(1,1321:6303093,19713171:0,0,0 -) -g1,1321:6630773,19713171 -) -g1,1323:7579210,19713171 -g1,1323:8843793,19713171 -g1,1323:9159939,19713171 -g1,1323:10740668,19713171 -h1,1323:12321396,19713171:0,0,0 -k1,1323:32583028,19713171:20261632 -g1,1323:32583028,19713171 -) -(1,1325:6630773,21034709:25952256,404226,76021 -(1,1324:6630773,21034709:0,0,0 -g1,1324:6630773,21034709 -g1,1324:6630773,21034709 -g1,1324:6303093,21034709 -(1,1324:6303093,21034709:0,0,0 -) -g1,1324:6630773,21034709 -) -g1,1325:7263065,21034709 -g1,1325:7895357,21034709 -g1,1325:8527649,21034709 -g1,1325:9159941,21034709 -g1,1325:12637544,21034709 -k1,1325:12637544,21034709:1573 -h1,1325:13271408,21034709:0,0,0 -k1,1325:32583028,21034709:19311620 -g1,1325:32583028,21034709 -) -(1,1329:6630773,21766423:25952256,404226,76021 -(1,1327:6630773,21766423:0,0,0 -g1,1327:6630773,21766423 -g1,1327:6630773,21766423 -g1,1327:6303093,21766423 -(1,1327:6303093,21766423:0,0,0 -) -g1,1327:6630773,21766423 -) -g1,1329:7579210,21766423 -g1,1329:8843793,21766423 -g1,1329:10424522,21766423 -h1,1329:11689105,21766423:0,0,0 -k1,1329:32583029,21766423:20893924 -g1,1329:32583029,21766423 -) -(1,1331:6630773,23087961:25952256,404226,9436 -(1,1330:6630773,23087961:0,0,0 -g1,1330:6630773,23087961 -g1,1330:6630773,23087961 -g1,1330:6303093,23087961 -(1,1330:6303093,23087961:0,0,0 -) -g1,1330:6630773,23087961 -) -g1,1331:7263065,23087961 -g1,1331:8211502,23087961 -g1,1331:8843794,23087961 -g1,1331:9476086,23087961 -g1,1331:10740669,23087961 -k1,1331:10740669,23087961:39846 -h1,1331:13941972,23087961:0,0,0 -k1,1331:32583028,23087961:18641056 -g1,1331:32583028,23087961 -) -(1,1336:6630773,24409499:25952256,404226,107478 -g1,1335:7579210,24409499 -g1,1335:10108376,24409499 -g1,1335:11056813,24409499 -g1,1335:11689105,24409499 -g1,1335:12637542,24409499 -g1,1335:13585979,24409499 -g1,1335:17063582,24409499 -g1,1335:17695874,24409499 -g1,1335:18328166,24409499 -g1,1335:18960458,24409499 -g1,1335:19908895,24409499 -g1,1335:20857332,24409499 -g1,1335:23702643,24409499 -g1,1335:24651080,24409499 -k1,1336:32583029,24409499:4138201 -g1,1336:32583029,24409499 -) -(1,1337:6630773,25075677:25952256,404226,107478 -g1,1337:7579210,25075677 -g1,1337:10108376,25075677 -g1,1337:11056813,25075677 -g1,1337:11689105,25075677 -g1,1337:12637542,25075677 -g1,1337:13585979,25075677 -g1,1337:17063582,25075677 -g1,1337:17695874,25075677 -g1,1337:18328166,25075677 -g1,1337:18960458,25075677 -g1,1337:19908895,25075677 -g1,1337:20857332,25075677 -g1,1337:23702643,25075677 -g1,1337:24651080,25075677 -k1,1337:32583029,25075677:4138201 -g1,1337:32583029,25075677 -) -(1,1339:6630773,25741855:25952256,404226,76021 -(1,1337:6630773,25741855:0,0,0 -g1,1337:6630773,25741855 -g1,1337:6630773,25741855 -g1,1337:6303093,25741855 -(1,1337:6303093,25741855:0,0,0 -) -g1,1337:6630773,25741855 -) -g1,1339:7579210,25741855 -g1,1339:8843793,25741855 -h1,1339:10108376,25741855:0,0,0 -k1,1339:32583028,25741855:22474652 -g1,1339:32583028,25741855 -) -(1,1341:6630773,27063393:25952256,404226,76021 -(1,1340:6630773,27063393:0,0,0 -g1,1340:6630773,27063393 -g1,1340:6630773,27063393 -g1,1340:6303093,27063393 -(1,1340:6303093,27063393:0,0,0 -) -g1,1340:6630773,27063393 -) -g1,1341:7263065,27063393 -g1,1341:8211502,27063393 -g1,1341:8843794,27063393 -g1,1341:9476086,27063393 -g1,1341:10740669,27063393 -k1,1341:10740669,27063393:39846 -h1,1341:13941972,27063393:0,0,0 -k1,1341:32583028,27063393:18641056 -g1,1341:32583028,27063393 -) -(1,1345:6630773,28384931:25952256,404226,107478 -g1,1345:7579210,28384931 -g1,1345:10108376,28384931 -g1,1345:11056813,28384931 -g1,1345:11689105,28384931 -g1,1345:12637542,28384931 -g1,1345:13585979,28384931 -g1,1345:17063582,28384931 -g1,1345:17695874,28384931 -g1,1345:18328166,28384931 -g1,1345:18960458,28384931 -g1,1345:19908895,28384931 -g1,1345:20857332,28384931 -g1,1345:23702643,28384931 -g1,1345:24651080,28384931 -k1,1345:32583029,28384931:4138201 -g1,1345:32583029,28384931 -) -(1,1347:6630773,29051109:25952256,404226,76021 -(1,1345:6630773,29051109:0,0,0 -g1,1345:6630773,29051109 -g1,1345:6630773,29051109 -g1,1345:6303093,29051109 -(1,1345:6303093,29051109:0,0,0 -) -g1,1345:6630773,29051109 -) -g1,1347:7579210,29051109 -g1,1347:8843793,29051109 -h1,1347:10108376,29051109:0,0,0 -k1,1347:32583028,29051109:22474652 -g1,1347:32583028,29051109 -) -] -) -g1,1348:32583029,29127130 -g1,1348:6630773,29127130 -g1,1348:6630773,29127130 -g1,1348:32583029,29127130 -g1,1348:32583029,29127130 -) -h1,1348:6630773,29323738:0,0,0 -(1,1352:6630773,30689514:25952256,505283,134348 -h1,1351:6630773,30689514:983040,0,0 -k1,1351:10890029,30689514:156047 -(1,1351:10890029,30689514:0,452978,115847 -r1,1385:12655142,30689514:1765113,568825,115847 -k1,1351:10890029,30689514:-1765113 -) -(1,1351:10890029,30689514:1765113,452978,115847 -k1,1351:10890029,30689514:3277 -h1,1351:12651865,30689514:0,411205,112570 -) -k1,1351:12811188,30689514:156046 -k1,1351:14158680,30689514:156047 -(1,1351:14158680,30689514:0,452978,115847 -r1,1385:15923793,30689514:1765113,568825,115847 -k1,1351:14158680,30689514:-1765113 -) -(1,1351:14158680,30689514:1765113,452978,115847 -k1,1351:14158680,30689514:3277 -h1,1351:15920516,30689514:0,411205,112570 -) -k1,1351:16079840,30689514:156047 -k1,1351:17588549,30689514:156046 -k1,1351:19164761,30689514:156047 -k1,1351:20003693,30689514:156047 -k1,1351:21809936,30689514:156046 -k1,1351:24035610,30689514:156047 -k1,1351:26499835,30689514:156047 -k1,1351:27342043,30689514:156046 -k1,1351:29006729,30689514:156047 -k1,1351:32583029,30689514:0 -) -(1,1352:6630773,31531002:25952256,505283,134348 -k1,1351:8050884,31531002:228666 -k1,1351:10290195,31531002:228666 -k1,1351:10874721,31531002:228666 -k1,1351:12976406,31531002:228666 -k1,1351:15274699,31531002:228666 -k1,1351:17183708,31531002:228666 -k1,1351:22223371,31531002:228665 -k1,1351:23471122,31531002:228666 -k1,1351:25769415,31531002:228666 -k1,1351:28008726,31531002:228666 -k1,1351:28853430,31531002:228666 -k1,1351:30101181,31531002:228666 -k1,1351:32583029,31531002:0 -) -(1,1352:6630773,32372490:25952256,513147,134348 -k1,1351:9635043,32372490:214402 -(1,1351:9635043,32372490:0,452978,115847 -r1,1385:11400156,32372490:1765113,568825,115847 -k1,1351:9635043,32372490:-1765113 -) -(1,1351:9635043,32372490:1765113,452978,115847 -k1,1351:9635043,32372490:3277 -h1,1351:11396879,32372490:0,411205,112570 -) -k1,1351:11614558,32372490:214402 -k1,1351:14169906,32372490:214402 -(1,1351:14169906,32372490:0,414482,115847 -r1,1385:15583307,32372490:1413401,530329,115847 -k1,1351:14169906,32372490:-1413401 -) -(1,1351:14169906,32372490:1413401,414482,115847 -k1,1351:14169906,32372490:3277 -h1,1351:15580030,32372490:0,411205,112570 -) -k1,1351:15797709,32372490:214402 -k1,1351:17387712,32372490:214402 -k1,1351:18068075,32372490:214402 -k1,1351:19048593,32372490:214402 -k1,1351:21273640,32372490:214402 -k1,1351:22104080,32372490:214402 -k1,1351:23337567,32372490:214402 -k1,1351:25860147,32372490:214402 -k1,1351:28279836,32372490:214402 -k1,1351:29180400,32372490:214402 -k1,1351:32583029,32372490:0 -) -(1,1352:6630773,33213978:25952256,505283,115847 -g1,1351:7821562,33213978 -(1,1351:7821562,33213978:0,414482,115847 -r1,1385:9234963,33213978:1413401,530329,115847 -k1,1351:7821562,33213978:-1413401 -) -(1,1351:7821562,33213978:1413401,414482,115847 -k1,1351:7821562,33213978:3277 -h1,1351:9231686,33213978:0,411205,112570 -) -g1,1351:9607862,33213978 -g1,1351:10998536,33213978 -(1,1351:10998536,33213978:0,452978,115847 -r1,1385:12763649,33213978:1765113,568825,115847 -k1,1351:10998536,33213978:-1765113 -) -(1,1351:10998536,33213978:1765113,452978,115847 -k1,1351:10998536,33213978:3277 -h1,1351:12760372,33213978:0,411205,112570 -) -g1,1351:12962878,33213978 -g1,1351:15503053,33213978 -(1,1351:15503053,33213978:0,414482,115847 -r1,1385:16916454,33213978:1413401,530329,115847 -k1,1351:15503053,33213978:-1413401 -) -(1,1351:15503053,33213978:1413401,414482,115847 -k1,1351:15503053,33213978:3277 -h1,1351:16913177,33213978:0,411205,112570 -) -g1,1351:17115683,33213978 -g1,1351:19357669,33213978 -g1,1351:20323014,33213978 -g1,1351:22532888,33213978 -g1,1351:23348155,33213978 -g1,1351:24566469,33213978 -g1,1351:27073876,33213978 -g1,1351:28264665,33213978 -(1,1351:28264665,33213978:0,414482,115847 -r1,1385:30029778,33213978:1765113,530329,115847 -k1,1351:28264665,33213978:-1765113 -) -(1,1351:28264665,33213978:1765113,414482,115847 -k1,1351:28264665,33213978:3277 -h1,1351:30026501,33213978:0,411205,112570 -) -k1,1352:32583029,33213978:2379581 -g1,1352:32583029,33213978 -) -v1,1354:6630773,34404444:0,393216,0 -(1,1379:6630773,41579553:25952256,7568325,196608 -g1,1379:6630773,41579553 -g1,1379:6630773,41579553 -g1,1379:6434165,41579553 -(1,1379:6434165,41579553:0,7568325,196608 -r1,1385:32779637,41579553:26345472,7764933,196608 -k1,1379:6434165,41579553:-26345472 -) -(1,1379:6434165,41579553:26345472,7568325,196608 -[1,1379:6630773,41579553:25952256,7371717,0 -(1,1356:6630773,34612062:25952256,404226,101187 -(1,1355:6630773,34612062:0,0,0 -g1,1355:6630773,34612062 -g1,1355:6630773,34612062 -g1,1355:6303093,34612062 -(1,1355:6303093,34612062:0,0,0 -) -g1,1355:6630773,34612062 -) -k1,1356:6630773,34612062:0 -h1,1356:8527647,34612062:0,0,0 -k1,1356:32583029,34612062:24055382 -g1,1356:32583029,34612062 -) -(1,1360:6630773,35343776:25952256,404226,76021 -(1,1358:6630773,35343776:0,0,0 -g1,1358:6630773,35343776 -g1,1358:6630773,35343776 -g1,1358:6303093,35343776 -(1,1358:6303093,35343776:0,0,0 -) -g1,1358:6630773,35343776 -) -g1,1360:7579210,35343776 -g1,1360:8843793,35343776 -h1,1360:10108376,35343776:0,0,0 -k1,1360:32583028,35343776:22474652 -g1,1360:32583028,35343776 -) -(1,1362:6630773,36665314:25952256,404226,76021 -(1,1361:6630773,36665314:0,0,0 -g1,1361:6630773,36665314 -g1,1361:6630773,36665314 -g1,1361:6303093,36665314 -(1,1361:6303093,36665314:0,0,0 -) -g1,1361:6630773,36665314 -) -k1,1362:6630773,36665314:0 -h1,1362:8527647,36665314:0,0,0 -k1,1362:32583029,36665314:24055382 -g1,1362:32583029,36665314 -) -(1,1366:6630773,37397028:25952256,404226,76021 -(1,1364:6630773,37397028:0,0,0 -g1,1364:6630773,37397028 -g1,1364:6630773,37397028 -g1,1364:6303093,37397028 -(1,1364:6303093,37397028:0,0,0 -) -g1,1364:6630773,37397028 -) -g1,1366:7579210,37397028 -g1,1366:8843793,37397028 -h1,1366:10424521,37397028:0,0,0 -k1,1366:32583029,37397028:22158508 -g1,1366:32583029,37397028 -) -(1,1368:6630773,38718566:25952256,404226,101187 -(1,1367:6630773,38718566:0,0,0 -g1,1367:6630773,38718566 -g1,1367:6630773,38718566 -g1,1367:6303093,38718566 -(1,1367:6303093,38718566:0,0,0 -) -g1,1367:6630773,38718566 -) -k1,1368:6630773,38718566:0 -g1,1368:8527647,38718566 -g1,1368:9159939,38718566 -h1,1368:9792230,38718566:0,0,0 -k1,1368:32583030,38718566:22790800 -g1,1368:32583030,38718566 -) -(1,1372:6630773,39450280:25952256,404226,76021 -(1,1370:6630773,39450280:0,0,0 -g1,1370:6630773,39450280 -g1,1370:6630773,39450280 -g1,1370:6303093,39450280 -(1,1370:6303093,39450280:0,0,0 -) -g1,1370:6630773,39450280 -) -g1,1372:7579210,39450280 -g1,1372:8843793,39450280 -h1,1372:10108376,39450280:0,0,0 -k1,1372:32583028,39450280:22474652 -g1,1372:32583028,39450280 -) -(1,1374:6630773,40771818:25952256,404226,76021 -(1,1373:6630773,40771818:0,0,0 -g1,1373:6630773,40771818 -g1,1373:6630773,40771818 -g1,1373:6303093,40771818 -(1,1373:6303093,40771818:0,0,0 -) -g1,1373:6630773,40771818 -) -k1,1374:6630773,40771818:0 -g1,1374:8527647,40771818 -g1,1374:9159939,40771818 -h1,1374:9792230,40771818:0,0,0 -k1,1374:32583030,40771818:22790800 -g1,1374:32583030,40771818 -) -(1,1378:6630773,41503532:25952256,404226,76021 -(1,1376:6630773,41503532:0,0,0 -g1,1376:6630773,41503532 -g1,1376:6630773,41503532 -g1,1376:6303093,41503532 -(1,1376:6303093,41503532:0,0,0 -) -g1,1376:6630773,41503532 -) -g1,1378:7579210,41503532 -g1,1378:8843793,41503532 -h1,1378:10424521,41503532:0,0,0 -k1,1378:32583029,41503532:22158508 -g1,1378:32583029,41503532 -) -] -) -g1,1379:32583029,41579553 -g1,1379:6630773,41579553 -g1,1379:6630773,41579553 -g1,1379:32583029,41579553 -g1,1379:32583029,41579553 -) -h1,1379:6630773,41776161:0,0,0 -(1,1383:6630773,43141937:25952256,505283,134348 -h1,1382:6630773,43141937:983040,0,0 -k1,1382:10468740,43141937:250526 -k1,1382:13928564,43141937:250526 -k1,1382:15841083,43141937:250526 -k1,1382:16743037,43141937:250526 -k1,1382:18716505,43141937:250526 -k1,1382:20789588,43141937:250527 -k1,1382:23109741,43141937:250526 -k1,1382:26437182,43141937:250526 -k1,1382:27219205,43141937:250526 -k1,1382:28754237,43141937:250526 -k1,1382:30384951,43141937:250526 -k1,1383:32583029,43141937:0 -) -(1,1383:6630773,43983425:25952256,513147,126483 -k1,1382:8113940,43983425:177690 -k1,1382:11768970,43983425:177690 -k1,1382:12424417,43983425:177690 -k1,1382:13621192,43983425:177690 -k1,1382:15641754,43983425:177690 -k1,1382:16350941,43983425:177690 -k1,1382:18666415,43983425:177690 -k1,1382:20411725,43983425:177689 -k1,1382:21608500,43983425:177690 -k1,1382:23092323,43983425:177690 -k1,1382:24591874,43983425:177690 -k1,1382:25428856,43983425:177690 -k1,1382:26625631,43983425:177690 -k1,1382:30163352,43983425:177690 -k1,1382:31360127,43983425:177690 -k1,1382:32583029,43983425:0 -) -(1,1383:6630773,44824913:25952256,513147,126483 -k1,1382:7449922,44824913:159857 -k1,1382:8628865,44824913:159858 -k1,1382:11975082,44824913:159857 -k1,1382:12666436,44824913:159857 -k1,1382:13892565,44824913:159858 -k1,1382:17287279,44824913:159857 -k1,1382:18531102,44824913:159857 -k1,1382:19342387,44824913:159857 -k1,1382:23167018,44824913:159858 -k1,1382:24875491,44824913:159857 -k1,1382:27740019,44824913:159857 -k1,1382:29597915,44824913:159858 -k1,1382:30928245,44824913:159857 -k1,1382:32583029,44824913:0 -) -(1,1383:6630773,45666401:25952256,513147,134348 -k1,1382:7852781,45666401:202923 -k1,1382:11031039,45666401:202923 -k1,1382:14897425,45666401:202923 -k1,1382:18028497,45666401:202923 -k1,1382:21535090,45666401:202923 -k1,1382:22269509,45666401:202922 -k1,1382:24623324,45666401:202923 -k1,1382:25512409,45666401:202923 -k1,1382:26734417,45666401:202923 -k1,1382:28243473,45666401:202923 -k1,1382:31478747,45666401:202923 -k1,1382:32583029,45666401:0 -) -] -(1,1385:32583029,45706769:0,0,0 -g1,1385:32583029,45706769 -) -) -] -(1,1385:6630773,47279633:25952256,0,0 -h1,1385:6630773,47279633:25952256,0,0 -) -] -(1,1385:4262630,4025873:0,0,0 -[1,1385:-473656,4025873:0,0,0 -(1,1385:-473656,-710413:0,0,0 -(1,1385:-473656,-710413:0,0,0 -g1,1385:-473656,-710413 -) -g1,1385:-473656,-710413 -) -] -) -] -!24800 -}43 -Input:349:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:350:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!193 -{44 -[1,1470:4262630,47279633:28320399,43253760,0 -(1,1470:4262630,4025873:0,0,0 -[1,1470:-473656,4025873:0,0,0 -(1,1470:-473656,-710413:0,0,0 -(1,1470:-473656,-644877:0,0,0 -k1,1470:-473656,-644877:-65536 -) -(1,1470:-473656,4736287:0,0,0 -k1,1470:-473656,4736287:5209943 -) -g1,1470:-473656,-710413 -) -] -) -[1,1470:6630773,47279633:25952256,43253760,0 -[1,1470:6630773,4812305:25952256,786432,0 -(1,1470:6630773,4812305:25952256,505283,134348 -(1,1470:6630773,4812305:25952256,505283,134348 -g1,1470:3078558,4812305 -[1,1470:3078558,4812305:0,0,0 -(1,1470:3078558,2439708:0,1703936,0 -k1,1470:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,1470:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,1470:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,1470:3078558,4812305:0,0,0 -(1,1470:3078558,2439708:0,1703936,0 -g1,1470:29030814,2439708 -g1,1470:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,1470:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,1470:37855564,2439708:1179648,16384,0 -) -) -k1,1470:3078556,2439708:-34777008 -) -] -[1,1470:3078558,4812305:0,0,0 -(1,1470:3078558,49800853:0,16384,2228224 -k1,1470:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,1470:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,1470:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,1470:3078558,4812305:0,0,0 -(1,1470:3078558,49800853:0,16384,2228224 -g1,1470:29030814,49800853 -g1,1470:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,1470:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,1470:37855564,49800853:1179648,16384,0 -) -) -k1,1470:3078556,49800853:-34777008 -) -] -g1,1470:6630773,4812305 -g1,1470:6630773,4812305 -g1,1470:9062814,4812305 -g1,1470:11256304,4812305 -g1,1470:12665983,4812305 -g1,1470:15337230,4812305 -g1,1470:17955393,4812305 -k1,1470:31786111,4812305:13830718 -) -) -] -[1,1470:6630773,45706769:25952256,40108032,0 -(1,1470:6630773,45706769:25952256,40108032,0 -(1,1470:6630773,45706769:0,0,0 -g1,1470:6630773,45706769 -) -[1,1470:6630773,45706769:25952256,40108032,0 -(1,1383:6630773,6254097:25952256,513147,134348 -k1,1382:7534655,6254097:156116 -k1,1382:9203997,6254097:156116 -k1,1382:10046275,6254097:156116 -k1,1382:10558251,6254097:156116 -k1,1382:12568381,6254097:156116 -k1,1382:16013094,6254097:156116 -k1,1382:16525069,6254097:156115 -k1,1382:18134774,6254097:156116 -k1,1382:21323241,6254097:156116 -k1,1382:23046978,6254097:156116 -k1,1382:24941109,6254097:156116 -k1,1382:28158412,6254097:156116 -k1,1382:30012566,6254097:156116 -k1,1382:30626779,6254097:156116 -k1,1382:32583029,6254097:0 -) -(1,1383:6630773,7095585:25952256,473825,134348 -g1,1382:8960577,7095585 -g1,1382:9930509,7095585 -k1,1383:32583030,7095585:20871908 -g1,1383:32583030,7095585 -) -v1,1385:6630773,8286051:0,393216,0 -(1,1422:6630773,19567664:25952256,11674829,196608 -g1,1422:6630773,19567664 -g1,1422:6630773,19567664 -g1,1422:6434165,19567664 -(1,1422:6434165,19567664:0,11674829,196608 -r1,1470:32779637,19567664:26345472,11871437,196608 -k1,1422:6434165,19567664:-26345472 -) -(1,1422:6434165,19567664:26345472,11674829,196608 -[1,1422:6630773,19567664:25952256,11478221,0 -(1,1387:6630773,8493669:25952256,404226,76021 -(1,1386:6630773,8493669:0,0,0 -g1,1386:6630773,8493669 -g1,1386:6630773,8493669 -g1,1386:6303093,8493669 -(1,1386:6303093,8493669:0,0,0 -) -g1,1386:6630773,8493669 -) -g1,1387:8211502,8493669 -g1,1387:9159939,8493669 -h1,1387:9792230,8493669:0,0,0 -k1,1387:32583030,8493669:22790800 -g1,1387:32583030,8493669 -) -(1,1391:6630773,9225383:25952256,404226,76021 -(1,1389:6630773,9225383:0,0,0 -g1,1389:6630773,9225383 -g1,1389:6630773,9225383 -g1,1389:6303093,9225383 -(1,1389:6303093,9225383:0,0,0 -) -g1,1389:6630773,9225383 -) -g1,1391:7579210,9225383 -g1,1391:8843793,9225383 -h1,1391:10108376,9225383:0,0,0 -k1,1391:32583028,9225383:22474652 -g1,1391:32583028,9225383 -) -(1,1393:6630773,10546921:25952256,404226,76021 -(1,1392:6630773,10546921:0,0,0 -g1,1392:6630773,10546921 -g1,1392:6630773,10546921 -g1,1392:6303093,10546921 -(1,1392:6303093,10546921:0,0,0 -) -g1,1392:6630773,10546921 -) -g1,1393:8527647,10546921 -g1,1393:9476084,10546921 -h1,1393:10108375,10546921:0,0,0 -k1,1393:32583029,10546921:22474654 -g1,1393:32583029,10546921 -) -(1,1397:6630773,11278635:25952256,404226,76021 -(1,1395:6630773,11278635:0,0,0 -g1,1395:6630773,11278635 -g1,1395:6630773,11278635 -g1,1395:6303093,11278635 -(1,1395:6303093,11278635:0,0,0 -) -g1,1395:6630773,11278635 -) -g1,1397:7579210,11278635 -g1,1397:8843793,11278635 -h1,1397:9476084,11278635:0,0,0 -k1,1397:32583028,11278635:23106944 -g1,1397:32583028,11278635 -) -(1,1399:6630773,12600173:25952256,388497,9436 -(1,1398:6630773,12600173:0,0,0 -g1,1398:6630773,12600173 -g1,1398:6630773,12600173 -g1,1398:6303093,12600173 -(1,1398:6303093,12600173:0,0,0 -) -g1,1398:6630773,12600173 -) -g1,1399:8211502,12600173 -g1,1399:9159939,12600173 -h1,1399:9792230,12600173:0,0,0 -k1,1399:32583030,12600173:22790800 -g1,1399:32583030,12600173 -) -(1,1403:6630773,13331887:25952256,404226,76021 -(1,1401:6630773,13331887:0,0,0 -g1,1401:6630773,13331887 -g1,1401:6630773,13331887 -g1,1401:6303093,13331887 -(1,1401:6303093,13331887:0,0,0 -) -g1,1401:6630773,13331887 -) -g1,1403:7579210,13331887 -g1,1403:8843793,13331887 -h1,1403:9476084,13331887:0,0,0 -k1,1403:32583028,13331887:23106944 -g1,1403:32583028,13331887 -) -(1,1405:6630773,14653425:25952256,388497,9436 -(1,1404:6630773,14653425:0,0,0 -g1,1404:6630773,14653425 -g1,1404:6630773,14653425 -g1,1404:6303093,14653425 -(1,1404:6303093,14653425:0,0,0 -) -g1,1404:6630773,14653425 -) -g1,1405:8527647,14653425 -g1,1405:9476084,14653425 -h1,1405:10108375,14653425:0,0,0 -k1,1405:32583029,14653425:22474654 -g1,1405:32583029,14653425 -) -(1,1409:6630773,15385139:25952256,404226,76021 -(1,1407:6630773,15385139:0,0,0 -g1,1407:6630773,15385139 -g1,1407:6630773,15385139 -g1,1407:6303093,15385139 -(1,1407:6303093,15385139:0,0,0 -) -g1,1407:6630773,15385139 -) -g1,1409:7579210,15385139 -g1,1409:8843793,15385139 -h1,1409:10424521,15385139:0,0,0 -k1,1409:32583029,15385139:22158508 -g1,1409:32583029,15385139 -) -(1,1411:6630773,16706677:25952256,388497,9436 -(1,1410:6630773,16706677:0,0,0 -g1,1410:6630773,16706677 -g1,1410:6630773,16706677 -g1,1410:6303093,16706677 -(1,1410:6303093,16706677:0,0,0 -) -g1,1410:6630773,16706677 -) -g1,1411:8211502,16706677 -g1,1411:9159939,16706677 -g1,1411:11056813,16706677 -g1,1411:12005250,16706677 -h1,1411:12637541,16706677:0,0,0 -k1,1411:32583029,16706677:19945488 -g1,1411:32583029,16706677 -) -(1,1415:6630773,17438391:25952256,404226,76021 -(1,1413:6630773,17438391:0,0,0 -g1,1413:6630773,17438391 -g1,1413:6630773,17438391 -g1,1413:6303093,17438391 -(1,1413:6303093,17438391:0,0,0 -) -g1,1413:6630773,17438391 -) -g1,1415:7579210,17438391 -g1,1415:8843793,17438391 -h1,1415:10424521,17438391:0,0,0 -k1,1415:32583029,17438391:22158508 -g1,1415:32583029,17438391 -) -(1,1417:6630773,18759929:25952256,388497,9436 -(1,1416:6630773,18759929:0,0,0 -g1,1416:6630773,18759929 -g1,1416:6630773,18759929 -g1,1416:6303093,18759929 -(1,1416:6303093,18759929:0,0,0 -) -g1,1416:6630773,18759929 -) -g1,1417:8211502,18759929 -g1,1417:9159939,18759929 -g1,1417:10740668,18759929 -g1,1417:11689105,18759929 -h1,1417:12321396,18759929:0,0,0 -k1,1417:32583028,18759929:20261632 -g1,1417:32583028,18759929 -) -(1,1421:6630773,19491643:25952256,404226,76021 -(1,1419:6630773,19491643:0,0,0 -g1,1419:6630773,19491643 -g1,1419:6630773,19491643 -g1,1419:6303093,19491643 -(1,1419:6303093,19491643:0,0,0 -) -g1,1419:6630773,19491643 -) -g1,1421:7579210,19491643 -g1,1421:8843793,19491643 -h1,1421:9476084,19491643:0,0,0 -k1,1421:32583028,19491643:23106944 -g1,1421:32583028,19491643 -) -] -) -g1,1422:32583029,19567664 -g1,1422:6630773,19567664 -g1,1422:6630773,19567664 -g1,1422:32583029,19567664 -g1,1422:32583029,19567664 -) -h1,1422:6630773,19764272:0,0,0 -(1,1426:6630773,21130048:25952256,513147,134348 -h1,1425:6630773,21130048:983040,0,0 -k1,1425:9687611,21130048:290563 -k1,1425:11713566,21130048:290562 -k1,1425:13023214,21130048:290563 -k1,1425:16650870,21130048:290563 -k1,1425:20018348,21130048:290563 -k1,1425:21118280,21130048:290562 -k1,1425:23717021,21130048:290563 -k1,1425:24666876,21130048:290563 -k1,1425:26970705,21130048:290563 -k1,1425:29519638,21130048:290562 -k1,1425:31252648,21130048:290563 -k1,1425:32583029,21130048:0 -) -(1,1426:6630773,21971536:25952256,513147,126483 -g1,1425:10080588,21971536 -g1,1425:13583487,21971536 -g1,1425:14981370,21971536 -g1,1425:17461907,21971536 -g1,1425:18608787,21971536 -g1,1425:19827101,21971536 -g1,1425:21869202,21971536 -g1,1425:24860265,21971536 -g1,1425:25672256,21971536 -g1,1425:27323107,21971536 -g1,1425:29271492,21971536 -k1,1426:32583029,21971536:523635 -g1,1426:32583029,21971536 -) -v1,1428:6630773,23162002:0,393216,0 -(1,1447:6630773,28283859:25952256,5515073,196608 -g1,1447:6630773,28283859 -g1,1447:6630773,28283859 -g1,1447:6434165,28283859 -(1,1447:6434165,28283859:0,5515073,196608 -r1,1470:32779637,28283859:26345472,5711681,196608 -k1,1447:6434165,28283859:-26345472 -) -(1,1447:6434165,28283859:26345472,5515073,196608 -[1,1447:6630773,28283859:25952256,5318465,0 -(1,1430:6630773,23369620:25952256,404226,9436 -(1,1429:6630773,23369620:0,0,0 -g1,1429:6630773,23369620 -g1,1429:6630773,23369620 -g1,1429:6303093,23369620 -(1,1429:6303093,23369620:0,0,0 -) -g1,1429:6630773,23369620 -) -g1,1430:7263065,23369620 -g1,1430:7895357,23369620 -g1,1430:8527649,23369620 -g1,1430:9159941,23369620 -h1,1430:9792232,23369620:0,0,0 -k1,1430:32583028,23369620:22790796 -g1,1430:32583028,23369620 -) -(1,1434:6630773,24101334:25952256,404226,76021 -(1,1432:6630773,24101334:0,0,0 -g1,1432:6630773,24101334 -g1,1432:6630773,24101334 -g1,1432:6303093,24101334 -(1,1432:6303093,24101334:0,0,0 -) -g1,1432:6630773,24101334 -) -g1,1434:7579210,24101334 -g1,1434:8843793,24101334 -g1,1434:9159939,24101334 -g1,1434:9476085,24101334 -g1,1434:9792231,24101334 -g1,1434:10740668,24101334 -h1,1434:12321396,24101334:0,0,0 -k1,1434:32583028,24101334:20261632 -g1,1434:32583028,24101334 -) -(1,1436:6630773,25422872:25952256,404226,82312 -(1,1435:6630773,25422872:0,0,0 -g1,1435:6630773,25422872 -g1,1435:6630773,25422872 -g1,1435:6303093,25422872 -(1,1435:6303093,25422872:0,0,0 -) -g1,1435:6630773,25422872 -) -g1,1436:7263065,25422872 -g1,1436:7895357,25422872 -g1,1436:8527649,25422872 -g1,1436:9159941,25422872 -g1,1436:11056816,25422872 -h1,1436:12005253,25422872:0,0,0 -k1,1436:32583029,25422872:20577776 -g1,1436:32583029,25422872 -) -(1,1440:6630773,26154586:25952256,404226,76021 -(1,1438:6630773,26154586:0,0,0 -g1,1438:6630773,26154586 -g1,1438:6630773,26154586 -g1,1438:6303093,26154586 -(1,1438:6303093,26154586:0,0,0 -) -g1,1438:6630773,26154586 -) -g1,1440:7579210,26154586 -g1,1440:8843793,26154586 -g1,1440:9159939,26154586 -g1,1440:9476085,26154586 -g1,1440:9792231,26154586 -g1,1440:10740668,26154586 -h1,1440:12321396,26154586:0,0,0 -k1,1440:32583028,26154586:20261632 -g1,1440:32583028,26154586 -) -(1,1442:6630773,27476124:25952256,404226,82312 -(1,1441:6630773,27476124:0,0,0 -g1,1441:6630773,27476124 -g1,1441:6630773,27476124 -g1,1441:6303093,27476124 -(1,1441:6303093,27476124:0,0,0 -) -g1,1441:6630773,27476124 -) -g1,1442:7263065,27476124 -g1,1442:7895357,27476124 -g1,1442:8527649,27476124 -g1,1442:9159941,27476124 -g1,1442:11056816,27476124 -h1,1442:12005253,27476124:0,0,0 -k1,1442:32583029,27476124:20577776 -g1,1442:32583029,27476124 -) -(1,1446:6630773,28207838:25952256,404226,76021 -(1,1444:6630773,28207838:0,0,0 -g1,1444:6630773,28207838 -g1,1444:6630773,28207838 -g1,1444:6303093,28207838 -(1,1444:6303093,28207838:0,0,0 -) -g1,1444:6630773,28207838 -) -g1,1446:7579210,28207838 -g1,1446:8843793,28207838 -g1,1446:10424522,28207838 -h1,1446:11689105,28207838:0,0,0 -k1,1446:32583029,28207838:20893924 -g1,1446:32583029,28207838 -) -] -) -g1,1447:32583029,28283859 -g1,1447:6630773,28283859 -g1,1447:6630773,28283859 -g1,1447:32583029,28283859 -g1,1447:32583029,28283859 -) -h1,1447:6630773,28480467:0,0,0 -v1,1451:6630773,30370531:0,393216,0 -(1,1463:6630773,41946279:25952256,11968964,616038 -g1,1463:6630773,41946279 -(1,1463:6630773,41946279:25952256,11968964,616038 -(1,1463:6630773,42562317:25952256,12585002,0 -[1,1463:6630773,42562317:25952256,12585002,0 -(1,1463:6630773,42536103:25952256,12532574,0 -r1,1470:6656987,42536103:26214,12532574,0 -[1,1463:6656987,42536103:25899828,12532574,0 -(1,1463:6656987,41946279:25899828,11352926,0 -[1,1463:7246811,41946279:24720180,11352926,0 -(1,1452:7246811,31680727:24720180,1087374,134348 -k1,1451:8656969,31680727:200455 -k1,1451:10710783,31680727:200456 -k1,1451:11720608,31680727:200455 -k1,1451:12940149,31680727:200456 -k1,1451:16750327,31680727:200455 -k1,1451:17610075,31680727:200456 -k1,1451:21270176,31680727:200455 -k1,1451:24644540,31680727:200455 -k1,1451:25654366,31680727:200456 -k1,1451:27352974,31680727:200455 -h1,1451:28149892,31680727:0,0,0 -k1,1451:28350348,31680727:200456 -k1,1451:29498454,31680727:200455 -(1,1451:29498454,31680727:0,452978,115847 -r1,1470:31966991,31680727:2468537,568825,115847 -k1,1451:29498454,31680727:-2468537 -) -(1,1451:29498454,31680727:2468537,452978,115847 -k1,1451:29498454,31680727:3277 -h1,1451:31963714,31680727:0,411205,112570 -) -k1,1451:31966991,31680727:0 -) -(1,1452:7246811,32522215:24720180,505283,134348 -k1,1451:10789032,32522215:291635 -k1,1451:13449138,32522215:291635 -k1,1451:15071154,32522215:291635 -k1,1451:18822436,32522215:291636 -k1,1451:21040829,32522215:291635 -k1,1451:22726415,32522215:291635 -k1,1451:26355143,32522215:291635 -k1,1451:28716405,32522215:291635 -k1,1451:31966991,32522215:0 -) -(1,1452:7246811,33363703:24720180,513147,134348 -k1,1451:9535745,33363703:237657 -k1,1451:11843030,33363703:237658 -k1,1451:14388865,33363703:237657 -k1,1451:15285814,33363703:237657 -k1,1451:18285815,33363703:237658 -k1,1451:20867039,33363703:237657 -k1,1451:24292368,33363703:237658 -k1,1451:26543291,33363703:237657 -k1,1451:28144752,33363703:237657 -k1,1451:29573855,33363703:237658 -k1,1451:31205463,33363703:237657 -k1,1451:31966991,33363703:0 -) -(1,1452:7246811,34205191:24720180,505283,134348 -k1,1451:9721748,34205191:217222 -k1,1451:12170471,34205191:217222 -k1,1451:13883880,34205191:217222 -k1,1451:17617764,34205191:217222 -k1,1451:19228937,34205191:217222 -k1,1451:22850754,34205191:217222 -k1,1451:23877346,34205191:217222 -k1,1451:25907294,34205191:217222 -k1,1451:26953546,34205191:217222 -k1,1451:28149221,34205191:217222 -k1,1451:29536916,34205191:217222 -k1,1451:31966991,34205191:0 -) -(1,1452:7246811,35046679:24720180,505283,134348 -k1,1451:8678117,35046679:274596 -k1,1451:11614130,35046679:274596 -k1,1451:12420223,35046679:274596 -k1,1451:14389579,35046679:274595 -k1,1451:16706277,35046679:274596 -k1,1451:19416846,35046679:274596 -k1,1451:20894683,35046679:274596 -k1,1451:24004366,35046679:274596 -k1,1451:25470407,35046679:274596 -k1,1451:27178930,35046679:274595 -k1,1451:29382906,35046679:274596 -k1,1451:30848947,35046679:274596 -k1,1451:31966991,35046679:0 -) -(1,1452:7246811,35888167:24720180,505283,134348 -k1,1451:8893348,35888167:187706 -k1,1451:10585105,35888167:187706 -k1,1451:13131451,35888167:187705 -k1,1451:14700001,35888167:187706 -k1,1451:16172213,35888167:187706 -k1,1451:17530392,35888167:187706 -k1,1451:21382871,35888167:187706 -k1,1451:22867535,35888167:187706 -k1,1451:24074325,35888167:187705 -k1,1451:26272676,35888167:187706 -k1,1451:29239109,35888167:187706 -k1,1451:30418375,35888167:187706 -k1,1451:31966991,35888167:0 -) -(1,1452:7246811,36729655:24720180,505283,126483 -k1,1451:8897390,36729655:270391 -k1,1451:10333010,36729655:270390 -k1,1451:14249824,36729655:270391 -k1,1451:15690687,36729655:270390 -k1,1451:17093540,36729655:270391 -k1,1451:18894197,36729655:270391 -k1,1451:19816015,36729655:270390 -k1,1451:22090497,36729655:270391 -k1,1451:24592388,36729655:270390 -k1,1451:27854498,36729655:270391 -k1,1451:28807773,36729655:270390 -k1,1451:30269609,36729655:270391 -k1,1451:31966991,36729655:0 -) -(1,1452:7246811,37571143:24720180,513147,134348 -k1,1451:8149480,37571143:251241 -k1,1451:10038465,37571143:251240 -k1,1451:11355977,37571143:251241 -k1,1451:12274374,37571143:251241 -k1,1451:12940405,37571143:251188 -k1,1451:13962349,37571143:251241 -k1,1451:18868612,37571143:251241 -k1,1451:19779145,37571143:251241 -k1,1451:21360766,37571143:251240 -k1,1451:21967867,37571143:251241 -k1,1451:24417186,37571143:251241 -k1,1451:26943837,37571143:251241 -k1,1451:27854369,37571143:251240 -k1,1451:29124695,37571143:251241 -k1,1451:31966991,37571143:0 -) -(1,1452:7246811,38412631:24720180,513147,134348 -g1,1451:9546469,38412631 -g1,1451:10470526,38412631 -g1,1451:11485023,38412631 -g1,1451:12750523,38412631 -g1,1451:14229670,38412631 -g1,1451:15264483,38412631 -g1,1451:17195173,38412631 -g1,1451:18585847,38412631 -g1,1451:20500809,38412631 -g1,1451:21792523,38412631 -g1,1451:22651044,38412631 -g1,1451:24309104,38412631 -k1,1452:31966991,38412631:3693614 -g1,1452:31966991,38412631 -) -v1,1454:7246811,39603097:0,393216,0 -(1,1460:7246811,41225383:24720180,2015502,196608 -g1,1460:7246811,41225383 -g1,1460:7246811,41225383 -g1,1460:7050203,41225383 -(1,1460:7050203,41225383:0,2015502,196608 -r1,1470:32163599,41225383:25113396,2212110,196608 -k1,1460:7050203,41225383:-25113396 -) -(1,1460:7050203,41225383:25113396,2015502,196608 -[1,1460:7246811,41225383:24720180,1818894,0 -(1,1456:7246811,39810715:24720180,404226,82312 -(1,1455:7246811,39810715:0,0,0 -g1,1455:7246811,39810715 -g1,1455:7246811,39810715 -g1,1455:6919131,39810715 -(1,1455:6919131,39810715:0,0,0 -) -g1,1455:7246811,39810715 -) -g1,1456:7879103,39810715 -g1,1456:8827541,39810715 -g1,1456:11356708,39810715 -g1,1456:13569728,39810715 -g1,1456:15466603,39810715 -h1,1456:16415040,39810715:0,0,0 -k1,1456:31966991,39810715:15551951 -g1,1456:31966991,39810715 -) -(1,1457:7246811,40476893:24720180,388497,9436 -h1,1457:7246811,40476893:0,0,0 -g1,1457:7879103,40476893 -g1,1457:8511395,40476893 -h1,1457:10092123,40476893:0,0,0 -k1,1457:31966991,40476893:21874868 -g1,1457:31966991,40476893 -) -(1,1458:7246811,41143071:24720180,404226,82312 -h1,1458:7246811,41143071:0,0,0 -g1,1458:7879103,41143071 -g1,1458:8511395,41143071 -g1,1458:11040562,41143071 -h1,1458:12937436,41143071:0,0,0 -k1,1458:31966992,41143071:19029556 -g1,1458:31966992,41143071 -) -] -) -g1,1460:31966991,41225383 -g1,1460:7246811,41225383 -g1,1460:7246811,41225383 -g1,1460:31966991,41225383 -g1,1460:31966991,41225383 -) -h1,1460:7246811,41421991:0,0,0 -] -) -] -r1,1470:32583029,42536103:26214,12532574,0 -) -] -) -) -g1,1463:32583029,41946279 -) -h1,1463:6630773,42562317:0,0,0 -] -(1,1470:32583029,45706769:0,0,0 -g1,1470:32583029,45706769 -) -) -] -(1,1470:6630773,47279633:25952256,0,0 -h1,1470:6630773,47279633:25952256,0,0 -) -] -(1,1470:4262630,4025873:0,0,0 -[1,1470:-473656,4025873:0,0,0 -(1,1470:-473656,-710413:0,0,0 -(1,1470:-473656,-710413:0,0,0 -g1,1470:-473656,-710413 -) -g1,1470:-473656,-710413 -) -] -) -] -!19457 -}44 -Input:351:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:352:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:353:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!284 -{45 -[1,1574:4262630,47279633:28320399,43253760,0 -(1,1574:4262630,4025873:0,0,0 -[1,1574:-473656,4025873:0,0,0 -(1,1574:-473656,-710413:0,0,0 -(1,1574:-473656,-644877:0,0,0 -k1,1574:-473656,-644877:-65536 -) -(1,1574:-473656,4736287:0,0,0 -k1,1574:-473656,4736287:5209943 -) -g1,1574:-473656,-710413 -) -] -) -[1,1574:6630773,47279633:25952256,43253760,0 -[1,1574:6630773,4812305:25952256,786432,0 -(1,1574:6630773,4812305:25952256,505283,134348 -(1,1574:6630773,4812305:25952256,505283,134348 -g1,1574:3078558,4812305 -[1,1574:3078558,4812305:0,0,0 -(1,1574:3078558,2439708:0,1703936,0 -k1,1574:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,1574:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,1574:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,1574:3078558,4812305:0,0,0 -(1,1574:3078558,2439708:0,1703936,0 -g1,1574:29030814,2439708 -g1,1574:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,1574:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,1574:37855564,2439708:1179648,16384,0 -) -) -k1,1574:3078556,2439708:-34777008 -) -] -[1,1574:3078558,4812305:0,0,0 -(1,1574:3078558,49800853:0,16384,2228224 -k1,1574:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,1574:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,1574:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,1574:3078558,4812305:0,0,0 -(1,1574:3078558,49800853:0,16384,2228224 -g1,1574:29030814,49800853 -g1,1574:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,1574:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,1574:37855564,49800853:1179648,16384,0 -) -) -k1,1574:3078556,49800853:-34777008 -) -] -g1,1574:6630773,4812305 -k1,1574:19515153,4812305:12087462 -g1,1574:20901894,4812305 -g1,1574:21550700,4812305 -g1,1574:24864855,4812305 -g1,1574:27600327,4812305 -g1,1574:29010006,4812305 -) -) -] -[1,1574:6630773,45706769:25952256,40108032,0 -(1,1574:6630773,45706769:25952256,40108032,0 -(1,1574:6630773,45706769:0,0,0 -g1,1574:6630773,45706769 -) -[1,1574:6630773,45706769:25952256,40108032,0 -(1,1465:6630773,6254097:25952256,32768,229376 -(1,1465:6630773,6254097:0,32768,229376 -(1,1465:6630773,6254097:5505024,32768,229376 -r1,1574:12135797,6254097:5505024,262144,229376 -) -k1,1465:6630773,6254097:-5505024 -) -(1,1465:6630773,6254097:25952256,32768,0 -r1,1574:32583029,6254097:25952256,32768,0 -) -) -(1,1465:6630773,7858425:25952256,606339,151780 -(1,1465:6630773,7858425:1974731,582746,14155 -g1,1465:6630773,7858425 -g1,1465:8605504,7858425 -) -g1,1465:13636310,7858425 -g1,1465:17688794,7858425 -g1,1465:19398497,7858425 -k1,1465:32583029,7858425:8970829 -g1,1465:32583029,7858425 -) -(1,1468:6630773,9093129:25952256,513147,126483 -g1,1467:10705801,9093129 -g1,1467:13981945,9093129 -g1,1467:16191819,9093129 -g1,1467:18699226,9093129 -g1,1467:19565611,9093129 -(1,1467:19565611,9093129:0,452978,122846 -r1,1574:22034148,9093129:2468537,575824,122846 -k1,1467:19565611,9093129:-2468537 -) -(1,1467:19565611,9093129:2468537,452978,122846 -k1,1467:19565611,9093129:3277 -h1,1467:22030871,9093129:0,411205,112570 -) -g1,1467:22233377,9093129 -g1,1467:24443251,9093129 -g1,1467:25328642,9093129 -k1,1468:32583029,9093129:4907543 -g1,1468:32583029,9093129 -) -v1,1470:6630773,10073879:0,393216,0 -(1,1514:6630773,24059193:25952256,14378530,196608 -g1,1514:6630773,24059193 -g1,1514:6630773,24059193 -g1,1514:6434165,24059193 -(1,1514:6434165,24059193:0,14378530,196608 -r1,1574:32779637,24059193:26345472,14575138,196608 -k1,1514:6434165,24059193:-26345472 -) -(1,1514:6434165,24059193:26345472,14378530,196608 -[1,1514:6630773,24059193:25952256,14181922,0 -(1,1472:6630773,10265768:25952256,388497,9436 -(1,1471:6630773,10265768:0,0,0 -g1,1471:6630773,10265768 -g1,1471:6630773,10265768 -g1,1471:6303093,10265768 -(1,1471:6303093,10265768:0,0,0 -) -g1,1471:6630773,10265768 -) -g1,1472:7895356,10265768 -g1,1472:8527648,10265768 -h1,1472:9476085,10265768:0,0,0 -k1,1472:32583029,10265768:23106944 -g1,1472:32583029,10265768 -) -(1,1476:6630773,10997482:25952256,404226,76021 -(1,1474:6630773,10997482:0,0,0 -g1,1474:6630773,10997482 -g1,1474:6630773,10997482 -g1,1474:6303093,10997482 -(1,1474:6303093,10997482:0,0,0 -) -g1,1474:6630773,10997482 -) -g1,1476:7579210,10997482 -g1,1476:8843793,10997482 -h1,1476:10108376,10997482:0,0,0 -k1,1476:32583028,10997482:22474652 -g1,1476:32583028,10997482 -) -(1,1478:6630773,12319020:25952256,388497,9436 -(1,1477:6630773,12319020:0,0,0 -g1,1477:6630773,12319020 -g1,1477:6630773,12319020 -g1,1477:6303093,12319020 -(1,1477:6303093,12319020:0,0,0 -) -g1,1477:6630773,12319020 -) -g1,1478:7895356,12319020 -g1,1478:8843793,12319020 -h1,1478:9792230,12319020:0,0,0 -k1,1478:32583030,12319020:22790800 -g1,1478:32583030,12319020 -) -(1,1482:6630773,13050734:25952256,404226,76021 -(1,1480:6630773,13050734:0,0,0 -g1,1480:6630773,13050734 -g1,1480:6630773,13050734 -g1,1480:6303093,13050734 -(1,1480:6303093,13050734:0,0,0 -) -g1,1480:6630773,13050734 -) -g1,1482:7579210,13050734 -g1,1482:8843793,13050734 -h1,1482:10108376,13050734:0,0,0 -k1,1482:32583028,13050734:22474652 -g1,1482:32583028,13050734 -) -(1,1484:6630773,14372272:25952256,404226,101187 -(1,1483:6630773,14372272:0,0,0 -g1,1483:6630773,14372272 -g1,1483:6630773,14372272 -g1,1483:6303093,14372272 -(1,1483:6303093,14372272:0,0,0 -) -g1,1483:6630773,14372272 -) -g1,1484:7895356,14372272 -g1,1484:8843793,14372272 -g1,1484:10108376,14372272 -g1,1484:10740668,14372272 -g1,1484:11689105,14372272 -g1,1484:13585979,14372272 -g1,1484:15166708,14372272 -g1,1484:16747437,14372272 -g1,1484:17695874,14372272 -g1,1484:18960457,14372272 -g1,1484:20225040,14372272 -g1,1484:20857332,14372272 -k1,1484:20857332,14372272:0 -h1,1484:23070352,14372272:0,0,0 -k1,1484:32583029,14372272:9512677 -g1,1484:32583029,14372272 -) -(1,1488:6630773,15103986:25952256,404226,76021 -(1,1486:6630773,15103986:0,0,0 -g1,1486:6630773,15103986 -g1,1486:6630773,15103986 -g1,1486:6303093,15103986 -(1,1486:6303093,15103986:0,0,0 -) -g1,1486:6630773,15103986 -) -g1,1488:7579210,15103986 -g1,1488:8843793,15103986 -h1,1488:10424521,15103986:0,0,0 -k1,1488:32583029,15103986:22158508 -g1,1488:32583029,15103986 -) -(1,1490:6630773,16425524:25952256,388497,9436 -(1,1489:6630773,16425524:0,0,0 -g1,1489:6630773,16425524 -g1,1489:6630773,16425524 -g1,1489:6303093,16425524 -(1,1489:6303093,16425524:0,0,0 -) -g1,1489:6630773,16425524 -) -g1,1490:7895356,16425524 -g1,1490:8843793,16425524 -h1,1490:9792230,16425524:0,0,0 -k1,1490:32583030,16425524:22790800 -g1,1490:32583030,16425524 -) -(1,1494:6630773,17157238:25952256,404226,76021 -(1,1492:6630773,17157238:0,0,0 -g1,1492:6630773,17157238 -g1,1492:6630773,17157238 -g1,1492:6303093,17157238 -(1,1492:6303093,17157238:0,0,0 -) -g1,1492:6630773,17157238 -) -g1,1494:7579210,17157238 -g1,1494:8843793,17157238 -h1,1494:10108376,17157238:0,0,0 -k1,1494:32583028,17157238:22474652 -g1,1494:32583028,17157238 -) -(1,1496:6630773,18478776:25952256,388497,9436 -(1,1495:6630773,18478776:0,0,0 -g1,1495:6630773,18478776 -g1,1495:6630773,18478776 -g1,1495:6303093,18478776 -(1,1495:6303093,18478776:0,0,0 -) -g1,1495:6630773,18478776 -) -g1,1496:7895356,18478776 -g1,1496:8843793,18478776 -h1,1496:9792230,18478776:0,0,0 -k1,1496:32583030,18478776:22790800 -g1,1496:32583030,18478776 -) -(1,1500:6630773,19210490:25952256,404226,76021 -(1,1498:6630773,19210490:0,0,0 -g1,1498:6630773,19210490 -g1,1498:6630773,19210490 -g1,1498:6303093,19210490 -(1,1498:6303093,19210490:0,0,0 -) -g1,1498:6630773,19210490 -) -g1,1500:7579210,19210490 -g1,1500:8843793,19210490 -h1,1500:10424521,19210490:0,0,0 -k1,1500:32583029,19210490:22158508 -g1,1500:32583029,19210490 -) -(1,1502:6630773,20532028:25952256,388497,9436 -(1,1501:6630773,20532028:0,0,0 -g1,1501:6630773,20532028 -g1,1501:6630773,20532028 -g1,1501:6303093,20532028 -(1,1501:6303093,20532028:0,0,0 -) -g1,1501:6630773,20532028 -) -g1,1502:7895356,20532028 -g1,1502:8527648,20532028 -h1,1502:9476085,20532028:0,0,0 -k1,1502:32583029,20532028:23106944 -g1,1502:32583029,20532028 -) -(1,1506:6630773,21263742:25952256,404226,76021 -(1,1504:6630773,21263742:0,0,0 -g1,1504:6630773,21263742 -g1,1504:6630773,21263742 -g1,1504:6303093,21263742 -(1,1504:6303093,21263742:0,0,0 -) -g1,1504:6630773,21263742 -) -g1,1506:7579210,21263742 -g1,1506:8843793,21263742 -h1,1506:10424521,21263742:0,0,0 -k1,1506:32583029,21263742:22158508 -g1,1506:32583029,21263742 -) -(1,1508:6630773,22585280:25952256,388497,9436 -(1,1507:6630773,22585280:0,0,0 -g1,1507:6630773,22585280 -g1,1507:6630773,22585280 -g1,1507:6303093,22585280 -(1,1507:6303093,22585280:0,0,0 -) -g1,1507:6630773,22585280 -) -g1,1508:7263065,22585280 -g1,1508:8211503,22585280 -h1,1508:8843794,22585280:0,0,0 -k1,1508:32583030,22585280:23739236 -g1,1508:32583030,22585280 -) -(1,1509:6630773,23251458:25952256,388497,9436 -h1,1509:6630773,23251458:0,0,0 -g1,1509:7263065,23251458 -g1,1509:7895357,23251458 -g1,1509:9159940,23251458 -g1,1509:10108377,23251458 -g1,1509:10740669,23251458 -g1,1509:11372961,23251458 -h1,1509:12005252,23251458:0,0,0 -k1,1509:32583028,23251458:20577776 -g1,1509:32583028,23251458 -) -(1,1513:6630773,23983172:25952256,404226,76021 -(1,1511:6630773,23983172:0,0,0 -g1,1511:6630773,23983172 -g1,1511:6630773,23983172 -g1,1511:6303093,23983172 -(1,1511:6303093,23983172:0,0,0 -) -g1,1511:6630773,23983172 -) -g1,1513:7579210,23983172 -g1,1513:8843793,23983172 -h1,1513:10108376,23983172:0,0,0 -k1,1513:32583028,23983172:22474652 -g1,1513:32583028,23983172 -) -] -) -g1,1514:32583029,24059193 -g1,1514:6630773,24059193 -g1,1514:6630773,24059193 -g1,1514:32583029,24059193 -g1,1514:32583029,24059193 -) -h1,1514:6630773,24255801:0,0,0 -(1,1518:6630773,25411861:25952256,513147,134348 -h1,1517:6630773,25411861:983040,0,0 -k1,1517:9770553,25411861:282410 -k1,1517:13129877,25411861:282409 -k1,1517:14516569,25411861:282410 -k1,1517:15546745,25411861:282410 -k1,1517:17342380,25411861:282409 -k1,1517:18434160,25411861:282410 -k1,1517:21024748,25411861:282410 -k1,1517:21966450,25411861:282410 -k1,1517:23380666,25411861:282409 -k1,1517:25850012,25411861:282410 -k1,1517:29133316,25411861:282410 -k1,1517:30101887,25411861:282409 -k1,1517:30740157,25411861:282410 -k1,1517:32583029,25411861:0 -) -(1,1518:6630773,26253349:25952256,505283,134348 -k1,1517:7268906,26253349:282273 -k1,1517:9620806,26253349:282273 -k1,1517:11880956,26253349:282273 -k1,1517:12849391,26253349:282273 -k1,1517:14520372,26253349:282273 -k1,1517:15488807,26253349:282273 -k1,1517:16790165,26253349:282273 -k1,1517:19395688,26253349:282272 -k1,1517:22494043,26253349:282273 -k1,1517:23404151,26253349:282273 -k1,1517:25388394,26253349:282273 -k1,1517:27799276,26253349:282273 -k1,1517:29461737,26253349:282273 -k1,1517:31966991,26253349:282273 -k1,1517:32583029,26253349:0 -) -(1,1518:6630773,27094837:25952256,505283,134348 -k1,1517:7875193,27094837:225335 -k1,1517:9754000,27094837:225334 -k1,1517:11217310,27094837:225335 -k1,1517:12128806,27094837:225334 -k1,1517:13373226,27094837:225335 -k1,1517:16874705,27094837:225334 -k1,1517:20176955,27094837:225335 -k1,1517:23492312,27094837:225334 -k1,1517:24527017,27094837:225335 -k1,1517:26250504,27094837:225334 -h1,1517:27047422,27094837:0,0,0 -k1,1517:27446427,27094837:225335 -k1,1517:29180400,27094837:225334 -k1,1517:32583029,27094837:0 -) -(1,1518:6630773,27936325:25952256,513147,126483 -k1,1517:7836062,27936325:213729 -k1,1517:10686960,27936325:213729 -k1,1517:12598727,27936325:213729 -k1,1517:15284474,27936325:213729 -k1,1517:17050096,27936325:213729 -k1,1517:17729786,27936325:213729 -k1,1517:19113988,27936325:213729 -k1,1517:20142986,27936325:213730 -k1,1517:21422986,27936325:213729 -k1,1517:23359657,27936325:213729 -k1,1517:25122002,27936325:213729 -k1,1517:25987159,27936325:213729 -k1,1517:28271826,27936325:213729 -k1,1517:29171717,27936325:213729 -k1,1517:29741306,27936325:213729 -k1,1517:31635378,27936325:213729 -k1,1517:32583029,27936325:0 -) -(1,1518:6630773,28777813:25952256,513147,126483 -k1,1517:7904463,28777813:254605 -k1,1517:10136946,28777813:254606 -k1,1517:13170278,28777813:254605 -k1,1517:14186411,28777813:254605 -(1,1517:14186411,28777813:0,435480,115847 -r1,1574:15599812,28777813:1413401,551327,115847 -k1,1517:14186411,28777813:-1413401 -) -(1,1517:14186411,28777813:1413401,435480,115847 -k1,1517:14186411,28777813:3277 -h1,1517:15596535,28777813:0,411205,112570 -) -k1,1517:16028087,28777813:254605 -k1,1517:18695073,28777813:254606 -k1,1517:19968763,28777813:254605 -k1,1517:23409728,28777813:254605 -(1,1517:23409728,28777813:0,452978,115847 -r1,1574:26229977,28777813:2820249,568825,115847 -k1,1517:23409728,28777813:-2820249 -) -(1,1517:23409728,28777813:2820249,452978,115847 -k1,1517:23409728,28777813:3277 -h1,1517:26226700,28777813:0,411205,112570 -) -k1,1517:26484582,28777813:254605 -k1,1517:28252414,28777813:254606 -k1,1517:29526104,28777813:254605 -k1,1517:31086842,28777813:254605 -k1,1517:32583029,28777813:0 -) -(1,1518:6630773,29619301:25952256,505283,134348 -g1,1517:10016362,29619301 -g1,1517:12257693,29619301 -g1,1517:13313478,29619301 -g1,1517:17639509,29619301 -(1,1517:17639509,29619301:0,435480,115847 -r1,1574:19052910,29619301:1413401,551327,115847 -k1,1517:17639509,29619301:-1413401 -) -(1,1517:17639509,29619301:1413401,435480,115847 -k1,1517:17639509,29619301:3277 -h1,1517:19049633,29619301:0,411205,112570 -) -g1,1517:19252139,29619301 -g1,1517:21911590,29619301 -g1,1517:24144401,29619301 -g1,1517:25362715,29619301 -g1,1517:27404816,29619301 -g1,1517:28255473,29619301 -g1,1517:28810562,29619301 -k1,1518:32583029,29619301:1087457 -g1,1518:32583029,29619301 -) -v1,1520:6630773,30600051:0,393216,0 -(1,1571:6630773,45510161:25952256,15303326,196608 -g1,1571:6630773,45510161 -g1,1571:6630773,45510161 -g1,1571:6434165,45510161 -(1,1571:6434165,45510161:0,15303326,196608 -r1,1574:32779637,45510161:26345472,15499934,196608 -k1,1571:6434165,45510161:-26345472 -) -(1,1571:6434165,45510161:26345472,15303326,196608 -[1,1571:6630773,45510161:25952256,15106718,0 -(1,1522:6630773,30791940:25952256,388497,9436 -(1,1521:6630773,30791940:0,0,0 -g1,1521:6630773,30791940 -g1,1521:6630773,30791940 -g1,1521:6303093,30791940 -(1,1521:6303093,30791940:0,0,0 -) -g1,1521:6630773,30791940 -) -g1,1522:7263065,30791940 -g1,1522:8211503,30791940 -h1,1522:9476086,30791940:0,0,0 -k1,1522:32583030,30791940:23106944 -g1,1522:32583030,30791940 -) -(1,1523:6630773,31458118:25952256,379060,9436 -h1,1523:6630773,31458118:0,0,0 -g1,1523:7263065,31458118 -g1,1523:7895357,31458118 -h1,1523:8211503,31458118:0,0,0 -k1,1523:32583029,31458118:24371526 -g1,1523:32583029,31458118 -) -(1,1527:6630773,32070190:25952256,404226,76021 -(1,1525:6630773,32070190:0,0,0 -g1,1525:6630773,32070190 -g1,1525:6630773,32070190 -g1,1525:6303093,32070190 -(1,1525:6303093,32070190:0,0,0 -) -g1,1525:6630773,32070190 -) -g1,1527:7579210,32070190 -g1,1527:7895356,32070190 -g1,1527:9159939,32070190 -g1,1527:11056813,32070190 -g1,1527:12953687,32070190 -g1,1527:14850561,32070190 -g1,1527:16747435,32070190 -g1,1527:18644309,32070190 -g1,1527:18960455,32070190 -g1,1527:20541184,32070190 -g1,1527:20857330,32070190 -g1,1527:22438059,32070190 -g1,1527:22754205,32070190 -g1,1527:24334934,32070190 -g1,1527:24651080,32070190 -g1,1527:26231809,32070190 -g1,1527:26547955,32070190 -h1,1527:27812538,32070190:0,0,0 -k1,1527:32583029,32070190:4770491 -g1,1527:32583029,32070190 -) -(1,1529:6630773,33272085:25952256,379060,9436 -(1,1528:6630773,33272085:0,0,0 -g1,1528:6630773,33272085 -g1,1528:6630773,33272085 -g1,1528:6303093,33272085 -(1,1528:6303093,33272085:0,0,0 -) -g1,1528:6630773,33272085 -) -g1,1529:7263065,33272085 -g1,1529:7895357,33272085 -h1,1529:8211503,33272085:0,0,0 -k1,1529:32583029,33272085:24371526 -g1,1529:32583029,33272085 -) -(1,1533:6630773,33884157:25952256,404226,76021 -(1,1531:6630773,33884157:0,0,0 -g1,1531:6630773,33884157 -g1,1531:6630773,33884157 -g1,1531:6303093,33884157 -(1,1531:6303093,33884157:0,0,0 -) -g1,1531:6630773,33884157 -) -g1,1533:7579210,33884157 -g1,1533:7895356,33884157 -g1,1533:9159939,33884157 -g1,1533:9476085,33884157 -g1,1533:11056814,33884157 -g1,1533:11372960,33884157 -g1,1533:12953689,33884157 -g1,1533:13269835,33884157 -g1,1533:14850564,33884157 -g1,1533:15166710,33884157 -g1,1533:16747439,33884157 -g1,1533:18644313,33884157 -g1,1533:20541187,33884157 -g1,1533:22438061,33884157 -g1,1533:24334935,33884157 -g1,1533:26231809,33884157 -h1,1533:27812537,33884157:0,0,0 -k1,1533:32583029,33884157:4770492 -g1,1533:32583029,33884157 -) -(1,1535:6630773,35086053:25952256,379060,9436 -(1,1534:6630773,35086053:0,0,0 -g1,1534:6630773,35086053 -g1,1534:6630773,35086053 -g1,1534:6303093,35086053 -(1,1534:6303093,35086053:0,0,0 -) -g1,1534:6630773,35086053 -) -g1,1535:7263065,35086053 -g1,1535:8211502,35086053 -h1,1535:8527648,35086053:0,0,0 -k1,1535:32583028,35086053:24055380 -g1,1535:32583028,35086053 -) -(1,1539:6630773,35698125:25952256,404226,76021 -(1,1537:6630773,35698125:0,0,0 -g1,1537:6630773,35698125 -g1,1537:6630773,35698125 -g1,1537:6303093,35698125 -(1,1537:6303093,35698125:0,0,0 -) -g1,1537:6630773,35698125 -) -g1,1539:7579210,35698125 -g1,1539:7895356,35698125 -g1,1539:9159939,35698125 -g1,1539:11056813,35698125 -g1,1539:12953687,35698125 -g1,1539:14850561,35698125 -g1,1539:16747435,35698125 -g1,1539:17063581,35698125 -g1,1539:18644310,35698125 -g1,1539:20541184,35698125 -g1,1539:22438058,35698125 -g1,1539:24334932,35698125 -g1,1539:26231806,35698125 -h1,1539:27812534,35698125:0,0,0 -k1,1539:32583029,35698125:4770495 -g1,1539:32583029,35698125 -) -(1,1541:6630773,36900020:25952256,404226,76021 -(1,1540:6630773,36900020:0,0,0 -g1,1540:6630773,36900020 -g1,1540:6630773,36900020 -g1,1540:6303093,36900020 -(1,1540:6303093,36900020:0,0,0 -) -g1,1540:6630773,36900020 -) -k1,1541:6630773,36900020:0 -g1,1541:8527647,36900020 -g1,1541:9159939,36900020 -h1,1541:9792231,36900020:0,0,0 -k1,1541:32583029,36900020:22790798 -g1,1541:32583029,36900020 -) -(1,1545:6630773,37512092:25952256,404226,76021 -(1,1543:6630773,37512092:0,0,0 -g1,1543:6630773,37512092 -g1,1543:6630773,37512092 -g1,1543:6303093,37512092 -(1,1543:6303093,37512092:0,0,0 -) -g1,1543:6630773,37512092 -) -g1,1545:7579210,37512092 -g1,1545:8843793,37512092 -h1,1545:10424521,37512092:0,0,0 -k1,1545:32583029,37512092:22158508 -g1,1545:32583029,37512092 -) -(1,1547:6630773,38713988:25952256,404226,101187 -(1,1546:6630773,38713988:0,0,0 -g1,1546:6630773,38713988 -g1,1546:6630773,38713988 -g1,1546:6303093,38713988 -(1,1546:6303093,38713988:0,0,0 -) -g1,1546:6630773,38713988 -) -k1,1547:6630773,38713988:0 -g1,1547:8527647,38713988 -g1,1547:9159939,38713988 -h1,1547:9792231,38713988:0,0,0 -k1,1547:32583029,38713988:22790798 -g1,1547:32583029,38713988 -) -(1,1551:6630773,39326060:25952256,404226,76021 -(1,1549:6630773,39326060:0,0,0 -g1,1549:6630773,39326060 -g1,1549:6630773,39326060 -g1,1549:6303093,39326060 -(1,1549:6303093,39326060:0,0,0 -) -g1,1549:6630773,39326060 -) -g1,1551:7579210,39326060 -g1,1551:8843793,39326060 -h1,1551:10108376,39326060:0,0,0 -k1,1551:32583028,39326060:22474652 -g1,1551:32583028,39326060 -) -(1,1553:6630773,40527955:25952256,404226,9436 -(1,1552:6630773,40527955:0,0,0 -g1,1552:6630773,40527955 -g1,1552:6630773,40527955 -g1,1552:6303093,40527955 -(1,1552:6303093,40527955:0,0,0 -) -g1,1552:6630773,40527955 -) -g1,1553:7263065,40527955 -g1,1553:8211503,40527955 -g1,1553:8843795,40527955 -g1,1553:9476087,40527955 -h1,1553:9792233,40527955:0,0,0 -k1,1553:32583029,40527955:22790796 -g1,1553:32583029,40527955 -) -(1,1554:6630773,41194133:25952256,404226,6290 -h1,1554:6630773,41194133:0,0,0 -h1,1554:6946919,41194133:0,0,0 -k1,1554:32583029,41194133:25636110 -g1,1554:32583029,41194133 -) -(1,1558:6630773,41806205:25952256,404226,76021 -(1,1556:6630773,41806205:0,0,0 -g1,1556:6630773,41806205 -g1,1556:6630773,41806205 -g1,1556:6303093,41806205 -(1,1556:6303093,41806205:0,0,0 -) -g1,1556:6630773,41806205 -) -g1,1558:7579210,41806205 -g1,1558:7895356,41806205 -g1,1558:9159939,41806205 -g1,1558:11056813,41806205 -g1,1558:12953687,41806205 -g1,1558:14850561,41806205 -g1,1558:16747435,41806205 -g1,1558:18644309,41806205 -g1,1558:18960455,41806205 -g1,1558:20541184,41806205 -g1,1558:20857330,41806205 -g1,1558:22438059,41806205 -g1,1558:22754205,41806205 -g1,1558:24334934,41806205 -g1,1558:24651080,41806205 -g1,1558:26231809,41806205 -g1,1558:26547955,41806205 -h1,1558:27812538,41806205:0,0,0 -k1,1558:32583029,41806205:4770491 -g1,1558:32583029,41806205 -) -(1,1560:6630773,43008101:25952256,404226,101187 -(1,1559:6630773,43008101:0,0,0 -g1,1559:6630773,43008101 -g1,1559:6630773,43008101 -g1,1559:6303093,43008101 -(1,1559:6303093,43008101:0,0,0 -) -g1,1559:6630773,43008101 -) -k1,1560:6630773,43008101:0 -h1,1560:8527647,43008101:0,0,0 -k1,1560:32583029,43008101:24055382 -g1,1560:32583029,43008101 -) -(1,1564:6630773,43620172:25952256,404226,76021 -(1,1562:6630773,43620172:0,0,0 -g1,1562:6630773,43620172 -g1,1562:6630773,43620172 -g1,1562:6303093,43620172 -(1,1562:6303093,43620172:0,0,0 -) -g1,1562:6630773,43620172 -) -g1,1564:7579210,43620172 -g1,1564:8843793,43620172 -h1,1564:10108376,43620172:0,0,0 -k1,1564:32583028,43620172:22474652 -g1,1564:32583028,43620172 -) -(1,1566:6630773,44822068:25952256,404226,76021 -(1,1565:6630773,44822068:0,0,0 -g1,1565:6630773,44822068 -g1,1565:6630773,44822068 -g1,1565:6303093,44822068 -(1,1565:6303093,44822068:0,0,0 -) -g1,1565:6630773,44822068 -) -k1,1566:6630773,44822068:0 -h1,1566:8527647,44822068:0,0,0 -k1,1566:32583029,44822068:24055382 -g1,1566:32583029,44822068 -) -(1,1570:6630773,45434140:25952256,404226,76021 -(1,1568:6630773,45434140:0,0,0 -g1,1568:6630773,45434140 -g1,1568:6630773,45434140 -g1,1568:6303093,45434140 -(1,1568:6303093,45434140:0,0,0 -) -g1,1568:6630773,45434140 -) -g1,1570:7579210,45434140 -g1,1570:8843793,45434140 -h1,1570:10424521,45434140:0,0,0 -k1,1570:32583029,45434140:22158508 -g1,1570:32583029,45434140 -) -] -) -g1,1571:32583029,45510161 -g1,1571:6630773,45510161 -g1,1571:6630773,45510161 -g1,1571:32583029,45510161 -g1,1571:32583029,45510161 -) -h1,1571:6630773,45706769:0,0,0 -] -(1,1574:32583029,45706769:0,0,0 -g1,1574:32583029,45706769 -) -) -] -(1,1574:6630773,47279633:25952256,0,0 -h1,1574:6630773,47279633:25952256,0,0 -) -] -(1,1574:4262630,4025873:0,0,0 -[1,1574:-473656,4025873:0,0,0 -(1,1574:-473656,-710413:0,0,0 -(1,1574:-473656,-710413:0,0,0 -g1,1574:-473656,-710413 -) -g1,1574:-473656,-710413 -) -] -) -] -!22687 -}45 -Input:354:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:355:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:356:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:357:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:358:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:359:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:360:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:361:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!739 -{46 -[1,1671:4262630,47279633:28320399,43253760,0 -(1,1671:4262630,4025873:0,0,0 -[1,1671:-473656,4025873:0,0,0 -(1,1671:-473656,-710413:0,0,0 -(1,1671:-473656,-644877:0,0,0 -k1,1671:-473656,-644877:-65536 -) -(1,1671:-473656,4736287:0,0,0 -k1,1671:-473656,4736287:5209943 -) -g1,1671:-473656,-710413 -) -] -) -[1,1671:6630773,47279633:25952256,43253760,0 -[1,1671:6630773,4812305:25952256,786432,0 -(1,1671:6630773,4812305:25952256,505283,126483 -(1,1671:6630773,4812305:25952256,505283,126483 -g1,1671:3078558,4812305 -[1,1671:3078558,4812305:0,0,0 -(1,1671:3078558,2439708:0,1703936,0 -k1,1671:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,1671:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,1671:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,1671:3078558,4812305:0,0,0 -(1,1671:3078558,2439708:0,1703936,0 -g1,1671:29030814,2439708 -g1,1671:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,1671:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,1671:37855564,2439708:1179648,16384,0 -) -) -k1,1671:3078556,2439708:-34777008 -) -] -[1,1671:3078558,4812305:0,0,0 -(1,1671:3078558,49800853:0,16384,2228224 -k1,1671:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,1671:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,1671:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,1671:3078558,4812305:0,0,0 -(1,1671:3078558,49800853:0,16384,2228224 -g1,1671:29030814,49800853 -g1,1671:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,1671:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,1671:37855564,49800853:1179648,16384,0 -) -) -k1,1671:3078556,49800853:-34777008 -) -] -g1,1671:6630773,4812305 -g1,1671:6630773,4812305 -g1,1671:10646819,4812305 -g1,1671:13853495,4812305 -g1,1671:15263174,4812305 -g1,1671:18764762,4812305 -k1,1671:31786111,4812305:13021349 -) -) -] -[1,1671:6630773,45706769:25952256,40108032,0 -(1,1671:6630773,45706769:25952256,40108032,0 -(1,1671:6630773,45706769:0,0,0 -g1,1671:6630773,45706769 -) -[1,1671:6630773,45706769:25952256,40108032,0 -(1,1575:6630773,6254097:25952256,505283,126483 -h1,1574:6630773,6254097:983040,0,0 -k1,1574:11384456,6254097:214660 -k1,1574:13185087,6254097:214660 -k1,1574:14685564,6254097:214661 -k1,1574:16663798,6254097:214660 -k1,1574:17529886,6254097:214660 -k1,1574:21498448,6254097:214660 -k1,1574:24790023,6254097:214660 -k1,1574:26196128,6254097:214660 -k1,1574:27790977,6254097:214661 -k1,1574:29109919,6254097:214660 -k1,1574:30072345,6254097:214660 -k1,1575:32583029,6254097:0 -) -(1,1575:6630773,7095585:25952256,513147,126483 -g1,1574:8012927,7095585 -g1,1574:8973684,7095585 -g1,1574:11241229,7095585 -g1,1574:12099750,7095585 -k1,1575:32583029,7095585:16455436 -g1,1575:32583029,7095585 -) -v1,1577:6630773,8044619:0,393216,0 -(1,1590:6630773,11097495:25952256,3446092,196608 -g1,1590:6630773,11097495 -g1,1590:6630773,11097495 -g1,1590:6434165,11097495 -(1,1590:6434165,11097495:0,3446092,196608 -r1,1671:32779637,11097495:26345472,3642700,196608 -k1,1590:6434165,11097495:-26345472 -) -(1,1590:6434165,11097495:26345472,3446092,196608 -[1,1590:6630773,11097495:25952256,3249484,0 -(1,1579:6630773,8236508:25952256,388497,9436 -(1,1578:6630773,8236508:0,0,0 -g1,1578:6630773,8236508 -g1,1578:6630773,8236508 -g1,1578:6303093,8236508 -(1,1578:6303093,8236508:0,0,0 -) -g1,1578:6630773,8236508 -) -g1,1579:7263065,8236508 -g1,1579:7895357,8236508 -g1,1579:8527649,8236508 -g1,1579:9159941,8236508 -h1,1579:9476087,8236508:0,0,0 -k1,1579:32583029,8236508:23106942 -g1,1579:32583029,8236508 -) -(1,1583:6630773,8968222:25952256,404226,76021 -(1,1581:6630773,8968222:0,0,0 -g1,1581:6630773,8968222 -g1,1581:6630773,8968222 -g1,1581:6303093,8968222 -(1,1581:6303093,8968222:0,0,0 -) -g1,1581:6630773,8968222 -) -g1,1583:7579210,8968222 -g1,1583:7895356,8968222 -g1,1583:9159939,8968222 -g1,1583:11056813,8968222 -g1,1583:12953687,8968222 -g1,1583:14850561,8968222 -g1,1583:16747435,8968222 -g1,1583:18644309,8968222 -g1,1583:18960455,8968222 -g1,1583:20541184,8968222 -g1,1583:20857330,8968222 -g1,1583:22438059,8968222 -g1,1583:22754205,8968222 -g1,1583:24334934,8968222 -g1,1583:24651080,8968222 -g1,1583:26231809,8968222 -g1,1583:26547955,8968222 -h1,1583:27812538,8968222:0,0,0 -k1,1583:32583029,8968222:4770491 -g1,1583:32583029,8968222 -) -(1,1585:6630773,10289760:25952256,404226,76021 -(1,1584:6630773,10289760:0,0,0 -g1,1584:6630773,10289760 -g1,1584:6630773,10289760 -g1,1584:6303093,10289760 -(1,1584:6303093,10289760:0,0,0 -) -g1,1584:6630773,10289760 -) -g1,1585:7579210,10289760 -g1,1585:8211502,10289760 -g1,1585:9159940,10289760 -g1,1585:9792232,10289760 -h1,1585:10108378,10289760:0,0,0 -k1,1585:32583030,10289760:22474652 -g1,1585:32583030,10289760 -) -(1,1589:6630773,11021474:25952256,404226,76021 -(1,1587:6630773,11021474:0,0,0 -g1,1587:6630773,11021474 -g1,1587:6630773,11021474 -g1,1587:6303093,11021474 -(1,1587:6303093,11021474:0,0,0 -) -g1,1587:6630773,11021474 -) -g1,1589:7579210,11021474 -g1,1589:7895356,11021474 -g1,1589:9159939,11021474 -g1,1589:9792231,11021474 -g1,1589:10424523,11021474 -g1,1589:11056815,11021474 -g1,1589:11689107,11021474 -g1,1589:12321399,11021474 -g1,1589:12953691,11021474 -g1,1589:13585983,11021474 -g1,1589:14218275,11021474 -g1,1589:14850567,11021474 -h1,1589:15166713,11021474:0,0,0 -k1,1589:32583029,11021474:17416316 -g1,1589:32583029,11021474 -) -] -) -g1,1590:32583029,11097495 -g1,1590:6630773,11097495 -g1,1590:6630773,11097495 -g1,1590:32583029,11097495 -g1,1590:32583029,11097495 -) -h1,1590:6630773,11294103:0,0,0 -v1,1594:6630773,12701303:0,393216,0 -(1,1604:6630773,20222901:25952256,7914814,616038 -g1,1604:6630773,20222901 -(1,1604:6630773,20222901:25952256,7914814,616038 -(1,1604:6630773,20838939:25952256,8530852,0 -[1,1604:6630773,20838939:25952256,8530852,0 -(1,1604:6630773,20812725:25952256,8478424,0 -r1,1671:6656987,20812725:26214,8478424,0 -[1,1604:6656987,20812725:25899828,8478424,0 -(1,1604:6656987,20222901:25899828,7298776,0 -[1,1604:7246811,20222901:24720180,7298776,0 -(1,1595:7246811,14011499:24720180,1087374,134348 -k1,1594:8666510,14011499:209996 -k1,1594:10025352,14011499:209996 -k1,1594:11254433,14011499:209996 -k1,1594:14650789,14011499:209996 -k1,1594:16729216,14011499:209996 -k1,1594:17625375,14011499:209997 -k1,1594:18191231,14011499:209996 -k1,1594:20879799,14011499:209996 -k1,1594:22778002,14011499:209996 -k1,1594:23604036,14011499:209996 -k1,1594:26825411,14011499:209996 -k1,1594:28365788,14011499:209996 -k1,1594:31966991,14011499:0 -) -(1,1595:7246811,14852987:24720180,513147,134348 -k1,1594:9398655,14852987:225086 -k1,1594:11321780,14852987:225087 -k1,1594:13616493,14852987:225086 -k1,1594:15033024,14852987:225086 -k1,1594:18534256,14852987:225087 -k1,1594:21836257,14852987:225086 -k1,1594:23052904,14852987:225087 -k1,1594:24599851,14852987:225086 -k1,1594:25484229,14852987:225086 -k1,1594:26728401,14852987:225087 -k1,1594:28606960,14852987:225086 -k1,1594:31966991,14852987:0 -) -(1,1595:7246811,15694475:24720180,513147,134348 -k1,1594:8812823,15694475:191067 -k1,1594:10397841,15694475:191067 -k1,1594:11607993,15694475:191067 -k1,1594:14460477,15694475:191067 -k1,1594:15413072,15694475:191067 -k1,1594:17791732,15694475:191068 -k1,1594:21836971,15694475:191067 -k1,1594:22640800,15694475:191067 -k1,1594:25594210,15694475:191067 -k1,1594:28729810,15694475:191067 -k1,1594:30112322,15694475:191067 -k1,1594:31966991,15694475:0 -) -(1,1595:7246811,16535963:24720180,513147,126483 -k1,1594:8199650,16535963:143469 -k1,1594:9362204,16535963:143469 -k1,1594:12284400,16535963:143469 -k1,1594:14612184,16535963:143469 -k1,1594:16352110,16535963:143469 -k1,1594:17561850,16535963:143469 -k1,1594:18724405,16535963:143470 -k1,1594:21133454,16535963:143469 -k1,1594:23016249,16535963:143469 -k1,1594:23819010,16535963:143469 -k1,1594:26709093,16535963:143469 -k1,1594:30453765,16535963:143469 -k1,1594:31966991,16535963:0 -) -(1,1595:7246811,17377451:24720180,513147,134348 -g1,1594:8393691,17377451 -g1,1594:9612005,17377451 -g1,1594:13114904,17377451 -g1,1594:13973425,17377451 -g1,1594:15191739,17377451 -g1,1594:18052385,17377451 -g1,1594:19946375,17377451 -k1,1595:31966991,17377451:9978514 -g1,1595:31966991,17377451 -) -v1,1597:7246811,18567917:0,393216,0 -(1,1602:7246811,19502005:24720180,1327304,196608 -g1,1602:7246811,19502005 -g1,1602:7246811,19502005 -g1,1602:7050203,19502005 -(1,1602:7050203,19502005:0,1327304,196608 -r1,1671:32163599,19502005:25113396,1523912,196608 -k1,1602:7050203,19502005:-25113396 -) -(1,1602:7050203,19502005:25113396,1327304,196608 -[1,1602:7246811,19502005:24720180,1130696,0 -(1,1599:7246811,18759806:24720180,388497,9436 -(1,1598:7246811,18759806:0,0,0 -g1,1598:7246811,18759806 -g1,1598:7246811,18759806 -g1,1598:6919131,18759806 -(1,1598:6919131,18759806:0,0,0 -) -g1,1598:7246811,18759806 -) -g1,1599:7879103,18759806 -g1,1599:8827541,18759806 -h1,1599:10092124,18759806:0,0,0 -k1,1599:31966992,18759806:21874868 -g1,1599:31966992,18759806 -) -(1,1600:7246811,19425984:24720180,404226,76021 -h1,1600:7246811,19425984:0,0,0 -g1,1600:7879103,19425984 -g1,1600:8511395,19425984 -g1,1600:9143687,19425984 -g1,1600:9775979,19425984 -g1,1600:10408271,19425984 -g1,1600:11040563,19425984 -g1,1600:11672855,19425984 -g1,1600:12305147,19425984 -h1,1600:12621293,19425984:0,0,0 -k1,1600:31966991,19425984:19345698 -g1,1600:31966991,19425984 -) -] -) -g1,1602:31966991,19502005 -g1,1602:7246811,19502005 -g1,1602:7246811,19502005 -g1,1602:31966991,19502005 -g1,1602:31966991,19502005 -) -h1,1602:7246811,19698613:0,0,0 -] -) -] -r1,1671:32583029,20812725:26214,8478424,0 -) -] -) -) -g1,1604:32583029,20222901 -) -h1,1604:6630773,20838939:0,0,0 -(1,1607:6630773,21963284:25952256,513147,134348 -h1,1606:6630773,21963284:983040,0,0 -k1,1606:9821671,21963284:200490 -k1,1606:10769926,21963284:200489 -k1,1606:12838847,21963284:200490 -k1,1606:13698629,21963284:200490 -k1,1606:17102518,21963284:200489 -k1,1606:21080503,21963284:200490 -k1,1606:21758750,21963284:200490 -k1,1606:22978325,21963284:200490 -k1,1606:25021686,21963284:200489 -k1,1606:26715086,21963284:200490 -k1,1606:27981847,21963284:200490 -k1,1606:30554084,21963284:200489 -k1,1606:31563944,21963284:200490 -k1,1606:32583029,21963284:0 -) -(1,1607:6630773,22804772:25952256,513147,134348 -k1,1606:9309213,22804772:206422 -k1,1606:11369649,22804772:206422 -k1,1606:13010000,22804772:206423 -k1,1606:14235507,22804772:206422 -k1,1606:16458472,22804772:206422 -(1,1606:16458472,22804772:0,414482,115847 -r1,1671:17871873,22804772:1413401,530329,115847 -k1,1606:16458472,22804772:-1413401 -) -(1,1606:16458472,22804772:1413401,414482,115847 -k1,1606:16458472,22804772:3277 -h1,1606:17868596,22804772:0,411205,112570 -) -k1,1606:18078295,22804772:206422 -k1,1606:18967602,22804772:206422 -(1,1606:18967602,22804772:0,414482,115847 -r1,1671:20732715,22804772:1765113,530329,115847 -k1,1606:18967602,22804772:-1765113 -) -(1,1606:18967602,22804772:1765113,414482,115847 -k1,1606:18967602,22804772:3277 -h1,1606:20729438,22804772:0,411205,112570 -) -k1,1606:20939138,22804772:206423 -k1,1606:21677057,22804772:206422 -k1,1606:24835876,22804772:206422 -k1,1606:25520055,22804772:206422 -k1,1606:26745562,22804772:206422 -k1,1606:29781830,22804772:206423 -k1,1606:30647544,22804772:206422 -k1,1606:31873051,22804772:206422 -(1,1606:31873051,22804772:0,414482,115847 -r1,1671:32583029,22804772:709978,530329,115847 -k1,1606:31873051,22804772:-709978 -) -(1,1606:31873051,22804772:709978,414482,115847 -k1,1606:31873051,22804772:3277 -h1,1606:32579752,22804772:0,411205,112570 -) -k1,1606:32583029,22804772:0 -) -(1,1607:6630773,23646260:25952256,505283,115847 -g1,1606:8876036,23646260 -g1,1606:10094350,23646260 -g1,1606:11476504,23646260 -g1,1606:13518605,23646260 -g1,1606:16858975,23646260 -g1,1606:18492132,23646260 -(1,1606:18492132,23646260:0,414482,115847 -r1,1671:19202110,23646260:709978,530329,115847 -k1,1606:18492132,23646260:-709978 -) -(1,1606:18492132,23646260:709978,414482,115847 -k1,1606:18492132,23646260:3277 -h1,1606:19198833,23646260:0,411205,112570 -) -g1,1606:19401339,23646260 -g1,1606:20132065,23646260 -k1,1607:32583029,23646260:9498567 -g1,1607:32583029,23646260 -) -v1,1609:6630773,24595294:0,393216,0 -(1,1665:6630773,42702841:25952256,18500763,196608 -g1,1665:6630773,42702841 -g1,1665:6630773,42702841 -g1,1665:6434165,42702841 -(1,1665:6434165,42702841:0,18500763,196608 -r1,1671:32779637,42702841:26345472,18697371,196608 -k1,1665:6434165,42702841:-26345472 -) -(1,1665:6434165,42702841:26345472,18500763,196608 -[1,1665:6630773,42702841:25952256,18304155,0 -(1,1611:6630773,24802912:25952256,404226,82312 -(1,1610:6630773,24802912:0,0,0 -g1,1610:6630773,24802912 -g1,1610:6630773,24802912 -g1,1610:6303093,24802912 -(1,1610:6303093,24802912:0,0,0 -) -g1,1610:6630773,24802912 -) -g1,1611:7263065,24802912 -g1,1611:8211503,24802912 -g1,1611:9792232,24802912 -h1,1611:10740669,24802912:0,0,0 -k1,1611:32583029,24802912:21842360 -g1,1611:32583029,24802912 -) -(1,1612:6630773,25469090:25952256,379060,9436 -h1,1612:6630773,25469090:0,0,0 -g1,1612:7263065,25469090 -g1,1612:7895357,25469090 -h1,1612:8211503,25469090:0,0,0 -k1,1612:32583029,25469090:24371526 -g1,1612:32583029,25469090 -) -(1,1616:6630773,26200804:25952256,404226,76021 -(1,1614:6630773,26200804:0,0,0 -g1,1614:6630773,26200804 -g1,1614:6630773,26200804 -g1,1614:6303093,26200804 -(1,1614:6303093,26200804:0,0,0 -) -g1,1614:6630773,26200804 -) -g1,1616:7579210,26200804 -g1,1616:7895356,26200804 -g1,1616:9159939,26200804 -g1,1616:11056813,26200804 -g1,1616:12953687,26200804 -g1,1616:14850561,26200804 -g1,1616:16747435,26200804 -g1,1616:18644309,26200804 -g1,1616:18960455,26200804 -g1,1616:20541184,26200804 -g1,1616:20857330,26200804 -g1,1616:22438059,26200804 -g1,1616:22754205,26200804 -g1,1616:24334934,26200804 -g1,1616:24651080,26200804 -g1,1616:26231809,26200804 -g1,1616:26547955,26200804 -g1,1616:28128684,26200804 -g1,1616:28444830,26200804 -g1,1616:28760976,26200804 -g1,1616:29077122,26200804 -h1,1616:29709413,26200804:0,0,0 -k1,1616:32583029,26200804:2873616 -g1,1616:32583029,26200804 -) -(1,1618:6630773,27522342:25952256,404226,76021 -(1,1617:6630773,27522342:0,0,0 -g1,1617:6630773,27522342 -g1,1617:6630773,27522342 -g1,1617:6303093,27522342 -(1,1617:6303093,27522342:0,0,0 -) -g1,1617:6630773,27522342 -) -k1,1618:6630773,27522342:0 -g1,1618:8527647,27522342 -g1,1618:9159939,27522342 -h1,1618:9792231,27522342:0,0,0 -k1,1618:32583029,27522342:22790798 -g1,1618:32583029,27522342 -) -(1,1622:6630773,28254056:25952256,404226,76021 -(1,1620:6630773,28254056:0,0,0 -g1,1620:6630773,28254056 -g1,1620:6630773,28254056 -g1,1620:6303093,28254056 -(1,1620:6303093,28254056:0,0,0 -) -g1,1620:6630773,28254056 -) -g1,1622:7579210,28254056 -g1,1622:8843793,28254056 -h1,1622:10424521,28254056:0,0,0 -k1,1622:32583029,28254056:22158508 -g1,1622:32583029,28254056 -) -(1,1624:6630773,29575594:25952256,404226,101187 -(1,1623:6630773,29575594:0,0,0 -g1,1623:6630773,29575594 -g1,1623:6630773,29575594 -g1,1623:6303093,29575594 -(1,1623:6303093,29575594:0,0,0 -) -g1,1623:6630773,29575594 -) -k1,1624:6630773,29575594:0 -g1,1624:8527647,29575594 -g1,1624:9159939,29575594 -h1,1624:9792231,29575594:0,0,0 -k1,1624:32583029,29575594:22790798 -g1,1624:32583029,29575594 -) -(1,1628:6630773,30307308:25952256,404226,76021 -(1,1626:6630773,30307308:0,0,0 -g1,1626:6630773,30307308 -g1,1626:6630773,30307308 -g1,1626:6303093,30307308 -(1,1626:6303093,30307308:0,0,0 -) -g1,1626:6630773,30307308 -) -g1,1628:7579210,30307308 -g1,1628:8843793,30307308 -h1,1628:10108376,30307308:0,0,0 -k1,1628:32583028,30307308:22474652 -g1,1628:32583028,30307308 -) -(1,1630:6630773,31628846:25952256,404226,76021 -(1,1629:6630773,31628846:0,0,0 -g1,1629:6630773,31628846 -g1,1629:6630773,31628846 -g1,1629:6303093,31628846 -(1,1629:6303093,31628846:0,0,0 -) -g1,1629:6630773,31628846 -) -k1,1630:6630773,31628846:0 -g1,1630:8527647,31628846 -g1,1630:9159939,31628846 -h1,1630:10108376,31628846:0,0,0 -k1,1630:32583028,31628846:22474652 -g1,1630:32583028,31628846 -) -(1,1634:6630773,32360560:25952256,404226,76021 -(1,1632:6630773,32360560:0,0,0 -g1,1632:6630773,32360560 -g1,1632:6630773,32360560 -g1,1632:6303093,32360560 -(1,1632:6303093,32360560:0,0,0 -) -g1,1632:6630773,32360560 -) -g1,1634:7579210,32360560 -g1,1634:8843793,32360560 -h1,1634:9476084,32360560:0,0,0 -k1,1634:32583028,32360560:23106944 -g1,1634:32583028,32360560 -) -(1,1636:6630773,33682098:25952256,404226,101187 -(1,1635:6630773,33682098:0,0,0 -g1,1635:6630773,33682098 -g1,1635:6630773,33682098 -g1,1635:6303093,33682098 -(1,1635:6303093,33682098:0,0,0 -) -g1,1635:6630773,33682098 -) -k1,1636:6630773,33682098:0 -g1,1636:8527647,33682098 -g1,1636:9159939,33682098 -h1,1636:10108376,33682098:0,0,0 -k1,1636:32583028,33682098:22474652 -g1,1636:32583028,33682098 -) -(1,1640:6630773,34413812:25952256,404226,76021 -(1,1638:6630773,34413812:0,0,0 -g1,1638:6630773,34413812 -g1,1638:6630773,34413812 -g1,1638:6303093,34413812 -(1,1638:6303093,34413812:0,0,0 -) -g1,1638:6630773,34413812 -) -g1,1640:7579210,34413812 -g1,1640:8843793,34413812 -h1,1640:9476084,34413812:0,0,0 -k1,1640:32583028,34413812:23106944 -g1,1640:32583028,34413812 -) -(1,1642:6630773,35735350:25952256,404226,76021 -(1,1641:6630773,35735350:0,0,0 -g1,1641:6630773,35735350 -g1,1641:6630773,35735350 -g1,1641:6303093,35735350 -(1,1641:6303093,35735350:0,0,0 -) -g1,1641:6630773,35735350 -) -k1,1642:6630773,35735350:0 -h1,1642:9159938,35735350:0,0,0 -k1,1642:32583030,35735350:23423092 -g1,1642:32583030,35735350 -) -(1,1646:6630773,36467064:25952256,404226,76021 -(1,1644:6630773,36467064:0,0,0 -g1,1644:6630773,36467064 -g1,1644:6630773,36467064 -g1,1644:6303093,36467064 -(1,1644:6303093,36467064:0,0,0 -) -g1,1644:6630773,36467064 -) -g1,1646:7579210,36467064 -g1,1646:7895356,36467064 -g1,1646:9159939,36467064 -g1,1646:11056813,36467064 -g1,1646:12953687,36467064 -g1,1646:14850561,36467064 -g1,1646:16747435,36467064 -g1,1646:18644309,36467064 -g1,1646:20541183,36467064 -g1,1646:22438057,36467064 -g1,1646:24334931,36467064 -g1,1646:26231805,36467064 -h1,1646:27812533,36467064:0,0,0 -k1,1646:32583029,36467064:4770496 -g1,1646:32583029,36467064 -) -(1,1648:6630773,37788602:25952256,404226,76021 -(1,1647:6630773,37788602:0,0,0 -g1,1647:6630773,37788602 -g1,1647:6630773,37788602 -g1,1647:6303093,37788602 -(1,1647:6303093,37788602:0,0,0 -) -g1,1647:6630773,37788602 -) -k1,1648:6630773,37788602:0 -h1,1648:9159938,37788602:0,0,0 -k1,1648:32583030,37788602:23423092 -g1,1648:32583030,37788602 -) -(1,1652:6630773,38520316:25952256,404226,76021 -(1,1650:6630773,38520316:0,0,0 -g1,1650:6630773,38520316 -g1,1650:6630773,38520316 -g1,1650:6303093,38520316 -(1,1650:6303093,38520316:0,0,0 -) -g1,1650:6630773,38520316 -) -g1,1652:7579210,38520316 -g1,1652:7895356,38520316 -g1,1652:9159939,38520316 -g1,1652:11056813,38520316 -g1,1652:12953687,38520316 -g1,1652:14850561,38520316 -g1,1652:16747435,38520316 -g1,1652:18644309,38520316 -g1,1652:20541183,38520316 -g1,1652:22438057,38520316 -g1,1652:24334931,38520316 -g1,1652:26231805,38520316 -g1,1652:28128679,38520316 -g1,1652:28444825,38520316 -h1,1652:29709408,38520316:0,0,0 -k1,1652:32583029,38520316:2873621 -g1,1652:32583029,38520316 -) -(1,1654:6630773,39841854:25952256,404226,101187 -(1,1653:6630773,39841854:0,0,0 -g1,1653:6630773,39841854 -g1,1653:6630773,39841854 -g1,1653:6303093,39841854 -(1,1653:6303093,39841854:0,0,0 -) -g1,1653:6630773,39841854 -) -k1,1654:6630773,39841854:0 -k1,1654:6630773,39841854:0 -h1,1654:10740667,39841854:0,0,0 -k1,1654:32583029,39841854:21842362 -g1,1654:32583029,39841854 -) -(1,1658:6630773,40573568:25952256,404226,76021 -(1,1656:6630773,40573568:0,0,0 -g1,1656:6630773,40573568 -g1,1656:6630773,40573568 -g1,1656:6303093,40573568 -(1,1656:6303093,40573568:0,0,0 -) -g1,1656:6630773,40573568 -) -g1,1658:7579210,40573568 -g1,1658:8843793,40573568 -h1,1658:10108376,40573568:0,0,0 -k1,1658:32583028,40573568:22474652 -g1,1658:32583028,40573568 -) -(1,1660:6630773,41895106:25952256,404226,76021 -(1,1659:6630773,41895106:0,0,0 -g1,1659:6630773,41895106 -g1,1659:6630773,41895106 -g1,1659:6303093,41895106 -(1,1659:6303093,41895106:0,0,0 -) -g1,1659:6630773,41895106 -) -k1,1660:6630773,41895106:0 -k1,1660:6630773,41895106:0 -h1,1660:10740667,41895106:0,0,0 -k1,1660:32583029,41895106:21842362 -g1,1660:32583029,41895106 -) -(1,1664:6630773,42626820:25952256,404226,76021 -(1,1662:6630773,42626820:0,0,0 -g1,1662:6630773,42626820 -g1,1662:6630773,42626820 -g1,1662:6303093,42626820 -(1,1662:6303093,42626820:0,0,0 -) -g1,1662:6630773,42626820 -) -g1,1664:7579210,42626820 -g1,1664:8843793,42626820 -h1,1664:10424521,42626820:0,0,0 -k1,1664:32583029,42626820:22158508 -g1,1664:32583029,42626820 -) -] -) -g1,1665:32583029,42702841 -g1,1665:6630773,42702841 -g1,1665:6630773,42702841 -g1,1665:32583029,42702841 -g1,1665:32583029,42702841 -) -h1,1665:6630773,42899449:0,0,0 -(1,1669:6630773,44023793:25952256,513147,126483 -h1,1668:6630773,44023793:983040,0,0 -k1,1668:9061385,44023793:250885 -k1,1668:12071991,44023793:250885 -k1,1668:12982168,44023793:250885 -k1,1668:14984830,44023793:250885 -k1,1668:15895007,44023793:250885 -k1,1668:18711627,44023793:250885 -k1,1668:21988308,44023793:250884 -k1,1668:23937231,44023793:250885 -(1,1668:23937231,44023793:0,414482,115847 -r1,1671:24647209,44023793:709978,530329,115847 -k1,1668:23937231,44023793:-709978 -) -(1,1668:23937231,44023793:709978,414482,115847 -k1,1668:23937231,44023793:3277 -h1,1668:24643932,44023793:0,411205,112570 -) -k1,1668:25228395,44023793:250885 -k1,1668:26470840,44023793:250885 -k1,1668:29127552,44023793:250885 -k1,1668:29994475,44023793:250885 -k1,1668:31753999,44023793:250885 -k1,1669:32583029,44023793:0 -) -(1,1669:6630773,44865281:25952256,513147,134348 -k1,1668:7938051,44865281:214793 -k1,1668:11555472,44865281:214792 -k1,1668:12874547,44865281:214793 -k1,1668:13837106,44865281:214793 -k1,1668:17060656,44865281:214792 -(1,1668:17060656,44865281:0,414482,115847 -r1,1671:18474057,44865281:1413401,530329,115847 -k1,1668:17060656,44865281:-1413401 -) -(1,1668:17060656,44865281:1413401,414482,115847 -k1,1668:17060656,44865281:3277 -h1,1668:18470780,44865281:0,411205,112570 -) -k1,1668:18688850,44865281:214793 -k1,1668:21108930,44865281:214793 -k1,1668:22009884,44865281:214792 -k1,1668:22995380,44865281:214793 -k1,1668:26282501,44865281:214793 -k1,1668:27148721,44865281:214792 -k1,1668:30644246,44865281:214793 -(1,1668:30644246,44865281:0,414482,115847 -r1,1671:32409359,44865281:1765113,530329,115847 -k1,1668:30644246,44865281:-1765113 -) -(1,1668:30644246,44865281:1765113,414482,115847 -k1,1668:30644246,44865281:3277 -h1,1668:32406082,44865281:0,411205,112570 -) -k1,1668:32583029,44865281:0 -) -(1,1669:6630773,45706769:25952256,513147,134348 -g1,1668:9003176,45706769 -g1,1668:9818443,45706769 -(1,1668:9818443,45706769:0,414482,115847 -r1,1671:10528421,45706769:709978,530329,115847 -k1,1668:9818443,45706769:-709978 -) -(1,1668:9818443,45706769:709978,414482,115847 -k1,1668:9818443,45706769:3277 -h1,1668:10525144,45706769:0,411205,112570 -) -g1,1668:10727650,45706769 -g1,1668:12937524,45706769 -g1,1668:14874768,45706769 -g1,1668:17846169,45706769 -g1,1668:19613019,45706769 -g1,1668:20831333,45706769 -g1,1668:22739086,45706769 -g1,1668:25074133,45706769 -g1,1668:26292447,45706769 -g1,1668:29187172,45706769 -g1,1668:29917898,45706769 -k1,1669:32583029,45706769:119713 -g1,1669:32583029,45706769 -) -] -(1,1671:32583029,45706769:0,0,0 -g1,1671:32583029,45706769 -) -) -] -(1,1671:6630773,47279633:25952256,0,0 -h1,1671:6630773,47279633:25952256,0,0 -) -] -(1,1671:4262630,4025873:0,0,0 -[1,1671:-473656,4025873:0,0,0 -(1,1671:-473656,-710413:0,0,0 -(1,1671:-473656,-710413:0,0,0 -g1,1671:-473656,-710413 -) -g1,1671:-473656,-710413 -) -] -) -] -!24013 -}46 -Input:362:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:363:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:364:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:365:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:366:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:367:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:368:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:369:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:370:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:371:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:372:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:373:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:374:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:375:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:376:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1376 -{47 -[1,1885:4262630,47279633:28320399,43253760,0 -(1,1885:4262630,4025873:0,0,0 -[1,1885:-473656,4025873:0,0,0 -(1,1885:-473656,-710413:0,0,0 -(1,1885:-473656,-644877:0,0,0 -k1,1885:-473656,-644877:-65536 -) -(1,1885:-473656,4736287:0,0,0 -k1,1885:-473656,4736287:5209943 -) -g1,1885:-473656,-710413 -) -] -) -[1,1885:6630773,47279633:25952256,43253760,0 -[1,1885:6630773,4812305:25952256,786432,0 -(1,1885:6630773,4812305:25952256,505283,134348 -(1,1885:6630773,4812305:25952256,505283,134348 -g1,1885:3078558,4812305 -[1,1885:3078558,4812305:0,0,0 -(1,1885:3078558,2439708:0,1703936,0 -k1,1885:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,1885:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,1885:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,1885:3078558,4812305:0,0,0 -(1,1885:3078558,2439708:0,1703936,0 -g1,1885:29030814,2439708 -g1,1885:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,1885:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,1885:37855564,2439708:1179648,16384,0 -) -) -k1,1885:3078556,2439708:-34777008 -) -] -[1,1885:3078558,4812305:0,0,0 -(1,1885:3078558,49800853:0,16384,2228224 -k1,1885:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,1885:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,1885:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,1885:3078558,4812305:0,0,0 -(1,1885:3078558,49800853:0,16384,2228224 -g1,1885:29030814,49800853 -g1,1885:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,1885:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,1885:37855564,49800853:1179648,16384,0 -) -) -k1,1885:3078556,49800853:-34777008 -) -] -g1,1885:6630773,4812305 -k1,1885:19515153,4812305:12087462 -g1,1885:20901894,4812305 -g1,1885:21550700,4812305 -g1,1885:24864855,4812305 -g1,1885:27600327,4812305 -g1,1885:29010006,4812305 -) -) -] -[1,1885:6630773,45706769:25952256,40108032,0 -(1,1885:6630773,45706769:25952256,40108032,0 -(1,1885:6630773,45706769:0,0,0 -g1,1885:6630773,45706769 -) -[1,1885:6630773,45706769:25952256,40108032,0 -v1,1671:6630773,6254097:0,393216,0 -(1,1696:6630773,13429206:25952256,7568325,196608 -g1,1696:6630773,13429206 -g1,1696:6630773,13429206 -g1,1696:6434165,13429206 -(1,1696:6434165,13429206:0,7568325,196608 -r1,1885:32779637,13429206:26345472,7764933,196608 -k1,1696:6434165,13429206:-26345472 -) -(1,1696:6434165,13429206:26345472,7568325,196608 -[1,1696:6630773,13429206:25952256,7371717,0 -(1,1673:6630773,6461715:25952256,404226,76021 -(1,1672:6630773,6461715:0,0,0 -g1,1672:6630773,6461715 -g1,1672:6630773,6461715 -g1,1672:6303093,6461715 -(1,1672:6303093,6461715:0,0,0 -) -g1,1672:6630773,6461715 -) -k1,1673:6630773,6461715:0 -g1,1673:8527647,6461715 -g1,1673:9159939,6461715 -h1,1673:10108376,6461715:0,0,0 -k1,1673:32583028,6461715:22474652 -g1,1673:32583028,6461715 -) -(1,1677:6630773,7193429:25952256,404226,76021 -(1,1675:6630773,7193429:0,0,0 -g1,1675:6630773,7193429 -g1,1675:6630773,7193429 -g1,1675:6303093,7193429 -(1,1675:6303093,7193429:0,0,0 -) -g1,1675:6630773,7193429 -) -g1,1677:7579210,7193429 -g1,1677:8843793,7193429 -h1,1677:9476084,7193429:0,0,0 -k1,1677:32583028,7193429:23106944 -g1,1677:32583028,7193429 -) -(1,1679:6630773,8514967:25952256,404226,101187 -(1,1678:6630773,8514967:0,0,0 -g1,1678:6630773,8514967 -g1,1678:6630773,8514967 -g1,1678:6303093,8514967 -(1,1678:6303093,8514967:0,0,0 -) -g1,1678:6630773,8514967 -) -k1,1679:6630773,8514967:0 -g1,1679:8527647,8514967 -g1,1679:9159939,8514967 -h1,1679:10108376,8514967:0,0,0 -k1,1679:32583028,8514967:22474652 -g1,1679:32583028,8514967 -) -(1,1683:6630773,9246681:25952256,404226,76021 -(1,1681:6630773,9246681:0,0,0 -g1,1681:6630773,9246681 -g1,1681:6630773,9246681 -g1,1681:6303093,9246681 -(1,1681:6303093,9246681:0,0,0 -) -g1,1681:6630773,9246681 -) -g1,1683:7579210,9246681 -g1,1683:8843793,9246681 -h1,1683:9476084,9246681:0,0,0 -k1,1683:32583028,9246681:23106944 -g1,1683:32583028,9246681 -) -(1,1685:6630773,10568219:25952256,404226,82312 -(1,1684:6630773,10568219:0,0,0 -g1,1684:6630773,10568219 -g1,1684:6630773,10568219 -g1,1684:6303093,10568219 -(1,1684:6303093,10568219:0,0,0 -) -g1,1684:6630773,10568219 -) -k1,1685:6630773,10568219:0 -g1,1685:8527647,10568219 -g1,1685:9159939,10568219 -g1,1685:10424522,10568219 -h1,1685:13902125,10568219:0,0,0 -k1,1685:32583029,10568219:18680904 -g1,1685:32583029,10568219 -) -(1,1689:6630773,11299933:25952256,404226,76021 -(1,1687:6630773,11299933:0,0,0 -g1,1687:6630773,11299933 -g1,1687:6630773,11299933 -g1,1687:6303093,11299933 -(1,1687:6303093,11299933:0,0,0 -) -g1,1687:6630773,11299933 -) -g1,1689:7579210,11299933 -g1,1689:8843793,11299933 -h1,1689:10108376,11299933:0,0,0 -k1,1689:32583028,11299933:22474652 -g1,1689:32583028,11299933 -) -(1,1691:6630773,12621471:25952256,404226,101187 -(1,1690:6630773,12621471:0,0,0 -g1,1690:6630773,12621471 -g1,1690:6630773,12621471 -g1,1690:6303093,12621471 -(1,1690:6303093,12621471:0,0,0 -) -g1,1690:6630773,12621471 -) -k1,1691:6630773,12621471:0 -g1,1691:8527647,12621471 -g1,1691:9159939,12621471 -g1,1691:10424522,12621471 -h1,1691:13902125,12621471:0,0,0 -k1,1691:32583029,12621471:18680904 -g1,1691:32583029,12621471 -) -(1,1695:6630773,13353185:25952256,404226,76021 -(1,1693:6630773,13353185:0,0,0 -g1,1693:6630773,13353185 -g1,1693:6630773,13353185 -g1,1693:6303093,13353185 -(1,1693:6303093,13353185:0,0,0 -) -g1,1693:6630773,13353185 -) -g1,1695:7579210,13353185 -g1,1695:8843793,13353185 -h1,1695:10424521,13353185:0,0,0 -k1,1695:32583029,13353185:22158508 -g1,1695:32583029,13353185 -) -] -) -g1,1696:32583029,13429206 -g1,1696:6630773,13429206 -g1,1696:6630773,13429206 -g1,1696:32583029,13429206 -g1,1696:32583029,13429206 -) -h1,1696:6630773,13625814:0,0,0 -v1,1700:6630773,15515878:0,393216,0 -(1,1885:6630773,43314092:25952256,28191430,589824 -g1,1885:6630773,43314092 -(1,1885:6630773,43314092:25952256,28191430,589824 -(1,1885:6630773,43903916:25952256,28781254,0 -[1,1885:6630773,43903916:25952256,28781254,0 -(1,1885:6630773,43903916:25952256,28755040,0 -r1,1885:6656987,43903916:26214,28755040,0 -[1,1885:6656987,43903916:25899828,28755040,0 -(1,1885:6656987,43314092:25899828,27575392,0 -[1,1885:7246811,43314092:24720180,27575392,0 -(1,1705:7246811,16900585:24720180,1161885,196608 -(1,1700:7246811,16900585:0,1161885,196608 -r1,1885:8794447,16900585:1547636,1358493,196608 -k1,1700:7246811,16900585:-1547636 -) -(1,1700:7246811,16900585:1547636,1161885,196608 -) -k1,1700:9096859,16900585:302412 -k1,1700:9096859,16900585:0 -k1,1700:9399270,16900585:302411 -k1,1701:9399270,16900585:0 -k1,1701:9701682,16900585:302412 -k1,1702:9701682,16900585:0 -k1,1702:10004093,16900585:302411 -k1,1703:10004093,16900585:0 -k1,1704:11794828,16900585:302412 -k1,1704:12310127,16900585:302307 -k1,1704:13892457,16900585:302412 -k1,1704:15887009,16900585:302412 -k1,1704:19181139,16900585:302411 -k1,1704:20431202,16900585:302412 -k1,1704:22619084,16900585:302411 -k1,1704:23940581,16900585:302412 -k1,1704:25893844,16900585:302411 -k1,1704:29444220,16900585:302412 -k1,1704:30405923,16900585:302411 -k1,1705:31966991,16900585:0 -) -(1,1705:7246811,17742073:24720180,513147,126483 -k1,1704:9131388,17742073:156393 -k1,1704:11975412,17742073:156393 -k1,1704:14077568,17742073:156392 -k1,1704:14920123,17742073:156393 -k1,1704:18257634,17742073:156393 -k1,1704:19065455,17742073:156393 -k1,1704:20575166,17742073:156393 -k1,1704:23547641,17742073:156393 -k1,1704:24390195,17742073:156392 -k1,1704:26928166,17742073:156393 -k1,1704:27700597,17742073:156393 -k1,1704:31966991,17742073:0 -) -(1,1705:7246811,18583561:24720180,505283,134348 -k1,1704:8558439,18583561:207346 -k1,1704:10547708,18583561:207345 -k1,1704:13061921,18583561:207346 -k1,1704:16449729,18583561:207346 -k1,1704:17284909,18583561:207345 -k1,1704:18080768,18583561:207346 -k1,1704:21104196,18583561:207346 -k1,1704:22596048,18583561:207346 -k1,1704:23794953,18583561:207345 -k1,1704:25068570,18583561:207346 -k1,1704:27836408,18583561:207346 -k1,1704:29035313,18583561:207345 -k1,1704:31280829,18583561:207346 -k1,1704:31966991,18583561:0 -) -(1,1705:7246811,19425049:24720180,513147,134348 -k1,1704:12625648,19425049:263097 -k1,1704:14771594,19425049:263097 -k1,1704:15662526,19425049:263097 -k1,1704:18591628,19425049:263097 -k1,1704:19506153,19425049:263097 -k1,1704:21887375,19425049:263098 -k1,1704:23965164,19425049:263097 -k1,1704:24879689,19425049:263097 -k1,1704:26161871,19425049:263097 -k1,1704:28583069,19425049:263097 -k1,1704:30037611,19425049:263097 -k1,1705:31966991,19425049:0 -) -(1,1705:7246811,20266537:24720180,513147,126483 -k1,1704:8404630,20266537:223276 -k1,1704:11443988,20266537:223276 -k1,1704:12951770,20266537:223276 -k1,1704:14279328,20266537:223276 -k1,1704:15250370,20266537:223276 -k1,1704:19456924,20266537:223276 -k1,1704:20699286,20266537:223277 -k1,1704:23854643,20266537:223276 -k1,1704:24737211,20266537:223276 -k1,1704:26732581,20266537:223276 -k1,1704:27487354,20266537:223276 -k1,1704:29963102,20266537:223276 -k1,1704:30947906,20266537:223276 -k1,1704:31966991,20266537:0 -) -(1,1705:7246811,21108025:24720180,513147,134348 -k1,1704:9944690,21108025:212098 -k1,1704:10816080,21108025:212098 -k1,1704:14341679,21108025:212099 -k1,1704:16338322,21108025:212098 -k1,1704:17834926,21108025:212098 -k1,1704:19151306,21108025:212098 -k1,1704:20111170,21108025:212098 -k1,1704:22535108,21108025:212098 -k1,1704:25634068,21108025:212099 -k1,1704:26377663,21108025:212098 -k1,1704:28876968,21108025:212098 -k1,1704:31966991,21108025:0 -) -(1,1705:7246811,21949513:24720180,513147,134348 -k1,1704:8268618,21949513:260279 -k1,1704:11443282,21949513:260278 -$1,1704:11650376,21949513 -$1,1704:12012135,21949513 -k1,1704:12653178,21949513:260279 -k1,1704:16645077,21949513:260279 -k1,1704:18105319,21949513:260278 -k1,1704:20747176,21949513:260279 -k1,1704:21693617,21949513:260279 -k1,1704:22972981,21949513:260279 -k1,1704:25391360,21949513:260278 -k1,1704:27331982,21949513:260279 -k1,1704:28251553,21949513:260279 -$1,1704:28251553,21949513 -$1,1704:28613312,21949513 -k1,1704:28873590,21949513:260278 -k1,1704:30081520,21949513:260279 -k1,1704:31966991,21949513:0 -) -(1,1705:7246811,22791001:24720180,513147,126483 -k1,1704:7802390,22791001:157120 -k1,1704:8527707,22791001:157120 -k1,1704:9100206,22791001:210740 -k1,1704:9879143,22791001:210740 -$1,1704:10277602,22791001 -k1,1704:10666193,22791001:214921 -k1,1704:12077801,22791001:214921 -k1,1704:13943574,22791001:214921 -k1,1704:17406460,22791001:214922 -k1,1704:18280673,22791001:214921 -k1,1704:20267688,22791001:214921 -k1,1704:21586891,22791001:214921 -k1,1704:23130882,22791001:214921 -k1,1704:23997232,22791001:214922 -k1,1704:27880858,22791001:214921 -k1,1704:30268953,22791001:214921 -k1,1704:31966991,22791001:0 -) -(1,1705:7246811,23632489:24720180,513147,134348 -k1,1704:9602721,23632489:174216 -k1,1704:10724589,23632489:174217 -k1,1704:13619204,23632489:174216 -k1,1704:14421256,23632489:174217 -k1,1704:15614557,23632489:174216 -k1,1704:18030105,23632489:174217 -k1,1704:20865738,23632489:174216 -k1,1704:23082057,23632489:174217 -k1,1704:24275358,23632489:174216 -k1,1704:26292447,23632489:174217 -k1,1704:27125955,23632489:174216 -k1,1704:28319257,23632489:174217 -k1,1704:31966991,23632489:0 -) -(1,1705:7246811,24473977:24720180,513147,126483 -g1,1704:7977537,24473977 -g1,1704:9375420,24473977 -g1,1704:11799596,24473977 -g1,1704:12397284,24473977 -g1,1704:13779438,24473977 -g1,1704:14630095,24473977 -g1,1704:18395793,24473977 -k1,1705:31966991,24473977:10149563 -g1,1705:31966991,24473977 -) -v1,1707:7246811,25664443:0,393216,0 -(1,1720:7246811,28717319:24720180,3446092,196608 -g1,1720:7246811,28717319 -g1,1720:7246811,28717319 -g1,1720:7050203,28717319 -(1,1720:7050203,28717319:0,3446092,196608 -r1,1885:32163599,28717319:25113396,3642700,196608 -k1,1720:7050203,28717319:-25113396 -) -(1,1720:7050203,28717319:25113396,3446092,196608 -[1,1720:7246811,28717319:24720180,3249484,0 -(1,1709:7246811,25856332:24720180,388497,9436 -(1,1708:7246811,25856332:0,0,0 -g1,1708:7246811,25856332 -g1,1708:7246811,25856332 -g1,1708:6919131,25856332 -(1,1708:6919131,25856332:0,0,0 -) -g1,1708:7246811,25856332 -) -g1,1709:7879103,25856332 -g1,1709:8511395,25856332 -k1,1709:8511395,25856332:0 -h1,1709:10092123,25856332:0,0,0 -k1,1709:31966991,25856332:21874868 -g1,1709:31966991,25856332 -) -(1,1713:7246811,26588046:24720180,404226,76021 -(1,1711:7246811,26588046:0,0,0 -g1,1711:7246811,26588046 -g1,1711:7246811,26588046 -g1,1711:6919131,26588046 -(1,1711:6919131,26588046:0,0,0 -) -g1,1711:7246811,26588046 -) -g1,1713:8195248,26588046 -g1,1713:9459831,26588046 -k1,1713:9459831,26588046:0 -h1,1713:11356705,26588046:0,0,0 -k1,1713:31966991,26588046:20610286 -g1,1713:31966991,26588046 -) -(1,1715:7246811,27909584:24720180,388497,9436 -(1,1714:7246811,27909584:0,0,0 -g1,1714:7246811,27909584 -g1,1714:7246811,27909584 -g1,1714:6919131,27909584 -(1,1714:6919131,27909584:0,0,0 -) -g1,1714:7246811,27909584 -) -g1,1715:7879103,27909584 -g1,1715:8511395,27909584 -k1,1715:8511395,27909584:0 -h1,1715:10092123,27909584:0,0,0 -k1,1715:31966991,27909584:21874868 -g1,1715:31966991,27909584 -) -(1,1719:7246811,28641298:24720180,404226,76021 -(1,1717:7246811,28641298:0,0,0 -g1,1717:7246811,28641298 -g1,1717:7246811,28641298 -g1,1717:6919131,28641298 -(1,1717:6919131,28641298:0,0,0 -) -g1,1717:7246811,28641298 -) -g1,1719:8195248,28641298 -g1,1719:9459831,28641298 -h1,1719:9775977,28641298:0,0,0 -k1,1719:31966991,28641298:22191014 -g1,1719:31966991,28641298 -) -] -) -g1,1720:31966991,28717319 -g1,1720:7246811,28717319 -g1,1720:7246811,28717319 -g1,1720:31966991,28717319 -g1,1720:31966991,28717319 -) -h1,1720:7246811,28913927:0,0,0 -(1,1724:7246811,30279703:24720180,513147,126483 -h1,1723:7246811,30279703:983040,0,0 -k1,1723:9604040,30279703:177502 -k1,1723:12855180,30279703:177501 -k1,1723:13691974,30279703:177502 -k1,1723:15641570,30279703:177502 -k1,1723:17104887,30279703:177501 -k1,1723:19391993,30279703:177502 -k1,1723:21091241,30279703:177502 -k1,1723:21928035,30279703:177502 -k1,1723:24825935,30279703:177501 -k1,1723:26888908,30279703:177502 -k1,1723:27597907,30279703:177502 -k1,1723:29425605,30279703:177501 -k1,1723:31315563,30279703:177502 -k1,1723:31966991,30279703:0 -) -(1,1724:7246811,31121191:24720180,505283,126483 -g1,1723:9288912,31121191 -g1,1723:10104179,31121191 -g1,1723:12240652,31121191 -g1,1723:13833832,31121191 -g1,1723:17242359,31121191 -k1,1724:31966991,31121191:10137767 -g1,1724:31966991,31121191 -) -v1,1726:7246811,32311657:0,393216,0 -(1,1745:7246811,37417785:24720180,5499344,196608 -g1,1745:7246811,37417785 -g1,1745:7246811,37417785 -g1,1745:7050203,37417785 -(1,1745:7050203,37417785:0,5499344,196608 -r1,1885:32163599,37417785:25113396,5695952,196608 -k1,1745:7050203,37417785:-25113396 -) -(1,1745:7050203,37417785:25113396,5499344,196608 -[1,1745:7246811,37417785:24720180,5302736,0 -(1,1728:7246811,32503546:24720180,388497,9436 -(1,1727:7246811,32503546:0,0,0 -g1,1727:7246811,32503546 -g1,1727:7246811,32503546 -g1,1727:6919131,32503546 -(1,1727:6919131,32503546:0,0,0 -) -g1,1727:7246811,32503546 -) -g1,1728:8827540,32503546 -g1,1728:9775977,32503546 -g1,1728:10408269,32503546 -g1,1728:11040561,32503546 -h1,1728:12305144,32503546:0,0,0 -k1,1728:31966992,32503546:19661848 -g1,1728:31966992,32503546 -) -(1,1732:7246811,33235260:24720180,404226,76021 -(1,1730:7246811,33235260:0,0,0 -g1,1730:7246811,33235260 -g1,1730:7246811,33235260 -g1,1730:6919131,33235260 -(1,1730:6919131,33235260:0,0,0 -) -g1,1730:7246811,33235260 -) -g1,1732:8195248,33235260 -g1,1732:9459831,33235260 -h1,1732:10724414,33235260:0,0,0 -k1,1732:31966990,33235260:21242576 -g1,1732:31966990,33235260 -) -(1,1734:7246811,34556798:24720180,388497,9436 -(1,1733:7246811,34556798:0,0,0 -g1,1733:7246811,34556798 -g1,1733:7246811,34556798 -g1,1733:6919131,34556798 -(1,1733:6919131,34556798:0,0,0 -) -g1,1733:7246811,34556798 -) -g1,1734:7879103,34556798 -g1,1734:8827540,34556798 -g1,1734:9459832,34556798 -g1,1734:10092124,34556798 -k1,1734:10092124,34556798:0 -h1,1734:11672852,34556798:0,0,0 -k1,1734:31966992,34556798:20294140 -g1,1734:31966992,34556798 -) -(1,1738:7246811,35288512:24720180,404226,76021 -(1,1736:7246811,35288512:0,0,0 -g1,1736:7246811,35288512 -g1,1736:7246811,35288512 -g1,1736:6919131,35288512 -(1,1736:6919131,35288512:0,0,0 -) -g1,1736:7246811,35288512 -) -g1,1738:8195248,35288512 -g1,1738:9459831,35288512 -h1,1738:10724414,35288512:0,0,0 -k1,1738:31966990,35288512:21242576 -g1,1738:31966990,35288512 -) -(1,1740:7246811,36610050:24720180,388497,9436 -(1,1739:7246811,36610050:0,0,0 -g1,1739:7246811,36610050 -g1,1739:7246811,36610050 -g1,1739:6919131,36610050 -(1,1739:6919131,36610050:0,0,0 -) -g1,1739:7246811,36610050 -) -g1,1740:7879103,36610050 -g1,1740:8827540,36610050 -k1,1740:8827540,36610050:0 -h1,1740:10408268,36610050:0,0,0 -k1,1740:31966992,36610050:21558724 -g1,1740:31966992,36610050 -) -(1,1744:7246811,37341764:24720180,404226,76021 -(1,1742:7246811,37341764:0,0,0 -g1,1742:7246811,37341764 -g1,1742:7246811,37341764 -g1,1742:6919131,37341764 -(1,1742:6919131,37341764:0,0,0 -) -g1,1742:7246811,37341764 -) -g1,1744:8195248,37341764 -g1,1744:9459831,37341764 -h1,1744:11040559,37341764:0,0,0 -k1,1744:31966991,37341764:20926432 -g1,1744:31966991,37341764 -) -] -) -g1,1745:31966991,37417785 -g1,1745:7246811,37417785 -g1,1745:7246811,37417785 -g1,1745:31966991,37417785 -g1,1745:31966991,37417785 -) -h1,1745:7246811,37614393:0,0,0 -(1,1749:7246811,38980169:24720180,513147,126483 -h1,1748:7246811,38980169:983040,0,0 -k1,1748:9253032,38980169:205292 -k1,1748:9873161,38980169:205286 -k1,1748:11182735,38980169:205292 -k1,1748:12506071,38980169:205292 -k1,1748:13520733,38980169:205292 -k1,1748:16488368,38980169:205292 -k1,1748:18410048,38980169:205292 -k1,1748:19274632,38980169:205292 -k1,1748:22556184,38980169:205292 -k1,1748:25927520,38980169:205292 -k1,1748:27151897,38980169:205292 -k1,1748:29279360,38980169:205292 -k1,1748:31966991,38980169:0 -) -(1,1749:7246811,39821657:24720180,513147,134348 -k1,1748:9244752,39821657:183249 -k1,1748:10375651,39821657:183248 -k1,1748:12819237,39821657:183249 -k1,1748:15818568,39821657:183249 -k1,1748:16617854,39821657:183248 -k1,1748:19432374,39821657:183249 -k1,1748:20952557,39821657:183249 -k1,1748:22498300,39821657:183249 -k1,1748:26043545,39821657:183248 -k1,1748:27036164,39821657:183249 -k1,1748:28238498,39821657:183249 -k1,1748:29807832,39821657:183248 -k1,1748:30650373,39821657:183249 -k1,1749:31966991,39821657:0 -) -(1,1749:7246811,40663145:24720180,505283,134348 -k1,1748:9463184,40663145:191966 -k1,1748:10846596,40663145:191967 -k1,1748:12505258,40663145:191966 -k1,1748:15508064,40663145:191967 -k1,1748:17213256,40663145:191966 -k1,1748:18056651,40663145:191967 -k1,1748:19890949,40663145:191966 -k1,1748:21102000,40663145:191966 -k1,1748:21708803,40663145:191960 -k1,1748:24642795,40663145:191966 -k1,1748:28382226,40663145:191967 -k1,1748:31508894,40663145:191966 -k1,1748:31966991,40663145:0 -) -(1,1749:7246811,41504633:24720180,513147,126483 -k1,1748:7935425,41504633:157117 -k1,1748:10722502,41504633:157117 -k1,1748:11531047,41504633:157117 -k1,1748:13711916,41504633:157117 -k1,1748:15565760,41504633:157117 -k1,1748:17733522,41504633:157117 -k1,1748:18503401,41504633:157117 -k1,1748:19778562,41504633:157117 -k1,1748:21361087,41504633:157117 -k1,1748:23085825,41504633:157117 -k1,1748:24262027,41504633:157117 -k1,1748:26930484,41504633:157117 -(1,1748:26930484,41504633:0,452978,115847 -r1,1885:29750733,41504633:2820249,568825,115847 -k1,1748:26930484,41504633:-2820249 -) -(1,1748:26930484,41504633:2820249,452978,115847 -k1,1748:26930484,41504633:3277 -h1,1748:29747456,41504633:0,411205,112570 -) -k1,1748:30081520,41504633:157117 -k1,1748:31966991,41504633:0 -) -(1,1749:7246811,42346121:24720180,513147,134348 -k1,1748:7994256,42346121:215948 -k1,1748:9532066,42346121:215949 -k1,1748:10407306,42346121:215948 -k1,1748:11642339,42346121:215948 -k1,1748:12273114,42346121:215932 -k1,1748:15505029,42346121:215948 -k1,1748:17682470,42346121:215948 -k1,1748:18923402,42346121:215949 -k1,1748:20158435,42346121:215948 -k1,1748:21762436,42346121:215948 -k1,1748:23476538,42346121:215949 -k1,1748:24640137,42346121:215948 -(1,1748:24640137,42346121:0,452978,115847 -r1,1885:27460386,42346121:2820249,568825,115847 -k1,1748:24640137,42346121:-2820249 -) -(1,1748:24640137,42346121:2820249,452978,115847 -k1,1748:24640137,42346121:3277 -h1,1748:27457109,42346121:0,411205,112570 -) -k1,1748:27676334,42346121:215948 -k1,1748:28839934,42346121:215949 -k1,1748:29411742,42346121:215948 -k1,1748:31966991,42346121:0 -) -(1,1749:7246811,43187609:24720180,513147,126483 -g1,1748:8637485,43187609 -g1,1748:12130553,43187609 -g1,1748:15939505,43187609 -g1,1748:16798026,43187609 -g1,1748:18016340,43187609 -g1,1748:20999538,43187609 -g1,1748:24460494,43187609 -g1,1748:24460494,43187609 -g1,1748:24659723,43187609 -g1,1748:24659723,43187609 -g1,1748:24858952,43187609 -g1,1748:24858952,43187609 -k1,1749:31966991,43187609:7108039 -g1,1749:31966991,43187609 -) -] -) -] -r1,1885:32583029,43903916:26214,28755040,0 -) -] -) -) -g1,1885:32583029,43314092 -) -] -(1,1885:32583029,45706769:0,0,0 -g1,1885:32583029,45706769 -) -) -] -(1,1885:6630773,47279633:25952256,0,0 -h1,1885:6630773,47279633:25952256,0,0 -) -] -(1,1885:4262630,4025873:0,0,0 -[1,1885:-473656,4025873:0,0,0 -(1,1885:-473656,-710413:0,0,0 -(1,1885:-473656,-710413:0,0,0 -g1,1885:-473656,-710413 -) -g1,1885:-473656,-710413 -) -] -) -] -!21855 -}47 -!11 -{48 -[1,1885:4262630,47279633:28320399,43253760,0 -(1,1885:4262630,4025873:0,0,0 -[1,1885:-473656,4025873:0,0,0 -(1,1885:-473656,-710413:0,0,0 -(1,1885:-473656,-644877:0,0,0 -k1,1885:-473656,-644877:-65536 -) -(1,1885:-473656,4736287:0,0,0 -k1,1885:-473656,4736287:5209943 -) -g1,1885:-473656,-710413 -) -] -) -[1,1885:6630773,47279633:25952256,43253760,0 -[1,1885:6630773,4812305:25952256,786432,0 -(1,1885:6630773,4812305:25952256,505283,126483 -(1,1885:6630773,4812305:25952256,505283,126483 -g1,1885:3078558,4812305 -[1,1885:3078558,4812305:0,0,0 -(1,1885:3078558,2439708:0,1703936,0 -k1,1885:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,1885:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,1885:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,1885:3078558,4812305:0,0,0 -(1,1885:3078558,2439708:0,1703936,0 -g1,1885:29030814,2439708 -g1,1885:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,1885:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,1885:37855564,2439708:1179648,16384,0 -) -) -k1,1885:3078556,2439708:-34777008 -) -] -[1,1885:3078558,4812305:0,0,0 -(1,1885:3078558,49800853:0,16384,2228224 -k1,1885:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,1885:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,1885:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,1885:3078558,4812305:0,0,0 -(1,1885:3078558,49800853:0,16384,2228224 -g1,1885:29030814,49800853 -g1,1885:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,1885:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,1885:37855564,49800853:1179648,16384,0 -) -) -k1,1885:3078556,49800853:-34777008 -) -] -g1,1885:6630773,4812305 -g1,1885:6630773,4812305 -g1,1885:10646819,4812305 -g1,1885:13853495,4812305 -g1,1885:15263174,4812305 -g1,1885:18764762,4812305 -k1,1885:31786111,4812305:13021349 -) -) -] -[1,1885:6630773,45706769:25952256,40108032,0 -(1,1885:6630773,45706769:25952256,40108032,0 -(1,1885:6630773,45706769:0,0,0 -g1,1885:6630773,45706769 -) -[1,1885:6630773,45706769:25952256,40108032,0 -v1,1885:6630773,6254097:0,393216,0 -(1,1885:6630773,45116945:25952256,39256064,589824 -g1,1885:6630773,45116945 -(1,1885:6630773,45116945:25952256,39256064,589824 -(1,1885:6630773,45706769:25952256,39845888,0 -[1,1885:6630773,45706769:25952256,39845888,0 -(1,1885:6630773,45706769:25952256,39845888,0 -r1,1885:6656987,45706769:26214,39845888,0 -[1,1885:6656987,45706769:25899828,39845888,0 -(1,1885:6656987,45116945:25899828,38666240,0 -[1,1885:7246811,45116945:24720180,38666240,0 -v1,1751:7246811,6843921:0,393216,0 -(1,1776:7246811,14025322:24720180,7574617,196608 -g1,1776:7246811,14025322 -g1,1776:7246811,14025322 -g1,1776:7050203,14025322 -(1,1776:7050203,14025322:0,7574617,196608 -r1,1885:32163599,14025322:25113396,7771225,196608 -k1,1776:7050203,14025322:-25113396 -) -(1,1776:7050203,14025322:25113396,7574617,196608 -[1,1776:7246811,14025322:24720180,7378009,0 -(1,1753:7246811,7057831:24720180,410518,101187 -(1,1752:7246811,7057831:0,0,0 -g1,1752:7246811,7057831 -g1,1752:7246811,7057831 -g1,1752:6919131,7057831 -(1,1752:6919131,7057831:0,0,0 -) -g1,1752:7246811,7057831 -) -h1,1753:13253579,7057831:0,0,0 -k1,1753:31966991,7057831:18713412 -g1,1753:31966991,7057831 -) -(1,1757:7246811,7789545:24720180,404226,76021 -(1,1755:7246811,7789545:0,0,0 -g1,1755:7246811,7789545 -g1,1755:7246811,7789545 -g1,1755:6919131,7789545 -(1,1755:6919131,7789545:0,0,0 -) -g1,1755:7246811,7789545 -) -g1,1757:8195248,7789545 -g1,1757:9459831,7789545 -k1,1757:9459831,7789545:0 -h1,1757:13253579,7789545:0,0,0 -k1,1757:31966991,7789545:18713412 -g1,1757:31966991,7789545 -) -(1,1759:7246811,9111083:24720180,410518,107478 -(1,1758:7246811,9111083:0,0,0 -g1,1758:7246811,9111083 -g1,1758:7246811,9111083 -g1,1758:6919131,9111083 -(1,1758:6919131,9111083:0,0,0 -) -g1,1758:7246811,9111083 -) -h1,1759:14518162,9111083:0,0,0 -k1,1759:31966990,9111083:17448828 -g1,1759:31966990,9111083 -) -(1,1763:7246811,9842797:24720180,404226,76021 -(1,1761:7246811,9842797:0,0,0 -g1,1761:7246811,9842797 -g1,1761:7246811,9842797 -g1,1761:6919131,9842797 -(1,1761:6919131,9842797:0,0,0 -) -g1,1761:7246811,9842797 -) -g1,1763:8195248,9842797 -g1,1763:9459831,9842797 -k1,1763:9459831,9842797:0 -h1,1763:13253579,9842797:0,0,0 -k1,1763:31966991,9842797:18713412 -g1,1763:31966991,9842797 -) -(1,1765:7246811,11164335:24720180,410518,31456 -(1,1764:7246811,11164335:0,0,0 -g1,1764:7246811,11164335 -g1,1764:7246811,11164335 -g1,1764:6919131,11164335 -(1,1764:6919131,11164335:0,0,0 -) -g1,1764:7246811,11164335 -) -h1,1765:13253579,11164335:0,0,0 -k1,1765:31966991,11164335:18713412 -g1,1765:31966991,11164335 -) -(1,1769:7246811,11896049:24720180,404226,76021 -(1,1767:7246811,11896049:0,0,0 -g1,1767:7246811,11896049 -g1,1767:7246811,11896049 -g1,1767:6919131,11896049 -(1,1767:6919131,11896049:0,0,0 -) -g1,1767:7246811,11896049 -) -g1,1769:8195248,11896049 -g1,1769:9459831,11896049 -h1,1769:10724414,11896049:0,0,0 -k1,1769:31966990,11896049:21242576 -g1,1769:31966990,11896049 -) -(1,1771:7246811,13217587:24720180,410518,31456 -(1,1770:7246811,13217587:0,0,0 -g1,1770:7246811,13217587 -g1,1770:7246811,13217587 -g1,1770:6919131,13217587 -(1,1770:6919131,13217587:0,0,0 -) -g1,1770:7246811,13217587 -) -h1,1771:13253579,13217587:0,0,0 -k1,1771:31966991,13217587:18713412 -g1,1771:31966991,13217587 -) -(1,1775:7246811,13949301:24720180,404226,76021 -(1,1773:7246811,13949301:0,0,0 -g1,1773:7246811,13949301 -g1,1773:7246811,13949301 -g1,1773:6919131,13949301 -(1,1773:6919131,13949301:0,0,0 -) -g1,1773:7246811,13949301 -) -g1,1775:8195248,13949301 -g1,1775:9459831,13949301 -k1,1775:9459831,13949301:0 -h1,1775:11040559,13949301:0,0,0 -k1,1775:31966991,13949301:20926432 -g1,1775:31966991,13949301 -) -] -) -g1,1776:31966991,14025322 -g1,1776:7246811,14025322 -g1,1776:7246811,14025322 -g1,1776:31966991,14025322 -g1,1776:31966991,14025322 -) -h1,1776:7246811,14221930:0,0,0 -(1,1780:7246811,16869751:24720180,513147,126483 -h1,1779:7246811,16869751:983040,0,0 -k1,1779:9616592,16869751:190054 -k1,1779:10954838,16869751:190055 -k1,1779:12317331,16869751:190054 -k1,1779:14518031,16869751:190055 -k1,1779:16244249,16869751:190054 -k1,1779:17085732,16869751:190055 -k1,1779:18294871,16869751:190054 -k1,1779:21776799,16869751:190055 -k1,1779:22626145,16869751:190054 -k1,1779:23786788,16869751:190055 -k1,1779:25928504,16869751:190054 -k1,1779:27561006,16869751:190055 -k1,1779:28770145,16869751:190054 -k1,1779:31966991,16869751:0 -) -(1,1780:7246811,17711239:24720180,513147,134348 -k1,1779:8630225,17711239:191969 -k1,1779:11914183,17711239:191969 -k1,1779:13374929,17711239:191969 -k1,1779:14226190,17711239:191969 -k1,1779:17234241,17711239:191969 -k1,1779:18710716,17711239:191969 -k1,1779:20006968,17711239:191970 -k1,1779:20946703,17711239:191969 -k1,1779:23718169,17711239:191969 -k1,1779:24596300,17711239:191969 -k1,1779:27078097,17711239:191969 -k1,1779:27929358,17711239:191969 -k1,1779:29676496,17711239:191969 -(1,1779:29676496,17711239:0,452978,115847 -r1,1885:31793321,17711239:2116825,568825,115847 -k1,1779:29676496,17711239:-2116825 -) -(1,1779:29676496,17711239:2116825,452978,115847 -k1,1779:29676496,17711239:3277 -h1,1779:31790044,17711239:0,411205,112570 -) -k1,1779:31966991,17711239:0 -) -(1,1780:7246811,18552727:24720180,505283,115847 -k1,1779:9592915,18552727:234534 -k1,1779:12193298,18552727:234533 -k1,1779:14124559,18552727:234534 -k1,1779:16173785,18552727:234534 -k1,1779:17399878,18552727:234533 -k1,1779:19672582,18552727:234534 -k1,1779:20593278,18552727:234534 -(1,1779:20593278,18552727:0,459977,115847 -r1,1885:22006679,18552727:1413401,575824,115847 -k1,1779:20593278,18552727:-1413401 -) -(1,1779:20593278,18552727:1413401,459977,115847 -k1,1779:20593278,18552727:3277 -h1,1779:22003402,18552727:0,411205,112570 -) -k1,1779:22241213,18552727:234534 -k1,1779:23158631,18552727:234533 -(1,1779:23158631,18552727:0,459977,115847 -r1,1885:24220320,18552727:1061689,575824,115847 -k1,1779:23158631,18552727:-1061689 -) -(1,1779:23158631,18552727:1061689,459977,115847 -k1,1779:23158631,18552727:3277 -h1,1779:24217043,18552727:0,411205,112570 -) -k1,1779:24454854,18552727:234534 -k1,1779:25880833,18552727:234534 -k1,1779:27770150,18552727:234533 -k1,1779:31280829,18552727:234534 -k1,1779:31966991,18552727:0 -) -(1,1780:7246811,19394215:24720180,513147,134348 -g1,1779:9712930,19394215 -g1,1779:11922804,19394215 -g1,1779:15238925,19394215 -g1,1779:16457239,19394215 -g1,1779:20979878,19394215 -k1,1780:31966991,19394215:9227471 -g1,1780:31966991,19394215 -) -v1,1782:7246811,21439378:0,393216,0 -(1,1807:7246811,28598758:24720180,7552596,196608 -g1,1807:7246811,28598758 -g1,1807:7246811,28598758 -g1,1807:7050203,28598758 -(1,1807:7050203,28598758:0,7552596,196608 -r1,1885:32163599,28598758:25113396,7749204,196608 -k1,1807:7050203,28598758:-25113396 -) -(1,1807:7050203,28598758:25113396,7552596,196608 -[1,1807:7246811,28598758:24720180,7355988,0 -(1,1784:7246811,21631267:24720180,388497,9436 -(1,1783:7246811,21631267:0,0,0 -g1,1783:7246811,21631267 -g1,1783:7246811,21631267 -g1,1783:6919131,21631267 -(1,1783:6919131,21631267:0,0,0 -) -g1,1783:7246811,21631267 -) -h1,1784:9143685,21631267:0,0,0 -k1,1784:31966991,21631267:22823306 -g1,1784:31966991,21631267 -) -(1,1788:7246811,22362981:24720180,410518,76021 -(1,1786:7246811,22362981:0,0,0 -g1,1786:7246811,22362981 -g1,1786:7246811,22362981 -g1,1786:6919131,22362981 -(1,1786:6919131,22362981:0,0,0 -) -g1,1786:7246811,22362981 -) -g1,1788:8195248,22362981 -g1,1788:9459831,22362981 -h1,1788:10408268,22362981:0,0,0 -k1,1788:31966992,22362981:21558724 -g1,1788:31966992,22362981 -) -(1,1790:7246811,23684519:24720180,388497,9436 -(1,1789:7246811,23684519:0,0,0 -g1,1789:7246811,23684519 -g1,1789:7246811,23684519 -g1,1789:6919131,23684519 -(1,1789:6919131,23684519:0,0,0 -) -g1,1789:7246811,23684519 -) -k1,1790:7246811,23684519:0 -h1,1790:9459830,23684519:0,0,0 -k1,1790:31966990,23684519:22507160 -g1,1790:31966990,23684519 -) -(1,1794:7246811,24416233:24720180,404226,76021 -(1,1792:7246811,24416233:0,0,0 -g1,1792:7246811,24416233 -g1,1792:7246811,24416233 -g1,1792:6919131,24416233 -(1,1792:6919131,24416233:0,0,0 -) -g1,1792:7246811,24416233 -) -g1,1794:8195248,24416233 -g1,1794:9459831,24416233 -h1,1794:9775977,24416233:0,0,0 -k1,1794:31966991,24416233:22191014 -g1,1794:31966991,24416233 -) -(1,1796:7246811,25737771:24720180,410518,0 -(1,1795:7246811,25737771:0,0,0 -g1,1795:7246811,25737771 -g1,1795:7246811,25737771 -g1,1795:6919131,25737771 -(1,1795:6919131,25737771:0,0,0 -) -g1,1795:7246811,25737771 -) -g1,1796:8511394,25737771 -g1,1796:9143686,25737771 -h1,1796:9459832,25737771:0,0,0 -k1,1796:31966992,25737771:22507160 -g1,1796:31966992,25737771 -) -(1,1800:7246811,26469485:24720180,410518,76021 -(1,1798:7246811,26469485:0,0,0 -g1,1798:7246811,26469485 -g1,1798:7246811,26469485 -g1,1798:6919131,26469485 -(1,1798:6919131,26469485:0,0,0 -) -g1,1798:7246811,26469485 -) -g1,1800:8195248,26469485 -g1,1800:9459831,26469485 -h1,1800:10408268,26469485:0,0,0 -k1,1800:31966992,26469485:21558724 -g1,1800:31966992,26469485 -) -(1,1802:7246811,27791023:24720180,410518,0 -(1,1801:7246811,27791023:0,0,0 -g1,1801:7246811,27791023 -g1,1801:7246811,27791023 -g1,1801:6919131,27791023 -(1,1801:6919131,27791023:0,0,0 -) -g1,1801:7246811,27791023 -) -k1,1802:7246811,27791023:0 -g1,1802:8827540,27791023 -g1,1802:9459832,27791023 -h1,1802:9775978,27791023:0,0,0 -k1,1802:31966990,27791023:22191012 -g1,1802:31966990,27791023 -) -(1,1806:7246811,28522737:24720180,410518,76021 -(1,1804:7246811,28522737:0,0,0 -g1,1804:7246811,28522737 -g1,1804:7246811,28522737 -g1,1804:6919131,28522737 -(1,1804:6919131,28522737:0,0,0 -) -g1,1804:7246811,28522737 -) -g1,1806:8195248,28522737 -g1,1806:9459831,28522737 -k1,1806:9459831,28522737:0 -h1,1806:10724414,28522737:0,0,0 -k1,1806:31966990,28522737:21242576 -g1,1806:31966990,28522737 -) -] -) -g1,1807:31966991,28598758 -g1,1807:7246811,28598758 -g1,1807:7246811,28598758 -g1,1807:31966991,28598758 -g1,1807:31966991,28598758 -) -h1,1807:7246811,28795366:0,0,0 -(1,1811:7246811,31443186:24720180,513147,126483 -h1,1810:7246811,31443186:983040,0,0 -k1,1810:9228638,31443186:180898 -(1,1810:9228638,31443186:0,452978,122846 -r1,1885:11697175,31443186:2468537,575824,122846 -k1,1810:9228638,31443186:-2468537 -) -(1,1810:9228638,31443186:2468537,452978,122846 -k1,1810:9228638,31443186:3277 -h1,1810:11693898,31443186:0,411205,112570 -) -k1,1810:11878073,31443186:180898 -k1,1810:14069616,31443186:180898 -k1,1810:15242074,31443186:180898 -k1,1810:17461142,31443186:180898 -k1,1810:18258077,31443186:180897 -k1,1810:21126606,31443186:180898 -k1,1810:23938775,31443186:180898 -k1,1810:26579895,31443186:180898 -k1,1810:28021050,31443186:180898 -k1,1810:28861240,31443186:180898 -k1,1810:31966991,31443186:0 -) -(1,1811:7246811,32284674:24720180,513147,126483 -g1,1810:9760116,32284674 -g1,1810:10490842,32284674 -g1,1810:11756342,32284674 -g1,1810:14337149,32284674 -g1,1810:15484029,32284674 -(1,1810:15484029,32284674:0,452978,122846 -r1,1885:17952566,32284674:2468537,575824,122846 -k1,1810:15484029,32284674:-2468537 -) -(1,1810:15484029,32284674:2468537,452978,122846 -k1,1810:15484029,32284674:3277 -h1,1810:17949289,32284674:0,411205,112570 -) -g1,1810:18151795,32284674 -k1,1811:31966991,32284674:11630881 -g1,1811:31966991,32284674 -) -v1,1813:7246811,34329837:0,393216,0 -(1,1826:7246811,37404734:24720180,3468113,196608 -g1,1826:7246811,37404734 -g1,1826:7246811,37404734 -g1,1826:7050203,37404734 -(1,1826:7050203,37404734:0,3468113,196608 -r1,1885:32163599,37404734:25113396,3664721,196608 -k1,1826:7050203,37404734:-25113396 -) -(1,1826:7050203,37404734:25113396,3468113,196608 -[1,1826:7246811,37404734:24720180,3271505,0 -(1,1815:7246811,34543747:24720180,410518,107478 -(1,1814:7246811,34543747:0,0,0 -g1,1814:7246811,34543747 -g1,1814:7246811,34543747 -g1,1814:6919131,34543747 -(1,1814:6919131,34543747:0,0,0 -) -g1,1814:7246811,34543747 -) -h1,1815:13569724,34543747:0,0,0 -k1,1815:31966992,34543747:18397268 -g1,1815:31966992,34543747 -) -(1,1819:7246811,35275461:24720180,404226,76021 -(1,1817:7246811,35275461:0,0,0 -g1,1817:7246811,35275461 -g1,1817:7246811,35275461 -g1,1817:6919131,35275461 -(1,1817:6919131,35275461:0,0,0 -) -g1,1817:7246811,35275461 -) -g1,1819:8195248,35275461 -g1,1819:9459831,35275461 -h1,1819:12621288,35275461:0,0,0 -k1,1819:31966992,35275461:19345704 -g1,1819:31966992,35275461 -) -(1,1821:7246811,36596999:24720180,388497,9436 -(1,1820:7246811,36596999:0,0,0 -g1,1820:7246811,36596999 -g1,1820:7246811,36596999 -g1,1820:6919131,36596999 -(1,1820:6919131,36596999:0,0,0 -) -g1,1820:7246811,36596999 -) -h1,1821:10724413,36596999:0,0,0 -k1,1821:31966991,36596999:21242578 -g1,1821:31966991,36596999 -) -(1,1825:7246811,37328713:24720180,404226,76021 -(1,1823:7246811,37328713:0,0,0 -g1,1823:7246811,37328713 -g1,1823:7246811,37328713 -g1,1823:6919131,37328713 -(1,1823:6919131,37328713:0,0,0 -) -g1,1823:7246811,37328713 -) -g1,1825:8195248,37328713 -g1,1825:9459831,37328713 -h1,1825:12621288,37328713:0,0,0 -k1,1825:31966992,37328713:19345704 -g1,1825:31966992,37328713 -) -] -) -g1,1826:31966991,37404734 -g1,1826:7246811,37404734 -g1,1826:7246811,37404734 -g1,1826:31966991,37404734 -g1,1826:31966991,37404734 -) -h1,1826:7246811,37601342:0,0,0 -(1,1830:7246811,40249163:24720180,505283,126483 -h1,1829:7246811,40249163:983040,0,0 -k1,1829:9003830,40249163:146144 -k1,1829:10893888,40249163:146145 -k1,1829:14556694,40249163:146144 -k1,1829:15318876,40249163:146144 -k1,1829:16484106,40249163:146145 -k1,1829:18600918,40249163:146144 -k1,1829:20615493,40249163:146144 -k1,1829:22680531,40249163:146144 -k1,1829:23439438,40249163:146145 -k1,1829:25081114,40249163:146144 -k1,1829:26383968,40249163:146144 -k1,1829:29172525,40249163:146145 -k1,1829:29850166,40249163:146144 -(1,1829:29850166,40249163:0,452978,115847 -r1,1885:31966991,40249163:2116825,568825,115847 -k1,1829:29850166,40249163:-2116825 -) -(1,1829:29850166,40249163:2116825,452978,115847 -k1,1829:29850166,40249163:3277 -h1,1829:31963714,40249163:0,411205,112570 -) -k1,1829:31966991,40249163:0 -) -(1,1830:7246811,41090651:24720180,513147,126483 -k1,1829:8512401,41090651:246505 -(1,1829:8512401,41090651:0,452978,122846 -r1,1885:10980938,41090651:2468537,575824,122846 -k1,1829:8512401,41090651:-2468537 -) -(1,1829:8512401,41090651:2468537,452978,122846 -k1,1829:8512401,41090651:3277 -h1,1829:10977661,41090651:0,411205,112570 -) -k1,1829:11227443,41090651:246505 -k1,1829:14446661,41090651:246505 -k1,1829:15684725,41090651:246504 -k1,1829:18996348,41090651:246505 -k1,1829:19894281,41090651:246505 -(1,1829:19894281,41090651:0,452978,115847 -r1,1885:22011106,41090651:2116825,568825,115847 -k1,1829:19894281,41090651:-2116825 -) -(1,1829:19894281,41090651:2116825,452978,115847 -k1,1829:19894281,41090651:3277 -h1,1829:22007829,41090651:0,411205,112570 -) -k1,1829:22257611,41090651:246505 -k1,1829:24546873,41090651:246505 -k1,1829:29030936,41090651:246505 -k1,1829:29764981,41090651:246457 -k1,1829:31966991,41090651:0 -) -(1,1830:7246811,41932139:24720180,505283,134348 -k1,1829:10917765,41932139:285364 -k1,1829:12696039,41932139:285364 -k1,1829:14047675,41932139:285365 -k1,1829:15685702,41932139:285364 -k1,1829:17633714,41932139:285364 -k1,1829:19617116,41932139:285364 -k1,1829:23307075,41932139:285364 -k1,1829:24584000,41932139:285365 -k1,1829:27028775,41932139:285364 -(1,1829:27028775,41932139:0,452978,122846 -r1,1885:29497312,41932139:2468537,575824,122846 -k1,1829:27028775,41932139:-2468537 -) -(1,1829:27028775,41932139:2468537,452978,122846 -k1,1829:27028775,41932139:3277 -h1,1829:29494035,41932139:0,411205,112570 -) -k1,1829:29782676,41932139:285364 -k1,1829:31966991,41932139:0 -) -(1,1830:7246811,42773627:24720180,513147,134348 -k1,1829:10298822,42773627:218890 -k1,1829:11133750,42773627:218890 -k1,1829:14259818,42773627:218891 -k1,1829:17206972,42773627:218890 -k1,1829:20241944,42773627:218890 -k1,1829:21745340,42773627:218890 -k1,1829:22955790,42773627:218890 -k1,1829:24220635,42773627:218890 -k1,1829:25415357,42773627:218891 -k1,1829:26285675,42773627:218890 -k1,1829:27252331,42773627:218890 -k1,1829:31280829,42773627:218890 -k1,1830:31966991,42773627:0 -) -(1,1830:7246811,43615115:24720180,505283,122846 -(1,1829:7246811,43615115:0,452978,122846 -r1,1885:9715348,43615115:2468537,575824,122846 -k1,1829:7246811,43615115:-2468537 -) -(1,1829:7246811,43615115:2468537,452978,122846 -k1,1829:7246811,43615115:3277 -h1,1829:9712071,43615115:0,411205,112570 -) -g1,1829:9914577,43615115 -k1,1830:31966992,43615115:19868100 -g1,1830:31966992,43615115 -) -] -) -] -r1,1885:32583029,45706769:26214,39845888,0 -) -] -) -) -g1,1885:32583029,45116945 -) -] -(1,1885:32583029,45706769:0,0,0 -g1,1885:32583029,45706769 -) -) -] -(1,1885:6630773,47279633:25952256,0,0 -h1,1885:6630773,47279633:25952256,0,0 -) -] -(1,1885:4262630,4025873:0,0,0 -[1,1885:-473656,4025873:0,0,0 -(1,1885:-473656,-710413:0,0,0 -(1,1885:-473656,-710413:0,0,0 -g1,1885:-473656,-710413 -) -g1,1885:-473656,-710413 -) -] -) -] -!19490 -}48 -Input:377:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!102 -{49 -[1,1949:4262630,47279633:28320399,43253760,0 -(1,1949:4262630,4025873:0,0,0 -[1,1949:-473656,4025873:0,0,0 -(1,1949:-473656,-710413:0,0,0 -(1,1949:-473656,-644877:0,0,0 -k1,1949:-473656,-644877:-65536 -) -(1,1949:-473656,4736287:0,0,0 -k1,1949:-473656,4736287:5209943 -) -g1,1949:-473656,-710413 -) -] -) -[1,1949:6630773,47279633:25952256,43253760,0 -[1,1949:6630773,4812305:25952256,786432,0 -(1,1949:6630773,4812305:25952256,505283,134348 -(1,1949:6630773,4812305:25952256,505283,134348 -g1,1949:3078558,4812305 -[1,1949:3078558,4812305:0,0,0 -(1,1949:3078558,2439708:0,1703936,0 -k1,1949:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,1949:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,1949:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,1949:3078558,4812305:0,0,0 -(1,1949:3078558,2439708:0,1703936,0 -g1,1949:29030814,2439708 -g1,1949:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,1949:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,1949:37855564,2439708:1179648,16384,0 -) -) -k1,1949:3078556,2439708:-34777008 -) -] -[1,1949:3078558,4812305:0,0,0 -(1,1949:3078558,49800853:0,16384,2228224 -k1,1949:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,1949:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,1949:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,1949:3078558,4812305:0,0,0 -(1,1949:3078558,49800853:0,16384,2228224 -g1,1949:29030814,49800853 -g1,1949:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,1949:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,1949:37855564,49800853:1179648,16384,0 -) -) -k1,1949:3078556,49800853:-34777008 -) -] -g1,1949:6630773,4812305 -k1,1949:19515153,4812305:12087462 -g1,1949:20901894,4812305 -g1,1949:21550700,4812305 -g1,1949:24864855,4812305 -g1,1949:27600327,4812305 -g1,1949:29010006,4812305 -) -) -] -[1,1949:6630773,45706769:25952256,40108032,0 -(1,1949:6630773,45706769:25952256,40108032,0 -(1,1949:6630773,45706769:0,0,0 -g1,1949:6630773,45706769 -) -[1,1949:6630773,45706769:25952256,40108032,0 -v1,1885:6630773,6254097:0,393216,0 -(1,1885:6630773,25980905:25952256,20120024,616038 -g1,1885:6630773,25980905 -(1,1885:6630773,25980905:25952256,20120024,616038 -(1,1885:6630773,26596943:25952256,20736062,0 -[1,1885:6630773,26596943:25952256,20736062,0 -(1,1885:6630773,26570729:25952256,20709848,0 -r1,1949:6656987,26570729:26214,20709848,0 -[1,1885:6656987,26570729:25899828,20709848,0 -(1,1885:6656987,25980905:25899828,19530200,0 -[1,1885:7246811,25980905:24720180,19530200,0 -v1,1832:7246811,6843921:0,393216,0 -(1,1861:7246811,16515305:24720180,10064600,196608 -g1,1861:7246811,16515305 -g1,1861:7246811,16515305 -g1,1861:7050203,16515305 -(1,1861:7050203,16515305:0,10064600,196608 -r1,1949:32163599,16515305:25113396,10261208,196608 -k1,1861:7050203,16515305:-25113396 -) -(1,1861:7050203,16515305:25113396,10064600,196608 -[1,1861:7246811,16515305:24720180,9867992,0 -(1,1834:7246811,7035810:24720180,388497,9436 -(1,1833:7246811,7035810:0,0,0 -g1,1833:7246811,7035810 -g1,1833:7246811,7035810 -g1,1833:6919131,7035810 -(1,1833:6919131,7035810:0,0,0 -) -g1,1833:7246811,7035810 -) -g1,1834:11040559,7035810 -g1,1834:11672851,7035810 -h1,1834:12621288,7035810:0,0,0 -k1,1834:31966992,7035810:19345704 -g1,1834:31966992,7035810 -) -(1,1838:7246811,8357348:24720180,410518,107478 -g1,1838:8195248,8357348 -g1,1838:10724414,8357348 -g1,1838:11672851,8357348 -g1,1838:15466599,8357348 -g1,1838:16098891,8357348 -g1,1838:17679620,8357348 -g1,1838:18944203,8357348 -g1,1838:21789514,8357348 -g1,1838:22737951,8357348 -g1,1838:25267117,8357348 -k1,1838:31966991,8357348:4170709 -g1,1838:31966991,8357348 -) -(1,1840:7246811,9023526:24720180,404226,76021 -(1,1838:7246811,9023526:0,0,0 -g1,1838:7246811,9023526 -g1,1838:7246811,9023526 -g1,1838:6919131,9023526 -(1,1838:6919131,9023526:0,0,0 -) -g1,1838:7246811,9023526 -) -g1,1840:8195248,9023526 -g1,1840:9459831,9023526 -h1,1840:10092122,9023526:0,0,0 -k1,1840:31966990,9023526:21874868 -g1,1840:31966990,9023526 -) -(1,1842:7246811,10345064:24720180,388497,9436 -(1,1841:7246811,10345064:0,0,0 -g1,1841:7246811,10345064 -g1,1841:7246811,10345064 -g1,1841:6919131,10345064 -(1,1841:6919131,10345064:0,0,0 -) -g1,1841:7246811,10345064 -) -g1,1842:11040559,10345064 -g1,1842:11672851,10345064 -h1,1842:12305142,10345064:0,0,0 -k1,1842:31966990,10345064:19661848 -g1,1842:31966990,10345064 -) -(1,1846:7246811,11076778:24720180,404226,76021 -(1,1844:7246811,11076778:0,0,0 -g1,1844:7246811,11076778 -g1,1844:7246811,11076778 -g1,1844:6919131,11076778 -(1,1844:6919131,11076778:0,0,0 -) -g1,1844:7246811,11076778 -) -g1,1846:8195248,11076778 -g1,1846:9459831,11076778 -h1,1846:12621288,11076778:0,0,0 -k1,1846:31966992,11076778:19345704 -g1,1846:31966992,11076778 -) -(1,1848:7246811,12398316:24720180,388497,9436 -(1,1847:7246811,12398316:0,0,0 -g1,1847:7246811,12398316 -g1,1847:7246811,12398316 -g1,1847:6919131,12398316 -(1,1847:6919131,12398316:0,0,0 -) -g1,1847:7246811,12398316 -) -g1,1848:11040559,12398316 -g1,1848:11672851,12398316 -h1,1848:15150453,12398316:0,0,0 -k1,1848:31966991,12398316:16816538 -g1,1848:31966991,12398316 -) -(1,1852:7246811,13719854:24720180,410518,107478 -g1,1852:8195248,13719854 -g1,1852:10724414,13719854 -g1,1852:11672851,13719854 -g1,1852:15466599,13719854 -g1,1852:16098891,13719854 -g1,1852:20208785,13719854 -g1,1852:21473368,13719854 -g1,1852:24318679,13719854 -g1,1852:25267116,13719854 -g1,1852:27796282,13719854 -k1,1852:31966991,13719854:1641544 -g1,1852:31966991,13719854 -) -(1,1854:7246811,14386032:24720180,404226,76021 -(1,1852:7246811,14386032:0,0,0 -g1,1852:7246811,14386032 -g1,1852:7246811,14386032 -g1,1852:6919131,14386032 -(1,1852:6919131,14386032:0,0,0 -) -g1,1852:7246811,14386032 -) -g1,1854:8195248,14386032 -g1,1854:9459831,14386032 -h1,1854:10092122,14386032:0,0,0 -k1,1854:31966990,14386032:21874868 -g1,1854:31966990,14386032 -) -(1,1856:7246811,15707570:24720180,388497,9436 -(1,1855:7246811,15707570:0,0,0 -g1,1855:7246811,15707570 -g1,1855:7246811,15707570 -g1,1855:6919131,15707570 -(1,1855:6919131,15707570:0,0,0 -) -g1,1855:7246811,15707570 -) -g1,1856:11040559,15707570 -g1,1856:11672851,15707570 -h1,1856:14834308,15707570:0,0,0 -k1,1856:31966992,15707570:17132684 -g1,1856:31966992,15707570 -) -(1,1860:7246811,16439284:24720180,404226,76021 -(1,1858:7246811,16439284:0,0,0 -g1,1858:7246811,16439284 -g1,1858:7246811,16439284 -g1,1858:6919131,16439284 -(1,1858:6919131,16439284:0,0,0 -) -g1,1858:7246811,16439284 -) -g1,1860:8195248,16439284 -g1,1860:9459831,16439284 -h1,1860:13253579,16439284:0,0,0 -k1,1860:31966991,16439284:18713412 -g1,1860:31966991,16439284 -) -] -) -g1,1861:31966991,16515305 -g1,1861:7246811,16515305 -g1,1861:7246811,16515305 -g1,1861:31966991,16515305 -g1,1861:31966991,16515305 -) -h1,1861:7246811,16711913:0,0,0 -(1,1865:7246811,18077689:24720180,513147,126483 -h1,1864:7246811,18077689:983040,0,0 -k1,1864:9380791,18077689:197391 -k1,1864:10603164,18077689:197390 -k1,1864:12184675,18077689:197391 -k1,1864:13666571,18077689:197390 -k1,1864:14883047,18077689:197391 -k1,1864:19866531,18077689:197390 -k1,1864:22810536,18077689:197391 -(1,1864:22810536,18077689:0,424981,115847 -r1,1949:23168802,18077689:358266,540828,115847 -k1,1864:22810536,18077689:-358266 -) -(1,1864:22810536,18077689:358266,424981,115847 -k1,1864:22810536,18077689:3277 -h1,1864:23165525,18077689:0,411205,112570 -) -k1,1864:23366193,18077689:197391 -k1,1864:25522454,18077689:197390 -k1,1864:26738930,18077689:197391 -k1,1864:30321910,18077689:197390 -k1,1864:31178593,18077689:197391 -k1,1864:31966991,18077689:0 -) -(1,1865:7246811,18919177:24720180,513147,134348 -k1,1864:10866036,18919177:216596 -k1,1864:11734059,18919177:216595 -(1,1864:11734059,18919177:0,452978,115847 -r1,1949:13850884,18919177:2116825,568825,115847 -k1,1864:11734059,18919177:-2116825 -) -(1,1864:11734059,18919177:2116825,452978,115847 -k1,1864:11734059,18919177:3277 -h1,1864:13847607,18919177:0,411205,112570 -) -k1,1864:14241150,18919177:216596 -k1,1864:17290866,18919177:216595 -k1,1864:18123500,18919177:216596 -k1,1864:19149465,18919177:216595 -k1,1864:22277169,18919177:216595 -k1,1864:23121600,18919177:216596 -k1,1864:26143137,18919177:216596 -k1,1864:27045894,18919177:216595 -k1,1864:28702316,18919177:216596 -k1,1864:30947906,18919177:216595 -k1,1864:31966991,18919177:0 -) -(1,1865:7246811,19760665:24720180,513147,134348 -g1,1864:11928047,19760665 -g1,1864:14873890,19760665 -(1,1864:14873890,19760665:0,414482,115847 -r1,1949:15232156,19760665:358266,530329,115847 -k1,1864:14873890,19760665:-358266 -) -(1,1864:14873890,19760665:358266,414482,115847 -k1,1864:14873890,19760665:3277 -h1,1864:15228879,19760665:0,411205,112570 -) -g1,1864:15431385,19760665 -g1,1864:18371985,19760665 -g1,1864:19380584,19760665 -g1,1864:22140305,19760665 -g1,1864:25172655,19760665 -g1,1864:25987922,19760665 -k1,1865:31966991,19760665:3067960 -g1,1865:31966991,19760665 -) -v1,1867:7246811,20951131:0,393216,0 -(1,1882:7246811,25260009:24720180,4702094,196608 -g1,1882:7246811,25260009 -g1,1882:7246811,25260009 -g1,1882:7050203,25260009 -(1,1882:7050203,25260009:0,4702094,196608 -r1,1949:32163599,25260009:25113396,4898702,196608 -k1,1882:7050203,25260009:-25113396 -) -(1,1882:7050203,25260009:25113396,4702094,196608 -[1,1882:7246811,25260009:24720180,4505486,0 -(1,1869:7246811,21143020:24720180,388497,9436 -(1,1868:7246811,21143020:0,0,0 -g1,1868:7246811,21143020 -g1,1868:7246811,21143020 -g1,1868:6919131,21143020 -(1,1868:6919131,21143020:0,0,0 -) -g1,1868:7246811,21143020 -) -g1,1869:11040559,21143020 -g1,1869:11672851,21143020 -h1,1869:15150453,21143020:0,0,0 -k1,1869:31966991,21143020:16816538 -g1,1869:31966991,21143020 -) -(1,1873:7246811,22464558:24720180,410518,107478 -g1,1873:8195248,22464558 -g1,1873:10724414,22464558 -g1,1873:11672851,22464558 -g1,1873:15466599,22464558 -g1,1873:16098891,22464558 -g1,1873:20208785,22464558 -g1,1873:21473368,22464558 -g1,1873:24318679,22464558 -g1,1873:25267116,22464558 -g1,1873:27796282,22464558 -k1,1873:31966991,22464558:1641544 -g1,1873:31966991,22464558 -) -(1,1875:7246811,23130736:24720180,404226,76021 -(1,1873:7246811,23130736:0,0,0 -g1,1873:7246811,23130736 -g1,1873:7246811,23130736 -g1,1873:6919131,23130736 -(1,1873:6919131,23130736:0,0,0 -) -g1,1873:7246811,23130736 -) -g1,1875:8195248,23130736 -g1,1875:9459831,23130736 -h1,1875:10092122,23130736:0,0,0 -k1,1875:31966990,23130736:21874868 -g1,1875:31966990,23130736 -) -(1,1877:7246811,24452274:24720180,388497,9436 -(1,1876:7246811,24452274:0,0,0 -g1,1876:7246811,24452274 -g1,1876:7246811,24452274 -g1,1876:6919131,24452274 -(1,1876:6919131,24452274:0,0,0 -) -g1,1876:7246811,24452274 -) -h1,1877:11672850,24452274:0,0,0 -k1,1877:31966990,24452274:20294140 -g1,1877:31966990,24452274 -) -(1,1881:7246811,25183988:24720180,404226,76021 -(1,1879:7246811,25183988:0,0,0 -g1,1879:7246811,25183988 -g1,1879:7246811,25183988 -g1,1879:6919131,25183988 -(1,1879:6919131,25183988:0,0,0 -) -g1,1879:7246811,25183988 -) -g1,1881:8195248,25183988 -g1,1881:9459831,25183988 -h1,1881:13253579,25183988:0,0,0 -k1,1881:31966991,25183988:18713412 -g1,1881:31966991,25183988 -) -] -) -g1,1882:31966991,25260009 -g1,1882:7246811,25260009 -g1,1882:7246811,25260009 -g1,1882:31966991,25260009 -g1,1882:31966991,25260009 -) -h1,1882:7246811,25456617:0,0,0 -] -) -] -r1,1949:32583029,26570729:26214,20709848,0 -) -] -) -) -g1,1885:32583029,25980905 -) -h1,1885:6630773,26596943:0,0,0 -v1,1888:6630773,27962719:0,393216,0 -(1,1949:6630773,42665924:25952256,15096421,589824 -g1,1949:6630773,42665924 -(1,1949:6630773,42665924:25952256,15096421,589824 -(1,1949:6630773,43255748:25952256,15686245,0 -[1,1949:6630773,43255748:25952256,15686245,0 -(1,1949:6630773,43255748:25952256,15660031,0 -r1,1949:6656987,43255748:26214,15660031,0 -[1,1949:6656987,43255748:25899828,15660031,0 -(1,1949:6656987,42665924:25899828,14480383,0 -[1,1949:7246811,42665924:24720180,14480383,0 -(1,1889:7246811,29271077:24720180,1085536,298548 -(1,1888:7246811,29271077:0,1085536,298548 -r1,1949:8753226,29271077:1506415,1384084,298548 -k1,1888:7246811,29271077:-1506415 -) -(1,1888:7246811,29271077:1506415,1085536,298548 -) -k1,1888:8960462,29271077:207236 -k1,1888:8960462,29271077:0 -k1,1888:9795534,29271077:207237 -k1,1888:11754547,29271077:207236 -k1,1888:15292323,29271077:207236 -k1,1888:17197597,29271077:207236 -k1,1888:19662549,29271077:207237 -k1,1888:22942113,29271077:207236 -k1,1888:24306059,29271077:207236 -k1,1888:26693678,29271077:207236 -k1,1888:28630410,29271077:207237 -k1,1888:31019340,29271077:207236 -k1,1888:31966991,29271077:0 -) -(1,1889:7246811,30112565:24720180,513147,134348 -k1,1888:10040909,30112565:247369 -k1,1888:10947569,30112565:247368 -k1,1888:13626979,30112565:247369 -k1,1888:15562555,30112565:247369 -k1,1888:18626005,30112565:247368 -k1,1888:21580666,30112565:247369 -k1,1888:23316357,30112565:247368 -k1,1888:24432078,30112565:247369 -k1,1888:26340129,30112565:247369 -k1,1888:27917878,30112565:247368 -k1,1888:28816675,30112565:247369 -k1,1888:31966991,30112565:0 -) -(1,1889:7246811,30954053:24720180,505283,134348 -k1,1888:9603617,30954053:198050 -k1,1888:12725228,30954053:198050 -k1,1888:15034193,30954053:198050 -k1,1888:16050132,30954053:198050 -k1,1888:17267266,30954053:198049 -k1,1888:20126733,30954053:198050 -k1,1888:22489437,30954053:198050 -k1,1888:25611048,30954053:198050 -k1,1888:27746342,30954053:198050 -k1,1888:29281326,30954053:198050 -k1,1889:31966991,30954053:0 -) -(1,1889:7246811,31795541:24720180,513147,134348 -k1,1888:8724430,31795541:138718 -k1,1888:10054593,31795541:138718 -k1,1888:10809348,31795541:138717 -k1,1888:13485620,31795541:138718 -h1,1888:13485620,31795541:0,0,0 -k1,1888:21132798,31795541:138718 -k1,1888:21803013,31795541:138718 -k1,1888:23008002,31795541:138718 -k1,1888:25275985,31795541:138718 -k1,1888:25770562,31795541:138717 -k1,1888:27493285,31795541:138718 -k1,1888:29312346,31795541:138718 -k1,1888:30102492,31795541:138718 -k1,1888:31966991,31795541:0 -) -(1,1889:7246811,32637029:24720180,513147,134348 -k1,1888:8566303,32637029:227007 -k1,1888:9409347,32637029:227006 -k1,1888:11158100,32637029:227007 -k1,1888:12332758,32637029:227007 -k1,1888:14753909,32637029:227006 -k1,1888:16172361,32637029:227007 -k1,1888:16755228,32637029:227007 -k1,1888:18841491,32637029:227007 -k1,1888:20748840,32637029:227006 -k1,1888:22312781,32637029:227007 -k1,1888:23287554,32637029:227007 -k1,1888:25986578,32637029:227006 -k1,1888:29337031,32637029:227007 -k1,1888:31966991,32637029:0 -) -(1,1889:7246811,33478517:24720180,513147,134348 -k1,1888:10567520,33478517:203817 -k1,1888:11422765,33478517:203817 -k1,1888:12645667,33478517:203817 -k1,1888:14358122,33478517:203816 -k1,1888:15221231,33478517:203817 -k1,1888:16444133,33478517:203817 -k1,1888:20623364,33478517:203817 -k1,1888:21285278,33478517:203817 -k1,1888:22020592,33478517:203817 -k1,1888:23559377,33478517:203817 -k1,1888:24414621,33478517:203816 -k1,1888:25809883,33478517:203817 -k1,1888:26961351,33478517:203817 -k1,1888:31019340,33478517:203817 -k1,1888:31966991,33478517:0 -) -(1,1889:7246811,34320005:24720180,513147,134348 -k1,1888:10103151,34320005:194923 -k1,1888:12033466,34320005:194922 -h1,1888:12033466,34320005:0,0,0 -k1,1888:12815288,34320005:386640 -k1,1888:13992292,34320005:386640 -k1,1888:15372761,34320005:194923 -k1,1888:17894867,34320005:194923 -k1,1888:18749081,34320005:194922 -h1,1888:18749081,34320005:0,0,0 -k1,1888:19530903,34320005:386640 -k1,1888:20707907,34320005:386640 -k1,1888:22262046,34320005:194923 -k1,1888:22934726,34320005:194923 -k1,1888:24332889,34320005:194922 -k1,1888:25059309,34320005:194923 -k1,1888:26320503,34320005:194923 -k1,1888:29319055,34320005:194922 -k1,1888:30947906,34320005:194923 -k1,1888:31966991,34320005:0 -) -(1,1889:7246811,35161493:24720180,505283,134348 -k1,1888:8941386,35161493:172829 -k1,1888:11294597,35161493:172828 -k1,1888:12215192,35161493:172829 -k1,1888:13965472,35161493:172828 -k1,1888:17079557,35161493:172829 -k1,1888:18774131,35161493:172828 -k1,1888:20093185,35161493:172829 -h1,1888:20093185,35161493:0,0,0 -k1,1888:20831181,35161493:342814 -k1,1888:21964360,35161493:342815 -k1,1888:23322735,35161493:172829 -k1,1888:24889514,35161493:172828 -h1,1888:24889514,35161493:0,0,0 -k1,1888:27208239,35161493:342815 -k1,1888:27946236,35161493:342815 -k1,1888:29869778,35161493:342814 -k1,1888:30607775,35161493:342815 -k1,1888:31966991,35161493:0 -) -(1,1889:7246811,36002981:24720180,505283,126483 -k1,1888:10242620,36002981:205941 -(1,1888:10242620,36002981:0,452978,115847 -r1,1949:12007733,36002981:1765113,568825,115847 -k1,1888:10242620,36002981:-1765113 -) -(1,1888:10242620,36002981:1765113,452978,115847 -k1,1888:10242620,36002981:3277 -h1,1888:12004456,36002981:0,411205,112570 -) -k1,1888:12213674,36002981:205941 -k1,1888:14760561,36002981:205941 -k1,1888:15985587,36002981:205941 -k1,1888:18896854,36002981:205941 -k1,1888:20956808,36002981:205940 -k1,1888:21778787,36002981:205941 -k1,1888:24397764,36002981:205941 -k1,1888:26732314,36002981:205941 -k1,1888:28984289,36002981:205941 -k1,1888:29956346,36002981:205941 -k1,1888:31966991,36002981:0 -) -(1,1889:7246811,36844469:24720180,513147,134348 -k1,1888:9991896,36844469:235711 -k1,1888:10910493,36844469:235712 -k1,1888:12740040,36844469:235711 -k1,1888:13737279,36844469:235711 -k1,1888:16856574,36844469:235711 -k1,1888:18111371,36844469:235712 -k1,1888:19667632,36844469:235711 -k1,1888:20562635,36844469:235711 -k1,1888:23453209,36844469:235711 -k1,1888:25873236,36844469:235712 -k1,1888:26791832,36844469:235711 -k1,1888:27643581,36844469:235711 -k1,1888:31966991,36844469:0 -) -(1,1889:7246811,37685957:24720180,505283,95027 -g1,1888:10135638,37685957 -$1,1888:10135638,37685957 -g1,1888:11309257,37685957 -g1,1888:12059514,37685957 -g1,1888:12449611,37685957 -g1,1888:13163456,37685957 -$1,1888:13910566,37685957 -k1,1889:31966992,37685957:17882756 -g1,1889:31966992,37685957 -) -v1,1891:7246811,38876423:0,393216,0 -(1,1904:7246811,41945028:24720180,3461821,196608 -g1,1904:7246811,41945028 -g1,1904:7246811,41945028 -g1,1904:7050203,41945028 -(1,1904:7050203,41945028:0,3461821,196608 -r1,1949:32163599,41945028:25113396,3658429,196608 -k1,1904:7050203,41945028:-25113396 -) -(1,1904:7050203,41945028:25113396,3461821,196608 -[1,1904:7246811,41945028:24720180,3265213,0 -(1,1893:7246811,39084041:24720180,404226,101187 -(1,1892:7246811,39084041:0,0,0 -g1,1892:7246811,39084041 -g1,1892:7246811,39084041 -g1,1892:6919131,39084041 -(1,1892:6919131,39084041:0,0,0 -) -g1,1892:7246811,39084041 -) -g1,1893:7879103,39084041 -g1,1893:8827540,39084041 -g1,1893:10092123,39084041 -g1,1893:10724415,39084041 -g1,1893:11988998,39084041 -g1,1893:13253581,39084041 -g1,1893:15466601,39084041 -k1,1893:15466601,39084041:18350 -h1,1893:16749534,39084041:0,0,0 -k1,1893:31966991,39084041:15217457 -g1,1893:31966991,39084041 -) -(1,1897:7246811,39815755:24720180,404226,76021 -(1,1895:7246811,39815755:0,0,0 -g1,1895:7246811,39815755 -g1,1895:7246811,39815755 -g1,1895:6919131,39815755 -(1,1895:6919131,39815755:0,0,0 -) -g1,1895:7246811,39815755 -) -g1,1897:8195248,39815755 -g1,1897:8511394,39815755 -g1,1897:9775977,39815755 -g1,1897:11672851,39815755 -g1,1897:13569725,39815755 -g1,1897:15466599,39815755 -g1,1897:17363473,39815755 -g1,1897:19260347,39815755 -g1,1897:21157221,39815755 -g1,1897:23054095,39815755 -g1,1897:24950969,39815755 -g1,1897:26847843,39815755 -h1,1897:28428571,39815755:0,0,0 -k1,1897:31966991,39815755:3538420 -g1,1897:31966991,39815755 -) -(1,1899:7246811,41137293:24720180,410518,101187 -(1,1898:7246811,41137293:0,0,0 -g1,1898:7246811,41137293 -g1,1898:7246811,41137293 -g1,1898:6919131,41137293 -(1,1898:6919131,41137293:0,0,0 -) -g1,1898:7246811,41137293 -) -k1,1899:7246811,41137293:0 -g1,1899:9459831,41137293 -g1,1899:10092123,41137293 -g1,1899:11988997,41137293 -g1,1899:12621289,41137293 -g1,1899:13569726,41137293 -k1,1899:13569726,41137293:23593 -h1,1899:15174047,41137293:0,0,0 -k1,1899:31966991,41137293:16792944 -g1,1899:31966991,41137293 -) -(1,1903:7246811,41869007:24720180,404226,76021 -(1,1901:7246811,41869007:0,0,0 -g1,1901:7246811,41869007 -g1,1901:7246811,41869007 -g1,1901:6919131,41869007 -(1,1901:6919131,41869007:0,0,0 -) -g1,1901:7246811,41869007 -) -g1,1903:8195248,41869007 -g1,1903:8511394,41869007 -g1,1903:9775977,41869007 -g1,1903:11672851,41869007 -g1,1903:13569725,41869007 -g1,1903:15466599,41869007 -g1,1903:17363473,41869007 -g1,1903:19260347,41869007 -g1,1903:21157221,41869007 -g1,1903:23054095,41869007 -g1,1903:24950969,41869007 -g1,1903:26847843,41869007 -h1,1903:28428571,41869007:0,0,0 -k1,1903:31966991,41869007:3538420 -g1,1903:31966991,41869007 -) -] -) -g1,1904:31966991,41945028 -g1,1904:7246811,41945028 -g1,1904:7246811,41945028 -g1,1904:31966991,41945028 -g1,1904:31966991,41945028 -) -h1,1904:7246811,42141636:0,0,0 -] -) -] -r1,1949:32583029,43255748:26214,15660031,0 -) -] -) -) -g1,1949:32583029,42665924 -) -] -(1,1949:32583029,45706769:0,0,0 -g1,1949:32583029,45706769 -) -) -] -(1,1949:6630773,47279633:25952256,0,0 -h1,1949:6630773,47279633:25952256,0,0 -) -] -(1,1949:4262630,4025873:0,0,0 -[1,1949:-473656,4025873:0,0,0 -(1,1949:-473656,-710413:0,0,0 -(1,1949:-473656,-710413:0,0,0 -g1,1949:-473656,-710413 -) -g1,1949:-473656,-710413 -) -] -) -] -!21652 -}49 -Input:378:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:379:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:380:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:381:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:382:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:383:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:384:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!648 -{50 -[1,2059:4262630,47279633:28320399,43253760,0 -(1,2059:4262630,4025873:0,0,0 -[1,2059:-473656,4025873:0,0,0 -(1,2059:-473656,-710413:0,0,0 -(1,2059:-473656,-644877:0,0,0 -k1,2059:-473656,-644877:-65536 -) -(1,2059:-473656,4736287:0,0,0 -k1,2059:-473656,4736287:5209943 -) -g1,2059:-473656,-710413 -) -] -) -[1,2059:6630773,47279633:25952256,43253760,0 -[1,2059:6630773,4812305:25952256,786432,0 -(1,2059:6630773,4812305:25952256,505283,126483 -(1,2059:6630773,4812305:25952256,505283,126483 -g1,2059:3078558,4812305 -[1,2059:3078558,4812305:0,0,0 -(1,2059:3078558,2439708:0,1703936,0 -k1,2059:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,2059:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,2059:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,2059:3078558,4812305:0,0,0 -(1,2059:3078558,2439708:0,1703936,0 -g1,2059:29030814,2439708 -g1,2059:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,2059:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,2059:37855564,2439708:1179648,16384,0 -) -) -k1,2059:3078556,2439708:-34777008 -) -] -[1,2059:3078558,4812305:0,0,0 -(1,2059:3078558,49800853:0,16384,2228224 -k1,2059:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,2059:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,2059:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,2059:3078558,4812305:0,0,0 -(1,2059:3078558,49800853:0,16384,2228224 -g1,2059:29030814,49800853 -g1,2059:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,2059:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,2059:37855564,49800853:1179648,16384,0 -) -) -k1,2059:3078556,49800853:-34777008 -) -] -g1,2059:6630773,4812305 -g1,2059:6630773,4812305 -g1,2059:8050282,4812305 -g1,2059:9459961,4812305 -g1,2059:10519678,4812305 -g1,2059:14021266,4812305 -k1,2059:31786110,4812305:17764844 -) -) -] -[1,2059:6630773,45706769:25952256,40108032,0 -(1,2059:6630773,45706769:25952256,40108032,0 -(1,2059:6630773,45706769:0,0,0 -g1,2059:6630773,45706769 -) -[1,2059:6630773,45706769:25952256,40108032,0 -v1,1949:6630773,6254097:0,393216,0 -(1,1949:6630773,18846430:25952256,12985549,616038 -g1,1949:6630773,18846430 -(1,1949:6630773,18846430:25952256,12985549,616038 -(1,1949:6630773,19462468:25952256,13601587,0 -[1,1949:6630773,19462468:25952256,13601587,0 -(1,1949:6630773,19436254:25952256,13575373,0 -r1,2059:6656987,19436254:26214,13575373,0 -[1,1949:6656987,19436254:25899828,13575373,0 -(1,1949:6656987,18846430:25899828,12395725,0 -[1,1949:7246811,18846430:24720180,12395725,0 -v1,1908:7246811,6843921:0,393216,0 -(1,1945:7246811,18125534:24720180,11674829,196608 -g1,1945:7246811,18125534 -g1,1945:7246811,18125534 -g1,1945:7050203,18125534 -(1,1945:7050203,18125534:0,11674829,196608 -r1,2059:32163599,18125534:25113396,11871437,196608 -k1,1945:7050203,18125534:-25113396 -) -(1,1945:7050203,18125534:25113396,11674829,196608 -[1,1945:7246811,18125534:24720180,11478221,0 -(1,1910:7246811,7051539:24720180,404226,107478 -(1,1909:7246811,7051539:0,0,0 -g1,1909:7246811,7051539 -g1,1909:7246811,7051539 -g1,1909:6919131,7051539 -(1,1909:6919131,7051539:0,0,0 -) -g1,1909:7246811,7051539 -) -k1,1910:7246811,7051539:0 -g1,1910:9775977,7051539 -g1,1910:10724414,7051539 -g1,1910:11988997,7051539 -g1,1910:12621289,7051539 -g1,1910:14518163,7051539 -g1,1910:15466600,7051539 -g1,1910:18311912,7051539 -g1,1910:19576495,7051539 -k1,1910:19576495,7051539:0 -h1,1910:22105660,7051539:0,0,0 -k1,1910:31966991,7051539:9861331 -g1,1910:31966991,7051539 -) -(1,1914:7246811,7783253:24720180,404226,76021 -(1,1912:7246811,7783253:0,0,0 -g1,1912:7246811,7783253 -g1,1912:7246811,7783253 -g1,1912:6919131,7783253 -(1,1912:6919131,7783253:0,0,0 -) -g1,1912:7246811,7783253 -) -g1,1914:8195248,7783253 -g1,1914:9459831,7783253 -h1,1914:11040559,7783253:0,0,0 -k1,1914:31966991,7783253:20926432 -g1,1914:31966991,7783253 -) -(1,1916:7246811,9104791:24720180,404226,101187 -(1,1915:7246811,9104791:0,0,0 -g1,1915:7246811,9104791 -g1,1915:7246811,9104791 -g1,1915:6919131,9104791 -(1,1915:6919131,9104791:0,0,0 -) -g1,1915:7246811,9104791 -) -k1,1916:7246811,9104791:0 -g1,1916:9143686,9104791 -g1,1916:9775978,9104791 -g1,1916:11040561,9104791 -g1,1916:11988998,9104791 -h1,1916:12937435,9104791:0,0,0 -k1,1916:31966991,9104791:19029556 -g1,1916:31966991,9104791 -) -(1,1920:7246811,9836505:24720180,404226,76021 -(1,1918:7246811,9836505:0,0,0 -g1,1918:7246811,9836505 -g1,1918:7246811,9836505 -g1,1918:6919131,9836505 -(1,1918:6919131,9836505:0,0,0 -) -g1,1918:7246811,9836505 -) -g1,1920:8195248,9836505 -g1,1920:9459831,9836505 -h1,1920:11040559,9836505:0,0,0 -k1,1920:31966991,9836505:20926432 -g1,1920:31966991,9836505 -) -(1,1922:7246811,11158043:24720180,404226,101187 -(1,1921:7246811,11158043:0,0,0 -g1,1921:7246811,11158043 -g1,1921:7246811,11158043 -g1,1921:6919131,11158043 -(1,1921:6919131,11158043:0,0,0 -) -g1,1921:7246811,11158043 -) -k1,1922:7246811,11158043:0 -g1,1922:11356705,11158043 -g1,1922:11988997,11158043 -k1,1922:11988997,11158043:0 -h1,1922:13569725,11158043:0,0,0 -k1,1922:31966991,11158043:18397266 -g1,1922:31966991,11158043 -) -(1,1926:7246811,11889757:24720180,404226,76021 -(1,1924:7246811,11889757:0,0,0 -g1,1924:7246811,11889757 -g1,1924:7246811,11889757 -g1,1924:6919131,11889757 -(1,1924:6919131,11889757:0,0,0 -) -g1,1924:7246811,11889757 -) -g1,1926:8195248,11889757 -g1,1926:9459831,11889757 -h1,1926:10724414,11889757:0,0,0 -k1,1926:31966990,11889757:21242576 -g1,1926:31966990,11889757 -) -(1,1928:7246811,13211295:24720180,404226,101187 -(1,1927:7246811,13211295:0,0,0 -g1,1927:7246811,13211295 -g1,1927:7246811,13211295 -g1,1927:6919131,13211295 -(1,1927:6919131,13211295:0,0,0 -) -g1,1927:7246811,13211295 -) -k1,1928:7246811,13211295:0 -g1,1928:10408269,13211295 -g1,1928:11040561,13211295 -g1,1928:12621290,13211295 -g1,1928:13253582,13211295 -k1,1928:13253582,13211295:0 -h1,1928:14834310,13211295:0,0,0 -k1,1928:31966990,13211295:17132680 -g1,1928:31966990,13211295 -) -(1,1932:7246811,13943009:24720180,404226,76021 -(1,1930:7246811,13943009:0,0,0 -g1,1930:7246811,13943009 -g1,1930:7246811,13943009 -g1,1930:6919131,13943009 -(1,1930:6919131,13943009:0,0,0 -) -g1,1930:7246811,13943009 -) -g1,1932:8195248,13943009 -g1,1932:9459831,13943009 -h1,1932:10724414,13943009:0,0,0 -k1,1932:31966990,13943009:21242576 -g1,1932:31966990,13943009 -) -(1,1934:7246811,15264547:24720180,404226,101187 -(1,1933:7246811,15264547:0,0,0 -g1,1933:7246811,15264547 -g1,1933:7246811,15264547 -g1,1933:6919131,15264547 -(1,1933:6919131,15264547:0,0,0 -) -g1,1933:7246811,15264547 -) -k1,1934:7246811,15264547:0 -h1,1934:9459831,15264547:0,0,0 -k1,1934:31966991,15264547:22507160 -g1,1934:31966991,15264547 -) -(1,1938:7246811,15996261:24720180,404226,76021 -(1,1936:7246811,15996261:0,0,0 -g1,1936:7246811,15996261 -g1,1936:7246811,15996261 -g1,1936:6919131,15996261 -(1,1936:6919131,15996261:0,0,0 -) -g1,1936:7246811,15996261 -) -g1,1938:8195248,15996261 -g1,1938:9459831,15996261 -k1,1938:9459831,15996261:0 -h1,1938:13253579,15996261:0,0,0 -k1,1938:31966991,15996261:18713412 -g1,1938:31966991,15996261 -) -(1,1940:7246811,17317799:24720180,404226,101187 -(1,1939:7246811,17317799:0,0,0 -g1,1939:7246811,17317799 -g1,1939:7246811,17317799 -g1,1939:6919131,17317799 -(1,1939:6919131,17317799:0,0,0 -) -g1,1939:7246811,17317799 -) -k1,1940:7246811,17317799:0 -g1,1940:9143686,17317799 -g1,1940:9775978,17317799 -h1,1940:10724415,17317799:0,0,0 -k1,1940:31966991,17317799:21242576 -g1,1940:31966991,17317799 -) -(1,1944:7246811,18049513:24720180,404226,76021 -(1,1942:7246811,18049513:0,0,0 -g1,1942:7246811,18049513 -g1,1942:7246811,18049513 -g1,1942:6919131,18049513 -(1,1942:6919131,18049513:0,0,0 -) -g1,1942:7246811,18049513 -) -g1,1944:8195248,18049513 -g1,1944:9459831,18049513 -k1,1944:9459831,18049513:0 -h1,1944:13569725,18049513:0,0,0 -k1,1944:31966991,18049513:18397266 -g1,1944:31966991,18049513 -) -] -) -g1,1945:31966991,18125534 -g1,1945:7246811,18125534 -g1,1945:7246811,18125534 -g1,1945:31966991,18125534 -g1,1945:31966991,18125534 -) -h1,1945:7246811,18322142:0,0,0 -] -) -] -r1,2059:32583029,19436254:26214,13575373,0 -) -] -) -) -g1,1949:32583029,18846430 -) -h1,1949:6630773,19462468:0,0,0 -(1,1954:6630773,22794324:25952256,32768,229376 -(1,1954:6630773,22794324:0,32768,229376 -(1,1954:6630773,22794324:5505024,32768,229376 -r1,2059:12135797,22794324:5505024,262144,229376 -) -k1,1954:6630773,22794324:-5505024 -) -(1,1954:6630773,22794324:25952256,32768,0 -r1,2059:32583029,22794324:25952256,32768,0 -) -) -(1,1954:6630773,24398652:25952256,606339,151780 -(1,1954:6630773,24398652:1974731,582746,14155 -g1,1954:6630773,24398652 -g1,1954:8605504,24398652 -) -g1,1954:10448114,24398652 -g1,1954:12157817,24398652 -g1,1954:13563171,24398652 -k1,1954:32583029,24398652:14806155 -g1,1954:32583029,24398652 -) -(1,1958:6630773,25633356:25952256,513147,134348 -k1,1957:8077963,25633356:250503 -k1,1957:8743257,25633356:250451 -k1,1957:11836056,25633356:250503 -k1,1957:14943273,25633356:250503 -k1,1957:16128319,25633356:250503 -k1,1957:19783416,25633356:250502 -k1,1957:20843289,25633356:250503 -k1,1957:23575640,25633356:250503 -k1,1957:25383934,25633356:250503 -k1,1957:26738719,25633356:250503 -k1,1957:27736987,25633356:250502 -k1,1957:29964711,25633356:250503 -k1,1957:30831252,25633356:250503 -k1,1957:32583029,25633356:0 -) -(1,1958:6630773,26474844:25952256,513147,134348 -k1,1957:9628652,26474844:235536 -k1,1957:12563616,26474844:235536 -k1,1957:14497190,26474844:235536 -k1,1957:18968318,26474844:235536 -k1,1957:20395300,26474844:235537 -k1,1957:24034121,26474844:235536 -k1,1957:26577835,26474844:235536 -k1,1957:27472663,26474844:235536 -k1,1957:29892514,26474844:235536 -k1,1957:31087497,26474844:235536 -k1,1958:32583029,26474844:0 -) -(1,1958:6630773,27316332:25952256,513147,126483 -k1,1957:7966078,27316332:290661 -k1,1957:11661334,27316332:290661 -k1,1957:13143441,27316332:290662 -k1,1957:14942741,27316332:290661 -k1,1957:18868684,27316332:290661 -k1,1957:19775383,27316332:290661 -k1,1957:24389454,27316332:290661 -k1,1957:27369713,27316332:290661 -k1,1957:28851820,27316332:290662 -k1,1957:29557232,27316332:290569 -k1,1957:32583029,27316332:0 -) -(1,1958:6630773,28157820:25952256,513147,126483 -k1,1957:8032730,28157820:236727 -k1,1957:10239469,28157820:236727 -$1,1957:10239469,28157820 -$1,1957:10807666,28157820 -k1,1957:11218063,28157820:236727 -(1,1957:11218063,28157820:0,452978,115847 -r1,2059:13686600,28157820:2468537,568825,115847 -k1,1957:11218063,28157820:-2468537 -) -(1,1957:11218063,28157820:2468537,452978,115847 -k1,1957:11218063,28157820:3277 -h1,1957:13683323,28157820:0,411205,112570 -) -k1,1957:14096997,28157820:236727 -k1,1957:18140054,28157820:236726 -$1,1957:18140054,28157820 -$1,1957:18708251,28157820 -k1,1957:19118648,28157820:236727 -(1,1957:19118648,28157820:0,452978,115847 -r1,2059:22994032,28157820:3875384,568825,115847 -k1,1957:19118648,28157820:-3875384 -) -(1,1957:19118648,28157820:3875384,452978,115847 -k1,1957:19118648,28157820:3277 -h1,1957:22990755,28157820:0,411205,112570 -) -k1,1957:23404429,28157820:236727 -k1,1957:26758048,28157820:236727 -k1,1957:31841162,28157820:236727 -$1,1957:31841162,28157820 -$1,1957:32409359,28157820 -k1,1958:32583029,28157820:0 -) -(1,1958:6630773,28999308:25952256,513147,126483 -(1,1957:6630773,28999308:0,459977,115847 -r1,2059:9802733,28999308:3171960,575824,115847 -k1,1957:6630773,28999308:-3171960 -) -(1,1957:6630773,28999308:3171960,459977,115847 -k1,1957:6630773,28999308:3277 -h1,1957:9799456,28999308:0,411205,112570 -) -k1,1957:10160746,28999308:184343 -k1,1957:12865603,28999308:184342 -k1,1957:14192894,28999308:184343 -(1,1957:14192894,28999308:0,452978,115847 -r1,2059:17716566,28999308:3523672,568825,115847 -k1,1957:14192894,28999308:-3523672 -) -(1,1957:14192894,28999308:3523672,452978,115847 -k1,1957:14192894,28999308:3277 -h1,1957:17713289,28999308:0,411205,112570 -) -k1,1957:18074579,28999308:184343 -k1,1957:22337226,28999308:184342 -(1,1957:22337226,28999308:0,452978,115847 -r1,2059:26564322,28999308:4227096,568825,115847 -k1,1957:22337226,28999308:-4227096 -) -(1,1957:22337226,28999308:4227096,452978,115847 -k1,1957:22337226,28999308:3277 -h1,1957:26561045,28999308:0,411205,112570 -) -k1,1957:26748665,28999308:184343 -k1,1957:28124453,28999308:184343 -(1,1957:28124453,28999308:0,452978,115847 -r1,2059:29537854,28999308:1413401,568825,115847 -k1,1957:28124453,28999308:-1413401 -) -(1,1957:28124453,28999308:1413401,452978,115847 -k1,1957:28124453,28999308:3277 -h1,1957:29534577,28999308:0,411205,112570 -) -k1,1957:29895866,28999308:184342 -k1,1957:31276896,28999308:184343 -k1,1957:32583029,28999308:0 -) -(1,1958:6630773,29840796:25952256,513147,126483 -k1,1957:8481837,29840796:196280 -k1,1957:11703914,29840796:196280 -k1,1957:13910840,29840796:196281 -k1,1957:16084997,29840796:196280 -k1,1957:16940569,29840796:196280 -k1,1957:18155934,29840796:196280 -k1,1957:20005687,29840796:196280 -k1,1957:21984547,29840796:196281 -k1,1957:22866989,29840796:196280 -k1,1957:24571908,29840796:196280 -k1,1957:26980683,29840796:196280 -k1,1957:28368409,29840796:196281 -k1,1957:29583774,29840796:196280 -k1,1957:30928245,29840796:196280 -k1,1957:32583029,29840796:0 -) -(1,1958:6630773,30682284:25952256,513147,126483 -k1,1957:7183710,30682284:197077 -(1,1957:7183710,30682284:0,452978,122846 -r1,2059:9652247,30682284:2468537,575824,122846 -k1,1957:7183710,30682284:-2468537 -) -(1,1957:7183710,30682284:2468537,452978,122846 -k1,1957:7183710,30682284:3277 -h1,1957:9648970,30682284:0,411205,112570 -) -k1,1957:9849325,30682284:197078 -k1,1957:12197949,30682284:197077 -k1,1957:13591714,30682284:197078 -k1,1957:15745696,30682284:197077 -k1,1957:16602066,30682284:197078 -k1,1957:17818228,30682284:197077 -k1,1957:19321439,30682284:197078 -k1,1957:21173300,30682284:197077 -k1,1957:24774973,30682284:197078 -k1,1957:25503547,30682284:197077 -k1,1957:27302325,30682284:197078 -k1,1957:29300331,30682284:197077 -k1,1957:32583029,30682284:0 -) -(1,1958:6630773,31523772:25952256,505283,134348 -g1,1957:8223953,31523772 -g1,1957:10058305,31523772 -k1,1958:32583030,31523772:19404556 -g1,1958:32583030,31523772 -) -(1,2015:6630773,37743467:25952256,5672470,0 -h1,1960:6630773,37743467:983040,0,0 -k1,1960:9895994,37743467:2282181 -(1,1986:9895994,37743467:9061337,5672470,0 -g1,1986:12777671,37743467 -(1,1986:12777671,34920234:0,0,0 -(1,1986:12777671,34920234:0,0,0 -g1,1964:12777671,34920234 -g1,1967:12777671,34920234 -g1,1967:12777671,34920234 -(1,1967:12777671,34920234:0,0,0 -(1,1967:12777671,34920234:0,0,0 -g1,1967:12777671,34920234 -(1,1967:12777671,34920234:0,0,0 -(1,1967:12777671,34920234:0,0,0 -h1,1967:12777671,34920234:0,0,0 -g1,1967:12777671,34920234 -) -) -g1,1967:12777671,34920234 -g1,1967:12777671,34920234 -) -(1,1967:12777671,34920234:0,0,0 -g1,1967:12777671,34920234 -g1,1967:12777671,34920234 -g1,1967:12777671,34920234 -g1,1967:12777671,34920234 -g1,1967:12777671,34920234 -(1,1967:12777671,34920234:0,0,0 -(1,1967:12777671,34920234:465961,433521,0 -(1,1967:12777671,34920234:465961,433521,0 -$1,1967:12777671,34920234 -$1,1967:13243632,34920234 -) -g1,1967:13243632,34920234 -) -) -g1,1967:12777671,34920234 -g1,1967:12777671,34920234 -) -) -g1,1967:12777671,34920234 -g1,1970:12777671,34920234 -g1,1970:12777671,34920234 -(1,1970:12777671,34920234:0,0,0 -(1,1970:12777671,34920234:0,0,0 -g1,1970:12777671,34920234 -(1,1970:12777671,34920234:0,0,0 -(1,1970:12777671,34920234:0,0,0 -h1,1970:12777671,34920234:0,0,0 -g1,1970:12777671,34920234 -) -) -g1,1970:12777671,34920234 -g1,1970:12777671,34920234 -) -(1,1970:12777671,34920234:0,0,0 -g1,1970:12777671,34920234 -g1,1970:12777671,34920234 -g1,1970:12777671,34920234 -(1,1970:12777671,34920234:0,0,0 -(1,1970:12777671,34920234:403440,426443,0 -(1,1970:12777671,34920234:403440,426443,0 -$1,1970:12777671,34920234 -$1,1970:13181111,34920234 -) -g1,1970:13181111,34920234 -) -) -g1,1970:12777671,34920234 -g1,1970:12777671,34920234 -) -) -g1,1970:12777671,34920234 -g1,1976:12777671,34920234 -g1,1977:12777671,34920234 -g1,1977:12777671,34920234 -g1,1980:12777671,34920234 -g1,1981:12777671,34920234 -(1,1984:12777671,34920234:0,0,0 -(1,1984:12777671,34920234:0,0,0 -g1,1984:12777671,34920234 -g1,1984:12777671,34920234 -g1,1984:12777671,34920234 -g1,1984:12777671,34920234 -g1,1984:12777671,34920234 -(1,1984:12777671,34920234:0,0,0 -(1,1984:12777671,34920234:1642946,433521,0 -(1,1984:12777671,34920234:1642946,433521,0 -$1,1984:12777671,34920234 -g1,1984:13374716,34920234 -g1,1984:14017177,34920234 -$1,1984:14420617,34920234 -) -g1,1984:14420617,34920234 -) -) -g1,1984:12777671,34920234 -g1,1984:12777671,34920234 -) -) -g1,1984:12777671,34920234 -g1,1986:12777671,34920234 -g1,1986:12777671,34920234 -) -g1,1986:12777671,34920234 -) -) -k1,1987:21239512,37743467:2282181 -(1,2012:21239512,37743467:9061337,5672470,0 -g1,2012:24121189,37743467 -(1,2012:24121189,34920234:0,0,0 -(1,2012:24121189,34920234:0,0,0 -g1,1991:24121189,34920234 -g1,1994:24121189,34920234 -g1,1994:24121189,34920234 -(1,1994:24121189,34920234:0,0,0 -(1,1994:24121189,34920234:0,0,0 -g1,1994:24121189,34920234 -(1,1994:24121189,34920234:0,0,0 -(1,1994:24121189,34920234:0,0,0 -h1,1994:24121189,34920234:0,0,0 -g1,1994:24121189,34920234 -) -) -g1,1994:24121189,34920234 -g1,1994:24121189,34920234 -) -(1,1994:24121189,34920234:0,0,0 -g1,1994:24121189,34920234 -g1,1994:24121189,34920234 -g1,1994:24121189,34920234 -g1,1994:24121189,34920234 -g1,1994:24121189,34920234 -(1,1994:24121189,34920234:0,0,0 -(1,1994:24121189,34920234:465961,433521,0 -(1,1994:24121189,34920234:465961,433521,0 -$1,1994:24121189,34920234 -$1,1994:24587150,34920234 -) -g1,1994:24587150,34920234 -) -) -g1,1994:24121189,34920234 -g1,1994:24121189,34920234 -) -) -g1,1994:24121189,34920234 -g1,1997:24121189,34920234 -g1,1997:24121189,34920234 -(1,1997:24121189,34920234:0,0,0 -(1,1997:24121189,34920234:0,0,0 -g1,1997:24121189,34920234 -(1,1997:24121189,34920234:0,0,0 -(1,1997:24121189,34920234:0,0,0 -h1,1997:24121189,34920234:0,0,0 -g1,1997:24121189,34920234 -) -) -g1,1997:24121189,34920234 -g1,1997:24121189,34920234 -) -(1,1997:24121189,34920234:0,0,0 -g1,1997:24121189,34920234 -g1,1997:24121189,34920234 -g1,1997:24121189,34920234 -(1,1997:24121189,34920234:0,0,0 -(1,1997:24121189,34920234:403440,426443,0 -(1,1997:24121189,34920234:403440,426443,0 -$1,1997:24121189,34920234 -$1,1997:24524629,34920234 -) -g1,1997:24524629,34920234 -) -) -g1,1997:24121189,34920234 -g1,1997:24121189,34920234 -) -) -g1,1997:24121189,34920234 -g1,2003:24121189,34920234 -g1,2004:24121189,34920234 -g1,2004:24121189,34920234 -g1,2006:24121189,34920234 -g1,2007:24121189,34920234 -(1,2010:24121189,34920234:0,0,0 -(1,2010:24121189,34920234:0,0,0 -g1,2010:24121189,34920234 -g1,2010:24121189,34920234 -g1,2010:24121189,34920234 -g1,2010:24121189,34920234 -g1,2010:24121189,34920234 -(1,2010:24121189,34920234:0,0,0 -(1,2010:24121189,34920234:1642946,433521,0 -(1,2010:24121189,34920234:1642946,433521,0 -$1,2010:24121189,34920234 -g1,2010:24718234,34920234 -g1,2010:25360695,34920234 -$1,2010:25764135,34920234 -) -g1,2010:25764135,34920234 -) -) -g1,2010:24121189,34920234 -g1,2010:24121189,34920234 -) -) -g1,2010:24121189,34920234 -g1,2012:24121189,34920234 -g1,2012:24121189,34920234 -) -g1,2012:24121189,34920234 -) -) -k1,2013:32583029,37743467:2282180 -g1,2015:32583029,37743467 -g1,2015:32583029,37743467 -) -(1,2057:6630773,44106687:25952256,5672470,0 -h1,2016:6630773,44106687:983040,0,0 -k1,2016:9829584,44106687:2215771 -(1,2034:9829584,44106687:9061337,5672470,0 -g1,2034:12711261,44106687 -(1,2034:12711261,41283454:0,0,0 -(1,2034:12711261,41283454:0,0,0 -g1,2019:12711261,41283454 -g1,2022:12711261,41283454 -g1,2022:12711261,41283454 -(1,2022:12711261,41283454:0,0,0 -(1,2022:12711261,41283454:0,0,0 -g1,2022:12711261,41283454 -(1,2022:12711261,41283454:0,0,0 -(1,2022:12711261,41283454:0,0,0 -h1,2022:12711261,41283454:0,0,0 -g1,2022:12711261,41283454 -) -) -g1,2022:12711261,41283454 -g1,2022:12711261,41283454 -) -(1,2022:12711261,41283454:0,0,0 -g1,2022:12711261,41283454 -g1,2022:12711261,41283454 -g1,2022:12711261,41283454 -g1,2022:12711261,41283454 -g1,2022:12711261,41283454 -(1,2022:12711261,41283454:0,0,0 -(1,2022:12711261,41283454:465961,433521,0 -(1,2022:12711261,41283454:465961,433521,0 -$1,2022:12711261,41283454 -$1,2022:13177222,41283454 -) -g1,2022:13177222,41283454 -) -) -g1,2022:12711261,41283454 -g1,2022:12711261,41283454 -) -) -g1,2022:12711261,41283454 -g1,2025:12711261,41283454 -g1,2025:12711261,41283454 -(1,2025:12711261,41283454:0,0,0 -(1,2025:12711261,41283454:0,0,0 -g1,2025:12711261,41283454 -(1,2025:12711261,41283454:0,0,0 -(1,2025:12711261,41283454:0,0,0 -h1,2025:12711261,41283454:0,0,0 -g1,2025:12711261,41283454 -) -) -g1,2025:12711261,41283454 -g1,2025:12711261,41283454 -) -(1,2025:12711261,41283454:0,0,0 -g1,2025:12711261,41283454 -g1,2025:12711261,41283454 -g1,2025:12711261,41283454 -(1,2025:12711261,41283454:0,0,0 -(1,2025:12711261,41283454:403440,426443,0 -(1,2025:12711261,41283454:403440,426443,0 -$1,2025:12711261,41283454 -$1,2025:13114701,41283454 -) -g1,2025:13114701,41283454 -) -) -g1,2025:12711261,41283454 -g1,2025:12711261,41283454 -) -) -g1,2025:12711261,41283454 -g1,2028:12711261,41283454 -g1,2029:12711261,41283454 -(1,2032:12711261,41283454:0,0,0 -(1,2032:12711261,41283454:0,0,0 -g1,2032:12711261,41283454 -g1,2032:12711261,41283454 -g1,2032:12711261,41283454 -g1,2032:12711261,41283454 -g1,2032:12711261,41283454 -(1,2032:12711261,41283454:0,0,0 -(1,2032:12711261,41283454:1642946,433521,0 -(1,2032:12711261,41283454:1642946,433521,0 -$1,2032:12711261,41283454 -g1,2032:13308306,41283454 -g1,2032:13950767,41283454 -$1,2032:14354207,41283454 -) -g1,2032:14354207,41283454 -) -) -g1,2032:12711261,41283454 -g1,2032:12711261,41283454 -) -) -g1,2032:12711261,41283454 -g1,2034:12711261,41283454 -g1,2034:12711261,41283454 -) -g1,2034:12711261,41283454 -) -) -k1,2035:21106692,44106687:2215771 -(1,2053:21106692,44106687:9061337,5672470,0 -g1,2053:23988369,44106687 -(1,2053:23988369,41283454:0,0,0 -(1,2053:23988369,41283454:0,0,0 -g1,2038:23988369,41283454 -g1,2041:23988369,41283454 -g1,2041:23988369,41283454 -(1,2041:23988369,41283454:0,0,0 -(1,2041:23988369,41283454:0,0,0 -g1,2041:23988369,41283454 -(1,2041:23988369,41283454:0,0,0 -(1,2041:23988369,41283454:0,0,0 -h1,2041:23988369,41283454:0,0,0 -g1,2041:23988369,41283454 -) -) -g1,2041:23988369,41283454 -g1,2041:23988369,41283454 -) -(1,2041:23988369,41283454:0,0,0 -g1,2041:23988369,41283454 -g1,2041:23988369,41283454 -g1,2041:23988369,41283454 -(1,2041:23988369,41283454:0,0,0 -(1,2041:23988369,41283454:403440,426443,0 -(1,2041:23988369,41283454:403440,426443,0 -$1,2041:23988369,41283454 -$1,2041:24391809,41283454 -) -g1,2041:24391809,41283454 -) -) -g1,2041:23988369,41283454 -g1,2041:23988369,41283454 -) -) -g1,2041:23988369,41283454 -g1,2044:23988369,41283454 -g1,2044:23988369,41283454 -(1,2044:23988369,41283454:0,0,0 -(1,2044:23988369,41283454:0,0,0 -g1,2044:23988369,41283454 -(1,2044:23988369,41283454:0,0,0 -(1,2044:23988369,41283454:0,0,0 -h1,2044:23988369,41283454:0,0,0 -g1,2044:23988369,41283454 -) -) -g1,2044:23988369,41283454 -g1,2044:23988369,41283454 -) -(1,2044:23988369,41283454:0,0,0 -g1,2044:23988369,41283454 -g1,2044:23988369,41283454 -g1,2044:23988369,41283454 -g1,2044:23988369,41283454 -g1,2044:23988369,41283454 -(1,2044:23988369,41283454:0,0,0 -(1,2044:23988369,41283454:465961,433521,0 -(1,2044:23988369,41283454:465961,433521,0 -$1,2044:23988369,41283454 -$1,2044:24454330,41283454 -) -g1,2044:24454330,41283454 -) -) -g1,2044:23988369,41283454 -g1,2044:23988369,41283454 -) -) -g1,2044:23988369,41283454 -g1,2047:23988369,41283454 -g1,2048:23988369,41283454 -(1,2051:23988369,41283454:0,0,0 -(1,2051:23988369,41283454:0,0,0 -g1,2051:23988369,41283454 -g1,2051:23988369,41283454 -g1,2051:23988369,41283454 -g1,2051:23988369,41283454 -g1,2051:23988369,41283454 -(1,2051:23988369,41283454:0,0,0 -(1,2051:23988369,41283454:1642946,433521,0 -(1,2051:23988369,41283454:1642946,433521,0 -$1,2051:23988369,41283454 -g1,2051:24522893,41283454 -g1,2051:25165354,41283454 -$1,2051:25631315,41283454 -) -g1,2051:25631315,41283454 -) -) -g1,2051:23988369,41283454 -g1,2051:23988369,41283454 -) -) -g1,2051:23988369,41283454 -g1,2053:23988369,41283454 -g1,2053:23988369,41283454 -) -g1,2053:23988369,41283454 -) -) -k1,2054:32383800,44106687:2215771 -g1,2055:32583029,44106687 -g1,2057:32583029,44106687 -g1,2057:32583029,44106687 -) -(1,2059:6630773,45295516:25952256,513147,134348 -h1,2058:6630773,45295516:983040,0,0 -k1,2058:8393540,45295516:151892 -k1,2058:13201765,45295516:151892 -k1,2058:13811755,45295516:151893 -k1,2058:14495144,45295516:151892 -k1,2058:16541682,45295516:151892 -k1,2058:17641225,45295516:151892 -k1,2058:20628205,45295516:151893 -k1,2058:21431525,45295516:151892 -k1,2058:23058632,45295516:151892 -k1,2058:26185203,45295516:151892 -k1,2058:28645274,45295516:151893 -k1,2058:29456458,45295516:151892 -k1,2058:31092085,45295516:151892 -k1,2058:32583029,45295516:0 -) -] -(1,2059:32583029,45706769:0,0,0 -g1,2059:32583029,45706769 -) -) -] -(1,2059:6630773,47279633:25952256,0,0 -h1,2059:6630773,47279633:25952256,0,0 -) -] -(1,2059:4262630,4025873:0,0,0 -[1,2059:-473656,4025873:0,0,0 -(1,2059:-473656,-710413:0,0,0 -(1,2059:-473656,-710413:0,0,0 -g1,2059:-473656,-710413 -) -g1,2059:-473656,-710413 -) -] -) -] -!25515 -}50 -Input:385:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:386:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:387:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!284 -{51 -[1,2158:4262630,47279633:28320399,43253760,0 -(1,2158:4262630,4025873:0,0,0 -[1,2158:-473656,4025873:0,0,0 -(1,2158:-473656,-710413:0,0,0 -(1,2158:-473656,-644877:0,0,0 -k1,2158:-473656,-644877:-65536 -) -(1,2158:-473656,4736287:0,0,0 -k1,2158:-473656,4736287:5209943 -) -g1,2158:-473656,-710413 -) -] -) -[1,2158:6630773,47279633:25952256,43253760,0 -[1,2158:6630773,4812305:25952256,786432,0 -(1,2158:6630773,4812305:25952256,505283,134348 -(1,2158:6630773,4812305:25952256,505283,134348 -g1,2158:3078558,4812305 -[1,2158:3078558,4812305:0,0,0 -(1,2158:3078558,2439708:0,1703936,0 -k1,2158:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,2158:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,2158:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,2158:3078558,4812305:0,0,0 -(1,2158:3078558,2439708:0,1703936,0 -g1,2158:29030814,2439708 -g1,2158:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,2158:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,2158:37855564,2439708:1179648,16384,0 -) -) -k1,2158:3078556,2439708:-34777008 -) -] -[1,2158:3078558,4812305:0,0,0 -(1,2158:3078558,49800853:0,16384,2228224 -k1,2158:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,2158:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,2158:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,2158:3078558,4812305:0,0,0 -(1,2158:3078558,49800853:0,16384,2228224 -g1,2158:29030814,49800853 -g1,2158:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,2158:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,2158:37855564,49800853:1179648,16384,0 -) -) -k1,2158:3078556,49800853:-34777008 -) -] -g1,2158:6630773,4812305 -k1,2158:19515153,4812305:12087462 -g1,2158:20901894,4812305 -g1,2158:21550700,4812305 -g1,2158:24864855,4812305 -g1,2158:27600327,4812305 -g1,2158:29010006,4812305 -) -) -] -[1,2158:6630773,45706769:25952256,40108032,0 -(1,2158:6630773,45706769:25952256,40108032,0 -(1,2158:6630773,45706769:0,0,0 -g1,2158:6630773,45706769 -) -[1,2158:6630773,45706769:25952256,40108032,0 -(1,2059:6630773,6254097:25952256,513147,126483 -k1,2058:7782159,6254097:197837 -k1,2058:9316930,6254097:197837 -k1,2058:10989981,6254097:197836 -k1,2058:11543678,6254097:197837 -k1,2058:13719392,6254097:197837 -k1,2058:14864880,6254097:197837 -k1,2058:16514339,6254097:197837 -k1,2058:17371467,6254097:197836 -k1,2058:17925164,6254097:197837 -k1,2058:19057544,6254097:197837 -k1,2058:19914673,6254097:197837 -k1,2058:22874853,6254097:197837 -k1,2058:25856004,6254097:197837 -k1,2058:27245285,6254097:197836 -k1,2058:28973388,6254097:197837 -k1,2058:29822653,6254097:197837 -k1,2058:32583029,6254097:0 -) -(1,2059:6630773,7095585:25952256,505283,134348 -k1,2058:8674186,7095585:230687 -k1,2058:11839574,7095585:230686 -k1,2058:12938613,7095585:230687 -k1,2058:14657623,7095585:230687 -k1,2058:15649837,7095585:230686 -k1,2058:17615917,7095585:230687 -k1,2058:18202463,7095585:230686 -k1,2058:20083347,7095585:230687 -k1,2058:23302476,7095585:230687 -k1,2058:26368249,7095585:230686 -k1,2058:29437956,7095585:230687 -k1,2058:32583029,7095585:0 -) -(1,2059:6630773,7937073:25952256,513147,126483 -g1,2058:7516164,7937073 -g1,2058:11414245,7937073 -g1,2058:14366641,7937073 -g1,2058:15327398,7937073 -k1,2059:32583029,7937073:13019384 -g1,2059:32583029,7937073 -) -v1,2061:6630773,9072015:0,393216,0 -(1,2108:6630773,25077884:25952256,16399085,196608 -g1,2108:6630773,25077884 -g1,2108:6630773,25077884 -g1,2108:6434165,25077884 -(1,2108:6434165,25077884:0,16399085,196608 -r1,2158:32779637,25077884:26345472,16595693,196608 -k1,2108:6434165,25077884:-26345472 -) -(1,2108:6434165,25077884:26345472,16399085,196608 -[1,2108:6630773,25077884:25952256,16202477,0 -(1,2063:6630773,9285925:25952256,410518,107478 -(1,2062:6630773,9285925:0,0,0 -g1,2062:6630773,9285925 -g1,2062:6630773,9285925 -g1,2062:6303093,9285925 -(1,2062:6303093,9285925:0,0,0 -) -g1,2062:6630773,9285925 -) -g1,2063:8843793,9285925 -g1,2063:9792231,9285925 -g1,2063:13269835,9285925 -g1,2063:15799001,9285925 -g1,2063:18960458,9285925 -g1,2063:21805770,9285925 -h1,2063:25599518,9285925:0,0,0 -k1,2063:32583029,9285925:6983511 -g1,2063:32583029,9285925 -) -(1,2064:6630773,9952103:25952256,404226,101187 -h1,2064:6630773,9952103:0,0,0 -g1,2064:8843793,9952103 -g1,2064:9792231,9952103 -g1,2064:13269835,9952103 -g1,2064:15799001,9952103 -g1,2064:18328167,9952103 -h1,2064:21489624,9952103:0,0,0 -k1,2064:32583029,9952103:11093405 -g1,2064:32583029,9952103 -) -(1,2065:6630773,10618281:25952256,404226,101187 -h1,2065:6630773,10618281:0,0,0 -g1,2065:8527647,10618281 -g1,2065:9476085,10618281 -g1,2065:12637543,10618281 -g1,2065:15799000,10618281 -h1,2065:18644311,10618281:0,0,0 -k1,2065:32583029,10618281:13938718 -g1,2065:32583029,10618281 -) -(1,2066:6630773,11284459:25952256,404226,107478 -h1,2066:6630773,11284459:0,0,0 -g1,2066:9476084,11284459 -g1,2066:10424522,11284459 -g1,2066:13902126,11284459 -g1,2066:17063583,11284459 -g1,2066:19908895,11284459 -g1,2066:23070352,11284459 -h1,2066:25915663,11284459:0,0,0 -k1,2066:32583029,11284459:6667366 -g1,2066:32583029,11284459 -) -(1,2067:6630773,11950637:25952256,410518,107478 -h1,2067:6630773,11950637:0,0,0 -g1,2067:12321396,11950637 -h1,2067:15166707,11950637:0,0,0 -k1,2067:32583029,11950637:17416322 -g1,2067:32583029,11950637 -) -(1,2071:6630773,12682351:25952256,404226,107478 -(1,2069:6630773,12682351:0,0,0 -g1,2069:6630773,12682351 -g1,2069:6630773,12682351 -g1,2069:6303093,12682351 -(1,2069:6303093,12682351:0,0,0 -) -g1,2069:6630773,12682351 -) -g1,2071:7579210,12682351 -g1,2071:8843793,12682351 -g1,2071:11372959,12682351 -g1,2071:11689105,12682351 -h1,2071:14218270,12682351:0,0,0 -k1,2071:32583030,12682351:18364760 -g1,2071:32583030,12682351 -) -(1,2073:6630773,14003889:25952256,404226,107478 -(1,2072:6630773,14003889:0,0,0 -g1,2072:6630773,14003889 -g1,2072:6630773,14003889 -g1,2072:6303093,14003889 -(1,2072:6303093,14003889:0,0,0 -) -g1,2072:6630773,14003889 -) -k1,2073:6630773,14003889:0 -g1,2073:12321396,14003889 -h1,2073:15166707,14003889:0,0,0 -k1,2073:32583029,14003889:17416322 -g1,2073:32583029,14003889 -) -(1,2077:6630773,14735603:25952256,404226,76021 -(1,2075:6630773,14735603:0,0,0 -g1,2075:6630773,14735603 -g1,2075:6630773,14735603 -g1,2075:6303093,14735603 -(1,2075:6303093,14735603:0,0,0 -) -g1,2075:6630773,14735603 -) -g1,2077:7579210,14735603 -g1,2077:8843793,14735603 -h1,2077:11056813,14735603:0,0,0 -k1,2077:32583029,14735603:21526216 -g1,2077:32583029,14735603 -) -(1,2079:6630773,16057141:25952256,404226,107478 -(1,2078:6630773,16057141:0,0,0 -g1,2078:6630773,16057141 -g1,2078:6630773,16057141 -g1,2078:6303093,16057141 -(1,2078:6303093,16057141:0,0,0 -) -g1,2078:6630773,16057141 -) -k1,2079:6630773,16057141:0 -g1,2079:12005250,16057141 -h1,2079:14850561,16057141:0,0,0 -k1,2079:32583029,16057141:17732468 -g1,2079:32583029,16057141 -) -(1,2083:6630773,16788855:25952256,404226,76021 -(1,2081:6630773,16788855:0,0,0 -g1,2081:6630773,16788855 -g1,2081:6630773,16788855 -g1,2081:6303093,16788855 -(1,2081:6303093,16788855:0,0,0 -) -g1,2081:6630773,16788855 -) -g1,2083:7579210,16788855 -g1,2083:8843793,16788855 -g1,2083:11689104,16788855 -h1,2083:14218269,16788855:0,0,0 -k1,2083:32583029,16788855:18364760 -g1,2083:32583029,16788855 -) -(1,2085:6630773,18110393:25952256,404226,101187 -(1,2084:6630773,18110393:0,0,0 -g1,2084:6630773,18110393 -g1,2084:6630773,18110393 -g1,2084:6303093,18110393 -(1,2084:6303093,18110393:0,0,0 -) -g1,2084:6630773,18110393 -) -g1,2085:9159939,18110393 -g1,2085:10740668,18110393 -h1,2085:12321396,18110393:0,0,0 -k1,2085:32583028,18110393:20261632 -g1,2085:32583028,18110393 -) -(1,2089:6630773,18842107:25952256,404226,76021 -(1,2087:6630773,18842107:0,0,0 -g1,2087:6630773,18842107 -g1,2087:6630773,18842107 -g1,2087:6303093,18842107 -(1,2087:6303093,18842107:0,0,0 -) -g1,2087:6630773,18842107 -) -g1,2089:7579210,18842107 -g1,2089:8843793,18842107 -h1,2089:10424521,18842107:0,0,0 -k1,2089:32583029,18842107:22158508 -g1,2089:32583029,18842107 -) -(1,2091:6630773,20163645:25952256,410518,9436 -(1,2090:6630773,20163645:0,0,0 -g1,2090:6630773,20163645 -g1,2090:6630773,20163645 -g1,2090:6303093,20163645 -(1,2090:6303093,20163645:0,0,0 -) -g1,2090:6630773,20163645 -) -g1,2091:9159939,20163645 -g1,2091:10740668,20163645 -h1,2091:12637542,20163645:0,0,0 -k1,2091:32583030,20163645:19945488 -g1,2091:32583030,20163645 -) -(1,2095:6630773,20895359:25952256,404226,76021 -(1,2093:6630773,20895359:0,0,0 -g1,2093:6630773,20895359 -g1,2093:6630773,20895359 -g1,2093:6303093,20895359 -(1,2093:6303093,20895359:0,0,0 -) -g1,2093:6630773,20895359 -) -g1,2095:7579210,20895359 -g1,2095:8843793,20895359 -h1,2095:10108376,20895359:0,0,0 -k1,2095:32583028,20895359:22474652 -g1,2095:32583028,20895359 -) -(1,2097:6630773,22216897:25952256,404226,107478 -(1,2096:6630773,22216897:0,0,0 -g1,2096:6630773,22216897 -g1,2096:6630773,22216897 -g1,2096:6303093,22216897 -(1,2096:6303093,22216897:0,0,0 -) -g1,2096:6630773,22216897 -) -g1,2097:8527647,22216897 -g1,2097:10108376,22216897 -h1,2097:12637541,22216897:0,0,0 -k1,2097:32583029,22216897:19945488 -g1,2097:32583029,22216897 -) -(1,2101:6630773,22948611:25952256,404226,76021 -(1,2099:6630773,22948611:0,0,0 -g1,2099:6630773,22948611 -g1,2099:6630773,22948611 -g1,2099:6303093,22948611 -(1,2099:6303093,22948611:0,0,0 -) -g1,2099:6630773,22948611 -) -g1,2101:7579210,22948611 -g1,2101:8843793,22948611 -g1,2101:10740667,22948611 -g1,2101:11056813,22948611 -g1,2101:12637542,22948611 -g1,2101:12953688,22948611 -h1,2101:14218271,22948611:0,0,0 -k1,2101:32583029,22948611:18364758 -g1,2101:32583029,22948611 -) -(1,2103:6630773,24270149:25952256,410518,107478 -(1,2102:6630773,24270149:0,0,0 -g1,2102:6630773,24270149 -g1,2102:6630773,24270149 -g1,2102:6303093,24270149 -(1,2102:6303093,24270149:0,0,0 -) -g1,2102:6630773,24270149 -) -k1,2103:6630773,24270149:0 -g1,2103:13585979,24270149 -g1,2103:16115145,24270149 -h1,2103:18960456,24270149:0,0,0 -k1,2103:32583029,24270149:13622573 -g1,2103:32583029,24270149 -) -(1,2107:6630773,25001863:25952256,404226,76021 -(1,2105:6630773,25001863:0,0,0 -g1,2105:6630773,25001863 -g1,2105:6630773,25001863 -g1,2105:6303093,25001863 -(1,2105:6303093,25001863:0,0,0 -) -g1,2105:6630773,25001863 -) -g1,2107:7579210,25001863 -g1,2107:8843793,25001863 -g1,2107:11056813,25001863 -g1,2107:11372959,25001863 -g1,2107:11689105,25001863 -g1,2107:12005251,25001863 -g1,2107:14218271,25001863 -g1,2107:14534417,25001863 -g1,2107:14850563,25001863 -g1,2107:15166709,25001863 -g1,2107:18328166,25001863 -h1,2107:20225040,25001863:0,0,0 -k1,2107:32583029,25001863:12357989 -g1,2107:32583029,25001863 -) -] -) -g1,2108:32583029,25077884 -g1,2108:6630773,25077884 -g1,2108:6630773,25077884 -g1,2108:32583029,25077884 -g1,2108:32583029,25077884 -) -h1,2108:6630773,25274492:0,0,0 -(1,2112:6630773,26584743:25952256,505283,126483 -h1,2111:6630773,26584743:983040,0,0 -g1,2111:8855064,26584743 -g1,2111:13116870,26584743 -g1,2111:14184451,26584743 -g1,2111:15476165,26584743 -g1,2111:18253580,26584743 -g1,2111:21713225,26584743 -k1,2112:32583029,26584743:7704415 -g1,2112:32583029,26584743 -) -v1,2114:6630773,27719685:0,393216,0 -(1,2118:6630773,28028490:25952256,702021,196608 -g1,2118:6630773,28028490 -g1,2118:6630773,28028490 -g1,2118:6434165,28028490 -(1,2118:6434165,28028490:0,702021,196608 -r1,2158:32779637,28028490:26345472,898629,196608 -k1,2118:6434165,28028490:-26345472 -) -(1,2118:6434165,28028490:26345472,702021,196608 -[1,2118:6630773,28028490:25952256,505413,0 -(1,2116:6630773,27927303:25952256,404226,101187 -(1,2115:6630773,27927303:0,0,0 -g1,2115:6630773,27927303 -g1,2115:6630773,27927303 -g1,2115:6303093,27927303 -(1,2115:6303093,27927303:0,0,0 -) -g1,2115:6630773,27927303 -) -g1,2116:8843793,27927303 -g1,2116:9792231,27927303 -g1,2116:12005252,27927303 -g1,2116:13585981,27927303 -g1,2116:15166710,27927303 -h1,2116:16431293,27927303:0,0,0 -k1,2116:32583029,27927303:16151736 -g1,2116:32583029,27927303 -) -] -) -g1,2118:32583029,28028490 -g1,2118:6630773,28028490 -g1,2118:6630773,28028490 -g1,2118:32583029,28028490 -g1,2118:32583029,28028490 -) -h1,2118:6630773,28225098:0,0,0 -(1,2122:6630773,29535350:25952256,513147,134348 -h1,2121:6630773,29535350:983040,0,0 -k1,2121:8685462,29535350:242619 -k1,2121:10119527,29535350:242620 -k1,2121:10828107,29535350:242619 -k1,2121:11426586,29535350:242619 -k1,2121:13363966,29535350:242619 -k1,2121:15286929,29535350:242620 -k1,2121:17996323,29535350:242619 -k1,2121:18890370,29535350:242619 -k1,2121:19488849,29535350:242619 -k1,2121:20839683,29535350:242620 -k1,2121:21950654,29535350:242619 -k1,2121:23285758,29535350:242619 -k1,2121:26274991,29535350:242619 -(1,2121:26274991,29535350:0,452978,115847 -r1,2158:27688392,29535350:1413401,568825,115847 -k1,2121:26274991,29535350:-1413401 -) -(1,2121:26274991,29535350:1413401,452978,115847 -k1,2121:26274991,29535350:3277 -h1,2121:27685115,29535350:0,411205,112570 -) -k1,2121:27931012,29535350:242620 -k1,2121:28856516,29535350:242619 -k1,2121:29887533,29535350:242619 -k1,2121:32583029,29535350:0 -) -(1,2122:6630773,30376838:25952256,513147,134348 -k1,2121:10214687,30376838:278933 -(1,2121:10214687,30376838:0,452978,115847 -r1,2158:14441783,30376838:4227096,568825,115847 -k1,2121:10214687,30376838:-4227096 -) -(1,2121:10214687,30376838:4227096,452978,115847 -k1,2121:10214687,30376838:3277 -h1,2121:14438506,30376838:0,411205,112570 -) -k1,2121:14894387,30376838:278934 -k1,2121:15801155,30376838:278933 -k1,2121:17099174,30376838:278934 -k1,2121:19705290,30376838:278933 -k1,2121:20643516,30376838:278934 -k1,2121:22187294,30376838:278933 -k1,2121:25329495,30376838:278933 -k1,2121:26811670,30376838:278934 -k1,2121:27622100,30376838:278933 -k1,2121:30187585,30376838:278934 -$1,2121:30187585,30376838 -k1,2121:30978001,30376838:327732 -k1,2121:31891625,30376838:327732 -$1,2121:32409359,30376838 -k1,2121:32583029,30376838:0 -) -(1,2122:6630773,31218326:25952256,505283,126483 -k1,2121:8770045,31218326:220378 -$1,2121:8770045,31218326 -$1,2121:9287779,31218326 -k1,2121:9508157,31218326:220378 -k1,2121:10260032,31218326:220378 -k1,2121:10836270,31218326:220378 -k1,2121:11991191,31218326:220378 -k1,2121:13403014,31218326:220378 -$1,2121:13403014,31218326 -$1,2121:13865698,31218326 -k1,2121:14086076,31218326:220378 -k1,2121:14662314,31218326:220378 -k1,2121:17679769,31218326:220378 -k1,2121:19096834,31218326:220378 -k1,2121:21558543,31218326:220378 -k1,2121:24965281,31218326:220378 -k1,2121:27176643,31218326:220378 -k1,2121:28681527,31218326:220378 -k1,2121:29920990,31218326:220378 -(1,2121:29920990,31218326:0,452978,115847 -r1,2158:31334391,31218326:1413401,568825,115847 -k1,2121:29920990,31218326:-1413401 -) -(1,2121:29920990,31218326:1413401,452978,115847 -k1,2121:29920990,31218326:3277 -h1,2121:31331114,31218326:0,411205,112570 -) -k1,2121:31554769,31218326:220378 -k1,2122:32583029,31218326:0 -) -(1,2122:6630773,32059814:25952256,513147,134348 -g1,2121:8761348,32059814 -g1,2121:9492074,32059814 -g1,2121:13028396,32059814 -g1,2121:14036995,32059814 -g1,2121:15024622,32059814 -g1,2121:19629837,32059814 -g1,2121:21193526,32059814 -g1,2121:24208837,32059814 -g1,2121:27408960,32059814 -g1,2121:27964049,32059814 -g1,2121:30232905,32059814 -k1,2122:32583029,32059814:198577 -g1,2122:32583029,32059814 -) -v1,2124:6630773,33194756:0,393216,0 -(1,2143:6630773,38316613:25952256,5515073,196608 -g1,2143:6630773,38316613 -g1,2143:6630773,38316613 -g1,2143:6434165,38316613 -(1,2143:6434165,38316613:0,5515073,196608 -r1,2158:32779637,38316613:26345472,5711681,196608 -k1,2143:6434165,38316613:-26345472 -) -(1,2143:6434165,38316613:26345472,5515073,196608 -[1,2143:6630773,38316613:25952256,5318465,0 -(1,2126:6630773,33402374:25952256,404226,101187 -(1,2125:6630773,33402374:0,0,0 -g1,2125:6630773,33402374 -g1,2125:6630773,33402374 -g1,2125:6303093,33402374 -(1,2125:6303093,33402374:0,0,0 -) -g1,2125:6630773,33402374 -) -k1,2126:6630773,33402374:0 -g1,2126:11689105,33402374 -h1,2126:13902125,33402374:0,0,0 -k1,2126:32583029,33402374:18680904 -g1,2126:32583029,33402374 -) -(1,2130:6630773,34134088:25952256,404226,76021 -(1,2128:6630773,34134088:0,0,0 -g1,2128:6630773,34134088 -g1,2128:6630773,34134088 -g1,2128:6303093,34134088 -(1,2128:6303093,34134088:0,0,0 -) -g1,2128:6630773,34134088 -) -g1,2130:7579210,34134088 -g1,2130:8843793,34134088 -h1,2130:10108376,34134088:0,0,0 -k1,2130:32583028,34134088:22474652 -g1,2130:32583028,34134088 -) -(1,2132:6630773,35455626:25952256,404226,101187 -(1,2131:6630773,35455626:0,0,0 -g1,2131:6630773,35455626 -g1,2131:6630773,35455626 -g1,2131:6303093,35455626 -(1,2131:6303093,35455626:0,0,0 -) -g1,2131:6630773,35455626 -) -g1,2132:7895356,35455626 -g1,2132:9476085,35455626 -h1,2132:11372959,35455626:0,0,0 -k1,2132:32583029,35455626:21210070 -g1,2132:32583029,35455626 -) -(1,2136:6630773,36187340:25952256,404226,76021 -(1,2134:6630773,36187340:0,0,0 -g1,2134:6630773,36187340 -g1,2134:6630773,36187340 -g1,2134:6303093,36187340 -(1,2134:6303093,36187340:0,0,0 -) -g1,2134:6630773,36187340 -) -g1,2136:7579210,36187340 -g1,2136:8843793,36187340 -h1,2136:10108376,36187340:0,0,0 -k1,2136:32583028,36187340:22474652 -g1,2136:32583028,36187340 -) -(1,2138:6630773,37508878:25952256,404226,101187 -(1,2137:6630773,37508878:0,0,0 -g1,2137:6630773,37508878 -g1,2137:6630773,37508878 -g1,2137:6303093,37508878 -(1,2137:6303093,37508878:0,0,0 -) -g1,2137:6630773,37508878 -) -k1,2138:6630773,37508878:0 -g1,2138:8843794,37508878 -g1,2138:10424523,37508878 -g1,2138:12005252,37508878 -g1,2138:13585981,37508878 -h1,2138:15482855,37508878:0,0,0 -k1,2138:32583029,37508878:17100174 -g1,2138:32583029,37508878 -) -(1,2142:6630773,38240592:25952256,404226,76021 -(1,2140:6630773,38240592:0,0,0 -g1,2140:6630773,38240592 -g1,2140:6630773,38240592 -g1,2140:6303093,38240592 -(1,2140:6303093,38240592:0,0,0 -) -g1,2140:6630773,38240592 -) -g1,2142:7579210,38240592 -g1,2142:8843793,38240592 -g1,2142:9159939,38240592 -g1,2142:10740668,38240592 -g1,2142:11056814,38240592 -g1,2142:12637543,38240592 -h1,2142:14218271,38240592:0,0,0 -k1,2142:32583029,38240592:18364758 -g1,2142:32583029,38240592 -) -] -) -g1,2143:32583029,38316613 -g1,2143:6630773,38316613 -g1,2143:6630773,38316613 -g1,2143:32583029,38316613 -g1,2143:32583029,38316613 -) -h1,2143:6630773,38513221:0,0,0 -v1,2147:6630773,40292236:0,393216,0 -(1,2158:6630773,45116945:25952256,5217925,589824 -g1,2158:6630773,45116945 -(1,2158:6630773,45116945:25952256,5217925,589824 -(1,2158:6630773,45706769:25952256,5807749,0 -[1,2158:6630773,45706769:25952256,5807749,0 -(1,2158:6630773,45706769:25952256,5781535,0 -r1,2158:6656987,45706769:26214,5781535,0 -[1,2158:6656987,45706769:25899828,5781535,0 -(1,2158:6656987,45116945:25899828,4601887,0 -[1,2158:7246811,45116945:24720180,4601887,0 -(1,2149:7246811,41676943:24720180,1161885,196608 -(1,2147:7246811,41676943:0,1161885,196608 -r1,2158:8794447,41676943:1547636,1358493,196608 -k1,2147:7246811,41676943:-1547636 -) -(1,2147:7246811,41676943:1547636,1161885,196608 -) -k1,2147:8983458,41676943:189011 -k1,2147:10751888,41676943:189012 -k1,2147:11556937,41676943:189011 -k1,2147:13402699,41676943:189012 -k1,2147:14876216,41676943:189011 -k1,2147:17975682,41676943:189012 -k1,2147:18696190,41676943:189011 -k1,2147:19655905,41676943:189012 -k1,2147:24120485,41676943:189011 -k1,2147:25582862,41676943:189012 -k1,2147:28892697,41676943:189011 -k1,2147:31966991,41676943:0 -) -(1,2149:7246811,42444370:24720180,505283,134348 -k1,2147:9622894,42444370:216672 -k1,2147:11278081,42444370:216672 -k1,2147:12691440,42444370:216672 -k1,2147:13941616,42444370:216673 -k1,2147:17230616,42444370:216672 -k1,2147:17978785,42444370:216672 -k1,2147:21785519,42444370:216672 -k1,2147:22688353,42444370:216672 -k1,2147:23260885,42444370:216672 -k1,2147:24585772,42444370:216673 -k1,2147:26491962,42444370:216672 -k1,2147:27727719,42444370:216672 -k1,2147:28894663,42444370:216672 -k1,2147:31966991,42444370:0 -) -(1,2149:7246811,43110548:24720180,513147,126483 -k1,2147:8024302,43110548:245994 -k1,2147:11860358,43110548:245994 -k1,2147:12792514,43110548:245994 -k1,2147:13394368,43110548:245994 -k1,2147:15618239,43110548:245994 -k1,2147:16523525,43110548:245994 -k1,2147:18780164,43110548:245994 -k1,2147:19677586,43110548:245994 -k1,2147:21115025,43110548:245994 -k1,2147:22308670,43110548:245994 -k1,2147:25638788,43110548:245994 -k1,2147:26512617,43110548:245994 -k1,2147:28460581,43110548:245994 -k1,2147:30835184,43110548:245994 -k1,2147:31966991,43110548:0 -) -(1,2149:7246811,43776726:24720180,505283,126483 -k1,2147:10427180,43776726:224040 -k1,2147:13274625,43776726:224039 -k1,2147:14114703,43776726:224040 -k1,2147:15357827,43776726:224039 -k1,2147:16532139,43776726:224040 -k1,2147:17888640,43776726:224039 -k1,2147:18860446,43776726:224040 -k1,2147:21717067,43776726:224040 -k1,2147:23630624,43776726:224039 -k1,2147:24873749,43776726:224040 -k1,2147:26131291,43776726:224039 -k1,2147:26886828,43776726:224040 -k1,2147:30700929,43776726:224039 -k1,2147:31611131,43776726:224040 -k1,2147:31966991,43776726:0 -) -(1,2149:7246811,44442904:24720180,513147,134348 -k1,2147:8429786,44442904:248432 -k1,2147:9337510,44442904:248432 -k1,2147:11783364,44442904:248432 -k1,2147:14216110,44442904:248431 -k1,2147:15661229,44442904:248432 -k1,2147:18688388,44442904:248432 -k1,2147:21006447,44442904:248432 -k1,2147:23232756,44442904:248432 -k1,2147:24582193,44442904:248432 -k1,2147:25849709,44442904:248431 -k1,2147:27751614,44442904:248432 -k1,2147:30013312,44442904:248432 -k1,2147:30947906,44442904:248432 -k1,2147:31966991,44442904:0 -) -(1,2149:7246811,45109082:24720180,505283,7863 -g1,2147:8569982,45109082 -k1,2149:31966990,45109082:23397008 -g1,2149:31966990,45109082 -) -] -) -] -r1,2158:32583029,45706769:26214,5781535,0 -) -] -) -) -g1,2158:32583029,45116945 -) -] -(1,2158:32583029,45706769:0,0,0 -g1,2158:32583029,45706769 -) -) -] -(1,2158:6630773,47279633:25952256,0,0 -h1,2158:6630773,47279633:25952256,0,0 -) -] -(1,2158:4262630,4025873:0,0,0 -[1,2158:-473656,4025873:0,0,0 -(1,2158:-473656,-710413:0,0,0 -(1,2158:-473656,-710413:0,0,0 -g1,2158:-473656,-710413 -) -g1,2158:-473656,-710413 -) -] -) -] -!22472 -}51 -Input:388:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:389:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:390:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:391:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:392:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:393:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:394:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:395:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:396:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:397:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:398:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:399:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:400:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:401:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:402:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:403:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:404:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:405:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1649 -{52 -[1,2244:4262630,47279633:28320399,43253760,0 -(1,2244:4262630,4025873:0,0,0 -[1,2244:-473656,4025873:0,0,0 -(1,2244:-473656,-710413:0,0,0 -(1,2244:-473656,-644877:0,0,0 -k1,2244:-473656,-644877:-65536 -) -(1,2244:-473656,4736287:0,0,0 -k1,2244:-473656,4736287:5209943 -) -g1,2244:-473656,-710413 -) -] -) -[1,2244:6630773,47279633:25952256,43253760,0 -[1,2244:6630773,4812305:25952256,786432,0 -(1,2244:6630773,4812305:25952256,505283,126483 -(1,2244:6630773,4812305:25952256,505283,126483 -g1,2244:3078558,4812305 -[1,2244:3078558,4812305:0,0,0 -(1,2244:3078558,2439708:0,1703936,0 -k1,2244:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,2244:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,2244:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,2244:3078558,4812305:0,0,0 -(1,2244:3078558,2439708:0,1703936,0 -g1,2244:29030814,2439708 -g1,2244:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,2244:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,2244:37855564,2439708:1179648,16384,0 -) -) -k1,2244:3078556,2439708:-34777008 -) -] -[1,2244:3078558,4812305:0,0,0 -(1,2244:3078558,49800853:0,16384,2228224 -k1,2244:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,2244:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,2244:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,2244:3078558,4812305:0,0,0 -(1,2244:3078558,49800853:0,16384,2228224 -g1,2244:29030814,49800853 -g1,2244:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,2244:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,2244:37855564,49800853:1179648,16384,0 -) -) -k1,2244:3078556,49800853:-34777008 -) -] -g1,2244:6630773,4812305 -g1,2244:6630773,4812305 -g1,2244:8050282,4812305 -g1,2244:9459961,4812305 -g1,2244:10519678,4812305 -g1,2244:14021266,4812305 -k1,2244:31786110,4812305:17764844 -) -) -] -[1,2244:6630773,45706769:25952256,40108032,0 -(1,2244:6630773,45706769:25952256,40108032,0 -(1,2244:6630773,45706769:0,0,0 -g1,2244:6630773,45706769 -) -[1,2244:6630773,45706769:25952256,40108032,0 -v1,2158:6630773,6254097:0,393216,0 -(1,2158:6630773,8580170:25952256,2719289,616038 -g1,2158:6630773,8580170 -(1,2158:6630773,8580170:25952256,2719289,616038 -(1,2158:6630773,9196208:25952256,3335327,0 -[1,2158:6630773,9196208:25952256,3335327,0 -(1,2158:6630773,9169994:25952256,3309113,0 -r1,2244:6656987,9169994:26214,3309113,0 -[1,2158:6656987,9169994:25899828,3309113,0 -(1,2158:6656987,8580170:25899828,2129465,0 -[1,2158:7246811,8580170:24720180,2129465,0 -v1,2149:7246811,6843921:0,393216,0 -(1,2156:7246811,7859274:24720180,1408569,196608 -g1,2156:7246811,7859274 -g1,2156:7246811,7859274 -g1,2156:7050203,7859274 -(1,2156:7050203,7859274:0,1408569,196608 -r1,2244:32163599,7859274:25113396,1605177,196608 -k1,2156:7050203,7859274:-25113396 -) -(1,2156:7050203,7859274:25113396,1408569,196608 -[1,2156:7246811,7859274:24720180,1211961,0 -(1,2151:7246811,7051539:24720180,404226,101187 -(1,2150:7246811,7051539:0,0,0 -g1,2150:7246811,7051539 -g1,2150:7246811,7051539 -g1,2150:6919131,7051539 -(1,2150:6919131,7051539:0,0,0 -) -g1,2150:7246811,7051539 -) -g1,2151:9459831,7051539 -g1,2151:11040560,7051539 -h1,2151:11988997,7051539:0,0,0 -k1,2151:31966991,7051539:19977994 -g1,2151:31966991,7051539 -) -(1,2155:7246811,7783253:24720180,404226,76021 -(1,2153:7246811,7783253:0,0,0 -g1,2153:7246811,7783253 -g1,2153:7246811,7783253 -g1,2153:6919131,7783253 -(1,2153:6919131,7783253:0,0,0 -) -g1,2153:7246811,7783253 -) -g1,2155:8195248,7783253 -g1,2155:9459831,7783253 -g1,2155:9775977,7783253 -g1,2155:11356706,7783253 -g1,2155:13253580,7783253 -g1,2155:15150454,7783253 -h1,2155:16731182,7783253:0,0,0 -k1,2155:31966991,7783253:15235809 -g1,2155:31966991,7783253 -) -] -) -g1,2156:31966991,7859274 -g1,2156:7246811,7859274 -g1,2156:7246811,7859274 -g1,2156:31966991,7859274 -g1,2156:31966991,7859274 -) -h1,2156:7246811,8055882:0,0,0 -] -) -] -r1,2244:32583029,9169994:26214,3309113,0 -) -] -) -) -g1,2158:32583029,8580170 -) -h1,2158:6630773,9196208:0,0,0 -(1,2161:6630773,10560119:25952256,513147,134348 -h1,2160:6630773,10560119:983040,0,0 -k1,2160:9056809,10560119:246309 -k1,2160:12062838,10560119:246308 -k1,2160:12968439,10560119:246309 -k1,2160:16125201,10560119:246308 -k1,2160:16903007,10560119:246309 -$1,2160:16903007,10560119 -k1,2160:17633796,10560119:268105 -k1,2160:18487793,10560119:268105 -$1,2160:19005527,10560119 -k1,2160:19425506,10560119:246309 -k1,2160:20863259,10560119:246308 -k1,2160:23026496,10560119:246309 -k1,2160:23888842,10560119:246308 -k1,2160:24549946,10560119:246261 -k1,2160:25557783,10560119:246309 -k1,2160:28557914,10560119:246308 -k1,2160:29823308,10560119:246309 -k1,2160:32583029,10560119:0 -) -(1,2161:6630773,11401607:25952256,513147,126483 -g1,2160:9576616,11401607 -(1,2160:9576616,11401607:0,424981,115847 -r1,2244:9934882,11401607:358266,540828,115847 -k1,2160:9576616,11401607:-358266 -) -(1,2160:9576616,11401607:358266,424981,115847 -k1,2160:9576616,11401607:3277 -h1,2160:9931605,11401607:0,411205,112570 -) -g1,2160:10134111,11401607 -g1,2160:10984768,11401607 -g1,2160:12203082,11401607 -g1,2160:14245183,11401607 -g1,2160:15103704,11401607 -g1,2160:16322018,11401607 -g1,2160:17712692,11401607 -g1,2160:19489373,11401607 -g1,2160:21082553,11401607 -(1,2160:21082553,11401607:0,452978,115847 -r1,2244:22495954,11401607:1413401,568825,115847 -k1,2160:21082553,11401607:-1413401 -) -(1,2160:21082553,11401607:1413401,452978,115847 -k1,2160:21082553,11401607:3277 -h1,2160:22492677,11401607:0,411205,112570 -) -g1,2160:22695183,11401607 -g1,2160:23577297,11401607 -g1,2160:26472022,11401607 -(1,2160:26472022,11401607:0,452978,115847 -r1,2244:30699118,11401607:4227096,568825,115847 -k1,2160:26472022,11401607:-4227096 -) -(1,2160:26472022,11401607:4227096,452978,115847 -k1,2160:26472022,11401607:3277 -h1,2160:30695841,11401607:0,411205,112570 -) -k1,2161:32583029,11401607:1710241 -g1,2161:32583029,11401607 -) -v1,2163:6630773,12590209:0,393216,0 -(1,2182:6630773,17712066:25952256,5515073,196608 -g1,2182:6630773,17712066 -g1,2182:6630773,17712066 -g1,2182:6434165,17712066 -(1,2182:6434165,17712066:0,5515073,196608 -r1,2244:32779637,17712066:26345472,5711681,196608 -k1,2182:6434165,17712066:-26345472 -) -(1,2182:6434165,17712066:26345472,5515073,196608 -[1,2182:6630773,17712066:25952256,5318465,0 -(1,2165:6630773,12797827:25952256,404226,101187 -(1,2164:6630773,12797827:0,0,0 -g1,2164:6630773,12797827 -g1,2164:6630773,12797827 -g1,2164:6303093,12797827 -(1,2164:6303093,12797827:0,0,0 -) -g1,2164:6630773,12797827 -) -k1,2165:6630773,12797827:0 -g1,2165:12005251,12797827 -h1,2165:14218271,12797827:0,0,0 -k1,2165:32583029,12797827:18364758 -g1,2165:32583029,12797827 -) -(1,2169:6630773,13529541:25952256,404226,76021 -(1,2167:6630773,13529541:0,0,0 -g1,2167:6630773,13529541 -g1,2167:6630773,13529541 -g1,2167:6303093,13529541 -(1,2167:6303093,13529541:0,0,0 -) -g1,2167:6630773,13529541 -) -g1,2169:7579210,13529541 -g1,2169:8843793,13529541 -h1,2169:10424521,13529541:0,0,0 -k1,2169:32583029,13529541:22158508 -g1,2169:32583029,13529541 -) -(1,2171:6630773,14851079:25952256,404226,101187 -(1,2170:6630773,14851079:0,0,0 -g1,2170:6630773,14851079 -g1,2170:6630773,14851079 -g1,2170:6303093,14851079 -(1,2170:6303093,14851079:0,0,0 -) -g1,2170:6630773,14851079 -) -g1,2171:8211502,14851079 -g1,2171:9792231,14851079 -h1,2171:11689105,14851079:0,0,0 -k1,2171:32583029,14851079:20893924 -g1,2171:32583029,14851079 -) -(1,2175:6630773,15582793:25952256,404226,76021 -(1,2173:6630773,15582793:0,0,0 -g1,2173:6630773,15582793 -g1,2173:6630773,15582793 -g1,2173:6303093,15582793 -(1,2173:6303093,15582793:0,0,0 -) -g1,2173:6630773,15582793 -) -g1,2175:7579210,15582793 -g1,2175:8843793,15582793 -h1,2175:10424521,15582793:0,0,0 -k1,2175:32583029,15582793:22158508 -g1,2175:32583029,15582793 -) -(1,2177:6630773,16904331:25952256,404226,101187 -(1,2176:6630773,16904331:0,0,0 -g1,2176:6630773,16904331 -g1,2176:6630773,16904331 -g1,2176:6303093,16904331 -(1,2176:6303093,16904331:0,0,0 -) -g1,2176:6630773,16904331 -) -k1,2177:6630773,16904331:0 -g1,2177:9159940,16904331 -g1,2177:10740669,16904331 -g1,2177:12321398,16904331 -g1,2177:13902127,16904331 -h1,2177:15799001,16904331:0,0,0 -k1,2177:32583029,16904331:16784028 -g1,2177:32583029,16904331 -) -(1,2181:6630773,17636045:25952256,404226,76021 -(1,2179:6630773,17636045:0,0,0 -g1,2179:6630773,17636045 -g1,2179:6630773,17636045 -g1,2179:6303093,17636045 -(1,2179:6303093,17636045:0,0,0 -) -g1,2179:6630773,17636045 -) -g1,2181:7579210,17636045 -g1,2181:8843793,17636045 -g1,2181:10740667,17636045 -g1,2181:12637541,17636045 -g1,2181:12953687,17636045 -h1,2181:14218270,17636045:0,0,0 -k1,2181:32583030,17636045:18364760 -g1,2181:32583030,17636045 -) -] -) -g1,2182:32583029,17712066 -g1,2182:6630773,17712066 -g1,2182:6630773,17712066 -g1,2182:32583029,17712066 -g1,2182:32583029,17712066 -) -h1,2182:6630773,17908674:0,0,0 -(1,2186:6630773,19272585:25952256,513147,134348 -h1,2185:6630773,19272585:983040,0,0 -k1,2185:10737209,19272585:160513 -k1,2185:13808175,19272585:160512 -k1,2185:14500185,19272585:160513 -k1,2185:15016558,19272585:160513 -k1,2185:16111613,19272585:160512 -k1,2185:19520090,19272585:160513 -k1,2185:20138700,19272585:160513 -k1,2185:20830710,19272585:160513 -k1,2185:22277038,19272585:160512 -k1,2185:23791525,19272585:160513 -k1,2185:25929259,19272585:160513 -k1,2185:27037422,19272585:160512 -k1,2185:28217020,19272585:160513 -k1,2185:32583029,19272585:0 -) -(1,2186:6630773,20114073:25952256,513147,134348 -k1,2185:7457704,20114073:159775 -(1,2185:7457704,20114073:0,459977,115847 -r1,2244:10629664,20114073:3171960,575824,115847 -k1,2185:7457704,20114073:-3171960 -) -(1,2185:7457704,20114073:3171960,459977,115847 -k1,2185:7457704,20114073:3277 -h1,2185:10626387,20114073:0,411205,112570 -) -k1,2185:10789439,20114073:159775 -k1,2185:14465876,20114073:159775 -k1,2185:15387179,20114073:159775 -k1,2185:18488209,20114073:159774 -k1,2185:21319231,20114073:159775 -k1,2185:23000752,20114073:159775 -k1,2185:24108178,20114073:159775 -k1,2185:27654854,20114073:159775 -k1,2185:30572384,20114073:159775 -k1,2185:32583029,20114073:0 -) -(1,2186:6630773,20955561:25952256,513147,126483 -k1,2185:7515931,20955561:225866 -k1,2185:8760882,20955561:225866 -k1,2185:10640220,20955561:225865 -(1,2185:10640220,20955561:0,452978,115847 -r1,2244:12053621,20955561:1413401,568825,115847 -k1,2185:10640220,20955561:-1413401 -) -(1,2185:10640220,20955561:1413401,452978,115847 -k1,2185:10640220,20955561:3277 -h1,2185:12050344,20955561:0,411205,112570 -) -k1,2185:12279487,20955561:225866 -k1,2185:14993755,20955561:225866 -k1,2185:15981149,20955561:225866 -k1,2185:18878261,20955561:225865 -(1,2185:18878261,20955561:0,452978,115847 -r1,2244:19236527,20955561:358266,568825,115847 -k1,2185:18878261,20955561:-358266 -) -(1,2185:18878261,20955561:358266,452978,115847 -k1,2185:18878261,20955561:3277 -h1,2185:19233250,20955561:0,411205,112570 -) -k1,2185:19462393,20955561:225866 -k1,2185:22938845,20955561:225866 -k1,2185:23652272,20955561:225839 -k1,2185:25855359,20955561:225866 -k1,2185:28859295,20955561:225865 -k1,2185:29752317,20955561:225866 -(1,2185:29752317,20955561:0,452978,115847 -r1,2244:31165718,20955561:1413401,568825,115847 -k1,2185:29752317,20955561:-1413401 -) -(1,2185:29752317,20955561:1413401,452978,115847 -k1,2185:29752317,20955561:3277 -h1,2185:31162441,20955561:0,411205,112570 -) -k1,2185:31391584,20955561:225866 -k1,2186:32583029,20955561:0 -) -(1,2186:6630773,21797049:25952256,505283,126483 -(1,2185:6630773,21797049:0,452978,115847 -r1,2244:10857869,21797049:4227096,568825,115847 -k1,2185:6630773,21797049:-4227096 -) -(1,2185:6630773,21797049:4227096,452978,115847 -k1,2185:6630773,21797049:3277 -h1,2185:10854592,21797049:0,411205,112570 -) -g1,2185:11057098,21797049 -g1,2185:11787824,21797049 -g1,2185:13271559,21797049 -g1,2185:14850976,21797049 -g1,2185:16805259,21797049 -g1,2185:19015133,21797049 -(1,2185:19015133,21797049:0,414482,115847 -r1,2244:19725111,21797049:709978,530329,115847 -k1,2185:19015133,21797049:-709978 -) -(1,2185:19015133,21797049:709978,414482,115847 -k1,2185:19015133,21797049:3277 -h1,2185:19721834,21797049:0,411205,112570 -) -k1,2186:32583029,21797049:12684248 -g1,2186:32583029,21797049 -) -v1,2188:6630773,23160961:0,393216,0 -(1,2200:6630773,29983283:25952256,7215538,616038 -g1,2200:6630773,29983283 -(1,2200:6630773,29983283:25952256,7215538,616038 -(1,2200:6630773,30599321:25952256,7831576,0 -[1,2200:6630773,30599321:25952256,7831576,0 -(1,2200:6630773,30573107:25952256,7779148,0 -r1,2244:6656987,30573107:26214,7779148,0 -[1,2200:6656987,30573107:25899828,7779148,0 -(1,2200:6656987,29983283:25899828,6599500,0 -[1,2200:7246811,29983283:24720180,6599500,0 -(1,2189:7246811,24471157:24720180,1087374,134348 -k1,2188:8598278,24471157:141764 -k1,2188:9888888,24471157:141764 -k1,2188:12777265,24471157:141763 -(1,2188:12777265,24471157:0,452978,115847 -r1,2244:14190666,24471157:1413401,568825,115847 -k1,2188:12777265,24471157:-1413401 -) -(1,2188:12777265,24471157:1413401,452978,115847 -k1,2188:12777265,24471157:3277 -h1,2188:14187389,24471157:0,411205,112570 -) -k1,2188:14332430,24471157:141764 -k1,2188:15125622,24471157:141764 -k1,2188:16882193,24471157:141764 -k1,2188:18674154,24471157:141764 -k1,2188:21737513,24471157:141764 -k1,2188:22898361,24471157:141763 -k1,2188:26015460,24471157:141764 -k1,2188:30415098,24471157:141764 -k1,2188:31966991,24471157:0 -) -(1,2189:7246811,25312645:24720180,513147,134348 -g1,2188:8471023,25312645 -g1,2188:10948939,25312645 -h1,2188:11919527,25312645:0,0,0 -g1,2188:12118756,25312645 -g1,2188:13127355,25312645 -g1,2188:14824737,25312645 -h1,2188:15621655,25312645:0,0,0 -g1,2188:15820884,25312645 -g1,2188:16967764,25312645 -g1,2188:18186078,25312645 -g1,2188:21571667,25312645 -g1,2188:24406099,25312645 -(1,2188:24406099,25312645:0,452978,115847 -r1,2244:24764365,25312645:358266,568825,115847 -k1,2188:24406099,25312645:-358266 -) -(1,2188:24406099,25312645:358266,452978,115847 -k1,2188:24406099,25312645:3277 -h1,2188:24761088,25312645:0,411205,112570 -) -g1,2188:24963594,25312645 -g1,2188:26354268,25312645 -(1,2188:26354268,25312645:0,452978,115847 -r1,2244:27064246,25312645:709978,568825,115847 -k1,2188:26354268,25312645:-709978 -) -(1,2188:26354268,25312645:709978,452978,115847 -k1,2188:26354268,25312645:3277 -h1,2188:27060969,25312645:0,411205,112570 -) -g1,2188:27263475,25312645 -k1,2189:31966991,25312645:1452930 -g1,2189:31966991,25312645 -) -v1,2191:7246811,26503111:0,393216,0 -(1,2196:7246811,27452928:24720180,1343033,196608 -g1,2196:7246811,27452928 -g1,2196:7246811,27452928 -g1,2196:7050203,27452928 -(1,2196:7050203,27452928:0,1343033,196608 -r1,2244:32163599,27452928:25113396,1539641,196608 -k1,2196:7050203,27452928:-25113396 -) -(1,2196:7050203,27452928:25113396,1343033,196608 -[1,2196:7246811,27452928:24720180,1146425,0 -(1,2193:7246811,26710729:24720180,404226,82312 -(1,2192:7246811,26710729:0,0,0 -g1,2192:7246811,26710729 -g1,2192:7246811,26710729 -g1,2192:6919131,26710729 -(1,2192:6919131,26710729:0,0,0 -) -g1,2192:7246811,26710729 -) -g1,2193:7879103,26710729 -g1,2193:8827541,26710729 -g1,2193:11040562,26710729 -g1,2193:12621291,26710729 -h1,2193:13885874,26710729:0,0,0 -k1,2193:31966990,26710729:18081116 -g1,2193:31966990,26710729 -) -(1,2194:7246811,27376907:24720180,404226,76021 -h1,2194:7246811,27376907:0,0,0 -g1,2194:7879103,27376907 -g1,2194:8827540,27376907 -g1,2194:10092123,27376907 -g1,2194:10724415,27376907 -g1,2194:11356707,27376907 -g1,2194:12305144,27376907 -g1,2194:13569727,27376907 -g1,2194:14202019,27376907 -g1,2194:14834311,27376907 -g1,2194:15782748,27376907 -g1,2194:17047331,27376907 -g1,2194:17679623,27376907 -g1,2194:18311915,27376907 -g1,2194:19260352,27376907 -h1,2194:20208789,27376907:0,0,0 -k1,2194:31966991,27376907:11758202 -g1,2194:31966991,27376907 -) -] -) -g1,2196:31966991,27452928 -g1,2196:7246811,27452928 -g1,2196:7246811,27452928 -g1,2196:31966991,27452928 -g1,2196:31966991,27452928 -) -h1,2196:7246811,27649536:0,0,0 -(1,2200:7246811,29015312:24720180,513147,134348 -h1,2199:7246811,29015312:983040,0,0 -k1,2199:10990596,29015312:246129 -k1,2199:12255809,29015312:246128 -(1,2199:12255809,29015312:0,452978,122846 -r1,2244:14724346,29015312:2468537,575824,122846 -k1,2199:12255809,29015312:-2468537 -) -(1,2199:12255809,29015312:2468537,452978,122846 -k1,2199:12255809,29015312:3277 -h1,2199:14721069,29015312:0,411205,112570 -) -k1,2199:14970475,29015312:246129 -k1,2199:17524781,29015312:246128 -k1,2199:18430202,29015312:246129 -k1,2199:20689597,29015312:246129 -k1,2199:21334184,29015312:246128 -k1,2199:22847779,29015312:246129 -k1,2199:23449768,29015312:246129 -k1,2199:25673773,29015312:246128 -k1,2199:26579194,29015312:246129 -k1,2199:28838588,29015312:246128 -k1,2199:30415098,29015312:246129 -k1,2199:31966991,29015312:0 -) -(1,2200:7246811,29856800:24720180,513147,126483 -g1,2199:8471023,29856800 -g1,2199:10058305,29856800 -g1,2199:11205185,29856800 -g1,2199:14430211,29856800 -(1,2199:14430211,29856800:0,452978,115847 -r1,2244:16195324,29856800:1765113,568825,115847 -k1,2199:14430211,29856800:-1765113 -) -(1,2199:14430211,29856800:1765113,452978,115847 -k1,2199:14430211,29856800:3277 -h1,2199:16192047,29856800:0,411205,112570 -) -g1,2199:16394553,29856800 -g1,2199:17785227,29856800 -(1,2199:17785227,29856800:0,452978,115847 -r1,2244:19550340,29856800:1765113,568825,115847 -k1,2199:17785227,29856800:-1765113 -) -(1,2199:17785227,29856800:1765113,452978,115847 -k1,2199:17785227,29856800:3277 -h1,2199:19547063,29856800:0,411205,112570 -) -k1,2200:31966991,29856800:12242981 -g1,2200:31966991,29856800 -) -] -) -] -r1,2244:32583029,30573107:26214,7779148,0 -) -] -) -) -g1,2200:32583029,29983283 -) -h1,2200:6630773,30599321:0,0,0 -(1,2203:6630773,31963232:25952256,513147,126483 -h1,2202:6630773,31963232:983040,0,0 -k1,2202:9382158,31963232:289197 -(1,2202:9382158,31963232:0,452978,115847 -r1,2244:12202407,31963232:2820249,568825,115847 -k1,2202:9382158,31963232:-2820249 -) -(1,2202:9382158,31963232:2820249,452978,115847 -k1,2202:9382158,31963232:3277 -h1,2202:12199130,31963232:0,411205,112570 -) -k1,2202:12491605,31963232:289198 -k1,2202:13649154,31963232:289197 -k1,2202:16331071,31963232:289198 -k1,2202:16976128,31963232:289197 -k1,2202:19243202,31963232:289197 -k1,2202:20191692,31963232:289198 -k1,2202:23124611,31963232:289197 -k1,2202:26198434,31963232:289198 -k1,2202:28498276,31963232:289197 -k1,2202:30054939,31963232:289197 -k1,2202:30699997,31963232:289198 -k1,2202:31923737,31963232:289197 -k1,2202:32583029,31963232:0 -) -(1,2203:6630773,32804720:25952256,513147,134348 -k1,2202:9026687,32804720:198492 -k1,2202:11409494,32804720:198492 -k1,2202:12235822,32804720:198493 -k1,2202:13453399,32804720:198492 -k1,2202:15979074,32804720:198492 -k1,2202:16836858,32804720:198492 -k1,2202:18473865,32804720:198492 -k1,2202:19028217,32804720:198492 -k1,2202:21424788,32804720:198493 -k1,2202:23582806,32804720:198492 -k1,2202:26248073,32804720:198492 -k1,2202:27129450,32804720:198492 -k1,2202:28394213,32804720:198492 -k1,2202:29244134,32804720:198493 -k1,2202:29798486,32804720:198492 -k1,2202:31105192,32804720:198492 -k1,2203:32583029,32804720:0 -) -(1,2203:6630773,33646208:25952256,513147,134348 -g1,2202:10085831,33646208 -g1,2202:10901098,33646208 -g1,2202:11456187,33646208 -g1,2202:12763630,33646208 -g1,2202:15634106,33646208 -g1,2202:17861019,33646208 -g1,2202:18719540,33646208 -g1,2202:19937854,33646208 -g1,2202:21790556,33646208 -g1,2202:23949311,33646208 -g1,2202:24831425,33646208 -g1,2202:26710997,33646208 -g1,2202:27901786,33646208 -k1,2203:32583029,33646208:566237 -g1,2203:32583029,33646208 -) -v1,2205:6630773,34834809:0,393216,0 -(1,2218:6630773,37903414:25952256,3461821,196608 -g1,2218:6630773,37903414 -g1,2218:6630773,37903414 -g1,2218:6434165,37903414 -(1,2218:6434165,37903414:0,3461821,196608 -r1,2244:32779637,37903414:26345472,3658429,196608 -k1,2218:6434165,37903414:-26345472 -) -(1,2218:6434165,37903414:26345472,3461821,196608 -[1,2218:6630773,37903414:25952256,3265213,0 -(1,2207:6630773,35042427:25952256,404226,101187 -(1,2206:6630773,35042427:0,0,0 -g1,2206:6630773,35042427 -g1,2206:6630773,35042427 -g1,2206:6303093,35042427 -(1,2206:6303093,35042427:0,0,0 -) -g1,2206:6630773,35042427 -) -k1,2207:6630773,35042427:0 -h1,2207:11056812,35042427:0,0,0 -k1,2207:32583028,35042427:21526216 -g1,2207:32583028,35042427 -) -(1,2211:6630773,35774141:25952256,404226,76021 -(1,2209:6630773,35774141:0,0,0 -g1,2209:6630773,35774141 -g1,2209:6630773,35774141 -g1,2209:6303093,35774141 -(1,2209:6303093,35774141:0,0,0 -) -g1,2209:6630773,35774141 -) -g1,2211:7579210,35774141 -g1,2211:8843793,35774141 -g1,2211:10108376,35774141 -g1,2211:11372959,35774141 -h1,2211:12321396,35774141:0,0,0 -k1,2211:32583028,35774141:20261632 -g1,2211:32583028,35774141 -) -(1,2213:6630773,37095679:25952256,404226,101187 -(1,2212:6630773,37095679:0,0,0 -g1,2212:6630773,37095679 -g1,2212:6630773,37095679 -g1,2212:6303093,37095679 -(1,2212:6303093,37095679:0,0,0 -) -g1,2212:6630773,37095679 -) -k1,2213:6630773,37095679:0 -g1,2213:8843794,37095679 -g1,2213:10424523,37095679 -g1,2213:12005252,37095679 -g1,2213:13585981,37095679 -k1,2213:13585981,37095679:0 -h1,2213:18012020,37095679:0,0,0 -k1,2213:32583029,37095679:14571009 -g1,2213:32583029,37095679 -) -(1,2217:6630773,37827393:25952256,404226,76021 -(1,2215:6630773,37827393:0,0,0 -g1,2215:6630773,37827393 -g1,2215:6630773,37827393 -g1,2215:6303093,37827393 -(1,2215:6303093,37827393:0,0,0 -) -g1,2215:6630773,37827393 -) -g1,2217:7579210,37827393 -g1,2217:8843793,37827393 -g1,2217:9159939,37827393 -g1,2217:10740668,37827393 -g1,2217:11056814,37827393 -g1,2217:12637543,37827393 -h1,2217:14218271,37827393:0,0,0 -k1,2217:32583029,37827393:18364758 -g1,2217:32583029,37827393 -) -] -) -g1,2218:32583029,37903414 -g1,2218:6630773,37903414 -g1,2218:6630773,37903414 -g1,2218:32583029,37903414 -g1,2218:32583029,37903414 -) -h1,2218:6630773,38100022:0,0,0 -(1,2222:6630773,39463934:25952256,513147,134348 -h1,2221:6630773,39463934:983040,0,0 -k1,2221:8490292,39463934:248644 -k1,2221:9758020,39463934:248643 -k1,2221:12696262,39463934:248644 -k1,2221:14458131,39463934:248643 -k1,2221:15322813,39463934:248644 -k1,2221:17898640,39463934:248644 -k1,2221:18806575,39463934:248643 -k1,2221:20493734,39463934:248644 -k1,2221:21761462,39463934:248643 -k1,2221:22944649,39463934:248644 -k1,2221:25033544,39463934:248644 -k1,2221:28028801,39463934:248643 -k1,2221:28808942,39463934:248644 -$1,2221:28808942,39463934 -$1,2221:29377139,39463934 -k1,2221:29625782,39463934:248643 -k1,2221:31563944,39463934:248644 -k1,2221:32583029,39463934:0 -) -(1,2222:6630773,40305422:25952256,513147,134348 -k1,2221:10573497,40305422:155398 -k1,2221:13475508,40305422:155397 -k1,2221:14162403,40305422:155398 -$1,2221:14162403,40305422 -$1,2221:14730600,40305422 -k1,2221:15059668,40305422:155398 -k1,2221:15692822,40305422:155397 -k1,2221:16716572,40305422:155398 -k1,2221:18347185,40305422:155398 -k1,2221:19767427,40305422:155397 -$1,2221:19767427,40305422 -$1,2221:20285161,40305422 -k1,2221:20440559,40305422:155398 -k1,2221:21787402,40305422:155398 -$1,2221:21787402,40305422 -$1,2221:22235668,40305422 -k1,2221:22564735,40305422:155397 -k1,2221:24228772,40305422:155398 -k1,2221:26224421,40305422:155398 -k1,2221:26911315,40305422:155397 -k1,2221:28761474,40305422:155398 -k1,2221:29678399,40305422:155397 -$1,2221:29678399,40305422 -k1,2221:30245651,40305422:49518 -k1,2221:30863365,40305422:49517 -$1,2221:31311631,40305422 -k1,2221:32583029,40305422:0 -) -(1,2222:6630773,41146910:25952256,505283,126483 -k1,2221:7807978,41146910:158120 -k1,2221:9350218,41146910:158120 -k1,2221:11163123,41146910:158121 -k1,2221:14486632,41146910:158120 -(1,2221:14486632,41146910:0,452978,115847 -r1,2244:20120575,41146910:5633943,568825,115847 -k1,2221:14486632,41146910:-5633943 -) -(1,2221:14486632,41146910:5633943,452978,115847 -g1,2221:16951892,41146910 -g1,2221:18710451,41146910 -h1,2221:20117298,41146910:0,411205,112570 -) -k1,2221:20278695,41146910:158120 -k1,2221:20968312,41146910:158120 -k1,2221:21482293,41146910:158121 -k1,2221:24571838,41146910:158120 -k1,2221:26419476,41146910:158120 -(1,2221:26419476,41146910:0,414482,115847 -r1,2244:28536301,41146910:2116825,530329,115847 -k1,2221:26419476,41146910:-2116825 -) -(1,2221:26419476,41146910:2116825,414482,115847 -k1,2221:26419476,41146910:3277 -h1,2221:28533024,41146910:0,411205,112570 -) -k1,2221:28694421,41146910:158120 -k1,2221:29384039,41146910:158121 -k1,2221:29898019,41146910:158120 -k1,2222:32583029,41146910:0 -k1,2222:32583029,41146910:0 -) -v1,2224:6630773,42335511:0,393216,0 -(1,2231:6630773,43350864:25952256,1408569,196608 -g1,2231:6630773,43350864 -g1,2231:6630773,43350864 -g1,2231:6434165,43350864 -(1,2231:6434165,43350864:0,1408569,196608 -r1,2244:32779637,43350864:26345472,1605177,196608 -k1,2231:6434165,43350864:-26345472 -) -(1,2231:6434165,43350864:26345472,1408569,196608 -[1,2231:6630773,43350864:25952256,1211961,0 -(1,2226:6630773,42543129:25952256,404226,101187 -(1,2225:6630773,42543129:0,0,0 -g1,2225:6630773,42543129 -g1,2225:6630773,42543129 -g1,2225:6303093,42543129 -(1,2225:6303093,42543129:0,0,0 -) -g1,2225:6630773,42543129 -) -k1,2226:6630773,42543129:0 -g1,2226:10740668,42543129 -g1,2226:12321397,42543129 -g1,2226:14218272,42543129 -h1,2226:16431292,42543129:0,0,0 -k1,2226:32583029,42543129:16151737 -g1,2226:32583029,42543129 -) -(1,2230:6630773,43274843:25952256,404226,76021 -(1,2228:6630773,43274843:0,0,0 -g1,2228:6630773,43274843 -g1,2228:6630773,43274843 -g1,2228:6303093,43274843 -(1,2228:6303093,43274843:0,0,0 -) -g1,2228:6630773,43274843 -) -g1,2230:7579210,43274843 -g1,2230:8843793,43274843 -g1,2230:10108376,43274843 -g1,2230:11372959,43274843 -g1,2230:12637542,43274843 -h1,2230:13585979,43274843:0,0,0 -k1,2230:32583029,43274843:18997050 -g1,2230:32583029,43274843 -) -] -) -g1,2231:32583029,43350864 -g1,2231:6630773,43350864 -g1,2231:6630773,43350864 -g1,2231:32583029,43350864 -g1,2231:32583029,43350864 -) -h1,2231:6630773,43547472:0,0,0 -(1,2235:6630773,44911384:25952256,513147,134348 -h1,2234:6630773,44911384:983040,0,0 -g1,2234:8290799,44911384 -g1,2234:9358380,44911384 -g1,2234:11032824,44911384 -g1,2234:12496898,44911384 -$1,2234:12496898,44911384 -$1,2234:13014632,44911384 -g1,2234:13213861,44911384 -g1,2234:14604535,44911384 -$1,2234:14604535,44911384 -$1,2234:15052801,44911384 -g1,2234:15425700,44911384 -g1,2234:17133568,44911384 -g1,2234:21120123,44911384 -g1,2234:21850849,44911384 -g1,2234:23744839,44911384 -g1,2234:24705596,44911384 -$1,2234:24705596,44911384 -g1,2234:25368978,44911384 -g1,2234:26082823,44911384 -$1,2234:26531089,44911384 -k1,2235:32583029,44911384:5878270 -g1,2235:32583029,44911384 -) -v1,2237:6630773,46099985:0,393216,0 -] -(1,2244:32583029,45706769:0,0,0 -g1,2244:32583029,45706769 -) -) -] -(1,2244:6630773,47279633:25952256,0,0 -h1,2244:6630773,47279633:25952256,0,0 -) -] -(1,2244:4262630,4025873:0,0,0 -[1,2244:-473656,4025873:0,0,0 -(1,2244:-473656,-710413:0,0,0 -(1,2244:-473656,-710413:0,0,0 -g1,2244:-473656,-710413 -) -g1,2244:-473656,-710413 -) -] -) -] -!27320 -}52 -Input:406:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:407:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:408:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:409:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!375 -{53 -[1,2339:4262630,47279633:28320399,43253760,0 -(1,2339:4262630,4025873:0,0,0 -[1,2339:-473656,4025873:0,0,0 -(1,2339:-473656,-710413:0,0,0 -(1,2339:-473656,-644877:0,0,0 -k1,2339:-473656,-644877:-65536 -) -(1,2339:-473656,4736287:0,0,0 -k1,2339:-473656,4736287:5209943 -) -g1,2339:-473656,-710413 -) -] -) -[1,2339:6630773,47279633:25952256,43253760,0 -[1,2339:6630773,4812305:25952256,786432,0 -(1,2339:6630773,4812305:25952256,505283,134348 -(1,2339:6630773,4812305:25952256,505283,134348 -g1,2339:3078558,4812305 -[1,2339:3078558,4812305:0,0,0 -(1,2339:3078558,2439708:0,1703936,0 -k1,2339:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,2339:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,2339:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,2339:3078558,4812305:0,0,0 -(1,2339:3078558,2439708:0,1703936,0 -g1,2339:29030814,2439708 -g1,2339:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,2339:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,2339:37855564,2439708:1179648,16384,0 -) -) -k1,2339:3078556,2439708:-34777008 -) -] -[1,2339:3078558,4812305:0,0,0 -(1,2339:3078558,49800853:0,16384,2228224 -k1,2339:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,2339:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,2339:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,2339:3078558,4812305:0,0,0 -(1,2339:3078558,49800853:0,16384,2228224 -g1,2339:29030814,49800853 -g1,2339:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,2339:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,2339:37855564,49800853:1179648,16384,0 -) -) -k1,2339:3078556,49800853:-34777008 -) -] -g1,2339:6630773,4812305 -k1,2339:19515153,4812305:12087462 -g1,2339:20901894,4812305 -g1,2339:21550700,4812305 -g1,2339:24864855,4812305 -g1,2339:27600327,4812305 -g1,2339:29010006,4812305 -) -) -] -[1,2339:6630773,45706769:25952256,40108032,0 -(1,2339:6630773,45706769:25952256,40108032,0 -(1,2339:6630773,45706769:0,0,0 -g1,2339:6630773,45706769 -) -[1,2339:6630773,45706769:25952256,40108032,0 -v1,2244:6630773,6254097:0,393216,0 -(1,2244:6630773,7269450:25952256,1408569,196608 -g1,2244:6630773,7269450 -g1,2244:6630773,7269450 -g1,2244:6434165,7269450 -(1,2244:6434165,7269450:0,1408569,196608 -r1,2339:32779637,7269450:26345472,1605177,196608 -k1,2244:6434165,7269450:-26345472 -) -(1,2244:6434165,7269450:26345472,1408569,196608 -[1,2244:6630773,7269450:25952256,1211961,0 -(1,2239:6630773,6461715:25952256,404226,101187 -(1,2238:6630773,6461715:0,0,0 -g1,2238:6630773,6461715 -g1,2238:6630773,6461715 -g1,2238:6303093,6461715 -(1,2238:6303093,6461715:0,0,0 -) -g1,2238:6630773,6461715 -) -k1,2239:6630773,6461715:0 -g1,2239:12005251,6461715 -g1,2239:13585980,6461715 -g1,2239:15482855,6461715 -h1,2239:17695875,6461715:0,0,0 -k1,2239:32583029,6461715:14887154 -g1,2239:32583029,6461715 -) -(1,2243:6630773,7193429:25952256,404226,76021 -(1,2241:6630773,7193429:0,0,0 -g1,2241:6630773,7193429 -g1,2241:6630773,7193429 -g1,2241:6303093,7193429 -(1,2241:6303093,7193429:0,0,0 -) -g1,2241:6630773,7193429 -) -g1,2243:7579210,7193429 -g1,2243:8843793,7193429 -h1,2243:9792230,7193429:0,0,0 -k1,2243:32583030,7193429:22790800 -g1,2243:32583030,7193429 -) -] -) -g1,2244:32583029,7269450 -g1,2244:6630773,7269450 -g1,2244:6630773,7269450 -g1,2244:32583029,7269450 -g1,2244:32583029,7269450 -) -h1,2244:6630773,7466058:0,0,0 -v1,2248:6630773,9356122:0,393216,0 -(1,2262:6630773,21926581:25952256,12963675,616038 -g1,2262:6630773,21926581 -(1,2262:6630773,21926581:25952256,12963675,616038 -(1,2262:6630773,22542619:25952256,13579713,0 -[1,2262:6630773,22542619:25952256,13579713,0 -(1,2262:6630773,22516405:25952256,13527285,0 -r1,2339:6656987,22516405:26214,13527285,0 -[1,2262:6656987,22516405:25899828,13527285,0 -(1,2262:6656987,21926581:25899828,12347637,0 -[1,2262:7246811,21926581:24720180,12347637,0 -(1,2249:7246811,10666318:24720180,1087374,126483 -k1,2248:8598733,10666318:142219 -k1,2248:10374766,10666318:142220 -k1,2248:11332253,10666318:142219 -k1,2248:12644946,10666318:142220 -k1,2248:14858103,10666318:142219 -k1,2248:15651751,10666318:142220 -k1,2248:16541736,10666318:142219 -k1,2248:17703041,10666318:142220 -k1,2248:21031620,10666318:142219 -k1,2248:23809043,10666318:142220 -k1,2248:24970347,10666318:142219 -k1,2248:27123212,10666318:142220 -k1,2248:30044158,10666318:142219 -k1,2248:30947906,10666318:142220 -k1,2248:31966991,10666318:0 -) -(1,2249:7246811,11507806:24720180,513147,134348 -k1,2248:9129601,11507806:228006 -k1,2248:12874268,11507806:228005 -k1,2248:13718312,11507806:228006 -k1,2248:14965403,11507806:228006 -k1,2248:16689596,11507806:228006 -k1,2248:18888269,11507806:228005 -k1,2248:21311731,11507806:228006 -k1,2248:23581183,11507806:228006 -k1,2248:26332325,11507806:228006 -k1,2248:28373056,11507806:228005 -k1,2248:30215869,11507806:228006 -k1,2248:31966991,11507806:0 -) -(1,2249:7246811,12349294:24720180,505283,126483 -k1,2248:8863987,12349294:158345 -k1,2248:13046898,12349294:158345 -k1,2248:15027799,12349294:158345 -k1,2248:16205230,12349294:158346 -k1,2248:18043918,12349294:158345 -k1,2248:19653885,12349294:158345 -k1,2248:20968940,12349294:158345 -k1,2248:22259747,12349294:158345 -k1,2248:24602407,12349294:158345 -k1,2248:26251042,12349294:158346 -k1,2248:27843315,12349294:158345 -k1,2248:29119704,12349294:158345 -k1,2248:30297134,12349294:158345 -k1,2248:31966991,12349294:0 -) -(1,2249:7246811,13190782:24720180,513147,126483 -k1,2248:12014496,13190782:182786 -k1,2248:12856574,13190782:182786 -k1,2248:15629998,13190782:182786 -k1,2248:17271615,13190782:182786 -k1,2248:21064124,13190782:182786 -k1,2248:22750961,13190782:182786 -k1,2248:25176389,13190782:182786 -k1,2248:26042060,13190782:182786 -k1,2248:27464787,13190782:182786 -k1,2248:29262380,13190782:182786 -k1,2248:31196288,13190782:182786 -k1,2248:31966991,13190782:0 -) -(1,2249:7246811,14032270:24720180,513147,126483 -g1,2248:11178315,14032270 -g1,2248:12036836,14032270 -g1,2248:13784681,14032270 -g1,2248:15435532,14032270 -g1,2248:19325093,14032270 -g1,2248:22598616,14032270 -k1,2249:31966991,14032270:8663208 -g1,2249:31966991,14032270 -) -v1,2251:7246811,15222736:0,393216,0 -(1,2257:7246811,16863897:24720180,2034377,196608 -g1,2257:7246811,16863897 -g1,2257:7246811,16863897 -g1,2257:7050203,16863897 -(1,2257:7050203,16863897:0,2034377,196608 -r1,2339:32163599,16863897:25113396,2230985,196608 -k1,2257:7050203,16863897:-25113396 -) -(1,2257:7050203,16863897:25113396,2034377,196608 -[1,2257:7246811,16863897:24720180,1837769,0 -(1,2253:7246811,15430354:24720180,404226,101187 -(1,2252:7246811,15430354:0,0,0 -g1,2252:7246811,15430354 -g1,2252:7246811,15430354 -g1,2252:6919131,15430354 -(1,2252:6919131,15430354:0,0,0 -) -g1,2252:7246811,15430354 -) -k1,2253:7246811,15430354:0 -g1,2253:11356706,15430354 -g1,2253:12937435,15430354 -g1,2253:14834310,15430354 -h1,2253:17047330,15430354:0,0,0 -k1,2253:31966991,15430354:14919661 -g1,2253:31966991,15430354 -) -(1,2254:7246811,16096532:24720180,404226,101187 -h1,2254:7246811,16096532:0,0,0 -g1,2254:10092124,16096532 -g1,2254:11672853,16096532 -g1,2254:13569728,16096532 -h1,2254:15782748,16096532:0,0,0 -k1,2254:31966991,16096532:16184243 -g1,2254:31966991,16096532 -) -(1,2255:7246811,16762710:24720180,404226,101187 -h1,2255:7246811,16762710:0,0,0 -g1,2255:9459832,16762710 -g1,2255:11040561,16762710 -g1,2255:12621290,16762710 -h1,2255:14834310,16762710:0,0,0 -k1,2255:31966990,16762710:17132680 -g1,2255:31966990,16762710 -) -] -) -g1,2257:31966991,16863897 -g1,2257:7246811,16863897 -g1,2257:7246811,16863897 -g1,2257:31966991,16863897 -g1,2257:31966991,16863897 -) -h1,2257:7246811,17060505:0,0,0 -(1,2261:7246811,18426281:24720180,513147,134348 -h1,2260:7246811,18426281:983040,0,0 -k1,2260:9030860,18426281:173174 -k1,2260:10223119,18426281:173174 -k1,2260:12723476,18426281:173174 -k1,2260:13555943,18426281:173175 -k1,2260:14993962,18426281:173174 -k1,2260:17856734,18426281:173174 -$1,2260:17856734,18426281 -k1,2260:18556528,18426281:182060 -k1,2260:19306785,18426281:182060 -$1,2260:19755051,18426281 -k1,2260:20101895,18426281:173174 -k1,2260:22193963,18426281:173174 -$1,2260:22193963,18426281 -$1,2260:22711697,18426281 -k1,2260:22884871,18426281:173174 -k1,2260:24249490,18426281:173174 -$1,2260:24249490,18426281 -$1,2260:24697756,18426281 -k1,2260:24870931,18426281:173175 -k1,2260:26035665,18426281:173174 -k1,2260:27647354,18426281:173174 -k1,2260:30682485,18426281:173174 -k1,2260:31966991,18426281:0 -) -(1,2261:7246811,19267769:24720180,505283,126483 -$1,2260:7764545,19267769 -k1,2260:7944746,19267769:180201 -k1,2260:8656444,19267769:180201 -k1,2260:9192505,19267769:180201 -k1,2260:11452819,19267769:180201 -k1,2260:12315905,19267769:180201 -k1,2260:14223635,19267769:180201 -k1,2260:15055264,19267769:180201 -$1,2260:15055264,19267769 -$1,2260:15503530,19267769 -k1,2260:15857401,19267769:180201 -k1,2260:17079623,19267769:180200 -k1,2260:17615684,19267769:180201 -k1,2260:19103328,19267769:180201 -k1,2260:21537312,19267769:180201 -k1,2260:22736598,19267769:180201 -k1,2260:25606397,19267769:180201 -k1,2260:26318095,19267769:180201 -$1,2260:26318095,19267769 -k1,2260:27017889,19267769:182060 -k1,2260:27768146,19267769:182060 -$1,2260:28216412,19267769 -k1,2260:28570283,19267769:180201 -k1,2260:29947171,19267769:180201 -k1,2261:31966991,19267769:0 -) -(1,2261:7246811,20109257:24720180,513147,126483 -k1,2260:8722737,20109257:205838 -k1,2260:10322525,20109257:205837 -k1,2260:11547448,20109257:205838 -k1,2260:14059497,20109257:205837 -k1,2260:17124015,20109257:205838 -k1,2260:18321413,20109257:205838 -$1,2260:18321413,20109257 -$1,2260:18889610,20109257 -k1,2260:19095447,20109257:205837 -k1,2260:20492730,20109257:205838 -$1,2260:20492730,20109257 -$1,2260:21060927,20109257 -k1,2260:21440434,20109257:205837 -k1,2260:25091500,20109257:205838 -k1,2260:26994064,20109257:205837 -k1,2260:28562396,20109257:205838 -k1,2260:31966991,20109257:0 -) -(1,2261:7246811,20950745:24720180,513147,126483 -k1,2260:8127322,20950745:264473 -k1,2260:9754289,20950745:264473 -k1,2260:10433539,20950745:264407 -k1,2260:14388344,20950745:264473 -k1,2260:15844262,20950745:264473 -k1,2260:17300180,20950745:264473 -k1,2260:19203708,20950745:264473 -k1,2260:20277551,20950745:264473 -k1,2260:21806869,20950745:264473 -k1,2260:26088044,20950745:264473 -k1,2260:27114045,20950745:264473 -k1,2260:27793295,20950745:264407 -k1,2260:30573040,20950745:264473 -k1,2260:31966991,20950745:0 -) -(1,2261:7246811,21792233:24720180,513147,134348 -g1,2260:10208383,21792233 -g1,2260:13377048,21792233 -g1,2260:15735688,21792233 -g1,2260:16869460,21792233 -k1,2261:31966991,21792233:11970153 -g1,2261:31966991,21792233 -) -] -) -] -r1,2339:32583029,22516405:26214,13527285,0 -) -] -) -) -g1,2262:32583029,21926581 -) -h1,2262:6630773,22542619:0,0,0 -v1,2265:6630773,23908395:0,393216,0 -(1,2339:6630773,44509404:25952256,20994225,589824 -g1,2339:6630773,44509404 -(1,2339:6630773,44509404:25952256,20994225,589824 -(1,2339:6630773,45099228:25952256,21584049,0 -[1,2339:6630773,45099228:25952256,21584049,0 -(1,2339:6630773,45099228:25952256,21557835,0 -r1,2339:6656987,45099228:26214,21557835,0 -[1,2339:6656987,45099228:25899828,21557835,0 -(1,2339:6656987,44509404:25899828,20378187,0 -[1,2339:7246811,44509404:24720180,20378187,0 -(1,2266:7246811,25293102:24720180,1161885,196608 -(1,2265:7246811,25293102:0,1161885,196608 -r1,2339:8794447,25293102:1547636,1358493,196608 -k1,2265:7246811,25293102:-1547636 -) -(1,2265:7246811,25293102:1547636,1161885,196608 -) -k1,2265:9000677,25293102:206230 -k1,2265:10104749,25293102:206229 -k1,2265:11245522,25293102:206230 -k1,2265:13778935,25293102:206230 -k1,2265:16976883,25293102:206229 -k1,2265:19038437,25293102:206230 -k1,2265:20337151,25293102:206229 -k1,2265:23518060,25293102:206230 -k1,2265:26032468,25293102:206230 -k1,2265:27430142,25293102:206229 -k1,2265:30611051,25293102:206230 -k1,2266:31966991,25293102:0 -) -(1,2266:7246811,26134590:24720180,513147,134348 -k1,2265:9629599,26134590:264009 -k1,2265:11274452,26134590:264009 -k1,2265:12069958,26134590:264009 -k1,2265:13562768,26134590:264010 -k1,2265:14845862,26134590:264009 -k1,2265:16711571,26134590:264009 -k1,2265:19714330,26134590:264009 -k1,2265:21070824,26134590:264009 -k1,2265:22875584,26134590:264009 -k1,2265:24429343,26134590:264010 -k1,2265:28097947,26134590:264009 -k1,2265:29353516,26134590:264009 -k1,2265:31157621,26134590:264009 -k1,2265:31966991,26134590:0 -) -(1,2266:7246811,26976078:24720180,513147,134348 -k1,2265:9813577,26976078:258588 -k1,2265:10731456,26976078:258587 -k1,2265:12121851,26976078:258588 -k1,2265:14542472,26976078:258588 -k1,2265:16529900,26976078:258588 -k1,2265:19769064,26976078:258587 -(1,2265:19769064,26976078:0,452978,122846 -r1,2339:22237601,26976078:2468537,575824,122846 -k1,2265:19769064,26976078:-2468537 -) -(1,2265:19769064,26976078:2468537,452978,122846 -k1,2265:19769064,26976078:3277 -h1,2265:22234324,26976078:0,411205,112570 -) -k1,2265:22669859,26976078:258588 -k1,2265:24119892,26976078:258588 -k1,2265:27587123,26976078:258588 -k1,2265:29856355,26976078:258587 -k1,2265:31219225,26976078:258588 -k1,2265:31966991,26976078:0 -) -(1,2266:7246811,27817566:24720180,513147,126483 -k1,2265:8787008,27817566:218336 -k1,2265:9664636,27817566:218336 -k1,2265:13573303,27817566:218335 -k1,2265:14419474,27817566:218336 -k1,2265:15656895,27817566:218336 -k1,2265:18116562,27817566:218336 -k1,2265:19526342,27817566:218335 -k1,2265:21326717,27817566:218336 -k1,2265:25061715,27817566:218336 -k1,2265:25896089,27817566:218336 -k1,2265:27133509,27817566:218335 -k1,2265:28735965,27817566:218336 -k1,2265:31098639,27817566:218336 -k1,2265:31966991,27817566:0 -) -(1,2266:7246811,28659054:24720180,513147,126483 -k1,2265:9047562,28659054:270485 -k1,2265:9969475,28659054:270485 -k1,2265:11332444,28659054:270484 -k1,2265:14829922,28659054:270485 -k1,2265:18954579,28659054:270485 -k1,2265:19876492,28659054:270485 -k1,2265:21600566,28659054:270485 -k1,2265:22890136,28659054:270485 -k1,2265:25426200,28659054:270484 -k1,2265:27436011,28659054:270485 -k1,2265:28365788,28659054:270485 -k1,2265:31966991,28659054:0 -) -(1,2266:7246811,29500542:24720180,505283,126483 -g1,2265:10081243,29500542 -g1,2265:13556617,29500542 -g1,2265:14947291,29500542 -g1,2265:16081063,29500542 -k1,2266:31966991,29500542:12635342 -g1,2266:31966991,29500542 -) -v1,2268:7246811,30691008:0,393216,0 -(1,2287:7246811,35812865:24720180,5515073,196608 -g1,2287:7246811,35812865 -g1,2287:7246811,35812865 -g1,2287:7050203,35812865 -(1,2287:7050203,35812865:0,5515073,196608 -r1,2339:32163599,35812865:25113396,5711681,196608 -k1,2287:7050203,35812865:-25113396 -) -(1,2287:7050203,35812865:25113396,5515073,196608 -[1,2287:7246811,35812865:24720180,5318465,0 -(1,2270:7246811,30898626:24720180,404226,9436 -(1,2269:7246811,30898626:0,0,0 -g1,2269:7246811,30898626 -g1,2269:7246811,30898626 -g1,2269:6919131,30898626 -(1,2269:6919131,30898626:0,0,0 -) -g1,2269:7246811,30898626 -) -g1,2270:8195248,30898626 -g1,2270:9775977,30898626 -h1,2270:11356705,30898626:0,0,0 -k1,2270:31966991,30898626:20610286 -g1,2270:31966991,30898626 -) -(1,2274:7246811,31630340:24720180,404226,76021 -(1,2272:7246811,31630340:0,0,0 -g1,2272:7246811,31630340 -g1,2272:7246811,31630340 -g1,2272:6919131,31630340 -(1,2272:6919131,31630340:0,0,0 -) -g1,2272:7246811,31630340 -) -g1,2274:8195248,31630340 -g1,2274:9459831,31630340 -h1,2274:11040559,31630340:0,0,0 -k1,2274:31966991,31630340:20926432 -g1,2274:31966991,31630340 -) -(1,2276:7246811,32951878:24720180,404226,76021 -(1,2275:7246811,32951878:0,0,0 -g1,2275:7246811,32951878 -g1,2275:7246811,32951878 -g1,2275:6919131,32951878 -(1,2275:6919131,32951878:0,0,0 -) -g1,2275:7246811,32951878 -) -g1,2276:8195248,32951878 -g1,2276:9775977,32951878 -g1,2276:12621288,32951878 -g1,2276:13253580,32951878 -h1,2276:15782745,32951878:0,0,0 -k1,2276:31966991,32951878:16184246 -g1,2276:31966991,32951878 -) -(1,2280:7246811,33683592:24720180,404226,76021 -(1,2278:7246811,33683592:0,0,0 -g1,2278:7246811,33683592 -g1,2278:7246811,33683592 -g1,2278:6919131,33683592 -(1,2278:6919131,33683592:0,0,0 -) -g1,2278:7246811,33683592 -) -g1,2280:8195248,33683592 -g1,2280:9459831,33683592 -h1,2280:10724414,33683592:0,0,0 -k1,2280:31966990,33683592:21242576 -g1,2280:31966990,33683592 -) -(1,2282:7246811,35005130:24720180,404226,82312 -(1,2281:7246811,35005130:0,0,0 -g1,2281:7246811,35005130 -g1,2281:7246811,35005130 -g1,2281:6919131,35005130 -(1,2281:6919131,35005130:0,0,0 -) -g1,2281:7246811,35005130 -) -k1,2282:7246811,35005130:0 -g1,2282:9143686,35005130 -g1,2282:10724415,35005130 -g1,2282:12305144,35005130 -g1,2282:15150455,35005130 -g1,2282:15782747,35005130 -h1,2282:18311912,35005130:0,0,0 -k1,2282:31966991,35005130:13655079 -g1,2282:31966991,35005130 -) -(1,2286:7246811,35736844:24720180,404226,76021 -(1,2284:7246811,35736844:0,0,0 -g1,2284:7246811,35736844 -g1,2284:7246811,35736844 -g1,2284:6919131,35736844 -(1,2284:6919131,35736844:0,0,0 -) -g1,2284:7246811,35736844 -) -g1,2286:8195248,35736844 -g1,2286:9459831,35736844 -g1,2286:11356705,35736844 -g1,2286:11672851,35736844 -h1,2286:12937434,35736844:0,0,0 -k1,2286:31966990,35736844:19029556 -g1,2286:31966990,35736844 -) -] -) -g1,2287:31966991,35812865 -g1,2287:7246811,35812865 -g1,2287:7246811,35812865 -g1,2287:31966991,35812865 -g1,2287:31966991,35812865 -) -h1,2287:7246811,36009473:0,0,0 -(1,2291:7246811,37375249:24720180,513147,134348 -h1,2290:7246811,37375249:983040,0,0 -k1,2290:10396941,37375249:178728 -k1,2290:11747452,37375249:178727 -k1,2290:12917740,37375249:178728 -k1,2290:13867170,37375249:178727 -k1,2290:17255196,37375249:178728 -k1,2290:21031195,37375249:178728 -k1,2290:21869214,37375249:178727 -k1,2290:23067027,37375249:178728 -k1,2290:25572937,37375249:178727 -k1,2290:26410957,37375249:178728 -k1,2290:28028200,37375249:178728 -k1,2290:28822965,37375249:178727 -k1,2290:29416515,37375249:178707 -k1,2290:30975431,37375249:178728 -k1,2290:31966991,37375249:0 -) -(1,2291:7246811,38216737:24720180,513147,134348 -k1,2290:11270886,38216737:214467 -k1,2290:12171514,38216737:214466 -k1,2290:14694159,38216737:214467 -k1,2290:15567918,38216737:214467 -k1,2290:17202549,38216737:214466 -k1,2290:19603952,38216737:214467 -k1,2290:22227522,38216737:214467 -k1,2290:23633433,38216737:214466 -k1,2290:25171727,38216737:214467 -k1,2290:26045486,38216737:214467 -k1,2290:27680117,38216737:214466 -k1,2290:30081520,38216737:214467 -k1,2290:31966991,38216737:0 -) -(1,2291:7246811,39058225:24720180,513147,134348 -k1,2290:8436241,39058225:170345 -k1,2290:9021401,39058225:170317 -k1,2290:12034043,39058225:170346 -k1,2290:13655355,39058225:170345 -k1,2290:16856085,39058225:170345 -k1,2290:18130713,39058225:170346 -k1,2290:19048824,39058225:170345 -k1,2290:20732396,39058225:170346 -k1,2290:21554169,39058225:170345 -k1,2290:24583195,39058225:170346 -k1,2290:28022476,39058225:170345 -k1,2290:29478638,39058225:170346 -k1,2290:30265021,39058225:170345 -k1,2290:31966991,39058225:0 -) -(1,2291:7246811,39899713:24720180,505283,134348 -k1,2290:10308818,39899713:188909 -k1,2290:12372057,39899713:188909 -k1,2290:14869145,39899713:188910 -k1,2290:15873322,39899713:188909 -k1,2290:18198705,39899713:188909 -k1,2290:19039042,39899713:188909 -k1,2290:19583812,39899713:188910 -k1,2290:21327890,39899713:188909 -k1,2290:23010365,39899713:188909 -k1,2290:23885436,39899713:188909 -(1,2290:23885436,39899713:0,452978,115847 -r1,2339:26353973,39899713:2468537,568825,115847 -k1,2290:23885436,39899713:-2468537 -) -(1,2290:23885436,39899713:2468537,452978,115847 -k1,2290:23885436,39899713:3277 -h1,2290:26350696,39899713:0,411205,112570 -) -k1,2290:26542883,39899713:188910 -k1,2290:27414677,39899713:188909 -(1,2290:27414677,39899713:0,452978,115847 -r1,2339:30586637,39899713:3171960,568825,115847 -k1,2290:27414677,39899713:-3171960 -) -(1,2290:27414677,39899713:3171960,452978,115847 -k1,2290:27414677,39899713:3277 -h1,2290:30583360,39899713:0,411205,112570 -) -k1,2290:30775546,39899713:188909 -k1,2290:31966991,39899713:0 -) -(1,2291:7246811,40741201:24720180,513147,126483 -k1,2290:9011219,40741201:142392 -k1,2290:9901377,40741201:142392 -k1,2290:13579436,40741201:142392 -k1,2290:15115779,40741201:142392 -k1,2290:16960141,40741201:142392 -k1,2290:20075245,40741201:142391 -k1,2290:20833675,40741201:142392 -k1,2290:21746770,40741201:142392 -k1,2290:25502817,40741201:142392 -k1,2290:26405427,40741201:142392 -k1,2290:28987069,40741201:142392 -k1,2291:31966991,40741201:0 -) -(1,2291:7246811,41582689:24720180,513147,126483 -g1,2290:8716128,41582689 -g1,2290:9863008,41582689 -g1,2290:12544085,41582689 -g1,2290:15767145,41582689 -g1,2290:17972431,41582689 -k1,2291:31966991,41582689:11512712 -g1,2291:31966991,41582689 -) -v1,2293:7246811,42773155:0,393216,0 -(1,2300:7246811,43788508:24720180,1408569,196608 -g1,2300:7246811,43788508 -g1,2300:7246811,43788508 -g1,2300:7050203,43788508 -(1,2300:7050203,43788508:0,1408569,196608 -r1,2339:32163599,43788508:25113396,1605177,196608 -k1,2300:7050203,43788508:-25113396 -) -(1,2300:7050203,43788508:25113396,1408569,196608 -[1,2300:7246811,43788508:24720180,1211961,0 -(1,2295:7246811,42980773:24720180,404226,107478 -(1,2294:7246811,42980773:0,0,0 -g1,2294:7246811,42980773 -g1,2294:7246811,42980773 -g1,2294:6919131,42980773 -(1,2294:6919131,42980773:0,0,0 -) -g1,2294:7246811,42980773 -) -k1,2295:7246811,42980773:0 -k1,2295:7246811,42980773:0 -h1,2295:12621288,42980773:0,0,0 -k1,2295:31966992,42980773:19345704 -g1,2295:31966992,42980773 -) -(1,2299:7246811,43712487:24720180,404226,76021 -(1,2297:7246811,43712487:0,0,0 -g1,2297:7246811,43712487 -g1,2297:7246811,43712487 -g1,2297:6919131,43712487 -(1,2297:6919131,43712487:0,0,0 -) -g1,2297:7246811,43712487 -) -g1,2299:8195248,43712487 -g1,2299:9459831,43712487 -h1,2299:9775977,43712487:0,0,0 -k1,2299:31966991,43712487:22191014 -g1,2299:31966991,43712487 -) -] -) -g1,2300:31966991,43788508 -g1,2300:7246811,43788508 -g1,2300:7246811,43788508 -g1,2300:31966991,43788508 -g1,2300:31966991,43788508 -) -h1,2300:7246811,43985116:0,0,0 -] -) -] -r1,2339:32583029,45099228:26214,21557835,0 -) -] -) -) -g1,2339:32583029,44509404 -) -] -(1,2339:32583029,45706769:0,0,0 -g1,2339:32583029,45706769 -) -) -] -(1,2339:6630773,47279633:25952256,0,0 -h1,2339:6630773,47279633:25952256,0,0 -) -] -(1,2339:4262630,4025873:0,0,0 -[1,2339:-473656,4025873:0,0,0 -(1,2339:-473656,-710413:0,0,0 -(1,2339:-473656,-710413:0,0,0 -g1,2339:-473656,-710413 -) -g1,2339:-473656,-710413 -) -] -) -] -!22831 -}53 -Input:410:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:411:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:412:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:413:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:414:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:415:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:416:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!648 -{54 -[1,2378:4262630,47279633:28320399,43253760,0 -(1,2378:4262630,4025873:0,0,0 -[1,2378:-473656,4025873:0,0,0 -(1,2378:-473656,-710413:0,0,0 -(1,2378:-473656,-644877:0,0,0 -k1,2378:-473656,-644877:-65536 -) -(1,2378:-473656,4736287:0,0,0 -k1,2378:-473656,4736287:5209943 -) -g1,2378:-473656,-710413 -) -] -) -[1,2378:6630773,47279633:25952256,43253760,0 -[1,2378:6630773,4812305:25952256,786432,0 -(1,2378:6630773,4812305:25952256,505283,11795 -(1,2378:6630773,4812305:25952256,505283,11795 -g1,2378:3078558,4812305 -[1,2378:3078558,4812305:0,0,0 -(1,2378:3078558,2439708:0,1703936,0 -k1,2378:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,2378:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,2378:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,2378:3078558,4812305:0,0,0 -(1,2378:3078558,2439708:0,1703936,0 -g1,2378:29030814,2439708 -g1,2378:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,2378:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,2378:37855564,2439708:1179648,16384,0 -) -) -k1,2378:3078556,2439708:-34777008 -) -] -[1,2378:3078558,4812305:0,0,0 -(1,2378:3078558,49800853:0,16384,2228224 -k1,2378:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,2378:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,2378:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,2378:3078558,4812305:0,0,0 -(1,2378:3078558,49800853:0,16384,2228224 -g1,2378:29030814,49800853 -g1,2378:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,2378:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,2378:37855564,49800853:1179648,16384,0 -) -) -k1,2378:3078556,49800853:-34777008 -) -] -g1,2378:6630773,4812305 -g1,2378:6630773,4812305 -g1,2378:10015707,4812305 -g1,2378:12209197,4812305 -k1,2378:31786111,4812305:19576914 -) -) -] -[1,2378:6630773,45706769:25952256,40108032,0 -(1,2378:6630773,45706769:25952256,40108032,0 -(1,2378:6630773,45706769:0,0,0 -g1,2378:6630773,45706769 -) -[1,2378:6630773,45706769:25952256,40108032,0 -v1,2339:6630773,6254097:0,393216,0 -(1,2339:6630773,18169310:25952256,12308429,616038 -g1,2339:6630773,18169310 -(1,2339:6630773,18169310:25952256,12308429,616038 -(1,2339:6630773,18785348:25952256,12924467,0 -[1,2339:6630773,18785348:25952256,12924467,0 -(1,2339:6630773,18759134:25952256,12898253,0 -r1,2378:6656987,18759134:26214,12898253,0 -[1,2339:6656987,18759134:25899828,12898253,0 -(1,2339:6656987,18169310:25899828,11718605,0 -[1,2339:7246811,18169310:24720180,11718605,0 -v1,2304:7246811,6843921:0,393216,0 -(1,2317:7246811,9943983:24720180,3493278,196608 -g1,2317:7246811,9943983 -g1,2317:7246811,9943983 -g1,2317:7050203,9943983 -(1,2317:7050203,9943983:0,3493278,196608 -r1,2378:32163599,9943983:25113396,3689886,196608 -k1,2317:7050203,9943983:-25113396 -) -(1,2317:7050203,9943983:25113396,3493278,196608 -[1,2317:7246811,9943983:24720180,3296670,0 -(1,2306:7246811,7051539:24720180,404226,107478 -(1,2305:7246811,7051539:0,0,0 -g1,2305:7246811,7051539 -g1,2305:7246811,7051539 -g1,2305:6919131,7051539 -(1,2305:6919131,7051539:0,0,0 -) -g1,2305:7246811,7051539 -) -g1,2306:8195248,7051539 -g1,2306:9775977,7051539 -k1,2306:9775977,7051539:0 -h1,2306:12621288,7051539:0,0,0 -k1,2306:31966992,7051539:19345704 -g1,2306:31966992,7051539 -) -(1,2310:7246811,7783253:24720180,404226,76021 -(1,2308:7246811,7783253:0,0,0 -g1,2308:7246811,7783253 -g1,2308:7246811,7783253 -g1,2308:6919131,7783253 -(1,2308:6919131,7783253:0,0,0 -) -g1,2308:7246811,7783253 -) -g1,2310:8195248,7783253 -g1,2310:9459831,7783253 -h1,2310:11040559,7783253:0,0,0 -k1,2310:31966991,7783253:20926432 -g1,2310:31966991,7783253 -) -(1,2312:7246811,9104791:24720180,410518,107478 -(1,2311:7246811,9104791:0,0,0 -g1,2311:7246811,9104791 -g1,2311:7246811,9104791 -g1,2311:6919131,9104791 -(1,2311:6919131,9104791:0,0,0 -) -g1,2311:7246811,9104791 -) -k1,2312:7246811,9104791:0 -g1,2312:11988997,9104791 -g1,2312:16098891,9104791 -k1,2312:16098891,9104791:0 -h1,2312:19576494,9104791:0,0,0 -k1,2312:31966991,9104791:12390497 -g1,2312:31966991,9104791 -) -(1,2316:7246811,9836505:24720180,404226,107478 -(1,2314:7246811,9836505:0,0,0 -g1,2314:7246811,9836505 -g1,2314:7246811,9836505 -g1,2314:6919131,9836505 -(1,2314:6919131,9836505:0,0,0 -) -g1,2314:7246811,9836505 -) -g1,2316:8195248,9836505 -h1,2316:11356705,9836505:0,0,0 -k1,2316:31966991,9836505:20610286 -g1,2316:31966991,9836505 -) -] -) -g1,2317:31966991,9943983 -g1,2317:7246811,9943983 -g1,2317:7246811,9943983 -g1,2317:31966991,9943983 -g1,2317:31966991,9943983 -) -h1,2317:7246811,10140591:0,0,0 -(1,2321:7246811,11506367:24720180,513147,134348 -h1,2320:7246811,11506367:983040,0,0 -k1,2320:11394212,11506367:201478 -k1,2320:12530233,11506367:201478 -k1,2320:15808627,11506367:201479 -k1,2320:17001665,11506367:201478 -k1,2320:19584721,11506367:201478 -k1,2320:20733850,11506367:201478 -(1,2320:20733850,11506367:0,452978,115847 -r1,2378:23202387,11506367:2468537,568825,115847 -k1,2320:20733850,11506367:-2468537 -) -(1,2320:20733850,11506367:2468537,452978,115847 -k1,2320:20733850,11506367:3277 -h1,2320:23199110,11506367:0,411205,112570 -) -k1,2320:23403865,11506367:201478 -k1,2320:26087192,11506367:201479 -k1,2320:29212231,11506367:201478 -k1,2320:31350953,11506367:201478 -k1,2320:31966991,11506367:0 -) -(1,2321:7246811,12347855:24720180,513147,134348 -k1,2320:9569961,12347855:203716 -k1,2320:10877959,12347855:203716 -k1,2320:12924548,12347855:203717 -k1,2320:13744302,12347855:203716 -k1,2320:17616723,12347855:203716 -k1,2320:19993613,12347855:203716 -k1,2320:21429407,12347855:203717 -k1,2320:23911810,12347855:203716 -h1,2320:24882398,12347855:0,0,0 -k1,2320:25086114,12347855:203716 -k1,2320:26099200,12347855:203716 -k1,2320:27801070,12347855:203717 -h1,2320:28597988,12347855:0,0,0 -k1,2320:29182468,12347855:203716 -k1,2320:30582871,12347855:203716 -k1,2320:31966991,12347855:0 -) -(1,2321:7246811,13189343:24720180,505283,126483 -g1,2320:8618479,13189343 -g1,2320:11809427,13189343 -g1,2320:12997594,13189343 -g1,2320:16041086,13189343 -g1,2320:18250960,13189343 -g1,2320:19469274,13189343 -g1,2320:21911145,13189343 -k1,2321:31966991,13189343:7294159 -g1,2321:31966991,13189343 -) -v1,2323:7246811,14379809:0,393216,0 -(1,2336:7246811,17448414:24720180,3461821,196608 -g1,2336:7246811,17448414 -g1,2336:7246811,17448414 -g1,2336:7050203,17448414 -(1,2336:7050203,17448414:0,3461821,196608 -r1,2378:32163599,17448414:25113396,3658429,196608 -k1,2336:7050203,17448414:-25113396 -) -(1,2336:7050203,17448414:25113396,3461821,196608 -[1,2336:7246811,17448414:24720180,3265213,0 -(1,2325:7246811,14587427:24720180,404226,76021 -(1,2324:7246811,14587427:0,0,0 -g1,2324:7246811,14587427 -g1,2324:7246811,14587427 -g1,2324:6919131,14587427 -(1,2324:6919131,14587427:0,0,0 -) -g1,2324:7246811,14587427 -) -g1,2325:7879103,14587427 -g1,2325:9459832,14587427 -h1,2325:11672854,14587427:0,0,0 -k1,2325:31966990,14587427:20294136 -g1,2325:31966990,14587427 -) -(1,2329:7246811,15319141:24720180,404226,76021 -(1,2327:7246811,15319141:0,0,0 -g1,2327:7246811,15319141 -g1,2327:7246811,15319141 -g1,2327:6919131,15319141 -(1,2327:6919131,15319141:0,0,0 -) -g1,2327:7246811,15319141 -) -g1,2329:8195248,15319141 -g1,2329:9459831,15319141 -h1,2329:10724414,15319141:0,0,0 -k1,2329:31966990,15319141:21242576 -g1,2329:31966990,15319141 -) -(1,2331:7246811,16640679:24720180,404226,82312 -(1,2330:7246811,16640679:0,0,0 -g1,2330:7246811,16640679 -g1,2330:7246811,16640679 -g1,2330:6919131,16640679 -(1,2330:6919131,16640679:0,0,0 -) -g1,2330:7246811,16640679 -) -k1,2331:7246811,16640679:0 -g1,2331:8827541,16640679 -g1,2331:9775979,16640679 -g1,2331:11356708,16640679 -h1,2331:13885875,16640679:0,0,0 -k1,2331:31966991,16640679:18081116 -g1,2331:31966991,16640679 -) -(1,2335:7246811,17372393:24720180,404226,76021 -(1,2333:7246811,17372393:0,0,0 -g1,2333:7246811,17372393 -g1,2333:7246811,17372393 -g1,2333:6919131,17372393 -(1,2333:6919131,17372393:0,0,0 -) -g1,2333:7246811,17372393 -) -g1,2335:8195248,17372393 -g1,2335:9459831,17372393 -g1,2335:9775977,17372393 -g1,2335:11356706,17372393 -h1,2335:12937434,17372393:0,0,0 -k1,2335:31966990,17372393:19029556 -g1,2335:31966990,17372393 -) -] -) -g1,2336:31966991,17448414 -g1,2336:7246811,17448414 -g1,2336:7246811,17448414 -g1,2336:31966991,17448414 -g1,2336:31966991,17448414 -) -h1,2336:7246811,17645022:0,0,0 -] -) -] -r1,2378:32583029,18759134:26214,12898253,0 -) -] -) -) -g1,2339:32583029,18169310 -) -h1,2339:6630773,18785348:0,0,0 -(1,2343:6630773,22024134:25952256,32768,229376 -(1,2343:6630773,22024134:0,32768,229376 -(1,2343:6630773,22024134:5505024,32768,229376 -r1,2378:12135797,22024134:5505024,262144,229376 -) -k1,2343:6630773,22024134:-5505024 -) -(1,2343:6630773,22024134:25952256,32768,0 -r1,2378:32583029,22024134:25952256,32768,0 -) -) -(1,2343:6630773,23628462:25952256,606339,14155 -(1,2343:6630773,23628462:1974731,582746,0 -g1,2343:6630773,23628462 -g1,2343:8605504,23628462 -) -g1,2343:12698883,23628462 -k1,2343:32583029,23628462:17306222 -g1,2343:32583029,23628462 -) -(1,2346:6630773,24863166:25952256,505283,126483 -k1,2345:9993127,24863166:265778 -k1,2345:13100546,24863166:265778 -k1,2345:14470606,24863166:265778 -k1,2345:15484150,24863166:265778 -k1,2345:17263154,24863166:265778 -k1,2345:18180361,24863166:265779 -k1,2345:20063568,24863166:265778 -k1,2345:21461153,24863166:265778 -k1,2345:24875281,24863166:265778 -k1,2345:28237635,24863166:265778 -k1,2345:31591469,24863166:265778 -k1,2345:32583029,24863166:0 -) -(1,2346:6630773,25704654:25952256,513147,134348 -k1,2345:9148666,25704654:231342 -k1,2345:10141536,25704654:231342 -k1,2345:13388845,25704654:231342 -k1,2345:16925168,25704654:231342 -k1,2345:17772548,25704654:231342 -k1,2345:20325831,25704654:231342 -k1,2345:22389560,25704654:231342 -k1,2345:23612462,25704654:231342 -k1,2345:25498588,25704654:231342 -k1,2345:27446318,25704654:231342 -k1,2345:28336952,25704654:231342 -k1,2345:30716564,25704654:231342 -k1,2345:31563944,25704654:231342 -k1,2345:32583029,25704654:0 -) -(1,2346:6630773,26546142:25952256,513147,134348 -k1,2345:8605371,26546142:250346 -k1,2345:11830448,26546142:250398 -k1,2345:13189059,26546142:250397 -k1,2345:15622461,26546142:250398 -k1,2345:18021128,26546142:250397 -(1,2345:18021128,26546142:0,452978,115847 -r1,2378:18379394,26546142:358266,568825,115847 -k1,2345:18021128,26546142:-358266 -) -(1,2345:18021128,26546142:358266,452978,115847 -k1,2345:18021128,26546142:3277 -h1,2345:18376117,26546142:0,411205,112570 -) -k1,2345:18803462,26546142:250398 -k1,2345:20926878,26546142:250397 -k1,2345:23325546,26546142:250398 -(1,2345:23325546,26546142:0,452978,115847 -r1,2378:23683812,26546142:358266,568825,115847 -k1,2345:23325546,26546142:-358266 -) -(1,2345:23325546,26546142:358266,452978,115847 -k1,2345:23325546,26546142:3277 -h1,2345:23680535,26546142:0,411205,112570 -) -k1,2345:24107879,26546142:250397 -k1,2345:25549722,26546142:250398 -k1,2345:27282543,26546142:250397 -k1,2345:29047478,26546142:250398 -(1,2345:29047478,26546142:0,459977,115847 -r1,2378:29405744,26546142:358266,575824,115847 -k1,2345:29047478,26546142:-358266 -) -(1,2345:29047478,26546142:358266,459977,115847 -k1,2345:29047478,26546142:3277 -h1,2345:29402467,26546142:0,411205,112570 -) -k1,2345:29829811,26546142:250397 -k1,2345:31276896,26546142:250398 -k1,2345:32583029,26546142:0 -) -(1,2346:6630773,27387630:25952256,513147,126483 -g1,2345:8002441,27387630 -g1,2345:9918058,27387630 -g1,2345:10776579,27387630 -g1,2345:13124078,27387630 -g1,2345:14427589,27387630 -g1,2345:15374584,27387630 -g1,2345:17087039,27387630 -g1,2345:17972430,27387630 -g1,2345:21390132,27387630 -g1,2345:22256517,27387630 -(1,2345:22256517,27387630:0,452978,115847 -r1,2378:25428477,27387630:3171960,568825,115847 -k1,2345:22256517,27387630:-3171960 -) -(1,2345:22256517,27387630:3171960,452978,115847 -k1,2345:22256517,27387630:3277 -h1,2345:25425200,27387630:0,411205,112570 -) -g1,2345:25627706,27387630 -k1,2346:32583029,27387630:3693596 -g1,2346:32583029,27387630 -) -v1,2348:6630773,28485026:0,393216,0 -(1,2369:6630773,34939239:25952256,6847429,196608 -g1,2369:6630773,34939239 -g1,2369:6630773,34939239 -g1,2369:6434165,34939239 -(1,2369:6434165,34939239:0,6847429,196608 -r1,2378:32779637,34939239:26345472,7044037,196608 -k1,2369:6434165,34939239:-26345472 -) -(1,2369:6434165,34939239:26345472,6847429,196608 -[1,2369:6630773,34939239:25952256,6650821,0 -(1,2350:6630773,28692644:25952256,404226,4718 -(1,2349:6630773,28692644:0,0,0 -g1,2349:6630773,28692644 -g1,2349:6630773,28692644 -g1,2349:6303093,28692644 -(1,2349:6303093,28692644:0,0,0 -) -g1,2349:6630773,28692644 -) -g1,2350:7263065,28692644 -g1,2350:8211503,28692644 -h1,2350:9159940,28692644:0,0,0 -k1,2350:32583028,28692644:23423088 -g1,2350:32583028,28692644 -) -(1,2351:6630773,29358822:25952256,284164,4718 -h1,2351:6630773,29358822:0,0,0 -h1,2351:6946919,29358822:0,0,0 -k1,2351:32583029,29358822:25636110 -g1,2351:32583029,29358822 -) -(1,2355:6630773,30090536:25952256,404226,76021 -(1,2353:6630773,30090536:0,0,0 -g1,2353:6630773,30090536 -g1,2353:6630773,30090536 -g1,2353:6303093,30090536 -(1,2353:6303093,30090536:0,0,0 -) -g1,2353:6630773,30090536 -) -g1,2355:7579210,30090536 -g1,2355:8843793,30090536 -h1,2355:9792230,30090536:0,0,0 -k1,2355:32583030,30090536:22790800 -g1,2355:32583030,30090536 -) -(1,2357:6630773,31412074:25952256,404226,6290 -(1,2356:6630773,31412074:0,0,0 -g1,2356:6630773,31412074 -g1,2356:6630773,31412074 -g1,2356:6303093,31412074 -(1,2356:6303093,31412074:0,0,0 -) -g1,2356:6630773,31412074 -) -g1,2357:7263065,31412074 -g1,2357:8211503,31412074 -h1,2357:9159941,31412074:0,0,0 -k1,2357:32583029,31412074:23423088 -g1,2357:32583029,31412074 -) -(1,2358:6630773,32078252:25952256,404226,6290 -h1,2358:6630773,32078252:0,0,0 -h1,2358:6946919,32078252:0,0,0 -k1,2358:32583029,32078252:25636110 -g1,2358:32583029,32078252 -) -(1,2362:6630773,32809966:25952256,404226,76021 -(1,2360:6630773,32809966:0,0,0 -g1,2360:6630773,32809966 -g1,2360:6630773,32809966 -g1,2360:6303093,32809966 -(1,2360:6303093,32809966:0,0,0 -) -g1,2360:6630773,32809966 -) -g1,2362:7579210,32809966 -g1,2362:8843793,32809966 -h1,2362:9792230,32809966:0,0,0 -k1,2362:32583030,32809966:22790800 -g1,2362:32583030,32809966 -) -(1,2364:6630773,34131504:25952256,404226,6290 -(1,2363:6630773,34131504:0,0,0 -g1,2363:6630773,34131504 -g1,2363:6630773,34131504 -g1,2363:6303093,34131504 -(1,2363:6303093,34131504:0,0,0 -) -g1,2363:6630773,34131504 -) -g1,2364:7263065,34131504 -g1,2364:8211502,34131504 -h1,2364:8527648,34131504:0,0,0 -k1,2364:32583028,34131504:24055380 -g1,2364:32583028,34131504 -) -(1,2368:6630773,34863218:25952256,404226,76021 -(1,2366:6630773,34863218:0,0,0 -g1,2366:6630773,34863218 -g1,2366:6630773,34863218 -g1,2366:6303093,34863218 -(1,2366:6303093,34863218:0,0,0 -) -g1,2366:6630773,34863218 -) -g1,2368:7579210,34863218 -g1,2368:8843793,34863218 -h1,2368:10108376,34863218:0,0,0 -k1,2368:32583028,34863218:22474652 -g1,2368:32583028,34863218 -) -] -) -g1,2369:32583029,34939239 -g1,2369:6630773,34939239 -g1,2369:6630773,34939239 -g1,2369:32583029,34939239 -g1,2369:32583029,34939239 -) -h1,2369:6630773,35135847:0,0,0 -v1,2373:6630773,36839772:0,393216,0 -(1,2374:6630773,45090731:25952256,8644175,616038 -g1,2374:6630773,45090731 -(1,2374:6630773,45090731:25952256,8644175,616038 -(1,2374:6630773,45706769:25952256,9260213,0 -[1,2374:6630773,45706769:25952256,9260213,0 -(1,2374:6630773,45680555:25952256,9207785,0 -r1,2378:6656987,45680555:26214,9207785,0 -[1,2374:6656987,45680555:25899828,9207785,0 -(1,2374:6656987,45090731:25899828,8028137,0 -[1,2374:7246811,45090731:24720180,8028137,0 -(1,2374:7246811,38224479:24720180,1161885,196608 -(1,2373:7246811,38224479:0,1161885,196608 -r1,2378:8794447,38224479:1547636,1358493,196608 -k1,2373:7246811,38224479:-1547636 -) -(1,2373:7246811,38224479:1547636,1161885,196608 -) -k1,2373:8964632,38224479:170185 -k1,2373:9762652,38224479:170185 -k1,2373:11684613,38224479:170184 -k1,2373:14931058,38224479:170185 -k1,2373:18447511,38224479:170185 -k1,2373:20925874,38224479:170185 -k1,2373:21755351,38224479:170185 -k1,2373:25230517,38224479:170185 -k1,2373:26392261,38224479:170184 -k1,2373:28978103,38224479:170185 -k1,2373:30715909,38224479:170185 -k1,2374:31966991,38224479:0 -) -(1,2374:7246811,39065967:24720180,513147,134348 -k1,2373:8772430,39065967:255531 -k1,2373:9687253,39065967:255531 -k1,2373:12917462,39065967:255530 -k1,2373:15542775,39065967:255531 -k1,2373:16426141,39065967:255531 -k1,2373:18378399,39065967:255531 -k1,2373:21980198,39065967:255531 -k1,2373:25210408,39065967:255531 -k1,2373:27774116,39065967:255530 -k1,2373:29647076,39065967:255531 -k1,2373:30515369,39065967:255531 -k1,2373:31966991,39065967:0 -) -(1,2374:7246811,39907455:24720180,513147,134348 -k1,2373:9261567,39907455:265600 -k1,2373:12141397,39907455:265599 -k1,2373:12762857,39907455:265600 -k1,2373:14901475,39907455:265599 -k1,2373:18315425,39907455:265600 -k1,2373:20270542,39907455:265599 -k1,2373:22844320,39907455:265600 -k1,2373:23769211,39907455:265599 -k1,2373:27009490,39907455:265600 -k1,2373:29471200,39907455:265599 -k1,2373:31354229,39907455:265600 -k1,2373:31966991,39907455:0 -) -(1,2374:7246811,40748943:24720180,513147,134348 -k1,2373:8899137,40748943:200704 -k1,2373:10848997,40748943:200704 -k1,2373:13663932,40748943:200704 -k1,2373:16060747,40748943:200704 -k1,2373:16920743,40748943:200704 -k1,2373:20426428,40748943:200704 -k1,2373:21286424,40748943:200704 -k1,2373:23829385,40748943:200704 -k1,2373:26547327,40748943:200704 -k1,2373:28241597,40748943:200704 -k1,2373:29128463,40748943:200704 -k1,2373:31284106,40748943:200704 -k1,2373:31966991,40748943:0 -) -(1,2374:7246811,41590431:24720180,513147,126483 -k1,2373:10802405,41590431:259133 -k1,2373:11539296,41590431:259134 -k1,2373:12968902,41590431:259133 -k1,2373:14219596,41590431:259134 -k1,2373:16971063,41590431:259133 -k1,2373:18624147,41590431:259133 -k1,2373:19336730,41590431:259074 -k1,2373:20278748,41590431:259133 -k1,2373:21994747,41590431:259134 -k1,2373:23424353,41590431:259133 -k1,2373:25213752,41590431:259133 -k1,2373:26124314,41590431:259134 -k1,2373:27891430,41590431:259133 -k1,2373:28766602,41590431:259134 -k1,2373:30682485,41590431:259133 -k1,2374:31966991,41590431:0 -) -(1,2374:7246811,42431919:24720180,505283,126483 -k1,2373:8481271,42431919:276979 -(1,2373:8481271,42431919:0,452978,115847 -r1,2378:9894672,42431919:1413401,568825,115847 -k1,2373:8481271,42431919:-1413401 -) -(1,2373:8481271,42431919:1413401,452978,115847 -k1,2373:8481271,42431919:3277 -h1,2373:9891395,42431919:0,411205,112570 -) -k1,2373:10171650,42431919:276978 -k1,2373:11640074,42431919:276979 -k1,2373:12835867,42431919:276978 -(1,2373:12835867,42431919:0,452978,115847 -r1,2378:16007827,42431919:3171960,568825,115847 -k1,2373:12835867,42431919:-3171960 -) -(1,2373:12835867,42431919:3171960,452978,115847 -k1,2373:12835867,42431919:3277 -h1,2373:16004550,42431919:0,411205,112570 -) -k1,2373:16284806,42431919:276979 -k1,2373:17553345,42431919:276979 -k1,2373:18896594,42431919:276978 -k1,2373:22478554,42431919:276979 -k1,2373:23946978,42431919:276979 -k1,2373:25508462,42431919:276978 -k1,2373:26401479,42431919:276979 -k1,2373:27266970,42431919:276978 -(1,2373:27266970,42431919:0,452978,115847 -r1,2378:30438930,42431919:3171960,568825,115847 -k1,2373:27266970,42431919:-3171960 -) -(1,2373:27266970,42431919:3171960,452978,115847 -k1,2373:27266970,42431919:3277 -h1,2373:30435653,42431919:0,411205,112570 -) -k1,2373:30715909,42431919:276979 -k1,2374:31966991,42431919:0 -) -(1,2374:7246811,43273407:24720180,513147,134348 -k1,2373:8706147,43273407:189248 -k1,2373:9886955,43273407:189248 -k1,2373:12384380,43273407:189247 -k1,2373:13232920,43273407:189248 -k1,2373:16396847,43273407:189248 -k1,2373:18955877,43273407:189248 -k1,2373:19772959,43273407:189247 -k1,2373:22593478,43273407:189248 -k1,2373:23434154,43273407:189248 -k1,2373:25320129,43273407:189248 -k1,2373:27211346,43273407:189247 -k1,2373:30746862,43273407:189248 -k1,2373:31552148,43273407:189248 -k1,2374:31966991,43273407:0 -) -(1,2374:7246811,44114895:24720180,513147,126483 -k1,2373:9097250,44114895:195655 -k1,2373:9824401,44114895:195654 -k1,2373:10829426,44114895:195655 -k1,2373:14463100,44114895:195655 -k1,2373:16213923,44114895:195654 -k1,2373:17357229,44114895:195655 -k1,2373:19861061,44114895:195654 -k1,2373:20716008,44114895:195655 -k1,2373:24104577,44114895:195655 -k1,2373:27605212,44114895:195654 -k1,2373:28992312,44114895:195655 -k1,2373:31966991,44114895:0 -) -(1,2374:7246811,44956383:24720180,513147,134348 -g1,2373:10534096,44956383 -g1,2373:13527125,44956383 -g1,2373:14342392,44956383 -g1,2373:16724625,44956383 -g1,2373:17606739,44956383 -g1,2373:19678987,44956383 -g1,2373:22026486,44956383 -g1,2373:23217275,44956383 -g1,2373:24482775,44956383 -k1,2374:31966991,44956383:4548203 -g1,2374:31966991,44956383 -) -] -) -] -r1,2378:32583029,45680555:26214,9207785,0 -) -] -) -) -g1,2374:32583029,45090731 -) -h1,2374:6630773,45706769:0,0,0 -] -(1,2378:32583029,45706769:0,0,0 -g1,2378:32583029,45706769 -) -) -] -(1,2378:6630773,47279633:25952256,0,0 -h1,2378:6630773,47279633:25952256,0,0 -) -] -(1,2378:4262630,4025873:0,0,0 -[1,2378:-473656,4025873:0,0,0 -(1,2378:-473656,-710413:0,0,0 -(1,2378:-473656,-710413:0,0,0 -g1,2378:-473656,-710413 -) -g1,2378:-473656,-710413 -) -] -) -] -!21688 -}54 -Input:417:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:418:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:419:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:420:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:421:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:422:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:423:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:424:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:425:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:426:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:427:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:428:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:429:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1194 -{55 -[1,2440:4262630,47279633:28320399,43253760,0 -(1,2440:4262630,4025873:0,0,0 -[1,2440:-473656,4025873:0,0,0 -(1,2440:-473656,-710413:0,0,0 -(1,2440:-473656,-644877:0,0,0 -k1,2440:-473656,-644877:-65536 -) -(1,2440:-473656,4736287:0,0,0 -k1,2440:-473656,4736287:5209943 -) -g1,2440:-473656,-710413 -) -] -) -[1,2440:6630773,47279633:25952256,43253760,0 -[1,2440:6630773,4812305:25952256,786432,0 -(1,2440:6630773,4812305:25952256,505283,134348 -(1,2440:6630773,4812305:25952256,505283,134348 -g1,2440:3078558,4812305 -[1,2440:3078558,4812305:0,0,0 -(1,2440:3078558,2439708:0,1703936,0 -k1,2440:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,2440:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,2440:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,2440:3078558,4812305:0,0,0 -(1,2440:3078558,2439708:0,1703936,0 -g1,2440:29030814,2439708 -g1,2440:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,2440:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,2440:37855564,2439708:1179648,16384,0 -) -) -k1,2440:3078556,2439708:-34777008 -) -] -[1,2440:3078558,4812305:0,0,0 -(1,2440:3078558,49800853:0,16384,2228224 -k1,2440:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,2440:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,2440:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,2440:3078558,4812305:0,0,0 -(1,2440:3078558,49800853:0,16384,2228224 -g1,2440:29030814,49800853 -g1,2440:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,2440:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,2440:37855564,49800853:1179648,16384,0 -) -) -k1,2440:3078556,49800853:-34777008 -) -] -g1,2440:6630773,4812305 -k1,2440:19515153,4812305:12087462 -g1,2440:20901894,4812305 -g1,2440:21550700,4812305 -g1,2440:24864855,4812305 -g1,2440:27600327,4812305 -g1,2440:29010006,4812305 -) -) -] -[1,2440:6630773,45706769:25952256,40108032,0 -(1,2440:6630773,45706769:25952256,40108032,0 -(1,2440:6630773,45706769:0,0,0 -g1,2440:6630773,45706769 -) -[1,2440:6630773,45706769:25952256,40108032,0 -(1,2378:6630773,6254097:25952256,513147,134348 -h1,2376:6630773,6254097:983040,0,0 -k1,2376:12356653,6254097:166461 -k1,2376:15497794,6254097:166462 -k1,2376:17972433,6254097:166461 -k1,2376:18798187,6254097:166462 -k1,2376:20977914,6254097:166461 -k1,2376:22301086,6254097:166462 -k1,2376:23960457,6254097:166461 -k1,2376:25193190,6254097:166462 -k1,2376:26895160,6254097:166461 -k1,2376:27417482,6254097:166462 -k1,2376:29608350,6254097:166461 -k1,2376:32583029,6254097:0 -) -(1,2378:6630773,6920275:25952256,505283,134348 -g1,2376:8869482,6920275 -g1,2376:9526808,6920275 -g1,2376:11591847,6920275 -g1,2376:14118259,6920275 -g1,2376:14673348,6920275 -g1,2376:16896984,6920275 -g1,2376:19247760,6920275 -k1,2378:32583029,6920275:13335269 -g1,2378:32583029,6920275 -) -v1,2378:6630773,8063095:0,393216,0 -(1,2389:6630773,11774617:25952256,4104738,196608 -g1,2389:6630773,11774617 -g1,2389:6630773,11774617 -g1,2389:6434165,11774617 -(1,2389:6434165,11774617:0,4104738,196608 -r1,2440:32779637,11774617:26345472,4301346,196608 -k1,2389:6434165,11774617:-26345472 -) -(1,2389:6434165,11774617:26345472,4104738,196608 -[1,2389:6630773,11774617:25952256,3908130,0 -(1,2380:6630773,8270713:25952256,404226,4718 -(1,2379:6630773,8270713:0,0,0 -g1,2379:6630773,8270713 -g1,2379:6630773,8270713 -g1,2379:6303093,8270713 -(1,2379:6303093,8270713:0,0,0 -) -g1,2379:6630773,8270713 -) -g1,2380:7263065,8270713 -g1,2380:8211503,8270713 -h1,2380:9159941,8270713:0,0,0 -k1,2380:32583029,8270713:23423088 -g1,2380:32583029,8270713 -) -(1,2381:6630773,8936891:25952256,410518,107478 -h1,2381:6630773,8936891:0,0,0 -g1,2381:7263065,8936891 -g1,2381:8211503,8936891 -h1,2381:10740668,8936891:0,0,0 -k1,2381:32583028,8936891:21842360 -g1,2381:32583028,8936891 -) -(1,2382:6630773,9603069:25952256,404226,9436 -h1,2382:6630773,9603069:0,0,0 -g1,2382:7263065,9603069 -g1,2382:8211503,9603069 -h1,2382:9792231,9603069:0,0,0 -k1,2382:32583029,9603069:22790798 -g1,2382:32583029,9603069 -) -(1,2383:6630773,10269247:25952256,404226,82312 -h1,2383:6630773,10269247:0,0,0 -g1,2383:7263065,10269247 -g1,2383:8211503,10269247 -g1,2383:9792232,10269247 -g1,2383:10740670,10269247 -h1,2383:11372961,10269247:0,0,0 -k1,2383:32583029,10269247:21210068 -g1,2383:32583029,10269247 -) -(1,2384:6630773,10935425:25952256,404226,6290 -h1,2384:6630773,10935425:0,0,0 -h1,2384:6946919,10935425:0,0,0 -k1,2384:32583029,10935425:25636110 -g1,2384:32583029,10935425 -) -(1,2388:6630773,11667139:25952256,410518,107478 -(1,2386:6630773,11667139:0,0,0 -g1,2386:6630773,11667139 -g1,2386:6630773,11667139 -g1,2386:6303093,11667139 -(1,2386:6303093,11667139:0,0,0 -) -g1,2386:6630773,11667139 -) -g1,2388:7579210,11667139 -g1,2388:8843793,11667139 -g1,2388:10108376,11667139 -g1,2388:10424522,11667139 -g1,2388:10740668,11667139 -g1,2388:11056814,11667139 -g1,2388:11372960,11667139 -g1,2388:11689106,11667139 -g1,2388:14534417,11667139 -h1,2388:16115145,11667139:0,0,0 -k1,2388:32583029,11667139:16467884 -g1,2388:32583029,11667139 -) -] -) -g1,2389:32583029,11774617 -g1,2389:6630773,11774617 -g1,2389:6630773,11774617 -g1,2389:32583029,11774617 -g1,2389:32583029,11774617 -) -h1,2389:6630773,11971225:0,0,0 -(1,2393:6630773,13289354:25952256,513147,134348 -h1,2392:6630773,13289354:983040,0,0 -k1,2392:10042160,13289354:219784 -k1,2392:11434383,13289354:219784 -k1,2392:14416509,13289354:219783 -k1,2392:17854766,13289354:219784 -k1,2392:20858519,13289354:219784 -k1,2392:23124337,13289354:219784 -k1,2392:23802218,13289354:219784 -k1,2392:26651962,13289354:219784 -k1,2392:27523173,13289354:219783 -k1,2392:29958074,13289354:219784 -k1,2392:31196943,13289354:219784 -k1,2392:32583029,13289354:0 -) -(1,2393:6630773,14130842:25952256,513147,134348 -g1,2392:7489294,14130842 -g1,2392:9836793,14130842 -g1,2392:11549248,14130842 -g1,2392:12434639,14130842 -g1,2392:15852341,14130842 -g1,2392:16776398,14130842 -g1,2392:18260133,14130842 -g1,2392:20161332,14130842 -g1,2392:22508831,14130842 -g1,2392:23812342,14130842 -g1,2392:24759337,14130842 -g1,2392:27716976,14130842 -g1,2392:28532243,14130842 -g1,2392:29087332,14130842 -k1,2393:32583029,14130842:1456217 -g1,2393:32583029,14130842 -) -v1,2395:6630773,15273662:0,393216,0 -(1,2410:6630773,19674623:25952256,4794177,196608 -g1,2410:6630773,19674623 -g1,2410:6630773,19674623 -g1,2410:6434165,19674623 -(1,2410:6434165,19674623:0,4794177,196608 -r1,2440:32779637,19674623:26345472,4990785,196608 -k1,2410:6434165,19674623:-26345472 -) -(1,2410:6434165,19674623:26345472,4794177,196608 -[1,2410:6630773,19674623:25952256,4597569,0 -(1,2397:6630773,15481280:25952256,404226,6290 -(1,2396:6630773,15481280:0,0,0 -g1,2396:6630773,15481280 -g1,2396:6630773,15481280 -g1,2396:6303093,15481280 -(1,2396:6303093,15481280:0,0,0 -) -g1,2396:6630773,15481280 -) -g1,2397:7263065,15481280 -g1,2397:8211503,15481280 -g1,2397:9476086,15481280 -g1,2397:11056815,15481280 -g1,2397:13585981,15481280 -g1,2397:15166710,15481280 -g1,2397:16115147,15481280 -g1,2397:17695876,15481280 -h1,2397:18644313,15481280:0,0,0 -k1,2397:32583029,15481280:13938716 -g1,2397:32583029,15481280 -) -(1,2398:6630773,16147458:25952256,284164,4718 -h1,2398:6630773,16147458:0,0,0 -h1,2398:6946919,16147458:0,0,0 -k1,2398:32583029,16147458:25636110 -g1,2398:32583029,16147458 -) -(1,2402:6630773,16879172:25952256,404226,76021 -(1,2400:6630773,16879172:0,0,0 -g1,2400:6630773,16879172 -g1,2400:6630773,16879172 -g1,2400:6303093,16879172 -(1,2400:6303093,16879172:0,0,0 -) -g1,2400:6630773,16879172 -) -g1,2402:7579210,16879172 -g1,2402:8843793,16879172 -g1,2402:10108376,16879172 -g1,2402:11689105,16879172 -g1,2402:14218271,16879172 -g1,2402:15799000,16879172 -g1,2402:16747437,16879172 -g1,2402:18328166,16879172 -h1,2402:19276603,16879172:0,0,0 -k1,2402:32583029,16879172:13306426 -g1,2402:32583029,16879172 -) -(1,2404:6630773,18200710:25952256,404226,6290 -(1,2403:6630773,18200710:0,0,0 -g1,2403:6630773,18200710 -g1,2403:6630773,18200710 -g1,2403:6303093,18200710 -(1,2403:6303093,18200710:0,0,0 -) -g1,2403:6630773,18200710 -) -g1,2404:7263065,18200710 -g1,2404:8211503,18200710 -g1,2404:9476086,18200710 -g1,2404:11056815,18200710 -g1,2404:13585981,18200710 -g1,2404:15166710,18200710 -g1,2404:16115147,18200710 -g1,2404:17695876,18200710 -h1,2404:18644313,18200710:0,0,0 -k1,2404:32583029,18200710:13938716 -g1,2404:32583029,18200710 -) -(1,2405:6630773,18866888:25952256,404226,6290 -h1,2405:6630773,18866888:0,0,0 -h1,2405:6946919,18866888:0,0,0 -k1,2405:32583029,18866888:25636110 -g1,2405:32583029,18866888 -) -(1,2409:6630773,19598602:25952256,404226,76021 -(1,2407:6630773,19598602:0,0,0 -g1,2407:6630773,19598602 -g1,2407:6630773,19598602 -g1,2407:6303093,19598602 -(1,2407:6303093,19598602:0,0,0 -) -g1,2407:6630773,19598602 -) -g1,2409:7579210,19598602 -g1,2409:8843793,19598602 -g1,2409:10108376,19598602 -g1,2409:11689105,19598602 -g1,2409:14850562,19598602 -g1,2409:16431291,19598602 -g1,2409:17379728,19598602 -g1,2409:18960457,19598602 -h1,2409:19908894,19598602:0,0,0 -k1,2409:32583029,19598602:12674135 -g1,2409:32583029,19598602 -) -] -) -g1,2410:32583029,19674623 -g1,2410:6630773,19674623 -g1,2410:6630773,19674623 -g1,2410:32583029,19674623 -g1,2410:32583029,19674623 -) -h1,2410:6630773,19871231:0,0,0 -(1,2414:6630773,21189361:25952256,513147,134348 -h1,2413:6630773,21189361:983040,0,0 -k1,2413:9011415,21189361:200915 -k1,2413:10914299,21189361:200914 -k1,2413:13263484,21189361:200915 -k1,2413:14455959,21189361:200915 -k1,2413:15723144,21189361:200914 -k1,2413:17245920,21189361:200915 -k1,2413:18106126,21189361:200914 -k1,2413:19326126,21189361:200915 -k1,2413:21566521,21189361:200915 -k1,2413:23147623,21189361:200914 -k1,2413:24340098,21189361:200915 -k1,2413:28359796,21189361:200915 -k1,2413:30073936,21189361:200914 -k1,2413:30926279,21189361:200915 -k1,2413:32583029,21189361:0 -) -(1,2414:6630773,22030849:25952256,505283,126483 -k1,2413:7900923,22030849:251065 -k1,2413:11894094,22030849:251065 -k1,2413:12963048,22030849:251065 -k1,2413:14384586,22030849:251065 -k1,2413:15739933,22030849:251065 -k1,2413:17015981,22030849:251065 -k1,2413:18965084,22030849:251065 -(1,2413:18965084,22030849:0,452978,115847 -r1,2440:19323350,22030849:358266,568825,115847 -k1,2413:18965084,22030849:-358266 -) -(1,2413:18965084,22030849:358266,452978,115847 -k1,2413:18965084,22030849:3277 -h1,2413:19320073,22030849:0,411205,112570 -) -k1,2413:19574415,22030849:251065 -k1,2413:20356977,22030849:251065 -k1,2413:22958163,22030849:251065 -k1,2413:25403373,22030849:251065 -k1,2413:28959419,22030849:251065 -k1,2413:30314766,22030849:251065 -k1,2413:31313597,22030849:251065 -k1,2414:32583029,22030849:0 -) -(1,2414:6630773,22872337:25952256,513147,134348 -k1,2413:9647832,22872337:263892 -k1,2413:11647116,22872337:263891 -k1,2413:14346326,22872337:263892 -k1,2413:18354289,22872337:263891 -k1,2413:20450568,22872337:263892 -k1,2413:21706019,22872337:263891 -k1,2413:24201412,22872337:263892 -k1,2413:25124595,22872337:263891 -k1,2413:27201213,22872337:263892 -k1,2413:28656549,22872337:263891 -k1,2413:30318324,22872337:263892 -k1,2413:31450567,22872337:263891 -k1,2413:32583029,22872337:0 -) -(1,2414:6630773,23713825:25952256,513147,134348 -k1,2413:8465985,23713825:174530 -k1,2413:9869316,23713825:174531 -k1,2413:11580010,23713825:174530 -k1,2413:13037736,23713825:174531 -k1,2413:14380773,23713825:174530 -h1,2413:14587867,23713825:0,0,0 -k1,2413:15759856,23713825:174531 -k1,2413:17125831,23713825:174530 -k1,2413:18313548,23713825:174530 -h1,2413:18520642,23713825:0,0,0 -k1,2413:19866301,23713825:174531 -h1,2413:19866301,23713825:0,0,0 -k1,2413:20831195,23713825:174530 -k1,2413:22024811,23713825:174531 -k1,2413:24334504,23713825:174530 -k1,2413:26005222,23713825:174531 -k1,2413:27127403,23713825:174530 -k1,2413:27657794,23713825:174531 -k1,2413:30926279,23713825:174530 -k1,2413:32583029,23713825:0 -) -(1,2414:6630773,24555313:25952256,513147,134348 -k1,2413:8823648,24555313:182886 -k1,2413:9362395,24555313:182887 -k1,2413:11411091,24555313:182886 -k1,2413:12785423,24555313:182887 -h1,2413:12785423,24555313:0,0,0 -k1,2413:13758673,24555313:182886 -k1,2413:14960645,24555313:182887 -k1,2413:17278694,24555313:182886 -k1,2413:18957767,24555313:182886 -k1,2413:20088305,24555313:182887 -k1,2413:20627051,24555313:182886 -k1,2413:22682957,24555313:182887 -k1,2413:25984701,24555313:182886 -h1,2413:25984701,24555313:0,0,0 -k1,2413:26736440,24555313:182887 -k1,2413:27872875,24555313:182886 -k1,2413:29341578,24555313:182887 -k1,2413:31185146,24555313:182886 -k1,2413:32583029,24555313:0 -) -(1,2414:6630773,25396801:25952256,513147,134348 -k1,2413:7928303,25396801:278445 -k1,2413:10969092,25396801:278446 -k1,2413:14007258,25396801:278445 -k1,2413:14952859,25396801:278445 -(1,2413:14952859,25396801:0,452978,115847 -r1,2440:17421396,25396801:2468537,568825,115847 -k1,2413:14952859,25396801:-2468537 -) -(1,2413:14952859,25396801:2468537,452978,115847 -k1,2413:14952859,25396801:3277 -h1,2413:17418119,25396801:0,411205,112570 -) -k1,2413:17699842,25396801:278446 -k1,2413:19169732,25396801:278445 -(1,2413:19169732,25396801:0,452978,115847 -r1,2440:20934845,25396801:1765113,568825,115847 -k1,2413:19169732,25396801:-1765113 -) -(1,2413:19169732,25396801:1765113,452978,115847 -k1,2413:19169732,25396801:3277 -h1,2413:20931568,25396801:0,411205,112570 -) -k1,2413:21386961,25396801:278446 -k1,2413:23059357,25396801:278445 -(1,2413:23059357,25396801:0,452978,115847 -r1,2440:24824470,25396801:1765113,568825,115847 -k1,2413:23059357,25396801:-1765113 -) -(1,2413:23059357,25396801:1765113,452978,115847 -k1,2413:23059357,25396801:3277 -h1,2413:24821193,25396801:0,411205,112570 -) -k1,2413:25102915,25396801:278445 -k1,2413:29150336,25396801:278446 -k1,2413:30447866,25396801:278445 -k1,2413:32583029,25396801:0 -) -(1,2414:6630773,26238289:25952256,505283,134348 -g1,2413:10100249,26238289 -g1,2413:11490923,26238289 -(1,2413:11490923,26238289:0,452978,115847 -r1,2440:13959460,26238289:2468537,568825,115847 -k1,2413:11490923,26238289:-2468537 -) -(1,2413:11490923,26238289:2468537,452978,115847 -k1,2413:11490923,26238289:3277 -h1,2413:13956183,26238289:0,411205,112570 -) -g1,2413:14158689,26238289 -g1,2413:17643238,26238289 -g1,2413:19481522,26238289 -g1,2413:20366913,26238289 -k1,2414:32583029,26238289:9619580 -g1,2414:32583029,26238289 -) -v1,2416:6630773,27381108:0,393216,0 -(1,2431:6630773,31813527:25952256,4825635,196608 -g1,2431:6630773,31813527 -g1,2431:6630773,31813527 -g1,2431:6434165,31813527 -(1,2431:6434165,31813527:0,4825635,196608 -r1,2440:32779637,31813527:26345472,5022243,196608 -k1,2431:6434165,31813527:-26345472 -) -(1,2431:6434165,31813527:26345472,4825635,196608 -[1,2431:6630773,31813527:25952256,4629027,0 -(1,2418:6630773,27595018:25952256,410518,101187 -(1,2417:6630773,27595018:0,0,0 -g1,2417:6630773,27595018 -g1,2417:6630773,27595018 -g1,2417:6303093,27595018 -(1,2417:6303093,27595018:0,0,0 -) -g1,2417:6630773,27595018 -) -g1,2418:7263065,27595018 -g1,2418:8211503,27595018 -h1,2418:15798999,27595018:0,0,0 -k1,2418:32583029,27595018:16784030 -g1,2418:32583029,27595018 -) -(1,2419:6630773,28261196:25952256,404226,101187 -h1,2419:6630773,28261196:0,0,0 -k1,2419:6630773,28261196:0 -h1,2419:9159938,28261196:0,0,0 -k1,2419:32583030,28261196:23423092 -g1,2419:32583030,28261196 -) -(1,2423:6630773,28992910:25952256,410518,101187 -(1,2421:6630773,28992910:0,0,0 -g1,2421:6630773,28992910 -g1,2421:6630773,28992910 -g1,2421:6303093,28992910 -(1,2421:6303093,28992910:0,0,0 -) -g1,2421:6630773,28992910 -) -g1,2423:7579210,28992910 -g1,2423:8843793,28992910 -h1,2423:16431289,28992910:0,0,0 -k1,2423:32583029,28992910:16151740 -g1,2423:32583029,28992910 -) -(1,2425:6630773,30314448:25952256,404226,76021 -(1,2424:6630773,30314448:0,0,0 -g1,2424:6630773,30314448 -g1,2424:6630773,30314448 -g1,2424:6303093,30314448 -(1,2424:6303093,30314448:0,0,0 -) -g1,2424:6630773,30314448 -) -k1,2425:6630773,30314448:0 -h1,2425:8527647,30314448:0,0,0 -k1,2425:32583029,30314448:24055382 -g1,2425:32583029,30314448 -) -(1,2430:6630773,31046162:25952256,404226,6290 -(1,2427:6630773,31046162:0,0,0 -g1,2427:6630773,31046162 -g1,2427:6630773,31046162 -g1,2427:6303093,31046162 -(1,2427:6303093,31046162:0,0,0 -) -g1,2427:6630773,31046162 -) -g1,2430:7579210,31046162 -h1,2430:8527647,31046162:0,0,0 -k1,2430:32583029,31046162:24055382 -g1,2430:32583029,31046162 -) -(1,2430:6630773,31712340:25952256,410518,101187 -h1,2430:6630773,31712340:0,0,0 -g1,2430:7579210,31712340 -g1,2430:8843793,31712340 -g1,2430:11056813,31712340 -h1,2430:11372959,31712340:0,0,0 -k1,2430:32583029,31712340:21210070 -g1,2430:32583029,31712340 -) -] -) -g1,2431:32583029,31813527 -g1,2431:6630773,31813527 -g1,2431:6630773,31813527 -g1,2431:32583029,31813527 -g1,2431:32583029,31813527 -) -h1,2431:6630773,32010135:0,0,0 -(1,2436:6630773,33328265:25952256,505283,134348 -h1,2434:6630773,33328265:983040,0,0 -k1,2434:9005275,33328265:194775 -k1,2434:11283441,33328265:194776 -k1,2434:13213610,33328265:194775 -k1,2434:15004843,33328265:194776 -k1,2434:16575219,33328265:194775 -k1,2434:17386033,33328265:194776 -k1,2434:19272948,33328265:194775 -k1,2434:22340822,33328265:194776 -k1,2434:23221759,33328265:194775 -k1,2434:25114573,33328265:194776 -k1,2434:27044741,33328265:194775 -(1,2434:27044741,33328265:0,452978,115847 -r1,2440:28809854,33328265:1765113,568825,115847 -k1,2434:27044741,33328265:-1765113 -) -(1,2434:27044741,33328265:1765113,452978,115847 -k1,2434:27044741,33328265:3277 -h1,2434:28806577,33328265:0,411205,112570 -) -k1,2434:29004630,33328265:194776 -k1,2434:29850833,33328265:194775 -k1,2434:32583029,33328265:0 -) -(1,2436:6630773,34169753:25952256,505283,134348 -k1,2434:7818941,34169753:169083 -k1,2434:10320450,34169753:169083 -k1,2434:11531555,34169753:169083 -k1,2434:14535725,34169753:169083 -k1,2434:15723893,34169753:169083 -k1,2434:18557670,34169753:169083 -k1,2434:20861915,34169753:169082 -h1,2434:21069009,34169753:0,0,0 -k1,2434:22235550,34169753:169083 -k1,2434:23508915,34169753:169083 -k1,2434:24425764,34169753:169083 -k1,2434:27919488,34169753:169083 -k1,2434:28704609,34169753:169083 -k1,2434:31069803,34169753:169083 -k1,2434:32583029,34169753:0 -) -(1,2436:6630773,35011241:25952256,513147,126483 -g1,2434:7777653,35011241 -g1,2434:11129819,35011241 -g1,2434:12596514,35011241 -g1,2434:13478628,35011241 -g1,2434:15191739,35011241 -g1,2434:16007006,35011241 -g1,2434:16562095,35011241 -g1,2434:18038621,35011241 -g1,2434:18889278,35011241 -g1,2434:20502774,35011241 -g1,2434:22341058,35011241 -g1,2434:23927684,35011241 -g1,2434:25299352,35011241 -g1,2434:26181466,35011241 -g1,2434:28030892,35011241 -g1,2434:29902600,35011241 -k1,2436:32583029,35011241:2680429 -g1,2436:32583029,35011241 -) -(1,2437:6630773,37818809:25952256,32768,229376 -(1,2437:6630773,37818809:0,32768,229376 -(1,2437:6630773,37818809:5505024,32768,229376 -r1,2440:12135797,37818809:5505024,262144,229376 -) -k1,2437:6630773,37818809:-5505024 -) -(1,2437:6630773,37818809:25952256,32768,0 -r1,2440:32583029,37818809:25952256,32768,0 -) -) -(1,2437:6630773,39423137:25952256,615776,161218 -(1,2437:6630773,39423137:1974731,582746,14155 -g1,2437:6630773,39423137 -g1,2437:8605504,39423137 -) -g1,2437:10368685,39423137 -g1,2437:13231298,39423137 -g1,2437:14941001,39423137 -g1,2437:17545664,39423137 -g1,2437:18603415,39423137 -k1,2437:32583029,39423137:11126439 -g1,2437:32583029,39423137 -) -(1,2440:6630773,40657841:25952256,513147,126483 -k1,2439:9766999,40657841:193659 -k1,2439:11435873,40657841:193659 -k1,2439:11985391,40657841:193658 -k1,2439:13902647,40657841:193659 -k1,2439:15380812,40657841:193659 -k1,2439:18276520,40657841:193659 -k1,2439:19279548,40657841:193658 -k1,2439:21021823,40657841:193659 -k1,2439:21746979,40657841:193659 -k1,2439:23978808,40657841:193659 -k1,2439:24788505,40657841:193659 -k1,2439:26794889,40657841:193658 -k1,2439:28059406,40657841:193659 -k1,2439:31015408,40657841:193659 -k1,2439:32583029,40657841:0 -) -(1,2440:6630773,41499329:25952256,513147,134348 -k1,2439:8593576,41499329:260833 -k1,2439:12200677,41499329:260833 -k1,2439:16107279,41499329:260834 -k1,2439:17019540,41499329:260833 -k1,2439:17636233,41499329:260833 -k1,2439:20408406,41499329:260833 -k1,2439:21328532,41499329:260834 -k1,2439:21945225,41499329:260833 -k1,2439:24968401,41499329:260833 -k1,2439:27011813,41499329:260833 -k1,2439:27804144,41499329:260834 -k1,2439:30514713,41499329:260833 -k1,2439:31966991,41499329:260833 -k1,2439:32583029,41499329:0 -) -(1,2440:6630773,42340817:25952256,505283,134348 -k1,2439:8494012,42340817:261539 -k1,2439:10452933,42340817:261539 -k1,2439:11502870,42340817:261539 -k1,2439:13546988,42340817:261539 -k1,2439:16379504,42340817:261539 -k1,2439:19321466,42340817:261539 -k1,2439:20976957,42340817:261540 -k1,2439:22026894,42340817:261539 -k1,2439:25211339,42340817:261539 -k1,2439:28407580,42340817:261539 -k1,2439:30323903,42340817:261539 -k1,2439:31116939,42340817:261539 -k1,2439:31734338,42340817:261539 -k1,2440:32583029,42340817:0 -) -(1,2440:6630773,43182305:25952256,513147,126483 -k1,2439:9507235,43182305:198661 -k1,2439:10990403,43182305:198662 -k1,2439:11955180,43182305:198661 -k1,2439:15023008,43182305:198662 -k1,2439:15837707,43182305:198661 -k1,2439:16392229,43182305:198662 -k1,2439:18742437,43182305:198661 -k1,2439:20590640,43182305:198662 -k1,2439:21472186,43182305:198661 -k1,2439:23931840,43182305:198662 -k1,2439:25752517,43182305:198661 -k1,2439:26698945,43182305:198662 -k1,2439:27556898,43182305:198661 -k1,2439:28774645,43182305:198662 -k1,2439:30626779,43182305:198661 -k1,2439:32583029,43182305:0 -) -(1,2440:6630773,44023793:25952256,513147,134348 -k1,2439:8683461,44023793:277973 -k1,2439:10164675,44023793:277973 -k1,2439:10974146,44023793:277974 -k1,2439:12318390,44023793:277973 -k1,2439:15308898,44023793:277973 -k1,2439:16534522,44023793:277973 -k1,2439:18309994,44023793:277974 -k1,2439:20473438,44023793:277973 -k1,2439:21855693,44023793:277973 -k1,2439:22881432,44023793:277973 -k1,2439:27658453,44023793:277974 -k1,2439:28564261,44023793:277973 -k1,2439:31379788,44023793:277973 -k1,2439:32583029,44023793:0 -) -(1,2440:6630773,44865281:25952256,513147,134348 -k1,2439:8955102,44865281:256013 -k1,2439:10495621,44865281:256013 -k1,2439:11619986,44865281:256013 -k1,2439:12980282,44865281:256014 -k1,2439:15243007,44865281:256013 -k1,2439:16269723,44865281:256013 -k1,2439:18658933,44865281:256013 -k1,2439:20408512,44865281:256013 -k1,2439:21350687,44865281:256013 -k1,2439:21962560,44865281:256013 -k1,2439:24370120,44865281:256013 -k1,2439:26020085,44865281:256014 -k1,2439:26631958,44865281:256013 -k1,2439:29650314,44865281:256013 -(1,2439:29650314,44865281:0,452978,115847 -r1,2440:31063715,44865281:1413401,568825,115847 -k1,2439:29650314,44865281:-1413401 -) -(1,2439:29650314,44865281:1413401,452978,115847 -k1,2439:29650314,44865281:3277 -h1,2439:31060438,44865281:0,411205,112570 -) -k1,2439:31319728,44865281:256013 -k1,2439:32227169,44865281:256013 -k1,2439:32583029,44865281:0 -) -(1,2440:6630773,45706769:25952256,513147,134348 -k1,2439:8561377,45706769:192589 -k1,2439:11088357,45706769:192588 -k1,2439:11896984,45706769:192589 -k1,2439:13355728,45706769:192588 -k1,2439:14620486,45706769:192589 -k1,2439:15681426,45706769:192588 -k1,2439:18044567,45706769:192589 -k1,2439:19329640,45706769:192588 -k1,2439:22261634,45706769:192589 -k1,2439:23105650,45706769:192588 -k1,2439:25304951,45706769:192589 -k1,2439:26268242,45706769:192588 -k1,2439:28420357,45706769:192589 -k1,2439:29272237,45706769:192588 -k1,2439:29820686,45706769:192589 -k1,2439:32583029,45706769:0 -) -] -(1,2440:32583029,45706769:0,0,0 -g1,2440:32583029,45706769 -) -) -] -(1,2440:6630773,47279633:25952256,0,0 -h1,2440:6630773,47279633:25952256,0,0 -) -] -(1,2440:4262630,4025873:0,0,0 -[1,2440:-473656,4025873:0,0,0 -(1,2440:-473656,-710413:0,0,0 -(1,2440:-473656,-710413:0,0,0 -g1,2440:-473656,-710413 -) -g1,2440:-473656,-710413 -) -] -) -] -!24232 -}55 -Input:430:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:431:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:432:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:433:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:434:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:435:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:436:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!648 -{56 -[1,2526:4262630,47279633:28320399,43253760,0 -(1,2526:4262630,4025873:0,0,0 -[1,2526:-473656,4025873:0,0,0 -(1,2526:-473656,-710413:0,0,0 -(1,2526:-473656,-644877:0,0,0 -k1,2526:-473656,-644877:-65536 -) -(1,2526:-473656,4736287:0,0,0 -k1,2526:-473656,4736287:5209943 -) -g1,2526:-473656,-710413 -) -] -) -[1,2526:6630773,47279633:25952256,43253760,0 -[1,2526:6630773,4812305:25952256,786432,0 -(1,2526:6630773,4812305:25952256,513147,134348 -(1,2526:6630773,4812305:25952256,513147,134348 -g1,2526:3078558,4812305 -[1,2526:3078558,4812305:0,0,0 -(1,2526:3078558,2439708:0,1703936,0 -k1,2526:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,2526:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,2526:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,2526:3078558,4812305:0,0,0 -(1,2526:3078558,2439708:0,1703936,0 -g1,2526:29030814,2439708 -g1,2526:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,2526:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,2526:37855564,2439708:1179648,16384,0 -) -) -k1,2526:3078556,2439708:-34777008 -) -] -[1,2526:3078558,4812305:0,0,0 -(1,2526:3078558,49800853:0,16384,2228224 -k1,2526:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,2526:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,2526:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,2526:3078558,4812305:0,0,0 -(1,2526:3078558,49800853:0,16384,2228224 -g1,2526:29030814,49800853 -g1,2526:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,2526:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,2526:37855564,49800853:1179648,16384,0 -) -) -k1,2526:3078556,49800853:-34777008 -) -] -g1,2526:6630773,4812305 -g1,2526:6630773,4812305 -g1,2526:8017514,4812305 -g1,2526:10287681,4812305 -g1,2526:11697360,4812305 -g1,2526:13727665,4812305 -g1,2526:14542932,4812305 -g1,2526:16904194,4812305 -k1,2526:31786111,4812305:14881917 -) -) -] -[1,2526:6630773,45706769:25952256,40108032,0 -(1,2526:6630773,45706769:25952256,40108032,0 -(1,2526:6630773,45706769:0,0,0 -g1,2526:6630773,45706769 -) -[1,2526:6630773,45706769:25952256,40108032,0 -(1,2440:6630773,6254097:25952256,513147,126483 -k1,2439:8665775,6254097:252423 -k1,2439:9569626,6254097:252423 -k1,2439:13014962,6254097:252422 -k1,2439:16221093,6254097:252423 -k1,2439:17132808,6254097:252423 -k1,2439:17741091,6254097:252423 -k1,2439:20145060,6254097:252422 -k1,2439:22484805,6254097:252423 -k1,2439:23420113,6254097:252423 -k1,2439:25495748,6254097:252423 -k1,2439:28868339,6254097:252422 -k1,2439:30514713,6254097:252423 -k1,2439:32583029,6254097:0 -) -(1,2440:6630773,7095585:25952256,505283,134348 -k1,2439:9379788,7095585:270443 -k1,2439:11044182,7095585:270443 -(1,2439:11044182,7095585:0,452978,115847 -r1,2526:12105871,7095585:1061689,568825,115847 -k1,2439:11044182,7095585:-1061689 -) -(1,2439:11044182,7095585:1061689,452978,115847 -k1,2439:11044182,7095585:3277 -h1,2439:12102594,7095585:0,411205,112570 -) -k1,2439:12376314,7095585:270443 -k1,2439:13638317,7095585:270443 -k1,2439:15430506,7095585:270443 -k1,2439:18701843,7095585:270443 -k1,2439:19328145,7095585:270442 -k1,2439:21668215,7095585:270443 -k1,2439:23792672,7095585:270443 -(1,2439:23792672,7095585:0,414482,115847 -r1,2526:25206073,7095585:1413401,530329,115847 -k1,2439:23792672,7095585:-1413401 -) -(1,2439:23792672,7095585:1413401,414482,115847 -k1,2439:23792672,7095585:3277 -h1,2439:25202796,7095585:0,411205,112570 -) -k1,2439:25650186,7095585:270443 -(1,2439:25650186,7095585:0,414482,115847 -r1,2526:27415299,7095585:1765113,530329,115847 -k1,2439:25650186,7095585:-1765113 -) -(1,2439:25650186,7095585:1765113,414482,115847 -k1,2439:25650186,7095585:3277 -h1,2439:27412022,7095585:0,411205,112570 -) -k1,2439:27685742,7095585:270443 -k1,2439:28639070,7095585:270443 -(1,2439:28639070,7095585:0,414482,115847 -r1,2526:29349048,7095585:709978,530329,115847 -k1,2439:28639070,7095585:-709978 -) -(1,2439:28639070,7095585:709978,414482,115847 -k1,2439:28639070,7095585:3277 -h1,2439:29345771,7095585:0,411205,112570 -) -k1,2439:29793161,7095585:270443 -k1,2440:32583029,7095585:0 -) -(1,2440:6630773,7937073:25952256,513147,134348 -(1,2439:6630773,7937073:0,452978,115847 -r1,2526:8747598,7937073:2116825,568825,115847 -k1,2439:6630773,7937073:-2116825 -) -(1,2439:6630773,7937073:2116825,452978,115847 -k1,2439:6630773,7937073:3277 -h1,2439:8744321,7937073:0,411205,112570 -) -k1,2439:8970250,7937073:222652 -k1,2439:11533848,7937073:222652 -k1,2439:12775585,7937073:222652 -k1,2439:14780817,7937073:222653 -k1,2439:15662761,7937073:222652 -k1,2439:16656116,7937073:222652 -k1,2439:19011965,7937073:222652 -k1,2439:19920779,7937073:222652 -k1,2439:20499291,7937073:222652 -k1,2439:23696623,7937073:222653 -k1,2439:25785085,7937073:222652 -k1,2439:27199182,7937073:222652 -(1,2439:27199182,7937073:0,459977,115847 -r1,2526:30019431,7937073:2820249,575824,115847 -k1,2439:27199182,7937073:-2820249 -) -(1,2439:27199182,7937073:2820249,459977,115847 -k1,2439:27199182,7937073:3277 -h1,2439:30016154,7937073:0,411205,112570 -) -k1,2439:30242083,7937073:222652 -k1,2439:32583029,7937073:0 -) -(1,2440:6630773,8778561:25952256,505283,134348 -g1,2439:7778963,8778561 -g1,2439:10462662,8778561 -g1,2439:12047977,8778561 -g1,2439:12930091,8778561 -g1,2439:15476820,8778561 -g1,2439:17632299,8778561 -g1,2439:17632299,8778561 -g1,2439:17831528,8778561 -g1,2439:17831528,8778561 -k1,2440:32583029,8778561:14751501 -g1,2440:32583029,8778561 -) -v1,2442:6630773,9969027:0,393216,0 -(1,2493:6630773,26673771:25952256,17097960,196608 -g1,2493:6630773,26673771 -g1,2493:6630773,26673771 -g1,2493:6434165,26673771 -(1,2493:6434165,26673771:0,17097960,196608 -r1,2526:32779637,26673771:26345472,17294568,196608 -k1,2493:6434165,26673771:-26345472 -) -(1,2493:6434165,26673771:26345472,17097960,196608 -[1,2493:6630773,26673771:25952256,16901352,0 -(1,2444:6630773,10160916:25952256,388497,101187 -(1,2443:6630773,10160916:0,0,0 -g1,2443:6630773,10160916 -g1,2443:6630773,10160916 -g1,2443:6303093,10160916 -(1,2443:6303093,10160916:0,0,0 -) -g1,2443:6630773,10160916 -) -g1,2444:8843793,10160916 -g1,2444:9792231,10160916 -h1,2444:10740669,10160916:0,0,0 -k1,2444:32583029,10160916:21842360 -g1,2444:32583029,10160916 -) -(1,2445:6630773,10827094:25952256,410518,107478 -h1,2445:6630773,10827094:0,0,0 -g1,2445:10740667,10827094 -g1,2445:11372959,10827094 -g1,2445:12321396,10827094 -g1,2445:16115144,10827094 -g1,2445:17063581,10827094 -g1,2445:19592747,10827094 -g1,2445:20541184,10827094 -k1,2445:20541184,10827094:1573 -h1,2445:22439631,10827094:0,0,0 -k1,2445:32583029,10827094:10143398 -g1,2445:32583029,10827094 -) -(1,2449:6630773,11558808:25952256,404226,76021 -(1,2447:6630773,11558808:0,0,0 -g1,2447:6630773,11558808 -g1,2447:6630773,11558808 -g1,2447:6303093,11558808 -(1,2447:6303093,11558808:0,0,0 -) -g1,2447:6630773,11558808 -) -g1,2449:7579210,11558808 -g1,2449:8843793,11558808 -h1,2449:11689104,11558808:0,0,0 -k1,2449:32583028,11558808:20893924 -g1,2449:32583028,11558808 -) -(1,2451:6630773,12880346:25952256,410518,101187 -(1,2450:6630773,12880346:0,0,0 -g1,2450:6630773,12880346 -g1,2450:6630773,12880346 -g1,2450:6303093,12880346 -(1,2450:6303093,12880346:0,0,0 -) -g1,2450:6630773,12880346 -) -k1,2451:6630773,12880346:0 -h1,2451:11056812,12880346:0,0,0 -k1,2451:32583028,12880346:21526216 -g1,2451:32583028,12880346 -) -(1,2455:6630773,13612060:25952256,404226,107478 -(1,2453:6630773,13612060:0,0,0 -g1,2453:6630773,13612060 -g1,2453:6630773,13612060 -g1,2453:6303093,13612060 -(1,2453:6303093,13612060:0,0,0 -) -g1,2453:6630773,13612060 -) -g1,2455:7579210,13612060 -g1,2455:8843793,13612060 -h1,2455:11689104,13612060:0,0,0 -k1,2455:32583028,13612060:20893924 -g1,2455:32583028,13612060 -) -(1,2457:6630773,14933598:25952256,410518,107478 -(1,2456:6630773,14933598:0,0,0 -g1,2456:6630773,14933598 -g1,2456:6630773,14933598 -g1,2456:6303093,14933598 -(1,2456:6303093,14933598:0,0,0 -) -g1,2456:6630773,14933598 -) -k1,2457:6630773,14933598:0 -g1,2457:12637541,14933598 -g1,2457:13269833,14933598 -g1,2457:14218270,14933598 -g1,2457:18012018,14933598 -g1,2457:18960455,14933598 -g1,2457:21489621,14933598 -g1,2457:22438058,14933598 -k1,2457:22438058,14933598:1573 -h1,2457:24336505,14933598:0,0,0 -k1,2457:32583029,14933598:8246524 -g1,2457:32583029,14933598 -) -(1,2461:6630773,15665312:25952256,404226,76021 -(1,2459:6630773,15665312:0,0,0 -g1,2459:6630773,15665312 -g1,2459:6630773,15665312 -g1,2459:6303093,15665312 -(1,2459:6303093,15665312:0,0,0 -) -g1,2459:6630773,15665312 -) -g1,2461:7579210,15665312 -g1,2461:8843793,15665312 -h1,2461:10108376,15665312:0,0,0 -k1,2461:32583028,15665312:22474652 -g1,2461:32583028,15665312 -) -(1,2463:6630773,16986850:25952256,404226,101187 -(1,2462:6630773,16986850:0,0,0 -g1,2462:6630773,16986850 -g1,2462:6630773,16986850 -g1,2462:6303093,16986850 -(1,2462:6303093,16986850:0,0,0 -) -g1,2462:6630773,16986850 -) -k1,2463:6630773,16986850:0 -h1,2463:12005249,16986850:0,0,0 -k1,2463:32583029,16986850:20577780 -g1,2463:32583029,16986850 -) -(1,2467:6630773,17718564:25952256,404226,76021 -(1,2465:6630773,17718564:0,0,0 -g1,2465:6630773,17718564 -g1,2465:6630773,17718564 -g1,2465:6303093,17718564 -(1,2465:6303093,17718564:0,0,0 -) -g1,2465:6630773,17718564 -) -g1,2467:7579210,17718564 -g1,2467:8843793,17718564 -h1,2467:10424521,17718564:0,0,0 -k1,2467:32583029,17718564:22158508 -g1,2467:32583029,17718564 -) -(1,2469:6630773,19040102:25952256,404226,107478 -(1,2468:6630773,19040102:0,0,0 -g1,2468:6630773,19040102 -g1,2468:6630773,19040102 -g1,2468:6303093,19040102 -(1,2468:6303093,19040102:0,0,0 -) -g1,2468:6630773,19040102 -) -k1,2469:6630773,19040102:0 -h1,2469:12321395,19040102:0,0,0 -k1,2469:32583029,19040102:20261634 -g1,2469:32583029,19040102 -) -(1,2473:6630773,19771816:25952256,404226,76021 -(1,2471:6630773,19771816:0,0,0 -g1,2471:6630773,19771816 -g1,2471:6630773,19771816 -g1,2471:6303093,19771816 -(1,2471:6303093,19771816:0,0,0 -) -g1,2471:6630773,19771816 -) -g1,2473:7579210,19771816 -g1,2473:8843793,19771816 -h1,2473:10108376,19771816:0,0,0 -k1,2473:32583028,19771816:22474652 -g1,2473:32583028,19771816 -) -(1,2475:6630773,21093354:25952256,404226,107478 -(1,2474:6630773,21093354:0,0,0 -g1,2474:6630773,21093354 -g1,2474:6630773,21093354 -g1,2474:6303093,21093354 -(1,2474:6303093,21093354:0,0,0 -) -g1,2474:6630773,21093354 -) -k1,2475:6630773,21093354:0 -h1,2475:12321395,21093354:0,0,0 -k1,2475:32583029,21093354:20261634 -g1,2475:32583029,21093354 -) -(1,2479:6630773,21825068:25952256,404226,76021 -(1,2477:6630773,21825068:0,0,0 -g1,2477:6630773,21825068 -g1,2477:6630773,21825068 -g1,2477:6303093,21825068 -(1,2477:6303093,21825068:0,0,0 -) -g1,2477:6630773,21825068 -) -g1,2479:7579210,21825068 -g1,2479:8843793,21825068 -h1,2479:10424521,21825068:0,0,0 -k1,2479:32583029,21825068:22158508 -g1,2479:32583029,21825068 -) -(1,2481:6630773,23146606:25952256,404226,101187 -(1,2480:6630773,23146606:0,0,0 -g1,2480:6630773,23146606 -g1,2480:6630773,23146606 -g1,2480:6303093,23146606 -(1,2480:6303093,23146606:0,0,0 -) -g1,2480:6630773,23146606 -) -k1,2481:6630773,23146606:0 -h1,2481:12953686,23146606:0,0,0 -k1,2481:32583030,23146606:19629344 -g1,2481:32583030,23146606 -) -(1,2485:6630773,23878320:25952256,404226,76021 -(1,2483:6630773,23878320:0,0,0 -g1,2483:6630773,23878320 -g1,2483:6630773,23878320 -g1,2483:6303093,23878320 -(1,2483:6303093,23878320:0,0,0 -) -g1,2483:6630773,23878320 -) -g1,2485:7579210,23878320 -g1,2485:8843793,23878320 -h1,2485:10424521,23878320:0,0,0 -k1,2485:32583029,23878320:22158508 -g1,2485:32583029,23878320 -) -(1,2487:6630773,25199858:25952256,404226,101187 -(1,2486:6630773,25199858:0,0,0 -g1,2486:6630773,25199858 -g1,2486:6630773,25199858 -g1,2486:6303093,25199858 -(1,2486:6303093,25199858:0,0,0 -) -g1,2486:6630773,25199858 -) -g1,2487:8843793,25199858 -g1,2487:9792231,25199858 -h1,2487:11372959,25199858:0,0,0 -k1,2487:32583029,25199858:21210070 -g1,2487:32583029,25199858 -) -(1,2488:6630773,25866036:25952256,404226,101187 -h1,2488:6630773,25866036:0,0,0 -k1,2488:6630773,25866036:0 -h1,2488:10424521,25866036:0,0,0 -k1,2488:32583029,25866036:22158508 -g1,2488:32583029,25866036 -) -(1,2492:6630773,26597750:25952256,404226,76021 -(1,2490:6630773,26597750:0,0,0 -g1,2490:6630773,26597750 -g1,2490:6630773,26597750 -g1,2490:6303093,26597750 -(1,2490:6303093,26597750:0,0,0 -) -g1,2490:6630773,26597750 -) -g1,2492:7579210,26597750 -g1,2492:8843793,26597750 -h1,2492:12321395,26597750:0,0,0 -k1,2492:32583029,26597750:20261634 -g1,2492:32583029,26597750 -) -] -) -g1,2493:32583029,26673771 -g1,2493:6630773,26673771 -g1,2493:6630773,26673771 -g1,2493:32583029,26673771 -g1,2493:32583029,26673771 -) -h1,2493:6630773,26870379:0,0,0 -(1,2497:6630773,28236155:25952256,513147,126483 -h1,2496:6630773,28236155:983040,0,0 -k1,2496:9600264,28236155:211736 -k1,2496:11535597,28236155:211736 -k1,2496:12278830,28236155:211736 -k1,2496:12846425,28236155:211735 -k1,2496:17129257,28236155:211736 -k1,2496:20292735,28236155:211736 -k1,2496:21695916,28236155:211736 -k1,2496:24160124,28236155:211736 -k1,2496:25023288,28236155:211736 -k1,2496:26978936,28236155:211735 -k1,2496:29303553,28236155:211736 -k1,2496:31896867,28236155:211736 -k1,2496:32583029,28236155:0 -) -(1,2497:6630773,29077643:25952256,513147,134348 -k1,2496:8210588,29077643:257954 -k1,2496:9127833,29077643:257953 -k1,2496:10404872,29077643:257954 -k1,2496:11077609,29077643:257894 -k1,2496:14351530,29077643:257954 -k1,2496:15628568,29077643:257953 -k1,2496:18388031,29077643:257954 -k1,2496:19305276,29077643:257953 -k1,2496:21220635,29077643:257954 -k1,2496:22010085,29077643:257953 -k1,2496:25030382,29077643:257954 -k1,2496:25904373,29077643:257953 -k1,2496:27446833,29077643:257954 -k1,2496:28987982,29077643:257954 -k1,2496:31478747,29077643:257953 -k1,2496:32583029,29077643:0 -) -(1,2497:6630773,29919131:25952256,513147,134348 -k1,2496:7636193,29919131:257654 -k1,2496:10275425,29919131:257654 -k1,2496:11149118,29919131:257655 -k1,2496:12787616,29919131:257654 -k1,2496:14715127,29919131:257654 -k1,2496:15600616,29919131:257654 -k1,2496:19152765,29919131:257654 -k1,2496:22172763,29919131:257655 -k1,2496:22845201,29919131:257595 -k1,2496:25392683,29919131:257654 -k1,2496:26309629,29919131:257654 -k1,2496:26923144,29919131:257655 -k1,2496:28875559,29919131:257654 -k1,2496:31089463,29919131:257654 -k1,2496:32583029,29919131:0 -) -(1,2497:6630773,30760619:25952256,513147,134348 -k1,2496:7608568,30760619:291633 -(1,2496:7608568,30760619:0,452978,115847 -r1,2526:10077105,30760619:2468537,568825,115847 -k1,2496:7608568,30760619:-2468537 -) -(1,2496:7608568,30760619:2468537,452978,115847 -k1,2496:7608568,30760619:3277 -h1,2496:10073828,30760619:0,411205,112570 -) -k1,2496:10542408,30760619:291633 -k1,2496:11938323,30760619:291633 -k1,2496:14366430,30760619:291633 -k1,2496:15309491,30760619:291633 -k1,2496:18363467,30760619:291633 -(1,2496:18363467,30760619:0,452978,115847 -r1,2526:20128580,30760619:1765113,568825,115847 -k1,2496:18363467,30760619:-1765113 -) -(1,2496:18363467,30760619:1765113,452978,115847 -k1,2496:18363467,30760619:3277 -h1,2496:20125303,30760619:0,411205,112570 -) -k1,2496:21271526,30760619:291633 -k1,2496:22759846,30760619:291633 -k1,2496:24143964,30760619:291633 -k1,2496:25094889,30760619:291633 -k1,2496:27619334,30760619:291633 -k1,2496:28858618,30760619:291633 -k1,2496:32583029,30760619:0 -) -(1,2497:6630773,31602107:25952256,513147,134348 -k1,2496:9918932,31602107:262362 -k1,2496:10712792,31602107:262363 -k1,2496:14104498,31602107:262362 -k1,2496:14982899,31602107:262363 -k1,2496:17523948,31602107:262362 -h1,2496:18494536,31602107:0,0,0 -k1,2496:18756899,31602107:262363 -k1,2496:19828631,31602107:262362 -k1,2496:21589146,31602107:262362 -h1,2496:22784523,31602107:0,0,0 -k1,2496:23220556,31602107:262363 -k1,2496:24098956,31602107:262362 -k1,2496:26825473,31602107:262363 -k1,2496:27739263,31602107:262362 -k1,2496:32583029,31602107:0 -) -(1,2497:6630773,32443595:25952256,513147,134348 -k1,2496:11246442,32443595:263423 -k1,2496:12125902,32443595:263422 -k1,2496:12977838,32443595:263423 -k1,2496:15639222,32443595:263422 -(1,2496:15639222,32443595:0,452978,115847 -r1,2526:18107759,32443595:2468537,568825,115847 -k1,2496:15639222,32443595:-2468537 -) -(1,2496:15639222,32443595:2468537,452978,115847 -k1,2496:15639222,32443595:3277 -h1,2496:18104482,32443595:0,411205,112570 -) -k1,2496:18371182,32443595:263423 -k1,2496:19166101,32443595:263422 -k1,2496:20942750,32443595:263423 -k1,2496:21857600,32443595:263422 -k1,2496:23937026,32443595:263423 -k1,2496:25219533,32443595:263422 -k1,2496:27038125,32443595:263423 -k1,2496:27960839,32443595:263422 -k1,2496:28994965,32443595:263423 -k1,2496:31391584,32443595:263422 -k1,2496:32583029,32443595:0 -) -(1,2497:6630773,33285083:25952256,513147,134348 -k1,2496:9332748,33285083:247652 -(1,2496:9332748,33285083:0,452978,115847 -r1,2526:12856420,33285083:3523672,568825,115847 -k1,2496:9332748,33285083:-3523672 -) -(1,2496:9332748,33285083:3523672,452978,115847 -k1,2496:9332748,33285083:3277 -h1,2496:12853143,33285083:0,411205,112570 -) -k1,2496:13104072,33285083:247652 -k1,2496:13883221,33285083:247652 -k1,2496:15644099,33285083:247652 -k1,2496:16543179,33285083:247652 -k1,2496:17982276,33285083:247652 -k1,2496:18695889,33285083:247652 -k1,2496:19714244,33285083:247652 -k1,2496:21921422,33285083:247652 -k1,2496:24635849,33285083:247652 -k1,2496:25534929,33285083:247652 -k1,2496:26138441,33285083:247652 -k1,2496:28783400,33285083:247652 -k1,2496:30586221,33285083:247652 -k1,2496:31516758,33285083:247652 -k1,2496:32583029,33285083:0 -) -(1,2497:6630773,34126571:25952256,505283,134348 -g1,2496:10017673,34126571 -g1,2496:12901257,34126571 -g1,2496:15506968,34126571 -g1,2496:16357625,34126571 -g1,2496:17304620,34126571 -g1,2496:18957438,34126571 -k1,2497:32583029,34126571:10154804 -g1,2497:32583029,34126571 -) -v1,2499:6630773,35317037:0,393216,0 -(1,2518:6630773,40438894:25952256,5515073,196608 -g1,2518:6630773,40438894 -g1,2518:6630773,40438894 -g1,2518:6434165,40438894 -(1,2518:6434165,40438894:0,5515073,196608 -r1,2526:32779637,40438894:26345472,5711681,196608 -k1,2518:6434165,40438894:-26345472 -) -(1,2518:6434165,40438894:26345472,5515073,196608 -[1,2518:6630773,40438894:25952256,5318465,0 -(1,2501:6630773,35524655:25952256,404226,101187 -(1,2500:6630773,35524655:0,0,0 -g1,2500:6630773,35524655 -g1,2500:6630773,35524655 -g1,2500:6303093,35524655 -(1,2500:6303093,35524655:0,0,0 -) -g1,2500:6630773,35524655 -) -k1,2501:6630773,35524655:0 -h1,2501:10740666,35524655:0,0,0 -k1,2501:32583030,35524655:21842364 -g1,2501:32583030,35524655 -) -(1,2505:6630773,36256369:25952256,404226,76021 -(1,2503:6630773,36256369:0,0,0 -g1,2503:6630773,36256369 -g1,2503:6630773,36256369 -g1,2503:6303093,36256369 -(1,2503:6303093,36256369:0,0,0 -) -g1,2503:6630773,36256369 -) -g1,2505:7579210,36256369 -g1,2505:8843793,36256369 -h1,2505:12321395,36256369:0,0,0 -k1,2505:32583029,36256369:20261634 -g1,2505:32583029,36256369 -) -(1,2507:6630773,37577907:25952256,404226,101187 -(1,2506:6630773,37577907:0,0,0 -g1,2506:6630773,37577907 -g1,2506:6630773,37577907 -g1,2506:6303093,37577907 -(1,2506:6303093,37577907:0,0,0 -) -g1,2506:6630773,37577907 -) -k1,2507:6630773,37577907:0 -g1,2507:12005250,37577907 -h1,2507:15798998,37577907:0,0,0 -k1,2507:32583030,37577907:16784032 -g1,2507:32583030,37577907 -) -(1,2511:6630773,38309621:25952256,404226,76021 -(1,2509:6630773,38309621:0,0,0 -g1,2509:6630773,38309621 -g1,2509:6630773,38309621 -g1,2509:6303093,38309621 -(1,2509:6303093,38309621:0,0,0 -) -g1,2509:6630773,38309621 -) -g1,2511:7579210,38309621 -g1,2511:8843793,38309621 -h1,2511:10108376,38309621:0,0,0 -k1,2511:32583028,38309621:22474652 -g1,2511:32583028,38309621 -) -(1,2513:6630773,39631159:25952256,404226,101187 -(1,2512:6630773,39631159:0,0,0 -g1,2512:6630773,39631159 -g1,2512:6630773,39631159 -g1,2512:6303093,39631159 -(1,2512:6303093,39631159:0,0,0 -) -g1,2512:6630773,39631159 -) -k1,2513:6630773,39631159:0 -g1,2513:12005250,39631159 -h1,2513:15166707,39631159:0,0,0 -k1,2513:32583029,39631159:17416322 -g1,2513:32583029,39631159 -) -(1,2517:6630773,40362873:25952256,404226,76021 -(1,2515:6630773,40362873:0,0,0 -g1,2515:6630773,40362873 -g1,2515:6630773,40362873 -g1,2515:6303093,40362873 -(1,2515:6303093,40362873:0,0,0 -) -g1,2515:6630773,40362873 -) -g1,2517:7579210,40362873 -g1,2517:8843793,40362873 -h1,2517:10424521,40362873:0,0,0 -k1,2517:32583029,40362873:22158508 -g1,2517:32583029,40362873 -) -] -) -g1,2518:32583029,40438894 -g1,2518:6630773,40438894 -g1,2518:6630773,40438894 -g1,2518:32583029,40438894 -g1,2518:32583029,40438894 -) -h1,2518:6630773,40635502:0,0,0 -] -(1,2526:32583029,45706769:0,0,0 -g1,2526:32583029,45706769 -) -) -] -(1,2526:6630773,47279633:25952256,0,0 -h1,2526:6630773,47279633:25952256,0,0 -) -] -(1,2526:4262630,4025873:0,0,0 -[1,2526:-473656,4025873:0,0,0 -(1,2526:-473656,-710413:0,0,0 -(1,2526:-473656,-710413:0,0,0 -g1,2526:-473656,-710413 -) -g1,2526:-473656,-710413 -) -] -) -] -!21350 -}56 -Input:437:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:438:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:439:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:440:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!375 -{57 -[1,2603:4262630,47279633:28320399,43253760,0 -(1,2603:4262630,4025873:0,0,0 -[1,2603:-473656,4025873:0,0,0 -(1,2603:-473656,-710413:0,0,0 -(1,2603:-473656,-644877:0,0,0 -k1,2603:-473656,-644877:-65536 -) -(1,2603:-473656,4736287:0,0,0 -k1,2603:-473656,4736287:5209943 -) -g1,2603:-473656,-710413 -) -] -) -[1,2603:6630773,47279633:25952256,43253760,0 -[1,2603:6630773,4812305:25952256,786432,0 -(1,2603:6630773,4812305:25952256,505283,134348 -(1,2603:6630773,4812305:25952256,505283,134348 -g1,2603:3078558,4812305 -[1,2603:3078558,4812305:0,0,0 -(1,2603:3078558,2439708:0,1703936,0 -k1,2603:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,2603:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,2603:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,2603:3078558,4812305:0,0,0 -(1,2603:3078558,2439708:0,1703936,0 -g1,2603:29030814,2439708 -g1,2603:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,2603:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,2603:37855564,2439708:1179648,16384,0 -) -) -k1,2603:3078556,2439708:-34777008 -) -] -[1,2603:3078558,4812305:0,0,0 -(1,2603:3078558,49800853:0,16384,2228224 -k1,2603:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,2603:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,2603:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,2603:3078558,4812305:0,0,0 -(1,2603:3078558,49800853:0,16384,2228224 -g1,2603:29030814,49800853 -g1,2603:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,2603:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,2603:37855564,49800853:1179648,16384,0 -) -) -k1,2603:3078556,49800853:-34777008 -) -] -g1,2603:6630773,4812305 -k1,2603:19515153,4812305:12087462 -g1,2603:20901894,4812305 -g1,2603:21550700,4812305 -g1,2603:24864855,4812305 -g1,2603:27600327,4812305 -g1,2603:29010006,4812305 -) -) -] -[1,2603:6630773,45706769:25952256,40108032,0 -(1,2603:6630773,45706769:25952256,40108032,0 -(1,2603:6630773,45706769:0,0,0 -g1,2603:6630773,45706769 -) -[1,2603:6630773,45706769:25952256,40108032,0 -(1,2521:6630773,6254097:25952256,32768,229376 -(1,2521:6630773,6254097:0,32768,229376 -(1,2521:6630773,6254097:5505024,32768,229376 -r1,2603:12135797,6254097:5505024,262144,229376 -) -k1,2521:6630773,6254097:-5505024 -) -(1,2521:6630773,6254097:25952256,32768,0 -r1,2603:32583029,6254097:25952256,32768,0 -) -) -(1,2521:6630773,7858425:25952256,606339,151780 -(1,2521:6630773,7858425:1974731,582746,14155 -g1,2521:6630773,7858425 -g1,2521:8605504,7858425 -) -g1,2521:11298248,7858425 -k1,2521:32583029,7858425:16458448 -g1,2521:32583029,7858425 -) -(1,2524:6630773,9093129:25952256,505283,134348 -k1,2523:8046529,9093129:219069 -k1,2523:12625708,9093129:219069 -k1,2523:14230863,9093129:219069 -k1,2523:18256918,9093129:219069 -k1,2523:19467547,9093129:219069 -k1,2523:21430529,9093129:219069 -k1,2523:23871269,9093129:219069 -k1,2523:24741766,9093129:219069 -k1,2523:27030462,9093129:219069 -k1,2523:29433846,9093129:219069 -k1,2523:30550758,9093129:219069 -k1,2523:32583029,9093129:0 -) -(1,2524:6630773,9934617:25952256,513147,134348 -k1,2523:7873391,9934617:251058 -k1,2523:8810610,9934617:251057 -k1,2523:10218378,9934617:251058 -k1,2523:12425685,9934617:251057 -k1,2523:14921351,9934617:251058 -k1,2523:15932626,9934617:251057 -k1,2523:19887123,9934617:251058 -k1,2523:23163977,9934617:251057 -k1,2523:24928261,9934617:251058 -k1,2523:25830746,9934617:251057 -k1,2523:28474523,9934617:251058 -k1,2523:31015408,9934617:251057 -k1,2523:32583029,9934617:0 -) -(1,2524:6630773,10776105:25952256,609711,134348 -g1,2523:7986712,10776105 -g1,2523:9968520,10776105 -g1,2523:10819177,10776105 -g1,2523:11374266,10776105 -g1,2523:14335838,10776105 -g1,2523:15691777,10776105 -g1,2523:17366221,10776105 -g1,2523:19633766,10776105 -g1,2523:22311567,10776105 -g1,2523:23904747,10776105 -(1,2523:23904747,10776105:0,414482,115847 -r1,2603:24966436,10776105:1061689,530329,115847 -k1,2523:23904747,10776105:-1061689 -) -(1,2523:23904747,10776105:1061689,414482,115847 -k1,2523:23904747,10776105:3277 -h1,2523:24963159,10776105:0,411205,112570 -) -(1,2523:24966436,10776105:311689,609711,0 -$1,2523:24966436,10776105 -(1,2523:24966436,10500824:311689,334430,0 -) -$1,2523:25278125,10776105 -) -g1,2523:25651024,10776105 -g1,2523:25651024,10776105 -g1,2523:25850253,10776105 -g1,2523:25850253,10776105 -k1,2524:32583029,10776105:6732776 -g1,2524:32583029,10776105 -) -v1,2526:6630773,11966571:0,393216,0 -(1,2551:6630773,19141680:25952256,7568325,196608 -g1,2551:6630773,19141680 -g1,2551:6630773,19141680 -g1,2551:6434165,19141680 -(1,2551:6434165,19141680:0,7568325,196608 -r1,2603:32779637,19141680:26345472,7764933,196608 -k1,2551:6434165,19141680:-26345472 -) -(1,2551:6434165,19141680:26345472,7568325,196608 -[1,2551:6630773,19141680:25952256,7371717,0 -(1,2528:6630773,12174189:25952256,404226,76021 -(1,2527:6630773,12174189:0,0,0 -g1,2527:6630773,12174189 -g1,2527:6630773,12174189 -g1,2527:6303093,12174189 -(1,2527:6303093,12174189:0,0,0 -) -g1,2527:6630773,12174189 -) -k1,2528:6630773,12174189:0 -h1,2528:11372959,12174189:0,0,0 -k1,2528:32583029,12174189:21210070 -g1,2528:32583029,12174189 -) -(1,2532:6630773,12905903:25952256,404226,76021 -(1,2530:6630773,12905903:0,0,0 -g1,2530:6630773,12905903 -g1,2530:6630773,12905903 -g1,2530:6303093,12905903 -(1,2530:6303093,12905903:0,0,0 -) -g1,2530:6630773,12905903 -) -g1,2532:7579210,12905903 -g1,2532:8843793,12905903 -h1,2532:9792230,12905903:0,0,0 -k1,2532:32583030,12905903:22790800 -g1,2532:32583030,12905903 -) -(1,2534:6630773,14227441:25952256,404226,76021 -(1,2533:6630773,14227441:0,0,0 -g1,2533:6630773,14227441 -g1,2533:6630773,14227441 -g1,2533:6303093,14227441 -(1,2533:6303093,14227441:0,0,0 -) -g1,2533:6630773,14227441 -) -k1,2534:6630773,14227441:0 -h1,2534:11372959,14227441:0,0,0 -k1,2534:32583029,14227441:21210070 -g1,2534:32583029,14227441 -) -(1,2538:6630773,14959155:25952256,404226,76021 -(1,2536:6630773,14959155:0,0,0 -g1,2536:6630773,14959155 -g1,2536:6630773,14959155 -g1,2536:6303093,14959155 -(1,2536:6303093,14959155:0,0,0 -) -g1,2536:6630773,14959155 -) -g1,2538:7579210,14959155 -g1,2538:8843793,14959155 -h1,2538:9159939,14959155:0,0,0 -k1,2538:32583029,14959155:23423090 -g1,2538:32583029,14959155 -) -(1,2540:6630773,16280693:25952256,404226,107478 -(1,2539:6630773,16280693:0,0,0 -g1,2539:6630773,16280693 -g1,2539:6630773,16280693 -g1,2539:6303093,16280693 -(1,2539:6303093,16280693:0,0,0 -) -g1,2539:6630773,16280693 -) -k1,2540:6630773,16280693:0 -h1,2540:12321396,16280693:0,0,0 -k1,2540:32583028,16280693:20261632 -g1,2540:32583028,16280693 -) -(1,2544:6630773,17012407:25952256,404226,76021 -(1,2542:6630773,17012407:0,0,0 -g1,2542:6630773,17012407 -g1,2542:6630773,17012407 -g1,2542:6303093,17012407 -(1,2542:6303093,17012407:0,0,0 -) -g1,2542:6630773,17012407 -) -g1,2544:7579210,17012407 -g1,2544:8843793,17012407 -h1,2544:10108376,17012407:0,0,0 -k1,2544:32583028,17012407:22474652 -g1,2544:32583028,17012407 -) -(1,2546:6630773,18333945:25952256,404226,107478 -(1,2545:6630773,18333945:0,0,0 -g1,2545:6630773,18333945 -g1,2545:6630773,18333945 -g1,2545:6303093,18333945 -(1,2545:6303093,18333945:0,0,0 -) -g1,2545:6630773,18333945 -) -k1,2546:6630773,18333945:0 -h1,2546:11689105,18333945:0,0,0 -k1,2546:32583029,18333945:20893924 -g1,2546:32583029,18333945 -) -(1,2550:6630773,19065659:25952256,404226,76021 -(1,2548:6630773,19065659:0,0,0 -g1,2548:6630773,19065659 -g1,2548:6630773,19065659 -g1,2548:6303093,19065659 -(1,2548:6303093,19065659:0,0,0 -) -g1,2548:6630773,19065659 -) -g1,2550:7579210,19065659 -g1,2550:8843793,19065659 -h1,2550:9476084,19065659:0,0,0 -k1,2550:32583028,19065659:23106944 -g1,2550:32583028,19065659 -) -] -) -g1,2551:32583029,19141680 -g1,2551:6630773,19141680 -g1,2551:6630773,19141680 -g1,2551:32583029,19141680 -g1,2551:32583029,19141680 -) -h1,2551:6630773,19338288:0,0,0 -(1,2555:6630773,20704064:25952256,505283,134348 -h1,2554:6630773,20704064:983040,0,0 -g1,2554:11411624,20704064 -g1,2554:13293818,20704064 -g1,2554:15155695,20704064 -g1,2554:19671781,20704064 -g1,2554:20487048,20704064 -g1,2554:23962422,20704064 -g1,2554:25353096,20704064 -g1,2554:27621952,20704064 -k1,2555:32583029,20704064:1017120 -g1,2555:32583029,20704064 -) -v1,2557:6630773,21894530:0,393216,0 -(1,2576:6630773,27000658:25952256,5499344,196608 -g1,2576:6630773,27000658 -g1,2576:6630773,27000658 -g1,2576:6434165,27000658 -(1,2576:6434165,27000658:0,5499344,196608 -r1,2603:32779637,27000658:26345472,5695952,196608 -k1,2576:6434165,27000658:-26345472 -) -(1,2576:6434165,27000658:26345472,5499344,196608 -[1,2576:6630773,27000658:25952256,5302736,0 -(1,2559:6630773,22086419:25952256,388497,9436 -(1,2558:6630773,22086419:0,0,0 -g1,2558:6630773,22086419 -g1,2558:6630773,22086419 -g1,2558:6303093,22086419 -(1,2558:6303093,22086419:0,0,0 -) -g1,2558:6630773,22086419 -) -g1,2559:8211502,22086419 -g1,2559:8843794,22086419 -h1,2559:9476085,22086419:0,0,0 -k1,2559:32583029,22086419:23106944 -g1,2559:32583029,22086419 -) -(1,2563:6630773,22818133:25952256,404226,76021 -(1,2561:6630773,22818133:0,0,0 -g1,2561:6630773,22818133 -g1,2561:6630773,22818133 -g1,2561:6303093,22818133 -(1,2561:6303093,22818133:0,0,0 -) -g1,2561:6630773,22818133 -) -g1,2563:7579210,22818133 -g1,2563:8843793,22818133 -h1,2563:9476084,22818133:0,0,0 -k1,2563:32583028,22818133:23106944 -g1,2563:32583028,22818133 -) -(1,2565:6630773,24139671:25952256,404226,76021 -(1,2564:6630773,24139671:0,0,0 -g1,2564:6630773,24139671 -g1,2564:6630773,24139671 -g1,2564:6303093,24139671 -(1,2564:6303093,24139671:0,0,0 -) -g1,2564:6630773,24139671 -) -g1,2565:7263065,24139671 -g1,2565:8211502,24139671 -h1,2565:8527648,24139671:0,0,0 -k1,2565:32583028,24139671:24055380 -g1,2565:32583028,24139671 -) -(1,2569:6630773,24871385:25952256,404226,76021 -(1,2567:6630773,24871385:0,0,0 -g1,2567:6630773,24871385 -g1,2567:6630773,24871385 -g1,2567:6303093,24871385 -(1,2567:6303093,24871385:0,0,0 -) -g1,2567:6630773,24871385 -) -g1,2569:7579210,24871385 -g1,2569:8843793,24871385 -h1,2569:10108376,24871385:0,0,0 -k1,2569:32583028,24871385:22474652 -g1,2569:32583028,24871385 -) -(1,2571:6630773,26192923:25952256,404226,76021 -(1,2570:6630773,26192923:0,0,0 -g1,2570:6630773,26192923 -g1,2570:6630773,26192923 -g1,2570:6303093,26192923 -(1,2570:6303093,26192923:0,0,0 -) -g1,2570:6630773,26192923 -) -g1,2571:8527647,26192923 -g1,2571:9159939,26192923 -k1,2571:9159939,26192923:0 -h1,2571:10424523,26192923:0,0,0 -k1,2571:32583029,26192923:22158506 -g1,2571:32583029,26192923 -) -(1,2575:6630773,26924637:25952256,404226,76021 -(1,2573:6630773,26924637:0,0,0 -g1,2573:6630773,26924637 -g1,2573:6630773,26924637 -g1,2573:6303093,26924637 -(1,2573:6303093,26924637:0,0,0 -) -g1,2573:6630773,26924637 -) -g1,2575:7579210,26924637 -g1,2575:8843793,26924637 -g1,2575:9159939,26924637 -g1,2575:10740668,26924637 -g1,2575:11056814,26924637 -g1,2575:12637543,26924637 -g1,2575:14534417,26924637 -g1,2575:14850563,26924637 -g1,2575:16431292,26924637 -g1,2575:16747438,26924637 -h1,2575:18012021,26924637:0,0,0 -k1,2575:32583029,26924637:14571008 -g1,2575:32583029,26924637 -) -] -) -g1,2576:32583029,27000658 -g1,2576:6630773,27000658 -g1,2576:6630773,27000658 -g1,2576:32583029,27000658 -g1,2576:32583029,27000658 -) -h1,2576:6630773,27197266:0,0,0 -v1,2580:6630773,29087330:0,393216,0 -(1,2600:6630773,42651716:25952256,13957602,616038 -g1,2600:6630773,42651716 -(1,2600:6630773,42651716:25952256,13957602,616038 -(1,2600:6630773,43267754:25952256,14573640,0 -[1,2600:6630773,43267754:25952256,14573640,0 -(1,2600:6630773,43241540:25952256,14521212,0 -r1,2603:6656987,43241540:26214,14521212,0 -[1,2600:6656987,43241540:25899828,14521212,0 -(1,2600:6656987,42651716:25899828,13341564,0 -[1,2600:7246811,42651716:24720180,13341564,0 -(1,2581:7246811,30397526:24720180,1087374,134348 -k1,2580:8762218,30397526:305704 -k1,2580:10900309,30397526:305704 -k1,2580:11737510,30397526:305704 -k1,2580:13735354,30397526:305704 -k1,2580:17015082,30397526:305704 -k1,2580:17936824,30397526:305704 -k1,2580:19261613,30397526:305704 -k1,2580:23044002,30397526:305704 -k1,2580:24917327,30397526:305704 -k1,2580:28197710,30397526:305704 -k1,2580:30699525,30397526:305704 -k1,2581:31966991,30397526:0 -) -(1,2581:7246811,31239014:24720180,505283,126483 -(1,2580:7246811,31239014:0,452978,115847 -r1,2603:9715348,31239014:2468537,568825,115847 -k1,2580:7246811,31239014:-2468537 -) -(1,2580:7246811,31239014:2468537,452978,115847 -k1,2580:7246811,31239014:3277 -h1,2580:9712071,31239014:0,411205,112570 -) -k1,2580:9902878,31239014:187530 -k1,2580:11281852,31239014:187529 -(1,2580:11281852,31239014:0,452978,122846 -r1,2603:13750389,31239014:2468537,575824,122846 -k1,2580:11281852,31239014:-2468537 -) -(1,2580:11281852,31239014:2468537,452978,122846 -k1,2580:11281852,31239014:3277 -h1,2580:13747112,31239014:0,411205,112570 -) -k1,2580:13937919,31239014:187530 -k1,2580:16309764,31239014:187530 -k1,2580:17646139,31239014:187529 -k1,2580:18852754,31239014:187530 -k1,2580:22032002,31239014:187529 -k1,2580:24087963,31239014:187530 -k1,2580:25646506,31239014:187530 -k1,2580:27292866,31239014:187529 -k1,2580:28810777,31239014:187530 -k1,2580:31966991,31239014:0 -) -(1,2581:7246811,32080502:24720180,513147,134348 -k1,2580:8052400,32080502:154161 -k1,2580:9185014,32080502:154161 -k1,2580:10109877,32080502:154160 -k1,2580:11589176,32080502:154161 -k1,2580:12402629,32080502:154161 -k1,2580:14105406,32080502:154161 -k1,2580:16455677,32080502:154160 -k1,2580:17601398,32080502:154161 -k1,2580:21112313,32080502:154161 -k1,2580:22457919,32080502:154161 -k1,2580:25420952,32080502:154160 -k1,2580:28735914,32080502:154161 -k1,2580:30081520,32080502:154161 -k1,2580:31966991,32080502:0 -) -(1,2581:7246811,32921990:24720180,505283,126483 -k1,2580:8438017,32921990:199646 -k1,2580:9877603,32921990:199645 -k1,2580:10975092,32921990:199646 -k1,2580:12460554,32921990:199646 -k1,2580:13797904,32921990:199645 -k1,2580:16896863,32921990:199646 -k1,2580:17709271,32921990:199646 -k1,2580:18928001,32921990:199645 -k1,2580:22604332,32921990:199646 -k1,2580:25439181,32921990:199646 -(1,2580:25439181,32921990:0,452978,115847 -r1,2603:27907718,32921990:2468537,568825,115847 -k1,2580:25439181,32921990:-2468537 -) -(1,2580:25439181,32921990:2468537,452978,115847 -k1,2580:25439181,32921990:3277 -h1,2580:27904441,32921990:0,411205,112570 -) -k1,2580:28107363,32921990:199645 -k1,2580:29498454,32921990:199646 -(1,2580:29498454,32921990:0,452978,122846 -r1,2603:31966991,32921990:2468537,575824,122846 -k1,2580:29498454,32921990:-2468537 -) -(1,2580:29498454,32921990:2468537,452978,122846 -k1,2580:29498454,32921990:3277 -h1,2580:31963714,32921990:0,411205,112570 -) -k1,2580:31966991,32921990:0 -) -(1,2581:7246811,33763478:24720180,505283,7863 -g1,2580:9630355,33763478 -g1,2580:9630355,33763478 -g1,2580:9829584,33763478 -g1,2580:9829584,33763478 -k1,2581:31966992,33763478:22137408 -g1,2581:31966992,33763478 -) -v1,2583:7246811,34953944:0,393216,0 -(1,2597:7246811,41930820:24720180,7370092,196608 -g1,2597:7246811,41930820 -g1,2597:7246811,41930820 -g1,2597:7050203,41930820 -(1,2597:7050203,41930820:0,7370092,196608 -r1,2603:32163599,41930820:25113396,7566700,196608 -k1,2597:7050203,41930820:-25113396 -) -(1,2597:7050203,41930820:25113396,7370092,196608 -[1,2597:7246811,41930820:24720180,7173484,0 -(1,2585:7246811,35161562:24720180,404226,76021 -(1,2584:7246811,35161562:0,0,0 -g1,2584:7246811,35161562 -g1,2584:7246811,35161562 -g1,2584:6919131,35161562 -(1,2584:6919131,35161562:0,0,0 -) -g1,2584:7246811,35161562 -) -k1,2585:7246811,35161562:0 -h1,2585:13569725,35161562:0,0,0 -k1,2585:31966991,35161562:18397266 -g1,2585:31966991,35161562 -) -(1,2586:7246811,35827740:24720180,404226,76021 -h1,2586:7246811,35827740:0,0,0 -k1,2586:7246811,35827740:0 -h1,2586:12937434,35827740:0,0,0 -k1,2586:31966990,35827740:19029556 -g1,2586:31966990,35827740 -) -(1,2587:7246811,36493918:24720180,404226,76021 -h1,2587:7246811,36493918:0,0,0 -k1,2587:7246811,36493918:0 -h1,2587:11988997,36493918:0,0,0 -k1,2587:31966991,36493918:19977994 -g1,2587:31966991,36493918 -) -(1,2588:7246811,37160096:24720180,404226,76021 -h1,2588:7246811,37160096:0,0,0 -k1,2588:7246811,37160096:0 -h1,2588:12305143,37160096:0,0,0 -k1,2588:31966991,37160096:19661848 -g1,2588:31966991,37160096 -) -(1,2589:7246811,37826274:24720180,404226,76021 -h1,2589:7246811,37826274:0,0,0 -k1,2589:7246811,37826274:0 -h1,2589:12621288,37826274:0,0,0 -k1,2589:31966992,37826274:19345704 -g1,2589:31966992,37826274 -) -(1,2590:7246811,38492452:24720180,404226,107478 -h1,2590:7246811,38492452:0,0,0 -k1,2590:7246811,38492452:0 -h1,2590:11988997,38492452:0,0,0 -k1,2590:31966991,38492452:19977994 -g1,2590:31966991,38492452 -) -(1,2591:7246811,39158630:24720180,404226,107478 -h1,2591:7246811,39158630:0,0,0 -k1,2591:7246811,39158630:0 -h1,2591:11988997,39158630:0,0,0 -k1,2591:31966991,39158630:19977994 -g1,2591:31966991,39158630 -) -(1,2592:7246811,39824808:24720180,404226,107478 -h1,2592:7246811,39824808:0,0,0 -k1,2592:7246811,39824808:0 -h1,2592:12937434,39824808:0,0,0 -k1,2592:31966990,39824808:19029556 -g1,2592:31966990,39824808 -) -(1,2593:7246811,40490986:24720180,404226,107478 -h1,2593:7246811,40490986:0,0,0 -k1,2593:7246811,40490986:0 -h1,2593:11988997,40490986:0,0,0 -k1,2593:31966991,40490986:19977994 -g1,2593:31966991,40490986 -) -(1,2594:7246811,41157164:24720180,404226,107478 -h1,2594:7246811,41157164:0,0,0 -k1,2594:7246811,41157164:0 -h1,2594:11356706,41157164:0,0,0 -k1,2594:31966990,41157164:20610284 -g1,2594:31966990,41157164 -) -(1,2595:7246811,41823342:24720180,404226,107478 -h1,2595:7246811,41823342:0,0,0 -k1,2595:7246811,41823342:0 -h1,2595:11672852,41823342:0,0,0 -k1,2595:31966992,41823342:20294140 -g1,2595:31966992,41823342 -) -] -) -g1,2597:31966991,41930820 -g1,2597:7246811,41930820 -g1,2597:7246811,41930820 -g1,2597:31966991,41930820 -g1,2597:31966991,41930820 -) -h1,2597:7246811,42127428:0,0,0 -] -) -] -r1,2603:32583029,43241540:26214,14521212,0 -) -] -) -) -g1,2600:32583029,42651716 -) -h1,2600:6630773,43267754:0,0,0 -(1,2523:6630773,45085352:25952256,506878,199855 -(1,2523:6630773,45085352:943720,506878,0 -k1,2523:7302650,45085352:671877 -(1,2523:7302650,45085352:271843,506878,0 -$1,2523:7302650,45085352 -(1,2523:7302650,44865128:271843,286654,0 -) -$1,2523:7574493,45085352 -) -) -(1,2523:7574493,45085352:0,435814,0 -r1,2603:7574493,45085352:0,435814,0 -) -g1,2523:9409502,45085352 -g1,2523:10327006,45085352 -g1,2523:11840102,45085352 -g1,2523:14327849,45085352 -g1,2523:14980064,45085352 -g1,2523:15954716,45085352 -g1,2523:18680489,45085352 -g1,2523:19867478,45085352 -g1,2523:20900850,45085352 -g1,2523:22714887,45085352 -g1,2523:24857128,45085352 -g1,2523:26131673,45085352 -(1,2523:26131673,45085352:0,332241,93333 -r1,2603:26982335,45085352:850662,425574,93333 -k1,2523:26131673,45085352:-850662 -) -(1,2523:26131673,45085352:850662,332241,93333 -k1,2523:26131673,45085352:3277 -h1,2523:26979058,45085352:0,328964,90056 -) -g1,2523:27141719,45085352 -g1,2523:29162850,45085352 -g1,2523:29855959,45085352 -(1,2523:29855959,45085352:0,332241,93333 -r1,2603:30706621,45085352:850662,425574,93333 -k1,2523:29855959,45085352:-850662 -) -(1,2523:29855959,45085352:850662,332241,93333 -k1,2523:29855959,45085352:3277 -h1,2523:30703344,45085352:0,328964,90056 -) -r1,2603:30845557,45085352:0,199855,199855 -k1,2523:32583029,45085352:1737472 -g1,2523:32583029,45085352 -) -] -(1,2603:32583029,45706769:0,0,0 -g1,2603:32583029,45706769 -) -) -] -(1,2603:6630773,47279633:25952256,0,0 -h1,2603:6630773,47279633:25952256,0,0 -) -] -(1,2603:4262630,4025873:0,0,0 -[1,2603:-473656,4025873:0,0,0 -(1,2603:-473656,-710413:0,0,0 -(1,2603:-473656,-710413:0,0,0 -g1,2603:-473656,-710413 -) -g1,2603:-473656,-710413 -) -] -) -] -!20167 -}57 -Input:441:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:442:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:443:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:444:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:445:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:446:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:447:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:448:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:449:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:450:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:451:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:452:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:453:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:454:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1285 -{58 -[1,2691:4262630,47279633:28320399,43253760,0 -(1,2691:4262630,4025873:0,0,0 -[1,2691:-473656,4025873:0,0,0 -(1,2691:-473656,-710413:0,0,0 -(1,2691:-473656,-644877:0,0,0 -k1,2691:-473656,-644877:-65536 -) -(1,2691:-473656,4736287:0,0,0 -k1,2691:-473656,4736287:5209943 -) -g1,2691:-473656,-710413 -) -] -) -[1,2691:6630773,47279633:25952256,43253760,0 -[1,2691:6630773,4812305:25952256,786432,0 -(1,2691:6630773,4812305:25952256,505283,126483 -(1,2691:6630773,4812305:25952256,505283,126483 -g1,2691:3078558,4812305 -[1,2691:3078558,4812305:0,0,0 -(1,2691:3078558,2439708:0,1703936,0 -k1,2691:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,2691:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,2691:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,2691:3078558,4812305:0,0,0 -(1,2691:3078558,2439708:0,1703936,0 -g1,2691:29030814,2439708 -g1,2691:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,2691:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,2691:37855564,2439708:1179648,16384,0 -) -) -k1,2691:3078556,2439708:-34777008 -) -] -[1,2691:3078558,4812305:0,0,0 -(1,2691:3078558,49800853:0,16384,2228224 -k1,2691:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,2691:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,2691:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,2691:3078558,4812305:0,0,0 -(1,2691:3078558,49800853:0,16384,2228224 -g1,2691:29030814,49800853 -g1,2691:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,2691:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,2691:37855564,49800853:1179648,16384,0 -) -) -k1,2691:3078556,49800853:-34777008 -) -] -g1,2691:6630773,4812305 -g1,2691:6630773,4812305 -g1,2691:8715473,4812305 -g1,2691:12574232,4812305 -k1,2691:31786112,4812305:19211880 -) -) -] -[1,2691:6630773,45706769:25952256,40108032,0 -(1,2691:6630773,45706769:25952256,40108032,0 -(1,2691:6630773,45706769:0,0,0 -g1,2691:6630773,45706769 -) -[1,2691:6630773,45706769:25952256,40108032,0 -v1,2603:6630773,6254097:0,393216,0 -(1,2604:6630773,9381617:25952256,3520736,616038 -g1,2604:6630773,9381617 -(1,2604:6630773,9381617:25952256,3520736,616038 -(1,2604:6630773,9997655:25952256,4136774,0 -[1,2604:6630773,9997655:25952256,4136774,0 -(1,2604:6630773,9971441:25952256,4084346,0 -r1,2691:6656987,9971441:26214,4084346,0 -[1,2604:6656987,9971441:25899828,4084346,0 -(1,2604:6656987,9381617:25899828,2904698,0 -[1,2604:7246811,9381617:24720180,2904698,0 -(1,2604:7246811,7564293:24720180,1087374,126483 -k1,2603:8666650,7564293:210136 -k1,2603:11759058,7564293:210135 -k1,2603:12988279,7564293:210136 -k1,2603:15209059,7564293:210135 -k1,2603:18197922,7564293:210136 -k1,2603:19169585,7564293:210135 -(1,2603:19169585,7564293:0,452978,115847 -r1,2691:21638122,7564293:2468537,568825,115847 -k1,2603:19169585,7564293:-2468537 -) -(1,2603:19169585,7564293:2468537,452978,115847 -k1,2603:19169585,7564293:3277 -h1,2603:21634845,7564293:0,411205,112570 -) -k1,2603:21848258,7564293:210136 -k1,2603:23249838,7564293:210135 -(1,2603:23249838,7564293:0,452978,122846 -r1,2691:27476934,7564293:4227096,575824,122846 -k1,2603:23249838,7564293:-4227096 -) -(1,2603:23249838,7564293:4227096,452978,122846 -k1,2603:23249838,7564293:3277 -h1,2603:27473657,7564293:0,411205,112570 -) -k1,2603:27687070,7564293:210136 -k1,2603:29595243,7564293:210135 -k1,2603:31966991,7564293:0 -) -(1,2604:7246811,8405781:24720180,513147,134348 -k1,2603:8064122,8405781:165883 -k1,2603:8585866,8405781:165884 -k1,2603:11183790,8405781:165883 -k1,2603:13037880,8405781:165883 -k1,2603:15863215,8405781:165884 -k1,2603:17522664,8405781:165883 -k1,2603:18374709,8405781:165883 -(1,2603:18374709,8405781:0,435480,115847 -r1,2691:20139822,8405781:1765113,551327,115847 -k1,2603:18374709,8405781:-1765113 -) -(1,2603:18374709,8405781:1765113,435480,115847 -k1,2603:18374709,8405781:3277 -h1,2603:20136545,8405781:0,411205,112570 -) -k1,2603:20479376,8405781:165884 -k1,2603:22589057,8405781:165883 -k1,2603:23702592,8405781:165884 -k1,2603:24887560,8405781:165883 -k1,2603:27600172,8405781:165883 -k1,2603:28425348,8405781:165884 -k1,2603:30775546,8405781:165883 -k1,2603:31966991,8405781:0 -) -(1,2604:7246811,9247269:24720180,513147,134348 -g1,2603:8393691,9247269 -g1,2603:9612005,9247269 -g1,2603:11317907,9247269 -g1,2603:12176428,9247269 -g1,2603:13394742,9247269 -g1,2603:16372698,9247269 -k1,2604:31966991,9247269:13130795 -g1,2604:31966991,9247269 -) -] -) -] -r1,2691:32583029,9971441:26214,4084346,0 -) -] -) -) -g1,2604:32583029,9381617 -) -h1,2604:6630773,9997655:0,0,0 -v1,2607:6630773,11363431:0,393216,0 -(1,2639:6630773,24856233:25952256,13886018,616038 -g1,2639:6630773,24856233 -(1,2639:6630773,24856233:25952256,13886018,616038 -(1,2639:6630773,25472271:25952256,14502056,0 -[1,2639:6630773,25472271:25952256,14502056,0 -(1,2639:6630773,25446057:25952256,14449628,0 -r1,2691:6656987,25446057:26214,14449628,0 -[1,2639:6656987,25446057:25899828,14449628,0 -(1,2639:6656987,24856233:25899828,13269980,0 -[1,2639:7246811,24856233:24720180,13269980,0 -(1,2608:7246811,12748138:24720180,1161885,196608 -(1,2607:7246811,12748138:0,1161885,196608 -r1,2691:8794447,12748138:1547636,1358493,196608 -k1,2607:7246811,12748138:-1547636 -) -(1,2607:7246811,12748138:1547636,1161885,196608 -) -k1,2607:8984351,12748138:189904 -k1,2607:10966008,12748138:189903 -k1,2607:15136569,12748138:189904 -k1,2607:16345558,12748138:189904 -k1,2607:19721821,12748138:189903 -k1,2607:22546928,12748138:189904 -k1,2607:23755916,12748138:189903 -k1,2607:25959086,12748138:189904 -k1,2607:26808282,12748138:189904 -k1,2607:27354045,12748138:189903 -(1,2607:27354045,12748138:0,452978,115847 -r1,2691:30526005,12748138:3171960,568825,115847 -k1,2607:27354045,12748138:-3171960 -) -(1,2607:27354045,12748138:3171960,452978,115847 -k1,2607:27354045,12748138:3277 -h1,2607:30522728,12748138:0,411205,112570 -) -k1,2607:30715909,12748138:189904 -k1,2608:31966991,12748138:0 -) -(1,2608:7246811,13589626:24720180,513147,134348 -k1,2607:8434681,13589626:248084 -k1,2607:9874209,13589626:248083 -k1,2607:11141378,13589626:248084 -k1,2607:13875242,13589626:248083 -k1,2607:14782618,13589626:248084 -k1,2607:18335682,13589626:248083 -k1,2607:22067660,13589626:248084 -k1,2607:23767365,13589626:248083 -k1,2607:26638855,13589626:248084 -k1,2607:29353058,13589626:248083 -k1,2607:31611131,13589626:248084 -k1,2607:31966991,13589626:0 -) -(1,2608:7246811,14431114:24720180,505283,7863 -g1,2607:9423917,14431114 -g1,2607:10154643,14431114 -g1,2607:13020532,14431114 -g1,2607:13020532,14431114 -k1,2608:31966992,14431114:18946460 -g1,2608:31966992,14431114 -) -v1,2610:7246811,15621580:0,393216,0 -(1,2637:7246811,24135337:24720180,8906973,196608 -g1,2637:7246811,24135337 -g1,2637:7246811,24135337 -g1,2637:7050203,24135337 -(1,2637:7050203,24135337:0,8906973,196608 -r1,2691:32163599,24135337:25113396,9103581,196608 -k1,2637:7050203,24135337:-25113396 -) -(1,2637:7050203,24135337:25113396,8906973,196608 -[1,2637:7246811,24135337:24720180,8710365,0 -(1,2612:7246811,15835490:24720180,410518,82312 -(1,2611:7246811,15835490:0,0,0 -g1,2611:7246811,15835490 -g1,2611:7246811,15835490 -g1,2611:6919131,15835490 -(1,2611:6919131,15835490:0,0,0 -) -g1,2611:7246811,15835490 -) -g1,2612:7879103,15835490 -g1,2612:8827541,15835490 -g1,2612:11040562,15835490 -g1,2612:12621291,15835490 -h1,2612:13885874,15835490:0,0,0 -k1,2612:31966990,15835490:18081116 -g1,2612:31966990,15835490 -) -(1,2613:7246811,16501668:24720180,410518,107478 -h1,2613:7246811,16501668:0,0,0 -k1,2613:7246811,16501668:0 -h1,2613:10092122,16501668:0,0,0 -k1,2613:31966990,16501668:21874868 -g1,2613:31966990,16501668 -) -(1,2617:7246811,17233382:24720180,404226,76021 -(1,2615:7246811,17233382:0,0,0 -g1,2615:7246811,17233382 -g1,2615:7246811,17233382 -g1,2615:6919131,17233382 -(1,2615:6919131,17233382:0,0,0 -) -g1,2615:7246811,17233382 -) -g1,2617:8195248,17233382 -g1,2617:9459831,17233382 -h1,2617:9775977,17233382:0,0,0 -k1,2617:31966991,17233382:22191014 -g1,2617:31966991,17233382 -) -(1,2619:7246811,18554920:24720180,404226,107478 -(1,2618:7246811,18554920:0,0,0 -g1,2618:7246811,18554920 -g1,2618:7246811,18554920 -g1,2618:6919131,18554920 -(1,2618:6919131,18554920:0,0,0 -) -g1,2618:7246811,18554920 -) -g1,2619:7879103,18554920 -g1,2619:8827541,18554920 -h1,2619:10408269,18554920:0,0,0 -k1,2619:31966991,18554920:21558722 -g1,2619:31966991,18554920 -) -(1,2620:7246811,19221098:24720180,404226,107478 -h1,2620:7246811,19221098:0,0,0 -k1,2620:7246811,19221098:0 -h1,2620:10092122,19221098:0,0,0 -k1,2620:31966990,19221098:21874868 -g1,2620:31966990,19221098 -) -(1,2624:7246811,19952812:24720180,404226,76021 -(1,2622:7246811,19952812:0,0,0 -g1,2622:7246811,19952812 -g1,2622:7246811,19952812 -g1,2622:6919131,19952812 -(1,2622:6919131,19952812:0,0,0 -) -g1,2622:7246811,19952812 -) -g1,2624:8195248,19952812 -g1,2624:9459831,19952812 -h1,2624:9775977,19952812:0,0,0 -k1,2624:31966991,19952812:22191014 -g1,2624:31966991,19952812 -) -(1,2626:7246811,21274350:24720180,410518,76021 -(1,2625:7246811,21274350:0,0,0 -g1,2625:7246811,21274350 -g1,2625:7246811,21274350 -g1,2625:6919131,21274350 -(1,2625:6919131,21274350:0,0,0 -) -g1,2625:7246811,21274350 -) -k1,2626:7246811,21274350:0 -h1,2626:11356705,21274350:0,0,0 -k1,2626:31966991,21274350:20610286 -g1,2626:31966991,21274350 -) -(1,2630:7246811,22006064:24720180,404226,76021 -(1,2628:7246811,22006064:0,0,0 -g1,2628:7246811,22006064 -g1,2628:7246811,22006064 -g1,2628:6919131,22006064 -(1,2628:6919131,22006064:0,0,0 -) -g1,2628:7246811,22006064 -) -g1,2630:8195248,22006064 -g1,2630:9459831,22006064 -g1,2630:10092123,22006064 -g1,2630:10724415,22006064 -h1,2630:11040561,22006064:0,0,0 -k1,2630:31966991,22006064:20926430 -g1,2630:31966991,22006064 -) -(1,2632:7246811,23327602:24720180,404226,107478 -(1,2631:7246811,23327602:0,0,0 -g1,2631:7246811,23327602 -g1,2631:7246811,23327602 -g1,2631:6919131,23327602 -(1,2631:6919131,23327602:0,0,0 -) -g1,2631:7246811,23327602 -) -k1,2632:7246811,23327602:0 -h1,2632:11356705,23327602:0,0,0 -k1,2632:31966991,23327602:20610286 -g1,2632:31966991,23327602 -) -(1,2636:7246811,24059316:24720180,404226,76021 -(1,2634:7246811,24059316:0,0,0 -g1,2634:7246811,24059316 -g1,2634:7246811,24059316 -g1,2634:6919131,24059316 -(1,2634:6919131,24059316:0,0,0 -) -g1,2634:7246811,24059316 -) -g1,2636:8195248,24059316 -g1,2636:9459831,24059316 -h1,2636:10408268,24059316:0,0,0 -k1,2636:31966992,24059316:21558724 -g1,2636:31966992,24059316 -) -] -) -g1,2637:31966991,24135337 -g1,2637:7246811,24135337 -g1,2637:7246811,24135337 -g1,2637:31966991,24135337 -g1,2637:31966991,24135337 -) -h1,2637:7246811,24331945:0,0,0 -] -) -] -r1,2691:32583029,25446057:26214,14449628,0 -) -] -) -) -g1,2639:32583029,24856233 -) -h1,2639:6630773,25472271:0,0,0 -(1,2643:6630773,26838047:25952256,513147,11795 -h1,2642:6630773,26838047:983040,0,0 -k1,2642:9651863,26838047:221392 -k1,2642:12899053,26838047:221393 -k1,2642:15693388,26838047:221392 -k1,2642:16566208,26838047:221392 -k1,2642:17806686,26838047:221393 -k1,2642:22105073,26838047:221392 -k1,2642:22985758,26838047:221393 -k1,2642:26023232,26838047:221392 -k1,2642:27436069,26838047:221392 -k1,2642:29359432,26838047:221393 -k1,2642:31591469,26838047:221392 -k1,2643:32583029,26838047:0 -) -(1,2643:6630773,27679535:25952256,513147,134348 -(1,2642:6630773,27679535:0,459977,115847 -r1,2691:9451022,27679535:2820249,575824,115847 -k1,2642:6630773,27679535:-2820249 -) -(1,2642:6630773,27679535:2820249,459977,115847 -k1,2642:6630773,27679535:3277 -h1,2642:9447745,27679535:0,411205,112570 -) -k1,2642:9805675,27679535:180983 -k1,2642:11178104,27679535:180984 -(1,2642:11178104,27679535:0,459977,115847 -r1,2691:14350064,27679535:3171960,575824,115847 -k1,2642:11178104,27679535:-3171960 -) -(1,2642:11178104,27679535:3171960,459977,115847 -k1,2642:11178104,27679535:3277 -h1,2642:14346787,27679535:0,411205,112570 -) -k1,2642:14704717,27679535:180983 -k1,2642:16760031,27679535:180984 -k1,2642:18113453,27679535:180983 -k1,2642:21320233,27679535:180983 -k1,2642:23511862,27679535:180984 -(1,2642:23511862,27679535:0,452978,115847 -r1,2691:26683822,27679535:3171960,568825,115847 -k1,2642:23511862,27679535:-3171960 -) -(1,2642:23511862,27679535:3171960,452978,115847 -k1,2642:23511862,27679535:3277 -h1,2642:26680545,27679535:0,411205,112570 -) -k1,2642:26864805,27679535:180983 -k1,2642:29415571,27679535:180984 -k1,2642:31923737,27679535:180983 -k1,2643:32583029,27679535:0 -) -(1,2643:6630773,28521023:25952256,513147,134348 -(1,2642:6630773,28521023:0,452978,115847 -r1,2691:9099310,28521023:2468537,568825,115847 -k1,2642:6630773,28521023:-2468537 -) -(1,2642:6630773,28521023:2468537,452978,115847 -k1,2642:6630773,28521023:3277 -h1,2642:9096033,28521023:0,411205,112570 -) -k1,2642:9370241,28521023:270931 -k1,2642:10324058,28521023:270932 -k1,2642:12296959,28521023:270931 -k1,2642:14752206,28521023:270932 -k1,2642:16214582,28521023:270931 -k1,2642:17477073,28521023:270931 -k1,2642:19725226,28521023:270932 -k1,2642:20943808,28521023:270931 -k1,2642:23787027,28521023:270931 -k1,2642:26390385,28521023:270932 -k1,2642:27932714,28521023:270931 -k1,2642:29972463,28521023:270932 -k1,2642:31923737,28521023:270931 -k1,2642:32583029,28521023:0 -) -(1,2643:6630773,29362511:25952256,513147,134348 -k1,2642:8561391,29362511:233891 -k1,2642:11821078,29362511:233890 -k1,2642:12741131,29362511:233891 -k1,2642:15981158,29362511:233891 -k1,2642:19691733,29362511:233890 -k1,2642:22951421,29362511:233891 -k1,2642:26186206,29362511:233891 -k1,2642:29799132,29362511:233890 -k1,2642:31224468,29362511:233891 -k1,2643:32583029,29362511:0 -) -(1,2643:6630773,30203999:25952256,505283,134348 -k1,2642:8402342,30203999:273416 -k1,2642:11808379,30203999:273416 -k1,2642:13273240,30203999:273416 -k1,2642:16938144,30203999:273416 -k1,2642:20186239,30203999:273416 -k1,2642:22829437,30203999:273416 -k1,2642:26037555,30203999:273416 -k1,2642:27691159,30203999:273416 -k1,2642:28956135,30203999:273416 -k1,2642:31516758,30203999:273416 -k1,2642:32583029,30203999:0 -) -(1,2643:6630773,31045487:25952256,513147,126483 -k1,2642:10422850,31045487:293110 -k1,2642:12994647,31045487:293110 -k1,2642:16764441,31045487:293109 -k1,2642:20257019,31045487:293110 -k1,2642:21236291,31045487:293110 -k1,2642:22909589,31045487:293110 -k1,2642:24194258,31045487:293109 -k1,2642:25841342,31045487:293110 -k1,2642:27980601,31045487:293110 -k1,2642:29786937,31045487:293110 -k1,2642:30696084,31045487:293109 -k1,2642:31345054,31045487:293110 -k1,2642:32583029,31045487:0 -) -(1,2643:6630773,31886975:25952256,513147,134348 -k1,2642:8120266,31886975:204987 -k1,2642:11382508,31886975:204987 -k1,2642:12606580,31886975:204987 -k1,2642:15246885,31886975:204987 -k1,2642:18383953,31886975:204987 -k1,2642:19248232,31886975:204987 -k1,2642:20472305,31886975:204988 -k1,2642:22385816,31886975:204987 -k1,2642:24775118,31886975:204987 -k1,2642:25933654,31886975:204987 -k1,2642:27799323,31886975:204987 -k1,2642:29402193,31886975:204987 -k1,2642:30626265,31886975:204987 -k1,2642:31923737,31886975:204987 -k1,2643:32583029,31886975:0 -) -(1,2643:6630773,32728463:25952256,505283,126483 -(1,2642:6630773,32728463:0,459977,115847 -r1,2691:9451022,32728463:2820249,575824,115847 -k1,2642:6630773,32728463:-2820249 -) -(1,2642:6630773,32728463:2820249,459977,115847 -k1,2642:6630773,32728463:3277 -h1,2642:9447745,32728463:0,411205,112570 -) -k1,2642:9621311,32728463:170289 -k1,2642:10983045,32728463:170289 -(1,2642:10983045,32728463:0,459977,115847 -r1,2691:14155005,32728463:3171960,575824,115847 -k1,2642:10983045,32728463:-3171960 -) -(1,2642:10983045,32728463:3171960,459977,115847 -k1,2642:10983045,32728463:3277 -h1,2642:14151728,32728463:0,411205,112570 -) -k1,2642:14325294,32728463:170289 -k1,2642:15889534,32728463:170289 -(1,2642:15889534,32728463:0,452978,115847 -r1,2691:18358071,32728463:2468537,568825,115847 -k1,2642:15889534,32728463:-2468537 -) -(1,2642:15889534,32728463:2468537,452978,115847 -k1,2642:15889534,32728463:3277 -h1,2642:18354794,32728463:0,411205,112570 -) -k1,2642:18528360,32728463:170289 -k1,2642:20882964,32728463:170289 -k1,2642:22125421,32728463:170288 -k1,2642:23675898,32728463:170289 -k1,2642:24950469,32728463:170289 -k1,2642:26406574,32728463:170289 -k1,2642:27324629,32728463:170289 -k1,2642:29008144,32728463:170289 -k1,2642:30572384,32728463:170289 -k1,2642:32583029,32728463:0 -) -(1,2643:6630773,33569951:25952256,513147,7863 -g1,2642:7489294,33569951 -g1,2642:9390493,33569951 -k1,2643:32583028,33569951:20905984 -g1,2643:32583028,33569951 -) -(1,2645:6630773,34411439:25952256,513147,134348 -h1,2644:6630773,34411439:983040,0,0 -k1,2644:9586983,34411439:189935 -k1,2644:11512312,34411439:189936 -(1,2644:11512312,34411439:0,459977,115847 -r1,2691:14332561,34411439:2820249,575824,115847 -k1,2644:11512312,34411439:-2820249 -) -(1,2644:11512312,34411439:2820249,459977,115847 -k1,2644:11512312,34411439:3277 -h1,2644:14329284,34411439:0,411205,112570 -) -k1,2644:14696166,34411439:189935 -k1,2644:15905187,34411439:189936 -k1,2644:18275505,34411439:189935 -k1,2644:19978667,34411439:189936 -k1,2644:20820030,34411439:189935 -k1,2644:23305037,34411439:189936 -k1,2644:26311054,34411439:189935 -k1,2644:27032487,34411439:189936 -k1,2644:28156965,34411439:189935 -k1,2644:29108429,34411439:189936 -k1,2644:31725818,34411439:189935 -k1,2645:32583029,34411439:0 -) -(1,2645:6630773,35252927:25952256,513147,134348 -k1,2644:9588946,35252927:199763 -k1,2644:10440136,35252927:199762 -k1,2644:12871400,35252927:199763 -k1,2644:15833506,35252927:199763 -k1,2644:19817973,35252927:199763 -k1,2644:20835624,35252927:199762 -(1,2644:20835624,35252927:0,452978,115847 -r1,2691:23304161,35252927:2468537,568825,115847 -k1,2644:20835624,35252927:-2468537 -) -(1,2644:20835624,35252927:2468537,452978,115847 -k1,2644:20835624,35252927:3277 -h1,2644:23300884,35252927:0,411205,112570 -) -k1,2644:23503924,35252927:199763 -k1,2644:25133683,35252927:199763 -(1,2644:25133683,35252927:0,459977,115847 -r1,2691:27953932,35252927:2820249,575824,115847 -k1,2644:25133683,35252927:-2820249 -) -(1,2644:25133683,35252927:2820249,459977,115847 -k1,2644:25133683,35252927:3277 -h1,2644:27950655,35252927:0,411205,112570 -) -k1,2644:28153695,35252927:199763 -k1,2644:29004885,35252927:199762 -k1,2644:30920381,35252927:199763 -k1,2645:32583029,35252927:0 -) -(1,2645:6630773,36094415:25952256,505283,126483 -g1,2644:8196428,36094415 -g1,2644:10314551,36094415 -g1,2644:10971877,36094415 -g1,2644:13549408,36094415 -g1,2644:14767722,36094415 -g1,2644:16620424,36094415 -k1,2645:32583029,36094415:13375899 -g1,2645:32583029,36094415 -) -v1,2647:6630773,37284881:0,393216,0 -(1,2691:6630773,45050147:25952256,8158482,196608 -g1,2691:6630773,45050147 -g1,2691:6630773,45050147 -g1,2691:6434165,45050147 -(1,2691:6434165,45050147:0,8158482,196608 -r1,2691:32779637,45050147:26345472,8355090,196608 -k1,2691:6434165,45050147:-26345472 -) -(1,2691:6434165,45050147:26345472,8158482,196608 -[1,2691:6630773,45050147:25952256,7961874,0 -(1,2649:6630773,37492499:25952256,404226,82312 -(1,2648:6630773,37492499:0,0,0 -g1,2648:6630773,37492499 -g1,2648:6630773,37492499 -g1,2648:6303093,37492499 -(1,2648:6303093,37492499:0,0,0 -) -g1,2648:6630773,37492499 -) -g1,2649:7263065,37492499 -g1,2649:7895357,37492499 -g1,2649:12637543,37492499 -h1,2649:13902126,37492499:0,0,0 -k1,2649:32583030,37492499:18680904 -g1,2649:32583030,37492499 -) -(1,2650:6630773,38158677:25952256,410518,107478 -h1,2650:6630773,38158677:0,0,0 -g1,2650:9792230,38158677 -g1,2650:10424522,38158677 -g1,2650:12321396,38158677 -k1,2650:12321396,38158677:0 -h1,2650:14850561,38158677:0,0,0 -k1,2650:32583029,38158677:17732468 -g1,2650:32583029,38158677 -) -(1,2654:6630773,38890391:25952256,404226,76021 -(1,2652:6630773,38890391:0,0,0 -g1,2652:6630773,38890391 -g1,2652:6630773,38890391 -g1,2652:6303093,38890391 -(1,2652:6303093,38890391:0,0,0 -) -g1,2652:6630773,38890391 -) -g1,2654:7579210,38890391 -g1,2654:8843793,38890391 -g1,2654:12321396,38890391 -g1,2654:12953688,38890391 -g1,2654:13269834,38890391 -h1,2654:15482854,38890391:0,0,0 -k1,2654:32583030,38890391:17100176 -g1,2654:32583030,38890391 -) -(1,2656:6630773,40211929:25952256,410518,107478 -(1,2655:6630773,40211929:0,0,0 -g1,2655:6630773,40211929 -g1,2655:6630773,40211929 -g1,2655:6303093,40211929 -(1,2655:6303093,40211929:0,0,0 -) -g1,2655:6630773,40211929 -) -k1,2656:6630773,40211929:0 -g1,2656:10740667,40211929 -g1,2656:11372959,40211929 -g1,2656:13269833,40211929 -k1,2656:13269833,40211929:0 -h1,2656:15798998,40211929:0,0,0 -k1,2656:32583030,40211929:16784032 -g1,2656:32583030,40211929 -) -(1,2660:6630773,40943643:25952256,404226,76021 -(1,2658:6630773,40943643:0,0,0 -g1,2658:6630773,40943643 -g1,2658:6630773,40943643 -g1,2658:6303093,40943643 -(1,2658:6303093,40943643:0,0,0 -) -g1,2658:6630773,40943643 -) -g1,2660:7579210,40943643 -g1,2660:8843793,40943643 -h1,2660:12005250,40943643:0,0,0 -k1,2660:32583030,40943643:20577780 -g1,2660:32583030,40943643 -) -(1,2662:6630773,42265181:25952256,410518,107478 -(1,2661:6630773,42265181:0,0,0 -g1,2661:6630773,42265181 -g1,2661:6630773,42265181 -g1,2661:6303093,42265181 -(1,2661:6303093,42265181:0,0,0 -) -g1,2661:6630773,42265181 -) -k1,2662:6630773,42265181:0 -g1,2662:10740667,42265181 -g1,2662:11372959,42265181 -g1,2662:13269833,42265181 -k1,2662:13269833,42265181:0 -h1,2662:15798998,42265181:0,0,0 -k1,2662:32583030,42265181:16784032 -g1,2662:32583030,42265181 -) -(1,2666:6630773,42996895:25952256,404226,76021 -(1,2664:6630773,42996895:0,0,0 -g1,2664:6630773,42996895 -g1,2664:6630773,42996895 -g1,2664:6303093,42996895 -(1,2664:6303093,42996895:0,0,0 -) -g1,2664:6630773,42996895 -) -g1,2666:7579210,42996895 -g1,2666:8843793,42996895 -h1,2666:9792230,42996895:0,0,0 -k1,2666:32583030,42996895:22790800 -g1,2666:32583030,42996895 -) -(1,2668:6630773,44318433:25952256,410518,107478 -(1,2667:6630773,44318433:0,0,0 -g1,2667:6630773,44318433 -g1,2667:6630773,44318433 -g1,2667:6303093,44318433 -(1,2667:6303093,44318433:0,0,0 -) -g1,2667:6630773,44318433 -) -k1,2668:6630773,44318433:0 -g1,2668:9792230,44318433 -g1,2668:12005250,44318433 -g1,2668:12637542,44318433 -g1,2668:13585980,44318433 -g1,2668:15799000,44318433 -g1,2668:16431292,44318433 -h1,2668:17063584,44318433:0,0,0 -k1,2668:32583029,44318433:15519445 -g1,2668:32583029,44318433 -) -(1,2672:6630773,45050147:25952256,404226,76021 -(1,2670:6630773,45050147:0,0,0 -g1,2670:6630773,45050147 -g1,2670:6630773,45050147 -g1,2670:6303093,45050147 -(1,2670:6303093,45050147:0,0,0 -) -g1,2670:6630773,45050147 -) -g1,2672:7579210,45050147 -g1,2672:8843793,45050147 -g1,2672:11372959,45050147 -g1,2672:12005251,45050147 -g1,2672:12321397,45050147 -h1,2672:13585980,45050147:0,0,0 -k1,2672:32583028,45050147:18997048 -g1,2672:32583028,45050147 -) -] -) -g1,2691:32583029,45050147 -g1,2691:6630773,45050147 -g1,2691:6630773,45050147 -g1,2691:32583029,45050147 -g1,2691:32583029,45050147 -) -] -(1,2691:32583029,45706769:0,0,0 -g1,2691:32583029,45706769 -) -) -] -(1,2691:6630773,47279633:25952256,0,0 -h1,2691:6630773,47279633:25952256,0,0 -) -] -(1,2691:4262630,4025873:0,0,0 -[1,2691:-473656,4025873:0,0,0 -(1,2691:-473656,-710413:0,0,0 -(1,2691:-473656,-710413:0,0,0 -g1,2691:-473656,-710413 -) -g1,2691:-473656,-710413 -) -] -) -] -!23560 -}58 -Input:455:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:456:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:457:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:458:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:459:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:460:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:461:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:462:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:463:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:464:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:465:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:466:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:467:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:468:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:469:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:470:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:471:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:472:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:473:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:474:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:475:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:476:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:477:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:478:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:479:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:480:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!2377 -{59 -[1,2775:4262630,47279633:28320399,43253760,0 -(1,2775:4262630,4025873:0,0,0 -[1,2775:-473656,4025873:0,0,0 -(1,2775:-473656,-710413:0,0,0 -(1,2775:-473656,-644877:0,0,0 -k1,2775:-473656,-644877:-65536 -) -(1,2775:-473656,4736287:0,0,0 -k1,2775:-473656,4736287:5209943 -) -g1,2775:-473656,-710413 -) -] -) -[1,2775:6630773,47279633:25952256,43253760,0 -[1,2775:6630773,4812305:25952256,786432,0 -(1,2775:6630773,4812305:25952256,505283,134348 -(1,2775:6630773,4812305:25952256,505283,134348 -g1,2775:3078558,4812305 -[1,2775:3078558,4812305:0,0,0 -(1,2775:3078558,2439708:0,1703936,0 -k1,2775:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,2775:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,2775:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,2775:3078558,4812305:0,0,0 -(1,2775:3078558,2439708:0,1703936,0 -g1,2775:29030814,2439708 -g1,2775:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,2775:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,2775:37855564,2439708:1179648,16384,0 -) -) -k1,2775:3078556,2439708:-34777008 -) -] -[1,2775:3078558,4812305:0,0,0 -(1,2775:3078558,49800853:0,16384,2228224 -k1,2775:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,2775:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,2775:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,2775:3078558,4812305:0,0,0 -(1,2775:3078558,49800853:0,16384,2228224 -g1,2775:29030814,49800853 -g1,2775:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,2775:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,2775:37855564,49800853:1179648,16384,0 -) -) -k1,2775:3078556,49800853:-34777008 -) -] -g1,2775:6630773,4812305 -k1,2775:19515153,4812305:12087462 -g1,2775:20901894,4812305 -g1,2775:21550700,4812305 -g1,2775:24864855,4812305 -g1,2775:27600327,4812305 -g1,2775:29010006,4812305 -) -) -] -[1,2775:6630773,45706769:25952256,40108032,0 -(1,2775:6630773,45706769:25952256,40108032,0 -(1,2775:6630773,45706769:0,0,0 -g1,2775:6630773,45706769 -) -[1,2775:6630773,45706769:25952256,40108032,0 -v1,2691:6630773,6254097:0,393216,0 -(1,2691:6630773,11382246:25952256,5521365,196608 -g1,2691:6630773,11382246 -g1,2691:6630773,11382246 -g1,2691:6434165,11382246 -(1,2691:6434165,11382246:0,5521365,196608 -r1,2775:32779637,11382246:26345472,5717973,196608 -k1,2691:6434165,11382246:-26345472 -) -(1,2691:6434165,11382246:26345472,5521365,196608 -[1,2691:6630773,11382246:25952256,5324757,0 -(1,2674:6630773,6468007:25952256,410518,107478 -(1,2673:6630773,6468007:0,0,0 -g1,2673:6630773,6468007 -g1,2673:6630773,6468007 -g1,2673:6303093,6468007 -(1,2673:6303093,6468007:0,0,0 -) -g1,2673:6630773,6468007 -) -k1,2674:6630773,6468007:0 -g1,2674:10740668,6468007 -g1,2674:12953688,6468007 -g1,2674:13585980,6468007 -g1,2674:14534418,6468007 -g1,2674:16747438,6468007 -g1,2674:17379730,6468007 -h1,2674:18012022,6468007:0,0,0 -k1,2674:32583029,6468007:14571007 -g1,2674:32583029,6468007 -) -(1,2678:6630773,7199721:25952256,404226,76021 -(1,2676:6630773,7199721:0,0,0 -g1,2676:6630773,7199721 -g1,2676:6630773,7199721 -g1,2676:6303093,7199721 -(1,2676:6303093,7199721:0,0,0 -) -g1,2676:6630773,7199721 -) -g1,2678:7579210,7199721 -g1,2678:8843793,7199721 -h1,2678:11056813,7199721:0,0,0 -k1,2678:32583029,7199721:21526216 -g1,2678:32583029,7199721 -) -(1,2680:6630773,8521259:25952256,410518,107478 -(1,2679:6630773,8521259:0,0,0 -g1,2679:6630773,8521259 -g1,2679:6630773,8521259 -g1,2679:6303093,8521259 -(1,2679:6303093,8521259:0,0,0 -) -g1,2679:6630773,8521259 -) -k1,2680:6630773,8521259:0 -g1,2680:10740668,8521259 -g1,2680:12953688,8521259 -g1,2680:13585980,8521259 -g1,2680:14534418,8521259 -g1,2680:16747438,8521259 -g1,2680:17379730,8521259 -h1,2680:18012022,8521259:0,0,0 -k1,2680:32583029,8521259:14571007 -g1,2680:32583029,8521259 -) -(1,2684:6630773,9252973:25952256,404226,76021 -(1,2682:6630773,9252973:0,0,0 -g1,2682:6630773,9252973 -g1,2682:6630773,9252973 -g1,2682:6303093,9252973 -(1,2682:6303093,9252973:0,0,0 -) -g1,2682:6630773,9252973 -) -g1,2684:7579210,9252973 -g1,2684:8843793,9252973 -h1,2684:10424521,9252973:0,0,0 -k1,2684:32583029,9252973:22158508 -g1,2684:32583029,9252973 -) -(1,2686:6630773,10574511:25952256,410518,107478 -(1,2685:6630773,10574511:0,0,0 -g1,2685:6630773,10574511 -g1,2685:6630773,10574511 -g1,2685:6303093,10574511 -(1,2685:6303093,10574511:0,0,0 -) -g1,2685:6630773,10574511 -) -k1,2686:6630773,10574511:0 -g1,2686:9792230,10574511 -g1,2686:12005250,10574511 -g1,2686:12637542,10574511 -g1,2686:13585980,10574511 -g1,2686:17063583,10574511 -g1,2686:17695875,10574511 -h1,2686:19276604,10574511:0,0,0 -k1,2686:32583029,10574511:13306425 -g1,2686:32583029,10574511 -) -(1,2690:6630773,11306225:25952256,404226,76021 -(1,2688:6630773,11306225:0,0,0 -g1,2688:6630773,11306225 -g1,2688:6630773,11306225 -g1,2688:6303093,11306225 -(1,2688:6303093,11306225:0,0,0 -) -g1,2688:6630773,11306225 -) -g1,2690:7579210,11306225 -g1,2690:8843793,11306225 -g1,2690:12321396,11306225 -h1,2690:15482853,11306225:0,0,0 -k1,2690:32583029,11306225:17100176 -g1,2690:32583029,11306225 -) -] -) -g1,2691:32583029,11382246 -g1,2691:6630773,11382246 -g1,2691:6630773,11382246 -g1,2691:32583029,11382246 -g1,2691:32583029,11382246 -) -h1,2691:6630773,11578854:0,0,0 -(1,2695:6630773,12876729:25952256,513147,115847 -h1,2694:6630773,12876729:983040,0,0 -k1,2694:10659018,12876729:255337 -(1,2694:10659018,12876729:0,459977,115847 -r1,2775:13830978,12876729:3171960,575824,115847 -k1,2694:10659018,12876729:-3171960 -) -(1,2694:10659018,12876729:3171960,459977,115847 -k1,2694:10659018,12876729:3277 -h1,2694:13827701,12876729:0,411205,112570 -) -k1,2694:14086315,12876729:255337 -k1,2694:14873149,12876729:255337 -k1,2694:17330496,12876729:255337 -k1,2694:18237261,12876729:255337 -k1,2694:19450079,12876729:255337 -k1,2694:22400911,12876729:255336 -k1,2694:23315540,12876729:255337 -k1,2694:24589962,12876729:255337 -k1,2694:26498772,12876729:255337 -k1,2694:28665794,12876729:255337 -k1,2694:30117818,12876729:255337 -k1,2694:31753999,12876729:255337 -k1,2695:32583029,12876729:0 -) -(1,2695:6630773,13718217:25952256,513147,126483 -k1,2694:9079651,13718217:254733 -k1,2694:9865882,13718217:254734 -k1,2694:12072277,13718217:254733 -k1,2694:15051342,13718217:254733 -k1,2694:16378245,13718217:254734 -k1,2694:17986952,13718217:254733 -k1,2694:21272070,13718217:254733 -k1,2694:23017092,13718217:254733 -k1,2694:24428536,13718217:254734 -k1,2694:26625101,13718217:254733 -k1,2694:27898919,13718217:254733 -k1,2694:30411368,13718217:254734 -k1,2694:31563944,13718217:254733 -k1,2694:32583029,13718217:0 -) -(1,2695:6630773,14559705:25952256,513147,134348 -k1,2694:10197623,14559705:139317 -k1,2694:10868437,14559705:139317 -k1,2694:13839565,14559705:139317 -k1,2694:15714276,14559705:139318 -k1,2694:16209453,14559705:139317 -(1,2694:16209453,14559705:0,452978,115847 -r1,2775:19381413,14559705:3171960,568825,115847 -k1,2694:16209453,14559705:-3171960 -) -(1,2694:16209453,14559705:3171960,452978,115847 -k1,2694:16209453,14559705:3277 -h1,2694:19378136,14559705:0,411205,112570 -) -k1,2694:19520730,14559705:139317 -k1,2694:21525857,14559705:139317 -k1,2694:22351336,14559705:139317 -k1,2694:25474507,14559705:139317 -k1,2694:26241660,14559705:139318 -k1,2694:27584218,14559705:139317 -k1,2694:30707389,14559705:139317 -k1,2695:32583029,14559705:0 -) -(1,2695:6630773,15401193:25952256,513147,134348 -k1,2694:9167671,15401193:135659 -k1,2694:10250982,15401193:135660 -k1,2694:11776004,15401193:135659 -k1,2694:13103109,15401193:135660 -k1,2694:14257853,15401193:135659 -k1,2694:17821046,15401193:135660 -k1,2694:21794493,15401193:135659 -k1,2694:22921713,15401193:135660 -k1,2694:26382013,15401193:135659 -k1,2694:28253066,15401193:135660 -k1,2694:30582870,15401193:135659 -k1,2694:32583029,15401193:0 -) -(1,2695:6630773,16242681:25952256,505283,126483 -k1,2694:8688323,16242681:183220 -k1,2694:10698031,16242681:183220 -k1,2694:12369574,16242681:183220 -k1,2694:13946745,16242681:183220 -k1,2694:14485825,16242681:183220 -k1,2694:17078148,16242681:183220 -k1,2694:20409717,16242681:183219 -k1,2694:21546486,16242681:183220 -k1,2694:23390388,16242681:183220 -k1,2694:24189646,16242681:183220 -k1,2694:25391951,16242681:183220 -k1,2694:28236588,16242681:183220 -k1,2694:30288239,16242681:183220 -k1,2694:31490544,16242681:183220 -k1,2694:32583029,16242681:0 -) -(1,2695:6630773,17084169:25952256,513147,134348 -k1,2694:7455610,17084169:165545 -k1,2694:9313296,17084169:165546 -k1,2694:10138133,17084169:165545 -k1,2694:12174077,17084169:165546 -(1,2694:12174077,17084169:0,459977,115847 -r1,2775:12532343,17084169:358266,575824,115847 -k1,2694:12174077,17084169:-358266 -) -(1,2694:12174077,17084169:358266,459977,115847 -k1,2694:12174077,17084169:3277 -h1,2694:12529066,17084169:0,411205,112570 -) -k1,2694:12697888,17084169:165545 -k1,2694:13394931,17084169:165546 -k1,2694:15073702,17084169:165545 -k1,2694:16186899,17084169:165546 -(1,2694:16186899,17084169:0,452978,115847 -r1,2775:18655436,17084169:2468537,568825,115847 -k1,2694:16186899,17084169:-2468537 -) -(1,2694:16186899,17084169:2468537,452978,115847 -k1,2694:16186899,17084169:3277 -h1,2694:18652159,17084169:0,411205,112570 -) -k1,2694:18820981,17084169:165545 -k1,2694:20997172,17084169:165546 -k1,2694:21814145,17084169:165545 -k1,2694:22727457,17084169:165546 -k1,2694:26098368,17084169:165545 -k1,2694:29380806,17084169:165546 -k1,2694:30197779,17084169:165545 -k1,2694:30719185,17084169:165546 -k1,2694:32583029,17084169:0 -) -(1,2695:6630773,17925657:25952256,513147,134348 -k1,2694:9012297,17925657:219491 -k1,2694:10921305,17925657:219490 -(1,2694:10921305,17925657:0,414482,122846 -r1,2775:11279571,17925657:358266,537328,122846 -k1,2694:10921305,17925657:-358266 -) -(1,2694:10921305,17925657:358266,414482,122846 -k1,2694:10921305,17925657:3277 -h1,2694:11276294,17925657:0,411205,112570 -) -k1,2694:11499062,17925657:219491 -k1,2694:12250050,17925657:219491 -k1,2694:13982766,17925657:219490 -k1,2694:15900295,17925657:219491 -k1,2694:16988137,17925657:219490 -k1,2694:18142171,17925657:219491 -k1,2694:19380747,17925657:219491 -k1,2694:22086018,17925657:219490 -k1,2694:22964801,17925657:219491 -k1,2694:26497792,17925657:219491 -k1,2694:28501827,17925657:219490 -k1,2694:29912763,17925657:219491 -(1,2694:29912763,17925657:0,414482,115847 -r1,2775:30271029,17925657:358266,530329,115847 -k1,2694:29912763,17925657:-358266 -) -(1,2694:29912763,17925657:358266,414482,115847 -k1,2694:29912763,17925657:3277 -h1,2694:30267752,17925657:0,411205,112570 -) -k1,2694:30490519,17925657:219490 -k1,2694:31657661,17925657:219491 -k1,2695:32583029,17925657:0 -) -(1,2695:6630773,18767145:25952256,513147,126483 -g1,2694:9841381,18767145 -g1,2694:10723495,18767145 -g1,2694:13662785,18767145 -k1,2695:32583029,18767145:16056976 -g1,2695:32583029,18767145 -) -v1,2697:6630773,19889710:0,393216,0 -(1,2717:6630773,25677745:25952256,6181251,196608 -g1,2717:6630773,25677745 -g1,2717:6630773,25677745 -g1,2717:6434165,25677745 -(1,2717:6434165,25677745:0,6181251,196608 -r1,2775:32779637,25677745:26345472,6377859,196608 -k1,2717:6434165,25677745:-26345472 -) -(1,2717:6434165,25677745:26345472,6181251,196608 -[1,2717:6630773,25677745:25952256,5984643,0 -(1,2699:6630773,20097328:25952256,404226,82312 -(1,2698:6630773,20097328:0,0,0 -g1,2698:6630773,20097328 -g1,2698:6630773,20097328 -g1,2698:6303093,20097328 -(1,2698:6303093,20097328:0,0,0 -) -g1,2698:6630773,20097328 -) -g1,2699:7263065,20097328 -g1,2699:7895357,20097328 -g1,2699:12637543,20097328 -h1,2699:13902126,20097328:0,0,0 -k1,2699:32583030,20097328:18680904 -g1,2699:32583030,20097328 -) -(1,2700:6630773,20763506:25952256,410518,101187 -h1,2700:6630773,20763506:0,0,0 -g1,2700:10740668,20763506 -g1,2700:13269834,20763506 -g1,2700:14850563,20763506 -g1,2700:16747437,20763506 -g1,2700:18012020,20763506 -g1,2700:20225040,20763506 -g1,2700:22121915,20763506 -h1,2700:23702643,20763506:0,0,0 -k1,2700:32583029,20763506:8880386 -g1,2700:32583029,20763506 -) -(1,2704:6630773,21495220:25952256,404226,76021 -(1,2702:6630773,21495220:0,0,0 -g1,2702:6630773,21495220 -g1,2702:6630773,21495220 -g1,2702:6303093,21495220 -(1,2702:6303093,21495220:0,0,0 -) -g1,2702:6630773,21495220 -) -g1,2704:7579210,21495220 -g1,2704:8843793,21495220 -g1,2704:10424522,21495220 -g1,2704:12953688,21495220 -g1,2704:14534417,21495220 -g1,2704:16747437,21495220 -g1,2704:18012020,21495220 -h1,2704:18644311,21495220:0,0,0 -k1,2704:32583029,21495220:13938718 -g1,2704:32583029,21495220 -) -(1,2706:6630773,22816758:25952256,410518,107478 -(1,2705:6630773,22816758:0,0,0 -g1,2705:6630773,22816758 -g1,2705:6630773,22816758 -g1,2705:6303093,22816758 -(1,2705:6303093,22816758:0,0,0 -) -g1,2705:6630773,22816758 -) -k1,2706:6630773,22816758:0 -g1,2706:10740668,22816758 -g1,2706:13269834,22816758 -g1,2706:14850563,22816758 -g1,2706:16431292,22816758 -g1,2706:17695875,22816758 -g1,2706:19908895,22816758 -g1,2706:21805770,22816758 -h1,2706:23386498,22816758:0,0,0 -k1,2706:32583029,22816758:9196531 -g1,2706:32583029,22816758 -) -(1,2710:6630773,23548472:25952256,404226,76021 -(1,2708:6630773,23548472:0,0,0 -g1,2708:6630773,23548472 -g1,2708:6630773,23548472 -g1,2708:6303093,23548472 -(1,2708:6303093,23548472:0,0,0 -) -g1,2708:6630773,23548472 -) -g1,2710:7579210,23548472 -g1,2710:8843793,23548472 -g1,2710:10424522,23548472 -g1,2710:12953688,23548472 -g1,2710:14534417,23548472 -g1,2710:16431291,23548472 -g1,2710:17695874,23548472 -h1,2710:18328165,23548472:0,0,0 -k1,2710:32583029,23548472:14254864 -g1,2710:32583029,23548472 -) -(1,2712:6630773,24870010:25952256,410518,101187 -(1,2711:6630773,24870010:0,0,0 -g1,2711:6630773,24870010 -g1,2711:6630773,24870010 -g1,2711:6303093,24870010 -(1,2711:6303093,24870010:0,0,0 -) -g1,2711:6630773,24870010 -) -k1,2712:6630773,24870010:0 -g1,2712:10740668,24870010 -g1,2712:13269834,24870010 -g1,2712:14850563,24870010 -g1,2712:16747437,24870010 -g1,2712:18012020,24870010 -g1,2712:20225040,24870010 -g1,2712:22121915,24870010 -h1,2712:23702643,24870010:0,0,0 -k1,2712:32583029,24870010:8880386 -g1,2712:32583029,24870010 -) -(1,2716:6630773,25601724:25952256,404226,76021 -(1,2714:6630773,25601724:0,0,0 -g1,2714:6630773,25601724 -g1,2714:6630773,25601724 -g1,2714:6303093,25601724 -(1,2714:6303093,25601724:0,0,0 -) -g1,2714:6630773,25601724 -) -g1,2716:7579210,25601724 -g1,2716:8843793,25601724 -g1,2716:10424522,25601724 -g1,2716:12953688,25601724 -g1,2716:14534417,25601724 -g1,2716:17379728,25601724 -g1,2716:18644311,25601724 -h1,2716:20541185,25601724:0,0,0 -k1,2716:32583029,25601724:12041844 -g1,2716:32583029,25601724 -) -] -) -g1,2717:32583029,25677745 -g1,2717:6630773,25677745 -g1,2717:6630773,25677745 -g1,2717:32583029,25677745 -g1,2717:32583029,25677745 -) -h1,2717:6630773,25874353:0,0,0 -(1,2721:6630773,27172228:25952256,505283,126483 -h1,2720:6630773,27172228:983040,0,0 -k1,2720:8469610,27172228:227962 -k1,2720:9716658,27172228:227963 -k1,2720:12754804,27172228:227962 -(1,2720:12754804,27172228:0,459977,115847 -r1,2775:24367848,27172228:11613044,575824,115847 -k1,2720:12754804,27172228:-11613044 -) -(1,2720:12754804,27172228:11613044,459977,115847 -g1,2720:14516640,27172228 -g1,2720:17330335,27172228 -g1,2720:19088894,27172228 -g1,2720:21199165,27172228 -g1,2720:22606012,27172228 -h1,2720:24364571,27172228:0,411205,112570 -) -k1,2720:24769480,27172228:227962 -k1,2720:26652226,27172228:227962 -k1,2720:27871749,27172228:227963 -k1,2720:29272150,27172228:227962 -k1,2721:32583029,27172228:0 -) -(1,2721:6630773,28013716:25952256,513147,126483 -k1,2720:7776967,28013716:180193 -k1,2720:8904810,28013716:180192 -(1,2720:8904810,28013716:0,452978,115847 -r1,2775:11373347,28013716:2468537,568825,115847 -k1,2720:8904810,28013716:-2468537 -) -(1,2720:8904810,28013716:2468537,452978,115847 -k1,2720:8904810,28013716:3277 -h1,2720:11370070,28013716:0,411205,112570 -) -k1,2720:11553540,28013716:180193 -k1,2720:13918047,28013716:180192 -(1,2720:13918047,28013716:0,459977,115847 -r1,2775:15683160,28013716:1765113,575824,115847 -k1,2720:13918047,28013716:-1765113 -) -(1,2720:13918047,28013716:1765113,459977,115847 -k1,2720:13918047,28013716:3277 -h1,2720:15679883,28013716:0,411205,112570 -) -k1,2720:15863353,28013716:180193 -k1,2720:17234991,28013716:180193 -(1,2720:17234991,28013716:0,459977,115847 -r1,2775:18648392,28013716:1413401,575824,115847 -k1,2720:17234991,28013716:-1413401 -) -(1,2720:17234991,28013716:1413401,459977,115847 -k1,2720:17234991,28013716:3277 -h1,2720:18645115,28013716:0,411205,112570 -) -k1,2720:19002254,28013716:180192 -k1,2720:19907275,28013716:180193 -k1,2720:20703505,28013716:180192 -k1,2720:23549703,28013716:180193 -k1,2720:24381324,28013716:180193 -k1,2720:25580601,28013716:180192 -k1,2720:28744648,28013716:180193 -k1,2720:29793192,28013716:180192 -k1,2720:31410590,28013716:180193 -k1,2720:32583029,28013716:0 -) -(1,2721:6630773,28855204:25952256,513147,126483 -k1,2720:8884674,28855204:243256 -k1,2720:12099988,28855204:243256 -k1,2720:13910864,28855204:243255 -k1,2720:15173205,28855204:243256 -k1,2720:16722594,28855204:243256 -k1,2720:18138289,28855204:243256 -k1,2720:21326077,28855204:243255 -k1,2720:22228625,28855204:243256 -k1,2720:24449758,28855204:243256 -(1,2720:24449758,28855204:0,414482,115847 -r1,2775:24808024,28855204:358266,530329,115847 -k1,2720:24449758,28855204:-358266 -) -(1,2720:24449758,28855204:358266,414482,115847 -k1,2720:24449758,28855204:3277 -h1,2720:24804747,28855204:0,411205,112570 -) -k1,2720:25224950,28855204:243256 -k1,2720:27342535,28855204:243255 -k1,2720:29354608,28855204:243256 -k1,2720:31073079,28855204:243256 -k1,2720:32583029,28855204:0 -) -(1,2721:6630773,29696692:25952256,513147,134348 -k1,2720:7975080,29696692:171868 -k1,2720:10909291,29696692:171868 -k1,2720:13389337,29696692:171868 -k1,2720:14220497,29696692:171868 -k1,2720:16405631,29696692:171868 -k1,2720:17907880,29696692:171868 -k1,2720:18762634,29696692:171869 -k1,2720:20401198,29696692:171868 -k1,2720:23193195,29696692:171868 -k1,2720:26626790,29696692:171868 -k1,2720:27995345,29696692:171868 -k1,2720:30977397,29696692:171868 -k1,2720:32583029,29696692:0 -) -(1,2721:6630773,30538180:25952256,505283,126483 -k1,2720:8347422,30538180:223739 -k1,2720:9637431,30538180:223738 -k1,2720:11391436,30538180:223739 -k1,2720:12266603,30538180:223739 -k1,2720:13238107,30538180:223738 -k1,2720:13817706,30538180:223739 -(1,2720:13817706,30538180:0,452978,115847 -r1,2775:16989666,30538180:3171960,568825,115847 -k1,2720:13817706,30538180:-3171960 -) -(1,2720:13817706,30538180:3171960,452978,115847 -k1,2720:13817706,30538180:3277 -h1,2720:16986389,30538180:0,411205,112570 -) -k1,2720:17213405,30538180:223739 -k1,2720:20194898,30538180:223738 -k1,2720:21104799,30538180:223739 -k1,2720:21944576,30538180:223739 -k1,2720:23865041,30538180:223738 -k1,2720:27254169,30538180:223739 -k1,2720:28164070,30538180:223739 -k1,2720:28743668,30538180:223738 -k1,2720:31478747,30538180:223739 -k1,2720:32583029,30538180:0 -) -(1,2721:6630773,31379668:25952256,505283,134348 -g1,2720:7577768,31379668 -g1,2720:9062813,31379668 -g1,2720:11467329,31379668 -g1,2720:12352720,31379668 -k1,2721:32583030,31379668:16984312 -g1,2721:32583030,31379668 -) -v1,2723:6630773,32677543:0,393216,0 -(1,2724:6630773,39159513:25952256,6875186,616038 -g1,2724:6630773,39159513 -(1,2724:6630773,39159513:25952256,6875186,616038 -(1,2724:6630773,39775551:25952256,7491224,0 -[1,2724:6630773,39775551:25952256,7491224,0 -(1,2724:6630773,39749337:25952256,7438796,0 -r1,2775:6656987,39749337:26214,7438796,0 -[1,2724:6656987,39749337:25899828,7438796,0 -(1,2724:6656987,39159513:25899828,6259148,0 -[1,2724:7246811,39159513:24720180,6259148,0 -(1,2724:7246811,33987739:24720180,1087374,126483 -k1,2723:8692885,33987739:236371 -k1,2723:11719124,33987739:236371 -(1,2723:11719124,33987739:0,459977,115847 -r1,2775:14539373,33987739:2820249,575824,115847 -k1,2723:11719124,33987739:-2820249 -) -(1,2723:11719124,33987739:2820249,459977,115847 -k1,2723:11719124,33987739:3277 -h1,2723:14536096,33987739:0,411205,112570 -) -k1,2723:14775744,33987739:236371 -k1,2723:16349048,33987739:236370 -k1,2723:17333185,33987739:236371 -k1,2723:19439954,33987739:236371 -k1,2723:20327753,33987739:236371 -k1,2723:21830280,33987739:236371 -k1,2723:22682689,33987739:236371 -k1,2723:24611199,33987739:236370 -k1,2723:26718623,33987739:236371 -k1,2723:28027163,33987739:236371 -(1,2723:28027163,33987739:0,459977,115847 -r1,2775:31199123,33987739:3171960,575824,115847 -k1,2723:28027163,33987739:-3171960 -) -(1,2723:28027163,33987739:3171960,459977,115847 -k1,2723:28027163,33987739:3277 -h1,2723:31195846,33987739:0,411205,112570 -) -k1,2723:31435494,33987739:236371 -k1,2723:31966991,33987739:0 -) -(1,2724:7246811,34829227:24720180,513147,134348 -k1,2723:9059842,34829227:162834 -k1,2723:11523646,34829227:162835 -k1,2723:12877925,34829227:162834 -k1,2723:16071145,34829227:162835 -k1,2723:18155495,34829227:162834 -k1,2723:19712281,34829227:162835 -k1,2723:23288230,34829227:162834 -k1,2723:24067103,34829227:162835 -k1,2723:25249022,34829227:162834 -k1,2723:26504342,34829227:162835 -k1,2723:27326468,34829227:162834 -k1,2723:28508388,34829227:162835 -k1,2723:29124695,34829227:162798 -k1,2723:31966991,34829227:0 -) -(1,2724:7246811,35670715:24720180,513147,134348 -k1,2723:8546716,35670715:167443 -k1,2723:11048551,35670715:167443 -k1,2723:12938936,35670715:167443 -k1,2723:14928935,35670715:167443 -(1,2723:14928935,35670715:0,459977,115847 -r1,2775:18100895,35670715:3171960,575824,115847 -k1,2723:14928935,35670715:-3171960 -) -(1,2723:14928935,35670715:3171960,459977,115847 -k1,2723:14928935,35670715:3277 -h1,2723:18097618,35670715:0,411205,112570 -) -k1,2723:18268338,35670715:167443 -k1,2723:19627226,35670715:167443 -k1,2723:20583067,35670715:167443 -k1,2723:21842995,35670715:167443 -k1,2723:22669730,35670715:167443 -k1,2723:25977658,35670715:167443 -k1,2723:27092752,35670715:167443 -k1,2723:30687728,35670715:167443 -k1,2724:31966991,35670715:0 -) -(1,2724:7246811,36512203:24720180,513147,134348 -k1,2723:8696337,36512203:183370 -k1,2723:10369995,36512203:183369 -k1,2723:11019326,36512203:183370 -k1,2723:12373168,36512203:183369 -k1,2723:13548098,36512203:183370 -k1,2723:16223802,36512203:183370 -k1,2723:17801122,36512203:183369 -k1,2723:18611671,36512203:183370 -k1,2723:20181782,36512203:183369 -k1,2723:21200736,36512203:183370 -k1,2723:22403191,36512203:183370 -k1,2723:23974613,36512203:183369 -k1,2723:25986437,36512203:183370 -k1,2723:27117457,36512203:183369 -k1,2723:28767523,36512203:183370 -k1,2723:31966991,36512203:0 -) -(1,2724:7246811,37353691:24720180,513147,134348 -k1,2723:8671615,37353691:233359 -k1,2723:11616197,37353691:233358 -k1,2723:12611084,37353691:233359 -k1,2723:14741054,37353691:233358 -k1,2723:15625841,37353691:233359 -k1,2723:17788580,37353691:233359 -k1,2723:19041023,37353691:233358 -k1,2723:20927855,37353691:233359 -k1,2723:24366580,37353691:233359 -k1,2723:26758694,37353691:233358 -k1,2723:27753581,37353691:233359 -k1,2723:30055255,37353691:233358 -k1,2723:30947906,37353691:233359 -k1,2723:31966991,37353691:0 -) -(1,2724:7246811,38195179:24720180,513147,126483 -k1,2723:8626797,38195179:207547 -k1,2723:12033813,38195179:207548 -k1,2723:13139203,38195179:207547 -k1,2723:14632567,38195179:207548 -k1,2723:16182947,38195179:207547 -k1,2723:17784446,38195179:207548 -k1,2723:19688720,38195179:207547 -k1,2723:22922065,38195179:207548 -k1,2723:24523563,38195179:207547 -k1,2723:26433081,38195179:207548 -k1,2723:28357016,38195179:207547 -k1,2723:29223856,38195179:207548 -k1,2723:30820766,38195179:207547 -k1,2724:31966991,38195179:0 -) -(1,2724:7246811,39036667:24720180,505283,122846 -(1,2723:7246811,39036667:0,452978,122846 -r1,2775:9715348,39036667:2468537,575824,122846 -k1,2723:7246811,39036667:-2468537 -) -(1,2723:7246811,39036667:2468537,452978,122846 -k1,2723:7246811,39036667:3277 -h1,2723:9712071,39036667:0,411205,112570 -) -g1,2723:9914577,39036667 -g1,2723:11305251,39036667 -(1,2723:11305251,39036667:0,452978,115847 -r1,2775:14477211,39036667:3171960,568825,115847 -k1,2723:11305251,39036667:-3171960 -) -(1,2723:11305251,39036667:3171960,452978,115847 -k1,2723:11305251,39036667:3277 -h1,2723:14473934,39036667:0,411205,112570 -) -k1,2724:31966991,39036667:17316110 -g1,2724:31966991,39036667 -) -] -) -] -r1,2775:32583029,39749337:26214,7438796,0 -) -] -) -) -g1,2724:32583029,39159513 -) -h1,2724:6630773,39775551:0,0,0 -v1,2727:6630773,41073426:0,393216,0 -(1,2775:6630773,45116945:25952256,4436735,589824 -g1,2775:6630773,45116945 -(1,2775:6630773,45116945:25952256,4436735,589824 -(1,2775:6630773,45706769:25952256,5026559,0 -[1,2775:6630773,45706769:25952256,5026559,0 -(1,2775:6630773,45706769:25952256,5000345,0 -r1,2775:6656987,45706769:26214,5000345,0 -[1,2775:6656987,45706769:25899828,5000345,0 -(1,2775:6656987,45116945:25899828,3820697,0 -[1,2775:7246811,45116945:24720180,3820697,0 -(1,2728:7246811,42458133:24720180,1161885,196608 -(1,2727:7246811,42458133:0,1161885,196608 -r1,2775:8794447,42458133:1547636,1358493,196608 -k1,2727:7246811,42458133:-1547636 -) -(1,2727:7246811,42458133:1547636,1161885,196608 -) -k1,2727:8969108,42458133:174661 -k1,2727:10097318,42458133:174661 -k1,2727:11747193,42458133:174660 -k1,2727:13777178,42458133:174661 -k1,2727:17041862,42458133:174661 -(1,2727:17041862,42458133:0,414482,115847 -r1,2775:17751840,42458133:709978,530329,115847 -k1,2727:17041862,42458133:-709978 -) -(1,2727:17041862,42458133:709978,414482,115847 -k1,2727:17041862,42458133:3277 -h1,2727:17748563,42458133:0,411205,112570 -) -k1,2727:17926501,42458133:174661 -k1,2727:18787323,42458133:174660 -k1,2727:19317844,42458133:174661 -k1,2727:21365524,42458133:174661 -k1,2727:23220528,42458133:174661 -k1,2727:26058572,42458133:174661 -k1,2727:28519783,42458133:174660 -k1,2727:29766613,42458133:174661 -k1,2727:30557312,42458133:174661 -k1,2728:31966991,42458133:0 -) -(1,2728:7246811,43299621:24720180,513147,126483 -k1,2727:8275795,43299621:209784 -(1,2727:8275795,43299621:0,414482,115847 -r1,2775:8985773,43299621:709978,530329,115847 -k1,2727:8275795,43299621:-709978 -) -(1,2727:8275795,43299621:709978,414482,115847 -k1,2727:8275795,43299621:3277 -h1,2727:8982496,43299621:0,411205,112570 -) -k1,2727:9195557,43299621:209784 -k1,2727:9735642,43299621:209784 -k1,2727:11640841,43299621:209783 -k1,2727:12466663,43299621:209784 -k1,2727:15018704,43299621:209784 -k1,2727:17562880,43299621:209784 -(1,2727:17562880,43299621:0,452978,115847 -r1,2775:20383129,43299621:2820249,568825,115847 -k1,2727:17562880,43299621:-2820249 -) -(1,2727:17562880,43299621:2820249,452978,115847 -k1,2727:17562880,43299621:3277 -h1,2727:20379852,43299621:0,411205,112570 -) -k1,2727:20766583,43299621:209784 -(1,2727:20766583,43299621:0,452978,115847 -r1,2775:25345391,43299621:4578808,568825,115847 -k1,2727:20766583,43299621:-4578808 -) -(1,2727:20766583,43299621:4578808,452978,115847 -k1,2727:20766583,43299621:3277 -h1,2727:25342114,43299621:0,411205,112570 -) -k1,2727:25728845,43299621:209784 -k1,2727:27050119,43299621:209783 -k1,2727:28451348,43299621:209784 -(1,2727:28451348,43299621:0,414482,115847 -r1,2775:29161326,43299621:709978,530329,115847 -k1,2727:28451348,43299621:-709978 -) -(1,2727:28451348,43299621:709978,414482,115847 -k1,2727:28451348,43299621:3277 -h1,2727:29158049,43299621:0,411205,112570 -) -k1,2727:29371110,43299621:209784 -k1,2727:31966991,43299621:0 -) -(1,2728:7246811,44141109:24720180,513147,126483 -k1,2727:8124497,44141109:226258 -k1,2727:9121458,44141109:226258 -(1,2727:9121458,44141109:0,414482,115847 -r1,2775:9831436,44141109:709978,530329,115847 -k1,2727:9121458,44141109:-709978 -) -(1,2727:9121458,44141109:709978,414482,115847 -k1,2727:9121458,44141109:3277 -h1,2727:9828159,44141109:0,411205,112570 -) -k1,2727:10057694,44141109:226258 -k1,2727:10943243,44141109:226257 -k1,2727:12724670,44141109:226258 -(1,2727:12724670,44141109:0,452978,122846 -r1,2775:15193207,44141109:2468537,575824,122846 -k1,2727:12724670,44141109:-2468537 -) -(1,2727:12724670,44141109:2468537,452978,122846 -k1,2727:12724670,44141109:3277 -h1,2727:15189930,44141109:0,411205,112570 -) -k1,2727:15593135,44141109:226258 -(1,2727:15593135,44141109:0,414482,115847 -r1,2775:16303113,44141109:709978,530329,115847 -k1,2727:15593135,44141109:-709978 -) -(1,2727:15593135,44141109:709978,414482,115847 -k1,2727:15593135,44141109:3277 -h1,2727:16299836,44141109:0,411205,112570 -) -k1,2727:16529371,44141109:226258 -k1,2727:17287126,44141109:226258 -k1,2727:20358302,44141109:226258 -k1,2727:23745361,44141109:226258 -k1,2727:24780989,44141109:226258 -k1,2727:26026331,44141109:226257 -k1,2727:27048196,44141109:226258 -k1,2727:27925882,44141109:226258 -k1,2727:29854110,44141109:226258 -k1,2727:31966991,44141109:0 -) -(1,2728:7246811,44982597:24720180,505283,134348 -g1,2727:9144078,44982597 -g1,2727:11815325,44982597 -g1,2727:12739382,44982597 -g1,2727:13554649,44982597 -g1,2727:16086960,44982597 -(1,2727:16086960,44982597:0,414482,115847 -r1,2775:16796938,44982597:709978,530329,115847 -k1,2727:16086960,44982597:-709978 -) -(1,2727:16086960,44982597:709978,414482,115847 -k1,2727:16086960,44982597:3277 -h1,2727:16793661,44982597:0,411205,112570 -) -g1,2727:16996167,44982597 -g1,2727:17726893,44982597 -g1,2727:18692238,44982597 -g1,2727:19759819,44982597 -g1,2727:21489314,44982597 -g1,2727:22339971,44982597 -k1,2728:31966991,44982597:8360864 -g1,2728:31966991,44982597 -) -] -) -] -r1,2775:32583029,45706769:26214,5000345,0 -) -] -) -) -g1,2775:32583029,45116945 -) -] -(1,2775:32583029,45706769:0,0,0 -g1,2775:32583029,45706769 -) -) -] -(1,2775:6630773,47279633:25952256,0,0 -h1,2775:6630773,47279633:25952256,0,0 -) -] -(1,2775:4262630,4025873:0,0,0 -[1,2775:-473656,4025873:0,0,0 -(1,2775:-473656,-710413:0,0,0 -(1,2775:-473656,-710413:0,0,0 -g1,2775:-473656,-710413 -) -g1,2775:-473656,-710413 -) -] -) -] -!29929 -}59 -Input:481:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:482:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:483:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:484:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:485:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:486:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:487:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!648 -{60 -[1,2805:4262630,47279633:28320399,43253760,0 -(1,2805:4262630,4025873:0,0,0 -[1,2805:-473656,4025873:0,0,0 -(1,2805:-473656,-710413:0,0,0 -(1,2805:-473656,-644877:0,0,0 -k1,2805:-473656,-644877:-65536 -) -(1,2805:-473656,4736287:0,0,0 -k1,2805:-473656,4736287:5209943 -) -g1,2805:-473656,-710413 -) -] -) -[1,2805:6630773,47279633:25952256,43253760,0 -[1,2805:6630773,4812305:25952256,786432,0 -(1,2805:6630773,4812305:25952256,505283,126483 -(1,2805:6630773,4812305:25952256,505283,126483 -g1,2805:3078558,4812305 -[1,2805:3078558,4812305:0,0,0 -(1,2805:3078558,2439708:0,1703936,0 -k1,2805:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,2805:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,2805:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,2805:3078558,4812305:0,0,0 -(1,2805:3078558,2439708:0,1703936,0 -g1,2805:29030814,2439708 -g1,2805:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,2805:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,2805:37855564,2439708:1179648,16384,0 -) -) -k1,2805:3078556,2439708:-34777008 -) -] -[1,2805:3078558,4812305:0,0,0 -(1,2805:3078558,49800853:0,16384,2228224 -k1,2805:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,2805:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,2805:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,2805:3078558,4812305:0,0,0 -(1,2805:3078558,49800853:0,16384,2228224 -g1,2805:29030814,49800853 -g1,2805:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,2805:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,2805:37855564,49800853:1179648,16384,0 -) -) -k1,2805:3078556,49800853:-34777008 -) -] -g1,2805:6630773,4812305 -g1,2805:6630773,4812305 -g1,2805:8826229,4812305 -g1,2805:13247287,4812305 -k1,2805:31786111,4812305:18538824 -) -) -] -[1,2805:6630773,45706769:25952256,40108032,0 -(1,2805:6630773,45706769:25952256,40108032,0 -(1,2805:6630773,45706769:0,0,0 -g1,2805:6630773,45706769 -) -[1,2805:6630773,45706769:25952256,40108032,0 -v1,2775:6630773,6254097:0,393216,0 -(1,2775:6630773,21193480:25952256,15332599,616038 -g1,2775:6630773,21193480 -(1,2775:6630773,21193480:25952256,15332599,616038 -(1,2775:6630773,21809518:25952256,15948637,0 -[1,2775:6630773,21809518:25952256,15948637,0 -(1,2775:6630773,21783304:25952256,15922423,0 -r1,2805:6656987,21783304:26214,15922423,0 -[1,2775:6656987,21783304:25899828,15922423,0 -(1,2775:6656987,21193480:25899828,14742775,0 -[1,2775:7246811,21193480:24720180,14742775,0 -v1,2730:7246811,6843921:0,393216,0 -(1,2763:7246811,17436095:24720180,10985390,196608 -g1,2763:7246811,17436095 -g1,2763:7246811,17436095 -g1,2763:7050203,17436095 -(1,2763:7050203,17436095:0,10985390,196608 -r1,2805:32163599,17436095:25113396,11181998,196608 -k1,2763:7050203,17436095:-25113396 -) -(1,2763:7050203,17436095:25113396,10985390,196608 -[1,2763:7246811,17436095:24720180,10788782,0 -(1,2732:7246811,7051539:24720180,404226,82312 -(1,2731:7246811,7051539:0,0,0 -g1,2731:7246811,7051539 -g1,2731:7246811,7051539 -g1,2731:6919131,7051539 -(1,2731:6919131,7051539:0,0,0 -) -g1,2731:7246811,7051539 -) -g1,2732:7879103,7051539 -g1,2732:8827541,7051539 -g1,2732:10408271,7051539 -h1,2732:11356708,7051539:0,0,0 -k1,2732:31966992,7051539:20610284 -g1,2732:31966992,7051539 -) -(1,2733:7246811,7717717:24720180,404226,76021 -h1,2733:7246811,7717717:0,0,0 -k1,2733:7246811,7717717:0 -h1,2733:12305142,7717717:0,0,0 -k1,2733:31966990,7717717:19661848 -g1,2733:31966990,7717717 -) -(1,2737:7246811,8449431:24720180,404226,76021 -(1,2735:7246811,8449431:0,0,0 -g1,2735:7246811,8449431 -g1,2735:7246811,8449431 -g1,2735:6919131,8449431 -(1,2735:6919131,8449431:0,0,0 -) -g1,2735:7246811,8449431 -) -g1,2737:8195248,8449431 -g1,2737:9459831,8449431 -h1,2737:10724414,8449431:0,0,0 -k1,2737:31966990,8449431:21242576 -g1,2737:31966990,8449431 -) -(1,2739:7246811,9770969:24720180,404226,76021 -(1,2738:7246811,9770969:0,0,0 -g1,2738:7246811,9770969 -g1,2738:7246811,9770969 -g1,2738:6919131,9770969 -(1,2738:6919131,9770969:0,0,0 -) -g1,2738:7246811,9770969 -) -k1,2739:7246811,9770969:0 -h1,2739:11672851,9770969:0,0,0 -k1,2739:31966991,9770969:20294140 -g1,2739:31966991,9770969 -) -(1,2743:7246811,10502683:24720180,404226,76021 -(1,2741:7246811,10502683:0,0,0 -g1,2741:7246811,10502683 -g1,2741:7246811,10502683 -g1,2741:6919131,10502683 -(1,2741:6919131,10502683:0,0,0 -) -g1,2741:7246811,10502683 -) -g1,2743:8195248,10502683 -g1,2743:9459831,10502683 -h1,2743:11040559,10502683:0,0,0 -k1,2743:31966991,10502683:20926432 -g1,2743:31966991,10502683 -) -(1,2745:7246811,11824221:24720180,404226,82312 -(1,2744:7246811,11824221:0,0,0 -g1,2744:7246811,11824221 -g1,2744:7246811,11824221 -g1,2744:6919131,11824221 -(1,2744:6919131,11824221:0,0,0 -) -g1,2744:7246811,11824221 -) -g1,2745:7879103,11824221 -g1,2745:8827541,11824221 -g1,2745:11672853,11824221 -h1,2745:12621290,11824221:0,0,0 -k1,2745:31966990,11824221:19345700 -g1,2745:31966990,11824221 -) -(1,2746:7246811,12490399:24720180,404226,76021 -h1,2746:7246811,12490399:0,0,0 -k1,2746:7246811,12490399:0 -h1,2746:12937433,12490399:0,0,0 -k1,2746:31966991,12490399:19029558 -g1,2746:31966991,12490399 -) -(1,2750:7246811,13222113:24720180,404226,76021 -(1,2748:7246811,13222113:0,0,0 -g1,2748:7246811,13222113 -g1,2748:7246811,13222113 -g1,2748:6919131,13222113 -(1,2748:6919131,13222113:0,0,0 -) -g1,2748:7246811,13222113 -) -g1,2750:8195248,13222113 -g1,2750:9459831,13222113 -h1,2750:10724414,13222113:0,0,0 -k1,2750:31966990,13222113:21242576 -g1,2750:31966990,13222113 -) -(1,2752:7246811,14543651:24720180,404226,76021 -(1,2751:7246811,14543651:0,0,0 -g1,2751:7246811,14543651 -g1,2751:7246811,14543651 -g1,2751:6919131,14543651 -(1,2751:6919131,14543651:0,0,0 -) -g1,2751:7246811,14543651 -) -k1,2752:7246811,14543651:0 -h1,2752:12305142,14543651:0,0,0 -k1,2752:31966990,14543651:19661848 -g1,2752:31966990,14543651 -) -(1,2756:7246811,15275365:24720180,404226,76021 -(1,2754:7246811,15275365:0,0,0 -g1,2754:7246811,15275365 -g1,2754:7246811,15275365 -g1,2754:6919131,15275365 -(1,2754:6919131,15275365:0,0,0 -) -g1,2754:7246811,15275365 -) -g1,2756:8195248,15275365 -g1,2756:9459831,15275365 -h1,2756:11040559,15275365:0,0,0 -k1,2756:31966991,15275365:20926432 -g1,2756:31966991,15275365 -) -(1,2758:7246811,16596903:24720180,404226,76021 -(1,2757:7246811,16596903:0,0,0 -g1,2757:7246811,16596903 -g1,2757:7246811,16596903 -g1,2757:6919131,16596903 -(1,2757:6919131,16596903:0,0,0 -) -g1,2757:7246811,16596903 -) -k1,2758:7246811,16596903:0 -h1,2758:10092122,16596903:0,0,0 -k1,2758:31966990,16596903:21874868 -g1,2758:31966990,16596903 -) -(1,2762:7246811,17328617:24720180,404226,107478 -(1,2760:7246811,17328617:0,0,0 -g1,2760:7246811,17328617 -g1,2760:7246811,17328617 -g1,2760:6919131,17328617 -(1,2760:6919131,17328617:0,0,0 -) -g1,2760:7246811,17328617 -) -g1,2762:8195248,17328617 -g1,2762:9459831,17328617 -h1,2762:12305142,17328617:0,0,0 -k1,2762:31966990,17328617:19661848 -g1,2762:31966990,17328617 -) -] -) -g1,2763:31966991,17436095 -g1,2763:7246811,17436095 -g1,2763:7246811,17436095 -g1,2763:31966991,17436095 -g1,2763:31966991,17436095 -) -h1,2763:7246811,17632703:0,0,0 -(1,2767:7246811,18998479:24720180,505283,126483 -h1,2766:7246811,18998479:983040,0,0 -g1,2766:9919369,18998479 -g1,2766:11137683,18998479 -g1,2766:14523272,18998479 -g1,2766:16590932,18998479 -g1,2766:18716919,18998479 -k1,2767:31966991,18998479:8779861 -g1,2767:31966991,18998479 -) -v1,2769:7246811,20188945:0,393216,0 -(1,2773:7246811,20472584:24720180,676855,196608 -g1,2773:7246811,20472584 -g1,2773:7246811,20472584 -g1,2773:7050203,20472584 -(1,2773:7050203,20472584:0,676855,196608 -r1,2805:32163599,20472584:25113396,873463,196608 -k1,2773:7050203,20472584:-25113396 -) -(1,2773:7050203,20472584:25113396,676855,196608 -[1,2773:7246811,20472584:24720180,480247,0 -(1,2771:7246811,20396563:24720180,404226,76021 -(1,2770:7246811,20396563:0,0,0 -g1,2770:7246811,20396563 -g1,2770:7246811,20396563 -g1,2770:6919131,20396563 -(1,2770:6919131,20396563:0,0,0 -) -g1,2770:7246811,20396563 -) -g1,2771:8827540,20396563 -g1,2771:9775978,20396563 -h1,2771:11040561,20396563:0,0,0 -k1,2771:31966991,20396563:20926430 -g1,2771:31966991,20396563 -) -] -) -g1,2773:31966991,20472584 -g1,2773:7246811,20472584 -g1,2773:7246811,20472584 -g1,2773:31966991,20472584 -g1,2773:31966991,20472584 -) -h1,2773:7246811,20669192:0,0,0 -] -) -] -r1,2805:32583029,21783304:26214,15922423,0 -) -] -) -) -g1,2775:32583029,21193480 -) -h1,2775:6630773,21809518:0,0,0 -(1,2779:6630773,24963108:25952256,32768,229376 -(1,2779:6630773,24963108:0,32768,229376 -(1,2779:6630773,24963108:5505024,32768,229376 -r1,2805:12135797,24963108:5505024,262144,229376 -) -k1,2779:6630773,24963108:-5505024 -) -(1,2779:6630773,24963108:25952256,32768,0 -r1,2805:32583029,24963108:25952256,32768,0 -) -) -(1,2779:6630773,26567436:25952256,606339,151780 -(1,2779:6630773,26567436:2464678,582746,14155 -g1,2779:6630773,26567436 -g1,2779:9095451,26567436 -) -g1,2779:11954918,26567436 -k1,2779:32583029,26567436:15379464 -g1,2779:32583029,26567436 -) -(1,2782:6630773,27802140:25952256,513147,126483 -k1,2781:7335753,27802140:227223 -k1,2781:8733448,27802140:227222 -k1,2781:10435886,27802140:227223 -k1,2781:12075410,27802140:227223 -k1,2781:14336214,27802140:227222 -k1,2781:17172425,27802140:227223 -k1,2781:18058940,27802140:227223 -k1,2781:19489403,27802140:227222 -k1,2781:22307920,27802140:227223 -k1,2781:23705615,27802140:227222 -k1,2781:26267230,27802140:227223 -k1,2781:28217395,27802140:227223 -k1,2781:29774998,27802140:227222 -k1,2781:30653649,27802140:227223 -k1,2781:32583029,27802140:0 -) -(1,2782:6630773,28643628:25952256,505283,126483 -k1,2781:7199625,28643628:212992 -k1,2781:9564164,28643628:212992 -k1,2781:10695971,28643628:212992 -k1,2781:13217140,28643628:212991 -k1,2781:14421692,28643628:212992 -k1,2781:17939665,28643628:212992 -k1,2781:18804085,28643628:212992 -k1,2781:20565693,28643628:212992 -k1,2781:22734935,28643628:212992 -k1,2781:23695692,28643628:212991 -k1,2781:26195235,28643628:212992 -k1,2781:27024265,28643628:212992 -k1,2781:31560667,28643628:212992 -k1,2782:32583029,28643628:0 -) -(1,2782:6630773,29485116:25952256,505283,126483 -k1,2781:8758297,29485116:247296 -k1,2781:9691755,29485116:247296 -$1,2781:9691755,29485116 -(1,2781:10154439,29583430:1131020,334430,5505 -) -k1,2781:11555368,29485116:269909 -k1,2781:12393475,29485116:269910 -(1,2781:12856159,29583430:311689,334430,0 -) -k1,2781:13466483,29485116:109236 -(1,2781:13929167,29583430:311689,339935,0 -) -k1,2781:14539491,29485116:109236 -k1,2781:15304087,29485116:109236 -k1,2781:15602722,29485116:109236 -(1,2781:16065406,29583430:233243,346358,5505 -) -k1,2781:16597284,29485116:109236 -k1,2781:17361880,29485116:109236 -k1,2781:17660515,29485116:109236 -(1,2781:18123199,29583430:393347,248644,5505 -) -$1,2781:18516546,29485116 -k1,2781:18937512,29485116:247296 -k1,2781:20564996,29485116:247296 -k1,2781:21803852,29485116:247296 -k1,2781:23117419,29485116:247296 -k1,2781:24383799,29485116:247295 -k1,2781:27936076,29485116:247296 -k1,2781:28834800,29485116:247296 -k1,2781:30101181,29485116:247296 -k1,2781:32583029,29485116:0 -) -(1,2782:6630773,30326604:25952256,658636,126483 -k1,2781:9584528,30326604:176339 -k1,2781:10376904,30326604:176338 -k1,2781:13073758,30326604:176339 -k1,2781:15135568,30326604:176339 -k1,2781:16303466,30326604:176338 -k1,2781:20150476,30326604:176339 -k1,2781:21720765,30326604:176338 -k1,2781:22667807,30326604:176339 -k1,2781:24692261,30326604:176339 -k1,2781:25554761,30326604:176338 -k1,2781:26501803,30326604:176339 -k1,2781:29494224,30326604:176339 -k1,2781:31164128,30326604:176338 -k1,2781:32026629,30326604:176339 -$1,2781:32026629,30326604 -[1,2781:32026629,30326604:382730,658636,0 -(1,2781:32026629,30200120:0,532152,0 -(1,2781:32026629,30200120:382730,532152,0 -k1,2781:32093475,30200120:-129762 -) -) -(1,2781:32026629,30326604:382730,473825,0 -) -] -$1,2781:32409359,30326604 -k1,2782:32583029,30326604:0 -k1,2782:32583029,30326604:0 -) -(1,2784:6630773,31168092:25952256,505283,134348 -h1,2783:6630773,31168092:983040,0,0 -k1,2783:8422003,31168092:180355 -k1,2783:9805599,31168092:180355 -k1,2783:12264641,31168092:180355 -k1,2783:13313348,31168092:180355 -k1,2783:14485263,31168092:180355 -k1,2783:16424604,31168092:180355 -k1,2783:17256387,31168092:180355 -k1,2783:18461724,31168092:180354 -k1,2783:19972460,31168092:180355 -k1,2783:20804243,31168092:180355 -k1,2783:23188574,31168092:180355 -k1,2783:24051814,31168092:180355 -k1,2783:26839847,31168092:180355 -k1,2783:29492220,31168092:180355 -k1,2783:30864020,31168092:180355 -k1,2783:32583029,31168092:0 -) -(1,2784:6630773,32009580:25952256,513147,134348 -k1,2783:9665211,32009580:165272 -k1,2783:11324048,32009580:165271 -k1,2783:12175482,32009580:165272 -$1,2783:12175482,32009580 -(1,2783:12638166,32107894:311689,339935,0 -) -$1,2783:12949855,32009580 -k1,2783:13115127,32009580:165272 -k1,2783:14848019,32009580:165271 -k1,2783:15369151,32009580:165272 -k1,2783:17685970,32009580:165272 -k1,2783:20744001,32009580:165272 -k1,2783:21900832,32009580:165271 -k1,2783:25038162,32009580:165272 -k1,2783:26938827,32009580:165272 -k1,2783:27874801,32009580:165271 -k1,2783:29789229,32009580:165272 -k1,2783:32583029,32009580:0 -) -(1,2784:6630773,32851068:25952256,505283,134348 -k1,2783:7474876,32851068:228065 -k1,2783:9575960,32851068:228065 -k1,2783:11945087,32851068:228066 -k1,2783:15052149,32851068:228065 -k1,2783:16476901,32851068:228065 -k1,2783:18454123,32851068:228066 -k1,2783:21544145,32851068:228065 -k1,2783:22791295,32851068:228065 -k1,2783:25633591,32851068:228065 -k1,2783:26477695,32851068:228066 -k1,2783:27724845,32851068:228065 -k1,2783:30104457,32851068:228065 -k1,2783:32583029,32851068:0 -) -(1,2784:6630773,33692556:25952256,513147,134348 -k1,2783:8352908,33692556:154514 -k1,2783:9837802,33692556:154513 -k1,2783:12967651,33692556:154514 -k1,2783:14141250,33692556:154514 -k1,2783:16016738,33692556:154513 -k1,2783:20494662,33692556:154514 -k1,2783:23613369,33692556:154514 -k1,2783:24721432,33692556:154514 -k1,2783:26273828,33692556:154513 -k1,2783:27520827,33692556:154514 -k1,2783:28031201,33692556:154514 -k1,2783:30163591,33692556:154513 -k1,2783:30977397,33692556:154514 -k1,2784:32583029,33692556:0 -) -(1,2784:6630773,34534044:25952256,513147,7863 -k1,2783:8820936,34534044:277822 -k1,2783:9750186,34534044:277822 -k1,2783:11743741,34534044:277822 -k1,2783:12479660,34534044:277822 -k1,2783:14287748,34534044:277822 -k1,2783:15584655,34534044:277822 -k1,2783:19288699,34534044:277822 -k1,2783:22201724,34534044:277822 -k1,2783:25228781,34534044:277822 -k1,2783:26165895,34534044:277822 -k1,2783:27462802,34534044:277822 -k1,2783:29718501,34534044:277822 -k1,2783:31563944,34534044:277822 -k1,2783:32583029,34534044:0 -) -(1,2784:6630773,35375532:25952256,513147,103819 -k1,2783:10028043,35375532:216152 -k1,2783:12844664,35375532:216152 -k1,2783:14694628,35375532:216151 -k1,2783:15526818,35375532:216152 -k1,2783:17720847,35375532:216152 -k1,2783:20626597,35375532:216152 -k1,2783:22798999,35375532:216152 -k1,2783:23762916,35375532:216151 -$1,2783:23762916,35375532 -(1,2783:24225600,35473846:233243,346358,5505 -) -$1,2783:24458843,35375532 -k1,2783:24674995,35375532:216152 -k1,2783:25838798,35375532:216152 -k1,2783:26410810,35375532:216152 -k1,2783:28604839,35375532:216152 -$1,2783:28604839,35375532 -(1,2783:29067523,35473846:1131020,334430,5505 -) -$1,2783:30198543,35375532 -k1,2783:30588364,35375532:216151 -k1,2783:31420554,35375532:216152 -k1,2783:32051532,35375532:216135 -k1,2783:32583029,35375532:0 -) -(1,2784:6630773,36217020:25952256,505283,134348 -k1,2783:10632419,36217020:192038 -k1,2783:11510619,36217020:192038 -(1,2783:11510619,36217020:0,452978,115847 -r1,2805:12924020,36217020:1413401,568825,115847 -k1,2783:11510619,36217020:-1413401 -) -(1,2783:11510619,36217020:1413401,452978,115847 -k1,2783:11510619,36217020:3277 -h1,2783:12920743,36217020:0,411205,112570 -) -k1,2783:13116058,36217020:192038 -k1,2783:14499541,36217020:192038 -k1,2783:15710664,36217020:192038 -k1,2783:17785550,36217020:192037 -k1,2783:20129135,36217020:192038 -k1,2783:21082701,36217020:192038 -k1,2783:24351654,36217020:192038 -k1,2783:25562777,36217020:192038 -k1,2783:28460141,36217020:192038 -k1,2783:29843624,36217020:192038 -k1,2783:32583029,36217020:0 -) -(1,2784:6630773,37058508:25952256,426639,115847 -g1,2783:8981549,37058508 -g1,2783:9866940,37058508 -(1,2783:9866940,37058508:0,414482,115847 -r1,2805:10225206,37058508:358266,530329,115847 -k1,2783:9866940,37058508:-358266 -) -(1,2783:9866940,37058508:358266,414482,115847 -k1,2783:9866940,37058508:3277 -h1,2783:10221929,37058508:0,411205,112570 -) -k1,2784:32583028,37058508:22184152 -g1,2784:32583028,37058508 -) -v1,2786:6630773,38070707:0,393216,0 -(1,2800:6630773,41805490:25952256,4127999,196608 -g1,2800:6630773,41805490 -g1,2800:6630773,41805490 -g1,2800:6434165,41805490 -(1,2800:6434165,41805490:0,4127999,196608 -r1,2805:32779637,41805490:26345472,4324607,196608 -k1,2800:6434165,41805490:-26345472 -) -(1,2800:6434165,41805490:26345472,4127999,196608 -[1,2800:6630773,41805490:25952256,3931391,0 -(1,2788:6630773,38278325:25952256,404226,76021 -(1,2787:6630773,38278325:0,0,0 -g1,2787:6630773,38278325 -g1,2787:6630773,38278325 -g1,2787:6303093,38278325 -(1,2787:6303093,38278325:0,0,0 -) -g1,2787:6630773,38278325 -) -g1,2788:7263065,38278325 -g1,2788:8211503,38278325 -h1,2788:12321397,38278325:0,0,0 -k1,2788:32583029,38278325:20261632 -g1,2788:32583029,38278325 -) -(1,2789:6630773,38944503:25952256,284164,4718 -h1,2789:6630773,38944503:0,0,0 -h1,2789:6946919,38944503:0,0,0 -k1,2789:32583029,38944503:25636110 -g1,2789:32583029,38944503 -) -(1,2793:6630773,39676217:25952256,410518,107478 -(1,2791:6630773,39676217:0,0,0 -g1,2791:6630773,39676217 -g1,2791:6630773,39676217 -g1,2791:6303093,39676217 -(1,2791:6303093,39676217:0,0,0 -) -g1,2791:6630773,39676217 -) -g1,2793:7579210,39676217 -g1,2793:7895356,39676217 -g1,2793:9159939,39676217 -g1,2793:10424522,39676217 -g1,2793:11689105,39676217 -g1,2793:12953688,39676217 -g1,2793:14218271,39676217 -g1,2793:15482854,39676217 -g1,2793:16747437,39676217 -g1,2793:18012020,39676217 -g1,2793:19276603,39676217 -g1,2793:20541186,39676217 -h1,2793:21489623,39676217:0,0,0 -k1,2793:32583029,39676217:11093406 -g1,2793:32583029,39676217 -) -(1,2795:6630773,40997755:25952256,404226,76021 -(1,2794:6630773,40997755:0,0,0 -g1,2794:6630773,40997755 -g1,2794:6630773,40997755 -g1,2794:6303093,40997755 -(1,2794:6303093,40997755:0,0,0 -) -g1,2794:6630773,40997755 -) -h1,2795:7895356,40997755:0,0,0 -k1,2795:32583028,40997755:24687672 -g1,2795:32583028,40997755 -) -(1,2799:6630773,41729469:25952256,404226,76021 -(1,2797:6630773,41729469:0,0,0 -g1,2797:6630773,41729469 -g1,2797:6630773,41729469 -g1,2797:6303093,41729469 -(1,2797:6303093,41729469:0,0,0 -) -g1,2797:6630773,41729469 -) -g1,2799:7579210,41729469 -g1,2799:8843793,41729469 -h1,2799:9792230,41729469:0,0,0 -k1,2799:32583030,41729469:22790800 -g1,2799:32583030,41729469 -) -] -) -g1,2800:32583029,41805490 -g1,2800:6630773,41805490 -g1,2800:6630773,41805490 -g1,2800:32583029,41805490 -g1,2800:32583029,41805490 -) -h1,2800:6630773,42002098:0,0,0 -v1,2804:6630773,43535630:0,393216,0 -(1,2805:6630773,45116945:25952256,1974531,589824 -g1,2805:6630773,45116945 -(1,2805:6630773,45116945:25952256,1974531,589824 -(1,2805:6630773,45706769:25952256,2564355,0 -[1,2805:6630773,45706769:25952256,2564355,0 -(1,2805:6630773,45706769:25952256,2538141,0 -r1,2805:6656987,45706769:26214,2538141,0 -[1,2805:6656987,45706769:25899828,2538141,0 -(1,2805:6656987,45116945:25899828,1358493,0 -[1,2805:7246811,45116945:24720180,1358493,0 -(1,2805:7246811,44920337:24720180,1161885,196608 -(1,2804:7246811,44920337:0,1161885,196608 -r1,2805:8794447,44920337:1547636,1358493,196608 -k1,2804:7246811,44920337:-1547636 -) -(1,2804:7246811,44920337:1547636,1161885,196608 -) -k1,2804:8946277,44920337:151830 -k1,2804:10554973,44920337:151831 -k1,2804:13464558,44920337:151830 -k1,2804:15924567,44920337:151831 -k1,2804:17067957,44920337:151830 -k1,2804:20003757,44920337:151831 -k1,2804:20771625,44920337:151830 -k1,2804:21511969,44920337:151831 -(1,2804:21511969,44920337:0,452978,115847 -r1,2805:23980506,44920337:2468537,568825,115847 -k1,2804:21511969,44920337:-2468537 -) -(1,2804:21511969,44920337:2468537,452978,115847 -k1,2804:21511969,44920337:3277 -h1,2804:23977229,44920337:0,411205,112570 -) -k1,2804:24306006,44920337:151830 -(1,2804:24306006,44920337:0,414482,115847 -r1,2805:26774543,44920337:2468537,530329,115847 -k1,2804:24306006,44920337:-2468537 -) -(1,2804:24306006,44920337:2468537,414482,115847 -k1,2804:24306006,44920337:3277 -h1,2804:26771266,44920337:0,411205,112570 -) -k1,2804:27100044,44920337:151831 -(1,2804:27100044,44920337:0,452978,115847 -r1,2805:30623716,44920337:3523672,568825,115847 -k1,2804:27100044,44920337:-3523672 -) -(1,2804:27100044,44920337:3523672,452978,115847 -k1,2804:27100044,44920337:3277 -h1,2804:30620439,44920337:0,411205,112570 -) -k1,2804:30775546,44920337:151830 -k1,2805:31966991,44920337:0 -) -] -) -] -r1,2805:32583029,45706769:26214,2538141,0 -) -] -) -) -g1,2805:32583029,45116945 -) -] -(1,2805:32583029,45706769:0,0,0 -g1,2805:32583029,45706769 -) -) -] -(1,2805:6630773,47279633:25952256,0,0 -h1,2805:6630773,47279633:25952256,0,0 -) -] -(1,2805:4262630,4025873:0,0,0 -[1,2805:-473656,4025873:0,0,0 -(1,2805:-473656,-710413:0,0,0 -(1,2805:-473656,-710413:0,0,0 -g1,2805:-473656,-710413 -) -g1,2805:-473656,-710413 -) -] -) -] -!21884 -}60 -Input:488:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!102 -{61 -[1,2875:4262630,47279633:28320399,43253760,0 -(1,2875:4262630,4025873:0,0,0 -[1,2875:-473656,4025873:0,0,0 -(1,2875:-473656,-710413:0,0,0 -(1,2875:-473656,-644877:0,0,0 -k1,2875:-473656,-644877:-65536 -) -(1,2875:-473656,4736287:0,0,0 -k1,2875:-473656,4736287:5209943 -) -g1,2875:-473656,-710413 -) -] -) -[1,2875:6630773,47279633:25952256,43253760,0 -[1,2875:6630773,4812305:25952256,786432,0 -(1,2875:6630773,4812305:25952256,505283,134348 -(1,2875:6630773,4812305:25952256,505283,134348 -g1,2875:3078558,4812305 -[1,2875:3078558,4812305:0,0,0 -(1,2875:3078558,2439708:0,1703936,0 -k1,2875:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,2875:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,2875:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,2875:3078558,4812305:0,0,0 -(1,2875:3078558,2439708:0,1703936,0 -g1,2875:29030814,2439708 -g1,2875:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,2875:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,2875:37855564,2439708:1179648,16384,0 -) -) -k1,2875:3078556,2439708:-34777008 -) -] -[1,2875:3078558,4812305:0,0,0 -(1,2875:3078558,49800853:0,16384,2228224 -k1,2875:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,2875:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,2875:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,2875:3078558,4812305:0,0,0 -(1,2875:3078558,49800853:0,16384,2228224 -g1,2875:29030814,49800853 -g1,2875:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,2875:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,2875:37855564,49800853:1179648,16384,0 -) -) -k1,2875:3078556,49800853:-34777008 -) -] -g1,2875:6630773,4812305 -k1,2875:19515153,4812305:12087462 -g1,2875:20901894,4812305 -g1,2875:21550700,4812305 -g1,2875:24864855,4812305 -g1,2875:27600327,4812305 -g1,2875:29010006,4812305 -) -) -] -[1,2875:6630773,45706769:25952256,40108032,0 -(1,2875:6630773,45706769:25952256,40108032,0 -(1,2875:6630773,45706769:0,0,0 -g1,2875:6630773,45706769 -) -[1,2875:6630773,45706769:25952256,40108032,0 -v1,2805:6630773,6254097:0,393216,0 -(1,2805:6630773,7939688:25952256,2078807,616038 -g1,2805:6630773,7939688 -(1,2805:6630773,7939688:25952256,2078807,616038 -(1,2805:6630773,8555726:25952256,2694845,0 -[1,2805:6630773,8555726:25952256,2694845,0 -(1,2805:6630773,8529512:25952256,2668631,0 -r1,2875:6656987,8529512:26214,2668631,0 -[1,2805:6656987,8529512:25899828,2668631,0 -(1,2805:6656987,7939688:25899828,1488983,0 -[1,2805:7246811,7939688:24720180,1488983,0 -(1,2805:7246811,6963852:24720180,513147,126483 -(1,2804:7246811,6963852:0,452978,115847 -r1,2875:10418771,6963852:3171960,568825,115847 -k1,2804:7246811,6963852:-3171960 -) -(1,2804:7246811,6963852:3171960,452978,115847 -k1,2804:7246811,6963852:3277 -h1,2804:10415494,6963852:0,411205,112570 -) -k1,2804:10799113,6963852:206672 -k1,2804:11665078,6963852:206673 -k1,2804:13757221,6963852:206672 -k1,2804:14832246,6963852:206673 -k1,2804:16552144,6963852:206672 -(1,2804:16552144,6963852:0,452978,115847 -r1,2875:19020681,6963852:2468537,568825,115847 -k1,2804:16552144,6963852:-2468537 -) -(1,2804:16552144,6963852:2468537,452978,115847 -k1,2804:16552144,6963852:3277 -h1,2804:19017404,6963852:0,411205,112570 -) -k1,2804:19227354,6963852:206673 -k1,2804:20050064,6963852:206672 -k1,2804:21275821,6963852:206672 -k1,2804:24143911,6963852:206673 -k1,2804:26379578,6963852:206672 -k1,2804:28460581,6963852:206673 -k1,2804:30975431,6963852:206672 -k1,2804:31966991,6963852:0 -) -(1,2805:7246811,7805340:24720180,513147,134348 -g1,2804:9575305,7805340 -g1,2804:10722185,7805340 -g1,2804:13406539,7805340 -g1,2804:17325591,7805340 -g1,2804:18184112,7805340 -g1,2804:19402426,7805340 -k1,2805:31966991,7805340:10549333 -g1,2805:31966991,7805340 -) -] -) -] -r1,2875:32583029,8529512:26214,2668631,0 -) -] -) -) -g1,2805:32583029,7939688 -) -h1,2805:6630773,8555726:0,0,0 -v1,2808:6630773,9712183:0,393216,0 -(1,2809:6630773,13679353:25952256,4360386,616038 -g1,2809:6630773,13679353 -(1,2809:6630773,13679353:25952256,4360386,616038 -(1,2809:6630773,14295391:25952256,4976424,0 -[1,2809:6630773,14295391:25952256,4976424,0 -(1,2809:6630773,14269177:25952256,4923996,0 -r1,2875:6656987,14269177:26214,4923996,0 -[1,2809:6656987,14269177:25899828,4923996,0 -(1,2809:6656987,13679353:25899828,3744348,0 -[1,2809:7246811,13679353:24720180,3744348,0 -(1,2809:7246811,11020541:24720180,1085536,298548 -(1,2808:7246811,11020541:0,1085536,298548 -r1,2875:8753226,11020541:1506415,1384084,298548 -k1,2808:7246811,11020541:-1506415 -) -(1,2808:7246811,11020541:1506415,1085536,298548 -) -k1,2808:9003486,11020541:250260 -k1,2808:9881581,11020541:250260 -k1,2808:10720353,11020541:250259 -k1,2808:13397411,11020541:250260 -k1,2808:15776936,11020541:250260 -k1,2808:17515519,11020541:250260 -k1,2808:19333399,11020541:250259 -k1,2808:20914040,11020541:250260 -k1,2808:22853818,11020541:250260 -k1,2808:23720116,11020541:250260 -k1,2808:25662515,11020541:250259 -k1,2808:27614745,11020541:250260 -k1,2808:31966991,11020541:0 -) -(1,2809:7246811,11862029:24720180,513147,134348 -k1,2808:10675097,11862029:255688 -k1,2808:12424351,11862029:255688 -k1,2808:13366201,11862029:255688 -k1,2808:14075341,11862029:255631 -k1,2808:15522474,11862029:255688 -k1,2808:17235027,11862029:255688 -k1,2808:19917513,11862029:255688 -k1,2808:21661524,11862029:255688 -k1,2808:23484833,11862029:255688 -k1,2808:25334357,11862029:255688 -k1,2808:26059938,11862029:255688 -k1,2808:26847123,11862029:255688 -k1,2808:30312109,11862029:255688 -k1,2808:31219225,11862029:255688 -k1,2808:31966991,11862029:0 -) -(1,2809:7246811,12703517:24720180,513147,134348 -k1,2808:9287304,12703517:172062 -k1,2808:10118658,12703517:172062 -k1,2808:11493961,12703517:172062 -k1,2808:15026054,12703517:172062 -k1,2808:15884278,12703517:172062 -k1,2808:17808116,12703517:172061 -k1,2808:22044065,12703517:172062 -k1,2808:25657422,12703517:172062 -k1,2808:26821044,12703517:172062 -k1,2808:28533202,12703517:172062 -k1,2808:30080865,12703517:172062 -k1,2808:31966991,12703517:0 -) -(1,2809:7246811,13545005:24720180,505283,134348 -g1,2808:7801900,13545005 -g1,2808:9695890,13545005 -g1,2808:12634524,13545005 -k1,2809:31966991,13545005:15629028 -g1,2809:31966991,13545005 -) -] -) -] -r1,2875:32583029,14269177:26214,4923996,0 -) -] -) -) -g1,2809:32583029,13679353 -) -h1,2809:6630773,14295391:0,0,0 -(1,2812:6630773,15451848:25952256,513147,134348 -h1,2811:6630773,15451848:983040,0,0 -k1,2811:8234521,15451848:150815 -k1,2811:8916832,15451848:150814 -k1,2811:11697607,15451848:150815 -k1,2811:12499850,15451848:150815 -k1,2811:14854641,15451848:150815 -k1,2811:15361315,15451848:150814 -k1,2811:17592243,15451848:150815 -k1,2811:18402350,15451848:150815 -k1,2811:19572250,15451848:150815 -k1,2811:22592230,15451848:150814 -k1,2811:23402337,15451848:150815 -k1,2811:23909012,15451848:150815 -k1,2811:26037704,15451848:150815 -k1,2811:26804556,15451848:150814 -k1,2811:27311231,15451848:150815 -k1,2811:29335065,15451848:150815 -k1,2811:32583029,15451848:0 -) -(1,2812:6630773,16293336:25952256,513147,134348 -k1,2811:8634208,16293336:268042 -k1,2811:9258110,16293336:268042 -k1,2811:11504030,16293336:268043 -k1,2811:12431364,16293336:268042 -k1,2811:15299875,16293336:268042 -k1,2811:16764604,16293336:268042 -k1,2811:19977180,16293336:268043 -k1,2811:20904514,16293336:268042 -k1,2811:22191641,16293336:268042 -k1,2811:25431741,16293336:268042 -k1,2811:28568950,16293336:268043 -k1,2811:29453030,16293336:268042 -k1,2811:30740157,16293336:268042 -k1,2811:32583029,16293336:0 -) -(1,2812:6630773,17134824:25952256,513147,134348 -k1,2811:10098635,17134824:181887 -k1,2811:12468115,17134824:181888 -k1,2811:13641562,17134824:181887 -k1,2811:17488223,17134824:181888 -k1,2811:18431638,17134824:181887 -k1,2811:19632611,17134824:181888 -k1,2811:22544073,17134824:181887 -k1,2811:23385253,17134824:181888 -k1,2811:24586225,17134824:181887 -k1,2811:27721821,17134824:181888 -k1,2811:28563000,17134824:181887 -k1,2811:29763973,17134824:181888 -k1,2811:31923737,17134824:181887 -k1,2811:32583029,17134824:0 -) -(1,2812:6630773,17976312:25952256,505283,126483 -g1,2811:11782558,17976312 -g1,2811:12633215,17976312 -g1,2811:16865530,17976312 -g1,2811:18507206,17976312 -g1,2811:19357863,17976312 -k1,2812:32583029,17976312:10741351 -g1,2812:32583029,17976312 -) -v1,2814:6630773,18957459:0,393216,0 -(1,2827:6630773,22057521:25952256,3493278,196608 -g1,2827:6630773,22057521 -g1,2827:6630773,22057521 -g1,2827:6434165,22057521 -(1,2827:6434165,22057521:0,3493278,196608 -r1,2875:32779637,22057521:26345472,3689886,196608 -k1,2827:6434165,22057521:-26345472 -) -(1,2827:6434165,22057521:26345472,3493278,196608 -[1,2827:6630773,22057521:25952256,3296670,0 -(1,2816:6630773,19165077:25952256,404226,82312 -(1,2815:6630773,19165077:0,0,0 -g1,2815:6630773,19165077 -g1,2815:6630773,19165077 -g1,2815:6303093,19165077 -(1,2815:6303093,19165077:0,0,0 -) -g1,2815:6630773,19165077 -) -k1,2816:6630773,19165077:0 -g1,2816:8843794,19165077 -h1,2816:9792231,19165077:0,0,0 -k1,2816:32583029,19165077:22790798 -g1,2816:32583029,19165077 -) -(1,2820:6630773,19896791:25952256,404226,76021 -(1,2818:6630773,19896791:0,0,0 -g1,2818:6630773,19896791 -g1,2818:6630773,19896791 -g1,2818:6303093,19896791 -(1,2818:6303093,19896791:0,0,0 -) -g1,2818:6630773,19896791 -) -g1,2820:7579210,19896791 -g1,2820:8843793,19896791 -g1,2820:10108376,19896791 -h1,2820:11056813,19896791:0,0,0 -k1,2820:32583029,19896791:21526216 -g1,2820:32583029,19896791 -) -(1,2822:6630773,21218329:25952256,404226,76021 -(1,2821:6630773,21218329:0,0,0 -g1,2821:6630773,21218329 -g1,2821:6630773,21218329 -g1,2821:6303093,21218329 -(1,2821:6303093,21218329:0,0,0 -) -g1,2821:6630773,21218329 -) -h1,2822:8843793,21218329:0,0,0 -k1,2822:32583029,21218329:23739236 -g1,2822:32583029,21218329 -) -(1,2826:6630773,21950043:25952256,410518,107478 -(1,2824:6630773,21950043:0,0,0 -g1,2824:6630773,21950043 -g1,2824:6630773,21950043 -g1,2824:6303093,21950043 -(1,2824:6303093,21950043:0,0,0 -) -g1,2824:6630773,21950043 -) -g1,2826:7579210,21950043 -g1,2826:7895356,21950043 -g1,2826:9159939,21950043 -g1,2826:10424522,21950043 -g1,2826:11689105,21950043 -g1,2826:12953688,21950043 -g1,2826:14218271,21950043 -g1,2826:15482854,21950043 -g1,2826:16747437,21950043 -g1,2826:18012020,21950043 -g1,2826:19276603,21950043 -g1,2826:20541186,21950043 -h1,2826:21489623,21950043:0,0,0 -k1,2826:32583029,21950043:11093406 -g1,2826:32583029,21950043 -) -] -) -g1,2827:32583029,22057521 -g1,2827:6630773,22057521 -g1,2827:6630773,22057521 -g1,2827:32583029,22057521 -g1,2827:32583029,22057521 -) -h1,2827:6630773,22254129:0,0,0 -v1,2831:6630773,23725556:0,393216,0 -(1,2847:6630773,35920229:25952256,12587889,616038 -g1,2847:6630773,35920229 -(1,2847:6630773,35920229:25952256,12587889,616038 -(1,2847:6630773,36536267:25952256,13203927,0 -[1,2847:6630773,36536267:25952256,13203927,0 -(1,2847:6630773,36510053:25952256,13151499,0 -r1,2875:6656987,36510053:26214,13151499,0 -[1,2847:6656987,36510053:25899828,13151499,0 -(1,2847:6656987,35920229:25899828,11971851,0 -[1,2847:7246811,35920229:24720180,11971851,0 -(1,2832:7246811,25035752:24720180,1087374,134348 -k1,2831:8725359,25035752:268845 -k1,2831:10190890,25035752:268844 -k1,2831:12473001,25035752:268845 -k1,2831:13401137,25035752:268844 -k1,2831:14689067,25035752:268845 -k1,2831:17697316,25035752:268844 -k1,2831:19944038,25035752:268845 -k1,2831:20744380,25035752:268845 -k1,2831:22079495,25035752:268844 -k1,2831:25419357,25035752:268845 -k1,2831:26449729,25035752:268844 -k1,2831:27737659,25035752:268845 -k1,2831:30019769,25035752:268844 -k1,2831:30947906,25035752:268845 -k1,2831:31966991,25035752:0 -) -(1,2832:7246811,25877240:24720180,505283,126483 -k1,2831:9932622,25877240:168573 -k1,2831:12252742,25877240:168573 -k1,2831:15356017,25877240:168573 -k1,2831:16900191,25877240:168573 -k1,2831:20249882,25877240:168573 -k1,2831:22845253,25877240:168573 -k1,2831:24298332,25877240:168573 -k1,2831:26448058,25877240:168573 -k1,2831:29561164,25877240:168573 -k1,2831:31966991,25877240:0 -) -(1,2832:7246811,26718728:24720180,505283,134348 -k1,2831:8097249,26718728:234400 -k1,2831:9350735,26718728:234401 -k1,2831:12102373,26718728:234400 -k1,2831:14314650,26718728:234400 -k1,2831:15653332,26718728:234400 -k1,2831:18091709,26718728:234401 -k1,2831:20510424,26718728:234400 -k1,2831:22666340,26718728:234400 -k1,2831:24911385,26718728:234400 -k1,2831:25761824,26718728:234401 -k1,2831:27015309,26718728:234400 -k1,2831:29989114,26718728:234400 -k1,2831:31966991,26718728:0 -) -(1,2832:7246811,27560216:24720180,505283,134348 -k1,2831:10134562,27560216:209295 -k1,2831:10995284,27560216:209294 -k1,2831:14149112,27560216:209295 -k1,2831:15642913,27560216:209295 -k1,2831:16843767,27560216:209294 -k1,2831:18119333,27560216:209295 -k1,2831:20734455,27560216:209295 -k1,2831:21559788,27560216:209295 -k1,2831:22788167,27560216:209294 -k1,2831:25514700,27560216:209295 -k1,2831:27875542,27560216:209295 -k1,2831:29927708,27560216:209294 -k1,2831:30753041,27560216:209295 -(1,2831:30753041,27560216:0,414482,115847 -r1,2875:31463019,27560216:709978,530329,115847 -k1,2831:30753041,27560216:-709978 -) -(1,2831:30753041,27560216:709978,414482,115847 -k1,2831:30753041,27560216:3277 -h1,2831:31459742,27560216:0,411205,112570 -) -k1,2831:31966991,27560216:0 -) -(1,2832:7246811,28401704:24720180,513147,134348 -k1,2831:8845141,28401704:217486 -k1,2831:9594124,28401704:217486 -k1,2831:11682008,28401704:217486 -k1,2831:12550922,28401704:217486 -k1,2831:14379938,28401704:217486 -k1,2831:15358952,28401704:217486 -k1,2831:17935733,28401704:217485 -k1,2831:19547170,28401704:217486 -k1,2831:20353169,28401704:217486 -k1,2831:22013102,28401704:217486 -k1,2831:23798209,28401704:217486 -k1,2831:28251942,28401704:217486 -k1,2831:29767041,28401704:217486 -k1,2831:31378478,28401704:217486 -k1,2831:31966991,28401704:0 -) -(1,2832:7246811,29243192:24720180,513147,134348 -g1,2831:9181433,29243192 -g1,2831:10399747,29243192 -g1,2831:13574311,29243192 -g1,2831:16765259,29243192 -g1,2831:17650650,29243192 -g1,2831:18205739,29243192 -g1,2831:20883540,29243192 -k1,2832:31966991,29243192:9221573 -g1,2832:31966991,29243192 -) -v1,2834:7246811,30433658:0,393216,0 -(1,2842:7246811,33382009:24720180,3341567,196608 -g1,2842:7246811,33382009 -g1,2842:7246811,33382009 -g1,2842:7050203,33382009 -(1,2842:7050203,33382009:0,3341567,196608 -r1,2875:32163599,33382009:25113396,3538175,196608 -k1,2842:7050203,33382009:-25113396 -) -(1,2842:7050203,33382009:25113396,3341567,196608 -[1,2842:7246811,33382009:24720180,3144959,0 -(1,2836:7246811,30641276:24720180,404226,107478 -(1,2835:7246811,30641276:0,0,0 -g1,2835:7246811,30641276 -g1,2835:7246811,30641276 -g1,2835:6919131,30641276 -(1,2835:6919131,30641276:0,0,0 -) -g1,2835:7246811,30641276 -) -k1,2836:7246811,30641276:0 -h1,2836:10092122,30641276:0,0,0 -k1,2836:31966990,30641276:21874868 -g1,2836:31966990,30641276 -) -(1,2837:7246811,31307454:24720180,404226,82312 -h1,2837:7246811,31307454:0,0,0 -g1,2837:9459832,31307454 -g1,2837:10408270,31307454 -g1,2837:11356708,31307454 -h1,2837:12305145,31307454:0,0,0 -k1,2837:31966991,31307454:19661846 -g1,2837:31966991,31307454 -) -(1,2838:7246811,31973632:24720180,404226,82312 -h1,2838:7246811,31973632:0,0,0 -g1,2838:10408269,31973632 -h1,2838:12305143,31973632:0,0,0 -k1,2838:31966991,31973632:19661848 -g1,2838:31966991,31973632 -) -(1,2839:7246811,32639810:24720180,404226,82312 -h1,2839:7246811,32639810:0,0,0 -g1,2839:9459832,32639810 -h1,2839:10724414,32639810:0,0,0 -k1,2839:31966990,32639810:21242576 -g1,2839:31966990,32639810 -) -(1,2840:7246811,33305988:24720180,404226,76021 -h1,2840:7246811,33305988:0,0,0 -h1,2840:8827539,33305988:0,0,0 -k1,2840:31966991,33305988:23139452 -g1,2840:31966991,33305988 -) -] -) -g1,2842:31966991,33382009 -g1,2842:7246811,33382009 -g1,2842:7246811,33382009 -g1,2842:31966991,33382009 -g1,2842:31966991,33382009 -) -h1,2842:7246811,33578617:0,0,0 -(1,2846:7246811,34944393:24720180,513147,126483 -h1,2845:7246811,34944393:983040,0,0 -k1,2845:10019031,34944393:223525 -k1,2845:11413028,34944393:223524 -k1,2845:13151090,34944393:223525 -k1,2845:15066754,34944393:223524 -k1,2845:15949571,34944393:223525 -k1,2845:17631926,34944393:223524 -k1,2845:19185832,34944393:223525 -k1,2845:22728100,34944393:223525 -k1,2845:23429381,34944393:223524 -k1,2845:24719177,34944393:223525 -k1,2845:26081717,34944393:223524 -k1,2845:27120510,34944393:223525 -k1,2845:28737985,34944393:223524 -k1,2845:30355461,34944393:223525 -k1,2846:31966991,34944393:0 -) -(1,2846:7246811,35785881:24720180,513147,134348 -g1,2845:9274494,35785881 -g1,2845:12629937,35785881 -g1,2845:13488458,35785881 -g1,2845:15146518,35785881 -g1,2845:16676128,35785881 -g1,2845:18918114,35785881 -k1,2846:31966991,35785881:9454227 -g1,2846:31966991,35785881 -) -] -) -] -r1,2875:32583029,36510053:26214,13151499,0 -) -] -) -) -g1,2847:32583029,35920229 -) -h1,2847:6630773,36536267:0,0,0 -(1,2850:6630773,37692724:25952256,505283,134348 -h1,2849:6630773,37692724:983040,0,0 -k1,2849:10574134,37692724:228125 -k1,2849:13229057,37692724:228125 -k1,2849:14932396,37692724:228124 -k1,2849:15516381,37692724:228125 -k1,2849:17938651,37692724:228125 -k1,2849:21068710,37692724:228125 -k1,2849:22677023,37692724:228125 -k1,2849:25436804,37692724:228125 -k1,2849:26684013,37692724:228124 -k1,2849:29856671,37692724:228125 -k1,2849:30697558,37692724:228125 -k1,2849:32583029,37692724:0 -) -(1,2850:6630773,38534212:25952256,505283,134348 -k1,2849:8854223,38534212:212805 -k1,2849:11247410,38534212:212804 -k1,2849:12207981,38534212:212805 -k1,2849:15449204,38534212:212804 -k1,2849:16408464,38534212:212805 -k1,2849:18489699,38534212:212804 -k1,2849:19987010,38534212:212805 -k1,2849:20657912,38534212:212805 -k1,2849:21402213,38534212:212804 -k1,2849:23538499,38534212:212805 -k1,2849:24402731,38534212:212804 -k1,2849:25801738,38534212:212805 -k1,2849:28523916,38534212:212804 -k1,2849:29928166,38534212:212805 -k1,2849:32583029,38534212:0 -) -(1,2850:6630773,39375700:25952256,505283,134348 -g1,2849:8840647,39375700 -g1,2849:9655914,39375700 -g1,2849:10874228,39375700 -g1,2849:12726930,39375700 -g1,2849:15665564,39375700 -k1,2850:32583029,39375700:13669501 -g1,2850:32583029,39375700 -) -v1,2852:6630773,40356847:0,393216,0 -(1,2871:6630773,45510161:25952256,5546530,196608 -g1,2871:6630773,45510161 -g1,2871:6630773,45510161 -g1,2871:6434165,45510161 -(1,2871:6434165,45510161:0,5546530,196608 -r1,2875:32779637,45510161:26345472,5743138,196608 -k1,2871:6434165,45510161:-26345472 -) -(1,2871:6434165,45510161:26345472,5546530,196608 -[1,2871:6630773,45510161:25952256,5349922,0 -(1,2854:6630773,40564465:25952256,404226,76021 -(1,2853:6630773,40564465:0,0,0 -g1,2853:6630773,40564465 -g1,2853:6630773,40564465 -g1,2853:6303093,40564465 -(1,2853:6303093,40564465:0,0,0 -) -g1,2853:6630773,40564465 -) -k1,2854:6630773,40564465:0 -h1,2854:8211502,40564465:0,0,0 -k1,2854:32583030,40564465:24371528 -g1,2854:32583030,40564465 -) -(1,2858:6630773,41296179:25952256,410518,107478 -(1,2856:6630773,41296179:0,0,0 -g1,2856:6630773,41296179 -g1,2856:6630773,41296179 -g1,2856:6303093,41296179 -(1,2856:6303093,41296179:0,0,0 -) -g1,2856:6630773,41296179 -) -g1,2858:7579210,41296179 -g1,2858:8843793,41296179 -g1,2858:10108376,41296179 -g1,2858:11372959,41296179 -g1,2858:12637542,41296179 -g1,2858:13902125,41296179 -g1,2858:15166708,41296179 -g1,2858:16431291,41296179 -g1,2858:17695874,41296179 -g1,2858:18960457,41296179 -h1,2858:19908894,41296179:0,0,0 -k1,2858:32583029,41296179:12674135 -g1,2858:32583029,41296179 -) -(1,2860:6630773,42617717:25952256,404226,82312 -(1,2859:6630773,42617717:0,0,0 -g1,2859:6630773,42617717 -g1,2859:6630773,42617717 -g1,2859:6303093,42617717 -(1,2859:6303093,42617717:0,0,0 -) -g1,2859:6630773,42617717 -) -k1,2860:6630773,42617717:0 -k1,2860:6630773,42617717:0 -h1,2860:9792231,42617717:0,0,0 -k1,2860:32583029,42617717:22790798 -g1,2860:32583029,42617717 -) -(1,2864:6630773,43349431:25952256,410518,107478 -(1,2862:6630773,43349431:0,0,0 -g1,2862:6630773,43349431 -g1,2862:6630773,43349431 -g1,2862:6303093,43349431 -(1,2862:6303093,43349431:0,0,0 -) -g1,2862:6630773,43349431 -) -g1,2864:7579210,43349431 -g1,2864:8843793,43349431 -g1,2864:10108376,43349431 -g1,2864:11372959,43349431 -g1,2864:12637542,43349431 -g1,2864:13902125,43349431 -g1,2864:15166708,43349431 -g1,2864:16431291,43349431 -g1,2864:17695874,43349431 -h1,2864:18644311,43349431:0,0,0 -k1,2864:32583029,43349431:13938718 -g1,2864:32583029,43349431 -) -(1,2866:6630773,44670969:25952256,404226,76021 -(1,2865:6630773,44670969:0,0,0 -g1,2865:6630773,44670969 -g1,2865:6630773,44670969 -g1,2865:6303093,44670969 -(1,2865:6303093,44670969:0,0,0 -) -g1,2865:6630773,44670969 -) -k1,2866:6630773,44670969:0 -k1,2866:6630773,44670969:0 -h1,2866:9159940,44670969:0,0,0 -k1,2866:32583028,44670969:23423088 -g1,2866:32583028,44670969 -) -(1,2870:6630773,45402683:25952256,410518,107478 -(1,2868:6630773,45402683:0,0,0 -g1,2868:6630773,45402683 -g1,2868:6630773,45402683 -g1,2868:6303093,45402683 -(1,2868:6303093,45402683:0,0,0 -) -g1,2868:6630773,45402683 -) -g1,2870:7579210,45402683 -g1,2870:8843793,45402683 -g1,2870:10108376,45402683 -g1,2870:11372959,45402683 -g1,2870:12637542,45402683 -g1,2870:13902125,45402683 -g1,2870:15166708,45402683 -g1,2870:16431291,45402683 -g1,2870:17695874,45402683 -h1,2870:18644311,45402683:0,0,0 -k1,2870:32583029,45402683:13938718 -g1,2870:32583029,45402683 -) -] -) -g1,2871:32583029,45510161 -g1,2871:6630773,45510161 -g1,2871:6630773,45510161 -g1,2871:32583029,45510161 -g1,2871:32583029,45510161 -) -h1,2871:6630773,45706769:0,0,0 -] -(1,2875:32583029,45706769:0,0,0 -g1,2875:32583029,45706769 -) -) -] -(1,2875:6630773,47279633:25952256,0,0 -h1,2875:6630773,47279633:25952256,0,0 -) -] -(1,2875:4262630,4025873:0,0,0 -[1,2875:-473656,4025873:0,0,0 -(1,2875:-473656,-710413:0,0,0 -(1,2875:-473656,-710413:0,0,0 -g1,2875:-473656,-710413 -) -g1,2875:-473656,-710413 -) -] -) -] -!22320 -}61 -Input:489:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:490:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:491:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:492:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:493:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:494:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!557 -{62 -[1,2967:4262630,47279633:28320399,43253760,0 -(1,2967:4262630,4025873:0,0,0 -[1,2967:-473656,4025873:0,0,0 -(1,2967:-473656,-710413:0,0,0 -(1,2967:-473656,-644877:0,0,0 -k1,2967:-473656,-644877:-65536 -) -(1,2967:-473656,4736287:0,0,0 -k1,2967:-473656,4736287:5209943 -) -g1,2967:-473656,-710413 -) -] -) -[1,2967:6630773,47279633:25952256,43253760,0 -[1,2967:6630773,4812305:25952256,786432,0 -(1,2967:6630773,4812305:25952256,505283,126483 -(1,2967:6630773,4812305:25952256,505283,126483 -g1,2967:3078558,4812305 -[1,2967:3078558,4812305:0,0,0 -(1,2967:3078558,2439708:0,1703936,0 -k1,2967:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,2967:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,2967:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,2967:3078558,4812305:0,0,0 -(1,2967:3078558,2439708:0,1703936,0 -g1,2967:29030814,2439708 -g1,2967:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,2967:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,2967:37855564,2439708:1179648,16384,0 -) -) -k1,2967:3078556,2439708:-34777008 -) -] -[1,2967:3078558,4812305:0,0,0 -(1,2967:3078558,49800853:0,16384,2228224 -k1,2967:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,2967:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,2967:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,2967:3078558,4812305:0,0,0 -(1,2967:3078558,49800853:0,16384,2228224 -g1,2967:29030814,49800853 -g1,2967:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,2967:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,2967:37855564,49800853:1179648,16384,0 -) -) -k1,2967:3078556,49800853:-34777008 -) -] -g1,2967:6630773,4812305 -g1,2967:6630773,4812305 -g1,2967:8826229,4812305 -g1,2967:13247287,4812305 -k1,2967:31786111,4812305:18538824 -) -) -] -[1,2967:6630773,45706769:25952256,40108032,0 -(1,2967:6630773,45706769:25952256,40108032,0 -(1,2967:6630773,45706769:0,0,0 -g1,2967:6630773,45706769 -) -[1,2967:6630773,45706769:25952256,40108032,0 -v1,2875:6630773,6254097:0,393216,0 -(1,2890:6630773,19008189:25952256,13147308,616038 -g1,2890:6630773,19008189 -(1,2890:6630773,19008189:25952256,13147308,616038 -(1,2890:6630773,19624227:25952256,13763346,0 -[1,2890:6630773,19624227:25952256,13763346,0 -(1,2890:6630773,19598013:25952256,13710918,0 -r1,2967:6656987,19598013:26214,13710918,0 -[1,2890:6656987,19598013:25899828,13710918,0 -(1,2890:6656987,19008189:25899828,12531270,0 -[1,2890:7246811,19008189:24720180,12531270,0 -(1,2876:7246811,7760901:24720180,1283982,196608 -(1,2875:7246811,7760901:0,1283982,196608 -r1,2967:9812056,7760901:2565245,1480590,196608 -k1,2875:7246811,7760901:-2565245 -) -(1,2875:7246811,7760901:2565245,1283982,196608 -) -k1,2875:9974332,7760901:162276 -k1,2875:12466413,7760901:162276 -k1,2875:14196309,7760901:162275 -k1,2875:17097990,7760901:162276 -k1,2875:18654217,7760901:162276 -k1,2875:21010638,7760901:162276 -k1,2875:23183559,7760901:162276 -k1,2875:24537280,7760901:162276 -k1,2875:26119720,7760901:162275 -k1,2875:27618930,7760901:162276 -k1,2875:28528972,7760901:162276 -k1,2875:31966991,7760901:0 -) -(1,2876:7246811,8602389:24720180,513147,126483 -k1,2875:8481728,8602389:150951 -k1,2875:9284107,8602389:150951 -k1,2875:11077391,8602389:150952 -k1,2875:11584202,8602389:150951 -k1,2875:12990823,8602389:150951 -k1,2875:14709395,8602389:150951 -k1,2875:15879431,8602389:150951 -k1,2875:19022102,8602389:150952 -k1,2875:21215155,8602389:150951 -k1,2875:21721966,8602389:150951 -k1,2875:23128587,8602389:150951 -k1,2875:24564044,8602389:150951 -k1,2875:25847458,8602389:150952 -k1,2875:27386462,8602389:150951 -k1,2875:28707886,8602389:150951 -k1,2875:31966991,8602389:0 -) -(1,2876:7246811,9443877:24720180,513147,134348 -k1,2875:9077172,9443877:281745 -k1,2875:10010345,9443877:281745 -k1,2875:12363029,9443877:281746 -k1,2875:14028894,9443877:281745 -k1,2875:15736047,9443877:281745 -k1,2875:17188265,9443877:281745 -k1,2875:18461570,9443877:281745 -k1,2875:22273740,9443877:281746 -k1,2875:23949436,9443877:281745 -k1,2875:26433191,9443877:281745 -k1,2875:30231598,9443877:281745 -k1,2875:31966991,9443877:0 -) -(1,2876:7246811,10285365:24720180,513147,134348 -k1,2875:11450707,10285365:296640 -k1,2875:13632818,10285365:296640 -k1,2875:14921017,10285365:296639 -k1,2875:17411802,10285365:296640 -k1,2875:19719087,10285365:296640 -k1,2875:22342910,10285365:296640 -k1,2875:23298842,10285365:296640 -k1,2875:26155974,10285365:296640 -k1,2875:28311869,10285365:296639 -k1,2875:29291394,10285365:296640 -k1,2875:31315563,10285365:296640 -k1,2875:31966991,10285365:0 -) -(1,2876:7246811,11126853:24720180,505283,126483 -k1,2875:10545893,11126853:283771 -k1,2875:11361161,11126853:283771 -k1,2875:13357388,11126853:283771 -k1,2875:14292586,11126853:283770 -k1,2875:16950726,11126853:283771 -k1,2875:19404394,11126853:283771 -k1,2875:20371050,11126853:283771 -k1,2875:22108410,11126853:283771 -k1,2875:23078343,11126853:283771 -k1,2875:25058841,11126853:283771 -k1,2875:27536756,11126853:283770 -k1,2875:29831172,11126853:283771 -k1,2875:31219225,11126853:283771 -k1,2875:31966991,11126853:0 -) -(1,2876:7246811,11968341:24720180,513147,134348 -k1,2875:10302524,11968341:276986 -k1,2875:11341038,11968341:276986 -k1,2875:14380367,11968341:276986 -k1,2875:15072118,11968341:276908 -k1,2875:19119390,11968341:276986 -k1,2875:22758373,11968341:276986 -k1,2875:23844729,11968341:276986 -k1,2875:25140800,11968341:276986 -k1,2875:27098129,11968341:276986 -k1,2875:28034407,11968341:276986 -k1,2875:31284106,11968341:276986 -k1,2875:31966991,11968341:0 -) -(1,2876:7246811,12809829:24720180,513147,134348 -g1,2875:10141536,12809829 -g1,2875:13917065,12809829 -g1,2875:15808434,12809829 -g1,2875:16666955,12809829 -g1,2875:18505239,12809829 -g1,2875:21794491,12809829 -g1,2875:24027302,12809829 -g1,2875:24842569,12809829 -g1,2875:26245039,12809829 -k1,2876:31966991,12809829:3130658 -g1,2876:31966991,12809829 -) -v1,2878:7246811,14000295:0,393216,0 -(1,2888:7246811,18287293:24720180,4680214,196608 -g1,2888:7246811,18287293 -g1,2888:7246811,18287293 -g1,2888:7050203,18287293 -(1,2888:7050203,18287293:0,4680214,196608 -r1,2967:32163599,18287293:25113396,4876822,196608 -k1,2888:7050203,18287293:-25113396 -) -(1,2888:7050203,18287293:25113396,4680214,196608 -[1,2888:7246811,18287293:24720180,4483606,0 -(1,2880:7246811,14207913:24720180,404226,76021 -(1,2879:7246811,14207913:0,0,0 -g1,2879:7246811,14207913 -g1,2879:7246811,14207913 -g1,2879:6919131,14207913 -(1,2879:6919131,14207913:0,0,0 -) -g1,2879:7246811,14207913 -) -g1,2880:8195248,14207913 -h1,2880:8511394,14207913:0,0,0 -k1,2880:31966990,14207913:23455596 -g1,2880:31966990,14207913 -) -(1,2881:7246811,14874091:24720180,404226,76021 -h1,2881:7246811,14874091:0,0,0 -h1,2881:8511394,14874091:0,0,0 -k1,2881:31966990,14874091:23455596 -g1,2881:31966990,14874091 -) -(1,2882:7246811,15540269:24720180,404226,76021 -h1,2882:7246811,15540269:0,0,0 -k1,2882:7246811,15540269:0 -h1,2882:11356705,15540269:0,0,0 -k1,2882:31966991,15540269:20610286 -g1,2882:31966991,15540269 -) -(1,2883:7246811,16206447:24720180,404226,76021 -h1,2883:7246811,16206447:0,0,0 -h1,2883:8827539,16206447:0,0,0 -k1,2883:31966991,16206447:23139452 -g1,2883:31966991,16206447 -) -(1,2884:7246811,16872625:24720180,404226,82312 -h1,2884:7246811,16872625:0,0,0 -g1,2884:9459832,16872625 -h1,2884:10724414,16872625:0,0,0 -k1,2884:31966990,16872625:21242576 -g1,2884:31966990,16872625 -) -(1,2885:7246811,17538803:24720180,404226,76021 -h1,2885:7246811,17538803:0,0,0 -k1,2885:7246811,17538803:0 -h1,2885:9459831,17538803:0,0,0 -k1,2885:31966991,17538803:22507160 -g1,2885:31966991,17538803 -) -(1,2886:7246811,18204981:24720180,404226,82312 -h1,2886:7246811,18204981:0,0,0 -g1,2886:9459832,18204981 -k1,2886:9459832,18204981:0 -h1,2886:11356706,18204981:0,0,0 -k1,2886:31966990,18204981:20610284 -g1,2886:31966990,18204981 -) -] -) -g1,2888:31966991,18287293 -g1,2888:7246811,18287293 -g1,2888:7246811,18287293 -g1,2888:31966991,18287293 -g1,2888:31966991,18287293 -) -h1,2888:7246811,18483901:0,0,0 -] -) -] -r1,2967:32583029,19598013:26214,13710918,0 -) -] -) -) -g1,2890:32583029,19008189 -) -h1,2890:6630773,19624227:0,0,0 -(1,2893:6630773,20909330:25952256,513147,134348 -h1,2892:6630773,20909330:983040,0,0 -k1,2892:10433626,20909330:215412 -k1,2892:11887013,20909330:215412 -k1,2892:12761716,20909330:215411 -k1,2892:15890203,20909330:215412 -k1,2892:17991086,20909330:215412 -k1,2892:18737995,20909330:215412 -k1,2892:20307380,20909330:215411 -k1,2892:22663853,20909330:215412 -k1,2892:23951434,20909330:215412 -k1,2892:25233117,20909330:215412 -k1,2892:28232497,20909330:215411 -k1,2892:29063947,20909330:215412 -k1,2892:30881059,20909330:215412 -k1,2892:32583029,20909330:0 -) -(1,2893:6630773,21750818:25952256,513147,134348 -k1,2892:11189375,21750818:206356 -k1,2892:14742000,21750818:206357 -k1,2892:15479853,21750818:206356 -k1,2892:18425614,21750818:206356 -k1,2892:20025922,21750818:206357 -k1,2892:20588138,21750818:206356 -k1,2892:22772372,21750818:206357 -k1,2892:23645884,21750818:206356 -(1,2892:23645884,21750818:0,452978,122846 -r1,2967:26114421,21750818:2468537,575824,122846 -k1,2892:23645884,21750818:-2468537 -) -(1,2892:23645884,21750818:2468537,452978,122846 -k1,2892:23645884,21750818:3277 -h1,2892:26111144,21750818:0,411205,112570 -) -k1,2892:26320777,21750818:206356 -k1,2892:28711449,21750818:206357 -k1,2892:30114492,21750818:206356 -(1,2892:30114492,21750818:0,452978,122846 -r1,2967:32583029,21750818:2468537,575824,122846 -k1,2892:30114492,21750818:-2468537 -) -(1,2892:30114492,21750818:2468537,452978,122846 -k1,2892:30114492,21750818:3277 -h1,2892:32579752,21750818:0,411205,112570 -) -k1,2892:32583029,21750818:0 -) -(1,2893:6630773,22592306:25952256,513147,134348 -k1,2892:8856797,22592306:248147 -k1,2892:10618170,22592306:248147 -k1,2892:11813969,22592306:248148 -k1,2892:14801521,22592306:248147 -k1,2892:15581165,22592306:248147 -k1,2892:18116519,22592306:248147 -k1,2892:19023959,22592306:248148 -k1,2892:20291191,22592306:248147 -k1,2892:22192811,22592306:248147 -k1,2892:24454224,22592306:248147 -k1,2892:25388533,22592306:248147 -k1,2892:26655766,22592306:248148 -k1,2892:28881790,22592306:248147 -k1,2892:30697558,22592306:248147 -k1,2892:32583029,22592306:0 -) -(1,2893:6630773,23433794:25952256,513147,134348 -k1,2892:9729113,23433794:229174 -k1,2892:10949847,23433794:229174 -k1,2892:12938008,23433794:229175 -k1,2892:13818610,23433794:229174 -k1,2892:14795550,23433794:229174 -k1,2892:17787067,23433794:229174 -k1,2892:20950944,23433794:229175 -k1,2892:22383359,23433794:229174 -k1,2892:23144030,23433794:229174 -k1,2892:24439475,23433794:229174 -k1,2892:25024510,23433794:229175 -k1,2892:29358204,23433794:229174 -k1,2892:32117068,23433794:229174 -k1,2892:32583029,23433794:0 -) -(1,2893:6630773,24275282:25952256,513147,126483 -k1,2892:7828786,24275282:178928 -(1,2892:7828786,24275282:0,452978,122846 -r1,2967:10297323,24275282:2468537,575824,122846 -k1,2892:7828786,24275282:-2468537 -) -(1,2892:7828786,24275282:2468537,452978,122846 -k1,2892:7828786,24275282:3277 -h1,2892:10294046,24275282:0,411205,112570 -) -k1,2892:10476250,24275282:178927 -k1,2892:12633055,24275282:178928 -k1,2892:13471275,24275282:178928 -k1,2892:16077001,24275282:178928 -k1,2892:16787425,24275282:178927 -k1,2892:19286983,24275282:178928 -k1,2892:20908358,24275282:178928 -k1,2892:22106370,24275282:178927 -k1,2892:24802536,24275282:178928 -k1,2892:27133011,24275282:178928 -k1,2892:27770036,24275282:178928 -k1,2892:28480460,24275282:178927 -k1,2892:31896867,24275282:178928 -k1,2892:32583029,24275282:0 -) -(1,2893:6630773,25116770:25952256,505283,126483 -g1,2892:9959346,25116770 -g1,2892:12013899,25116770 -g1,2892:12829166,25116770 -g1,2892:15492549,25116770 -g1,2892:16343206,25116770 -g1,2892:18244405,25116770 -k1,2893:32583029,25116770:11088038 -g1,2893:32583029,25116770 -) -v1,2895:6630773,26226564:0,393216,0 -(1,2932:6630773,37539634:25952256,11706286,196608 -g1,2932:6630773,37539634 -g1,2932:6630773,37539634 -g1,2932:6434165,37539634 -(1,2932:6434165,37539634:0,11706286,196608 -r1,2967:32779637,37539634:26345472,11902894,196608 -k1,2932:6434165,37539634:-26345472 -) -(1,2932:6434165,37539634:26345472,11706286,196608 -[1,2932:6630773,37539634:25952256,11509678,0 -(1,2897:6630773,26434182:25952256,404226,76021 -(1,2896:6630773,26434182:0,0,0 -g1,2896:6630773,26434182 -g1,2896:6630773,26434182 -g1,2896:6303093,26434182 -(1,2896:6303093,26434182:0,0,0 -) -g1,2896:6630773,26434182 -) -h1,2897:8843793,26434182:0,0,0 -k1,2897:32583029,26434182:23739236 -g1,2897:32583029,26434182 -) -(1,2901:6630773,27165896:25952256,410518,107478 -(1,2899:6630773,27165896:0,0,0 -g1,2899:6630773,27165896 -g1,2899:6630773,27165896 -g1,2899:6303093,27165896 -(1,2899:6303093,27165896:0,0,0 -) -g1,2899:6630773,27165896 -) -g1,2901:7579210,27165896 -g1,2901:7895356,27165896 -g1,2901:9159939,27165896 -g1,2901:10424522,27165896 -g1,2901:11689105,27165896 -g1,2901:12953688,27165896 -g1,2901:14218271,27165896 -g1,2901:15482854,27165896 -g1,2901:16747437,27165896 -g1,2901:18012020,27165896 -g1,2901:19276603,27165896 -g1,2901:20541186,27165896 -h1,2901:21489623,27165896:0,0,0 -k1,2901:32583029,27165896:11093406 -g1,2901:32583029,27165896 -) -(1,2903:6630773,28487434:25952256,404226,76021 -(1,2902:6630773,28487434:0,0,0 -g1,2902:6630773,28487434 -g1,2902:6630773,28487434 -g1,2902:6303093,28487434 -(1,2902:6303093,28487434:0,0,0 -) -g1,2902:6630773,28487434 -) -h1,2903:9159938,28487434:0,0,0 -k1,2903:32583030,28487434:23423092 -g1,2903:32583030,28487434 -) -(1,2907:6630773,29219148:25952256,404226,76021 -(1,2905:6630773,29219148:0,0,0 -g1,2905:6630773,29219148 -g1,2905:6630773,29219148 -g1,2905:6303093,29219148 -(1,2905:6303093,29219148:0,0,0 -) -g1,2905:6630773,29219148 -) -g1,2907:7579210,29219148 -h1,2907:11372958,29219148:0,0,0 -k1,2907:32583030,29219148:21210072 -g1,2907:32583030,29219148 -) -(1,2909:6630773,30540686:25952256,404226,82312 -(1,2908:6630773,30540686:0,0,0 -g1,2908:6630773,30540686 -g1,2908:6630773,30540686 -g1,2908:6303093,30540686 -(1,2908:6303093,30540686:0,0,0 -) -g1,2908:6630773,30540686 -) -k1,2909:6630773,30540686:0 -g1,2909:9792231,30540686 -h1,2909:12005250,30540686:0,0,0 -k1,2909:32583030,30540686:20577780 -g1,2909:32583030,30540686 -) -(1,2913:6630773,31272400:25952256,404226,107478 -(1,2911:6630773,31272400:0,0,0 -g1,2911:6630773,31272400 -g1,2911:6630773,31272400 -g1,2911:6303093,31272400 -(1,2911:6303093,31272400:0,0,0 -) -g1,2911:6630773,31272400 -) -g1,2913:7579210,31272400 -g1,2913:8843793,31272400 -g1,2913:10108376,31272400 -g1,2913:11372959,31272400 -g1,2913:12637542,31272400 -g1,2913:13902125,31272400 -h1,2913:14850562,31272400:0,0,0 -k1,2913:32583030,31272400:17732468 -g1,2913:32583030,31272400 -) -(1,2915:6630773,32593938:25952256,404226,82312 -(1,2914:6630773,32593938:0,0,0 -g1,2914:6630773,32593938 -g1,2914:6630773,32593938 -g1,2914:6303093,32593938 -(1,2914:6303093,32593938:0,0,0 -) -g1,2914:6630773,32593938 -) -k1,2915:6630773,32593938:0 -g1,2915:10108376,32593938 -h1,2915:12005250,32593938:0,0,0 -k1,2915:32583030,32593938:20577780 -g1,2915:32583030,32593938 -) -(1,2919:6630773,33325652:25952256,410518,107478 -(1,2917:6630773,33325652:0,0,0 -g1,2917:6630773,33325652 -g1,2917:6630773,33325652 -g1,2917:6303093,33325652 -(1,2917:6303093,33325652:0,0,0 -) -g1,2917:6630773,33325652 -) -g1,2919:7579210,33325652 -g1,2919:8843793,33325652 -g1,2919:10108376,33325652 -g1,2919:11372959,33325652 -g1,2919:12637542,33325652 -g1,2919:13902125,33325652 -h1,2919:14850562,33325652:0,0,0 -k1,2919:32583030,33325652:17732468 -g1,2919:32583030,33325652 -) -(1,2921:6630773,34647190:25952256,404226,6290 -(1,2920:6630773,34647190:0,0,0 -g1,2920:6630773,34647190 -g1,2920:6630773,34647190 -g1,2920:6303093,34647190 -(1,2920:6303093,34647190:0,0,0 -) -g1,2920:6630773,34647190 -) -g1,2921:7263065,34647190 -g1,2921:7895357,34647190 -h1,2921:8843794,34647190:0,0,0 -k1,2921:32583030,34647190:23739236 -g1,2921:32583030,34647190 -) -(1,2925:6630773,35378904:25952256,404226,76021 -(1,2923:6630773,35378904:0,0,0 -g1,2923:6630773,35378904 -g1,2923:6630773,35378904 -g1,2923:6303093,35378904 -(1,2923:6303093,35378904:0,0,0 -) -g1,2923:6630773,35378904 -) -g1,2925:7579210,35378904 -g1,2925:7895356,35378904 -g1,2925:9159939,35378904 -g1,2925:11056813,35378904 -g1,2925:12953687,35378904 -g1,2925:14850561,35378904 -g1,2925:15166707,35378904 -g1,2925:16747436,35378904 -g1,2925:17063582,35378904 -g1,2925:18644311,35378904 -g1,2925:18960457,35378904 -g1,2925:20541186,35378904 -g1,2925:20857332,35378904 -g1,2925:22438061,35378904 -g1,2925:22754207,35378904 -g1,2925:24334936,35378904 -g1,2925:24651082,35378904 -g1,2925:26231811,35378904 -g1,2925:26547957,35378904 -h1,2925:27812540,35378904:0,0,0 -k1,2925:32583029,35378904:4770489 -g1,2925:32583029,35378904 -) -(1,2927:6630773,36700442:25952256,404226,76021 -(1,2926:6630773,36700442:0,0,0 -g1,2926:6630773,36700442 -g1,2926:6630773,36700442 -g1,2926:6303093,36700442 -(1,2926:6303093,36700442:0,0,0 -) -g1,2926:6630773,36700442 -) -g1,2927:7895356,36700442 -g1,2927:8527648,36700442 -h1,2927:9792231,36700442:0,0,0 -k1,2927:32583029,36700442:22790798 -g1,2927:32583029,36700442 -) -(1,2931:6630773,37432156:25952256,410518,107478 -(1,2929:6630773,37432156:0,0,0 -g1,2929:6630773,37432156 -g1,2929:6630773,37432156 -g1,2929:6303093,37432156 -(1,2929:6303093,37432156:0,0,0 -) -g1,2929:6630773,37432156 -) -g1,2931:7579210,37432156 -g1,2931:8843793,37432156 -g1,2931:10108376,37432156 -g1,2931:11372959,37432156 -g1,2931:12637542,37432156 -g1,2931:13902125,37432156 -g1,2931:15166708,37432156 -g1,2931:16431291,37432156 -h1,2931:17379728,37432156:0,0,0 -k1,2931:32583029,37432156:15203301 -g1,2931:32583029,37432156 -) -] -) -g1,2932:32583029,37539634 -g1,2932:6630773,37539634 -g1,2932:6630773,37539634 -g1,2932:32583029,37539634 -g1,2932:32583029,37539634 -) -h1,2932:6630773,37736242:0,0,0 -(1,2936:6630773,39021345:25952256,513147,134348 -h1,2935:6630773,39021345:983040,0,0 -k1,2935:10585753,39021345:220739 -k1,2935:12200443,39021345:220739 -k1,2935:14490809,39021345:220739 -k1,2935:17019726,39021345:220739 -k1,2935:17771962,39021345:220739 -k1,2935:19346675,39021345:220739 -k1,2935:22872395,39021345:220739 -k1,2935:24606360,39021345:220739 -k1,2935:25443137,39021345:220739 -k1,2935:26078698,39021345:220718 -k1,2935:28829127,39021345:220739 -k1,2935:32583029,39021345:0 -) -(1,2936:6630773,39862833:25952256,505283,126483 -k1,2935:9908425,39862833:200737 -k1,2935:11100721,39862833:200736 -k1,2935:14812222,39862833:200737 -k1,2935:18888757,39862833:200736 -k1,2935:22340080,39862833:200737 -k1,2935:24238855,39862833:200737 -k1,2935:26811339,39862833:200736 -k1,2935:27663504,39862833:200737 -k1,2935:28220100,39862833:200736 -k1,2935:30572384,39862833:200737 -k1,2935:32583029,39862833:0 -) -(1,2936:6630773,40704321:25952256,513147,122846 -k1,2935:7213095,40704321:226462 -(1,2935:7213095,40704321:0,452978,122846 -r1,2967:9681632,40704321:2468537,575824,122846 -k1,2935:7213095,40704321:-2468537 -) -(1,2935:7213095,40704321:2468537,452978,122846 -k1,2935:7213095,40704321:3277 -h1,2935:9678355,40704321:0,411205,112570 -) -k1,2935:9908094,40704321:226462 -k1,2935:12286104,40704321:226463 -k1,2935:12868426,40704321:226462 -k1,2935:15072765,40704321:226462 -k1,2935:16583733,40704321:226462 -k1,2935:17914477,40704321:226462 -k1,2935:18888706,40704321:226463 -k1,2935:20628394,40704321:226462 -k1,2935:21506284,40704321:226462 -k1,2935:23936722,40704321:226462 -k1,2935:25182269,40704321:226462 -k1,2935:28277898,40704321:226463 -k1,2935:29452011,40704321:226462 -k1,2935:31563944,40704321:226462 -k1,2935:32583029,40704321:0 -) -(1,2936:6630773,41545809:25952256,513147,126483 -g1,2935:8672874,41545809 -g1,2935:9531395,41545809 -g1,2935:10749709,41545809 -g1,2935:14702840,41545809 -g1,2935:16093514,41545809 -g1,2935:17499916,41545809 -(1,2935:17499916,41545809:0,414482,115847 -r1,2967:18913317,41545809:1413401,530329,115847 -k1,2935:17499916,41545809:-1413401 -) -(1,2935:17499916,41545809:1413401,414482,115847 -k1,2935:17499916,41545809:3277 -h1,2935:18910040,41545809:0,411205,112570 -) -k1,2936:32583029,41545809:13496042 -g1,2936:32583029,41545809 -) -v1,2938:6630773,42830913:0,393216,0 -(1,2967:6630773,45116945:25952256,2679248,589824 -g1,2967:6630773,45116945 -(1,2967:6630773,45116945:25952256,2679248,589824 -(1,2967:6630773,45706769:25952256,3269072,0 -[1,2967:6630773,45706769:25952256,3269072,0 -(1,2967:6630773,45706769:25952256,3242858,0 -r1,2967:6656987,45706769:26214,3242858,0 -[1,2967:6656987,45706769:25899828,3242858,0 -(1,2967:6656987,45116945:25899828,2063210,0 -[1,2967:7246811,45116945:24720180,2063210,0 -(1,2939:7246811,44141109:24720180,1087374,134348 -k1,2938:8660994,44141109:204480 -k1,2938:10062161,44141109:204480 -k1,2938:13258360,44141109:204480 -k1,2938:14078878,44141109:204480 -k1,2938:15486599,44141109:204480 -k1,2938:16917258,44141109:204480 -k1,2938:18281724,44141109:204479 -k1,2938:22519290,44141109:204480 -k1,2938:25950763,44141109:204480 -k1,2938:27578030,44141109:204480 -k1,2938:28441802,44141109:204480 -k1,2938:30715909,44141109:204480 -k1,2939:31966991,44141109:0 -) -(1,2939:7246811,44982597:24720180,505283,134348 -k1,2938:8917815,44982597:227246 -k1,2938:9750614,44982597:227246 -k1,2938:10996945,44982597:227246 -k1,2938:13293818,44982597:227246 -k1,2938:15498941,44982597:227246 -k1,2938:18504914,44982597:227246 -k1,2938:19493688,44982597:227246 -k1,2938:20076794,44982597:227246 -k1,2938:23641133,44982597:227246 -k1,2938:27622281,44982597:227246 -k1,2938:28953809,44982597:227246 -k1,2938:29928821,44982597:227246 -k1,2938:31966991,44982597:0 -) -] -) -] -r1,2967:32583029,45706769:26214,3242858,0 -) -] -) -) -g1,2967:32583029,45116945 -) -] -(1,2967:32583029,45706769:0,0,0 -g1,2967:32583029,45706769 -) -) -] -(1,2967:6630773,47279633:25952256,0,0 -h1,2967:6630773,47279633:25952256,0,0 -) -] -(1,2967:4262630,4025873:0,0,0 -[1,2967:-473656,4025873:0,0,0 -(1,2967:-473656,-710413:0,0,0 -(1,2967:-473656,-710413:0,0,0 -g1,2967:-473656,-710413 -) -g1,2967:-473656,-710413 -) -] -) -] -!22417 -}62 -Input:495:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!102 -{63 -[1,3019:4262630,47279633:28320399,43253760,0 -(1,3019:4262630,4025873:0,0,0 -[1,3019:-473656,4025873:0,0,0 -(1,3019:-473656,-710413:0,0,0 -(1,3019:-473656,-644877:0,0,0 -k1,3019:-473656,-644877:-65536 -) -(1,3019:-473656,4736287:0,0,0 -k1,3019:-473656,4736287:5209943 -) -g1,3019:-473656,-710413 -) -] -) -[1,3019:6630773,47279633:25952256,43253760,0 -[1,3019:6630773,4812305:25952256,786432,0 -(1,3019:6630773,4812305:25952256,505283,134348 -(1,3019:6630773,4812305:25952256,505283,134348 -g1,3019:3078558,4812305 -[1,3019:3078558,4812305:0,0,0 -(1,3019:3078558,2439708:0,1703936,0 -k1,3019:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,3019:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,3019:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,3019:3078558,4812305:0,0,0 -(1,3019:3078558,2439708:0,1703936,0 -g1,3019:29030814,2439708 -g1,3019:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,3019:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,3019:37855564,2439708:1179648,16384,0 -) -) -k1,3019:3078556,2439708:-34777008 -) -] -[1,3019:3078558,4812305:0,0,0 -(1,3019:3078558,49800853:0,16384,2228224 -k1,3019:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,3019:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,3019:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,3019:3078558,4812305:0,0,0 -(1,3019:3078558,49800853:0,16384,2228224 -g1,3019:29030814,49800853 -g1,3019:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,3019:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,3019:37855564,49800853:1179648,16384,0 -) -) -k1,3019:3078556,49800853:-34777008 -) -] -g1,3019:6630773,4812305 -k1,3019:19515153,4812305:12087462 -g1,3019:20901894,4812305 -g1,3019:21550700,4812305 -g1,3019:24864855,4812305 -g1,3019:27600327,4812305 -g1,3019:29010006,4812305 -) -) -] -[1,3019:6630773,45706769:25952256,40108032,0 -(1,3019:6630773,45706769:25952256,40108032,0 -(1,3019:6630773,45706769:0,0,0 -g1,3019:6630773,45706769 -) -[1,3019:6630773,45706769:25952256,40108032,0 -v1,2967:6630773,6254097:0,393216,0 -(1,2967:6630773,22708042:25952256,16847161,616038 -g1,2967:6630773,22708042 -(1,2967:6630773,22708042:25952256,16847161,616038 -(1,2967:6630773,23324080:25952256,17463199,0 -[1,2967:6630773,23324080:25952256,17463199,0 -(1,2967:6630773,23297866:25952256,17436985,0 -r1,3019:6656987,23297866:26214,17436985,0 -[1,2967:6656987,23297866:25899828,17436985,0 -(1,2967:6656987,22708042:25899828,16257337,0 -[1,2967:7246811,22708042:24720180,16257337,0 -(1,2939:7246811,6963852:24720180,513147,134348 -k1,2938:8108937,6963852:246088 -k1,2938:8710884,6963852:246087 -k1,2938:11641982,6963852:246088 -k1,2938:13079515,6963852:246088 -k1,2938:14344688,6963852:246088 -k1,2938:17102115,6963852:246087 -k1,2938:18861429,6963852:246088 -k1,2938:19793679,6963852:246088 -k1,2938:20395626,6963852:246087 -k1,2938:23745499,6963852:246088 -k1,2938:24939238,6963852:246088 -k1,2938:28379551,6963852:246088 -k1,2938:28981498,6963852:246087 -k1,2938:31307699,6963852:246088 -k1,2938:31966991,6963852:0 -) -(1,2939:7246811,7805340:24720180,513147,102891 -g1,2938:9456685,7805340 -g1,2938:11223535,7805340 -g1,2938:12441849,7805340 -g1,2938:14294551,7805340 -g1,2938:16645327,7805340 -g1,2938:17527441,7805340 -g1,2938:19294291,7805340 -g1,2938:19849380,7805340 -g1,2938:22810952,7805340 -k1,2939:31966991,7805340:7004492 -g1,2939:31966991,7805340 -) -v1,2941:7246811,8995806:0,393216,0 -(1,2950:7246811,12610335:24720180,4007745,196608 -g1,2950:7246811,12610335 -g1,2950:7246811,12610335 -g1,2950:7050203,12610335 -(1,2950:7050203,12610335:0,4007745,196608 -r1,3019:32163599,12610335:25113396,4204353,196608 -k1,2950:7050203,12610335:-25113396 -) -(1,2950:7050203,12610335:25113396,4007745,196608 -[1,2950:7246811,12610335:24720180,3811137,0 -(1,2943:7246811,9203424:24720180,404226,76021 -(1,2942:7246811,9203424:0,0,0 -g1,2942:7246811,9203424 -g1,2942:7246811,9203424 -g1,2942:6919131,9203424 -(1,2942:6919131,9203424:0,0,0 -) -g1,2942:7246811,9203424 -) -g1,2943:7879103,9203424 -g1,2943:8827541,9203424 -h1,2943:12937435,9203424:0,0,0 -k1,2943:31966991,9203424:19029556 -g1,2943:31966991,9203424 -) -(1,2944:7246811,9869602:24720180,404226,9436 -h1,2944:7246811,9869602:0,0,0 -g1,2944:7879103,9869602 -g1,2944:8827541,9869602 -h1,2944:10092124,9869602:0,0,0 -k1,2944:31966992,9869602:21874868 -g1,2944:31966992,9869602 -) -(1,2945:7246811,10535780:24720180,404226,6290 -h1,2945:7246811,10535780:0,0,0 -g1,2945:10092122,10535780 -g1,2945:11040560,10535780 -g1,2945:11672852,10535780 -g1,2945:12305144,10535780 -h1,2945:13253581,10535780:0,0,0 -k1,2945:31966991,10535780:18713410 -g1,2945:31966991,10535780 -) -(1,2946:7246811,11201958:24720180,404226,6290 -h1,2946:7246811,11201958:0,0,0 -h1,2946:9775976,11201958:0,0,0 -k1,2946:31966992,11201958:22191016 -g1,2946:31966992,11201958 -) -(1,2947:7246811,11868136:24720180,404226,76021 -h1,2947:7246811,11868136:0,0,0 -h1,2947:10724413,11868136:0,0,0 -k1,2947:31966991,11868136:21242578 -g1,2947:31966991,11868136 -) -(1,2948:7246811,12534314:24720180,404226,76021 -h1,2948:7246811,12534314:0,0,0 -h1,2948:10724413,12534314:0,0,0 -k1,2948:31966991,12534314:21242578 -g1,2948:31966991,12534314 -) -] -) -g1,2950:31966991,12610335 -g1,2950:7246811,12610335 -g1,2950:7246811,12610335 -g1,2950:31966991,12610335 -g1,2950:31966991,12610335 -) -h1,2950:7246811,12806943:0,0,0 -(1,2954:7246811,14172719:24720180,513147,134348 -h1,2953:7246811,14172719:983040,0,0 -k1,2953:11680540,14172719:192239 -k1,2953:14299577,14172719:192239 -k1,2953:15596098,14172719:192239 -k1,2953:16536103,14172719:192239 -k1,2953:19520176,14172719:192239 -k1,2953:21280035,14172719:192238 -k1,2953:21828134,14172719:192239 -k1,2953:24090000,14172719:192239 -k1,2953:26260116,14172719:192239 -k1,2953:27213883,14172719:192239 -k1,2953:29474438,14172719:192239 -k1,2953:30325969,14172719:192239 -k1,2954:31966991,14172719:0 -) -(1,2954:7246811,15014207:24720180,473825,115847 -g1,2953:8713506,15014207 -(1,2953:8713506,15014207:0,452978,115847 -r1,3019:11182043,15014207:2468537,568825,115847 -k1,2953:8713506,15014207:-2468537 -) -(1,2953:8713506,15014207:2468537,452978,115847 -k1,2953:8713506,15014207:3277 -h1,2953:11178766,15014207:0,411205,112570 -) -k1,2954:31966991,15014207:20611278 -g1,2954:31966991,15014207 -) -v1,2956:7246811,16204673:0,393216,0 -(1,2963:7246811,18486846:24720180,2675389,196608 -g1,2963:7246811,18486846 -g1,2963:7246811,18486846 -g1,2963:7050203,18486846 -(1,2963:7050203,18486846:0,2675389,196608 -r1,3019:32163599,18486846:25113396,2871997,196608 -k1,2963:7050203,18486846:-25113396 -) -(1,2963:7050203,18486846:25113396,2675389,196608 -[1,2963:7246811,18486846:24720180,2478781,0 -(1,2958:7246811,16412291:24720180,404226,76021 -(1,2957:7246811,16412291:0,0,0 -g1,2957:7246811,16412291 -g1,2957:7246811,16412291 -g1,2957:6919131,16412291 -(1,2957:6919131,16412291:0,0,0 -) -g1,2957:7246811,16412291 -) -g1,2958:9775977,16412291 -g1,2958:10724415,16412291 -g1,2958:13253580,16412291 -g1,2958:13885872,16412291 -h1,2958:15150455,16412291:0,0,0 -k1,2958:31966991,16412291:16816536 -g1,2958:31966991,16412291 -) -(1,2959:7246811,17078469:24720180,404226,6290 -h1,2959:7246811,17078469:0,0,0 -h1,2959:9459831,17078469:0,0,0 -k1,2959:31966991,17078469:22507160 -g1,2959:31966991,17078469 -) -(1,2960:7246811,17744647:24720180,404226,76021 -h1,2960:7246811,17744647:0,0,0 -h1,2960:10408268,17744647:0,0,0 -k1,2960:31966992,17744647:21558724 -g1,2960:31966992,17744647 -) -(1,2961:7246811,18410825:24720180,404226,76021 -h1,2961:7246811,18410825:0,0,0 -h1,2961:10408268,18410825:0,0,0 -k1,2961:31966992,18410825:21558724 -g1,2961:31966992,18410825 -) -] -) -g1,2963:31966991,18486846 -g1,2963:7246811,18486846 -g1,2963:7246811,18486846 -g1,2963:31966991,18486846 -g1,2963:31966991,18486846 -) -h1,2963:7246811,18683454:0,0,0 -(1,2967:7246811,20049230:24720180,505283,126483 -h1,2966:7246811,20049230:983040,0,0 -k1,2966:10165916,20049230:276693 -k1,2966:11823452,20049230:276692 -k1,2966:12751573,20049230:276693 -k1,2966:16693039,20049230:276693 -k1,2966:17988817,20049230:276693 -k1,2966:21257228,20049230:276692 -k1,2966:23562916,20049230:276693 -k1,2966:25713939,20049230:276693 -k1,2966:29344764,20049230:276692 -k1,2966:30613017,20049230:276693 -k1,2966:31966991,20049230:0 -) -(1,2967:7246811,20890718:24720180,513147,126483 -k1,2966:9460620,20890718:157289 -k1,2966:11131136,20890718:157290 -k1,2966:11904463,20890718:157289 -k1,2966:12476554,20890718:157248 -k1,2966:15163533,20890718:157289 -k1,2966:16701010,20890718:157289 -k1,2966:18539954,20890718:157290 -k1,2966:19644894,20890718:157289 -k1,2966:22157547,20890718:157289 -k1,2966:23811024,20890718:157290 -k1,2966:25252819,20890718:157289 -k1,2966:25941605,20890718:157289 -k1,2966:27493501,20890718:157290 -k1,2966:28302218,20890718:157289 -k1,2966:31966991,20890718:0 -) -(1,2967:7246811,21732206:24720180,513147,134348 -k1,2966:8894890,21732206:157790 -k1,2966:10223154,21732206:157791 -k1,2966:11372504,21732206:157790 -k1,2966:14022629,21732206:157791 -k1,2966:15574370,21732206:157790 -k1,2966:16751245,21732206:157790 -k1,2966:19648441,21732206:157791 -k1,2966:21565873,21732206:157790 -k1,2966:24658365,21732206:157790 -k1,2966:25282117,21732206:157791 -k1,2966:26610380,21732206:157790 -k1,2966:27583439,21732206:157791 -k1,2966:28807500,21732206:157790 -k1,2966:31966991,21732206:0 -) -(1,2967:7246811,22573694:24720180,513147,134348 -g1,2966:9142767,22573694 -g1,2966:11101638,22573694 -g1,2966:13052644,22573694 -g1,2966:13911165,22573694 -g1,2966:15807121,22573694 -g1,2966:17576593,22573694 -g1,2966:21292484,22573694 -g1,2966:22624175,22573694 -g1,2966:23571170,22573694 -g1,2966:27960116,22573694 -g1,2966:28810773,22573694 -k1,2967:31966991,22573694:1812075 -g1,2967:31966991,22573694 -) -] -) -] -r1,3019:32583029,23297866:26214,17436985,0 -) -] -) -) -g1,2967:32583029,22708042 -) -h1,2967:6630773,23324080:0,0,0 -(1,2970:6630773,24689856:25952256,513147,134348 -h1,2969:6630773,24689856:983040,0,0 -k1,2969:10563538,24689856:198524 -k1,2969:11866343,24689856:198523 -k1,2969:12812633,24689856:198524 -k1,2969:14524382,24689856:198523 -k1,2969:15532276,24689856:198524 -k1,2969:17586779,24689856:198523 -k1,2969:19084882,24689856:198524 -k1,2969:19942697,24689856:198523 -k1,2969:20911924,24689856:198524 -k1,2969:24756215,24689856:198523 -k1,2969:28568394,24689856:198524 -k1,2969:29394752,24689856:198523 -k1,2969:30612361,24689856:198524 -k1,2969:32583029,24689856:0 -) -(1,2970:6630773,25531344:25952256,513147,134348 -k1,2969:8947307,25531344:274432 -k1,2969:10090091,25531344:274432 -k1,2969:11457008,25531344:274432 -k1,2969:12750524,25531344:274431 -k1,2969:16239497,25531344:274432 -k1,2969:19260543,25531344:274432 -k1,2969:20344345,25531344:274432 -k1,2969:21637862,25531344:274432 -k1,2969:24805709,25531344:274432 -k1,2969:26379719,25531344:274431 -k1,2969:27313443,25531344:274432 -k1,2969:28606960,25531344:274432 -k1,2969:32583029,25531344:0 -) -(1,2970:6630773,26372832:25952256,505283,126483 -k1,2969:7561233,26372832:279032 -k1,2969:10138613,26372832:279032 -k1,2969:12428290,26372832:279032 -k1,2969:14082923,26372832:279032 -k1,2969:14974717,26372832:279032 -k1,2969:17842421,26372832:279032 -k1,2969:21065985,26372832:279031 -k1,2969:21961055,26372832:279032 -k1,2969:23259172,26372832:279032 -k1,2969:25689751,26372832:279032 -k1,2969:27349627,26372832:279032 -k1,2969:28965593,26372832:279032 -k1,2969:30631367,26372832:279032 -k1,2969:32583029,26372832:0 -) -(1,2970:6630773,27214320:25952256,513147,134348 -k1,2969:9420553,27214320:290237 -k1,2969:10323552,27214320:290237 -k1,2969:11919922,27214320:290237 -k1,2969:13961281,27214320:290237 -k1,2969:15323687,27214320:290237 -k1,2969:16072021,27214320:290237 -k1,2969:16893755,27214320:290237 -k1,2969:18412792,27214320:290237 -k1,2969:19058889,27214320:290237 -k1,2969:21473803,27214320:290237 -k1,2969:24836368,27214320:290237 -k1,2969:25785897,27214320:290237 -k1,2969:27095219,27214320:290237 -k1,2969:28894095,27214320:290237 -k1,2969:29843624,27214320:290237 -k1,2969:32583029,27214320:0 -) -(1,2970:6630773,28055808:25952256,513147,126483 -k1,2969:9944473,28055808:223677 -k1,2969:12197146,28055808:223678 -k1,2969:12890716,28055808:223677 -k1,2969:15214823,28055808:223678 -k1,2969:17968190,28055808:223677 -k1,2969:19210953,28055808:223678 -k1,2969:20555296,28055808:223677 -k1,2969:24380176,28055808:223677 -k1,2969:25263146,28055808:223678 -k1,2969:26505908,28055808:223677 -(1,2969:26505908,28055808:0,414482,115847 -r1,3019:27215886,28055808:709978,530329,115847 -k1,2969:26505908,28055808:-709978 -) -(1,2969:26505908,28055808:709978,414482,115847 -k1,2969:26505908,28055808:3277 -h1,2969:27212609,28055808:0,411205,112570 -) -k1,2969:27439564,28055808:223678 -k1,2969:30409855,28055808:223677 -k1,2969:32583029,28055808:0 -) -(1,2970:6630773,28897296:25952256,513147,134348 -k1,2969:7437621,28897296:190810 -k1,2969:9095128,28897296:190811 -k1,2969:10305023,28897296:190810 -k1,2969:13389249,28897296:190811 -k1,2969:14879638,28897296:190810 -k1,2969:16261893,28897296:190810 -k1,2969:17471789,28897296:190811 -k1,2969:21017387,28897296:190810 -k1,2969:22507776,28897296:190810 -k1,2969:24436602,28897296:190811 -k1,2969:26078379,28897296:190810 -k1,2969:29330377,28897296:190811 -k1,2969:31563944,28897296:190810 -k1,2969:32583029,28897296:0 -) -(1,2970:6630773,29738784:25952256,513147,134348 -k1,2969:10516907,29738784:240366 -k1,2969:12440237,29738784:240365 -k1,2969:14516922,29738784:240366 -k1,2969:15586318,29738784:240366 -k1,2969:17542416,29738784:240365 -k1,2969:18801867,29738784:240366 -k1,2969:21613210,29738784:240366 -k1,2969:22505004,29738784:240366 -k1,2969:23764454,29738784:240365 -k1,2969:26312998,29738784:240366 -k1,2969:28423762,29738784:240366 -k1,2969:29315555,29738784:240365 -k1,2969:31714677,29738784:240366 -k1,2969:32583029,29738784:0 -) -(1,2970:6630773,30580272:25952256,513147,126483 -g1,2969:7922487,30580272 -g1,2969:10858499,30580272 -g1,2969:13365906,30580272 -g1,2969:14959086,30580272 -g1,2969:17920658,30580272 -g1,2969:20188203,30580272 -g1,2969:21335083,30580272 -g1,2969:22985934,30580272 -g1,2969:23844455,30580272 -g1,2969:25740411,30580272 -k1,2970:32583029,30580272:3677229 -g1,2970:32583029,30580272 -) -v1,2972:6630773,31770738:0,393216,0 -(1,3019:6630773,45505059:25952256,14127537,196608 -g1,3019:6630773,45505059 -g1,3019:6630773,45505059 -g1,3019:6434165,45505059 -(1,3019:6434165,45505059:0,14127537,196608 -r1,3019:32779637,45505059:26345472,14324145,196608 -k1,3019:6434165,45505059:-26345472 -) -(1,3019:6434165,45505059:26345472,14127537,196608 -[1,3019:6630773,45505059:25952256,13930929,0 -(1,2974:6630773,31962627:25952256,388497,9436 -(1,2973:6630773,31962627:0,0,0 -g1,2973:6630773,31962627 -g1,2973:6630773,31962627 -g1,2973:6303093,31962627 -(1,2973:6303093,31962627:0,0,0 -) -g1,2973:6630773,31962627 -) -g1,2974:7263065,31962627 -g1,2974:8211503,31962627 -h1,2974:9476086,31962627:0,0,0 -k1,2974:32583030,31962627:23106944 -g1,2974:32583030,31962627 -) -(1,2975:6630773,32628805:25952256,284164,4718 -h1,2975:6630773,32628805:0,0,0 -h1,2975:6946919,32628805:0,0,0 -k1,2975:32583029,32628805:25636110 -g1,2975:32583029,32628805 -) -(1,2979:6630773,33360519:25952256,404226,76021 -(1,2977:6630773,33360519:0,0,0 -g1,2977:6630773,33360519 -g1,2977:6630773,33360519 -g1,2977:6303093,33360519 -(1,2977:6303093,33360519:0,0,0 -) -g1,2977:6630773,33360519 -) -g1,2979:7579210,33360519 -g1,2979:7895356,33360519 -g1,2979:9159939,33360519 -g1,2979:9476085,33360519 -g1,2979:10108377,33360519 -g1,2979:10424523,33360519 -g1,2979:11056815,33360519 -g1,2979:11372961,33360519 -g1,2979:12005253,33360519 -g1,2979:12321399,33360519 -g1,2979:12953691,33360519 -g1,2979:13269837,33360519 -g1,2979:13902129,33360519 -g1,2979:14218275,33360519 -g1,2979:14850567,33360519 -g1,2979:15166713,33360519 -g1,2979:15799005,33360519 -g1,2979:16115151,33360519 -g1,2979:16747443,33360519 -g1,2979:17063589,33360519 -g1,2979:17695881,33360519 -h1,2979:18328172,33360519:0,0,0 -k1,2979:32583029,33360519:14254857 -g1,2979:32583029,33360519 -) -(1,2981:6630773,34682057:25952256,404226,76021 -(1,2980:6630773,34682057:0,0,0 -g1,2980:6630773,34682057 -g1,2980:6630773,34682057 -g1,2980:6303093,34682057 -(1,2980:6303093,34682057:0,0,0 -) -g1,2980:6630773,34682057 -) -g1,2981:8211502,34682057 -g1,2981:9159940,34682057 -h1,2981:9792231,34682057:0,0,0 -k1,2981:32583029,34682057:22790798 -g1,2981:32583029,34682057 -) -(1,2982:6630773,35348235:25952256,284164,4718 -h1,2982:6630773,35348235:0,0,0 -h1,2982:6946919,35348235:0,0,0 -k1,2982:32583029,35348235:25636110 -g1,2982:32583029,35348235 -) -(1,2986:6630773,36079949:25952256,404226,76021 -(1,2984:6630773,36079949:0,0,0 -g1,2984:6630773,36079949 -g1,2984:6630773,36079949 -g1,2984:6303093,36079949 -(1,2984:6303093,36079949:0,0,0 -) -g1,2984:6630773,36079949 -) -g1,2986:7579210,36079949 -g1,2986:7895356,36079949 -g1,2986:9159939,36079949 -g1,2986:10108376,36079949 -g1,2986:10424522,36079949 -g1,2986:11056814,36079949 -g1,2986:11372960,36079949 -g1,2986:12005252,36079949 -g1,2986:12321398,36079949 -g1,2986:12953690,36079949 -g1,2986:13269836,36079949 -g1,2986:13902128,36079949 -g1,2986:14218274,36079949 -g1,2986:14850566,36079949 -g1,2986:15166712,36079949 -g1,2986:15799004,36079949 -g1,2986:16115150,36079949 -g1,2986:16747442,36079949 -g1,2986:17063588,36079949 -g1,2986:17695880,36079949 -h1,2986:18328171,36079949:0,0,0 -k1,2986:32583029,36079949:14254858 -g1,2986:32583029,36079949 -) -(1,2988:6630773,37401487:25952256,404226,9436 -(1,2987:6630773,37401487:0,0,0 -g1,2987:6630773,37401487 -g1,2987:6630773,37401487 -g1,2987:6303093,37401487 -(1,2987:6303093,37401487:0,0,0 -) -g1,2987:6630773,37401487 -) -g1,2988:7263065,37401487 -g1,2988:8211503,37401487 -h1,2988:9476086,37401487:0,0,0 -k1,2988:32583030,37401487:23106944 -g1,2988:32583030,37401487 -) -(1,2989:6630773,38067665:25952256,404226,107478 -h1,2989:6630773,38067665:0,0,0 -g1,2989:9792231,38067665 -g1,2989:10740669,38067665 -g1,2989:12005252,38067665 -g1,2989:12637544,38067665 -k1,2989:12637544,38067665:11010 -h1,2989:15493865,38067665:0,0,0 -k1,2989:32583029,38067665:17089164 -g1,2989:32583029,38067665 -) -(1,2990:6630773,38733843:25952256,404226,6290 -h1,2990:6630773,38733843:0,0,0 -h1,2990:6946919,38733843:0,0,0 -k1,2990:32583029,38733843:25636110 -g1,2990:32583029,38733843 -) -(1,2994:6630773,39465557:25952256,404226,76021 -(1,2992:6630773,39465557:0,0,0 -g1,2992:6630773,39465557 -g1,2992:6630773,39465557 -g1,2992:6303093,39465557 -(1,2992:6303093,39465557:0,0,0 -) -g1,2992:6630773,39465557 -) -g1,2994:7579210,39465557 -g1,2994:7895356,39465557 -g1,2994:9159939,39465557 -g1,2994:9476085,39465557 -g1,2994:9792231,39465557 -g1,2994:10424523,39465557 -g1,2994:11689106,39465557 -g1,2994:12005252,39465557 -g1,2994:12321398,39465557 -g1,2994:12953690,39465557 -g1,2994:14218273,39465557 -g1,2994:14534419,39465557 -g1,2994:14850565,39465557 -g1,2994:15482857,39465557 -g1,2994:15799003,39465557 -g1,2994:16115149,39465557 -g1,2994:16747441,39465557 -g1,2994:17063587,39465557 -g1,2994:17379733,39465557 -g1,2994:18012025,39465557 -g1,2994:18328171,39465557 -g1,2994:18644317,39465557 -g1,2994:19276609,39465557 -g1,2994:19592755,39465557 -g1,2994:19908901,39465557 -g1,2994:20541193,39465557 -g1,2994:20857339,39465557 -h1,2994:21489630,39465557:0,0,0 -k1,2994:32583029,39465557:11093399 -g1,2994:32583029,39465557 -) -(1,2996:6630773,40787095:25952256,388497,9436 -(1,2995:6630773,40787095:0,0,0 -g1,2995:6630773,40787095 -g1,2995:6630773,40787095 -g1,2995:6303093,40787095 -(1,2995:6303093,40787095:0,0,0 -) -g1,2995:6630773,40787095 -) -g1,2996:7263065,40787095 -g1,2996:8211503,40787095 -h1,2996:9476086,40787095:0,0,0 -k1,2996:32583030,40787095:23106944 -g1,2996:32583030,40787095 -) -(1,2997:6630773,41453273:25952256,404226,82312 -h1,2997:6630773,41453273:0,0,0 -g1,2997:9792231,41453273 -g1,2997:10740669,41453273 -g1,2997:12953690,41453273 -h1,2997:13902127,41453273:0,0,0 -k1,2997:32583029,41453273:18680902 -g1,2997:32583029,41453273 -) -(1,2998:6630773,42119451:25952256,284164,6290 -h1,2998:6630773,42119451:0,0,0 -h1,2998:6946919,42119451:0,0,0 -k1,2998:32583029,42119451:25636110 -g1,2998:32583029,42119451 -) -(1,3002:6630773,42851165:25952256,404226,76021 -(1,3000:6630773,42851165:0,0,0 -g1,3000:6630773,42851165 -g1,3000:6630773,42851165 -g1,3000:6303093,42851165 -(1,3000:6303093,42851165:0,0,0 -) -g1,3000:6630773,42851165 -) -g1,3002:7579210,42851165 -g1,3002:7895356,42851165 -g1,3002:9159939,42851165 -g1,3002:9476085,42851165 -g1,3002:9792231,42851165 -g1,3002:10424523,42851165 -g1,3002:11689106,42851165 -g1,3002:12005252,42851165 -g1,3002:12321398,42851165 -g1,3002:12953690,42851165 -g1,3002:13269836,42851165 -g1,3002:14218273,42851165 -g1,3002:14534419,42851165 -g1,3002:14850565,42851165 -g1,3002:15482857,42851165 -g1,3002:15799003,42851165 -g1,3002:16115149,42851165 -g1,3002:16747441,42851165 -g1,3002:17063587,42851165 -g1,3002:17379733,42851165 -g1,3002:18012025,42851165 -g1,3002:18328171,42851165 -g1,3002:18644317,42851165 -g1,3002:19276609,42851165 -g1,3002:19592755,42851165 -g1,3002:19908901,42851165 -g1,3002:20541193,42851165 -g1,3002:20857339,42851165 -h1,3002:21489630,42851165:0,0,0 -k1,3002:32583029,42851165:11093399 -g1,3002:32583029,42851165 -) -(1,3004:6630773,44172703:25952256,404226,9436 -(1,3003:6630773,44172703:0,0,0 -g1,3003:6630773,44172703 -g1,3003:6630773,44172703 -g1,3003:6303093,44172703 -(1,3003:6303093,44172703:0,0,0 -) -g1,3003:6630773,44172703 -) -g1,3004:7263065,44172703 -g1,3004:8211503,44172703 -h1,3004:9476086,44172703:0,0,0 -k1,3004:32583030,44172703:23106944 -g1,3004:32583030,44172703 -) -(1,3005:6630773,44838881:25952256,404226,107478 -h1,3005:6630773,44838881:0,0,0 -g1,3005:9159939,44838881 -g1,3005:10108377,44838881 -g1,3005:10740669,44838881 -g1,3005:11372961,44838881 -k1,3005:11372961,44838881:11010 -h1,3005:14229282,44838881:0,0,0 -k1,3005:32583030,44838881:18353748 -g1,3005:32583030,44838881 -) -(1,3006:6630773,45505059:25952256,404226,6290 -h1,3006:6630773,45505059:0,0,0 -h1,3006:6946919,45505059:0,0,0 -k1,3006:32583029,45505059:25636110 -g1,3006:32583029,45505059 -) -] -) -g1,3019:32583029,45505059 -g1,3019:6630773,45505059 -g1,3019:6630773,45505059 -g1,3019:32583029,45505059 -g1,3019:32583029,45505059 -) -] -(1,3019:32583029,45706769:0,0,0 -g1,3019:32583029,45706769 -) -) -] -(1,3019:6630773,47279633:25952256,0,0 -h1,3019:6630773,47279633:25952256,0,0 -) -] -(1,3019:4262630,4025873:0,0,0 -[1,3019:-473656,4025873:0,0,0 -(1,3019:-473656,-710413:0,0,0 -(1,3019:-473656,-710413:0,0,0 -g1,3019:-473656,-710413 -) -g1,3019:-473656,-710413 -) -] -) -] -!22967 -}63 -Input:496:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:497:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:498:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:499:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:500:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:501:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:502:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:503:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:504:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!830 -{64 -[1,3124:4262630,47279633:28320399,43253760,0 -(1,3124:4262630,4025873:0,0,0 -[1,3124:-473656,4025873:0,0,0 -(1,3124:-473656,-710413:0,0,0 -(1,3124:-473656,-644877:0,0,0 -k1,3124:-473656,-644877:-65536 -) -(1,3124:-473656,4736287:0,0,0 -k1,3124:-473656,4736287:5209943 -) -g1,3124:-473656,-710413 -) -] -) -[1,3124:6630773,47279633:25952256,43253760,0 -[1,3124:6630773,4812305:25952256,786432,0 -(1,3124:6630773,4812305:25952256,505283,126483 -(1,3124:6630773,4812305:25952256,505283,126483 -g1,3124:3078558,4812305 -[1,3124:3078558,4812305:0,0,0 -(1,3124:3078558,2439708:0,1703936,0 -k1,3124:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,3124:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,3124:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,3124:3078558,4812305:0,0,0 -(1,3124:3078558,2439708:0,1703936,0 -g1,3124:29030814,2439708 -g1,3124:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,3124:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,3124:37855564,2439708:1179648,16384,0 -) -) -k1,3124:3078556,2439708:-34777008 -) -] -[1,3124:3078558,4812305:0,0,0 -(1,3124:3078558,49800853:0,16384,2228224 -k1,3124:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,3124:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,3124:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,3124:3078558,4812305:0,0,0 -(1,3124:3078558,49800853:0,16384,2228224 -g1,3124:29030814,49800853 -g1,3124:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,3124:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,3124:37855564,49800853:1179648,16384,0 -) -) -k1,3124:3078556,49800853:-34777008 -) -] -g1,3124:6630773,4812305 -g1,3124:6630773,4812305 -g1,3124:8826229,4812305 -g1,3124:13247287,4812305 -k1,3124:31786111,4812305:18538824 -) -) -] -[1,3124:6630773,45706769:25952256,40108032,0 -(1,3124:6630773,45706769:25952256,40108032,0 -(1,3124:6630773,45706769:0,0,0 -g1,3124:6630773,45706769 -) -[1,3124:6630773,45706769:25952256,40108032,0 -v1,3019:6630773,6254097:0,393216,0 -(1,3019:6630773,9923344:25952256,4062463,196608 -g1,3019:6630773,9923344 -g1,3019:6630773,9923344 -g1,3019:6434165,9923344 -(1,3019:6434165,9923344:0,4062463,196608 -r1,3124:32779637,9923344:26345472,4259071,196608 -k1,3019:6434165,9923344:-26345472 -) -(1,3019:6434165,9923344:26345472,4062463,196608 -[1,3019:6630773,9923344:25952256,3865855,0 -(1,3010:6630773,6461715:25952256,404226,76021 -(1,3008:6630773,6461715:0,0,0 -g1,3008:6630773,6461715 -g1,3008:6630773,6461715 -g1,3008:6303093,6461715 -(1,3008:6303093,6461715:0,0,0 -) -g1,3008:6630773,6461715 -) -g1,3010:7579210,6461715 -g1,3010:7895356,6461715 -g1,3010:9159939,6461715 -g1,3010:9792231,6461715 -g1,3010:10424523,6461715 -g1,3010:11056815,6461715 -g1,3010:11689107,6461715 -g1,3010:12321399,6461715 -g1,3010:12953691,6461715 -g1,3010:13585983,6461715 -g1,3010:14218275,6461715 -g1,3010:14850567,6461715 -h1,3010:15166713,6461715:0,0,0 -k1,3010:32583029,6461715:17416316 -g1,3010:32583029,6461715 -) -(1,3012:6630773,7783253:25952256,388497,9436 -(1,3011:6630773,7783253:0,0,0 -g1,3011:6630773,7783253 -g1,3011:6630773,7783253 -g1,3011:6303093,7783253 -(1,3011:6303093,7783253:0,0,0 -) -g1,3011:6630773,7783253 -) -g1,3012:7263065,7783253 -g1,3012:8211503,7783253 -h1,3012:9476086,7783253:0,0,0 -k1,3012:32583030,7783253:23106944 -g1,3012:32583030,7783253 -) -(1,3013:6630773,8449431:25952256,404226,107478 -h1,3013:6630773,8449431:0,0,0 -g1,3013:7263065,8449431 -g1,3013:8211503,8449431 -g1,3013:8843795,8449431 -g1,3013:9159941,8449431 -g1,3013:9792233,8449431 -g1,3013:10740670,8449431 -k1,3013:10740670,8449431:11010 -h1,3013:13596991,8449431:0,0,0 -k1,3013:32583029,8449431:18986038 -g1,3013:32583029,8449431 -) -(1,3014:6630773,9115609:25952256,284164,6290 -h1,3014:6630773,9115609:0,0,0 -h1,3014:6946919,9115609:0,0,0 -k1,3014:32583029,9115609:25636110 -g1,3014:32583029,9115609 -) -(1,3018:6630773,9847323:25952256,404226,76021 -(1,3016:6630773,9847323:0,0,0 -g1,3016:6630773,9847323 -g1,3016:6630773,9847323 -g1,3016:6303093,9847323 -(1,3016:6303093,9847323:0,0,0 -) -g1,3016:6630773,9847323 -) -g1,3018:7579210,9847323 -g1,3018:8843793,9847323 -h1,3018:9159939,9847323:0,0,0 -k1,3018:32583029,9847323:23423090 -g1,3018:32583029,9847323 -) -] -) -g1,3019:32583029,9923344 -g1,3019:6630773,9923344 -g1,3019:6630773,9923344 -g1,3019:32583029,9923344 -g1,3019:32583029,9923344 -) -h1,3019:6630773,10119952:0,0,0 -(1,3023:6630773,11422018:25952256,513147,134348 -h1,3022:6630773,11422018:983040,0,0 -k1,3022:8856376,11422018:289014 -k1,3022:10249671,11422018:289013 -k1,3022:11824501,11422018:289014 -k1,3022:13206000,11422018:289014 -k1,3022:17461907,11422018:289013 -k1,3022:18560291,11422018:289014 -k1,3022:20316001,11422018:289014 -k1,3022:22234894,11422018:289013 -k1,3022:23183200,11422018:289014 -k1,3022:24491299,11422018:289014 -k1,3022:28426080,11422018:289013 -k1,3022:31635378,11422018:289014 -k1,3022:32583029,11422018:0 -) -(1,3023:6630773,12263506:25952256,505283,126483 -g1,3022:9665089,12263506 -g1,3022:10515746,12263506 -g1,3022:12342889,12263506 -g1,3022:13714557,12263506 -k1,3023:32583029,12263506:15825635 -g1,3023:32583029,12263506 -) -v1,3025:6630773,13390262:0,393216,0 -(1,3034:6630773,15769428:25952256,2772382,196608 -g1,3034:6630773,15769428 -g1,3034:6630773,15769428 -g1,3034:6434165,15769428 -(1,3034:6434165,15769428:0,2772382,196608 -r1,3124:32779637,15769428:26345472,2968990,196608 -k1,3034:6434165,15769428:-26345472 -) -(1,3034:6434165,15769428:26345472,2772382,196608 -[1,3034:6630773,15769428:25952256,2575774,0 -(1,3027:6630773,13597880:25952256,404226,76021 -(1,3026:6630773,13597880:0,0,0 -g1,3026:6630773,13597880 -g1,3026:6630773,13597880 -g1,3026:6303093,13597880 -(1,3026:6303093,13597880:0,0,0 -) -g1,3026:6630773,13597880 -) -g1,3027:7263065,13597880 -g1,3027:8211503,13597880 -h1,3027:12321397,13597880:0,0,0 -k1,3027:32583029,13597880:20261632 -g1,3027:32583029,13597880 -) -(1,3028:6630773,14264058:25952256,404226,76021 -h1,3028:6630773,14264058:0,0,0 -g1,3028:8843794,14264058 -g1,3028:9792232,14264058 -h1,3028:11689107,14264058:0,0,0 -k1,3028:32583029,14264058:20893922 -g1,3028:32583029,14264058 -) -(1,3029:6630773,14930236:25952256,284164,4718 -h1,3029:6630773,14930236:0,0,0 -h1,3029:6946919,14930236:0,0,0 -k1,3029:32583029,14930236:25636110 -g1,3029:32583029,14930236 -) -(1,3033:6630773,15661950:25952256,410518,107478 -(1,3031:6630773,15661950:0,0,0 -g1,3031:6630773,15661950 -g1,3031:6630773,15661950 -g1,3031:6303093,15661950 -(1,3031:6303093,15661950:0,0,0 -) -g1,3031:6630773,15661950 -) -g1,3033:7579210,15661950 -g1,3033:7895356,15661950 -g1,3033:9159939,15661950 -g1,3033:10424522,15661950 -g1,3033:11689105,15661950 -g1,3033:12953688,15661950 -g1,3033:14218271,15661950 -g1,3033:15482854,15661950 -g1,3033:16747437,15661950 -g1,3033:18012020,15661950 -g1,3033:19276603,15661950 -g1,3033:20541186,15661950 -h1,3033:21489623,15661950:0,0,0 -k1,3033:32583029,15661950:11093406 -g1,3033:32583029,15661950 -) -] -) -g1,3034:32583029,15769428 -g1,3034:6630773,15769428 -g1,3034:6630773,15769428 -g1,3034:32583029,15769428 -g1,3034:32583029,15769428 -) -h1,3034:6630773,15966036:0,0,0 -v1,3038:6630773,17728681:0,393216,0 -(1,3053:6630773,28378333:25952256,11042868,616038 -g1,3053:6630773,28378333 -(1,3053:6630773,28378333:25952256,11042868,616038 -(1,3053:6630773,28994371:25952256,11658906,0 -[1,3053:6630773,28994371:25952256,11658906,0 -(1,3053:6630773,28968157:25952256,11606478,0 -r1,3124:6656987,28968157:26214,11606478,0 -[1,3053:6656987,28968157:25899828,11606478,0 -(1,3053:6656987,28378333:25899828,10426830,0 -[1,3053:7246811,28378333:24720180,10426830,0 -(1,3039:7246811,19038877:24720180,1087374,134348 -k1,3038:8661977,19038877:205463 -k1,3038:9765283,19038877:205463 -k1,3038:11313579,19038877:205463 -k1,3038:12912993,19038877:205463 -k1,3038:16425403,19038877:205463 -k1,3038:17282294,19038877:205463 -k1,3038:18946588,19038877:205463 -k1,3038:21319327,19038877:205463 -k1,3038:24117394,19038877:205463 -k1,3038:26085775,19038877:205463 -k1,3038:29050959,19038877:205463 -k1,3038:30586803,19038877:205463 -k1,3038:31966991,19038877:0 -) -(1,3039:7246811,19880365:24720180,513147,134348 -k1,3038:9058308,19880365:215040 -k1,3038:10464793,19880365:215040 -k1,3038:12010214,19880365:215040 -k1,3038:13605442,19880365:215040 -k1,3038:14924764,19880365:215040 -k1,3038:15887570,19880365:215040 -k1,3038:17789507,19880365:215040 -k1,3038:19137009,19880365:215040 -k1,3038:20099814,19880365:215039 -k1,3038:21668828,19880365:215040 -k1,3038:23861089,19880365:215040 -k1,3038:24692167,19880365:215040 -k1,3038:27701007,19880365:215040 -k1,3038:29086520,19880365:215040 -k1,3038:30116828,19880365:215040 -k1,3038:30947906,19880365:215040 -k1,3038:31966991,19880365:0 -) -(1,3039:7246811,20721853:24720180,513147,126483 -k1,3038:9385906,20721853:152043 -k1,3038:10931901,20721853:152044 -k1,3038:11672457,20721853:152043 -k1,3038:13314790,20721853:152044 -k1,3038:14485918,20721853:152043 -k1,3038:17652618,20721853:152044 -k1,3038:20466078,20721853:152043 -k1,3038:22486553,20721853:152044 -k1,3038:24953983,20721853:152043 -k1,3038:26125112,20721853:152044 -k1,3038:27930629,20721853:152044 -k1,3038:30207349,20721853:152043 -k1,3038:31966991,20721853:0 -) -(1,3039:7246811,21563341:24720180,513147,134348 -k1,3038:8633178,21563341:157567 -k1,3038:10574635,21563341:157567 -k1,3038:11190300,21563341:157568 -k1,3038:12206389,21563341:157567 -k1,3038:13125484,21563341:157567 -k1,3038:14315243,21563341:157567 -k1,3038:16024703,21563341:157567 -k1,3038:17201356,21563341:157568 -k1,3038:19600254,21563341:157567 -k1,3038:22944181,21563341:157567 -k1,3038:23717786,21563341:157567 -k1,3038:24894439,21563341:157568 -k1,3038:27022674,21563341:157567 -k1,3038:29222343,21563341:157567 -k1,3039:31966991,21563341:0 -) -(1,3039:7246811,22404829:24720180,513147,134348 -(1,3038:7246811,22404829:0,414482,115847 -r1,3124:7605077,22404829:358266,530329,115847 -k1,3038:7246811,22404829:-358266 -) -(1,3038:7246811,22404829:358266,414482,115847 -k1,3038:7246811,22404829:3277 -h1,3038:7601800,22404829:0,411205,112570 -) -k1,3038:8065626,22404829:286879 -k1,3038:9251004,22404829:286879 -k1,3038:11235922,22404829:286880 -k1,3038:14296940,22404829:286879 -k1,3038:17740033,22404829:286879 -k1,3038:18686204,22404829:286879 -k1,3038:20176325,22404829:286880 -k1,3038:23124621,22404829:286879 -k1,3038:24581973,22404829:286879 -k1,3038:26001314,22404829:286879 -k1,3038:27818460,22404829:286880 -k1,3038:28756767,22404829:286879 -k1,3038:31608725,22404829:286879 -(1,3038:31608725,22404829:0,414482,115847 -r1,3124:31966991,22404829:358266,530329,115847 -k1,3038:31608725,22404829:-358266 -) -(1,3038:31608725,22404829:358266,414482,115847 -k1,3038:31608725,22404829:3277 -h1,3038:31963714,22404829:0,411205,112570 -) -k1,3038:31966991,22404829:0 -) -(1,3039:7246811,23246317:24720180,513147,134348 -k1,3038:8235346,23246317:227007 -k1,3038:11517641,23246317:227007 -k1,3038:12763732,23246317:227006 -k1,3038:14296872,23246317:227007 -k1,3038:17883910,23246317:227007 -k1,3038:19562539,23246317:227007 -k1,3038:21214953,23246317:227006 -k1,3038:22612433,23246317:227007 -k1,3038:23957484,23246317:227007 -k1,3038:24540351,23246317:227007 -k1,3038:27593269,23246317:227006 -k1,3038:28479568,23246317:227007 -k1,3038:29725660,23246317:227007 -k1,3038:31966991,23246317:0 -) -(1,3039:7246811,24087805:24720180,426639,7863 -k1,3039:31966990,24087805:21360148 -g1,3039:31966990,24087805 -) -v1,3041:7246811,25278271:0,393216,0 -(1,3050:7246811,27657437:24720180,2772382,196608 -g1,3050:7246811,27657437 -g1,3050:7246811,27657437 -g1,3050:7050203,27657437 -(1,3050:7050203,27657437:0,2772382,196608 -r1,3124:32163599,27657437:25113396,2968990,196608 -k1,3050:7050203,27657437:-25113396 -) -(1,3050:7050203,27657437:25113396,2772382,196608 -[1,3050:7246811,27657437:24720180,2575774,0 -(1,3043:7246811,25485889:24720180,404226,76021 -(1,3042:7246811,25485889:0,0,0 -g1,3042:7246811,25485889 -g1,3042:7246811,25485889 -g1,3042:6919131,25485889 -(1,3042:6919131,25485889:0,0,0 -) -g1,3042:7246811,25485889 -) -g1,3043:7879103,25485889 -g1,3043:8827541,25485889 -h1,3043:12937435,25485889:0,0,0 -k1,3043:31966991,25485889:19029556 -g1,3043:31966991,25485889 -) -(1,3044:7246811,26152067:24720180,404226,82312 -h1,3044:7246811,26152067:0,0,0 -g1,3044:9459832,26152067 -g1,3044:10408270,26152067 -k1,3044:10408270,26152067:0 -h1,3044:15466601,26152067:0,0,0 -k1,3044:31966991,26152067:16500390 -g1,3044:31966991,26152067 -) -(1,3045:7246811,26818245:24720180,284164,4718 -h1,3045:7246811,26818245:0,0,0 -h1,3045:7562957,26818245:0,0,0 -k1,3045:31966991,26818245:24404034 -g1,3045:31966991,26818245 -) -(1,3049:7246811,27549959:24720180,410518,107478 -(1,3047:7246811,27549959:0,0,0 -g1,3047:7246811,27549959 -g1,3047:7246811,27549959 -g1,3047:6919131,27549959 -(1,3047:6919131,27549959:0,0,0 -) -g1,3047:7246811,27549959 -) -g1,3049:8195248,27549959 -g1,3049:8511394,27549959 -g1,3049:9775977,27549959 -g1,3049:11040560,27549959 -g1,3049:12305143,27549959 -g1,3049:13569726,27549959 -g1,3049:14834309,27549959 -g1,3049:16098892,27549959 -g1,3049:17363475,27549959 -g1,3049:18628058,27549959 -g1,3049:19892641,27549959 -g1,3049:21157224,27549959 -h1,3049:22105661,27549959:0,0,0 -k1,3049:31966991,27549959:9861330 -g1,3049:31966991,27549959 -) -] -) -g1,3050:31966991,27657437 -g1,3050:7246811,27657437 -g1,3050:7246811,27657437 -g1,3050:31966991,27657437 -g1,3050:31966991,27657437 -) -h1,3050:7246811,27854045:0,0,0 -] -) -] -r1,3124:32583029,28968157:26214,11606478,0 -) -] -) -) -g1,3053:32583029,28378333 -) -h1,3053:6630773,28994371:0,0,0 -v1,3055:6630773,30296437:0,393216,0 -(1,3124:6630773,45116945:25952256,15213724,589824 -g1,3124:6630773,45116945 -(1,3124:6630773,45116945:25952256,15213724,589824 -(1,3124:6630773,45706769:25952256,15803548,0 -[1,3124:6630773,45706769:25952256,15803548,0 -(1,3124:6630773,45706769:25952256,15777334,0 -r1,3124:6656987,45706769:26214,15777334,0 -[1,3124:6656987,45706769:25899828,15777334,0 -(1,3124:6656987,45116945:25899828,14597686,0 -[1,3124:7246811,45116945:24720180,14597686,0 -(1,3057:7246811,31681144:24720180,1161885,196608 -(1,3055:7246811,31681144:0,1161885,196608 -r1,3124:8794447,31681144:1547636,1358493,196608 -k1,3055:7246811,31681144:-1547636 -) -(1,3055:7246811,31681144:1547636,1161885,196608 -) -k1,3055:8931171,31681144:136724 -k1,3055:8931171,31681144:0 -k1,3056:8931171,31681144:0 -k1,3056:9695730,31681144:136724 -k1,3056:10420967,31681144:136724 -k1,3056:13297096,31681144:136724 -k1,3056:14827771,31681144:136724 -k1,3056:18139714,31681144:136724 -k1,3056:20703237,31681144:136725 -k1,3056:21944243,31681144:136724 -k1,3056:22828733,31681144:136724 -k1,3056:24542909,31681144:136724 -k1,3056:26073584,31681144:136724 -(1,3056:26073584,31681144:0,452978,122846 -r1,3124:28542121,31681144:2468537,575824,122846 -k1,3056:26073584,31681144:-2468537 -) -(1,3056:26073584,31681144:2468537,452978,122846 -k1,3056:26073584,31681144:3277 -h1,3056:28538844,31681144:0,411205,112570 -) -k1,3056:28678845,31681144:136724 -k1,3056:29498454,31681144:136724 -(1,3056:29498454,31681144:0,452978,115847 -r1,3124:31966991,31681144:2468537,568825,115847 -k1,3056:29498454,31681144:-2468537 -) -(1,3056:29498454,31681144:2468537,452978,115847 -k1,3056:29498454,31681144:3277 -h1,3056:31963714,31681144:0,411205,112570 -) -k1,3056:31966991,31681144:0 -) -(1,3057:7246811,32522632:24720180,513147,134348 -k1,3056:9638547,32522632:207421 -k1,3056:12543431,32522632:207422 -k1,3056:14761497,32522632:207421 -k1,3056:16073200,32522632:207421 -k1,3056:17028387,32522632:207421 -k1,3056:19181573,32522632:207422 -k1,3056:20461163,32522632:207421 -k1,3056:21616235,32522632:207421 -k1,3056:24736731,32522632:207421 -k1,3056:26319754,32522632:207422 -k1,3056:28757365,32522632:207421 -k1,3056:30975431,32522632:207421 -k1,3056:31966991,32522632:0 -) -(1,3057:7246811,33364120:24720180,513147,134348 -k1,3056:11331776,33364120:298295 -k1,3056:16150744,33364120:298294 -(1,3056:16150744,33364120:0,452978,115847 -r1,3124:18267569,33364120:2116825,568825,115847 -k1,3056:16150744,33364120:-2116825 -) -(1,3056:16150744,33364120:2116825,452978,115847 -k1,3056:16150744,33364120:3277 -h1,3056:18264292,33364120:0,411205,112570 -) -k1,3056:18565864,33364120:298295 -k1,3056:20874804,33364120:298295 -k1,3056:22164658,33364120:298294 -k1,3056:25623754,33364120:298295 -k1,3056:27189514,33364120:298294 -(1,3056:27189514,33364120:0,452978,122846 -r1,3124:29658051,33364120:2468537,575824,122846 -k1,3056:27189514,33364120:-2468537 -) -(1,3056:27189514,33364120:2468537,452978,122846 -k1,3056:27189514,33364120:3277 -h1,3056:29654774,33364120:0,411205,112570 -) -k1,3056:29956346,33364120:298295 -k1,3056:31966991,33364120:0 -) -(1,3057:7246811,34205608:24720180,505283,126483 -k1,3056:9127039,34205608:182190 -k1,3056:10822455,34205608:182190 -k1,3056:11690807,34205608:182190 -k1,3056:14473466,34205608:182190 -k1,3056:15852343,34205608:182190 -k1,3056:19511218,34205608:182190 -k1,3056:20224905,34205608:182190 -k1,3056:21984547,34205608:182190 -k1,3056:25012966,34205608:182190 -k1,3056:26267325,34205608:182190 -k1,3056:26907612,34205608:182190 -k1,3056:28582712,34205608:182190 -k1,3056:30215869,34205608:182190 -k1,3056:31966991,34205608:0 -) -(1,3057:7246811,35047096:24720180,505283,134348 -k1,3056:11812921,35047096:171921 -k1,3056:14507324,35047096:171922 -k1,3056:16462480,35047096:171921 -k1,3056:19221107,35047096:171921 -k1,3056:20202398,35047096:171921 -k1,3056:21350151,35047096:171922 -k1,3056:22911435,35047096:171921 -k1,3056:24521871,35047096:171921 -k1,3056:27591140,35047096:171922 -k1,3056:29498454,35047096:171921 -(1,3056:29498454,35047096:0,452978,122846 -r1,3124:31966991,35047096:2468537,575824,122846 -k1,3056:29498454,35047096:-2468537 -) -(1,3056:29498454,35047096:2468537,452978,122846 -k1,3056:29498454,35047096:3277 -h1,3056:31963714,35047096:0,411205,112570 -) -k1,3056:31966991,35047096:0 -) -(1,3057:7246811,35888584:24720180,513147,126483 -g1,3056:9456685,35888584 -g1,3056:10760196,35888584 -g1,3056:13588729,35888584 -k1,3057:31966991,35888584:14128908 -g1,3057:31966991,35888584 -) -v1,3059:7246811,37079050:0,393216,0 -(1,3085:7246811,44920337:24720180,8234503,196608 -g1,3085:7246811,44920337 -g1,3085:7246811,44920337 -g1,3085:7050203,44920337 -(1,3085:7050203,44920337:0,8234503,196608 -r1,3124:32163599,44920337:25113396,8431111,196608 -k1,3085:7050203,44920337:-25113396 -) -(1,3085:7050203,44920337:25113396,8234503,196608 -[1,3085:7246811,44920337:24720180,8037895,0 -(1,3061:7246811,37286668:24720180,404226,76021 -(1,3060:7246811,37286668:0,0,0 -g1,3060:7246811,37286668 -g1,3060:7246811,37286668 -g1,3060:6919131,37286668 -(1,3060:6919131,37286668:0,0,0 -) -g1,3060:7246811,37286668 -) -g1,3061:7879103,37286668 -g1,3061:8827541,37286668 -h1,3061:12937435,37286668:0,0,0 -k1,3061:31966991,37286668:19029556 -g1,3061:31966991,37286668 -) -(1,3062:7246811,37952846:24720180,404226,76021 -h1,3062:7246811,37952846:0,0,0 -h1,3062:8511394,37952846:0,0,0 -k1,3062:31966990,37952846:23455596 -g1,3062:31966990,37952846 -) -(1,3066:7246811,38684560:24720180,404226,76021 -(1,3064:7246811,38684560:0,0,0 -g1,3064:7246811,38684560 -g1,3064:7246811,38684560 -g1,3064:6919131,38684560 -(1,3064:6919131,38684560:0,0,0 -) -g1,3064:7246811,38684560 -) -g1,3066:8195248,38684560 -g1,3066:9459831,38684560 -h1,3066:10408268,38684560:0,0,0 -k1,3066:31966992,38684560:21558724 -g1,3066:31966992,38684560 -) -(1,3068:7246811,40006098:24720180,404226,76021 -(1,3067:7246811,40006098:0,0,0 -g1,3067:7246811,40006098 -g1,3067:7246811,40006098 -g1,3067:6919131,40006098 -(1,3067:6919131,40006098:0,0,0 -) -g1,3067:7246811,40006098 -) -h1,3068:9143685,40006098:0,0,0 -k1,3068:31966991,40006098:22823306 -g1,3068:31966991,40006098 -) -(1,3072:7246811,40737812:24720180,404226,76021 -(1,3070:7246811,40737812:0,0,0 -g1,3070:7246811,40737812 -g1,3070:7246811,40737812 -g1,3070:6919131,40737812 -(1,3070:6919131,40737812:0,0,0 -) -g1,3070:7246811,40737812 -) -g1,3072:8195248,40737812 -g1,3072:9459831,40737812 -h1,3072:10408268,40737812:0,0,0 -k1,3072:31966992,40737812:21558724 -g1,3072:31966992,40737812 -) -(1,3074:7246811,42059350:24720180,404226,101187 -(1,3073:7246811,42059350:0,0,0 -g1,3073:7246811,42059350 -g1,3073:7246811,42059350 -g1,3073:6919131,42059350 -(1,3073:6919131,42059350:0,0,0 -) -g1,3073:7246811,42059350 -) -g1,3074:10408268,42059350 -g1,3074:11040560,42059350 -k1,3074:11040560,42059350:0 -h1,3074:14202017,42059350:0,0,0 -k1,3074:31966991,42059350:17764974 -g1,3074:31966991,42059350 -) -(1,3078:7246811,42791064:24720180,404226,76021 -(1,3076:7246811,42791064:0,0,0 -g1,3076:7246811,42791064 -g1,3076:7246811,42791064 -g1,3076:6919131,42791064 -(1,3076:6919131,42791064:0,0,0 -) -g1,3076:7246811,42791064 -) -g1,3078:8195248,42791064 -g1,3078:9459831,42791064 -h1,3078:10408268,42791064:0,0,0 -k1,3078:31966992,42791064:21558724 -g1,3078:31966992,42791064 -) -(1,3080:7246811,44112602:24720180,404226,76021 -(1,3079:7246811,44112602:0,0,0 -g1,3079:7246811,44112602 -g1,3079:7246811,44112602 -g1,3079:6919131,44112602 -(1,3079:6919131,44112602:0,0,0 -) -g1,3079:7246811,44112602 -) -h1,3080:8511394,44112602:0,0,0 -k1,3080:31966990,44112602:23455596 -g1,3080:31966990,44112602 -) -(1,3084:7246811,44844316:24720180,404226,76021 -(1,3082:7246811,44844316:0,0,0 -g1,3082:7246811,44844316 -g1,3082:7246811,44844316 -g1,3082:6919131,44844316 -(1,3082:6919131,44844316:0,0,0 -) -g1,3082:7246811,44844316 -) -g1,3084:8195248,44844316 -g1,3084:9459831,44844316 -h1,3084:10408268,44844316:0,0,0 -k1,3084:31966992,44844316:21558724 -g1,3084:31966992,44844316 -) -] -) -g1,3085:31966991,44920337 -g1,3085:7246811,44920337 -g1,3085:7246811,44920337 -g1,3085:31966991,44920337 -g1,3085:31966991,44920337 -) -h1,3085:7246811,45116945:0,0,0 -] -) -] -r1,3124:32583029,45706769:26214,15777334,0 -) -] -) -) -g1,3124:32583029,45116945 -) -] -(1,3124:32583029,45706769:0,0,0 -g1,3124:32583029,45706769 -) -) -] -(1,3124:6630773,47279633:25952256,0,0 -h1,3124:6630773,47279633:25952256,0,0 -) -] -(1,3124:4262630,4025873:0,0,0 -[1,3124:-473656,4025873:0,0,0 -(1,3124:-473656,-710413:0,0,0 -(1,3124:-473656,-710413:0,0,0 -g1,3124:-473656,-710413 -) -g1,3124:-473656,-710413 -) -] -) -] -!22563 -}64 -Input:505:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:506:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:507:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:508:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!375 -{65 -[1,3202:4262630,47279633:28320399,43253760,0 -(1,3202:4262630,4025873:0,0,0 -[1,3202:-473656,4025873:0,0,0 -(1,3202:-473656,-710413:0,0,0 -(1,3202:-473656,-644877:0,0,0 -k1,3202:-473656,-644877:-65536 -) -(1,3202:-473656,4736287:0,0,0 -k1,3202:-473656,4736287:5209943 -) -g1,3202:-473656,-710413 -) -] -) -[1,3202:6630773,47279633:25952256,43253760,0 -[1,3202:6630773,4812305:25952256,786432,0 -(1,3202:6630773,4812305:25952256,505283,134348 -(1,3202:6630773,4812305:25952256,505283,134348 -g1,3202:3078558,4812305 -[1,3202:3078558,4812305:0,0,0 -(1,3202:3078558,2439708:0,1703936,0 -k1,3202:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,3202:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,3202:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,3202:3078558,4812305:0,0,0 -(1,3202:3078558,2439708:0,1703936,0 -g1,3202:29030814,2439708 -g1,3202:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,3202:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,3202:37855564,2439708:1179648,16384,0 -) -) -k1,3202:3078556,2439708:-34777008 -) -] -[1,3202:3078558,4812305:0,0,0 -(1,3202:3078558,49800853:0,16384,2228224 -k1,3202:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,3202:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,3202:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,3202:3078558,4812305:0,0,0 -(1,3202:3078558,49800853:0,16384,2228224 -g1,3202:29030814,49800853 -g1,3202:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,3202:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,3202:37855564,49800853:1179648,16384,0 -) -) -k1,3202:3078556,49800853:-34777008 -) -] -g1,3202:6630773,4812305 -k1,3202:19515153,4812305:12087462 -g1,3202:20901894,4812305 -g1,3202:21550700,4812305 -g1,3202:24864855,4812305 -g1,3202:27600327,4812305 -g1,3202:29010006,4812305 -) -) -] -[1,3202:6630773,45706769:25952256,40108032,0 -(1,3202:6630773,45706769:25952256,40108032,0 -(1,3202:6630773,45706769:0,0,0 -g1,3202:6630773,45706769 -) -[1,3202:6630773,45706769:25952256,40108032,0 -v1,3124:6630773,6254097:0,393216,0 -(1,3124:6630773,22733400:25952256,16872519,616038 -g1,3124:6630773,22733400 -(1,3124:6630773,22733400:25952256,16872519,616038 -(1,3124:6630773,23349438:25952256,17488557,0 -[1,3124:6630773,23349438:25952256,17488557,0 -(1,3124:6630773,23323224:25952256,17462343,0 -r1,3202:6656987,23323224:26214,17462343,0 -[1,3124:6656987,23323224:25899828,17462343,0 -(1,3124:6656987,22733400:25899828,16282695,0 -[1,3124:7246811,22733400:24720180,16282695,0 -(1,3089:7246811,6963852:24720180,513147,126483 -h1,3088:7246811,6963852:983040,0,0 -k1,3088:10131651,6963852:239807 -k1,3088:11574699,6963852:239807 -k1,3088:15597244,6963852:239807 -k1,3088:16705403,6963852:239807 -k1,3088:18049492,6963852:239807 -k1,3088:19900830,6963852:239808 -k1,3088:21425143,6963852:239807 -k1,3088:22130911,6963852:239807 -k1,3088:24880092,6963852:239807 -k1,3088:27546697,6963852:239807 -k1,3088:28778064,6963852:239807 -k1,3088:30084142,6963852:239807 -k1,3088:31966991,6963852:0 -) -(1,3089:7246811,7805340:24720180,505283,134348 -g1,3088:10435792,7805340 -g1,3088:12015209,7805340 -g1,3088:13205998,7805340 -g1,3088:16494594,7805340 -g1,3088:17345251,7805340 -g1,3088:18563565,7805340 -g1,3088:20146914,7805340 -g1,3088:22698230,7805340 -k1,3089:31966991,7805340:6864900 -g1,3089:31966991,7805340 -) -v1,3091:7246811,8995806:0,393216,0 -(1,3117:7246811,16837093:24720180,8234503,196608 -g1,3117:7246811,16837093 -g1,3117:7246811,16837093 -g1,3117:7050203,16837093 -(1,3117:7050203,16837093:0,8234503,196608 -r1,3202:32163599,16837093:25113396,8431111,196608 -k1,3117:7050203,16837093:-25113396 -) -(1,3117:7050203,16837093:25113396,8234503,196608 -[1,3117:7246811,16837093:24720180,8037895,0 -(1,3093:7246811,9203424:24720180,404226,76021 -(1,3092:7246811,9203424:0,0,0 -g1,3092:7246811,9203424 -g1,3092:7246811,9203424 -g1,3092:6919131,9203424 -(1,3092:6919131,9203424:0,0,0 -) -g1,3092:7246811,9203424 -) -g1,3093:7879103,9203424 -g1,3093:8827541,9203424 -h1,3093:12937435,9203424:0,0,0 -k1,3093:31966991,9203424:19029556 -g1,3093:31966991,9203424 -) -(1,3094:7246811,9869602:24720180,404226,76021 -h1,3094:7246811,9869602:0,0,0 -k1,3094:7246811,9869602:0 -h1,3094:8827540,9869602:0,0,0 -k1,3094:31966992,9869602:23139452 -g1,3094:31966992,9869602 -) -(1,3098:7246811,10601316:24720180,404226,76021 -(1,3096:7246811,10601316:0,0,0 -g1,3096:7246811,10601316 -g1,3096:7246811,10601316 -g1,3096:6919131,10601316 -(1,3096:6919131,10601316:0,0,0 -) -g1,3096:7246811,10601316 -) -g1,3098:8195248,10601316 -g1,3098:9459831,10601316 -g1,3098:10724414,10601316 -g1,3098:11988997,10601316 -g1,3098:13253580,10601316 -g1,3098:14518163,10601316 -g1,3098:15782746,10601316 -g1,3098:17047329,10601316 -g1,3098:18311912,10601316 -g1,3098:19576495,10601316 -h1,3098:20524932,10601316:0,0,0 -k1,3098:31966991,10601316:11442059 -g1,3098:31966991,10601316 -) -(1,3100:7246811,11922854:24720180,404226,76021 -(1,3099:7246811,11922854:0,0,0 -g1,3099:7246811,11922854 -g1,3099:7246811,11922854 -g1,3099:6919131,11922854 -(1,3099:6919131,11922854:0,0,0 -) -g1,3099:7246811,11922854 -) -k1,3100:7246811,11922854:0 -h1,3100:9459831,11922854:0,0,0 -k1,3100:31966991,11922854:22507160 -g1,3100:31966991,11922854 -) -(1,3104:7246811,12654568:24720180,404226,76021 -(1,3102:7246811,12654568:0,0,0 -g1,3102:7246811,12654568 -g1,3102:7246811,12654568 -g1,3102:6919131,12654568 -(1,3102:6919131,12654568:0,0,0 -) -g1,3102:7246811,12654568 -) -g1,3104:8195248,12654568 -g1,3104:9459831,12654568 -g1,3104:10724414,12654568 -g1,3104:11988997,12654568 -g1,3104:13253580,12654568 -g1,3104:14518163,12654568 -g1,3104:15782746,12654568 -g1,3104:17047329,12654568 -g1,3104:18311912,12654568 -g1,3104:19576495,12654568 -h1,3104:20524932,12654568:0,0,0 -k1,3104:31966991,12654568:11442059 -g1,3104:31966991,12654568 -) -(1,3106:7246811,13976106:24720180,404226,76021 -(1,3105:7246811,13976106:0,0,0 -g1,3105:7246811,13976106 -g1,3105:7246811,13976106 -g1,3105:6919131,13976106 -(1,3105:6919131,13976106:0,0,0 -) -g1,3105:7246811,13976106 -) -k1,3106:7246811,13976106:0 -h1,3106:10408268,13976106:0,0,0 -k1,3106:31966992,13976106:21558724 -g1,3106:31966992,13976106 -) -(1,3110:7246811,14707820:24720180,404226,76021 -(1,3108:7246811,14707820:0,0,0 -g1,3108:7246811,14707820 -g1,3108:7246811,14707820 -g1,3108:6919131,14707820 -(1,3108:6919131,14707820:0,0,0 -) -g1,3108:7246811,14707820 -) -g1,3110:8195248,14707820 -g1,3110:9459831,14707820 -g1,3110:10724414,14707820 -g1,3110:11988997,14707820 -g1,3110:13253580,14707820 -g1,3110:14518163,14707820 -g1,3110:15782746,14707820 -g1,3110:17047329,14707820 -g1,3110:18311912,14707820 -g1,3110:19576495,14707820 -h1,3110:20524932,14707820:0,0,0 -k1,3110:31966991,14707820:11442059 -g1,3110:31966991,14707820 -) -(1,3112:7246811,16029358:24720180,404226,76021 -(1,3111:7246811,16029358:0,0,0 -g1,3111:7246811,16029358 -g1,3111:7246811,16029358 -g1,3111:6919131,16029358 -(1,3111:6919131,16029358:0,0,0 -) -g1,3111:7246811,16029358 -) -k1,3112:7246811,16029358:0 -h1,3112:8827540,16029358:0,0,0 -k1,3112:31966992,16029358:23139452 -g1,3112:31966992,16029358 -) -(1,3116:7246811,16761072:24720180,404226,76021 -(1,3114:7246811,16761072:0,0,0 -g1,3114:7246811,16761072 -g1,3114:7246811,16761072 -g1,3114:6919131,16761072 -(1,3114:6919131,16761072:0,0,0 -) -g1,3114:7246811,16761072 -) -g1,3116:8195248,16761072 -g1,3116:9459831,16761072 -g1,3116:10724414,16761072 -g1,3116:11988997,16761072 -g1,3116:13253580,16761072 -g1,3116:14518163,16761072 -g1,3116:15782746,16761072 -g1,3116:17047329,16761072 -g1,3116:18311912,16761072 -g1,3116:19576495,16761072 -h1,3116:20524932,16761072:0,0,0 -k1,3116:31966991,16761072:11442059 -g1,3116:31966991,16761072 -) -] -) -g1,3117:31966991,16837093 -g1,3117:7246811,16837093 -g1,3117:7246811,16837093 -g1,3117:31966991,16837093 -g1,3117:31966991,16837093 -) -h1,3117:7246811,17033701:0,0,0 -(1,3121:7246811,18399477:24720180,513147,134348 -h1,3120:7246811,18399477:983040,0,0 -k1,3120:10119527,18399477:227683 -k1,3120:11550451,18399477:227683 -k1,3120:15560872,18399477:227683 -k1,3120:16656907,18399477:227683 -k1,3120:17988872,18399477:227683 -k1,3120:19828085,18399477:227683 -k1,3120:21340274,18399477:227683 -k1,3120:22033918,18399477:227683 -k1,3120:24916464,18399477:227683 -k1,3120:27570945,18399477:227683 -k1,3120:28790188,18399477:227683 -k1,3120:30084142,18399477:227683 -k1,3120:31966991,18399477:0 -) -(1,3121:7246811,19240965:24720180,505283,134348 -k1,3120:10460369,19240965:223806 -k1,3120:12064362,19240965:223805 -k1,3120:13279728,19240965:223806 -k1,3120:16592900,19240965:223805 -k1,3120:17468134,19240965:223806 -k1,3120:18711024,19240965:223805 -k1,3120:20318950,19240965:223806 -k1,3120:22402011,19240965:223805 -k1,3120:24045982,19240965:223806 -k1,3120:27131744,19240965:223805 -k1,3120:29759411,19240965:223806 -k1,3120:30611051,19240965:223805 -k1,3121:31966991,19240965:0 -) -(1,3121:7246811,20082453:24720180,513147,134348 -k1,3120:9928722,20082453:213825 -(1,3120:9928722,20082453:0,452978,115847 -r1,3202:12045547,20082453:2116825,568825,115847 -k1,3120:9928722,20082453:-2116825 -) -(1,3120:9928722,20082453:2116825,452978,115847 -k1,3120:9928722,20082453:3277 -h1,3120:12042270,20082453:0,411205,112570 -) -k1,3120:12259372,20082453:213825 -k1,3120:14222353,20082453:213825 -k1,3120:16446823,20082453:213825 -k1,3120:18883629,20082453:213825 -k1,3120:19783616,20082453:213825 -k1,3120:20463402,20082453:213825 -k1,3120:22057415,20082453:213825 -k1,3120:24190134,20082453:213825 -k1,3120:27322277,20082453:213825 -k1,3120:29271495,20082453:213825 -k1,3121:31966991,20082453:0 -) -(1,3121:7246811,20923941:24720180,452978,115847 -(1,3120:7246811,20923941:0,452978,115847 -r1,3202:9715348,20923941:2468537,568825,115847 -k1,3120:7246811,20923941:-2468537 -) -(1,3120:7246811,20923941:2468537,452978,115847 -k1,3120:7246811,20923941:3277 -h1,3120:9712071,20923941:0,411205,112570 -) -k1,3121:31966990,20923941:22077972 -g1,3121:31966990,20923941 -) -(1,3123:7246811,21765429:24720180,513147,134348 -h1,3122:7246811,21765429:983040,0,0 -k1,3122:9838013,21765429:227318 -k1,3122:12726749,21765429:227319 -k1,3122:14239883,21765429:227318 -k1,3122:16458185,21765429:227318 -k1,3122:18015885,21765429:227319 -k1,3122:19399913,21765429:227318 -k1,3122:20731513,21765429:227318 -k1,3122:22596576,21765429:227318 -k1,3122:23890166,21765429:227319 -k1,3122:24784640,21765429:227318 -k1,3122:25426773,21765429:227290 -k1,3122:26442489,21765429:227318 -k1,3122:28255779,21765429:227319 -k1,3122:31041623,21765429:227318 -k1,3123:31966991,21765429:0 -) -(1,3123:7246811,22606917:24720180,473825,126483 -k1,3123:31966992,22606917:20026492 -g1,3123:31966992,22606917 -) -] -) -] -r1,3202:32583029,23323224:26214,17462343,0 -) -] -) -) -g1,3124:32583029,22733400 -) -h1,3124:6630773,23349438:0,0,0 -(1,3127:6630773,24706317:25952256,513147,134348 -h1,3126:6630773,24706317:983040,0,0 -k1,3126:8244983,24706317:143582 -k1,3126:11127371,24706317:143638 -k1,3126:14345303,24706317:143638 -k1,3126:15298310,24706317:143637 -k1,3126:17750126,24706317:143638 -k1,3126:18425260,24706317:143637 -k1,3126:20829235,24706317:143638 -k1,3126:22611928,24706317:143638 -k1,3126:24023031,24706317:143637 -k1,3126:24937372,24706317:143638 -k1,3126:28342736,24706317:143637 -k1,3126:29169259,24706317:143638 -k1,3126:32583029,24706317:0 -) -(1,3127:6630773,25547805:25952256,505283,126483 -g1,3126:8742998,25547805 -g1,3126:10138914,25547805 -g1,3126:11939843,25547805 -g1,3126:13987187,25547805 -g1,3126:17170926,25547805 -g1,3126:17901652,25547805 -g1,3126:18752309,25547805 -g1,3126:20044023,25547805 -(1,3126:20044023,25547805:0,452978,115847 -r1,3202:22160848,25547805:2116825,568825,115847 -k1,3126:20044023,25547805:-2116825 -) -(1,3126:20044023,25547805:2116825,452978,115847 -k1,3126:20044023,25547805:3277 -h1,3126:22157571,25547805:0,411205,112570 -) -k1,3127:32583029,25547805:10248511 -g1,3127:32583029,25547805 -) -v1,3129:6630773,26729374:0,393216,0 -(1,3143:6630773,30464157:25952256,4127999,196608 -g1,3143:6630773,30464157 -g1,3143:6630773,30464157 -g1,3143:6434165,30464157 -(1,3143:6434165,30464157:0,4127999,196608 -r1,3202:32779637,30464157:26345472,4324607,196608 -k1,3143:6434165,30464157:-26345472 -) -(1,3143:6434165,30464157:26345472,4127999,196608 -[1,3143:6630773,30464157:25952256,3931391,0 -(1,3131:6630773,26936992:25952256,404226,101187 -(1,3130:6630773,26936992:0,0,0 -g1,3130:6630773,26936992 -g1,3130:6630773,26936992 -g1,3130:6303093,26936992 -(1,3130:6303093,26936992:0,0,0 -) -g1,3130:6630773,26936992 -) -g1,3131:9792230,26936992 -g1,3131:10740668,26936992 -g1,3131:12637543,26936992 -g1,3131:13585981,26936992 -g1,3131:14850564,26936992 -g1,3131:15799002,26936992 -h1,3131:16431294,26936992:0,0,0 -k1,3131:32583029,26936992:16151735 -g1,3131:32583029,26936992 -) -(1,3132:6630773,27603170:25952256,404226,101187 -h1,3132:6630773,27603170:0,0,0 -k1,3132:6630773,27603170:0 -h1,3132:11372958,27603170:0,0,0 -k1,3132:32583030,27603170:21210072 -g1,3132:32583030,27603170 -) -(1,3136:6630773,28334884:25952256,404226,76021 -(1,3134:6630773,28334884:0,0,0 -g1,3134:6630773,28334884 -g1,3134:6630773,28334884 -g1,3134:6303093,28334884 -(1,3134:6303093,28334884:0,0,0 -) -g1,3134:6630773,28334884 -) -g1,3136:7579210,28334884 -g1,3136:8843793,28334884 -g1,3136:9159939,28334884 -g1,3136:9792231,28334884 -g1,3136:10108377,28334884 -g1,3136:10740669,28334884 -g1,3136:11056815,28334884 -g1,3136:11689107,28334884 -g1,3136:12637544,28334884 -h1,3136:13269835,28334884:0,0,0 -k1,3136:32583029,28334884:19313194 -g1,3136:32583029,28334884 -) -(1,3138:6630773,29656422:25952256,404226,107478 -(1,3137:6630773,29656422:0,0,0 -g1,3137:6630773,29656422 -g1,3137:6630773,29656422 -g1,3137:6303093,29656422 -(1,3137:6303093,29656422:0,0,0 -) -g1,3137:6630773,29656422 -) -k1,3138:6630773,29656422:0 -g1,3138:11689105,29656422 -g1,3138:15166708,29656422 -g1,3138:15799000,29656422 -h1,3138:17379729,29656422:0,0,0 -k1,3138:32583029,29656422:15203300 -g1,3138:32583029,29656422 -) -(1,3142:6630773,30388136:25952256,404226,76021 -(1,3140:6630773,30388136:0,0,0 -g1,3140:6630773,30388136 -g1,3140:6630773,30388136 -g1,3140:6303093,30388136 -(1,3140:6303093,30388136:0,0,0 -) -g1,3140:6630773,30388136 -) -g1,3142:7579210,30388136 -g1,3142:8843793,30388136 -g1,3142:9792230,30388136 -g1,3142:10740667,30388136 -g1,3142:11056813,30388136 -g1,3142:11689105,30388136 -g1,3142:12005251,30388136 -g1,3142:12637543,30388136 -g1,3142:12953689,30388136 -h1,3142:13269835,30388136:0,0,0 -k1,3142:32583029,30388136:19313194 -g1,3142:32583029,30388136 -) -] -) -g1,3143:32583029,30464157 -g1,3143:6630773,30464157 -g1,3143:6630773,30464157 -g1,3143:32583029,30464157 -g1,3143:32583029,30464157 -) -h1,3143:6630773,30660765:0,0,0 -(1,3147:6630773,32017643:25952256,513147,134348 -h1,3146:6630773,32017643:983040,0,0 -k1,3146:8743186,32017643:226942 -k1,3146:11434281,32017643:226941 -k1,3146:12899198,32017643:226942 -k1,3146:13785432,32017643:226942 -k1,3146:16272711,32017643:226942 -k1,3146:16855512,32017643:226941 -k1,3146:19234001,32017643:226942 -k1,3146:22104665,32017643:226942 -k1,3146:24186275,32017643:226941 -k1,3146:25222587,32017643:226942 -k1,3146:25805389,32017643:226942 -k1,3146:28794674,32017643:226942 -k1,3146:31173162,32017643:226941 -k1,3146:31931601,32017643:226942 -k1,3146:32583029,32017643:0 -) -(1,3147:6630773,32859131:25952256,513147,134348 -k1,3146:9601284,32859131:238315 -k1,3146:11233549,32859131:238314 -(1,3146:11233549,32859131:0,452978,115847 -r1,3202:13702086,32859131:2468537,568825,115847 -k1,3146:11233549,32859131:-2468537 -) -(1,3146:11233549,32859131:2468537,452978,115847 -k1,3146:11233549,32859131:3277 -h1,3146:13698809,32859131:0,411205,112570 -) -k1,3146:13940401,32859131:238315 -k1,3146:14534575,32859131:238314 -k1,3146:16750767,32859131:238315 -k1,3146:17648373,32859131:238314 -k1,3146:21067806,32859131:238315 -k1,3146:23732918,32859131:238314 -k1,3146:25255739,32859131:238315 -k1,3146:26598335,32859131:238314 -k1,3146:27584416,32859131:238315 -k1,3146:29335956,32859131:238314 -k1,3146:30225699,32859131:238315 -k1,3146:32583029,32859131:0 -) -(1,3147:6630773,33700619:25952256,505283,134348 -g1,3146:7849087,33700619 -k1,3147:32583028,33700619:21830696 -g1,3147:32583028,33700619 -) -v1,3149:6630773,34882188:0,393216,0 -(1,3169:6630773,40695389:25952256,6206417,196608 -g1,3169:6630773,40695389 -g1,3169:6630773,40695389 -g1,3169:6434165,40695389 -(1,3169:6434165,40695389:0,6206417,196608 -r1,3202:32779637,40695389:26345472,6403025,196608 -k1,3169:6434165,40695389:-26345472 -) -(1,3169:6434165,40695389:26345472,6206417,196608 -[1,3169:6630773,40695389:25952256,6009809,0 -(1,3151:6630773,35089806:25952256,404226,101187 -(1,3150:6630773,35089806:0,0,0 -g1,3150:6630773,35089806 -g1,3150:6630773,35089806 -g1,3150:6303093,35089806 -(1,3150:6303093,35089806:0,0,0 -) -g1,3150:6630773,35089806 -) -k1,3151:6630773,35089806:0 -h1,3151:11689103,35089806:0,0,0 -k1,3151:32583029,35089806:20893926 -g1,3151:32583029,35089806 -) -(1,3155:6630773,35821520:25952256,404226,76021 -(1,3153:6630773,35821520:0,0,0 -g1,3153:6630773,35821520 -g1,3153:6630773,35821520 -g1,3153:6303093,35821520 -(1,3153:6303093,35821520:0,0,0 -) -g1,3153:6630773,35821520 -) -g1,3155:7579210,35821520 -g1,3155:8843793,35821520 -g1,3155:9476085,35821520 -g1,3155:10108377,35821520 -g1,3155:10740669,35821520 -g1,3155:11372961,35821520 -h1,3155:11689107,35821520:0,0,0 -k1,3155:32583029,35821520:20893922 -g1,3155:32583029,35821520 -) -(1,3157:6630773,37143058:25952256,404226,101187 -(1,3156:6630773,37143058:0,0,0 -g1,3156:6630773,37143058 -g1,3156:6630773,37143058 -g1,3156:6303093,37143058 -(1,3156:6303093,37143058:0,0,0 -) -g1,3156:6630773,37143058 -) -k1,3157:6630773,37143058:0 -h1,3157:15166706,37143058:0,0,0 -k1,3157:32583030,37143058:17416324 -g1,3157:32583030,37143058 -) -(1,3161:6630773,37874772:25952256,404226,76021 -(1,3159:6630773,37874772:0,0,0 -g1,3159:6630773,37874772 -g1,3159:6630773,37874772 -g1,3159:6303093,37874772 -(1,3159:6303093,37874772:0,0,0 -) -g1,3159:6630773,37874772 -) -g1,3161:7579210,37874772 -g1,3161:8843793,37874772 -g1,3161:9159939,37874772 -g1,3161:9792231,37874772 -g1,3161:10108377,37874772 -g1,3161:10740669,37874772 -g1,3161:11056815,37874772 -g1,3161:11689107,37874772 -g1,3161:12637544,37874772 -h1,3161:13269835,37874772:0,0,0 -k1,3161:32583029,37874772:19313194 -g1,3161:32583029,37874772 -) -(1,3163:6630773,39196310:25952256,404226,101187 -(1,3162:6630773,39196310:0,0,0 -g1,3162:6630773,39196310 -g1,3162:6630773,39196310 -g1,3162:6303093,39196310 -(1,3162:6303093,39196310:0,0,0 -) -g1,3162:6630773,39196310 -) -g1,3163:11372959,39196310 -g1,3163:12321397,39196310 -g1,3163:14850564,39196310 -g1,3163:16747439,39196310 -g1,3163:18328168,39196310 -g1,3163:20225043,39196310 -h1,3163:21489626,39196310:0,0,0 -k1,3163:32583029,39196310:11093403 -g1,3163:32583029,39196310 -) -(1,3164:6630773,39862488:25952256,404226,101187 -h1,3164:6630773,39862488:0,0,0 -k1,3164:6630773,39862488:0 -h1,3164:16747434,39862488:0,0,0 -k1,3164:32583029,39862488:15835595 -g1,3164:32583029,39862488 -) -(1,3168:6630773,40594202:25952256,404226,101187 -(1,3166:6630773,40594202:0,0,0 -g1,3166:6630773,40594202 -g1,3166:6630773,40594202 -g1,3166:6303093,40594202 -(1,3166:6303093,40594202:0,0,0 -) -g1,3166:6630773,40594202 -) -g1,3168:7579210,40594202 -g1,3168:8843793,40594202 -g1,3168:10424522,40594202 -g1,3168:12005251,40594202 -g1,3168:13269834,40594202 -g1,3168:13585980,40594202 -g1,3168:15166709,40594202 -h1,3168:16115146,40594202:0,0,0 -k1,3168:32583029,40594202:16467883 -g1,3168:32583029,40594202 -) -] -) -g1,3169:32583029,40695389 -g1,3169:6630773,40695389 -g1,3169:6630773,40695389 -g1,3169:32583029,40695389 -g1,3169:32583029,40695389 -) -h1,3169:6630773,40891997:0,0,0 -v1,3173:6630773,42764267:0,393216,0 -(1,3202:6630773,45116945:25952256,2745894,589824 -g1,3202:6630773,45116945 -(1,3202:6630773,45116945:25952256,2745894,589824 -(1,3202:6630773,45706769:25952256,3335718,0 -[1,3202:6630773,45706769:25952256,3335718,0 -(1,3202:6630773,45706769:25952256,3309504,0 -r1,3202:6656987,45706769:26214,3309504,0 -[1,3202:6656987,45706769:25899828,3309504,0 -(1,3202:6656987,45116945:25899828,2129856,0 -[1,3202:7246811,45116945:24720180,2129856,0 -(1,3174:7246811,44148974:24720180,1161885,196608 -(1,3173:7246811,44148974:0,1161885,196608 -r1,3202:8794447,44148974:1547636,1358493,196608 -k1,3173:7246811,44148974:-1547636 -) -(1,3173:7246811,44148974:1547636,1161885,196608 -) -k1,3173:8928543,44148974:134096 -k1,3173:9550162,44148974:134031 -k1,3173:12360747,44148974:134095 -k1,3173:14476652,44148974:134096 -k1,3173:15262176,44148974:134096 -k1,3173:17656608,44148974:134095 -k1,3173:19075210,44148974:134096 -k1,3173:20077658,44148974:134096 -k1,3173:21548687,44148974:134095 -k1,3173:22984328,44148974:134096 -k1,3173:23649921,44148974:134096 -k1,3173:26588958,44148974:134096 -k1,3173:28053434,44148974:134095 -k1,3173:29939307,44148974:134096 -k1,3173:31966991,44148974:0 -) -(1,3174:7246811,44990462:24720180,513147,126483 -k1,3173:8182196,44990462:276093 -k1,3173:9909911,44990462:276093 -k1,3173:11866347,44990462:276093 -k1,3173:13134000,44990462:276093 -k1,3173:15815920,44990462:276093 -k1,3173:16708051,44990462:276093 -k1,3173:17340004,44990462:276093 -k1,3173:19767644,44990462:276093 -k1,3173:20997286,44990462:276093 -k1,3173:22803645,44990462:276093 -k1,3173:23731166,44990462:276093 -k1,3173:25099744,44990462:276093 -k1,3173:26548276,44990462:276093 -k1,3173:29850166,44990462:276093 -(1,3173:29850166,44990462:0,452978,115847 -r1,3202:31966991,44990462:2116825,568825,115847 -k1,3173:29850166,44990462:-2116825 -) -(1,3173:29850166,44990462:2116825,452978,115847 -k1,3173:29850166,44990462:3277 -h1,3173:31963714,44990462:0,411205,112570 -) -k1,3173:31966991,44990462:0 -) -] -) -] -r1,3202:32583029,45706769:26214,3309504,0 -) -] -) -) -g1,3202:32583029,45116945 -) -] -(1,3202:32583029,45706769:0,0,0 -g1,3202:32583029,45706769 -) -) -] -(1,3202:6630773,47279633:25952256,0,0 -h1,3202:6630773,47279633:25952256,0,0 -) -] -(1,3202:4262630,4025873:0,0,0 -[1,3202:-473656,4025873:0,0,0 -(1,3202:-473656,-710413:0,0,0 -(1,3202:-473656,-710413:0,0,0 -g1,3202:-473656,-710413 -) -g1,3202:-473656,-710413 -) -] -) -] -!22568 -}65 -Input:509:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:510:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:511:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:512:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:513:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:514:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:515:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:516:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:517:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:518:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:519:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1012 -{66 -[1,3251:4262630,47279633:28320399,43253760,0 -(1,3251:4262630,4025873:0,0,0 -[1,3251:-473656,4025873:0,0,0 -(1,3251:-473656,-710413:0,0,0 -(1,3251:-473656,-644877:0,0,0 -k1,3251:-473656,-644877:-65536 -) -(1,3251:-473656,4736287:0,0,0 -k1,3251:-473656,4736287:5209943 -) -g1,3251:-473656,-710413 -) -] -) -[1,3251:6630773,47279633:25952256,43253760,0 -[1,3251:6630773,4812305:25952256,786432,0 -(1,3251:6630773,4812305:25952256,505283,126483 -(1,3251:6630773,4812305:25952256,505283,126483 -g1,3251:3078558,4812305 -[1,3251:3078558,4812305:0,0,0 -(1,3251:3078558,2439708:0,1703936,0 -k1,3251:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,3251:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,3251:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,3251:3078558,4812305:0,0,0 -(1,3251:3078558,2439708:0,1703936,0 -g1,3251:29030814,2439708 -g1,3251:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,3251:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,3251:37855564,2439708:1179648,16384,0 -) -) -k1,3251:3078556,2439708:-34777008 -) -] -[1,3251:3078558,4812305:0,0,0 -(1,3251:3078558,49800853:0,16384,2228224 -k1,3251:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,3251:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,3251:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,3251:3078558,4812305:0,0,0 -(1,3251:3078558,49800853:0,16384,2228224 -g1,3251:29030814,49800853 -g1,3251:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,3251:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,3251:37855564,49800853:1179648,16384,0 -) -) -k1,3251:3078556,49800853:-34777008 -) -] -g1,3251:6630773,4812305 -g1,3251:6630773,4812305 -g1,3251:9472414,4812305 -g1,3251:10882093,4812305 -g1,3251:16529985,4812305 -g1,3251:18796220,4812305 -k1,3251:31786111,4812305:12989891 -) -) -] -[1,3251:6630773,45706769:25952256,40108032,0 -(1,3251:6630773,45706769:25952256,40108032,0 -(1,3251:6630773,45706769:0,0,0 -g1,3251:6630773,45706769 -) -[1,3251:6630773,45706769:25952256,40108032,0 -v1,3202:6630773,6254097:0,393216,0 -(1,3202:6630773,21202473:25952256,15341592,616038 -g1,3202:6630773,21202473 -(1,3202:6630773,21202473:25952256,15341592,616038 -(1,3202:6630773,21818511:25952256,15957630,0 -[1,3202:6630773,21818511:25952256,15957630,0 -(1,3202:6630773,21792297:25952256,15931416,0 -r1,3251:6656987,21792297:26214,15931416,0 -[1,3202:6656987,21792297:25899828,15931416,0 -(1,3202:6656987,21202473:25899828,14751768,0 -[1,3202:7246811,21202473:24720180,14751768,0 -(1,3174:7246811,6963852:24720180,513147,134348 -k1,3173:8622770,6963852:184514 -(1,3173:8622770,6963852:0,452978,115847 -r1,3251:10387883,6963852:1765113,568825,115847 -k1,3173:8622770,6963852:-1765113 -) -(1,3173:8622770,6963852:1765113,452978,115847 -k1,3173:8622770,6963852:3277 -h1,3173:10384606,6963852:0,411205,112570 -) -k1,3173:10572398,6963852:184515 -k1,3173:10572398,6963852:0 -k1,3173:10930582,6963852:184514 -k1,3173:12311784,6963852:184515 -k1,3173:14737629,6963852:184514 -k1,3173:15581436,6963852:184515 -k1,3173:17462677,6963852:184514 -k1,3173:20672989,6963852:184515 -k1,3173:23975706,6963852:184514 -k1,3173:25294649,6963852:184515 -k1,3173:27463593,6963852:184514 -k1,3173:28334270,6963852:184515 -k1,3173:30032010,6963852:184514 -k1,3173:30832563,6963852:184515 -k1,3173:31966991,6963852:0 -) -(1,3174:7246811,7805340:24720180,513147,134348 -k1,3173:9374628,7805340:144698 -k1,3173:12364243,7805340:144698 -k1,3173:13456592,7805340:144698 -k1,3173:15486761,7805340:144698 -k1,3173:16468354,7805340:144698 -k1,3173:17144549,7805340:144698 -k1,3173:18059951,7805340:144699 -k1,3173:22352423,7805340:144698 -k1,3173:22984655,7805340:144644 -k1,3173:24265092,7805340:144698 -k1,3173:24941287,7805340:144698 -k1,3173:25441845,7805340:144698 -k1,3173:27431381,7805340:144698 -k1,3173:28235371,7805340:144698 -k1,3173:31966991,7805340:0 -) -(1,3174:7246811,8646828:24720180,513147,134348 -k1,3173:10134748,8646828:151154 -k1,3173:12470217,8646828:151154 -k1,3173:13439260,8646828:151154 -k1,3173:14609500,8646828:151155 -k1,3173:17625888,8646828:151154 -k1,3173:18308539,8646828:151154 -k1,3173:19111121,8646828:151154 -k1,3173:21076967,8646828:151154 -k1,3173:22247206,8646828:151154 -k1,3173:24884141,8646828:151154 -k1,3173:25694588,8646828:151155 -k1,3173:27873426,8646828:151154 -k1,3173:28683872,8646828:151154 -k1,3173:30286648,8646828:151154 -k1,3173:31966991,8646828:0 -) -(1,3174:7246811,9488316:24720180,513147,126483 -g1,3173:10025537,9488316 -g1,3173:11093118,9488316 -g1,3173:12822613,9488316 -g1,3173:14327975,9488316 -g1,3173:15178632,9488316 -g1,3173:16647949,9488316 -g1,3173:17866263,9488316 -k1,3174:31966991,9488316:11949181 -g1,3174:31966991,9488316 -) -v1,3176:7246811,10678782:0,393216,0 -(1,3198:7246811,17830630:24720180,7545064,196608 -g1,3198:7246811,17830630 -g1,3198:7246811,17830630 -g1,3198:7050203,17830630 -(1,3198:7050203,17830630:0,7545064,196608 -r1,3251:32163599,17830630:25113396,7741672,196608 -k1,3198:7050203,17830630:-25113396 -) -(1,3198:7050203,17830630:25113396,7545064,196608 -[1,3198:7246811,17830630:24720180,7348456,0 -(1,3178:7246811,10886400:24720180,404226,101187 -(1,3177:7246811,10886400:0,0,0 -g1,3177:7246811,10886400 -g1,3177:7246811,10886400 -g1,3177:6919131,10886400 -(1,3177:6919131,10886400:0,0,0 -) -g1,3177:7246811,10886400 -) -g1,3178:10724414,10886400 -g1,3178:11672852,10886400 -k1,3178:11672852,10886400:0 -h1,3178:21789517,10886400:0,0,0 -k1,3178:31966991,10886400:10177474 -g1,3178:31966991,10886400 -) -(1,3179:7246811,11552578:24720180,404226,101187 -h1,3179:7246811,11552578:0,0,0 -h1,3179:10408268,11552578:0,0,0 -k1,3179:31966992,11552578:21558724 -g1,3179:31966992,11552578 -) -(1,3183:7246811,12284292:24720180,404226,107478 -(1,3181:7246811,12284292:0,0,0 -g1,3181:7246811,12284292 -g1,3181:7246811,12284292 -g1,3181:6919131,12284292 -(1,3181:6919131,12284292:0,0,0 -) -g1,3181:7246811,12284292 -) -g1,3183:8195248,12284292 -g1,3183:9459831,12284292 -g1,3183:10724414,12284292 -g1,3183:11988997,12284292 -g1,3183:13253580,12284292 -g1,3183:14518163,12284292 -g1,3183:15782746,12284292 -g1,3183:17047329,12284292 -g1,3183:18311912,12284292 -g1,3183:19576495,12284292 -h1,3183:20524932,12284292:0,0,0 -k1,3183:31966991,12284292:11442059 -g1,3183:31966991,12284292 -) -(1,3185:7246811,13605830:24720180,404226,101187 -(1,3184:7246811,13605830:0,0,0 -g1,3184:7246811,13605830 -g1,3184:7246811,13605830 -g1,3184:6919131,13605830 -(1,3184:6919131,13605830:0,0,0 -) -g1,3184:7246811,13605830 -) -k1,3185:7246811,13605830:0 -h1,3185:12305142,13605830:0,0,0 -k1,3185:31966990,13605830:19661848 -g1,3185:31966990,13605830 -) -(1,3189:7246811,14337544:24720180,404226,107478 -(1,3187:7246811,14337544:0,0,0 -g1,3187:7246811,14337544 -g1,3187:7246811,14337544 -g1,3187:6919131,14337544 -(1,3187:6919131,14337544:0,0,0 -) -g1,3187:7246811,14337544 -) -g1,3189:8195248,14337544 -g1,3189:9459831,14337544 -g1,3189:10724414,14337544 -g1,3189:11988997,14337544 -g1,3189:13253580,14337544 -g1,3189:14518163,14337544 -g1,3189:15782746,14337544 -g1,3189:17047329,14337544 -g1,3189:18311912,14337544 -g1,3189:19576495,14337544 -h1,3189:20524932,14337544:0,0,0 -k1,3189:31966991,14337544:11442059 -g1,3189:31966991,14337544 -) -(1,3191:7246811,15659082:24720180,404226,101187 -(1,3190:7246811,15659082:0,0,0 -g1,3190:7246811,15659082 -g1,3190:7246811,15659082 -g1,3190:6919131,15659082 -(1,3190:6919131,15659082:0,0,0 -) -g1,3190:7246811,15659082 -) -k1,3191:7246811,15659082:0 -k1,3191:7246811,15659082:0 -h1,3191:13885871,15659082:0,0,0 -k1,3191:31966991,15659082:18081120 -g1,3191:31966991,15659082 -) -(1,3197:7246811,16390796:24720180,404226,107478 -(1,3193:7246811,16390796:0,0,0 -g1,3193:7246811,16390796 -g1,3193:7246811,16390796 -g1,3193:6919131,16390796 -(1,3193:6919131,16390796:0,0,0 -) -g1,3193:7246811,16390796 -) -g1,3197:8195248,16390796 -g1,3197:9459831,16390796 -g1,3197:11672851,16390796 -h1,3197:14202016,16390796:0,0,0 -k1,3197:31966992,16390796:17764976 -g1,3197:31966992,16390796 -) -(1,3197:7246811,17056974:24720180,404226,107478 -h1,3197:7246811,17056974:0,0,0 -g1,3197:8195248,17056974 -g1,3197:8511394,17056974 -g1,3197:8827540,17056974 -g1,3197:11672851,17056974 -g1,3197:12937434,17056974 -g1,3197:14834308,17056974 -g1,3197:15466600,17056974 -g1,3197:16098892,17056974 -g1,3197:16731184,17056974 -g1,3197:17363476,17056974 -g1,3197:17995768,17056974 -h1,3197:18311914,17056974:0,0,0 -k1,3197:31966991,17056974:13655077 -g1,3197:31966991,17056974 -) -(1,3197:7246811,17723152:24720180,404226,107478 -h1,3197:7246811,17723152:0,0,0 -g1,3197:8195248,17723152 -g1,3197:8511394,17723152 -g1,3197:8827540,17723152 -g1,3197:11040560,17723152 -g1,3197:11672852,17723152 -g1,3197:12937435,17723152 -g1,3197:14834309,17723152 -g1,3197:16098892,17723152 -g1,3197:17363475,17723152 -g1,3197:18628058,17723152 -g1,3197:19892641,17723152 -g1,3197:21157224,17723152 -h1,3197:22105661,17723152:0,0,0 -k1,3197:31966991,17723152:9861330 -g1,3197:31966991,17723152 -) -] -) -g1,3198:31966991,17830630 -g1,3198:7246811,17830630 -g1,3198:7246811,17830630 -g1,3198:31966991,17830630 -g1,3198:31966991,17830630 -) -h1,3198:7246811,18027238:0,0,0 -(1,3202:7246811,19393014:24720180,513147,126483 -h1,3201:7246811,19393014:983040,0,0 -k1,3201:9597915,19393014:171377 -k1,3201:12010622,19393014:171376 -k1,3201:13373444,19393014:171377 -k1,3201:15126859,19393014:171376 -k1,3201:18814898,19393014:171377 -k1,3201:19977834,19393014:171376 -k1,3201:21524812,19393014:171377 -k1,3201:22347617,19393014:171377 -k1,3201:26552079,19393014:171376 -k1,3201:27742541,19393014:171377 -k1,3201:29684700,19393014:171376 -k1,3201:30515369,19393014:171377 -k1,3201:31966991,19393014:0 -) -(1,3202:7246811,20234502:24720180,513147,126483 -k1,3201:8974995,20234502:199229 -k1,3201:10370912,20234502:199230 -k1,3201:11718332,20234502:199229 -k1,3201:15103921,20234502:199229 -k1,3201:16725938,20234502:199230 -k1,3201:19042635,20234502:199229 -k1,3201:21937360,20234502:199229 -k1,3201:23566586,20234502:199230 -k1,3201:24417243,20234502:199229 -k1,3201:27404374,20234502:199229 -k1,3201:28622689,20234502:199230 -k1,3201:31307699,20234502:199229 -k1,3201:31966991,20234502:0 -) -(1,3202:7246811,21075990:24720180,513147,126483 -g1,3201:9473724,21075990 -g1,3201:10332245,21075990 -g1,3201:11983096,21075990 -g1,3201:13862668,21075990 -g1,3201:14677935,21075990 -g1,3201:15896249,21075990 -k1,3202:31966991,21075990:13919195 -g1,3202:31966991,21075990 -) -] -) -] -r1,3251:32583029,21792297:26214,15931416,0 -) -] -) -) -g1,3202:32583029,21202473 -) -h1,3202:6630773,21818511:0,0,0 -(1,3208:6630773,25140836:25952256,32768,229376 -(1,3208:6630773,25140836:0,32768,229376 -(1,3208:6630773,25140836:5505024,32768,229376 -r1,3251:12135797,25140836:5505024,262144,229376 -) -k1,3208:6630773,25140836:-5505024 -) -(1,3208:6630773,25140836:25952256,32768,0 -r1,3251:32583029,25140836:25952256,32768,0 -) -) -(1,3208:6630773,26745164:25952256,606339,151780 -(1,3208:6630773,26745164:2464678,582746,0 -g1,3208:6630773,26745164 -g1,3208:9095451,26745164 -) -g1,3208:12693378,26745164 -g1,3208:14403081,26745164 -g1,3208:21585565,26745164 -k1,3208:32583029,26745164:8469871 -g1,3208:32583029,26745164 -) -(1,3212:6630773,27979868:25952256,505283,134348 -k1,3211:9243740,27979868:203864 -k1,3211:10922818,27979868:203863 -k1,3211:11482542,27979868:203864 -k1,3211:13559425,27979868:203864 -k1,3211:17281917,27979868:203864 -k1,3211:18850895,27979868:203863 -k1,3211:19740921,27979868:203864 -k1,3211:20813137,27979868:203864 -k1,3211:22224173,27979868:203863 -k1,3211:24457032,27979868:203864 -k1,3211:25529248,27979868:203864 -k1,3211:26837394,27979868:203864 -k1,3211:28857260,27979868:203863 -k1,3211:30569763,27979868:203864 -k1,3211:32583029,27979868:0 -) -(1,3212:6630773,28821356:25952256,505283,126483 -k1,3211:8241150,28821356:216426 -k1,3211:10911899,28821356:216426 -(1,3211:10911899,28821356:0,452978,122846 -r1,3251:13732148,28821356:2820249,575824,122846 -k1,3211:10911899,28821356:-2820249 -) -(1,3211:10911899,28821356:2820249,452978,122846 -k1,3211:10911899,28821356:3277 -h1,3211:13728871,28821356:0,411205,112570 -) -k1,3211:14122244,28821356:216426 -k1,3211:17015816,28821356:216426 -k1,3211:18707457,28821356:216426 -k1,3211:20096323,28821356:216427 -k1,3211:24161678,28821356:216426 -k1,3211:26263575,28821356:216426 -k1,3211:27584283,28821356:216426 -k1,3211:28548475,28821356:216426 -k1,3211:31189078,28821356:216426 -k1,3212:32583029,28821356:0 -) -(1,3212:6630773,29662844:25952256,513147,126483 -(1,3211:6630773,29662844:0,452978,115847 -r1,3251:8395886,29662844:1765113,568825,115847 -k1,3211:6630773,29662844:-1765113 -) -(1,3211:6630773,29662844:1765113,452978,115847 -k1,3211:6630773,29662844:3277 -h1,3211:8392609,29662844:0,411205,112570 -) -k1,3211:8736189,29662844:166633 -(1,3211:8736189,29662844:0,452978,115847 -r1,3251:10853014,29662844:2116825,568825,115847 -k1,3211:8736189,29662844:-2116825 -) -(1,3211:8736189,29662844:2116825,452978,115847 -k1,3211:8736189,29662844:3277 -h1,3211:10849737,29662844:0,411205,112570 -) -k1,3211:11019647,29662844:166633 -k1,3211:12377725,29662844:166633 -(1,3211:12377725,29662844:0,452978,115847 -r1,3251:14494550,29662844:2116825,568825,115847 -k1,3211:12377725,29662844:-2116825 -) -(1,3211:12377725,29662844:2116825,452978,115847 -k1,3211:12377725,29662844:3277 -h1,3211:14491273,29662844:0,411205,112570 -) -k1,3211:14834853,29662844:166633 -k1,3211:15416296,29662844:166600 -k1,3211:17562772,29662844:166633 -k1,3211:18833687,29662844:166633 -k1,3211:20475535,29662844:166633 -k1,3211:21773975,29662844:166633 -k1,3211:24426388,29662844:166632 -k1,3211:25252313,29662844:166633 -k1,3211:29267875,29662844:166633 -k1,3211:30901204,29662844:166633 -k1,3211:31423697,29662844:166633 -k1,3212:32583029,29662844:0 -) -(1,3212:6630773,30504332:25952256,505283,134348 -k1,3211:7725837,30504332:168385 -k1,3211:11412850,30504332:168385 -k1,3211:13466705,30504332:168384 -k1,3211:14739372,30504332:168385 -k1,3211:15655523,30504332:168385 -k1,3211:18248085,30504332:168385 -k1,3211:19810421,30504332:168385 -k1,3211:22433129,30504332:168385 -(1,3211:22433129,30504332:0,452978,115847 -r1,3251:24198242,30504332:1765113,568825,115847 -k1,3211:22433129,30504332:-1765113 -) -(1,3211:22433129,30504332:1765113,452978,115847 -k1,3211:22433129,30504332:3277 -h1,3211:24194965,30504332:0,411205,112570 -) -k1,3211:24540296,30504332:168384 -k1,3211:25526570,30504332:168385 -k1,3211:28533975,30504332:168385 -(1,3211:28533975,30504332:0,452978,115847 -r1,3251:32409359,30504332:3875384,568825,115847 -k1,3211:28533975,30504332:-3875384 -) -(1,3211:28533975,30504332:3875384,452978,115847 -k1,3211:28533975,30504332:3277 -h1,3211:32406082,30504332:0,411205,112570 -) -k1,3212:32583029,30504332:0 -) -(1,3212:6630773,31345820:25952256,505283,126483 -(1,3211:6630773,31345820:0,452978,115847 -r1,3251:10506157,31345820:3875384,568825,115847 -k1,3211:6630773,31345820:-3875384 -) -(1,3211:6630773,31345820:3875384,452978,115847 -k1,3211:6630773,31345820:3277 -h1,3211:10502880,31345820:0,411205,112570 -) -k1,3211:10689053,31345820:182896 -k1,3211:12063395,31345820:182897 -(1,3211:12063395,31345820:0,452978,115847 -r1,3251:15587067,31345820:3523672,568825,115847 -k1,3211:12063395,31345820:-3523672 -) -(1,3211:12063395,31345820:3523672,452978,115847 -k1,3211:12063395,31345820:3277 -h1,3211:15583790,31345820:0,411205,112570 -) -k1,3211:15769963,31345820:182896 -k1,3211:17057142,31345820:182897 -k1,3211:17987804,31345820:182896 -k1,3211:19683926,31345820:182896 -k1,3211:20518251,31345820:182897 -k1,3211:22517150,31345820:182896 -k1,3211:23719132,31345820:182897 -k1,3211:25630868,31345820:182896 -k1,3211:26441600,31345820:182897 -k1,3211:30947906,31345820:182896 -k1,3212:32583029,31345820:0 -) -(1,3212:6630773,32187308:25952256,513147,7863 -g1,3211:8097468,32187308 -g1,3211:8652557,32187308 -g1,3211:10939108,32187308 -g1,3211:11669834,32187308 -g1,3211:14471498,32187308 -g1,3211:15356889,32187308 -k1,3212:32583029,32187308:14910753 -g1,3212:32583029,32187308 -) -(1,3213:6630773,33028796:25952256,0,0 -h1,3213:6630773,33028796:983040,0,0 -k1,3213:32583029,33028796:24969216 -g1,3213:32583029,33028796 -) -(1,3223:12973545,35823943:13266712,2729611,2319311 -(1,3223:13491279,35922257:1295253,298648,5505 -) -g1,3223:14968592,35823943 -g1,3223:15718849,35823943 -(1,3223:15718849,35823943:10521408,2729611,2319311 -[1,3223:15718849,37979414:459407,4721242,0 -] -g1,3215:15850576,35823943 -[1,3222:15850576,35823943:10257954,2729611,2319311 -(1,3216:15850576,33683371:10257954,589039,252448 -g1,3216:15850576,33683371 -(1,3216:15850576,33683371:1933901,589039,252448 -r1,3251:15850576,33683371:0,841487,252448 -g1,3216:16178256,33683371 -k1,3216:16290880,33683371:112624 -$1,3216:16290880,33683371 -(1,3216:16753564,33781685:590610,334430,0 -) -$1,3216:17344174,33683371 -k1,3216:17456797,33683371:112623 -g1,3216:17784477,33683371 -) -g1,3216:17784477,33683371 -(1,3216:17784477,33683371:1933901,589039,252448 -g1,3216:18112157,33683371 -k1,3216:18224781,33683371:112624 -$1,3216:18224781,33683371 -(1,3216:18687465,33781685:590610,339935,0 -) -$1,3216:19278075,33683371 -k1,3216:19390698,33683371:112623 -g1,3216:19718378,33683371 -) -g1,3216:19718378,33683371 -(1,3216:19718378,33683371:1232732,589039,252448 -g1,3216:20046058,33683371 -g1,3216:20046058,33683371 -$1,3216:20046058,33683371 -$1,3216:20623430,33683371 -g1,3216:20623430,33683371 -g1,3216:20951110,33683371 -) -g1,3216:20951110,33683371 -(1,3216:20951110,33683371:1909129,589039,252448 -g1,3216:21278790,33683371 -k1,3216:21391414,33683371:112624 -$1,3216:21391414,33683371 -(1,3216:21854098,33781685:565838,346358,96797 -) -$1,3216:22419936,33683371 -k1,3216:22532559,33683371:112623 -g1,3216:22860239,33683371 -) -g1,3216:22860239,33683371 -(1,3216:22860239,33683371:1232732,589039,252448 -g1,3216:23187919,33683371 -g1,3216:23187919,33683371 -$1,3216:23187919,33683371 -$1,3216:23765291,33683371 -g1,3216:23765291,33683371 -g1,3216:24092971,33683371 -) -g1,3216:24092971,33683371 -(1,3216:24092971,33683371:2015559,589039,252448 -g1,3216:24420651,33683371 -k1,3216:24533275,33683371:112624 -$1,3216:24533275,33683371 -(1,3216:24995959,33781685:672268,334430,5505 -) -$1,3216:25668227,33683371 -$1,3216:25668227,33683371 -h1,3216:25668227,33683371:0,0,0 -$1,3216:25668227,33683371 -k1,3216:25780850,33683371:112623 -g1,3216:26108530,33683371 -) -g1,3216:26108530,33683371 -) -(1,3217:15850576,34524858:10257954,589039,252448 -g1,3217:15850576,34524858 -(1,3217:15850576,34524858:1933901,589039,252448 -r1,3251:15850576,34524858:0,841487,252448 -g1,3217:16178256,34524858 -k1,3217:16290880,34524858:112624 -$1,3217:16290880,34524858 -(1,3217:16753564,34623172:590610,339935,0 -) -$1,3217:17344174,34524858 -k1,3217:17456797,34524858:112623 -g1,3217:17784477,34524858 -) -g1,3217:17784477,34524858 -(1,3217:17784477,34524858:1933901,589039,252448 -g1,3217:18112157,34524858 -k1,3217:18224781,34524858:112624 -$1,3217:18224781,34524858 -(1,3217:18687465,34623172:590610,339935,0 -) -$1,3217:19278075,34524858 -k1,3217:19390698,34524858:112623 -g1,3217:19718378,34524858 -) -g1,3217:19718378,34524858 -(1,3217:19718378,34524858:1232732,589039,252448 -g1,3217:20046058,34524858 -g1,3217:20046058,34524858 -$1,3217:20046058,34524858 -$1,3217:20623430,34524858 -g1,3217:20623430,34524858 -g1,3217:20951110,34524858 -) -g1,3217:20951110,34524858 -(1,3217:20951110,34524858:1909129,589039,252448 -g1,3217:21278790,34524858 -k1,3217:21391414,34524858:112624 -$1,3217:21391414,34524858 -(1,3217:21854098,34623172:565838,346358,96797 -) -$1,3217:22419936,34524858 -k1,3217:22532559,34524858:112623 -g1,3217:22860239,34524858 -) -g1,3217:22860239,34524858 -(1,3217:22860239,34524858:1232732,589039,252448 -g1,3217:23187919,34524858 -g1,3217:23187919,34524858 -$1,3217:23187919,34524858 -$1,3217:23765291,34524858 -g1,3217:23765291,34524858 -g1,3217:24092971,34524858 -) -g1,3217:24092971,34524858 -(1,3217:24092971,34524858:2015559,589039,252448 -g1,3217:24420651,34524858 -k1,3217:24533275,34524858:112624 -$1,3217:24533275,34524858 -(1,3217:24995959,34623172:672268,339935,5505 -) -$1,3217:25668227,34524858 -$1,3217:25668227,34524858 -h1,3217:25668227,34524858:0,0,0 -$1,3217:25668227,34524858 -k1,3217:25780850,34524858:112623 -g1,3217:26108530,34524858 -) -g1,3217:26108530,34524858 -) -(1,3218:15850576,35366345:10257954,589039,252448 -g1,3218:15850576,35366345 -(1,3218:15850576,35366345:1933901,589039,252448 -r1,3251:15850576,35366345:0,841487,252448 -g1,3218:16178256,35366345 -k1,3218:16528841,35366345:350585 -$1,3218:16528841,35366345 -$1,3218:17106213,35366345 -k1,3218:17456797,35366345:350584 -g1,3218:17784477,35366345 -) -g1,3218:17784477,35366345 -(1,3218:17784477,35366345:1933901,589039,252448 -g1,3218:18112157,35366345 -k1,3218:18462742,35366345:350585 -$1,3218:18462742,35366345 -$1,3218:19040114,35366345 -k1,3218:19390698,35366345:350584 -g1,3218:19718378,35366345 -) -g1,3218:19718378,35366345 -(1,3218:19718378,35366345:1232732,589039,252448 -g1,3218:20046058,35366345 -k1,3218:20050646,35366345:4588 -$1,3218:20050646,35366345 -$1,3218:20618843,35366345 -k1,3218:20623430,35366345:4587 -g1,3218:20951110,35366345 -) -g1,3218:20951110,35366345 -(1,3218:20951110,35366345:1909129,589039,252448 -g1,3218:21278790,35366345 -k1,3218:21616989,35366345:338199 -$1,3218:21616989,35366345 -$1,3218:22194361,35366345 -k1,3218:22532559,35366345:338198 -g1,3218:22860239,35366345 -) -g1,3218:22860239,35366345 -(1,3218:22860239,35366345:1232732,589039,252448 -g1,3218:23187919,35366345 -k1,3218:23476605,35366345:288686 -$1,3218:23476605,35366345 -$1,3218:23476605,35366345 -k1,3218:23765291,35366345:288686 -g1,3218:24092971,35366345 -) -g1,3218:24092971,35366345 -(1,3218:24092971,35366345:2015559,589039,252448 -g1,3218:24420651,35366345 -k1,3218:24812065,35366345:391414 -$1,3218:24812065,35366345 -$1,3218:25389437,35366345 -$1,3218:25389437,35366345 -h1,3218:25389437,35366345:0,0,0 -$1,3218:25389437,35366345 -k1,3218:25780850,35366345:391413 -g1,3218:26108530,35366345 -) -g1,3218:26108530,35366345 -) -(1,3219:15850576,36207832:10257954,589039,252448 -g1,3219:15850576,36207832 -(1,3219:15850576,36207832:1933901,589039,252448 -r1,3251:15850576,36207832:0,841487,252448 -g1,3219:16178256,36207832 -k1,3219:16330103,36207832:151847 -$1,3219:16330103,36207832 -(1,3219:16792787,36306146:512164,346358,5505 -) -$1,3219:17304951,36207832 -k1,3219:17456797,36207832:151846 -g1,3219:17784477,36207832 -) -g1,3219:17784477,36207832 -(1,3219:17784477,36207832:1933901,589039,252448 -g1,3219:18112157,36207832 -k1,3219:18264004,36207832:151847 -$1,3219:18264004,36207832 -(1,3219:18726688,36306146:512164,346358,5505 -) -$1,3219:19238852,36207832 -k1,3219:19390698,36207832:151846 -g1,3219:19718378,36207832 -) -g1,3219:19718378,36207832 -(1,3219:19718378,36207832:1232732,589039,252448 -g1,3219:20046058,36207832 -g1,3219:20046058,36207832 -$1,3219:20046058,36207832 -$1,3219:20623430,36207832 -g1,3219:20623430,36207832 -g1,3219:20951110,36207832 -) -g1,3219:20951110,36207832 -(1,3219:20951110,36207832:1909129,589039,252448 -g1,3219:21278790,36207832 -k1,3219:21430637,36207832:151847 -$1,3219:21430637,36207832 -(1,3219:21893321,36306146:487392,346358,96797 -) -$1,3219:22380713,36207832 -k1,3219:22532559,36207832:151846 -g1,3219:22860239,36207832 -) -g1,3219:22860239,36207832 -(1,3219:22860239,36207832:1232732,589039,252448 -g1,3219:23187919,36207832 -g1,3219:23187919,36207832 -$1,3219:23187919,36207832 -$1,3219:23765291,36207832 -g1,3219:23765291,36207832 -g1,3219:24092971,36207832 -) -g1,3219:24092971,36207832 -(1,3219:24092971,36207832:2015559,589039,252448 -g1,3219:24420651,36207832 -k1,3219:24572498,36207832:151847 -$1,3219:24572498,36207832 -(1,3219:25035182,36306146:593822,346358,5505 -) -$1,3219:25629004,36207832 -$1,3219:25629004,36207832 -h1,3219:25629004,36207832:0,0,0 -$1,3219:25629004,36207832 -k1,3219:25780850,36207832:151846 -g1,3219:26108530,36207832 -) -g1,3219:26108530,36207832 -) -(1,3220:15850576,37049319:10257954,589039,252448 -g1,3220:15850576,37049319 -(1,3220:15850576,37049319:1933901,589039,252448 -r1,3251:15850576,37049319:0,841487,252448 -g1,3220:16178256,37049319 -k1,3220:16528841,37049319:350585 -$1,3220:16528841,37049319 -$1,3220:17106213,37049319 -k1,3220:17456797,37049319:350584 -g1,3220:17784477,37049319 -) -g1,3220:17784477,37049319 -(1,3220:17784477,37049319:1933901,589039,252448 -g1,3220:18112157,37049319 -k1,3220:18462742,37049319:350585 -$1,3220:18462742,37049319 -$1,3220:19040114,37049319 -k1,3220:19390698,37049319:350584 -g1,3220:19718378,37049319 -) -g1,3220:19718378,37049319 -(1,3220:19718378,37049319:1232732,589039,252448 -g1,3220:20046058,37049319 -k1,3220:20334744,37049319:288686 -$1,3220:20334744,37049319 -$1,3220:20334744,37049319 -k1,3220:20623430,37049319:288686 -g1,3220:20951110,37049319 -) -g1,3220:20951110,37049319 -(1,3220:20951110,37049319:1909129,589039,252448 -g1,3220:21278790,37049319 -k1,3220:21616989,37049319:338199 -$1,3220:21616989,37049319 -$1,3220:22194361,37049319 -k1,3220:22532559,37049319:338198 -g1,3220:22860239,37049319 -) -g1,3220:22860239,37049319 -(1,3220:22860239,37049319:1232732,589039,252448 -g1,3220:23187919,37049319 -k1,3220:23192507,37049319:4588 -$1,3220:23192507,37049319 -$1,3220:23760704,37049319 -k1,3220:23765291,37049319:4587 -g1,3220:24092971,37049319 -) -g1,3220:24092971,37049319 -(1,3220:24092971,37049319:2015559,589039,252448 -g1,3220:24420651,37049319 -k1,3220:24812065,37049319:391414 -$1,3220:24812065,37049319 -$1,3220:25389437,37049319 -$1,3220:25389437,37049319 -h1,3220:25389437,37049319:0,0,0 -$1,3220:25389437,37049319 -k1,3220:25780850,37049319:391413 -g1,3220:26108530,37049319 -) -g1,3220:26108530,37049319 -) -(1,3222:15850576,37890806:10257954,589039,252448 -g1,3221:15850576,37890806 -(1,3221:15850576,37890806:1933901,589039,252448 -r1,3251:15850576,37890806:0,841487,252448 -g1,3221:16178256,37890806 -g1,3221:16178256,37890806 -$1,3221:16178256,37890806 -(1,3221:16640940,37989120:815857,334430,5505 -) -$1,3221:17456797,37890806 -g1,3221:17456797,37890806 -g1,3221:17784477,37890806 -) -g1,3221:17784477,37890806 -(1,3221:17784477,37890806:1933901,589039,252448 -g1,3221:18112157,37890806 -g1,3221:18112157,37890806 -$1,3221:18112157,37890806 -(1,3221:18574841,37989120:815857,339935,5505 -) -$1,3221:19390698,37890806 -g1,3221:19390698,37890806 -g1,3221:19718378,37890806 -) -g1,3221:19718378,37890806 -(1,3221:19718378,37890806:1232732,589039,252448 -g1,3221:20046058,37890806 -g1,3221:20046058,37890806 -$1,3221:20046058,37890806 -$1,3221:20623430,37890806 -g1,3221:20623430,37890806 -g1,3221:20951110,37890806 -) -g1,3221:20951110,37890806 -(1,3221:20951110,37890806:1909129,589039,252448 -g1,3221:21278790,37890806 -g1,3221:21278790,37890806 -$1,3221:21278790,37890806 -(1,3221:21741474,37989120:791085,346358,96797 -) -$1,3221:22532559,37890806 -g1,3221:22532559,37890806 -g1,3221:22860239,37890806 -) -g1,3221:22860239,37890806 -(1,3221:22860239,37890806:1232732,589039,252448 -g1,3221:23187919,37890806 -g1,3221:23187919,37890806 -$1,3221:23187919,37890806 -$1,3221:23765291,37890806 -g1,3221:23765291,37890806 -g1,3221:24092971,37890806 -) -g1,3221:24092971,37890806 -(1,3222:24092971,37890806:2015559,589039,252448 -g1,3221:24420651,37890806 -g1,3221:24420651,37890806 -$1,3222:24420651,37890806 -(1,3222:24883335,37989120:897515,248644,5505 -) -$1,3222:25780850,37890806 -g1,3222:25780850,37890806 -g1,3222:26108530,37890806 -) -g1,3222:26108530,37890806 -) -] -g1,3222:25780850,35823943 -[1,3223:25780850,37979414:459407,4721242,0 -] -) -) -(1,3226:6630773,39100142:25952256,505283,195111 -h1,3225:6630773,39100142:983040,0,0 -k1,3225:9745008,39100142:212301 -$1,3225:9745008,39100142 -$1,3225:10262742,39100142 -k1,3225:10475043,39100142:212301 -k1,3225:14059172,39100142:212302 -k1,3225:15290558,39100142:212301 -k1,3225:17385708,39100142:212301 -k1,3225:19685331,39100142:212301 -k1,3225:21089078,39100142:212302 -k1,3225:22320464,39100142:212301 -$1,3225:22320464,39100142 -(1,3225:22783148,39198456:487392,346358,96797 -) -$1,3225:23270540,39100142 -k1,3225:23482841,39100142:212301 -k1,3225:24483540,39100142:212301 -k1,3225:27738679,39100142:212302 -k1,3225:29344931,39100142:212301 -$1,3225:29344931,39100142 -$1,3225:29631323,39100142 -k1,3225:29843624,39100142:212301 -k1,3225:32583029,39100142:0 -) -(1,3226:6630773,39941630:25952256,513147,138281 -k1,3225:8397764,39941630:232793 -k1,3225:9822002,39941630:232793 -$1,3225:9822002,39941630 -$1,3225:10185071,39941630 -k1,3225:10417864,39941630:232793 -k1,3225:13390063,39941630:232794 -k1,3225:16509717,39941630:232793 -k1,3225:17939197,39941630:232793 -k1,3225:19344429,39941630:232793 -k1,3225:23252481,39941630:232793 -k1,3225:24144566,39941630:232793 -k1,3225:25396444,39941630:232793 -k1,3225:27716560,39941630:232794 -k1,3225:28940913,39941630:232793 -k1,3225:30868467,39941630:232793 -k1,3225:31862788,39941630:232793 -$1,3225:31862788,39941630 -$1,3225:32583029,39941630 -k1,3226:32583029,39941630:0 -) -(1,3226:6630773,40783118:25952256,513147,102891 -g1,3225:8021447,40783118 -$1,3225:8021447,40783118 -$1,3225:8536560,40783118 -g1,3225:8909459,40783118 -g1,3225:10056339,40783118 -g1,3225:11789766,40783118 -g1,3225:13180440,40783118 -k1,3226:32583029,40783118:16515728 -g1,3226:32583029,40783118 -) -(1,3228:6630773,41624606:25952256,505283,134348 -h1,3227:6630773,41624606:983040,0,0 -k1,3227:8511459,41624606:269811 -k1,3227:9196042,41624606:269740 -k1,3227:10334204,41624606:269810 -k1,3227:11708297,41624606:269811 -k1,3227:13907488,41624606:269811 -k1,3227:14533159,41624606:269811 -k1,3227:16890291,41624606:269810 -k1,3227:18895495,41624606:269811 -k1,3227:20184391,41624606:269811 -(1,3227:20184391,41624606:0,452978,115847 -r1,3251:23004640,41624606:2820249,568825,115847 -k1,3227:20184391,41624606:-2820249 -) -(1,3227:20184391,41624606:2820249,452978,115847 -k1,3227:20184391,41624606:3277 -h1,3227:23001363,41624606:0,411205,112570 -) -k1,3227:23274451,41624606:269811 -k1,3227:24227146,41624606:269810 -(1,3227:24227146,41624606:0,452978,115847 -r1,3251:28102530,41624606:3875384,568825,115847 -k1,3227:24227146,41624606:-3875384 -) -(1,3227:24227146,41624606:3875384,452978,115847 -k1,3227:24227146,41624606:3277 -h1,3227:28099253,41624606:0,411205,112570 -) -k1,3227:28372341,41624606:269811 -k1,3227:32583029,41624606:0 -) -(1,3228:6630773,42466094:25952256,513147,134348 -k1,3227:8071097,42466094:243637 -k1,3227:9620866,42466094:243636 -k1,3227:12936831,42466094:243637 -k1,3227:13847624,42466094:243637 -(1,3227:13847624,42466094:0,452978,115847 -r1,3251:16667873,42466094:2820249,568825,115847 -k1,3227:13847624,42466094:-2820249 -) -(1,3227:13847624,42466094:2820249,452978,115847 -k1,3227:13847624,42466094:3277 -h1,3227:16664596,42466094:0,411205,112570 -) -k1,3227:16911510,42466094:243637 -k1,3227:17686643,42466094:243636 -k1,3227:18286140,42466094:243637 -k1,3227:20681324,42466094:243637 -k1,3227:21552795,42466094:243636 -k1,3227:22815517,42466094:243637 -k1,3227:24712627,42466094:243637 -k1,3227:26194239,42466094:243637 -k1,3227:27124037,42466094:243636 -k1,3227:29849522,42466094:243637 -k1,3227:32583029,42466094:0 -) -(1,3228:6630773,43307582:25952256,513147,134348 -g1,3227:7821562,43307582 -g1,3227:12641735,43307582 -g1,3227:13607080,43307582 -g1,3227:16675475,43307582 -g1,3227:17866264,43307582 -g1,3227:18724785,43307582 -g1,3227:19943099,43307582 -g1,3227:21795801,43307582 -k1,3228:32583029,43307582:9227471 -g1,3228:32583029,43307582 -) -v1,3230:6630773,44488517:0,393216,0 -(1,3251:6630773,45510161:25952256,1414860,196608 -g1,3251:6630773,45510161 -g1,3251:6630773,45510161 -g1,3251:6434165,45510161 -(1,3251:6434165,45510161:0,1414860,196608 -r1,3251:32779637,45510161:26345472,1611468,196608 -k1,3251:6434165,45510161:-26345472 -) -(1,3251:6434165,45510161:26345472,1414860,196608 -[1,3251:6630773,45510161:25952256,1218252,0 -(1,3232:6630773,44696135:25952256,404226,82312 -(1,3231:6630773,44696135:0,0,0 -g1,3231:6630773,44696135 -g1,3231:6630773,44696135 -g1,3231:6303093,44696135 -(1,3231:6303093,44696135:0,0,0 -) -g1,3231:6630773,44696135 -) -k1,3232:6630773,44696135:0 -g1,3232:10740668,44696135 -g1,3232:12321397,44696135 -g1,3232:12953689,44696135 -h1,3232:13585981,44696135:0,0,0 -k1,3232:32583029,44696135:18997048 -g1,3232:32583029,44696135 -) -(1,3241:6630773,45427849:25952256,404226,82312 -(1,3234:6630773,45427849:0,0,0 -g1,3234:6630773,45427849 -g1,3234:6630773,45427849 -g1,3234:6303093,45427849 -(1,3234:6303093,45427849:0,0,0 -) -g1,3234:6630773,45427849 -) -g1,3241:7579210,45427849 -g1,3241:7895356,45427849 -g1,3241:8211502,45427849 -g1,3241:8527648,45427849 -g1,3241:8843794,45427849 -g1,3241:9159940,45427849 -g1,3241:10740669,45427849 -g1,3241:12321398,45427849 -k1,3241:12321398,45427849:0 -h1,3241:13585981,45427849:0,0,0 -k1,3241:32583029,45427849:18997048 -g1,3241:32583029,45427849 -) -] -) -g1,3251:32583029,45510161 -g1,3251:6630773,45510161 -g1,3251:6630773,45510161 -g1,3251:32583029,45510161 -g1,3251:32583029,45510161 -) -] -(1,3251:32583029,45706769:0,0,0 -g1,3251:32583029,45706769 -) -) -] -(1,3251:6630773,47279633:25952256,0,0 -h1,3251:6630773,47279633:25952256,0,0 -) -] -(1,3251:4262630,4025873:0,0,0 -[1,3251:-473656,4025873:0,0,0 -(1,3251:-473656,-710413:0,0,0 -(1,3251:-473656,-710413:0,0,0 -g1,3251:-473656,-710413 -) -g1,3251:-473656,-710413 -) -] -) -] -!33288 -}66 -Input:520:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:521:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!193 -{67 -[1,3294:4262630,47279633:28320399,43253760,0 -(1,3294:4262630,4025873:0,0,0 -[1,3294:-473656,4025873:0,0,0 -(1,3294:-473656,-710413:0,0,0 -(1,3294:-473656,-644877:0,0,0 -k1,3294:-473656,-644877:-65536 -) -(1,3294:-473656,4736287:0,0,0 -k1,3294:-473656,4736287:5209943 -) -g1,3294:-473656,-710413 -) -] -) -[1,3294:6630773,47279633:25952256,43253760,0 -[1,3294:6630773,4812305:25952256,786432,0 -(1,3294:6630773,4812305:25952256,505283,134348 -(1,3294:6630773,4812305:25952256,505283,134348 -g1,3294:3078558,4812305 -[1,3294:3078558,4812305:0,0,0 -(1,3294:3078558,2439708:0,1703936,0 -k1,3294:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,3294:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,3294:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,3294:3078558,4812305:0,0,0 -(1,3294:3078558,2439708:0,1703936,0 -g1,3294:29030814,2439708 -g1,3294:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,3294:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,3294:37855564,2439708:1179648,16384,0 -) -) -k1,3294:3078556,2439708:-34777008 -) -] -[1,3294:3078558,4812305:0,0,0 -(1,3294:3078558,49800853:0,16384,2228224 -k1,3294:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,3294:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,3294:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,3294:3078558,4812305:0,0,0 -(1,3294:3078558,49800853:0,16384,2228224 -g1,3294:29030814,49800853 -g1,3294:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,3294:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,3294:37855564,49800853:1179648,16384,0 -) -) -k1,3294:3078556,49800853:-34777008 -) -] -g1,3294:6630773,4812305 -k1,3294:19515153,4812305:12087462 -g1,3294:20901894,4812305 -g1,3294:21550700,4812305 -g1,3294:24864855,4812305 -g1,3294:27600327,4812305 -g1,3294:29010006,4812305 -) -) -] -[1,3294:6630773,45706769:25952256,40108032,0 -(1,3294:6630773,45706769:25952256,40108032,0 -(1,3294:6630773,45706769:0,0,0 -g1,3294:6630773,45706769 -) -[1,3294:6630773,45706769:25952256,40108032,0 -v1,3251:6630773,6254097:0,393216,0 -(1,3251:6630773,13260525:25952256,7399644,196608 -g1,3251:6630773,13260525 -g1,3251:6630773,13260525 -g1,3251:6434165,13260525 -(1,3251:6434165,13260525:0,7399644,196608 -r1,3294:32779637,13260525:26345472,7596252,196608 -k1,3251:6434165,13260525:-26345472 -) -(1,3251:6434165,13260525:26345472,7399644,196608 -[1,3251:6630773,13260525:25952256,7203036,0 -(1,3241:6630773,6461715:25952256,404226,82312 -h1,3241:6630773,6461715:0,0,0 -g1,3241:7579210,6461715 -g1,3241:9159938,6461715 -g1,3241:9476084,6461715 -g1,3241:9792230,6461715 -g1,3241:10108376,6461715 -g1,3241:10740668,6461715 -g1,3241:11056814,6461715 -g1,3241:11372960,6461715 -g1,3241:11689106,6461715 -g1,3241:12321398,6461715 -g1,3241:12637544,6461715 -g1,3241:12953690,6461715 -h1,3241:13585981,6461715:0,0,0 -k1,3241:32583029,6461715:18997048 -g1,3241:32583029,6461715 -) -(1,3241:6630773,7127893:25952256,404226,82312 -h1,3241:6630773,7127893:0,0,0 -g1,3241:7579210,7127893 -g1,3241:9159938,7127893 -g1,3241:9476084,7127893 -g1,3241:9792230,7127893 -g1,3241:10108376,7127893 -g1,3241:10740668,7127893 -g1,3241:11056814,7127893 -g1,3241:11372960,7127893 -g1,3241:11689106,7127893 -g1,3241:12321398,7127893 -g1,3241:12637544,7127893 -g1,3241:12953690,7127893 -h1,3241:13585981,7127893:0,0,0 -k1,3241:32583029,7127893:18997048 -g1,3241:32583029,7127893 -) -(1,3241:6630773,7794071:25952256,404226,82312 -h1,3241:6630773,7794071:0,0,0 -g1,3241:7579210,7794071 -g1,3241:9159938,7794071 -g1,3241:9476084,7794071 -g1,3241:9792230,7794071 -g1,3241:10108376,7794071 -g1,3241:10740668,7794071 -g1,3241:11056814,7794071 -g1,3241:11372960,7794071 -g1,3241:11689106,7794071 -g1,3241:12321398,7794071 -g1,3241:12637544,7794071 -g1,3241:12953690,7794071 -h1,3241:13585981,7794071:0,0,0 -k1,3241:32583029,7794071:18997048 -g1,3241:32583029,7794071 -) -(1,3241:6630773,8460249:25952256,404226,82312 -h1,3241:6630773,8460249:0,0,0 -g1,3241:7579210,8460249 -g1,3241:9159938,8460249 -g1,3241:9476084,8460249 -g1,3241:9792230,8460249 -g1,3241:10108376,8460249 -g1,3241:10740668,8460249 -g1,3241:11056814,8460249 -g1,3241:11372960,8460249 -g1,3241:11689106,8460249 -g1,3241:12321398,8460249 -g1,3241:12637544,8460249 -g1,3241:12953690,8460249 -h1,3241:13585981,8460249:0,0,0 -k1,3241:32583029,8460249:18997048 -g1,3241:32583029,8460249 -) -(1,3241:6630773,9126427:25952256,404226,82312 -h1,3241:6630773,9126427:0,0,0 -g1,3241:7579210,9126427 -g1,3241:9159938,9126427 -g1,3241:9476084,9126427 -g1,3241:9792230,9126427 -g1,3241:10108376,9126427 -g1,3241:10740668,9126427 -g1,3241:11056814,9126427 -g1,3241:11372960,9126427 -g1,3241:12321397,9126427 -g1,3241:12637543,9126427 -g1,3241:12953689,9126427 -h1,3241:13585980,9126427:0,0,0 -k1,3241:32583028,9126427:18997048 -g1,3241:32583028,9126427 -) -(1,3243:6630773,10447965:25952256,404226,82312 -(1,3242:6630773,10447965:0,0,0 -g1,3242:6630773,10447965 -g1,3242:6630773,10447965 -g1,3242:6303093,10447965 -(1,3242:6303093,10447965:0,0,0 -) -g1,3242:6630773,10447965 -) -k1,3243:6630773,10447965:0 -g1,3243:10740668,10447965 -g1,3243:12321397,10447965 -g1,3243:12953689,10447965 -h1,3243:13585981,10447965:0,0,0 -k1,3243:32583029,10447965:18997048 -g1,3243:32583029,10447965 -) -(1,3250:6630773,11179679:25952256,404226,82312 -(1,3245:6630773,11179679:0,0,0 -g1,3245:6630773,11179679 -g1,3245:6630773,11179679 -g1,3245:6303093,11179679 -(1,3245:6303093,11179679:0,0,0 -) -g1,3245:6630773,11179679 -) -g1,3250:7579210,11179679 -g1,3250:7895356,11179679 -g1,3250:8211502,11179679 -g1,3250:8527648,11179679 -g1,3250:8843794,11179679 -g1,3250:9159940,11179679 -g1,3250:10740669,11179679 -g1,3250:12321398,11179679 -g1,3250:13902127,11179679 -g1,3250:15482856,11179679 -k1,3250:15482856,11179679:0 -h1,3250:16747439,11179679:0,0,0 -k1,3250:32583029,11179679:15835590 -g1,3250:32583029,11179679 -) -(1,3250:6630773,11845857:25952256,404226,82312 -h1,3250:6630773,11845857:0,0,0 -g1,3250:7579210,11845857 -g1,3250:9159938,11845857 -g1,3250:9476084,11845857 -g1,3250:9792230,11845857 -g1,3250:10108376,11845857 -g1,3250:10740668,11845857 -g1,3250:11056814,11845857 -g1,3250:11372960,11845857 -g1,3250:11689106,11845857 -g1,3250:12321398,11845857 -g1,3250:12637544,11845857 -g1,3250:12953690,11845857 -g1,3250:13269836,11845857 -g1,3250:13902128,11845857 -g1,3250:14218274,11845857 -g1,3250:14534420,11845857 -g1,3250:15482857,11845857 -g1,3250:15799003,11845857 -g1,3250:16115149,11845857 -h1,3250:16747440,11845857:0,0,0 -k1,3250:32583029,11845857:15835589 -g1,3250:32583029,11845857 -) -(1,3250:6630773,12512035:25952256,404226,82312 -h1,3250:6630773,12512035:0,0,0 -g1,3250:7579210,12512035 -g1,3250:9159938,12512035 -g1,3250:9476084,12512035 -g1,3250:9792230,12512035 -g1,3250:10108376,12512035 -g1,3250:10740668,12512035 -g1,3250:11056814,12512035 -g1,3250:11372960,12512035 -g1,3250:11689106,12512035 -g1,3250:12321398,12512035 -g1,3250:12637544,12512035 -g1,3250:12953690,12512035 -g1,3250:13269836,12512035 -g1,3250:13902128,12512035 -g1,3250:14218274,12512035 -g1,3250:14534420,12512035 -g1,3250:15482857,12512035 -g1,3250:15799003,12512035 -g1,3250:16115149,12512035 -h1,3250:16747440,12512035:0,0,0 -k1,3250:32583029,12512035:15835589 -g1,3250:32583029,12512035 -) -(1,3250:6630773,13178213:25952256,404226,82312 -h1,3250:6630773,13178213:0,0,0 -g1,3250:7579210,13178213 -g1,3250:9159938,13178213 -g1,3250:9476084,13178213 -g1,3250:9792230,13178213 -g1,3250:10108376,13178213 -g1,3250:10740668,13178213 -g1,3250:11056814,13178213 -g1,3250:11372960,13178213 -g1,3250:11689106,13178213 -g1,3250:12321398,13178213 -g1,3250:12637544,13178213 -g1,3250:12953690,13178213 -g1,3250:13269836,13178213 -g1,3250:13902128,13178213 -g1,3250:14218274,13178213 -g1,3250:14534420,13178213 -g1,3250:15482857,13178213 -g1,3250:15799003,13178213 -g1,3250:16115149,13178213 -h1,3250:16747440,13178213:0,0,0 -k1,3250:32583029,13178213:15835589 -g1,3250:32583029,13178213 -) -] -) -g1,3251:32583029,13260525 -g1,3251:6630773,13260525 -g1,3251:6630773,13260525 -g1,3251:32583029,13260525 -g1,3251:32583029,13260525 -) -h1,3251:6630773,13457133:0,0,0 -(1,3255:6630773,14822909:25952256,505283,126483 -h1,3254:6630773,14822909:983040,0,0 -k1,3254:9585967,14822909:188919 -k1,3254:10130746,14822909:188919 -k1,3254:12406987,14822909:188919 -k1,3254:13127403,14822909:188919 -k1,3254:15666443,14822909:188919 -k1,3254:16471400,14822909:188919 -k1,3254:17075152,14822909:188909 -k1,3254:18283156,14822909:188919 -k1,3254:19675971,14822909:188919 -k1,3254:21056335,14822909:188919 -k1,3254:23628143,14822909:188919 -k1,3254:26243860,14822909:188919 -k1,3254:27424339,14822909:188919 -k1,3254:30565655,14822909:188919 -k1,3254:31563944,14822909:188919 -k1,3254:32583029,14822909:0 -) -(1,3255:6630773,15664397:25952256,513147,134348 -k1,3254:8606192,15664397:155484 -k1,3254:9835811,15664397:155484 -k1,3254:11182740,15664397:155484 -k1,3254:12410393,15664397:155484 -k1,3254:15324288,15664397:155485 -k1,3254:16095810,15664397:155484 -k1,3254:17270379,15664397:155484 -k1,3254:19079336,15664397:155484 -k1,3254:20472795,15664397:155484 -k1,3254:21314441,15664397:155484 -k1,3254:22850113,15664397:155484 -k1,3254:24961847,15664397:155484 -k1,3254:25865098,15664397:155485 -k1,3254:27533808,15664397:155484 -k1,3254:28340720,15664397:155484 -k1,3254:30700180,15664397:155484 -k1,3254:32583029,15664397:0 -) -(1,3255:6630773,16505885:25952256,505283,7863 -g1,3254:8364200,16505885 -g1,3254:9754874,16505885 -k1,3255:32583029,16505885:19941294 -g1,3255:32583029,16505885 -) -(1,3257:6630773,17347373:25952256,513147,102891 -h1,3256:6630773,17347373:983040,0,0 -k1,3256:9625332,17347373:228284 -k1,3256:10209475,17347373:228283 -k1,3256:12415636,17347373:228284 -k1,3256:13175417,17347373:228284 -k1,3256:16564501,17347373:228283 -k1,3256:17444213,17347373:228284 -k1,3256:18028357,17347373:228284 -k1,3256:20517632,17347373:228283 -k1,3256:21664731,17347373:228284 -k1,3256:24158595,17347373:228284 -k1,3256:24918375,17347373:228283 -k1,3256:25798087,17347373:228284 -k1,3256:28480694,17347373:228284 -k1,3256:29728062,17347373:228283 -k1,3256:31966991,17347373:228284 -k1,3256:32583029,17347373:0 -) -(1,3257:6630773,18188861:25952256,513147,134348 -k1,3256:7813143,18188861:163285 -k1,3256:9954306,18188861:163286 -k1,3256:10769019,18188861:163285 -k1,3256:11951389,18188861:163285 -k1,3256:14201997,18188861:163286 -k1,3256:16843854,18188861:163285 -k1,3256:18574760,18188861:163285 -k1,3256:19757130,18188861:163285 -k1,3256:22596251,18188861:163286 -k1,3256:25316095,18188861:163285 -k1,3256:26670825,18188861:163285 -k1,3256:28844100,18188861:163286 -k1,3256:30026470,18188861:163285 -k1,3256:32583029,18188861:0 -) -(1,3257:6630773,19030349:25952256,513147,126483 -k1,3256:8566332,19030349:184437 -k1,3256:10318390,19030349:184437 -k1,3256:11521912,19030349:184437 -k1,3256:12952188,19030349:184437 -k1,3256:14741602,19030349:184437 -k1,3256:15945124,19030349:184437 -k1,3256:17435693,19030349:184436 -k1,3256:20003019,19030349:184437 -k1,3256:20718953,19030349:184437 -k1,3256:22685969,19030349:184437 -k1,3256:23889491,19030349:184437 -k1,3256:26519076,19030349:184437 -k1,3256:29811886,19030349:184437 -k1,3256:31563944,19030349:184437 -k1,3256:32583029,19030349:0 -) -(1,3257:6630773,19871837:25952256,513147,134348 -k1,3256:7938175,19871837:235233 -k1,3256:8832700,19871837:235233 -k1,3256:10087018,19871837:235233 -k1,3256:11706372,19871837:235234 -k1,3256:14498164,19871837:235233 -k1,3256:15419559,19871837:235233 -k1,3256:16759074,19871837:235233 -k1,3256:17742073,19871837:235233 -k1,3256:19417132,19871837:235233 -k1,3256:21681360,19871837:235233 -k1,3256:23297437,19871837:235233 -k1,3256:25271997,19871837:235234 -k1,3256:26611512,19871837:235233 -k1,3256:27594511,19871837:235233 -k1,3256:30491161,19871837:235233 -k1,3256:31412556,19871837:235233 -k1,3256:32583029,19871837:0 -) -(1,3257:6630773,20713325:25952256,505283,134348 -g1,3256:7962464,20713325 -g1,3256:10834907,20713325 -g1,3256:11650174,20713325 -g1,3256:12868488,20713325 -g1,3256:16718072,20713325 -k1,3257:32583029,20713325:13822855 -g1,3257:32583029,20713325 -) -v1,3259:6630773,22079101:0,393216,0 -(1,3289:6630773,37579149:25952256,15893264,616038 -g1,3289:6630773,37579149 -(1,3289:6630773,37579149:25952256,15893264,616038 -(1,3289:6630773,38195187:25952256,16509302,0 -[1,3289:6630773,38195187:25952256,16509302,0 -(1,3289:6630773,38168973:25952256,16456874,0 -r1,3294:6656987,38168973:26214,16456874,0 -[1,3289:6656987,38168973:25899828,16456874,0 -(1,3289:6656987,37579149:25899828,15277226,0 -[1,3289:7246811,37579149:24720180,15277226,0 -(1,3260:7246811,23389297:24720180,1087374,134348 -k1,3259:8699127,23389297:242613 -k1,3259:10885538,23389297:242613 -k1,3259:11744189,23389297:242613 -k1,3259:13005887,23389297:242613 -k1,3259:14636553,23389297:242613 -k1,3259:16377319,23389297:242613 -k1,3259:17567583,23389297:242613 -k1,3259:18829280,23389297:242612 -(1,3259:18829280,23389297:0,452978,115847 -r1,3294:20946105,23389297:2116825,568825,115847 -k1,3259:18829280,23389297:-2116825 -) -(1,3259:18829280,23389297:2116825,452978,115847 -k1,3259:18829280,23389297:3277 -h1,3259:20942828,23389297:0,411205,112570 -) -k1,3259:21188718,23389297:242613 -k1,3259:25138047,23389297:242613 -k1,3259:26711041,23389297:242613 -k1,3259:27605082,23389297:242613 -k1,3259:28940180,23389297:242613 -k1,3259:30201878,23389297:242613 -(1,3259:30201878,23389297:0,452978,115847 -r1,3294:31966991,23389297:1765113,568825,115847 -k1,3259:30201878,23389297:-1765113 -) -(1,3259:30201878,23389297:1765113,452978,115847 -k1,3259:30201878,23389297:3277 -h1,3259:31963714,23389297:0,411205,112570 -) -k1,3259:31966991,23389297:0 -) -(1,3260:7246811,24230785:24720180,513147,126483 -k1,3259:10779302,24230785:251759 -k1,3259:11682489,24230785:251759 -k1,3259:13387837,24230785:251759 -k1,3259:14658681,24230785:251759 -k1,3259:17176020,24230785:251759 -k1,3259:19167105,24230785:251759 -k1,3259:20034901,24230785:251758 -k1,3259:22172131,24230785:251759 -k1,3259:23442975,24230785:251759 -k1,3259:26563900,24230785:251759 -k1,3259:27474951,24230785:251759 -k1,3259:28745795,24230785:251759 -k1,3259:30975431,24230785:251759 -k1,3259:31966991,24230785:0 -) -(1,3260:7246811,25072273:24720180,513147,7863 -g1,3259:10321104,25072273 -g1,3259:11171761,25072273 -g1,3259:14084181,25072273 -g1,3259:15474855,25072273 -g1,3259:17208282,25072273 -g1,3259:18066803,25072273 -g1,3259:19285117,25072273 -g1,3259:20767541,25072273 -k1,3260:31966991,25072273:8938458 -g1,3260:31966991,25072273 -) -v1,3262:7246811,26262739:0,393216,0 -(1,3266:7246811,26571544:24720180,702021,196608 -g1,3266:7246811,26571544 -g1,3266:7246811,26571544 -g1,3266:7050203,26571544 -(1,3266:7050203,26571544:0,702021,196608 -r1,3294:32163599,26571544:25113396,898629,196608 -k1,3266:7050203,26571544:-25113396 -) -(1,3266:7050203,26571544:25113396,702021,196608 -[1,3266:7246811,26571544:24720180,505413,0 -(1,3264:7246811,26470357:24720180,404226,101187 -(1,3263:7246811,26470357:0,0,0 -g1,3263:7246811,26470357 -g1,3263:7246811,26470357 -g1,3263:6919131,26470357 -(1,3263:6919131,26470357:0,0,0 -) -g1,3263:7246811,26470357 -) -k1,3264:7246811,26470357:0 -h1,3264:11040559,26470357:0,0,0 -k1,3264:31966991,26470357:20926432 -g1,3264:31966991,26470357 -) -] -) -g1,3266:31966991,26571544 -g1,3266:7246811,26571544 -g1,3266:7246811,26571544 -g1,3266:31966991,26571544 -g1,3266:31966991,26571544 -) -h1,3266:7246811,26768152:0,0,0 -(1,3270:7246811,28133928:24720180,513147,134348 -h1,3269:7246811,28133928:983040,0,0 -k1,3269:10180354,28133928:175788 -k1,3269:11526614,28133928:175787 -k1,3269:12693962,28133928:175788 -k1,3269:15246740,28133928:175787 -k1,3269:16035290,28133928:175788 -k1,3269:17230163,28133928:175788 -k1,3269:18794003,28133928:175787 -k1,3269:20641614,28133928:175788 -k1,3269:22103218,28133928:175788 -k1,3269:25009890,28133928:175787 -k1,3269:26204763,28133928:175788 -k1,3269:28646130,28133928:175787 -k1,3269:31307699,28133928:175788 -k1,3269:31966991,28133928:0 -) -(1,3270:7246811,28975416:24720180,505283,7863 -g1,3269:10159231,28975416 -g1,3269:11549905,28975416 -k1,3270:31966991,28975416:18709218 -g1,3270:31966991,28975416 -) -v1,3272:7246811,30165882:0,393216,0 -(1,3276:7246811,30449521:24720180,676855,196608 -g1,3276:7246811,30449521 -g1,3276:7246811,30449521 -g1,3276:7050203,30449521 -(1,3276:7050203,30449521:0,676855,196608 -r1,3294:32163599,30449521:25113396,873463,196608 -k1,3276:7050203,30449521:-25113396 -) -(1,3276:7050203,30449521:25113396,676855,196608 -[1,3276:7246811,30449521:24720180,480247,0 -(1,3274:7246811,30373500:24720180,404226,76021 -(1,3273:7246811,30373500:0,0,0 -g1,3273:7246811,30373500 -g1,3273:7246811,30373500 -g1,3273:6919131,30373500 -(1,3273:6919131,30373500:0,0,0 -) -g1,3273:7246811,30373500 -) -k1,3274:7246811,30373500:0 -h1,3274:11040560,30373500:0,0,0 -k1,3274:31966992,30373500:20926432 -g1,3274:31966992,30373500 -) -] -) -g1,3276:31966991,30449521 -g1,3276:7246811,30449521 -g1,3276:7246811,30449521 -g1,3276:31966991,30449521 -g1,3276:31966991,30449521 -) -h1,3276:7246811,30646129:0,0,0 -(1,3280:7246811,32011905:24720180,513147,134348 -h1,3279:7246811,32011905:983040,0,0 -k1,3279:9828425,32011905:275402 -k1,3279:10755256,32011905:275403 -k1,3279:12518981,32011905:275402 -k1,3279:15019987,32011905:275403 -k1,3279:15651249,32011905:275402 -k1,3279:17696778,32011905:275402 -k1,3279:18631473,32011905:275403 -k1,3279:20237256,32011905:275402 -k1,3279:21164086,32011905:275402 -k1,3279:24261469,32011905:275403 -k1,3279:26143814,32011905:275402 -k1,3279:27610662,32011905:275403 -k1,3279:30456386,32011905:275402 -k1,3280:31966991,32011905:0 -) -(1,3280:7246811,32853393:24720180,505283,134348 -k1,3279:9415998,32853393:257502 -k1,3279:10791544,32853393:257502 -k1,3279:12068131,32853393:257502 -k1,3279:13821819,32853393:257501 -k1,3279:15947752,32853393:257502 -k1,3279:17396699,32853393:257502 -k1,3279:19369934,32853393:257502 -k1,3279:21008280,32853393:257502 -k1,3279:22436255,32853393:257502 -k1,3279:26358529,32853393:257501 -k1,3279:28501502,32853393:257502 -k1,3279:31435494,32853393:257502 -k1,3279:31966991,32853393:0 -) -(1,3280:7246811,33694881:24720180,513147,134348 -k1,3279:9251951,33694881:267125 -k1,3279:12457054,33694881:267124 -k1,3279:14765625,33694881:267125 -k1,3279:18088038,33694881:267125 -k1,3279:19374248,33694881:267125 -k1,3279:23001403,33694881:267124 -k1,3279:25698603,33694881:267125 -k1,3279:26423825,33694881:267125 -k1,3279:27882394,33694881:267124 -k1,3279:30418375,33694881:267125 -k1,3279:31966991,33694881:0 -) -(1,3280:7246811,34536369:24720180,513147,126483 -k1,3279:8486812,34536369:220916 -k1,3279:11486455,34536369:220916 -k1,3279:13387714,34536369:220916 -k1,3279:14741092,34536369:220916 -k1,3279:15883444,34536369:220916 -k1,3279:19839256,34536369:220915 -k1,3279:22820548,34536369:220916 -k1,3279:24500295,34536369:220916 -k1,3279:28174303,34536369:220916 -k1,3279:29046647,34536369:220916 -k1,3279:30286648,34536369:220916 -k1,3279:31966991,34536369:0 -) -(1,3280:7246811,35377857:24720180,505283,126483 -g1,3279:9934442,35377857 -k1,3280:31966991,35377857:19080152 -g1,3280:31966991,35377857 -) -v1,3282:7246811,36568323:0,393216,0 -(1,3286:7246811,36858253:24720180,683146,196608 -g1,3286:7246811,36858253 -g1,3286:7246811,36858253 -g1,3286:7050203,36858253 -(1,3286:7050203,36858253:0,683146,196608 -r1,3294:32163599,36858253:25113396,879754,196608 -k1,3286:7050203,36858253:-25113396 -) -(1,3286:7050203,36858253:25113396,683146,196608 -[1,3286:7246811,36858253:24720180,486538,0 -(1,3284:7246811,36775941:24720180,404226,82312 -(1,3283:7246811,36775941:0,0,0 -g1,3283:7246811,36775941 -g1,3283:7246811,36775941 -g1,3283:6919131,36775941 -(1,3283:6919131,36775941:0,0,0 -) -g1,3283:7246811,36775941 -) -k1,3284:7246811,36775941:0 -g1,3284:11356706,36775941 -g1,3284:12937435,36775941 -g1,3284:13569727,36775941 -h1,3284:14202019,36775941:0,0,0 -k1,3284:31966991,36775941:17764972 -g1,3284:31966991,36775941 -) -] -) -g1,3286:31966991,36858253 -g1,3286:7246811,36858253 -g1,3286:7246811,36858253 -g1,3286:31966991,36858253 -g1,3286:31966991,36858253 -) -h1,3286:7246811,37054861:0,0,0 -] -) -] -r1,3294:32583029,38168973:26214,16456874,0 -) -] -) -) -g1,3289:32583029,37579149 -) -h1,3289:6630773,38195187:0,0,0 -(1,3292:6630773,39560963:25952256,513147,134348 -h1,3291:6630773,39560963:983040,0,0 -k1,3291:11781575,39560963:175964 -k1,3291:12616831,39560963:175964 -k1,3291:15526302,39560963:175964 -k1,3291:16893711,39560963:175964 -k1,3291:19049518,39560963:175964 -k1,3291:19756979,39560963:175964 -k1,3291:23213675,39560963:175964 -k1,3291:24783590,39560963:175964 -k1,3291:26244060,39560963:175964 -k1,3291:27933250,39560963:175964 -k1,3291:29056865,39560963:175964 -k1,3291:31714677,39560963:175964 -k1,3291:32583029,39560963:0 -) -(1,3292:6630773,40402451:25952256,513147,134348 -k1,3291:8169278,40402451:162904 -k1,3291:9862447,40402451:162903 -k1,3291:10676779,40402451:162904 -k1,3291:12992541,40402451:162904 -k1,3291:13926147,40402451:162903 -k1,3291:16828456,40402451:162904 -k1,3291:19142906,40402451:162903 -k1,3291:19988695,40402451:162904 -k1,3291:21764440,40402451:162904 -k1,3291:22283203,40402451:162903 -k1,3291:24214924,40402451:162904 -k1,3291:26339321,40402451:162904 -k1,3291:27449875,40402451:162903 -k1,3291:29064401,40402451:162904 -k1,3291:32583029,40402451:0 -) -(1,3292:6630773,41243939:25952256,513147,134348 -k1,3291:7334848,41243939:216487 -k1,3291:9638674,41243939:216504 -k1,3291:10956183,41243939:216504 -k1,3291:12345125,41243939:216503 -k1,3291:16410558,41243939:216504 -k1,3291:17351890,41243939:216504 -k1,3291:18219822,41243939:216504 -k1,3291:20467287,41243939:216504 -k1,3291:21815598,41243939:216504 -k1,3291:24570967,41243939:216504 -k1,3291:25470356,41243939:216504 -k1,3291:27579540,41243939:216504 -k1,3291:28455336,41243939:216504 -k1,3291:31714677,41243939:216504 -k1,3291:32583029,41243939:0 -) -(1,3292:6630773,42085427:25952256,505283,126483 -k1,3291:8000929,42085427:277671 -k1,3291:9451039,42085427:277671 -k1,3291:12151576,42085427:277671 -k1,3291:13625934,42085427:277671 -k1,3291:15279206,42085427:277671 -k1,3291:19688922,42085427:277671 -k1,3291:20498090,42085427:277671 -k1,3291:22060266,42085427:277670 -k1,3291:23992721,42085427:277671 -k1,3291:25261952,42085427:277671 -k1,3291:26712062,42085427:277671 -k1,3291:29619693,42085427:277671 -k1,3291:31966991,42085427:277671 -k1,3291:32583029,42085427:0 -) -(1,3292:6630773,42926915:25952256,513147,126483 -k1,3291:8827590,42926915:137676 -k1,3291:9581304,42926915:137676 -k1,3291:12725772,42926915:137676 -k1,3291:15290246,42926915:137676 -k1,3291:17196739,42926915:137676 -k1,3291:18082181,42926915:137676 -k1,3291:21154558,42926915:137675 -k1,3291:21920069,42926915:137676 -k1,3291:22646258,42926915:137676 -k1,3291:25210732,42926915:137676 -k1,3291:26296059,42926915:137676 -k1,3291:29167242,42926915:137676 -k1,3291:30296478,42926915:137676 -k1,3291:32583029,42926915:0 -) -(1,3292:6630773,43768403:25952256,513147,126483 -k1,3291:8285042,43768403:150218 -k1,3291:10215217,43768403:150217 -k1,3291:10993270,43768403:150218 -k1,3291:13556524,43768403:150218 -k1,3291:15835351,43768403:150218 -k1,3291:17004653,43768403:150217 -k1,3291:18461004,43768403:150218 -k1,3291:20360378,43768403:150218 -k1,3291:22190938,43768403:150217 -k1,3291:24492048,43768403:150218 -k1,3291:26350134,43768403:150218 -k1,3291:27691797,43768403:150218 -k1,3291:28861099,43768403:150217 -k1,3291:31252648,43768403:150218 -k1,3291:32583029,43768403:0 -) -(1,3292:6630773,44609891:25952256,505283,7863 -k1,3292:32583030,44609891:23065396 -g1,3292:32583030,44609891 -) -] -(1,3294:32583029,45706769:0,0,0 -g1,3294:32583029,45706769 -) -) -] -(1,3294:6630773,47279633:25952256,0,0 -h1,3294:6630773,47279633:25952256,0,0 -) -] -(1,3294:4262630,4025873:0,0,0 -[1,3294:-473656,4025873:0,0,0 -(1,3294:-473656,-710413:0,0,0 -(1,3294:-473656,-710413:0,0,0 -g1,3294:-473656,-710413 -) -g1,3294:-473656,-710413 -) -] -) -] -!24252 -}67 -Input:522:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!102 -{68 -[1,3441:4262630,47279633:28320399,43253760,0 -(1,3441:4262630,4025873:0,0,0 -[1,3441:-473656,4025873:0,0,0 -(1,3441:-473656,-710413:0,0,0 -(1,3441:-473656,-644877:0,0,0 -k1,3441:-473656,-644877:-65536 -) -(1,3441:-473656,4736287:0,0,0 -k1,3441:-473656,4736287:5209943 -) -g1,3441:-473656,-710413 -) -] -) -[1,3441:6630773,47279633:25952256,43253760,0 -[1,3441:6630773,4812305:25952256,786432,0 -(1,3441:6630773,4812305:25952256,505283,126483 -(1,3441:6630773,4812305:25952256,505283,126483 -g1,3441:3078558,4812305 -[1,3441:3078558,4812305:0,0,0 -(1,3441:3078558,2439708:0,1703936,0 -k1,3441:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,3441:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,3441:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,3441:3078558,4812305:0,0,0 -(1,3441:3078558,2439708:0,1703936,0 -g1,3441:29030814,2439708 -g1,3441:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,3441:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,3441:37855564,2439708:1179648,16384,0 -) -) -k1,3441:3078556,2439708:-34777008 -) -] -[1,3441:3078558,4812305:0,0,0 -(1,3441:3078558,49800853:0,16384,2228224 -k1,3441:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,3441:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,3441:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,3441:3078558,4812305:0,0,0 -(1,3441:3078558,49800853:0,16384,2228224 -g1,3441:29030814,49800853 -g1,3441:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,3441:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,3441:37855564,49800853:1179648,16384,0 -) -) -k1,3441:3078556,49800853:-34777008 -) -] -g1,3441:6630773,4812305 -g1,3441:6630773,4812305 -g1,3441:9472414,4812305 -g1,3441:10882093,4812305 -g1,3441:16529985,4812305 -g1,3441:18796220,4812305 -k1,3441:31786111,4812305:12989891 -) -) -] -[1,3441:6630773,45706769:25952256,40108032,0 -(1,3441:6630773,45706769:25952256,40108032,0 -(1,3441:6630773,45706769:0,0,0 -g1,3441:6630773,45706769 -) -[1,3441:6630773,45706769:25952256,40108032,0 -v1,3294:6630773,6254097:0,393216,0 -(1,3313:6630773,13319770:25952256,7458889,196608 -g1,3313:6630773,13319770 -g1,3313:6630773,13319770 -g1,3313:6434165,13319770 -(1,3313:6434165,13319770:0,7458889,196608 -r1,3441:32779637,13319770:26345472,7655497,196608 -k1,3313:6434165,13319770:-26345472 -) -(1,3313:6434165,13319770:26345472,7458889,196608 -[1,3313:6630773,13319770:25952256,7262281,0 -(1,3296:6630773,6461715:25952256,404226,82312 -(1,3295:6630773,6461715:0,0,0 -g1,3295:6630773,6461715 -g1,3295:6630773,6461715 -g1,3295:6303093,6461715 -(1,3295:6303093,6461715:0,0,0 -) -g1,3295:6630773,6461715 -) -g1,3296:7263065,6461715 -g1,3296:8211503,6461715 -g1,3296:12321398,6461715 -g1,3296:13902127,6461715 -g1,3296:14534419,6461715 -h1,3296:15166711,6461715:0,0,0 -k1,3296:32583029,6461715:17416318 -g1,3296:32583029,6461715 -) -(1,3297:6630773,7127893:25952256,328204,0 -h1,3297:6630773,7127893:0,0,0 -h1,3297:6946919,7127893:0,0,0 -k1,3297:32583029,7127893:25636110 -g1,3297:32583029,7127893 -) -(1,3306:6630773,7859607:25952256,404226,82312 -(1,3299:6630773,7859607:0,0,0 -g1,3299:6630773,7859607 -g1,3299:6630773,7859607 -g1,3299:6303093,7859607 -(1,3299:6303093,7859607:0,0,0 -) -g1,3299:6630773,7859607 -) -g1,3306:7579210,7859607 -g1,3306:7895356,7859607 -g1,3306:8211502,7859607 -g1,3306:8527648,7859607 -g1,3306:8843794,7859607 -g1,3306:9159940,7859607 -g1,3306:10740669,7859607 -g1,3306:12321398,7859607 -g1,3306:13902127,7859607 -k1,3306:13902127,7859607:0 -h1,3306:15166710,7859607:0,0,0 -k1,3306:32583030,7859607:17416320 -g1,3306:32583030,7859607 -) -(1,3306:6630773,8525785:25952256,404226,82312 -h1,3306:6630773,8525785:0,0,0 -g1,3306:7579210,8525785 -g1,3306:9159938,8525785 -g1,3306:9476084,8525785 -g1,3306:9792230,8525785 -g1,3306:10108376,8525785 -g1,3306:10740668,8525785 -g1,3306:11056814,8525785 -g1,3306:11372960,8525785 -g1,3306:11689106,8525785 -g1,3306:12321398,8525785 -g1,3306:12637544,8525785 -g1,3306:12953690,8525785 -g1,3306:13902127,8525785 -g1,3306:14218273,8525785 -g1,3306:14534419,8525785 -h1,3306:15166710,8525785:0,0,0 -k1,3306:32583030,8525785:17416320 -g1,3306:32583030,8525785 -) -(1,3306:6630773,9191963:25952256,404226,82312 -h1,3306:6630773,9191963:0,0,0 -g1,3306:7579210,9191963 -g1,3306:9159938,9191963 -g1,3306:9476084,9191963 -g1,3306:9792230,9191963 -g1,3306:10108376,9191963 -g1,3306:10740668,9191963 -g1,3306:11056814,9191963 -g1,3306:11372960,9191963 -g1,3306:11689106,9191963 -g1,3306:12321398,9191963 -g1,3306:12637544,9191963 -g1,3306:12953690,9191963 -g1,3306:13902127,9191963 -g1,3306:14218273,9191963 -g1,3306:14534419,9191963 -h1,3306:15166710,9191963:0,0,0 -k1,3306:32583030,9191963:17416320 -g1,3306:32583030,9191963 -) -(1,3306:6630773,9858141:25952256,404226,82312 -h1,3306:6630773,9858141:0,0,0 -g1,3306:7579210,9858141 -g1,3306:9159938,9858141 -g1,3306:9476084,9858141 -g1,3306:9792230,9858141 -g1,3306:10108376,9858141 -g1,3306:10740668,9858141 -g1,3306:11056814,9858141 -g1,3306:11372960,9858141 -g1,3306:11689106,9858141 -g1,3306:12321398,9858141 -g1,3306:12637544,9858141 -g1,3306:12953690,9858141 -g1,3306:13902127,9858141 -g1,3306:14218273,9858141 -g1,3306:14534419,9858141 -h1,3306:15166710,9858141:0,0,0 -k1,3306:32583030,9858141:17416320 -g1,3306:32583030,9858141 -) -(1,3306:6630773,10524319:25952256,404226,82312 -h1,3306:6630773,10524319:0,0,0 -g1,3306:7579210,10524319 -g1,3306:9159938,10524319 -g1,3306:9476084,10524319 -g1,3306:9792230,10524319 -g1,3306:10108376,10524319 -g1,3306:10740668,10524319 -g1,3306:11056814,10524319 -g1,3306:11372960,10524319 -g1,3306:11689106,10524319 -g1,3306:12321398,10524319 -g1,3306:12637544,10524319 -g1,3306:12953690,10524319 -g1,3306:13902127,10524319 -g1,3306:14218273,10524319 -g1,3306:14534419,10524319 -h1,3306:15166710,10524319:0,0,0 -k1,3306:32583030,10524319:17416320 -g1,3306:32583030,10524319 -) -(1,3306:6630773,11190497:25952256,404226,82312 -h1,3306:6630773,11190497:0,0,0 -g1,3306:7579210,11190497 -g1,3306:9159938,11190497 -g1,3306:9476084,11190497 -g1,3306:9792230,11190497 -g1,3306:10108376,11190497 -g1,3306:10740668,11190497 -g1,3306:11056814,11190497 -g1,3306:11372960,11190497 -g1,3306:12321397,11190497 -g1,3306:12637543,11190497 -g1,3306:12953689,11190497 -g1,3306:13902126,11190497 -g1,3306:14218272,11190497 -g1,3306:14534418,11190497 -h1,3306:15166709,11190497:0,0,0 -k1,3306:32583029,11190497:17416320 -g1,3306:32583029,11190497 -) -(1,3308:6630773,12512035:25952256,404226,82312 -(1,3307:6630773,12512035:0,0,0 -g1,3307:6630773,12512035 -g1,3307:6630773,12512035 -g1,3307:6303093,12512035 -(1,3307:6303093,12512035:0,0,0 -) -g1,3307:6630773,12512035 -) -k1,3308:6630773,12512035:0 -g1,3308:8211502,12512035 -h1,3308:8843794,12512035:0,0,0 -k1,3308:32583030,12512035:23739236 -g1,3308:32583030,12512035 -) -(1,3312:6630773,13243749:25952256,404226,76021 -(1,3310:6630773,13243749:0,0,0 -g1,3310:6630773,13243749 -g1,3310:6630773,13243749 -g1,3310:6303093,13243749 -(1,3310:6303093,13243749:0,0,0 -) -g1,3310:6630773,13243749 -) -g1,3312:7579210,13243749 -g1,3312:8843793,13243749 -h1,3312:9159939,13243749:0,0,0 -k1,3312:32583029,13243749:23423090 -g1,3312:32583029,13243749 -) -] -) -g1,3313:32583029,13319770 -g1,3313:6630773,13319770 -g1,3313:6630773,13319770 -g1,3313:32583029,13319770 -g1,3313:32583029,13319770 -) -h1,3313:6630773,13516378:0,0,0 -(1,3317:6630773,14882154:25952256,513147,134348 -h1,3316:6630773,14882154:983040,0,0 -k1,3316:10210914,14882154:148021 -k1,3316:12965303,14882154:148022 -k1,3316:13772616,14882154:148021 -k1,3316:15251018,14882154:148021 -k1,3316:18138445,14882154:148022 -k1,3316:18945758,14882154:148021 -k1,3316:21401957,14882154:148021 -k1,3316:23476737,14882154:148022 -k1,3316:24240796,14882154:148021 -k1,3316:24803610,14882154:147971 -k1,3316:26183708,14882154:148021 -k1,3316:28610416,14882154:148021 -h1,3316:29979463,14882154:0,0,0 -k1,3316:30127485,14882154:148022 -k1,3316:31084876,14882154:148021 -k1,3316:32583029,14882154:0 -) -(1,3317:6630773,15723642:25952256,513147,126483 -h1,3316:7427691,15723642:0,0,0 -k1,3316:8082536,15723642:274081 -k1,3316:9310166,15723642:274081 -k1,3316:10716709,15723642:274081 -k1,3316:12321171,15723642:274081 -k1,3316:14358826,15723642:274081 -k1,3316:15651992,15723642:274081 -k1,3316:17579546,15723642:274081 -k1,3316:19439597,15723642:274080 -k1,3316:20329716,15723642:274081 -k1,3316:21776236,15723642:274081 -k1,3316:25899246,15723642:274081 -k1,3316:27370014,15723642:274081 -k1,3316:28950228,15723642:274081 -k1,3316:29907194,15723642:274081 -k1,3316:32583029,15723642:0 -) -(1,3317:6630773,16565130:25952256,505283,134348 -k1,3316:9629907,16565130:259729 -k1,3316:11867513,16565130:259729 -k1,3316:16090858,16565130:259728 -k1,3316:17002015,16565130:259729 -k1,3316:18795942,16565130:259729 -k1,3316:20247116,16565130:259729 -k1,3316:21525929,16565130:259728 -k1,3316:24026989,16565130:259729 -k1,3316:25443428,16565130:259729 -k1,3316:26354585,16565130:259729 -k1,3316:29501174,16565130:259728 -k1,3316:30485731,16565130:259729 -k1,3316:31160242,16565130:259668 -k1,3316:32583029,16565130:0 -) -(1,3317:6630773,17406618:25952256,513147,134348 -k1,3316:7228789,17406618:242156 -k1,3316:10524266,17406618:242155 -k1,3316:14296191,17406618:242156 -k1,3316:15485997,17406618:242155 -k1,3316:18641228,17406618:242156 -k1,3316:21299040,17406618:242155 -k1,3316:24280601,17406618:242156 -k1,3316:26830934,17406618:242155 -k1,3316:28064650,17406618:242156 -k1,3316:31896867,17406618:242155 -k1,3316:32583029,17406618:0 -) -(1,3317:6630773,18248106:25952256,505283,134348 -g1,3316:9558266,18248106 -g1,3316:11922149,18248106 -g1,3316:12898635,18248106 -g1,3316:14611746,18248106 -g1,3316:16002420,18248106 -g1,3316:18366303,18248106 -g1,3316:19342789,18248106 -g1,3316:22324676,18248106 -k1,3317:32583029,18248106:6288182 -g1,3317:32583029,18248106 -) -v1,3319:6630773,19438572:0,393216,0 -(1,3364:6630773,37999716:25952256,18954360,196608 -g1,3364:6630773,37999716 -g1,3364:6630773,37999716 -g1,3364:6434165,37999716 -(1,3364:6434165,37999716:0,18954360,196608 -r1,3441:32779637,37999716:26345472,19150968,196608 -k1,3364:6434165,37999716:-26345472 -) -(1,3364:6434165,37999716:26345472,18954360,196608 -[1,3364:6630773,37999716:25952256,18757752,0 -(1,3321:6630773,19646190:25952256,404226,82312 -(1,3320:6630773,19646190:0,0,0 -g1,3320:6630773,19646190 -g1,3320:6630773,19646190 -g1,3320:6303093,19646190 -(1,3320:6303093,19646190:0,0,0 -) -g1,3320:6630773,19646190 -) -k1,3321:6630773,19646190:0 -g1,3321:8211502,19646190 -h1,3321:8527648,19646190:0,0,0 -k1,3321:32583028,19646190:24055380 -g1,3321:32583028,19646190 -) -(1,3325:6630773,20377904:25952256,404226,76021 -(1,3323:6630773,20377904:0,0,0 -g1,3323:6630773,20377904 -g1,3323:6630773,20377904 -g1,3323:6303093,20377904 -(1,3323:6303093,20377904:0,0,0 -) -g1,3323:6630773,20377904 -) -g1,3325:7579210,20377904 -g1,3325:8843793,20377904 -g1,3325:9159939,20377904 -g1,3325:9792231,20377904 -g1,3325:10108377,20377904 -g1,3325:10740669,20377904 -g1,3325:11689106,20377904 -h1,3325:12321397,20377904:0,0,0 -k1,3325:32583029,20377904:20261632 -g1,3325:32583029,20377904 -) -(1,3327:6630773,21699442:25952256,404226,82312 -(1,3326:6630773,21699442:0,0,0 -g1,3326:6630773,21699442 -g1,3326:6630773,21699442 -g1,3326:6303093,21699442 -(1,3326:6303093,21699442:0,0,0 -) -g1,3326:6630773,21699442 -) -g1,3327:7579210,21699442 -g1,3327:8211502,21699442 -h1,3327:8843794,21699442:0,0,0 -k1,3327:32583030,21699442:23739236 -g1,3327:32583030,21699442 -) -(1,3331:6630773,22431156:25952256,404226,76021 -(1,3329:6630773,22431156:0,0,0 -g1,3329:6630773,22431156 -g1,3329:6630773,22431156 -g1,3329:6303093,22431156 -(1,3329:6303093,22431156:0,0,0 -) -g1,3329:6630773,22431156 -) -g1,3331:7579210,22431156 -g1,3331:8843793,22431156 -g1,3331:9476085,22431156 -g1,3331:10108377,22431156 -g1,3331:10740669,22431156 -g1,3331:11372961,22431156 -h1,3331:11689107,22431156:0,0,0 -k1,3331:32583029,22431156:20893922 -g1,3331:32583029,22431156 -) -(1,3333:6630773,23752694:25952256,404226,82312 -(1,3332:6630773,23752694:0,0,0 -g1,3332:6630773,23752694 -g1,3332:6630773,23752694 -g1,3332:6303093,23752694 -(1,3332:6303093,23752694:0,0,0 -) -g1,3332:6630773,23752694 -) -k1,3333:6630773,23752694:0 -g1,3333:8843794,23752694 -k1,3333:8843794,23752694:0 -h1,3333:11056815,23752694:0,0,0 -k1,3333:32583029,23752694:21526214 -g1,3333:32583029,23752694 -) -(1,3339:6630773,24484408:25952256,404226,82312 -(1,3335:6630773,24484408:0,0,0 -g1,3335:6630773,24484408 -g1,3335:6630773,24484408 -g1,3335:6303093,24484408 -(1,3335:6303093,24484408:0,0,0 -) -g1,3335:6630773,24484408 -) -g1,3339:7579210,24484408 -g1,3339:7895356,24484408 -g1,3339:8211502,24484408 -g1,3339:8527648,24484408 -g1,3339:8843794,24484408 -g1,3339:9159940,24484408 -g1,3339:10740669,24484408 -k1,3339:10740669,24484408:0 -h1,3339:12005252,24484408:0,0,0 -k1,3339:32583028,24484408:20577776 -g1,3339:32583028,24484408 -) -(1,3339:6630773,25150586:25952256,404226,82312 -h1,3339:6630773,25150586:0,0,0 -g1,3339:7579210,25150586 -g1,3339:9159938,25150586 -g1,3339:9476084,25150586 -g1,3339:9792230,25150586 -g1,3339:10108376,25150586 -g1,3339:10740668,25150586 -g1,3339:11056814,25150586 -g1,3339:11372960,25150586 -h1,3339:12005251,25150586:0,0,0 -k1,3339:32583029,25150586:20577778 -g1,3339:32583029,25150586 -) -(1,3339:6630773,25816764:25952256,404226,82312 -h1,3339:6630773,25816764:0,0,0 -g1,3339:7579210,25816764 -g1,3339:9159938,25816764 -g1,3339:9476084,25816764 -g1,3339:9792230,25816764 -g1,3339:10108376,25816764 -g1,3339:10740668,25816764 -g1,3339:11056814,25816764 -g1,3339:11372960,25816764 -h1,3339:12005251,25816764:0,0,0 -k1,3339:32583029,25816764:20577778 -g1,3339:32583029,25816764 -) -(1,3341:6630773,27138302:25952256,404226,82312 -(1,3340:6630773,27138302:0,0,0 -g1,3340:6630773,27138302 -g1,3340:6630773,27138302 -g1,3340:6303093,27138302 -(1,3340:6303093,27138302:0,0,0 -) -g1,3340:6630773,27138302 -) -k1,3341:6630773,27138302:0 -g1,3341:8211502,27138302 -g1,3341:9159940,27138302 -g1,3341:10108378,27138302 -h1,3341:10740669,27138302:0,0,0 -k1,3341:32583029,27138302:21842360 -g1,3341:32583029,27138302 -) -(1,3342:6630773,27804480:25952256,328204,0 -h1,3342:6630773,27804480:0,0,0 -h1,3342:6946919,27804480:0,0,0 -k1,3342:32583029,27804480:25636110 -g1,3342:32583029,27804480 -) -(1,3351:6630773,28536194:25952256,404226,82312 -(1,3344:6630773,28536194:0,0,0 -g1,3344:6630773,28536194 -g1,3344:6630773,28536194 -g1,3344:6303093,28536194 -(1,3344:6303093,28536194:0,0,0 -) -g1,3344:6630773,28536194 -) -g1,3351:7579210,28536194 -g1,3351:7895356,28536194 -g1,3351:8211502,28536194 -g1,3351:8527648,28536194 -g1,3351:8843794,28536194 -g1,3351:9159940,28536194 -g1,3351:10740669,28536194 -g1,3351:12321398,28536194 -g1,3351:13902127,28536194 -k1,3351:13902127,28536194:0 -h1,3351:15166710,28536194:0,0,0 -k1,3351:32583030,28536194:17416320 -g1,3351:32583030,28536194 -) -(1,3351:6630773,29202372:25952256,404226,82312 -h1,3351:6630773,29202372:0,0,0 -g1,3351:7579210,29202372 -g1,3351:9159938,29202372 -g1,3351:9476084,29202372 -g1,3351:9792230,29202372 -g1,3351:10108376,29202372 -g1,3351:10740668,29202372 -g1,3351:11056814,29202372 -g1,3351:11372960,29202372 -g1,3351:11689106,29202372 -g1,3351:12321398,29202372 -g1,3351:12637544,29202372 -g1,3351:12953690,29202372 -g1,3351:13902127,29202372 -g1,3351:14218273,29202372 -g1,3351:14534419,29202372 -h1,3351:15166710,29202372:0,0,0 -k1,3351:32583030,29202372:17416320 -g1,3351:32583030,29202372 -) -(1,3351:6630773,29868550:25952256,404226,82312 -h1,3351:6630773,29868550:0,0,0 -g1,3351:7579210,29868550 -g1,3351:9159938,29868550 -g1,3351:9476084,29868550 -g1,3351:9792230,29868550 -g1,3351:10108376,29868550 -g1,3351:10740668,29868550 -g1,3351:11056814,29868550 -g1,3351:11372960,29868550 -g1,3351:11689106,29868550 -g1,3351:12321398,29868550 -g1,3351:12637544,29868550 -g1,3351:12953690,29868550 -g1,3351:13902127,29868550 -g1,3351:14218273,29868550 -g1,3351:14534419,29868550 -h1,3351:15166710,29868550:0,0,0 -k1,3351:32583030,29868550:17416320 -g1,3351:32583030,29868550 -) -(1,3351:6630773,30534728:25952256,404226,82312 -h1,3351:6630773,30534728:0,0,0 -g1,3351:7579210,30534728 -g1,3351:9159938,30534728 -g1,3351:9476084,30534728 -g1,3351:9792230,30534728 -g1,3351:10108376,30534728 -g1,3351:10740668,30534728 -g1,3351:11056814,30534728 -g1,3351:11372960,30534728 -g1,3351:11689106,30534728 -g1,3351:12321398,30534728 -g1,3351:12637544,30534728 -g1,3351:12953690,30534728 -g1,3351:13902127,30534728 -g1,3351:14218273,30534728 -g1,3351:14534419,30534728 -h1,3351:15166710,30534728:0,0,0 -k1,3351:32583030,30534728:17416320 -g1,3351:32583030,30534728 -) -(1,3351:6630773,31200906:25952256,404226,82312 -h1,3351:6630773,31200906:0,0,0 -g1,3351:7579210,31200906 -g1,3351:9159938,31200906 -g1,3351:9476084,31200906 -g1,3351:9792230,31200906 -g1,3351:10108376,31200906 -g1,3351:10740668,31200906 -g1,3351:11056814,31200906 -g1,3351:11372960,31200906 -g1,3351:11689106,31200906 -g1,3351:12321398,31200906 -g1,3351:12637544,31200906 -g1,3351:12953690,31200906 -g1,3351:13902127,31200906 -g1,3351:14218273,31200906 -g1,3351:14534419,31200906 -h1,3351:15166710,31200906:0,0,0 -k1,3351:32583030,31200906:17416320 -g1,3351:32583030,31200906 -) -(1,3351:6630773,31867084:25952256,404226,82312 -h1,3351:6630773,31867084:0,0,0 -g1,3351:7579210,31867084 -g1,3351:9159938,31867084 -g1,3351:9476084,31867084 -g1,3351:9792230,31867084 -g1,3351:10108376,31867084 -g1,3351:10740668,31867084 -g1,3351:11056814,31867084 -g1,3351:11372960,31867084 -g1,3351:12321397,31867084 -g1,3351:12637543,31867084 -g1,3351:12953689,31867084 -g1,3351:13902126,31867084 -g1,3351:14218272,31867084 -g1,3351:14534418,31867084 -h1,3351:15166709,31867084:0,0,0 -k1,3351:32583029,31867084:17416320 -g1,3351:32583029,31867084 -) -(1,3353:6630773,33188622:25952256,404226,82312 -(1,3352:6630773,33188622:0,0,0 -g1,3352:6630773,33188622 -g1,3352:6630773,33188622 -g1,3352:6303093,33188622 -(1,3352:6303093,33188622:0,0,0 -) -g1,3352:6630773,33188622 -) -k1,3353:6630773,33188622:0 -g1,3353:8843794,33188622 -g1,3353:10424524,33188622 -g1,3353:11372962,33188622 -g1,3353:13585983,33188622 -h1,3353:14850567,33188622:0,0,0 -k1,3353:32583029,33188622:17732462 -g1,3353:32583029,33188622 -) -(1,3354:6630773,33854800:25952256,328204,0 -h1,3354:6630773,33854800:0,0,0 -h1,3354:6946919,33854800:0,0,0 -k1,3354:32583029,33854800:25636110 -g1,3354:32583029,33854800 -) -(1,3363:6630773,34586514:25952256,404226,82312 -(1,3356:6630773,34586514:0,0,0 -g1,3356:6630773,34586514 -g1,3356:6630773,34586514 -g1,3356:6303093,34586514 -(1,3356:6303093,34586514:0,0,0 -) -g1,3356:6630773,34586514 -) -g1,3363:7579210,34586514 -g1,3363:7895356,34586514 -g1,3363:8211502,34586514 -g1,3363:8527648,34586514 -g1,3363:8843794,34586514 -g1,3363:9159940,34586514 -g1,3363:10740669,34586514 -g1,3363:12321398,34586514 -g1,3363:13902127,34586514 -k1,3363:13902127,34586514:0 -h1,3363:15166710,34586514:0,0,0 -k1,3363:32583030,34586514:17416320 -g1,3363:32583030,34586514 -) -(1,3363:6630773,35252692:25952256,404226,82312 -h1,3363:6630773,35252692:0,0,0 -g1,3363:7579210,35252692 -g1,3363:9159938,35252692 -g1,3363:9476084,35252692 -g1,3363:9792230,35252692 -g1,3363:10108376,35252692 -g1,3363:10740668,35252692 -g1,3363:11056814,35252692 -g1,3363:11372960,35252692 -g1,3363:11689106,35252692 -g1,3363:12321398,35252692 -g1,3363:12637544,35252692 -g1,3363:12953690,35252692 -g1,3363:13902127,35252692 -g1,3363:14218273,35252692 -g1,3363:14534419,35252692 -h1,3363:15166710,35252692:0,0,0 -k1,3363:32583030,35252692:17416320 -g1,3363:32583030,35252692 -) -(1,3363:6630773,35918870:25952256,404226,82312 -h1,3363:6630773,35918870:0,0,0 -g1,3363:7579210,35918870 -g1,3363:9159938,35918870 -g1,3363:9476084,35918870 -g1,3363:9792230,35918870 -g1,3363:10108376,35918870 -g1,3363:10740668,35918870 -g1,3363:11056814,35918870 -g1,3363:11372960,35918870 -g1,3363:11689106,35918870 -g1,3363:12321398,35918870 -g1,3363:12637544,35918870 -g1,3363:12953690,35918870 -g1,3363:13902127,35918870 -g1,3363:14218273,35918870 -g1,3363:14534419,35918870 -h1,3363:15166710,35918870:0,0,0 -k1,3363:32583030,35918870:17416320 -g1,3363:32583030,35918870 -) -(1,3363:6630773,36585048:25952256,404226,82312 -h1,3363:6630773,36585048:0,0,0 -g1,3363:7579210,36585048 -g1,3363:9159938,36585048 -g1,3363:9476084,36585048 -g1,3363:9792230,36585048 -g1,3363:10108376,36585048 -g1,3363:10740668,36585048 -g1,3363:11056814,36585048 -g1,3363:11372960,36585048 -g1,3363:11689106,36585048 -g1,3363:12321398,36585048 -g1,3363:12637544,36585048 -g1,3363:12953690,36585048 -g1,3363:13902127,36585048 -g1,3363:14218273,36585048 -g1,3363:14534419,36585048 -h1,3363:15166710,36585048:0,0,0 -k1,3363:32583030,36585048:17416320 -g1,3363:32583030,36585048 -) -(1,3363:6630773,37251226:25952256,404226,82312 -h1,3363:6630773,37251226:0,0,0 -g1,3363:7579210,37251226 -g1,3363:9159938,37251226 -g1,3363:9476084,37251226 -g1,3363:9792230,37251226 -g1,3363:10108376,37251226 -g1,3363:10740668,37251226 -g1,3363:11056814,37251226 -g1,3363:11372960,37251226 -g1,3363:11689106,37251226 -g1,3363:12321398,37251226 -g1,3363:12637544,37251226 -g1,3363:12953690,37251226 -g1,3363:13902127,37251226 -g1,3363:14218273,37251226 -g1,3363:14534419,37251226 -h1,3363:15166710,37251226:0,0,0 -k1,3363:32583030,37251226:17416320 -g1,3363:32583030,37251226 -) -(1,3363:6630773,37917404:25952256,404226,82312 -h1,3363:6630773,37917404:0,0,0 -g1,3363:7579210,37917404 -g1,3363:9159938,37917404 -g1,3363:9476084,37917404 -g1,3363:9792230,37917404 -g1,3363:10108376,37917404 -g1,3363:10740668,37917404 -g1,3363:11056814,37917404 -g1,3363:11372960,37917404 -g1,3363:12321397,37917404 -g1,3363:12637543,37917404 -g1,3363:12953689,37917404 -g1,3363:13902126,37917404 -g1,3363:14218272,37917404 -g1,3363:14534418,37917404 -h1,3363:15166709,37917404:0,0,0 -k1,3363:32583029,37917404:17416320 -g1,3363:32583029,37917404 -) -] -) -g1,3364:32583029,37999716 -g1,3364:6630773,37999716 -g1,3364:6630773,37999716 -g1,3364:32583029,37999716 -g1,3364:32583029,37999716 -) -h1,3364:6630773,38196324:0,0,0 -v1,3368:6630773,40086388:0,393216,0 -(1,3441:6630773,41693294:25952256,2000122,589824 -g1,3441:6630773,41693294 -(1,3441:6630773,41693294:25952256,2000122,589824 -(1,3441:6630773,42283118:25952256,2589946,0 -[1,3441:6630773,42283118:25952256,2589946,0 -(1,3441:6630773,42283118:25952256,2563732,0 -r1,3441:6656987,42283118:26214,2563732,0 -[1,3441:6656987,42283118:25899828,2563732,0 -(1,3441:6656987,41693294:25899828,1384084,0 -[1,3441:7246811,41693294:24720180,1384084,0 -(1,3369:7246811,41394746:24720180,1085536,298548 -(1,3368:7246811,41394746:0,1085536,298548 -r1,3441:8753226,41394746:1506415,1384084,298548 -k1,3368:7246811,41394746:-1506415 -) -(1,3368:7246811,41394746:1506415,1085536,298548 -) -k1,3368:8887705,41394746:134479 -k1,3368:11699331,41394746:134480 -k1,3368:12938092,41394746:134479 -k1,3368:13820338,41394746:134480 -k1,3368:16472055,41394746:134479 -k1,3368:17292697,41394746:134480 -k1,3368:19909024,41394746:134479 -k1,3368:22503726,41394746:134480 -k1,3368:25759029,41394746:134479 -k1,3368:26664212,41394746:134480 -k1,3368:28405634,41394746:134479 -k1,3368:29222999,41394746:134480 -k1,3369:31966991,41394746:0 -k1,3369:31966991,41394746:0 -) -] -) -] -r1,3441:32583029,42283118:26214,2563732,0 -) -] -) -) -g1,3441:32583029,41693294 -) -] -(1,3441:32583029,45706769:0,0,0 -g1,3441:32583029,45706769 -) -) -] -(1,3441:6630773,47279633:25952256,0,0 -h1,3441:6630773,47279633:25952256,0,0 -) -] -(1,3441:4262630,4025873:0,0,0 -[1,3441:-473656,4025873:0,0,0 -(1,3441:-473656,-710413:0,0,0 -(1,3441:-473656,-710413:0,0,0 -g1,3441:-473656,-710413 -) -g1,3441:-473656,-710413 -) -] -) -] -!23893 -}68 -Input:523:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:524:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!193 -{69 -[1,3491:4262630,47279633:28320399,43253760,0 -(1,3491:4262630,4025873:0,0,0 -[1,3491:-473656,4025873:0,0,0 -(1,3491:-473656,-710413:0,0,0 -(1,3491:-473656,-644877:0,0,0 -k1,3491:-473656,-644877:-65536 -) -(1,3491:-473656,4736287:0,0,0 -k1,3491:-473656,4736287:5209943 -) -g1,3491:-473656,-710413 -) -] -) -[1,3491:6630773,47279633:25952256,43253760,0 -[1,3491:6630773,4812305:25952256,786432,0 -(1,3491:6630773,4812305:25952256,505283,134348 -(1,3491:6630773,4812305:25952256,505283,134348 -g1,3491:3078558,4812305 -[1,3491:3078558,4812305:0,0,0 -(1,3491:3078558,2439708:0,1703936,0 -k1,3491:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,3491:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,3491:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,3491:3078558,4812305:0,0,0 -(1,3491:3078558,2439708:0,1703936,0 -g1,3491:29030814,2439708 -g1,3491:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,3491:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,3491:37855564,2439708:1179648,16384,0 -) -) -k1,3491:3078556,2439708:-34777008 -) -] -[1,3491:3078558,4812305:0,0,0 -(1,3491:3078558,49800853:0,16384,2228224 -k1,3491:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,3491:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,3491:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,3491:3078558,4812305:0,0,0 -(1,3491:3078558,49800853:0,16384,2228224 -g1,3491:29030814,49800853 -g1,3491:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,3491:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,3491:37855564,49800853:1179648,16384,0 -) -) -k1,3491:3078556,49800853:-34777008 -) -] -g1,3491:6630773,4812305 -k1,3491:19515153,4812305:12087462 -g1,3491:20901894,4812305 -g1,3491:21550700,4812305 -g1,3491:24864855,4812305 -g1,3491:27600327,4812305 -g1,3491:29010006,4812305 -) -) -] -[1,3491:6630773,45706769:25952256,40108032,0 -(1,3491:6630773,45706769:25952256,40108032,0 -(1,3491:6630773,45706769:0,0,0 -g1,3491:6630773,45706769 -) -[1,3491:6630773,45706769:25952256,40108032,0 -v1,3441:6630773,6254097:0,393216,0 -(1,3441:6630773,34344997:25952256,28484116,616038 -g1,3441:6630773,34344997 -(1,3441:6630773,34344997:25952256,28484116,616038 -(1,3441:6630773,34961035:25952256,29100154,0 -[1,3441:6630773,34961035:25952256,29100154,0 -(1,3441:6630773,34934821:25952256,29073940,0 -r1,3491:6656987,34934821:26214,29073940,0 -[1,3441:6656987,34934821:25899828,29073940,0 -(1,3441:6656987,34344997:25899828,27894292,0 -[1,3441:7246811,34344997:24720180,27894292,0 -v1,3371:7246811,6843921:0,393216,0 -(1,3402:7246811,18016098:24720180,11565393,196608 -g1,3402:7246811,18016098 -g1,3402:7246811,18016098 -g1,3402:7050203,18016098 -(1,3402:7050203,18016098:0,11565393,196608 -r1,3491:32163599,18016098:25113396,11762001,196608 -k1,3402:7050203,18016098:-25113396 -) -(1,3402:7050203,18016098:25113396,11565393,196608 -[1,3402:7246811,18016098:24720180,11368785,0 -(1,3373:7246811,7051539:24720180,404226,82312 -(1,3372:7246811,7051539:0,0,0 -g1,3372:7246811,7051539 -g1,3372:7246811,7051539 -g1,3372:6919131,7051539 -(1,3372:6919131,7051539:0,0,0 -) -g1,3372:7246811,7051539 -) -g1,3373:7879103,7051539 -g1,3373:8827541,7051539 -g1,3373:12937436,7051539 -g1,3373:14518165,7051539 -g1,3373:15150457,7051539 -h1,3373:15782749,7051539:0,0,0 -k1,3373:31966991,7051539:16184242 -g1,3373:31966991,7051539 -) -(1,3374:7246811,7717717:24720180,328204,0 -h1,3374:7246811,7717717:0,0,0 -h1,3374:7562957,7717717:0,0,0 -k1,3374:31966991,7717717:24404034 -g1,3374:31966991,7717717 -) -(1,3383:7246811,8449431:24720180,404226,82312 -(1,3376:7246811,8449431:0,0,0 -g1,3376:7246811,8449431 -g1,3376:7246811,8449431 -g1,3376:6919131,8449431 -(1,3376:6919131,8449431:0,0,0 -) -g1,3376:7246811,8449431 -) -g1,3383:8195248,8449431 -g1,3383:8511394,8449431 -g1,3383:8827540,8449431 -g1,3383:9143686,8449431 -g1,3383:9459832,8449431 -g1,3383:9775978,8449431 -g1,3383:11356707,8449431 -g1,3383:12937436,8449431 -g1,3383:14518165,8449431 -k1,3383:14518165,8449431:0 -h1,3383:15782748,8449431:0,0,0 -k1,3383:31966991,8449431:16184243 -g1,3383:31966991,8449431 -) -(1,3383:7246811,9115609:24720180,404226,82312 -h1,3383:7246811,9115609:0,0,0 -g1,3383:8195248,9115609 -g1,3383:9775976,9115609 -g1,3383:10092122,9115609 -g1,3383:10408268,9115609 -g1,3383:10724414,9115609 -g1,3383:11356706,9115609 -g1,3383:11672852,9115609 -g1,3383:11988998,9115609 -g1,3383:12305144,9115609 -g1,3383:12937436,9115609 -g1,3383:13253582,9115609 -g1,3383:13569728,9115609 -g1,3383:14518165,9115609 -g1,3383:14834311,9115609 -g1,3383:15150457,9115609 -h1,3383:15782748,9115609:0,0,0 -k1,3383:31966991,9115609:16184243 -g1,3383:31966991,9115609 -) -(1,3383:7246811,9781787:24720180,404226,82312 -h1,3383:7246811,9781787:0,0,0 -g1,3383:8195248,9781787 -g1,3383:9775976,9781787 -g1,3383:10092122,9781787 -g1,3383:10408268,9781787 -g1,3383:10724414,9781787 -g1,3383:11356706,9781787 -g1,3383:11672852,9781787 -g1,3383:11988998,9781787 -g1,3383:12305144,9781787 -g1,3383:12937436,9781787 -g1,3383:13253582,9781787 -g1,3383:13569728,9781787 -g1,3383:14518165,9781787 -g1,3383:14834311,9781787 -g1,3383:15150457,9781787 -h1,3383:15782748,9781787:0,0,0 -k1,3383:31966991,9781787:16184243 -g1,3383:31966991,9781787 -) -(1,3383:7246811,10447965:24720180,404226,82312 -h1,3383:7246811,10447965:0,0,0 -g1,3383:8195248,10447965 -g1,3383:9775976,10447965 -g1,3383:10092122,10447965 -g1,3383:10408268,10447965 -g1,3383:10724414,10447965 -g1,3383:11356706,10447965 -g1,3383:11672852,10447965 -g1,3383:11988998,10447965 -g1,3383:12305144,10447965 -g1,3383:12937436,10447965 -g1,3383:13253582,10447965 -g1,3383:13569728,10447965 -g1,3383:14518165,10447965 -g1,3383:14834311,10447965 -g1,3383:15150457,10447965 -h1,3383:15782748,10447965:0,0,0 -k1,3383:31966991,10447965:16184243 -g1,3383:31966991,10447965 -) -(1,3383:7246811,11114143:24720180,404226,82312 -h1,3383:7246811,11114143:0,0,0 -g1,3383:8195248,11114143 -g1,3383:9775976,11114143 -g1,3383:10092122,11114143 -g1,3383:10408268,11114143 -g1,3383:10724414,11114143 -g1,3383:11356706,11114143 -g1,3383:11672852,11114143 -g1,3383:11988998,11114143 -g1,3383:12305144,11114143 -g1,3383:12937436,11114143 -g1,3383:13253582,11114143 -g1,3383:13569728,11114143 -g1,3383:14518165,11114143 -g1,3383:14834311,11114143 -g1,3383:15150457,11114143 -h1,3383:15782748,11114143:0,0,0 -k1,3383:31966991,11114143:16184243 -g1,3383:31966991,11114143 -) -(1,3383:7246811,11780321:24720180,404226,82312 -h1,3383:7246811,11780321:0,0,0 -g1,3383:8195248,11780321 -g1,3383:9775976,11780321 -g1,3383:10092122,11780321 -g1,3383:10408268,11780321 -g1,3383:10724414,11780321 -g1,3383:11356706,11780321 -g1,3383:11672852,11780321 -g1,3383:11988998,11780321 -g1,3383:12937435,11780321 -g1,3383:13253581,11780321 -g1,3383:13569727,11780321 -g1,3383:14518164,11780321 -g1,3383:14834310,11780321 -g1,3383:15150456,11780321 -h1,3383:15782747,11780321:0,0,0 -k1,3383:31966991,11780321:16184244 -g1,3383:31966991,11780321 -) -(1,3385:7246811,13101859:24720180,404226,76021 -(1,3384:7246811,13101859:0,0,0 -g1,3384:7246811,13101859 -g1,3384:7246811,13101859 -g1,3384:6919131,13101859 -(1,3384:6919131,13101859:0,0,0 -) -g1,3384:7246811,13101859 -) -k1,3385:7246811,13101859:0 -h1,3385:9143685,13101859:0,0,0 -k1,3385:31966991,13101859:22823306 -g1,3385:31966991,13101859 -) -(1,3389:7246811,13833573:24720180,404226,76021 -(1,3387:7246811,13833573:0,0,0 -g1,3387:7246811,13833573 -g1,3387:7246811,13833573 -g1,3387:6919131,13833573 -(1,3387:6919131,13833573:0,0,0 -) -g1,3387:7246811,13833573 -) -g1,3389:8195248,13833573 -g1,3389:9459831,13833573 -g1,3389:10092123,13833573 -h1,3389:10408269,13833573:0,0,0 -k1,3389:31966991,13833573:21558722 -g1,3389:31966991,13833573 -) -(1,3391:7246811,15155111:24720180,404226,76021 -(1,3390:7246811,15155111:0,0,0 -g1,3390:7246811,15155111 -g1,3390:7246811,15155111 -g1,3390:6919131,15155111 -(1,3390:6919131,15155111:0,0,0 -) -g1,3390:7246811,15155111 -) -h1,3391:8827539,15155111:0,0,0 -k1,3391:31966991,15155111:23139452 -g1,3391:31966991,15155111 -) -(1,3395:7246811,15886825:24720180,404226,76021 -(1,3393:7246811,15886825:0,0,0 -g1,3393:7246811,15886825 -g1,3393:7246811,15886825 -g1,3393:6919131,15886825 -(1,3393:6919131,15886825:0,0,0 -) -g1,3393:7246811,15886825 -) -g1,3395:8195248,15886825 -g1,3395:9459831,15886825 -h1,3395:10092122,15886825:0,0,0 -k1,3395:31966990,15886825:21874868 -g1,3395:31966990,15886825 -) -(1,3397:7246811,17208363:24720180,404226,82312 -(1,3396:7246811,17208363:0,0,0 -g1,3396:7246811,17208363 -g1,3396:7246811,17208363 -g1,3396:6919131,17208363 -(1,3396:6919131,17208363:0,0,0 -) -g1,3396:7246811,17208363 -) -k1,3397:7246811,17208363:0 -g1,3397:8827540,17208363 -h1,3397:9459832,17208363:0,0,0 -k1,3397:31966992,17208363:22507160 -g1,3397:31966992,17208363 -) -(1,3401:7246811,17940077:24720180,404226,76021 -(1,3399:7246811,17940077:0,0,0 -g1,3399:7246811,17940077 -g1,3399:7246811,17940077 -g1,3399:6919131,17940077 -(1,3399:6919131,17940077:0,0,0 -) -g1,3399:7246811,17940077 -) -g1,3401:8195248,17940077 -g1,3401:9459831,17940077 -h1,3401:10092122,17940077:0,0,0 -k1,3401:31966990,17940077:21874868 -g1,3401:31966990,17940077 -) -] -) -g1,3402:31966991,18016098 -g1,3402:7246811,18016098 -g1,3402:7246811,18016098 -g1,3402:31966991,18016098 -g1,3402:31966991,18016098 -) -h1,3402:7246811,18212706:0,0,0 -(1,3406:7246811,19578482:24720180,505283,134348 -h1,3405:7246811,19578482:983040,0,0 -k1,3405:9590596,19578482:164058 -k1,3405:11138775,19578482:164059 -k1,3405:12799020,19578482:164058 -k1,3405:15624496,19578482:164059 -k1,3405:20151941,19578482:164058 -k1,3405:21600506,19578482:164059 -k1,3405:24503969,19578482:164058 -k1,3405:25354190,19578482:164059 -k1,3405:25874108,19578482:164058 -k1,3405:28016044,19578482:164059 -k1,3405:29574053,19578482:164058 -k1,3405:30093972,19578482:164059 -k1,3405:31966991,19578482:0 -) -(1,3406:7246811,20419970:24720180,513147,134348 -k1,3405:9446993,20419970:277356 -k1,3405:11853614,20419970:277356 -k1,3405:14057729,20419970:277357 -k1,3405:18330815,20419970:277356 -k1,3405:20074867,20419970:277356 -k1,3405:20818184,20419970:277356 -k1,3405:23183517,20419970:277356 -(1,3405:23183517,20419970:0,414482,115847 -r1,3491:23541783,20419970:358266,530329,115847 -k1,3405:23183517,20419970:-358266 -) -(1,3405:23183517,20419970:358266,414482,115847 -k1,3405:23183517,20419970:3277 -h1,3405:23538506,20419970:0,411205,112570 -) -k1,3405:23819139,20419970:277356 -k1,3405:25303669,20419970:277357 -k1,3405:27931146,20419970:277356 -k1,3405:28970030,20419970:277356 -k1,3405:31966991,20419970:0 -) -(1,3406:7246811,21261458:24720180,505283,126483 -g1,3405:9423917,21261458 -g1,3405:12492312,21261458 -g1,3405:13453069,21261458 -k1,3406:31966992,21261458:17136356 -g1,3406:31966992,21261458 -) -v1,3408:7246811,22451924:0,393216,0 -(1,3439:7246811,33624101:24720180,11565393,196608 -g1,3439:7246811,33624101 -g1,3439:7246811,33624101 -g1,3439:7050203,33624101 -(1,3439:7050203,33624101:0,11565393,196608 -r1,3491:32163599,33624101:25113396,11762001,196608 -k1,3439:7050203,33624101:-25113396 -) -(1,3439:7050203,33624101:25113396,11565393,196608 -[1,3439:7246811,33624101:24720180,11368785,0 -(1,3410:7246811,22659542:24720180,404226,101187 -(1,3409:7246811,22659542:0,0,0 -g1,3409:7246811,22659542 -g1,3409:7246811,22659542 -g1,3409:6919131,22659542 -(1,3409:6919131,22659542:0,0,0 -) -g1,3409:7246811,22659542 -) -g1,3410:7879103,22659542 -g1,3410:8827541,22659542 -g1,3410:12937436,22659542 -g1,3410:14518165,22659542 -g1,3410:15150457,22659542 -g1,3410:16098895,22659542 -g1,3410:17995769,22659542 -g1,3410:18628061,22659542 -h1,3410:20208790,22659542:0,0,0 -k1,3410:31966991,22659542:11758201 -g1,3410:31966991,22659542 -) -(1,3411:7246811,23325720:24720180,328204,0 -h1,3411:7246811,23325720:0,0,0 -h1,3411:7562957,23325720:0,0,0 -k1,3411:31966991,23325720:24404034 -g1,3411:31966991,23325720 -) -(1,3420:7246811,24057434:24720180,404226,82312 -(1,3413:7246811,24057434:0,0,0 -g1,3413:7246811,24057434 -g1,3413:7246811,24057434 -g1,3413:6919131,24057434 -(1,3413:6919131,24057434:0,0,0 -) -g1,3413:7246811,24057434 -) -g1,3420:8195248,24057434 -g1,3420:8511394,24057434 -g1,3420:8827540,24057434 -g1,3420:9143686,24057434 -g1,3420:9459832,24057434 -g1,3420:9775978,24057434 -g1,3420:11356707,24057434 -g1,3420:12937436,24057434 -g1,3420:14518165,24057434 -k1,3420:14518165,24057434:0 -h1,3420:15782748,24057434:0,0,0 -k1,3420:31966991,24057434:16184243 -g1,3420:31966991,24057434 -) -(1,3420:7246811,24723612:24720180,404226,82312 -h1,3420:7246811,24723612:0,0,0 -g1,3420:8195248,24723612 -g1,3420:9775976,24723612 -g1,3420:10092122,24723612 -g1,3420:10408268,24723612 -g1,3420:10724414,24723612 -g1,3420:11356706,24723612 -g1,3420:11672852,24723612 -g1,3420:11988998,24723612 -g1,3420:12305144,24723612 -g1,3420:12937436,24723612 -g1,3420:13253582,24723612 -g1,3420:13569728,24723612 -g1,3420:13885874,24723612 -g1,3420:14518166,24723612 -g1,3420:14834312,24723612 -g1,3420:15150458,24723612 -g1,3420:15466604,24723612 -h1,3420:15782750,24723612:0,0,0 -k1,3420:31966991,24723612:16184241 -g1,3420:31966991,24723612 -) -(1,3420:7246811,25389790:24720180,404226,82312 -h1,3420:7246811,25389790:0,0,0 -g1,3420:8195248,25389790 -g1,3420:9775976,25389790 -g1,3420:10092122,25389790 -g1,3420:10408268,25389790 -g1,3420:10724414,25389790 -g1,3420:11356706,25389790 -g1,3420:11672852,25389790 -g1,3420:11988998,25389790 -g1,3420:12305144,25389790 -g1,3420:12937436,25389790 -g1,3420:13253582,25389790 -g1,3420:13569728,25389790 -g1,3420:13885874,25389790 -g1,3420:14518166,25389790 -g1,3420:14834312,25389790 -g1,3420:15150458,25389790 -g1,3420:15466604,25389790 -h1,3420:15782750,25389790:0,0,0 -k1,3420:31966991,25389790:16184241 -g1,3420:31966991,25389790 -) -(1,3420:7246811,26055968:24720180,404226,82312 -h1,3420:7246811,26055968:0,0,0 -g1,3420:8195248,26055968 -g1,3420:9775976,26055968 -g1,3420:10092122,26055968 -g1,3420:10408268,26055968 -g1,3420:10724414,26055968 -g1,3420:11356706,26055968 -g1,3420:11672852,26055968 -g1,3420:11988998,26055968 -g1,3420:12937435,26055968 -g1,3420:13253581,26055968 -g1,3420:13569727,26055968 -g1,3420:14518164,26055968 -g1,3420:14834310,26055968 -g1,3420:15150456,26055968 -h1,3420:15782747,26055968:0,0,0 -k1,3420:31966991,26055968:16184244 -g1,3420:31966991,26055968 -) -(1,3420:7246811,26722146:24720180,404226,82312 -h1,3420:7246811,26722146:0,0,0 -g1,3420:8195248,26722146 -g1,3420:9775976,26722146 -g1,3420:10092122,26722146 -g1,3420:10408268,26722146 -g1,3420:11356705,26722146 -g1,3420:11672851,26722146 -g1,3420:11988997,26722146 -g1,3420:12937434,26722146 -g1,3420:13253580,26722146 -g1,3420:13569726,26722146 -g1,3420:14518163,26722146 -g1,3420:14834309,26722146 -g1,3420:15150455,26722146 -h1,3420:15782746,26722146:0,0,0 -k1,3420:31966991,26722146:16184245 -g1,3420:31966991,26722146 -) -(1,3420:7246811,27388324:24720180,404226,82312 -h1,3420:7246811,27388324:0,0,0 -g1,3420:8195248,27388324 -g1,3420:9775976,27388324 -g1,3420:10092122,27388324 -g1,3420:10408268,27388324 -g1,3420:11356705,27388324 -g1,3420:11672851,27388324 -g1,3420:11988997,27388324 -g1,3420:12937434,27388324 -g1,3420:13253580,27388324 -g1,3420:13569726,27388324 -g1,3420:14518163,27388324 -g1,3420:14834309,27388324 -g1,3420:15150455,27388324 -h1,3420:15782746,27388324:0,0,0 -k1,3420:31966991,27388324:16184245 -g1,3420:31966991,27388324 -) -(1,3422:7246811,28709862:24720180,404226,76021 -(1,3421:7246811,28709862:0,0,0 -g1,3421:7246811,28709862 -g1,3421:7246811,28709862 -g1,3421:6919131,28709862 -(1,3421:6919131,28709862:0,0,0 -) -g1,3421:7246811,28709862 -) -k1,3422:7246811,28709862:0 -h1,3422:9143685,28709862:0,0,0 -k1,3422:31966991,28709862:22823306 -g1,3422:31966991,28709862 -) -(1,3426:7246811,29441576:24720180,404226,76021 -(1,3424:7246811,29441576:0,0,0 -g1,3424:7246811,29441576 -g1,3424:7246811,29441576 -g1,3424:6919131,29441576 -(1,3424:6919131,29441576:0,0,0 -) -g1,3424:7246811,29441576 -) -g1,3426:8195248,29441576 -g1,3426:9459831,29441576 -g1,3426:10092123,29441576 -h1,3426:10408269,29441576:0,0,0 -k1,3426:31966991,29441576:21558722 -g1,3426:31966991,29441576 -) -(1,3428:7246811,30763114:24720180,404226,76021 -(1,3427:7246811,30763114:0,0,0 -g1,3427:7246811,30763114 -g1,3427:7246811,30763114 -g1,3427:6919131,30763114 -(1,3427:6919131,30763114:0,0,0 -) -g1,3427:7246811,30763114 -) -h1,3428:8827539,30763114:0,0,0 -k1,3428:31966991,30763114:23139452 -g1,3428:31966991,30763114 -) -(1,3432:7246811,31494828:24720180,404226,76021 -(1,3430:7246811,31494828:0,0,0 -g1,3430:7246811,31494828 -g1,3430:7246811,31494828 -g1,3430:6919131,31494828 -(1,3430:6919131,31494828:0,0,0 -) -g1,3430:7246811,31494828 -) -g1,3432:8195248,31494828 -g1,3432:9459831,31494828 -h1,3432:10092122,31494828:0,0,0 -k1,3432:31966990,31494828:21874868 -g1,3432:31966990,31494828 -) -(1,3434:7246811,32816366:24720180,404226,82312 -(1,3433:7246811,32816366:0,0,0 -g1,3433:7246811,32816366 -g1,3433:7246811,32816366 -g1,3433:6919131,32816366 -(1,3433:6919131,32816366:0,0,0 -) -g1,3433:7246811,32816366 -) -k1,3434:7246811,32816366:0 -g1,3434:8827540,32816366 -h1,3434:9459832,32816366:0,0,0 -k1,3434:31966992,32816366:22507160 -g1,3434:31966992,32816366 -) -(1,3438:7246811,33548080:24720180,404226,76021 -(1,3436:7246811,33548080:0,0,0 -g1,3436:7246811,33548080 -g1,3436:7246811,33548080 -g1,3436:6919131,33548080 -(1,3436:6919131,33548080:0,0,0 -) -g1,3436:7246811,33548080 -) -g1,3438:8195248,33548080 -g1,3438:9459831,33548080 -h1,3438:10092122,33548080:0,0,0 -k1,3438:31966990,33548080:21874868 -g1,3438:31966990,33548080 -) -] -) -g1,3439:31966991,33624101 -g1,3439:7246811,33624101 -g1,3439:7246811,33624101 -g1,3439:31966991,33624101 -g1,3439:31966991,33624101 -) -h1,3439:7246811,33820709:0,0,0 -] -) -] -r1,3491:32583029,34934821:26214,29073940,0 -) -] -) -) -g1,3441:32583029,34344997 -) -h1,3441:6630773,34961035:0,0,0 -v1,3444:6630773,36326811:0,393216,0 -(1,3491:6630773,42903500:25952256,6969905,589824 -g1,3491:6630773,42903500 -(1,3491:6630773,42903500:25952256,6969905,589824 -(1,3491:6630773,43493324:25952256,7559729,0 -[1,3491:6630773,43493324:25952256,7559729,0 -(1,3491:6630773,43493324:25952256,7533515,0 -r1,3491:6656987,43493324:26214,7533515,0 -[1,3491:6656987,43493324:25899828,7533515,0 -(1,3491:6656987,42903500:25899828,6353867,0 -[1,3491:7246811,42903500:24720180,6353867,0 -(1,3445:7246811,37711518:24720180,1161885,196608 -(1,3444:7246811,37711518:0,1161885,196608 -r1,3491:8794447,37711518:1547636,1358493,196608 -k1,3444:7246811,37711518:-1547636 -) -(1,3444:7246811,37711518:1547636,1161885,196608 -) -k1,3444:8985791,37711518:191344 -k1,3444:9804970,37711518:191344 -k1,3444:10584826,37711518:191343 -k1,3444:11132030,37711518:191344 -(1,3444:11132030,37711518:0,452978,115847 -r1,3491:13248855,37711518:2116825,568825,115847 -k1,3444:11132030,37711518:-2116825 -) -(1,3444:11132030,37711518:2116825,452978,115847 -k1,3444:11132030,37711518:3277 -h1,3444:13245578,37711518:0,411205,112570 -) -k1,3444:13440199,37711518:191344 -k1,3444:14735825,37711518:191344 -k1,3444:16402384,37711518:191344 -k1,3444:16949587,37711518:191343 -k1,3444:19013950,37711518:191344 -k1,3444:20582861,37711518:191344 -k1,3444:21130065,37711518:191344 -k1,3444:23194428,37711518:191344 -k1,3444:25942331,37711518:191344 -k1,3444:26489534,37711518:191343 -k1,3444:28553897,37711518:191344 -k1,3444:31284106,37711518:191344 -k1,3444:31966991,37711518:0 -) -(1,3445:7246811,38553006:24720180,513147,115847 -k1,3444:8231312,38553006:175131 -k1,3444:11449281,38553006:175132 -k1,3444:14559114,38553006:175131 -k1,3444:15350284,38553006:175132 -k1,3444:16291531,38553006:175131 -k1,3444:18337716,38553006:175132 -k1,3444:18868707,38553006:175131 -(1,3444:18868707,38553006:0,452978,115847 -r1,3491:20985532,38553006:2116825,568825,115847 -k1,3444:18868707,38553006:-2116825 -) -(1,3444:18868707,38553006:2116825,452978,115847 -k1,3444:18868707,38553006:3277 -h1,3444:20982255,38553006:0,411205,112570 -) -k1,3444:21160664,38553006:175132 -k1,3444:22468257,38553006:175131 -k1,3444:24118604,38553006:175132 -k1,3444:24649595,38553006:175131 -k1,3444:28353841,38553006:175132 -k1,3444:31307699,38553006:175131 -k1,3444:31966991,38553006:0 -) -(1,3445:7246811,39394494:24720180,513147,134348 -g1,3444:9459306,39394494 -g1,3444:10830974,39394494 -k1,3445:31966991,39394494:18580768 -g1,3445:31966991,39394494 -) -v1,3447:7246811,40584960:0,393216,0 -(1,3455:7246811,42182604:24720180,1990860,196608 -g1,3455:7246811,42182604 -g1,3455:7246811,42182604 -g1,3455:7050203,42182604 -(1,3455:7050203,42182604:0,1990860,196608 -r1,3491:32163599,42182604:25113396,2187468,196608 -k1,3455:7050203,42182604:-25113396 -) -(1,3455:7050203,42182604:25113396,1990860,196608 -[1,3455:7246811,42182604:24720180,1794252,0 -(1,3449:7246811,40776849:24720180,388497,101187 -(1,3448:7246811,40776849:0,0,0 -g1,3448:7246811,40776849 -g1,3448:7246811,40776849 -g1,3448:6919131,40776849 -(1,3448:6919131,40776849:0,0,0 -) -g1,3448:7246811,40776849 -) -g1,3449:10408268,40776849 -g1,3449:11356706,40776849 -h1,3449:12305144,40776849:0,0,0 -k1,3449:31966992,40776849:19661848 -g1,3449:31966992,40776849 -) -(1,3450:7246811,41443027:24720180,404226,101187 -h1,3450:7246811,41443027:0,0,0 -k1,3450:7246811,41443027:0 -h1,3450:11672850,41443027:0,0,0 -k1,3450:31966990,41443027:20294140 -g1,3450:31966990,41443027 -) -(1,3454:7246811,42174741:24720180,379060,7863 -(1,3452:7246811,42174741:0,0,0 -g1,3452:7246811,42174741 -g1,3452:7246811,42174741 -g1,3452:6919131,42174741 -(1,3452:6919131,42174741:0,0,0 -) -g1,3452:7246811,42174741 -) -g1,3454:8195248,42174741 -h1,3454:9459831,42174741:0,0,0 -k1,3454:31966991,42174741:22507160 -g1,3454:31966991,42174741 -) -] -) -g1,3455:31966991,42182604 -g1,3455:7246811,42182604 -g1,3455:7246811,42182604 -g1,3455:31966991,42182604 -g1,3455:31966991,42182604 -) -h1,3455:7246811,42379212:0,0,0 -] -) -] -r1,3491:32583029,43493324:26214,7533515,0 -) -] -) -) -g1,3491:32583029,42903500 -) -] -(1,3491:32583029,45706769:0,0,0 -g1,3491:32583029,45706769 -) -) -] -(1,3491:6630773,47279633:25952256,0,0 -h1,3491:6630773,47279633:25952256,0,0 -) -] -(1,3491:4262630,4025873:0,0,0 -[1,3491:-473656,4025873:0,0,0 -(1,3491:-473656,-710413:0,0,0 -(1,3491:-473656,-710413:0,0,0 -g1,3491:-473656,-710413 -) -g1,3491:-473656,-710413 -) -] -) -] -!22549 -}69 -Input:525:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:526:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:527:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:528:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!375 -{70 -[1,3566:4262630,47279633:28320399,43253760,0 -(1,3566:4262630,4025873:0,0,0 -[1,3566:-473656,4025873:0,0,0 -(1,3566:-473656,-710413:0,0,0 -(1,3566:-473656,-644877:0,0,0 -k1,3566:-473656,-644877:-65536 -) -(1,3566:-473656,4736287:0,0,0 -k1,3566:-473656,4736287:5209943 -) -g1,3566:-473656,-710413 -) -] -) -[1,3566:6630773,47279633:25952256,43253760,0 -[1,3566:6630773,4812305:25952256,786432,0 -(1,3566:6630773,4812305:25952256,505283,126483 -(1,3566:6630773,4812305:25952256,505283,126483 -g1,3566:3078558,4812305 -[1,3566:3078558,4812305:0,0,0 -(1,3566:3078558,2439708:0,1703936,0 -k1,3566:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,3566:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,3566:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,3566:3078558,4812305:0,0,0 -(1,3566:3078558,2439708:0,1703936,0 -g1,3566:29030814,2439708 -g1,3566:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,3566:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,3566:37855564,2439708:1179648,16384,0 -) -) -k1,3566:3078556,2439708:-34777008 -) -] -[1,3566:3078558,4812305:0,0,0 -(1,3566:3078558,49800853:0,16384,2228224 -k1,3566:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,3566:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,3566:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,3566:3078558,4812305:0,0,0 -(1,3566:3078558,49800853:0,16384,2228224 -g1,3566:29030814,49800853 -g1,3566:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,3566:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,3566:37855564,49800853:1179648,16384,0 -) -) -k1,3566:3078556,49800853:-34777008 -) -] -g1,3566:6630773,4812305 -g1,3566:6630773,4812305 -g1,3566:9472414,4812305 -g1,3566:10882093,4812305 -g1,3566:16529985,4812305 -g1,3566:18796220,4812305 -k1,3566:31786111,4812305:12989891 -) -) -] -[1,3566:6630773,45706769:25952256,40108032,0 -(1,3566:6630773,45706769:25952256,40108032,0 -(1,3566:6630773,45706769:0,0,0 -g1,3566:6630773,45706769 -) -[1,3566:6630773,45706769:25952256,40108032,0 -v1,3491:6630773,6254097:0,393216,0 -(1,3491:6630773,17404638:25952256,11543757,616038 -g1,3491:6630773,17404638 -(1,3491:6630773,17404638:25952256,11543757,616038 -(1,3491:6630773,18020676:25952256,12159795,0 -[1,3491:6630773,18020676:25952256,12159795,0 -(1,3491:6630773,17994462:25952256,12133581,0 -r1,3566:6656987,17994462:26214,12133581,0 -[1,3491:6656987,17994462:25899828,12133581,0 -(1,3491:6656987,17404638:25899828,10953933,0 -[1,3491:7246811,17404638:24720180,10953933,0 -v1,3459:7246811,6843921:0,393216,0 -(1,3488:7246811,16683742:24720180,10233037,196608 -g1,3488:7246811,16683742 -g1,3488:7246811,16683742 -g1,3488:7050203,16683742 -(1,3488:7050203,16683742:0,10233037,196608 -r1,3566:32163599,16683742:25113396,10429645,196608 -k1,3488:7050203,16683742:-25113396 -) -(1,3488:7050203,16683742:25113396,10233037,196608 -[1,3488:7246811,16683742:24720180,10036429,0 -(1,3461:7246811,7051539:24720180,404226,82312 -(1,3460:7246811,7051539:0,0,0 -g1,3460:7246811,7051539 -g1,3460:7246811,7051539 -g1,3460:6919131,7051539 -(1,3460:6919131,7051539:0,0,0 -) -g1,3460:7246811,7051539 -) -g1,3461:11988997,7051539 -g1,3461:12937435,7051539 -g1,3461:16731185,7051539 -g1,3461:18311914,7051539 -g1,3461:18944206,7051539 -h1,3461:19576498,7051539:0,0,0 -k1,3461:31966991,7051539:12390493 -g1,3461:31966991,7051539 -) -(1,3462:7246811,7717717:24720180,404226,76021 -h1,3462:7246811,7717717:0,0,0 -k1,3462:7246811,7717717:0 -h1,3462:13253579,7717717:0,0,0 -k1,3462:31966991,7717717:18713412 -g1,3462:31966991,7717717 -) -(1,3466:7246811,8449431:24720180,404226,76021 -(1,3464:7246811,8449431:0,0,0 -g1,3464:7246811,8449431 -g1,3464:7246811,8449431 -g1,3464:6919131,8449431 -(1,3464:6919131,8449431:0,0,0 -) -g1,3464:7246811,8449431 -) -g1,3466:8195248,8449431 -g1,3466:9459831,8449431 -g1,3466:10092123,8449431 -h1,3466:10408269,8449431:0,0,0 -k1,3466:31966991,8449431:21558722 -g1,3466:31966991,8449431 -) -(1,3468:7246811,9770969:24720180,404226,82312 -(1,3467:7246811,9770969:0,0,0 -g1,3467:7246811,9770969 -g1,3467:7246811,9770969 -g1,3467:6919131,9770969 -(1,3467:6919131,9770969:0,0,0 -) -g1,3467:7246811,9770969 -) -g1,3468:11988997,9770969 -g1,3468:12937435,9770969 -g1,3468:16731185,9770969 -g1,3468:18311914,9770969 -g1,3468:18944206,9770969 -h1,3468:19576498,9770969:0,0,0 -k1,3468:31966991,9770969:12390493 -g1,3468:31966991,9770969 -) -(1,3469:7246811,10437147:24720180,404226,76021 -h1,3469:7246811,10437147:0,0,0 -k1,3469:7246811,10437147:0 -h1,3469:13253579,10437147:0,0,0 -k1,3469:31966991,10437147:18713412 -g1,3469:31966991,10437147 -) -(1,3473:7246811,11168861:24720180,404226,76021 -(1,3471:7246811,11168861:0,0,0 -g1,3471:7246811,11168861 -g1,3471:7246811,11168861 -g1,3471:6919131,11168861 -(1,3471:6919131,11168861:0,0,0 -) -g1,3471:7246811,11168861 -) -g1,3473:8195248,11168861 -g1,3473:9459831,11168861 -g1,3473:10092123,11168861 -h1,3473:10408269,11168861:0,0,0 -k1,3473:31966991,11168861:21558722 -g1,3473:31966991,11168861 -) -(1,3475:7246811,12490399:24720180,404226,82312 -(1,3474:7246811,12490399:0,0,0 -g1,3474:7246811,12490399 -g1,3474:7246811,12490399 -g1,3474:6919131,12490399 -(1,3474:6919131,12490399:0,0,0 -) -g1,3474:7246811,12490399 -) -g1,3475:12305142,12490399 -g1,3475:13253580,12490399 -g1,3475:16415038,12490399 -g1,3475:17995767,12490399 -g1,3475:18628059,12490399 -h1,3475:19260351,12490399:0,0,0 -k1,3475:31966991,12490399:12706640 -g1,3475:31966991,12490399 -) -(1,3476:7246811,13156577:24720180,404226,76021 -h1,3476:7246811,13156577:0,0,0 -k1,3476:7246811,13156577:0 -h1,3476:13569725,13156577:0,0,0 -k1,3476:31966991,13156577:18397266 -g1,3476:31966991,13156577 -) -(1,3480:7246811,13888291:24720180,404226,76021 -(1,3478:7246811,13888291:0,0,0 -g1,3478:7246811,13888291 -g1,3478:7246811,13888291 -g1,3478:6919131,13888291 -(1,3478:6919131,13888291:0,0,0 -) -g1,3478:7246811,13888291 -) -g1,3480:8195248,13888291 -g1,3480:9459831,13888291 -g1,3480:10092123,13888291 -h1,3480:10408269,13888291:0,0,0 -k1,3480:31966991,13888291:21558722 -g1,3480:31966991,13888291 -) -(1,3482:7246811,15209829:24720180,404226,82312 -(1,3481:7246811,15209829:0,0,0 -g1,3481:7246811,15209829 -g1,3481:7246811,15209829 -g1,3481:6919131,15209829 -(1,3481:6919131,15209829:0,0,0 -) -g1,3481:7246811,15209829 -) -g1,3482:11988997,15209829 -g1,3482:12937435,15209829 -g1,3482:18628058,15209829 -g1,3482:20208787,15209829 -g1,3482:20841079,15209829 -h1,3482:21473371,15209829:0,0,0 -k1,3482:31966991,15209829:10493620 -g1,3482:31966991,15209829 -) -(1,3483:7246811,15876007:24720180,404226,76021 -h1,3483:7246811,15876007:0,0,0 -k1,3483:7246811,15876007:0 -h1,3483:13253579,15876007:0,0,0 -k1,3483:31966991,15876007:18713412 -g1,3483:31966991,15876007 -) -(1,3487:7246811,16607721:24720180,404226,76021 -(1,3485:7246811,16607721:0,0,0 -g1,3485:7246811,16607721 -g1,3485:7246811,16607721 -g1,3485:6919131,16607721 -(1,3485:6919131,16607721:0,0,0 -) -g1,3485:7246811,16607721 -) -g1,3487:8195248,16607721 -g1,3487:9459831,16607721 -g1,3487:10092123,16607721 -h1,3487:10408269,16607721:0,0,0 -k1,3487:31966991,16607721:21558722 -g1,3487:31966991,16607721 -) -] -) -g1,3488:31966991,16683742 -g1,3488:7246811,16683742 -g1,3488:7246811,16683742 -g1,3488:31966991,16683742 -g1,3488:31966991,16683742 -) -h1,3488:7246811,16880350:0,0,0 -] -) -] -r1,3566:32583029,17994462:26214,12133581,0 -) -] -) -) -g1,3491:32583029,17404638 -) -h1,3491:6630773,18020676:0,0,0 -(1,3494:6630773,19386452:25952256,505283,126483 -h1,3493:6630773,19386452:983040,0,0 -k1,3493:9929910,19386452:204527 -k1,3493:11125997,19386452:204527 -k1,3493:13532534,19386452:204527 -k1,3493:14388488,19386452:204526 -k1,3493:17500192,19386452:204527 -k1,3493:18776888,19386452:204527 -k1,3493:20085697,19386452:204527 -k1,3493:21765439,19386452:204527 -k1,3493:23620163,19386452:204527 -k1,3493:25267136,19386452:204526 -k1,3493:26644102,19386452:204527 -k1,3493:30697558,19386452:204527 -k1,3493:32583029,19386452:0 -) -(1,3494:6630773,20227940:25952256,513147,134348 -g1,3493:7821562,20227940 -g1,3493:10852602,20227940 -g1,3493:12445782,20227940 -g1,3493:13664096,20227940 -(1,3493:13664096,20227940:0,452978,115847 -r1,3566:14725785,20227940:1061689,568825,115847 -k1,3493:13664096,20227940:-1061689 -) -(1,3493:13664096,20227940:1061689,452978,115847 -k1,3493:13664096,20227940:3277 -h1,3493:14722508,20227940:0,411205,112570 -) -g1,3493:14925014,20227940 -g1,3493:18196571,20227940 -g1,3493:19047228,20227940 -g1,3493:20265542,20227940 -(1,3493:20265542,20227940:0,452978,115847 -r1,3566:22734079,20227940:2468537,568825,115847 -k1,3493:20265542,20227940:-2468537 -) -(1,3493:20265542,20227940:2468537,452978,115847 -k1,3493:20265542,20227940:3277 -h1,3493:22730802,20227940:0,411205,112570 -) -g1,3493:22933308,20227940 -k1,3494:32583029,20227940:5769334 -g1,3494:32583029,20227940 -) -v1,3496:6630773,21418406:0,393216,0 -(1,3529:6630773,37810571:25952256,16785381,196608 -g1,3529:6630773,37810571 -g1,3529:6630773,37810571 -g1,3529:6434165,37810571 -(1,3529:6434165,37810571:0,16785381,196608 -r1,3566:32779637,37810571:26345472,16981989,196608 -k1,3529:6434165,37810571:-26345472 -) -(1,3529:6434165,37810571:26345472,16785381,196608 -[1,3529:6630773,37810571:25952256,16588773,0 -(1,3498:6630773,21626024:25952256,404226,101187 -(1,3497:6630773,21626024:0,0,0 -g1,3497:6630773,21626024 -g1,3497:6630773,21626024 -g1,3497:6303093,21626024 -(1,3497:6303093,21626024:0,0,0 -) -g1,3497:6630773,21626024 -) -g1,3498:7263065,21626024 -g1,3498:8211503,21626024 -g1,3498:12005252,21626024 -g1,3498:13269835,21626024 -g1,3498:13902127,21626024 -g1,3498:15482857,21626024 -g1,3498:16431295,21626024 -h1,3498:17379732,21626024:0,0,0 -k1,3498:32583029,21626024:15203297 -g1,3498:32583029,21626024 -) -(1,3499:6630773,22292202:25952256,328204,0 -h1,3499:6630773,22292202:0,0,0 -h1,3499:6946919,22292202:0,0,0 -k1,3499:32583029,22292202:25636110 -g1,3499:32583029,22292202 -) -(1,3522:6630773,23023916:25952256,388497,82312 -(1,3501:6630773,23023916:0,0,0 -g1,3501:6630773,23023916 -g1,3501:6630773,23023916 -g1,3501:6303093,23023916 -(1,3501:6303093,23023916:0,0,0 -) -g1,3501:6630773,23023916 -) -g1,3522:7579210,23023916 -g1,3522:8211502,23023916 -g1,3522:8843794,23023916 -h1,3522:9159940,23023916:0,0,0 -k1,3522:32583028,23023916:23423088 -g1,3522:32583028,23023916 -) -(1,3522:6630773,23690094:25952256,379060,0 -h1,3522:6630773,23690094:0,0,0 -h1,3522:7263064,23690094:0,0,0 -k1,3522:32583028,23690094:25319964 -g1,3522:32583028,23690094 -) -(1,3522:6630773,24356272:25952256,404226,82312 -h1,3522:6630773,24356272:0,0,0 -g1,3522:7579210,24356272 -g1,3522:7895356,24356272 -g1,3522:8211502,24356272 -g1,3522:8527648,24356272 -g1,3522:8843794,24356272 -g1,3522:9159940,24356272 -g1,3522:10740669,24356272 -g1,3522:12321398,24356272 -k1,3522:12321398,24356272:0 -h1,3522:13585981,24356272:0,0,0 -k1,3522:32583029,24356272:18997048 -g1,3522:32583029,24356272 -) -(1,3522:6630773,25022450:25952256,404226,82312 -h1,3522:6630773,25022450:0,0,0 -g1,3522:7579210,25022450 -g1,3522:9159938,25022450 -g1,3522:9476084,25022450 -g1,3522:9792230,25022450 -g1,3522:10108376,25022450 -g1,3522:10740668,25022450 -g1,3522:11056814,25022450 -g1,3522:11372960,25022450 -g1,3522:11689106,25022450 -g1,3522:12321398,25022450 -g1,3522:12637544,25022450 -g1,3522:12953690,25022450 -g1,3522:13269836,25022450 -h1,3522:13585982,25022450:0,0,0 -k1,3522:32583030,25022450:18997048 -g1,3522:32583030,25022450 -) -(1,3522:6630773,25688628:25952256,404226,82312 -h1,3522:6630773,25688628:0,0,0 -g1,3522:7579210,25688628 -g1,3522:9159938,25688628 -g1,3522:9476084,25688628 -g1,3522:9792230,25688628 -g1,3522:10108376,25688628 -g1,3522:10740668,25688628 -g1,3522:11056814,25688628 -g1,3522:11372960,25688628 -g1,3522:11689106,25688628 -g1,3522:12321398,25688628 -g1,3522:12637544,25688628 -g1,3522:12953690,25688628 -g1,3522:13269836,25688628 -h1,3522:13585982,25688628:0,0,0 -k1,3522:32583030,25688628:18997048 -g1,3522:32583030,25688628 -) -(1,3522:6630773,26354806:25952256,404226,82312 -h1,3522:6630773,26354806:0,0,0 -g1,3522:7579210,26354806 -g1,3522:9159938,26354806 -g1,3522:9476084,26354806 -g1,3522:9792230,26354806 -g1,3522:10108376,26354806 -g1,3522:10740668,26354806 -g1,3522:11056814,26354806 -g1,3522:11372960,26354806 -g1,3522:11689106,26354806 -g1,3522:12321398,26354806 -g1,3522:12637544,26354806 -g1,3522:12953690,26354806 -g1,3522:13269836,26354806 -h1,3522:13585982,26354806:0,0,0 -k1,3522:32583030,26354806:18997048 -g1,3522:32583030,26354806 -) -(1,3522:6630773,27020984:25952256,379060,0 -h1,3522:6630773,27020984:0,0,0 -h1,3522:7263064,27020984:0,0,0 -k1,3522:32583028,27020984:25319964 -g1,3522:32583028,27020984 -) -(1,3522:6630773,27687162:25952256,388497,82312 -h1,3522:6630773,27687162:0,0,0 -g1,3522:7579210,27687162 -g1,3522:8211502,27687162 -g1,3522:8843794,27687162 -h1,3522:9159940,27687162:0,0,0 -k1,3522:32583028,27687162:23423088 -g1,3522:32583028,27687162 -) -(1,3522:6630773,28353340:25952256,379060,0 -h1,3522:6630773,28353340:0,0,0 -h1,3522:7263064,28353340:0,0,0 -k1,3522:32583028,28353340:25319964 -g1,3522:32583028,28353340 -) -(1,3522:6630773,29019518:25952256,404226,82312 -h1,3522:6630773,29019518:0,0,0 -g1,3522:7579210,29019518 -g1,3522:7895356,29019518 -g1,3522:8211502,29019518 -g1,3522:8527648,29019518 -g1,3522:8843794,29019518 -g1,3522:9159940,29019518 -g1,3522:10740669,29019518 -g1,3522:12321398,29019518 -k1,3522:12321398,29019518:0 -h1,3522:13585981,29019518:0,0,0 -k1,3522:32583029,29019518:18997048 -g1,3522:32583029,29019518 -) -(1,3522:6630773,29685696:25952256,404226,82312 -h1,3522:6630773,29685696:0,0,0 -g1,3522:7579210,29685696 -g1,3522:9159938,29685696 -g1,3522:9476084,29685696 -g1,3522:9792230,29685696 -g1,3522:10740667,29685696 -g1,3522:11056813,29685696 -g1,3522:11372959,29685696 -g1,3522:12321396,29685696 -g1,3522:12637542,29685696 -g1,3522:12953688,29685696 -h1,3522:13585979,29685696:0,0,0 -k1,3522:32583029,29685696:18997050 -g1,3522:32583029,29685696 -) -(1,3522:6630773,30351874:25952256,404226,82312 -h1,3522:6630773,30351874:0,0,0 -g1,3522:7579210,30351874 -g1,3522:9159938,30351874 -g1,3522:9476084,30351874 -g1,3522:9792230,30351874 -g1,3522:10740667,30351874 -g1,3522:11056813,30351874 -g1,3522:11372959,30351874 -g1,3522:12321396,30351874 -g1,3522:12637542,30351874 -g1,3522:12953688,30351874 -h1,3522:13585979,30351874:0,0,0 -k1,3522:32583029,30351874:18997050 -g1,3522:32583029,30351874 -) -(1,3522:6630773,31018052:25952256,404226,82312 -h1,3522:6630773,31018052:0,0,0 -g1,3522:7579210,31018052 -g1,3522:9159938,31018052 -g1,3522:9476084,31018052 -g1,3522:9792230,31018052 -g1,3522:10740667,31018052 -g1,3522:11056813,31018052 -g1,3522:11372959,31018052 -g1,3522:12321396,31018052 -g1,3522:12637542,31018052 -g1,3522:12953688,31018052 -h1,3522:13585979,31018052:0,0,0 -k1,3522:32583029,31018052:18997050 -g1,3522:32583029,31018052 -) -(1,3522:6630773,31684230:25952256,379060,0 -h1,3522:6630773,31684230:0,0,0 -h1,3522:7263064,31684230:0,0,0 -k1,3522:32583028,31684230:25319964 -g1,3522:32583028,31684230 -) -(1,3522:6630773,32350408:25952256,388497,82312 -h1,3522:6630773,32350408:0,0,0 -g1,3522:7579210,32350408 -g1,3522:8211502,32350408 -g1,3522:8843794,32350408 -h1,3522:9159940,32350408:0,0,0 -k1,3522:32583028,32350408:23423088 -g1,3522:32583028,32350408 -) -(1,3522:6630773,33016586:25952256,379060,0 -h1,3522:6630773,33016586:0,0,0 -h1,3522:7263064,33016586:0,0,0 -k1,3522:32583028,33016586:25319964 -g1,3522:32583028,33016586 -) -(1,3522:6630773,33682764:25952256,404226,82312 -h1,3522:6630773,33682764:0,0,0 -g1,3522:7579210,33682764 -g1,3522:7895356,33682764 -g1,3522:8211502,33682764 -g1,3522:8527648,33682764 -g1,3522:8843794,33682764 -g1,3522:9159940,33682764 -g1,3522:10740669,33682764 -g1,3522:12321398,33682764 -k1,3522:12321398,33682764:0 -h1,3522:13585981,33682764:0,0,0 -k1,3522:32583029,33682764:18997048 -g1,3522:32583029,33682764 -) -(1,3522:6630773,34348942:25952256,404226,82312 -h1,3522:6630773,34348942:0,0,0 -g1,3522:7579210,34348942 -g1,3522:9159938,34348942 -g1,3522:9476084,34348942 -g1,3522:9792230,34348942 -g1,3522:10740667,34348942 -g1,3522:11056813,34348942 -g1,3522:11372959,34348942 -g1,3522:12321396,34348942 -g1,3522:12637542,34348942 -g1,3522:12953688,34348942 -h1,3522:13585979,34348942:0,0,0 -k1,3522:32583029,34348942:18997050 -g1,3522:32583029,34348942 -) -(1,3522:6630773,35015120:25952256,404226,82312 -h1,3522:6630773,35015120:0,0,0 -g1,3522:7579210,35015120 -g1,3522:9159938,35015120 -g1,3522:9476084,35015120 -g1,3522:9792230,35015120 -g1,3522:10740667,35015120 -g1,3522:11056813,35015120 -g1,3522:11372959,35015120 -g1,3522:12321396,35015120 -g1,3522:12637542,35015120 -g1,3522:12953688,35015120 -h1,3522:13585979,35015120:0,0,0 -k1,3522:32583029,35015120:18997050 -g1,3522:32583029,35015120 -) -(1,3522:6630773,35681298:25952256,404226,82312 -h1,3522:6630773,35681298:0,0,0 -g1,3522:7579210,35681298 -g1,3522:9159938,35681298 -g1,3522:9476084,35681298 -g1,3522:9792230,35681298 -g1,3522:10740667,35681298 -g1,3522:11056813,35681298 -g1,3522:11372959,35681298 -g1,3522:12321396,35681298 -g1,3522:12637542,35681298 -g1,3522:12953688,35681298 -h1,3522:13585979,35681298:0,0,0 -k1,3522:32583029,35681298:18997050 -g1,3522:32583029,35681298 -) -(1,3524:6630773,37002836:25952256,404226,82312 -(1,3523:6630773,37002836:0,0,0 -g1,3523:6630773,37002836 -g1,3523:6630773,37002836 -g1,3523:6303093,37002836 -(1,3523:6303093,37002836:0,0,0 -) -g1,3523:6630773,37002836 -) -k1,3524:6630773,37002836:0 -g1,3524:8211502,37002836 -g1,3524:9159940,37002836 -h1,3524:9792232,37002836:0,0,0 -k1,3524:32583028,37002836:22790796 -g1,3524:32583028,37002836 -) -(1,3528:6630773,37734550:25952256,404226,76021 -(1,3526:6630773,37734550:0,0,0 -g1,3526:6630773,37734550 -g1,3526:6630773,37734550 -g1,3526:6303093,37734550 -(1,3526:6303093,37734550:0,0,0 -) -g1,3526:6630773,37734550 -) -g1,3528:7579210,37734550 -g1,3528:8843793,37734550 -h1,3528:9476084,37734550:0,0,0 -k1,3528:32583028,37734550:23106944 -g1,3528:32583028,37734550 -) -] -) -g1,3529:32583029,37810571 -g1,3529:6630773,37810571 -g1,3529:6630773,37810571 -g1,3529:32583029,37810571 -g1,3529:32583029,37810571 -) -h1,3529:6630773,38007179:0,0,0 -(1,3533:6630773,39372955:25952256,513147,134348 -h1,3532:6630773,39372955:983040,0,0 -k1,3532:8535530,39372955:293882 -k1,3532:9848497,39372955:293882 -k1,3532:12113047,39372955:293882 -k1,3532:14435924,39372955:293882 -k1,3532:15748891,39372955:293882 -k1,3532:18056039,39372955:293882 -k1,3532:19009213,39372955:293882 -k1,3532:20322179,39372955:293881 -k1,3532:23377093,39372955:293882 -k1,3532:25648852,39372955:293882 -k1,3532:26474231,39372955:293882 -k1,3532:27787198,39372955:293882 -k1,3532:30610770,39372955:293882 -k1,3532:31563944,39372955:293882 -k1,3532:32583029,39372955:0 -) -(1,3533:6630773,40214443:25952256,615216,126483 -k1,3532:10714544,40214443:234842 -$1,3532:10714544,40214443 -k1,3532:11758609,40214443:247147 -k1,3532:12573954,40214443:247148 -k1,3532:13144096,40214443:171683 -k1,3532:13883976,40214443:171683 -k1,3532:14454118,40214443:171683 -k1,3532:15193998,40214443:171683 -k1,3532:15839605,40214443:247148 -k1,3532:16654950,40214443:247148 -(1,3532:17053409,39939162:311689,339935,8258 -) -$1,3532:17365098,40214443 -k1,3532:17773609,40214443:234841 -k1,3532:20120021,40214443:234842 -k1,3532:21346423,40214443:234842 -k1,3532:23931385,40214443:234841 -k1,3532:24782265,40214443:234842 -k1,3532:26938623,40214443:234842 -k1,3532:28567415,40214443:234841 -k1,3532:30550102,40214443:234842 -k1,3532:32583029,40214443:0 -) -(1,3533:6630773,41055931:25952256,505283,134348 -k1,3532:7981834,41055931:243503 -k1,3532:9416781,41055931:243502 -k1,3532:11701075,41055931:243503 -k1,3532:15619836,41055931:243502 -k1,3532:18213460,41055931:243503 -k1,3532:21899568,41055931:243502 -k1,3532:23537022,41055931:243503 -k1,3532:25289163,41055931:243502 -k1,3532:30156231,41055931:243503 -k1,3532:32583029,41055931:0 -) -(1,3533:6630773,41897419:25952256,513147,134348 -k1,3532:8761398,41897419:275301 -k1,3532:10488322,41897419:275302 -k1,3532:12181167,41897419:275301 -k1,3532:13647914,41897419:275302 -k1,3532:14942300,41897419:275301 -k1,3532:16523735,41897419:275302 -k1,3532:17971475,41897419:275301 -k1,3532:21922036,41897419:275302 -k1,3532:23006707,41897419:275301 -k1,3532:24301094,41897419:275302 -k1,3532:27161135,41897419:275301 -k1,3532:28095729,41897419:275302 -k1,3532:29390115,41897419:275301 -k1,3532:32583029,41897419:0 -) -(1,3533:6630773,42738907:25952256,505283,126483 -g1,3532:8751518,42738907 -g1,3532:11718988,42738907 -g1,3532:12569645,42738907 -g1,3532:14099255,42738907 -g1,3532:17031991,42738907 -g1,3532:18222780,42738907 -k1,3533:32583029,42738907:11123426 -g1,3533:32583029,42738907 -) -v1,3535:6630773,44104683:0,393216,0 -] -(1,3566:32583029,45706769:0,0,0 -g1,3566:32583029,45706769 -) -) -] -(1,3566:6630773,47279633:25952256,0,0 -h1,3566:6630773,47279633:25952256,0,0 -) -] -(1,3566:4262630,4025873:0,0,0 -[1,3566:-473656,4025873:0,0,0 -(1,3566:-473656,-710413:0,0,0 -(1,3566:-473656,-710413:0,0,0 -g1,3566:-473656,-710413 -) -g1,3566:-473656,-710413 -) -] -) -] -!21435 -}70 -Input:529:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:530:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!193 -{71 -[1,3634:4262630,47279633:28320399,43253760,0 -(1,3634:4262630,4025873:0,0,0 -[1,3634:-473656,4025873:0,0,0 -(1,3634:-473656,-710413:0,0,0 -(1,3634:-473656,-644877:0,0,0 -k1,3634:-473656,-644877:-65536 -) -(1,3634:-473656,4736287:0,0,0 -k1,3634:-473656,4736287:5209943 -) -g1,3634:-473656,-710413 -) -] -) -[1,3634:6630773,47279633:25952256,43253760,0 -[1,3634:6630773,4812305:25952256,786432,0 -(1,3634:6630773,4812305:25952256,505283,134348 -(1,3634:6630773,4812305:25952256,505283,134348 -g1,3634:3078558,4812305 -[1,3634:3078558,4812305:0,0,0 -(1,3634:3078558,2439708:0,1703936,0 -k1,3634:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,3634:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,3634:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,3634:3078558,4812305:0,0,0 -(1,3634:3078558,2439708:0,1703936,0 -g1,3634:29030814,2439708 -g1,3634:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,3634:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,3634:37855564,2439708:1179648,16384,0 -) -) -k1,3634:3078556,2439708:-34777008 -) -] -[1,3634:3078558,4812305:0,0,0 -(1,3634:3078558,49800853:0,16384,2228224 -k1,3634:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,3634:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,3634:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,3634:3078558,4812305:0,0,0 -(1,3634:3078558,49800853:0,16384,2228224 -g1,3634:29030814,49800853 -g1,3634:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,3634:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,3634:37855564,49800853:1179648,16384,0 -) -) -k1,3634:3078556,49800853:-34777008 -) -] -g1,3634:6630773,4812305 -k1,3634:19515153,4812305:12087462 -g1,3634:20901894,4812305 -g1,3634:21550700,4812305 -g1,3634:24864855,4812305 -g1,3634:27600327,4812305 -g1,3634:29010006,4812305 -) -) -] -[1,3634:6630773,45706769:25952256,40108032,0 -(1,3634:6630773,45706769:25952256,40108032,0 -(1,3634:6630773,45706769:0,0,0 -g1,3634:6630773,45706769 -) -[1,3634:6630773,45706769:25952256,40108032,0 -v1,3566:6630773,6254097:0,393216,0 -(1,3566:6630773,23832962:25952256,17972081,616038 -g1,3566:6630773,23832962 -(1,3566:6630773,23832962:25952256,17972081,616038 -(1,3566:6630773,24449000:25952256,18588119,0 -[1,3566:6630773,24449000:25952256,18588119,0 -(1,3566:6630773,24422786:25952256,18535691,0 -r1,3634:6656987,24422786:26214,18535691,0 -[1,3566:6656987,24422786:25899828,18535691,0 -(1,3566:6656987,23832962:25899828,17356043,0 -[1,3566:7246811,23832962:24720180,17356043,0 -(1,3536:7246811,7564293:24720180,1087374,134348 -k1,3535:8750072,7564293:293558 -k1,3535:10464451,7564293:293558 -k1,3535:11573277,7564293:293558 -k1,3535:13037307,7564293:293557 -k1,3535:14423350,7564293:293558 -k1,3535:17143706,7564293:293558 -k1,3535:18088692,7564293:293558 -k1,3535:20586226,7564293:293558 -k1,3535:21898869,7564293:293558 -k1,3535:24433757,7564293:293557 -k1,3535:27266180,7564293:293558 -k1,3535:28219030,7564293:293558 -k1,3535:29531673,7564293:293558 -k1,3535:31966991,7564293:0 -) -(1,3536:7246811,8405781:24720180,513147,134348 -g1,3535:9597587,8405781 -g1,3535:10412854,8405781 -g1,3535:12063705,8405781 -g1,3535:12922226,8405781 -g1,3535:14140540,8405781 -g1,3535:17315104,8405781 -g1,3535:20247840,8405781 -g1,3535:21638514,8405781 -k1,3536:31966991,8405781:8021610 -g1,3536:31966991,8405781 -) -v1,3538:7246811,9596247:0,393216,0 -(1,3546:7246811,12554035:24720180,3351004,196608 -g1,3546:7246811,12554035 -g1,3546:7246811,12554035 -g1,3546:7050203,12554035 -(1,3546:7050203,12554035:0,3351004,196608 -r1,3634:32163599,12554035:25113396,3547612,196608 -k1,3546:7050203,12554035:-25113396 -) -(1,3546:7050203,12554035:25113396,3351004,196608 -[1,3546:7246811,12554035:24720180,3154396,0 -(1,3540:7246811,9788136:24720180,388497,9436 -(1,3539:7246811,9788136:0,0,0 -g1,3539:7246811,9788136 -g1,3539:7246811,9788136 -g1,3539:6919131,9788136 -(1,3539:6919131,9788136:0,0,0 -) -g1,3539:7246811,9788136 -) -g1,3540:7879103,9788136 -g1,3540:8827541,9788136 -h1,3540:10092124,9788136:0,0,0 -k1,3540:31966992,9788136:21874868 -g1,3540:31966992,9788136 -) -(1,3541:7246811,10454314:24720180,404226,82312 -h1,3541:7246811,10454314:0,0,0 -g1,3541:8511394,10454314 -g1,3541:9459832,10454314 -g1,3541:12621289,10454314 -g1,3541:14202018,10454314 -g1,3541:14834310,10454314 -h1,3541:15466602,10454314:0,0,0 -k1,3541:31966991,10454314:16500389 -g1,3541:31966991,10454314 -) -(1,3542:7246811,11120492:24720180,404226,101187 -h1,3542:7246811,11120492:0,0,0 -g1,3542:8827540,11120492 -g1,3542:9775978,11120492 -g1,3542:12937435,11120492 -g1,3542:14518164,11120492 -g1,3542:15150456,11120492 -g1,3542:16098894,11120492 -g1,3542:17995768,11120492 -g1,3542:18628060,11120492 -h1,3542:20208789,11120492:0,0,0 -k1,3542:31966991,11120492:11758202 -g1,3542:31966991,11120492 -) -(1,3543:7246811,11786670:24720180,404226,82312 -h1,3543:7246811,11786670:0,0,0 -g1,3543:8511394,11786670 -g1,3543:9459832,11786670 -g1,3543:12621289,11786670 -g1,3543:14202018,11786670 -g1,3543:14834310,11786670 -h1,3543:15466602,11786670:0,0,0 -k1,3543:31966991,11786670:16500389 -g1,3543:31966991,11786670 -) -(1,3544:7246811,12452848:24720180,404226,101187 -h1,3544:7246811,12452848:0,0,0 -g1,3544:8827540,12452848 -g1,3544:9775978,12452848 -g1,3544:12937435,12452848 -g1,3544:14518164,12452848 -g1,3544:15150456,12452848 -g1,3544:16098894,12452848 -g1,3544:17995768,12452848 -g1,3544:18628060,12452848 -h1,3544:20208789,12452848:0,0,0 -k1,3544:31966991,12452848:11758202 -g1,3544:31966991,12452848 -) -] -) -g1,3546:31966991,12554035 -g1,3546:7246811,12554035 -g1,3546:7246811,12554035 -g1,3546:31966991,12554035 -g1,3546:31966991,12554035 -) -h1,3546:7246811,12750643:0,0,0 -v1,3550:7246811,14465397:0,393216,0 -(1,3557:7246811,16757007:24720180,2684826,196608 -g1,3557:7246811,16757007 -g1,3557:7246811,16757007 -g1,3557:7050203,16757007 -(1,3557:7050203,16757007:0,2684826,196608 -r1,3634:32163599,16757007:25113396,2881434,196608 -k1,3557:7050203,16757007:-25113396 -) -(1,3557:7050203,16757007:25113396,2684826,196608 -[1,3557:7246811,16757007:24720180,2488218,0 -(1,3552:7246811,14657286:24720180,388497,9436 -(1,3551:7246811,14657286:0,0,0 -g1,3551:7246811,14657286 -g1,3551:7246811,14657286 -g1,3551:6919131,14657286 -(1,3551:6919131,14657286:0,0,0 -) -g1,3551:7246811,14657286 -) -g1,3552:7879103,14657286 -g1,3552:8827541,14657286 -h1,3552:10092124,14657286:0,0,0 -k1,3552:31966992,14657286:21874868 -g1,3552:31966992,14657286 -) -(1,3553:7246811,15323464:24720180,404226,101187 -h1,3553:7246811,15323464:0,0,0 -g1,3553:8511394,15323464 -g1,3553:9459832,15323464 -g1,3553:12305143,15323464 -g1,3553:13569726,15323464 -g1,3553:14202018,15323464 -g1,3553:15782748,15323464 -h1,3553:16731185,15323464:0,0,0 -k1,3553:31966991,15323464:15235806 -g1,3553:31966991,15323464 -) -(1,3554:7246811,15989642:24720180,404226,101187 -h1,3554:7246811,15989642:0,0,0 -g1,3554:8511394,15989642 -g1,3554:9459832,15989642 -g1,3554:12305143,15989642 -g1,3554:13569726,15989642 -g1,3554:14202018,15989642 -g1,3554:15782748,15989642 -g1,3554:17047332,15989642 -g1,3554:19892643,15989642 -g1,3554:20524935,15989642 -g1,3554:24002539,15989642 -g1,3554:26531706,15989642 -h1,3554:28744726,15989642:0,0,0 -k1,3554:31966991,15989642:3222265 -g1,3554:31966991,15989642 -) -(1,3555:7246811,16655820:24720180,404226,101187 -h1,3555:7246811,16655820:0,0,0 -g1,3555:8511394,16655820 -g1,3555:9459832,16655820 -g1,3555:12305143,16655820 -g1,3555:13569726,16655820 -g1,3555:14202018,16655820 -g1,3555:15782748,16655820 -h1,3555:16731185,16655820:0,0,0 -k1,3555:31966991,16655820:15235806 -g1,3555:31966991,16655820 -) -] -) -g1,3557:31966991,16757007 -g1,3557:7246811,16757007 -g1,3557:7246811,16757007 -g1,3557:31966991,16757007 -g1,3557:31966991,16757007 -) -h1,3557:7246811,16953615:0,0,0 -(1,3562:7246811,18319391:24720180,505283,134348 -h1,3560:7246811,18319391:983040,0,0 -k1,3560:9205086,18319391:228780 -k1,3560:11302297,18319391:228780 -k1,3560:12815584,18319391:228781 -k1,3560:15352542,18319391:228780 -k1,3560:16772767,18319391:228780 -k1,3560:22277195,18319391:228780 -k1,3560:24485818,18319391:228780 -k1,3560:25706158,18319391:228780 -k1,3560:27001210,18319391:228781 -k1,3560:28249075,18319391:228780 -k1,3560:30131328,18319391:228780 -k1,3560:31966991,18319391:0 -) -(1,3562:7246811,19160879:24720180,505283,126483 -g1,3560:9135558,19160879 -g1,3560:14626164,19160879 -g1,3560:16805236,19160879 -g1,3560:17996025,19160879 -k1,3562:31966991,19160879:11063789 -g1,3562:31966991,19160879 -) -(1,3563:9389838,20526655:21790721,513147,126483 -(1,3562:9389838,20526655:0,477757,0 -g1,3562:9389838,20526655 -g1,3562:8079118,20526655 -g1,3562:8079118,20526655 -(1,3562:8079118,20526655:1310720,477757,0 -(1,3562:8079118,20526655:1048576,477757,0 -g1,3562:8341262,20526655 -(1,3562:8341262,20526655:572129,477757,0 -g1,3562:8341262,20526655 -) -) -) -g1,3562:9389838,20526655 -) -k1,3562:10682994,20526655:144310 -k1,3562:11846389,20526655:144310 -k1,3562:14753042,20526655:144310 -k1,3562:18934370,20526655:144310 -k1,3562:20270125,20526655:144310 -k1,3562:22230439,20526655:144311 -k1,3562:25159374,20526655:144310 -k1,3562:25955112,20526655:144310 -k1,3562:28467893,20526655:144310 -k1,3562:29989114,20526655:144310 -k1,3562:31180559,20526655:0 -) -(1,3563:9389838,21368143:21790721,473825,126483 -g1,3562:10377465,21368143 -k1,3563:31180559,21368143:16216229 -g1,3563:31180559,21368143 -) -(1,3564:9389838,22471775:21790721,505283,134348 -(1,3563:9389838,22471775:0,485622,0 -g1,3563:9389838,22471775 -g1,3563:8079118,22471775 -g1,3563:8079118,22471775 -(1,3563:8079118,22471775:1310720,485622,0 -(1,3563:8079118,22471775:1048576,485622,0 -g1,3563:8341262,22471775 -(1,3563:8341262,22471775:572129,485622,0 -g1,3563:8341262,22471775 -) -) -) -g1,3563:9389838,22471775 -) -k1,3563:12146234,22471775:241780 -k1,3563:12743875,22471775:241781 -k1,3563:15072977,22471775:241780 -k1,3563:16582224,22471775:241781 -k1,3563:17179864,22471775:241780 -k1,3563:19399521,22471775:241780 -k1,3563:21376695,22471775:241781 -(1,3563:21376695,22471775:0,452978,115847 -r1,3634:24196944,22471775:2820249,568825,115847 -k1,3563:21376695,22471775:-2820249 -) -(1,3563:21376695,22471775:2820249,452978,115847 -k1,3563:21376695,22471775:3277 -h1,3563:24193667,22471775:0,411205,112570 -) -k1,3563:24438724,22471775:241780 -k1,3563:25871950,22471775:241781 -(1,3563:25871950,22471775:0,452978,115847 -r1,3634:29747334,22471775:3875384,568825,115847 -k1,3563:25871950,22471775:-3875384 -) -(1,3563:25871950,22471775:3875384,452978,115847 -k1,3563:25871950,22471775:3277 -h1,3563:29744057,22471775:0,411205,112570 -) -k1,3563:29989114,22471775:241780 -k1,3563:31180559,22471775:0 -) -(1,3564:9389838,23313263:21790721,505283,126483 -g1,3563:12349443,23313263 -g1,3563:13567757,23313263 -g1,3563:16545713,23313263 -k1,3564:31180559,23313263:12450531 -g1,3564:31180559,23313263 -) -] -) -] -r1,3634:32583029,24422786:26214,18535691,0 -) -] -) -) -g1,3566:32583029,23832962 -) -h1,3566:6630773,24449000:0,0,0 -(1,3569:6630773,25726024:25952256,513147,126483 -h1,3568:6630773,25726024:983040,0,0 -k1,3568:10939261,25726024:133845 -k1,3568:12020756,25726024:133844 -k1,3568:14888108,25726024:133845 -k1,3568:16013513,25726024:133845 -k1,3568:18931326,25726024:133844 -k1,3568:19681209,25726024:133845 -k1,3568:20403567,25726024:133845 -k1,3568:21223574,25726024:133845 -k1,3568:24090925,25726024:133844 -k1,3568:25216330,25726024:133845 -k1,3568:26863401,25726024:133845 -k1,3568:27613283,25726024:133844 -k1,3568:29498905,25726024:133845 -k1,3568:32583029,25726024:0 -) -(1,3569:6630773,26567512:25952256,505283,134348 -k1,3568:10452341,26567512:206602 -k1,3568:11612491,26567512:206601 -k1,3568:12951555,26567512:206602 -k1,3568:14224428,26567512:206602 -k1,3568:17100310,26567512:206601 -k1,3568:18945967,26567512:206602 -k1,3568:19918685,26567512:206602 -k1,3568:21696839,26567512:206601 -k1,3568:23279042,26567512:206602 -(1,3568:23279042,26567512:0,452978,115847 -r1,3634:24340731,26567512:1061689,568825,115847 -k1,3568:23279042,26567512:-1061689 -) -(1,3568:23279042,26567512:1061689,452978,115847 -k1,3568:23279042,26567512:3277 -h1,3568:24337454,26567512:0,411205,112570 -) -k1,3568:24547333,26567512:206602 -k1,3568:25945379,26567512:206601 -k1,3568:27844121,26567512:206602 -k1,3568:32583029,26567512:0 -) -(1,3569:6630773,27409000:25952256,513147,134348 -k1,3568:7521538,27409000:231473 -k1,3568:11029155,27409000:231472 -k1,3568:14511214,27409000:231473 -k1,3568:17532554,27409000:231472 -(1,3568:17532554,27409000:0,452978,115847 -r1,3634:18594243,27409000:1061689,568825,115847 -k1,3568:17532554,27409000:-1061689 -) -(1,3568:17532554,27409000:1061689,452978,115847 -k1,3568:17532554,27409000:3277 -h1,3568:18590966,27409000:0,411205,112570 -) -k1,3568:18825716,27409000:231473 -k1,3568:22526664,27409000:231472 -k1,3568:23113997,27409000:231473 -k1,3568:25606461,27409000:231472 -k1,3568:26599462,27409000:231473 -k1,3568:29869838,27409000:231472 -k1,3568:32583029,27409000:0 -) -(1,3569:6630773,28250488:25952256,505283,7863 -g1,3568:8021447,28250488 -k1,3569:32583029,28250488:22853714 -g1,3569:32583029,28250488 -) -v1,3571:6630773,29352202:0,393216,0 -(1,3594:6630773,39088878:25952256,10129892,196608 -g1,3594:6630773,39088878 -g1,3594:6630773,39088878 -g1,3594:6434165,39088878 -(1,3594:6434165,39088878:0,10129892,196608 -r1,3634:32779637,39088878:26345472,10326500,196608 -k1,3594:6434165,39088878:-26345472 -) -(1,3594:6434165,39088878:26345472,10129892,196608 -[1,3594:6630773,39088878:25952256,9933284,0 -(1,3573:6630773,29559820:25952256,404226,82312 -(1,3572:6630773,29559820:0,0,0 -g1,3572:6630773,29559820 -g1,3572:6630773,29559820 -g1,3572:6303093,29559820 -(1,3572:6303093,29559820:0,0,0 -) -g1,3572:6630773,29559820 -) -g1,3573:7263065,29559820 -g1,3573:8211503,29559820 -g1,3573:12321398,29559820 -g1,3573:13902127,29559820 -g1,3573:14534419,29559820 -h1,3573:15166711,29559820:0,0,0 -k1,3573:32583029,29559820:17416318 -g1,3573:32583029,29559820 -) -(1,3574:6630773,30225998:25952256,328204,0 -h1,3574:6630773,30225998:0,0,0 -h1,3574:6946919,30225998:0,0,0 -k1,3574:32583029,30225998:25636110 -g1,3574:32583029,30225998 -) -(1,3583:6630773,30957712:25952256,404226,82312 -(1,3576:6630773,30957712:0,0,0 -g1,3576:6630773,30957712 -g1,3576:6630773,30957712 -g1,3576:6303093,30957712 -(1,3576:6303093,30957712:0,0,0 -) -g1,3576:6630773,30957712 -) -g1,3583:7579210,30957712 -g1,3583:7895356,30957712 -g1,3583:8211502,30957712 -g1,3583:8527648,30957712 -g1,3583:8843794,30957712 -g1,3583:9159940,30957712 -g1,3583:10740669,30957712 -g1,3583:12321398,30957712 -g1,3583:13902127,30957712 -k1,3583:13902127,30957712:0 -h1,3583:15166710,30957712:0,0,0 -k1,3583:32583030,30957712:17416320 -g1,3583:32583030,30957712 -) -(1,3583:6630773,31623890:25952256,404226,82312 -h1,3583:6630773,31623890:0,0,0 -g1,3583:7579210,31623890 -g1,3583:9159938,31623890 -g1,3583:9476084,31623890 -g1,3583:9792230,31623890 -g1,3583:10108376,31623890 -g1,3583:10740668,31623890 -g1,3583:11056814,31623890 -g1,3583:11372960,31623890 -g1,3583:11689106,31623890 -g1,3583:12321398,31623890 -g1,3583:12637544,31623890 -g1,3583:12953690,31623890 -g1,3583:13902127,31623890 -g1,3583:14218273,31623890 -g1,3583:14534419,31623890 -h1,3583:15166710,31623890:0,0,0 -k1,3583:32583030,31623890:17416320 -g1,3583:32583030,31623890 -) -(1,3583:6630773,32290068:25952256,404226,82312 -h1,3583:6630773,32290068:0,0,0 -g1,3583:7579210,32290068 -g1,3583:9159938,32290068 -g1,3583:9476084,32290068 -g1,3583:9792230,32290068 -g1,3583:10108376,32290068 -g1,3583:10740668,32290068 -g1,3583:11056814,32290068 -g1,3583:11372960,32290068 -g1,3583:11689106,32290068 -g1,3583:12321398,32290068 -g1,3583:12637544,32290068 -g1,3583:12953690,32290068 -g1,3583:13902127,32290068 -g1,3583:14218273,32290068 -g1,3583:14534419,32290068 -h1,3583:15166710,32290068:0,0,0 -k1,3583:32583030,32290068:17416320 -g1,3583:32583030,32290068 -) -(1,3583:6630773,32956246:25952256,404226,82312 -h1,3583:6630773,32956246:0,0,0 -g1,3583:7579210,32956246 -g1,3583:9159938,32956246 -g1,3583:9476084,32956246 -g1,3583:9792230,32956246 -g1,3583:10108376,32956246 -g1,3583:10740668,32956246 -g1,3583:11056814,32956246 -g1,3583:11372960,32956246 -g1,3583:11689106,32956246 -g1,3583:12321398,32956246 -g1,3583:12637544,32956246 -g1,3583:12953690,32956246 -g1,3583:13902127,32956246 -g1,3583:14218273,32956246 -g1,3583:14534419,32956246 -h1,3583:15166710,32956246:0,0,0 -k1,3583:32583030,32956246:17416320 -g1,3583:32583030,32956246 -) -(1,3583:6630773,33622424:25952256,404226,82312 -h1,3583:6630773,33622424:0,0,0 -g1,3583:7579210,33622424 -g1,3583:9159938,33622424 -g1,3583:9476084,33622424 -g1,3583:9792230,33622424 -g1,3583:10108376,33622424 -g1,3583:10740668,33622424 -g1,3583:11056814,33622424 -g1,3583:11372960,33622424 -g1,3583:11689106,33622424 -g1,3583:12321398,33622424 -g1,3583:12637544,33622424 -g1,3583:12953690,33622424 -g1,3583:13902127,33622424 -g1,3583:14218273,33622424 -g1,3583:14534419,33622424 -h1,3583:15166710,33622424:0,0,0 -k1,3583:32583030,33622424:17416320 -g1,3583:32583030,33622424 -) -(1,3583:6630773,34288602:25952256,404226,82312 -h1,3583:6630773,34288602:0,0,0 -g1,3583:7579210,34288602 -g1,3583:9159938,34288602 -g1,3583:9476084,34288602 -g1,3583:9792230,34288602 -g1,3583:10108376,34288602 -g1,3583:10740668,34288602 -g1,3583:11056814,34288602 -g1,3583:11372960,34288602 -g1,3583:12321397,34288602 -g1,3583:12637543,34288602 -g1,3583:12953689,34288602 -g1,3583:13902126,34288602 -g1,3583:14218272,34288602 -g1,3583:14534418,34288602 -h1,3583:15166709,34288602:0,0,0 -k1,3583:32583029,34288602:17416320 -g1,3583:32583029,34288602 -) -(1,3585:6630773,35610140:25952256,404226,76021 -(1,3584:6630773,35610140:0,0,0 -g1,3584:6630773,35610140 -g1,3584:6630773,35610140 -g1,3584:6303093,35610140 -(1,3584:6303093,35610140:0,0,0 -) -g1,3584:6630773,35610140 -) -k1,3585:6630773,35610140:0 -h1,3585:7895356,35610140:0,0,0 -k1,3585:32583028,35610140:24687672 -g1,3585:32583028,35610140 -) -(1,3593:6630773,36341854:25952256,404226,82312 -(1,3587:6630773,36341854:0,0,0 -g1,3587:6630773,36341854 -g1,3587:6630773,36341854 -g1,3587:6303093,36341854 -(1,3587:6303093,36341854:0,0,0 -) -g1,3587:6630773,36341854 -) -g1,3593:7579210,36341854 -g1,3593:7895356,36341854 -g1,3593:8211502,36341854 -g1,3593:8527648,36341854 -g1,3593:8843794,36341854 -g1,3593:9159940,36341854 -g1,3593:10740669,36341854 -g1,3593:12321398,36341854 -g1,3593:13902127,36341854 -g1,3593:15482856,36341854 -k1,3593:15482856,36341854:0 -h1,3593:16747439,36341854:0,0,0 -k1,3593:32583029,36341854:15835590 -g1,3593:32583029,36341854 -) -(1,3593:6630773,37008032:25952256,404226,82312 -h1,3593:6630773,37008032:0,0,0 -g1,3593:7579210,37008032 -g1,3593:9159938,37008032 -g1,3593:9476084,37008032 -g1,3593:9792230,37008032 -g1,3593:10108376,37008032 -g1,3593:10740668,37008032 -g1,3593:11056814,37008032 -g1,3593:11372960,37008032 -g1,3593:11689106,37008032 -g1,3593:12321398,37008032 -g1,3593:12637544,37008032 -g1,3593:12953690,37008032 -g1,3593:13269836,37008032 -g1,3593:13902128,37008032 -g1,3593:14218274,37008032 -g1,3593:14534420,37008032 -g1,3593:14850566,37008032 -g1,3593:15482858,37008032 -g1,3593:15799004,37008032 -g1,3593:16115150,37008032 -g1,3593:16431296,37008032 -h1,3593:16747442,37008032:0,0,0 -k1,3593:32583029,37008032:15835587 -g1,3593:32583029,37008032 -) -(1,3593:6630773,37674210:25952256,404226,82312 -h1,3593:6630773,37674210:0,0,0 -g1,3593:7579210,37674210 -g1,3593:9159938,37674210 -g1,3593:9476084,37674210 -g1,3593:9792230,37674210 -g1,3593:10108376,37674210 -g1,3593:10740668,37674210 -g1,3593:11056814,37674210 -g1,3593:11372960,37674210 -g1,3593:11689106,37674210 -g1,3593:12321398,37674210 -g1,3593:12637544,37674210 -g1,3593:12953690,37674210 -g1,3593:13269836,37674210 -g1,3593:13902128,37674210 -g1,3593:14218274,37674210 -g1,3593:14534420,37674210 -g1,3593:14850566,37674210 -g1,3593:15482858,37674210 -g1,3593:15799004,37674210 -g1,3593:16115150,37674210 -h1,3593:16747441,37674210:0,0,0 -k1,3593:32583029,37674210:15835588 -g1,3593:32583029,37674210 -) -(1,3593:6630773,38340388:25952256,404226,82312 -h1,3593:6630773,38340388:0,0,0 -g1,3593:7579210,38340388 -g1,3593:9159938,38340388 -g1,3593:9476084,38340388 -g1,3593:9792230,38340388 -g1,3593:10740667,38340388 -g1,3593:11056813,38340388 -g1,3593:11372959,38340388 -g1,3593:12321396,38340388 -g1,3593:12637542,38340388 -g1,3593:12953688,38340388 -g1,3593:13902125,38340388 -g1,3593:14218271,38340388 -g1,3593:14534417,38340388 -g1,3593:15482854,38340388 -g1,3593:15799000,38340388 -g1,3593:16115146,38340388 -h1,3593:16747437,38340388:0,0,0 -k1,3593:32583029,38340388:15835592 -g1,3593:32583029,38340388 -) -(1,3593:6630773,39006566:25952256,404226,82312 -h1,3593:6630773,39006566:0,0,0 -g1,3593:7579210,39006566 -g1,3593:9159938,39006566 -g1,3593:9476084,39006566 -g1,3593:9792230,39006566 -g1,3593:10740667,39006566 -g1,3593:11056813,39006566 -g1,3593:11372959,39006566 -g1,3593:12321396,39006566 -g1,3593:12637542,39006566 -g1,3593:12953688,39006566 -g1,3593:13902125,39006566 -g1,3593:14218271,39006566 -g1,3593:14534417,39006566 -g1,3593:15482854,39006566 -g1,3593:15799000,39006566 -g1,3593:16115146,39006566 -h1,3593:16747437,39006566:0,0,0 -k1,3593:32583029,39006566:15835592 -g1,3593:32583029,39006566 -) -] -) -g1,3594:32583029,39088878 -g1,3594:6630773,39088878 -g1,3594:6630773,39088878 -g1,3594:32583029,39088878 -g1,3594:32583029,39088878 -) -h1,3594:6630773,39285486:0,0,0 -(1,3598:6630773,40562510:25952256,505283,134348 -h1,3597:6630773,40562510:983040,0,0 -k1,3597:8633553,40562510:201851 -k1,3597:10229355,40562510:201851 -k1,3597:12913053,40562510:201850 -k1,3597:15974240,40562510:201851 -k1,3597:18457399,40562510:201851 -k1,3597:19310678,40562510:201851 -k1,3597:22788674,40562510:201851 -k1,3597:26067440,40562510:201851 -k1,3597:27967328,40562510:201850 -k1,3597:30540927,40562510:201851 -k1,3597:31394206,40562510:201851 -k1,3598:32583029,40562510:0 -) -(1,3598:6630773,41403998:25952256,473825,7863 -k1,3598:32583029,41403998:24020910 -g1,3598:32583029,41403998 -) -v1,3600:6630773,42505712:0,393216,0 -(1,3634:6630773,45510161:25952256,3397665,196608 -g1,3634:6630773,45510161 -g1,3634:6630773,45510161 -g1,3634:6434165,45510161 -(1,3634:6434165,45510161:0,3397665,196608 -r1,3634:32779637,45510161:26345472,3594273,196608 -k1,3634:6434165,45510161:-26345472 -) -(1,3634:6434165,45510161:26345472,3397665,196608 -[1,3634:6630773,45510161:25952256,3201057,0 -(1,3602:6630773,42697601:25952256,388497,0 -(1,3601:6630773,42697601:0,0,0 -g1,3601:6630773,42697601 -g1,3601:6630773,42697601 -g1,3601:6303093,42697601 -(1,3601:6303093,42697601:0,0,0 -) -g1,3601:6630773,42697601 -) -g1,3602:7263065,42697601 -g1,3602:7895357,42697601 -h1,3602:8211503,42697601:0,0,0 -k1,3602:32583029,42697601:24371526 -g1,3602:32583029,42697601 -) -(1,3611:6630773,43429315:25952256,404226,82312 -(1,3604:6630773,43429315:0,0,0 -g1,3604:6630773,43429315 -g1,3604:6630773,43429315 -g1,3604:6303093,43429315 -(1,3604:6303093,43429315:0,0,0 -) -g1,3604:6630773,43429315 -) -g1,3611:7579210,43429315 -g1,3611:7895356,43429315 -g1,3611:8211502,43429315 -g1,3611:8527648,43429315 -g1,3611:8843794,43429315 -g1,3611:9159940,43429315 -g1,3611:10740669,43429315 -g1,3611:12321398,43429315 -g1,3611:13902127,43429315 -k1,3611:13902127,43429315:0 -h1,3611:15166710,43429315:0,0,0 -k1,3611:32583030,43429315:17416320 -g1,3611:32583030,43429315 -) -(1,3611:6630773,44095493:25952256,404226,82312 -h1,3611:6630773,44095493:0,0,0 -g1,3611:7579210,44095493 -g1,3611:9159938,44095493 -g1,3611:9476084,44095493 -g1,3611:9792230,44095493 -g1,3611:10108376,44095493 -g1,3611:10740668,44095493 -g1,3611:11056814,44095493 -g1,3611:11372960,44095493 -g1,3611:11689106,44095493 -g1,3611:12321398,44095493 -g1,3611:12637544,44095493 -g1,3611:12953690,44095493 -g1,3611:13902127,44095493 -g1,3611:14218273,44095493 -g1,3611:14534419,44095493 -h1,3611:15166710,44095493:0,0,0 -k1,3611:32583030,44095493:17416320 -g1,3611:32583030,44095493 -) -(1,3611:6630773,44761671:25952256,404226,82312 -h1,3611:6630773,44761671:0,0,0 -g1,3611:7579210,44761671 -g1,3611:9159938,44761671 -g1,3611:9476084,44761671 -g1,3611:9792230,44761671 -g1,3611:10108376,44761671 -g1,3611:10740668,44761671 -g1,3611:11056814,44761671 -g1,3611:11372960,44761671 -g1,3611:11689106,44761671 -g1,3611:12321398,44761671 -g1,3611:12637544,44761671 -g1,3611:12953690,44761671 -g1,3611:13902127,44761671 -g1,3611:14218273,44761671 -g1,3611:14534419,44761671 -h1,3611:15166710,44761671:0,0,0 -k1,3611:32583030,44761671:17416320 -g1,3611:32583030,44761671 -) -(1,3611:6630773,45427849:25952256,404226,82312 -h1,3611:6630773,45427849:0,0,0 -g1,3611:7579210,45427849 -g1,3611:9159938,45427849 -g1,3611:9476084,45427849 -g1,3611:9792230,45427849 -g1,3611:10108376,45427849 -g1,3611:10740668,45427849 -g1,3611:11056814,45427849 -g1,3611:11372960,45427849 -g1,3611:12321397,45427849 -g1,3611:12637543,45427849 -g1,3611:12953689,45427849 -g1,3611:13902126,45427849 -g1,3611:14218272,45427849 -g1,3611:14534418,45427849 -h1,3611:15166709,45427849:0,0,0 -k1,3611:32583029,45427849:17416320 -g1,3611:32583029,45427849 -) -] -) -g1,3634:32583029,45510161 -g1,3634:6630773,45510161 -g1,3634:6630773,45510161 -g1,3634:32583029,45510161 -g1,3634:32583029,45510161 -) -] -(1,3634:32583029,45706769:0,0,0 -g1,3634:32583029,45706769 -) -) -] -(1,3634:6630773,47279633:25952256,0,0 -h1,3634:6630773,47279633:25952256,0,0 -) -] -(1,3634:4262630,4025873:0,0,0 -[1,3634:-473656,4025873:0,0,0 -(1,3634:-473656,-710413:0,0,0 -(1,3634:-473656,-710413:0,0,0 -g1,3634:-473656,-710413 -) -g1,3634:-473656,-710413 -) -] -) -] -!25783 -}71 -Input:531:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:532:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:533:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:534:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:535:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:536:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!557 -{72 -[1,3677:4262630,47279633:28320399,43253760,0 -(1,3677:4262630,4025873:0,0,0 -[1,3677:-473656,4025873:0,0,0 -(1,3677:-473656,-710413:0,0,0 -(1,3677:-473656,-644877:0,0,0 -k1,3677:-473656,-644877:-65536 -) -(1,3677:-473656,4736287:0,0,0 -k1,3677:-473656,4736287:5209943 -) -g1,3677:-473656,-710413 -) -] -) -[1,3677:6630773,47279633:25952256,43253760,0 -[1,3677:6630773,4812305:25952256,786432,0 -(1,3677:6630773,4812305:25952256,485622,11795 -(1,3677:6630773,4812305:25952256,485622,11795 -g1,3677:3078558,4812305 -[1,3677:3078558,4812305:0,0,0 -(1,3677:3078558,2439708:0,1703936,0 -k1,3677:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,3677:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,3677:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,3677:3078558,4812305:0,0,0 -(1,3677:3078558,2439708:0,1703936,0 -g1,3677:29030814,2439708 -g1,3677:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,3677:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,3677:37855564,2439708:1179648,16384,0 -) -) -k1,3677:3078556,2439708:-34777008 -) -] -[1,3677:3078558,4812305:0,0,0 -(1,3677:3078558,49800853:0,16384,2228224 -k1,3677:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,3677:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,3677:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,3677:3078558,4812305:0,0,0 -(1,3677:3078558,49800853:0,16384,2228224 -g1,3677:29030814,49800853 -g1,3677:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,3677:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,3677:37855564,49800853:1179648,16384,0 -) -) -k1,3677:3078556,49800853:-34777008 -) -] -g1,3677:6630773,4812305 -g1,3677:6630773,4812305 -g1,3677:9104757,4812305 -k1,3677:31786111,4812305:22681354 -) -) -] -[1,3677:6630773,45706769:25952256,40108032,0 -(1,3677:6630773,45706769:25952256,40108032,0 -(1,3677:6630773,45706769:0,0,0 -g1,3677:6630773,45706769 -) -[1,3677:6630773,45706769:25952256,40108032,0 -v1,3634:6630773,6254097:0,393216,0 -(1,3634:6630773,17978489:25952256,12117608,196608 -g1,3634:6630773,17978489 -g1,3634:6630773,17978489 -g1,3634:6434165,17978489 -(1,3634:6434165,17978489:0,12117608,196608 -r1,3677:32779637,17978489:26345472,12314216,196608 -k1,3634:6434165,17978489:-26345472 -) -(1,3634:6434165,17978489:26345472,12117608,196608 -[1,3634:6630773,17978489:25952256,11921000,0 -(1,3611:6630773,6461715:25952256,404226,82312 -h1,3611:6630773,6461715:0,0,0 -g1,3611:7579210,6461715 -g1,3611:9159938,6461715 -g1,3611:9476084,6461715 -g1,3611:9792230,6461715 -g1,3611:10108376,6461715 -g1,3611:10740668,6461715 -g1,3611:11056814,6461715 -g1,3611:11372960,6461715 -g1,3611:12321397,6461715 -g1,3611:12637543,6461715 -g1,3611:12953689,6461715 -g1,3611:13902126,6461715 -g1,3611:14218272,6461715 -g1,3611:14534418,6461715 -h1,3611:15166709,6461715:0,0,0 -k1,3611:32583029,6461715:17416320 -g1,3611:32583029,6461715 -) -(1,3611:6630773,7127893:25952256,404226,82312 -h1,3611:6630773,7127893:0,0,0 -g1,3611:7579210,7127893 -g1,3611:9159938,7127893 -g1,3611:9476084,7127893 -g1,3611:9792230,7127893 -g1,3611:10108376,7127893 -g1,3611:10740668,7127893 -g1,3611:11056814,7127893 -g1,3611:11372960,7127893 -g1,3611:12321397,7127893 -g1,3611:12637543,7127893 -g1,3611:12953689,7127893 -g1,3611:13902126,7127893 -g1,3611:14218272,7127893 -g1,3611:14534418,7127893 -h1,3611:15166709,7127893:0,0,0 -k1,3611:32583029,7127893:17416320 -g1,3611:32583029,7127893 -) -(1,3613:6630773,8449431:25952256,388497,9436 -(1,3612:6630773,8449431:0,0,0 -g1,3612:6630773,8449431 -g1,3612:6630773,8449431 -g1,3612:6303093,8449431 -(1,3612:6303093,8449431:0,0,0 -) -g1,3612:6630773,8449431 -) -g1,3613:7263065,8449431 -g1,3613:7895357,8449431 -h1,3613:8843795,8449431:0,0,0 -k1,3613:32583029,8449431:23739234 -g1,3613:32583029,8449431 -) -(1,3622:6630773,9181145:25952256,404226,82312 -(1,3615:6630773,9181145:0,0,0 -g1,3615:6630773,9181145 -g1,3615:6630773,9181145 -g1,3615:6303093,9181145 -(1,3615:6303093,9181145:0,0,0 -) -g1,3615:6630773,9181145 -) -g1,3622:7579210,9181145 -g1,3622:7895356,9181145 -g1,3622:8211502,9181145 -g1,3622:8527648,9181145 -g1,3622:8843794,9181145 -g1,3622:9159940,9181145 -g1,3622:10740669,9181145 -g1,3622:12321398,9181145 -g1,3622:13902127,9181145 -k1,3622:13902127,9181145:0 -h1,3622:15166710,9181145:0,0,0 -k1,3622:32583030,9181145:17416320 -g1,3622:32583030,9181145 -) -(1,3622:6630773,9847323:25952256,404226,82312 -h1,3622:6630773,9847323:0,0,0 -g1,3622:7579210,9847323 -g1,3622:9159938,9847323 -g1,3622:9476084,9847323 -g1,3622:9792230,9847323 -g1,3622:10108376,9847323 -g1,3622:10740668,9847323 -g1,3622:11056814,9847323 -g1,3622:11372960,9847323 -g1,3622:11689106,9847323 -g1,3622:12321398,9847323 -g1,3622:12637544,9847323 -g1,3622:12953690,9847323 -g1,3622:13269836,9847323 -g1,3622:13902128,9847323 -g1,3622:14218274,9847323 -g1,3622:14534420,9847323 -h1,3622:15166711,9847323:0,0,0 -k1,3622:32583029,9847323:17416318 -g1,3622:32583029,9847323 -) -(1,3622:6630773,10513501:25952256,404226,82312 -h1,3622:6630773,10513501:0,0,0 -g1,3622:7579210,10513501 -g1,3622:9159938,10513501 -g1,3622:9476084,10513501 -g1,3622:9792230,10513501 -g1,3622:10108376,10513501 -g1,3622:10740668,10513501 -g1,3622:11056814,10513501 -g1,3622:11372960,10513501 -g1,3622:11689106,10513501 -g1,3622:12321398,10513501 -g1,3622:12637544,10513501 -g1,3622:12953690,10513501 -g1,3622:13902127,10513501 -g1,3622:14218273,10513501 -g1,3622:14534419,10513501 -g1,3622:14850565,10513501 -h1,3622:15166711,10513501:0,0,0 -k1,3622:32583029,10513501:17416318 -g1,3622:32583029,10513501 -) -(1,3622:6630773,11179679:25952256,404226,82312 -h1,3622:6630773,11179679:0,0,0 -g1,3622:7579210,11179679 -g1,3622:9159938,11179679 -g1,3622:9476084,11179679 -g1,3622:9792230,11179679 -g1,3622:10108376,11179679 -g1,3622:10740668,11179679 -g1,3622:11056814,11179679 -g1,3622:11372960,11179679 -g1,3622:11689106,11179679 -g1,3622:12321398,11179679 -g1,3622:12637544,11179679 -g1,3622:12953690,11179679 -g1,3622:13269836,11179679 -g1,3622:13902128,11179679 -g1,3622:14218274,11179679 -g1,3622:14534420,11179679 -h1,3622:15166711,11179679:0,0,0 -k1,3622:32583029,11179679:17416318 -g1,3622:32583029,11179679 -) -(1,3622:6630773,11845857:25952256,404226,82312 -h1,3622:6630773,11845857:0,0,0 -g1,3622:7579210,11845857 -g1,3622:9159938,11845857 -g1,3622:9476084,11845857 -g1,3622:9792230,11845857 -g1,3622:10108376,11845857 -g1,3622:10740668,11845857 -g1,3622:11056814,11845857 -g1,3622:11372960,11845857 -g1,3622:11689106,11845857 -g1,3622:12321398,11845857 -g1,3622:12637544,11845857 -g1,3622:12953690,11845857 -g1,3622:13902127,11845857 -g1,3622:14218273,11845857 -g1,3622:14534419,11845857 -g1,3622:14850565,11845857 -h1,3622:15166711,11845857:0,0,0 -k1,3622:32583029,11845857:17416318 -g1,3622:32583029,11845857 -) -(1,3622:6630773,12512035:25952256,404226,82312 -h1,3622:6630773,12512035:0,0,0 -g1,3622:7579210,12512035 -g1,3622:9159938,12512035 -g1,3622:9476084,12512035 -g1,3622:9792230,12512035 -g1,3622:10108376,12512035 -g1,3622:10740668,12512035 -g1,3622:11056814,12512035 -g1,3622:11372960,12512035 -g1,3622:12321397,12512035 -g1,3622:12637543,12512035 -g1,3622:12953689,12512035 -g1,3622:13269835,12512035 -g1,3622:13902127,12512035 -g1,3622:14218273,12512035 -g1,3622:14534419,12512035 -h1,3622:15166710,12512035:0,0,0 -k1,3622:32583030,12512035:17416320 -g1,3622:32583030,12512035 -) -(1,3624:6630773,13833573:25952256,388497,9436 -(1,3623:6630773,13833573:0,0,0 -g1,3623:6630773,13833573 -g1,3623:6630773,13833573 -g1,3623:6303093,13833573 -(1,3623:6303093,13833573:0,0,0 -) -g1,3623:6630773,13833573 -) -g1,3624:7263065,13833573 -g1,3624:7895357,13833573 -h1,3624:8843795,13833573:0,0,0 -k1,3624:32583029,13833573:23739234 -g1,3624:32583029,13833573 -) -(1,3633:6630773,14565287:25952256,404226,82312 -(1,3626:6630773,14565287:0,0,0 -g1,3626:6630773,14565287 -g1,3626:6630773,14565287 -g1,3626:6303093,14565287 -(1,3626:6303093,14565287:0,0,0 -) -g1,3626:6630773,14565287 -) -g1,3633:7579210,14565287 -g1,3633:7895356,14565287 -g1,3633:8211502,14565287 -g1,3633:8527648,14565287 -g1,3633:8843794,14565287 -g1,3633:9159940,14565287 -g1,3633:10740669,14565287 -g1,3633:12321398,14565287 -g1,3633:13902127,14565287 -k1,3633:13902127,14565287:0 -h1,3633:15166710,14565287:0,0,0 -k1,3633:32583030,14565287:17416320 -g1,3633:32583030,14565287 -) -(1,3633:6630773,15231465:25952256,404226,82312 -h1,3633:6630773,15231465:0,0,0 -g1,3633:7579210,15231465 -g1,3633:9159938,15231465 -g1,3633:9476084,15231465 -g1,3633:9792230,15231465 -g1,3633:10108376,15231465 -g1,3633:10740668,15231465 -g1,3633:11056814,15231465 -g1,3633:11372960,15231465 -g1,3633:11689106,15231465 -g1,3633:12321398,15231465 -g1,3633:12637544,15231465 -g1,3633:12953690,15231465 -g1,3633:13902127,15231465 -g1,3633:14218273,15231465 -g1,3633:14534419,15231465 -g1,3633:14850565,15231465 -h1,3633:15166711,15231465:0,0,0 -k1,3633:32583029,15231465:17416318 -g1,3633:32583029,15231465 -) -(1,3633:6630773,15897643:25952256,404226,82312 -h1,3633:6630773,15897643:0,0,0 -g1,3633:7579210,15897643 -g1,3633:9159938,15897643 -g1,3633:9476084,15897643 -g1,3633:9792230,15897643 -g1,3633:10108376,15897643 -g1,3633:10740668,15897643 -g1,3633:11056814,15897643 -g1,3633:11372960,15897643 -g1,3633:11689106,15897643 -g1,3633:12321398,15897643 -g1,3633:12637544,15897643 -g1,3633:12953690,15897643 -g1,3633:13269836,15897643 -g1,3633:13902128,15897643 -g1,3633:14218274,15897643 -g1,3633:14534420,15897643 -h1,3633:15166711,15897643:0,0,0 -k1,3633:32583029,15897643:17416318 -g1,3633:32583029,15897643 -) -(1,3633:6630773,16563821:25952256,404226,82312 -h1,3633:6630773,16563821:0,0,0 -g1,3633:7579210,16563821 -g1,3633:9159938,16563821 -g1,3633:9476084,16563821 -g1,3633:9792230,16563821 -g1,3633:10108376,16563821 -g1,3633:10740668,16563821 -g1,3633:11056814,16563821 -g1,3633:11372960,16563821 -g1,3633:11689106,16563821 -g1,3633:12321398,16563821 -g1,3633:12637544,16563821 -g1,3633:12953690,16563821 -g1,3633:13902127,16563821 -g1,3633:14218273,16563821 -g1,3633:14534419,16563821 -g1,3633:14850565,16563821 -h1,3633:15166711,16563821:0,0,0 -k1,3633:32583029,16563821:17416318 -g1,3633:32583029,16563821 -) -(1,3633:6630773,17229999:25952256,404226,82312 -h1,3633:6630773,17229999:0,0,0 -g1,3633:7579210,17229999 -g1,3633:9159938,17229999 -g1,3633:9476084,17229999 -g1,3633:9792230,17229999 -g1,3633:10108376,17229999 -g1,3633:10740668,17229999 -g1,3633:11056814,17229999 -g1,3633:11372960,17229999 -g1,3633:11689106,17229999 -g1,3633:12321398,17229999 -g1,3633:12637544,17229999 -g1,3633:12953690,17229999 -g1,3633:13269836,17229999 -g1,3633:13902128,17229999 -g1,3633:14218274,17229999 -g1,3633:14534420,17229999 -h1,3633:15166711,17229999:0,0,0 -k1,3633:32583029,17229999:17416318 -g1,3633:32583029,17229999 -) -(1,3633:6630773,17896177:25952256,404226,82312 -h1,3633:6630773,17896177:0,0,0 -g1,3633:7579210,17896177 -g1,3633:9159938,17896177 -g1,3633:9476084,17896177 -g1,3633:9792230,17896177 -g1,3633:10108376,17896177 -g1,3633:10740668,17896177 -g1,3633:11056814,17896177 -g1,3633:11372960,17896177 -g1,3633:11689106,17896177 -g1,3633:12321398,17896177 -g1,3633:12637544,17896177 -g1,3633:12953690,17896177 -g1,3633:13902127,17896177 -g1,3633:14218273,17896177 -g1,3633:14534419,17896177 -g1,3633:14850565,17896177 -h1,3633:15166711,17896177:0,0,0 -k1,3633:32583029,17896177:17416318 -g1,3633:32583029,17896177 -) -] -) -g1,3634:32583029,17978489 -g1,3634:6630773,17978489 -g1,3634:6630773,17978489 -g1,3634:32583029,17978489 -g1,3634:32583029,17978489 -) -h1,3634:6630773,18175097:0,0,0 -(1,3638:6630773,19540873:25952256,505283,126483 -h1,3637:6630773,19540873:983040,0,0 -k1,3637:8467767,19540873:226119 -k1,3637:9712970,19540873:226118 -k1,3637:12930808,19540873:226119 -k1,3637:15012251,19540873:226119 -k1,3637:16632321,19540873:226119 -k1,3637:17877524,19540873:226118 -k1,3637:19824618,19540873:226119 -k1,3637:24532744,19540873:226119 -k1,3637:27505477,19540873:226119 -(1,3637:27505477,19540873:0,414482,115847 -r1,3677:27863743,19540873:358266,530329,115847 -k1,3637:27505477,19540873:-358266 -) -(1,3637:27505477,19540873:358266,414482,115847 -k1,3637:27505477,19540873:3277 -h1,3637:27860466,19540873:0,411205,112570 -) -k1,3637:28263531,19540873:226118 -k1,3637:29508735,19540873:226119 -k1,3637:32583029,19540873:0 -) -(1,3638:6630773,20382361:25952256,505283,126483 -k1,3637:9978769,20382361:257973 -k1,3637:10768240,20382361:257974 -k1,3637:12092484,20382361:257973 -k1,3637:12706317,20382361:257973 -k1,3637:15051613,20382361:257974 -k1,3637:18012946,20382361:257973 -k1,3637:19343089,20382361:257974 -k1,3637:22101916,20382361:257973 -k1,3637:23378974,20382361:257973 -k1,3637:26496939,20382361:257974 -k1,3637:29390115,20382361:257973 -k1,3637:32583029,20382361:0 -) -(1,3638:6630773,21223849:25952256,513147,126483 -k1,3637:9694402,21223849:194463 -k1,3637:10548157,21223849:194463 -k1,3637:11761705,21223849:194463 -k1,3637:14043490,21223849:194463 -k1,3637:15429398,21223849:194463 -k1,3637:18105710,21223849:194464 -k1,3637:20331134,21223849:194463 -k1,3637:25007604,21223849:194463 -k1,3637:25733564,21223849:194463 -k1,3637:28880424,21223849:194463 -k1,3637:29836415,21223849:194463 -k1,3638:32583029,21223849:0 -) -(1,3638:6630773,22065337:25952256,435480,115847 -(1,3637:6630773,22065337:0,435480,115847 -r1,3677:7692462,22065337:1061689,551327,115847 -k1,3637:6630773,22065337:-1061689 -) -(1,3637:6630773,22065337:1061689,435480,115847 -k1,3637:6630773,22065337:3277 -h1,3637:7689185,22065337:0,411205,112570 -) -k1,3638:32583028,22065337:24716896 -g1,3638:32583028,22065337 -) -v1,3640:6630773,23255803:0,393216,0 -(1,3662:6630773,32326301:25952256,9463714,196608 -g1,3662:6630773,32326301 -g1,3662:6630773,32326301 -g1,3662:6434165,32326301 -(1,3662:6434165,32326301:0,9463714,196608 -r1,3677:32779637,32326301:26345472,9660322,196608 -k1,3662:6434165,32326301:-26345472 -) -(1,3662:6434165,32326301:26345472,9463714,196608 -[1,3662:6630773,32326301:25952256,9267106,0 -(1,3642:6630773,23463421:25952256,404226,82312 -(1,3641:6630773,23463421:0,0,0 -g1,3641:6630773,23463421 -g1,3641:6630773,23463421 -g1,3641:6303093,23463421 -(1,3641:6303093,23463421:0,0,0 -) -g1,3641:6630773,23463421 -) -g1,3642:7263065,23463421 -g1,3642:8211503,23463421 -g1,3642:12321398,23463421 -g1,3642:13902127,23463421 -g1,3642:14534419,23463421 -h1,3642:15166711,23463421:0,0,0 -k1,3642:32583029,23463421:17416318 -g1,3642:32583029,23463421 -) -(1,3643:6630773,24129599:25952256,328204,0 -h1,3643:6630773,24129599:0,0,0 -g1,3643:7263065,24129599 -g1,3643:7895357,24129599 -h1,3643:8211503,24129599:0,0,0 -k1,3643:32583029,24129599:24371526 -g1,3643:32583029,24129599 -) -(1,3651:6630773,24861313:25952256,404226,82312 -(1,3645:6630773,24861313:0,0,0 -g1,3645:6630773,24861313 -g1,3645:6630773,24861313 -g1,3645:6303093,24861313 -(1,3645:6303093,24861313:0,0,0 -) -g1,3645:6630773,24861313 -) -g1,3651:7579210,24861313 -g1,3651:7895356,24861313 -g1,3651:8211502,24861313 -g1,3651:8527648,24861313 -g1,3651:8843794,24861313 -g1,3651:9159940,24861313 -g1,3651:10740669,24861313 -g1,3651:12321398,24861313 -g1,3651:13902127,24861313 -k1,3651:13902127,24861313:0 -h1,3651:15166710,24861313:0,0,0 -k1,3651:32583030,24861313:17416320 -g1,3651:32583030,24861313 -) -(1,3651:6630773,25527491:25952256,404226,82312 -h1,3651:6630773,25527491:0,0,0 -g1,3651:7579210,25527491 -g1,3651:9159938,25527491 -g1,3651:9476084,25527491 -g1,3651:9792230,25527491 -g1,3651:10108376,25527491 -g1,3651:10740668,25527491 -g1,3651:11056814,25527491 -g1,3651:11372960,25527491 -g1,3651:12321397,25527491 -g1,3651:12637543,25527491 -g1,3651:12953689,25527491 -g1,3651:13902126,25527491 -g1,3651:14218272,25527491 -h1,3651:15166709,25527491:0,0,0 -k1,3651:32583029,25527491:17416320 -g1,3651:32583029,25527491 -) -(1,3651:6630773,26193669:25952256,404226,82312 -h1,3651:6630773,26193669:0,0,0 -g1,3651:7579210,26193669 -g1,3651:9159938,26193669 -g1,3651:9476084,26193669 -g1,3651:9792230,26193669 -g1,3651:10108376,26193669 -g1,3651:10740668,26193669 -g1,3651:11056814,26193669 -g1,3651:11372960,26193669 -g1,3651:12321397,26193669 -g1,3651:12637543,26193669 -g1,3651:13902126,26193669 -g1,3651:14218272,26193669 -h1,3651:15166709,26193669:0,0,0 -k1,3651:32583029,26193669:17416320 -g1,3651:32583029,26193669 -) -(1,3651:6630773,26859847:25952256,404226,82312 -h1,3651:6630773,26859847:0,0,0 -g1,3651:7579210,26859847 -g1,3651:9159938,26859847 -g1,3651:9476084,26859847 -g1,3651:9792230,26859847 -g1,3651:10108376,26859847 -g1,3651:10740668,26859847 -g1,3651:11056814,26859847 -g1,3651:11372960,26859847 -g1,3651:12321397,26859847 -g1,3651:12637543,26859847 -g1,3651:13902126,26859847 -g1,3651:14218272,26859847 -h1,3651:15166709,26859847:0,0,0 -k1,3651:32583029,26859847:17416320 -g1,3651:32583029,26859847 -) -(1,3651:6630773,27526025:25952256,404226,82312 -h1,3651:6630773,27526025:0,0,0 -g1,3651:7579210,27526025 -g1,3651:9159938,27526025 -g1,3651:9476084,27526025 -g1,3651:9792230,27526025 -g1,3651:10740667,27526025 -g1,3651:11056813,27526025 -g1,3651:11372959,27526025 -g1,3651:12321396,27526025 -g1,3651:12637542,27526025 -g1,3651:13902125,27526025 -g1,3651:14218271,27526025 -h1,3651:15166708,27526025:0,0,0 -k1,3651:32583028,27526025:17416320 -g1,3651:32583028,27526025 -) -(1,3653:6630773,28847563:25952256,388497,9436 -(1,3652:6630773,28847563:0,0,0 -g1,3652:6630773,28847563 -g1,3652:6630773,28847563 -g1,3652:6303093,28847563 -(1,3652:6303093,28847563:0,0,0 -) -g1,3652:6630773,28847563 -) -g1,3653:7263065,28847563 -g1,3653:8527648,28847563 -h1,3653:8843794,28847563:0,0,0 -k1,3653:32583030,28847563:23739236 -g1,3653:32583030,28847563 -) -(1,3661:6630773,29579277:25952256,404226,82312 -(1,3655:6630773,29579277:0,0,0 -g1,3655:6630773,29579277 -g1,3655:6630773,29579277 -g1,3655:6303093,29579277 -(1,3655:6303093,29579277:0,0,0 -) -g1,3655:6630773,29579277 -) -g1,3661:7579210,29579277 -g1,3661:7895356,29579277 -g1,3661:8211502,29579277 -g1,3661:8527648,29579277 -g1,3661:8843794,29579277 -g1,3661:9159940,29579277 -g1,3661:10740669,29579277 -g1,3661:12321398,29579277 -g1,3661:13902127,29579277 -k1,3661:13902127,29579277:0 -h1,3661:15166710,29579277:0,0,0 -k1,3661:32583030,29579277:17416320 -g1,3661:32583030,29579277 -) -(1,3661:6630773,30245455:25952256,404226,82312 -h1,3661:6630773,30245455:0,0,0 -g1,3661:7579210,30245455 -g1,3661:9159938,30245455 -g1,3661:9476084,30245455 -g1,3661:9792230,30245455 -g1,3661:10740667,30245455 -g1,3661:11056813,30245455 -g1,3661:12321396,30245455 -g1,3661:12637542,30245455 -g1,3661:13902125,30245455 -g1,3661:14218271,30245455 -h1,3661:15166708,30245455:0,0,0 -k1,3661:32583028,30245455:17416320 -g1,3661:32583028,30245455 -) -(1,3661:6630773,30911633:25952256,404226,82312 -h1,3661:6630773,30911633:0,0,0 -g1,3661:7579210,30911633 -g1,3661:9159938,30911633 -g1,3661:9476084,30911633 -g1,3661:10740667,30911633 -g1,3661:11056813,30911633 -g1,3661:12321396,30911633 -g1,3661:12637542,30911633 -g1,3661:13902125,30911633 -g1,3661:14218271,30911633 -h1,3661:15166708,30911633:0,0,0 -k1,3661:32583028,30911633:17416320 -g1,3661:32583028,30911633 -) -(1,3661:6630773,31577811:25952256,404226,82312 -h1,3661:6630773,31577811:0,0,0 -g1,3661:7579210,31577811 -g1,3661:9159938,31577811 -g1,3661:9476084,31577811 -g1,3661:10740667,31577811 -g1,3661:11056813,31577811 -g1,3661:12321396,31577811 -g1,3661:12637542,31577811 -g1,3661:13902125,31577811 -g1,3661:14218271,31577811 -h1,3661:15166708,31577811:0,0,0 -k1,3661:32583028,31577811:17416320 -g1,3661:32583028,31577811 -) -(1,3661:6630773,32243989:25952256,404226,82312 -h1,3661:6630773,32243989:0,0,0 -g1,3661:7579210,32243989 -g1,3661:9159938,32243989 -g1,3661:9476084,32243989 -g1,3661:10740667,32243989 -g1,3661:11056813,32243989 -g1,3661:12321396,32243989 -g1,3661:12637542,32243989 -g1,3661:13902125,32243989 -g1,3661:14218271,32243989 -h1,3661:15166708,32243989:0,0,0 -k1,3661:32583028,32243989:17416320 -g1,3661:32583028,32243989 -) -] -) -g1,3662:32583029,32326301 -g1,3662:6630773,32326301 -g1,3662:6630773,32326301 -g1,3662:32583029,32326301 -g1,3662:32583029,32326301 -) -h1,3662:6630773,32522909:0,0,0 -(1,3666:6630773,33888685:25952256,513147,134348 -h1,3665:6630773,33888685:983040,0,0 -k1,3665:10046755,33888685:616284 -k1,3665:13739954,33888685:616284 -k1,3665:15547683,33888685:616284 -k1,3665:19189764,33888685:616284 -k1,3665:20753699,33888685:616284 -k1,3665:23457305,33888685:616284 -k1,3665:26400772,33888685:616284 -k1,3665:28163281,33888685:616284 -k1,3665:32583029,33888685:0 -) -(1,3666:6630773,34730173:25952256,505283,134348 -(1,3665:6837867,34730173:0,452978,115847 -r1,3677:10713251,34730173:3875384,568825,115847 -k1,3665:6837867,34730173:-3875384 -) -(1,3665:6837867,34730173:3875384,452978,115847 -k1,3665:6837867,34730173:3277 -h1,3665:10709974,34730173:0,411205,112570 -) -k1,3665:11351284,34730173:257269 -k1,3665:14802778,34730173:257269 -k1,3665:15742932,34730173:257269 -k1,3665:18941457,34730173:257269 -k1,3665:20217811,34730173:257269 -k1,3665:23197445,34730173:257268 -(1,3665:23404539,34730173:0,452978,122846 -r1,3677:25521364,34730173:2116825,575824,122846 -k1,3665:23404539,34730173:-2116825 -) -(1,3665:23404539,34730173:2116825,452978,122846 -k1,3665:23404539,34730173:3277 -h1,3665:25518087,34730173:0,411205,112570 -) -k1,3665:25985727,34730173:257269 -k1,3665:27234556,34730173:257269 -k1,3665:30275794,34730173:257269 -k1,3665:31149101,34730173:257269 -k1,3666:32583029,34730173:0 -) -(1,3666:6630773,35571661:25952256,513147,134348 -k1,3665:7501173,35571661:281887 -k1,3665:10821964,35571661:281887 -k1,3665:14084428,35571661:281887 -k1,3665:18504257,35571661:281887 -k1,3665:21216218,35571661:281886 -k1,3665:24725098,35571661:281887 -k1,3665:28032782,35571661:281887 -k1,3665:29506114,35571661:281887 -k1,3665:32583029,35571661:0 -) -(1,3666:6630773,36413149:25952256,513147,7863 -g1,3665:7777653,36413149 -k1,3666:32583030,36413149:21898200 -g1,3666:32583030,36413149 -) -(1,3671:6630773,39220717:25952256,32768,229376 -(1,3671:6630773,39220717:0,32768,229376 -(1,3671:6630773,39220717:5505024,32768,229376 -r1,3677:12135797,39220717:5505024,262144,229376 -) -k1,3671:6630773,39220717:-5505024 -) -(1,3671:6630773,39220717:25952256,32768,0 -r1,3677:32583029,39220717:25952256,32768,0 -) -) -(1,3671:6630773,40825045:25952256,582746,9436 -(1,3671:6630773,40825045:2464678,582746,0 -g1,3671:6630773,40825045 -g1,3671:9095451,40825045 -) -k1,3671:32583028,40825045:20599012 -g1,3671:32583028,40825045 -) -(1,3675:6630773,42059749:25952256,513147,134348 -k1,3674:9136810,42059749:187373 -k1,3674:10315743,42059749:187373 -k1,3674:12016342,42059749:187373 -k1,3674:12855143,42059749:187373 -k1,3674:15574172,42059749:187373 -k1,3674:19164831,42059749:187374 -k1,3674:20953904,42059749:187373 -k1,3674:24446258,42059749:187373 -k1,3674:25652716,42059749:187373 -k1,3674:28064381,42059749:187373 -k1,3674:31563944,42059749:187373 -k1,3674:32583029,42059749:0 -) -(1,3675:6630773,42901237:25952256,505283,134348 -k1,3674:10300487,42901237:194995 -k1,3674:11111520,42901237:194995 -k1,3674:12077217,42901237:194994 -k1,3674:16054950,42901237:194995 -k1,3674:16932830,42901237:194995 -k1,3674:20357439,42901237:194995 -k1,3674:21168471,42901237:194994 -k1,3674:21719326,42901237:194995 -k1,3674:24187110,42901237:194995 -k1,3674:25939896,42901237:194995 -k1,3674:27239172,42901237:194994 -k1,3674:28181933,42901237:194995 -k1,3674:30727049,42901237:194995 -k1,3674:32583029,42901237:0 -) -(1,3675:6630773,43742725:25952256,513147,126483 -k1,3674:8354727,43742725:156333 -k1,3674:11692178,43742725:156333 -k1,3674:12531396,43742725:156333 -k1,3674:15662408,43742725:156333 -k1,3674:18300589,43742725:156333 -k1,3674:19653610,43742725:156334 -k1,3674:22572286,43742725:156333 -k1,3674:25358579,43742725:156333 -k1,3674:27525557,43742725:156333 -k1,3674:28673450,43742725:156333 -k1,3674:30697559,43742725:156333 -k1,3674:32583029,43742725:0 -) -(1,3675:6630773,44584213:25952256,513147,134348 -k1,3674:9133933,44584213:147141 -k1,3674:11505367,44584213:147142 -k1,3674:14002629,44584213:147141 -k1,3674:15543722,44584213:147142 -(1,3674:15543722,44584213:0,459977,115847 -r1,3677:18363971,44584213:2820249,575824,115847 -k1,3674:15543722,44584213:-2820249 -) -(1,3674:15543722,44584213:2820249,459977,115847 -k1,3674:15543722,44584213:3277 -h1,3674:18360694,44584213:0,411205,112570 -) -k1,3674:18511112,44584213:147141 -k1,3674:19649814,44584213:147142 -k1,3674:23134048,44584213:147141 -k1,3674:23964074,44584213:147141 -k1,3674:27731425,44584213:147142 -k1,3674:28293358,44584213:147090 -k1,3674:29726315,44584213:147141 -k1,3674:32583029,44584213:0 -) -(1,3675:6630773,45425701:25952256,513147,115847 -g1,3674:9337409,45425701 -g1,3674:11760930,45425701 -g1,3674:13244665,45425701 -g1,3674:14548176,45425701 -g1,3674:15495171,45425701 -g1,3674:18044521,45425701 -g1,3674:19637701,45425701 -g1,3674:22532426,45425701 -(1,3674:22532426,45425701:0,452978,115847 -r1,3677:25704386,45425701:3171960,568825,115847 -k1,3674:22532426,45425701:-3171960 -) -(1,3674:22532426,45425701:3171960,452978,115847 -k1,3674:22532426,45425701:3277 -h1,3674:25701109,45425701:0,411205,112570 -) -k1,3675:32583029,45425701:6704973 -g1,3675:32583029,45425701 -) -] -(1,3677:32583029,45706769:0,0,0 -g1,3677:32583029,45706769 -) -) -] -(1,3677:6630773,47279633:25952256,0,0 -h1,3677:6630773,47279633:25952256,0,0 -) -] -(1,3677:4262630,4025873:0,0,0 -[1,3677:-473656,4025873:0,0,0 -(1,3677:-473656,-710413:0,0,0 -(1,3677:-473656,-710413:0,0,0 -g1,3677:-473656,-710413 -) -g1,3677:-473656,-710413 -) -] -) -] -!25674 -}72 -Input:537:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:538:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:539:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:540:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:541:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:542:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:543:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:544:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:545:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:546:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:547:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:548:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:549:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1194 -{73 -[1,3761:4262630,47279633:28320399,43253760,0 -(1,3761:4262630,4025873:0,0,0 -[1,3761:-473656,4025873:0,0,0 -(1,3761:-473656,-710413:0,0,0 -(1,3761:-473656,-644877:0,0,0 -k1,3761:-473656,-644877:-65536 -) -(1,3761:-473656,4736287:0,0,0 -k1,3761:-473656,4736287:5209943 -) -g1,3761:-473656,-710413 -) -] -) -[1,3761:6630773,47279633:25952256,43253760,0 -[1,3761:6630773,4812305:25952256,786432,0 -(1,3761:6630773,4812305:25952256,505283,134348 -(1,3761:6630773,4812305:25952256,505283,134348 -g1,3761:3078558,4812305 -[1,3761:3078558,4812305:0,0,0 -(1,3761:3078558,2439708:0,1703936,0 -k1,3761:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,3761:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,3761:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,3761:3078558,4812305:0,0,0 -(1,3761:3078558,2439708:0,1703936,0 -g1,3761:29030814,2439708 -g1,3761:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,3761:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,3761:37855564,2439708:1179648,16384,0 -) -) -k1,3761:3078556,2439708:-34777008 -) -] -[1,3761:3078558,4812305:0,0,0 -(1,3761:3078558,49800853:0,16384,2228224 -k1,3761:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,3761:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,3761:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,3761:3078558,4812305:0,0,0 -(1,3761:3078558,49800853:0,16384,2228224 -g1,3761:29030814,49800853 -g1,3761:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,3761:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,3761:37855564,49800853:1179648,16384,0 -) -) -k1,3761:3078556,49800853:-34777008 -) -] -g1,3761:6630773,4812305 -k1,3761:19515153,4812305:12087462 -g1,3761:20901894,4812305 -g1,3761:21550700,4812305 -g1,3761:24864855,4812305 -g1,3761:27600327,4812305 -g1,3761:29010006,4812305 -) -) -] -[1,3761:6630773,45706769:25952256,40108032,0 -(1,3761:6630773,45706769:25952256,40108032,0 -(1,3761:6630773,45706769:0,0,0 -g1,3761:6630773,45706769 -) -[1,3761:6630773,45706769:25952256,40108032,0 -v1,3677:6630773,6254097:0,393216,0 -(1,3695:6630773,12583861:25952256,6722980,196608 -g1,3695:6630773,12583861 -g1,3695:6630773,12583861 -g1,3695:6434165,12583861 -(1,3695:6434165,12583861:0,6722980,196608 -r1,3761:32779637,12583861:26345472,6919588,196608 -k1,3695:6434165,12583861:-26345472 -) -(1,3695:6434165,12583861:26345472,6722980,196608 -[1,3695:6630773,12583861:25952256,6526372,0 -(1,3679:6630773,6461715:25952256,404226,101187 -(1,3678:6630773,6461715:0,0,0 -g1,3678:6630773,6461715 -g1,3678:6630773,6461715 -g1,3678:6303093,6461715 -(1,3678:6303093,6461715:0,0,0 -) -g1,3678:6630773,6461715 -) -g1,3679:9792230,6461715 -g1,3679:10740668,6461715 -g1,3679:14850563,6461715 -g1,3679:18328166,6461715 -g1,3679:21805769,6461715 -g1,3679:25283372,6461715 -g1,3679:28760975,6461715 -h1,3679:31922432,6461715:0,0,0 -k1,3679:32583029,6461715:660597 -g1,3679:32583029,6461715 -) -(1,3680:6630773,7127893:25952256,410518,101187 -h1,3680:6630773,7127893:0,0,0 -g1,3680:9792230,7127893 -g1,3680:10740668,7127893 -k1,3680:10740668,7127893:0 -h1,3680:16115144,7127893:0,0,0 -k1,3680:32583029,7127893:16467885 -g1,3680:32583029,7127893 -) -(1,3681:6630773,7794071:25952256,410518,101187 -h1,3681:6630773,7794071:0,0,0 -h1,3681:9476084,7794071:0,0,0 -k1,3681:32583028,7794071:23106944 -g1,3681:32583028,7794071 -) -(1,3686:6630773,8525785:25952256,404226,76021 -(1,3683:6630773,8525785:0,0,0 -g1,3683:6630773,8525785 -g1,3683:6630773,8525785 -g1,3683:6303093,8525785 -(1,3683:6303093,8525785:0,0,0 -) -g1,3683:6630773,8525785 -) -g1,3686:7579210,8525785 -g1,3686:8843793,8525785 -g1,3686:11372959,8525785 -g1,3686:13902125,8525785 -g1,3686:16431291,8525785 -g1,3686:18960457,8525785 -g1,3686:21489623,8525785 -h1,3686:23702643,8525785:0,0,0 -k1,3686:32583029,8525785:8880386 -g1,3686:32583029,8525785 -) -(1,3686:6630773,9191963:25952256,404226,6290 -h1,3686:6630773,9191963:0,0,0 -g1,3686:7579210,9191963 -g1,3686:10108376,9191963 -g1,3686:12637542,9191963 -h1,3686:14850562,9191963:0,0,0 -k1,3686:32583030,9191963:17732468 -g1,3686:32583030,9191963 -) -(1,3688:6630773,10513501:25952256,410518,101187 -(1,3687:6630773,10513501:0,0,0 -g1,3687:6630773,10513501 -g1,3687:6630773,10513501 -g1,3687:6303093,10513501 -(1,3687:6303093,10513501:0,0,0 -) -g1,3687:6630773,10513501 -) -g1,3688:9792230,10513501 -g1,3688:10740668,10513501 -g1,3688:13585980,10513501 -g1,3688:14218272,10513501 -g1,3688:17695875,10513501 -g1,3688:19908895,10513501 -g1,3688:20541187,10513501 -g1,3688:24651082,10513501 -h1,3688:28128684,10513501:0,0,0 -k1,3688:32583029,10513501:4454345 -g1,3688:32583029,10513501 -) -(1,3689:6630773,11179679:25952256,410518,101187 -h1,3689:6630773,11179679:0,0,0 -h1,3689:9476084,11179679:0,0,0 -k1,3689:32583028,11179679:23106944 -g1,3689:32583028,11179679 -) -(1,3694:6630773,11911393:25952256,404226,76021 -(1,3691:6630773,11911393:0,0,0 -g1,3691:6630773,11911393 -g1,3691:6630773,11911393 -g1,3691:6303093,11911393 -(1,3691:6303093,11911393:0,0,0 -) -g1,3691:6630773,11911393 -) -g1,3694:7579210,11911393 -g1,3694:8843793,11911393 -g1,3694:11372959,11911393 -g1,3694:13902125,11911393 -g1,3694:16431291,11911393 -g1,3694:18960457,11911393 -g1,3694:21489623,11911393 -h1,3694:23702643,11911393:0,0,0 -k1,3694:32583029,11911393:8880386 -g1,3694:32583029,11911393 -) -(1,3694:6630773,12577571:25952256,404226,6290 -h1,3694:6630773,12577571:0,0,0 -g1,3694:7579210,12577571 -g1,3694:10108376,12577571 -g1,3694:12637542,12577571 -h1,3694:14850562,12577571:0,0,0 -k1,3694:32583030,12577571:17732468 -g1,3694:32583030,12577571 -) -] -) -g1,3695:32583029,12583861 -g1,3695:6630773,12583861 -g1,3695:6630773,12583861 -g1,3695:32583029,12583861 -g1,3695:32583029,12583861 -) -h1,3695:6630773,12780469:0,0,0 -(1,3699:6630773,14146245:25952256,513147,95026 -h1,3698:6630773,14146245:983040,0,0 -k1,3698:9016545,14146245:206045 -k1,3698:11066773,14146245:206045 -k1,3698:14355632,14146245:206045 -k1,3698:15220970,14146245:206046 -k1,3698:16446100,14146245:206045 -k1,3698:18444555,14146245:206045 -k1,3698:19754882,14146245:206045 -k1,3698:20708693,14146245:206045 -k1,3698:21849281,14146245:206045 -k1,3698:23753364,14146245:206045 -k1,3698:24978494,14146245:206045 -k1,3698:27078530,14146245:206046 -k1,3698:27816072,14146245:206045 -k1,3698:30545908,14146245:206045 -k1,3698:31379788,14146245:206045 -k1,3698:32583029,14146245:0 -) -(1,3699:6630773,14987733:25952256,505283,134348 -k1,3698:8352737,14987733:181213 -k1,3698:10231988,14987733:181213 -k1,3698:12503144,14987733:181213 -(1,3698:12503144,14987733:0,459977,115847 -r1,3761:15323393,14987733:2820249,575824,115847 -k1,3698:12503144,14987733:-2820249 -) -(1,3698:12503144,14987733:2820249,459977,115847 -k1,3698:12503144,14987733:3277 -h1,3698:15320116,14987733:0,411205,112570 -) -k1,3698:15678276,14987733:181213 -k1,3698:19470523,14987733:181213 -(1,3698:19470523,14987733:0,452978,115847 -r1,3761:21587348,14987733:2116825,568825,115847 -k1,3698:19470523,14987733:-2116825 -) -(1,3698:19470523,14987733:2116825,452978,115847 -k1,3698:19470523,14987733:3277 -h1,3698:21584071,14987733:0,411205,112570 -) -k1,3698:21768562,14987733:181214 -k1,3698:23141220,14987733:181213 -(1,3698:23141220,14987733:0,452978,115847 -r1,3761:25258045,14987733:2116825,568825,115847 -k1,3698:23141220,14987733:-2116825 -) -(1,3698:23141220,14987733:2116825,452978,115847 -k1,3698:23141220,14987733:3277 -h1,3698:25254768,14987733:0,411205,112570 -) -k1,3698:25439258,14987733:181213 -k1,3698:27800854,14987733:181213 -k1,3698:29448763,14987733:181213 -k1,3698:30377742,14987733:181213 -k1,3698:32583029,14987733:0 -) -(1,3699:6630773,15829221:25952256,505283,134348 -k1,3698:7197706,15829221:211073 -k1,3698:9386655,15829221:211072 -k1,3698:10283890,15829221:211073 -k1,3698:13740961,15829221:211073 -k1,3698:15345985,15829221:211073 -k1,3698:17349467,15829221:211072 -k1,3698:18751985,15829221:211073 -k1,3698:21934460,15829221:211073 -k1,3698:23989715,15829221:211072 -k1,3698:24816826,15829221:211073 -k1,3698:26046984,15829221:211073 -k1,3698:27911530,15829221:211073 -k1,3698:30736833,15829221:211072 -k1,3698:31563944,15829221:211073 -k1,3698:32583029,15829221:0 -) -(1,3699:6630773,16670709:25952256,513147,134348 -k1,3698:8074202,16670709:270990 -k1,3698:10827040,16670709:270990 -k1,3698:12294718,16670709:270991 -k1,3698:15638036,16670709:270990 -k1,3698:18114313,16670709:270990 -k1,3698:19036731,16670709:270990 -(1,3698:19036731,16670709:0,452978,115847 -r1,3761:21153556,16670709:2116825,568825,115847 -k1,3698:19036731,16670709:-2116825 -) -(1,3698:19036731,16670709:2116825,452978,115847 -k1,3698:19036731,16670709:3277 -h1,3698:21150279,16670709:0,411205,112570 -) -k1,3698:21424546,16670709:270990 -k1,3698:25269870,16670709:270990 -k1,3698:26559946,16670709:270991 -k1,3698:28570262,16670709:270990 -k1,3698:29500544,16670709:270990 -k1,3698:30790619,16670709:270990 -k1,3698:32583029,16670709:0 -) -(1,3699:6630773,17512197:25952256,505283,134348 -k1,3698:8676431,17512197:190989 -k1,3698:9676791,17512197:190990 -k1,3698:11376419,17512197:190989 -k1,3698:12587805,17512197:190990 -k1,3698:14847110,17512197:190989 -k1,3698:15720985,17512197:190990 -k1,3698:18096289,17512197:190989 -k1,3698:19478724,17512197:190990 -k1,3698:20688798,17512197:190989 -k1,3698:23952116,17512197:190990 -k1,3698:26348392,17512197:190989 -k1,3698:27190810,17512197:190990 -(1,3698:27190810,17512197:0,452978,115847 -r1,3761:29307635,17512197:2116825,568825,115847 -k1,3698:27190810,17512197:-2116825 -) -(1,3698:27190810,17512197:2116825,452978,115847 -k1,3698:27190810,17512197:3277 -h1,3698:29304358,17512197:0,411205,112570 -) -k1,3698:29498624,17512197:190989 -k1,3698:31299834,17512197:190990 -k1,3698:32583029,17512197:0 -) -(1,3699:6630773,18353685:25952256,505283,7863 -g1,3698:8898318,18353685 -g1,3698:9748975,18353685 -g1,3698:10967289,18353685 -k1,3699:32583029,18353685:19649660 -g1,3699:32583029,18353685 -) -v1,3701:6630773,19544151:0,393216,0 -(1,3711:6630773,22488307:25952256,3337372,196608 -g1,3711:6630773,22488307 -g1,3711:6630773,22488307 -g1,3711:6434165,22488307 -(1,3711:6434165,22488307:0,3337372,196608 -r1,3761:32779637,22488307:26345472,3533980,196608 -k1,3711:6434165,22488307:-26345472 -) -(1,3711:6434165,22488307:26345472,3337372,196608 -[1,3711:6630773,22488307:25952256,3140764,0 -(1,3703:6630773,19751769:25952256,404226,101187 -(1,3702:6630773,19751769:0,0,0 -g1,3702:6630773,19751769 -g1,3702:6630773,19751769 -g1,3702:6303093,19751769 -(1,3702:6303093,19751769:0,0,0 -) -g1,3702:6630773,19751769 -) -g1,3703:9792230,19751769 -g1,3703:10740668,19751769 -g1,3703:12321398,19751769 -g1,3703:13269836,19751769 -g1,3703:14218274,19751769 -g1,3703:15166712,19751769 -g1,3703:16115150,19751769 -h1,3703:16747442,19751769:0,0,0 -k1,3703:32583029,19751769:15835587 -g1,3703:32583029,19751769 -) -(1,3704:6630773,20417947:25952256,410518,101187 -h1,3704:6630773,20417947:0,0,0 -k1,3704:9689207,20417947:213123 -k1,3704:10534621,20417947:213122 -k1,3704:13276910,20417947:213123 -k1,3704:13806178,20417947:213122 -k1,3704:17180758,20417947:213123 -k1,3704:19290754,20417947:213122 -k1,3704:19820023,20417947:213123 -k1,3704:21297730,20417947:213123 -k1,3704:22459290,20417947:213122 -k1,3704:24569287,20417947:213123 -k1,3704:25098555,20417947:213122 -k1,3704:29105427,20417947:213123 -h1,3704:32583029,20417947:0,0,0 -k1,3704:32583029,20417947:0 -k1,3704:32583029,20417947:0 -) -(1,3705:6630773,21084125:25952256,410518,101187 -h1,3705:6630773,21084125:0,0,0 -h1,3705:9476084,21084125:0,0,0 -k1,3705:32583028,21084125:23106944 -g1,3705:32583028,21084125 -) -(1,3710:6630773,21815839:25952256,404226,76021 -(1,3707:6630773,21815839:0,0,0 -g1,3707:6630773,21815839 -g1,3707:6630773,21815839 -g1,3707:6303093,21815839 -(1,3707:6303093,21815839:0,0,0 -) -g1,3707:6630773,21815839 -) -g1,3710:7579210,21815839 -g1,3710:8843793,21815839 -g1,3710:11372959,21815839 -g1,3710:13902125,21815839 -g1,3710:16431291,21815839 -g1,3710:18960457,21815839 -g1,3710:21489623,21815839 -h1,3710:23702643,21815839:0,0,0 -k1,3710:32583029,21815839:8880386 -g1,3710:32583029,21815839 -) -(1,3710:6630773,22482017:25952256,404226,6290 -h1,3710:6630773,22482017:0,0,0 -g1,3710:7579210,22482017 -g1,3710:10108376,22482017 -g1,3710:12637542,22482017 -h1,3710:14850562,22482017:0,0,0 -k1,3710:32583030,22482017:17732468 -g1,3710:32583030,22482017 -) -] -) -g1,3711:32583029,22488307 -g1,3711:6630773,22488307 -g1,3711:6630773,22488307 -g1,3711:32583029,22488307 -g1,3711:32583029,22488307 -) -h1,3711:6630773,22684915:0,0,0 -(1,3715:6630773,24050691:25952256,513147,134348 -h1,3714:6630773,24050691:983040,0,0 -k1,3714:8341514,24050691:257808 -k1,3714:9130820,24050691:257809 -k1,3714:11517893,24050691:257808 -k1,3714:15041361,24050691:257809 -k1,3714:15950597,24050691:257808 -k1,3714:17300891,24050691:257809 -k1,3714:21171699,24050691:257808 -k1,3714:23273691,24050691:257809 -k1,3714:24479150,24050691:257808 -k1,3714:26703039,24050691:257809 -k1,3714:29792002,24050691:257808 -k1,3714:30507908,24050691:257809 -k1,3714:31297213,24050691:257808 -k1,3714:32583029,24050691:0 -) -(1,3715:6630773,24892179:25952256,505283,126483 -g1,3714:9459962,24892179 -g1,3714:10310619,24892179 -g1,3714:11602333,24892179 -k1,3715:32583029,24892179:17990944 -g1,3715:32583029,24892179 -) -(1,3717:6630773,25733667:25952256,505283,126483 -h1,3716:6630773,25733667:983040,0,0 -k1,3716:8455904,25733667:214256 -k1,3716:9689245,25733667:214256 -k1,3716:12895220,25733667:214256 -k1,3716:14964799,25733667:214255 -k1,3716:16047407,25733667:214256 -k1,3716:18466950,25733667:214256 -k1,3716:19037066,25733667:214256 -k1,3716:21871451,25733667:214256 -k1,3716:24063584,25733667:214256 -k1,3716:24960725,25733667:214256 -k1,3716:25530840,25733667:214255 -k1,3716:28719775,25733667:214256 -k1,3716:30911908,25733667:214256 -k1,3716:31812326,25733667:214256 -k1,3716:32583029,25733667:0 -) -(1,3717:6630773,26575155:25952256,513147,134348 -k1,3716:9879250,26575155:176149 -k1,3716:11003050,26575155:176149 -k1,3716:14459931,26575155:176149 -(1,3716:14459931,26575155:0,414482,115847 -r1,3761:14818197,26575155:358266,530329,115847 -k1,3716:14459931,26575155:-358266 -) -(1,3716:14459931,26575155:358266,414482,115847 -k1,3716:14459931,26575155:3277 -h1,3716:14814920,26575155:0,411205,112570 -) -k1,3716:14994347,26575155:176150 -k1,3716:15829788,26575155:176149 -k1,3716:18701433,26575155:176149 -(1,3716:18701433,26575155:0,459977,115847 -r1,3761:21521682,26575155:2820249,575824,115847 -k1,3716:18701433,26575155:-2820249 -) -(1,3716:18701433,26575155:2820249,459977,115847 -k1,3716:18701433,26575155:3277 -h1,3716:21518405,26575155:0,411205,112570 -) -k1,3716:21871501,26575155:176149 -k1,3716:22517543,26575155:176149 -k1,3716:23225189,26575155:176149 -k1,3716:24687154,26575155:176149 -k1,3716:27493264,26575155:176150 -k1,3716:28320841,26575155:176149 -k1,3716:29934195,26575155:176149 -k1,3716:30466204,26575155:176149 -(1,3716:30466204,26575155:0,459977,115847 -r1,3761:32583029,26575155:2116825,575824,115847 -k1,3716:30466204,26575155:-2116825 -) -(1,3716:30466204,26575155:2116825,459977,115847 -k1,3716:30466204,26575155:3277 -h1,3716:32579752,26575155:0,411205,112570 -) -k1,3716:32583029,26575155:0 -) -(1,3717:6630773,27416643:25952256,513147,134348 -k1,3716:7567626,27416643:250691 -k1,3716:8589019,27416643:250690 -k1,3716:11912038,27416643:250691 -k1,3716:13110379,27416643:250690 -k1,3716:16641802,27416643:250691 -(1,3716:16641802,27416643:0,414482,115847 -r1,3761:17000068,27416643:358266,530329,115847 -k1,3716:16641802,27416643:-358266 -) -(1,3716:16641802,27416643:358266,414482,115847 -k1,3716:16641802,27416643:3277 -h1,3716:16996791,27416643:0,411205,112570 -) -k1,3716:17424428,27416643:250690 -k1,3716:18628668,27416643:250691 -k1,3716:19971844,27416643:250691 -k1,3716:22961939,27416643:250690 -k1,3716:24606581,27416643:250691 -k1,3716:25213131,27416643:250690 -k1,3716:26655267,27416643:250691 -k1,3716:29906851,27416643:250690 -k1,3716:30513402,27416643:250691 -k1,3716:32583029,27416643:0 -) -(1,3717:6630773,28258131:25952256,513147,115847 -k1,3716:8842737,28258131:234087 -k1,3716:9728252,28258131:234087 -k1,3716:12166315,28258131:234087 -k1,3716:13166518,28258131:234087 -k1,3716:16792748,28258131:234087 -k1,3716:17980384,28258131:234087 -k1,3716:19306956,28258131:234087 -k1,3716:22236539,28258131:234087 -(1,3716:22236539,28258131:0,452978,115847 -r1,3761:25056788,28258131:2820249,568825,115847 -k1,3716:22236539,28258131:-2820249 -) -(1,3716:22236539,28258131:2820249,452978,115847 -k1,3716:22236539,28258131:3277 -h1,3716:25053511,28258131:0,411205,112570 -) -k1,3716:25290875,28258131:234087 -k1,3716:26176390,28258131:234087 -k1,3716:27797219,28258131:234087 -k1,3716:28644068,28258131:234087 -k1,3716:29897240,28258131:234087 -k1,3716:31923737,28258131:234087 -k1,3716:32583029,28258131:0 -) -(1,3717:6630773,29099619:25952256,513147,7863 -g1,3716:7849087,29099619 -k1,3717:32583029,29099619:22335980 -g1,3717:32583029,29099619 -) -v1,3719:6630773,30290085:0,393216,0 -(1,3742:6630773,38013215:25952256,8116346,196608 -g1,3742:6630773,38013215 -g1,3742:6630773,38013215 -g1,3742:6434165,38013215 -(1,3742:6434165,38013215:0,8116346,196608 -r1,3761:32779637,38013215:26345472,8312954,196608 -k1,3742:6434165,38013215:-26345472 -) -(1,3742:6434165,38013215:26345472,8116346,196608 -[1,3742:6630773,38013215:25952256,7919738,0 -(1,3721:6630773,30503995:25952256,410518,101187 -(1,3720:6630773,30503995:0,0,0 -g1,3720:6630773,30503995 -g1,3720:6630773,30503995 -g1,3720:6303093,30503995 -(1,3720:6303093,30503995:0,0,0 -) -g1,3720:6630773,30503995 -) -k1,3721:6630773,30503995:0 -h1,3721:12005249,30503995:0,0,0 -k1,3721:32583029,30503995:20577780 -g1,3721:32583029,30503995 -) -(1,3725:6630773,31235709:25952256,404226,76021 -(1,3723:6630773,31235709:0,0,0 -g1,3723:6630773,31235709 -g1,3723:6630773,31235709 -g1,3723:6303093,31235709 -(1,3723:6303093,31235709:0,0,0 -) -g1,3723:6630773,31235709 -) -g1,3725:7579210,31235709 -g1,3725:8843793,31235709 -g1,3725:12005250,31235709 -h1,3725:14850561,31235709:0,0,0 -k1,3725:32583029,31235709:17732468 -g1,3725:32583029,31235709 -) -(1,3727:6630773,32557247:25952256,410518,101187 -(1,3726:6630773,32557247:0,0,0 -g1,3726:6630773,32557247 -g1,3726:6630773,32557247 -g1,3726:6303093,32557247 -(1,3726:6303093,32557247:0,0,0 -) -g1,3726:6630773,32557247 -) -g1,3727:11372959,32557247 -g1,3727:12321397,32557247 -g1,3727:18644311,32557247 -g1,3727:19592748,32557247 -h1,3727:22754205,32557247:0,0,0 -k1,3727:32583029,32557247:9828824 -g1,3727:32583029,32557247 -) -(1,3728:6630773,33223425:25952256,410518,6290 -h1,3728:6630773,33223425:0,0,0 -h1,3728:11056813,33223425:0,0,0 -k1,3728:32583029,33223425:21526216 -g1,3728:32583029,33223425 -) -(1,3733:6630773,33955139:25952256,404226,76021 -(1,3730:6630773,33955139:0,0,0 -g1,3730:6630773,33955139 -g1,3730:6630773,33955139 -g1,3730:6303093,33955139 -(1,3730:6303093,33955139:0,0,0 -) -g1,3730:6630773,33955139 -) -g1,3733:7579210,33955139 -g1,3733:8843793,33955139 -g1,3733:11372959,33955139 -g1,3733:13902125,33955139 -h1,3733:16115145,33955139:0,0,0 -k1,3733:32583029,33955139:16467884 -g1,3733:32583029,33955139 -) -(1,3733:6630773,34621317:25952256,404226,6290 -h1,3733:6630773,34621317:0,0,0 -g1,3733:7579210,34621317 -g1,3733:10108376,34621317 -g1,3733:12637542,34621317 -h1,3733:14850562,34621317:0,0,0 -k1,3733:32583030,34621317:17732468 -g1,3733:32583030,34621317 -) -(1,3735:6630773,35942855:25952256,410518,76021 -(1,3734:6630773,35942855:0,0,0 -g1,3734:6630773,35942855 -g1,3734:6630773,35942855 -g1,3734:6303093,35942855 -(1,3734:6303093,35942855:0,0,0 -) -g1,3734:6630773,35942855 -) -g1,3735:11372959,35942855 -g1,3735:12321397,35942855 -k1,3735:12321397,35942855:0 -h1,3735:19276602,35942855:0,0,0 -k1,3735:32583029,35942855:13306427 -g1,3735:32583029,35942855 -) -(1,3736:6630773,36609033:25952256,410518,6290 -h1,3736:6630773,36609033:0,0,0 -h1,3736:11056813,36609033:0,0,0 -k1,3736:32583029,36609033:21526216 -g1,3736:32583029,36609033 -) -(1,3741:6630773,37340747:25952256,404226,76021 -(1,3738:6630773,37340747:0,0,0 -g1,3738:6630773,37340747 -g1,3738:6630773,37340747 -g1,3738:6303093,37340747 -(1,3738:6303093,37340747:0,0,0 -) -g1,3738:6630773,37340747 -) -g1,3741:7579210,37340747 -g1,3741:8843793,37340747 -g1,3741:11372959,37340747 -g1,3741:13902125,37340747 -h1,3741:16115145,37340747:0,0,0 -k1,3741:32583029,37340747:16467884 -g1,3741:32583029,37340747 -) -(1,3741:6630773,38006925:25952256,404226,6290 -h1,3741:6630773,38006925:0,0,0 -g1,3741:7579210,38006925 -g1,3741:10108376,38006925 -h1,3741:12321396,38006925:0,0,0 -k1,3741:32583028,38006925:20261632 -g1,3741:32583028,38006925 -) -] -) -g1,3742:32583029,38013215 -g1,3742:6630773,38013215 -g1,3742:6630773,38013215 -g1,3742:32583029,38013215 -g1,3742:32583029,38013215 -) -h1,3742:6630773,38209823:0,0,0 -(1,3746:6630773,39575599:25952256,513147,134348 -h1,3745:6630773,39575599:983040,0,0 -k1,3745:8334658,39575599:250952 -k1,3745:9689893,39575599:250953 -k1,3745:10688611,39575599:250952 -k1,3745:12379390,39575599:250953 -k1,3745:14485666,39575599:250952 -k1,3745:16021124,39575599:250952 -k1,3745:19599340,39575599:250953 -k1,3745:21343202,39575599:250952 -k1,3745:22660425,39575599:250952 -k1,3745:24435745,39575599:250953 -k1,3745:27029609,39575599:250952 -k1,3745:29174552,39575599:250953 -k1,3745:31391584,39575599:250952 -k1,3745:32583029,39575599:0 -) -(1,3746:6630773,40417087:25952256,513147,126483 -g1,3745:8114508,40417087 -(1,3745:8114508,40417087:0,459977,115847 -r1,3761:10934757,40417087:2820249,575824,115847 -k1,3745:8114508,40417087:-2820249 -) -(1,3745:8114508,40417087:2820249,459977,115847 -k1,3745:8114508,40417087:3277 -h1,3745:10931480,40417087:0,411205,112570 -) -g1,3745:11133986,40417087 -g1,3745:12437497,40417087 -g1,3745:13384492,40417087 -g1,3745:15096947,40417087 -g1,3745:15947604,40417087 -g1,3745:19044180,40417087 -g1,3745:20767776,40417087 -g1,3745:21986090,40417087 -g1,3745:24528231,40417087 -g1,3745:26621450,40417087 -k1,3746:32583029,40417087:3995499 -g1,3746:32583029,40417087 -) -v1,3748:6630773,41782863:0,393216,0 -(1,3761:6630773,44984894:25952256,3595247,589824 -g1,3761:6630773,44984894 -(1,3761:6630773,44984894:25952256,3595247,589824 -(1,3761:6630773,45574718:25952256,4185071,0 -[1,3761:6630773,45574718:25952256,4185071,0 -(1,3761:6630773,45574718:25952256,4158857,0 -r1,3761:6656987,45574718:26214,4158857,0 -[1,3761:6656987,45574718:25899828,4158857,0 -(1,3761:6656987,44984894:25899828,2979209,0 -[1,3761:7246811,44984894:24720180,2979209,0 -(1,3749:7246811,43167570:24720180,1161885,196608 -(1,3748:7246811,43167570:0,1161885,196608 -r1,3761:8794447,43167570:1547636,1358493,196608 -k1,3748:7246811,43167570:-1547636 -) -(1,3748:7246811,43167570:1547636,1161885,196608 -) -k1,3748:8959415,43167570:164968 -k1,3748:10907618,43167570:164968 -k1,3748:12091670,43167570:164967 -k1,3748:14597584,43167570:164968 -k1,3748:15421844,43167570:164968 -k1,3748:17379222,43167570:164968 -k1,3748:18075687,43167570:164968 -k1,3748:20688424,43167570:164967 -k1,3748:21311489,43167570:164968 -k1,3748:22007954,43167570:164968 -k1,3748:24802882,43167570:164968 -k1,3748:25619278,43167570:164968 -k1,3748:26876730,43167570:164967 -k1,3748:29737194,43167570:164968 -(1,3748:29737194,43167570:0,452978,122846 -r1,3761:31150595,43167570:1413401,575824,122846 -k1,3748:29737194,43167570:-1413401 -) -(1,3748:29737194,43167570:1413401,452978,122846 -k1,3748:29737194,43167570:3277 -h1,3748:31147318,43167570:0,411205,112570 -) -k1,3748:31315563,43167570:164968 -k1,3748:31966991,43167570:0 -) -(1,3749:7246811,44009058:24720180,513147,134348 -k1,3748:10193180,44009058:180750 -k1,3748:12108667,44009058:180749 -k1,3748:12905455,44009058:180750 -k1,3748:13442064,44009058:180749 -k1,3748:15690475,44009058:180750 -k1,3748:19276475,44009058:180749 -k1,3748:19915322,44009058:180750 -k1,3748:20627568,44009058:180749 -k1,3748:22458515,44009058:180750 -k1,3748:24360240,44009058:180750 -k1,3748:25192417,44009058:180749 -k1,3748:26785468,44009058:180750 -k1,3748:28355580,44009058:180749 -k1,3748:29803796,44009058:180750 -k1,3748:30399370,44009058:180731 -k1,3748:31966991,44009058:0 -) -(1,3749:7246811,44850546:24720180,513147,134348 -k1,3748:8748951,44850546:188798 -k1,3748:9553788,44850546:188799 -k1,3748:11628057,44850546:188798 -k1,3748:12835941,44850546:188799 -k1,3748:16169156,44850546:188798 -k1,3748:18184442,44850546:188798 -k1,3748:19364801,44850546:188799 -k1,3748:21887991,44850546:188798 -k1,3748:24860759,44850546:188799 -k1,3748:25735719,44850546:188798 -k1,3748:28899197,44850546:188799 -k1,3748:31284106,44850546:188798 -k1,3748:31966991,44850546:0 -) -] -) -] -r1,3761:32583029,45574718:26214,4158857,0 -) -] -) -) -g1,3761:32583029,44984894 -) -] -(1,3761:32583029,45706769:0,0,0 -g1,3761:32583029,45706769 -) -) -] -(1,3761:6630773,47279633:25952256,0,0 -h1,3761:6630773,47279633:25952256,0,0 -) -] -(1,3761:4262630,4025873:0,0,0 -[1,3761:-473656,4025873:0,0,0 -(1,3761:-473656,-710413:0,0,0 -(1,3761:-473656,-710413:0,0,0 -g1,3761:-473656,-710413 -) -g1,3761:-473656,-710413 -) -] -) -] -!25324 -}73 -Input:550:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:551:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:552:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:553:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:554:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:555:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!557 -{74 -[1,3823:4262630,47279633:28320399,43253760,0 -(1,3823:4262630,4025873:0,0,0 -[1,3823:-473656,4025873:0,0,0 -(1,3823:-473656,-710413:0,0,0 -(1,3823:-473656,-644877:0,0,0 -k1,3823:-473656,-644877:-65536 -) -(1,3823:-473656,4736287:0,0,0 -k1,3823:-473656,4736287:5209943 -) -g1,3823:-473656,-710413 -) -] -) -[1,3823:6630773,47279633:25952256,43253760,0 -[1,3823:6630773,4812305:25952256,786432,0 -(1,3823:6630773,4812305:25952256,485622,11795 -(1,3823:6630773,4812305:25952256,485622,11795 -g1,3823:3078558,4812305 -[1,3823:3078558,4812305:0,0,0 -(1,3823:3078558,2439708:0,1703936,0 -k1,3823:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,3823:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,3823:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,3823:3078558,4812305:0,0,0 -(1,3823:3078558,2439708:0,1703936,0 -g1,3823:29030814,2439708 -g1,3823:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,3823:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,3823:37855564,2439708:1179648,16384,0 -) -) -k1,3823:3078556,2439708:-34777008 -) -] -[1,3823:3078558,4812305:0,0,0 -(1,3823:3078558,49800853:0,16384,2228224 -k1,3823:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,3823:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,3823:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,3823:3078558,4812305:0,0,0 -(1,3823:3078558,49800853:0,16384,2228224 -g1,3823:29030814,49800853 -g1,3823:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,3823:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,3823:37855564,49800853:1179648,16384,0 -) -) -k1,3823:3078556,49800853:-34777008 -) -] -g1,3823:6630773,4812305 -g1,3823:6630773,4812305 -g1,3823:9104757,4812305 -k1,3823:31786111,4812305:22681354 -) -) -] -[1,3823:6630773,45706769:25952256,40108032,0 -(1,3823:6630773,45706769:25952256,40108032,0 -(1,3823:6630773,45706769:0,0,0 -g1,3823:6630773,45706769 -) -[1,3823:6630773,45706769:25952256,40108032,0 -v1,3761:6630773,6254097:0,393216,0 -(1,3761:6630773,11328502:25952256,5467621,616038 -g1,3761:6630773,11328502 -(1,3761:6630773,11328502:25952256,5467621,616038 -(1,3761:6630773,11944540:25952256,6083659,0 -[1,3761:6630773,11944540:25952256,6083659,0 -(1,3761:6630773,11918326:25952256,6057445,0 -r1,3823:6656987,11918326:26214,6057445,0 -[1,3761:6656987,11918326:25899828,6057445,0 -(1,3761:6656987,11328502:25899828,4877797,0 -[1,3761:7246811,11328502:24720180,4877797,0 -(1,3749:7246811,6963852:24720180,513147,122846 -k1,3748:10097542,6963852:230602 -k1,3748:12512459,6963852:230602 -k1,3748:15587324,6963852:230602 -k1,3748:17515964,6963852:230602 -k1,3748:18614918,6963852:230602 -k1,3748:20375786,6963852:230602 -k1,3748:21257817,6963852:230603 -k1,3748:23417799,6963852:230602 -k1,3748:24004261,6963852:230602 -k1,3748:26128853,6963852:230602 -k1,3748:28369444,6963852:230602 -k1,3748:29218706,6963852:230602 -(1,3748:29218706,6963852:0,452978,122846 -r1,3823:30632107,6963852:1413401,575824,122846 -k1,3748:29218706,6963852:-1413401 -) -(1,3748:29218706,6963852:1413401,452978,122846 -k1,3748:29218706,6963852:3277 -h1,3748:30628830,6963852:0,411205,112570 -) -k1,3748:30862709,6963852:230602 -k1,3748:31966991,6963852:0 -) -(1,3749:7246811,7805340:24720180,473825,134348 -g1,3748:8836714,7805340 -g1,3748:10728083,7805340 -k1,3749:31966992,7805340:19036244 -g1,3749:31966992,7805340 -) -v1,3751:7246811,8995806:0,393216,0 -(1,3759:7246811,10607606:24720180,2005016,196608 -g1,3759:7246811,10607606 -g1,3759:7246811,10607606 -g1,3759:7050203,10607606 -(1,3759:7050203,10607606:0,2005016,196608 -r1,3823:32163599,10607606:25113396,2201624,196608 -k1,3759:7050203,10607606:-25113396 -) -(1,3759:7050203,10607606:25113396,2005016,196608 -[1,3759:7246811,10607606:24720180,1808408,0 -(1,3753:7246811,9203424:24720180,404226,107478 -(1,3752:7246811,9203424:0,0,0 -g1,3752:7246811,9203424 -g1,3752:7246811,9203424 -g1,3752:6919131,9203424 -(1,3752:6919131,9203424:0,0,0 -) -g1,3752:7246811,9203424 -) -k1,3753:7246811,9203424:0 -g1,3753:9143686,9203424 -g1,3753:10092124,9203424 -g1,3753:12305144,9203424 -g1,3753:12937436,9203424 -g1,3753:15150457,9203424 -h1,3753:16731185,9203424:0,0,0 -k1,3753:31966991,9203424:15235806 -g1,3753:31966991,9203424 -) -(1,3758:7246811,9935138:24720180,404226,76021 -(1,3755:7246811,9935138:0,0,0 -g1,3755:7246811,9935138 -g1,3755:7246811,9935138 -g1,3755:6919131,9935138 -(1,3755:6919131,9935138:0,0,0 -) -g1,3755:7246811,9935138 -) -g1,3758:8195248,9935138 -g1,3758:8511394,9935138 -g1,3758:9775977,9935138 -g1,3758:10408269,9935138 -g1,3758:11040561,9935138 -g1,3758:11672853,9935138 -g1,3758:12305145,9935138 -g1,3758:12937437,9935138 -g1,3758:13569729,9935138 -g1,3758:14202021,9935138 -g1,3758:14834313,9935138 -g1,3758:15466605,9935138 -h1,3758:15782751,9935138:0,0,0 -k1,3758:31966991,9935138:16184240 -g1,3758:31966991,9935138 -) -(1,3758:7246811,10601316:24720180,404226,6290 -h1,3758:7246811,10601316:0,0,0 -g1,3758:8195248,10601316 -g1,3758:10724414,10601316 -g1,3758:11356706,10601316 -h1,3758:11672852,10601316:0,0,0 -k1,3758:31966992,10601316:20294140 -g1,3758:31966992,10601316 -) -] -) -g1,3759:31966991,10607606 -g1,3759:7246811,10607606 -g1,3759:7246811,10607606 -g1,3759:31966991,10607606 -g1,3759:31966991,10607606 -) -h1,3759:7246811,10804214:0,0,0 -] -) -] -r1,3823:32583029,11918326:26214,6057445,0 -) -] -) -) -g1,3761:32583029,11328502 -) -h1,3761:6630773,11944540:0,0,0 -(1,3764:6630773,13290006:25952256,513147,134348 -h1,3763:6630773,13290006:983040,0,0 -k1,3763:11279897,13290006:161219 -k1,3763:13665407,13290006:161218 -k1,3763:15094092,13290006:161219 -k1,3763:18071392,13290006:161218 -k1,3763:18764108,13290006:161219 -k1,3763:19991598,13290006:161219 -k1,3763:22978073,13290006:161218 -k1,3763:24605988,13290006:161219 -k1,3763:25383245,13290006:161219 -k1,3763:26563548,13290006:161218 -k1,3763:28091848,13290006:161219 -k1,3763:30171960,13290006:161218 -k1,3763:30689039,13290006:161219 -k1,3763:32583029,13290006:0 -) -(1,3764:6630773,14131494:25952256,513147,115847 -g1,3763:8037175,14131494 -g1,3763:10586525,14131494 -g1,3763:12353375,14131494 -g1,3763:12908464,14131494 -(1,3763:12908464,14131494:0,452978,115847 -r1,3823:15377001,14131494:2468537,568825,115847 -k1,3763:12908464,14131494:-2468537 -) -(1,3763:12908464,14131494:2468537,452978,115847 -k1,3763:12908464,14131494:3277 -h1,3763:15373724,14131494:0,411205,112570 -) -g1,3763:15576230,14131494 -k1,3764:32583029,14131494:14855252 -g1,3764:32583029,14131494 -) -v1,3766:6630773,15301650:0,393216,0 -(1,3794:6630773,24475293:25952256,9566859,196608 -g1,3794:6630773,24475293 -g1,3794:6630773,24475293 -g1,3794:6434165,24475293 -(1,3794:6434165,24475293:0,9566859,196608 -r1,3823:32779637,24475293:26345472,9763467,196608 -k1,3794:6434165,24475293:-26345472 -) -(1,3794:6434165,24475293:26345472,9566859,196608 -[1,3794:6630773,24475293:25952256,9370251,0 -(1,3768:6630773,15509268:25952256,404226,101187 -(1,3767:6630773,15509268:0,0,0 -g1,3767:6630773,15509268 -g1,3767:6630773,15509268 -g1,3767:6303093,15509268 -(1,3767:6303093,15509268:0,0,0 -) -g1,3767:6630773,15509268 -) -g1,3768:10108376,15509268 -g1,3768:11056814,15509268 -g1,3768:13902127,15509268 -h1,3768:14534419,15509268:0,0,0 -k1,3768:32583029,15509268:18048610 -g1,3768:32583029,15509268 -) -(1,3769:6630773,16175446:25952256,388497,101187 -h1,3769:6630773,16175446:0,0,0 -h1,3769:9792230,16175446:0,0,0 -k1,3769:32583030,16175446:22790800 -g1,3769:32583030,16175446 -) -(1,3773:6630773,16907160:25952256,404226,76021 -(1,3771:6630773,16907160:0,0,0 -g1,3771:6630773,16907160 -g1,3771:6630773,16907160 -g1,3771:6303093,16907160 -(1,3771:6303093,16907160:0,0,0 -) -g1,3771:6630773,16907160 -) -g1,3773:7579210,16907160 -g1,3773:7895356,16907160 -g1,3773:9159939,16907160 -g1,3773:9792231,16907160 -g1,3773:10424523,16907160 -g1,3773:11056815,16907160 -g1,3773:11689107,16907160 -g1,3773:12321399,16907160 -g1,3773:12953691,16907160 -g1,3773:13585983,16907160 -g1,3773:14218275,16907160 -g1,3773:14850567,16907160 -g1,3773:15482859,16907160 -g1,3773:16115151,16907160 -h1,3773:16431297,16907160:0,0,0 -k1,3773:32583029,16907160:16151732 -g1,3773:32583029,16907160 -) -(1,3775:6630773,18228698:25952256,410518,101187 -(1,3774:6630773,18228698:0,0,0 -g1,3774:6630773,18228698 -g1,3774:6630773,18228698 -g1,3774:6303093,18228698 -(1,3774:6303093,18228698:0,0,0 -) -g1,3774:6630773,18228698 -) -g1,3775:10108376,18228698 -g1,3775:11056814,18228698 -k1,3775:11056814,18228698:0 -h1,3775:16747436,18228698:0,0,0 -k1,3775:32583029,18228698:15835593 -g1,3775:32583029,18228698 -) -(1,3776:6630773,18894876:25952256,410518,101187 -h1,3776:6630773,18894876:0,0,0 -h1,3776:9792230,18894876:0,0,0 -k1,3776:32583030,18894876:22790800 -g1,3776:32583030,18894876 -) -(1,3781:6630773,19626590:25952256,404226,76021 -(1,3778:6630773,19626590:0,0,0 -g1,3778:6630773,19626590 -g1,3778:6630773,19626590 -g1,3778:6303093,19626590 -(1,3778:6303093,19626590:0,0,0 -) -g1,3778:6630773,19626590 -) -g1,3781:7579210,19626590 -g1,3781:7895356,19626590 -g1,3781:9159939,19626590 -g1,3781:9792231,19626590 -g1,3781:10424523,19626590 -g1,3781:11056815,19626590 -g1,3781:11689107,19626590 -g1,3781:12321399,19626590 -g1,3781:12953691,19626590 -g1,3781:13585983,19626590 -g1,3781:14218275,19626590 -g1,3781:14850567,19626590 -g1,3781:15482859,19626590 -g1,3781:16115151,19626590 -h1,3781:16431297,19626590:0,0,0 -k1,3781:32583029,19626590:16151732 -g1,3781:32583029,19626590 -) -(1,3781:6630773,20292768:25952256,404226,9436 -h1,3781:6630773,20292768:0,0,0 -g1,3781:7579210,20292768 -g1,3781:10108376,20292768 -g1,3781:10740668,20292768 -g1,3781:11372960,20292768 -h1,3781:11689106,20292768:0,0,0 -k1,3781:32583030,20292768:20893924 -g1,3781:32583030,20292768 -) -(1,3783:6630773,21614306:25952256,410518,101187 -(1,3782:6630773,21614306:0,0,0 -g1,3782:6630773,21614306 -g1,3782:6630773,21614306 -g1,3782:6303093,21614306 -(1,3782:6303093,21614306:0,0,0 -) -g1,3782:6630773,21614306 -) -k1,3783:6630773,21614306:0 -h1,3783:13585978,21614306:0,0,0 -k1,3783:32583030,21614306:18997052 -g1,3783:32583030,21614306 -) -(1,3787:6630773,22346020:25952256,404226,76021 -(1,3785:6630773,22346020:0,0,0 -g1,3785:6630773,22346020 -g1,3785:6630773,22346020 -g1,3785:6303093,22346020 -(1,3785:6303093,22346020:0,0,0 -) -g1,3785:6630773,22346020 -) -g1,3787:7579210,22346020 -g1,3787:7895356,22346020 -g1,3787:9159939,22346020 -g1,3787:9792231,22346020 -g1,3787:10424523,22346020 -g1,3787:11056815,22346020 -g1,3787:11689107,22346020 -g1,3787:12321399,22346020 -g1,3787:12953691,22346020 -g1,3787:13585983,22346020 -g1,3787:14218275,22346020 -g1,3787:14850567,22346020 -g1,3787:15482859,22346020 -g1,3787:16115151,22346020 -h1,3787:16431297,22346020:0,0,0 -k1,3787:32583029,22346020:16151732 -g1,3787:32583029,22346020 -) -(1,3789:6630773,23667558:25952256,410518,101187 -(1,3788:6630773,23667558:0,0,0 -g1,3788:6630773,23667558 -g1,3788:6630773,23667558 -g1,3788:6303093,23667558 -(1,3788:6303093,23667558:0,0,0 -) -g1,3788:6630773,23667558 -) -k1,3789:6630773,23667558:0 -k1,3789:6630773,23667558:0 -h1,3789:18012018,23667558:0,0,0 -k1,3789:32583029,23667558:14571011 -g1,3789:32583029,23667558 -) -(1,3793:6630773,24399272:25952256,404226,76021 -(1,3791:6630773,24399272:0,0,0 -g1,3791:6630773,24399272 -g1,3791:6630773,24399272 -g1,3791:6303093,24399272 -(1,3791:6303093,24399272:0,0,0 -) -g1,3791:6630773,24399272 -) -g1,3793:7579210,24399272 -g1,3793:7895356,24399272 -g1,3793:9159939,24399272 -g1,3793:9792231,24399272 -g1,3793:10424523,24399272 -g1,3793:11056815,24399272 -g1,3793:11689107,24399272 -g1,3793:12321399,24399272 -g1,3793:12953691,24399272 -g1,3793:13585983,24399272 -g1,3793:14218275,24399272 -g1,3793:14850567,24399272 -g1,3793:15482859,24399272 -g1,3793:16115151,24399272 -h1,3793:16431297,24399272:0,0,0 -k1,3793:32583029,24399272:16151732 -g1,3793:32583029,24399272 -) -] -) -g1,3794:32583029,24475293 -g1,3794:6630773,24475293 -g1,3794:6630773,24475293 -g1,3794:32583029,24475293 -g1,3794:32583029,24475293 -) -h1,3794:6630773,24671901:0,0,0 -v1,3798:6630773,26521344:0,393216,0 -(1,3816:6630773,37941238:25952256,11813110,616038 -g1,3816:6630773,37941238 -(1,3816:6630773,37941238:25952256,11813110,616038 -(1,3816:6630773,38557276:25952256,12429148,0 -[1,3816:6630773,38557276:25952256,12429148,0 -(1,3816:6630773,38531062:25952256,12376720,0 -r1,3823:6656987,38531062:26214,12376720,0 -[1,3816:6656987,38531062:25899828,12376720,0 -(1,3816:6656987,37941238:25899828,11197072,0 -[1,3816:7246811,37941238:24720180,11197072,0 -(1,3799:7246811,27906051:24720180,1161885,196608 -(1,3798:7246811,27906051:0,1161885,196608 -r1,3823:8794447,27906051:1547636,1358493,196608 -k1,3798:7246811,27906051:-1547636 -) -(1,3798:7246811,27906051:1547636,1161885,196608 -) -k1,3798:8988289,27906051:193842 -k1,3798:10670312,27906051:198943 -k1,3798:11425656,27906051:198943 -k1,3798:11988980,27906051:198944 -k1,3798:14448915,27906051:198943 -k1,3798:18326394,27906051:198943 -k1,3798:21239325,27906051:193842 -k1,3798:24669335,27906051:193842 -k1,3798:26757167,27906051:193842 -k1,3798:28743419,27906051:193842 -k1,3798:29928821,27906051:193842 -k1,3798:31966991,27906051:0 -) -(1,3799:7246811,28747539:24720180,513147,134348 -k1,3798:8208701,28747539:275728 -k1,3798:11007564,28747539:275727 -k1,3798:13843784,28747539:275728 -k1,3798:16598084,28747539:275728 -k1,3798:18441432,28747539:275727 -k1,3798:20047541,28747539:275728 -k1,3798:21514713,28747539:275727 -k1,3798:23534354,28747539:275728 -k1,3798:24801642,28747539:275728 -k1,3798:26096454,28747539:275727 -k1,3798:29188264,28747539:275728 -k1,3798:31966991,28747539:0 -) -(1,3799:7246811,29589027:24720180,513147,126483 -k1,3798:8253694,29589027:245355 -(1,3798:8253694,29589027:0,452978,115847 -r1,3823:12480790,29589027:4227096,568825,115847 -k1,3798:8253694,29589027:-4227096 -) -(1,3798:8253694,29589027:4227096,452978,115847 -k1,3798:8253694,29589027:3277 -h1,3798:12477513,29589027:0,411205,112570 -) -k1,3798:12726145,29589027:245355 -k1,3798:14669538,29589027:245355 -k1,3798:17286641,29589027:245355 -k1,3798:18183424,29589027:245355 -k1,3798:18784639,29589027:245355 -k1,3798:21097654,29589027:245354 -k1,3798:22539696,29589027:245355 -k1,3798:24629234,29589027:245355 -k1,3798:25533881,29589027:245355 -k1,3798:26798321,29589027:245355 -k1,3798:28937666,29589027:245355 -k1,3798:30975431,29589027:245355 -k1,3798:31966991,29589027:0 -) -(1,3799:7246811,30430515:24720180,505283,134348 -k1,3798:9628628,30430515:252552 -k1,3798:11919349,30430515:252551 -k1,3798:12858063,30430515:252552 -k1,3798:16085294,30430515:252552 -k1,3798:18707628,30430515:252552 -k1,3798:20426875,30430515:252551 -k1,3798:22377465,30430515:252552 -k1,3798:24326744,30430515:252552 -k1,3798:27884277,30430515:252552 -k1,3798:29128388,30430515:252551 -k1,3798:31339156,30430515:252552 -k1,3798:31966991,30430515:0 -) -(1,3799:7246811,31272003:24720180,513147,115847 -k1,3798:10127963,31272003:249881 -k1,3798:11029271,31272003:249880 -(1,3798:11029271,31272003:0,452978,115847 -r1,3823:15256367,31272003:4227096,568825,115847 -k1,3798:11029271,31272003:-4227096 -) -(1,3798:11029271,31272003:4227096,452978,115847 -k1,3798:11029271,31272003:3277 -h1,3798:15253090,31272003:0,411205,112570 -) -k1,3798:15679918,31272003:249881 -(1,3798:15679918,31272003:0,452978,115847 -r1,3823:20610438,31272003:4930520,568825,115847 -k1,3798:15679918,31272003:-4930520 -) -(1,3798:15679918,31272003:4930520,452978,115847 -k1,3798:15679918,31272003:3277 -h1,3798:20607161,31272003:0,411205,112570 -) -k1,3798:20860318,31272003:249880 -k1,3798:23451145,31272003:249881 -k1,3798:24720110,31272003:249880 -k1,3798:27944670,31272003:249881 -k1,3798:30038733,31272003:249880 -k1,3798:30947906,31272003:249881 -k1,3798:31966991,31272003:0 -) -(1,3799:7246811,32113491:24720180,513147,134348 -k1,3798:9412418,32113491:199527 -k1,3798:10089703,32113491:199528 -k1,3798:11985957,32113491:199527 -k1,3798:15160164,32113491:199528 -k1,3798:17555802,32113491:199527 -k1,3798:20796856,32113491:199528 -k1,3798:23986135,32113491:199527 -k1,3798:25565851,32113491:199528 -k1,3798:26869660,32113491:199527 -k1,3798:27816954,32113491:199528 -k1,3798:31350953,32113491:199527 -k1,3798:31966991,32113491:0 -) -(1,3799:7246811,32954979:24720180,505283,134348 -g1,3798:7801900,32954979 -g1,3798:10242460,32954979 -g1,3798:11970644,32954979 -g1,3798:13905266,32954979 -(1,3798:13905266,32954979:0,452978,115847 -r1,3823:18132362,32954979:4227096,568825,115847 -k1,3798:13905266,32954979:-4227096 -) -(1,3798:13905266,32954979:4227096,452978,115847 -k1,3798:13905266,32954979:3277 -h1,3798:18129085,32954979:0,411205,112570 -) -g1,3798:18331591,32954979 -g1,3798:19798286,32954979 -g1,3798:21016600,32954979 -g1,3798:23651147,32954979 -g1,3798:26470505,32954979 -k1,3799:31966991,32954979:3312171 -g1,3799:31966991,32954979 -) -v1,3801:7246811,34145445:0,393216,0 -(1,3814:7246811,37220342:24720180,3468113,196608 -g1,3814:7246811,37220342 -g1,3814:7246811,37220342 -g1,3814:7050203,37220342 -(1,3814:7050203,37220342:0,3468113,196608 -r1,3823:32163599,37220342:25113396,3664721,196608 -k1,3814:7050203,37220342:-25113396 -) -(1,3814:7050203,37220342:25113396,3468113,196608 -[1,3814:7246811,37220342:24720180,3271505,0 -(1,3803:7246811,34359355:24720180,410518,101187 -(1,3802:7246811,34359355:0,0,0 -g1,3802:7246811,34359355 -g1,3802:7246811,34359355 -g1,3802:6919131,34359355 -(1,3802:6919131,34359355:0,0,0 -) -g1,3802:7246811,34359355 -) -k1,3803:7246811,34359355:0 -h1,3803:12621287,34359355:0,0,0 -k1,3803:31966991,34359355:19345704 -g1,3803:31966991,34359355 -) -(1,3807:7246811,35091069:24720180,410518,76021 -(1,3805:7246811,35091069:0,0,0 -g1,3805:7246811,35091069 -g1,3805:7246811,35091069 -g1,3805:6919131,35091069 -(1,3805:6919131,35091069:0,0,0 -) -g1,3805:7246811,35091069 -) -g1,3807:8195248,35091069 -g1,3807:9459831,35091069 -h1,3807:11988996,35091069:0,0,0 -k1,3807:31966992,35091069:19977996 -g1,3807:31966992,35091069 -) -(1,3809:7246811,36412607:24720180,410518,101187 -(1,3808:7246811,36412607:0,0,0 -g1,3808:7246811,36412607 -g1,3808:7246811,36412607 -g1,3808:6919131,36412607 -(1,3808:6919131,36412607:0,0,0 -) -g1,3808:7246811,36412607 -) -k1,3809:7246811,36412607:0 -h1,3809:12305142,36412607:0,0,0 -k1,3809:31966990,36412607:19661848 -g1,3809:31966990,36412607 -) -(1,3813:7246811,37144321:24720180,404226,76021 -(1,3811:7246811,37144321:0,0,0 -g1,3811:7246811,37144321 -g1,3811:7246811,37144321 -g1,3811:6919131,37144321 -(1,3811:6919131,37144321:0,0,0 -) -g1,3811:7246811,37144321 -) -g1,3813:8195248,37144321 -g1,3813:9459831,37144321 -h1,3813:12305142,37144321:0,0,0 -k1,3813:31966990,37144321:19661848 -g1,3813:31966990,37144321 -) -] -) -g1,3814:31966991,37220342 -g1,3814:7246811,37220342 -g1,3814:7246811,37220342 -g1,3814:31966991,37220342 -g1,3814:31966991,37220342 -) -h1,3814:7246811,37416950:0,0,0 -] -) -] -r1,3823:32583029,38531062:26214,12376720,0 -) -] -) -) -g1,3816:32583029,37941238 -) -h1,3816:6630773,38557276:0,0,0 -v1,3819:6630773,39902742:0,393216,0 -(1,3820:6630773,43745265:25952256,4235739,616038 -g1,3820:6630773,43745265 -(1,3820:6630773,43745265:25952256,4235739,616038 -(1,3820:6630773,44361303:25952256,4851777,0 -[1,3820:6630773,44361303:25952256,4851777,0 -(1,3820:6630773,44335089:25952256,4799349,0 -r1,3823:6656987,44335089:26214,4799349,0 -[1,3820:6656987,44335089:25899828,4799349,0 -(1,3820:6656987,43745265:25899828,3619701,0 -[1,3820:7246811,43745265:24720180,3619701,0 -(1,3820:7246811,41212938:24720180,1087374,11795 -k1,3819:8657062,41212938:200548 -k1,3819:10908887,41212938:200548 -k1,3819:11465295,41212938:200548 -k1,3819:13559832,41212938:200547 -k1,3819:15154331,41212938:200548 -k1,3819:17147289,41212938:200548 -k1,3819:19629801,41212938:200548 -k1,3819:21224300,41212938:200548 -k1,3819:23553457,41212938:200548 -k1,3819:25805281,41212938:200547 -k1,3819:28478502,41212938:200548 -k1,3819:30573040,41212938:200548 -k1,3819:31966991,41212938:0 -) -(1,3820:7246811,42054426:24720180,513147,126483 -k1,3819:8444700,42054426:178804 -k1,3819:10415914,42054426:178804 -k1,3819:12876682,42054426:178804 -k1,3819:14449437,42054426:178804 -k1,3819:15647326,42054426:178804 -k1,3819:17479603,42054426:178804 -k1,3819:19787016,42054426:178804 -k1,3819:21037989,42054426:178804 -k1,3819:23724200,42054426:178804 -k1,3819:27405248,42054426:178804 -k1,3819:29229006,42054426:178804 -k1,3819:30611051,42054426:178804 -k1,3820:31966991,42054426:0 -) -(1,3820:7246811,42895914:24720180,513147,134348 -k1,3819:8700338,42895914:203755 -k1,3819:10370789,42895914:203755 -k1,3819:12798837,42895914:203756 -k1,3819:13654020,42895914:203755 -k1,3819:16477904,42895914:203755 -k1,3819:18989837,42895914:203755 -k1,3819:20928985,42895914:203755 -(1,3819:20928985,42895914:0,452978,115847 -r1,3823:25156081,42895914:4227096,568825,115847 -k1,3819:20928985,42895914:-4227096 -) -(1,3819:20928985,42895914:4227096,452978,115847 -k1,3819:20928985,42895914:3277 -h1,3819:25152804,42895914:0,411205,112570 -) -k1,3819:25533506,42895914:203755 -k1,3819:28070999,42895914:203756 -k1,3819:29571712,42895914:203755 -k1,3819:30794552,42895914:203755 -k1,3819:31966991,42895914:0 -) -(1,3820:7246811,43737402:24720180,513147,7863 -g1,3819:10066169,43737402 -g1,3819:12573576,43737402 -g1,3819:14516063,43737402 -g1,3819:15398177,43737402 -g1,3819:16663677,43737402 -g1,3819:18430527,43737402 -g1,3819:20081378,43737402 -k1,3820:31966991,43737402:10009973 -g1,3820:31966991,43737402 -) -] -) -] -r1,3823:32583029,44335089:26214,4799349,0 -) -] -) -) -g1,3820:32583029,43745265 -) -h1,3820:6630773,44361303:0,0,0 -(1,3823:6630773,45706769:25952256,513147,126483 -h1,3822:6630773,45706769:983040,0,0 -k1,3822:10081244,45706769:148767 -k1,3822:11221570,45706769:148766 -k1,3822:12724311,45706769:148767 -k1,3822:16082375,45706769:148766 -k1,3822:16847180,45706769:148767 -k1,3822:17584460,45706769:148767 -k1,3822:18361061,45706769:148766 -k1,3822:21141099,45706769:148767 -k1,3822:21941294,45706769:148767 -k1,3822:23792030,45706769:148766 -k1,3822:27024921,45706769:148767 -k1,3822:29932753,45706769:148766 -k1,3822:30697558,45706769:148767 -k1,3822:32583029,45706769:0 -) -] -(1,3823:32583029,45706769:0,0,0 -g1,3823:32583029,45706769 -) -) -] -(1,3823:6630773,47279633:25952256,0,0 -h1,3823:6630773,47279633:25952256,0,0 -) -] -(1,3823:4262630,4025873:0,0,0 -[1,3823:-473656,4025873:0,0,0 -(1,3823:-473656,-710413:0,0,0 -(1,3823:-473656,-710413:0,0,0 -g1,3823:-473656,-710413 -) -g1,3823:-473656,-710413 -) -] -) -] -!22753 -}74 -Input:556:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:557:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:558:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:559:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:560:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:561:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:562:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!648 -{75 -[1,3901:4262630,47279633:28320399,43253760,0 -(1,3901:4262630,4025873:0,0,0 -[1,3901:-473656,4025873:0,0,0 -(1,3901:-473656,-710413:0,0,0 -(1,3901:-473656,-644877:0,0,0 -k1,3901:-473656,-644877:-65536 -) -(1,3901:-473656,4736287:0,0,0 -k1,3901:-473656,4736287:5209943 -) -g1,3901:-473656,-710413 -) -] -) -[1,3901:6630773,47279633:25952256,43253760,0 -[1,3901:6630773,4812305:25952256,786432,0 -(1,3901:6630773,4812305:25952256,505283,134348 -(1,3901:6630773,4812305:25952256,505283,134348 -g1,3901:3078558,4812305 -[1,3901:3078558,4812305:0,0,0 -(1,3901:3078558,2439708:0,1703936,0 -k1,3901:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,3901:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,3901:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,3901:3078558,4812305:0,0,0 -(1,3901:3078558,2439708:0,1703936,0 -g1,3901:29030814,2439708 -g1,3901:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,3901:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,3901:37855564,2439708:1179648,16384,0 -) -) -k1,3901:3078556,2439708:-34777008 -) -] -[1,3901:3078558,4812305:0,0,0 -(1,3901:3078558,49800853:0,16384,2228224 -k1,3901:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,3901:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,3901:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,3901:3078558,4812305:0,0,0 -(1,3901:3078558,49800853:0,16384,2228224 -g1,3901:29030814,49800853 -g1,3901:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,3901:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,3901:37855564,49800853:1179648,16384,0 -) -) -k1,3901:3078556,49800853:-34777008 -) -] -g1,3901:6630773,4812305 -k1,3901:19515153,4812305:12087462 -g1,3901:20901894,4812305 -g1,3901:21550700,4812305 -g1,3901:24864855,4812305 -g1,3901:27600327,4812305 -g1,3901:29010006,4812305 -) -) -] -[1,3901:6630773,45706769:25952256,40108032,0 -(1,3901:6630773,45706769:25952256,40108032,0 -(1,3901:6630773,45706769:0,0,0 -g1,3901:6630773,45706769 -) -[1,3901:6630773,45706769:25952256,40108032,0 -(1,3823:6630773,6254097:25952256,513147,134348 -k1,3822:7858686,6254097:208828 -k1,3822:9302869,6254097:208829 -k1,3822:10170989,6254097:208828 -k1,3822:10735678,6254097:208829 -k1,3822:13455846,6254097:208828 -k1,3822:14196172,6254097:208829 -k1,3822:15339543,6254097:208828 -k1,3822:17246410,6254097:208829 -k1,3822:20058983,6254097:208828 -k1,3822:20623672,6254097:208829 -k1,3822:22820207,6254097:208828 -k1,3822:23680464,6254097:208829 -k1,3822:24637058,6254097:208828 -k1,3822:26558343,6254097:208829 -k1,3822:27450056,6254097:208828 -k1,3822:29356923,6254097:208829 -k1,3822:31747445,6254097:208828 -k1,3822:32583029,6254097:0 -) -(1,3823:6630773,7095585:25952256,513147,134348 -k1,3822:7211379,7095585:224746 -k1,3822:8801241,7095585:224747 -k1,3822:9642025,7095585:224746 -k1,3822:10455285,7095585:224747 -k1,3822:12998039,7095585:224746 -k1,3822:14214346,7095585:224747 -k1,3822:17270903,7095585:224746 -k1,3822:19720597,7095585:224747 -k1,3822:20561381,7095585:224746 -k1,3822:21805212,7095585:224746 -k1,3822:23683432,7095585:224747 -k1,3822:25146153,7095585:224746 -k1,3822:26318551,7095585:224747 -k1,3822:28977935,7095585:224721 -k1,3822:30394126,7095585:224746 -k1,3823:32583029,7095585:0 -) -(1,3823:6630773,7937073:25952256,513147,126483 -k1,3822:8169908,7937073:198268 -k1,3822:11096440,7937073:198268 -k1,3822:12761405,7937073:198269 -k1,3822:13645835,7937073:198268 -k1,3822:15682388,7937073:198268 -k1,3822:18255680,7937073:198268 -k1,3822:19650635,7937073:198268 -k1,3822:21234990,7937073:198269 -k1,3822:22092550,7937073:198268 -k1,3822:24278525,7937073:198268 -k1,3822:25761299,7937073:198268 -k1,3822:26491064,7937073:198268 -k1,3822:28401789,7937073:198269 -k1,3822:29131554,7937073:198268 -k1,3822:31821501,7937073:198268 -k1,3822:32583029,7937073:0 -) -(1,3823:6630773,8778561:25952256,513147,134348 -k1,3822:9369854,8778561:148443 -k1,3822:10537382,8778561:148443 -k1,3822:14451525,8778561:148444 -k1,3822:17111308,8778561:148443 -k1,3822:17791248,8778561:148443 -k1,3822:18295551,8778561:148443 -k1,3822:20337984,8778561:148443 -k1,3822:22616348,8778561:148444 -k1,3822:25406496,8778561:148392 -k1,3822:26237825,8778561:148444 -k1,3822:26742128,8778561:148443 -k1,3822:30071689,8778561:148443 -k1,3822:32583029,8778561:0 -) -(1,3823:6630773,9620049:25952256,513147,134348 -k1,3822:8972593,9620049:211900 -k1,3822:12882033,9620049:211899 -k1,3822:14474777,9620049:211900 -k1,3822:16732711,9620049:211900 -k1,3822:17300470,9620049:211899 -k1,3822:18368926,9620049:211900 -k1,3822:19240118,9620049:211900 -k1,3822:21395815,9620049:211899 -k1,3822:24137405,9620049:211900 -k1,3822:24965343,9620049:211900 -k1,3822:26778942,9620049:211899 -k1,3822:28861895,9620049:211900 -k1,3822:32583029,9620049:0 -) -(1,3823:6630773,10461537:25952256,513147,134348 -k1,3822:7599143,10461537:197667 -k1,3822:11562508,10461537:197666 -k1,3822:14271515,10461537:197667 -k1,3822:15155343,10461537:197666 -k1,3822:18799548,10461537:197667 -k1,3822:19680100,10461537:197667 -k1,3822:21117707,10461537:197666 -k1,3822:24017423,10461537:197667 -k1,3822:25024460,10461537:197667 -k1,3822:26241211,10461537:197666 -k1,3822:28527510,10461537:197667 -k1,3822:29384468,10461537:197666 -k1,3822:30601220,10461537:197667 -k1,3823:32583029,10461537:0 -) -(1,3823:6630773,11303025:25952256,513147,126483 -k1,3822:8668724,11303025:197700 -k1,3822:9549309,11303025:197700 -k1,3822:12019799,11303025:197701 -k1,3822:13408944,11303025:197700 -k1,3822:14222682,11303025:197700 -k1,3822:16122352,11303025:197700 -k1,3822:18448661,11303025:197700 -k1,3822:19177859,11303025:197701 -k1,3822:19731419,11303025:197700 -k1,3822:22707190,11303025:197700 -k1,3822:23564182,11303025:197700 -k1,3822:24780967,11303025:197700 -k1,3822:26368031,11303025:197701 -k1,3822:27757176,11303025:197700 -k1,3822:28973961,11303025:197700 -k1,3822:32583029,11303025:0 -) -(1,3823:6630773,12144513:25952256,513147,134348 -g1,3822:7512887,12144513 -g1,3822:9811234,12144513 -g1,3822:11294969,12144513 -g1,3822:12928781,12144513 -g1,3822:15002340,12144513 -g1,3822:15852997,12144513 -g1,3822:17864952,12144513 -g1,3822:20015843,12144513 -g1,3822:21657519,12144513 -g1,3822:22516040,12144513 -g1,3822:23734354,12144513 -g1,3822:25322946,12144513 -k1,3823:32583029,12144513:4531819 -g1,3823:32583029,12144513 -) -(1,3825:6630773,12986001:25952256,513147,126483 -h1,3824:6630773,12986001:983040,0,0 -k1,3824:9060987,12986001:250487 -k1,3824:11050800,12986001:250487 -k1,3824:11960579,12986001:250487 -k1,3824:13230152,12986001:250488 -k1,3824:15273049,12986001:250487 -k1,3824:16139574,12986001:250487 -k1,3824:16745921,12986001:250487 -(1,3824:16745921,12986001:0,459977,115847 -r1,3901:18862746,12986001:2116825,575824,115847 -k1,3824:16745921,12986001:-2116825 -) -(1,3824:16745921,12986001:2116825,459977,115847 -k1,3824:16745921,12986001:3277 -h1,3824:18859469,12986001:0,411205,112570 -) -k1,3824:19113233,12986001:250487 -k1,3824:20856630,12986001:250487 -k1,3824:22173388,12986001:250487 -k1,3824:24203178,12986001:250488 -k1,3824:26578342,12986001:250487 -k1,3824:30630572,12986001:250487 -k1,3824:31563944,12986001:250487 -k1,3824:32583029,12986001:0 -) -(1,3825:6630773,13827489:25952256,513147,126483 -k1,3824:8877435,13827489:236017 -k1,3824:11589402,13827489:236017 -k1,3824:12897588,13827489:236017 -k1,3824:13591701,13827489:236016 -k1,3824:15320628,13827489:236017 -k1,3824:17335947,13827489:236017 -k1,3824:18902345,13827489:236017 -k1,3824:20157447,13827489:236017 -k1,3824:22552220,13827489:236017 -k1,3824:23319734,13827489:236017 -k1,3824:26079542,13827489:236017 -k1,3824:27334643,13827489:236016 -k1,3824:29309986,13827489:236017 -k1,3824:30205295,13827489:236017 -k1,3824:31460397,13827489:236017 -k1,3825:32583029,13827489:0 -) -(1,3825:6630773,14668977:25952256,513147,134348 -k1,3824:7789590,14668977:276047 -k1,3824:8681675,14668977:276047 -k1,3824:9976807,14668977:276047 -k1,3824:12155364,14668977:276047 -k1,3824:13090703,14668977:276047 -k1,3824:15148019,14668977:276047 -k1,3824:16615511,14668977:276047 -k1,3824:17507596,14668977:276047 -k1,3824:19475783,14668977:276047 -k1,3824:21449212,14668977:276047 -k1,3824:22744344,14668977:276047 -k1,3824:25981963,14668977:276047 -k1,3824:26874048,14668977:276047 -k1,3824:30887613,14668977:276047 -k1,3824:32583029,14668977:0 -) -(1,3825:6630773,15510465:25952256,513147,134348 -k1,3824:8030902,15510465:203442 -k1,3824:10499925,15510465:203443 -k1,3824:13432942,15510465:203442 -k1,3824:14167881,15510465:203442 -k1,3824:18397856,15510465:203443 -k1,3824:19792743,15510465:203442 -k1,3824:20527683,15510465:203443 -k1,3824:24341503,15510465:203442 -k1,3824:25157707,15510465:203442 -k1,3824:26380235,15510465:203443 -k1,3824:28009085,15510465:203442 -k1,3824:28568387,15510465:203442 -k1,3824:30665820,15510465:203443 -k1,3824:31400759,15510465:203442 -k1,3825:32583029,15510465:0 -) -(1,3825:6630773,16351953:25952256,513147,134348 -k1,3824:8383697,16351953:198410 -k1,3824:13102781,16351953:198410 -k1,3824:15252853,16351953:198410 -k1,3824:18756244,16351953:198410 -k1,3824:19973739,16351953:198410 -k1,3824:22437729,16351953:198410 -k1,3824:25365714,16351953:198410 -k1,3824:26223416,16351953:198410 -k1,3824:28214236,16351953:198410 -k1,3824:28944143,16351953:198410 -k1,3824:30208824,16351953:198410 -k1,3824:31426319,16351953:198410 -k1,3824:32583029,16351953:0 -) -(1,3825:6630773,17193441:25952256,505283,126483 -k1,3824:9272200,17193441:169409 -k1,3824:10259499,17193441:169410 -k1,3824:12504433,17193441:169409 -k1,3824:14702838,17193441:169410 -k1,3824:18152979,17193441:169409 -(1,3824:18152979,17193441:0,452978,115847 -r1,3901:20269804,17193441:2116825,568825,115847 -k1,3824:18152979,17193441:-2116825 -) -(1,3824:18152979,17193441:2116825,452978,115847 -k1,3824:18152979,17193441:3277 -h1,3824:20266527,17193441:0,411205,112570 -) -k1,3824:20439214,17193441:169410 -k1,3824:21224661,17193441:169409 -k1,3824:22413156,17193441:169410 -k1,3824:26289281,17193441:169409 -k1,3824:28504725,17193441:169410 -k1,3824:29132231,17193441:169409 -k1,3824:31931601,17193441:169410 -k1,3824:32583029,17193441:0 -) -(1,3825:6630773,18034929:25952256,513147,134348 -k1,3824:7761310,18034929:195994 -k1,3824:8976388,18034929:195993 -k1,3824:10911708,18034929:195994 -k1,3824:11766993,18034929:195993 -k1,3824:12982072,18034929:195994 -k1,3824:15144145,18034929:195993 -k1,3824:15810032,18034929:195994 -k1,3824:16537522,18034929:195993 -k1,3824:18019332,18034929:195994 -k1,3824:20845286,18034929:195994 -k1,3824:21692707,18034929:195993 -k1,3824:24129377,18034929:195994 -k1,3824:25344455,18034929:195993 -k1,3824:28270024,18034929:195994 -k1,3824:29125309,18034929:195993 -k1,3824:30092006,18034929:195994 -k1,3824:32583029,18034929:0 -) -(1,3825:6630773,18876417:25952256,513147,7863 -k1,3825:32583030,18876417:23884596 -g1,3825:32583030,18876417 -) -v1,3827:6630773,20242193:0,393216,0 -(1,3901:6630773,43624175:25952256,23775198,589824 -g1,3901:6630773,43624175 -(1,3901:6630773,43624175:25952256,23775198,589824 -(1,3901:6630773,44213999:25952256,24365022,0 -[1,3901:6630773,44213999:25952256,24365022,0 -(1,3901:6630773,44213999:25952256,24338808,0 -r1,3901:6656987,44213999:26214,24338808,0 -[1,3901:6656987,44213999:25899828,24338808,0 -(1,3901:6656987,43624175:25899828,23159160,0 -[1,3901:7246811,43624175:24720180,23159160,0 -(1,3828:7246811,21626900:24720180,1161885,196608 -(1,3827:7246811,21626900:0,1161885,196608 -r1,3901:8794447,21626900:1547636,1358493,196608 -k1,3827:7246811,21626900:-1547636 -) -(1,3827:7246811,21626900:1547636,1161885,196608 -) -k1,3827:9106265,21626900:311818 -k1,3827:12727337,21626900:320024 -k1,3827:15000989,21626900:320024 -k1,3827:17423066,21626900:311818 -k1,3827:18931571,21626900:311818 -k1,3827:20845088,21626900:311817 -k1,3827:23005021,21626900:311818 -k1,3827:24554814,21626900:311818 -k1,3827:25398129,21626900:311818 -k1,3827:27445339,21626900:311817 -(1,3827:27445339,21626900:0,452978,115847 -r1,3901:30969011,21626900:3523672,568825,115847 -k1,3827:27445339,21626900:-3523672 -) -(1,3827:27445339,21626900:3523672,452978,115847 -k1,3827:27445339,21626900:3277 -h1,3827:30965734,21626900:0,411205,112570 -) -k1,3827:31280829,21626900:311818 -k1,3827:31966991,21626900:0 -) -(1,3828:7246811,22468388:24720180,513147,126483 -k1,3827:9606038,22468388:283702 -k1,3827:11931843,22468388:283703 -k1,3827:13287714,22468388:283702 -k1,3827:14029514,22468388:283703 -k1,3827:14844713,22468388:283702 -k1,3827:16414232,22468388:283703 -k1,3827:19327894,22468388:283702 -k1,3827:20263025,22468388:283703 -k1,3827:21639212,22468388:283702 -(1,3827:21639212,22468388:0,459977,115847 -r1,3901:24459461,22468388:2820249,575824,115847 -k1,3827:21639212,22468388:-2820249 -) -(1,3827:21639212,22468388:2820249,459977,115847 -k1,3827:21639212,22468388:3277 -h1,3827:24456184,22468388:0,411205,112570 -) -k1,3827:24916834,22468388:283703 -k1,3827:26397223,22468388:283702 -k1,3827:29867286,22468388:283703 -k1,3827:30682485,22468388:283702 -k1,3828:31966991,22468388:0 -) -(1,3828:7246811,23309876:24720180,505283,134348 -(1,3827:7246811,23309876:0,459977,115847 -r1,3901:10067060,23309876:2820249,575824,115847 -k1,3827:7246811,23309876:-2820249 -) -(1,3827:7246811,23309876:2820249,459977,115847 -k1,3827:7246811,23309876:3277 -h1,3827:10063783,23309876:0,411205,112570 -) -k1,3827:10301304,23309876:234244 -k1,3827:12390217,23309876:234244 -k1,3827:13643547,23309876:234245 -k1,3827:16220703,23309876:234244 -k1,3827:18247357,23309876:234244 -k1,3827:19673046,23309876:234244 -(1,3827:19673046,23309876:0,452978,115847 -r1,3901:22493295,23309876:2820249,568825,115847 -k1,3827:19673046,23309876:-2820249 -) -(1,3827:19673046,23309876:2820249,452978,115847 -k1,3827:19673046,23309876:3277 -h1,3827:22490018,23309876:0,411205,112570 -) -k1,3827:22727539,23309876:234244 -k1,3827:24337385,23309876:234245 -k1,3827:27275644,23309876:234244 -k1,3827:30000911,23309876:234244 -k1,3827:31966991,23309876:0 -) -(1,3828:7246811,24151364:24720180,513147,134348 -k1,3827:8209685,24151364:196758 -k1,3827:9065735,24151364:196758 -k1,3827:10901548,24151364:196758 -k1,3827:11859834,24151364:196758 -k1,3827:14844494,24151364:196758 -k1,3827:18211228,24151364:196758 -k1,3827:19276337,24151364:196757 -k1,3827:20870978,24151364:196758 -k1,3827:22160221,24151364:196758 -(1,3827:22160221,24151364:0,452978,115847 -r1,3901:25332181,24151364:3171960,568825,115847 -k1,3827:22160221,24151364:-3171960 -) -(1,3827:22160221,24151364:3171960,452978,115847 -k1,3827:22160221,24151364:3277 -h1,3827:25328904,24151364:0,411205,112570 -) -k1,3827:25528939,24151364:196758 -k1,3827:27921808,24151364:196758 -k1,3827:29403072,24151364:196758 -k1,3827:30591390,24151364:196758 -k1,3827:31966991,24151364:0 -) -(1,3828:7246811,24992852:24720180,505283,134348 -k1,3827:8586647,24992852:183126 -k1,3827:11744453,24992852:183127 -k1,3827:13489957,24992852:183126 -k1,3827:15697491,24992852:183127 -k1,3827:18076728,24992852:183126 -k1,3827:19364137,24992852:183127 -k1,3827:20295029,24992852:183126 -k1,3827:21412698,24992852:183126 -k1,3827:22281987,24992852:183127 -k1,3827:24309296,24992852:183126 -k1,3827:25108461,24992852:183127 -k1,3827:27516534,24992852:183126 -k1,3827:28718746,24992852:183127 -k1,3827:30555345,24992852:183126 -k1,3828:31966991,24992852:0 -k1,3828:31966991,24992852:0 -) -v1,3830:7246811,26183318:0,393216,0 -(1,3847:7246811,31853196:24720180,6063094,196608 -g1,3847:7246811,31853196 -g1,3847:7246811,31853196 -g1,3847:7050203,31853196 -(1,3847:7050203,31853196:0,6063094,196608 -r1,3901:32163599,31853196:25113396,6259702,196608 -k1,3847:7050203,31853196:-25113396 -) -(1,3847:7050203,31853196:25113396,6063094,196608 -[1,3847:7246811,31853196:24720180,5866486,0 -(1,3832:7246811,26397228:24720180,410518,107478 -(1,3831:7246811,26397228:0,0,0 -g1,3831:7246811,26397228 -g1,3831:7246811,26397228 -g1,3831:6919131,26397228 -(1,3831:6919131,26397228:0,0,0 -) -g1,3831:7246811,26397228 -) -g1,3832:10724414,26397228 -g1,3832:11672852,26397228 -g1,3832:13569727,26397228 -g1,3832:14518165,26397228 -g1,3832:16731185,26397228 -g1,3832:17363477,26397228 -g1,3832:19576498,26397228 -g1,3832:21157227,26397228 -g1,3832:22737956,26397228 -h1,3832:24318684,26397228:0,0,0 -k1,3832:31966991,26397228:7648307 -g1,3832:31966991,26397228 -) -(1,3833:7246811,27063406:24720180,410518,101187 -h1,3833:7246811,27063406:0,0,0 -h1,3833:10408268,27063406:0,0,0 -k1,3833:31966992,27063406:21558724 -g1,3833:31966992,27063406 -) -(1,3838:7246811,27795120:24720180,404226,76021 -(1,3835:7246811,27795120:0,0,0 -g1,3835:7246811,27795120 -g1,3835:7246811,27795120 -g1,3835:6919131,27795120 -(1,3835:6919131,27795120:0,0,0 -) -g1,3835:7246811,27795120 -) -g1,3838:8195248,27795120 -g1,3838:8511394,27795120 -g1,3838:9775977,27795120 -g1,3838:10408269,27795120 -g1,3838:11040561,27795120 -g1,3838:11672853,27795120 -g1,3838:12305145,27795120 -g1,3838:12937437,27795120 -g1,3838:13569729,27795120 -g1,3838:14202021,27795120 -g1,3838:14834313,27795120 -g1,3838:15466605,27795120 -g1,3838:16098897,27795120 -g1,3838:16731189,27795120 -h1,3838:17047335,27795120:0,0,0 -k1,3838:31966991,27795120:14919656 -g1,3838:31966991,27795120 -) -(1,3838:7246811,28461298:24720180,404226,6290 -h1,3838:7246811,28461298:0,0,0 -g1,3838:8195248,28461298 -g1,3838:10724414,28461298 -g1,3838:11356706,28461298 -g1,3838:11988998,28461298 -g1,3838:12621290,28461298 -h1,3838:12937436,28461298:0,0,0 -k1,3838:31966992,28461298:19029556 -g1,3838:31966992,28461298 -) -(1,3840:7246811,29782836:24720180,410518,101187 -(1,3839:7246811,29782836:0,0,0 -g1,3839:7246811,29782836 -g1,3839:7246811,29782836 -g1,3839:6919131,29782836 -(1,3839:6919131,29782836:0,0,0 -) -g1,3839:7246811,29782836 -) -k1,3840:7246811,29782836:0 -g1,3840:13253579,29782836 -g1,3840:14202017,29782836 -g1,3840:16415038,29782836 -g1,3840:17995767,29782836 -g1,3840:19576496,29782836 -h1,3840:20841079,29782836:0,0,0 -k1,3840:31966991,29782836:11125912 -g1,3840:31966991,29782836 -) -(1,3841:7246811,30449014:24720180,410518,101187 -h1,3841:7246811,30449014:0,0,0 -h1,3841:10408268,30449014:0,0,0 -k1,3841:31966992,30449014:21558724 -g1,3841:31966992,30449014 -) -(1,3846:7246811,31180728:24720180,404226,76021 -(1,3843:7246811,31180728:0,0,0 -g1,3843:7246811,31180728 -g1,3843:7246811,31180728 -g1,3843:6919131,31180728 -(1,3843:6919131,31180728:0,0,0 -) -g1,3843:7246811,31180728 -) -g1,3846:8195248,31180728 -g1,3846:8511394,31180728 -g1,3846:9775977,31180728 -g1,3846:10408269,31180728 -g1,3846:11040561,31180728 -g1,3846:11672853,31180728 -g1,3846:12305145,31180728 -g1,3846:12937437,31180728 -g1,3846:13569729,31180728 -g1,3846:14202021,31180728 -g1,3846:14834313,31180728 -g1,3846:15466605,31180728 -g1,3846:16098897,31180728 -g1,3846:16731189,31180728 -h1,3846:17047335,31180728:0,0,0 -k1,3846:31966991,31180728:14919656 -g1,3846:31966991,31180728 -) -(1,3846:7246811,31846906:24720180,404226,6290 -h1,3846:7246811,31846906:0,0,0 -g1,3846:8195248,31846906 -g1,3846:10724414,31846906 -g1,3846:11356706,31846906 -g1,3846:11988998,31846906 -g1,3846:12621290,31846906 -h1,3846:12937436,31846906:0,0,0 -k1,3846:31966992,31846906:19029556 -g1,3846:31966992,31846906 -) -] -) -g1,3847:31966991,31853196 -g1,3847:7246811,31853196 -g1,3847:7246811,31853196 -g1,3847:31966991,31853196 -g1,3847:31966991,31853196 -) -h1,3847:7246811,32049804:0,0,0 -(1,3851:7246811,33415580:24720180,513147,134348 -h1,3850:7246811,33415580:983040,0,0 -k1,3850:9294156,33415580:266732 -k1,3850:11211084,33415580:266731 -k1,3850:13342315,33415580:266732 -k1,3850:14370574,33415580:266731 -k1,3850:17608708,33415580:266732 -k1,3850:21668663,33415580:266731 -k1,3850:23674721,33415580:266732 -k1,3850:24557490,33415580:266731 -k1,3850:25843307,33415580:266732 -k1,3850:27103564,33415580:266731 -k1,3850:28029588,33415580:266732 -k1,3850:31966991,33415580:0 -) -(1,3851:7246811,34257068:24720180,505283,7863 -g1,3850:9456685,34257068 -g1,3850:10187411,34257068 -k1,3851:31966991,34257068:18543412 -g1,3851:31966991,34257068 -) -v1,3853:7246811,35447534:0,393216,0 -(1,3870:7246811,41117412:24720180,6063094,196608 -g1,3870:7246811,41117412 -g1,3870:7246811,41117412 -g1,3870:7050203,41117412 -(1,3870:7050203,41117412:0,6063094,196608 -r1,3901:32163599,41117412:25113396,6259702,196608 -k1,3870:7050203,41117412:-25113396 -) -(1,3870:7050203,41117412:25113396,6063094,196608 -[1,3870:7246811,41117412:24720180,5866486,0 -(1,3855:7246811,35661444:24720180,410518,107478 -(1,3854:7246811,35661444:0,0,0 -g1,3854:7246811,35661444 -g1,3854:7246811,35661444 -g1,3854:6919131,35661444 -(1,3854:6919131,35661444:0,0,0 -) -g1,3854:7246811,35661444 -) -g1,3855:10724414,35661444 -g1,3855:11672852,35661444 -g1,3855:13569727,35661444 -g1,3855:14518165,35661444 -g1,3855:16731185,35661444 -g1,3855:17363477,35661444 -g1,3855:19576498,35661444 -g1,3855:21157227,35661444 -g1,3855:22737956,35661444 -h1,3855:24318684,35661444:0,0,0 -k1,3855:31966991,35661444:7648307 -g1,3855:31966991,35661444 -) -(1,3856:7246811,36327622:24720180,410518,101187 -h1,3856:7246811,36327622:0,0,0 -h1,3856:10408268,36327622:0,0,0 -k1,3856:31966992,36327622:21558724 -g1,3856:31966992,36327622 -) -(1,3861:7246811,37059336:24720180,404226,76021 -(1,3858:7246811,37059336:0,0,0 -g1,3858:7246811,37059336 -g1,3858:7246811,37059336 -g1,3858:6919131,37059336 -(1,3858:6919131,37059336:0,0,0 -) -g1,3858:7246811,37059336 -) -g1,3861:8195248,37059336 -g1,3861:8511394,37059336 -g1,3861:9775977,37059336 -g1,3861:10408269,37059336 -g1,3861:11040561,37059336 -g1,3861:11672853,37059336 -g1,3861:12305145,37059336 -g1,3861:12937437,37059336 -g1,3861:13569729,37059336 -g1,3861:14202021,37059336 -g1,3861:14834313,37059336 -g1,3861:15466605,37059336 -g1,3861:16098897,37059336 -g1,3861:16731189,37059336 -h1,3861:17047335,37059336:0,0,0 -k1,3861:31966991,37059336:14919656 -g1,3861:31966991,37059336 -) -(1,3861:7246811,37725514:24720180,404226,6290 -h1,3861:7246811,37725514:0,0,0 -g1,3861:8195248,37725514 -g1,3861:10724414,37725514 -g1,3861:11356706,37725514 -g1,3861:11988998,37725514 -g1,3861:12621290,37725514 -h1,3861:12937436,37725514:0,0,0 -k1,3861:31966992,37725514:19029556 -g1,3861:31966992,37725514 -) -(1,3863:7246811,39047052:24720180,410518,101187 -(1,3862:7246811,39047052:0,0,0 -g1,3862:7246811,39047052 -g1,3862:7246811,39047052 -g1,3862:6919131,39047052 -(1,3862:6919131,39047052:0,0,0 -) -g1,3862:7246811,39047052 -) -k1,3863:7246811,39047052:0 -g1,3863:13253579,39047052 -g1,3863:14202017,39047052 -g1,3863:17047329,39047052 -g1,3863:17679621,39047052 -g1,3863:19260350,39047052 -g1,3863:20524933,39047052 -g1,3863:21157225,39047052 -g1,3863:22737954,39047052 -g1,3863:24002537,39047052 -g1,3863:24634829,39047052 -g1,3863:26215558,39047052 -g1,3863:27480141,39047052 -g1,3863:28112433,39047052 -h1,3863:29377016,39047052:0,0,0 -k1,3863:31966991,39047052:2589975 -g1,3863:31966991,39047052 -) -(1,3864:7246811,39713230:24720180,410518,101187 -h1,3864:7246811,39713230:0,0,0 -h1,3864:10408268,39713230:0,0,0 -k1,3864:31966992,39713230:21558724 -g1,3864:31966992,39713230 -) -(1,3869:7246811,40444944:24720180,404226,76021 -(1,3866:7246811,40444944:0,0,0 -g1,3866:7246811,40444944 -g1,3866:7246811,40444944 -g1,3866:6919131,40444944 -(1,3866:6919131,40444944:0,0,0 -) -g1,3866:7246811,40444944 -) -g1,3869:8195248,40444944 -g1,3869:8511394,40444944 -g1,3869:9775977,40444944 -g1,3869:10408269,40444944 -g1,3869:11040561,40444944 -g1,3869:11672853,40444944 -g1,3869:12305145,40444944 -g1,3869:12937437,40444944 -g1,3869:13569729,40444944 -g1,3869:14202021,40444944 -g1,3869:14834313,40444944 -g1,3869:15466605,40444944 -g1,3869:16098897,40444944 -g1,3869:16731189,40444944 -h1,3869:17047335,40444944:0,0,0 -k1,3869:31966991,40444944:14919656 -g1,3869:31966991,40444944 -) -(1,3869:7246811,41111122:24720180,404226,6290 -h1,3869:7246811,41111122:0,0,0 -g1,3869:8195248,41111122 -g1,3869:10724414,41111122 -g1,3869:11356706,41111122 -g1,3869:11988998,41111122 -g1,3869:12621290,41111122 -h1,3869:12937436,41111122:0,0,0 -k1,3869:31966992,41111122:19029556 -g1,3869:31966992,41111122 -) -] -) -g1,3870:31966991,41117412 -g1,3870:7246811,41117412 -g1,3870:7246811,41117412 -g1,3870:31966991,41117412 -g1,3870:31966991,41117412 -) -h1,3870:7246811,41314020:0,0,0 -(1,3874:7246811,42679796:24720180,513147,134348 -h1,3873:7246811,42679796:983040,0,0 -k1,3873:9249233,42679796:221809 -k1,3873:13424175,42679796:221810 -k1,3873:14407512,42679796:221809 -k1,3873:17243553,42679796:221810 -k1,3873:18656807,42679796:221809 -k1,3873:21819873,42679796:221810 -k1,3873:23060767,42679796:221809 -k1,3873:25126760,42679796:221810 -k1,3873:26007861,42679796:221809 -k1,3873:27605272,42679796:221810 -k1,3873:29519221,42679796:221809 -k1,3874:31966991,42679796:0 -) -(1,3874:7246811,43521284:24720180,513147,102891 -g1,3873:8515588,43521284 -g1,3873:10666479,43521284 -k1,3874:31966991,43521284:18998888 -g1,3874:31966991,43521284 -) -] -) -] -r1,3901:32583029,44213999:26214,24338808,0 -) -] -) -) -g1,3901:32583029,43624175 -) -] -(1,3901:32583029,45706769:0,0,0 -g1,3901:32583029,45706769 -) -) -] -(1,3901:6630773,47279633:25952256,0,0 -h1,3901:6630773,47279633:25952256,0,0 -) -] -(1,3901:4262630,4025873:0,0,0 -[1,3901:-473656,4025873:0,0,0 -(1,3901:-473656,-710413:0,0,0 -(1,3901:-473656,-710413:0,0,0 -g1,3901:-473656,-710413 -) -g1,3901:-473656,-710413 -) -] -) -] -!25541 -}75 -Input:563:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:564:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:565:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:566:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:567:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:568:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:569:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!648 -{76 -[1,4008:4262630,47279633:28320399,43253760,0 -(1,4008:4262630,4025873:0,0,0 -[1,4008:-473656,4025873:0,0,0 -(1,4008:-473656,-710413:0,0,0 -(1,4008:-473656,-644877:0,0,0 -k1,4008:-473656,-644877:-65536 -) -(1,4008:-473656,4736287:0,0,0 -k1,4008:-473656,4736287:5209943 -) -g1,4008:-473656,-710413 -) -] -) -[1,4008:6630773,47279633:25952256,43253760,0 -[1,4008:6630773,4812305:25952256,786432,0 -(1,4008:6630773,4812305:25952256,485622,11795 -(1,4008:6630773,4812305:25952256,485622,11795 -g1,4008:3078558,4812305 -[1,4008:3078558,4812305:0,0,0 -(1,4008:3078558,2439708:0,1703936,0 -k1,4008:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,4008:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,4008:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,4008:3078558,4812305:0,0,0 -(1,4008:3078558,2439708:0,1703936,0 -g1,4008:29030814,2439708 -g1,4008:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,4008:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,4008:37855564,2439708:1179648,16384,0 -) -) -k1,4008:3078556,2439708:-34777008 -) -] -[1,4008:3078558,4812305:0,0,0 -(1,4008:3078558,49800853:0,16384,2228224 -k1,4008:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,4008:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,4008:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,4008:3078558,4812305:0,0,0 -(1,4008:3078558,49800853:0,16384,2228224 -g1,4008:29030814,49800853 -g1,4008:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,4008:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,4008:37855564,49800853:1179648,16384,0 -) -) -k1,4008:3078556,49800853:-34777008 -) -] -g1,4008:6630773,4812305 -g1,4008:6630773,4812305 -g1,4008:9104757,4812305 -k1,4008:31786111,4812305:22681354 -) -) -] -[1,4008:6630773,45706769:25952256,40108032,0 -(1,4008:6630773,45706769:25952256,40108032,0 -(1,4008:6630773,45706769:0,0,0 -g1,4008:6630773,45706769 -) -[1,4008:6630773,45706769:25952256,40108032,0 -v1,3901:6630773,6254097:0,393216,0 -(1,3901:6630773,14044719:25952256,8183838,616038 -g1,3901:6630773,14044719 -(1,3901:6630773,14044719:25952256,8183838,616038 -(1,3901:6630773,14660757:25952256,8799876,0 -[1,3901:6630773,14660757:25952256,8799876,0 -(1,3901:6630773,14634543:25952256,8773662,0 -r1,4008:6656987,14634543:26214,8773662,0 -[1,3901:6656987,14634543:25899828,8773662,0 -(1,3901:6656987,14044719:25899828,7594014,0 -[1,3901:7246811,14044719:24720180,7594014,0 -v1,3876:7246811,6843921:0,393216,0 -(1,3885:7246811,9128191:24720180,2677486,196608 -g1,3885:7246811,9128191 -g1,3885:7246811,9128191 -g1,3885:7050203,9128191 -(1,3885:7050203,9128191:0,2677486,196608 -r1,4008:32163599,9128191:25113396,2874094,196608 -k1,3885:7050203,9128191:-25113396 -) -(1,3885:7050203,9128191:25113396,2677486,196608 -[1,3885:7246811,9128191:24720180,2480878,0 -(1,3878:7246811,7057831:24720180,410518,107478 -(1,3877:7246811,7057831:0,0,0 -g1,3877:7246811,7057831 -g1,3877:7246811,7057831 -g1,3877:6919131,7057831 -(1,3877:6919131,7057831:0,0,0 -) -g1,3877:7246811,7057831 -) -g1,3878:10724414,7057831 -g1,3878:11672852,7057831 -g1,3878:13569727,7057831 -g1,3878:14518165,7057831 -g1,3878:16731185,7057831 -g1,3878:17363477,7057831 -g1,3878:19576498,7057831 -g1,3878:21157227,7057831 -g1,3878:22737956,7057831 -h1,3878:24318684,7057831:0,0,0 -k1,3878:31966991,7057831:7648307 -g1,3878:31966991,7057831 -) -(1,3879:7246811,7724009:24720180,410518,101187 -h1,3879:7246811,7724009:0,0,0 -h1,3879:10408268,7724009:0,0,0 -k1,3879:31966992,7724009:21558724 -g1,3879:31966992,7724009 -) -(1,3884:7246811,8455723:24720180,404226,76021 -(1,3881:7246811,8455723:0,0,0 -g1,3881:7246811,8455723 -g1,3881:7246811,8455723 -g1,3881:6919131,8455723 -(1,3881:6919131,8455723:0,0,0 -) -g1,3881:7246811,8455723 -) -g1,3884:8195248,8455723 -g1,3884:8511394,8455723 -g1,3884:9775977,8455723 -g1,3884:10408269,8455723 -g1,3884:11040561,8455723 -g1,3884:11672853,8455723 -g1,3884:12305145,8455723 -g1,3884:12937437,8455723 -g1,3884:13569729,8455723 -g1,3884:14202021,8455723 -g1,3884:14834313,8455723 -g1,3884:15466605,8455723 -g1,3884:16098897,8455723 -g1,3884:16731189,8455723 -h1,3884:17047335,8455723:0,0,0 -k1,3884:31966991,8455723:14919656 -g1,3884:31966991,8455723 -) -(1,3884:7246811,9121901:24720180,404226,6290 -h1,3884:7246811,9121901:0,0,0 -g1,3884:8195248,9121901 -g1,3884:10724414,9121901 -g1,3884:11356706,9121901 -g1,3884:11988998,9121901 -g1,3884:12621290,9121901 -h1,3884:12937436,9121901:0,0,0 -k1,3884:31966992,9121901:19029556 -g1,3884:31966992,9121901 -) -] -) -g1,3885:31966991,9128191 -g1,3885:7246811,9128191 -g1,3885:7246811,9128191 -g1,3885:31966991,9128191 -g1,3885:31966991,9128191 -) -h1,3885:7246811,9324799:0,0,0 -v1,3889:7246811,11039553:0,393216,0 -(1,3898:7246811,13323823:24720180,2677486,196608 -g1,3898:7246811,13323823 -g1,3898:7246811,13323823 -g1,3898:7050203,13323823 -(1,3898:7050203,13323823:0,2677486,196608 -r1,4008:32163599,13323823:25113396,2874094,196608 -k1,3898:7050203,13323823:-25113396 -) -(1,3898:7050203,13323823:25113396,2677486,196608 -[1,3898:7246811,13323823:24720180,2480878,0 -(1,3891:7246811,11253463:24720180,410518,101187 -(1,3890:7246811,11253463:0,0,0 -g1,3890:7246811,11253463 -g1,3890:7246811,11253463 -g1,3890:6919131,11253463 -(1,3890:6919131,11253463:0,0,0 -) -g1,3890:7246811,11253463 -) -k1,3891:7246811,11253463:0 -g1,3891:14834309,11253463 -g1,3891:16098892,11253463 -g1,3891:17047330,11253463 -g1,3891:19260351,11253463 -h1,3891:20524934,11253463:0,0,0 -k1,3891:31966991,11253463:11442057 -g1,3891:31966991,11253463 -) -(1,3892:7246811,11919641:24720180,410518,101187 -h1,3892:7246811,11919641:0,0,0 -h1,3892:10408268,11919641:0,0,0 -k1,3892:31966992,11919641:21558724 -g1,3892:31966992,11919641 -) -(1,3897:7246811,12651355:24720180,404226,76021 -(1,3894:7246811,12651355:0,0,0 -g1,3894:7246811,12651355 -g1,3894:7246811,12651355 -g1,3894:6919131,12651355 -(1,3894:6919131,12651355:0,0,0 -) -g1,3894:7246811,12651355 -) -g1,3897:8195248,12651355 -g1,3897:8511394,12651355 -g1,3897:9775977,12651355 -g1,3897:10408269,12651355 -g1,3897:11040561,12651355 -g1,3897:11672853,12651355 -g1,3897:12305145,12651355 -g1,3897:12937437,12651355 -g1,3897:13569729,12651355 -g1,3897:14202021,12651355 -g1,3897:14834313,12651355 -g1,3897:15466605,12651355 -g1,3897:16098897,12651355 -g1,3897:16731189,12651355 -h1,3897:17047335,12651355:0,0,0 -k1,3897:31966991,12651355:14919656 -g1,3897:31966991,12651355 -) -(1,3897:7246811,13317533:24720180,404226,6290 -h1,3897:7246811,13317533:0,0,0 -g1,3897:8195248,13317533 -g1,3897:10724414,13317533 -g1,3897:11356706,13317533 -g1,3897:11988998,13317533 -g1,3897:12621290,13317533 -h1,3897:12937436,13317533:0,0,0 -k1,3897:31966992,13317533:19029556 -g1,3897:31966992,13317533 -) -] -) -g1,3898:31966991,13323823 -g1,3898:7246811,13323823 -g1,3898:7246811,13323823 -g1,3898:31966991,13323823 -g1,3898:31966991,13323823 -) -h1,3898:7246811,13520431:0,0,0 -] -) -] -r1,4008:32583029,14634543:26214,8773662,0 -) -] -) -) -g1,3901:32583029,14044719 -) -h1,3901:6630773,14660757:0,0,0 -v1,3904:6630773,16026533:0,393216,0 -(1,3927:6630773,26501719:25952256,10868402,616038 -g1,3927:6630773,26501719 -(1,3927:6630773,26501719:25952256,10868402,616038 -(1,3927:6630773,27117757:25952256,11484440,0 -[1,3927:6630773,27117757:25952256,11484440,0 -(1,3927:6630773,27091543:25952256,11432012,0 -r1,4008:6656987,27091543:26214,11432012,0 -[1,3927:6656987,27091543:25899828,11432012,0 -(1,3927:6656987,26501719:25899828,10252364,0 -[1,3927:7246811,26501719:24720180,10252364,0 -(1,3905:7246811,17411240:24720180,1161885,196608 -(1,3904:7246811,17411240:0,1161885,196608 -r1,4008:8794447,17411240:1547636,1358493,196608 -k1,3904:7246811,17411240:-1547636 -) -(1,3904:7246811,17411240:1547636,1161885,196608 -) -k1,3904:8951598,17411240:157151 -k1,3904:11803137,17411240:161286 -k1,3904:13918051,17411240:161286 -k1,3904:16185461,17411240:157151 -k1,3904:17296161,17411240:157151 -k1,3904:18545796,17411240:157150 -(1,3904:18545796,17411240:0,459977,115847 -r1,4008:21366045,17411240:2820249,575824,115847 -k1,3904:18545796,17411240:-2820249 -) -(1,3904:18545796,17411240:2820249,459977,115847 -k1,3904:18545796,17411240:3277 -h1,3904:21362768,17411240:0,411205,112570 -) -k1,3904:21523196,17411240:157151 -k1,3904:22366509,17411240:157151 -k1,3904:24599185,17411240:157151 -k1,3904:26798437,17411240:157150 -k1,3904:29137282,17411240:157151 -k1,3904:30313518,17411240:157151 -k1,3904:31966991,17411240:0 -) -(1,3905:7246811,18252728:24720180,513147,134348 -g1,3904:8959922,18252728 -g1,3904:10106802,18252728 -g1,3904:11325116,18252728 -g1,3904:13316755,18252728 -g1,3904:14384336,18252728 -g1,3904:16132181,18252728 -g1,3904:16982838,18252728 -k1,3905:31966991,18252728:12833261 -g1,3905:31966991,18252728 -) -v1,3907:7246811,19443194:0,393216,0 -(1,3925:7246811,25780823:24720180,6730845,196608 -g1,3925:7246811,25780823 -g1,3925:7246811,25780823 -g1,3925:7050203,25780823 -(1,3925:7050203,25780823:0,6730845,196608 -r1,4008:32163599,25780823:25113396,6927453,196608 -k1,3925:7050203,25780823:-25113396 -) -(1,3925:7050203,25780823:25113396,6730845,196608 -[1,3925:7246811,25780823:24720180,6534237,0 -(1,3909:7246811,19657104:24720180,410518,107478 -(1,3908:7246811,19657104:0,0,0 -g1,3908:7246811,19657104 -g1,3908:7246811,19657104 -g1,3908:6919131,19657104 -(1,3908:6919131,19657104:0,0,0 -) -g1,3908:7246811,19657104 -) -g1,3909:10724414,19657104 -g1,3909:11672852,19657104 -g1,3909:13569727,19657104 -g1,3909:14518165,19657104 -g1,3909:16731185,19657104 -g1,3909:17363477,19657104 -g1,3909:19576498,19657104 -g1,3909:21157227,19657104 -g1,3909:22737956,19657104 -h1,3909:24318684,19657104:0,0,0 -k1,3909:31966991,19657104:7648307 -g1,3909:31966991,19657104 -) -(1,3910:7246811,20323282:24720180,410518,101187 -h1,3910:7246811,20323282:0,0,0 -h1,3910:10408268,20323282:0,0,0 -k1,3910:31966992,20323282:21558724 -g1,3910:31966992,20323282 -) -(1,3915:7246811,21054996:24720180,404226,76021 -(1,3912:7246811,21054996:0,0,0 -g1,3912:7246811,21054996 -g1,3912:7246811,21054996 -g1,3912:6919131,21054996 -(1,3912:6919131,21054996:0,0,0 -) -g1,3912:7246811,21054996 -) -g1,3915:8195248,21054996 -g1,3915:8511394,21054996 -g1,3915:9775977,21054996 -g1,3915:10408269,21054996 -g1,3915:11040561,21054996 -g1,3915:11672853,21054996 -g1,3915:12305145,21054996 -g1,3915:12937437,21054996 -g1,3915:13569729,21054996 -g1,3915:14202021,21054996 -g1,3915:14834313,21054996 -g1,3915:15466605,21054996 -g1,3915:16098897,21054996 -g1,3915:16731189,21054996 -h1,3915:17047335,21054996:0,0,0 -k1,3915:31966991,21054996:14919656 -g1,3915:31966991,21054996 -) -(1,3915:7246811,21721174:24720180,404226,6290 -h1,3915:7246811,21721174:0,0,0 -g1,3915:8195248,21721174 -g1,3915:10724414,21721174 -g1,3915:11356706,21721174 -g1,3915:11988998,21721174 -g1,3915:12621290,21721174 -h1,3915:12937436,21721174:0,0,0 -k1,3915:31966992,21721174:19029556 -g1,3915:31966992,21721174 -) -(1,3917:7246811,23042712:24720180,410518,101187 -(1,3916:7246811,23042712:0,0,0 -g1,3916:7246811,23042712 -g1,3916:7246811,23042712 -g1,3916:6919131,23042712 -(1,3916:6919131,23042712:0,0,0 -) -g1,3916:7246811,23042712 -) -k1,3917:7246811,23042712:0 -k1,3917:7246811,23042712:0 -h1,3917:12937433,23042712:0,0,0 -k1,3917:31966991,23042712:19029558 -g1,3917:31966991,23042712 -) -(1,3918:7246811,23708890:24720180,404226,82312 -h1,3918:7246811,23708890:0,0,0 -g1,3918:7562957,23708890 -g1,3918:7879103,23708890 -g1,3918:8195249,23708890 -g1,3918:8511395,23708890 -g1,3918:8827541,23708890 -g1,3918:9143687,23708890 -g1,3918:9459833,23708890 -g1,3918:11672853,23708890 -g1,3918:12305145,23708890 -g1,3918:14518166,23708890 -g1,3918:16098895,23708890 -g1,3918:17679624,23708890 -k1,3918:17679624,23708890:0 -h1,3918:19260353,23708890:0,0,0 -k1,3918:31966991,23708890:12706638 -g1,3918:31966991,23708890 -) -(1,3919:7246811,24375068:24720180,404226,82312 -h1,3919:7246811,24375068:0,0,0 -g1,3919:7562957,24375068 -g1,3919:7879103,24375068 -g1,3919:8195249,24375068 -g1,3919:8511395,24375068 -g1,3919:8827541,24375068 -g1,3919:9143687,24375068 -g1,3919:9459833,24375068 -g1,3919:11672853,24375068 -g1,3919:12305145,24375068 -g1,3919:14518166,24375068 -g1,3919:16098895,24375068 -g1,3919:17679624,24375068 -h1,3919:19260352,24375068:0,0,0 -k1,3919:31966991,24375068:12706639 -g1,3919:31966991,24375068 -) -(1,3924:7246811,25106782:24720180,404226,76021 -(1,3921:7246811,25106782:0,0,0 -g1,3921:7246811,25106782 -g1,3921:7246811,25106782 -g1,3921:6919131,25106782 -(1,3921:6919131,25106782:0,0,0 -) -g1,3921:7246811,25106782 -) -g1,3924:8195248,25106782 -g1,3924:8511394,25106782 -g1,3924:9775977,25106782 -g1,3924:10408269,25106782 -g1,3924:11040561,25106782 -g1,3924:11672853,25106782 -g1,3924:12305145,25106782 -g1,3924:12937437,25106782 -g1,3924:13569729,25106782 -g1,3924:14202021,25106782 -g1,3924:14834313,25106782 -g1,3924:15466605,25106782 -g1,3924:16098897,25106782 -g1,3924:16731189,25106782 -h1,3924:17047335,25106782:0,0,0 -k1,3924:31966991,25106782:14919656 -g1,3924:31966991,25106782 -) -(1,3924:7246811,25772960:24720180,404226,7863 -h1,3924:7246811,25772960:0,0,0 -g1,3924:8195248,25772960 -g1,3924:10724414,25772960 -g1,3924:11356706,25772960 -g1,3924:11988998,25772960 -h1,3924:12305144,25772960:0,0,0 -k1,3924:31966992,25772960:19661848 -g1,3924:31966992,25772960 -) -] -) -g1,3925:31966991,25780823 -g1,3925:7246811,25780823 -g1,3925:7246811,25780823 -g1,3925:31966991,25780823 -g1,3925:31966991,25780823 -) -h1,3925:7246811,25977431:0,0,0 -] -) -] -r1,4008:32583029,27091543:26214,11432012,0 -) -] -) -) -g1,3927:32583029,26501719 -) -h1,3927:6630773,27117757:0,0,0 -v1,3930:6630773,28483533:0,393216,0 -(1,4008:6630773,41606059:25952256,13515742,589824 -g1,4008:6630773,41606059 -(1,4008:6630773,41606059:25952256,13515742,589824 -(1,4008:6630773,42195883:25952256,14105566,0 -[1,4008:6630773,42195883:25952256,14105566,0 -(1,4008:6630773,42195883:25952256,14079352,0 -r1,4008:6656987,42195883:26214,14079352,0 -[1,4008:6656987,42195883:25899828,14079352,0 -(1,4008:6656987,41606059:25899828,12899704,0 -[1,4008:7246811,41606059:24720180,12899704,0 -(1,3931:7246811,29868240:24720180,1161885,196608 -(1,3930:7246811,29868240:0,1161885,196608 -r1,4008:8794447,29868240:1547636,1358493,196608 -k1,3930:7246811,29868240:-1547636 -) -(1,3930:7246811,29868240:1547636,1161885,196608 -) -k1,3930:8997894,29868240:203447 -k1,3930:12886543,29868240:208802 -k1,3930:15048972,29868240:208801 -k1,3930:17362678,29868240:203447 -k1,3930:18762813,29868240:203448 -k1,3930:21678140,29868240:203447 -k1,3930:24866098,29868240:203448 -k1,3930:25601042,29868240:203447 -k1,3930:26455917,29868240:203447 -k1,3930:27751850,29868240:203448 -(1,3930:27751850,29868240:0,459977,115847 -r1,4008:30572099,29868240:2820249,575824,115847 -k1,3930:27751850,29868240:-2820249 -) -(1,3930:27751850,29868240:2820249,459977,115847 -k1,3930:27751850,29868240:3277 -h1,3930:30568822,29868240:0,411205,112570 -) -k1,3930:30775546,29868240:203447 -k1,3930:31966991,29868240:0 -) -(1,3931:7246811,30709728:24720180,513147,134348 -k1,3930:8250494,30709728:215285 -(1,3930:8250494,30709728:0,452978,115847 -r1,4008:10367319,30709728:2116825,568825,115847 -k1,3930:8250494,30709728:-2116825 -) -(1,3930:8250494,30709728:2116825,452978,115847 -k1,3930:8250494,30709728:3277 -h1,3930:10364042,30709728:0,411205,112570 -) -k1,3930:10582603,30709728:215284 -k1,3930:14252291,30709728:215285 -k1,3930:15664263,30709728:215285 -k1,3930:17255149,30709728:215285 -k1,3930:21602478,30709728:215284 -k1,3930:22349260,30709728:215285 -k1,3930:23849051,30709728:215285 -k1,3930:25083421,30709728:215285 -k1,3930:27367022,30709728:215285 -k1,3930:28241598,30709728:215284 -k1,3930:29475968,30709728:215285 -k1,3930:31966991,30709728:0 -) -(1,3931:7246811,31551216:24720180,505283,134348 -k1,3930:9278100,31551216:238879 -k1,3930:10708423,31551216:238878 -k1,3930:12691215,31551216:238879 -k1,3930:15135380,31551216:238878 -k1,3930:16060421,31551216:238879 -k1,3930:17070002,31551216:238878 -k1,3930:20381209,31551216:238879 -k1,3930:22150353,31551216:238878 -k1,3930:23040660,31551216:238879 -k1,3930:25434362,31551216:238878 -k1,3930:26864686,31551216:238879 -k1,3930:29132559,31551216:238878 -k1,3930:31966991,31551216:0 -) -(1,3931:7246811,32392704:24720180,513147,134348 -k1,3930:8536056,32392704:184963 -k1,3930:10502942,32392704:184962 -k1,3930:12381355,32392704:184963 -k1,3930:13395348,32392704:184963 -k1,3930:15309805,32392704:184962 -k1,3930:16513853,32392704:184963 -k1,3930:20384561,32392704:184963 -k1,3930:22098479,32392704:184963 -k1,3930:22899479,32392704:184962 -k1,3930:23850558,32392704:184963 -k1,3930:27027240,32392704:184963 -k1,3930:29283140,32392704:184962 -k1,3930:30487188,32392704:184963 -k1,3930:31966991,32392704:0 -) -(1,3931:7246811,33234192:24720180,513147,115847 -g1,3930:8314392,33234192 -g1,3930:9606106,33234192 -(1,3930:9606106,33234192:0,452978,115847 -r1,4008:12426355,33234192:2820249,568825,115847 -k1,3930:9606106,33234192:-2820249 -) -(1,3930:9606106,33234192:2820249,452978,115847 -k1,3930:9606106,33234192:3277 -h1,3930:12423078,33234192:0,411205,112570 -) -g1,3930:12625584,33234192 -g1,3930:13476241,33234192 -g1,3930:16109477,33234192 -g1,3930:17327791,33234192 -g1,3930:19595336,33234192 -g1,3930:20453857,33234192 -g1,3930:21672171,33234192 -g1,3930:23663810,33234192 -g1,3930:25430660,33234192 -g1,3930:26648974,33234192 -g1,3930:28742193,33234192 -k1,3931:31966991,33234192:1445496 -g1,3931:31966991,33234192 -) -v1,3933:7246811,34424658:0,393216,0 -(1,3954:7246811,40885163:24720180,6853721,196608 -g1,3954:7246811,40885163 -g1,3954:7246811,40885163 -g1,3954:7050203,40885163 -(1,3954:7050203,40885163:0,6853721,196608 -r1,4008:32163599,40885163:25113396,7050329,196608 -k1,3954:7050203,40885163:-25113396 -) -(1,3954:7050203,40885163:25113396,6853721,196608 -[1,3954:7246811,40885163:24720180,6657113,0 -(1,3935:7246811,34638568:24720180,410518,101187 -(1,3934:7246811,34638568:0,0,0 -g1,3934:7246811,34638568 -g1,3934:7246811,34638568 -g1,3934:6919131,34638568 -(1,3934:6919131,34638568:0,0,0 -) -g1,3934:7246811,34638568 -) -k1,3935:7246811,34638568:0 -h1,3935:12937433,34638568:0,0,0 -k1,3935:31966991,34638568:19029558 -g1,3935:31966991,34638568 -) -(1,3939:7246811,35370282:24720180,404226,76021 -(1,3937:7246811,35370282:0,0,0 -g1,3937:7246811,35370282 -g1,3937:7246811,35370282 -g1,3937:6919131,35370282 -(1,3937:6919131,35370282:0,0,0 -) -g1,3937:7246811,35370282 -) -g1,3939:8195248,35370282 -g1,3939:9459831,35370282 -g1,3939:10724414,35370282 -g1,3939:11988997,35370282 -h1,3939:12937434,35370282:0,0,0 -k1,3939:31966990,35370282:19029556 -g1,3939:31966990,35370282 -) -(1,3941:7246811,36691820:24720180,410518,101187 -(1,3940:7246811,36691820:0,0,0 -g1,3940:7246811,36691820 -g1,3940:7246811,36691820 -g1,3940:6919131,36691820 -(1,3940:6919131,36691820:0,0,0 -) -g1,3940:7246811,36691820 -) -g1,3941:10724414,36691820 -g1,3941:11672852,36691820 -g1,3941:17679620,36691820 -g1,3941:19892640,36691820 -g1,3941:20524932,36691820 -g1,3941:22737953,36691820 -g1,3941:24318682,36691820 -h1,3941:25899410,36691820:0,0,0 -k1,3941:31966991,36691820:6067581 -g1,3941:31966991,36691820 -) -(1,3942:7246811,37357998:24720180,410518,101187 -h1,3942:7246811,37357998:0,0,0 -k1,3942:7246811,37357998:0 -h1,3942:12937433,37357998:0,0,0 -k1,3942:31966991,37357998:19029558 -g1,3942:31966991,37357998 -) -(1,3946:7246811,38089712:24720180,404226,76021 -(1,3944:7246811,38089712:0,0,0 -g1,3944:7246811,38089712 -g1,3944:7246811,38089712 -g1,3944:6919131,38089712 -(1,3944:6919131,38089712:0,0,0 -) -g1,3944:7246811,38089712 -) -g1,3946:8195248,38089712 -g1,3946:9459831,38089712 -g1,3946:10724414,38089712 -g1,3946:11988997,38089712 -h1,3946:12937434,38089712:0,0,0 -k1,3946:31966990,38089712:19029556 -g1,3946:31966990,38089712 -) -(1,3948:7246811,39411250:24720180,410518,101187 -(1,3947:7246811,39411250:0,0,0 -g1,3947:7246811,39411250 -g1,3947:7246811,39411250 -g1,3947:6919131,39411250 -(1,3947:6919131,39411250:0,0,0 -) -g1,3947:7246811,39411250 -) -g1,3948:10724414,39411250 -g1,3948:11672852,39411250 -g1,3948:17679620,39411250 -g1,3948:19892640,39411250 -g1,3948:20524932,39411250 -k1,3948:20524932,39411250:0 -h1,3948:28112429,39411250:0,0,0 -k1,3948:31966991,39411250:3854562 -g1,3948:31966991,39411250 -) -(1,3949:7246811,40077428:24720180,410518,101187 -h1,3949:7246811,40077428:0,0,0 -k1,3949:7246811,40077428:0 -h1,3949:12937433,40077428:0,0,0 -k1,3949:31966991,40077428:19029558 -g1,3949:31966991,40077428 -) -(1,3953:7246811,40809142:24720180,404226,76021 -(1,3951:7246811,40809142:0,0,0 -g1,3951:7246811,40809142 -g1,3951:7246811,40809142 -g1,3951:6919131,40809142 -(1,3951:6919131,40809142:0,0,0 -) -g1,3951:7246811,40809142 -) -g1,3953:8195248,40809142 -g1,3953:9459831,40809142 -g1,3953:10724414,40809142 -g1,3953:11988997,40809142 -h1,3953:12937434,40809142:0,0,0 -k1,3953:31966990,40809142:19029556 -g1,3953:31966990,40809142 -) -] -) -g1,3954:31966991,40885163 -g1,3954:7246811,40885163 -g1,3954:7246811,40885163 -g1,3954:31966991,40885163 -g1,3954:31966991,40885163 -) -h1,3954:7246811,41081771:0,0,0 -] -) -] -r1,4008:32583029,42195883:26214,14079352,0 -) -] -) -) -g1,4008:32583029,41606059 -) -] -(1,4008:32583029,45706769:0,0,0 -g1,4008:32583029,45706769 -) -) -] -(1,4008:6630773,47279633:25952256,0,0 -h1,4008:6630773,47279633:25952256,0,0 -) -] -(1,4008:4262630,4025873:0,0,0 -[1,4008:-473656,4025873:0,0,0 -(1,4008:-473656,-710413:0,0,0 -(1,4008:-473656,-710413:0,0,0 -g1,4008:-473656,-710413 -) -g1,4008:-473656,-710413 -) -] -) -] -!21824 -}76 -Input:570:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:571:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!193 -{77 -[1,4042:4262630,47279633:28320399,43253760,0 -(1,4042:4262630,4025873:0,0,0 -[1,4042:-473656,4025873:0,0,0 -(1,4042:-473656,-710413:0,0,0 -(1,4042:-473656,-644877:0,0,0 -k1,4042:-473656,-644877:-65536 -) -(1,4042:-473656,4736287:0,0,0 -k1,4042:-473656,4736287:5209943 -) -g1,4042:-473656,-710413 -) -] -) -[1,4042:6630773,47279633:25952256,43253760,0 -[1,4042:6630773,4812305:25952256,786432,0 -(1,4042:6630773,4812305:25952256,505283,134348 -(1,4042:6630773,4812305:25952256,505283,134348 -g1,4042:3078558,4812305 -[1,4042:3078558,4812305:0,0,0 -(1,4042:3078558,2439708:0,1703936,0 -k1,4042:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,4042:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,4042:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,4042:3078558,4812305:0,0,0 -(1,4042:3078558,2439708:0,1703936,0 -g1,4042:29030814,2439708 -g1,4042:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,4042:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,4042:37855564,2439708:1179648,16384,0 -) -) -k1,4042:3078556,2439708:-34777008 -) -] -[1,4042:3078558,4812305:0,0,0 -(1,4042:3078558,49800853:0,16384,2228224 -k1,4042:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,4042:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,4042:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,4042:3078558,4812305:0,0,0 -(1,4042:3078558,49800853:0,16384,2228224 -g1,4042:29030814,49800853 -g1,4042:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,4042:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,4042:37855564,49800853:1179648,16384,0 -) -) -k1,4042:3078556,49800853:-34777008 -) -] -g1,4042:6630773,4812305 -k1,4042:19515153,4812305:12087462 -g1,4042:20901894,4812305 -g1,4042:21550700,4812305 -g1,4042:24864855,4812305 -g1,4042:27600327,4812305 -g1,4042:29010006,4812305 -) -) -] -[1,4042:6630773,45706769:25952256,40108032,0 -(1,4042:6630773,45706769:25952256,40108032,0 -(1,4042:6630773,45706769:0,0,0 -g1,4042:6630773,45706769 -) -[1,4042:6630773,45706769:25952256,40108032,0 -v1,4008:6630773,6254097:0,393216,0 -(1,4008:6630773,28348734:25952256,22487853,616038 -g1,4008:6630773,28348734 -(1,4008:6630773,28348734:25952256,22487853,616038 -(1,4008:6630773,28964772:25952256,23103891,0 -[1,4008:6630773,28964772:25952256,23103891,0 -(1,4008:6630773,28938558:25952256,23077677,0 -r1,4042:6656987,28938558:26214,23077677,0 -[1,4008:6656987,28938558:25899828,23077677,0 -(1,4008:6656987,28348734:25899828,21898029,0 -[1,4008:7246811,28348734:24720180,21898029,0 -v1,3958:7246811,6843921:0,393216,0 -(1,3974:7246811,11917352:24720180,5466647,196608 -g1,3974:7246811,11917352 -g1,3974:7246811,11917352 -g1,3974:7050203,11917352 -(1,3974:7050203,11917352:0,5466647,196608 -r1,4042:32163599,11917352:25113396,5663255,196608 -k1,3974:7050203,11917352:-25113396 -) -(1,3974:7050203,11917352:25113396,5466647,196608 -[1,3974:7246811,11917352:24720180,5270039,0 -(1,3960:7246811,7057831:24720180,410518,101187 -(1,3959:7246811,7057831:0,0,0 -g1,3959:7246811,7057831 -g1,3959:7246811,7057831 -g1,3959:6919131,7057831 -(1,3959:6919131,7057831:0,0,0 -) -g1,3959:7246811,7057831 -) -g1,3960:10724414,7057831 -g1,3960:11672852,7057831 -k1,3960:11672852,7057831:0 -h1,3960:17363474,7057831:0,0,0 -k1,3960:31966991,7057831:14603517 -g1,3960:31966991,7057831 -) -(1,3961:7246811,7724009:24720180,410518,107478 -h1,3961:7246811,7724009:0,0,0 -g1,3961:7562957,7724009 -g1,3961:7879103,7724009 -g1,3961:8195249,7724009 -g1,3961:8511395,7724009 -g1,3961:8827541,7724009 -g1,3961:9143687,7724009 -g1,3961:9459833,7724009 -g1,3961:9775979,7724009 -g1,3961:10092125,7724009 -g1,3961:10408271,7724009 -g1,3961:10724417,7724009 -g1,3961:11040563,7724009 -g1,3961:11356709,7724009 -g1,3961:11672855,7724009 -g1,3961:11989001,7724009 -g1,3961:12305147,7724009 -g1,3961:12621293,7724009 -g1,3961:12937439,7724009 -g1,3961:13253585,7724009 -g1,3961:13569731,7724009 -g1,3961:13885877,7724009 -g1,3961:16098897,7724009 -g1,3961:16731189,7724009 -g1,3961:24634832,7724009 -g1,3961:28112435,7724009 -g1,3961:28744727,7724009 -h1,3961:30641601,7724009:0,0,0 -k1,3961:31966991,7724009:1325390 -g1,3961:31966991,7724009 -) -(1,3962:7246811,8390187:24720180,410518,101187 -h1,3962:7246811,8390187:0,0,0 -k1,3962:7246811,8390187:0 -h1,3962:12937433,8390187:0,0,0 -k1,3962:31966991,8390187:19029558 -g1,3962:31966991,8390187 -) -(1,3966:7246811,9121901:24720180,404226,76021 -(1,3964:7246811,9121901:0,0,0 -g1,3964:7246811,9121901 -g1,3964:7246811,9121901 -g1,3964:6919131,9121901 -(1,3964:6919131,9121901:0,0,0 -) -g1,3964:7246811,9121901 -) -g1,3966:8195248,9121901 -g1,3966:9459831,9121901 -g1,3966:10724414,9121901 -g1,3966:11988997,9121901 -h1,3966:12937434,9121901:0,0,0 -k1,3966:31966990,9121901:19029556 -g1,3966:31966990,9121901 -) -(1,3968:7246811,10443439:24720180,410518,101187 -(1,3967:7246811,10443439:0,0,0 -g1,3967:7246811,10443439 -g1,3967:7246811,10443439 -g1,3967:6919131,10443439 -(1,3967:6919131,10443439:0,0,0 -) -g1,3967:7246811,10443439 -) -g1,3968:10724414,10443439 -g1,3968:11672852,10443439 -g1,3968:17679620,10443439 -g1,3968:19892640,10443439 -g1,3968:20524932,10443439 -g1,3968:28112430,10443439 -g1,3968:29060868,10443439 -h1,3968:30325451,10443439:0,0,0 -k1,3968:31966991,10443439:1641540 -g1,3968:31966991,10443439 -) -(1,3969:7246811,11109617:24720180,410518,101187 -h1,3969:7246811,11109617:0,0,0 -k1,3969:7246811,11109617:0 -h1,3969:12937433,11109617:0,0,0 -k1,3969:31966991,11109617:19029558 -g1,3969:31966991,11109617 -) -(1,3973:7246811,11841331:24720180,404226,76021 -(1,3971:7246811,11841331:0,0,0 -g1,3971:7246811,11841331 -g1,3971:7246811,11841331 -g1,3971:6919131,11841331 -(1,3971:6919131,11841331:0,0,0 -) -g1,3971:7246811,11841331 -) -g1,3973:8195248,11841331 -g1,3973:9459831,11841331 -g1,3973:10724414,11841331 -g1,3973:11988997,11841331 -h1,3973:12937434,11841331:0,0,0 -k1,3973:31966990,11841331:19029556 -g1,3973:31966990,11841331 -) -] -) -g1,3974:31966991,11917352 -g1,3974:7246811,11917352 -g1,3974:7246811,11917352 -g1,3974:31966991,11917352 -g1,3974:31966991,11917352 -) -h1,3974:7246811,12113960:0,0,0 -(1,3978:7246811,13479736:24720180,513147,134348 -h1,3977:7246811,13479736:983040,0,0 -k1,3977:11932417,13479736:180661 -k1,3977:13132163,13479736:180661 -k1,3977:15105234,13479736:180661 -k1,3977:15945187,13479736:180661 -k1,3977:16481708,13479736:180661 -k1,3977:18556358,13479736:180660 -k1,3977:20591688,13479736:180661 -k1,3977:21581719,13479736:180661 -k1,3977:24752788,13479736:180661 -k1,3977:28117188,13479736:180661 -k1,3977:29865470,13479736:180661 -k1,3977:31435494,13479736:180661 -k1,3977:31966991,13479736:0 -) -(1,3978:7246811,14321224:24720180,513147,134348 -k1,3977:8833972,14321224:233187 -k1,3977:11218052,14321224:233188 -k1,3977:14558956,14321224:233187 -k1,3977:16490181,14321224:233187 -k1,3977:19421486,14321224:233188 -k1,3977:22444541,14321224:233187 -(1,3977:22444541,14321224:0,452978,115847 -r1,4042:25616501,14321224:3171960,568825,115847 -k1,3977:22444541,14321224:-3171960 -) -(1,3977:22444541,14321224:3171960,452978,115847 -k1,3977:22444541,14321224:3277 -h1,3977:25613224,14321224:0,411205,112570 -) -k1,3977:25849689,14321224:233188 -k1,3977:27187158,14321224:233187 -k1,3977:28168111,14321224:233187 -k1,3977:29914525,14321224:233188 -k1,3977:30763750,14321224:233187 -k1,3977:31966991,14321224:0 -) -(1,3978:7246811,15162712:24720180,513147,134348 -k1,3977:9030163,15162712:242601 -k1,3977:9742658,15162712:242602 -k1,3977:12581140,15162712:242601 -k1,3977:13475169,15162712:242601 -k1,3977:15453163,15162712:242601 -(1,3977:15453163,15162712:0,452978,115847 -r1,4042:17569988,15162712:2116825,568825,115847 -k1,3977:15453163,15162712:-2116825 -) -(1,3977:15453163,15162712:2116825,452978,115847 -k1,3977:15453163,15162712:3277 -h1,3977:17566711,15162712:0,411205,112570 -) -k1,3977:17812590,15162712:242602 -k1,3977:19002842,15162712:242601 -k1,3977:22927256,15162712:242601 -k1,3977:24242026,15162712:242601 -k1,3977:26186598,15162712:242602 -k1,3977:28941194,15162712:242601 -k1,3977:31966991,15162712:0 -) -(1,3978:7246811,16004200:24720180,505283,126483 -g1,3977:8550322,16004200 -g1,3977:9497317,16004200 -g1,3977:12457578,16004200 -g1,3977:13272845,16004200 -g1,3977:14260472,16004200 -k1,3978:31966991,16004200:15870200 -g1,3978:31966991,16004200 -) -v1,3980:7246811,17194666:0,393216,0 -(1,4003:7246811,24987527:24720180,8186077,196608 -g1,4003:7246811,24987527 -g1,4003:7246811,24987527 -g1,4003:7050203,24987527 -(1,4003:7050203,24987527:0,8186077,196608 -r1,4042:32163599,24987527:25113396,8382685,196608 -k1,4003:7050203,24987527:-25113396 -) -(1,4003:7050203,24987527:25113396,8186077,196608 -[1,4003:7246811,24987527:24720180,7989469,0 -(1,3982:7246811,17408576:24720180,410518,107478 -(1,3981:7246811,17408576:0,0,0 -g1,3981:7246811,17408576 -g1,3981:7246811,17408576 -g1,3981:6919131,17408576 -(1,3981:6919131,17408576:0,0,0 -) -g1,3981:7246811,17408576 -) -g1,3982:10724414,17408576 -g1,3982:11672852,17408576 -g1,3982:13569727,17408576 -g1,3982:14518165,17408576 -g1,3982:16731185,17408576 -g1,3982:17363477,17408576 -g1,3982:19576498,17408576 -h1,3982:21157226,17408576:0,0,0 -k1,3982:31966991,17408576:10809765 -g1,3982:31966991,17408576 -) -(1,3983:7246811,18074754:24720180,404226,101187 -h1,3983:7246811,18074754:0,0,0 -g1,3983:10724414,18074754 -g1,3983:11672852,18074754 -g1,3983:13885873,18074754 -g1,3983:15466602,18074754 -g1,3983:17047331,18074754 -g1,3983:18628060,18074754 -g1,3983:20208789,18074754 -g1,3983:21789518,18074754 -g1,3983:23370247,18074754 -g1,3983:24950976,18074754 -g1,3983:26531705,18074754 -h1,3983:27796288,18074754:0,0,0 -k1,3983:31966991,18074754:4170703 -g1,3983:31966991,18074754 -) -(1,3984:7246811,18740932:24720180,410518,101187 -h1,3984:7246811,18740932:0,0,0 -k1,3984:7246811,18740932:0 -h1,3984:12937433,18740932:0,0,0 -k1,3984:31966991,18740932:19029558 -g1,3984:31966991,18740932 -) -(1,3988:7246811,19472646:24720180,404226,76021 -(1,3986:7246811,19472646:0,0,0 -g1,3986:7246811,19472646 -g1,3986:7246811,19472646 -g1,3986:6919131,19472646 -(1,3986:6919131,19472646:0,0,0 -) -g1,3986:7246811,19472646 -) -g1,3988:8195248,19472646 -g1,3988:9459831,19472646 -g1,3988:10724414,19472646 -h1,3988:11672851,19472646:0,0,0 -k1,3988:31966991,19472646:20294140 -g1,3988:31966991,19472646 -) -(1,3990:7246811,20794184:24720180,410518,101187 -(1,3989:7246811,20794184:0,0,0 -g1,3989:7246811,20794184 -g1,3989:7246811,20794184 -g1,3989:6919131,20794184 -(1,3989:6919131,20794184:0,0,0 -) -g1,3989:7246811,20794184 -) -g1,3990:11672851,20794184 -g1,3990:12621289,20794184 -g1,3990:18944203,20794184 -h1,3990:22421805,20794184:0,0,0 -k1,3990:31966991,20794184:9545186 -g1,3990:31966991,20794184 -) -(1,3991:7246811,21460362:24720180,410518,101187 -h1,3991:7246811,21460362:0,0,0 -k1,3991:7246811,21460362:0 -h1,3991:13885870,21460362:0,0,0 -k1,3991:31966990,21460362:18081120 -g1,3991:31966990,21460362 -) -(1,3995:7246811,22192076:24720180,404226,76021 -(1,3993:7246811,22192076:0,0,0 -g1,3993:7246811,22192076 -g1,3993:7246811,22192076 -g1,3993:6919131,22192076 -(1,3993:6919131,22192076:0,0,0 -) -g1,3993:7246811,22192076 -) -g1,3995:8195248,22192076 -g1,3995:9459831,22192076 -g1,3995:10724414,22192076 -h1,3995:11672851,22192076:0,0,0 -k1,3995:31966991,22192076:20294140 -g1,3995:31966991,22192076 -) -(1,3997:7246811,23513614:24720180,410518,101187 -(1,3996:7246811,23513614:0,0,0 -g1,3996:7246811,23513614 -g1,3996:7246811,23513614 -g1,3996:6919131,23513614 -(1,3996:6919131,23513614:0,0,0 -) -g1,3996:7246811,23513614 -) -g1,3997:11672851,23513614 -g1,3997:12621289,23513614 -g1,3997:18944203,23513614 -g1,3997:23054097,23513614 -g1,3997:23686389,23513614 -g1,3997:24318681,23513614 -g1,3997:26531701,23513614 -k1,3997:26531701,23513614:18350 -h1,3997:28130779,23513614:0,0,0 -k1,3997:31966991,23513614:3836212 -g1,3997:31966991,23513614 -) -(1,3998:7246811,24179792:24720180,410518,101187 -h1,3998:7246811,24179792:0,0,0 -k1,3998:7246811,24179792:0 -h1,3998:13885870,24179792:0,0,0 -k1,3998:31966990,24179792:18081120 -g1,3998:31966990,24179792 -) -(1,4002:7246811,24911506:24720180,404226,76021 -(1,4000:7246811,24911506:0,0,0 -g1,4000:7246811,24911506 -g1,4000:7246811,24911506 -g1,4000:6919131,24911506 -(1,4000:6919131,24911506:0,0,0 -) -g1,4000:7246811,24911506 -) -g1,4002:8195248,24911506 -g1,4002:9459831,24911506 -g1,4002:10724414,24911506 -h1,4002:11672851,24911506:0,0,0 -k1,4002:31966991,24911506:20294140 -g1,4002:31966991,24911506 -) -] -) -g1,4003:31966991,24987527 -g1,4003:7246811,24987527 -g1,4003:7246811,24987527 -g1,4003:31966991,24987527 -g1,4003:31966991,24987527 -) -h1,4003:7246811,25184135:0,0,0 -(1,4007:7246811,26549911:24720180,505283,134348 -h1,4006:7246811,26549911:983040,0,0 -k1,4006:9103565,26549911:245879 -k1,4006:10368529,26549911:245879 -k1,4006:11762599,26549911:245879 -k1,4006:15368509,26549911:245879 -k1,4006:17349781,26549911:245879 -k1,4006:18614746,26549911:245880 -k1,4006:20695633,26549911:245879 -k1,4006:23701233,26549911:245879 -k1,4006:26867396,26549911:245879 -k1,4006:28998746,26549911:245879 -k1,4006:29776122,26549911:245879 -k1,4007:31966991,26549911:0 -) -(1,4007:7246811,27391399:24720180,513147,134348 -k1,4006:8967974,27391399:188276 -k1,4006:11168204,27391399:188275 -k1,4006:12101624,27391399:188276 -k1,4006:12941327,27391399:188275 -k1,4006:14930532,27391399:188276 -k1,4006:17425019,27391399:188275 -k1,4006:18632380,27391399:188276 -k1,4006:21550231,27391399:188276 -k1,4006:22397798,27391399:188275 -k1,4006:23605159,27391399:188276 -k1,4006:25759514,27391399:188275 -k1,4006:27637308,27391399:188276 -k1,4006:29024237,27391399:188275 -k1,4006:30947906,27391399:188276 -k1,4006:31966991,27391399:0 -) -(1,4007:7246811,28232887:24720180,513147,115847 -g1,4006:9711620,28232887 -g1,4006:12780015,28232887 -(1,4006:12780015,28232887:0,452978,115847 -r1,4042:14896840,28232887:2116825,568825,115847 -k1,4006:12780015,28232887:-2116825 -) -(1,4006:12780015,28232887:2116825,452978,115847 -k1,4006:12780015,28232887:3277 -h1,4006:14893563,28232887:0,411205,112570 -) -g1,4006:15269739,28232887 -g1,4006:16120396,28232887 -g1,4006:19887405,28232887 -g1,4006:21105719,28232887 -k1,4007:31966991,28232887:9298238 -g1,4007:31966991,28232887 -) -] -) -] -r1,4042:32583029,28938558:26214,23077677,0 -) -] -) -) -g1,4008:32583029,28348734 -) -h1,4008:6630773,28964772:0,0,0 -v1,4010:6630773,30120832:0,393216,0 -(1,4042:6630773,45116945:25952256,15389329,589824 -g1,4042:6630773,45116945 -(1,4042:6630773,45116945:25952256,15389329,589824 -(1,4042:6630773,45706769:25952256,15979153,0 -[1,4042:6630773,45706769:25952256,15979153,0 -(1,4042:6630773,45706769:25952256,15952939,0 -r1,4042:6656987,45706769:26214,15952939,0 -[1,4042:6656987,45706769:25899828,15952939,0 -(1,4042:6656987,45116945:25899828,14773291,0 -[1,4042:7246811,45116945:24720180,14773291,0 -(1,4012:7246811,31627636:24720180,1283982,196608 -(1,4010:7246811,31627636:0,1283982,196608 -r1,4042:9812056,31627636:2565245,1480590,196608 -k1,4010:7246811,31627636:-2565245 -) -(1,4010:7246811,31627636:2565245,1283982,196608 -) -k1,4010:9962062,31627636:150006 -k1,4010:9962062,31627636:0 -k1,4011:13795863,31627636:153954 -k1,4011:15903445,31627636:153954 -k1,4011:18375392,31627636:150006 -k1,4011:18995292,31627636:150007 -k1,4011:19676795,31627636:150006 -k1,4011:22456761,31627636:150006 -k1,4011:23258196,31627636:150007 -k1,4011:25833034,31627636:150006 -k1,4011:27002125,31627636:150006 -k1,4011:29162777,31627636:150007 -k1,4011:31350953,31627636:150006 -k1,4011:31966991,31627636:0 -) -(1,4012:7246811,32469124:24720180,513147,134348 -k1,4011:7793763,32469124:191092 -k1,4011:9878845,32469124:191092 -k1,4011:11925917,32469124:191092 -k1,4011:16536102,32469124:191092 -k1,4011:19844086,32469124:191092 -k1,4011:20686606,32469124:191092 -k1,4011:21896784,32469124:191093 -k1,4011:23932059,32469124:191092 -k1,4011:24782443,32469124:191092 -k1,4011:25992620,32469124:191092 -k1,4011:27976122,32469124:191092 -k1,4011:28850099,32469124:191092 -k1,4011:31966991,32469124:0 -) -(1,4012:7246811,33310612:24720180,513147,7863 -g1,4011:8097468,33310612 -g1,4011:9315782,33310612 -g1,4011:11254337,33310612 -g1,4011:12112858,33310612 -g1,4011:13331172,33310612 -k1,4012:31966991,33310612:16669739 -g1,4012:31966991,33310612 -) -v1,4014:7246811,34452263:0,393216,0 -(1,4026:7246811,40103075:24720180,6044028,196608 -g1,4026:7246811,40103075 -g1,4026:7246811,40103075 -g1,4026:7050203,40103075 -(1,4026:7050203,40103075:0,6044028,196608 -r1,4042:32163599,40103075:25113396,6240636,196608 -k1,4026:7050203,40103075:-25113396 -) -(1,4026:7050203,40103075:25113396,6044028,196608 -[1,4026:7246811,40103075:24720180,5847420,0 -(1,4016:7246811,34666173:24720180,410518,107478 -(1,4015:7246811,34666173:0,0,0 -g1,4015:7246811,34666173 -g1,4015:7246811,34666173 -g1,4015:6919131,34666173 -(1,4015:6919131,34666173:0,0,0 -) -g1,4015:7246811,34666173 -) -g1,4016:7879103,34666173 -g1,4016:9459832,34666173 -g1,4016:11356706,34666173 -g1,4016:13253580,34666173 -g1,4016:14202017,34666173 -k1,4016:14202017,34666173:0 -h1,4016:16098891,34666173:0,0,0 -k1,4016:31966991,34666173:15868100 -g1,4016:31966991,34666173 -) -(1,4017:7246811,35332351:24720180,410518,107478 -h1,4017:7246811,35332351:0,0,0 -g1,4017:10724414,35332351 -g1,4017:11672852,35332351 -g1,4017:13569727,35332351 -g1,4017:14518165,35332351 -g1,4017:16731185,35332351 -g1,4017:17363477,35332351 -g1,4017:19576498,35332351 -g1,4017:21157227,35332351 -g1,4017:22737956,35332351 -h1,4017:24318684,35332351:0,0,0 -k1,4017:31966991,35332351:7648307 -g1,4017:31966991,35332351 -) -(1,4018:7246811,35998529:24720180,410518,101187 -h1,4018:7246811,35998529:0,0,0 -h1,4018:10408268,35998529:0,0,0 -k1,4018:31966992,35998529:21558724 -g1,4018:31966992,35998529 -) -(1,4019:7246811,36664707:24720180,410518,107478 -h1,4019:7246811,36664707:0,0,0 -k1,4019:7246811,36664707:0 -h1,4019:14202016,36664707:0,0,0 -k1,4019:31966992,36664707:17764976 -g1,4019:31966992,36664707 -) -(1,4020:7246811,37330885:24720180,410518,101187 -h1,4020:7246811,37330885:0,0,0 -g1,4020:7879103,37330885 -g1,4020:10724414,37330885 -g1,4020:12937434,37330885 -g1,4020:15150454,37330885 -k1,4020:15150454,37330885:41419 -h1,4020:19617913,37330885:0,0,0 -k1,4020:31966991,37330885:12349078 -g1,4020:31966991,37330885 -) -(1,4021:7246811,37997063:24720180,410518,101187 -h1,4021:7246811,37997063:0,0,0 -g1,4021:10724414,37997063 -g1,4021:11672852,37997063 -g1,4021:17363476,37997063 -g1,4021:18944205,37997063 -g1,4021:20524934,37997063 -g1,4021:22421809,37997063 -k1,4021:22421809,37997063:0 -h1,4021:25583267,37997063:0,0,0 -k1,4021:31966991,37997063:6383724 -g1,4021:31966991,37997063 -) -(1,4022:7246811,38663241:24720180,410518,101187 -h1,4022:7246811,38663241:0,0,0 -h1,4022:10408268,38663241:0,0,0 -k1,4022:31966992,38663241:21558724 -g1,4022:31966992,38663241 -) -(1,4023:7246811,39329419:24720180,410518,107478 -h1,4023:7246811,39329419:0,0,0 -k1,4023:7246811,39329419:0 -h1,4023:14202016,39329419:0,0,0 -k1,4023:31966992,39329419:17764976 -g1,4023:31966992,39329419 -) -(1,4024:7246811,39995597:24720180,410518,107478 -h1,4024:7246811,39995597:0,0,0 -k1,4024:7246811,39995597:0 -h1,4024:20524930,39995597:0,0,0 -k1,4024:31966991,39995597:11442061 -g1,4024:31966991,39995597 -) -] -) -g1,4026:31966991,40103075 -g1,4026:7246811,40103075 -g1,4026:7246811,40103075 -g1,4026:31966991,40103075 -g1,4026:31966991,40103075 -) -h1,4026:7246811,40299683:0,0,0 -(1,4030:7246811,41616645:24720180,513147,134348 -h1,4029:7246811,41616645:983040,0,0 -k1,4029:9386983,41616645:203583 -k1,4029:10615549,41616645:203583 -k1,4029:12674456,41616645:203583 -k1,4029:14162545,41616645:203583 -k1,4029:15385213,41616645:203583 -k1,4029:17818986,41616645:203583 -k1,4029:20033214,41616645:203583 -k1,4029:20998324,41616645:203582 -k1,4029:23087378,41616645:203583 -k1,4029:25083371,41616645:203583 -k1,4029:25902992,41616645:203583 -k1,4029:26462435,41616645:203583 -k1,4029:28560008,41616645:203583 -k1,4029:29755151,41616645:203583 -k1,4029:31966991,41616645:0 -) -(1,4030:7246811,42458133:24720180,513147,134348 -k1,4029:8411207,42458133:172836 -k1,4029:11889024,42458133:172836 -k1,4029:12713289,42458133:172837 -k1,4029:15135321,42458133:172836 -k1,4029:15991042,42458133:172836 -k1,4029:20071134,42458133:172836 -k1,4029:23866145,42458133:172836 -k1,4029:25058066,42458133:172836 -k1,4029:27208780,42458133:172837 -k1,4029:28040908,42458133:172836 -k1,4029:30231598,42458133:172836 -k1,4030:31966991,42458133:0 -) -(1,4030:7246811,43299621:24720180,505283,134348 -k1,4029:8697777,43299621:183500 -(1,4029:8697777,43299621:0,452978,115847 -r1,4042:10814602,43299621:2116825,568825,115847 -k1,4029:8697777,43299621:-2116825 -) -(1,4029:8697777,43299621:2116825,452978,115847 -k1,4029:8697777,43299621:3277 -h1,4029:10811325,43299621:0,411205,112570 -) -k1,4029:10998101,43299621:183499 -k1,4029:13922972,43299621:183500 -k1,4029:14915842,43299621:183500 -k1,4029:16118426,43299621:183499 -k1,4029:18486241,43299621:183500 -k1,4029:22112346,43299621:183499 -k1,4029:24856338,43299621:183500 -k1,4029:26231283,43299621:183500 -k1,4029:28015171,43299621:183499 -k1,4029:31315563,43299621:183500 -k1,4029:31966991,43299621:0 -) -(1,4030:7246811,44141109:24720180,513147,126483 -k1,4029:8435297,44141109:169401 -k1,4029:10344024,44141109:169401 -k1,4029:11172717,44141109:169401 -k1,4029:12361203,44141109:169401 -k1,4029:14323014,44141109:169401 -k1,4029:16181933,44141109:169401 -(1,4029:16181933,44141109:0,452978,115847 -r1,4042:18650470,44141109:2468537,568825,115847 -k1,4029:16181933,44141109:-2468537 -) -(1,4029:16181933,44141109:2468537,452978,115847 -k1,4029:16181933,44141109:3277 -h1,4029:18647193,44141109:0,411205,112570 -) -k1,4029:18819870,44141109:169400 -k1,4029:21730642,44141109:169401 -k1,4029:22709413,44141109:169401 -k1,4029:23897899,44141109:169401 -k1,4029:26251615,44141109:169401 -k1,4029:28265199,44141109:169401 -k1,4029:29626045,44141109:169401 -k1,4029:31966991,44141109:0 -) -(1,4030:7246811,44982597:24720180,513147,134348 -g1,4029:7801900,44982597 -g1,4029:9979006,44982597 -g1,4029:10837527,44982597 -g1,4029:13285952,44982597 -g1,4029:14769687,44982597 -g1,4029:17393748,44982597 -g1,4029:18612062,44982597 -g1,4029:20821936,44982597 -k1,4030:31966991,44982597:6552292 -g1,4030:31966991,44982597 -) -] -) -] -r1,4042:32583029,45706769:26214,15952939,0 -) -] -) -) -g1,4042:32583029,45116945 -) -] -(1,4042:32583029,45706769:0,0,0 -g1,4042:32583029,45706769 -) -) -] -(1,4042:6630773,47279633:25952256,0,0 -h1,4042:6630773,47279633:25952256,0,0 -) -] -(1,4042:4262630,4025873:0,0,0 -[1,4042:-473656,4025873:0,0,0 -(1,4042:-473656,-710413:0,0,0 -(1,4042:-473656,-710413:0,0,0 -g1,4042:-473656,-710413 -) -g1,4042:-473656,-710413 -) -] -) -] -!23027 -}77 -Input:572:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:573:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:574:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:575:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:576:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:577:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:578:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:579:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!739 -{78 -[1,4123:4262630,47279633:28320399,43253760,0 -(1,4123:4262630,4025873:0,0,0 -[1,4123:-473656,4025873:0,0,0 -(1,4123:-473656,-710413:0,0,0 -(1,4123:-473656,-644877:0,0,0 -k1,4123:-473656,-644877:-65536 -) -(1,4123:-473656,4736287:0,0,0 -k1,4123:-473656,4736287:5209943 -) -g1,4123:-473656,-710413 -) -] -) -[1,4123:6630773,47279633:25952256,43253760,0 -[1,4123:6630773,4812305:25952256,786432,0 -(1,4123:6630773,4812305:25952256,485622,11795 -(1,4123:6630773,4812305:25952256,485622,11795 -g1,4123:3078558,4812305 -[1,4123:3078558,4812305:0,0,0 -(1,4123:3078558,2439708:0,1703936,0 -k1,4123:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,4123:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,4123:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,4123:3078558,4812305:0,0,0 -(1,4123:3078558,2439708:0,1703936,0 -g1,4123:29030814,2439708 -g1,4123:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,4123:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,4123:37855564,2439708:1179648,16384,0 -) -) -k1,4123:3078556,2439708:-34777008 -) -] -[1,4123:3078558,4812305:0,0,0 -(1,4123:3078558,49800853:0,16384,2228224 -k1,4123:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,4123:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,4123:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,4123:3078558,4812305:0,0,0 -(1,4123:3078558,49800853:0,16384,2228224 -g1,4123:29030814,49800853 -g1,4123:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,4123:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,4123:37855564,49800853:1179648,16384,0 -) -) -k1,4123:3078556,49800853:-34777008 -) -] -g1,4123:6630773,4812305 -g1,4123:6630773,4812305 -g1,4123:8203637,4812305 -k1,4123:31786111,4812305:23582474 -) -) -] -[1,4123:6630773,45706769:25952256,40108032,0 -(1,4123:6630773,45706769:25952256,40108032,0 -(1,4123:6630773,45706769:0,0,0 -g1,4123:6630773,45706769 -) -[1,4123:6630773,45706769:25952256,40108032,0 -v1,4042:6630773,6254097:0,393216,0 -(1,4042:6630773,10186532:25952256,4325651,616038 -g1,4042:6630773,10186532 -(1,4042:6630773,10186532:25952256,4325651,616038 -(1,4042:6630773,10802570:25952256,4941689,0 -[1,4042:6630773,10802570:25952256,4941689,0 -(1,4042:6630773,10776356:25952256,4915475,0 -r1,4123:6656987,10776356:26214,4915475,0 -[1,4042:6656987,10776356:25899828,4915475,0 -(1,4042:6656987,10186532:25899828,3735827,0 -[1,4042:7246811,10186532:24720180,3735827,0 -v1,4032:7246811,6843921:0,393216,0 -(1,4038:7246811,8497665:24720180,2046960,196608 -g1,4038:7246811,8497665 -g1,4038:7246811,8497665 -g1,4038:7050203,8497665 -(1,4038:7050203,8497665:0,2046960,196608 -r1,4123:32163599,8497665:25113396,2243568,196608 -k1,4038:7050203,8497665:-25113396 -) -(1,4038:7050203,8497665:25113396,2046960,196608 -[1,4038:7246811,8497665:24720180,1850352,0 -(1,4034:7246811,7057831:24720180,410518,101187 -(1,4033:7246811,7057831:0,0,0 -g1,4033:7246811,7057831 -g1,4033:7246811,7057831 -g1,4033:6919131,7057831 -(1,4033:6919131,7057831:0,0,0 -) -g1,4033:7246811,7057831 -) -k1,4034:7246811,7057831:0 -h1,4034:12305142,7057831:0,0,0 -k1,4034:31966990,7057831:19661848 -g1,4034:31966990,7057831 -) -(1,4035:7246811,7724009:24720180,410518,101187 -h1,4035:7246811,7724009:0,0,0 -k1,4035:7246811,7724009:0 -h1,4035:16415035,7724009:0,0,0 -k1,4035:31966991,7724009:15551956 -g1,4035:31966991,7724009 -) -(1,4036:7246811,8390187:24720180,410518,107478 -h1,4036:7246811,8390187:0,0,0 -k1,4036:7246811,8390187:0 -h1,4036:20208784,8390187:0,0,0 -k1,4036:31966991,8390187:11758207 -g1,4036:31966991,8390187 -) -] -) -g1,4038:31966991,8497665 -g1,4038:7246811,8497665 -g1,4038:7246811,8497665 -g1,4038:31966991,8497665 -g1,4038:31966991,8497665 -) -h1,4038:7246811,8694273:0,0,0 -(1,4042:7246811,10060049:24720180,513147,126483 -h1,4041:7246811,10060049:983040,0,0 -g1,4041:9703755,10060049 -g1,4041:10922069,10060049 -g1,4041:14113017,10060049 -g1,4041:14928284,10060049 -g1,4041:16146598,10060049 -g1,4041:18316495,10060049 -g1,4041:20371048,10060049 -g1,4041:21761722,10060049 -g1,4041:23557408,10060049 -g1,4041:24822908,10060049 -g1,4041:26319095,10060049 -g1,4041:27537409,10060049 -g1,4041:29909812,10060049 -k1,4042:31966991,10060049:140251 -g1,4042:31966991,10060049 -) -] -) -] -r1,4123:32583029,10776356:26214,4915475,0 -) -] -) -) -g1,4042:32583029,10186532 -) -h1,4042:6630773,10802570:0,0,0 -(1,4047:6630773,14119209:25952256,32768,229376 -(1,4047:6630773,14119209:0,32768,229376 -(1,4047:6630773,14119209:5505024,32768,229376 -r1,4123:12135797,14119209:5505024,262144,229376 -) -k1,4047:6630773,14119209:-5505024 -) -(1,4047:6630773,14119209:25952256,32768,0 -r1,4123:32583029,14119209:25952256,32768,0 -) -) -(1,4047:6630773,15723537:25952256,606339,14155 -(1,4047:6630773,15723537:2464678,582746,14155 -g1,4047:6630773,15723537 -g1,4047:9095451,15723537 -) -k1,4047:32583029,15723537:21642608 -g1,4047:32583029,15723537 -) -(1,4050:6630773,16958241:25952256,513147,134348 -k1,4049:8367665,16958241:135847 -k1,4049:10095381,16958241:135846 -k1,4049:13417588,16958241:135847 -k1,4049:14204863,16958241:135847 -k1,4049:16042680,16958241:135847 -k1,4049:19595573,16958241:135846 -k1,4049:20436587,16958241:135847 -k1,4049:21188472,16958241:135847 -k1,4049:21912831,16958241:135846 -k1,4049:23333184,16958241:135847 -k1,4049:24849219,16958241:135847 -k1,4049:26089348,16958241:135847 -k1,4049:26972960,16958241:135846 -k1,4049:31955194,16958241:135847 -k1,4050:32583029,16958241:0 -) -(1,4050:6630773,17799729:25952256,513147,134348 -k1,4049:7399557,17799729:180271 -k1,4049:8598912,17799729:180270 -k1,4049:11732891,17799729:180271 -k1,4049:12572454,17799729:180271 -k1,4049:13108585,17799729:180271 -k1,4049:14282381,17799729:180270 -k1,4049:15566934,17799729:180271 -k1,4049:16494971,17799729:180271 -k1,4049:20174208,17799729:180270 -k1,4049:21040641,17799729:180271 -k1,4049:24196247,17799729:180271 -k1,4049:24732378,17799729:180271 -k1,4049:28026263,17799729:180270 -k1,4049:29397979,17799729:180271 -k1,4049:32583029,17799729:0 -) -(1,4050:6630773,18641217:25952256,513147,134348 -k1,4049:9475764,18641217:286465 -k1,4049:12943347,18641217:286465 -k1,4049:15830281,18641217:286465 -k1,4049:17135831,18641217:286465 -k1,4049:19075768,18641217:286464 -k1,4049:20048395,18641217:286465 -k1,4049:22816708,18641217:286465 -k1,4049:26037875,18641217:286465 -k1,4049:29629321,18641217:286465 -k1,4049:32583029,18641217:0 -) -(1,4050:6630773,19482705:25952256,513147,134348 -k1,4049:7525843,19482705:235778 -k1,4049:8117481,19482705:235778 -k1,4049:9346786,19482705:235779 -k1,4049:10574124,19482705:235778 -k1,4049:12504663,19482705:235778 -k1,4049:14982428,19482705:235778 -k1,4049:16409652,19482705:235779 -k1,4049:19500178,19482705:235778 -k1,4049:22667381,19482705:235778 -k1,4049:25461685,19482705:235778 -k1,4049:27394191,19482705:235779 -k1,4049:29871956,19482705:235778 -k1,4049:31591469,19482705:235778 -k1,4049:32583029,19482705:0 -) -(1,4050:6630773,20324193:25952256,513147,134348 -g1,4049:9180123,20324193 -g1,4049:11114745,20324193 -g1,4049:14009470,20324193 -(1,4049:14009470,20324193:0,452978,115847 -r1,4123:16126295,20324193:2116825,568825,115847 -k1,4049:14009470,20324193:-2116825 -) -(1,4049:14009470,20324193:2116825,452978,115847 -k1,4049:14009470,20324193:3277 -h1,4049:16123018,20324193:0,411205,112570 -) -k1,4050:32583029,20324193:16283064 -g1,4050:32583029,20324193 -) -v1,4052:6630773,21499443:0,393216,0 -(1,4067:6630773,27844220:25952256,6737993,196608 -g1,4067:6630773,27844220 -g1,4067:6630773,27844220 -g1,4067:6434165,27844220 -(1,4067:6434165,27844220:0,6737993,196608 -r1,4123:32779637,27844220:26345472,6934601,196608 -k1,4067:6434165,27844220:-26345472 -) -(1,4067:6434165,27844220:26345472,6737993,196608 -[1,4067:6630773,27844220:25952256,6541385,0 -(1,4054:6630773,21707061:25952256,404226,101187 -(1,4053:6630773,21707061:0,0,0 -g1,4053:6630773,21707061 -g1,4053:6630773,21707061 -g1,4053:6303093,21707061 -(1,4053:6303093,21707061:0,0,0 -) -g1,4053:6630773,21707061 -) -g1,4054:8843793,21707061 -g1,4054:9792231,21707061 -g1,4054:12005252,21707061 -g1,4054:12637544,21707061 -g1,4054:14218274,21707061 -g1,4054:14850566,21707061 -g1,4054:15482858,21707061 -g1,4054:17063587,21707061 -g1,4054:17695879,21707061 -g1,4054:18328171,21707061 -g1,4054:20857338,21707061 -h1,4054:23070357,21707061:0,0,0 -k1,4054:32583029,21707061:9512672 -g1,4054:32583029,21707061 -) -(1,4055:6630773,22373239:25952256,404226,6290 -h1,4055:6630773,22373239:0,0,0 -h1,4055:8527647,22373239:0,0,0 -k1,4055:32583029,22373239:24055382 -g1,4055:32583029,22373239 -) -(1,4066:6630773,23104953:25952256,410518,31456 -(1,4057:6630773,23104953:0,0,0 -g1,4057:6630773,23104953 -g1,4057:6630773,23104953 -g1,4057:6303093,23104953 -(1,4057:6303093,23104953:0,0,0 -) -g1,4057:6630773,23104953 -) -g1,4066:7579210,23104953 -h1,4066:8211501,23104953:0,0,0 -k1,4066:32583029,23104953:24371528 -g1,4066:32583029,23104953 -) -(1,4066:6630773,23771131:25952256,404226,76021 -h1,4066:6630773,23771131:0,0,0 -g1,4066:7579210,23771131 -g1,4066:8843793,23771131 -g1,4066:9476085,23771131 -g1,4066:10108377,23771131 -g1,4066:10740669,23771131 -g1,4066:11372961,23771131 -g1,4066:12005253,23771131 -h1,4066:12321399,23771131:0,0,0 -k1,4066:32583029,23771131:20261630 -g1,4066:32583029,23771131 -) -(1,4066:6630773,24437309:25952256,379060,0 -h1,4066:6630773,24437309:0,0,0 -h1,4066:7263064,24437309:0,0,0 -k1,4066:32583028,24437309:25319964 -g1,4066:32583028,24437309 -) -(1,4066:6630773,25103487:25952256,410518,101187 -h1,4066:6630773,25103487:0,0,0 -g1,4066:7579210,25103487 -h1,4066:8211501,25103487:0,0,0 -k1,4066:32583029,25103487:24371528 -g1,4066:32583029,25103487 -) -(1,4066:6630773,25769665:25952256,404226,76021 -h1,4066:6630773,25769665:0,0,0 -g1,4066:7579210,25769665 -g1,4066:8843793,25769665 -h1,4066:9792230,25769665:0,0,0 -k1,4066:32583030,25769665:22790800 -g1,4066:32583030,25769665 -) -(1,4066:6630773,26435843:25952256,379060,0 -h1,4066:6630773,26435843:0,0,0 -h1,4066:7263064,26435843:0,0,0 -k1,4066:32583028,26435843:25319964 -g1,4066:32583028,26435843 -) -(1,4066:6630773,27102021:25952256,410518,31456 -h1,4066:6630773,27102021:0,0,0 -g1,4066:7579210,27102021 -h1,4066:8211501,27102021:0,0,0 -k1,4066:32583029,27102021:24371528 -g1,4066:32583029,27102021 -) -(1,4066:6630773,27768199:25952256,404226,76021 -h1,4066:6630773,27768199:0,0,0 -g1,4066:7579210,27768199 -g1,4066:8843793,27768199 -g1,4066:9159939,27768199 -g1,4066:10740668,27768199 -h1,4066:12321396,27768199:0,0,0 -k1,4066:32583028,27768199:20261632 -g1,4066:32583028,27768199 -) -] -) -g1,4067:32583029,27844220 -g1,4067:6630773,27844220 -g1,4067:6630773,27844220 -g1,4067:32583029,27844220 -g1,4067:32583029,27844220 -) -h1,4067:6630773,28040828:0,0,0 -(1,4070:6630773,30641159:25952256,555811,147783 -(1,4070:6630773,30641159:2899444,534184,12975 -g1,4070:6630773,30641159 -g1,4070:9530217,30641159 -) -g1,4070:12708648,30641159 -g1,4070:16612300,30641159 -g1,4070:18179528,30641159 -k1,4070:32583029,30641159:10611588 -g1,4070:32583029,30641159 -) -(1,4072:6630773,31875863:25952256,513147,134348 -k1,4071:8588895,31875863:166368 -k1,4071:8588895,31875863:0 -k1,4071:8755263,31875863:166368 -k1,4071:11104634,31875863:166367 -k1,4071:13412063,31875863:166368 -k1,4071:16283757,31875863:166368 -k1,4071:17397776,31875863:166368 -k1,4071:20303548,31875863:166367 -k1,4071:20825776,31875863:166368 -k1,4071:21985670,31875863:166368 -k1,4071:24686315,31875863:166368 -k1,4071:25871768,31875863:166368 -k1,4071:28577000,31875863:166367 -k1,4071:30781538,31875863:166368 -k1,4071:31563944,31875863:166368 -k1,4071:32583029,31875863:0 -) -(1,4072:6630773,32717351:25952256,505283,134348 -k1,4071:8027634,32717351:229665 -k1,4071:8873337,32717351:229665 -k1,4071:9891400,32717351:229665 -k1,4071:12556383,32717351:229665 -k1,4071:14742298,32717351:229665 -k1,4071:15599798,32717351:229665 -k1,4071:16848549,32717351:229666 -k1,4071:19739631,32717351:229665 -k1,4071:21998291,32717351:229665 -(1,4071:21998291,32717351:0,452978,115847 -r1,4123:26577099,32717351:4578808,568825,115847 -k1,4071:21998291,32717351:-4578808 -) -(1,4071:21998291,32717351:4578808,452978,115847 -k1,4071:21998291,32717351:3277 -h1,4071:26573822,32717351:0,411205,112570 -) -k1,4071:26806764,32717351:229665 -k1,4071:29377375,32717351:229665 -k1,4071:29962900,32717351:229665 -k1,4071:32583029,32717351:0 -) -(1,4072:6630773,33558839:25952256,505283,134348 -k1,4071:9047559,33558839:265239 -k1,4071:11002315,33558839:265238 -(1,4071:11002315,33558839:0,452978,115847 -r1,4123:14174275,33558839:3171960,568825,115847 -k1,4071:11002315,33558839:-3171960 -) -(1,4071:11002315,33558839:3171960,452978,115847 -k1,4071:11002315,33558839:3277 -h1,4071:14170998,33558839:0,411205,112570 -) -k1,4071:14439514,33558839:265239 -k1,4071:17045699,33558839:265239 -k1,4071:17666798,33558839:265239 -k1,4071:18925562,33558839:265238 -k1,4071:22552798,33558839:265239 -k1,4071:23837122,33558839:265239 -k1,4071:26722490,33558839:265239 -k1,4071:28965605,33558839:265238 -(1,4071:28965605,33558839:0,414482,115847 -r1,4123:29323871,33558839:358266,530329,115847 -k1,4071:28965605,33558839:-358266 -) -(1,4071:28965605,33558839:358266,414482,115847 -k1,4071:28965605,33558839:3277 -h1,4071:29320594,33558839:0,411205,112570 -) -k1,4071:29762780,33558839:265239 -(1,4071:29762780,33558839:0,459977,115847 -r1,4123:32583029,33558839:2820249,575824,115847 -k1,4071:29762780,33558839:-2820249 -) -(1,4071:29762780,33558839:2820249,459977,115847 -k1,4071:29762780,33558839:3277 -h1,4071:32579752,33558839:0,411205,112570 -) -k1,4071:32583029,33558839:0 -) -(1,4072:6630773,34400327:25952256,505283,115847 -k1,4071:9113796,34400327:142077 -k1,4071:10274957,34400327:142076 -k1,4071:12070507,34400327:142077 -k1,4071:13892927,34400327:142077 -k1,4071:14721165,34400327:142076 -(1,4071:14721165,34400327:0,452978,115847 -r1,4123:19299973,34400327:4578808,568825,115847 -k1,4071:14721165,34400327:-4578808 -) -(1,4071:14721165,34400327:4578808,452978,115847 -k1,4071:14721165,34400327:3277 -h1,4071:19296696,34400327:0,411205,112570 -) -k1,4071:19615720,34400327:142077 -k1,4071:20113657,34400327:142077 -k1,4071:22875863,34400327:142077 -k1,4071:25169486,34400327:142076 -(1,4071:25169486,34400327:0,452978,115847 -r1,4123:30100006,34400327:4930520,568825,115847 -k1,4071:25169486,34400327:-4930520 -) -(1,4071:25169486,34400327:4930520,452978,115847 -k1,4071:25169486,34400327:3277 -h1,4071:30096729,34400327:0,411205,112570 -) -k1,4071:30242083,34400327:142077 -k1,4071:32583029,34400327:0 -) -(1,4072:6630773,35241815:25952256,513147,134348 -g1,4071:7185862,35241815 -g1,4071:8378617,35241815 -g1,4071:9237138,35241815 -g1,4071:11449633,35241815 -g1,4071:12994972,35241815 -g1,4071:14883719,35241815 -(1,4071:14883719,35241815:0,452978,115847 -r1,4123:20517662,35241815:5633943,568825,115847 -k1,4071:14883719,35241815:-5633943 -) -(1,4071:14883719,35241815:5633943,452978,115847 -k1,4071:14883719,35241815:3277 -h1,4071:20514385,35241815:0,411205,112570 -) -g1,4071:20716891,35241815 -g1,4071:21447617,35241815 -g1,4071:22417549,35241815 -k1,4072:32583029,35241815:8384867 -g1,4072:32583029,35241815 -) -v1,4074:6630773,36417065:0,393216,0 -(1,4123:6630773,45510161:25952256,9486312,196608 -g1,4123:6630773,45510161 -g1,4123:6630773,45510161 -g1,4123:6434165,45510161 -(1,4123:6434165,45510161:0,9486312,196608 -r1,4123:32779637,45510161:26345472,9682920,196608 -k1,4123:6434165,45510161:-26345472 -) -(1,4123:6434165,45510161:26345472,9486312,196608 -[1,4123:6630773,45510161:25952256,9289704,0 -(1,4076:6630773,36630975:25952256,410518,31456 -(1,4075:6630773,36630975:0,0,0 -g1,4075:6630773,36630975 -g1,4075:6630773,36630975 -g1,4075:6303093,36630975 -(1,4075:6303093,36630975:0,0,0 -) -g1,4075:6630773,36630975 -) -h1,4076:9159939,36630975:0,0,0 -k1,4076:32583029,36630975:23423090 -g1,4076:32583029,36630975 -) -(1,4080:6630773,37362689:25952256,404226,76021 -(1,4078:6630773,37362689:0,0,0 -g1,4078:6630773,37362689 -g1,4078:6630773,37362689 -g1,4078:6303093,37362689 -(1,4078:6303093,37362689:0,0,0 -) -g1,4078:6630773,37362689 -) -g1,4080:7579210,37362689 -g1,4080:8843793,37362689 -g1,4080:9476085,37362689 -g1,4080:10108377,37362689 -g1,4080:10740669,37362689 -g1,4080:11372961,37362689 -g1,4080:12005253,37362689 -h1,4080:12321399,37362689:0,0,0 -k1,4080:32583029,37362689:20261630 -g1,4080:32583029,37362689 -) -(1,4082:6630773,38684227:25952256,404226,76021 -(1,4081:6630773,38684227:0,0,0 -g1,4081:6630773,38684227 -g1,4081:6630773,38684227 -g1,4081:6303093,38684227 -(1,4081:6303093,38684227:0,0,0 -) -g1,4081:6630773,38684227 -) -h1,4082:10740666,38684227:0,0,0 -k1,4082:32583030,38684227:21842364 -g1,4082:32583030,38684227 -) -(1,4086:6630773,39415941:25952256,404226,76021 -(1,4084:6630773,39415941:0,0,0 -g1,4084:6630773,39415941 -g1,4084:6630773,39415941 -g1,4084:6303093,39415941 -(1,4084:6303093,39415941:0,0,0 -) -g1,4084:6630773,39415941 -) -g1,4086:7579210,39415941 -g1,4086:8843793,39415941 -g1,4086:9476085,39415941 -g1,4086:10108377,39415941 -g1,4086:10740669,39415941 -g1,4086:11372961,39415941 -g1,4086:12005253,39415941 -h1,4086:12321399,39415941:0,0,0 -k1,4086:32583029,39415941:20261630 -g1,4086:32583029,39415941 -) -(1,4088:6630773,40737479:25952256,404226,76021 -(1,4087:6630773,40737479:0,0,0 -g1,4087:6630773,40737479 -g1,4087:6630773,40737479 -g1,4087:6303093,40737479 -(1,4087:6303093,40737479:0,0,0 -) -g1,4087:6630773,40737479 -) -h1,4088:10108375,40737479:0,0,0 -k1,4088:32583029,40737479:22474654 -g1,4088:32583029,40737479 -) -(1,4092:6630773,41469193:25952256,404226,76021 -(1,4090:6630773,41469193:0,0,0 -g1,4090:6630773,41469193 -g1,4090:6630773,41469193 -g1,4090:6303093,41469193 -(1,4090:6303093,41469193:0,0,0 -) -g1,4090:6630773,41469193 -) -g1,4092:7579210,41469193 -g1,4092:8843793,41469193 -g1,4092:9476085,41469193 -g1,4092:10108377,41469193 -g1,4092:10740669,41469193 -g1,4092:11372961,41469193 -g1,4092:12005253,41469193 -h1,4092:12321399,41469193:0,0,0 -k1,4092:32583029,41469193:20261630 -g1,4092:32583029,41469193 -) -(1,4094:6630773,42790731:25952256,404226,76021 -(1,4093:6630773,42790731:0,0,0 -g1,4093:6630773,42790731 -g1,4093:6630773,42790731 -g1,4093:6303093,42790731 -(1,4093:6303093,42790731:0,0,0 -) -g1,4093:6630773,42790731 -) -h1,4094:10108376,42790731:0,0,0 -k1,4094:32583028,42790731:22474652 -g1,4094:32583028,42790731 -) -(1,4099:6630773,43522445:25952256,410518,31456 -(1,4096:6630773,43522445:0,0,0 -g1,4096:6630773,43522445 -g1,4096:6630773,43522445 -g1,4096:6303093,43522445 -(1,4096:6303093,43522445:0,0,0 -) -g1,4096:6630773,43522445 -) -g1,4099:7579210,43522445 -h1,4099:8211501,43522445:0,0,0 -k1,4099:32583029,43522445:24371528 -g1,4099:32583029,43522445 -) -(1,4099:6630773,44188623:25952256,404226,76021 -h1,4099:6630773,44188623:0,0,0 -g1,4099:7579210,44188623 -g1,4099:8843793,44188623 -g1,4099:9476085,44188623 -g1,4099:10108377,44188623 -g1,4099:10740669,44188623 -g1,4099:11372961,44188623 -g1,4099:12005253,44188623 -h1,4099:12321399,44188623:0,0,0 -k1,4099:32583029,44188623:20261630 -g1,4099:32583029,44188623 -) -(1,4101:6630773,45510161:25952256,404226,76021 -(1,4100:6630773,45510161:0,0,0 -g1,4100:6630773,45510161 -g1,4100:6630773,45510161 -g1,4100:6303093,45510161 -(1,4100:6303093,45510161:0,0,0 -) -g1,4100:6630773,45510161 -) -h1,4101:9476085,45510161:0,0,0 -k1,4101:32583029,45510161:23106944 -g1,4101:32583029,45510161 -) -] -) -g1,4123:32583029,45510161 -g1,4123:6630773,45510161 -g1,4123:6630773,45510161 -g1,4123:32583029,45510161 -g1,4123:32583029,45510161 -) -] -(1,4123:32583029,45706769:0,0,0 -g1,4123:32583029,45706769 -) -) -] -(1,4123:6630773,47279633:25952256,0,0 -h1,4123:6630773,47279633:25952256,0,0 -) -] -(1,4123:4262630,4025873:0,0,0 -[1,4123:-473656,4025873:0,0,0 -(1,4123:-473656,-710413:0,0,0 -(1,4123:-473656,-710413:0,0,0 -g1,4123:-473656,-710413 -) -g1,4123:-473656,-710413 -) -] -) -] -!20258 -}78 -Input:580:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:581:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:582:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:583:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!375 -{79 -[1,4173:4262630,47279633:28320399,43253760,0 -(1,4173:4262630,4025873:0,0,0 -[1,4173:-473656,4025873:0,0,0 -(1,4173:-473656,-710413:0,0,0 -(1,4173:-473656,-644877:0,0,0 -k1,4173:-473656,-644877:-65536 -) -(1,4173:-473656,4736287:0,0,0 -k1,4173:-473656,4736287:5209943 -) -g1,4173:-473656,-710413 -) -] -) -[1,4173:6630773,47279633:25952256,43253760,0 -[1,4173:6630773,4812305:25952256,786432,0 -(1,4173:6630773,4812305:25952256,505283,134348 -(1,4173:6630773,4812305:25952256,505283,134348 -g1,4173:3078558,4812305 -[1,4173:3078558,4812305:0,0,0 -(1,4173:3078558,2439708:0,1703936,0 -k1,4173:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,4173:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,4173:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,4173:3078558,4812305:0,0,0 -(1,4173:3078558,2439708:0,1703936,0 -g1,4173:29030814,2439708 -g1,4173:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,4173:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,4173:37855564,2439708:1179648,16384,0 -) -) -k1,4173:3078556,2439708:-34777008 -) -] -[1,4173:3078558,4812305:0,0,0 -(1,4173:3078558,49800853:0,16384,2228224 -k1,4173:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,4173:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,4173:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,4173:3078558,4812305:0,0,0 -(1,4173:3078558,49800853:0,16384,2228224 -g1,4173:29030814,49800853 -g1,4173:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,4173:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,4173:37855564,49800853:1179648,16384,0 -) -) -k1,4173:3078556,49800853:-34777008 -) -] -g1,4173:6630773,4812305 -k1,4173:19515153,4812305:12087462 -g1,4173:20901894,4812305 -g1,4173:21550700,4812305 -g1,4173:24864855,4812305 -g1,4173:27600327,4812305 -g1,4173:29010006,4812305 -) -) -] -[1,4173:6630773,45706769:25952256,40108032,0 -(1,4173:6630773,45706769:25952256,40108032,0 -(1,4173:6630773,45706769:0,0,0 -g1,4173:6630773,45706769 -) -[1,4173:6630773,45706769:25952256,40108032,0 -v1,4123:6630773,6254097:0,393216,0 -(1,4123:6630773,13981422:25952256,8120541,196608 -g1,4123:6630773,13981422 -g1,4123:6630773,13981422 -g1,4123:6434165,13981422 -(1,4123:6434165,13981422:0,8120541,196608 -r1,4173:32779637,13981422:26345472,8317149,196608 -k1,4123:6434165,13981422:-26345472 -) -(1,4123:6434165,13981422:26345472,8120541,196608 -[1,4123:6630773,13981422:25952256,7923933,0 -(1,4106:6630773,6468007:25952256,410518,31456 -(1,4103:6630773,6468007:0,0,0 -g1,4103:6630773,6468007 -g1,4103:6630773,6468007 -g1,4103:6303093,6468007 -(1,4103:6303093,6468007:0,0,0 -) -g1,4103:6630773,6468007 -) -g1,4106:7579210,6468007 -h1,4106:8211501,6468007:0,0,0 -k1,4106:32583029,6468007:24371528 -g1,4106:32583029,6468007 -) -(1,4106:6630773,7134185:25952256,404226,76021 -h1,4106:6630773,7134185:0,0,0 -g1,4106:7579210,7134185 -g1,4106:8843793,7134185 -g1,4106:9476085,7134185 -g1,4106:10108377,7134185 -g1,4106:10740669,7134185 -g1,4106:11372961,7134185 -g1,4106:12005253,7134185 -h1,4106:12321399,7134185:0,0,0 -k1,4106:32583029,7134185:20261630 -g1,4106:32583029,7134185 -) -(1,4108:6630773,8455723:25952256,404226,82312 -(1,4107:6630773,8455723:0,0,0 -g1,4107:6630773,8455723 -g1,4107:6630773,8455723 -g1,4107:6303093,8455723 -(1,4107:6303093,8455723:0,0,0 -) -g1,4107:6630773,8455723 -) -k1,4108:6630773,8455723:0 -k1,4108:6630773,8455723:0 -h1,4108:11056814,8455723:0,0,0 -k1,4108:32583030,8455723:21526216 -g1,4108:32583030,8455723 -) -(1,4116:6630773,9187437:25952256,410518,31456 -(1,4110:6630773,9187437:0,0,0 -g1,4110:6630773,9187437 -g1,4110:6630773,9187437 -g1,4110:6303093,9187437 -(1,4110:6303093,9187437:0,0,0 -) -g1,4110:6630773,9187437 -) -g1,4116:7579210,9187437 -h1,4116:8211501,9187437:0,0,0 -k1,4116:32583029,9187437:24371528 -g1,4116:32583029,9187437 -) -(1,4116:6630773,9853615:25952256,404226,76021 -h1,4116:6630773,9853615:0,0,0 -g1,4116:7579210,9853615 -g1,4116:8843793,9853615 -g1,4116:9476085,9853615 -g1,4116:10108377,9853615 -g1,4116:10740669,9853615 -g1,4116:11372961,9853615 -g1,4116:12005253,9853615 -h1,4116:12321399,9853615:0,0,0 -k1,4116:32583029,9853615:20261630 -g1,4116:32583029,9853615 -) -(1,4116:6630773,10519793:25952256,379060,0 -h1,4116:6630773,10519793:0,0,0 -h1,4116:7263064,10519793:0,0,0 -k1,4116:32583028,10519793:25319964 -g1,4116:32583028,10519793 -) -(1,4116:6630773,11185971:25952256,410518,31456 -h1,4116:6630773,11185971:0,0,0 -g1,4116:7579210,11185971 -h1,4116:8211501,11185971:0,0,0 -k1,4116:32583029,11185971:24371528 -g1,4116:32583029,11185971 -) -(1,4116:6630773,11852149:25952256,404226,76021 -h1,4116:6630773,11852149:0,0,0 -g1,4116:7579210,11852149 -g1,4116:8843793,11852149 -g1,4116:9159939,11852149 -g1,4116:10740668,11852149 -h1,4116:12321396,11852149:0,0,0 -k1,4116:32583028,11852149:20261632 -g1,4116:32583028,11852149 -) -(1,4118:6630773,13173687:25952256,404226,101187 -(1,4117:6630773,13173687:0,0,0 -g1,4117:6630773,13173687 -g1,4117:6630773,13173687 -g1,4117:6303093,13173687 -(1,4117:6303093,13173687:0,0,0 -) -g1,4117:6630773,13173687 -) -k1,4118:6630773,13173687:0 -k1,4118:6630773,13173687:0 -h1,4118:13269834,13173687:0,0,0 -k1,4118:32583030,13173687:19313196 -g1,4118:32583030,13173687 -) -(1,4122:6630773,13905401:25952256,404226,76021 -(1,4120:6630773,13905401:0,0,0 -g1,4120:6630773,13905401 -g1,4120:6630773,13905401 -g1,4120:6303093,13905401 -(1,4120:6303093,13905401:0,0,0 -) -g1,4120:6630773,13905401 -) -g1,4122:7579210,13905401 -g1,4122:8843793,13905401 -h1,4122:9159939,13905401:0,0,0 -k1,4122:32583029,13905401:23423090 -g1,4122:32583029,13905401 -) -] -) -g1,4123:32583029,13981422 -g1,4123:6630773,13981422 -g1,4123:6630773,13981422 -g1,4123:32583029,13981422 -g1,4123:32583029,13981422 -) -h1,4123:6630773,14178030:0,0,0 -v1,4127:6630773,15930424:0,393216,0 -(1,4128:6630773,23332030:25952256,7794822,616038 -g1,4128:6630773,23332030 -(1,4128:6630773,23332030:25952256,7794822,616038 -(1,4128:6630773,23948068:25952256,8410860,0 -[1,4128:6630773,23948068:25952256,8410860,0 -(1,4128:6630773,23921854:25952256,8358432,0 -r1,4173:6656987,23921854:26214,8358432,0 -[1,4128:6656987,23921854:25899828,8358432,0 -(1,4128:6656987,23332030:25899828,7178784,0 -[1,4128:7246811,23332030:24720180,7178784,0 -(1,4128:7246811,17315131:24720180,1161885,196608 -(1,4127:7246811,17315131:0,1161885,196608 -r1,4173:8794447,17315131:1547636,1358493,196608 -k1,4127:7246811,17315131:-1547636 -) -(1,4127:7246811,17315131:1547636,1161885,196608 -) -k1,4127:8933500,17315131:139053 -k1,4127:10619858,17315131:139053 -k1,4127:11445073,17315131:139053 -k1,4127:13871333,17315131:139053 -k1,4127:16391964,17315131:139053 -k1,4127:17147055,17315131:139053 -k1,4127:20458706,17315131:139053 -k1,4127:21743985,17315131:139054 -k1,4127:22510217,17315131:139053 -k1,4127:23640830,17315131:139053 -k1,4127:25634552,17315131:139053 -k1,4127:26582975,17315131:139053 -k1,4127:29376236,17315131:139053 -k1,4127:30166717,17315131:139053 -k1,4128:31966991,17315131:0 -) -(1,4128:7246811,18156619:24720180,513147,126483 -k1,4127:8444255,18156619:153455 -k1,4127:11484571,18156619:153455 -k1,4127:13676196,18156619:153455 -k1,4127:14442413,18156619:153455 -k1,4127:16047490,18156619:153455 -k1,4127:17952067,18156619:153455 -k1,4127:19296966,18156619:153454 -k1,4127:21147148,18156619:153455 -k1,4127:23954811,18156619:153455 -k1,4127:25828586,18156619:153455 -k1,4127:26664926,18156619:153455 -k1,4127:28032108,18156619:153455 -k1,4127:29204648,18156619:153455 -k1,4127:31966991,18156619:0 -) -(1,4128:7246811,18998107:24720180,513147,134348 -k1,4127:10059725,18998107:189508 -k1,4127:12156987,18998107:189509 -k1,4127:13756830,18998107:189508 -k1,4127:16131964,18998107:189508 -k1,4127:17269124,18998107:189509 -k1,4127:20293719,18998107:189508 -k1,4127:22743564,18998107:189508 -k1,4127:23592365,18998107:189509 -k1,4127:25105700,18998107:189508 -k1,4127:25911246,18998107:189508 -k1,4127:27763403,18998107:189509 -k1,4127:28714439,18998107:189508 -k1,4127:31966991,18998107:0 -) -(1,4128:7246811,19839595:24720180,505283,134348 -k1,4127:8512639,19839595:246743 -k1,4127:11794354,19839595:246743 -k1,4127:12668932,19839595:246743 -k1,4127:14409241,19839595:246743 -k1,4127:20216714,19839595:246743 -k1,4127:23202862,19839595:246743 -k1,4127:24211133,19839595:246743 -k1,4127:27072107,19839595:246743 -k1,4127:27850347,19839595:246743 -k1,4127:29163361,19839595:246743 -k1,4127:31966991,19839595:0 -) -(1,4128:7246811,20681083:24720180,505283,134348 -k1,4127:8117612,20681083:187916 -k1,4127:8918290,20681083:187916 -k1,4127:10601738,20681083:187916 -k1,4127:13411749,20681083:187916 -k1,4127:16664784,20681083:187916 -k1,4127:18603822,20681083:187916 -k1,4127:19810823,20681083:187916 -k1,4127:21165936,20681083:187917 -k1,4127:22931304,20681083:187916 -k1,4127:23880748,20681083:187916 -k1,4127:25819786,20681083:187916 -k1,4127:26635537,20681083:187916 -k1,4127:27411966,20681083:187916 -(1,4127:27411966,20681083:0,452978,115847 -r1,4173:28825367,20681083:1413401,568825,115847 -k1,4127:27411966,20681083:-1413401 -) -(1,4127:27411966,20681083:1413401,452978,115847 -k1,4127:27411966,20681083:3277 -h1,4127:28822090,20681083:0,411205,112570 -) -k1,4127:29013283,20681083:187916 -k1,4127:31966991,20681083:0 -) -(1,4128:7246811,21522571:24720180,513147,134348 -k1,4127:8528159,21522571:177066 -k1,4127:9452992,21522571:177067 -k1,4127:12429101,21522571:177066 -k1,4127:15164693,21522571:177066 -k1,4127:18516978,21522571:177066 -k1,4127:21294514,21522571:177067 -k1,4127:24239821,21522571:177066 -k1,4127:25068315,21522571:177066 -k1,4127:27727229,21522571:177066 -k1,4127:28678276,21522571:177067 -k1,4127:31137961,21522571:177066 -k1,4128:31966991,21522571:0 -) -(1,4128:7246811,22364059:24720180,513147,126483 -k1,4127:10027503,22364059:216924 -k1,4127:11435873,22364059:216925 -k1,4127:14571115,22364059:216924 -k1,4127:15404077,22364059:216924 -k1,4127:16640086,22364059:216924 -k1,4127:19072128,22364059:216925 -k1,4127:19948344,22364059:216924 -k1,4127:20521128,22364059:216924 -k1,4127:21905248,22364059:216924 -k1,4127:25011000,22364059:216925 -k1,4127:26736563,22364059:216924 -k1,4127:31966991,22364059:0 -) -(1,4128:7246811,23205547:24720180,505283,126483 -g1,4127:8899629,23205547 -g1,4127:9988837,23205547 -g1,4127:13510086,23205547 -g1,4127:14841122,23205547 -g1,4127:19722243,23205547 -k1,4128:31966991,23205547:9644279 -g1,4128:31966991,23205547 -) -] -) -] -r1,4173:32583029,23921854:26214,8358432,0 -) -] -) -) -g1,4128:32583029,23332030 -) -h1,4128:6630773,23948068:0,0,0 -(1,4131:6630773,25245009:25952256,513147,134348 -h1,4130:6630773,25245009:983040,0,0 -k1,4130:8676905,25245009:234062 -k1,4130:12354228,25245009:234061 -k1,4130:13607375,25245009:234062 -k1,4130:16620164,25245009:234062 -k1,4130:19038541,25245009:234062 -k1,4130:21968098,25245009:234061 -(1,4130:21968098,25245009:0,452978,115847 -r1,4173:23733211,25245009:1765113,568825,115847 -k1,4130:21968098,25245009:-1765113 -) -(1,4130:21968098,25245009:1765113,452978,115847 -k1,4130:21968098,25245009:3277 -h1,4130:23729934,25245009:0,411205,112570 -) -k1,4130:23967273,25245009:234062 -k1,4130:27469616,25245009:234062 -k1,4130:28235175,25245009:234062 -k1,4130:29128528,25245009:234061 -k1,4130:30924313,25245009:234062 -k1,4131:32583029,25245009:0 -) -(1,4131:6630773,26086497:25952256,513147,126483 -k1,4130:8488315,26086497:195549 -k1,4130:10381903,26086497:195550 -k1,4130:11596537,26086497:195549 -k1,4130:13115913,26086497:195549 -k1,4130:14786678,26086497:195550 -k1,4130:16734004,26086497:195549 -k1,4130:20056931,26086497:195549 -k1,4130:20938642,26086497:195549 -k1,4130:21592289,26086497:195550 -k1,4130:24298522,26086497:195549 -k1,4130:25817898,26086497:195549 -k1,4130:27663645,26086497:195550 -k1,4130:31140582,26086497:195549 -k1,4130:32583029,26086497:0 -) -(1,4131:6630773,26927985:25952256,513147,115847 -g1,4130:9525498,26927985 -(1,4130:9525498,26927985:0,452978,115847 -r1,4173:11994035,26927985:2468537,568825,115847 -k1,4130:9525498,26927985:-2468537 -) -(1,4130:9525498,26927985:2468537,452978,115847 -k1,4130:9525498,26927985:3277 -h1,4130:11990758,26927985:0,411205,112570 -) -k1,4131:32583029,26927985:20415324 -g1,4131:32583029,26927985 -) -v1,4133:6630773,28049617:0,393216,0 -(1,4143:6630773,31094961:25952256,3438560,196608 -g1,4143:6630773,31094961 -g1,4143:6630773,31094961 -g1,4143:6434165,31094961 -(1,4143:6434165,31094961:0,3438560,196608 -r1,4173:32779637,31094961:26345472,3635168,196608 -k1,4143:6434165,31094961:-26345472 -) -(1,4143:6434165,31094961:26345472,3438560,196608 -[1,4143:6630773,31094961:25952256,3241952,0 -(1,4135:6630773,28257235:25952256,404226,76021 -(1,4134:6630773,28257235:0,0,0 -g1,4134:6630773,28257235 -g1,4134:6630773,28257235 -g1,4134:6303093,28257235 -(1,4134:6303093,28257235:0,0,0 -) -g1,4134:6630773,28257235 -) -k1,4135:6630773,28257235:0 -h1,4135:10108375,28257235:0,0,0 -k1,4135:32583029,28257235:22474654 -g1,4135:32583029,28257235 -) -(1,4142:6630773,28988949:25952256,410518,9436 -(1,4137:6630773,28988949:0,0,0 -g1,4137:6630773,28988949 -g1,4137:6630773,28988949 -g1,4137:6303093,28988949 -(1,4137:6303093,28988949:0,0,0 -) -g1,4137:6630773,28988949 -) -g1,4142:7579210,28988949 -g1,4142:9159939,28988949 -g1,4142:10108376,28988949 -h1,4142:10424522,28988949:0,0,0 -k1,4142:32583030,28988949:22158508 -g1,4142:32583030,28988949 -) -(1,4142:6630773,29655127:25952256,410518,76021 -h1,4142:6630773,29655127:0,0,0 -g1,4142:7579210,29655127 -g1,4142:7895356,29655127 -g1,4142:8527648,29655127 -g1,4142:9476085,29655127 -g1,4142:10740668,29655127 -g1,4142:12637542,29655127 -g1,4142:13269834,29655127 -g1,4142:13902126,29655127 -g1,4142:14534418,29655127 -g1,4142:15166710,29655127 -g1,4142:15799002,29655127 -h1,4142:16115148,29655127:0,0,0 -k1,4142:32583029,29655127:16467881 -g1,4142:32583029,29655127 -) -(1,4142:6630773,30321305:25952256,410518,101187 -h1,4142:6630773,30321305:0,0,0 -g1,4142:7579210,30321305 -g1,4142:7895356,30321305 -g1,4142:8527648,30321305 -g1,4142:9476085,30321305 -g1,4142:10740668,30321305 -h1,4142:11689105,30321305:0,0,0 -k1,4142:32583029,30321305:20893924 -g1,4142:32583029,30321305 -) -(1,4142:6630773,30987483:25952256,410518,107478 -h1,4142:6630773,30987483:0,0,0 -g1,4142:7579210,30987483 -g1,4142:7895356,30987483 -g1,4142:8527648,30987483 -g1,4142:9476085,30987483 -g1,4142:11056814,30987483 -g1,4142:12953688,30987483 -g1,4142:14534417,30987483 -h1,4142:16115145,30987483:0,0,0 -k1,4142:32583029,30987483:16467884 -g1,4142:32583029,30987483 -) -] -) -g1,4143:32583029,31094961 -g1,4143:6630773,31094961 -g1,4143:6630773,31094961 -g1,4143:32583029,31094961 -g1,4143:32583029,31094961 -) -h1,4143:6630773,31291569:0,0,0 -(1,4148:6630773,33838282:25952256,555811,147783 -(1,4148:6630773,33838282:2899444,534184,12975 -g1,4148:6630773,33838282 -g1,4148:9530217,33838282 -) -g1,4148:12405872,33838282 -g1,4148:13973100,33838282 -g1,4148:17689319,33838282 -g1,4148:19041000,33838282 -k1,4148:32583029,33838282:10165352 -g1,4148:32583029,33838282 -) -(1,4150:6630773,35072986:25952256,505283,134348 -k1,4149:7506825,35072986:248217 -k1,4149:9457013,35072986:248218 -k1,4149:12877828,35072986:248217 -k1,4149:14145131,35072986:248218 -k1,4149:15565787,35072986:248217 -k1,4149:17415705,35072986:248218 -k1,4149:20441338,35072986:248217 -k1,4149:24094150,35072986:248217 -k1,4149:25151738,35072986:248218 -k1,4149:26723782,35072986:248217 -k1,4149:27963560,35072986:248218 -k1,4149:31391584,35072986:248217 -k1,4149:32583029,35072986:0 -) -(1,4150:6630773,35914474:25952256,513147,126483 -k1,4149:9907088,35914474:184326 -k1,4149:10719250,35914474:184327 -k1,4149:11492089,35914474:184326 -k1,4149:14371912,35914474:184327 -(1,4149:14371912,35914474:0,452978,115847 -r1,4173:17192161,35914474:2820249,568825,115847 -k1,4149:14371912,35914474:-2820249 -) -(1,4149:14371912,35914474:2820249,452978,115847 -k1,4149:14371912,35914474:3277 -h1,4149:17188884,35914474:0,411205,112570 -) -k1,4149:17376487,35914474:184326 -k1,4149:18665096,35914474:184327 -k1,4149:19597188,35914474:184326 -k1,4149:21294740,35914474:184326 -k1,4149:22945763,35914474:184327 -k1,4149:23781517,35914474:184326 -k1,4149:26346112,35914474:184327 -k1,4149:29399604,35914474:184326 -k1,4149:30196693,35914474:184327 -k1,4149:31400104,35914474:184326 -k1,4149:32583029,35914474:0 -) -(1,4150:6630773,36755962:25952256,513147,126483 -g1,4149:7489294,36755962 -g1,4149:8044383,36755962 -g1,4149:9237138,36755962 -g1,4149:10627812,36755962 -g1,4149:12665981,36755962 -g1,4149:15734376,36755962 -g1,4149:17201071,36755962 -g1,4149:18419385,36755962 -g1,4149:20157399,36755962 -g1,4149:21039513,36755962 -g1,4149:22370549,36755962 -g1,4149:25184009,36755962 -g1,4149:25999276,36755962 -g1,4149:27217590,36755962 -g1,4149:29631936,36755962 -g1,4149:30490457,36755962 -g1,4149:31045546,36755962 -k1,4150:32583029,36755962:370287 -g1,4150:32583029,36755962 -) -v1,4152:6630773,37877593:0,393216,0 -(1,4173:6630773,45510161:25952256,8025784,196608 -g1,4173:6630773,45510161 -g1,4173:6630773,45510161 -g1,4173:6434165,45510161 -(1,4173:6434165,45510161:0,8025784,196608 -r1,4173:32779637,45510161:26345472,8222392,196608 -k1,4173:6434165,45510161:-26345472 -) -(1,4173:6434165,45510161:26345472,8025784,196608 -[1,4173:6630773,45510161:25952256,7829176,0 -(1,4154:6630773,38085211:25952256,404226,101187 -(1,4153:6630773,38085211:0,0,0 -g1,4153:6630773,38085211 -g1,4153:6630773,38085211 -g1,4153:6303093,38085211 -(1,4153:6303093,38085211:0,0,0 -) -g1,4153:6630773,38085211 -) -g1,4154:10740667,38085211 -g1,4154:11689105,38085211 -g1,4154:16431291,38085211 -g1,4154:18960457,38085211 -g1,4154:19592749,38085211 -g1,4154:21489624,38085211 -g1,4154:22438061,38085211 -g1,4154:23070353,38085211 -g1,4154:27812539,38085211 -h1,4154:28760976,38085211:0,0,0 -k1,4154:32583029,38085211:3822053 -g1,4154:32583029,38085211 -) -(1,4155:6630773,38751389:25952256,404226,6290 -h1,4155:6630773,38751389:0,0,0 -h1,4155:10424521,38751389:0,0,0 -k1,4155:32583029,38751389:22158508 -g1,4155:32583029,38751389 -) -(1,4172:6630773,39483103:25952256,410518,31456 -(1,4157:6630773,39483103:0,0,0 -g1,4157:6630773,39483103 -g1,4157:6630773,39483103 -g1,4157:6303093,39483103 -(1,4157:6303093,39483103:0,0,0 -) -g1,4157:6630773,39483103 -) -g1,4172:7579210,39483103 -h1,4172:8211501,39483103:0,0,0 -k1,4172:32583029,39483103:24371528 -g1,4172:32583029,39483103 -) -(1,4172:6630773,40149281:25952256,404226,76021 -h1,4172:6630773,40149281:0,0,0 -g1,4172:7579210,40149281 -g1,4172:8843793,40149281 -g1,4172:9476085,40149281 -g1,4172:10108377,40149281 -g1,4172:10740669,40149281 -g1,4172:11372961,40149281 -g1,4172:12005253,40149281 -h1,4172:12321399,40149281:0,0,0 -k1,4172:32583029,40149281:20261630 -g1,4172:32583029,40149281 -) -(1,4172:6630773,40815459:25952256,379060,0 -h1,4172:6630773,40815459:0,0,0 -h1,4172:7263064,40815459:0,0,0 -k1,4172:32583028,40815459:25319964 -g1,4172:32583028,40815459 -) -(1,4172:6630773,41481637:25952256,410518,101187 -h1,4172:6630773,41481637:0,0,0 -g1,4172:7579210,41481637 -h1,4172:8211501,41481637:0,0,0 -k1,4172:32583029,41481637:24371528 -g1,4172:32583029,41481637 -) -(1,4172:6630773,42147815:25952256,404226,76021 -h1,4172:6630773,42147815:0,0,0 -g1,4172:7579210,42147815 -g1,4172:8843793,42147815 -h1,4172:9792230,42147815:0,0,0 -k1,4172:32583030,42147815:22790800 -g1,4172:32583030,42147815 -) -(1,4172:6630773,42813993:25952256,379060,0 -h1,4172:6630773,42813993:0,0,0 -h1,4172:7263064,42813993:0,0,0 -k1,4172:32583028,42813993:25319964 -g1,4172:32583028,42813993 -) -(1,4172:6630773,43480171:25952256,410518,101187 -h1,4172:6630773,43480171:0,0,0 -g1,4172:7579210,43480171 -h1,4172:8527647,43480171:0,0,0 -k1,4172:32583029,43480171:24055382 -g1,4172:32583029,43480171 -) -(1,4172:6630773,44146349:25952256,404226,76021 -h1,4172:6630773,44146349:0,0,0 -g1,4172:7579210,44146349 -g1,4172:7895356,44146349 -g1,4172:9159939,44146349 -g1,4172:9476085,44146349 -g1,4172:10108377,44146349 -g1,4172:10424523,44146349 -g1,4172:11056815,44146349 -g1,4172:11372961,44146349 -g1,4172:12005253,44146349 -g1,4172:12321399,44146349 -g1,4172:12953691,44146349 -g1,4172:13269837,44146349 -g1,4172:13902129,44146349 -g1,4172:14218275,44146349 -g1,4172:14850567,44146349 -g1,4172:15166713,44146349 -g1,4172:15799005,44146349 -g1,4172:16115151,44146349 -g1,4172:16747443,44146349 -g1,4172:17063589,44146349 -g1,4172:17695881,44146349 -h1,4172:18328172,44146349:0,0,0 -k1,4172:32583029,44146349:14254857 -g1,4172:32583029,44146349 -) -(1,4172:6630773,44812527:25952256,379060,0 -h1,4172:6630773,44812527:0,0,0 -h1,4172:7263064,44812527:0,0,0 -k1,4172:32583028,44812527:25319964 -g1,4172:32583028,44812527 -) -(1,4172:6630773,45478705:25952256,410518,31456 -h1,4172:6630773,45478705:0,0,0 -g1,4172:7579210,45478705 -h1,4172:8527647,45478705:0,0,0 -k1,4172:32583029,45478705:24055382 -g1,4172:32583029,45478705 -) -] -) -g1,4173:32583029,45510161 -g1,4173:6630773,45510161 -g1,4173:6630773,45510161 -g1,4173:32583029,45510161 -g1,4173:32583029,45510161 -) -] -(1,4173:32583029,45706769:0,0,0 -g1,4173:32583029,45706769 -) -) -] -(1,4173:6630773,47279633:25952256,0,0 -h1,4173:6630773,47279633:25952256,0,0 -) -] -(1,4173:4262630,4025873:0,0,0 -[1,4173:-473656,4025873:0,0,0 -(1,4173:-473656,-710413:0,0,0 -(1,4173:-473656,-710413:0,0,0 -g1,4173:-473656,-710413 -) -g1,4173:-473656,-710413 -) -] -) -] -!21665 -}79 -Input:584:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:585:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:586:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:587:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!375 -{80 -[1,4254:4262630,47279633:28320399,43253760,0 -(1,4254:4262630,4025873:0,0,0 -[1,4254:-473656,4025873:0,0,0 -(1,4254:-473656,-710413:0,0,0 -(1,4254:-473656,-644877:0,0,0 -k1,4254:-473656,-644877:-65536 -) -(1,4254:-473656,4736287:0,0,0 -k1,4254:-473656,4736287:5209943 -) -g1,4254:-473656,-710413 -) -] -) -[1,4254:6630773,47279633:25952256,43253760,0 -[1,4254:6630773,4812305:25952256,786432,0 -(1,4254:6630773,4812305:25952256,485622,11795 -(1,4254:6630773,4812305:25952256,485622,11795 -g1,4254:3078558,4812305 -[1,4254:3078558,4812305:0,0,0 -(1,4254:3078558,2439708:0,1703936,0 -k1,4254:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,4254:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,4254:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,4254:3078558,4812305:0,0,0 -(1,4254:3078558,2439708:0,1703936,0 -g1,4254:29030814,2439708 -g1,4254:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,4254:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,4254:37855564,2439708:1179648,16384,0 -) -) -k1,4254:3078556,2439708:-34777008 -) -] -[1,4254:3078558,4812305:0,0,0 -(1,4254:3078558,49800853:0,16384,2228224 -k1,4254:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,4254:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,4254:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,4254:3078558,4812305:0,0,0 -(1,4254:3078558,49800853:0,16384,2228224 -g1,4254:29030814,49800853 -g1,4254:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,4254:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,4254:37855564,49800853:1179648,16384,0 -) -) -k1,4254:3078556,49800853:-34777008 -) -] -g1,4254:6630773,4812305 -g1,4254:6630773,4812305 -g1,4254:8203637,4812305 -k1,4254:31786111,4812305:23582474 -) -) -] -[1,4254:6630773,45706769:25952256,40108032,0 -(1,4254:6630773,45706769:25952256,40108032,0 -(1,4254:6630773,45706769:0,0,0 -g1,4254:6630773,45706769 -) -[1,4254:6630773,45706769:25952256,40108032,0 -v1,4173:6630773,6254097:0,393216,0 -(1,4173:6630773,8536270:25952256,2675389,196608 -g1,4173:6630773,8536270 -g1,4173:6630773,8536270 -g1,4173:6434165,8536270 -(1,4173:6434165,8536270:0,2675389,196608 -r1,4254:32779637,8536270:26345472,2871997,196608 -k1,4173:6434165,8536270:-26345472 -) -(1,4173:6434165,8536270:26345472,2675389,196608 -[1,4173:6630773,8536270:25952256,2478781,0 -(1,4172:6630773,6461715:25952256,404226,76021 -h1,4172:6630773,6461715:0,0,0 -g1,4172:7579210,6461715 -g1,4172:8843793,6461715 -g1,4172:10108376,6461715 -g1,4172:11372959,6461715 -g1,4172:12637542,6461715 -g1,4172:13902125,6461715 -h1,4172:14850562,6461715:0,0,0 -k1,4172:32583030,6461715:17732468 -g1,4172:32583030,6461715 -) -(1,4172:6630773,7127893:25952256,379060,0 -h1,4172:6630773,7127893:0,0,0 -h1,4172:7263064,7127893:0,0,0 -k1,4172:32583028,7127893:25319964 -g1,4172:32583028,7127893 -) -(1,4172:6630773,7794071:25952256,410518,31456 -h1,4172:6630773,7794071:0,0,0 -g1,4172:7579210,7794071 -h1,4172:8211501,7794071:0,0,0 -k1,4172:32583029,7794071:24371528 -g1,4172:32583029,7794071 -) -(1,4172:6630773,8460249:25952256,404226,76021 -h1,4172:6630773,8460249:0,0,0 -g1,4172:7579210,8460249 -g1,4172:8843793,8460249 -g1,4172:9159939,8460249 -g1,4172:10740668,8460249 -h1,4172:12321396,8460249:0,0,0 -k1,4172:32583028,8460249:20261632 -g1,4172:32583028,8460249 -) -] -) -g1,4173:32583029,8536270 -g1,4173:6630773,8536270 -g1,4173:6630773,8536270 -g1,4173:32583029,8536270 -g1,4173:32583029,8536270 -) -h1,4173:6630773,8732878:0,0,0 -(1,4177:6630773,10050552:25952256,513147,134348 -h1,4176:6630773,10050552:983040,0,0 -g1,4176:8642072,10050552 -g1,4176:10766093,10050552 -g1,4176:11321182,10050552 -g1,4176:14143817,10050552 -g1,4176:15910667,10050552 -g1,4176:16465756,10050552 -g1,4176:17658511,10050552 -g1,4176:18726092,10050552 -g1,4176:20932033,10050552 -(1,4176:20932033,10050552:0,414482,115847 -r1,4254:22345434,10050552:1413401,530329,115847 -k1,4176:20932033,10050552:-1413401 -) -(1,4176:20932033,10050552:1413401,414482,115847 -k1,4176:20932033,10050552:3277 -h1,4176:22342157,10050552:0,411205,112570 -) -g1,4176:22544663,10050552 -g1,4176:23395320,10050552 -k1,4177:32583029,10050552:8555942 -g1,4177:32583029,10050552 -) -v1,4179:6630773,11192915:0,393216,0 -(1,4191:6630773,15545450:25952256,4745751,196608 -g1,4191:6630773,15545450 -g1,4191:6630773,15545450 -g1,4191:6434165,15545450 -(1,4191:6434165,15545450:0,4745751,196608 -r1,4254:32779637,15545450:26345472,4942359,196608 -k1,4191:6434165,15545450:-26345472 -) -(1,4191:6434165,15545450:26345472,4745751,196608 -[1,4191:6630773,15545450:25952256,4549143,0 -(1,4181:6630773,11406825:25952256,410518,101187 -(1,4180:6630773,11406825:0,0,0 -g1,4180:6630773,11406825 -g1,4180:6630773,11406825 -g1,4180:6303093,11406825 -(1,4180:6303093,11406825:0,0,0 -) -g1,4180:6630773,11406825 -) -g1,4181:9476085,11406825 -g1,4181:10424523,11406825 -k1,4181:10424523,11406825:0 -h1,4181:11689106,11406825:0,0,0 -k1,4181:32583030,11406825:20893924 -g1,4181:32583030,11406825 -) -(1,4182:6630773,12073003:25952256,404226,6290 -h1,4182:6630773,12073003:0,0,0 -h1,4182:8527647,12073003:0,0,0 -k1,4182:32583029,12073003:24055382 -g1,4182:32583029,12073003 -) -(1,4190:6630773,12804717:25952256,410518,31456 -(1,4184:6630773,12804717:0,0,0 -g1,4184:6630773,12804717 -g1,4184:6630773,12804717 -g1,4184:6303093,12804717 -(1,4184:6303093,12804717:0,0,0 -) -g1,4184:6630773,12804717 -) -g1,4190:7579210,12804717 -h1,4190:8211501,12804717:0,0,0 -k1,4190:32583029,12804717:24371528 -g1,4190:32583029,12804717 -) -(1,4190:6630773,13470895:25952256,404226,76021 -h1,4190:6630773,13470895:0,0,0 -g1,4190:7579210,13470895 -g1,4190:8843793,13470895 -g1,4190:9476085,13470895 -g1,4190:10108377,13470895 -g1,4190:10740669,13470895 -g1,4190:11372961,13470895 -g1,4190:12005253,13470895 -h1,4190:12321399,13470895:0,0,0 -k1,4190:32583029,13470895:20261630 -g1,4190:32583029,13470895 -) -(1,4190:6630773,14137073:25952256,379060,0 -h1,4190:6630773,14137073:0,0,0 -h1,4190:7263064,14137073:0,0,0 -k1,4190:32583028,14137073:25319964 -g1,4190:32583028,14137073 -) -(1,4190:6630773,14803251:25952256,410518,31456 -h1,4190:6630773,14803251:0,0,0 -g1,4190:7579210,14803251 -h1,4190:8211501,14803251:0,0,0 -k1,4190:32583029,14803251:24371528 -g1,4190:32583029,14803251 -) -(1,4190:6630773,15469429:25952256,404226,76021 -h1,4190:6630773,15469429:0,0,0 -g1,4190:7579210,15469429 -g1,4190:8843793,15469429 -g1,4190:9159939,15469429 -g1,4190:10740668,15469429 -h1,4190:12321396,15469429:0,0,0 -k1,4190:32583028,15469429:20261632 -g1,4190:32583028,15469429 -) -] -) -g1,4191:32583029,15545450 -g1,4191:6630773,15545450 -g1,4191:6630773,15545450 -g1,4191:32583029,15545450 -g1,4191:32583029,15545450 -) -h1,4191:6630773,15742058:0,0,0 -(1,4195:6630773,17059732:25952256,513147,102891 -h1,4194:6630773,17059732:983040,0,0 -g1,4194:9296777,17059732 -g1,4194:10600288,17059732 -g1,4194:11547283,17059732 -g1,4194:14037651,17059732 -g1,4194:15306428,17059732 -g1,4194:16829484,17059732 -g1,4194:17688005,17059732 -k1,4195:32583029,17059732:13397526 -g1,4195:32583029,17059732 -) -v1,4197:6630773,18202095:0,393216,0 -(1,4214:6630773,25834663:25952256,8025784,196608 -g1,4214:6630773,25834663 -g1,4214:6630773,25834663 -g1,4214:6434165,25834663 -(1,4214:6434165,25834663:0,8025784,196608 -r1,4254:32779637,25834663:26345472,8222392,196608 -k1,4214:6434165,25834663:-26345472 -) -(1,4214:6434165,25834663:26345472,8025784,196608 -[1,4214:6630773,25834663:25952256,7829176,0 -(1,4199:6630773,18409713:25952256,404226,82312 -(1,4198:6630773,18409713:0,0,0 -g1,4198:6630773,18409713 -g1,4198:6630773,18409713 -g1,4198:6303093,18409713 -(1,4198:6303093,18409713:0,0,0 -) -g1,4198:6630773,18409713 -) -g1,4199:8843793,18409713 -g1,4199:9792231,18409713 -g1,4199:12953689,18409713 -g1,4199:14850564,18409713 -h1,4199:16747438,18409713:0,0,0 -k1,4199:32583029,18409713:15835591 -g1,4199:32583029,18409713 -) -(1,4200:6630773,19075891:25952256,404226,82312 -h1,4200:6630773,19075891:0,0,0 -g1,4200:8843793,19075891 -g1,4200:9792231,19075891 -g1,4200:12953689,19075891 -h1,4200:14534418,19075891:0,0,0 -k1,4200:32583030,19075891:18048612 -g1,4200:32583030,19075891 -) -(1,4201:6630773,19742069:25952256,404226,82312 -h1,4201:6630773,19742069:0,0,0 -g1,4201:10424521,19742069 -g1,4201:11372959,19742069 -g1,4201:13585980,19742069 -g1,4201:14218272,19742069 -g1,4201:16747438,19742069 -g1,4201:17379730,19742069 -g1,4201:18012022,19742069 -h1,4201:20225042,19742069:0,0,0 -k1,4201:32583029,19742069:12357987 -g1,4201:32583029,19742069 -) -(1,4202:6630773,20408247:25952256,404226,76021 -h1,4202:6630773,20408247:0,0,0 -k1,4202:6630773,20408247:0 -h1,4202:11689104,20408247:0,0,0 -k1,4202:32583028,20408247:20893924 -g1,4202:32583028,20408247 -) -(1,4213:6630773,21139961:25952256,410518,6290 -(1,4204:6630773,21139961:0,0,0 -g1,4204:6630773,21139961 -g1,4204:6630773,21139961 -g1,4204:6303093,21139961 -(1,4204:6303093,21139961:0,0,0 -) -g1,4204:6630773,21139961 -) -g1,4213:7579210,21139961 -g1,4213:9159939,21139961 -g1,4213:10108376,21139961 -h1,4213:10424522,21139961:0,0,0 -k1,4213:32583030,21139961:22158508 -g1,4213:32583030,21139961 -) -(1,4213:6630773,21806139:25952256,410518,31456 -h1,4213:6630773,21806139:0,0,0 -g1,4213:7579210,21806139 -g1,4213:7895356,21806139 -g1,4213:8527648,21806139 -g1,4213:10740668,21806139 -g1,4213:11689105,21806139 -h1,4213:12005251,21806139:0,0,0 -k1,4213:32583029,21806139:20577778 -g1,4213:32583029,21806139 -) -(1,4213:6630773,22472317:25952256,410518,31456 -h1,4213:6630773,22472317:0,0,0 -g1,4213:7579210,22472317 -g1,4213:7895356,22472317 -g1,4213:8211502,22472317 -g1,4213:9476085,22472317 -g1,4213:10108377,22472317 -g1,4213:11372960,22472317 -h1,4213:12321397,22472317:0,0,0 -k1,4213:32583029,22472317:20261632 -g1,4213:32583029,22472317 -) -(1,4213:6630773,23138495:25952256,410518,31456 -h1,4213:6630773,23138495:0,0,0 -g1,4213:7579210,23138495 -g1,4213:7895356,23138495 -g1,4213:8211502,23138495 -g1,4213:9476085,23138495 -g1,4213:10108377,23138495 -g1,4213:11372960,23138495 -h1,4213:12637543,23138495:0,0,0 -k1,4213:32583029,23138495:19945486 -g1,4213:32583029,23138495 -) -(1,4213:6630773,23804673:25952256,410518,31456 -h1,4213:6630773,23804673:0,0,0 -g1,4213:7579210,23804673 -g1,4213:7895356,23804673 -g1,4213:8211502,23804673 -g1,4213:9476085,23804673 -g1,4213:10108377,23804673 -g1,4213:11372960,23804673 -h1,4213:12953688,23804673:0,0,0 -k1,4213:32583028,23804673:19629340 -g1,4213:32583028,23804673 -) -(1,4213:6630773,24470851:25952256,410518,31456 -h1,4213:6630773,24470851:0,0,0 -g1,4213:7579210,24470851 -g1,4213:7895356,24470851 -g1,4213:8527648,24470851 -g1,4213:10740668,24470851 -g1,4213:11689105,24470851 -h1,4213:12005251,24470851:0,0,0 -k1,4213:32583029,24470851:20577778 -g1,4213:32583029,24470851 -) -(1,4213:6630773,25137029:25952256,410518,31456 -h1,4213:6630773,25137029:0,0,0 -g1,4213:7579210,25137029 -g1,4213:7895356,25137029 -g1,4213:8211502,25137029 -g1,4213:9476085,25137029 -g1,4213:10108377,25137029 -g1,4213:11372960,25137029 -h1,4213:12321397,25137029:0,0,0 -k1,4213:32583029,25137029:20261632 -g1,4213:32583029,25137029 -) -(1,4213:6630773,25803207:25952256,410518,31456 -h1,4213:6630773,25803207:0,0,0 -g1,4213:7579210,25803207 -g1,4213:7895356,25803207 -g1,4213:8211502,25803207 -g1,4213:9476085,25803207 -g1,4213:10108377,25803207 -g1,4213:11372960,25803207 -h1,4213:12637543,25803207:0,0,0 -k1,4213:32583029,25803207:19945486 -g1,4213:32583029,25803207 -) -] -) -g1,4214:32583029,25834663 -g1,4214:6630773,25834663 -g1,4214:6630773,25834663 -g1,4214:32583029,25834663 -g1,4214:32583029,25834663 -) -h1,4214:6630773,26031271:0,0,0 -v1,4217:6630773,27825130:0,393216,0 -(1,4233:6630773,35107319:25952256,7675405,616038 -g1,4233:6630773,35107319 -(1,4233:6630773,35107319:25952256,7675405,616038 -(1,4233:6630773,35723357:25952256,8291443,0 -[1,4233:6630773,35723357:25952256,8291443,0 -(1,4233:6630773,35697143:25952256,8239015,0 -r1,4254:6656987,35697143:26214,8239015,0 -[1,4233:6656987,35697143:25899828,8239015,0 -(1,4233:6656987,35107319:25899828,7059367,0 -[1,4233:7246811,35107319:24720180,7059367,0 -(1,4219:7246811,29209837:24720180,1161885,196608 -(1,4217:7246811,29209837:0,1161885,196608 -r1,4254:8794447,29209837:1547636,1358493,196608 -k1,4217:7246811,29209837:-1547636 -) -(1,4217:7246811,29209837:1547636,1161885,196608 -) -k1,4217:8993449,29209837:199002 -k1,4217:8993449,29209837:0 -k1,4218:10975686,29209837:199002 -k1,4218:13494008,29209837:199003 -k1,4218:15086961,29209837:199002 -k1,4218:16822127,29209837:199002 -k1,4218:18518627,29209837:199002 -k1,4218:19175727,29209837:199003 -k1,4218:19906226,29209837:199002 -k1,4218:23553077,29209837:199002 -k1,4218:25729300,29209837:199002 -k1,4218:26579731,29209837:199003 -k1,4218:28263123,29209837:199002 -k1,4218:29481210,29209837:199002 -k1,4218:31966991,29209837:0 -) -(1,4219:7246811,30051325:24720180,513147,134348 -k1,4218:8088644,30051325:182541 -k1,4218:10063595,30051325:182541 -k1,4218:10905428,30051325:182541 -k1,4218:13427605,30051325:182542 -k1,4218:16388873,30051325:182541 -k1,4218:17332942,30051325:182541 -(1,4218:17332942,30051325:0,452978,115847 -r1,4254:19098055,30051325:1765113,568825,115847 -k1,4218:17332942,30051325:-1765113 -) -(1,4218:17332942,30051325:1765113,452978,115847 -k1,4218:17332942,30051325:3277 -h1,4218:19094778,30051325:0,411205,112570 -) -k1,4218:19280596,30051325:182541 -k1,4218:20224665,30051325:182541 -k1,4218:22475522,30051325:182541 -k1,4218:23317356,30051325:182542 -k1,4218:23855757,30051325:182541 -(1,4218:23855757,30051325:0,452978,115847 -r1,4254:26324294,30051325:2468537,568825,115847 -k1,4218:23855757,30051325:-2468537 -) -(1,4218:23855757,30051325:2468537,452978,115847 -k1,4218:23855757,30051325:3277 -h1,4218:26321017,30051325:0,411205,112570 -) -k1,4218:26506835,30051325:182541 -k1,4218:29761704,30051325:182541 -k1,4218:31966991,30051325:0 -) -(1,4219:7246811,30892813:24720180,452978,126483 -g1,4218:8097468,30892813 -g1,4218:11577429,30892813 -(1,4218:11577429,30892813:0,452978,115847 -r1,4254:15101101,30892813:3523672,568825,115847 -k1,4218:11577429,30892813:-3523672 -) -(1,4218:11577429,30892813:3523672,452978,115847 -k1,4218:11577429,30892813:3277 -h1,4218:15097824,30892813:0,411205,112570 -) -k1,4219:31966991,30892813:16692220 -g1,4219:31966991,30892813 -) -v1,4221:7246811,32083279:0,393216,0 -(1,4230:7246811,34386423:24720180,2696360,196608 -g1,4230:7246811,34386423 -g1,4230:7246811,34386423 -g1,4230:7050203,34386423 -(1,4230:7050203,34386423:0,2696360,196608 -r1,4254:32163599,34386423:25113396,2892968,196608 -k1,4230:7050203,34386423:-25113396 -) -(1,4230:7050203,34386423:25113396,2696360,196608 -[1,4230:7246811,34386423:24720180,2499752,0 -(1,4223:7246811,32290897:24720180,404226,82312 -(1,4222:7246811,32290897:0,0,0 -g1,4222:7246811,32290897 -g1,4222:7246811,32290897 -g1,4222:6919131,32290897 -(1,4222:6919131,32290897:0,0,0 -) -g1,4222:7246811,32290897 -) -k1,4223:7246811,32290897:0 -g1,4223:12621288,32290897 -g1,4223:15782745,32290897 -g1,4223:16415037,32290897 -h1,4223:17047329,32290897:0,0,0 -k1,4223:31966991,32290897:14919662 -g1,4223:31966991,32290897 -) -(1,4229:7246811,33022611:24720180,410518,6290 -(1,4225:7246811,33022611:0,0,0 -g1,4225:7246811,33022611 -g1,4225:7246811,33022611 -g1,4225:6919131,33022611 -(1,4225:6919131,33022611:0,0,0 -) -g1,4225:7246811,33022611 -) -g1,4229:8195248,33022611 -g1,4229:9775977,33022611 -g1,4229:10724414,33022611 -h1,4229:11040560,33022611:0,0,0 -k1,4229:31966992,33022611:20926432 -g1,4229:31966992,33022611 -) -(1,4229:7246811,33688789:24720180,410518,31456 -h1,4229:7246811,33688789:0,0,0 -g1,4229:8195248,33688789 -g1,4229:8511394,33688789 -g1,4229:9143686,33688789 -g1,4229:11356706,33688789 -g1,4229:12305143,33688789 -h1,4229:12621289,33688789:0,0,0 -k1,4229:31966991,33688789:19345702 -g1,4229:31966991,33688789 -) -(1,4229:7246811,34354967:24720180,410518,31456 -h1,4229:7246811,34354967:0,0,0 -g1,4229:8195248,34354967 -g1,4229:8511394,34354967 -g1,4229:9143686,34354967 -g1,4229:11356706,34354967 -g1,4229:12305143,34354967 -h1,4229:12621289,34354967:0,0,0 -k1,4229:31966991,34354967:19345702 -g1,4229:31966991,34354967 -) -] -) -g1,4230:31966991,34386423 -g1,4230:7246811,34386423 -g1,4230:7246811,34386423 -g1,4230:31966991,34386423 -g1,4230:31966991,34386423 -) -h1,4230:7246811,34583031:0,0,0 -] -) -] -r1,4254:32583029,35697143:26214,8239015,0 -) -] -) -) -g1,4233:32583029,35107319 -) -h1,4233:6630773,35723357:0,0,0 -(1,4235:6630773,37814617:25952256,555811,12975 -(1,4235:6630773,37814617:2899444,534184,12975 -g1,4235:6630773,37814617 -g1,4235:9530217,37814617 -) -g1,4235:12261693,37814617 -k1,4235:32583029,37814617:18816826 -g1,4235:32583029,37814617 -) -(1,4237:6630773,39049321:25952256,505283,134348 -k1,4236:7266627,39049321:148266 -k1,4236:9532412,39049321:148317 -k1,4236:10674255,39049321:148317 -k1,4236:11926854,39049321:148317 -k1,4236:12822937,39049321:148317 -k1,4236:16763167,39049321:148317 -k1,4236:18921473,39049321:148317 -k1,4236:19425650,39049321:148317 -k1,4236:21446985,39049321:148316 -k1,4236:24781662,39049321:148317 -k1,4236:25546017,39049321:148317 -k1,4236:27579805,39049321:148317 -k1,4236:29959623,39049321:148317 -k1,4236:32583029,39049321:0 -) -(1,4237:6630773,39890809:25952256,513147,7863 -k1,4236:8178330,39890809:223730 -k1,4236:9393619,39890809:223729 -k1,4236:12141140,39890809:223730 -k1,4236:13853193,39890809:223730 -k1,4236:14945274,39890809:223729 -k1,4236:17880884,39890809:223730 -k1,4236:19123699,39890809:223730 -k1,4236:20653562,39890809:223730 -k1,4236:22532075,39890809:223729 -k1,4236:26272467,39890809:223730 -k1,4236:27112235,39890809:223730 -k1,4236:28355049,39890809:223729 -k1,4236:30612361,39890809:223730 -k1,4236:32583029,39890809:0 -) -(1,4237:6630773,40732297:25952256,505283,134348 -g1,4236:8097468,40732297 -g1,4236:8652557,40732297 -g1,4236:10724805,40732297 -k1,4237:32583030,40732297:20527844 -g1,4237:32583030,40732297 -) -v1,4239:6630773,41874661:0,393216,0 -(1,4254:6630773,45510161:25952256,4028716,196608 -g1,4254:6630773,45510161 -g1,4254:6630773,45510161 -g1,4254:6434165,45510161 -(1,4254:6434165,45510161:0,4028716,196608 -r1,4254:32779637,45510161:26345472,4225324,196608 -k1,4254:6434165,45510161:-26345472 -) -(1,4254:6434165,45510161:26345472,4028716,196608 -[1,4254:6630773,45510161:25952256,3832108,0 -(1,4241:6630773,42082279:25952256,404226,82312 -(1,4240:6630773,42082279:0,0,0 -g1,4240:6630773,42082279 -g1,4240:6630773,42082279 -g1,4240:6303093,42082279 -(1,4240:6303093,42082279:0,0,0 -) -g1,4240:6630773,42082279 -) -g1,4241:10424521,42082279 -g1,4241:11372959,42082279 -g1,4241:13585980,42082279 -g1,4241:14218272,42082279 -g1,4241:17379730,42082279 -g1,4241:19276605,42082279 -g1,4241:21805771,42082279 -g1,4241:22438063,42082279 -g1,4241:23070355,42082279 -g1,4241:26231813,42082279 -h1,4241:28128687,42082279:0,0,0 -k1,4241:32583029,42082279:4454342 -g1,4241:32583029,42082279 -) -(1,4242:6630773,42748457:25952256,404226,76021 -h1,4242:6630773,42748457:0,0,0 -k1,4242:6630773,42748457:0 -h1,4242:11689104,42748457:0,0,0 -k1,4242:32583028,42748457:20893924 -g1,4242:32583028,42748457 -) -(1,4253:6630773,43480171:25952256,410518,6290 -(1,4244:6630773,43480171:0,0,0 -g1,4244:6630773,43480171 -g1,4244:6630773,43480171 -g1,4244:6303093,43480171 -(1,4244:6303093,43480171:0,0,0 -) -g1,4244:6630773,43480171 -) -g1,4253:7579210,43480171 -g1,4253:9159939,43480171 -g1,4253:10108376,43480171 -h1,4253:10424522,43480171:0,0,0 -k1,4253:32583030,43480171:22158508 -g1,4253:32583030,43480171 -) -(1,4253:6630773,44146349:25952256,410518,31456 -h1,4253:6630773,44146349:0,0,0 -g1,4253:7579210,44146349 -g1,4253:7895356,44146349 -g1,4253:8527648,44146349 -g1,4253:10740668,44146349 -g1,4253:11689105,44146349 -h1,4253:12005251,44146349:0,0,0 -k1,4253:32583029,44146349:20577778 -g1,4253:32583029,44146349 -) -(1,4253:6630773,44812527:25952256,410518,31456 -h1,4253:6630773,44812527:0,0,0 -g1,4253:7579210,44812527 -g1,4253:7895356,44812527 -g1,4253:8211502,44812527 -g1,4253:9476085,44812527 -g1,4253:10108377,44812527 -g1,4253:11372960,44812527 -h1,4253:12321397,44812527:0,0,0 -k1,4253:32583029,44812527:20261632 -g1,4253:32583029,44812527 -) -(1,4253:6630773,45478705:25952256,410518,31456 -h1,4253:6630773,45478705:0,0,0 -g1,4253:7579210,45478705 -g1,4253:7895356,45478705 -g1,4253:8211502,45478705 -g1,4253:9476085,45478705 -g1,4253:10108377,45478705 -g1,4253:11372960,45478705 -h1,4253:12637543,45478705:0,0,0 -k1,4253:32583029,45478705:19945486 -g1,4253:32583029,45478705 -) -] -) -g1,4254:32583029,45510161 -g1,4254:6630773,45510161 -g1,4254:6630773,45510161 -g1,4254:32583029,45510161 -g1,4254:32583029,45510161 -) -] -(1,4254:32583029,45706769:0,0,0 -g1,4254:32583029,45706769 -) -) -] -(1,4254:6630773,47279633:25952256,0,0 -h1,4254:6630773,47279633:25952256,0,0 -) -] -(1,4254:4262630,4025873:0,0,0 -[1,4254:-473656,4025873:0,0,0 -(1,4254:-473656,-710413:0,0,0 -(1,4254:-473656,-710413:0,0,0 -g1,4254:-473656,-710413 -) -g1,4254:-473656,-710413 -) -] -) -] -!21333 -}80 -Input:588:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:589:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:590:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:591:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:592:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:593:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:594:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:595:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!739 -{81 -[1,4332:4262630,47279633:28320399,43253760,0 -(1,4332:4262630,4025873:0,0,0 -[1,4332:-473656,4025873:0,0,0 -(1,4332:-473656,-710413:0,0,0 -(1,4332:-473656,-644877:0,0,0 -k1,4332:-473656,-644877:-65536 -) -(1,4332:-473656,4736287:0,0,0 -k1,4332:-473656,4736287:5209943 -) -g1,4332:-473656,-710413 -) -] -) -[1,4332:6630773,47279633:25952256,43253760,0 -[1,4332:6630773,4812305:25952256,786432,0 -(1,4332:6630773,4812305:25952256,505283,134348 -(1,4332:6630773,4812305:25952256,505283,134348 -g1,4332:3078558,4812305 -[1,4332:3078558,4812305:0,0,0 -(1,4332:3078558,2439708:0,1703936,0 -k1,4332:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,4332:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,4332:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,4332:3078558,4812305:0,0,0 -(1,4332:3078558,2439708:0,1703936,0 -g1,4332:29030814,2439708 -g1,4332:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,4332:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,4332:37855564,2439708:1179648,16384,0 -) -) -k1,4332:3078556,2439708:-34777008 -) -] -[1,4332:3078558,4812305:0,0,0 -(1,4332:3078558,49800853:0,16384,2228224 -k1,4332:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,4332:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,4332:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,4332:3078558,4812305:0,0,0 -(1,4332:3078558,49800853:0,16384,2228224 -g1,4332:29030814,49800853 -g1,4332:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,4332:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,4332:37855564,49800853:1179648,16384,0 -) -) -k1,4332:3078556,49800853:-34777008 -) -] -g1,4332:6630773,4812305 -k1,4332:19515153,4812305:12087462 -g1,4332:20901894,4812305 -g1,4332:21550700,4812305 -g1,4332:24864855,4812305 -g1,4332:27600327,4812305 -g1,4332:29010006,4812305 -) -) -] -[1,4332:6630773,45706769:25952256,40108032,0 -(1,4332:6630773,45706769:25952256,40108032,0 -(1,4332:6630773,45706769:0,0,0 -g1,4332:6630773,45706769 -) -[1,4332:6630773,45706769:25952256,40108032,0 -v1,4254:6630773,6254097:0,393216,0 -(1,4254:6630773,8497997:25952256,2637116,196608 -g1,4254:6630773,8497997 -g1,4254:6630773,8497997 -g1,4254:6434165,8497997 -(1,4254:6434165,8497997:0,2637116,196608 -r1,4332:32779637,8497997:26345472,2833724,196608 -k1,4254:6434165,8497997:-26345472 -) -(1,4254:6434165,8497997:26345472,2637116,196608 -[1,4254:6630773,8497997:25952256,2440508,0 -(1,4253:6630773,6468007:25952256,410518,31456 -h1,4253:6630773,6468007:0,0,0 -g1,4253:7579210,6468007 -g1,4253:7895356,6468007 -g1,4253:8211502,6468007 -g1,4253:9476085,6468007 -g1,4253:10108377,6468007 -g1,4253:11372960,6468007 -h1,4253:12953688,6468007:0,0,0 -k1,4253:32583028,6468007:19629340 -g1,4253:32583028,6468007 -) -(1,4253:6630773,7134185:25952256,410518,31456 -h1,4253:6630773,7134185:0,0,0 -g1,4253:7579210,7134185 -g1,4253:7895356,7134185 -g1,4253:8527648,7134185 -g1,4253:10740668,7134185 -g1,4253:11689105,7134185 -h1,4253:12005251,7134185:0,0,0 -k1,4253:32583029,7134185:20577778 -g1,4253:32583029,7134185 -) -(1,4253:6630773,7800363:25952256,410518,31456 -h1,4253:6630773,7800363:0,0,0 -g1,4253:7579210,7800363 -g1,4253:7895356,7800363 -g1,4253:8211502,7800363 -g1,4253:9476085,7800363 -g1,4253:10108377,7800363 -g1,4253:11372960,7800363 -h1,4253:12321397,7800363:0,0,0 -k1,4253:32583029,7800363:20261632 -g1,4253:32583029,7800363 -) -(1,4253:6630773,8466541:25952256,410518,31456 -h1,4253:6630773,8466541:0,0,0 -g1,4253:7579210,8466541 -g1,4253:7895356,8466541 -g1,4253:8211502,8466541 -g1,4253:9476085,8466541 -g1,4253:10108377,8466541 -g1,4253:11372960,8466541 -h1,4253:12637543,8466541:0,0,0 -k1,4253:32583029,8466541:19945486 -g1,4253:32583029,8466541 -) -] -) -g1,4254:32583029,8497997 -g1,4254:6630773,8497997 -g1,4254:6630773,8497997 -g1,4254:32583029,8497997 -g1,4254:32583029,8497997 -) -h1,4254:6630773,8694605:0,0,0 -v1,4258:6630773,10533319:0,393216,0 -(1,4259:6630773,17942790:25952256,7802687,616038 -g1,4259:6630773,17942790 -(1,4259:6630773,17942790:25952256,7802687,616038 -(1,4259:6630773,18558828:25952256,8418725,0 -[1,4259:6630773,18558828:25952256,8418725,0 -(1,4259:6630773,18532614:25952256,8366297,0 -r1,4332:6656987,18532614:26214,8366297,0 -[1,4259:6656987,18532614:25899828,8366297,0 -(1,4259:6656987,17942790:25899828,7186649,0 -[1,4259:7246811,17942790:24720180,7186649,0 -(1,4259:7246811,11918026:24720180,1161885,196608 -(1,4258:7246811,11918026:0,1161885,196608 -r1,4332:8794447,11918026:1547636,1358493,196608 -k1,4258:7246811,11918026:-1547636 -) -(1,4258:7246811,11918026:1547636,1161885,196608 -) -k1,4258:8988898,11918026:194451 -k1,4258:10380035,11918026:194450 -k1,4258:12083125,11918026:194451 -k1,4258:14476963,11918026:194450 -k1,4258:17885955,11918026:194451 -k1,4258:18739697,11918026:194450 -k1,4258:21887856,11918026:194451 -k1,4258:22741599,11918026:194451 -k1,4258:25053517,11918026:194450 -k1,4258:26571795,11918026:194451 -k1,4258:28501638,11918026:194450 -k1,4258:31435494,11918026:194451 -k1,4258:31966991,11918026:0 -) -(1,4259:7246811,12759514:24720180,513147,134348 -k1,4258:8526022,12759514:260126 -k1,4258:10439621,12759514:260126 -k1,4258:11385908,12759514:260125 -k1,4258:12593685,12759514:260126 -k1,4258:14978488,12759514:260126 -k1,4258:16736112,12759514:260126 -k1,4258:18068406,12759514:260125 -k1,4258:20700280,12759514:260126 -k1,4258:26333048,12759514:260126 -(1,4258:26333048,12759514:0,452978,115847 -r1,4332:31966991,12759514:5633943,568825,115847 -k1,4258:26333048,12759514:-5633943 -) -(1,4258:26333048,12759514:5633943,452978,115847 -k1,4258:26333048,12759514:3277 -h1,4258:31963714,12759514:0,411205,112570 -) -k1,4258:31966991,12759514:0 -) -(1,4259:7246811,13601002:24720180,513147,102891 -k1,4258:10039791,13601002:258703 -k1,4258:11317580,13601002:258704 -k1,4258:13817614,13601002:258703 -k1,4258:16699724,13601002:258704 -k1,4258:17617719,13601002:258703 -k1,4258:18895508,13601002:258704 -k1,4258:22457881,13601002:258703 -k1,4258:23883780,13601002:258703 -k1,4258:26027955,13601002:258704 -k1,4258:26818155,13601002:258703 -k1,4258:29549532,13601002:258704 -k1,4258:30975431,13601002:258703 -k1,4258:31966991,13601002:0 -) -(1,4259:7246811,14442490:24720180,505283,134348 -k1,4258:8627352,14442490:177300 -k1,4258:9336149,14442490:177300 -k1,4258:9869309,14442490:177300 -k1,4258:11213805,14442490:177300 -k1,4258:12179503,14442490:177300 -k1,4258:15310511,14442490:177300 -k1,4258:16592094,14442490:177301 -k1,4258:17517160,14442490:177300 -k1,4258:20666518,14442490:177300 -k1,4258:22579211,14442490:177300 -k1,4258:24458481,14442490:177300 -k1,4258:25654866,14442490:177300 -k1,4258:29046707,14442490:177300 -k1,4259:31966991,14442490:0 -) -(1,4259:7246811,15283978:24720180,505283,126483 -(1,4258:7246811,15283978:0,452978,115847 -r1,4332:14639313,15283978:7392502,568825,115847 -k1,4258:7246811,15283978:-7392502 -) -(1,4258:7246811,15283978:7392502,452978,115847 -k1,4258:7246811,15283978:3277 -h1,4258:14636036,15283978:0,411205,112570 -) -k1,4258:15040388,15283978:227405 -k1,4258:15737686,15283978:227405 -k1,4258:16496588,15283978:227405 -k1,4258:19933291,15283978:227405 -k1,4258:20812123,15283978:227404 -k1,4258:24298633,15283978:227405 -k1,4258:25810544,15283978:227405 -k1,4258:27734676,15283978:227405 -k1,4258:31966991,15283978:0 -) -(1,4259:7246811,16125466:24720180,513147,126483 -k1,4258:10717479,16125466:256127 -k1,4258:14378200,16125466:256126 -k1,4258:15625887,16125466:256127 -k1,4258:18168564,16125466:256126 -k1,4258:19149519,16125466:256127 -k1,4258:20690151,16125466:256126 -k1,4258:21965363,16125466:256127 -k1,4258:24897324,16125466:256126 -k1,4258:27900065,16125466:256127 -k1,4258:28687689,16125466:256127 -k1,4258:31315563,16125466:256126 -k1,4258:31966991,16125466:0 -) -(1,4259:7246811,16966954:24720180,505283,134348 -k1,4258:8520976,16966954:255080 -k1,4258:12079726,16966954:255080 -k1,4258:13502001,16966954:255079 -k1,4258:14953768,16966954:255080 -k1,4258:17870265,16966954:255080 -k1,4258:19820106,16966954:255080 -k1,4258:21473068,16966954:255079 -k1,4258:23150935,16966954:255080 -k1,4258:24425100,16966954:255080 -(1,4258:24425100,16966954:0,452978,115847 -r1,4332:26190214,16966954:1765114,568825,115847 -k1,4258:24425100,16966954:-1765114 -) -(1,4258:24425100,16966954:1765114,452978,115847 -g1,4258:25483513,16966954 -h1,4258:26186937,16966954:0,411205,112570 -) -k1,4258:26445294,16966954:255080 -k1,4258:29620657,16966954:255079 -k1,4258:30947906,16966954:255080 -k1,4258:31966991,16966954:0 -) -(1,4259:7246811,17808442:24720180,505283,134348 -g1,4258:9099513,17808442 -g1,4258:10807381,17808442 -g1,4258:13287918,17808442 -g1,4258:14138575,17808442 -(1,4258:14138575,17808442:0,452978,115847 -r1,4332:15200265,17808442:1061690,568825,115847 -k1,4258:14138575,17808442:-1061690 -) -(1,4258:14138575,17808442:1061690,452978,115847 -g1,4258:14845276,17808442 -h1,4258:15196988,17808442:0,411205,112570 -) -k1,4259:31966991,17808442:16593056 -g1,4259:31966991,17808442 -) -] -) -] -r1,4332:32583029,18532614:26214,8366297,0 -) -] -) -) -g1,4259:32583029,17942790 -) -h1,4259:6630773,18558828:0,0,0 -v1,4262:6630773,19898928:0,393216,0 -(1,4280:6630773,30591835:25952256,11086123,616038 -g1,4280:6630773,30591835 -(1,4280:6630773,30591835:25952256,11086123,616038 -(1,4280:6630773,31207873:25952256,11702161,0 -[1,4280:6630773,31207873:25952256,11702161,0 -(1,4280:6630773,31181659:25952256,11649733,0 -r1,4332:6656987,31181659:26214,11649733,0 -[1,4280:6656987,31181659:25899828,11649733,0 -(1,4280:6656987,30591835:25899828,10470085,0 -[1,4280:7246811,30591835:24720180,10470085,0 -(1,4263:7246811,21209124:24720180,1087374,134348 -k1,4262:8592685,21209124:136171 -k1,4262:10362668,21209124:136170 -k1,4262:11314107,21209124:136171 -k1,4262:12620751,21209124:136171 -k1,4262:14827859,21209124:136170 -k1,4262:16415652,21209124:136171 -k1,4262:17211115,21209124:136171 -k1,4262:18366371,21209124:136171 -k1,4262:22019203,21209124:136170 -k1,4262:24023805,21209124:136171 -k1,4262:24811404,21209124:136171 -k1,4262:27285243,21209124:136170 -k1,4262:29421573,21209124:136171 -k1,4262:31966991,21209124:0 -) -(1,4263:7246811,22050612:24720180,513147,126483 -k1,4262:8379525,22050612:147053 -k1,4262:10124345,22050612:147053 -k1,4262:12540254,22050612:147053 -k1,4262:14235922,22050612:147052 -k1,4262:16063318,22050612:147053 -k1,4262:17401816,22050612:147053 -k1,4262:18208161,22050612:147053 -k1,4262:20240685,22050612:147053 -k1,4262:22170317,22050612:147053 -k1,4262:23768991,22050612:147052 -k1,4262:27102404,22050612:147053 -k1,4262:28381919,22050612:147053 -k1,4262:30713287,22050612:147053 -k1,4262:31966991,22050612:0 -) -(1,4263:7246811,22892100:24720180,505283,126483 -k1,4262:8805910,22892100:222165 -k1,4262:10120561,22892100:222166 -k1,4262:12782631,22892100:222165 -k1,4262:13687681,22892100:222165 -k1,4262:16240962,22892100:222165 -k1,4262:17893124,22892100:222166 -k1,4262:18766717,22892100:222165 -(1,4262:18766717,22892100:0,452978,115847 -r1,4332:21235254,22892100:2468537,568825,115847 -k1,4262:18766717,22892100:-2468537 -) -(1,4262:18766717,22892100:2468537,452978,115847 -k1,4262:18766717,22892100:3277 -h1,4262:21231977,22892100:0,411205,112570 -) -k1,4262:21631089,22892100:222165 -k1,4262:22536140,22892100:222166 -k1,4262:24188301,22892100:222165 -k1,4262:25061894,22892100:222165 -(1,4262:25061894,22892100:0,452978,115847 -r1,4332:26827007,22892100:1765113,568825,115847 -k1,4262:25061894,22892100:-1765113 -) -(1,4262:25061894,22892100:1765113,452978,115847 -k1,4262:25061894,22892100:3277 -h1,4262:26823730,22892100:0,411205,112570 -) -k1,4262:27049172,22892100:222165 -k1,4262:27922766,22892100:222166 -k1,4262:30947906,22892100:222165 -k1,4262:31966991,22892100:0 -) -(1,4263:7246811,23733588:24720180,513147,134348 -g1,4262:10377465,23733588 -g1,4262:11235986,23733588 -g1,4262:12454300,23733588 -g1,4262:15415872,23733588 -k1,4263:31966991,23733588:14087621 -g1,4263:31966991,23733588 -) -v1,4266:7246811,24924054:0,393216,0 -(1,4277:7246811,29870939:24720180,5340101,196608 -g1,4277:7246811,29870939 -g1,4277:7246811,29870939 -g1,4277:7050203,29870939 -(1,4277:7050203,29870939:0,5340101,196608 -r1,4332:32163599,29870939:25113396,5536709,196608 -k1,4277:7050203,29870939:-25113396 -) -(1,4277:7050203,29870939:25113396,5340101,196608 -[1,4277:7246811,29870939:24720180,5143493,0 -(1,4268:7246811,25131672:24720180,404226,82312 -(1,4267:7246811,25131672:0,0,0 -g1,4267:7246811,25131672 -g1,4267:7246811,25131672 -g1,4267:6919131,25131672 -(1,4267:6919131,25131672:0,0,0 -) -g1,4267:7246811,25131672 -) -g1,4268:11040559,25131672 -g1,4268:11988997,25131672 -g1,4268:14202018,25131672 -g1,4268:14834310,25131672 -g1,4268:17995768,25131672 -g1,4268:19892643,25131672 -g1,4268:22421809,25131672 -g1,4268:23054101,25131672 -g1,4268:23686393,25131672 -g1,4268:26847851,25131672 -h1,4268:28744725,25131672:0,0,0 -k1,4268:31966991,25131672:3222266 -g1,4268:31966991,25131672 -) -(1,4269:7246811,25797850:24720180,404226,76021 -h1,4269:7246811,25797850:0,0,0 -k1,4269:7246811,25797850:0 -h1,4269:12305142,25797850:0,0,0 -k1,4269:31966990,25797850:19661848 -g1,4269:31966990,25797850 -) -(1,4270:7246811,26464028:24720180,404226,76021 -h1,4270:7246811,26464028:0,0,0 -h1,4270:12305143,26464028:0,0,0 -k1,4270:31966991,26464028:19661848 -g1,4270:31966991,26464028 -) -(1,4271:7246811,27130206:24720180,404226,76021 -h1,4271:7246811,27130206:0,0,0 -h1,4271:11672851,27130206:0,0,0 -k1,4271:31966991,27130206:20294140 -g1,4271:31966991,27130206 -) -(1,4272:7246811,27796384:24720180,404226,76021 -h1,4272:7246811,27796384:0,0,0 -h1,4272:13253580,27796384:0,0,0 -k1,4272:31966992,27796384:18713412 -g1,4272:31966992,27796384 -) -(1,4273:7246811,28462562:24720180,404226,76021 -h1,4273:7246811,28462562:0,0,0 -h1,4273:13885871,28462562:0,0,0 -k1,4273:31966991,28462562:18081120 -g1,4273:31966991,28462562 -) -(1,4274:7246811,29128740:24720180,404226,76021 -h1,4274:7246811,29128740:0,0,0 -h1,4274:11672851,29128740:0,0,0 -k1,4274:31966991,29128740:20294140 -g1,4274:31966991,29128740 -) -(1,4275:7246811,29794918:24720180,404226,76021 -h1,4275:7246811,29794918:0,0,0 -h1,4275:13253579,29794918:0,0,0 -k1,4275:31966991,29794918:18713412 -g1,4275:31966991,29794918 -) -] -) -g1,4277:31966991,29870939 -g1,4277:7246811,29870939 -g1,4277:7246811,29870939 -g1,4277:31966991,29870939 -g1,4277:31966991,29870939 -) -h1,4277:7246811,30067547:0,0,0 -] -) -] -r1,4332:32583029,31181659:26214,11649733,0 -) -] -) -) -g1,4280:32583029,30591835 -) -h1,4280:6630773,31207873:0,0,0 -(1,4283:6630773,32547974:25952256,513147,102891 -h1,4282:6630773,32547974:983040,0,0 -k1,4282:11320764,32547974:234198 -k1,4282:12423313,32547974:234197 -k1,4282:14187777,32547974:234198 -k1,4282:15073403,32547974:234198 -k1,4282:17373950,32547974:234197 -k1,4282:17964008,32547974:234198 -k1,4282:19365401,32547974:234197 -k1,4282:20282484,32547974:234198 -k1,4282:20872542,32547974:234198 -k1,4282:23224207,32547974:234197 -k1,4282:26389830,32547974:234198 -k1,4282:27283320,32547974:234198 -k1,4282:28841344,32547974:234197 -k1,4282:31085531,32547974:234198 -k1,4282:32583029,32547974:0 -) -(1,4283:6630773,33389462:25952256,505283,126483 -g1,4282:9619870,33389462 -(1,4282:9619870,33389462:0,452978,115847 -r1,4332:12440119,33389462:2820249,568825,115847 -k1,4282:9619870,33389462:-2820249 -) -(1,4282:9619870,33389462:2820249,452978,115847 -k1,4282:9619870,33389462:3277 -h1,4282:12436842,33389462:0,411205,112570 -) -g1,4282:12639348,33389462 -g1,4282:13370074,33389462 -g1,4282:15117919,33389462 -g1,4282:17497531,33389462 -g1,4282:18444526,33389462 -g1,4282:21488673,33389462 -g1,4282:23201128,33389462 -g1,4282:24016395,33389462 -g1,4282:25709190,33389462 -k1,4283:32583029,33389462:5002786 -g1,4283:32583029,33389462 -) -(1,4285:6630773,34230950:25952256,513147,126483 -h1,4284:6630773,34230950:983040,0,0 -k1,4284:8994738,34230950:184238 -k1,4284:10172503,34230950:184239 -(1,4284:10172503,34230950:0,452978,115847 -r1,4332:14047887,34230950:3875384,568825,115847 -k1,4284:10172503,34230950:-3875384 -) -(1,4284:10172503,34230950:3875384,452978,115847 -k1,4284:10172503,34230950:3277 -h1,4284:14044610,34230950:0,411205,112570 -) -k1,4284:14232125,34230950:184238 -k1,4284:14947861,34230950:184239 -k1,4284:15487959,34230950:184238 -k1,4284:17789666,34230950:184239 -k1,4284:20219823,34230950:184238 -k1,4284:21063354,34230950:184239 -k1,4284:22745090,34230950:184238 -k1,4284:24001498,34230950:184239 -k1,4284:24951852,34230950:184238 -k1,4284:26155176,34230950:184239 -k1,4284:29629321,34230950:184238 -k1,4284:32583029,34230950:0 -) -(1,4285:6630773,35072438:25952256,513147,134348 -k1,4284:7892694,35072438:270361 -k1,4284:11137734,35072438:270361 -k1,4284:13777877,35072438:270361 -k1,4284:14676073,35072438:270361 -k1,4284:16648404,35072438:270361 -k1,4284:19047374,35072438:270361 -k1,4284:22007334,35072438:270362 -k1,4284:24185448,35072438:270361 -k1,4284:25447369,35072438:270361 -k1,4284:26483846,35072438:270361 -k1,4284:27413499,35072438:270361 -k1,4284:28702945,35072438:270361 -k1,4284:30626779,35072438:270361 -k1,4284:32583029,35072438:0 -) -(1,4285:6630773,35913926:25952256,513147,134348 -g1,4284:9501905,35913926 -g1,4284:10720219,35913926 -g1,4284:11912974,35913926 -g1,4284:12763631,35913926 -g1,4284:13710626,35913926 -g1,4284:17344597,35913926 -g1,4284:18811292,35913926 -g1,4284:19366381,35913926 -g1,4284:22540289,35913926 -k1,4285:32583029,35913926:7891193 -g1,4285:32583029,35913926 -) -v1,4287:6630773,37078717:0,393216,0 -(1,4332:6630773,45510161:25952256,8824660,196608 -g1,4332:6630773,45510161 -g1,4332:6630773,45510161 -g1,4332:6434165,45510161 -(1,4332:6434165,45510161:0,8824660,196608 -r1,4332:32779637,45510161:26345472,9021268,196608 -k1,4332:6434165,45510161:-26345472 -) -(1,4332:6434165,45510161:26345472,8824660,196608 -[1,4332:6630773,45510161:25952256,8628052,0 -(1,4289:6630773,37286335:25952256,404226,76021 -(1,4288:6630773,37286335:0,0,0 -g1,4288:6630773,37286335 -g1,4288:6630773,37286335 -g1,4288:6303093,37286335 -(1,4288:6303093,37286335:0,0,0 -) -g1,4288:6630773,37286335 -) -g1,4289:8527647,37286335 -g1,4289:9476085,37286335 -k1,4289:9476085,37286335:0 -h1,4289:15482853,37286335:0,0,0 -k1,4289:32583029,37286335:17100176 -g1,4289:32583029,37286335 -) -(1,4290:6630773,37952513:25952256,284164,6290 -h1,4290:6630773,37952513:0,0,0 -h1,4290:8211501,37952513:0,0,0 -k1,4290:32583029,37952513:24371528 -g1,4290:32583029,37952513 -) -(1,4295:6630773,38684227:25952256,388497,9436 -(1,4292:6630773,38684227:0,0,0 -g1,4292:6630773,38684227 -g1,4292:6630773,38684227 -g1,4292:6303093,38684227 -(1,4292:6303093,38684227:0,0,0 -) -g1,4292:6630773,38684227 -) -g1,4295:7579210,38684227 -g1,4295:7895356,38684227 -g1,4295:8211502,38684227 -g1,4295:8527648,38684227 -g1,4295:9476085,38684227 -g1,4295:9792231,38684227 -g1,4295:10108377,38684227 -g1,4295:10424523,38684227 -g1,4295:11372960,38684227 -g1,4295:11689106,38684227 -g1,4295:12005252,38684227 -g1,4295:12321398,38684227 -g1,4295:13269835,38684227 -g1,4295:13585981,38684227 -g1,4295:13902127,38684227 -g1,4295:14218273,38684227 -g1,4295:15166710,38684227 -g1,4295:15482856,38684227 -g1,4295:15799002,38684227 -g1,4295:16115148,38684227 -h1,4295:16747439,38684227:0,0,0 -k1,4295:32583029,38684227:15835590 -g1,4295:32583029,38684227 -) -(1,4295:6630773,39350405:25952256,404226,6290 -h1,4295:6630773,39350405:0,0,0 -g1,4295:7579210,39350405 -g1,4295:7895356,39350405 -g1,4295:8211502,39350405 -g1,4295:9476085,39350405 -g1,4295:9792231,39350405 -g1,4295:11372960,39350405 -g1,4295:13269834,39350405 -g1,4295:13585980,39350405 -g1,4295:13902126,39350405 -g1,4295:15166709,39350405 -g1,4295:15482855,39350405 -h1,4295:16747438,39350405:0,0,0 -k1,4295:32583029,39350405:15835591 -g1,4295:32583029,39350405 -) -(1,4297:6630773,40671943:25952256,404226,76021 -(1,4296:6630773,40671943:0,0,0 -g1,4296:6630773,40671943 -g1,4296:6630773,40671943 -g1,4296:6303093,40671943 -(1,4296:6303093,40671943:0,0,0 -) -g1,4296:6630773,40671943 -) -k1,4297:6630773,40671943:0 -h1,4297:12953687,40671943:0,0,0 -k1,4297:32583029,40671943:19629342 -g1,4297:32583029,40671943 -) -(1,4301:6630773,41403657:25952256,404226,76021 -(1,4299:6630773,41403657:0,0,0 -g1,4299:6630773,41403657 -g1,4299:6630773,41403657 -g1,4299:6303093,41403657 -(1,4299:6303093,41403657:0,0,0 -) -g1,4299:6630773,41403657 -) -g1,4301:7579210,41403657 -g1,4301:8843793,41403657 -h1,4301:10108376,41403657:0,0,0 -k1,4301:32583028,41403657:22474652 -g1,4301:32583028,41403657 -) -(1,4303:6630773,42725195:25952256,404226,76021 -(1,4302:6630773,42725195:0,0,0 -g1,4302:6630773,42725195 -g1,4302:6630773,42725195 -g1,4302:6303093,42725195 -(1,4302:6303093,42725195:0,0,0 -) -g1,4302:6630773,42725195 -) -k1,4303:6630773,42725195:0 -h1,4303:11056813,42725195:0,0,0 -k1,4303:32583029,42725195:21526216 -g1,4303:32583029,42725195 -) -(1,4307:6630773,43456909:25952256,404226,76021 -(1,4305:6630773,43456909:0,0,0 -g1,4305:6630773,43456909 -g1,4305:6630773,43456909 -g1,4305:6303093,43456909 -(1,4305:6303093,43456909:0,0,0 -) -g1,4305:6630773,43456909 -) -g1,4307:7579210,43456909 -g1,4307:8843793,43456909 -h1,4307:10424521,43456909:0,0,0 -k1,4307:32583029,43456909:22158508 -g1,4307:32583029,43456909 -) -(1,4309:6630773,44778447:25952256,404226,76021 -(1,4308:6630773,44778447:0,0,0 -g1,4308:6630773,44778447 -g1,4308:6630773,44778447 -g1,4308:6303093,44778447 -(1,4308:6303093,44778447:0,0,0 -) -g1,4308:6630773,44778447 -) -k1,4309:6630773,44778447:0 -h1,4309:12005250,44778447:0,0,0 -k1,4309:32583030,44778447:20577780 -g1,4309:32583030,44778447 -) -(1,4313:6630773,45510161:25952256,404226,76021 -(1,4311:6630773,45510161:0,0,0 -g1,4311:6630773,45510161 -g1,4311:6630773,45510161 -g1,4311:6303093,45510161 -(1,4311:6303093,45510161:0,0,0 -) -g1,4311:6630773,45510161 -) -g1,4313:7579210,45510161 -g1,4313:8843793,45510161 -h1,4313:10740667,45510161:0,0,0 -k1,4313:32583029,45510161:21842362 -g1,4313:32583029,45510161 -) -] -) -g1,4332:32583029,45510161 -g1,4332:6630773,45510161 -g1,4332:6630773,45510161 -g1,4332:32583029,45510161 -g1,4332:32583029,45510161 -) -] -(1,4332:32583029,45706769:0,0,0 -g1,4332:32583029,45706769 -) -) -] -(1,4332:6630773,47279633:25952256,0,0 -h1,4332:6630773,47279633:25952256,0,0 -) -] -(1,4332:4262630,4025873:0,0,0 -[1,4332:-473656,4025873:0,0,0 -(1,4332:-473656,-710413:0,0,0 -(1,4332:-473656,-710413:0,0,0 -g1,4332:-473656,-710413 -) -g1,4332:-473656,-710413 -) -] -) -] -!22709 -}81 -Input:596:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:597:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:598:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:599:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:600:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:601:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:602:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:603:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:604:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:605:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!921 -{82 -[1,4389:4262630,47279633:28320399,43253760,0 -(1,4389:4262630,4025873:0,0,0 -[1,4389:-473656,4025873:0,0,0 -(1,4389:-473656,-710413:0,0,0 -(1,4389:-473656,-644877:0,0,0 -k1,4389:-473656,-644877:-65536 -) -(1,4389:-473656,4736287:0,0,0 -k1,4389:-473656,4736287:5209943 -) -g1,4389:-473656,-710413 -) -] -) -[1,4389:6630773,47279633:25952256,43253760,0 -[1,4389:6630773,4812305:25952256,786432,0 -(1,4389:6630773,4812305:25952256,513147,126483 -(1,4389:6630773,4812305:25952256,513147,126483 -g1,4389:3078558,4812305 -[1,4389:3078558,4812305:0,0,0 -(1,4389:3078558,2439708:0,1703936,0 -k1,4389:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,4389:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,4389:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,4389:3078558,4812305:0,0,0 -(1,4389:3078558,2439708:0,1703936,0 -g1,4389:29030814,2439708 -g1,4389:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,4389:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,4389:37855564,2439708:1179648,16384,0 -) -) -k1,4389:3078556,2439708:-34777008 -) -] -[1,4389:3078558,4812305:0,0,0 -(1,4389:3078558,49800853:0,16384,2228224 -k1,4389:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,4389:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,4389:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,4389:3078558,4812305:0,0,0 -(1,4389:3078558,49800853:0,16384,2228224 -g1,4389:29030814,49800853 -g1,4389:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,4389:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,4389:37855564,49800853:1179648,16384,0 -) -) -k1,4389:3078556,49800853:-34777008 -) -] -g1,4389:6630773,4812305 -g1,4389:6630773,4812305 -g1,4389:8364200,4812305 -g1,4389:10765439,4812305 -k1,4389:31786111,4812305:21020672 -) -) -] -[1,4389:6630773,45706769:25952256,40108032,0 -(1,4389:6630773,45706769:25952256,40108032,0 -(1,4389:6630773,45706769:0,0,0 -g1,4389:6630773,45706769 -) -[1,4389:6630773,45706769:25952256,40108032,0 -v1,4332:6630773,6254097:0,393216,0 -(1,4332:6630773,11375954:25952256,5515073,196608 -g1,4332:6630773,11375954 -g1,4332:6630773,11375954 -g1,4332:6434165,11375954 -(1,4332:6434165,11375954:0,5515073,196608 -r1,4389:32779637,11375954:26345472,5711681,196608 -k1,4332:6434165,11375954:-26345472 -) -(1,4332:6434165,11375954:26345472,5515073,196608 -[1,4332:6630773,11375954:25952256,5318465,0 -(1,4315:6630773,6461715:25952256,404226,76021 -(1,4314:6630773,6461715:0,0,0 -g1,4314:6630773,6461715 -g1,4314:6630773,6461715 -g1,4314:6303093,6461715 -(1,4314:6303093,6461715:0,0,0 -) -g1,4314:6630773,6461715 -) -k1,4315:6630773,6461715:0 -h1,4315:10108376,6461715:0,0,0 -k1,4315:32583028,6461715:22474652 -g1,4315:32583028,6461715 -) -(1,4319:6630773,7193429:25952256,404226,76021 -(1,4317:6630773,7193429:0,0,0 -g1,4317:6630773,7193429 -g1,4317:6630773,7193429 -g1,4317:6303093,7193429 -(1,4317:6303093,7193429:0,0,0 -) -g1,4317:6630773,7193429 -) -g1,4319:7579210,7193429 -g1,4319:8843793,7193429 -h1,4319:12321395,7193429:0,0,0 -k1,4319:32583029,7193429:20261634 -g1,4319:32583029,7193429 -) -(1,4321:6630773,8514967:25952256,404226,76021 -(1,4320:6630773,8514967:0,0,0 -g1,4320:6630773,8514967 -g1,4320:6630773,8514967 -g1,4320:6303093,8514967 -(1,4320:6303093,8514967:0,0,0 -) -g1,4320:6630773,8514967 -) -k1,4321:6630773,8514967:0 -h1,4321:12321395,8514967:0,0,0 -k1,4321:32583029,8514967:20261634 -g1,4321:32583029,8514967 -) -(1,4325:6630773,9246681:25952256,404226,76021 -(1,4323:6630773,9246681:0,0,0 -g1,4323:6630773,9246681 -g1,4323:6630773,9246681 -g1,4323:6303093,9246681 -(1,4323:6303093,9246681:0,0,0 -) -g1,4323:6630773,9246681 -) -g1,4325:7579210,9246681 -g1,4325:8843793,9246681 -g1,4325:10108376,9246681 -h1,4325:11056813,9246681:0,0,0 -k1,4325:32583029,9246681:21526216 -g1,4325:32583029,9246681 -) -(1,4327:6630773,10568219:25952256,404226,76021 -(1,4326:6630773,10568219:0,0,0 -g1,4326:6630773,10568219 -g1,4326:6630773,10568219 -g1,4326:6303093,10568219 -(1,4326:6303093,10568219:0,0,0 -) -g1,4326:6630773,10568219 -) -k1,4327:6630773,10568219:0 -h1,4327:10424521,10568219:0,0,0 -k1,4327:32583029,10568219:22158508 -g1,4327:32583029,10568219 -) -(1,4331:6630773,11299933:25952256,404226,76021 -(1,4329:6630773,11299933:0,0,0 -g1,4329:6630773,11299933 -g1,4329:6630773,11299933 -g1,4329:6303093,11299933 -(1,4329:6303093,11299933:0,0,0 -) -g1,4329:6630773,11299933 -) -g1,4331:7579210,11299933 -g1,4331:8843793,11299933 -g1,4331:10424522,11299933 -g1,4331:12005251,11299933 -g1,4331:13585980,11299933 -g1,4331:15166709,11299933 -h1,4331:16431292,11299933:0,0,0 -k1,4331:32583029,11299933:16151737 -g1,4331:32583029,11299933 -) -] -) -g1,4332:32583029,11375954 -g1,4332:6630773,11375954 -g1,4332:6630773,11375954 -g1,4332:32583029,11375954 -g1,4332:32583029,11375954 -) -h1,4332:6630773,11572562:0,0,0 -(1,4336:6630773,12868488:25952256,513147,7863 -h1,4335:6630773,12868488:983040,0,0 -k1,4335:9017812,12868488:207312 -k1,4335:12003851,12868488:207312 -k1,4335:13891506,12868488:207312 -k1,4335:14630315,12868488:207312 -k1,4335:15193487,12868488:207312 -k1,4335:17378677,12868488:207313 -k1,4335:18979940,12868488:207312 -k1,4335:21346008,12868488:207312 -k1,4335:24176726,12868488:207312 -k1,4335:27426875,12868488:207312 -k1,4335:28587736,12868488:207312 -k1,4335:29887533,12868488:207312 -k1,4336:32583029,12868488:0 -) -(1,4336:6630773,13709976:25952256,513147,134348 -(1,4335:6630773,13709976:0,452978,115847 -r1,4389:8395886,13709976:1765113,568825,115847 -k1,4335:6630773,13709976:-1765113 -) -(1,4335:6630773,13709976:1765113,452978,115847 -k1,4335:6630773,13709976:3277 -h1,4335:8392609,13709976:0,411205,112570 -) -k1,4335:8568361,13709976:172475 -k1,4335:9392265,13709976:172476 -k1,4335:11420064,13709976:172475 -k1,4335:12658811,13709976:172476 -k1,4335:14161667,13709976:172475 -k1,4335:15537383,13709976:172475 -k1,4335:17687736,13709976:172476 -k1,4335:19991442,13709976:172475 -k1,4335:20815346,13709976:172476 -k1,4335:22006906,13709976:172475 -k1,4335:24614699,13709976:172475 -k1,4335:25954371,13709976:172476 -k1,4335:27323533,13709976:172475 -k1,4335:29564325,13709976:172476 -k1,4335:30728360,13709976:172475 -k1,4335:32583029,13709976:0 -) -(1,4336:6630773,14551464:25952256,513147,126483 -k1,4335:7652883,14551464:212740 -k1,4335:8884708,14551464:212740 -k1,4335:11165764,14551464:212740 -k1,4335:12037795,14551464:212739 -k1,4335:13244061,14551464:212740 -k1,4335:16325967,14551464:212740 -k1,4335:18236745,14551464:212740 -k1,4335:21407125,14551464:212740 -k1,4335:23309383,14551464:212740 -k1,4335:26338204,14551464:212739 -k1,4335:27542504,14551464:212740 -k1,4335:29268470,14551464:212740 -k1,4335:30428861,14551464:212740 -k1,4336:32583029,14551464:0 -) -(1,4336:6630773,15392952:25952256,513147,134348 -k1,4335:8670308,15392952:279893 -k1,4335:11031624,15392952:279893 -k1,4335:12265066,15392952:279893 -k1,4335:13649241,15392952:279893 -k1,4335:15960095,15392952:279893 -k1,4335:17259074,15392952:279894 -k1,4335:20492675,15392952:279893 -k1,4335:21431860,15392952:279893 -k1,4335:22730838,15392952:279893 -k1,4335:24988608,15392952:279893 -k1,4335:27124481,15392952:279893 -k1,4335:29962900,15392952:279893 -k1,4335:32583029,15392952:0 -) -(1,4336:6630773,16234440:25952256,505283,7863 -g1,4335:9256800,16234440 -g1,4335:10138914,16234440 -k1,4336:32583029,16234440:20202128 -g1,4336:32583029,16234440 -) -v1,4338:6630773,17355057:0,393216,0 -(1,4360:6630773,24404145:25952256,7442304,196608 -g1,4360:6630773,24404145 -g1,4360:6630773,24404145 -g1,4360:6434165,24404145 -(1,4360:6434165,24404145:0,7442304,196608 -r1,4389:32779637,24404145:26345472,7638912,196608 -k1,4360:6434165,24404145:-26345472 -) -(1,4360:6434165,24404145:26345472,7442304,196608 -[1,4360:6630773,24404145:25952256,7245696,0 -(1,4340:6630773,17562675:25952256,404226,76021 -(1,4339:6630773,17562675:0,0,0 -g1,4339:6630773,17562675 -g1,4339:6630773,17562675 -g1,4339:6303093,17562675 -(1,4339:6303093,17562675:0,0,0 -) -g1,4339:6630773,17562675 -) -k1,4340:6630773,17562675:0 -h1,4340:9792230,17562675:0,0,0 -k1,4340:32583030,17562675:22790800 -g1,4340:32583030,17562675 -) -(1,4345:6630773,18294389:25952256,404226,76021 -(1,4342:6630773,18294389:0,0,0 -g1,4342:6630773,18294389 -g1,4342:6630773,18294389 -g1,4342:6303093,18294389 -(1,4342:6303093,18294389:0,0,0 -) -g1,4342:6630773,18294389 -) -g1,4345:7579210,18294389 -g1,4345:7895356,18294389 -g1,4345:9792230,18294389 -g1,4345:11056813,18294389 -g1,4345:12953687,18294389 -g1,4345:14218270,18294389 -g1,4345:15798999,18294389 -g1,4345:17695873,18294389 -g1,4345:18960456,18294389 -h1,4345:20225039,18294389:0,0,0 -k1,4345:32583029,18294389:12357990 -g1,4345:32583029,18294389 -) -(1,4345:6630773,18960567:25952256,404226,82312 -h1,4345:6630773,18960567:0,0,0 -g1,4345:7579210,18960567 -g1,4345:7895356,18960567 -g1,4345:8527648,18960567 -g1,4345:11056814,18960567 -g1,4345:14218271,18960567 -g1,4345:15482854,18960567 -g1,4345:17379728,18960567 -g1,4345:18960457,18960567 -g1,4345:20541186,18960567 -g1,4345:22121915,18960567 -g1,4345:23702644,18960567 -h1,4345:24651081,18960567:0,0,0 -k1,4345:32583029,18960567:7931948 -g1,4345:32583029,18960567 -) -(1,4347:6630773,20282105:25952256,404226,76021 -(1,4346:6630773,20282105:0,0,0 -g1,4346:6630773,20282105 -g1,4346:6630773,20282105 -g1,4346:6303093,20282105 -(1,4346:6303093,20282105:0,0,0 -) -g1,4346:6630773,20282105 -) -h1,4347:9159939,20282105:0,0,0 -k1,4347:32583029,20282105:23423090 -g1,4347:32583029,20282105 -) -(1,4352:6630773,21013819:25952256,388497,0 -(1,4349:6630773,21013819:0,0,0 -g1,4349:6630773,21013819 -g1,4349:6630773,21013819 -g1,4349:6303093,21013819 -(1,4349:6303093,21013819:0,0,0 -) -g1,4349:6630773,21013819 -) -g1,4352:7579210,21013819 -g1,4352:7895356,21013819 -g1,4352:8211502,21013819 -h1,4352:8843793,21013819:0,0,0 -k1,4352:32583029,21013819:23739236 -g1,4352:32583029,21013819 -) -(1,4352:6630773,21679997:25952256,404226,4718 -h1,4352:6630773,21679997:0,0,0 -g1,4352:7579210,21679997 -h1,4352:8843793,21679997:0,0,0 -k1,4352:32583029,21679997:23739236 -g1,4352:32583029,21679997 -) -(1,4354:6630773,23001535:25952256,404226,76021 -(1,4353:6630773,23001535:0,0,0 -g1,4353:6630773,23001535 -g1,4353:6630773,23001535 -g1,4353:6303093,23001535 -(1,4353:6303093,23001535:0,0,0 -) -g1,4353:6630773,23001535 -) -h1,4354:10108376,23001535:0,0,0 -k1,4354:32583028,23001535:22474652 -g1,4354:32583028,23001535 -) -(1,4359:6630773,23733249:25952256,388497,0 -(1,4356:6630773,23733249:0,0,0 -g1,4356:6630773,23733249 -g1,4356:6630773,23733249 -g1,4356:6303093,23733249 -(1,4356:6303093,23733249:0,0,0 -) -g1,4356:6630773,23733249 -) -g1,4359:7579210,23733249 -g1,4359:7895356,23733249 -g1,4359:8211502,23733249 -h1,4359:8843793,23733249:0,0,0 -k1,4359:32583029,23733249:23739236 -g1,4359:32583029,23733249 -) -(1,4359:6630773,24399427:25952256,404226,4718 -h1,4359:6630773,24399427:0,0,0 -g1,4359:7579210,24399427 -h1,4359:8843793,24399427:0,0,0 -k1,4359:32583029,24399427:23739236 -g1,4359:32583029,24399427 -) -] -) -g1,4360:32583029,24404145 -g1,4360:6630773,24404145 -g1,4360:6630773,24404145 -g1,4360:32583029,24404145 -g1,4360:32583029,24404145 -) -h1,4360:6630773,24600753:0,0,0 -(1,4364:6630773,25896679:25952256,513147,126483 -h1,4363:6630773,25896679:983040,0,0 -k1,4363:10676230,25896679:272549 -(1,4363:10676230,25896679:0,452978,115847 -r1,4389:13496479,25896679:2820249,568825,115847 -k1,4363:10676230,25896679:-2820249 -) -(1,4363:10676230,25896679:2820249,452978,115847 -k1,4363:10676230,25896679:3277 -h1,4363:13493202,25896679:0,411205,112570 -) -k1,4363:13769027,25896679:272548 -k1,4363:15145858,25896679:272549 -k1,4363:16166173,25896679:272549 -k1,4363:17951947,25896679:272548 -k1,4363:18875924,25896679:272549 -k1,4363:21503181,25896679:272548 -k1,4363:23844046,25896679:272549 -k1,4363:27706002,25896679:272549 -k1,4363:30438772,25896679:272548 -k1,4363:31923737,25896679:272549 -k1,4363:32583029,25896679:0 -) -(1,4364:6630773,26738167:25952256,513147,134348 -g1,4363:9273840,26738167 -g1,4363:10492154,26738167 -g1,4363:12473962,26738167 -g1,4363:13356076,26738167 -g1,4363:15110474,26738167 -g1,4363:15968995,26738167 -g1,4363:17187309,26738167 -k1,4364:32583029,26738167:13262523 -g1,4364:32583029,26738167 -) -v1,4366:6630773,27858784:0,393216,0 -(1,4373:6630773,28874137:25952256,1408569,196608 -g1,4373:6630773,28874137 -g1,4373:6630773,28874137 -g1,4373:6434165,28874137 -(1,4373:6434165,28874137:0,1408569,196608 -r1,4389:32779637,28874137:26345472,1605177,196608 -k1,4373:6434165,28874137:-26345472 -) -(1,4373:6434165,28874137:26345472,1408569,196608 -[1,4373:6630773,28874137:25952256,1211961,0 -(1,4368:6630773,28066402:25952256,404226,76021 -(1,4367:6630773,28066402:0,0,0 -g1,4367:6630773,28066402 -g1,4367:6630773,28066402 -g1,4367:6303093,28066402 -(1,4367:6303093,28066402:0,0,0 -) -g1,4367:6630773,28066402 -) -k1,4368:6630773,28066402:0 -h1,4368:10740667,28066402:0,0,0 -k1,4368:32583029,28066402:21842362 -g1,4368:32583029,28066402 -) -(1,4372:6630773,28798116:25952256,404226,76021 -(1,4370:6630773,28798116:0,0,0 -g1,4370:6630773,28798116 -g1,4370:6630773,28798116 -g1,4370:6303093,28798116 -(1,4370:6303093,28798116:0,0,0 -) -g1,4370:6630773,28798116 -) -g1,4372:7579210,28798116 -g1,4372:8843793,28798116 -g1,4372:10108376,28798116 -g1,4372:10424522,28798116 -g1,4372:10740668,28798116 -g1,4372:12321397,28798116 -g1,4372:12637543,28798116 -g1,4372:14534417,28798116 -g1,4372:15799000,28798116 -g1,4372:16115146,28798116 -g1,4372:16431292,28798116 -h1,4372:17695875,28798116:0,0,0 -k1,4372:32583029,28798116:14887154 -g1,4372:32583029,28798116 -) -] -) -g1,4373:32583029,28874137 -g1,4373:6630773,28874137 -g1,4373:6630773,28874137 -g1,4373:32583029,28874137 -g1,4373:32583029,28874137 -) -h1,4373:6630773,29070745:0,0,0 -v1,4377:6630773,30821110:0,393216,0 -(1,4378:6630773,36465229:25952256,6037335,616038 -g1,4378:6630773,36465229 -(1,4378:6630773,36465229:25952256,6037335,616038 -(1,4378:6630773,37081267:25952256,6653373,0 -[1,4378:6630773,37081267:25952256,6653373,0 -(1,4378:6630773,37055053:25952256,6600945,0 -r1,4389:6656987,37055053:26214,6600945,0 -[1,4378:6656987,37055053:25899828,6600945,0 -(1,4378:6656987,36465229:25899828,5421297,0 -[1,4378:7246811,36465229:24720180,5421297,0 -(1,4378:7246811,32131306:24720180,1087374,134348 -k1,4377:8665776,32131306:209262 -k1,4377:11664906,32131306:209262 -(1,4377:11664906,32131306:0,452978,115847 -r1,4389:14485155,32131306:2820249,568825,115847 -k1,4377:11664906,32131306:-2820249 -) -(1,4377:11664906,32131306:2820249,452978,115847 -k1,4377:11664906,32131306:3277 -h1,4377:14481878,32131306:0,411205,112570 -) -k1,4377:14694418,32131306:209263 -k1,4377:14694418,32131306:0 -k1,4377:16004685,32131306:209262 -k1,4377:17386386,32131306:209262 -k1,4377:20822641,32131306:209262 -k1,4377:24816608,32131306:209263 -k1,4377:26419821,32131306:209262 -k1,4377:28894663,32131306:209262 -k1,4377:31966991,32131306:0 -) -(1,4378:7246811,32972794:24720180,513147,126483 -k1,4377:9648487,32972794:217361 -k1,4377:11751319,32972794:217361 -k1,4377:12837032,32972794:217361 -k1,4377:14097071,32972794:217361 -k1,4377:15380703,32972794:217361 -k1,4377:17860367,32972794:217361 -k1,4377:18693765,32972794:217360 -k1,4377:19930211,32972794:217361 -k1,4377:22808989,32972794:217361 -k1,4377:25055345,32972794:217361 -k1,4377:27147036,32972794:217361 -k1,4377:30975431,32972794:217361 -k1,4378:31966991,32972794:0 -) -(1,4378:7246811,33814282:24720180,513147,134348 -(1,4377:7246811,33814282:0,452978,115847 -r1,4389:10418771,33814282:3171960,568825,115847 -k1,4377:7246811,33814282:-3171960 -) -(1,4377:7246811,33814282:3171960,452978,115847 -k1,4377:7246811,33814282:3277 -h1,4377:10415494,33814282:0,411205,112570 -) -k1,4377:10633525,33814282:214754 -k1,4377:12039724,33814282:214754 -(1,4377:12039724,33814282:0,414482,115847 -r1,4389:15211684,33814282:3171960,530329,115847 -k1,4377:12039724,33814282:-3171960 -) -(1,4377:12039724,33814282:3171960,414482,115847 -k1,4377:12039724,33814282:3277 -h1,4377:15208407,33814282:0,411205,112570 -) -k1,4377:15600108,33814282:214754 -k1,4377:17281557,33814282:214753 -k1,4377:18155603,33814282:214754 -k1,4377:20009412,33814282:214754 -k1,4377:23285353,33814282:214754 -k1,4377:23855967,33814282:214754 -(1,4377:23855967,33814282:0,452978,122846 -r1,4389:26324504,33814282:2468537,575824,122846 -k1,4377:23855967,33814282:-2468537 -) -(1,4377:23855967,33814282:2468537,452978,122846 -k1,4377:23855967,33814282:3277 -h1,4377:26321227,33814282:0,411205,112570 -) -k1,4377:26539258,33814282:214754 -k1,4377:28434354,33814282:214753 -k1,4377:29335270,33814282:214754 -k1,4377:30320727,33814282:214754 -k1,4378:31966991,33814282:0 -) -(1,4378:7246811,34655770:24720180,513147,134348 -k1,4377:9261260,34655770:201723 -k1,4377:11668926,34655770:201724 -k1,4377:12889734,34655770:201723 -k1,4377:16277817,34655770:201723 -(1,4377:16277817,34655770:0,452978,115847 -r1,4389:24373744,34655770:8095927,568825,115847 -k1,4377:16277817,34655770:-8095927 -) -(1,4377:16277817,34655770:8095927,452978,115847 -g1,4377:18391365,34655770 -g1,4377:19446501,34655770 -h1,4377:24370467,34655770:0,411205,112570 -) -k1,4377:24749138,34655770:201724 -k1,4377:25712389,34655770:201723 -k1,4377:28341566,34655770:201723 -(1,4377:28341566,34655770:0,414482,115847 -r1,4389:30106679,34655770:1765113,530329,115847 -k1,4377:28341566,34655770:-1765113 -) -(1,4377:28341566,34655770:1765113,414482,115847 -k1,4377:28341566,34655770:3277 -h1,4377:30103402,34655770:0,411205,112570 -) -k1,4377:30308403,34655770:201724 -k1,4377:31196288,34655770:201723 -k1,4377:31966991,34655770:0 -) -(1,4378:7246811,35497258:24720180,505283,134348 -k1,4377:10541810,35497258:222671 -k1,4377:11415909,35497258:222671 -k1,4377:13335308,35497258:222672 -k1,4377:14730418,35497258:222671 -k1,4377:18737793,35497258:222671 -k1,4377:19576502,35497258:222671 -k1,4377:21347790,35497258:222672 -k1,4377:22761906,35497258:222671 -k1,4377:23600615,35497258:222671 -k1,4377:25274908,35497258:222671 -k1,4377:27038331,35497258:222672 -k1,4377:29044892,35497258:222671 -k1,4377:30286648,35497258:222671 -k1,4377:31966991,35497258:0 -) -(1,4378:7246811,36338746:24720180,513147,126483 -g1,4377:10224767,36338746 -g1,4377:11615441,36338746 -g1,4377:13145051,36338746 -g1,4377:13802377,36338746 -g1,4377:16075165,36338746 -g1,4377:17668345,36338746 -g1,4377:20192136,36338746 -g1,4377:21042793,36338746 -g1,4377:22261107,36338746 -g1,4377:23617046,36338746 -g1,4377:26608109,36338746 -k1,4378:31966991,36338746:3329887 -g1,4378:31966991,36338746 -) -] -) -] -r1,4389:32583029,37055053:26214,6600945,0 -) -] -) -) -g1,4378:32583029,36465229 -) -h1,4378:6630773,37081267:0,0,0 -(1,4383:6630773,40343273:25952256,32768,229376 -(1,4383:6630773,40343273:0,32768,229376 -(1,4383:6630773,40343273:5505024,32768,229376 -r1,4389:12135797,40343273:5505024,262144,229376 -) -k1,4383:6630773,40343273:-5505024 -) -(1,4383:6630773,40343273:25952256,32768,0 -r1,4389:32583029,40343273:25952256,32768,0 -) -) -(1,4383:6630773,41947601:25952256,615776,9436 -(1,4383:6630773,41947601:2464678,582746,0 -g1,4383:6630773,41947601 -g1,4383:9095451,41947601 -) -g1,4383:11145680,41947601 -k1,4383:32583029,41947601:18695060 -g1,4383:32583029,41947601 -) -(1,4387:6630773,43182305:25952256,513147,126483 -k1,4386:8245508,43182305:142796 -k1,4386:10594901,43182305:142796 -k1,4386:11729256,43182305:142795 -k1,4386:12227912,43182305:142796 -k1,4386:14564853,43182305:142796 -k1,4386:16093735,43182305:142796 -k1,4386:16895822,43182305:142795 -k1,4386:18205814,43182305:142796 -k1,4386:18964648,43182305:142796 -k1,4386:20992915,43182305:142796 -k1,4386:22587333,43182305:142796 -k1,4386:25268993,43182305:142795 -k1,4386:25943286,43182305:142796 -k1,4386:26441942,43182305:142796 -k1,4386:28562615,43182305:142796 -k1,4386:29388295,43182305:142795 -k1,4386:29886951,43182305:142796 -k1,4386:31923737,43182305:142796 -k1,4386:32583029,43182305:0 -) -(1,4387:6630773,44023793:25952256,513147,134348 -k1,4386:7824533,44023793:174675 -k1,4386:9652681,44023793:174675 -k1,4386:11840623,44023793:174676 -k1,4386:12905277,44023793:174675 -k1,4386:14926101,44023793:174675 -k1,4386:15456636,44023793:174675 -k1,4386:17718633,44023793:174675 -k1,4386:19287260,44023793:174676 -k1,4386:20481020,44023793:174675 -k1,4386:22309168,44023793:174675 -k1,4386:24969624,44023793:174675 -k1,4386:25803591,44023793:174675 -k1,4386:27512465,44023793:174676 -k1,4386:28373302,44023793:174675 -k1,4386:29567062,44023793:174675 -k1,4386:32583029,44023793:0 -) -(1,4387:6630773,44865281:25952256,513147,126483 -k1,4386:8220346,44865281:200210 -k1,4386:10677617,44865281:200211 -k1,4386:12435618,44865281:200210 -k1,4386:13627388,44865281:200210 -k1,4386:16177720,44865281:200211 -k1,4386:17771881,44865281:200210 -k1,4386:20667587,44865281:200210 -(1,4386:20667587,44865281:0,459977,115847 -r1,4389:24894683,44865281:4227096,575824,115847 -k1,4386:20667587,44865281:-4227096 -) -(1,4386:20667587,44865281:4227096,459977,115847 -k1,4386:20667587,44865281:3277 -h1,4386:24891406,44865281:0,411205,112570 -) -k1,4386:25094894,44865281:200211 -k1,4386:26689055,44865281:200210 -k1,4386:27245125,44865281:200210 -k1,4386:29529381,44865281:200211 -k1,4386:31931601,44865281:200210 -k1,4386:32583029,44865281:0 -) -(1,4387:6630773,45706769:25952256,513147,134348 -k1,4386:8154187,45706769:238908 -k1,4386:9906322,45706769:238909 -k1,4386:11092881,45706769:238908 -k1,4386:13927015,45706769:238908 -k1,4386:19009690,45706769:238909 -k1,4386:23600844,45706769:238908 -k1,4386:24708105,45706769:238909 -k1,4386:25994278,45706769:238908 -k1,4386:27517692,45706769:238908 -k1,4386:29145964,45706769:238909 -k1,4386:31591469,45706769:238908 -k1,4386:32583029,45706769:0 -) -] -(1,4389:32583029,45706769:0,0,0 -g1,4389:32583029,45706769 -) -) -] -(1,4389:6630773,47279633:25952256,0,0 -h1,4389:6630773,47279633:25952256,0,0 -) -] -(1,4389:4262630,4025873:0,0,0 -[1,4389:-473656,4025873:0,0,0 -(1,4389:-473656,-710413:0,0,0 -(1,4389:-473656,-710413:0,0,0 -g1,4389:-473656,-710413 -) -g1,4389:-473656,-710413 -) -] -) -] -!22355 -}82 -Input:606:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:607:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:608:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:609:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:610:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:611:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!557 -{83 -[1,4475:4262630,47279633:28320399,43253760,0 -(1,4475:4262630,4025873:0,0,0 -[1,4475:-473656,4025873:0,0,0 -(1,4475:-473656,-710413:0,0,0 -(1,4475:-473656,-644877:0,0,0 -k1,4475:-473656,-644877:-65536 -) -(1,4475:-473656,4736287:0,0,0 -k1,4475:-473656,4736287:5209943 -) -g1,4475:-473656,-710413 -) -] -) -[1,4475:6630773,47279633:25952256,43253760,0 -[1,4475:6630773,4812305:25952256,786432,0 -(1,4475:6630773,4812305:25952256,505283,134348 -(1,4475:6630773,4812305:25952256,505283,134348 -g1,4475:3078558,4812305 -[1,4475:3078558,4812305:0,0,0 -(1,4475:3078558,2439708:0,1703936,0 -k1,4475:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,4475:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,4475:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,4475:3078558,4812305:0,0,0 -(1,4475:3078558,2439708:0,1703936,0 -g1,4475:29030814,2439708 -g1,4475:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,4475:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,4475:37855564,2439708:1179648,16384,0 -) -) -k1,4475:3078556,2439708:-34777008 -) -] -[1,4475:3078558,4812305:0,0,0 -(1,4475:3078558,49800853:0,16384,2228224 -k1,4475:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,4475:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,4475:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,4475:3078558,4812305:0,0,0 -(1,4475:3078558,49800853:0,16384,2228224 -g1,4475:29030814,49800853 -g1,4475:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,4475:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,4475:37855564,49800853:1179648,16384,0 -) -) -k1,4475:3078556,49800853:-34777008 -) -] -g1,4475:6630773,4812305 -k1,4475:19515153,4812305:12087462 -g1,4475:20901894,4812305 -g1,4475:21550700,4812305 -g1,4475:24864855,4812305 -g1,4475:27600327,4812305 -g1,4475:29010006,4812305 -) -) -] -[1,4475:6630773,45706769:25952256,40108032,0 -(1,4475:6630773,45706769:25952256,40108032,0 -(1,4475:6630773,45706769:0,0,0 -g1,4475:6630773,45706769 -) -[1,4475:6630773,45706769:25952256,40108032,0 -(1,4387:6630773,6254097:25952256,513147,134348 -k1,4386:9220318,6254097:206656 -k1,4386:10994596,6254097:206657 -k1,4386:12756421,6254097:206656 -(1,4386:12756421,6254097:0,452978,115847 -r1,4475:14169822,6254097:1413401,568825,115847 -k1,4386:12756421,6254097:-1413401 -) -(1,4386:12756421,6254097:1413401,452978,115847 -k1,4386:12756421,6254097:3277 -h1,4386:14166545,6254097:0,411205,112570 -) -k1,4386:14550148,6254097:206656 -k1,4386:15574694,6254097:206657 -k1,4386:16800435,6254097:206656 -k1,4386:20701355,6254097:206656 -k1,4386:21439508,6254097:206656 -k1,4386:23373694,6254097:206657 -k1,4386:25767286,6254097:206656 -k1,4386:26439903,6254097:206656 -k1,4386:28954738,6254097:206657 -k1,4386:29820686,6254097:206656 -k1,4386:32583029,6254097:0 -) -(1,4387:6630773,7095585:25952256,505283,134348 -k1,4386:9196179,7095585:221839 -k1,4386:10409578,7095585:221839 -k1,4386:13392450,7095585:221840 -k1,4386:14300451,7095585:221839 -k1,4386:18098590,7095585:221839 -k1,4386:19339514,7095585:221839 -k1,4386:21881983,7095585:221839 -k1,4386:24826189,7095585:221840 -k1,4386:26906629,7095585:221839 -k1,4386:29939307,7095585:221839 -k1,4386:32583029,7095585:0 -) -(1,4387:6630773,7937073:25952256,513147,134348 -g1,4386:9061503,7937073 -g1,4386:11190112,7937073 -g1,4386:12882251,7937073 -g1,4386:14100565,7937073 -g1,4386:17012329,7937073 -g1,4386:18301422,7937073 -g1,4386:20513917,7937073 -g1,4386:21244643,7937073 -k1,4387:32583029,7937073:8656653 -g1,4387:32583029,7937073 -) -v1,4389:6630773,9127539:0,393216,0 -(1,4436:6630773,27077224:25952256,18342901,196608 -g1,4436:6630773,27077224 -g1,4436:6630773,27077224 -g1,4436:6434165,27077224 -(1,4436:6434165,27077224:0,18342901,196608 -r1,4475:32779637,27077224:26345472,18539509,196608 -k1,4436:6434165,27077224:-26345472 -) -(1,4436:6434165,27077224:26345472,18342901,196608 -[1,4436:6630773,27077224:25952256,18146293,0 -(1,4391:6630773,9341449:25952256,410518,101187 -(1,4390:6630773,9341449:0,0,0 -g1,4390:6630773,9341449 -g1,4390:6630773,9341449 -g1,4390:6303093,9341449 -(1,4390:6303093,9341449:0,0,0 -) -g1,4390:6630773,9341449 -) -g1,4391:8211502,9341449 -g1,4391:9159940,9341449 -g1,4391:13269835,9341449 -g1,4391:13902127,9341449 -g1,4391:15482857,9341449 -g1,4391:16115149,9341449 -g1,4391:16747441,9341449 -g1,4391:18328170,9341449 -g1,4391:18960462,9341449 -g1,4391:19592754,9341449 -g1,4391:22121921,9341449 -h1,4391:24334940,9341449:0,0,0 -k1,4391:32583029,9341449:8248089 -g1,4391:32583029,9341449 -) -(1,4392:6630773,10007627:25952256,410518,6290 -h1,4392:6630773,10007627:0,0,0 -h1,4392:7895356,10007627:0,0,0 -k1,4392:32583028,10007627:24687672 -g1,4392:32583028,10007627 -) -(1,4402:6630773,10739341:25952256,379060,101187 -(1,4394:6630773,10739341:0,0,0 -g1,4394:6630773,10739341 -g1,4394:6630773,10739341 -g1,4394:6303093,10739341 -(1,4394:6303093,10739341:0,0,0 -) -g1,4394:6630773,10739341 -) -g1,4402:7579210,10739341 -g1,4402:7895356,10739341 -g1,4402:8211502,10739341 -g1,4402:8843794,10739341 -g1,4402:9476086,10739341 -g1,4402:9792232,10739341 -g1,4402:10108378,10739341 -g1,4402:10424524,10739341 -g1,4402:10740670,10739341 -h1,4402:11056816,10739341:0,0,0 -k1,4402:32583028,10739341:21526212 -g1,4402:32583028,10739341 -) -(1,4402:6630773,11405519:25952256,388497,7863 -h1,4402:6630773,11405519:0,0,0 -g1,4402:7579210,11405519 -g1,4402:8211502,11405519 -g1,4402:8843794,11405519 -g1,4402:9476086,11405519 -g1,4402:9792232,11405519 -h1,4402:11056815,11405519:0,0,0 -k1,4402:32583029,11405519:21526214 -g1,4402:32583029,11405519 -) -(1,4402:6630773,12071697:25952256,388497,7863 -h1,4402:6630773,12071697:0,0,0 -g1,4402:7579210,12071697 -g1,4402:8211502,12071697 -g1,4402:8843794,12071697 -g1,4402:9476086,12071697 -h1,4402:11056814,12071697:0,0,0 -k1,4402:32583030,12071697:21526216 -g1,4402:32583030,12071697 -) -(1,4402:6630773,12737875:25952256,388497,9436 -h1,4402:6630773,12737875:0,0,0 -g1,4402:7579210,12737875 -g1,4402:8211502,12737875 -g1,4402:8843794,12737875 -g1,4402:9476086,12737875 -g1,4402:9792232,12737875 -h1,4402:11056815,12737875:0,0,0 -k1,4402:32583029,12737875:21526214 -g1,4402:32583029,12737875 -) -(1,4402:6630773,13404053:25952256,379060,7863 -h1,4402:6630773,13404053:0,0,0 -g1,4402:7579210,13404053 -g1,4402:8211502,13404053 -g1,4402:8843794,13404053 -g1,4402:9476086,13404053 -h1,4402:11056814,13404053:0,0,0 -k1,4402:32583030,13404053:21526216 -g1,4402:32583030,13404053 -) -(1,4402:6630773,14070231:25952256,379060,9436 -h1,4402:6630773,14070231:0,0,0 -g1,4402:7579210,14070231 -g1,4402:8211502,14070231 -g1,4402:8843794,14070231 -g1,4402:9476086,14070231 -g1,4402:9792232,14070231 -h1,4402:11056815,14070231:0,0,0 -k1,4402:32583029,14070231:21526214 -g1,4402:32583029,14070231 -) -(1,4402:6630773,14736409:25952256,388497,9436 -h1,4402:6630773,14736409:0,0,0 -g1,4402:7579210,14736409 -g1,4402:8211502,14736409 -g1,4402:8843794,14736409 -g1,4402:9476086,14736409 -h1,4402:11056814,14736409:0,0,0 -k1,4402:32583030,14736409:21526216 -g1,4402:32583030,14736409 -) -(1,4404:6630773,16057947:25952256,410518,76021 -(1,4403:6630773,16057947:0,0,0 -g1,4403:6630773,16057947 -g1,4403:6630773,16057947 -g1,4403:6303093,16057947 -(1,4403:6303093,16057947:0,0,0 -) -g1,4403:6630773,16057947 -) -k1,4404:6630773,16057947:0 -h1,4404:9476084,16057947:0,0,0 -k1,4404:32583028,16057947:23106944 -g1,4404:32583028,16057947 -) -(1,4411:6630773,16789661:25952256,410518,9436 -(1,4406:6630773,16789661:0,0,0 -g1,4406:6630773,16789661 -g1,4406:6630773,16789661 -g1,4406:6303093,16789661 -(1,4406:6303093,16789661:0,0,0 -) -g1,4406:6630773,16789661 -) -g1,4411:7579210,16789661 -g1,4411:12005251,16789661 -g1,4411:12637543,16789661 -g1,4411:14218272,16789661 -g1,4411:15166709,16789661 -g1,4411:15482855,16789661 -g1,4411:16115147,16789661 -h1,4411:19276604,16789661:0,0,0 -k1,4411:32583029,16789661:13306425 -g1,4411:32583029,16789661 -) -(1,4411:6630773,17455839:25952256,410518,31456 -h1,4411:6630773,17455839:0,0,0 -g1,4411:7579210,17455839 -g1,4411:7895356,17455839 -g1,4411:8527648,17455839 -g1,4411:9476085,17455839 -g1,4411:10740668,17455839 -g1,4411:11056814,17455839 -g1,4411:11689106,17455839 -g1,4411:12321398,17455839 -g1,4411:12953690,17455839 -g1,4411:13585982,17455839 -g1,4411:14218274,17455839 -h1,4411:14534420,17455839:0,0,0 -k1,4411:32583028,17455839:18048608 -g1,4411:32583028,17455839 -) -(1,4411:6630773,18122017:25952256,410518,101187 -h1,4411:6630773,18122017:0,0,0 -g1,4411:7579210,18122017 -g1,4411:7895356,18122017 -g1,4411:8527648,18122017 -g1,4411:9476085,18122017 -g1,4411:10740668,18122017 -g1,4411:11056814,18122017 -g1,4411:12321397,18122017 -g1,4411:13585980,18122017 -g1,4411:14850563,18122017 -g1,4411:16115146,18122017 -h1,4411:17063583,18122017:0,0,0 -k1,4411:32583029,18122017:15519446 -g1,4411:32583029,18122017 -) -(1,4411:6630773,18788195:25952256,410518,107478 -h1,4411:6630773,18788195:0,0,0 -g1,4411:7579210,18788195 -g1,4411:7895356,18788195 -g1,4411:8527648,18788195 -g1,4411:9476085,18788195 -g1,4411:11056814,18788195 -g1,4411:11372960,18788195 -g1,4411:12953689,18788195 -g1,4411:14850563,18788195 -g1,4411:16431292,18788195 -g1,4411:18328166,18788195 -g1,4411:19908895,18788195 -h1,4411:21489623,18788195:0,0,0 -k1,4411:32583029,18788195:11093406 -g1,4411:32583029,18788195 -) -(1,4413:6630773,20109733:25952256,410518,76021 -(1,4412:6630773,20109733:0,0,0 -g1,4412:6630773,20109733 -g1,4412:6630773,20109733 -g1,4412:6303093,20109733 -(1,4412:6303093,20109733:0,0,0 -) -g1,4412:6630773,20109733 -) -k1,4413:6630773,20109733:0 -h1,4413:10108375,20109733:0,0,0 -k1,4413:32583029,20109733:22474654 -g1,4413:32583029,20109733 -) -(1,4417:6630773,20841447:25952256,410518,76021 -(1,4415:6630773,20841447:0,0,0 -g1,4415:6630773,20841447 -g1,4415:6630773,20841447 -g1,4415:6303093,20841447 -(1,4415:6303093,20841447:0,0,0 -) -g1,4415:6630773,20841447 -) -g1,4417:7579210,20841447 -g1,4417:8843793,20841447 -h1,4417:12637541,20841447:0,0,0 -k1,4417:32583029,20841447:19945488 -g1,4417:32583029,20841447 -) -(1,4419:6630773,22162985:25952256,410518,76021 -(1,4418:6630773,22162985:0,0,0 -g1,4418:6630773,22162985 -g1,4418:6630773,22162985 -g1,4418:6303093,22162985 -(1,4418:6303093,22162985:0,0,0 -) -g1,4418:6630773,22162985 -) -k1,4419:6630773,22162985:0 -h1,4419:9792230,22162985:0,0,0 -k1,4419:32583030,22162985:22790800 -g1,4419:32583030,22162985 -) -(1,4423:6630773,22894699:25952256,404226,76021 -(1,4421:6630773,22894699:0,0,0 -g1,4421:6630773,22894699 -g1,4421:6630773,22894699 -g1,4421:6303093,22894699 -(1,4421:6303093,22894699:0,0,0 -) -g1,4421:6630773,22894699 -) -g1,4423:7579210,22894699 -g1,4423:8843793,22894699 -h1,4423:10740667,22894699:0,0,0 -k1,4423:32583029,22894699:21842362 -g1,4423:32583029,22894699 -) -(1,4425:6630773,24216237:25952256,410518,76021 -(1,4424:6630773,24216237:0,0,0 -g1,4424:6630773,24216237 -g1,4424:6630773,24216237 -g1,4424:6303093,24216237 -(1,4424:6303093,24216237:0,0,0 -) -g1,4424:6630773,24216237 -) -k1,4425:6630773,24216237:0 -h1,4425:12637541,24216237:0,0,0 -k1,4425:32583029,24216237:19945488 -g1,4425:32583029,24216237 -) -(1,4429:6630773,24947951:25952256,404226,76021 -(1,4427:6630773,24947951:0,0,0 -g1,4427:6630773,24947951 -g1,4427:6630773,24947951 -g1,4427:6303093,24947951 -(1,4427:6303093,24947951:0,0,0 -) -g1,4427:6630773,24947951 -) -g1,4429:7579210,24947951 -g1,4429:8843793,24947951 -h1,4429:10108376,24947951:0,0,0 -k1,4429:32583028,24947951:22474652 -g1,4429:32583028,24947951 -) -(1,4431:6630773,26269489:25952256,410518,76021 -(1,4430:6630773,26269489:0,0,0 -g1,4430:6630773,26269489 -g1,4430:6630773,26269489 -g1,4430:6303093,26269489 -(1,4430:6303093,26269489:0,0,0 -) -g1,4430:6630773,26269489 -) -k1,4431:6630773,26269489:0 -h1,4431:10740667,26269489:0,0,0 -k1,4431:32583029,26269489:21842362 -g1,4431:32583029,26269489 -) -(1,4435:6630773,27001203:25952256,404226,76021 -(1,4433:6630773,27001203:0,0,0 -g1,4433:6630773,27001203 -g1,4433:6630773,27001203 -g1,4433:6303093,27001203 -(1,4433:6303093,27001203:0,0,0 -) -g1,4433:6630773,27001203 -) -g1,4435:7579210,27001203 -g1,4435:8843793,27001203 -h1,4435:10108376,27001203:0,0,0 -k1,4435:32583028,27001203:22474652 -g1,4435:32583028,27001203 -) -] -) -g1,4436:32583029,27077224 -g1,4436:6630773,27077224 -g1,4436:6630773,27077224 -g1,4436:32583029,27077224 -g1,4436:32583029,27077224 -) -h1,4436:6630773,27273832:0,0,0 -(1,4440:6630773,28639608:25952256,513147,134348 -h1,4439:6630773,28639608:983040,0,0 -k1,4439:10553711,28639608:188697 -k1,4439:11401700,28639608:188697 -k1,4439:12979760,28639608:188697 -k1,4439:15375053,28639608:188696 -k1,4439:16095247,28639608:188697 -k1,4439:18485954,28639608:188697 -k1,4439:19326079,28639608:188697 -k1,4439:20799282,28639608:188697 -k1,4439:21647271,28639608:188697 -k1,4439:22855053,28639608:188697 -k1,4439:26486355,28639608:188696 -k1,4439:27842248,28639608:188697 -k1,4439:29103114,28639608:188697 -k1,4439:30358082,28639608:188697 -k1,4439:32583029,28639608:0 -) -(1,4440:6630773,29481096:25952256,505283,134348 -k1,4439:10247784,29481096:138360 -k1,4439:11339692,29481096:138359 -k1,4439:12582334,29481096:138360 -k1,4439:14469849,29481096:138359 -k1,4439:16002160,29481096:138360 -k1,4439:18887133,29481096:138359 -(1,4439:18887133,29481096:0,452978,115847 -r1,4475:20300534,29481096:1413401,568825,115847 -k1,4439:18887133,29481096:-1413401 -) -(1,4439:18887133,29481096:1413401,452978,115847 -k1,4439:18887133,29481096:3277 -h1,4439:20297257,29481096:0,411205,112570 -) -k1,4439:20438894,29481096:138360 -k1,4439:21228681,29481096:138359 -k1,4439:23571017,29481096:138360 -k1,4439:26902290,29481096:138359 -k1,4439:30055961,29481096:138360 -k1,4439:32583029,29481096:0 -) -(1,4440:6630773,30322584:25952256,513147,134348 -g1,4439:7489294,30322584 -g1,4439:9426538,30322584 -g1,4439:10644852,30322584 -g1,4439:13557272,30322584 -g1,4439:14372539,30322584 -g1,4439:14927628,30322584 -g1,4439:18573395,30322584 -g1,4439:19766150,30322584 -g1,4439:20648264,30322584 -k1,4440:32583029,30322584:7867601 -g1,4440:32583029,30322584 -) -v1,4442:6630773,31513050:0,393216,0 -(1,4467:6630773,38694451:25952256,7574617,196608 -g1,4467:6630773,38694451 -g1,4467:6630773,38694451 -g1,4467:6434165,38694451 -(1,4467:6434165,38694451:0,7574617,196608 -r1,4475:32779637,38694451:26345472,7771225,196608 -k1,4467:6434165,38694451:-26345472 -) -(1,4467:6434165,38694451:26345472,7574617,196608 -[1,4467:6630773,38694451:25952256,7378009,0 -(1,4444:6630773,31726960:25952256,410518,31456 -(1,4443:6630773,31726960:0,0,0 -g1,4443:6630773,31726960 -g1,4443:6630773,31726960 -g1,4443:6303093,31726960 -(1,4443:6303093,31726960:0,0,0 -) -g1,4443:6630773,31726960 -) -h1,4444:8527648,31726960:0,0,0 -k1,4444:32583028,31726960:24055380 -g1,4444:32583028,31726960 -) -(1,4448:6630773,32458674:25952256,404226,76021 -(1,4446:6630773,32458674:0,0,0 -g1,4446:6630773,32458674 -g1,4446:6630773,32458674 -g1,4446:6303093,32458674 -(1,4446:6303093,32458674:0,0,0 -) -g1,4446:6630773,32458674 -) -g1,4448:7579210,32458674 -g1,4448:8843793,32458674 -g1,4448:9476085,32458674 -g1,4448:10108377,32458674 -g1,4448:10740669,32458674 -g1,4448:11372961,32458674 -g1,4448:12005253,32458674 -h1,4448:12321399,32458674:0,0,0 -k1,4448:32583029,32458674:20261630 -g1,4448:32583029,32458674 -) -(1,4450:6630773,33780212:25952256,410518,76021 -(1,4449:6630773,33780212:0,0,0 -g1,4449:6630773,33780212 -g1,4449:6630773,33780212 -g1,4449:6303093,33780212 -(1,4449:6303093,33780212:0,0,0 -) -g1,4449:6630773,33780212 -) -h1,4450:10108375,33780212:0,0,0 -k1,4450:32583029,33780212:22474654 -g1,4450:32583029,33780212 -) -(1,4454:6630773,34511926:25952256,404226,76021 -(1,4452:6630773,34511926:0,0,0 -g1,4452:6630773,34511926 -g1,4452:6630773,34511926 -g1,4452:6303093,34511926 -(1,4452:6303093,34511926:0,0,0 -) -g1,4452:6630773,34511926 -) -g1,4454:7579210,34511926 -g1,4454:8843793,34511926 -g1,4454:9476085,34511926 -g1,4454:10108377,34511926 -g1,4454:10740669,34511926 -g1,4454:11372961,34511926 -g1,4454:12005253,34511926 -h1,4454:12321399,34511926:0,0,0 -k1,4454:32583029,34511926:20261630 -g1,4454:32583029,34511926 -) -(1,4456:6630773,35833464:25952256,410518,76021 -(1,4455:6630773,35833464:0,0,0 -g1,4455:6630773,35833464 -g1,4455:6630773,35833464 -g1,4455:6303093,35833464 -(1,4455:6303093,35833464:0,0,0 -) -g1,4455:6630773,35833464 -) -h1,4456:9476084,35833464:0,0,0 -k1,4456:32583028,35833464:23106944 -g1,4456:32583028,35833464 -) -(1,4460:6630773,36565178:25952256,404226,76021 -(1,4458:6630773,36565178:0,0,0 -g1,4458:6630773,36565178 -g1,4458:6630773,36565178 -g1,4458:6303093,36565178 -(1,4458:6303093,36565178:0,0,0 -) -g1,4458:6630773,36565178 -) -g1,4460:7579210,36565178 -g1,4460:8843793,36565178 -g1,4460:9476085,36565178 -g1,4460:10108377,36565178 -g1,4460:10740669,36565178 -g1,4460:11372961,36565178 -g1,4460:12005253,36565178 -h1,4460:12321399,36565178:0,0,0 -k1,4460:32583029,36565178:20261630 -g1,4460:32583029,36565178 -) -(1,4462:6630773,37886716:25952256,410518,76021 -(1,4461:6630773,37886716:0,0,0 -g1,4461:6630773,37886716 -g1,4461:6630773,37886716 -g1,4461:6303093,37886716 -(1,4461:6303093,37886716:0,0,0 -) -g1,4461:6630773,37886716 -) -k1,4462:6630773,37886716:0 -h1,4462:10108375,37886716:0,0,0 -k1,4462:32583029,37886716:22474654 -g1,4462:32583029,37886716 -) -(1,4466:6630773,38618430:25952256,410518,76021 -(1,4464:6630773,38618430:0,0,0 -g1,4464:6630773,38618430 -g1,4464:6630773,38618430 -g1,4464:6303093,38618430 -(1,4464:6303093,38618430:0,0,0 -) -g1,4464:6630773,38618430 -) -g1,4466:7579210,38618430 -g1,4466:8843793,38618430 -h1,4466:12637541,38618430:0,0,0 -k1,4466:32583029,38618430:19945488 -g1,4466:32583029,38618430 -) -] -) -g1,4467:32583029,38694451 -g1,4467:6630773,38694451 -g1,4467:6630773,38694451 -g1,4467:32583029,38694451 -g1,4467:32583029,38694451 -) -h1,4467:6630773,38891059:0,0,0 -(1,4471:6630773,40256835:25952256,513147,134348 -h1,4470:6630773,40256835:983040,0,0 -k1,4470:9355639,40256835:262678 -k1,4470:12313813,40256835:262678 -(1,4470:12313813,40256835:0,452978,115847 -r1,4475:14782350,40256835:2468537,568825,115847 -k1,4470:12313813,40256835:-2468537 -) -(1,4470:12313813,40256835:2468537,452978,115847 -k1,4470:12313813,40256835:3277 -h1,4470:14779073,40256835:0,411205,112570 -) -k1,4470:15045028,40256835:262678 -k1,4470:16176058,40256835:262678 -k1,4470:17543018,40256835:262678 -k1,4470:19621699,40256835:262678 -k1,4470:20903462,40256835:262678 -k1,4470:22721309,40256835:262678 -k1,4470:23643279,40256835:262678 -k1,4470:24676660,40256835:262678 -k1,4470:25354117,40256835:262614 -k1,4470:27576321,40256835:262678 -k1,4470:29071076,40256835:262678 -k1,4470:31612441,40256835:262678 -h1,4470:32583029,40256835:0,0,0 -k1,4470:32583029,40256835:0 -) -(1,4471:6630773,41098323:25952256,505283,134348 -k1,4470:7662901,41098323:222758 -k1,4470:9383812,41098323:222758 -h1,4470:10180730,41098323:0,0,0 -k1,4470:10784252,41098323:222758 -k1,4470:11824899,41098323:222758 -k1,4470:12916009,41098323:222758 -k1,4470:14345940,41098323:222758 -k1,4470:15184736,41098323:222758 -k1,4470:16426579,41098323:222758 -k1,4470:17821776,41098323:222758 -k1,4470:20799012,41098323:222758 -k1,4470:23496409,41098323:222758 -(1,4470:23496409,41098323:0,452978,115847 -r1,4475:24909810,41098323:1413401,568825,115847 -k1,4470:23496409,41098323:-1413401 -) -(1,4470:23496409,41098323:1413401,452978,115847 -k1,4470:23496409,41098323:3277 -h1,4470:24906533,41098323:0,411205,112570 -) -k1,4470:25132568,41098323:222758 -k1,4470:26546771,41098323:222758 -(1,4470:26546771,41098323:0,459977,115847 -r1,4475:30070443,41098323:3523672,575824,115847 -k1,4470:26546771,41098323:-3523672 -) -(1,4470:26546771,41098323:3523672,459977,115847 -k1,4470:26546771,41098323:3277 -h1,4470:30067166,41098323:0,411205,112570 -) -k1,4470:30293201,41098323:222758 -k1,4470:32583029,41098323:0 -) -(1,4471:6630773,41939811:25952256,513147,134348 -k1,4470:8933217,41939811:165970 -k1,4470:9750614,41939811:165969 -k1,4470:11089023,41939811:165970 -k1,4470:14017336,41939811:165970 -k1,4470:16589788,41939811:165970 -k1,4470:19690459,41939811:165969 -k1,4470:21365068,41939811:165970 -k1,4470:25362273,41939811:165970 -k1,4470:26059740,41939811:165970 -k1,4470:28080378,41939811:165969 -k1,4470:29055718,41939811:165970 -k1,4470:29577548,41939811:165970 -k1,4470:32583029,41939811:0 -) -(1,4471:6630773,42781299:25952256,513147,126483 -k1,4470:7488182,42781299:198117 -k1,4470:10092780,42781299:198116 -k1,4470:11244446,42781299:198117 -k1,4470:12489828,42781299:198117 -k1,4470:13972450,42781299:198116 -k1,4470:15725736,42781299:198117 -(1,4470:15725736,42781299:0,459977,115847 -r1,4475:19249408,42781299:3523672,575824,115847 -k1,4470:15725736,42781299:-3523672 -) -(1,4470:15725736,42781299:3523672,459977,115847 -k1,4470:15725736,42781299:3277 -h1,4470:19246131,42781299:0,411205,112570 -) -k1,4470:19447525,42781299:198117 -k1,4470:20177138,42781299:198116 -k1,4470:22758144,42781299:198117 -k1,4470:24523882,42781299:198117 -k1,4470:26277167,42781299:198116 -(1,4470:26277167,42781299:0,452978,115847 -r1,4475:27690568,42781299:1413401,568825,115847 -k1,4470:26277167,42781299:-1413401 -) -(1,4470:26277167,42781299:1413401,452978,115847 -k1,4470:26277167,42781299:3277 -h1,4470:27687291,42781299:0,411205,112570 -) -k1,4470:28062355,42781299:198117 -k1,4470:32583029,42781299:0 -) -(1,4471:6630773,43622787:25952256,513147,134348 -k1,4470:8238220,43622787:218084 -k1,4470:10662900,43622787:218083 -k1,4470:13005661,43622787:218084 -k1,4470:14242829,43622787:218083 -k1,4470:17245538,43622787:218084 -k1,4470:18655066,43622787:218083 -k1,4470:23501303,43622787:218084 -k1,4470:24378678,43622787:218083 -k1,4470:26094260,43622787:218084 -k1,4470:26998505,43622787:218083 -k1,4470:28605297,43622787:218084 -k1,4470:29509542,43622787:218083 -k1,4470:31107814,43622787:218084 -k1,4470:32583029,43622787:0 -) -(1,4471:6630773,44464275:25952256,513147,126483 -g1,4470:7896273,44464275 -g1,4470:9605452,44464275 -g1,4470:12024385,44464275 -g1,4470:12985142,44464275 -g1,4470:14467566,44464275 -g1,4470:16153807,44464275 -g1,4470:18734614,44464275 -g1,4470:19881494,44464275 -g1,4470:21470086,44464275 -k1,4471:32583029,44464275:8732675 -g1,4471:32583029,44464275 -) -(1,4473:6630773,45305763:25952256,513147,126483 -h1,4472:6630773,45305763:983040,0,0 -k1,4472:8428906,45305763:187258 -k1,4472:9635249,45305763:187258 -k1,4472:11475980,45305763:187258 -k1,4472:12901213,45305763:187258 -k1,4472:13774633,45305763:187258 -k1,4472:15355842,45305763:187258 -k1,4472:18024948,45305763:187258 -k1,4472:19080559,45305763:187259 -k1,4472:20372099,45305763:187258 -k1,4472:21756700,45305763:187258 -k1,4472:24897666,45305763:187258 -k1,4472:25736352,45305763:187258 -k1,4472:27247437,45305763:187258 -k1,4472:28626140,45305763:187258 -k1,4472:30202761,45305763:187258 -k1,4473:32583029,45305763:0 -k1,4473:32583029,45305763:0 -) -] -(1,4475:32583029,45706769:0,0,0 -g1,4475:32583029,45706769 -) -) -] -(1,4475:6630773,47279633:25952256,0,0 -h1,4475:6630773,47279633:25952256,0,0 -) -] -(1,4475:4262630,4025873:0,0,0 -[1,4475:-473656,4025873:0,0,0 -(1,4475:-473656,-710413:0,0,0 -(1,4475:-473656,-710413:0,0,0 -g1,4475:-473656,-710413 -) -g1,4475:-473656,-710413 -) -] -) -] -!23438 -}83 -Input:612:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:613:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:614:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:615:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:616:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:617:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:618:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:619:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:620:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!830 -{84 -[1,4675:4262630,47279633:28320399,43253760,0 -(1,4675:4262630,4025873:0,0,0 -[1,4675:-473656,4025873:0,0,0 -(1,4675:-473656,-710413:0,0,0 -(1,4675:-473656,-644877:0,0,0 -k1,4675:-473656,-644877:-65536 -) -(1,4675:-473656,4736287:0,0,0 -k1,4675:-473656,4736287:5209943 -) -g1,4675:-473656,-710413 -) -] -) -[1,4675:6630773,47279633:25952256,43253760,0 -[1,4675:6630773,4812305:25952256,786432,0 -(1,4675:6630773,4812305:25952256,513147,126483 -(1,4675:6630773,4812305:25952256,513147,126483 -g1,4675:3078558,4812305 -[1,4675:3078558,4812305:0,0,0 -(1,4675:3078558,2439708:0,1703936,0 -k1,4675:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,4675:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,4675:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,4675:3078558,4812305:0,0,0 -(1,4675:3078558,2439708:0,1703936,0 -g1,4675:29030814,2439708 -g1,4675:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,4675:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,4675:37855564,2439708:1179648,16384,0 -) -) -k1,4675:3078556,2439708:-34777008 -) -] -[1,4675:3078558,4812305:0,0,0 -(1,4675:3078558,49800853:0,16384,2228224 -k1,4675:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,4675:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,4675:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,4675:3078558,4812305:0,0,0 -(1,4675:3078558,49800853:0,16384,2228224 -g1,4675:29030814,49800853 -g1,4675:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,4675:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,4675:37855564,49800853:1179648,16384,0 -) -) -k1,4675:3078556,49800853:-34777008 -) -] -g1,4675:6630773,4812305 -g1,4675:6630773,4812305 -g1,4675:8364200,4812305 -g1,4675:10765439,4812305 -k1,4675:31786111,4812305:21020672 -) -) -] -[1,4675:6630773,45706769:25952256,40108032,0 -(1,4675:6630773,45706769:25952256,40108032,0 -(1,4675:6630773,45706769:0,0,0 -g1,4675:6630773,45706769 -) -[1,4675:6630773,45706769:25952256,40108032,0 -v1,4475:6630773,6254097:0,393216,0 -(1,4489:6630773,11894423:25952256,6033542,196608 -g1,4489:6630773,11894423 -g1,4489:6630773,11894423 -g1,4489:6434165,11894423 -(1,4489:6434165,11894423:0,6033542,196608 -r1,4675:32779637,11894423:26345472,6230150,196608 -k1,4489:6434165,11894423:-26345472 -) -(1,4489:6434165,11894423:26345472,6033542,196608 -[1,4489:6630773,11894423:25952256,5836934,0 -(1,4477:6630773,6468007:25952256,410518,31456 -(1,4476:6630773,6468007:0,0,0 -g1,4476:6630773,6468007 -g1,4476:6630773,6468007 -g1,4476:6303093,6468007 -(1,4476:6303093,6468007:0,0,0 -) -g1,4476:6630773,6468007 -) -g1,4477:9159939,6468007 -g1,4477:10108377,6468007 -h1,4477:11056815,6468007:0,0,0 -k1,4477:32583029,6468007:21526214 -g1,4477:32583029,6468007 -) -(1,4478:6630773,7134185:25952256,410518,31456 -h1,4478:6630773,7134185:0,0,0 -g1,4478:9159939,7134185 -g1,4478:10108377,7134185 -h1,4478:11056814,7134185:0,0,0 -k1,4478:32583030,7134185:21526216 -g1,4478:32583030,7134185 -) -(1,4479:6630773,7800363:25952256,410518,76021 -h1,4479:6630773,7800363:0,0,0 -k1,4479:6630773,7800363:0 -h1,4479:9476084,7800363:0,0,0 -k1,4479:32583028,7800363:23106944 -g1,4479:32583028,7800363 -) -(1,4488:6630773,8532077:25952256,410518,9436 -(1,4481:6630773,8532077:0,0,0 -g1,4481:6630773,8532077 -g1,4481:6630773,8532077 -g1,4481:6303093,8532077 -(1,4481:6303093,8532077:0,0,0 -) -g1,4481:6630773,8532077 -) -g1,4488:7579210,8532077 -g1,4488:12005251,8532077 -g1,4488:12637543,8532077 -g1,4488:14218272,8532077 -g1,4488:15166709,8532077 -g1,4488:15482855,8532077 -g1,4488:16115147,8532077 -h1,4488:19276604,8532077:0,0,0 -k1,4488:32583029,8532077:13306425 -g1,4488:32583029,8532077 -) -(1,4488:6630773,9198255:25952256,410518,31456 -h1,4488:6630773,9198255:0,0,0 -g1,4488:7579210,9198255 -g1,4488:7895356,9198255 -g1,4488:8527648,9198255 -g1,4488:9159940,9198255 -g1,4488:9792232,9198255 -g1,4488:11056815,9198255 -g1,4488:11372961,9198255 -g1,4488:12005253,9198255 -g1,4488:12637545,9198255 -g1,4488:13269837,9198255 -g1,4488:13902129,9198255 -g1,4488:14534421,9198255 -h1,4488:14850567,9198255:0,0,0 -k1,4488:32583029,9198255:17732462 -g1,4488:32583029,9198255 -) -(1,4488:6630773,9864433:25952256,410518,101187 -h1,4488:6630773,9864433:0,0,0 -g1,4488:7579210,9864433 -g1,4488:7895356,9864433 -g1,4488:8527648,9864433 -g1,4488:9159940,9864433 -g1,4488:9792232,9864433 -g1,4488:11056815,9864433 -g1,4488:11372961,9864433 -g1,4488:12637544,9864433 -g1,4488:13902127,9864433 -g1,4488:15166710,9864433 -g1,4488:16431293,9864433 -h1,4488:17379730,9864433:0,0,0 -k1,4488:32583029,9864433:15203299 -g1,4488:32583029,9864433 -) -(1,4488:6630773,10530611:25952256,410518,107478 -h1,4488:6630773,10530611:0,0,0 -g1,4488:7579210,10530611 -g1,4488:7895356,10530611 -g1,4488:8527648,10530611 -g1,4488:9159940,10530611 -g1,4488:9792232,10530611 -g1,4488:11372961,10530611 -g1,4488:11689107,10530611 -g1,4488:13269836,10530611 -g1,4488:15166710,10530611 -g1,4488:16747439,10530611 -g1,4488:18644313,10530611 -g1,4488:20225042,10530611 -h1,4488:21805770,10530611:0,0,0 -k1,4488:32583029,10530611:10777259 -g1,4488:32583029,10530611 -) -(1,4488:6630773,11196789:25952256,410518,31456 -h1,4488:6630773,11196789:0,0,0 -g1,4488:7579210,11196789 -g1,4488:7895356,11196789 -g1,4488:8527648,11196789 -g1,4488:9792231,11196789 -g1,4488:11056814,11196789 -g1,4488:11372960,11196789 -g1,4488:12005252,11196789 -g1,4488:12637544,11196789 -g1,4488:13269836,11196789 -g1,4488:13902128,11196789 -g1,4488:14534420,11196789 -h1,4488:14850566,11196789:0,0,0 -k1,4488:32583030,11196789:17732464 -g1,4488:32583030,11196789 -) -(1,4488:6630773,11862967:25952256,410518,31456 -h1,4488:6630773,11862967:0,0,0 -g1,4488:7579210,11862967 -g1,4488:7895356,11862967 -g1,4488:8527648,11862967 -g1,4488:9792231,11862967 -g1,4488:11056814,11862967 -g1,4488:11372960,11862967 -g1,4488:12637543,11862967 -g1,4488:13902126,11862967 -g1,4488:15166709,11862967 -g1,4488:16431292,11862967 -h1,4488:17379729,11862967:0,0,0 -k1,4488:32583029,11862967:15203300 -g1,4488:32583029,11862967 -) -] -) -g1,4489:32583029,11894423 -g1,4489:6630773,11894423 -g1,4489:6630773,11894423 -g1,4489:32583029,11894423 -g1,4489:32583029,11894423 -) -h1,4489:6630773,12091031:0,0,0 -(1,4493:6630773,13456807:25952256,513147,115847 -h1,4492:6630773,13456807:983040,0,0 -k1,4492:8809612,13456807:242250 -k1,4492:10527077,13456807:242250 -k1,4492:12734751,13456807:242249 -k1,4492:14149440,13456807:242250 -k1,4492:17104881,13456807:242250 -k1,4492:17998559,13456807:242250 -k1,4492:19259894,13456807:242250 -k1,4492:20891506,13456807:242249 -k1,4492:23183722,13456807:242250 -k1,4492:24617417,13456807:242250 -k1,4492:25475705,13456807:242250 -k1,4492:26737040,13456807:242250 -k1,4492:28346370,13456807:242249 -k1,4492:29247912,13456807:242250 -k1,4492:31873051,13456807:242250 -(1,4492:31873051,13456807:0,435480,115847 -r1,4675:32583029,13456807:709978,551327,115847 -k1,4492:31873051,13456807:-709978 -) -(1,4492:31873051,13456807:709978,435480,115847 -k1,4492:31873051,13456807:3277 -h1,4492:32579752,13456807:0,411205,112570 -) -k1,4492:32583029,13456807:0 -) -(1,4493:6630773,14298295:25952256,513147,134348 -k1,4492:9637716,14298295:147607 -k1,4492:11223838,14298295:147607 -k1,4492:13207764,14298295:147607 -k1,4492:14736216,14298295:147608 -k1,4492:15415320,14298295:147607 -k1,4492:17481821,14298295:147607 -k1,4492:18953255,14298295:147607 -k1,4492:20292307,14298295:147607 -k1,4492:21829277,14298295:147607 -k1,4492:24183482,14298295:147608 -k1,4492:26074347,14298295:147607 -k1,4492:30310745,14298295:147607 -k1,4492:31074390,14298295:147607 -k1,4492:32583029,14298295:0 -) -(1,4493:6630773,15139783:25952256,513147,134348 -k1,4492:9788095,15139783:223931 -k1,4492:10639862,15139783:223932 -k1,4492:11219653,15139783:223931 -k1,4492:12832948,15139783:223932 -k1,4492:15106845,15139783:223931 -k1,4492:18161931,15139783:223931 -k1,4492:19941032,15139783:223932 -k1,4492:21356408,15139783:223931 -k1,4492:23362918,15139783:223931 -k1,4492:24691132,15139783:223932 -k1,4492:25662829,15139783:223931 -k1,4492:28649104,15139783:223932 -k1,4492:29820686,15139783:223931 -k1,4492:32583029,15139783:0 -) -(1,4493:6630773,15981271:25952256,513147,134348 -k1,4492:9671795,15981271:199381 -k1,4492:13172223,15981271:199380 -k1,4492:14751792,15981271:199381 -k1,4492:15942733,15981271:199381 -k1,4492:18854648,15981271:199380 -k1,4492:19705457,15981271:199381 -k1,4492:20652604,15981271:199381 -k1,4492:23160163,15981271:199381 -k1,4492:24042428,15981271:199380 -k1,4492:26466101,15981271:199381 -k1,4492:27324774,15981271:199381 -k1,4492:28543239,15981271:199380 -k1,4492:30396093,15981271:199381 -k1,4492:32583029,15981271:0 -) -(1,4493:6630773,16822759:25952256,513147,134348 -k1,4492:7475485,16822759:216877 -k1,4492:8711447,16822759:216877 -k1,4492:10295405,16822759:216877 -k1,4492:11171575,16822759:216878 -k1,4492:12885950,16822759:216877 -k1,4492:14757611,16822759:216877 -k1,4492:15505985,16822759:216877 -k1,4492:16532232,16822759:216877 -k1,4492:18242675,16822759:216877 -k1,4492:22564072,16822759:216877 -k1,4492:23972395,16822759:216878 -k1,4492:27048608,16822759:216877 -k1,4492:29020539,16822759:216877 -k1,4492:30920381,16822759:216877 -k1,4492:32583029,16822759:0 -) -(1,4493:6630773,17664247:25952256,513147,134348 -k1,4492:8531332,17664247:202521 -k1,4492:10921445,17664247:202521 -k1,4492:11479827,17664247:202522 -k1,4492:13433470,17664247:202521 -k1,4492:16518264,17664247:202521 -k1,4492:17739870,17664247:202521 -k1,4492:19953037,17664247:202522 -k1,4492:22934285,17664247:202521 -k1,4492:25005237,17664247:202521 -k1,4492:26155409,17664247:202521 -(1,4492:26155409,17664247:0,452978,115847 -r1,4675:27568810,17664247:1413401,568825,115847 -k1,4492:26155409,17664247:-1413401 -) -(1,4492:26155409,17664247:1413401,452978,115847 -k1,4492:26155409,17664247:3277 -h1,4492:27565533,17664247:0,411205,112570 -) -k1,4492:27945001,17664247:202521 -k1,4492:28798951,17664247:202522 -k1,4492:30745385,17664247:202521 -k1,4492:31563944,17664247:202521 -k1,4492:32583029,17664247:0 -) -(1,4493:6630773,18505735:25952256,513147,126483 -g1,4492:9491419,18505735 -g1,4492:11545972,18505735 -g1,4492:12692852,18505735 -(1,4492:12692852,18505735:0,459977,115847 -r1,4675:14106253,18505735:1413401,575824,115847 -k1,4492:12692852,18505735:-1413401 -) -(1,4492:12692852,18505735:1413401,459977,115847 -k1,4492:12692852,18505735:3277 -h1,4492:14102976,18505735:0,411205,112570 -) -k1,4493:32583029,18505735:18303106 -g1,4493:32583029,18505735 -) -v1,4495:6630773,19696201:0,393216,0 -(1,4519:6630773,30048199:25952256,10745214,196608 -g1,4519:6630773,30048199 -g1,4519:6630773,30048199 -g1,4519:6434165,30048199 -(1,4519:6434165,30048199:0,10745214,196608 -r1,4675:32779637,30048199:26345472,10941822,196608 -k1,4519:6434165,30048199:-26345472 -) -(1,4519:6434165,30048199:26345472,10745214,196608 -[1,4519:6630773,30048199:25952256,10548606,0 -(1,4497:6630773,19903819:25952256,404226,101187 -(1,4496:6630773,19903819:0,0,0 -g1,4496:6630773,19903819 -g1,4496:6630773,19903819 -g1,4496:6303093,19903819 -(1,4496:6303093,19903819:0,0,0 -) -g1,4496:6630773,19903819 -) -g1,4497:8211502,19903819 -g1,4497:9159940,19903819 -g1,4497:11372961,19903819 -g1,4497:12005253,19903819 -g1,4497:13585983,19903819 -g1,4497:14218275,19903819 -g1,4497:14850567,19903819 -g1,4497:16431296,19903819 -g1,4497:17063588,19903819 -g1,4497:17695880,19903819 -g1,4497:20225047,19903819 -h1,4497:22438066,19903819:0,0,0 -k1,4497:32583029,19903819:10144963 -g1,4497:32583029,19903819 -) -(1,4498:6630773,20569997:25952256,404226,76021 -h1,4498:6630773,20569997:0,0,0 -k1,4498:6630773,20569997:0 -h1,4498:9476084,20569997:0,0,0 -k1,4498:32583028,20569997:23106944 -g1,4498:32583028,20569997 -) -(1,4505:6630773,21301711:25952256,410518,9436 -(1,4500:6630773,21301711:0,0,0 -g1,4500:6630773,21301711 -g1,4500:6630773,21301711 -g1,4500:6303093,21301711 -(1,4500:6303093,21301711:0,0,0 -) -g1,4500:6630773,21301711 -) -g1,4505:7579210,21301711 -g1,4505:9159939,21301711 -g1,4505:10108376,21301711 -h1,4505:10424522,21301711:0,0,0 -k1,4505:32583030,21301711:22158508 -g1,4505:32583030,21301711 -) -(1,4505:6630773,21967889:25952256,410518,76021 -h1,4505:6630773,21967889:0,0,0 -g1,4505:7579210,21967889 -g1,4505:7895356,21967889 -g1,4505:8527648,21967889 -g1,4505:9476085,21967889 -g1,4505:10740668,21967889 -g1,4505:12637542,21967889 -g1,4505:13269834,21967889 -g1,4505:13902126,21967889 -g1,4505:14534418,21967889 -g1,4505:15166710,21967889 -g1,4505:15799002,21967889 -h1,4505:16115148,21967889:0,0,0 -k1,4505:32583029,21967889:16467881 -g1,4505:32583029,21967889 -) -(1,4505:6630773,22634067:25952256,410518,101187 -h1,4505:6630773,22634067:0,0,0 -g1,4505:7579210,22634067 -g1,4505:7895356,22634067 -g1,4505:8527648,22634067 -g1,4505:9476085,22634067 -g1,4505:10740668,22634067 -h1,4505:11689105,22634067:0,0,0 -k1,4505:32583029,22634067:20893924 -g1,4505:32583029,22634067 -) -(1,4505:6630773,23300245:25952256,410518,107478 -h1,4505:6630773,23300245:0,0,0 -g1,4505:7579210,23300245 -g1,4505:7895356,23300245 -g1,4505:8527648,23300245 -g1,4505:9476085,23300245 -g1,4505:11056814,23300245 -g1,4505:12953688,23300245 -g1,4505:14534417,23300245 -h1,4505:16115145,23300245:0,0,0 -k1,4505:32583029,23300245:16467884 -g1,4505:32583029,23300245 -) -(1,4507:6630773,24621783:25952256,410518,31456 -(1,4506:6630773,24621783:0,0,0 -g1,4506:6630773,24621783 -g1,4506:6630773,24621783 -g1,4506:6303093,24621783 -(1,4506:6303093,24621783:0,0,0 -) -g1,4506:6630773,24621783 -) -g1,4507:9159939,24621783 -g1,4507:10108377,24621783 -h1,4507:11056815,24621783:0,0,0 -k1,4507:32583029,24621783:21526214 -g1,4507:32583029,24621783 -) -(1,4508:6630773,25287961:25952256,410518,31456 -h1,4508:6630773,25287961:0,0,0 -g1,4508:9159939,25287961 -g1,4508:10108377,25287961 -h1,4508:11056814,25287961:0,0,0 -k1,4508:32583030,25287961:21526216 -g1,4508:32583030,25287961 -) -(1,4509:6630773,25954139:25952256,404226,76021 -h1,4509:6630773,25954139:0,0,0 -k1,4509:6630773,25954139:0 -h1,4509:9476084,25954139:0,0,0 -k1,4509:32583028,25954139:23106944 -g1,4509:32583028,25954139 -) -(1,4518:6630773,26685853:25952256,410518,9436 -(1,4511:6630773,26685853:0,0,0 -g1,4511:6630773,26685853 -g1,4511:6630773,26685853 -g1,4511:6303093,26685853 -(1,4511:6303093,26685853:0,0,0 -) -g1,4511:6630773,26685853 -) -g1,4518:7579210,26685853 -g1,4518:9159939,26685853 -g1,4518:10108376,26685853 -h1,4518:10424522,26685853:0,0,0 -k1,4518:32583030,26685853:22158508 -g1,4518:32583030,26685853 -) -(1,4518:6630773,27352031:25952256,410518,76021 -h1,4518:6630773,27352031:0,0,0 -g1,4518:7579210,27352031 -g1,4518:7895356,27352031 -g1,4518:8527648,27352031 -g1,4518:9159940,27352031 -g1,4518:9792232,27352031 -g1,4518:11056815,27352031 -g1,4518:12953689,27352031 -g1,4518:13585981,27352031 -g1,4518:14218273,27352031 -g1,4518:14850565,27352031 -g1,4518:15482857,27352031 -g1,4518:16115149,27352031 -h1,4518:16431295,27352031:0,0,0 -k1,4518:32583029,27352031:16151734 -g1,4518:32583029,27352031 -) -(1,4518:6630773,28018209:25952256,410518,101187 -h1,4518:6630773,28018209:0,0,0 -g1,4518:7579210,28018209 -g1,4518:7895356,28018209 -g1,4518:8527648,28018209 -g1,4518:9159940,28018209 -g1,4518:9792232,28018209 -g1,4518:11056815,28018209 -h1,4518:12005252,28018209:0,0,0 -k1,4518:32583028,28018209:20577776 -g1,4518:32583028,28018209 -) -(1,4518:6630773,28684387:25952256,410518,107478 -h1,4518:6630773,28684387:0,0,0 -g1,4518:7579210,28684387 -g1,4518:7895356,28684387 -g1,4518:8527648,28684387 -g1,4518:9159940,28684387 -g1,4518:9792232,28684387 -g1,4518:11372961,28684387 -g1,4518:13269835,28684387 -g1,4518:14850564,28684387 -h1,4518:16431292,28684387:0,0,0 -k1,4518:32583029,28684387:16151737 -g1,4518:32583029,28684387 -) -(1,4518:6630773,29350565:25952256,410518,76021 -h1,4518:6630773,29350565:0,0,0 -g1,4518:7579210,29350565 -g1,4518:7895356,29350565 -g1,4518:8527648,29350565 -g1,4518:9792231,29350565 -g1,4518:11056814,29350565 -g1,4518:12953688,29350565 -g1,4518:13585980,29350565 -g1,4518:14218272,29350565 -g1,4518:14850564,29350565 -g1,4518:15482856,29350565 -g1,4518:16115148,29350565 -h1,4518:16431294,29350565:0,0,0 -k1,4518:32583029,29350565:16151735 -g1,4518:32583029,29350565 -) -(1,4518:6630773,30016743:25952256,410518,31456 -h1,4518:6630773,30016743:0,0,0 -g1,4518:7579210,30016743 -g1,4518:7895356,30016743 -g1,4518:8527648,30016743 -g1,4518:9792231,30016743 -g1,4518:11056814,30016743 -h1,4518:12005251,30016743:0,0,0 -k1,4518:32583029,30016743:20577778 -g1,4518:32583029,30016743 -) -] -) -g1,4519:32583029,30048199 -g1,4519:6630773,30048199 -g1,4519:6630773,30048199 -g1,4519:32583029,30048199 -g1,4519:32583029,30048199 -) -h1,4519:6630773,30244807:0,0,0 -v1,4523:6630773,32134871:0,393216,0 -(1,4675:6630773,41908434:25952256,10166779,589824 -g1,4675:6630773,41908434 -(1,4675:6630773,41908434:25952256,10166779,589824 -(1,4675:6630773,42498258:25952256,10756603,0 -[1,4675:6630773,42498258:25952256,10756603,0 -(1,4675:6630773,42498258:25952256,10730389,0 -r1,4675:6656987,42498258:26214,10730389,0 -[1,4675:6656987,42498258:25899828,10730389,0 -(1,4675:6656987,41908434:25899828,9550741,0 -[1,4675:7246811,41908434:24720180,9550741,0 -(1,4524:7246811,33641675:24720180,1283982,196608 -(1,4523:7246811,33641675:0,1283982,196608 -r1,4675:9812056,33641675:2565245,1480590,196608 -k1,4523:7246811,33641675:-2565245 -) -(1,4523:7246811,33641675:2565245,1283982,196608 -) -k1,4523:9950924,33641675:138868 -k1,4523:12433359,33641675:138868 -k1,4523:13961590,33641675:138868 -k1,4523:16307055,33641675:138868 -k1,4523:17437483,33641675:138868 -k1,4523:19926472,33641675:138868 -k1,4523:21632961,33641675:138868 -k1,4523:23095656,33641675:138868 -k1,4523:23917409,33641675:138868 -k1,4523:24817805,33641675:138868 -k1,4523:27384127,33641675:138868 -k1,4523:30715909,33641675:138868 -k1,4524:31966991,33641675:0 -) -(1,4524:7246811,34483163:24720180,513147,126483 -k1,4523:8668035,34483163:151136 -k1,4523:10010616,34483163:151136 -k1,4523:12386044,34483163:151136 -k1,4523:13188608,34483163:151136 -k1,4523:14358829,34483163:151136 -k1,4523:18720653,34483163:151136 -k1,4523:19341683,34483163:151137 -k1,4523:20024316,34483163:151136 -k1,4523:21461268,34483163:151136 -k1,4523:24242364,34483163:151136 -k1,4523:25044928,34483163:151136 -k1,4523:28219895,34483163:151136 -k1,4523:29760394,34483163:151136 -k1,4523:31966991,34483163:0 -) -(1,4524:7246811,35324651:24720180,513147,134348 -k1,4523:9993950,35324651:268567 -k1,4523:11830137,35324651:268566 -k1,4523:15005881,35324651:268567 -k1,4523:16976417,35324651:268566 -k1,4523:18634347,35324651:268567 -k1,4523:21109510,35324651:268566 -k1,4523:22569522,35324651:268567 -k1,4523:24996844,35324651:268566 -k1,4523:27573589,35324651:268567 -k1,4523:29033600,35324651:268566 -k1,4524:31966991,35324651:0 -) -(1,4524:7246811,36166139:24720180,513147,134348 -k1,4523:9092782,36166139:248203 -k1,4523:10000276,36166139:248202 -k1,4523:12061205,36166139:248203 -k1,4523:12937243,36166139:248203 -k1,4523:14882173,36166139:248203 -k1,4523:16827757,36166139:248202 -k1,4523:20302953,36166139:248203 -k1,4523:23162766,36166139:248203 -k1,4523:25854151,36166139:248203 -k1,4523:29485321,36166139:248202 -k1,4523:30687073,36166139:248203 -k1,4523:31966991,36166139:0 -) -(1,4524:7246811,37007627:24720180,505283,126483 -k1,4523:8757195,37007627:134783 -k1,4523:10584118,37007627:134783 -k1,4523:13710619,37007627:134782 -k1,4523:15416955,37007627:134783 -k1,4523:16237900,37007627:134783 -k1,4523:17391768,37007627:134783 -k1,4523:19644019,37007627:134783 -k1,4523:20770362,37007627:134783 -k1,4523:22183751,37007627:134782 -k1,4523:25408557,37007627:134783 -k1,4523:26159378,37007627:134783 -(1,4523:26159378,37007627:0,459977,115847 -r1,4675:31793321,37007627:5633943,575824,115847 -k1,4523:26159378,37007627:-5633943 -) -(1,4523:26159378,37007627:5633943,459977,115847 -k1,4523:26159378,37007627:3277 -h1,4523:31790044,37007627:0,411205,112570 -) -k1,4524:31966991,37007627:0 -k1,4524:31966991,37007627:0 -) -(1,4526:7246811,37849115:24720180,513147,102891 -h1,4525:7246811,37849115:983040,0,0 -k1,4525:9400778,37849115:217378 -k1,4525:10710641,37849115:217378 -k1,4525:11283879,37849115:217378 -k1,4525:13660013,37849115:217378 -k1,4525:16497520,37849115:217378 -k1,4525:18866445,37849115:217378 -k1,4525:20275267,37849115:217377 -k1,4525:20848505,37849115:217378 -k1,4525:23133544,37849115:217378 -k1,4525:24547609,37849115:217378 -k1,4525:26833303,37849115:217378 -k1,4525:28042241,37849115:217378 -k1,4525:30399370,37849115:217378 -k1,4525:31966991,37849115:0 -) -(1,4526:7246811,38690603:24720180,513147,115847 -k1,4525:8563937,38690603:298041 -k1,4525:10839854,38690603:298040 -k1,4525:11789323,38690603:298041 -k1,4525:13106448,38690603:298040 -k1,4525:14938687,38690603:298041 -k1,4525:15896019,38690603:298040 -k1,4525:17213145,38690603:298041 -k1,4525:18900548,38690603:298040 -k1,4525:21248555,38690603:298041 -k1,4525:24018613,38690603:298040 -(1,4525:24018613,38690603:0,459977,115847 -r1,4675:29652556,38690603:5633943,575824,115847 -k1,4525:24018613,38690603:-5633943 -) -(1,4525:24018613,38690603:5633943,459977,115847 -k1,4525:24018613,38690603:3277 -h1,4525:29649279,38690603:0,411205,112570 -) -k1,4525:29950597,38690603:298041 -k1,4525:31196288,38690603:298040 -k1,4525:31966991,38690603:0 -) -(1,4526:7246811,39532091:24720180,505283,126483 -k1,4526:31966991,39532091:20814234 -g1,4526:31966991,39532091 -) -] -) -] -r1,4675:32583029,42498258:26214,10730389,0 -) -] -) -) -g1,4675:32583029,41908434 -) -] -(1,4675:32583029,45706769:0,0,0 -g1,4675:32583029,45706769 -) -) -] -(1,4675:6630773,47279633:25952256,0,0 -h1,4675:6630773,47279633:25952256,0,0 -) -] -(1,4675:4262630,4025873:0,0,0 -[1,4675:-473656,4025873:0,0,0 -(1,4675:-473656,-710413:0,0,0 -(1,4675:-473656,-710413:0,0,0 -g1,4675:-473656,-710413 -) -g1,4675:-473656,-710413 -) -] -) -] -!22159 -}84 -!11 -{85 -[1,4675:4262630,47279633:28320399,43253760,0 -(1,4675:4262630,4025873:0,0,0 -[1,4675:-473656,4025873:0,0,0 -(1,4675:-473656,-710413:0,0,0 -(1,4675:-473656,-644877:0,0,0 -k1,4675:-473656,-644877:-65536 -) -(1,4675:-473656,4736287:0,0,0 -k1,4675:-473656,4736287:5209943 -) -g1,4675:-473656,-710413 -) -] -) -[1,4675:6630773,47279633:25952256,43253760,0 -[1,4675:6630773,4812305:25952256,786432,0 -(1,4675:6630773,4812305:25952256,505283,134348 -(1,4675:6630773,4812305:25952256,505283,134348 -g1,4675:3078558,4812305 -[1,4675:3078558,4812305:0,0,0 -(1,4675:3078558,2439708:0,1703936,0 -k1,4675:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,4675:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,4675:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,4675:3078558,4812305:0,0,0 -(1,4675:3078558,2439708:0,1703936,0 -g1,4675:29030814,2439708 -g1,4675:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,4675:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,4675:37855564,2439708:1179648,16384,0 -) -) -k1,4675:3078556,2439708:-34777008 -) -] -[1,4675:3078558,4812305:0,0,0 -(1,4675:3078558,49800853:0,16384,2228224 -k1,4675:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,4675:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,4675:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,4675:3078558,4812305:0,0,0 -(1,4675:3078558,49800853:0,16384,2228224 -g1,4675:29030814,49800853 -g1,4675:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,4675:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,4675:37855564,49800853:1179648,16384,0 -) -) -k1,4675:3078556,49800853:-34777008 -) -] -g1,4675:6630773,4812305 -k1,4675:19515153,4812305:12087462 -g1,4675:20901894,4812305 -g1,4675:21550700,4812305 -g1,4675:24864855,4812305 -g1,4675:27600327,4812305 -g1,4675:29010006,4812305 -) -) -] -[1,4675:6630773,45706769:25952256,40108032,0 -(1,4675:6630773,45706769:25952256,40108032,0 -(1,4675:6630773,45706769:0,0,0 -g1,4675:6630773,45706769 -) -[1,4675:6630773,45706769:25952256,40108032,0 -v1,4675:6630773,6254097:0,393216,0 -(1,4675:6630773,45116945:25952256,39256064,589824 -g1,4675:6630773,45116945 -(1,4675:6630773,45116945:25952256,39256064,589824 -(1,4675:6630773,45706769:25952256,39845888,0 -[1,4675:6630773,45706769:25952256,39845888,0 -(1,4675:6630773,45706769:25952256,39845888,0 -r1,4675:6656987,45706769:26214,39845888,0 -[1,4675:6656987,45706769:25899828,39845888,0 -(1,4675:6656987,45116945:25899828,38666240,0 -[1,4675:7246811,45116945:24720180,38666240,0 -v1,4528:7246811,6843921:0,393216,0 -(1,4548:7246811,14582064:24720180,8131359,196608 -g1,4548:7246811,14582064 -g1,4548:7246811,14582064 -g1,4548:7050203,14582064 -(1,4548:7050203,14582064:0,8131359,196608 -r1,4675:32163599,14582064:25113396,8327967,196608 -k1,4548:7050203,14582064:-25113396 -) -(1,4548:7050203,14582064:25113396,8131359,196608 -[1,4548:7246811,14582064:24720180,7934751,0 -(1,4530:7246811,7057831:24720180,410518,101187 -(1,4529:7246811,7057831:0,0,0 -g1,4529:7246811,7057831 -g1,4529:7246811,7057831 -g1,4529:6919131,7057831 -(1,4529:6919131,7057831:0,0,0 -) -g1,4529:7246811,7057831 -) -g1,4530:10408268,7057831 -g1,4530:11356706,7057831 -g1,4530:13253581,7057831 -g1,4530:13885873,7057831 -g1,4530:14834311,7057831 -g1,4530:16098894,7057831 -g1,4530:16731186,7057831 -g1,4530:17679624,7057831 -g1,4530:19576498,7057831 -g1,4530:20208790,7057831 -g1,4530:21157228,7057831 -g1,4530:22737957,7057831 -g1,4530:23370249,7057831 -h1,4530:24002541,7057831:0,0,0 -k1,4530:31966991,7057831:7964450 -g1,4530:31966991,7057831 -) -(1,4531:7246811,7724009:24720180,410518,101187 -h1,4531:7246811,7724009:0,0,0 -g1,4531:10408268,7724009 -g1,4531:11356706,7724009 -g1,4531:16098893,7724009 -g1,4531:17047331,7724009 -g1,4531:17995769,7724009 -h1,4531:18944206,7724009:0,0,0 -k1,4531:31966991,7724009:13022785 -g1,4531:31966991,7724009 -) -(1,4532:7246811,8390187:24720180,410518,101187 -h1,4532:7246811,8390187:0,0,0 -g1,4532:8511394,8390187 -g1,4532:9459832,8390187 -g1,4532:16415038,8390187 -h1,4532:19576495,8390187:0,0,0 -k1,4532:31966991,8390187:12390496 -g1,4532:31966991,8390187 -) -(1,4533:7246811,9056365:24720180,410518,6290 -h1,4533:7246811,9056365:0,0,0 -h1,4533:8195248,9056365:0,0,0 -k1,4533:31966992,9056365:23771744 -g1,4533:31966992,9056365 -) -(1,4541:7246811,9788079:24720180,410518,101187 -(1,4535:7246811,9788079:0,0,0 -g1,4535:7246811,9788079 -g1,4535:7246811,9788079 -g1,4535:6919131,9788079 -(1,4535:6919131,9788079:0,0,0 -) -g1,4535:7246811,9788079 -) -g1,4541:8195248,9788079 -g1,4541:8511394,9788079 -g1,4541:8827540,9788079 -g1,4541:9143686,9788079 -g1,4541:9459832,9788079 -g1,4541:9775978,9788079 -g1,4541:10092124,9788079 -g1,4541:13253581,9788079 -h1,4541:16098892,9788079:0,0,0 -k1,4541:31966991,9788079:15868099 -g1,4541:31966991,9788079 -) -(1,4541:7246811,10454257:24720180,388497,6290 -h1,4541:7246811,10454257:0,0,0 -g1,4541:8195248,10454257 -g1,4541:9459831,10454257 -g1,4541:9775977,10454257 -g1,4541:10092123,10454257 -g1,4541:10408269,10454257 -g1,4541:10724415,10454257 -g1,4541:11040561,10454257 -g1,4541:11356707,10454257 -g1,4541:11672853,10454257 -g1,4541:11988999,10454257 -g1,4541:12305145,10454257 -g1,4541:12621291,10454257 -g1,4541:13253583,10454257 -g1,4541:13569729,10454257 -g1,4541:13885875,10454257 -g1,4541:14202021,10454257 -g1,4541:14518167,10454257 -g1,4541:14834313,10454257 -g1,4541:15150459,10454257 -g1,4541:15466605,10454257 -g1,4541:15782751,10454257 -h1,4541:16098897,10454257:0,0,0 -k1,4541:31966991,10454257:15868094 -g1,4541:31966991,10454257 -) -(1,4541:7246811,11120435:24720180,388497,6290 -h1,4541:7246811,11120435:0,0,0 -g1,4541:8195248,11120435 -g1,4541:9459831,11120435 -g1,4541:9775977,11120435 -g1,4541:10092123,11120435 -g1,4541:10408269,11120435 -g1,4541:10724415,11120435 -g1,4541:11040561,11120435 -g1,4541:11356707,11120435 -g1,4541:11672853,11120435 -g1,4541:11988999,11120435 -g1,4541:12305145,11120435 -g1,4541:12621291,11120435 -g1,4541:13253583,11120435 -g1,4541:13569729,11120435 -g1,4541:13885875,11120435 -g1,4541:14202021,11120435 -g1,4541:14518167,11120435 -g1,4541:14834313,11120435 -g1,4541:15150459,11120435 -g1,4541:15466605,11120435 -g1,4541:15782751,11120435 -h1,4541:16098897,11120435:0,0,0 -k1,4541:31966991,11120435:15868094 -g1,4541:31966991,11120435 -) -(1,4541:7246811,11786613:24720180,404226,9436 -h1,4541:7246811,11786613:0,0,0 -g1,4541:8195248,11786613 -g1,4541:10092122,11786613 -g1,4541:10408268,11786613 -g1,4541:10724414,11786613 -g1,4541:11040560,11786613 -g1,4541:11356706,11786613 -g1,4541:11672852,11786613 -g1,4541:11988998,11786613 -g1,4541:12305144,11786613 -g1,4541:12621290,11786613 -g1,4541:13253582,11786613 -g1,4541:13569728,11786613 -g1,4541:13885874,11786613 -g1,4541:14202020,11786613 -g1,4541:14518166,11786613 -g1,4541:14834312,11786613 -g1,4541:15150458,11786613 -g1,4541:15466604,11786613 -g1,4541:15782750,11786613 -h1,4541:16098896,11786613:0,0,0 -k1,4541:31966991,11786613:15868095 -g1,4541:31966991,11786613 -) -(1,4541:7246811,12452791:24720180,410518,6290 -h1,4541:7246811,12452791:0,0,0 -g1,4541:8195248,12452791 -g1,4541:9775977,12452791 -g1,4541:10092123,12452791 -g1,4541:10408269,12452791 -g1,4541:10724415,12452791 -g1,4541:11040561,12452791 -g1,4541:11356707,12452791 -g1,4541:11672853,12452791 -g1,4541:11988999,12452791 -g1,4541:12305145,12452791 -g1,4541:12621291,12452791 -g1,4541:13253583,12452791 -g1,4541:13569729,12452791 -g1,4541:13885875,12452791 -g1,4541:14202021,12452791 -g1,4541:14518167,12452791 -g1,4541:14834313,12452791 -g1,4541:15150459,12452791 -g1,4541:15466605,12452791 -g1,4541:15782751,12452791 -h1,4541:16098897,12452791:0,0,0 -k1,4541:31966991,12452791:15868094 -g1,4541:31966991,12452791 -) -(1,4543:7246811,13774329:24720180,410518,101187 -(1,4542:7246811,13774329:0,0,0 -g1,4542:7246811,13774329 -g1,4542:7246811,13774329 -g1,4542:6919131,13774329 -(1,4542:6919131,13774329:0,0,0 -) -g1,4542:7246811,13774329 -) -h1,4543:11356705,13774329:0,0,0 -k1,4543:31966991,13774329:20610286 -g1,4543:31966991,13774329 -) -(1,4547:7246811,14506043:24720180,404226,76021 -(1,4545:7246811,14506043:0,0,0 -g1,4545:7246811,14506043 -g1,4545:7246811,14506043 -g1,4545:6919131,14506043 -(1,4545:6919131,14506043:0,0,0 -) -g1,4545:7246811,14506043 -) -g1,4547:8195248,14506043 -g1,4547:9459831,14506043 -g1,4547:10092123,14506043 -g1,4547:10724415,14506043 -g1,4547:11356707,14506043 -h1,4547:11672853,14506043:0,0,0 -k1,4547:31966991,14506043:20294138 -g1,4547:31966991,14506043 -) -] -) -g1,4548:31966991,14582064 -g1,4548:7246811,14582064 -g1,4548:7246811,14582064 -g1,4548:31966991,14582064 -g1,4548:31966991,14582064 -) -h1,4548:7246811,14778672:0,0,0 -(1,4552:7246811,17604832:24720180,513147,126483 -h1,4551:7246811,17604832:983040,0,0 -k1,4551:8970709,17604832:263101 -k1,4551:10102162,17604832:263101 -k1,4551:12663612,17604832:263102 -k1,4551:13945798,17604832:263101 -k1,4551:16186776,17604832:263101 -k1,4551:17843828,17604832:263101 -k1,4551:19025745,17604832:263102 -k1,4551:21749068,17604832:263101 -k1,4551:24707665,17604832:263101 -(1,4551:24707665,17604832:0,452978,115847 -r1,4675:25769354,17604832:1061689,568825,115847 -k1,4551:24707665,17604832:-1061689 -) -(1,4551:24707665,17604832:1061689,452978,115847 -k1,4551:24707665,17604832:3277 -h1,4551:25766077,17604832:0,411205,112570 -) -k1,4551:26032455,17604832:263101 -k1,4551:27314642,17604832:263102 -k1,4551:29646059,17604832:263101 -k1,4551:30900720,17604832:263101 -k1,4551:31966991,17604832:0 -) -(1,4552:7246811,18446320:24720180,513147,134348 -k1,4551:10288236,18446320:265975 -k1,4551:12121832,18446320:265975 -k1,4551:13406893,18446320:265976 -k1,4551:15650745,18446320:265975 -k1,4551:16602882,18446320:265975 -k1,4551:17973139,18446320:265975 -k1,4551:18986881,18446320:265976 -k1,4551:20692682,18446320:265975 -k1,4551:21720185,18446320:265975 -k1,4551:25180385,18446320:265975 -k1,4551:26465446,18446320:265976 -k1,4551:29114310,18446320:265975 -k1,4551:30947906,18446320:265975 -k1,4551:31966991,18446320:0 -) -(1,4552:7246811,19287808:24720180,513147,7863 -g1,4551:8835403,19287808 -k1,4552:31966991,19287808:21081622 -g1,4552:31966991,19287808 -) -v1,4554:7246811,21451863:0,393216,0 -(1,4573:7246811,28457243:24720180,7398596,196608 -g1,4573:7246811,28457243 -g1,4573:7246811,28457243 -g1,4573:7050203,28457243 -(1,4573:7050203,28457243:0,7398596,196608 -r1,4675:32163599,28457243:25113396,7595204,196608 -k1,4573:7050203,28457243:-25113396 -) -(1,4573:7050203,28457243:25113396,7398596,196608 -[1,4573:7246811,28457243:24720180,7201988,0 -(1,4556:7246811,21665773:24720180,410518,101187 -(1,4555:7246811,21665773:0,0,0 -g1,4555:7246811,21665773 -g1,4555:7246811,21665773 -g1,4555:6919131,21665773 -(1,4555:6919131,21665773:0,0,0 -) -g1,4555:7246811,21665773 -) -g1,4556:8511394,21665773 -g1,4556:9459832,21665773 -g1,4556:16415038,21665773 -k1,4556:16415038,21665773:0 -h1,4556:20524932,21665773:0,0,0 -k1,4556:31966991,21665773:11442059 -g1,4556:31966991,21665773 -) -(1,4557:7246811,22331951:24720180,410518,6290 -h1,4557:7246811,22331951:0,0,0 -h1,4557:8195248,22331951:0,0,0 -k1,4557:31966992,22331951:23771744 -g1,4557:31966992,22331951 -) -(1,4565:7246811,23063665:24720180,410518,101187 -(1,4559:7246811,23063665:0,0,0 -g1,4559:7246811,23063665 -g1,4559:7246811,23063665 -g1,4559:6919131,23063665 -(1,4559:6919131,23063665:0,0,0 -) -g1,4559:7246811,23063665 -) -g1,4565:8195248,23063665 -g1,4565:8511394,23063665 -g1,4565:8827540,23063665 -g1,4565:9143686,23063665 -g1,4565:9459832,23063665 -g1,4565:9775978,23063665 -g1,4565:10092124,23063665 -g1,4565:13253581,23063665 -h1,4565:16098892,23063665:0,0,0 -k1,4565:31966991,23063665:15868099 -g1,4565:31966991,23063665 -) -(1,4565:7246811,23729843:24720180,388497,6290 -h1,4565:7246811,23729843:0,0,0 -g1,4565:8195248,23729843 -g1,4565:9459831,23729843 -g1,4565:9775977,23729843 -g1,4565:10092123,23729843 -g1,4565:10408269,23729843 -g1,4565:10724415,23729843 -g1,4565:11040561,23729843 -g1,4565:11356707,23729843 -g1,4565:11672853,23729843 -g1,4565:11988999,23729843 -g1,4565:12305145,23729843 -g1,4565:12621291,23729843 -g1,4565:13253583,23729843 -g1,4565:13569729,23729843 -g1,4565:13885875,23729843 -g1,4565:14202021,23729843 -g1,4565:14518167,23729843 -g1,4565:14834313,23729843 -g1,4565:15150459,23729843 -g1,4565:15466605,23729843 -g1,4565:15782751,23729843 -h1,4565:16098897,23729843:0,0,0 -k1,4565:31966991,23729843:15868094 -g1,4565:31966991,23729843 -) -(1,4565:7246811,24396021:24720180,388497,6290 -h1,4565:7246811,24396021:0,0,0 -g1,4565:8195248,24396021 -g1,4565:9459831,24396021 -g1,4565:9775977,24396021 -g1,4565:10092123,24396021 -g1,4565:10408269,24396021 -g1,4565:10724415,24396021 -g1,4565:11040561,24396021 -g1,4565:11356707,24396021 -g1,4565:11672853,24396021 -g1,4565:11988999,24396021 -g1,4565:12305145,24396021 -g1,4565:12621291,24396021 -g1,4565:13253583,24396021 -g1,4565:13569729,24396021 -g1,4565:13885875,24396021 -g1,4565:14202021,24396021 -g1,4565:14518167,24396021 -g1,4565:14834313,24396021 -g1,4565:15150459,24396021 -g1,4565:15466605,24396021 -g1,4565:15782751,24396021 -h1,4565:16098897,24396021:0,0,0 -k1,4565:31966991,24396021:15868094 -g1,4565:31966991,24396021 -) -(1,4565:7246811,25062199:24720180,404226,9436 -h1,4565:7246811,25062199:0,0,0 -g1,4565:8195248,25062199 -g1,4565:10092122,25062199 -g1,4565:10408268,25062199 -g1,4565:10724414,25062199 -g1,4565:11040560,25062199 -g1,4565:11356706,25062199 -g1,4565:11672852,25062199 -g1,4565:11988998,25062199 -g1,4565:12305144,25062199 -g1,4565:12621290,25062199 -g1,4565:13253582,25062199 -g1,4565:13569728,25062199 -g1,4565:13885874,25062199 -g1,4565:14202020,25062199 -g1,4565:14518166,25062199 -g1,4565:14834312,25062199 -g1,4565:15150458,25062199 -g1,4565:15466604,25062199 -g1,4565:15782750,25062199 -h1,4565:16098896,25062199:0,0,0 -k1,4565:31966991,25062199:15868095 -g1,4565:31966991,25062199 -) -(1,4565:7246811,25728377:24720180,410518,6290 -h1,4565:7246811,25728377:0,0,0 -g1,4565:8195248,25728377 -g1,4565:9775977,25728377 -g1,4565:10092123,25728377 -g1,4565:10408269,25728377 -g1,4565:10724415,25728377 -g1,4565:11040561,25728377 -g1,4565:11356707,25728377 -g1,4565:11672853,25728377 -g1,4565:11988999,25728377 -g1,4565:12305145,25728377 -g1,4565:12621291,25728377 -g1,4565:13253583,25728377 -g1,4565:13569729,25728377 -g1,4565:13885875,25728377 -g1,4565:14202021,25728377 -g1,4565:14518167,25728377 -g1,4565:14834313,25728377 -g1,4565:15150459,25728377 -g1,4565:15466605,25728377 -g1,4565:15782751,25728377 -h1,4565:16098897,25728377:0,0,0 -k1,4565:31966991,25728377:15868094 -g1,4565:31966991,25728377 -) -(1,4567:7246811,27049915:24720180,410518,101187 -(1,4566:7246811,27049915:0,0,0 -g1,4566:7246811,27049915 -g1,4566:7246811,27049915 -g1,4566:6919131,27049915 -(1,4566:6919131,27049915:0,0,0 -) -g1,4566:7246811,27049915 -) -h1,4567:11356705,27049915:0,0,0 -k1,4567:31966991,27049915:20610286 -g1,4567:31966991,27049915 -) -(1,4572:7246811,27781629:24720180,410518,6290 -(1,4569:7246811,27781629:0,0,0 -g1,4569:7246811,27781629 -g1,4569:7246811,27781629 -g1,4569:6919131,27781629 -(1,4569:6919131,27781629:0,0,0 -) -g1,4569:7246811,27781629 -) -g1,4572:8195248,27781629 -g1,4572:8511394,27781629 -g1,4572:8827540,27781629 -g1,4572:10092123,27781629 -g1,4572:10408269,27781629 -g1,4572:10724415,27781629 -g1,4572:11988998,27781629 -g1,4572:13885872,27781629 -g1,4572:14202018,27781629 -h1,4572:15466601,27781629:0,0,0 -k1,4572:31966991,27781629:16500390 -g1,4572:31966991,27781629 -) -(1,4572:7246811,28447807:24720180,388497,9436 -h1,4572:7246811,28447807:0,0,0 -g1,4572:8195248,28447807 -g1,4572:8511394,28447807 -g1,4572:8827540,28447807 -g1,4572:9143686,28447807 -g1,4572:9459832,28447807 -g1,4572:10092124,28447807 -g1,4572:10408270,28447807 -g1,4572:10724416,28447807 -g1,4572:11040562,28447807 -g1,4572:11356708,28447807 -g1,4572:11989000,28447807 -g1,4572:12305146,28447807 -g1,4572:12621292,28447807 -g1,4572:12937438,28447807 -g1,4572:13253584,28447807 -g1,4572:13885876,28447807 -g1,4572:14202022,28447807 -g1,4572:14518168,28447807 -g1,4572:14834314,28447807 -g1,4572:15150460,28447807 -h1,4572:15466606,28447807:0,0,0 -k1,4572:31966991,28447807:16500385 -g1,4572:31966991,28447807 -) -] -) -g1,4573:31966991,28457243 -g1,4573:7246811,28457243 -g1,4573:7246811,28457243 -g1,4573:31966991,28457243 -g1,4573:31966991,28457243 -) -h1,4573:7246811,28653851:0,0,0 -(1,4578:7246811,31304701:24720180,513147,126483 -h1,4576:7246811,31304701:983040,0,0 -k1,4576:8877565,31304701:169957 -k1,4576:9915873,31304701:169956 -k1,4576:11574153,31304701:169957 -k1,4576:13138061,31304701:169957 -k1,4576:13663878,31304701:169957 -k1,4576:15921156,31304701:169956 -k1,4576:18418296,31304701:169957 -k1,4576:19247545,31304701:169957 -k1,4576:19773362,31304701:169957 -k1,4576:22094865,31304701:169956 -k1,4576:23283907,31304701:169957 -k1,4576:25541186,31304701:169957 -k1,4576:26242640,31304701:169957 -k1,4576:27826863,31304701:169956 -k1,4576:29264286,31304701:169957 -k1,4576:31966991,31304701:0 -) -(1,4578:7246811,31970879:24720180,513147,102891 -k1,4576:10177956,31970879:217954 -k1,4576:11011948,31970879:217954 -k1,4576:12248987,31970879:217954 -k1,4576:13856304,31970879:217954 -k1,4576:16124224,31970879:217954 -k1,4576:16819935,31970879:217954 -k1,4576:18056974,31970879:217954 -k1,4576:20362249,31970879:217953 -k1,4576:21681208,31970879:217954 -k1,4576:22708532,31970879:217954 -k1,4576:25309375,31970879:217954 -k1,4576:27769316,31970879:217954 -k1,4576:29270465,31970879:217954 -k1,4576:30975431,31970879:217954 -k1,4576:31966991,31970879:0 -) -(1,4578:7246811,32637057:24720180,505283,7863 -g1,4576:9969831,32637057 -k1,4578:31966991,32637057:21997160 -g1,4578:31966991,32637057 -) -v1,4578:7246811,34801113:0,393216,0 -(1,4591:7246811,39746949:24720180,5339052,196608 -g1,4591:7246811,39746949 -g1,4591:7246811,39746949 -g1,4591:7050203,39746949 -(1,4591:7050203,39746949:0,5339052,196608 -r1,4675:32163599,39746949:25113396,5535660,196608 -k1,4591:7050203,39746949:-25113396 -) -(1,4591:7050203,39746949:25113396,5339052,196608 -[1,4591:7246811,39746949:24720180,5142444,0 -(1,4580:7246811,35008731:24720180,404226,101187 -(1,4579:7246811,35008731:0,0,0 -g1,4579:7246811,35008731 -g1,4579:7246811,35008731 -g1,4579:6919131,35008731 -(1,4579:6919131,35008731:0,0,0 -) -g1,4579:7246811,35008731 -) -g1,4580:10408268,35008731 -g1,4580:11356706,35008731 -g1,4580:15466601,35008731 -g1,4580:17047330,35008731 -g1,4580:17679622,35008731 -h1,4580:18311914,35008731:0,0,0 -k1,4580:31966991,35008731:13655077 -g1,4580:31966991,35008731 -) -(1,4581:7246811,35674909:24720180,410518,101187 -h1,4581:7246811,35674909:0,0,0 -g1,4581:8511394,35674909 -g1,4581:9459832,35674909 -g1,4581:16415038,35674909 -h1,4581:19576495,35674909:0,0,0 -k1,4581:31966991,35674909:12390496 -g1,4581:31966991,35674909 -) -(1,4582:7246811,36341087:24720180,410518,6290 -h1,4582:7246811,36341087:0,0,0 -h1,4582:8195248,36341087:0,0,0 -k1,4582:31966992,36341087:23771744 -g1,4582:31966992,36341087 -) -(1,4590:7246811,37072801:24720180,410518,101187 -(1,4584:7246811,37072801:0,0,0 -g1,4584:7246811,37072801 -g1,4584:7246811,37072801 -g1,4584:6919131,37072801 -(1,4584:6919131,37072801:0,0,0 -) -g1,4584:7246811,37072801 -) -g1,4590:8195248,37072801 -g1,4590:8511394,37072801 -g1,4590:8827540,37072801 -g1,4590:11988997,37072801 -g1,4590:12937434,37072801 -g1,4590:13885871,37072801 -h1,4590:14518162,37072801:0,0,0 -k1,4590:31966990,37072801:17448828 -g1,4590:31966990,37072801 -) -(1,4590:7246811,37738979:24720180,388497,9436 -h1,4590:7246811,37738979:0,0,0 -g1,4590:8195248,37738979 -g1,4590:8827540,37738979 -g1,4590:9143686,37738979 -g1,4590:9459832,37738979 -g1,4590:9775978,37738979 -g1,4590:10092124,37738979 -g1,4590:10408270,37738979 -g1,4590:10724416,37738979 -g1,4590:11040562,37738979 -g1,4590:11356708,37738979 -g1,4590:11989000,37738979 -g1,4590:12305146,37738979 -g1,4590:12937438,37738979 -g1,4590:13253584,37738979 -g1,4590:13885876,37738979 -g1,4590:14202022,37738979 -h1,4590:14518168,37738979:0,0,0 -k1,4590:31966992,37738979:17448824 -g1,4590:31966992,37738979 -) -(1,4590:7246811,38405157:24720180,388497,9436 -h1,4590:7246811,38405157:0,0,0 -g1,4590:8195248,38405157 -g1,4590:8827540,38405157 -g1,4590:9143686,38405157 -g1,4590:9459832,38405157 -g1,4590:9775978,38405157 -g1,4590:10092124,38405157 -g1,4590:10408270,38405157 -g1,4590:10724416,38405157 -g1,4590:11040562,38405157 -g1,4590:11356708,38405157 -g1,4590:11989000,38405157 -g1,4590:12305146,38405157 -g1,4590:12937438,38405157 -g1,4590:13253584,38405157 -g1,4590:13885876,38405157 -h1,4590:14518167,38405157:0,0,0 -k1,4590:31966991,38405157:17448824 -g1,4590:31966991,38405157 -) -(1,4590:7246811,39071335:24720180,388497,9436 -h1,4590:7246811,39071335:0,0,0 -g1,4590:8195248,39071335 -g1,4590:8827540,39071335 -g1,4590:9143686,39071335 -g1,4590:9459832,39071335 -g1,4590:9775978,39071335 -g1,4590:10092124,39071335 -g1,4590:10408270,39071335 -g1,4590:10724416,39071335 -g1,4590:11040562,39071335 -g1,4590:11356708,39071335 -g1,4590:11989000,39071335 -g1,4590:12305146,39071335 -g1,4590:12937438,39071335 -g1,4590:13253584,39071335 -g1,4590:13885876,39071335 -h1,4590:14518167,39071335:0,0,0 -k1,4590:31966991,39071335:17448824 -g1,4590:31966991,39071335 -) -(1,4590:7246811,39737513:24720180,388497,9436 -h1,4590:7246811,39737513:0,0,0 -g1,4590:8195248,39737513 -g1,4590:8827540,39737513 -g1,4590:9143686,39737513 -g1,4590:9459832,39737513 -g1,4590:9775978,39737513 -g1,4590:10092124,39737513 -g1,4590:10408270,39737513 -g1,4590:10724416,39737513 -g1,4590:11040562,39737513 -g1,4590:11356708,39737513 -g1,4590:11989000,39737513 -g1,4590:12305146,39737513 -g1,4590:12937438,39737513 -g1,4590:13253584,39737513 -g1,4590:13885876,39737513 -h1,4590:14518167,39737513:0,0,0 -k1,4590:31966991,39737513:17448824 -g1,4590:31966991,39737513 -) -] -) -g1,4591:31966991,39746949 -g1,4591:7246811,39746949 -g1,4591:7246811,39746949 -g1,4591:31966991,39746949 -g1,4591:31966991,39746949 -) -h1,4591:7246811,39943557:0,0,0 -(1,4595:7246811,42769717:24720180,513147,126483 -h1,4594:7246811,42769717:983040,0,0 -k1,4594:8987914,42769717:280306 -k1,4594:10136573,42769717:280307 -k1,4594:12715227,42769717:280306 -k1,4594:14014618,42769717:280306 -k1,4594:16382247,42769717:280307 -k1,4594:18056504,42769717:280306 -k1,4594:21032307,42769717:280307 -(1,4594:21032307,42769717:0,452978,115847 -r1,4675:22093996,42769717:1061689,568825,115847 -k1,4594:21032307,42769717:-1061689 -) -(1,4594:21032307,42769717:1061689,452978,115847 -k1,4594:21032307,42769717:3277 -h1,4594:22090719,42769717:0,411205,112570 -) -k1,4594:22547972,42769717:280306 -k1,4594:23286375,42769717:280306 -k1,4594:24098179,42769717:280307 -k1,4594:25444756,42769717:280306 -k1,4594:27312999,42769717:280306 -k1,4594:28784751,42769717:280307 -k1,4594:30084142,42769717:280306 -k1,4594:31966991,42769717:0 -) -(1,4595:7246811,43611205:24720180,513147,7863 -g1,4594:9533362,43611205 -g1,4594:12506075,43611205 -g1,4594:13061164,43611205 -g1,4594:15643282,43611205 -g1,4594:16458549,43611205 -g1,4594:17676863,43611205 -g1,4594:19265455,43611205 -k1,4595:31966991,43611205:10651570 -g1,4595:31966991,43611205 -) -] -) -] -r1,4675:32583029,45706769:26214,39845888,0 -) -] -) -) -g1,4675:32583029,45116945 -) -] -(1,4675:32583029,45706769:0,0,0 -g1,4675:32583029,45706769 -) -) -] -(1,4675:6630773,47279633:25952256,0,0 -h1,4675:6630773,47279633:25952256,0,0 -) -] -(1,4675:4262630,4025873:0,0,0 -[1,4675:-473656,4025873:0,0,0 -(1,4675:-473656,-710413:0,0,0 -(1,4675:-473656,-710413:0,0,0 -g1,4675:-473656,-710413 -) -g1,4675:-473656,-710413 -) -] -) -] -!23807 -}85 -!11 -{86 -[1,4675:4262630,47279633:28320399,43253760,0 -(1,4675:4262630,4025873:0,0,0 -[1,4675:-473656,4025873:0,0,0 -(1,4675:-473656,-710413:0,0,0 -(1,4675:-473656,-644877:0,0,0 -k1,4675:-473656,-644877:-65536 -) -(1,4675:-473656,4736287:0,0,0 -k1,4675:-473656,4736287:5209943 -) -g1,4675:-473656,-710413 -) -] -) -[1,4675:6630773,47279633:25952256,43253760,0 -[1,4675:6630773,4812305:25952256,786432,0 -(1,4675:6630773,4812305:25952256,513147,126483 -(1,4675:6630773,4812305:25952256,513147,126483 -g1,4675:3078558,4812305 -[1,4675:3078558,4812305:0,0,0 -(1,4675:3078558,2439708:0,1703936,0 -k1,4675:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,4675:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,4675:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,4675:3078558,4812305:0,0,0 -(1,4675:3078558,2439708:0,1703936,0 -g1,4675:29030814,2439708 -g1,4675:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,4675:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,4675:37855564,2439708:1179648,16384,0 -) -) -k1,4675:3078556,2439708:-34777008 -) -] -[1,4675:3078558,4812305:0,0,0 -(1,4675:3078558,49800853:0,16384,2228224 -k1,4675:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,4675:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,4675:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,4675:3078558,4812305:0,0,0 -(1,4675:3078558,49800853:0,16384,2228224 -g1,4675:29030814,49800853 -g1,4675:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,4675:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,4675:37855564,49800853:1179648,16384,0 -) -) -k1,4675:3078556,49800853:-34777008 -) -] -g1,4675:6630773,4812305 -g1,4675:6630773,4812305 -g1,4675:8364200,4812305 -g1,4675:10765439,4812305 -k1,4675:31786111,4812305:21020672 -) -) -] -[1,4675:6630773,45706769:25952256,40108032,0 -(1,4675:6630773,45706769:25952256,40108032,0 -(1,4675:6630773,45706769:0,0,0 -g1,4675:6630773,45706769 -) -[1,4675:6630773,45706769:25952256,40108032,0 -v1,4675:6630773,6254097:0,393216,0 -(1,4675:6630773,45116945:25952256,39256064,589824 -g1,4675:6630773,45116945 -(1,4675:6630773,45116945:25952256,39256064,589824 -(1,4675:6630773,45706769:25952256,39845888,0 -[1,4675:6630773,45706769:25952256,39845888,0 -(1,4675:6630773,45706769:25952256,39845888,0 -r1,4675:6656987,45706769:26214,39845888,0 -[1,4675:6656987,45706769:25899828,39845888,0 -(1,4675:6656987,45116945:25899828,38666240,0 -[1,4675:7246811,45116945:24720180,38666240,0 -v1,4597:7246811,6843921:0,393216,0 -(1,4619:7246811,15920711:24720180,9470006,196608 -g1,4619:7246811,15920711 -g1,4619:7246811,15920711 -g1,4619:7050203,15920711 -(1,4619:7050203,15920711:0,9470006,196608 -r1,4675:32163599,15920711:25113396,9666614,196608 -k1,4619:7050203,15920711:-25113396 -) -(1,4619:7050203,15920711:25113396,9470006,196608 -[1,4619:7246811,15920711:24720180,9273398,0 -(1,4599:7246811,7057831:24720180,410518,101187 -(1,4598:7246811,7057831:0,0,0 -g1,4598:7246811,7057831 -g1,4598:7246811,7057831 -g1,4598:6919131,7057831 -(1,4598:6919131,7057831:0,0,0 -) -g1,4598:7246811,7057831 -) -g1,4599:8511394,7057831 -g1,4599:9459832,7057831 -g1,4599:16415038,7057831 -k1,4599:16415038,7057831:0 -h1,4599:20524932,7057831:0,0,0 -k1,4599:31966991,7057831:11442059 -g1,4599:31966991,7057831 -) -(1,4600:7246811,7724009:24720180,410518,9436 -h1,4600:7246811,7724009:0,0,0 -h1,4600:8195248,7724009:0,0,0 -k1,4600:31966992,7724009:23771744 -g1,4600:31966992,7724009 -) -(1,4608:7246811,8455723:24720180,410518,101187 -(1,4602:7246811,8455723:0,0,0 -g1,4602:7246811,8455723 -g1,4602:7246811,8455723 -g1,4602:6919131,8455723 -(1,4602:6919131,8455723:0,0,0 -) -g1,4602:7246811,8455723 -) -g1,4608:8195248,8455723 -g1,4608:8511394,8455723 -g1,4608:8827540,8455723 -g1,4608:11988997,8455723 -g1,4608:15782745,8455723 -g1,4608:19576493,8455723 -h1,4608:23054095,8455723:0,0,0 -k1,4608:31966991,8455723:8912896 -g1,4608:31966991,8455723 -) -(1,4608:7246811,9121901:24720180,388497,9436 -h1,4608:7246811,9121901:0,0,0 -g1,4608:8195248,9121901 -g1,4608:8827540,9121901 -g1,4608:9143686,9121901 -g1,4608:9459832,9121901 -g1,4608:9775978,9121901 -g1,4608:10092124,9121901 -g1,4608:10408270,9121901 -g1,4608:10724416,9121901 -g1,4608:11040562,9121901 -g1,4608:11356708,9121901 -g1,4608:11989000,9121901 -g1,4608:12305146,9121901 -g1,4608:12621292,9121901 -g1,4608:12937438,9121901 -g1,4608:13253584,9121901 -g1,4608:13569730,9121901 -g1,4608:13885876,9121901 -g1,4608:14202022,9121901 -g1,4608:14518168,9121901 -g1,4608:14834314,9121901 -g1,4608:15150460,9121901 -g1,4608:15782752,9121901 -g1,4608:16098898,9121901 -g1,4608:16415044,9121901 -g1,4608:16731190,9121901 -g1,4608:17047336,9121901 -g1,4608:17363482,9121901 -g1,4608:17679628,9121901 -g1,4608:17995774,9121901 -g1,4608:18311920,9121901 -g1,4608:18628066,9121901 -g1,4608:18944212,9121901 -g1,4608:19576504,9121901 -g1,4608:19892650,9121901 -g1,4608:20208796,9121901 -g1,4608:20524942,9121901 -g1,4608:20841088,9121901 -g1,4608:21157234,9121901 -g1,4608:21473380,9121901 -g1,4608:21789526,9121901 -g1,4608:22105672,9121901 -g1,4608:22421818,9121901 -g1,4608:22737964,9121901 -h1,4608:23054110,9121901:0,0,0 -k1,4608:31966991,9121901:8912881 -g1,4608:31966991,9121901 -) -(1,4608:7246811,9788079:24720180,388497,9436 -h1,4608:7246811,9788079:0,0,0 -g1,4608:8195248,9788079 -g1,4608:8827540,9788079 -g1,4608:9143686,9788079 -g1,4608:9459832,9788079 -g1,4608:9775978,9788079 -g1,4608:10092124,9788079 -g1,4608:10408270,9788079 -g1,4608:10724416,9788079 -g1,4608:11040562,9788079 -g1,4608:11356708,9788079 -g1,4608:11989000,9788079 -g1,4608:12305146,9788079 -g1,4608:12621292,9788079 -g1,4608:12937438,9788079 -g1,4608:13253584,9788079 -g1,4608:13569730,9788079 -g1,4608:13885876,9788079 -g1,4608:14202022,9788079 -g1,4608:14518168,9788079 -g1,4608:14834314,9788079 -g1,4608:15150460,9788079 -g1,4608:15782752,9788079 -g1,4608:16098898,9788079 -g1,4608:16415044,9788079 -g1,4608:16731190,9788079 -g1,4608:17047336,9788079 -g1,4608:17363482,9788079 -g1,4608:17679628,9788079 -g1,4608:17995774,9788079 -g1,4608:18311920,9788079 -g1,4608:18628066,9788079 -g1,4608:18944212,9788079 -g1,4608:19576504,9788079 -g1,4608:19892650,9788079 -g1,4608:20208796,9788079 -g1,4608:20524942,9788079 -g1,4608:20841088,9788079 -g1,4608:21157234,9788079 -g1,4608:21473380,9788079 -g1,4608:21789526,9788079 -g1,4608:22105672,9788079 -g1,4608:22421818,9788079 -h1,4608:23054109,9788079:0,0,0 -k1,4608:31966991,9788079:8912882 -g1,4608:31966991,9788079 -) -(1,4608:7246811,10454257:24720180,388497,9436 -h1,4608:7246811,10454257:0,0,0 -g1,4608:8195248,10454257 -g1,4608:8827540,10454257 -g1,4608:9143686,10454257 -g1,4608:9459832,10454257 -g1,4608:9775978,10454257 -g1,4608:10092124,10454257 -g1,4608:10408270,10454257 -g1,4608:10724416,10454257 -g1,4608:11040562,10454257 -g1,4608:11356708,10454257 -g1,4608:11989000,10454257 -g1,4608:12305146,10454257 -g1,4608:12621292,10454257 -g1,4608:12937438,10454257 -g1,4608:13253584,10454257 -g1,4608:13569730,10454257 -g1,4608:13885876,10454257 -g1,4608:14202022,10454257 -g1,4608:14518168,10454257 -g1,4608:14834314,10454257 -g1,4608:15150460,10454257 -g1,4608:15782752,10454257 -g1,4608:16098898,10454257 -g1,4608:16415044,10454257 -g1,4608:16731190,10454257 -g1,4608:17047336,10454257 -g1,4608:17363482,10454257 -g1,4608:17679628,10454257 -g1,4608:17995774,10454257 -g1,4608:18311920,10454257 -g1,4608:18628066,10454257 -g1,4608:18944212,10454257 -g1,4608:19576504,10454257 -g1,4608:19892650,10454257 -g1,4608:20208796,10454257 -g1,4608:20524942,10454257 -g1,4608:20841088,10454257 -g1,4608:21157234,10454257 -g1,4608:21473380,10454257 -g1,4608:21789526,10454257 -g1,4608:22105672,10454257 -g1,4608:22421818,10454257 -h1,4608:23054109,10454257:0,0,0 -k1,4608:31966991,10454257:8912882 -g1,4608:31966991,10454257 -) -(1,4608:7246811,11120435:24720180,388497,9436 -h1,4608:7246811,11120435:0,0,0 -g1,4608:8195248,11120435 -g1,4608:8827540,11120435 -g1,4608:9143686,11120435 -g1,4608:9459832,11120435 -g1,4608:9775978,11120435 -g1,4608:10092124,11120435 -g1,4608:10408270,11120435 -g1,4608:10724416,11120435 -g1,4608:11040562,11120435 -g1,4608:11356708,11120435 -g1,4608:11989000,11120435 -g1,4608:12305146,11120435 -g1,4608:12621292,11120435 -g1,4608:12937438,11120435 -g1,4608:13253584,11120435 -g1,4608:13569730,11120435 -g1,4608:13885876,11120435 -g1,4608:14202022,11120435 -g1,4608:14518168,11120435 -g1,4608:14834314,11120435 -g1,4608:15150460,11120435 -g1,4608:15782752,11120435 -g1,4608:16098898,11120435 -g1,4608:16415044,11120435 -g1,4608:16731190,11120435 -g1,4608:17047336,11120435 -g1,4608:17363482,11120435 -g1,4608:17679628,11120435 -g1,4608:17995774,11120435 -g1,4608:18311920,11120435 -g1,4608:18628066,11120435 -g1,4608:18944212,11120435 -g1,4608:19576504,11120435 -g1,4608:19892650,11120435 -g1,4608:20208796,11120435 -g1,4608:20524942,11120435 -g1,4608:20841088,11120435 -g1,4608:21157234,11120435 -g1,4608:21473380,11120435 -g1,4608:21789526,11120435 -g1,4608:22105672,11120435 -g1,4608:22421818,11120435 -h1,4608:23054109,11120435:0,0,0 -k1,4608:31966991,11120435:8912882 -g1,4608:31966991,11120435 -) -(1,4610:7246811,12441973:24720180,410518,101187 -(1,4609:7246811,12441973:0,0,0 -g1,4609:7246811,12441973 -g1,4609:7246811,12441973 -g1,4609:6919131,12441973 -(1,4609:6919131,12441973:0,0,0 -) -g1,4609:7246811,12441973 -) -h1,4610:11356705,12441973:0,0,0 -k1,4610:31966991,12441973:20610286 -g1,4610:31966991,12441973 -) -(1,4618:7246811,13173687:24720180,404226,82312 -(1,4612:7246811,13173687:0,0,0 -g1,4612:7246811,13173687 -g1,4612:7246811,13173687 -g1,4612:6919131,13173687 -(1,4612:6919131,13173687:0,0,0 -) -g1,4612:7246811,13173687 -) -g1,4618:8195248,13173687 -g1,4618:8511394,13173687 -g1,4618:8827540,13173687 -g1,4618:9143686,13173687 -g1,4618:9459832,13173687 -g1,4618:9775978,13173687 -g1,4618:11356707,13173687 -g1,4618:12937436,13173687 -k1,4618:12937436,13173687:0 -h1,4618:14202019,13173687:0,0,0 -k1,4618:31966991,13173687:17764972 -g1,4618:31966991,13173687 -) -(1,4618:7246811,13839865:24720180,404226,82312 -h1,4618:7246811,13839865:0,0,0 -g1,4618:8195248,13839865 -g1,4618:9775976,13839865 -g1,4618:10092122,13839865 -g1,4618:10408268,13839865 -g1,4618:10724414,13839865 -g1,4618:11356706,13839865 -g1,4618:11672852,13839865 -g1,4618:11988998,13839865 -g1,4618:12305144,13839865 -g1,4618:12937436,13839865 -g1,4618:13253582,13839865 -g1,4618:13569728,13839865 -g1,4618:13885874,13839865 -h1,4618:14202020,13839865:0,0,0 -k1,4618:31966992,13839865:17764972 -g1,4618:31966992,13839865 -) -(1,4618:7246811,14506043:24720180,404226,82312 -h1,4618:7246811,14506043:0,0,0 -g1,4618:8195248,14506043 -g1,4618:9775976,14506043 -g1,4618:10092122,14506043 -g1,4618:10408268,14506043 -g1,4618:10724414,14506043 -g1,4618:11356706,14506043 -g1,4618:11672852,14506043 -g1,4618:11988998,14506043 -g1,4618:12305144,14506043 -g1,4618:12937436,14506043 -g1,4618:13253582,14506043 -g1,4618:13569728,14506043 -h1,4618:14202019,14506043:0,0,0 -k1,4618:31966991,14506043:17764972 -g1,4618:31966991,14506043 -) -(1,4618:7246811,15172221:24720180,404226,82312 -h1,4618:7246811,15172221:0,0,0 -g1,4618:8195248,15172221 -g1,4618:9775976,15172221 -g1,4618:10092122,15172221 -g1,4618:10408268,15172221 -g1,4618:10724414,15172221 -g1,4618:11356706,15172221 -g1,4618:11672852,15172221 -g1,4618:11988998,15172221 -g1,4618:12305144,15172221 -g1,4618:12937436,15172221 -g1,4618:13253582,15172221 -g1,4618:13569728,15172221 -h1,4618:14202019,15172221:0,0,0 -k1,4618:31966991,15172221:17764972 -g1,4618:31966991,15172221 -) -(1,4618:7246811,15838399:24720180,404226,82312 -h1,4618:7246811,15838399:0,0,0 -g1,4618:8195248,15838399 -g1,4618:9775976,15838399 -g1,4618:10092122,15838399 -g1,4618:10408268,15838399 -g1,4618:10724414,15838399 -g1,4618:11356706,15838399 -g1,4618:11672852,15838399 -g1,4618:11988998,15838399 -g1,4618:12305144,15838399 -g1,4618:12937436,15838399 -g1,4618:13253582,15838399 -g1,4618:13569728,15838399 -h1,4618:14202019,15838399:0,0,0 -k1,4618:31966991,15838399:17764972 -g1,4618:31966991,15838399 -) -] -) -g1,4619:31966991,15920711 -g1,4619:7246811,15920711 -g1,4619:7246811,15920711 -g1,4619:31966991,15920711 -g1,4619:31966991,15920711 -) -h1,4619:7246811,16117319:0,0,0 -(1,4623:7246811,17512702:24720180,513147,102891 -h1,4622:7246811,17512702:983040,0,0 -k1,4622:8973835,17512702:266227 -k1,4622:10108415,17512702:266228 -k1,4622:11862965,17512702:266227 -k1,4622:13523144,17512702:266228 -k1,4622:14145231,17512702:266227 -k1,4622:15578655,17512702:266228 -k1,4622:17296504,17512702:266227 -k1,4622:20186138,17512702:266228 -k1,4622:21846316,17512702:266227 -k1,4622:22468404,17512702:266228 -k1,4622:25246626,17512702:266227 -k1,4622:27998635,17512702:266228 -k1,4622:28924154,17512702:266227 -k1,4622:31966991,17512702:0 -) -(1,4623:7246811,18354190:24720180,513147,7863 -k1,4622:8918328,18354190:219895 -k1,4622:11761629,18354190:219895 -k1,4622:14755009,18354190:219896 -k1,4622:15330764,18354190:219895 -k1,4622:17933548,18354190:219895 -k1,4622:18769481,18354190:219895 -k1,4622:20008461,18354190:219895 -k1,4622:21617720,18354190:219896 -k1,4622:23887581,18354190:219895 -k1,4622:24735311,18354190:219895 -k1,4622:25974291,18354190:219895 -k1,4622:27561267,18354190:219895 -k1,4622:28440455,18354190:219896 -k1,4622:29016210,18354190:219895 -k1,4622:30282060,18354190:219895 -k1,4622:31966991,18354190:0 -) -(1,4623:7246811,19195678:24720180,505283,134348 -g1,4622:8776421,19195678 -g1,4622:11834986,19195678 -g1,4622:12565712,19195678 -k1,4623:31966990,19195678:16855860 -g1,4623:31966990,19195678 -) -v1,4625:7246811,20405882:0,393216,0 -(1,4638:7246811,25347000:24720180,5334334,196608 -g1,4638:7246811,25347000 -g1,4638:7246811,25347000 -g1,4638:7050203,25347000 -(1,4638:7050203,25347000:0,5334334,196608 -r1,4675:32163599,25347000:25113396,5530942,196608 -k1,4638:7050203,25347000:-25113396 -) -(1,4638:7050203,25347000:25113396,5334334,196608 -[1,4638:7246811,25347000:24720180,5137726,0 -(1,4627:7246811,20613500:24720180,404226,101187 -(1,4626:7246811,20613500:0,0,0 -g1,4626:7246811,20613500 -g1,4626:7246811,20613500 -g1,4626:6919131,20613500 -(1,4626:6919131,20613500:0,0,0 -) -g1,4626:7246811,20613500 -) -g1,4627:9775977,20613500 -g1,4627:10724415,20613500 -g1,4627:12937436,20613500 -g1,4627:13569728,20613500 -g1,4627:15150458,20613500 -g1,4627:15782750,20613500 -g1,4627:16415042,20613500 -g1,4627:20841083,20613500 -g1,4627:21473375,20613500 -g1,4627:22105667,20613500 -g1,4627:23686396,20613500 -g1,4627:24318688,20613500 -g1,4627:24950980,20613500 -h1,4627:26215563,20613500:0,0,0 -k1,4627:31966991,20613500:5751428 -g1,4627:31966991,20613500 -) -(1,4628:7246811,21279678:24720180,410518,101187 -h1,4628:7246811,21279678:0,0,0 -g1,4628:9143686,21279678 -g1,4628:16098892,21279678 -h1,4628:18628057,21279678:0,0,0 -k1,4628:31966991,21279678:13338934 -g1,4628:31966991,21279678 -) -(1,4629:7246811,21945856:24720180,410518,9436 -h1,4629:7246811,21945856:0,0,0 -h1,4629:8195248,21945856:0,0,0 -k1,4629:31966992,21945856:23771744 -g1,4629:31966992,21945856 -) -(1,4637:7246811,22677570:24720180,410518,101187 -(1,4631:7246811,22677570:0,0,0 -g1,4631:7246811,22677570 -g1,4631:7246811,22677570 -g1,4631:6919131,22677570 -(1,4631:6919131,22677570:0,0,0 -) -g1,4631:7246811,22677570 -) -g1,4637:8195248,22677570 -g1,4637:8511394,22677570 -g1,4637:8827540,22677570 -g1,4637:11988997,22677570 -g1,4637:12621289,22677570 -g1,4637:13253581,22677570 -g1,4637:13885873,22677570 -h1,4637:14202019,22677570:0,0,0 -k1,4637:31966991,22677570:17764972 -g1,4637:31966991,22677570 -) -(1,4637:7246811,23343748:24720180,404226,6290 -h1,4637:7246811,23343748:0,0,0 -g1,4637:8195248,23343748 -g1,4637:8827540,23343748 -g1,4637:9143686,23343748 -g1,4637:9459832,23343748 -g1,4637:9775978,23343748 -g1,4637:10092124,23343748 -g1,4637:10408270,23343748 -g1,4637:10724416,23343748 -g1,4637:11040562,23343748 -g1,4637:11356708,23343748 -g1,4637:11989000,23343748 -g1,4637:12621292,23343748 -g1,4637:13253584,23343748 -g1,4637:13885876,23343748 -h1,4637:14202022,23343748:0,0,0 -k1,4637:31966990,23343748:17764968 -g1,4637:31966990,23343748 -) -(1,4637:7246811,24009926:24720180,388497,9436 -h1,4637:7246811,24009926:0,0,0 -g1,4637:8195248,24009926 -g1,4637:8827540,24009926 -g1,4637:9143686,24009926 -g1,4637:9459832,24009926 -g1,4637:9775978,24009926 -g1,4637:10092124,24009926 -g1,4637:10408270,24009926 -g1,4637:10724416,24009926 -g1,4637:11040562,24009926 -g1,4637:11356708,24009926 -g1,4637:11989000,24009926 -g1,4637:12621292,24009926 -g1,4637:13253584,24009926 -g1,4637:13885876,24009926 -h1,4637:14202022,24009926:0,0,0 -k1,4637:31966990,24009926:17764968 -g1,4637:31966990,24009926 -) -(1,4637:7246811,24676104:24720180,404226,9436 -h1,4637:7246811,24676104:0,0,0 -g1,4637:8195248,24676104 -g1,4637:8827540,24676104 -g1,4637:9143686,24676104 -g1,4637:9459832,24676104 -g1,4637:9775978,24676104 -g1,4637:10092124,24676104 -g1,4637:10408270,24676104 -g1,4637:10724416,24676104 -g1,4637:11040562,24676104 -g1,4637:11356708,24676104 -g1,4637:11989000,24676104 -g1,4637:12621292,24676104 -g1,4637:13253584,24676104 -g1,4637:13885876,24676104 -h1,4637:14202022,24676104:0,0,0 -k1,4637:31966990,24676104:17764968 -g1,4637:31966990,24676104 -) -(1,4637:7246811,25342282:24720180,388497,4718 -h1,4637:7246811,25342282:0,0,0 -g1,4637:8195248,25342282 -g1,4637:8827540,25342282 -g1,4637:9143686,25342282 -g1,4637:9459832,25342282 -g1,4637:9775978,25342282 -g1,4637:10092124,25342282 -g1,4637:10408270,25342282 -g1,4637:10724416,25342282 -g1,4637:11040562,25342282 -g1,4637:11356708,25342282 -g1,4637:11989000,25342282 -g1,4637:12621292,25342282 -g1,4637:13253584,25342282 -g1,4637:13885876,25342282 -h1,4637:14202022,25342282:0,0,0 -k1,4637:31966990,25342282:17764968 -g1,4637:31966990,25342282 -) -] -) -g1,4638:31966991,25347000 -g1,4638:7246811,25347000 -g1,4638:7246811,25347000 -g1,4638:31966991,25347000 -g1,4638:31966991,25347000 -) -h1,4638:7246811,25543608:0,0,0 -(1,4643:7246811,26763681:24720180,513147,126483 -h1,4641:7246811,26763681:983040,0,0 -k1,4641:8898400,26763681:190792 -k1,4641:9957543,26763681:190791 -k1,4641:12446683,26763681:190792 -k1,4641:13656560,26763681:190792 -k1,4641:15014547,26763681:190791 -k1,4641:16639267,26763681:190792 -k1,4641:17849144,26763681:190792 -k1,4641:19033461,26763681:190791 -k1,4641:19755750,26763681:190792 -k1,4641:21911967,26763681:190792 -k1,4641:22718797,26763681:190792 -k1,4641:24966108,26763681:190791 -k1,4641:27925141,26763681:190792 -k1,4641:28802095,26763681:190792 -k1,4641:29608924,26763681:190791 -k1,4641:30155576,26763681:190792 -k1,4641:31966991,26763681:0 -) -(1,4643:7246811,27429859:24720180,513147,134348 -g1,4641:8678117,27429859 -g1,4641:11294969,27429859 -h1,4641:11693428,27429859:0,0,0 -g1,4641:11892657,27429859 -g1,4641:14570458,27429859 -g1,4641:15579057,27429859 -g1,4641:17276439,27429859 -h1,4641:18471816,27429859:0,0,0 -g1,4641:18671045,27429859 -g1,4641:19817925,27429859 -g1,4641:22134622,27429859 -g1,4641:24156407,27429859 -g1,4641:25374721,27429859 -g1,4641:29352100,27429859 -k1,4643:31966991,27429859:2614891 -g1,4643:31966991,27429859 -) -v1,4643:7246811,28640063:0,393216,0 -(1,4671:7246811,41707630:24720180,13460783,196608 -g1,4671:7246811,41707630 -g1,4671:7246811,41707630 -g1,4671:7050203,41707630 -(1,4671:7050203,41707630:0,13460783,196608 -r1,4675:32163599,41707630:25113396,13657391,196608 -k1,4671:7050203,41707630:-25113396 -) -(1,4671:7050203,41707630:25113396,13460783,196608 -[1,4671:7246811,41707630:24720180,13264175,0 -(1,4645:7246811,28853973:24720180,410518,101187 -(1,4644:7246811,28853973:0,0,0 -g1,4644:7246811,28853973 -g1,4644:7246811,28853973 -g1,4644:6919131,28853973 -(1,4644:6919131,28853973:0,0,0 -) -g1,4644:7246811,28853973 -) -k1,4645:7246811,28853973:0 -g1,4645:9143686,28853973 -g1,4645:16098892,28853973 -k1,4645:16098892,28853973:0 -h1,4645:19576495,28853973:0,0,0 -k1,4645:31966991,28853973:12390496 -g1,4645:31966991,28853973 -) -(1,4646:7246811,29520151:24720180,410518,6290 -h1,4646:7246811,29520151:0,0,0 -h1,4646:8195248,29520151:0,0,0 -k1,4646:31966992,29520151:23771744 -g1,4646:31966992,29520151 -) -(1,4654:7246811,30251865:24720180,410518,101187 -(1,4648:7246811,30251865:0,0,0 -g1,4648:7246811,30251865 -g1,4648:7246811,30251865 -g1,4648:6919131,30251865 -(1,4648:6919131,30251865:0,0,0 -) -g1,4648:7246811,30251865 -) -g1,4654:8195248,30251865 -g1,4654:8511394,30251865 -g1,4654:8827540,30251865 -g1,4654:11988997,30251865 -g1,4654:12305143,30251865 -g1,4654:12621289,30251865 -g1,4654:12937435,30251865 -h1,4654:15150455,30251865:0,0,0 -k1,4654:31966991,30251865:16816536 -g1,4654:31966991,30251865 -) -(1,4654:7246811,30918043:24720180,388497,82312 -h1,4654:7246811,30918043:0,0,0 -g1,4654:8195248,30918043 -g1,4654:8827540,30918043 -g1,4654:9143686,30918043 -g1,4654:9459832,30918043 -g1,4654:9775978,30918043 -g1,4654:10092124,30918043 -g1,4654:10408270,30918043 -g1,4654:10724416,30918043 -g1,4654:11040562,30918043 -g1,4654:11356708,30918043 -g1,4654:11989000,30918043 -g1,4654:12937438,30918043 -g1,4654:13885876,30918043 -g1,4654:14834314,30918043 -h1,4654:15150460,30918043:0,0,0 -k1,4654:31966992,30918043:16816532 -g1,4654:31966992,30918043 -) -(1,4654:7246811,31584221:24720180,404226,82312 -h1,4654:7246811,31584221:0,0,0 -g1,4654:8195248,31584221 -g1,4654:8827540,31584221 -g1,4654:9143686,31584221 -g1,4654:9459832,31584221 -g1,4654:9775978,31584221 -g1,4654:10092124,31584221 -g1,4654:10408270,31584221 -g1,4654:10724416,31584221 -g1,4654:11040562,31584221 -g1,4654:11356708,31584221 -g1,4654:11989000,31584221 -g1,4654:12937438,31584221 -g1,4654:13885876,31584221 -g1,4654:14834314,31584221 -h1,4654:15150460,31584221:0,0,0 -k1,4654:31966992,31584221:16816532 -g1,4654:31966992,31584221 -) -(1,4654:7246811,32250399:24720180,388497,9436 -h1,4654:7246811,32250399:0,0,0 -g1,4654:8195248,32250399 -g1,4654:8827540,32250399 -g1,4654:9143686,32250399 -g1,4654:9459832,32250399 -g1,4654:9775978,32250399 -g1,4654:10092124,32250399 -g1,4654:10408270,32250399 -g1,4654:10724416,32250399 -g1,4654:11040562,32250399 -g1,4654:11356708,32250399 -g1,4654:11989000,32250399 -g1,4654:12305146,32250399 -g1,4654:12621292,32250399 -g1,4654:12937438,32250399 -g1,4654:13253584,32250399 -g1,4654:13569730,32250399 -g1,4654:13885876,32250399 -g1,4654:14202022,32250399 -g1,4654:14518168,32250399 -g1,4654:14834314,32250399 -h1,4654:15150460,32250399:0,0,0 -k1,4654:31966992,32250399:16816532 -g1,4654:31966992,32250399 -) -(1,4654:7246811,32916577:24720180,404226,6290 -h1,4654:7246811,32916577:0,0,0 -g1,4654:8195248,32916577 -g1,4654:8827540,32916577 -g1,4654:9143686,32916577 -g1,4654:9459832,32916577 -g1,4654:9775978,32916577 -g1,4654:10092124,32916577 -g1,4654:10408270,32916577 -g1,4654:10724416,32916577 -g1,4654:11040562,32916577 -g1,4654:11356708,32916577 -g1,4654:11989000,32916577 -g1,4654:12305146,32916577 -g1,4654:12621292,32916577 -g1,4654:12937438,32916577 -g1,4654:13253584,32916577 -g1,4654:13569730,32916577 -g1,4654:13885876,32916577 -g1,4654:14202022,32916577 -g1,4654:14518168,32916577 -g1,4654:14834314,32916577 -h1,4654:15150460,32916577:0,0,0 -k1,4654:31966992,32916577:16816532 -g1,4654:31966992,32916577 -) -(1,4656:7246811,34238115:24720180,410518,101187 -(1,4655:7246811,34238115:0,0,0 -g1,4655:7246811,34238115 -g1,4655:7246811,34238115 -g1,4655:6919131,34238115 -(1,4655:6919131,34238115:0,0,0 -) -g1,4655:7246811,34238115 -) -h1,4656:10724414,34238115:0,0,0 -k1,4656:31966990,34238115:21242576 -g1,4656:31966990,34238115 -) -(1,4670:7246811,34969829:24720180,410518,31456 -(1,4658:7246811,34969829:0,0,0 -g1,4658:7246811,34969829 -g1,4658:7246811,34969829 -g1,4658:6919131,34969829 -(1,4658:6919131,34969829:0,0,0 -) -g1,4658:7246811,34969829 -) -g1,4670:8195248,34969829 -h1,4670:8827539,34969829:0,0,0 -k1,4670:31966991,34969829:23139452 -g1,4670:31966991,34969829 -) -(1,4670:7246811,35636007:24720180,404226,76021 -h1,4670:7246811,35636007:0,0,0 -g1,4670:8195248,35636007 -g1,4670:9459831,35636007 -g1,4670:10092123,35636007 -g1,4670:10724415,35636007 -g1,4670:11356707,35636007 -h1,4670:11672853,35636007:0,0,0 -k1,4670:31966991,35636007:20294138 -g1,4670:31966991,35636007 -) -(1,4670:7246811,36302185:24720180,379060,0 -h1,4670:7246811,36302185:0,0,0 -h1,4670:7879102,36302185:0,0,0 -k1,4670:31966990,36302185:24087888 -g1,4670:31966990,36302185 -) -(1,4670:7246811,36968363:24720180,410518,31456 -h1,4670:7246811,36968363:0,0,0 -g1,4670:8195248,36968363 -h1,4670:8827539,36968363:0,0,0 -k1,4670:31966991,36968363:23139452 -g1,4670:31966991,36968363 -) -(1,4670:7246811,37634541:24720180,404226,76021 -h1,4670:7246811,37634541:0,0,0 -g1,4670:8195248,37634541 -g1,4670:9459831,37634541 -g1,4670:10724414,37634541 -g1,4670:11988997,37634541 -g1,4670:13253580,37634541 -h1,4670:14202017,37634541:0,0,0 -k1,4670:31966991,37634541:17764974 -g1,4670:31966991,37634541 -) -(1,4670:7246811,38300719:24720180,379060,0 -h1,4670:7246811,38300719:0,0,0 -h1,4670:7879102,38300719:0,0,0 -k1,4670:31966990,38300719:24087888 -g1,4670:31966990,38300719 -) -(1,4670:7246811,38966897:24720180,410518,31456 -h1,4670:7246811,38966897:0,0,0 -g1,4670:8195248,38966897 -h1,4670:8827539,38966897:0,0,0 -k1,4670:31966991,38966897:23139452 -g1,4670:31966991,38966897 -) -(1,4670:7246811,39633075:24720180,404226,76021 -h1,4670:7246811,39633075:0,0,0 -g1,4670:8195248,39633075 -g1,4670:9459831,39633075 -h1,4670:10408268,39633075:0,0,0 -k1,4670:31966992,39633075:21558724 -g1,4670:31966992,39633075 -) -(1,4670:7246811,40299253:24720180,379060,0 -h1,4670:7246811,40299253:0,0,0 -h1,4670:7879102,40299253:0,0,0 -k1,4670:31966990,40299253:24087888 -g1,4670:31966990,40299253 -) -(1,4670:7246811,40965431:24720180,410518,31456 -h1,4670:7246811,40965431:0,0,0 -g1,4670:8195248,40965431 -h1,4670:8827539,40965431:0,0,0 -k1,4670:31966991,40965431:23139452 -g1,4670:31966991,40965431 -) -(1,4670:7246811,41631609:24720180,404226,76021 -h1,4670:7246811,41631609:0,0,0 -g1,4670:8195248,41631609 -g1,4670:9459831,41631609 -h1,4670:10408268,41631609:0,0,0 -k1,4670:31966992,41631609:21558724 -g1,4670:31966992,41631609 -) -] -) -g1,4671:31966991,41707630 -g1,4671:7246811,41707630 -g1,4671:7246811,41707630 -g1,4671:31966991,41707630 -g1,4671:31966991,41707630 -) -h1,4671:7246811,41904238:0,0,0 -(1,4675:7246811,43299621:24720180,513147,126483 -h1,4674:7246811,43299621:983040,0,0 -k1,4674:10176271,43299621:312607 -k1,4674:11020374,43299621:312606 -k1,4674:12536222,43299621:312607 -k1,4674:15409320,43299621:312606 -k1,4674:17871508,43299621:312607 -k1,4674:19081958,43299621:312607 -k1,4674:21216465,43299621:312606 -k1,4674:22548157,43299621:312607 -k1,4674:27686834,43299621:312606 -k1,4674:30775546,43299621:312607 -k1,4674:31966991,43299621:0 -) -(1,4675:7246811,44141109:24720180,513147,134348 -k1,4674:9212638,44141109:285484 -k1,4674:10157415,44141109:285485 -k1,4674:11865686,44141109:285484 -k1,4674:14070065,44141109:285485 -k1,4674:15374634,44141109:285484 -k1,4674:18634143,44141109:285485 -k1,4674:21033818,44141109:285484 -k1,4674:22080831,44141109:285485 -k1,4674:23458800,44141109:285484 -k1,4674:24403577,44141109:285485 -k1,4674:27384557,44141109:285484 -(1,4674:27384557,44141109:0,452978,115847 -r1,4675:28446246,44141109:1061689,568825,115847 -k1,4674:27384557,44141109:-1061689 -) -(1,4674:27384557,44141109:1061689,452978,115847 -k1,4674:27384557,44141109:3277 -h1,4674:28442969,44141109:0,411205,112570 -) -k1,4674:28731731,44141109:285485 -k1,4674:29668643,44141109:285484 -k1,4674:31966991,44141109:0 -) -(1,4675:7246811,44982597:24720180,513147,134348 -k1,4674:10853189,44982597:203749 -k1,4674:13262225,44982597:203749 -k1,4674:14117402,44982597:203749 -k1,4674:15340236,44982597:203749 -(1,4674:15340236,44982597:0,459977,115847 -r1,4675:19567332,44982597:4227096,575824,115847 -k1,4674:15340236,44982597:-4227096 -) -(1,4674:15340236,44982597:4227096,459977,115847 -k1,4674:15340236,44982597:3277 -h1,4674:19564055,44982597:0,411205,112570 -) -k1,4674:19771081,44982597:203749 -k1,4674:23681545,44982597:203748 -k1,4674:24989576,44982597:203749 -k1,4674:25941091,44982597:203749 -k1,4674:28295732,44982597:203749 -k1,4674:29127316,44982597:203749 -k1,4674:31966991,44982597:0 -) -] -) -] -r1,4675:32583029,45706769:26214,39845888,0 -) -] -) -) -g1,4675:32583029,45116945 -) -] -(1,4675:32583029,45706769:0,0,0 -g1,4675:32583029,45706769 -) -) -] -(1,4675:6630773,47279633:25952256,0,0 -h1,4675:6630773,47279633:25952256,0,0 -) -] -(1,4675:4262630,4025873:0,0,0 -[1,4675:-473656,4025873:0,0,0 -(1,4675:-473656,-710413:0,0,0 -(1,4675:-473656,-710413:0,0,0 -g1,4675:-473656,-710413 -) -g1,4675:-473656,-710413 -) -] -) -] -!28603 -}86 -Input:621:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:622:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!193 -{87 -[1,4735:4262630,47279633:28320399,43253760,0 -(1,4735:4262630,4025873:0,0,0 -[1,4735:-473656,4025873:0,0,0 -(1,4735:-473656,-710413:0,0,0 -(1,4735:-473656,-644877:0,0,0 -k1,4735:-473656,-644877:-65536 -) -(1,4735:-473656,4736287:0,0,0 -k1,4735:-473656,4736287:5209943 -) -g1,4735:-473656,-710413 -) -] -) -[1,4735:6630773,47279633:25952256,43253760,0 -[1,4735:6630773,4812305:25952256,786432,0 -(1,4735:6630773,4812305:25952256,505283,134348 -(1,4735:6630773,4812305:25952256,505283,134348 -g1,4735:3078558,4812305 -[1,4735:3078558,4812305:0,0,0 -(1,4735:3078558,2439708:0,1703936,0 -k1,4735:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,4735:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,4735:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,4735:3078558,4812305:0,0,0 -(1,4735:3078558,2439708:0,1703936,0 -g1,4735:29030814,2439708 -g1,4735:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,4735:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,4735:37855564,2439708:1179648,16384,0 -) -) -k1,4735:3078556,2439708:-34777008 -) -] -[1,4735:3078558,4812305:0,0,0 -(1,4735:3078558,49800853:0,16384,2228224 -k1,4735:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,4735:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,4735:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,4735:3078558,4812305:0,0,0 -(1,4735:3078558,49800853:0,16384,2228224 -g1,4735:29030814,49800853 -g1,4735:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,4735:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,4735:37855564,49800853:1179648,16384,0 -) -) -k1,4735:3078556,49800853:-34777008 -) -] -g1,4735:6630773,4812305 -k1,4735:19515153,4812305:12087462 -g1,4735:20901894,4812305 -g1,4735:21550700,4812305 -g1,4735:24864855,4812305 -g1,4735:27600327,4812305 -g1,4735:29010006,4812305 -) -) -] -[1,4735:6630773,45706769:25952256,40108032,0 -(1,4735:6630773,45706769:25952256,40108032,0 -(1,4735:6630773,45706769:0,0,0 -g1,4735:6630773,45706769 -) -[1,4735:6630773,45706769:25952256,40108032,0 -v1,4675:6630773,6254097:0,393216,0 -(1,4675:6630773,7939688:25952256,2078807,616038 -g1,4675:6630773,7939688 -(1,4675:6630773,7939688:25952256,2078807,616038 -(1,4675:6630773,8555726:25952256,2694845,0 -[1,4675:6630773,8555726:25952256,2694845,0 -(1,4675:6630773,8529512:25952256,2668631,0 -r1,4735:6656987,8529512:26214,2668631,0 -[1,4675:6656987,8529512:25899828,2668631,0 -(1,4675:6656987,7939688:25899828,1488983,0 -[1,4675:7246811,7939688:24720180,1488983,0 -(1,4675:7246811,6963852:24720180,513147,134348 -k1,4674:9010623,6963852:149005 -k1,4674:10655815,6963852:149005 -k1,4674:11456248,6963852:149005 -k1,4674:13809229,6963852:149005 -k1,4674:17151148,6963852:149005 -k1,4674:20253861,6963852:149005 -k1,4674:21062158,6963852:149005 -k1,4674:24535804,6963852:149005 -k1,4674:27418316,6963852:149005 -k1,4674:28758766,6963852:149005 -k1,4674:30231598,6963852:149005 -k1,4674:31966991,6963852:0 -) -(1,4675:7246811,7805340:24720180,505283,134348 -g1,4674:10185445,7805340 -g1,4674:11000712,7805340 -g1,4674:11555801,7805340 -g1,4674:13628049,7805340 -g1,4674:14242121,7805340 -g1,4674:17627710,7805340 -g1,4674:18442977,7805340 -g1,4674:20093828,7805340 -k1,4675:31966991,7805340:10332412 -g1,4675:31966991,7805340 -) -] -) -] -r1,4735:32583029,8529512:26214,2668631,0 -) -] -) -) -g1,4675:32583029,7939688 -) -h1,4675:6630773,8555726:0,0,0 -(1,4678:6630773,9711786:25952256,513147,134348 -h1,4677:6630773,9711786:983040,0,0 -k1,4677:9231778,9711786:146026 -k1,4677:11584401,9711786:146026 -k1,4677:12721987,9711786:146026 -k1,4677:16006532,9711786:146026 -k1,4677:19361856,9711786:146026 -k1,4677:20159311,9711786:146027 -k1,4677:22593854,9711786:146026 -k1,4677:25812863,9711786:146026 -k1,4677:26641774,9711786:146026 -k1,4677:29312247,9711786:146026 -k1,4677:30847636,9711786:146026 -k1,4678:32583029,9711786:0 -) -(1,4678:6630773,10553274:25952256,513147,134348 -k1,4677:7451377,10553274:232091 -k1,4677:8954866,10553274:232091 -k1,4677:10291239,10553274:232091 -k1,4677:12203673,10553274:232091 -k1,4677:13095056,10553274:232091 -k1,4677:14716510,10553274:232091 -k1,4677:17155199,10553274:232092 -k1,4677:18073452,10553274:232091 -k1,4677:20375825,10553274:232091 -k1,4677:23960083,10553274:232091 -k1,4677:28202322,10553274:232091 -k1,4677:29117298,10553274:232091 -k1,4677:30035551,10553274:232091 -k1,4677:31765140,10553274:232091 -k1,4677:32583029,10553274:0 -) -(1,4678:6630773,11394762:25952256,513147,134348 -k1,4677:8004559,11394762:203313 -k1,4677:9544806,11394762:203313 -k1,4677:11223334,11394762:203313 -k1,4677:13991725,11394762:203312 -k1,4677:15762659,11394762:203313 -k1,4677:16985057,11394762:203313 -k1,4677:20180089,11394762:203313 -k1,4677:22416984,11394762:203313 -k1,4677:23236335,11394762:203313 -k1,4677:24642888,11394762:203312 -k1,4677:27298558,11394762:203313 -k1,4677:29156655,11394762:203313 -k1,4677:30351528,11394762:203313 -k1,4677:32583029,11394762:0 -) -(1,4678:6630773,12236250:25952256,513147,134348 -k1,4677:9564046,12236250:170930 -k1,4677:11303252,12236250:170929 -k1,4677:12133474,12236250:170930 -k1,4677:15325614,12236250:170930 -k1,4677:18383404,12236250:170929 -k1,4677:20262202,12236250:170930 -k1,4677:21624576,12236250:170929 -k1,4677:24988420,12236250:170930 -k1,4677:29231102,12236250:170930 -k1,4677:31440201,12236250:170929 -k1,4677:32227169,12236250:170930 -k1,4677:32583029,12236250:0 -) -(1,4678:6630773,13077738:25952256,513147,102891 -k1,4677:8210540,13077738:190404 -k1,4677:10450910,13077738:190404 -k1,4677:11838000,13077738:190403 -k1,4677:14741595,13077738:190404 -k1,4677:16036281,13077738:190404 -k1,4677:16974451,13077738:190404 -k1,4677:19438299,13077738:190404 -k1,4677:20314864,13077738:190403 -k1,4677:23458976,13077738:190404 -k1,4677:24265418,13077738:190404 -k1,4677:24811682,13077738:190404 -k1,4677:26169282,13077738:190404 -k1,4677:27551130,13077738:190403 -k1,4677:28845816,13077738:190404 -k1,4677:29783986,13077738:190404 -k1,4677:32583029,13077738:0 -) -(1,4678:6630773,13919226:25952256,505283,134348 -k1,4677:8240025,13919226:142556 -k1,4677:9144109,13919226:142556 -k1,4677:11024681,13919226:142557 -k1,4677:11850122,13919226:142556 -k1,4677:13741834,13919226:142556 -k1,4677:17086479,13919226:142556 -k1,4677:19012270,13919226:142556 -k1,4677:21953870,13919226:142557 -k1,4677:22857954,13919226:142556 -k1,4677:24912195,13919226:142556 -k1,4677:26790144,13919226:142556 -(1,4677:26790144,13919226:0,459977,115847 -r1,4735:27148410,13919226:358266,575824,115847 -k1,4677:26790144,13919226:-358266 -) -(1,4677:26790144,13919226:358266,459977,115847 -k1,4677:26790144,13919226:3277 -h1,4677:27145133,13919226:0,411205,112570 -) -k1,4677:27290967,13919226:142557 -k1,4677:28116408,13919226:142556 -k1,4677:30441968,13919226:142556 -k1,4677:32583029,13919226:0 -) -(1,4678:6630773,14760714:25952256,513147,134348 -k1,4677:9793541,14760714:283771 -k1,4677:10433171,14760714:283770 -k1,4677:12589961,14760714:283771 -k1,4677:15256621,14760714:283771 -k1,4677:16071889,14760714:283771 -k1,4677:19134386,14760714:283770 -k1,4677:20104319,14760714:283771 -k1,4677:20743950,14760714:283771 -k1,4677:23005597,14760714:283770 -k1,4677:23972253,14760714:283771 -k1,4677:26323685,14760714:283771 -k1,4677:27235291,14760714:283771 -k1,4677:30150332,14760714:283770 -k1,4677:31085531,14760714:283771 -k1,4677:32583029,14760714:0 -) -(1,4678:6630773,15602202:25952256,513147,134348 -k1,4677:8299647,15602202:279511 -k1,4677:10785755,15602202:279511 -k1,4677:12056825,15602202:279510 -k1,4677:14465601,15602202:279511 -k1,4677:18980704,15602202:279511 -k1,4677:20451660,15602202:279511 -k1,4677:21678821,15602202:279510 -k1,4677:23161573,15602202:279511 -k1,4677:25572315,15602202:279511 -k1,4677:26870911,15602202:279511 -k1,4677:29161066,15602202:279510 -k1,4677:31478747,15602202:279511 -k1,4677:32583029,15602202:0 -) -(1,4678:6630773,16443690:25952256,505283,134348 -k1,4677:8123115,16443690:206526 -k1,4677:9077407,16443690:206526 -k1,4677:12082975,16443690:206525 -k1,4677:12905539,16443690:206526 -k1,4677:13467925,16443690:206526 -k1,4677:14912426,16443690:206526 -k1,4677:17320962,16443690:206526 -k1,4677:18178915,16443690:206525 -k1,4677:19715822,16443690:206526 -k1,4677:22791514,16443690:206526 -k1,4677:23614078,16443690:206526 -k1,4677:24176464,16443690:206526 -k1,4677:26470311,16443690:206525 -k1,4677:27668397,16443690:206526 -k1,4677:30847636,16443690:206526 -k1,4677:32583029,16443690:0 -) -(1,4678:6630773,17285178:25952256,513147,134348 -k1,4677:8008995,17285178:205783 -k1,4677:10815247,17285178:205783 -k1,4677:11838919,17285178:205783 -k1,4677:12913054,17285178:205783 -k1,4677:14326010,17285178:205783 -k1,4677:15479444,17285178:205783 -k1,4677:18167075,17285178:205783 -k1,4677:20799656,17285178:205783 -k1,4677:22109721,17285178:205783 -k1,4677:23063270,17285178:205783 -k1,4677:25577231,17285178:205783 -k1,4677:26442306,17285178:205783 -k1,4677:28878279,17285178:205783 -k1,4677:31900144,17285178:205783 -k1,4677:32583029,17285178:0 -) -(1,4678:6630773,18126666:25952256,513147,134348 -k1,4677:9106017,18126666:167066 -k1,4677:9932376,18126666:167067 -k1,4677:12169069,18126666:167066 -k1,4677:14520451,18126666:167067 -k1,4677:15729539,18126666:167066 -k1,4677:18609796,18126666:167066 -k1,4677:20157051,18126666:167067 -k1,4677:21602069,18126666:167066 -k1,4677:22385173,18126666:167066 -k1,4677:25391915,18126666:167067 -k1,4677:26306747,18126666:167066 -k1,4677:28781992,18126666:167067 -k1,4677:29608350,18126666:167066 -k1,4677:32583029,18126666:0 -) -(1,4678:6630773,18968154:25952256,513147,134348 -k1,4677:9081764,18968154:254880 -k1,4677:12308047,18968154:254881 -k1,4677:13582012,18968154:254880 -k1,4677:15905209,18968154:254881 -k1,4677:16819381,18968154:254880 -k1,4677:18093347,18968154:254881 -k1,4677:21235088,18968154:254880 -k1,4677:23273203,18968154:254880 -k1,4677:25263477,18968154:254881 -k1,4677:27945155,18968154:254880 -k1,4677:28658133,18968154:254881 -k1,4677:29444510,18968154:254880 -k1,4677:32583029,18968154:0 -) -(1,4678:6630773,19809642:25952256,513147,134348 -g1,4677:10039300,19809642 -g1,4677:10889957,19809642 -g1,4677:14348291,19809642 -g1,4677:15832026,19809642 -g1,4677:17050340,19809642 -g1,4677:19676367,19809642 -g1,4677:20867156,19809642 -g1,4677:23195650,19809642 -g1,4677:25089640,19809642 -g1,4677:26577962,19809642 -g1,4677:28118713,19809642 -g1,4677:28933980,19809642 -k1,4678:32583029,19809642:3060536 -g1,4678:32583029,19809642 -) -v1,4680:6630773,20965702:0,393216,0 -(1,4735:6630773,45116945:25952256,24544459,589824 -g1,4735:6630773,45116945 -(1,4735:6630773,45116945:25952256,24544459,589824 -(1,4735:6630773,45706769:25952256,25134283,0 -[1,4735:6630773,45706769:25952256,25134283,0 -(1,4735:6630773,45706769:25952256,25108069,0 -r1,4735:6656987,45706769:26214,25108069,0 -[1,4735:6656987,45706769:25899828,25108069,0 -(1,4735:6656987,45116945:25899828,23928421,0 -[1,4735:7246811,45116945:24720180,23928421,0 -(1,4681:7246811,22350409:24720180,1161885,196608 -(1,4680:7246811,22350409:0,1161885,196608 -r1,4735:8794447,22350409:1547636,1358493,196608 -k1,4680:7246811,22350409:-1547636 -) -(1,4680:7246811,22350409:1547636,1161885,196608 -) -k1,4680:8934305,22350409:139858 -k1,4680:11825363,22350409:139857 -k1,4680:12624513,22350409:139858 -k1,4680:14153734,22350409:139858 -k1,4680:16500189,22350409:139858 -k1,4680:17744328,22350409:139857 -k1,4680:18500224,22350409:139858 -k1,4680:19406198,22350409:139858 -k1,4680:21243438,22350409:139858 -k1,4680:22131061,22350409:139857 -k1,4680:23848371,22350409:139858 -k1,4680:24674391,22350409:139858 -k1,4680:25280210,22350409:139858 -k1,4680:26800255,22350409:139857 -k1,4680:28444164,22350409:139858 -k1,4680:30081520,22350409:139858 -k1,4680:31966991,22350409:0 -) -(1,4681:7246811,23191897:24720180,513147,134348 -k1,4680:8029315,23191897:251007 -k1,4680:11719651,23191897:251007 -k1,4680:12656821,23191897:251008 -k1,4680:13365925,23191897:251007 -k1,4680:16090261,23191897:251007 -k1,4680:20549990,23191897:251007 -k1,4680:22194948,23191897:251007 -k1,4680:24720054,23191897:251007 -k1,4680:25385853,23191897:250956 -k1,4680:26960687,23191897:251007 -k1,4680:28403139,23191897:251007 -k1,4680:30048097,23191897:251007 -k1,4680:31966991,23191897:0 -) -(1,4681:7246811,24033385:24720180,513147,134348 -k1,4680:12897161,24033385:263291 -k1,4680:13819744,24033385:263291 -k1,4680:18920903,24033385:263291 -k1,4680:22445921,24033385:263291 -k1,4680:23855437,24033385:263291 -k1,4680:25862641,24033385:263291 -k1,4680:28507510,24033385:263291 -k1,4680:29386839,24033385:263291 -k1,4680:31966991,24033385:0 -) -(1,4681:7246811,24874873:24720180,513147,134348 -k1,4680:9787283,24874873:204770 -k1,4680:11783808,24874873:204771 -k1,4680:13191819,24874873:204770 -k1,4680:16554769,24874873:204770 -k1,4680:19953764,24874873:204770 -k1,4680:21330974,24874873:204771 -k1,4680:23546389,24874873:204770 -k1,4680:25318780,24874873:204770 -k1,4680:26542635,24874873:204770 -k1,4680:28988737,24874873:204771 -k1,4680:30384952,24874873:204770 -k1,4680:31966991,24874873:0 -) -(1,4681:7246811,25716361:24720180,513147,134348 -k1,4680:10448362,25716361:257018 -k1,4680:11321418,25716361:257018 -k1,4680:12597521,25716361:257018 -k1,4680:14160673,25716361:257019 -k1,4680:16800580,25716361:257018 -k1,4680:17724754,25716361:257018 -(1,4680:17724754,25716361:0,459977,115847 -r1,4735:19138155,25716361:1413401,575824,115847 -k1,4680:17724754,25716361:-1413401 -) -(1,4680:17724754,25716361:1413401,459977,115847 -k1,4680:17724754,25716361:3277 -h1,4680:19134878,25716361:0,411205,112570 -) -k1,4680:19395173,25716361:257018 -k1,4680:20183688,25716361:257018 -k1,4680:22018158,25716361:257018 -k1,4680:22961339,25716361:257019 -k1,4680:25707414,25716361:257018 -k1,4680:27699825,25716361:257018 -k1,4680:31137961,25716361:257018 -k1,4681:31966991,25716361:0 -) -(1,4681:7246811,26557849:24720180,505283,7863 -k1,4681:31966991,26557849:22735750 -g1,4681:31966991,26557849 -) -v1,4683:7246811,27739161:0,393216,0 -(1,4690:7246811,28760806:24720180,1414861,196608 -g1,4690:7246811,28760806 -g1,4690:7246811,28760806 -g1,4690:7050203,28760806 -(1,4690:7050203,28760806:0,1414861,196608 -r1,4735:32163599,28760806:25113396,1611469,196608 -k1,4690:7050203,28760806:-25113396 -) -(1,4690:7050203,28760806:25113396,1414861,196608 -[1,4690:7246811,28760806:24720180,1218253,0 -(1,4685:7246811,27953071:24720180,410518,76021 -(1,4684:7246811,27953071:0,0,0 -g1,4684:7246811,27953071 -g1,4684:7246811,27953071 -g1,4684:6919131,27953071 -(1,4684:6919131,27953071:0,0,0 -) -g1,4684:7246811,27953071 -) -h1,4685:11672852,27953071:0,0,0 -k1,4685:31966992,27953071:20294140 -g1,4685:31966992,27953071 -) -(1,4689:7246811,28684785:24720180,404226,76021 -(1,4687:7246811,28684785:0,0,0 -g1,4687:7246811,28684785 -g1,4687:7246811,28684785 -g1,4687:6919131,28684785 -(1,4687:6919131,28684785:0,0,0 -) -g1,4687:7246811,28684785 -) -g1,4689:8195248,28684785 -g1,4689:9459831,28684785 -g1,4689:10092123,28684785 -h1,4689:10408269,28684785:0,0,0 -k1,4689:31966991,28684785:21558722 -g1,4689:31966991,28684785 -) -] -) -g1,4690:31966991,28760806 -g1,4690:7246811,28760806 -g1,4690:7246811,28760806 -g1,4690:31966991,28760806 -g1,4690:31966991,28760806 -) -h1,4690:7246811,28957414:0,0,0 -(1,4694:7246811,30314036:24720180,505283,134348 -h1,4693:7246811,30314036:983040,0,0 -g1,4693:9226653,30314036 -g1,4693:11161275,30314036 -g1,4693:12379589,30314036 -g1,4693:14961707,30314036 -k1,4694:31966991,30314036:15093599 -g1,4694:31966991,30314036 -) -v1,4696:7246811,31495348:0,393216,0 -(1,4703:7246811,32516993:24720180,1414861,196608 -g1,4703:7246811,32516993 -g1,4703:7246811,32516993 -g1,4703:7050203,32516993 -(1,4703:7050203,32516993:0,1414861,196608 -r1,4735:32163599,32516993:25113396,1611469,196608 -k1,4703:7050203,32516993:-25113396 -) -(1,4703:7050203,32516993:25113396,1414861,196608 -[1,4703:7246811,32516993:24720180,1218253,0 -(1,4698:7246811,31709258:24720180,410518,76021 -(1,4697:7246811,31709258:0,0,0 -g1,4697:7246811,31709258 -g1,4697:7246811,31709258 -g1,4697:6919131,31709258 -(1,4697:6919131,31709258:0,0,0 -) -g1,4697:7246811,31709258 -) -h1,4698:12305143,31709258:0,0,0 -k1,4698:31966991,31709258:19661848 -g1,4698:31966991,31709258 -) -(1,4702:7246811,32440972:24720180,404226,76021 -(1,4700:7246811,32440972:0,0,0 -g1,4700:7246811,32440972 -g1,4700:7246811,32440972 -g1,4700:6919131,32440972 -(1,4700:6919131,32440972:0,0,0 -) -g1,4700:7246811,32440972 -) -g1,4702:8195248,32440972 -g1,4702:9459831,32440972 -g1,4702:10092123,32440972 -h1,4702:10408269,32440972:0,0,0 -k1,4702:31966991,32440972:21558722 -g1,4702:31966991,32440972 -) -] -) -g1,4703:31966991,32516993 -g1,4703:7246811,32516993 -g1,4703:7246811,32516993 -g1,4703:31966991,32516993 -g1,4703:31966991,32516993 -) -h1,4703:7246811,32713601:0,0,0 -(1,4707:7246811,34070223:24720180,513147,134348 -h1,4706:7246811,34070223:983040,0,0 -k1,4706:9632048,34070223:205510 -k1,4706:11050629,34070223:205510 -k1,4706:14099091,34070223:205510 -k1,4706:17751139,34070223:205510 -k1,4706:20696054,34070223:205510 -k1,4706:21433061,34070223:205510 -k1,4706:23216023,34070223:205510 -k1,4706:24107695,34070223:205510 -k1,4706:26802262,34070223:205510 -k1,4706:28401723,34070223:205510 -k1,4706:29626318,34070223:205510 -k1,4706:31137961,34070223:205510 -k1,4707:31966991,34070223:0 -) -(1,4707:7246811,34911711:24720180,505283,134348 -k1,4706:8594827,34911711:214898 -k1,4706:11984290,34911711:214899 -k1,4706:13733386,34911711:214898 -k1,4706:15139729,34911711:214898 -k1,4706:16373713,34911711:214899 -k1,4706:18829942,34911711:214898 -k1,4706:20201551,34911711:214899 -k1,4706:23591013,34911711:214898 -k1,4706:26692772,34911711:214898 -k1,4706:28288515,34911711:214899 -k1,4706:31193011,34911711:214898 -k1,4707:31966991,34911711:0 -) -(1,4707:7246811,35753199:24720180,513147,126483 -k1,4706:8978855,35753199:281077 -k1,4706:13545986,35753199:281076 -k1,4706:17041604,35753199:281077 -k1,4706:18890301,35753199:281076 -k1,4706:21842625,35753199:281077 -k1,4706:25010562,35753199:281076 -k1,4706:27177110,35753199:281077 -k1,4706:27989683,35753199:281076 -k1,4706:29337031,35753199:281077 -k1,4706:31966991,35753199:0 -) -(1,4707:7246811,36594687:24720180,513147,7863 -g1,4706:8839991,36594687 -g1,4706:10536718,36594687 -g1,4706:11932634,36594687 -g1,4706:13812206,36594687 -g1,4706:16790162,36594687 -g1,4706:17520888,36594687 -g1,4706:18075977,36594687 -g1,4706:21227603,36594687 -g1,4706:22816195,36594687 -k1,4707:31966991,36594687:7100830 -g1,4707:31966991,36594687 -) -v1,4709:7246811,37775999:0,393216,0 -(1,4718:7246811,40063415:24720180,2680632,196608 -g1,4718:7246811,40063415 -g1,4718:7246811,40063415 -g1,4718:7050203,40063415 -(1,4718:7050203,40063415:0,2680632,196608 -r1,4735:32163599,40063415:25113396,2877240,196608 -k1,4718:7050203,40063415:-25113396 -) -(1,4718:7050203,40063415:25113396,2680632,196608 -[1,4718:7246811,40063415:24720180,2484024,0 -(1,4711:7246811,37989909:24720180,410518,82312 -(1,4710:7246811,37989909:0,0,0 -g1,4710:7246811,37989909 -g1,4710:7246811,37989909 -g1,4710:6919131,37989909 -(1,4710:6919131,37989909:0,0,0 -) -g1,4710:7246811,37989909 -) -k1,4711:7246811,37989909:0 -g1,4711:10408269,37989909 -h1,4711:11672853,37989909:0,0,0 -k1,4711:31966991,37989909:20294138 -g1,4711:31966991,37989909 -) -(1,4717:7246811,38721623:24720180,379060,101187 -(1,4713:7246811,38721623:0,0,0 -g1,4713:7246811,38721623 -g1,4713:7246811,38721623 -g1,4713:6919131,38721623 -(1,4713:6919131,38721623:0,0,0 -) -g1,4713:7246811,38721623 -) -g1,4717:8195248,38721623 -g1,4717:8511394,38721623 -g1,4717:8827540,38721623 -g1,4717:9459832,38721623 -h1,4717:9775978,38721623:0,0,0 -k1,4717:31966990,38721623:22191012 -g1,4717:31966990,38721623 -) -(1,4717:7246811,39387801:24720180,388497,4718 -h1,4717:7246811,39387801:0,0,0 -g1,4717:8195248,39387801 -g1,4717:8827540,39387801 -g1,4717:9459832,39387801 -h1,4717:9775978,39387801:0,0,0 -k1,4717:31966990,39387801:22191012 -g1,4717:31966990,39387801 -) -(1,4717:7246811,40053979:24720180,388497,9436 -h1,4717:7246811,40053979:0,0,0 -g1,4717:8195248,40053979 -g1,4717:8827540,40053979 -g1,4717:9459832,40053979 -h1,4717:9775978,40053979:0,0,0 -k1,4717:31966990,40053979:22191012 -g1,4717:31966990,40053979 -) -] -) -g1,4718:31966991,40063415 -g1,4718:7246811,40063415 -g1,4718:7246811,40063415 -g1,4718:31966991,40063415 -g1,4718:31966991,40063415 -) -h1,4718:7246811,40260023:0,0,0 -(1,4722:7246811,41616645:24720180,513147,134348 -h1,4721:7246811,41616645:983040,0,0 -k1,4721:8937686,41616645:230078 -k1,4721:10186849,41616645:230078 -k1,4721:12430193,41616645:230078 -k1,4721:13319564,41616645:230079 -k1,4721:14568727,41616645:230078 -k1,4721:17181694,41616645:230078 -k1,4721:20151177,41616645:230078 -k1,4721:22359132,41616645:230078 -k1,4721:23120707,41616645:230078 -k1,4721:24681166,41616645:230078 -k1,4721:25930330,41616645:230079 -k1,4721:28939135,41616645:230078 -k1,4721:30849556,41616645:230078 -k1,4721:31611131,41616645:230078 -k1,4721:31966991,41616645:0 -) -(1,4722:7246811,42458133:24720180,505283,126483 -k1,4721:9667056,42458133:268698 -k1,4721:11821224,42458133:268697 -k1,4721:12621419,42458133:268698 -k1,4721:13956387,42458133:268697 -k1,4721:17505817,42458133:268698 -k1,4721:19168465,42458133:268697 -k1,4721:20456248,42458133:268698 -k1,4721:23479423,42458133:268697 -k1,4721:26409538,42458133:268698 -k1,4721:28563706,42458133:268697 -k1,4721:31611131,42458133:268698 -k1,4721:31966991,42458133:0 -) -(1,4722:7246811,43299621:24720180,513147,134348 -k1,4721:8842519,43299621:206345 -k1,4721:11098829,43299621:206344 -k1,4721:12686018,43299621:206345 -k1,4721:13423860,43299621:206345 -k1,4721:14696475,43299621:206344 -k1,4721:16278421,43299621:206345 -k1,4721:19749114,43299621:206345 -k1,4721:20571496,43299621:206344 -k1,4721:23616861,43299621:206345 -k1,4721:25089361,43299621:206344 -k1,4721:26367875,43299621:206345 -k1,4721:27678502,43299621:206345 -k1,4721:28632612,43299621:206344 -k1,4721:29858042,43299621:206345 -k1,4721:31966991,43299621:0 -) -(1,4722:7246811,44141109:24720180,513147,134348 -k1,4721:8066263,44141109:160160 -k1,4721:9746203,44141109:160160 -k1,4721:11604401,44141109:160160 -k1,4721:13903656,44141109:160160 -k1,4721:17505111,44141109:160160 -k1,4721:18281309,44141109:160160 -k1,4721:20326939,44141109:160159 -k1,4721:21506184,44141109:160160 -k1,4721:23679610,44141109:160160 -k1,4721:24499062,44141109:160160 -k1,4721:25678307,44141109:160160 -k1,4721:28079798,44141109:160160 -k1,4721:29989114,44141109:160160 -k1,4721:31966991,44141109:0 -) -(1,4722:7246811,44982597:24720180,505283,134348 -g1,4721:9616592,44982597 -g1,4721:10563587,44982597 -g1,4721:14339116,44982597 -g1,4721:15189773,44982597 -g1,4721:16136768,44982597 -g1,4721:18465262,44982597 -g1,4721:20314688,44982597 -g1,4721:21956364,44982597 -k1,4722:31966991,44982597:8680246 -g1,4722:31966991,44982597 -) -] -) -] -r1,4735:32583029,45706769:26214,25108069,0 -) -] -) -) -g1,4735:32583029,45116945 -) -] -(1,4735:32583029,45706769:0,0,0 -g1,4735:32583029,45706769 -) -) -] -(1,4735:6630773,47279633:25952256,0,0 -h1,4735:6630773,47279633:25952256,0,0 -) -] -(1,4735:4262630,4025873:0,0,0 -[1,4735:-473656,4025873:0,0,0 -(1,4735:-473656,-710413:0,0,0 -(1,4735:-473656,-710413:0,0,0 -g1,4735:-473656,-710413 -) -g1,4735:-473656,-710413 -) -] -) -] -!23605 -}87 -Input:623:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!102 -{88 -[1,4851:4262630,47279633:28320399,43253760,0 -(1,4851:4262630,4025873:0,0,0 -[1,4851:-473656,4025873:0,0,0 -(1,4851:-473656,-710413:0,0,0 -(1,4851:-473656,-644877:0,0,0 -k1,4851:-473656,-644877:-65536 -) -(1,4851:-473656,4736287:0,0,0 -k1,4851:-473656,4736287:5209943 -) -g1,4851:-473656,-710413 -) -] -) -[1,4851:6630773,47279633:25952256,43253760,0 -[1,4851:6630773,4812305:25952256,786432,0 -(1,4851:6630773,4812305:25952256,513147,126483 -(1,4851:6630773,4812305:25952256,513147,126483 -g1,4851:3078558,4812305 -[1,4851:3078558,4812305:0,0,0 -(1,4851:3078558,2439708:0,1703936,0 -k1,4851:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,4851:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,4851:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,4851:3078558,4812305:0,0,0 -(1,4851:3078558,2439708:0,1703936,0 -g1,4851:29030814,2439708 -g1,4851:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,4851:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,4851:37855564,2439708:1179648,16384,0 -) -) -k1,4851:3078556,2439708:-34777008 -) -] -[1,4851:3078558,4812305:0,0,0 -(1,4851:3078558,49800853:0,16384,2228224 -k1,4851:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,4851:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,4851:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,4851:3078558,4812305:0,0,0 -(1,4851:3078558,49800853:0,16384,2228224 -g1,4851:29030814,49800853 -g1,4851:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,4851:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,4851:37855564,49800853:1179648,16384,0 -) -) -k1,4851:3078556,49800853:-34777008 -) -] -g1,4851:6630773,4812305 -g1,4851:6630773,4812305 -g1,4851:8364200,4812305 -g1,4851:10765439,4812305 -k1,4851:31786111,4812305:21020672 -) -) -] -[1,4851:6630773,45706769:25952256,40108032,0 -(1,4851:6630773,45706769:25952256,40108032,0 -(1,4851:6630773,45706769:0,0,0 -g1,4851:6630773,45706769 -) -[1,4851:6630773,45706769:25952256,40108032,0 -v1,4735:6630773,6254097:0,393216,0 -(1,4735:6630773,12047440:25952256,6186559,616038 -g1,4735:6630773,12047440 -(1,4735:6630773,12047440:25952256,6186559,616038 -(1,4735:6630773,12663478:25952256,6802597,0 -[1,4735:6630773,12663478:25952256,6802597,0 -(1,4735:6630773,12637264:25952256,6776383,0 -r1,4851:6656987,12637264:26214,6776383,0 -[1,4735:6656987,12637264:25899828,6776383,0 -(1,4735:6656987,12047440:25899828,5596735,0 -[1,4735:7246811,12047440:24720180,5596735,0 -v1,4724:7246811,6843921:0,393216,0 -(1,4731:7246811,7865566:24720180,1414861,196608 -g1,4731:7246811,7865566 -g1,4731:7246811,7865566 -g1,4731:7050203,7865566 -(1,4731:7050203,7865566:0,1414861,196608 -r1,4851:32163599,7865566:25113396,1611469,196608 -k1,4731:7050203,7865566:-25113396 -) -(1,4731:7050203,7865566:25113396,1414861,196608 -[1,4731:7246811,7865566:24720180,1218253,0 -(1,4726:7246811,7057831:24720180,410518,82312 -(1,4725:7246811,7057831:0,0,0 -g1,4725:7246811,7057831 -g1,4725:7246811,7057831 -g1,4725:6919131,7057831 -(1,4725:6919131,7057831:0,0,0 -) -g1,4725:7246811,7057831 -) -k1,4726:7246811,7057831:0 -g1,4726:10408269,7057831 -h1,4726:11040561,7057831:0,0,0 -k1,4726:31966991,7057831:20926430 -g1,4726:31966991,7057831 -) -(1,4730:7246811,7789545:24720180,404226,76021 -(1,4728:7246811,7789545:0,0,0 -g1,4728:7246811,7789545 -g1,4728:7246811,7789545 -g1,4728:6919131,7789545 -(1,4728:6919131,7789545:0,0,0 -) -g1,4728:7246811,7789545 -) -g1,4730:8195248,7789545 -g1,4730:9459831,7789545 -g1,4730:10092123,7789545 -h1,4730:10408269,7789545:0,0,0 -k1,4730:31966991,7789545:21558722 -g1,4730:31966991,7789545 -) -] -) -g1,4731:31966991,7865566 -g1,4731:7246811,7865566 -g1,4731:7246811,7865566 -g1,4731:31966991,7865566 -g1,4731:31966991,7865566 -) -h1,4731:7246811,8062174:0,0,0 -(1,4735:7246811,9427950:24720180,513147,134348 -h1,4734:7246811,9427950:983040,0,0 -k1,4734:9046211,9427950:188525 -k1,4734:12039678,9427950:188526 -k1,4734:14967608,9427950:188525 -k1,4734:15815425,9427950:188525 -k1,4734:21182606,9427950:188526 -k1,4734:21987169,9427950:188525 -k1,4734:24755846,9427950:188525 -k1,4734:28293261,9427950:188526 -k1,4734:30611051,9427950:188525 -k1,4735:31966991,9427950:0 -) -(1,4735:7246811,10269438:24720180,505283,134348 -k1,4734:9716754,10269438:158488 -k1,4734:11630295,10269438:158487 -k1,4734:14789677,10269438:158488 -k1,4734:15304025,10269438:158488 -k1,4734:17614060,10269438:158488 -k1,4734:19239244,10269438:158488 -k1,4734:21095769,10269438:158487 -k1,4734:22273342,10269438:158488 -k1,4734:24409707,10269438:158488 -k1,4734:26081420,10269438:158487 -k1,4734:26891336,10269438:158488 -k1,4734:29253800,10269438:158488 -k1,4734:31966991,10269438:0 -) -(1,4735:7246811,11110926:24720180,513147,134348 -k1,4734:8020651,11110926:242343 -k1,4734:8922285,11110926:242342 -k1,4734:11177894,11110926:242343 -k1,4734:12576947,11110926:242343 -k1,4734:14051366,11110926:242342 -k1,4734:16572396,11110926:242343 -h1,4734:18115114,11110926:0,0,0 -k1,4734:18357457,11110926:242343 -k1,4734:19409169,11110926:242342 -k1,4734:21149665,11110926:242343 -h1,4734:22345042,11110926:0,0,0 -k1,4734:22587384,11110926:242342 -k1,4734:23777378,11110926:242343 -k1,4734:26137189,11110926:242343 -k1,4734:27188901,11110926:242342 -k1,4734:28450329,11110926:242343 -k1,4734:31966991,11110926:0 -) -(1,4735:7246811,11952414:24720180,513147,95026 -g1,4734:10081243,11952414 -g1,4734:11669835,11952414 -g1,4734:14075661,11952414 -g1,4734:15466335,11952414 -k1,4735:31966991,11952414:13978175 -g1,4735:31966991,11952414 -) -] -) -] -r1,4851:32583029,12637264:26214,6776383,0 -) -] -) -) -g1,4735:32583029,12047440 -) -h1,4735:6630773,12663478:0,0,0 -v1,4739:6630773,14378232:0,393216,0 -(1,4791:6630773,35592222:25952256,21607206,196608 -g1,4791:6630773,35592222 -g1,4791:6630773,35592222 -g1,4791:6434165,35592222 -(1,4791:6434165,35592222:0,21607206,196608 -r1,4851:32779637,35592222:26345472,21803814,196608 -k1,4791:6434165,35592222:-26345472 -) -(1,4791:6434165,35592222:26345472,21607206,196608 -[1,4791:6630773,35592222:25952256,21410598,0 -(1,4741:6630773,14592142:25952256,410518,101187 -(1,4740:6630773,14592142:0,0,0 -g1,4740:6630773,14592142 -g1,4740:6630773,14592142 -g1,4740:6303093,14592142 -(1,4740:6303093,14592142:0,0,0 -) -g1,4740:6630773,14592142 -) -g1,4741:7263065,14592142 -g1,4741:9159939,14592142 -g1,4741:11689105,14592142 -g1,4741:14850562,14592142 -k1,4741:14850562,14592142:39846 -h1,4741:17735719,14592142:0,0,0 -k1,4741:32583029,14592142:14847310 -g1,4741:32583029,14592142 -) -(1,4742:6630773,15258320:25952256,410518,82312 -h1,4742:6630773,15258320:0,0,0 -g1,4742:8527647,15258320 -g1,4742:9159939,15258320 -h1,4742:9792231,15258320:0,0,0 -k1,4742:32583029,15258320:22790798 -g1,4742:32583029,15258320 -) -(1,4746:6630773,15990034:25952256,404226,76021 -(1,4744:6630773,15990034:0,0,0 -g1,4744:6630773,15990034 -g1,4744:6630773,15990034 -g1,4744:6303093,15990034 -(1,4744:6303093,15990034:0,0,0 -) -g1,4744:6630773,15990034 -) -g1,4746:7579210,15990034 -g1,4746:8843793,15990034 -g1,4746:9476085,15990034 -g1,4746:10108377,15990034 -g1,4746:10740669,15990034 -g1,4746:11372961,15990034 -g1,4746:12005253,15990034 -h1,4746:12321399,15990034:0,0,0 -k1,4746:32583029,15990034:20261630 -g1,4746:32583029,15990034 -) -(1,4748:6630773,17311572:25952256,410518,101187 -(1,4747:6630773,17311572:0,0,0 -g1,4747:6630773,17311572 -g1,4747:6630773,17311572 -g1,4747:6303093,17311572 -(1,4747:6303093,17311572:0,0,0 -) -g1,4747:6630773,17311572 -) -g1,4748:7263065,17311572 -g1,4748:9159939,17311572 -g1,4748:11689105,17311572 -g1,4748:15482853,17311572 -g1,4748:16431290,17311572 -g1,4748:18644310,17311572 -k1,4748:18644310,17311572:39846 -h1,4748:21529467,17311572:0,0,0 -k1,4748:32583029,17311572:11053562 -g1,4748:32583029,17311572 -) -(1,4749:6630773,17977750:25952256,410518,82312 -h1,4749:6630773,17977750:0,0,0 -g1,4749:8527647,17977750 -g1,4749:9159939,17977750 -h1,4749:10424522,17977750:0,0,0 -k1,4749:32583030,17977750:22158508 -g1,4749:32583030,17977750 -) -(1,4753:6630773,18709464:25952256,404226,76021 -(1,4751:6630773,18709464:0,0,0 -g1,4751:6630773,18709464 -g1,4751:6630773,18709464 -g1,4751:6303093,18709464 -(1,4751:6303093,18709464:0,0,0 -) -g1,4751:6630773,18709464 -) -g1,4753:7579210,18709464 -g1,4753:8843793,18709464 -g1,4753:9476085,18709464 -g1,4753:10108377,18709464 -g1,4753:10740669,18709464 -g1,4753:11372961,18709464 -g1,4753:12005253,18709464 -h1,4753:12321399,18709464:0,0,0 -k1,4753:32583029,18709464:20261630 -g1,4753:32583029,18709464 -) -(1,4755:6630773,20031002:25952256,410518,101187 -(1,4754:6630773,20031002:0,0,0 -g1,4754:6630773,20031002 -g1,4754:6630773,20031002 -g1,4754:6303093,20031002 -(1,4754:6303093,20031002:0,0,0 -) -g1,4754:6630773,20031002 -) -g1,4755:7263065,20031002 -g1,4755:9159939,20031002 -k1,4755:9159939,20031002:47186 -h1,4755:10155562,20031002:0,0,0 -k1,4755:32583030,20031002:22427468 -g1,4755:32583030,20031002 -) -(1,4756:6630773,20697180:25952256,410518,82312 -h1,4756:6630773,20697180:0,0,0 -g1,4756:9159939,20697180 -h1,4756:9476085,20697180:0,0,0 -k1,4756:32583029,20697180:23106944 -g1,4756:32583029,20697180 -) -(1,4761:6630773,21428894:25952256,388497,101187 -(1,4758:6630773,21428894:0,0,0 -g1,4758:6630773,21428894 -g1,4758:6630773,21428894 -g1,4758:6303093,21428894 -(1,4758:6303093,21428894:0,0,0 -) -g1,4758:6630773,21428894 -) -g1,4761:7579210,21428894 -g1,4761:7895356,21428894 -g1,4761:8211502,21428894 -g1,4761:8843794,21428894 -g1,4761:9476086,21428894 -g1,4761:9792232,21428894 -g1,4761:10108378,21428894 -g1,4761:10424524,21428894 -g1,4761:11056816,21428894 -g1,4761:12005253,21428894 -h1,4761:12637544,21428894:0,0,0 -k1,4761:32583028,21428894:19945484 -g1,4761:32583028,21428894 -) -(1,4761:6630773,22095072:25952256,404226,9436 -h1,4761:6630773,22095072:0,0,0 -g1,4761:7579210,22095072 -g1,4761:8211502,22095072 -g1,4761:8843794,22095072 -g1,4761:9476086,22095072 -g1,4761:11056815,22095072 -g1,4761:11372961,22095072 -g1,4761:12005253,22095072 -g1,4761:12321399,22095072 -h1,4761:12637545,22095072:0,0,0 -k1,4761:32583029,22095072:19945484 -g1,4761:32583029,22095072 -) -(1,4763:6630773,23416610:25952256,410518,101187 -(1,4762:6630773,23416610:0,0,0 -g1,4762:6630773,23416610 -g1,4762:6630773,23416610 -g1,4762:6303093,23416610 -(1,4762:6303093,23416610:0,0,0 -) -g1,4762:6630773,23416610 -) -g1,4763:7263065,23416610 -g1,4763:9159939,23416610 -g1,4763:10424522,23416610 -g1,4763:12005251,23416610 -g1,4763:12953688,23416610 -g1,4763:14218271,23416610 -g1,4763:16115145,23416610 -g1,4763:17379728,23416610 -g1,4763:19592748,23416610 -k1,4763:19592748,23416610:0 -h1,4763:21805768,23416610:0,0,0 -k1,4763:32583029,23416610:10777261 -g1,4763:32583029,23416610 -) -(1,4764:6630773,24082788:25952256,410518,82312 -h1,4764:6630773,24082788:0,0,0 -g1,4764:9792231,24082788 -g1,4764:12637543,24082788 -g1,4764:14850563,24082788 -g1,4764:16747438,24082788 -g1,4764:18644313,24082788 -h1,4764:20857332,24082788:0,0,0 -k1,4764:32583029,24082788:11725697 -g1,4764:32583029,24082788 -) -(1,4770:6630773,24814502:25952256,388497,0 -(1,4766:6630773,24814502:0,0,0 -g1,4766:6630773,24814502 -g1,4766:6630773,24814502 -g1,4766:6303093,24814502 -(1,4766:6303093,24814502:0,0,0 -) -g1,4766:6630773,24814502 -) -g1,4770:7579210,24814502 -g1,4770:7895356,24814502 -g1,4770:8211502,24814502 -g1,4770:8527648,24814502 -g1,4770:8843794,24814502 -g1,4770:9159940,24814502 -g1,4770:9476086,24814502 -g1,4770:10108378,24814502 -h1,4770:10740669,24814502:0,0,0 -k1,4770:32583029,24814502:21842360 -g1,4770:32583029,24814502 -) -(1,4770:6630773,25480680:25952256,388497,9436 -h1,4770:6630773,25480680:0,0,0 -g1,4770:7579210,25480680 -g1,4770:8211502,25480680 -g1,4770:8527648,25480680 -g1,4770:10108377,25480680 -g1,4770:10424523,25480680 -h1,4770:10740669,25480680:0,0,0 -k1,4770:32583029,25480680:21842360 -g1,4770:32583029,25480680 -) -(1,4770:6630773,26146858:25952256,388497,9436 -h1,4770:6630773,26146858:0,0,0 -g1,4770:7579210,26146858 -g1,4770:8211502,26146858 -g1,4770:10108376,26146858 -g1,4770:10424522,26146858 -h1,4770:10740668,26146858:0,0,0 -k1,4770:32583028,26146858:21842360 -g1,4770:32583028,26146858 -) -(1,4772:6630773,27468396:25952256,410518,101187 -(1,4771:6630773,27468396:0,0,0 -g1,4771:6630773,27468396 -g1,4771:6630773,27468396 -g1,4771:6303093,27468396 -(1,4771:6303093,27468396:0,0,0 -) -g1,4771:6630773,27468396 -) -g1,4772:7263065,27468396 -g1,4772:8527648,27468396 -g1,4772:10108377,27468396 -g1,4772:11372960,27468396 -g1,4772:13269834,27468396 -g1,4772:13902126,27468396 -g1,4772:14850563,27468396 -k1,4772:14850563,27468396:1573 -h1,4772:16116719,27468396:0,0,0 -k1,4772:32583029,27468396:16466310 -g1,4772:32583029,27468396 -) -(1,4773:6630773,28134574:25952256,410518,82312 -h1,4773:6630773,28134574:0,0,0 -g1,4773:10424522,28134574 -g1,4773:11056814,28134574 -h1,4773:11372960,28134574:0,0,0 -k1,4773:32583028,28134574:21210068 -g1,4773:32583028,28134574 -) -(1,4780:6630773,28866288:25952256,388497,101187 -(1,4775:6630773,28866288:0,0,0 -g1,4775:6630773,28866288 -g1,4775:6630773,28866288 -g1,4775:6303093,28866288 -(1,4775:6303093,28866288:0,0,0 -) -g1,4775:6630773,28866288 -) -g1,4780:7579210,28866288 -g1,4780:7895356,28866288 -g1,4780:8211502,28866288 -g1,4780:8843794,28866288 -g1,4780:9476086,28866288 -g1,4780:9792232,28866288 -g1,4780:10108378,28866288 -g1,4780:10424524,28866288 -g1,4780:11056816,28866288 -g1,4780:12005253,28866288 -h1,4780:12637544,28866288:0,0,0 -k1,4780:32583028,28866288:19945484 -g1,4780:32583028,28866288 -) -(1,4780:6630773,29532466:25952256,404226,9436 -h1,4780:6630773,29532466:0,0,0 -g1,4780:7579210,29532466 -g1,4780:8211502,29532466 -g1,4780:8843794,29532466 -g1,4780:9476086,29532466 -g1,4780:11056815,29532466 -g1,4780:11372961,29532466 -g1,4780:12005253,29532466 -g1,4780:12321399,29532466 -h1,4780:12637545,29532466:0,0,0 -k1,4780:32583029,29532466:19945484 -g1,4780:32583029,29532466 -) -(1,4780:6630773,30198644:25952256,404226,9436 -h1,4780:6630773,30198644:0,0,0 -g1,4780:7579210,30198644 -g1,4780:8211502,30198644 -g1,4780:8843794,30198644 -g1,4780:9476086,30198644 -g1,4780:11056815,30198644 -g1,4780:11372961,30198644 -g1,4780:12005253,30198644 -g1,4780:12321399,30198644 -h1,4780:12637545,30198644:0,0,0 -k1,4780:32583029,30198644:19945484 -g1,4780:32583029,30198644 -) -(1,4780:6630773,30864822:25952256,404226,9436 -h1,4780:6630773,30864822:0,0,0 -g1,4780:7579210,30864822 -g1,4780:8211502,30864822 -g1,4780:8843794,30864822 -g1,4780:9476086,30864822 -g1,4780:11056815,30864822 -g1,4780:11372961,30864822 -g1,4780:12005253,30864822 -g1,4780:12321399,30864822 -h1,4780:12637545,30864822:0,0,0 -k1,4780:32583029,30864822:19945484 -g1,4780:32583029,30864822 -) -(1,4782:6630773,32186360:25952256,410518,107478 -(1,4781:6630773,32186360:0,0,0 -g1,4781:6630773,32186360 -g1,4781:6630773,32186360 -g1,4781:6303093,32186360 -(1,4781:6303093,32186360:0,0,0 -) -g1,4781:6630773,32186360 -) -g1,4782:7263065,32186360 -g1,4782:8527648,32186360 -g1,4782:10108377,32186360 -g1,4782:11372960,32186360 -g1,4782:13269834,32186360 -g1,4782:13902126,32186360 -g1,4782:14534418,32186360 -g1,4782:15166710,32186360 -g1,4782:17695876,32186360 -g1,4782:18960459,32186360 -g1,4782:21489625,32186360 -g1,4782:23702645,32186360 -g1,4782:24967228,32186360 -g1,4782:26864102,32186360 -k1,4782:26864102,32186360:1573 -h1,4782:27814112,32186360:0,0,0 -k1,4782:32583029,32186360:4768917 -g1,4782:32583029,32186360 -) -(1,4783:6630773,32852538:25952256,410518,82312 -h1,4783:6630773,32852538:0,0,0 -g1,4783:10424522,32852538 -g1,4783:11056814,32852538 -g1,4783:12005252,32852538 -k1,4783:12005252,32852538:0 -h1,4783:12953690,32852538:0,0,0 -k1,4783:32583030,32852538:19629340 -g1,4783:32583030,32852538 -) -(1,4790:6630773,33584252:25952256,388497,101187 -(1,4785:6630773,33584252:0,0,0 -g1,4785:6630773,33584252 -g1,4785:6630773,33584252 -g1,4785:6303093,33584252 -(1,4785:6303093,33584252:0,0,0 -) -g1,4785:6630773,33584252 -) -g1,4790:7579210,33584252 -g1,4790:7895356,33584252 -g1,4790:8211502,33584252 -g1,4790:8843794,33584252 -g1,4790:9476086,33584252 -g1,4790:10424523,33584252 -h1,4790:11056814,33584252:0,0,0 -k1,4790:32583030,33584252:21526216 -g1,4790:32583030,33584252 -) -(1,4790:6630773,34250430:25952256,404226,9436 -h1,4790:6630773,34250430:0,0,0 -g1,4790:7579210,34250430 -g1,4790:8211502,34250430 -g1,4790:8843794,34250430 -g1,4790:9476086,34250430 -g1,4790:9792232,34250430 -g1,4790:10424524,34250430 -g1,4790:10740670,34250430 -h1,4790:11056816,34250430:0,0,0 -k1,4790:32583028,34250430:21526212 -g1,4790:32583028,34250430 -) -(1,4790:6630773,34916608:25952256,404226,9436 -h1,4790:6630773,34916608:0,0,0 -g1,4790:7579210,34916608 -g1,4790:8211502,34916608 -g1,4790:8843794,34916608 -g1,4790:9476086,34916608 -g1,4790:9792232,34916608 -g1,4790:10424524,34916608 -g1,4790:10740670,34916608 -h1,4790:11056816,34916608:0,0,0 -k1,4790:32583028,34916608:21526212 -g1,4790:32583028,34916608 -) -(1,4790:6630773,35582786:25952256,404226,9436 -h1,4790:6630773,35582786:0,0,0 -g1,4790:7579210,35582786 -g1,4790:8211502,35582786 -g1,4790:8843794,35582786 -g1,4790:9476086,35582786 -g1,4790:9792232,35582786 -g1,4790:10424524,35582786 -g1,4790:10740670,35582786 -h1,4790:11056816,35582786:0,0,0 -k1,4790:32583028,35582786:21526212 -g1,4790:32583028,35582786 -) -] -) -g1,4791:32583029,35592222 -g1,4791:6630773,35592222 -g1,4791:6630773,35592222 -g1,4791:32583029,35592222 -g1,4791:32583029,35592222 -) -h1,4791:6630773,35788830:0,0,0 -(1,4796:6630773,37154606:25952256,513147,134348 -h1,4794:6630773,37154606:983040,0,0 -k1,4794:8649181,37154606:217479 -k1,4794:11944885,37154606:217478 -k1,4794:14195946,37154606:217479 -k1,4794:15361075,37154606:217478 -k1,4794:17886732,37154606:217479 -k1,4794:19336287,37154606:217478 -k1,4794:21832453,37154606:217479 -h1,4794:23201500,37154606:0,0,0 -k1,4794:23418978,37154606:217478 -k1,4794:24445827,37154606:217479 -k1,4794:26161458,37154606:217478 -h1,4794:26958376,37154606:0,0,0 -k1,4794:27556619,37154606:217479 -k1,4794:30513502,37154606:217478 -k1,4794:31835263,37154606:217479 -k1,4794:32583029,37154606:0 -) -(1,4796:6630773,37996094:25952256,513147,134348 -k1,4794:9219849,37996094:183249 -k1,4794:10869793,37996094:183248 -k1,4794:11862412,37996094:183249 -k1,4794:13064745,37996094:183248 -k1,4794:16602782,37996094:183249 -k1,4794:18085610,37996094:183249 -k1,4794:19460303,37996094:183248 -k1,4794:22536967,37996094:183249 -k1,4794:24019795,37996094:183249 -k1,4794:24862335,37996094:183248 -k1,4794:25816287,37996094:183249 -k1,4794:29818973,37996094:183248 -k1,4795:31198909,37996094:183249 -k1,4795:32583029,37996094:0 -) -(1,4796:6630773,38837582:25952256,513147,134348 -k1,4795:8019447,38837582:255556 -k1,4795:11266722,38837582:255556 -k1,4795:12337546,38837582:255556 -k1,4795:16569172,38837582:255557 -k1,4795:17476156,38837582:255556 -k1,4795:19753498,38837582:255556 -k1,4795:20676210,38837582:255556 -(1,4795:20676210,38837582:0,459977,115847 -r1,4851:22089611,38837582:1413401,575824,115847 -k1,4795:20676210,38837582:-1413401 -) -(1,4795:20676210,38837582:1413401,459977,115847 -k1,4795:20676210,38837582:3277 -h1,4795:22086334,38837582:0,411205,112570 -) -k1,4795:22518837,38837582:255556 -k1,4795:24630373,38837582:255556 -k1,4795:25537358,38837582:255557 -k1,4795:26949624,38837582:255556 -k1,4795:29088029,38837582:255556 -k1,4795:31900144,38837582:255556 -k1,4795:32583029,38837582:0 -) -(1,4796:6630773,39679070:25952256,513147,126483 -k1,4795:10084739,39679070:261052 -k1,4795:12530106,39679070:261052 -k1,4795:13987844,39679070:261051 -k1,4795:15397087,39679070:261052 -k1,4795:18844499,39679070:261052 -k1,4795:19721589,39679070:261052 -k1,4795:21001725,39679070:261051 -k1,4795:23233445,39679070:261052 -k1,4795:25362928,39679070:261052 -k1,4795:27651664,39679070:261052 -k1,4795:28268575,39679070:261051 -k1,4795:31015408,39679070:261052 -k1,4795:32583029,39679070:0 -) -(1,4796:6630773,40520558:25952256,513147,134348 -k1,4795:8072190,40520558:284707 -k1,4795:10913456,40520558:284707 -k1,4795:11849591,40520558:284707 -k1,4795:14606972,40520558:284708 -k1,4795:15653207,40520558:284707 -k1,4795:17673307,40520558:284707 -k1,4795:20697419,40520558:284707 -k1,4795:21641418,40520558:284707 -k1,4795:22945210,40520558:284707 -k1,4795:24883390,40520558:284707 -k1,4795:26557461,40520558:284708 -k1,4795:28718464,40520558:284707 -k1,4795:30469867,40520558:284707 -k1,4795:31563944,40520558:284707 -k1,4795:32583029,40520558:0 -) -(1,4796:6630773,41362046:25952256,513147,134348 -g1,4795:8365511,41362046 -g1,4795:9864319,41362046 -g1,4795:11254993,41362046 -g1,4795:12528357,41362046 -g1,4795:14027165,41362046 -g1,4795:14885686,41362046 -g1,4795:16104000,41362046 -g1,4795:20122667,41362046 -g1,4795:20122667,41362046 -k1,4796:32583029,41362046:12460362 -g1,4796:32583029,41362046 -) -v1,4798:6630773,42552512:0,393216,0 -(1,4851:6630773,45506106:25952256,3346810,196608 -g1,4851:6630773,45506106 -g1,4851:6630773,45506106 -g1,4851:6434165,45506106 -(1,4851:6434165,45506106:0,3346810,196608 -r1,4851:32779637,45506106:26345472,3543418,196608 -k1,4851:6434165,45506106:-26345472 -) -(1,4851:6434165,45506106:26345472,3346810,196608 -[1,4851:6630773,45506106:25952256,3150202,0 -(1,4800:6630773,42766422:25952256,410518,82312 -(1,4799:6630773,42766422:0,0,0 -g1,4799:6630773,42766422 -g1,4799:6630773,42766422 -g1,4799:6303093,42766422 -(1,4799:6303093,42766422:0,0,0 -) -g1,4799:6630773,42766422 -) -k1,4800:6630773,42766422:0 -g1,4800:9159939,42766422 -g1,4800:10108377,42766422 -g1,4800:11056815,42766422 -h1,4800:11689106,42766422:0,0,0 -k1,4800:32583030,42766422:20893924 -g1,4800:32583030,42766422 -) -(1,4801:6630773,43432600:25952256,410518,6290 -h1,4801:6630773,43432600:0,0,0 -h1,4801:7895356,43432600:0,0,0 -k1,4801:32583028,43432600:24687672 -g1,4801:32583028,43432600 -) -(1,4811:6630773,44164314:25952256,388497,101187 -(1,4803:6630773,44164314:0,0,0 -g1,4803:6630773,44164314 -g1,4803:6630773,44164314 -g1,4803:6303093,44164314 -(1,4803:6303093,44164314:0,0,0 -) -g1,4803:6630773,44164314 -) -g1,4811:7579210,44164314 -g1,4811:7895356,44164314 -g1,4811:8211502,44164314 -g1,4811:8527648,44164314 -g1,4811:9159940,44164314 -g1,4811:9792232,44164314 -g1,4811:10108378,44164314 -g1,4811:10424524,44164314 -g1,4811:10740670,44164314 -g1,4811:11056816,44164314 -g1,4811:11689108,44164314 -g1,4811:12637545,44164314 -h1,4811:13269836,44164314:0,0,0 -k1,4811:32583028,44164314:19313192 -g1,4811:32583028,44164314 -) -(1,4811:6630773,44830492:25952256,404226,9436 -h1,4811:6630773,44830492:0,0,0 -g1,4811:7579210,44830492 -g1,4811:8211502,44830492 -g1,4811:9159939,44830492 -g1,4811:9792231,44830492 -g1,4811:10108377,44830492 -g1,4811:11689106,44830492 -g1,4811:12005252,44830492 -g1,4811:12637544,44830492 -g1,4811:12953690,44830492 -h1,4811:13269836,44830492:0,0,0 -k1,4811:32583028,44830492:19313192 -g1,4811:32583028,44830492 -) -(1,4811:6630773,45496670:25952256,404226,9436 -h1,4811:6630773,45496670:0,0,0 -g1,4811:7579210,45496670 -g1,4811:8211502,45496670 -g1,4811:8527648,45496670 -g1,4811:9159940,45496670 -g1,4811:9792232,45496670 -g1,4811:11689106,45496670 -g1,4811:12005252,45496670 -g1,4811:12637544,45496670 -g1,4811:12953690,45496670 -h1,4811:13269836,45496670:0,0,0 -k1,4811:32583028,45496670:19313192 -g1,4811:32583028,45496670 -) -] -) -g1,4851:32583029,45506106 -g1,4851:6630773,45506106 -g1,4851:6630773,45506106 -g1,4851:32583029,45506106 -g1,4851:32583029,45506106 -) -] -(1,4851:32583029,45706769:0,0,0 -g1,4851:32583029,45706769 -) -) -] -(1,4851:6630773,47279633:25952256,0,0 -h1,4851:6630773,47279633:25952256,0,0 -) -] -(1,4851:4262630,4025873:0,0,0 -[1,4851:-473656,4025873:0,0,0 -(1,4851:-473656,-710413:0,0,0 -(1,4851:-473656,-710413:0,0,0 -g1,4851:-473656,-710413 -) -g1,4851:-473656,-710413 -) -] -) -] -!23956 -}88 -Input:624:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:625:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:626:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:627:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:628:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:629:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:630:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:631:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:632:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:633:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!921 -{89 -[1,4900:4262630,47279633:28320399,43253760,0 -(1,4900:4262630,4025873:0,0,0 -[1,4900:-473656,4025873:0,0,0 -(1,4900:-473656,-710413:0,0,0 -(1,4900:-473656,-644877:0,0,0 -k1,4900:-473656,-644877:-65536 -) -(1,4900:-473656,4736287:0,0,0 -k1,4900:-473656,4736287:5209943 -) -g1,4900:-473656,-710413 -) -] -) -[1,4900:6630773,47279633:25952256,43253760,0 -[1,4900:6630773,4812305:25952256,786432,0 -(1,4900:6630773,4812305:25952256,505283,134348 -(1,4900:6630773,4812305:25952256,505283,134348 -g1,4900:3078558,4812305 -[1,4900:3078558,4812305:0,0,0 -(1,4900:3078558,2439708:0,1703936,0 -k1,4900:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,4900:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,4900:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,4900:3078558,4812305:0,0,0 -(1,4900:3078558,2439708:0,1703936,0 -g1,4900:29030814,2439708 -g1,4900:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,4900:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,4900:37855564,2439708:1179648,16384,0 -) -) -k1,4900:3078556,2439708:-34777008 -) -] -[1,4900:3078558,4812305:0,0,0 -(1,4900:3078558,49800853:0,16384,2228224 -k1,4900:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,4900:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,4900:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,4900:3078558,4812305:0,0,0 -(1,4900:3078558,49800853:0,16384,2228224 -g1,4900:29030814,49800853 -g1,4900:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,4900:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,4900:37855564,49800853:1179648,16384,0 -) -) -k1,4900:3078556,49800853:-34777008 -) -] -g1,4900:6630773,4812305 -k1,4900:19515153,4812305:12087462 -g1,4900:20901894,4812305 -g1,4900:21550700,4812305 -g1,4900:24864855,4812305 -g1,4900:27600327,4812305 -g1,4900:29010006,4812305 -) -) -] -[1,4900:6630773,45706769:25952256,40108032,0 -(1,4900:6630773,45706769:25952256,40108032,0 -(1,4900:6630773,45706769:0,0,0 -g1,4900:6630773,45706769 -) -[1,4900:6630773,45706769:25952256,40108032,0 -v1,4851:6630773,6254097:0,393216,0 -(1,4851:6630773,28619179:25952256,22758298,196608 -g1,4851:6630773,28619179 -g1,4851:6630773,28619179 -g1,4851:6434165,28619179 -(1,4851:6434165,28619179:0,22758298,196608 -r1,4900:32779637,28619179:26345472,22954906,196608 -k1,4851:6434165,28619179:-26345472 -) -(1,4851:6434165,28619179:26345472,22758298,196608 -[1,4851:6630773,28619179:25952256,22561690,0 -(1,4811:6630773,6461715:25952256,404226,9436 -h1,4811:6630773,6461715:0,0,0 -g1,4811:7579210,6461715 -g1,4811:8211502,6461715 -g1,4811:8527648,6461715 -g1,4811:9159940,6461715 -g1,4811:9792232,6461715 -g1,4811:10108378,6461715 -g1,4811:11689107,6461715 -g1,4811:12005253,6461715 -g1,4811:12637545,6461715 -g1,4811:12953691,6461715 -h1,4811:13269837,6461715:0,0,0 -k1,4811:32583029,6461715:19313192 -g1,4811:32583029,6461715 -) -(1,4811:6630773,7127893:25952256,404226,9436 -h1,4811:6630773,7127893:0,0,0 -g1,4811:7579210,7127893 -g1,4811:8211502,7127893 -g1,4811:8527648,7127893 -g1,4811:9159940,7127893 -g1,4811:9792232,7127893 -g1,4811:11689106,7127893 -g1,4811:12005252,7127893 -g1,4811:12637544,7127893 -g1,4811:12953690,7127893 -h1,4811:13269836,7127893:0,0,0 -k1,4811:32583028,7127893:19313192 -g1,4811:32583028,7127893 -) -(1,4811:6630773,7794071:25952256,404226,9436 -h1,4811:6630773,7794071:0,0,0 -g1,4811:7579210,7794071 -g1,4811:8211502,7794071 -g1,4811:8527648,7794071 -g1,4811:9159940,7794071 -g1,4811:9792232,7794071 -g1,4811:10108378,7794071 -g1,4811:11689107,7794071 -g1,4811:12005253,7794071 -g1,4811:12637545,7794071 -g1,4811:12953691,7794071 -h1,4811:13269837,7794071:0,0,0 -k1,4811:32583029,7794071:19313192 -g1,4811:32583029,7794071 -) -(1,4811:6630773,8460249:25952256,404226,9436 -h1,4811:6630773,8460249:0,0,0 -g1,4811:7579210,8460249 -g1,4811:8211502,8460249 -g1,4811:8527648,8460249 -g1,4811:9159940,8460249 -g1,4811:9792232,8460249 -g1,4811:11689106,8460249 -g1,4811:12005252,8460249 -g1,4811:12637544,8460249 -g1,4811:12953690,8460249 -h1,4811:13269836,8460249:0,0,0 -k1,4811:32583028,8460249:19313192 -g1,4811:32583028,8460249 -) -(1,4813:6630773,9781787:25952256,410518,82312 -(1,4812:6630773,9781787:0,0,0 -g1,4812:6630773,9781787 -g1,4812:6630773,9781787 -g1,4812:6303093,9781787 -(1,4812:6303093,9781787:0,0,0 -) -g1,4812:6630773,9781787 -) -g1,4813:8527647,9781787 -g1,4813:9159939,9781787 -g1,4813:10108377,9781787 -g1,4813:11056815,9781787 -k1,4813:11056815,9781787:0 -h1,4813:12005252,9781787:0,0,0 -k1,4813:32583028,9781787:20577776 -g1,4813:32583028,9781787 -) -(1,4814:6630773,10447965:25952256,410518,6290 -h1,4814:6630773,10447965:0,0,0 -h1,4814:7895356,10447965:0,0,0 -k1,4814:32583028,10447965:24687672 -g1,4814:32583028,10447965 -) -(1,4824:6630773,11179679:25952256,388497,101187 -(1,4816:6630773,11179679:0,0,0 -g1,4816:6630773,11179679 -g1,4816:6630773,11179679 -g1,4816:6303093,11179679 -(1,4816:6303093,11179679:0,0,0 -) -g1,4816:6630773,11179679 -) -g1,4824:7579210,11179679 -g1,4824:7895356,11179679 -g1,4824:8211502,11179679 -g1,4824:8527648,11179679 -g1,4824:8843794,11179679 -g1,4824:9476086,11179679 -g1,4824:10108378,11179679 -g1,4824:10424524,11179679 -g1,4824:10740670,11179679 -g1,4824:11056816,11179679 -g1,4824:11372962,11179679 -g1,4824:12005254,11179679 -g1,4824:12953691,11179679 -h1,4824:13585982,11179679:0,0,0 -k1,4824:32583030,11179679:18997048 -g1,4824:32583030,11179679 -) -(1,4824:6630773,11845857:25952256,404226,9436 -h1,4824:6630773,11845857:0,0,0 -g1,4824:7579210,11845857 -g1,4824:8211502,11845857 -g1,4824:9476085,11845857 -g1,4824:10108377,11845857 -g1,4824:10424523,11845857 -g1,4824:12005252,11845857 -g1,4824:12321398,11845857 -g1,4824:12953690,11845857 -g1,4824:13269836,11845857 -h1,4824:13585982,11845857:0,0,0 -k1,4824:32583030,11845857:18997048 -g1,4824:32583030,11845857 -) -(1,4824:6630773,12512035:25952256,404226,9436 -h1,4824:6630773,12512035:0,0,0 -g1,4824:7579210,12512035 -g1,4824:8211502,12512035 -g1,4824:9476085,12512035 -g1,4824:10108377,12512035 -g1,4824:12005251,12512035 -g1,4824:12321397,12512035 -g1,4824:12953689,12512035 -g1,4824:13269835,12512035 -h1,4824:13585981,12512035:0,0,0 -k1,4824:32583029,12512035:18997048 -g1,4824:32583029,12512035 -) -(1,4824:6630773,13178213:25952256,404226,9436 -h1,4824:6630773,13178213:0,0,0 -g1,4824:7579210,13178213 -g1,4824:8211502,13178213 -g1,4824:9476085,13178213 -g1,4824:10108377,13178213 -g1,4824:10424523,13178213 -g1,4824:12005252,13178213 -g1,4824:12321398,13178213 -g1,4824:12953690,13178213 -g1,4824:13269836,13178213 -h1,4824:13585982,13178213:0,0,0 -k1,4824:32583030,13178213:18997048 -g1,4824:32583030,13178213 -) -(1,4824:6630773,13844391:25952256,404226,9436 -h1,4824:6630773,13844391:0,0,0 -g1,4824:7579210,13844391 -g1,4824:8211502,13844391 -g1,4824:9476085,13844391 -g1,4824:10108377,13844391 -g1,4824:12005251,13844391 -g1,4824:12321397,13844391 -g1,4824:12953689,13844391 -g1,4824:13269835,13844391 -h1,4824:13585981,13844391:0,0,0 -k1,4824:32583029,13844391:18997048 -g1,4824:32583029,13844391 -) -(1,4824:6630773,14510569:25952256,404226,9436 -h1,4824:6630773,14510569:0,0,0 -g1,4824:7579210,14510569 -g1,4824:8211502,14510569 -g1,4824:9476085,14510569 -g1,4824:10108377,14510569 -g1,4824:10424523,14510569 -g1,4824:12005252,14510569 -g1,4824:12321398,14510569 -g1,4824:12953690,14510569 -g1,4824:13269836,14510569 -h1,4824:13585982,14510569:0,0,0 -k1,4824:32583030,14510569:18997048 -g1,4824:32583030,14510569 -) -(1,4824:6630773,15176747:25952256,404226,9436 -h1,4824:6630773,15176747:0,0,0 -g1,4824:7579210,15176747 -g1,4824:8211502,15176747 -g1,4824:9476085,15176747 -g1,4824:10108377,15176747 -g1,4824:12005251,15176747 -g1,4824:12321397,15176747 -g1,4824:12953689,15176747 -g1,4824:13269835,15176747 -h1,4824:13585981,15176747:0,0,0 -k1,4824:32583029,15176747:18997048 -g1,4824:32583029,15176747 -) -(1,4826:6630773,16498285:25952256,410518,76021 -(1,4825:6630773,16498285:0,0,0 -g1,4825:6630773,16498285 -g1,4825:6630773,16498285 -g1,4825:6303093,16498285 -(1,4825:6303093,16498285:0,0,0 -) -g1,4825:6630773,16498285 -) -g1,4826:10424521,16498285 -g1,4826:11372959,16498285 -h1,4826:12321396,16498285:0,0,0 -k1,4826:32583028,16498285:20261632 -g1,4826:32583028,16498285 -) -(1,4827:6630773,17164463:25952256,410518,6290 -h1,4827:6630773,17164463:0,0,0 -h1,4827:7895356,17164463:0,0,0 -k1,4827:32583028,17164463:24687672 -g1,4827:32583028,17164463 -) -(1,4837:6630773,17896177:25952256,388497,101187 -(1,4829:6630773,17896177:0,0,0 -g1,4829:6630773,17896177 -g1,4829:6630773,17896177 -g1,4829:6303093,17896177 -(1,4829:6303093,17896177:0,0,0 -) -g1,4829:6630773,17896177 -) -g1,4837:7579210,17896177 -g1,4837:7895356,17896177 -g1,4837:8211502,17896177 -g1,4837:8527648,17896177 -g1,4837:8843794,17896177 -g1,4837:9476086,17896177 -g1,4837:10108378,17896177 -g1,4837:10424524,17896177 -g1,4837:10740670,17896177 -g1,4837:11056816,17896177 -g1,4837:11372962,17896177 -g1,4837:12005254,17896177 -g1,4837:12953691,17896177 -h1,4837:13585982,17896177:0,0,0 -k1,4837:32583030,17896177:18997048 -g1,4837:32583030,17896177 -) -(1,4837:6630773,18562355:25952256,404226,9436 -h1,4837:6630773,18562355:0,0,0 -g1,4837:7579210,18562355 -g1,4837:8211502,18562355 -g1,4837:9476085,18562355 -g1,4837:10108377,18562355 -g1,4837:10424523,18562355 -g1,4837:12005252,18562355 -g1,4837:12321398,18562355 -g1,4837:12953690,18562355 -g1,4837:13269836,18562355 -h1,4837:13585982,18562355:0,0,0 -k1,4837:32583030,18562355:18997048 -g1,4837:32583030,18562355 -) -(1,4837:6630773,19228533:25952256,404226,9436 -h1,4837:6630773,19228533:0,0,0 -g1,4837:7579210,19228533 -g1,4837:8211502,19228533 -g1,4837:9476085,19228533 -g1,4837:10108377,19228533 -g1,4837:12005251,19228533 -g1,4837:12321397,19228533 -g1,4837:12953689,19228533 -g1,4837:13269835,19228533 -h1,4837:13585981,19228533:0,0,0 -k1,4837:32583029,19228533:18997048 -g1,4837:32583029,19228533 -) -(1,4837:6630773,19894711:25952256,404226,9436 -h1,4837:6630773,19894711:0,0,0 -g1,4837:7579210,19894711 -g1,4837:8211502,19894711 -g1,4837:9476085,19894711 -g1,4837:10108377,19894711 -g1,4837:10424523,19894711 -g1,4837:12005252,19894711 -g1,4837:12321398,19894711 -g1,4837:12953690,19894711 -g1,4837:13269836,19894711 -h1,4837:13585982,19894711:0,0,0 -k1,4837:32583030,19894711:18997048 -g1,4837:32583030,19894711 -) -(1,4837:6630773,20560889:25952256,404226,9436 -h1,4837:6630773,20560889:0,0,0 -g1,4837:7579210,20560889 -g1,4837:8211502,20560889 -g1,4837:9476085,20560889 -g1,4837:10108377,20560889 -g1,4837:12005251,20560889 -g1,4837:12321397,20560889 -g1,4837:12953689,20560889 -g1,4837:13269835,20560889 -h1,4837:13585981,20560889:0,0,0 -k1,4837:32583029,20560889:18997048 -g1,4837:32583029,20560889 -) -(1,4837:6630773,21227067:25952256,404226,9436 -h1,4837:6630773,21227067:0,0,0 -g1,4837:7579210,21227067 -g1,4837:8211502,21227067 -g1,4837:9476085,21227067 -g1,4837:10108377,21227067 -g1,4837:10424523,21227067 -g1,4837:12005252,21227067 -g1,4837:12321398,21227067 -g1,4837:12953690,21227067 -g1,4837:13269836,21227067 -h1,4837:13585982,21227067:0,0,0 -k1,4837:32583030,21227067:18997048 -g1,4837:32583030,21227067 -) -(1,4837:6630773,21893245:25952256,404226,9436 -h1,4837:6630773,21893245:0,0,0 -g1,4837:7579210,21893245 -g1,4837:8211502,21893245 -g1,4837:9476085,21893245 -g1,4837:10108377,21893245 -g1,4837:12005251,21893245 -g1,4837:12321397,21893245 -g1,4837:12953689,21893245 -g1,4837:13269835,21893245 -h1,4837:13585981,21893245:0,0,0 -k1,4837:32583029,21893245:18997048 -g1,4837:32583029,21893245 -) -(1,4839:6630773,23214783:25952256,410518,82312 -(1,4838:6630773,23214783:0,0,0 -g1,4838:6630773,23214783 -g1,4838:6630773,23214783 -g1,4838:6303093,23214783 -(1,4838:6303093,23214783:0,0,0 -) -g1,4838:6630773,23214783 -) -k1,4839:6630773,23214783:0 -g1,4839:9159939,23214783 -g1,4839:10108377,23214783 -g1,4839:11056815,23214783 -g1,4839:13585981,23214783 -h1,4839:14218273,23214783:0,0,0 -k1,4839:32583029,23214783:18364756 -g1,4839:32583029,23214783 -) -(1,4840:6630773,23880961:25952256,410518,6290 -h1,4840:6630773,23880961:0,0,0 -h1,4840:7895356,23880961:0,0,0 -k1,4840:32583028,23880961:24687672 -g1,4840:32583028,23880961 -) -(1,4850:6630773,24612675:25952256,388497,101187 -(1,4842:6630773,24612675:0,0,0 -g1,4842:6630773,24612675 -g1,4842:6630773,24612675 -g1,4842:6303093,24612675 -(1,4842:6303093,24612675:0,0,0 -) -g1,4842:6630773,24612675 -) -g1,4850:7579210,24612675 -g1,4850:7895356,24612675 -g1,4850:8211502,24612675 -g1,4850:8527648,24612675 -g1,4850:8843794,24612675 -g1,4850:9476086,24612675 -g1,4850:10108378,24612675 -g1,4850:10424524,24612675 -g1,4850:10740670,24612675 -g1,4850:11056816,24612675 -g1,4850:11372962,24612675 -g1,4850:12005254,24612675 -g1,4850:12953691,24612675 -h1,4850:13585982,24612675:0,0,0 -k1,4850:32583030,24612675:18997048 -g1,4850:32583030,24612675 -) -(1,4850:6630773,25278853:25952256,404226,9436 -h1,4850:6630773,25278853:0,0,0 -g1,4850:7579210,25278853 -g1,4850:8211502,25278853 -g1,4850:8527648,25278853 -g1,4850:8843794,25278853 -g1,4850:9476086,25278853 -g1,4850:10108378,25278853 -g1,4850:10424524,25278853 -g1,4850:12005253,25278853 -g1,4850:12321399,25278853 -g1,4850:12953691,25278853 -g1,4850:13269837,25278853 -h1,4850:13585983,25278853:0,0,0 -k1,4850:32583029,25278853:18997046 -g1,4850:32583029,25278853 -) -(1,4850:6630773,25945031:25952256,404226,9436 -h1,4850:6630773,25945031:0,0,0 -g1,4850:7579210,25945031 -g1,4850:8211502,25945031 -g1,4850:9476085,25945031 -g1,4850:10108377,25945031 -g1,4850:12005251,25945031 -g1,4850:12321397,25945031 -g1,4850:12953689,25945031 -g1,4850:13269835,25945031 -h1,4850:13585981,25945031:0,0,0 -k1,4850:32583029,25945031:18997048 -g1,4850:32583029,25945031 -) -(1,4850:6630773,26611209:25952256,404226,9436 -h1,4850:6630773,26611209:0,0,0 -g1,4850:7579210,26611209 -g1,4850:8211502,26611209 -g1,4850:9476085,26611209 -g1,4850:10108377,26611209 -g1,4850:10424523,26611209 -g1,4850:12005252,26611209 -g1,4850:12321398,26611209 -g1,4850:12953690,26611209 -g1,4850:13269836,26611209 -h1,4850:13585982,26611209:0,0,0 -k1,4850:32583030,26611209:18997048 -g1,4850:32583030,26611209 -) -(1,4850:6630773,27277387:25952256,404226,9436 -h1,4850:6630773,27277387:0,0,0 -g1,4850:7579210,27277387 -g1,4850:8211502,27277387 -g1,4850:9476085,27277387 -g1,4850:10108377,27277387 -g1,4850:12005251,27277387 -g1,4850:12321397,27277387 -g1,4850:12953689,27277387 -g1,4850:13269835,27277387 -h1,4850:13585981,27277387:0,0,0 -k1,4850:32583029,27277387:18997048 -g1,4850:32583029,27277387 -) -(1,4850:6630773,27943565:25952256,404226,9436 -h1,4850:6630773,27943565:0,0,0 -g1,4850:7579210,27943565 -g1,4850:8211502,27943565 -g1,4850:9476085,27943565 -g1,4850:10108377,27943565 -g1,4850:10424523,27943565 -g1,4850:12005252,27943565 -g1,4850:12321398,27943565 -g1,4850:12953690,27943565 -g1,4850:13269836,27943565 -h1,4850:13585982,27943565:0,0,0 -k1,4850:32583030,27943565:18997048 -g1,4850:32583030,27943565 -) -(1,4850:6630773,28609743:25952256,404226,9436 -h1,4850:6630773,28609743:0,0,0 -g1,4850:7579210,28609743 -g1,4850:8211502,28609743 -g1,4850:9476085,28609743 -g1,4850:10108377,28609743 -g1,4850:12005251,28609743 -g1,4850:12321397,28609743 -g1,4850:12953689,28609743 -g1,4850:13269835,28609743 -h1,4850:13585981,28609743:0,0,0 -k1,4850:32583029,28609743:18997048 -g1,4850:32583029,28609743 -) -] -) -g1,4851:32583029,28619179 -g1,4851:6630773,28619179 -g1,4851:6630773,28619179 -g1,4851:32583029,28619179 -g1,4851:32583029,28619179 -) -h1,4851:6630773,28815787:0,0,0 -v1,4855:6630773,30705851:0,393216,0 -(1,4900:6630773,41692484:25952256,11379849,589824 -g1,4900:6630773,41692484 -(1,4900:6630773,41692484:25952256,11379849,589824 -(1,4900:6630773,42282308:25952256,11969673,0 -[1,4900:6630773,42282308:25952256,11969673,0 -(1,4900:6630773,42282308:25952256,11943459,0 -r1,4900:6656987,42282308:26214,11943459,0 -[1,4900:6656987,42282308:25899828,11943459,0 -(1,4900:6656987,41692484:25899828,10763811,0 -[1,4900:7246811,41692484:24720180,10763811,0 -(1,4856:7246811,32014209:24720180,1085536,298548 -(1,4855:7246811,32014209:0,1085536,298548 -r1,4900:8753226,32014209:1506415,1384084,298548 -k1,4855:7246811,32014209:-1506415 -) -(1,4855:7246811,32014209:1506415,1085536,298548 -) -k1,4855:8933318,32014209:180092 -k1,4855:10066960,32014209:180093 -k1,4855:13664755,32014209:180092 -k1,4855:15700172,32014209:180093 -k1,4855:17164770,32014209:180092 -k1,4855:20084267,32014209:180092 -k1,4855:21025888,32014209:180093 -k1,4855:22943995,32014209:180092 -k1,4855:24228369,32014209:180092 -k1,4855:25156228,32014209:180093 -k1,4855:26913772,32014209:180092 -k1,4855:28949845,32014209:180093 -k1,4855:30523888,32014209:180092 -k1,4856:31966991,32014209:0 -) -(1,4856:7246811,32855697:24720180,513147,126483 -k1,4855:8418666,32855697:218962 -k1,4855:10778690,32855697:218963 -k1,4855:13876649,32855697:218962 -(1,4855:13876649,32855697:0,452978,115847 -r1,4900:15290050,32855697:1413401,568825,115847 -k1,4855:13876649,32855697:-1413401 -) -(1,4855:13876649,32855697:1413401,452978,115847 -k1,4855:13876649,32855697:3277 -h1,4855:15286773,32855697:0,411205,112570 -) -k1,4855:15682682,32855697:218962 -k1,4855:16584530,32855697:218963 -k1,4855:18197443,32855697:218962 -(1,4855:18197443,32855697:0,459977,115847 -r1,4900:18555709,32855697:358266,575824,115847 -k1,4855:18197443,32855697:-358266 -) -(1,4855:18197443,32855697:358266,459977,115847 -k1,4855:18197443,32855697:3277 -h1,4855:18552432,32855697:0,411205,112570 -) -k1,4855:18948341,32855697:218962 -k1,4855:19795139,32855697:218963 -k1,4855:21033186,32855697:218962 -k1,4855:22558281,32855697:218962 -k1,4855:24144325,32855697:218963 -k1,4855:25382372,32855697:218962 -k1,4855:27339349,32855697:218962 -k1,4855:28217604,32855697:218963 -k1,4855:29455651,32855697:218962 -k1,4855:31966991,32855697:0 -) -(1,4856:7246811,33697185:24720180,505283,134348 -k1,4855:8142735,33697185:213039 -k1,4855:10738663,33697185:213039 -k1,4855:11483199,33697185:213039 -k1,4855:13390999,33697185:213039 -k1,4855:14290200,33697185:213039 -k1,4855:14859099,33697185:213039 -k1,4855:18046817,33697185:213039 -k1,4855:20299335,33697185:213038 -k1,4855:23306174,33697185:213039 -k1,4855:24135251,33697185:213039 -k1,4855:27442245,33697185:213039 -k1,4855:29816006,33697185:213039 -k1,4855:30711930,33697185:213039 -k1,4855:31611131,33697185:213039 -k1,4855:31966991,33697185:0 -) -(1,4856:7246811,34538673:24720180,505283,134348 -k1,4855:9908244,34538673:150093 -k1,4855:11452288,34538673:150093 -k1,4855:13384959,34538673:150092 -(1,4855:13384959,34538673:0,452978,115847 -r1,4900:16556919,34538673:3171960,568825,115847 -k1,4855:13384959,34538673:-3171960 -) -(1,4855:13384959,34538673:3171960,452978,115847 -k1,4855:13384959,34538673:3277 -h1,4855:16553642,34538673:0,411205,112570 -) -k1,4855:16880682,34538673:150093 -k1,4855:18814010,34538673:150093 -k1,4855:20699496,34538673:150093 -(1,4855:20699496,34538673:0,459977,115847 -r1,4900:21057762,34538673:358266,575824,115847 -k1,4855:20699496,34538673:-358266 -) -(1,4855:20699496,34538673:358266,459977,115847 -k1,4855:20699496,34538673:3277 -h1,4855:21054485,34538673:0,411205,112570 -) -k1,4855:21381524,34538673:150092 -k1,4855:22550702,34538673:150093 -k1,4855:24438810,34538673:150093 -k1,4855:25120400,34538673:150093 -k1,4855:27693358,34538673:150092 -k1,4855:28529613,34538673:150093 -k1,4855:29035566,34538673:150093 -k1,4855:31966991,34538673:0 -) -(1,4856:7246811,35380161:24720180,505283,126483 -g1,4855:9906262,35380161 -g1,4855:13199446,35380161 -g1,4855:15559397,35380161 -g1,4855:16950071,35380161 -g1,4855:19319852,35380161 -g1,4855:20266847,35380161 -g1,4855:20821936,35380161 -k1,4856:31966991,35380161:8460045 -g1,4856:31966991,35380161 -) -v1,4858:7246811,36570627:0,393216,0 -(1,4873:7246811,40971588:24720180,4794177,196608 -g1,4873:7246811,40971588 -g1,4873:7246811,40971588 -g1,4873:7050203,40971588 -(1,4873:7050203,40971588:0,4794177,196608 -r1,4900:32163599,40971588:25113396,4990785,196608 -k1,4873:7050203,40971588:-25113396 -) -(1,4873:7050203,40971588:25113396,4794177,196608 -[1,4873:7246811,40971588:24720180,4597569,0 -(1,4860:7246811,36778245:24720180,404226,101187 -(1,4859:7246811,36778245:0,0,0 -g1,4859:7246811,36778245 -g1,4859:7246811,36778245 -g1,4859:6919131,36778245 -(1,4859:6919131,36778245:0,0,0 -) -g1,4859:7246811,36778245 -) -g1,4860:9459831,36778245 -g1,4860:10408269,36778245 -g1,4860:13569727,36778245 -g1,4860:14202019,36778245 -g1,4860:15782748,36778245 -g1,4860:17363477,36778245 -g1,4860:17995769,36778245 -h1,4860:19260352,36778245:0,0,0 -k1,4860:31966991,36778245:12706639 -g1,4860:31966991,36778245 -) -(1,4861:7246811,37444423:24720180,404226,76021 -h1,4861:7246811,37444423:0,0,0 -h1,4861:12305141,37444423:0,0,0 -k1,4861:31966991,37444423:19661850 -g1,4861:31966991,37444423 -) -(1,4865:7246811,38176137:24720180,404226,76021 -(1,4863:7246811,38176137:0,0,0 -g1,4863:7246811,38176137 -g1,4863:7246811,38176137 -g1,4863:6919131,38176137 -(1,4863:6919131,38176137:0,0,0 -) -g1,4863:7246811,38176137 -) -g1,4865:8195248,38176137 -g1,4865:9459831,38176137 -h1,4865:10408268,38176137:0,0,0 -k1,4865:31966992,38176137:21558724 -g1,4865:31966992,38176137 -) -(1,4867:7246811,39497675:24720180,404226,6290 -(1,4866:7246811,39497675:0,0,0 -g1,4866:7246811,39497675 -g1,4866:7246811,39497675 -g1,4866:6919131,39497675 -(1,4866:6919131,39497675:0,0,0 -) -g1,4866:7246811,39497675 -) -g1,4867:9143685,39497675 -g1,4867:10092123,39497675 -h1,4867:11988997,39497675:0,0,0 -k1,4867:31966991,39497675:19977994 -g1,4867:31966991,39497675 -) -(1,4868:7246811,40163853:24720180,404226,76021 -h1,4868:7246811,40163853:0,0,0 -h1,4868:11988996,40163853:0,0,0 -k1,4868:31966992,40163853:19977996 -g1,4868:31966992,40163853 -) -(1,4872:7246811,40895567:24720180,404226,76021 -(1,4870:7246811,40895567:0,0,0 -g1,4870:7246811,40895567 -g1,4870:7246811,40895567 -g1,4870:6919131,40895567 -(1,4870:6919131,40895567:0,0,0 -) -g1,4870:7246811,40895567 -) -g1,4872:8195248,40895567 -g1,4872:9459831,40895567 -h1,4872:10408268,40895567:0,0,0 -k1,4872:31966992,40895567:21558724 -g1,4872:31966992,40895567 -) -] -) -g1,4873:31966991,40971588 -g1,4873:7246811,40971588 -g1,4873:7246811,40971588 -g1,4873:31966991,40971588 -g1,4873:31966991,40971588 -) -h1,4873:7246811,41168196:0,0,0 -] -) -] -r1,4900:32583029,42282308:26214,11943459,0 -) -] -) -) -g1,4900:32583029,41692484 -) -] -(1,4900:32583029,45706769:0,0,0 -g1,4900:32583029,45706769 -) -) -] -(1,4900:6630773,47279633:25952256,0,0 -h1,4900:6630773,47279633:25952256,0,0 -) -] -(1,4900:4262630,4025873:0,0,0 -[1,4900:-473656,4025873:0,0,0 -(1,4900:-473656,-710413:0,0,0 -(1,4900:-473656,-710413:0,0,0 -g1,4900:-473656,-710413 -) -g1,4900:-473656,-710413 -) -] -) -] -!22920 -}89 -Input:634:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:635:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:636:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:637:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:638:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:639:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:640:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:641:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:642:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!830 -{90 -[1,4928:4262630,47279633:28320399,43253760,0 -(1,4928:4262630,4025873:0,0,0 -[1,4928:-473656,4025873:0,0,0 -(1,4928:-473656,-710413:0,0,0 -(1,4928:-473656,-644877:0,0,0 -k1,4928:-473656,-644877:-65536 -) -(1,4928:-473656,4736287:0,0,0 -k1,4928:-473656,4736287:5209943 -) -g1,4928:-473656,-710413 -) -] -) -[1,4928:6630773,47279633:25952256,43253760,0 -[1,4928:6630773,4812305:25952256,786432,0 -(1,4928:6630773,4812305:25952256,513147,126483 -(1,4928:6630773,4812305:25952256,513147,126483 -g1,4928:3078558,4812305 -[1,4928:3078558,4812305:0,0,0 -(1,4928:3078558,2439708:0,1703936,0 -k1,4928:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,4928:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,4928:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,4928:3078558,4812305:0,0,0 -(1,4928:3078558,2439708:0,1703936,0 -g1,4928:29030814,2439708 -g1,4928:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,4928:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,4928:37855564,2439708:1179648,16384,0 -) -) -k1,4928:3078556,2439708:-34777008 -) -] -[1,4928:3078558,4812305:0,0,0 -(1,4928:3078558,49800853:0,16384,2228224 -k1,4928:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,4928:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,4928:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,4928:3078558,4812305:0,0,0 -(1,4928:3078558,49800853:0,16384,2228224 -g1,4928:29030814,49800853 -g1,4928:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,4928:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,4928:37855564,49800853:1179648,16384,0 -) -) -k1,4928:3078556,49800853:-34777008 -) -] -g1,4928:6630773,4812305 -g1,4928:6630773,4812305 -g1,4928:8364200,4812305 -g1,4928:10765439,4812305 -k1,4928:31786111,4812305:21020672 -) -) -] -[1,4928:6630773,45706769:25952256,40108032,0 -(1,4928:6630773,45706769:25952256,40108032,0 -(1,4928:6630773,45706769:0,0,0 -g1,4928:6630773,45706769 -) -[1,4928:6630773,45706769:25952256,40108032,0 -v1,4900:6630773,6254097:0,393216,0 -(1,4900:6630773,22083682:25952256,16222801,616038 -g1,4900:6630773,22083682 -(1,4900:6630773,22083682:25952256,16222801,616038 -(1,4900:6630773,22699720:25952256,16838839,0 -[1,4900:6630773,22699720:25952256,16838839,0 -(1,4900:6630773,22673506:25952256,16812625,0 -r1,4928:6656987,22673506:26214,16812625,0 -[1,4900:6656987,22673506:25899828,16812625,0 -(1,4900:6656987,22083682:25899828,15632977,0 -[1,4900:7246811,22083682:24720180,15632977,0 -v1,4877:7246811,6843921:0,393216,0 -(1,4896:7246811,11972070:24720180,5521365,196608 -g1,4896:7246811,11972070 -g1,4896:7246811,11972070 -g1,4896:7050203,11972070 -(1,4896:7050203,11972070:0,5521365,196608 -r1,4928:32163599,11972070:25113396,5717973,196608 -k1,4896:7050203,11972070:-25113396 -) -(1,4896:7050203,11972070:25113396,5521365,196608 -[1,4896:7246811,11972070:24720180,5324757,0 -(1,4879:7246811,7057831:24720180,410518,31456 -(1,4878:7246811,7057831:0,0,0 -g1,4878:7246811,7057831 -g1,4878:7246811,7057831 -g1,4878:6919131,7057831 -(1,4878:6919131,7057831:0,0,0 -) -g1,4878:7246811,7057831 -) -h1,4879:10724414,7057831:0,0,0 -k1,4879:31966990,7057831:21242576 -g1,4879:31966990,7057831 -) -(1,4883:7246811,7789545:24720180,404226,76021 -(1,4881:7246811,7789545:0,0,0 -g1,4881:7246811,7789545 -g1,4881:7246811,7789545 -g1,4881:6919131,7789545 -(1,4881:6919131,7789545:0,0,0 -) -g1,4881:7246811,7789545 -) -g1,4883:8195248,7789545 -g1,4883:9459831,7789545 -h1,4883:10408268,7789545:0,0,0 -k1,4883:31966992,7789545:21558724 -g1,4883:31966992,7789545 -) -(1,4885:7246811,9111083:24720180,410518,31456 -(1,4884:7246811,9111083:0,0,0 -g1,4884:7246811,9111083 -g1,4884:7246811,9111083 -g1,4884:6919131,9111083 -(1,4884:6919131,9111083:0,0,0 -) -g1,4884:7246811,9111083 -) -h1,4885:10092122,9111083:0,0,0 -k1,4885:31966990,9111083:21874868 -g1,4885:31966990,9111083 -) -(1,4889:7246811,9842797:24720180,404226,76021 -(1,4887:7246811,9842797:0,0,0 -g1,4887:7246811,9842797 -g1,4887:7246811,9842797 -g1,4887:6919131,9842797 -(1,4887:6919131,9842797:0,0,0 -) -g1,4887:7246811,9842797 -) -g1,4889:8195248,9842797 -g1,4889:9459831,9842797 -h1,4889:10408268,9842797:0,0,0 -k1,4889:31966992,9842797:21558724 -g1,4889:31966992,9842797 -) -(1,4891:7246811,11164335:24720180,410518,31456 -(1,4890:7246811,11164335:0,0,0 -g1,4890:7246811,11164335 -g1,4890:7246811,11164335 -g1,4890:6919131,11164335 -(1,4890:6919131,11164335:0,0,0 -) -g1,4890:7246811,11164335 -) -h1,4891:9775977,11164335:0,0,0 -k1,4891:31966991,11164335:22191014 -g1,4891:31966991,11164335 -) -(1,4895:7246811,11896049:24720180,404226,76021 -(1,4893:7246811,11896049:0,0,0 -g1,4893:7246811,11896049 -g1,4893:7246811,11896049 -g1,4893:6919131,11896049 -(1,4893:6919131,11896049:0,0,0 -) -g1,4893:7246811,11896049 -) -g1,4895:8195248,11896049 -g1,4895:9459831,11896049 -h1,4895:10408268,11896049:0,0,0 -k1,4895:31966992,11896049:21558724 -g1,4895:31966992,11896049 -) -] -) -g1,4896:31966991,11972070 -g1,4896:7246811,11972070 -g1,4896:7246811,11972070 -g1,4896:31966991,11972070 -g1,4896:31966991,11972070 -) -h1,4896:7246811,12168678:0,0,0 -(1,4900:7246811,13534454:24720180,513147,134348 -h1,4899:7246811,13534454:983040,0,0 -k1,4899:9894012,13534454:198776 -k1,4899:10708826,13534454:198776 -k1,4899:11926686,13534454:198775 -k1,4899:13492543,13534454:198776 -k1,4899:14350611,13534454:198776 -k1,4899:15873214,13534454:198776 -k1,4899:17263434,13534454:198775 -k1,4899:18851573,13534454:198776 -k1,4899:21430617,13534454:198776 -k1,4899:23327431,13534454:198776 -k1,4899:25261599,13534454:198775 -k1,4899:27643379,13534454:198776 -k1,4899:29983216,13534454:198776 -k1,4900:31966991,13534454:0 -) -(1,4900:7246811,14375942:24720180,505283,134348 -k1,4899:8570873,14375942:215848 -k1,4899:9557423,14375942:215847 -k1,4899:11431987,14375942:215848 -k1,4899:13628987,14375942:215847 -k1,4899:14376332,14375942:215848 -k1,4899:17304714,14375942:215847 -k1,4899:20155765,14375942:215848 -k1,4899:21390697,14375942:215847 -k1,4899:23344560,14375942:215848 -k1,4899:24176445,14375942:215847 -k1,4899:25411378,14375942:215848 -k1,4899:27586751,14375942:215847 -k1,4899:28994044,14375942:215848 -k1,4899:30228976,14375942:215847 -k1,4899:31966991,14375942:0 -) -(1,4900:7246811,15217430:24720180,513147,134348 -k1,4899:8974576,15217430:214539 -k1,4899:10136766,15217430:214539 -k1,4899:13264381,15217430:214540 -k1,4899:14106755,15217430:214539 -k1,4899:17126235,15217430:214539 -k1,4899:18734725,15217430:214539 -(1,4899:18734725,15217430:0,459977,115847 -r1,4928:19092991,15217430:358266,575824,115847 -k1,4899:18734725,15217430:-358266 -) -(1,4899:18734725,15217430:358266,459977,115847 -k1,4899:18734725,15217430:3277 -h1,4899:19089714,15217430:0,411205,112570 -) -k1,4899:19481200,15217430:214539 -k1,4899:20827546,15217430:214539 -k1,4899:25377948,15217430:214540 -k1,4899:27676532,15217430:214539 -k1,4899:29872224,15217430:214539 -k1,4899:31219225,15217430:214539 -k1,4899:31966991,15217430:0 -) -(1,4900:7246811,16058918:24720180,513147,134348 -k1,4899:10495365,16058918:258802 -k1,4899:11796188,16058918:258801 -k1,4899:15415676,16058918:258802 -k1,4899:16940634,16058918:258802 -k1,4899:19283481,16058918:258802 -k1,4899:22513684,16058918:258801 -k1,4899:23303983,16058918:258802 -k1,4899:25835574,16058918:258802 -k1,4899:26710413,16058918:258801 -k1,4899:29764326,16058918:258802 -k1,4899:31966991,16058918:0 -) -(1,4900:7246811,16900406:24720180,505283,134348 -k1,4899:10410049,16900406:228536 -k1,4899:11254622,16900406:228535 -k1,4899:13818206,16900406:228536 -k1,4899:15238186,16900406:228535 -k1,4899:18574439,16900406:228536 -k1,4899:19217788,16900406:228506 -k1,4899:20942510,16900406:228535 -k1,4899:21787084,16900406:228536 -k1,4899:25099743,16900406:228535 -k1,4899:25786376,16900406:228536 -k1,4899:26546408,16900406:228535 -k1,4899:28109912,16900406:228536 -k1,4899:28989876,16900406:228536 -k1,4899:30947906,16900406:228535 -k1,4899:31966991,16900406:0 -) -(1,4900:7246811,17741894:24720180,513147,134348 -k1,4899:8584590,17741894:245294 -k1,4899:9497040,17741894:245294 -(1,4899:9497040,17741894:0,459977,115847 -r1,4928:9855306,17741894:358266,575824,115847 -k1,4899:9497040,17741894:-358266 -) -(1,4899:9497040,17741894:358266,459977,115847 -k1,4899:9497040,17741894:3277 -h1,4899:9852029,17741894:0,411205,112570 -) -k1,4899:10100599,17741894:245293 -k1,4899:11032055,17741894:245294 -k1,4899:13361394,17741894:245294 -k1,4899:16578090,17741894:245294 -k1,4899:17474812,17741894:245294 -k1,4899:18075965,17741894:245293 -k1,4899:20314209,17741894:245294 -k1,4899:23070843,17741894:245294 -k1,4899:25721964,17741894:245294 -k1,4899:26580020,17741894:245294 -k1,4899:27181173,17741894:245293 -k1,4899:28880056,17741894:245294 -k1,4899:30724428,17741894:245294 -k1,4899:31966991,17741894:0 -) -(1,4900:7246811,18583382:24720180,513147,134348 -k1,4899:9129363,18583382:184514 -k1,4899:12162726,18583382:184513 -k1,4899:13577351,18583382:184514 -k1,4899:15963874,18583382:184513 -k1,4899:17167473,18583382:184514 -k1,4899:19356732,18583382:184513 -k1,4899:20645528,18583382:184514 -k1,4899:22159111,18583382:184513 -k1,4899:22995053,18583382:184514 -k1,4899:24533540,18583382:184513 -k1,4899:31118300,18583382:184514 -k1,4900:31966991,18583382:0 -) -(1,4900:7246811,19424870:24720180,513147,134348 -k1,4899:8913594,19424870:191568 -k1,4899:9732997,19424870:191568 -k1,4899:12764240,19424870:191568 -k1,4899:13641969,19424870:191567 -(1,4899:13641969,19424870:0,459977,115847 -r1,4928:14000235,19424870:358266,575824,115847 -k1,4899:13641969,19424870:-358266 -) -(1,4899:13641969,19424870:358266,459977,115847 -k1,4899:13641969,19424870:3277 -h1,4899:13996958,19424870:0,411205,112570 -) -k1,4899:14191803,19424870:191568 -k1,4899:14914868,19424870:191568 -k1,4899:19307949,19424870:191568 -k1,4899:20261045,19424870:191568 -k1,4899:21758746,19424870:191568 -k1,4899:25455179,19424870:191568 -k1,4899:26002606,19424870:191567 -k1,4899:28175327,19424870:191568 -k1,4899:29018323,19424870:191568 -k1,4899:30228976,19424870:191568 -k1,4899:31966991,19424870:0 -) -(1,4900:7246811,20266358:24720180,513147,134348 -k1,4899:8624512,20266358:186256 -k1,4899:10244696,20266358:186256 -k1,4899:12520895,20266358:186256 -(1,4899:12520895,20266358:0,452978,115847 -r1,4928:13934296,20266358:1413401,568825,115847 -k1,4899:12520895,20266358:-1413401 -) -(1,4899:12520895,20266358:1413401,452978,115847 -k1,4899:12520895,20266358:3277 -h1,4899:13931019,20266358:0,411205,112570 -) -k1,4899:14294222,20266358:186256 -k1,4899:16215871,20266358:186256 -(1,4899:16215871,20266358:0,459977,115847 -r1,4928:16574137,20266358:358266,575824,115847 -k1,4899:16215871,20266358:-358266 -) -(1,4899:16215871,20266358:358266,459977,115847 -k1,4899:16215871,20266358:3277 -h1,4899:16570860,20266358:0,411205,112570 -) -k1,4899:16760393,20266358:186256 -k1,4899:17894299,20266358:186255 -k1,4899:20819960,20266358:186256 -k1,4899:22110498,20266358:186256 -k1,4899:24139626,20266358:186256 -k1,4899:24941920,20266358:186256 -k1,4899:27476986,20266358:186256 -k1,4899:29749908,20266358:186256 -k1,4900:31966991,20266358:0 -) -(1,4900:7246811,21107846:24720180,505283,134348 -k1,4899:9512711,21107846:194307 -k1,4899:12888136,21107846:194307 -k1,4899:13733870,21107846:194306 -k1,4899:15663570,21107846:194307 -(1,4899:15663570,21107846:0,452978,115847 -r1,4928:17076971,21107846:1413401,568825,115847 -k1,4899:15663570,21107846:-1413401 -) -(1,4899:15663570,21107846:1413401,452978,115847 -k1,4899:15663570,21107846:3277 -h1,4899:17073694,21107846:0,411205,112570 -) -k1,4899:17444948,21107846:194307 -k1,4899:18109148,21107846:194307 -k1,4899:18834952,21107846:194307 -k1,4899:21659218,21107846:194306 -k1,4899:22504953,21107846:194307 -k1,4899:23633803,21107846:194307 -k1,4899:24598813,21107846:194307 -k1,4899:25207958,21107846:194302 -k1,4899:27484998,21107846:194306 -k1,4899:28404133,21107846:194307 -k1,4899:29882946,21107846:194307 -k1,4899:31966991,21107846:0 -) -(1,4900:7246811,21949334:24720180,513147,134348 -g1,4899:10417442,21949334 -g1,4899:13077548,21949334 -g1,4899:13632637,21949334 -g1,4899:16575858,21949334 -g1,4899:18660558,21949334 -g1,4899:19964069,21949334 -g1,4899:20911064,21949334 -g1,4899:22464267,21949334 -g1,4899:24640717,21949334 -g1,4899:26537984,21949334 -k1,4900:31966991,21949334:1933317 -g1,4900:31966991,21949334 -) -] -) -] -r1,4928:32583029,22673506:26214,16812625,0 -) -] -) -) -g1,4900:32583029,22083682 -) -h1,4900:6630773,22699720:0,0,0 -(1,4902:6630773,24790980:25952256,564462,147783 -(1,4902:6630773,24790980:2899444,534184,0 -g1,4902:6630773,24790980 -g1,4902:9530217,24790980 -) -g1,4902:13366105,24790980 -g1,4902:15917357,24790980 -g1,4902:17694366,24790980 -k1,4902:32583029,24790980:12374899 -g1,4902:32583029,24790980 -) -(1,4905:6630773,26025684:25952256,513147,134348 -k1,4904:8679905,26025684:265897 -k1,4904:9964888,26025684:265898 -k1,4904:12299101,26025684:265897 -k1,4904:13224290,26025684:265897 -k1,4904:14879551,26025684:265898 -k1,4904:17352045,26025684:265897 -k1,4904:18609503,26025684:265898 -k1,4904:20437778,26025684:265897 -k1,4904:23389996,26025684:265897 -k1,4904:27018546,26025684:265898 -k1,4904:29727625,26025684:265897 -k1,4904:32583029,26025684:0 -) -(1,4905:6630773,26867172:25952256,505283,134348 -k1,4904:7494754,26867172:212553 -k1,4904:9322115,26867172:212554 -k1,4904:11270061,26867172:212553 -k1,4904:15946928,26867172:212554 -k1,4904:19640098,26867172:212553 -k1,4904:20480487,26867172:212554 -k1,4904:22186606,26867172:212553 -k1,4904:24096542,26867172:212554 -(1,4904:24096542,26867172:0,452978,115847 -r1,4928:26916791,26867172:2820249,568825,115847 -k1,4904:24096542,26867172:-2820249 -) -(1,4904:24096542,26867172:2820249,452978,115847 -k1,4904:24096542,26867172:3277 -h1,4904:26913514,26867172:0,411205,112570 -) -k1,4904:27129344,26867172:212553 -k1,4904:27873395,26867172:212554 -k1,4904:30053339,26867172:212553 -k1,4904:32583029,26867172:0 -) -(1,4905:6630773,27708660:25952256,513147,102891 -k1,4904:10169717,27708660:235274 -k1,4904:10936488,27708660:235274 -k1,4904:12749214,27708660:235274 -k1,4904:13600527,27708660:235275 -k1,4904:14854886,27708660:235274 -k1,4904:19747804,27708660:235274 -k1,4904:20642370,27708660:235274 -k1,4904:21896729,27708660:235274 -k1,4904:23521366,27708660:235274 -k1,4904:25806606,27708660:235274 -k1,4904:27111429,27708660:235275 -k1,4904:28365788,27708660:235274 -k1,4904:30669378,27708660:235274 -k1,4904:31563944,27708660:235274 -k1,4904:32583029,27708660:0 -) -(1,4905:6630773,28550148:25952256,513147,134348 -k1,4904:9590117,28550148:246153 -k1,4904:10827830,28550148:246153 -k1,4904:14586057,28550148:246153 -k1,4904:15298171,28550148:246153 -k1,4904:17967191,28550148:246154 -k1,4904:20627690,28550148:246153 -k1,4904:22571881,28550148:246153 -k1,4904:25075749,28550148:246153 -k1,4904:26340987,28550148:246153 -k1,4904:29793161,28550148:246153 -k1,4905:32583029,28550148:0 -) -(1,4905:6630773,29391636:25952256,513147,134348 -(1,4904:6630773,29391636:0,452978,115847 -r1,4928:9451022,29391636:2820249,568825,115847 -k1,4904:6630773,29391636:-2820249 -) -(1,4904:6630773,29391636:2820249,452978,115847 -k1,4904:6630773,29391636:3277 -h1,4904:9447745,29391636:0,411205,112570 -) -k1,4904:9760814,29391636:309792 -k1,4904:12529517,29391636:309792 -k1,4904:14547177,29391636:309792 -k1,4904:17144176,29391636:309792 -k1,4904:22077532,29391636:309791 -k1,4904:23038752,29391636:309792 -k1,4904:27420296,29391636:309792 -k1,4904:28412973,29391636:309792 -k1,4904:32583029,29391636:0 -) -(1,4905:6630773,30233124:25952256,513147,126483 -k1,4904:8663626,30233124:241099 -k1,4904:10101412,30233124:241099 -k1,4904:13374862,30233124:241099 -k1,4904:14147458,30233124:241099 -k1,4904:17597200,30233124:241099 -k1,4904:18785950,30233124:241099 -k1,4904:20478671,30233124:241099 -k1,4904:22097338,30233124:241100 -k1,4904:23529882,30233124:241099 -k1,4904:24236942,30233124:241099 -k1,4904:24936138,30233124:241099 -k1,4904:27518183,30233124:241099 -(1,4904:27518183,30233124:0,414482,115847 -r1,4928:28931584,30233124:1413401,530329,115847 -k1,4904:27518183,30233124:-1413401 -) -(1,4904:27518183,30233124:1413401,414482,115847 -k1,4904:27518183,30233124:3277 -h1,4904:28928307,30233124:0,411205,112570 -) -k1,4904:29346353,30233124:241099 -k1,4904:30606537,30233124:241099 -k1,4904:32051532,30233124:241099 -k1,4904:32583029,30233124:0 -) -(1,4905:6630773,31074612:25952256,513147,115847 -g1,4904:9588412,31074612 -g1,4904:10403679,31074612 -g1,4904:11621993,31074612 -g1,4904:14599949,31074612 -g1,4904:16188541,31074612 -g1,4904:18437736,31074612 -g1,4904:19828410,31074612 -g1,4904:22882387,31074612 -g1,4904:23555441,31074612 -(1,4904:23555441,31074612:0,414482,115847 -r1,4928:25320554,31074612:1765113,530329,115847 -k1,4904:23555441,31074612:-1765113 -) -(1,4904:23555441,31074612:1765113,414482,115847 -k1,4904:23555441,31074612:3277 -h1,4904:25317277,31074612:0,411205,112570 -) -k1,4905:32583029,31074612:7088805 -g1,4905:32583029,31074612 -) -v1,4907:6630773,32265078:0,393216,0 -(1,4918:6630773,35884850:25952256,4012988,196608 -g1,4918:6630773,35884850 -g1,4918:6630773,35884850 -g1,4918:6434165,35884850 -(1,4918:6434165,35884850:0,4012988,196608 -r1,4928:32779637,35884850:26345472,4209596,196608 -k1,4918:6434165,35884850:-26345472 -) -(1,4918:6434165,35884850:26345472,4012988,196608 -[1,4918:6630773,35884850:25952256,3816380,0 -(1,4909:6630773,32478988:25952256,410518,101187 -(1,4908:6630773,32478988:0,0,0 -g1,4908:6630773,32478988 -g1,4908:6630773,32478988 -g1,4908:6303093,32478988 -(1,4908:6303093,32478988:0,0,0 -) -g1,4908:6630773,32478988 -) -g1,4909:8211502,32478988 -g1,4909:9159940,32478988 -g1,4909:13269835,32478988 -g1,4909:13902127,32478988 -g1,4909:15482857,32478988 -g1,4909:16115149,32478988 -g1,4909:16747441,32478988 -g1,4909:18328170,32478988 -g1,4909:18960462,32478988 -g1,4909:19592754,32478988 -g1,4909:22121921,32478988 -h1,4909:24334940,32478988:0,0,0 -k1,4909:32583029,32478988:8248089 -g1,4909:32583029,32478988 -) -(1,4910:6630773,33145166:25952256,410518,82312 -h1,4910:6630773,33145166:0,0,0 -g1,4910:10740667,33145166 -g1,4910:11372959,33145166 -g1,4910:12005251,33145166 -h1,4910:12637543,33145166:0,0,0 -k1,4910:32583029,33145166:19945486 -g1,4910:32583029,33145166 -) -(1,4917:6630773,33876880:25952256,379060,101187 -(1,4912:6630773,33876880:0,0,0 -g1,4912:6630773,33876880 -g1,4912:6630773,33876880 -g1,4912:6303093,33876880 -(1,4912:6303093,33876880:0,0,0 -) -g1,4912:6630773,33876880 -) -g1,4917:7579210,33876880 -g1,4917:7895356,33876880 -g1,4917:8211502,33876880 -g1,4917:8843794,33876880 -g1,4917:9476086,33876880 -g1,4917:9792232,33876880 -g1,4917:10108378,33876880 -g1,4917:10424524,33876880 -g1,4917:10740670,33876880 -h1,4917:11056816,33876880:0,0,0 -k1,4917:32583028,33876880:21526212 -g1,4917:32583028,33876880 -) -(1,4917:6630773,34543058:25952256,379060,7863 -h1,4917:6630773,34543058:0,0,0 -g1,4917:7579210,34543058 -g1,4917:8211502,34543058 -g1,4917:8843794,34543058 -g1,4917:9476086,34543058 -h1,4917:11056814,34543058:0,0,0 -k1,4917:32583030,34543058:21526216 -g1,4917:32583030,34543058 -) -(1,4917:6630773,35209236:25952256,379060,9436 -h1,4917:6630773,35209236:0,0,0 -g1,4917:7579210,35209236 -g1,4917:8211502,35209236 -g1,4917:8843794,35209236 -g1,4917:9476086,35209236 -g1,4917:9792232,35209236 -h1,4917:11056815,35209236:0,0,0 -k1,4917:32583029,35209236:21526214 -g1,4917:32583029,35209236 -) -(1,4917:6630773,35875414:25952256,388497,9436 -h1,4917:6630773,35875414:0,0,0 -g1,4917:7579210,35875414 -g1,4917:8211502,35875414 -g1,4917:8843794,35875414 -g1,4917:9476086,35875414 -h1,4917:11056814,35875414:0,0,0 -k1,4917:32583030,35875414:21526216 -g1,4917:32583030,35875414 -) -] -) -g1,4918:32583029,35884850 -g1,4918:6630773,35884850 -g1,4918:6630773,35884850 -g1,4918:32583029,35884850 -g1,4918:32583029,35884850 -) -h1,4918:6630773,36081458:0,0,0 -v1,4922:6630773,37971522:0,393216,0 -(1,4923:6630773,41080541:25952256,3502235,616038 -g1,4923:6630773,41080541 -(1,4923:6630773,41080541:25952256,3502235,616038 -(1,4923:6630773,41696579:25952256,4118273,0 -[1,4923:6630773,41696579:25952256,4118273,0 -(1,4923:6630773,41670365:25952256,4065845,0 -r1,4928:6656987,41670365:26214,4065845,0 -[1,4923:6656987,41670365:25899828,4065845,0 -(1,4923:6656987,41080541:25899828,2886197,0 -[1,4923:7246811,41080541:24720180,2886197,0 -(1,4923:7246811,39281718:24720180,1087374,115847 -k1,4922:8605676,39281718:149162 -k1,4922:10388651,39281718:149162 -k1,4922:11069309,39281718:149161 -k1,4922:12237556,39281718:149162 -k1,4922:15146439,39281718:149162 -k1,4922:15962757,39281718:149162 -(1,4922:15962757,39281718:0,452978,115847 -r1,4928:18783006,39281718:2820249,568825,115847 -k1,4922:15962757,39281718:-2820249 -) -(1,4922:15962757,39281718:2820249,452978,115847 -k1,4922:15962757,39281718:3277 -h1,4922:18779729,39281718:0,411205,112570 -) -k1,4922:18932167,39281718:149161 -k1,4922:20779367,39281718:149162 -k1,4922:21947614,39281718:149162 -k1,4922:25129127,39281718:149162 -k1,4922:25809786,39281718:149162 -(1,4922:25809786,39281718:0,414482,115847 -r1,4928:26519764,39281718:709978,530329,115847 -k1,4922:25809786,39281718:-709978 -) -(1,4922:25809786,39281718:709978,414482,115847 -k1,4922:25809786,39281718:3277 -h1,4922:26516487,39281718:0,411205,112570 -) -k1,4922:26995950,39281718:149161 -k1,4922:28541029,39281718:149162 -k1,4922:29709276,39281718:149162 -k1,4922:31966991,39281718:0 -) -(1,4923:7246811,40123206:24720180,513147,134348 -k1,4922:8190689,40123206:182350 -k1,4922:10630754,40123206:182350 -k1,4922:12309291,40123206:182350 -k1,4922:13143069,40123206:182350 -k1,4922:14516864,40123206:182350 -k1,4922:16076125,40123206:182350 -k1,4922:17206126,40123206:182350 -k1,4922:17744335,40123206:182349 -k1,4922:19293766,40123206:182350 -k1,4922:21395010,40123206:182350 -k1,4922:23099106,40123206:182350 -k1,4922:24229107,40123206:182350 -k1,4922:27173800,40123206:182350 -k1,4922:28890348,40123206:182350 -k1,4922:31083343,40123206:182350 -(1,4922:31083343,40123206:0,414482,115847 -r1,4928:31793321,40123206:709978,530329,115847 -k1,4922:31083343,40123206:-709978 -) -(1,4922:31083343,40123206:709978,414482,115847 -k1,4922:31083343,40123206:3277 -h1,4922:31790044,40123206:0,411205,112570 -) -k1,4923:31966991,40123206:0 -) -(1,4923:7246811,40964694:24720180,505283,115847 -(1,4922:7246811,40964694:0,414482,115847 -r1,4928:8660212,40964694:1413401,530329,115847 -k1,4922:7246811,40964694:-1413401 -) -(1,4922:7246811,40964694:1413401,414482,115847 -k1,4922:7246811,40964694:3277 -h1,4922:8656935,40964694:0,411205,112570 -) -g1,4922:8859441,40964694 -g1,4922:10250115,40964694 -(1,4922:10250115,40964694:0,414482,115847 -r1,4928:12015228,40964694:1765113,530329,115847 -k1,4922:10250115,40964694:-1765113 -) -(1,4922:10250115,40964694:1765113,414482,115847 -k1,4922:10250115,40964694:3277 -h1,4922:12011951,40964694:0,411205,112570 -) -k1,4923:31966990,40964694:19778092 -g1,4923:31966990,40964694 -) -] -) -] -r1,4928:32583029,41670365:26214,4065845,0 -) -] -) -) -g1,4923:32583029,41080541 -) -h1,4923:6630773,41696579:0,0,0 -(1,4926:6630773,43062355:25952256,513147,134348 -h1,4925:6630773,43062355:983040,0,0 -k1,4925:9590324,43062355:193276 -k1,4925:11873544,43062355:193277 -k1,4925:15092617,43062355:193276 -k1,4925:16570400,43062355:193277 -k1,4925:18774321,43062355:193276 -k1,4925:19323458,43062355:193277 -k1,4925:21668281,43062355:193276 -k1,4925:23250921,43062355:193277 -k1,4925:25494163,43062355:193276 -k1,4925:26370325,43062355:193277 -k1,4925:28265571,43062355:193276 -k1,4925:31563944,43062355:193277 -k1,4925:32583029,43062355:0 -) -(1,4926:6630773,43903843:25952256,513147,134348 -k1,4925:8933708,43903843:161874 -k1,4925:11800907,43903843:161873 -k1,4925:13067063,43903843:161874 -k1,4925:13976703,43903843:161874 -k1,4925:17286927,43903843:161874 -k1,4925:18100229,43903843:161874 -k1,4925:19281187,43903843:161873 -k1,4925:22580269,43903843:161874 -k1,4925:26450170,43903843:161874 -k1,4925:27271335,43903843:161873 -k1,4925:28452294,43903843:161874 -k1,4925:31309664,43903843:161874 -k1,4925:32583029,43903843:0 -) -(1,4926:6630773,44745331:25952256,513147,134348 -g1,4925:7446040,44745331 -g1,4925:8664354,44745331 -g1,4925:10517056,44745331 -g1,4925:11954260,44745331 -g1,4925:12839651,44745331 -g1,4925:13690308,44745331 -g1,4925:14908622,44745331 -g1,4925:16845866,44745331 -g1,4925:17704387,44745331 -g1,4925:18259476,44745331 -g1,4925:20970045,44745331 -g1,4925:23594761,44745331 -g1,4925:24813075,44745331 -g1,4925:26665777,44745331 -k1,4926:32583029,44745331:4354218 -g1,4926:32583029,44745331 -) -] -(1,4928:32583029,45706769:0,0,0 -g1,4928:32583029,45706769 -) -) -] -(1,4928:6630773,47279633:25952256,0,0 -h1,4928:6630773,47279633:25952256,0,0 -) -] -(1,4928:4262630,4025873:0,0,0 -[1,4928:-473656,4025873:0,0,0 -(1,4928:-473656,-710413:0,0,0 -(1,4928:-473656,-710413:0,0,0 -g1,4928:-473656,-710413 -) -g1,4928:-473656,-710413 -) -] -) -] -!25130 -}90 -Input:643:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:644:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:645:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:646:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:647:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:648:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:649:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:650:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:651:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:652:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:653:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:654:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:655:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:656:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:657:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:658:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:659:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1558 -{91 -[1,5008:4262630,47279633:28320399,43253760,0 -(1,5008:4262630,4025873:0,0,0 -[1,5008:-473656,4025873:0,0,0 -(1,5008:-473656,-710413:0,0,0 -(1,5008:-473656,-644877:0,0,0 -k1,5008:-473656,-644877:-65536 -) -(1,5008:-473656,4736287:0,0,0 -k1,5008:-473656,4736287:5209943 -) -g1,5008:-473656,-710413 -) -] -) -[1,5008:6630773,47279633:25952256,43253760,0 -[1,5008:6630773,4812305:25952256,786432,0 -(1,5008:6630773,4812305:25952256,505283,134348 -(1,5008:6630773,4812305:25952256,505283,134348 -g1,5008:3078558,4812305 -[1,5008:3078558,4812305:0,0,0 -(1,5008:3078558,2439708:0,1703936,0 -k1,5008:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,5008:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,5008:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,5008:3078558,4812305:0,0,0 -(1,5008:3078558,2439708:0,1703936,0 -g1,5008:29030814,2439708 -g1,5008:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,5008:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,5008:37855564,2439708:1179648,16384,0 -) -) -k1,5008:3078556,2439708:-34777008 -) -] -[1,5008:3078558,4812305:0,0,0 -(1,5008:3078558,49800853:0,16384,2228224 -k1,5008:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,5008:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,5008:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,5008:3078558,4812305:0,0,0 -(1,5008:3078558,49800853:0,16384,2228224 -g1,5008:29030814,49800853 -g1,5008:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,5008:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,5008:37855564,49800853:1179648,16384,0 -) -) -k1,5008:3078556,49800853:-34777008 -) -] -g1,5008:6630773,4812305 -k1,5008:19515153,4812305:12087462 -g1,5008:20901894,4812305 -g1,5008:21550700,4812305 -g1,5008:24864855,4812305 -g1,5008:27600327,4812305 -g1,5008:29010006,4812305 -) -) -] -[1,5008:6630773,45706769:25952256,40108032,0 -(1,5008:6630773,45706769:25952256,40108032,0 -(1,5008:6630773,45706769:0,0,0 -g1,5008:6630773,45706769 -) -[1,5008:6630773,45706769:25952256,40108032,0 -v1,4928:6630773,6254097:0,393216,0 -(1,4944:6630773,11327528:25952256,5466647,196608 -g1,4944:6630773,11327528 -g1,4944:6630773,11327528 -g1,4944:6434165,11327528 -(1,4944:6434165,11327528:0,5466647,196608 -r1,5008:32779637,11327528:26345472,5663255,196608 -k1,4944:6434165,11327528:-26345472 -) -(1,4944:6434165,11327528:26345472,5466647,196608 -[1,4944:6630773,11327528:25952256,5270039,0 -(1,4930:6630773,6468007:25952256,410518,82312 -(1,4929:6630773,6468007:0,0,0 -g1,4929:6630773,6468007 -g1,4929:6630773,6468007 -g1,4929:6303093,6468007 -(1,4929:6303093,6468007:0,0,0 -) -g1,4929:6630773,6468007 -) -k1,4930:6630773,6468007:0 -g1,4930:10740667,6468007 -g1,4930:11372959,6468007 -g1,4930:12005251,6468007 -g1,4930:13269834,6468007 -g1,4930:13902126,6468007 -k1,4930:13902126,6468007:0 -h1,4930:14850564,6468007:0,0,0 -k1,4930:32583028,6468007:17732464 -g1,4930:32583028,6468007 -) -(1,4937:6630773,7199721:25952256,379060,101187 -(1,4932:6630773,7199721:0,0,0 -g1,4932:6630773,7199721 -g1,4932:6630773,7199721 -g1,4932:6303093,7199721 -(1,4932:6303093,7199721:0,0,0 -) -g1,4932:6630773,7199721 -) -g1,4937:7579210,7199721 -g1,4937:7895356,7199721 -g1,4937:8211502,7199721 -g1,4937:8843794,7199721 -h1,4937:9159940,7199721:0,0,0 -k1,4937:32583028,7199721:23423088 -g1,4937:32583028,7199721 -) -(1,4937:6630773,7865899:25952256,379060,4718 -h1,4937:6630773,7865899:0,0,0 -g1,4937:7579210,7865899 -g1,4937:8211502,7865899 -g1,4937:8843794,7865899 -h1,4937:9159940,7865899:0,0,0 -k1,4937:32583028,7865899:23423088 -g1,4937:32583028,7865899 -) -(1,4937:6630773,8532077:25952256,379060,9436 -h1,4937:6630773,8532077:0,0,0 -g1,4937:7579210,8532077 -g1,4937:8211502,8532077 -g1,4937:8843794,8532077 -h1,4937:9159940,8532077:0,0,0 -k1,4937:32583028,8532077:23423088 -g1,4937:32583028,8532077 -) -(1,4937:6630773,9198255:25952256,388497,9436 -h1,4937:6630773,9198255:0,0,0 -g1,4937:7579210,9198255 -g1,4937:8211502,9198255 -g1,4937:8843794,9198255 -h1,4937:9159940,9198255:0,0,0 -k1,4937:32583028,9198255:23423088 -g1,4937:32583028,9198255 -) -(1,4939:6630773,10519793:25952256,410518,82312 -(1,4938:6630773,10519793:0,0,0 -g1,4938:6630773,10519793 -g1,4938:6630773,10519793 -g1,4938:6303093,10519793 -(1,4938:6303093,10519793:0,0,0 -) -g1,4938:6630773,10519793 -) -k1,4939:6630773,10519793:0 -g1,4939:10740667,10519793 -g1,4939:11372959,10519793 -g1,4939:12005251,10519793 -h1,4939:13269835,10519793:0,0,0 -k1,4939:32583029,10519793:19313194 -g1,4939:32583029,10519793 -) -(1,4943:6630773,11251507:25952256,404226,76021 -(1,4941:6630773,11251507:0,0,0 -g1,4941:6630773,11251507 -g1,4941:6630773,11251507 -g1,4941:6303093,11251507 -(1,4941:6303093,11251507:0,0,0 -) -g1,4941:6630773,11251507 -) -g1,4943:7579210,11251507 -g1,4943:8843793,11251507 -g1,4943:9476085,11251507 -g1,4943:10108377,11251507 -h1,4943:10424523,11251507:0,0,0 -k1,4943:32583029,11251507:22158506 -g1,4943:32583029,11251507 -) -] -) -g1,4944:32583029,11327528 -g1,4944:6630773,11327528 -g1,4944:6630773,11327528 -g1,4944:32583029,11327528 -g1,4944:32583029,11327528 -) -h1,4944:6630773,11524136:0,0,0 -(1,4949:6630773,12712944:25952256,513147,134348 -h1,4947:6630773,12712944:983040,0,0 -k1,4947:9422794,12712944:160095 -k1,4947:10242181,12712944:160095 -k1,4947:11421361,12712944:160095 -k1,4947:14573175,12712944:160095 -k1,4947:15349308,12712944:160095 -k1,4947:16528488,12712944:160095 -k1,4947:17836773,12712944:160094 -k1,4947:19651652,12712944:160095 -k1,4947:21307934,12712944:160095 -k1,4947:23768998,12712944:160095 -k1,4947:25382682,12712944:160095 -k1,4947:26561862,12712944:160095 -k1,4947:29157275,12712944:160095 -k1,4947:30706733,12712944:160095 -k1,4949:32583029,12712944:0 -) -(1,4949:6630773,13554432:25952256,513147,134348 -(1,4947:6630773,13554432:0,459977,115847 -r1,5008:8044174,13554432:1413401,575824,115847 -k1,4947:6630773,13554432:-1413401 -) -(1,4947:6630773,13554432:1413401,459977,115847 -k1,4947:6630773,13554432:3277 -h1,4947:8040897,13554432:0,411205,112570 -) -k1,4947:8473710,13554432:255866 -k1,4947:9683126,13554432:255867 -k1,4947:11043274,13554432:255866 -k1,4947:12916570,13554432:255867 -k1,4947:14191521,13554432:255866 -k1,4947:17226115,13554432:255867 -k1,4947:19162324,13554432:255866 -k1,4947:21153584,13554432:255867 -k1,4947:21765310,13554432:255866 -k1,4947:23304372,13554432:255867 -k1,4947:25298253,13554432:255866 -k1,4947:26020081,13554432:255867 -k1,4947:27144299,13554432:255866 -k1,4947:28948782,13554432:255867 -k1,4947:29856076,13554432:255866 -k1,4949:32583029,13554432:0 -) -(1,4949:6630773,14395920:25952256,505283,134348 -(1,4947:6630773,14395920:0,459977,115847 -r1,5008:8044174,14395920:1413401,575824,115847 -k1,4947:6630773,14395920:-1413401 -) -(1,4947:6630773,14395920:1413401,459977,115847 -k1,4947:6630773,14395920:3277 -h1,4947:8040897,14395920:0,411205,112570 -) -k1,4947:8277793,14395920:233619 -k1,4947:12176185,14395920:233619 -k1,4947:13092689,14395920:233619 -k1,4947:14194660,14395920:233619 -k1,4947:15532561,14395920:233619 -k1,4947:17772892,14395920:233619 -k1,4947:19025597,14395920:233620 -k1,4947:21102088,14395920:233619 -k1,4947:21987135,14395920:233619 -(1,4947:21987135,14395920:0,459977,115847 -r1,5008:23400536,14395920:1413401,575824,115847 -k1,4947:21987135,14395920:-1413401 -) -(1,4947:21987135,14395920:1413401,459977,115847 -k1,4947:21987135,14395920:3277 -h1,4947:23397259,14395920:0,411205,112570 -) -k1,4947:23807825,14395920:233619 -k1,4947:26609145,14395920:233619 -k1,4947:27458802,14395920:233619 -k1,4947:28711506,14395920:233619 -k1,4947:31563944,14395920:233619 -k1,4947:32583029,14395920:0 -) -(1,4949:6630773,15237408:25952256,505283,126483 -g1,4947:10150711,15237408 -g1,4947:12388110,15237408 -k1,4949:32583028,15237408:18340904 -g1,4949:32583028,15237408 -) -v1,4949:6630773,16426216:0,393216,0 -(1,4965:6630773,30558601:25952256,14525601,616038 -g1,4965:6630773,30558601 -(1,4965:6630773,30558601:25952256,14525601,616038 -(1,4965:6630773,31174639:25952256,15141639,0 -[1,4965:6630773,31174639:25952256,15141639,0 -(1,4965:6630773,31148425:25952256,15089211,0 -r1,5008:6656987,31148425:26214,15089211,0 -[1,4965:6656987,31148425:25899828,15089211,0 -(1,4965:6656987,30558601:25899828,13909563,0 -[1,4965:7246811,30558601:24720180,13909563,0 -(1,4950:7246811,17734574:24720180,1085536,298548 -(1,4949:7246811,17734574:0,1085536,298548 -r1,5008:8753226,17734574:1506415,1384084,298548 -k1,4949:7246811,17734574:-1506415 -) -(1,4949:7246811,17734574:1506415,1085536,298548 -) -k1,4949:8950307,17734574:197081 -k1,4949:9775224,17734574:197082 -k1,4949:10991390,17734574:197081 -k1,4949:13849889,17734574:197082 -k1,4949:16075965,17734574:197081 -k1,4949:17292132,17734574:197082 -k1,4949:19557529,17734574:197081 -k1,4949:20370649,17734574:197082 -k1,4949:21586815,17734574:197081 -k1,4949:25223882,17734574:197082 -k1,4949:27626250,17734574:197081 -k1,4949:28509494,17734574:197082 -k1,4949:29725660,17734574:197081 -k1,4949:31966991,17734574:0 -) -(1,4950:7246811,18576062:24720180,513147,134348 -k1,4949:10464044,18576062:144905 -k1,4949:11260377,18576062:144905 -(1,4949:11260377,18576062:0,452978,115847 -r1,5008:14080626,18576062:2820249,568825,115847 -k1,4949:11260377,18576062:-2820249 -) -(1,4949:11260377,18576062:2820249,452978,115847 -k1,4949:11260377,18576062:3277 -h1,4949:14077349,18576062:0,411205,112570 -) -k1,4949:14225531,18576062:144905 -k1,4949:15361996,18576062:144905 -k1,4949:16813034,18576062:144905 -k1,4949:19796303,18576062:144905 -k1,4949:21951198,18576062:144906 -(1,4949:21951198,18576062:0,459977,115847 -r1,5008:23716311,18576062:1765113,575824,115847 -k1,4949:21951198,18576062:-1765113 -) -(1,4949:21951198,18576062:1765113,459977,115847 -k1,4949:21951198,18576062:3277 -h1,4949:23713034,18576062:0,411205,112570 -) -k1,4949:23861216,18576062:144905 -k1,4949:25078290,18576062:144905 -k1,4949:25689156,18576062:144905 -k1,4949:26900332,18576062:144905 -k1,4949:29128627,18576062:144905 -k1,4949:31966991,18576062:0 -) -(1,4950:7246811,19417550:24720180,513147,134348 -k1,4949:8061469,19417550:198620 -k1,4949:9279174,19417550:198620 -k1,4949:13708798,19417550:198620 -k1,4949:15739805,19417550:198620 -k1,4949:17676440,19417550:198620 -k1,4949:18684430,19417550:198620 -k1,4949:21394389,19417550:198619 -(1,4949:21394389,19417550:0,414482,115847 -r1,5008:21752655,19417550:358266,530329,115847 -k1,4949:21394389,19417550:-358266 -) -(1,4949:21394389,19417550:358266,414482,115847 -k1,4949:21394389,19417550:3277 -h1,4949:21749378,19417550:0,411205,112570 -) -k1,4949:21951275,19417550:198620 -k1,4949:22765933,19417550:198620 -k1,4949:23983638,19417550:198620 -k1,4949:25571621,19417550:198620 -k1,4949:27646537,19417550:198620 -(1,4949:27646537,19417550:0,459977,115847 -r1,5008:29059938,19417550:1413401,575824,115847 -k1,4949:27646537,19417550:-1413401 -) -(1,4949:27646537,19417550:1413401,459977,115847 -k1,4949:27646537,19417550:3277 -h1,4949:29056661,19417550:0,411205,112570 -) -k1,4949:29432228,19417550:198620 -k1,4949:31608725,19417550:198620 -(1,4949:31608725,19417550:0,414482,115847 -r1,5008:31966991,19417550:358266,530329,115847 -k1,4949:31608725,19417550:-358266 -) -(1,4949:31608725,19417550:358266,414482,115847 -k1,4949:31608725,19417550:3277 -h1,4949:31963714,19417550:0,411205,112570 -) -k1,4949:31966991,19417550:0 -) -(1,4950:7246811,20259038:24720180,513147,134348 -k1,4949:8985317,20259038:170885 -k1,4949:10175287,20259038:170885 -k1,4949:14403506,20259038:170885 -k1,4949:15105889,20259038:170886 -k1,4949:17598715,20259038:170885 -k1,4949:19282826,20259038:170885 -k1,4949:20069749,20259038:170885 -k1,4949:21259719,20259038:170885 -k1,4949:24870589,20259038:170885 -k1,4949:27874596,20259038:170886 -k1,4949:28661519,20259038:170885 -k1,4949:29188264,20259038:170885 -k1,4949:31966991,20259038:0 -) -(1,4950:7246811,21100526:24720180,513147,7863 -g1,4949:8835403,21100526 -g1,4949:10910928,21100526 -g1,4949:12504108,21100526 -g1,4949:13512707,21100526 -k1,4950:31966991,21100526:16746416 -g1,4950:31966991,21100526 -) -v1,4952:7246811,22290992:0,393216,0 -(1,4961:7246811,24654429:24720180,2756653,196608 -g1,4961:7246811,24654429 -g1,4961:7246811,24654429 -g1,4961:7050203,24654429 -(1,4961:7050203,24654429:0,2756653,196608 -r1,5008:32163599,24654429:25113396,2953261,196608 -k1,4961:7050203,24654429:-25113396 -) -(1,4961:7050203,24654429:25113396,2756653,196608 -[1,4961:7246811,24654429:24720180,2560045,0 -(1,4954:7246811,22482881:24720180,388497,0 -(1,4953:7246811,22482881:0,0,0 -g1,4953:7246811,22482881 -g1,4953:7246811,22482881 -g1,4953:6919131,22482881 -(1,4953:6919131,22482881:0,0,0 -) -g1,4953:7246811,22482881 -) -g1,4954:7879103,22482881 -g1,4954:8827541,22482881 -h1,4954:9143687,22482881:0,0,0 -k1,4954:31966991,22482881:22823304 -g1,4954:31966991,22482881 -) -(1,4955:7246811,23149059:24720180,410518,82312 -h1,4955:7246811,23149059:0,0,0 -g1,4955:11356705,23149059 -g1,4955:11988997,23149059 -g1,4955:12621289,23149059 -h1,4955:13253581,23149059:0,0,0 -k1,4955:31966991,23149059:18713410 -g1,4955:31966991,23149059 -) -(1,4960:7246811,23880773:24720180,404226,101187 -(1,4957:7246811,23880773:0,0,0 -g1,4957:7246811,23880773 -g1,4957:7246811,23880773 -g1,4957:6919131,23880773 -(1,4957:6919131,23880773:0,0,0 -) -g1,4957:7246811,23880773 -) -g1,4960:8195248,23880773 -g1,4960:9459831,23880773 -g1,4960:10092123,23880773 -g1,4960:10724415,23880773 -h1,4960:11040561,23880773:0,0,0 -k1,4960:31966991,23880773:20926430 -g1,4960:31966991,23880773 -) -(1,4960:7246811,24546951:24720180,404226,107478 -h1,4960:7246811,24546951:0,0,0 -g1,4960:8195248,24546951 -g1,4960:9143685,24546951 -g1,4960:11040560,24546951 -g1,4960:12305143,24546951 -g1,4960:15150455,24546951 -h1,4960:18311912,24546951:0,0,0 -k1,4960:31966991,24546951:13655079 -g1,4960:31966991,24546951 -) -] -) -g1,4961:31966991,24654429 -g1,4961:7246811,24654429 -g1,4961:7246811,24654429 -g1,4961:31966991,24654429 -g1,4961:31966991,24654429 -) -h1,4961:7246811,24851037:0,0,0 -(1,4965:7246811,26216813:24720180,513147,134348 -h1,4964:7246811,26216813:983040,0,0 -k1,4964:9656803,26216813:230265 -k1,4964:10979554,26216813:230266 -k1,4964:11876975,26216813:230265 -(1,4964:11876975,26216813:0,452978,115847 -r1,5008:14697224,26216813:2820249,568825,115847 -k1,4964:11876975,26216813:-2820249 -) -(1,4964:11876975,26216813:2820249,452978,115847 -k1,4964:11876975,26216813:3277 -h1,4964:14693947,26216813:0,411205,112570 -) -k1,4964:14927490,26216813:230266 -k1,4964:15689252,26216813:230265 -k1,4964:19575771,26216813:230265 -k1,4964:20878206,26216813:230266 -k1,4964:22758668,26216813:230265 -k1,4964:24854743,26216813:230265 -k1,4964:25736437,26216813:230266 -k1,4964:27809574,26216813:230265 -k1,4964:28655878,26216813:230266 -k1,4964:30405923,26216813:230265 -k1,4965:31966991,26216813:0 -) -(1,4965:7246811,27058301:24720180,505283,134348 -k1,4964:9279665,27058301:199812 -k1,4964:10130904,27058301:199811 -k1,4964:12745062,27058301:199812 -k1,4964:14680267,27058301:199812 -k1,4964:15899163,27058301:199811 -k1,4964:19313516,27058301:199812 -k1,4964:22259942,27058301:199812 -(1,4964:22259942,27058301:0,452978,115847 -r1,5008:22969920,27058301:709978,568825,115847 -k1,4964:22259942,27058301:-709978 -) -(1,4964:22259942,27058301:709978,452978,115847 -k1,4964:22259942,27058301:3277 -h1,4964:22966643,27058301:0,411205,112570 -) -k1,4964:23343401,27058301:199811 -k1,4964:24924057,27058301:199812 -k1,4964:26777342,27058301:199812 -k1,4964:28892770,27058301:199811 -k1,4964:29744010,27058301:199812 -k1,4965:31966991,27058301:0 -) -(1,4965:7246811,27899789:24720180,513147,134348 -k1,4964:8382853,27899789:145793 -k1,4964:12435247,27899789:145793 -k1,4964:14862347,27899789:145792 -k1,4964:15659568,27899789:145793 -k1,4964:18831158,27899789:145793 -k1,4964:20123176,27899789:145793 -(1,4964:20123176,27899789:0,452978,115847 -r1,5008:22943425,27899789:2820249,568825,115847 -k1,4964:20123176,27899789:-2820249 -) -(1,4964:20123176,27899789:2820249,452978,115847 -k1,4964:20123176,27899789:3277 -h1,4964:22940148,27899789:0,411205,112570 -) -k1,4964:23089218,27899789:145793 -k1,4964:24426455,27899789:145792 -(1,4964:24426455,27899789:0,452978,115847 -r1,5008:26543280,27899789:2116825,568825,115847 -k1,4964:24426455,27899789:-2116825 -) -(1,4964:24426455,27899789:2116825,452978,115847 -k1,4964:24426455,27899789:3277 -h1,4964:26540003,27899789:0,411205,112570 -) -k1,4964:26689073,27899789:145793 -k1,4964:29924889,27899789:145793 -k1,4964:31966991,27899789:0 -) -(1,4965:7246811,28741277:24720180,505283,134348 -k1,4964:8660235,28741277:216737 -k1,4964:10901379,28741277:216737 -k1,4964:12543524,28741277:216737 -k1,4964:14044766,28741277:216736 -k1,4964:14617363,28741277:216737 -k1,4964:16665176,28741277:216737 -k1,4964:17413410,28741277:216737 -k1,4964:20469167,28741277:216737 -k1,4964:21337332,28741277:216737 -k1,4964:22301835,28741277:216737 -k1,4964:24205468,28741277:216736 -k1,4964:27000391,28741277:216737 -k1,4964:28408573,28741277:216737 -k1,4964:30947906,28741277:216737 -k1,4964:31966991,28741277:0 -) -(1,4965:7246811,29582765:24720180,513147,134348 -k1,4964:9118137,29582765:221129 -k1,4964:11549141,29582765:221130 -k1,4964:12638622,29582765:221129 -k1,4964:15040134,29582765:221129 -k1,4964:16009029,29582765:221129 -k1,4964:17928197,29582765:221130 -k1,4964:19884719,29582765:221129 -k1,4964:21237655,29582765:221129 -k1,4964:22118076,29582765:221129 -k1,4964:24035933,29582765:221130 -k1,4964:27456530,29582765:221129 -k1,4964:28580090,29582765:221129 -k1,4964:31966991,29582765:0 -) -(1,4965:7246811,30424253:24720180,513147,134348 -k1,4964:8662792,30424253:178006 -k1,4964:9500090,30424253:178006 -k1,4964:12397840,30424253:178006 -k1,4964:15535452,30424253:178006 -k1,4964:18650782,30424253:178006 -k1,4964:19360285,30424253:178006 -k1,4964:20189718,30424253:178005 -k1,4964:21875707,30424253:178006 -k1,4964:23072798,30424253:178006 -k1,4964:25319120,30424253:178006 -k1,4964:26156418,30424253:178006 -k1,4964:27723787,30424253:178006 -k1,4964:30108390,30424253:178006 -k1,4965:31966991,30424253:0 -k1,4965:31966991,30424253:0 -) -] -) -] -r1,5008:32583029,31148425:26214,15089211,0 -) -] -) -) -g1,4965:32583029,30558601 -) -h1,4965:6630773,31174639:0,0,0 -(1,4968:6630773,32363447:25952256,513147,134348 -h1,4967:6630773,32363447:983040,0,0 -k1,4967:8340570,32363447:239169 -k1,4967:11884760,32363447:239209 -k1,4967:13637195,32363447:239209 -k1,4967:15114379,32363447:239209 -k1,4967:16012880,32363447:239209 -k1,4967:18819790,32363447:239209 -k1,4967:19414859,32363447:239209 -k1,4967:22036957,32363447:239209 -k1,4967:23037695,32363447:239210 -k1,4967:25014919,32363447:239209 -k1,4967:26821749,32363447:239209 -k1,4967:27416818,32363447:239209 -k1,4967:29045390,32363447:239209 -k1,4967:31160895,32363447:239209 -k1,4967:31931601,32363447:239209 -k1,4967:32583029,32363447:0 -) -(1,4968:6630773,33204935:25952256,513147,134348 -k1,4967:8875223,33204935:237738 -(1,4967:8875223,33204935:0,414482,115847 -r1,5008:10288624,33204935:1413401,530329,115847 -k1,4967:8875223,33204935:-1413401 -) -(1,4967:8875223,33204935:1413401,414482,115847 -k1,4967:8875223,33204935:3277 -h1,4967:10285347,33204935:0,411205,112570 -) -k1,4967:10526363,33204935:237739 -k1,4967:11415529,33204935:237738 -k1,4967:13836272,33204935:237739 -k1,4967:14690048,33204935:237738 -k1,4967:15946872,33204935:237739 -k1,4967:17838083,33204935:237738 -k1,4967:19313796,33204935:237738 -k1,4967:20237697,33204935:237739 -k1,4967:23429143,33204935:237738 -k1,4967:24658442,33204935:237739 -k1,4967:27241714,33204935:237738 -k1,4967:29047074,33204935:237739 -(1,4967:29047074,33204935:0,452978,115847 -r1,5008:30460475,33204935:1413401,568825,115847 -k1,4967:29047074,33204935:-1413401 -) -(1,4967:29047074,33204935:1413401,452978,115847 -k1,4967:29047074,33204935:3277 -h1,4967:30457198,33204935:0,411205,112570 -) -k1,4967:31202185,33204935:237738 -k1,4967:32583029,33204935:0 -) -(1,4968:6630773,34046423:25952256,513147,126483 -g1,4967:9814512,34046423 -g1,4967:12758389,34046423 -(1,4967:12758389,34046423:0,459977,115847 -r1,5008:14171790,34046423:1413401,575824,115847 -k1,4967:12758389,34046423:-1413401 -) -(1,4967:12758389,34046423:1413401,459977,115847 -k1,4967:12758389,34046423:3277 -h1,4967:14168513,34046423:0,411205,112570 -) -g1,4967:14371019,34046423 -g1,4967:15186286,34046423 -k1,4968:32583029,34046423:15560424 -g1,4968:32583029,34046423 -) -v1,4970:6630773,35059922:0,393216,0 -(1,4985:6630773,39467175:25952256,4800469,196608 -g1,4985:6630773,39467175 -g1,4985:6630773,39467175 -g1,4985:6434165,39467175 -(1,4985:6434165,39467175:0,4800469,196608 -r1,5008:32779637,39467175:26345472,4997077,196608 -k1,4985:6434165,39467175:-26345472 -) -(1,4985:6434165,39467175:26345472,4800469,196608 -[1,4985:6630773,39467175:25952256,4603861,0 -(1,4972:6630773,35273832:25952256,410518,6290 -(1,4971:6630773,35273832:0,0,0 -g1,4971:6630773,35273832 -g1,4971:6630773,35273832 -g1,4971:6303093,35273832 -(1,4971:6303093,35273832:0,0,0 -) -g1,4971:6630773,35273832 -) -g1,4972:8527647,35273832 -g1,4972:9476085,35273832 -h1,4972:10740668,35273832:0,0,0 -k1,4972:32583028,35273832:21842360 -g1,4972:32583028,35273832 -) -(1,4973:6630773,35940010:25952256,410518,76021 -h1,4973:6630773,35940010:0,0,0 -k1,4973:6630773,35940010:0 -h1,4973:11372958,35940010:0,0,0 -k1,4973:32583030,35940010:21210072 -g1,4973:32583030,35940010 -) -(1,4977:6630773,36671724:25952256,404226,101187 -(1,4975:6630773,36671724:0,0,0 -g1,4975:6630773,36671724 -g1,4975:6630773,36671724 -g1,4975:6303093,36671724 -(1,4975:6303093,36671724:0,0,0 -) -g1,4975:6630773,36671724 -) -g1,4977:7579210,36671724 -g1,4977:8843793,36671724 -g1,4977:10108376,36671724 -g1,4977:11372959,36671724 -h1,4977:12321396,36671724:0,0,0 -k1,4977:32583028,36671724:20261632 -g1,4977:32583028,36671724 -) -(1,4979:6630773,37993262:25952256,410518,101187 -(1,4978:6630773,37993262:0,0,0 -g1,4978:6630773,37993262 -g1,4978:6630773,37993262 -g1,4978:6303093,37993262 -(1,4978:6303093,37993262:0,0,0 -) -g1,4978:6630773,37993262 -) -g1,4979:10740667,37993262 -g1,4979:11689105,37993262 -k1,4979:11689105,37993262:0 -h1,4979:12953688,37993262:0,0,0 -k1,4979:32583028,37993262:19629340 -g1,4979:32583028,37993262 -) -(1,4980:6630773,38659440:25952256,410518,76021 -h1,4980:6630773,38659440:0,0,0 -k1,4980:6630773,38659440:0 -h1,4980:11372958,38659440:0,0,0 -k1,4980:32583030,38659440:21210072 -g1,4980:32583030,38659440 -) -(1,4984:6630773,39391154:25952256,404226,76021 -(1,4982:6630773,39391154:0,0,0 -g1,4982:6630773,39391154 -g1,4982:6630773,39391154 -g1,4982:6303093,39391154 -(1,4982:6303093,39391154:0,0,0 -) -g1,4982:6630773,39391154 -) -g1,4984:7579210,39391154 -g1,4984:8843793,39391154 -g1,4984:10108376,39391154 -h1,4984:11056813,39391154:0,0,0 -k1,4984:32583029,39391154:21526216 -g1,4984:32583029,39391154 -) -] -) -g1,4985:32583029,39467175 -g1,4985:6630773,39467175 -g1,4985:6630773,39467175 -g1,4985:32583029,39467175 -g1,4985:32583029,39467175 -) -h1,4985:6630773,39663783:0,0,0 -v1,4989:6630773,41199911:0,393216,0 -(1,5008:6630773,45116945:25952256,4310250,589824 -g1,5008:6630773,45116945 -(1,5008:6630773,45116945:25952256,4310250,589824 -(1,5008:6630773,45706769:25952256,4900074,0 -[1,5008:6630773,45706769:25952256,4900074,0 -(1,5008:6630773,45706769:25952256,4873860,0 -r1,5008:6656987,45706769:26214,4873860,0 -[1,5008:6656987,45706769:25899828,4873860,0 -(1,5008:6656987,45116945:25899828,3694212,0 -[1,5008:7246811,45116945:24720180,3694212,0 -(1,4990:7246811,42584618:24720180,1161885,196608 -(1,4989:7246811,42584618:0,1161885,196608 -r1,5008:8794447,42584618:1547636,1358493,196608 -k1,4989:7246811,42584618:-1547636 -) -(1,4989:7246811,42584618:1547636,1161885,196608 -) -k1,4989:9050067,42584618:255620 -k1,4989:13564217,42584618:255620 -k1,4989:14688188,42584618:255619 -k1,4989:16048090,42584618:255620 -k1,4989:17396195,42584618:255620 -k1,4989:20306678,42584618:255620 -k1,4989:23301703,42584618:255620 -k1,4989:24208751,42584618:255620 -k1,4989:26819079,42584618:255619 -k1,4989:29787890,42584618:255620 -k1,4989:31611131,42584618:255620 -k1,4989:31966991,42584618:0 -) -(1,4990:7246811,43426106:24720180,513147,134348 -k1,4989:8995967,43426106:239206 -k1,4989:9894466,43426106:239207 -k1,4989:10489532,43426106:239206 -k1,4989:12118102,43426106:239207 -k1,4989:14407274,43426106:239206 -k1,4989:15274316,43426106:239207 -k1,4989:16716763,43426106:239206 -k1,4989:19617387,43426106:239207 -k1,4989:20724945,43426106:239206 -k1,4989:23318861,43426106:239207 -k1,4989:23913927,43426106:239206 -k1,4989:26026153,43426106:239207 -k1,4989:28821918,43426106:239206 -k1,4989:29879014,43426106:239207 -k1,4989:31552148,43426106:239206 -k1,4990:31966991,43426106:0 -) -(1,4990:7246811,44267594:24720180,513147,134348 -k1,4989:8993946,44267594:254225 -k1,4989:10314442,44267594:254225 -k1,4989:13095080,44267594:254225 -k1,4989:16004168,44267594:254225 -k1,4989:18997798,44267594:254225 -k1,4989:20013551,44267594:254225 -k1,4989:22179461,44267594:254225 -k1,4989:23302038,44267594:254225 -k1,4989:25086529,44267594:254225 -k1,4989:25992182,44267594:254225 -k1,4989:27512563,44267594:254225 -k1,4989:28785873,44267594:254225 -k1,4989:31966991,44267594:0 -) -(1,4990:7246811,45109082:24720180,513147,7863 -g1,4989:9195196,45109082 -g1,4989:10053717,45109082 -g1,4989:11272031,45109082 -g1,4989:13854149,45109082 -g1,4989:14704806,45109082 -k1,4990:31966991,45109082:15163722 -g1,4990:31966991,45109082 -) -] -) -] -r1,5008:32583029,45706769:26214,4873860,0 -) -] -) -) -g1,5008:32583029,45116945 -) -] -(1,5008:32583029,45706769:0,0,0 -g1,5008:32583029,45706769 -) -) -] -(1,5008:6630773,47279633:25952256,0,0 -h1,5008:6630773,47279633:25952256,0,0 -) -] -(1,5008:4262630,4025873:0,0,0 -[1,5008:-473656,4025873:0,0,0 -(1,5008:-473656,-710413:0,0,0 -(1,5008:-473656,-710413:0,0,0 -g1,5008:-473656,-710413 -) -g1,5008:-473656,-710413 -) -] -) -] -!26065 -}91 -Input:660:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:661:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:662:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:663:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:664:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:665:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:666:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:667:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:668:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:669:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:670:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:671:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:672:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:673:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:674:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:675:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:676:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:677:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:678:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:679:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:680:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:681:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:682:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:683:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:684:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:685:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:686:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:687:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:688:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:689:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:690:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:691:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:692:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:693:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:694:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!3196 -{92 -[1,5127:4262630,47279633:28320399,43253760,0 -(1,5127:4262630,4025873:0,0,0 -[1,5127:-473656,4025873:0,0,0 -(1,5127:-473656,-710413:0,0,0 -(1,5127:-473656,-644877:0,0,0 -k1,5127:-473656,-644877:-65536 -) -(1,5127:-473656,4736287:0,0,0 -k1,5127:-473656,4736287:5209943 -) -g1,5127:-473656,-710413 -) -] -) -[1,5127:6630773,47279633:25952256,43253760,0 -[1,5127:6630773,4812305:25952256,786432,0 -(1,5127:6630773,4812305:25952256,513147,126483 -(1,5127:6630773,4812305:25952256,513147,126483 -g1,5127:3078558,4812305 -[1,5127:3078558,4812305:0,0,0 -(1,5127:3078558,2439708:0,1703936,0 -k1,5127:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,5127:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,5127:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,5127:3078558,4812305:0,0,0 -(1,5127:3078558,2439708:0,1703936,0 -g1,5127:29030814,2439708 -g1,5127:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,5127:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,5127:37855564,2439708:1179648,16384,0 -) -) -k1,5127:3078556,2439708:-34777008 -) -] -[1,5127:3078558,4812305:0,0,0 -(1,5127:3078558,49800853:0,16384,2228224 -k1,5127:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,5127:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,5127:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,5127:3078558,4812305:0,0,0 -(1,5127:3078558,49800853:0,16384,2228224 -g1,5127:29030814,49800853 -g1,5127:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,5127:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,5127:37855564,49800853:1179648,16384,0 -) -) -k1,5127:3078556,49800853:-34777008 -) -] -g1,5127:6630773,4812305 -g1,5127:6630773,4812305 -g1,5127:8364200,4812305 -g1,5127:10765439,4812305 -k1,5127:31786111,4812305:21020672 -) -) -] -[1,5127:6630773,45706769:25952256,40108032,0 -(1,5127:6630773,45706769:25952256,40108032,0 -(1,5127:6630773,45706769:0,0,0 -g1,5127:6630773,45706769 -) -[1,5127:6630773,45706769:25952256,40108032,0 -v1,5008:6630773,6254097:0,393216,0 -(1,5008:6630773,14334269:25952256,8473388,616038 -g1,5008:6630773,14334269 -(1,5008:6630773,14334269:25952256,8473388,616038 -(1,5008:6630773,14950307:25952256,9089426,0 -[1,5008:6630773,14950307:25952256,9089426,0 -(1,5008:6630773,14924093:25952256,9063212,0 -r1,5127:6656987,14924093:26214,9063212,0 -[1,5008:6656987,14924093:25899828,9063212,0 -(1,5008:6656987,14334269:25899828,7883564,0 -[1,5008:7246811,14334269:24720180,7883564,0 -v1,4992:7246811,6843921:0,393216,0 -(1,5005:7246811,11796049:24720180,5345344,196608 -g1,5005:7246811,11796049 -g1,5005:7246811,11796049 -g1,5005:7050203,11796049 -(1,5005:7050203,11796049:0,5345344,196608 -r1,5127:32163599,11796049:25113396,5541952,196608 -k1,5005:7050203,11796049:-25113396 -) -(1,5005:7050203,11796049:25113396,5345344,196608 -[1,5005:7246811,11796049:24720180,5148736,0 -(1,4994:7246811,7057831:24720180,410518,101187 -(1,4993:7246811,7057831:0,0,0 -g1,4993:7246811,7057831 -g1,4993:7246811,7057831 -g1,4993:6919131,7057831 -(1,4993:6919131,7057831:0,0,0 -) -g1,4993:7246811,7057831 -) -g1,4994:9143685,7057831 -g1,4994:9775977,7057831 -g1,4994:16731182,7057831 -g1,4994:17679619,7057831 -h1,4994:19260347,7057831:0,0,0 -k1,4994:31966991,7057831:12706644 -g1,4994:31966991,7057831 -) -(1,5004:7246811,7789545:24720180,379060,0 -(1,4996:7246811,7789545:0,0,0 -g1,4996:7246811,7789545 -g1,4996:7246811,7789545 -g1,4996:6919131,7789545 -(1,4996:6919131,7789545:0,0,0 -) -g1,4996:7246811,7789545 -) -g1,5004:8195248,7789545 -g1,5004:8511394,7789545 -g1,5004:8827540,7789545 -g1,5004:9459832,7789545 -g1,5004:9775978,7789545 -g1,5004:10092124,7789545 -g1,5004:10408270,7789545 -g1,5004:10724416,7789545 -h1,5004:11040562,7789545:0,0,0 -k1,5004:31966990,7789545:20926428 -g1,5004:31966990,7789545 -) -(1,5004:7246811,8455723:24720180,388497,7863 -h1,5004:7246811,8455723:0,0,0 -g1,5004:8195248,8455723 -g1,5004:8827540,8455723 -g1,5004:9459832,8455723 -g1,5004:9775978,8455723 -h1,5004:11040561,8455723:0,0,0 -k1,5004:31966991,8455723:20926430 -g1,5004:31966991,8455723 -) -(1,5004:7246811,9121901:24720180,388497,7863 -h1,5004:7246811,9121901:0,0,0 -g1,5004:8195248,9121901 -g1,5004:8827540,9121901 -g1,5004:9459832,9121901 -h1,5004:11040560,9121901:0,0,0 -k1,5004:31966992,9121901:20926432 -g1,5004:31966992,9121901 -) -(1,5004:7246811,9788079:24720180,388497,9436 -h1,5004:7246811,9788079:0,0,0 -g1,5004:8195248,9788079 -g1,5004:8827540,9788079 -g1,5004:9459832,9788079 -g1,5004:9775978,9788079 -h1,5004:11040561,9788079:0,0,0 -k1,5004:31966991,9788079:20926430 -g1,5004:31966991,9788079 -) -(1,5004:7246811,10454257:24720180,379060,7863 -h1,5004:7246811,10454257:0,0,0 -g1,5004:8195248,10454257 -g1,5004:8827540,10454257 -g1,5004:9459832,10454257 -h1,5004:11040560,10454257:0,0,0 -k1,5004:31966992,10454257:20926432 -g1,5004:31966992,10454257 -) -(1,5004:7246811,11120435:24720180,379060,9436 -h1,5004:7246811,11120435:0,0,0 -g1,5004:8195248,11120435 -g1,5004:8827540,11120435 -g1,5004:9459832,11120435 -g1,5004:9775978,11120435 -h1,5004:11040561,11120435:0,0,0 -k1,5004:31966991,11120435:20926430 -g1,5004:31966991,11120435 -) -(1,5004:7246811,11786613:24720180,388497,9436 -h1,5004:7246811,11786613:0,0,0 -g1,5004:8195248,11786613 -g1,5004:8827540,11786613 -g1,5004:9459832,11786613 -h1,5004:11040560,11786613:0,0,0 -k1,5004:31966992,11786613:20926432 -g1,5004:31966992,11786613 -) -] -) -g1,5005:31966991,11796049 -g1,5005:7246811,11796049 -g1,5005:7246811,11796049 -g1,5005:31966991,11796049 -g1,5005:31966991,11796049 -) -h1,5005:7246811,11992657:0,0,0 -(1,5008:7246811,13358433:24720180,513147,134348 -h1,5007:7246811,13358433:983040,0,0 -k1,5007:10757288,13358433:188457 -k1,5007:11605038,13358433:188458 -k1,5007:13528888,13358433:188457 -k1,5007:14736431,13358433:188458 -k1,5007:17471617,13358433:188457 -k1,5007:19025189,13358433:188457 -k1,5007:20081999,13358433:188458 -k1,5007:21374738,13358433:188457 -k1,5007:22655680,13358433:188457 -k1,5007:23863223,13358433:188458 -k1,5007:26798294,13358433:188457 -(1,5007:26798294,13358433:0,452978,115847 -r1,5127:28211695,13358433:1413401,568825,115847 -k1,5007:26798294,13358433:-1413401 -) -(1,5007:26798294,13358433:1413401,452978,115847 -k1,5007:26798294,13358433:3277 -h1,5007:28208418,13358433:0,411205,112570 -) -k1,5007:28400153,13358433:188458 -k1,5007:29271495,13358433:188457 -k1,5008:31966991,13358433:0 -) -(1,5008:7246811,14199921:24720180,505283,134348 -(1,5007:7246811,14199921:0,452978,122846 -r1,5127:9715348,14199921:2468537,575824,122846 -k1,5007:7246811,14199921:-2468537 -) -(1,5007:7246811,14199921:2468537,452978,122846 -k1,5007:7246811,14199921:3277 -h1,5007:9712071,14199921:0,411205,112570 -) -g1,5007:9914577,14199921 -g1,5007:10765234,14199921 -g1,5007:12889255,14199921 -g1,5007:15759731,14199921 -g1,5007:18672151,14199921 -g1,5007:19487418,14199921 -g1,5007:20042507,14199921 -g1,5007:22114755,14199921 -k1,5008:31966991,14199921:6492205 -g1,5008:31966991,14199921 -) -] -) -] -r1,5127:32583029,14924093:26214,9063212,0 -) -] -) -) -g1,5008:32583029,14334269 -) -h1,5008:6630773,14950307:0,0,0 -v1,5011:6630773,16316083:0,393216,0 -(1,5022:6630773,23789971:25952256,7867104,616038 -g1,5022:6630773,23789971 -(1,5022:6630773,23789971:25952256,7867104,616038 -(1,5022:6630773,24406009:25952256,8483142,0 -[1,5022:6630773,24406009:25952256,8483142,0 -(1,5022:6630773,24379795:25952256,8430714,0 -r1,5127:6656987,24379795:26214,8430714,0 -[1,5022:6656987,24379795:25899828,8430714,0 -(1,5022:6656987,23789971:25899828,7251066,0 -[1,5022:7246811,23789971:24720180,7251066,0 -(1,5013:7246811,17626279:24720180,1087374,126483 -k1,5011:8666095,17626279:209581 -k1,5011:9503511,17626279:209581 -k1,5011:10732178,17626279:209582 -k1,5011:13696237,17626279:209581 -k1,5011:15402005,17626279:209581 -k1,5011:17582254,17626279:209581 -k1,5011:18660188,17626279:209582 -k1,5011:21215303,17626279:209581 -k1,5011:22443969,17626279:209581 -k1,5011:23801741,17626279:209581 -k1,5011:26394211,17626279:209581 -k1,5011:27263085,17626279:209582 -k1,5011:28491751,17626279:209581 -k1,5011:30090695,17626279:209581 -k1,5013:31966991,17626279:0 -) -(1,5013:7246811,18467767:24720180,513147,134348 -(1,5011:7246811,18467767:0,459977,115847 -r1,5127:8660212,18467767:1413401,575824,115847 -k1,5011:7246811,18467767:-1413401 -) -(1,5011:7246811,18467767:1413401,459977,115847 -k1,5011:7246811,18467767:3277 -h1,5011:8656935,18467767:0,411205,112570 -) -k1,5011:9129043,18467767:295161 -k1,5012:10912527,18467767:295161 -k1,5012:11739185,18467767:295161 -k1,5012:12805049,18467767:295161 -k1,5012:15599753,18467767:295161 -k1,5012:17367508,18467767:295161 -k1,5012:18610321,18467767:295162 -k1,5012:20075955,18467767:295161 -k1,5012:21022544,18467767:295161 -k1,5012:22623838,18467767:295161 -k1,5012:25702968,18467767:295161 -k1,5012:27328510,18467767:295161 -k1,5012:28081768,18467767:295161 -k1,5012:30947906,18467767:295161 -k1,5012:31966991,18467767:0 -) -(1,5013:7246811,19309255:24720180,513147,126483 -k1,5012:10416525,19309255:225181 -k1,5012:11300999,19309255:225182 -k1,5012:14239371,19309255:225181 -k1,5012:15655998,19309255:225182 -k1,5012:17258746,19309255:225181 -k1,5012:18675372,19309255:225181 -k1,5012:20334482,19309255:225182 -k1,5012:21507314,19309255:225181 -k1,5012:22902969,19309255:225182 -k1,5012:23779578,19309255:225181 -k1,5012:25685102,19309255:225181 -k1,5012:27240665,19309255:225182 -k1,5012:28657291,19309255:225181 -k1,5012:30179431,19309255:225182 -k1,5012:30862709,19309255:225181 -k1,5012:31966991,19309255:0 -) -(1,5013:7246811,20150743:24720180,513147,134348 -k1,5012:8172553,20150743:177976 -k1,5012:10327751,20150743:177977 -k1,5012:11157155,20150743:177976 -k1,5012:12427617,20150743:177977 -k1,5012:15344998,20150743:177976 -k1,5012:16916926,20150743:177977 -k1,5012:18113987,20150743:177976 -k1,5012:21506505,20150743:177977 -k1,5012:24431095,20150743:177976 -(1,5012:24431095,20150743:0,452978,115847 -r1,5127:25492785,20150743:1061690,568825,115847 -k1,5012:24431095,20150743:-1061690 -) -(1,5012:24431095,20150743:1061690,452978,115847 -g1,5012:25137796,20150743 -h1,5012:25489508,20150743:0,411205,112570 -) -k1,5012:25670762,20150743:177977 -k1,5012:26658108,20150743:177976 -k1,5012:28302781,20150743:177977 -k1,5012:30110637,20150743:177976 -k1,5012:30947906,20150743:177977 -k1,5012:31966991,20150743:0 -) -(1,5013:7246811,20992231:24720180,473825,134348 -g1,5012:11091808,20992231 -g1,5012:14037651,20992231 -(1,5012:14037651,20992231:0,414482,115847 -r1,5127:14747629,20992231:709978,530329,115847 -k1,5012:14037651,20992231:-709978 -) -(1,5012:14037651,20992231:709978,414482,115847 -k1,5012:14037651,20992231:3277 -h1,5012:14744352,20992231:0,411205,112570 -) -k1,5013:31966991,20992231:17045692 -g1,5013:31966991,20992231 -) -v1,5015:7246811,22182697:0,393216,0 -(1,5020:7246811,23069075:24720180,1279594,196608 -g1,5020:7246811,23069075 -g1,5020:7246811,23069075 -g1,5020:7050203,23069075 -(1,5020:7050203,23069075:0,1279594,196608 -r1,5127:32163599,23069075:25113396,1476202,196608 -k1,5020:7050203,23069075:-25113396 -) -(1,5020:7050203,23069075:25113396,1279594,196608 -[1,5020:7246811,23069075:24720180,1082986,0 -(1,5017:7246811,22396607:24720180,410518,82312 -(1,5016:7246811,22396607:0,0,0 -g1,5016:7246811,22396607 -g1,5016:7246811,22396607 -g1,5016:6919131,22396607 -(1,5016:6919131,22396607:0,0,0 -) -g1,5016:7246811,22396607 -) -k1,5017:7246811,22396607:0 -g1,5017:10408269,22396607 -g1,5017:12937436,22396607 -g1,5017:13885874,22396607 -g1,5017:17047332,22396607 -k1,5017:17047332,22396607:0 -h1,5017:19260353,22396607:0,0,0 -k1,5017:31966991,22396607:12706638 -g1,5017:31966991,22396607 -) -(1,5018:7246811,23062785:24720180,410518,6290 -h1,5018:7246811,23062785:0,0,0 -h1,5018:8511394,23062785:0,0,0 -k1,5018:31966990,23062785:23455596 -g1,5018:31966990,23062785 -) -] -) -g1,5020:31966991,23069075 -g1,5020:7246811,23069075 -g1,5020:7246811,23069075 -g1,5020:31966991,23069075 -g1,5020:31966991,23069075 -) -h1,5020:7246811,23265683:0,0,0 -] -) -] -r1,5127:32583029,24379795:26214,8430714,0 -) -] -) -) -g1,5022:32583029,23789971 -) -h1,5022:6630773,24406009:0,0,0 -v1,5025:6630773,25771785:0,393216,0 -(1,5026:6630773,31421931:25952256,6043362,616038 -g1,5026:6630773,31421931 -(1,5026:6630773,31421931:25952256,6043362,616038 -(1,5026:6630773,32037969:25952256,6659400,0 -[1,5026:6630773,32037969:25952256,6659400,0 -(1,5026:6630773,32011755:25952256,6606972,0 -r1,5127:6656987,32011755:26214,6606972,0 -[1,5026:6656987,32011755:25899828,6606972,0 -(1,5026:6656987,31421931:25899828,5427324,0 -[1,5026:7246811,31421931:24720180,5427324,0 -(1,5026:7246811,27080143:24720180,1085536,298548 -(1,5025:7246811,27080143:0,1085536,298548 -r1,5127:8753226,27080143:1506415,1384084,298548 -k1,5025:7246811,27080143:-1506415 -) -(1,5025:7246811,27080143:1506415,1085536,298548 -) -k1,5025:8962306,27080143:209080 -k1,5025:12134268,27080143:209079 -k1,5025:12959386,27080143:209080 -k1,5025:14371706,27080143:209079 -k1,5025:15728977,27080143:209080 -k1,5025:18599474,27080143:209080 -k1,5025:19676905,27080143:209079 -k1,5025:21399211,27080143:209080 -k1,5025:24228420,27080143:209080 -k1,5025:26864297,27080143:209079 -k1,5025:27724805,27080143:209080 -k1,5025:29649617,27080143:209079 -k1,5025:30316794,27080143:209080 -k1,5025:31966991,27080143:0 -) -(1,5026:7246811,27921631:24720180,505283,134348 -k1,5025:11064939,27921631:211026 -k1,5025:11892003,27921631:211026 -k1,5025:14814253,27921631:211026 -k1,5025:18132996,27921631:211026 -k1,5025:18960060,27921631:211026 -k1,5025:21332463,27921631:211026 -k1,5025:22226374,27921631:211026 -k1,5025:24139370,27921631:211026 -k1,5025:25846583,27921631:211026 -k1,5025:27342115,27921631:211026 -k1,5025:28685603,27921631:211026 -k1,5025:29644395,27921631:211026 -k1,5025:31966991,27921631:0 -) -(1,5026:7246811,28763119:24720180,513147,126483 -k1,5025:8250227,28763119:188148 -k1,5025:9530860,28763119:188148 -k1,5025:12101897,28763119:188148 -k1,5025:12972930,28763119:188148 -k1,5025:15784484,28763119:188148 -k1,5025:18040949,28763119:188149 -k1,5025:20556280,28763119:188148 -k1,5025:21403720,28763119:188148 -k1,5025:24767087,28763119:188148 -k1,5025:27382033,28763119:188148 -k1,5025:30608430,28763119:188148 -k1,5026:31966991,28763119:0 -) -(1,5026:7246811,29604607:24720180,505283,134348 -k1,5025:9097275,29604607:192403 -k1,5025:10670521,29604607:192402 -k1,5025:12908958,29604607:192403 -k1,5025:14597548,29604607:192403 -k1,5025:16573185,29604607:192402 -k1,5025:18415785,29604607:192403 -k1,5025:21132635,29604607:192403 -k1,5025:22011199,29604607:192402 -k1,5025:24774579,29604607:192403 -k1,5025:28115987,29604607:192403 -k1,5025:28924427,29604607:192402 -k1,5025:30135915,29604607:192403 -k1,5025:31966991,29604607:0 -) -(1,5026:7246811,30446095:24720180,513147,102891 -k1,5025:9180302,30446095:164674 -k1,5025:10798565,30446095:164674 -k1,5025:11982323,30446095:164673 -k1,5025:13886323,30446095:164674 -k1,5025:14710289,30446095:164674 -k1,5025:17588154,30446095:164674 -k1,5025:18944273,30446095:164674 -k1,5025:22223873,30446095:164674 -k1,5025:25569664,30446095:164673 -k1,5025:28334807,30446095:164674 -k1,5025:29127316,30446095:164674 -k1,5025:31966991,30446095:0 -) -(1,5026:7246811,31287583:24720180,513147,134348 -k1,5025:9127530,31287583:145326 -k1,5025:12885856,31287583:145326 -k1,5025:15099498,31287583:145326 -k1,5025:17290858,31287583:145326 -k1,5025:21937852,31287583:145326 -k1,5025:25316069,31287583:145326 -k1,5025:27331793,31287583:145326 -k1,5025:28128547,31287583:145326 -k1,5026:31966991,31287583:0 -k1,5026:31966991,31287583:0 -) -] -) -] -r1,5127:32583029,32011755:26214,6606972,0 -) -] -) -) -g1,5026:32583029,31421931 -) -h1,5026:6630773,32037969:0,0,0 -v1,5029:6630773,33403745:0,393216,0 -(1,5127:6630773,43337680:25952256,10327151,589824 -g1,5127:6630773,43337680 -(1,5127:6630773,43337680:25952256,10327151,589824 -(1,5127:6630773,43927504:25952256,10916975,0 -[1,5127:6630773,43927504:25952256,10916975,0 -(1,5127:6630773,43927504:25952256,10890761,0 -r1,5127:6656987,43927504:26214,10890761,0 -[1,5127:6656987,43927504:25899828,10890761,0 -(1,5127:6656987,43337680:25899828,9711113,0 -[1,5127:7246811,43337680:24720180,9711113,0 -(1,5030:7246811,34788452:24720180,1161885,196608 -(1,5029:7246811,34788452:0,1161885,196608 -r1,5127:8794447,34788452:1547636,1358493,196608 -k1,5029:7246811,34788452:-1547636 -) -(1,5029:7246811,34788452:1547636,1161885,196608 -) -k1,5029:8965218,34788452:170771 -k1,5029:9605883,34788452:170772 -k1,5029:10308151,34788452:170771 -k1,5029:13926772,34788452:170772 -k1,5029:18196165,34788452:170771 -k1,5029:19018365,34788452:170772 -k1,5029:20664351,34788452:170771 -k1,5029:21486551,34788452:170772 -k1,5029:24530420,34788452:170771 -k1,5029:25720277,34788452:170772 -k1,5029:27629063,34788452:170771 -k1,5029:28459127,34788452:170772 -k1,5029:28985758,34788452:170771 -k1,5030:31966991,34788452:0 -) -(1,5030:7246811,35629940:24720180,513147,134348 -k1,5029:9003570,35629940:263193 -k1,5029:9952924,35629940:263192 -k1,5029:10571977,35629940:263193 -k1,5029:11828695,35629940:263192 -k1,5029:12774773,35629940:263193 -k1,5029:14427328,35629940:263192 -k1,5029:16566817,35629940:263193 -k1,5029:17481437,35629940:263192 -k1,5029:18763715,35629940:263193 -k1,5029:20764922,35629940:263192 -k1,5029:21687407,35629940:263193 -k1,5029:23402221,35629940:263192 -k1,5029:26288820,35629940:263193 -k1,5029:29063352,35629940:263192 -k1,5029:31064560,35629940:263193 -k1,5030:31966991,35629940:0 -) -(1,5030:7246811,36471428:24720180,513147,134348 -k1,5029:9725776,36471428:195691 -k1,5029:11753854,36471428:195691 -k1,5029:12941105,36471428:195691 -k1,5029:16162593,36471428:195691 -k1,5029:16974322,36471428:195691 -k1,5029:17584852,36471428:195687 -k1,5029:19065049,36471428:195691 -k1,5029:20942394,36471428:195691 -k1,5029:21883229,36471428:195691 -k1,5029:22730348,36471428:195691 -k1,5029:25166715,36471428:195691 -k1,5029:27281300,36471428:195691 -k1,5029:27891830,36471428:195687 -k1,5029:29804564,36471428:195691 -k1,5029:30947906,36471428:195691 -k1,5029:31966991,36471428:0 -) -(1,5030:7246811,37312916:24720180,513147,134348 -k1,5029:9567070,37312916:251943 -k1,5029:10478305,37312916:251943 -k1,5029:13020076,37312916:251943 -k1,5029:14140371,37312916:251943 -k1,5029:16729983,37312916:251943 -k1,5029:17597964,37312916:251943 -k1,5029:18205767,37312916:251943 -k1,5029:19953897,37312916:251943 -k1,5029:23565871,37312916:251943 -k1,5029:25306137,37312916:251943 -k1,5029:25771019,37312916:251890 -k1,5029:28692243,37312916:251943 -k1,5029:29963271,37312916:251943 -k1,5029:31307699,37312916:251943 -k1,5030:31966991,37312916:0 -) -(1,5030:7246811,38154404:24720180,505283,134348 -(1,5029:7246811,38154404:0,452978,115847 -r1,5127:10067060,38154404:2820249,568825,115847 -k1,5029:7246811,38154404:-2820249 -) -(1,5029:7246811,38154404:2820249,452978,115847 -k1,5029:7246811,38154404:3277 -h1,5029:10063783,38154404:0,411205,112570 -) -k1,5029:10262709,38154404:195649 -k1,5029:11649803,38154404:195649 -k1,5029:12633850,38154404:195649 -k1,5029:15800901,38154404:195649 -(1,5029:15800901,38154404:0,452978,115847 -r1,5127:18621150,38154404:2820249,568825,115847 -k1,5029:15800901,38154404:-2820249 -) -(1,5029:15800901,38154404:2820249,452978,115847 -k1,5029:15800901,38154404:3277 -h1,5029:18617873,38154404:0,411205,112570 -) -k1,5029:18990469,38154404:195649 -k1,5029:20377564,38154404:195650 -(1,5029:20377564,38154404:0,452978,115847 -r1,5127:22494389,38154404:2116825,568825,115847 -k1,5029:20377564,38154404:-2116825 -) -(1,5029:20377564,38154404:2116825,452978,115847 -k1,5029:20377564,38154404:3277 -h1,5029:22491112,38154404:0,411205,112570 -) -k1,5029:22690038,38154404:195649 -k1,5029:24077132,38154404:195649 -(1,5029:24077132,38154404:0,452978,115847 -r1,5127:26897381,38154404:2820249,568825,115847 -k1,5029:24077132,38154404:-2820249 -) -(1,5029:24077132,38154404:2820249,452978,115847 -k1,5029:24077132,38154404:3277 -h1,5029:26894104,38154404:0,411205,112570 -) -k1,5029:27093030,38154404:195649 -k1,5029:27940107,38154404:195649 -k1,5029:30166717,38154404:195649 -k1,5030:31966991,38154404:0 -) -(1,5030:7246811,38995892:24720180,513147,126483 -k1,5029:8845671,38995892:232434 -k1,5029:9737398,38995892:232435 -k1,5029:10325692,38995892:232434 -k1,5029:11947489,38995892:232434 -k1,5029:14229890,38995892:232435 -k1,5029:16020115,38995892:232434 -k1,5029:17356831,38995892:232434 -k1,5029:18337032,38995892:232435 -k1,5029:20082692,38995892:232434 -k1,5029:21001288,38995892:232434 -k1,5029:22512330,38995892:232435 -k1,5029:24138715,38995892:232434 -k1,5029:25694976,38995892:232434 -k1,5029:27118856,38995892:232435 -k1,5029:29584102,38995892:232434 -k1,5029:31966991,38995892:0 -) -(1,5030:7246811,39837380:24720180,513147,115847 -g1,5029:9013661,39837380 -(1,5029:9013661,39837380:0,452978,115847 -r1,5127:10427062,39837380:1413401,568825,115847 -k1,5029:9013661,39837380:-1413401 -) -(1,5029:9013661,39837380:1413401,452978,115847 -k1,5029:9013661,39837380:3277 -h1,5029:10423785,39837380:0,411205,112570 -) -k1,5030:31966992,39837380:21366260 -g1,5030:31966992,39837380 -) -(1,5032:7246811,40678868:24720180,513147,134348 -h1,5031:7246811,40678868:983040,0,0 -k1,5031:9207823,40678868:160083 -k1,5031:10236257,40678868:160082 -k1,5031:11500622,40678868:160083 -k1,5031:12685688,40678868:160083 -k1,5031:14887872,40678868:160082 -k1,5031:16745993,40678868:160083 -k1,5031:18641469,40678868:160083 -k1,5031:19157411,40678868:160082 -k1,5031:21269156,40678868:160083 -k1,5031:22817947,40678868:160083 -k1,5031:24716044,40678868:160082 -k1,5031:25823778,40678868:160083 -k1,5031:26339721,40678868:160083 -k1,5031:27889166,40678868:160082 -k1,5031:30099215,40678868:160083 -k1,5032:31966991,40678868:0 -) -(1,5032:7246811,41520356:24720180,513147,134348 -k1,5031:8463487,41520356:226427 -k1,5031:9045774,41520356:226427 -k1,5031:11396878,41520356:226427 -k1,5031:15094747,41520356:226427 -k1,5031:16425456,41520356:226427 -k1,5031:18452812,41520356:226427 -k1,5031:20522111,41520356:226427 -k1,5031:21364575,41520356:226426 -k1,5031:21946862,41520356:226427 -k1,5031:23561997,41520356:226427 -k1,5031:24979869,41520356:226427 -k1,5031:27690111,41520356:226427 -k1,5031:28567966,41520356:226427 -k1,5031:30206694,41520356:226427 -k1,5032:31966991,41520356:0 -) -(1,5032:7246811,42361844:24720180,513147,126483 -k1,5031:9252071,42361844:192534 -k1,5031:12049662,42361844:192535 -(1,5031:12049662,42361844:0,452978,115847 -r1,5127:14166487,42361844:2116825,568825,115847 -k1,5031:12049662,42361844:-2116825 -) -(1,5031:12049662,42361844:2116825,452978,115847 -k1,5031:12049662,42361844:3277 -h1,5031:14163210,42361844:0,411205,112570 -) -k1,5031:14359021,42361844:192534 -k1,5031:15083053,42361844:192535 -k1,5031:16788813,42361844:192534 -k1,5031:18379231,42361844:192535 -k1,5031:19223193,42361844:192534 -k1,5031:20900118,42361844:192535 -k1,5031:22111737,42361844:192534 -k1,5031:25367425,42361844:192535 -k1,5031:27240302,42361844:192534 -k1,5031:28084265,42361844:192535 -k1,5031:29295884,42361844:192534 -k1,5031:30794552,42361844:192535 -k1,5031:31966991,42361844:0 -) -(1,5032:7246811,43203332:24720180,505283,134348 -(1,5031:9436369,43203332:0,452978,115847 -r1,5127:11553194,43203332:2116825,568825,115847 -k1,5031:9436369,43203332:-2116825 -) -(1,5031:9436369,43203332:2116825,452978,115847 -k1,5031:9436369,43203332:3277 -h1,5031:11549917,43203332:0,411205,112570 -) -g1,5031:11752423,43203332 -g1,5031:12483149,43203332 -g1,5031:15772401,43203332 -g1,5031:16587668,43203332 -g1,5031:19065584,43203332 -h1,5031:20434631,43203332:0,0,0 -g1,5031:20633860,43203332 -g1,5031:21642459,43203332 -g1,5031:23339841,43203332 -h1,5031:24136759,43203332:0,0,0 -k1,5032:31966991,43203332:7449468 -g1,5032:31966991,43203332 -) -] -) -] -r1,5127:32583029,43927504:26214,10890761,0 -) -] -) -) -g1,5127:32583029,43337680 -) -] -(1,5127:32583029,45706769:0,0,0 -g1,5127:32583029,45706769 -) -) -] -(1,5127:6630773,47279633:25952256,0,0 -h1,5127:6630773,47279633:25952256,0,0 -) -] -(1,5127:4262630,4025873:0,0,0 -[1,5127:-473656,4025873:0,0,0 -(1,5127:-473656,-710413:0,0,0 -(1,5127:-473656,-710413:0,0,0 -g1,5127:-473656,-710413 -) -g1,5127:-473656,-710413 -) -] -) -] -!24471 -}92 -!11 -{93 -[1,5127:4262630,47279633:28320399,43253760,0 -(1,5127:4262630,4025873:0,0,0 -[1,5127:-473656,4025873:0,0,0 -(1,5127:-473656,-710413:0,0,0 -(1,5127:-473656,-644877:0,0,0 -k1,5127:-473656,-644877:-65536 -) -(1,5127:-473656,4736287:0,0,0 -k1,5127:-473656,4736287:5209943 -) -g1,5127:-473656,-710413 -) -] -) -[1,5127:6630773,47279633:25952256,43253760,0 -[1,5127:6630773,4812305:25952256,786432,0 -(1,5127:6630773,4812305:25952256,505283,134348 -(1,5127:6630773,4812305:25952256,505283,134348 -g1,5127:3078558,4812305 -[1,5127:3078558,4812305:0,0,0 -(1,5127:3078558,2439708:0,1703936,0 -k1,5127:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,5127:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,5127:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,5127:3078558,4812305:0,0,0 -(1,5127:3078558,2439708:0,1703936,0 -g1,5127:29030814,2439708 -g1,5127:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,5127:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,5127:37855564,2439708:1179648,16384,0 -) -) -k1,5127:3078556,2439708:-34777008 -) -] -[1,5127:3078558,4812305:0,0,0 -(1,5127:3078558,49800853:0,16384,2228224 -k1,5127:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,5127:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,5127:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,5127:3078558,4812305:0,0,0 -(1,5127:3078558,49800853:0,16384,2228224 -g1,5127:29030814,49800853 -g1,5127:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,5127:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,5127:37855564,49800853:1179648,16384,0 -) -) -k1,5127:3078556,49800853:-34777008 -) -] -g1,5127:6630773,4812305 -k1,5127:19515153,4812305:12087462 -g1,5127:20901894,4812305 -g1,5127:21550700,4812305 -g1,5127:24864855,4812305 -g1,5127:27600327,4812305 -g1,5127:29010006,4812305 -) -) -] -[1,5127:6630773,45706769:25952256,40108032,0 -(1,5127:6630773,45706769:25952256,40108032,0 -(1,5127:6630773,45706769:0,0,0 -g1,5127:6630773,45706769 -) -[1,5127:6630773,45706769:25952256,40108032,0 -v1,5127:6630773,6254097:0,393216,0 -(1,5127:6630773,45116945:25952256,39256064,589824 -g1,5127:6630773,45116945 -(1,5127:6630773,45116945:25952256,39256064,589824 -(1,5127:6630773,45706769:25952256,39845888,0 -[1,5127:6630773,45706769:25952256,39845888,0 -(1,5127:6630773,45706769:25952256,39845888,0 -r1,5127:6656987,45706769:26214,39845888,0 -[1,5127:6656987,45706769:25899828,39845888,0 -(1,5127:6656987,45116945:25899828,38666240,0 -[1,5127:7246811,45116945:24720180,38666240,0 -v1,5034:7246811,6843921:0,393216,0 -(1,5046:7246811,11129871:24720180,4679166,196608 -g1,5046:7246811,11129871 -g1,5046:7246811,11129871 -g1,5046:7050203,11129871 -(1,5046:7050203,11129871:0,4679166,196608 -r1,5127:32163599,11129871:25113396,4875774,196608 -k1,5046:7050203,11129871:-25113396 -) -(1,5046:7050203,11129871:25113396,4679166,196608 -[1,5046:7246811,11129871:24720180,4482558,0 -(1,5036:7246811,7057831:24720180,410518,101187 -(1,5035:7246811,7057831:0,0,0 -g1,5035:7246811,7057831 -g1,5035:7246811,7057831 -g1,5035:6919131,7057831 -(1,5035:6919131,7057831:0,0,0 -) -g1,5035:7246811,7057831 -) -g1,5036:12621288,7057831 -g1,5036:13569726,7057831 -g1,5036:17679621,7057831 -g1,5036:18311913,7057831 -g1,5036:20208788,7057831 -g1,5036:20841080,7057831 -g1,5036:21473372,7057831 -h1,5036:22105664,7057831:0,0,0 -k1,5036:31966991,7057831:9861327 -g1,5036:31966991,7057831 -) -(1,5037:7246811,7724009:24720180,410518,101187 -h1,5037:7246811,7724009:0,0,0 -g1,5037:13253580,7724009 -k1,5037:13253580,7724009:0 -h1,5037:13885872,7724009:0,0,0 -k1,5037:31966992,7724009:18081120 -g1,5037:31966992,7724009 -) -(1,5038:7246811,8390187:24720180,410518,101187 -h1,5038:7246811,8390187:0,0,0 -g1,5038:7562957,8390187 -g1,5038:7879103,8390187 -g1,5038:14202018,8390187 -g1,5038:14834310,8390187 -g1,5038:21157224,8390187 -g1,5038:21789516,8390187 -h1,5038:27480139,8390187:0,0,0 -k1,5038:31966991,8390187:4486852 -g1,5038:31966991,8390187 -) -(1,5039:7246811,9056365:24720180,410518,101187 -h1,5039:7246811,9056365:0,0,0 -g1,5039:14518163,9056365 -h1,5039:15150455,9056365:0,0,0 -k1,5039:31966991,9056365:16816536 -g1,5039:31966991,9056365 -) -(1,5045:7246811,9788079:24720180,379060,7863 -(1,5041:7246811,9788079:0,0,0 -g1,5041:7246811,9788079 -g1,5041:7246811,9788079 -g1,5041:6919131,9788079 -(1,5041:6919131,9788079:0,0,0 -) -g1,5041:7246811,9788079 -) -g1,5045:8195248,9788079 -g1,5045:8511394,9788079 -g1,5045:8827540,9788079 -g1,5045:9459832,9788079 -g1,5045:10092124,9788079 -g1,5045:10408270,9788079 -g1,5045:10724416,9788079 -h1,5045:11040562,9788079:0,0,0 -k1,5045:31966990,9788079:20926428 -g1,5045:31966990,9788079 -) -(1,5045:7246811,10454257:24720180,388497,9436 -h1,5045:7246811,10454257:0,0,0 -g1,5045:8195248,10454257 -g1,5045:8827540,10454257 -g1,5045:9459832,10454257 -g1,5045:10092124,10454257 -h1,5045:11040561,10454257:0,0,0 -k1,5045:31966991,10454257:20926430 -g1,5045:31966991,10454257 -) -(1,5045:7246811,11120435:24720180,388497,9436 -h1,5045:7246811,11120435:0,0,0 -g1,5045:8195248,11120435 -g1,5045:8827540,11120435 -g1,5045:9459832,11120435 -g1,5045:10092124,11120435 -h1,5045:11040561,11120435:0,0,0 -k1,5045:31966991,11120435:20926430 -g1,5045:31966991,11120435 -) -] -) -g1,5046:31966991,11129871 -g1,5046:7246811,11129871 -g1,5046:7246811,11129871 -g1,5046:31966991,11129871 -g1,5046:31966991,11129871 -) -h1,5046:7246811,11326479:0,0,0 -(1,5050:7246811,12514620:24720180,505283,134348 -h1,5049:7246811,12514620:983040,0,0 -k1,5049:10234251,12514620:212646 -(1,5049:10234251,12514620:0,452978,115847 -r1,5127:13054500,12514620:2820249,568825,115847 -k1,5049:10234251,12514620:-2820249 -) -(1,5049:10234251,12514620:2820249,452978,115847 -k1,5049:10234251,12514620:3277 -h1,5049:13051223,12514620:0,411205,112570 -) -k1,5049:13267146,12514620:212646 -k1,5049:14348143,12514620:212645 -k1,5049:15665071,12514620:212646 -k1,5049:17331306,12514620:212646 -k1,5049:18874333,12514620:212646 -k1,5049:19501808,12514620:212632 -k1,5049:21431497,12514620:212646 -k1,5049:22479727,12514620:212646 -k1,5049:24760688,12514620:212645 -k1,5049:26164779,12514620:212646 -k1,5049:30602531,12514620:212646 -k1,5050:31966991,12514620:0 -) -(1,5050:7246811,13356108:24720180,513147,134348 -k1,5049:8942209,13356108:242465 -k1,5049:10203759,13356108:242465 -k1,5049:13806255,13356108:242465 -k1,5049:15527868,13356108:242465 -(1,5049:15527868,13356108:0,452978,115847 -r1,5127:18348117,13356108:2820249,568825,115847 -k1,5049:15527868,13356108:-2820249 -) -(1,5049:15527868,13356108:2820249,452978,115847 -k1,5049:15527868,13356108:3277 -h1,5049:18344840,13356108:0,411205,112570 -) -k1,5049:18590582,13356108:242465 -k1,5049:19701399,13356108:242465 -k1,5049:21048147,13356108:242466 -k1,5049:23543740,13356108:242465 -k1,5049:24805290,13356108:242465 -k1,5049:27483073,13356108:242465 -k1,5049:29446513,13356108:242465 -k1,5049:30158871,13356108:242465 -k1,5049:30932833,13356108:242465 -k1,5050:31966991,13356108:0 -) -(1,5050:7246811,14197596:24720180,513147,134348 -k1,5049:9822225,14197596:187282 -k1,5049:10660934,14197596:187281 -k1,5049:14107321,14197596:187282 -k1,5049:15579108,14197596:187281 -k1,5049:17164273,14197596:187282 -k1,5049:18219907,14197596:187282 -k1,5049:19511470,14197596:187281 -k1,5049:21074353,14197596:187282 -k1,5049:23866036,14197596:187282 -k1,5049:25072402,14197596:187281 -k1,5049:28614472,14197596:187282 -k1,5049:30101332,14197596:187281 -k1,5049:30947906,14197596:187282 -k1,5049:31966991,14197596:0 -) -(1,5050:7246811,15039084:24720180,513147,134348 -k1,5049:11218471,15039084:152222 -k1,5049:13060212,15039084:152223 -k1,5049:14231519,15039084:152222 -k1,5049:18578701,15039084:152222 -k1,5049:19390215,15039084:152222 -k1,5049:20561523,15039084:152223 -k1,5049:22556617,15039084:152222 -k1,5049:23368131,15039084:152222 -k1,5049:24539438,15039084:152222 -k1,5049:28755548,15039084:152223 -k1,5049:30106424,15039084:152222 -k1,5049:31966991,15039084:0 -) -(1,5050:7246811,15880572:24720180,513147,134348 -k1,5049:8128220,15880572:229981 -k1,5049:9105967,15880572:229981 -k1,5049:10786915,15880572:229981 -k1,5049:13848706,15880572:229980 -k1,5049:14888057,15880572:229981 -k1,5049:16137123,15880572:229981 -k1,5049:19260519,15880572:229981 -k1,5049:20790079,15880572:229981 -k1,5049:21679352,15880572:229981 -k1,5049:22928417,15880572:229980 -k1,5049:26804166,15880572:229981 -k1,5049:29954431,15880572:229981 -k1,5049:31137961,15880572:229981 -k1,5050:31966991,15880572:0 -) -(1,5050:7246811,16722060:24720180,505283,126483 -k1,5049:9188531,16722060:220089 -k1,5049:11277050,16722060:220088 -k1,5049:12872740,16722060:220089 -k1,5049:14249538,16722060:220088 -k1,5049:17655987,16722060:220089 -k1,5049:20511278,16722060:220088 -(1,5049:20511278,16722060:0,452978,115847 -r1,5127:23331527,16722060:2820249,568825,115847 -k1,5049:20511278,16722060:-2820249 -) -(1,5049:20511278,16722060:2820249,452978,115847 -k1,5049:20511278,16722060:3277 -h1,5049:23328250,16722060:0,411205,112570 -) -k1,5049:23551616,16722060:220089 -k1,5049:24963149,16722060:220088 -(1,5049:24963149,16722060:0,452978,115847 -r1,5127:27783398,16722060:2820249,568825,115847 -k1,5049:24963149,16722060:-2820249 -) -(1,5049:24963149,16722060:2820249,452978,115847 -k1,5049:24963149,16722060:3277 -h1,5049:27780121,16722060:0,411205,112570 -) -k1,5049:28003487,16722060:220089 -k1,5049:29295744,16722060:220088 -k1,5049:31966991,16722060:0 -) -(1,5050:7246811,17563548:24720180,513147,102891 -k1,5049:10997794,17563548:234321 -k1,5049:12223675,17563548:234321 -k1,5049:15081402,17563548:234321 -k1,5049:19509372,17563548:234321 -k1,5049:20209654,17563548:234321 -k1,5049:23285615,17563548:234320 -k1,5049:24913887,17563548:234321 -k1,5049:26167293,17563548:234321 -k1,5049:28055087,17563548:234321 -k1,5049:30027423,17563548:234321 -k1,5049:30947906,17563548:234321 -k1,5049:31966991,17563548:0 -) -(1,5050:7246811,18405036:24720180,505283,134348 -k1,5049:10194859,18405036:234857 -k1,5049:11930490,18405036:234857 -k1,5049:12781386,18405036:234858 -k1,5049:14035328,18405036:234857 -k1,5049:16340467,18405036:234857 -k1,5049:18197340,18405036:234857 -k1,5049:20128924,18405036:234857 -k1,5049:21496243,18405036:234857 -k1,5049:23083764,18405036:234858 -k1,5049:27093495,18405036:234857 -k1,5049:30682485,18405036:234857 -k1,5049:31966991,18405036:0 -) -(1,5050:7246811,19246524:24720180,505283,134348 -k1,5049:8548356,19246524:197263 -k1,5049:10588492,19246524:197264 -k1,5049:11401793,19246524:197263 -k1,5049:13118837,19246524:197264 -k1,5049:13998985,19246524:197263 -k1,5049:16770503,19246524:197264 -k1,5049:17650651,19246524:197263 -k1,5049:18534076,19246524:197263 -k1,5049:20171166,19246524:197264 -k1,5049:22410531,19246524:197263 -k1,5049:22963655,19246524:197264 -k1,5049:25866244,19246524:197263 -k1,5049:27973882,19246524:197264 -k1,5049:29455651,19246524:197263 -k1,5050:31966991,19246524:0 -) -(1,5050:7246811,20088012:24720180,513147,134348 -(1,5049:7246811,20088012:0,414482,115847 -r1,5127:7605077,20088012:358266,530329,115847 -k1,5049:7246811,20088012:-358266 -) -(1,5049:7246811,20088012:358266,414482,115847 -k1,5049:7246811,20088012:3277 -h1,5049:7601800,20088012:0,411205,112570 -) -k1,5049:7765156,20088012:160079 -k1,5049:9492856,20088012:160079 -k1,5049:10672021,20088012:160080 -k1,5049:12767378,20088012:160079 -k1,5049:16984791,20088012:160079 -k1,5049:18277332,20088012:160079 -k1,5049:19185177,20088012:160079 -k1,5049:20858483,20088012:160080 -k1,5049:23345745,20088012:160079 -k1,5049:24165116,20088012:160079 -k1,5049:26708084,20088012:160079 -(1,5049:26708084,20088012:0,414482,115847 -r1,5127:27066350,20088012:358266,530329,115847 -k1,5049:26708084,20088012:-358266 -) -(1,5049:26708084,20088012:358266,414482,115847 -k1,5049:26708084,20088012:3277 -h1,5049:27063073,20088012:0,411205,112570 -) -k1,5049:27226430,20088012:160080 -k1,5049:28045801,20088012:160079 -k1,5049:29224965,20088012:160079 -k1,5050:31966991,20088012:0 -) -(1,5050:7246811,20929500:24720180,513147,115847 -(1,5049:7246811,20929500:0,459977,115847 -r1,5127:12880754,20929500:5633943,575824,115847 -k1,5049:7246811,20929500:-5633943 -) -(1,5049:7246811,20929500:5633943,459977,115847 -k1,5049:7246811,20929500:3277 -h1,5049:12877477,20929500:0,411205,112570 -) -g1,5049:13253653,20929500 -g1,5049:14649569,20929500 -g1,5049:17627525,20929500 -g1,5049:19507097,20929500 -g1,5049:20411493,20929500 -g1,5049:21270014,20929500 -g1,5049:23751862,20929500 -g1,5049:25017362,20929500 -g1,5049:26235676,20929500 -g1,5049:28790924,20929500 -k1,5050:31966991,20929500:1845686 -g1,5050:31966991,20929500 -) -v1,5052:7246811,21942331:0,393216,0 -(1,5069:7246811,30007105:24720180,8457990,196608 -g1,5069:7246811,30007105 -g1,5069:7246811,30007105 -g1,5069:7050203,30007105 -(1,5069:7050203,30007105:0,8457990,196608 -r1,5127:32163599,30007105:25113396,8654598,196608 -k1,5069:7050203,30007105:-25113396 -) -(1,5069:7050203,30007105:25113396,8457990,196608 -[1,5069:7246811,30007105:24720180,8261382,0 -(1,5054:7246811,22156241:24720180,410518,101187 -(1,5053:7246811,22156241:0,0,0 -g1,5053:7246811,22156241 -g1,5053:7246811,22156241 -g1,5053:6919131,22156241 -(1,5053:6919131,22156241:0,0,0 -) -g1,5053:7246811,22156241 -) -g1,5054:13253580,22156241 -g1,5054:14202018,22156241 -k1,5054:14202018,22156241:0 -h1,5054:15466601,22156241:0,0,0 -k1,5054:31966991,22156241:16500390 -g1,5054:31966991,22156241 -) -(1,5055:7246811,22822419:24720180,410518,101187 -h1,5055:7246811,22822419:0,0,0 -k1,5055:7246811,22822419:0 -h1,5055:14834307,22822419:0,0,0 -k1,5055:31966991,22822419:17132684 -g1,5055:31966991,22822419 -) -(1,5059:7246811,24143957:24720180,410518,107478 -g1,5059:8195248,24143957 -g1,5059:9459831,24143957 -g1,5059:12621288,24143957 -g1,5059:14834308,24143957 -g1,5059:15782745,24143957 -g1,5059:17995765,24143957 -g1,5059:19576494,24143957 -k1,5059:31966991,24143957:8912895 -g1,5059:31966991,24143957 -) -(1,5059:7246811,24810135:24720180,379060,0 -k1,5059:31966990,24810135:24087888 -g1,5059:31966990,24810135 -) -(1,5059:7246811,25476313:24720180,379060,0 -g1,5059:8195248,25476313 -g1,5059:8511394,25476313 -g1,5059:8827540,25476313 -g1,5059:9143686,25476313 -g1,5059:9459832,25476313 -k1,5059:31966990,25476313:22191012 -g1,5059:31966990,25476313 -) -(1,5060:7246811,26666779:24720180,410518,101187 -(1,5059:7246811,26666779:0,0,0 -g1,5059:7246811,26666779 -g1,5059:7246811,26666779 -g1,5059:6919131,26666779 -(1,5059:6919131,26666779:0,0,0 -) -g1,5059:7246811,26666779 -) -g1,5060:13253580,26666779 -g1,5060:14202018,26666779 -g1,5060:15150455,26666779 -g1,5060:15782747,26666779 -g1,5060:16731184,26666779 -g1,5060:17363476,26666779 -h1,5060:17679622,26666779:0,0,0 -k1,5060:31966991,26666779:14287369 -g1,5060:31966991,26666779 -) -(1,5061:7246811,27332957:24720180,410518,101187 -h1,5061:7246811,27332957:0,0,0 -k1,5061:7246811,27332957:0 -h1,5061:14834307,27332957:0,0,0 -k1,5061:31966991,27332957:17132684 -g1,5061:31966991,27332957 -) -(1,5062:7246811,27999135:24720180,410518,101187 -h1,5062:7246811,27999135:0,0,0 -g1,5062:14518163,27999135 -h1,5062:15150455,27999135:0,0,0 -k1,5062:31966991,27999135:16816536 -g1,5062:31966991,27999135 -) -(1,5068:7246811,28665313:24720180,379060,7863 -(1,5064:7246811,28665313:0,0,0 -g1,5064:7246811,28665313 -g1,5064:7246811,28665313 -g1,5064:6919131,28665313 -(1,5064:6919131,28665313:0,0,0 -) -g1,5064:7246811,28665313 -) -g1,5068:8195248,28665313 -g1,5068:8511394,28665313 -g1,5068:8827540,28665313 -g1,5068:9459832,28665313 -g1,5068:10092124,28665313 -h1,5068:10408270,28665313:0,0,0 -k1,5068:31966990,28665313:21558720 -g1,5068:31966990,28665313 -) -(1,5068:7246811,29331491:24720180,388497,9436 -h1,5068:7246811,29331491:0,0,0 -g1,5068:8195248,29331491 -g1,5068:8827540,29331491 -g1,5068:9459832,29331491 -g1,5068:10092124,29331491 -h1,5068:10408270,29331491:0,0,0 -k1,5068:31966990,29331491:21558720 -g1,5068:31966990,29331491 -) -(1,5068:7246811,29997669:24720180,388497,9436 -h1,5068:7246811,29997669:0,0,0 -g1,5068:8195248,29997669 -g1,5068:8827540,29997669 -g1,5068:9459832,29997669 -g1,5068:10092124,29997669 -h1,5068:10408270,29997669:0,0,0 -k1,5068:31966990,29997669:21558720 -g1,5068:31966990,29997669 -) -] -) -g1,5069:31966991,30007105 -g1,5069:7246811,30007105 -g1,5069:7246811,30007105 -g1,5069:31966991,30007105 -g1,5069:31966991,30007105 -) -h1,5069:7246811,30203713:0,0,0 -(1,5073:7246811,31391853:24720180,513147,126483 -h1,5072:7246811,31391853:983040,0,0 -k1,5072:9118355,31391853:260669 -k1,5072:10398108,31391853:260668 -k1,5072:12025858,31391853:260669 -k1,5072:12953682,31391853:260668 -(1,5072:12953682,31391853:0,452978,115847 -r1,5127:15070507,31391853:2116825,568825,115847 -k1,5072:12953682,31391853:-2116825 -) -(1,5072:12953682,31391853:2116825,452978,115847 -k1,5072:12953682,31391853:3277 -h1,5072:15067230,31391853:0,411205,112570 -) -k1,5072:15331176,31391853:260669 -k1,5072:16967445,31391853:260668 -k1,5072:18558495,31391853:260669 -k1,5072:21462885,31391853:260668 -k1,5072:25137324,31391853:260669 -k1,5072:26894179,31391853:260668 -k1,5072:30341208,31391853:260669 -k1,5072:31133373,31391853:260668 -k1,5073:31966991,31391853:0 -) -(1,5073:7246811,32233341:24720180,513147,134348 -k1,5072:9497822,32233341:280343 -k1,5072:10969610,32233341:280343 -k1,5072:12453193,32233341:280342 -k1,5072:15919896,32233341:280343 -k1,5072:16731736,32233341:280343 -k1,5072:19217366,32233341:280343 -k1,5072:20183870,32233341:280342 -k1,5072:21234916,32233341:280343 -k1,5072:24761257,32233341:280343 -k1,5072:25859489,32233341:280343 -k1,5072:28356259,32233341:280342 -k1,5072:29504954,32233341:280343 -k1,5072:31315563,32233341:280343 -k1,5072:31966991,32233341:0 -) -(1,5073:7246811,33074829:24720180,513147,134348 -k1,5072:8955608,33074829:257830 -k1,5072:11472463,33074829:257829 -k1,5072:12749378,33074829:257830 -k1,5072:15900622,33074829:257829 -k1,5072:17458031,33074829:257830 -k1,5072:18375152,33074829:257829 -k1,5072:19652067,33074829:257830 -k1,5072:23729334,33074829:257829 -k1,5072:25183851,33074829:257830 -k1,5072:27122023,33074829:257829 -k1,5072:30158580,33074829:257830 -k1,5072:30947906,33074829:257829 -k1,5072:31966991,33074829:0 -) -(1,5073:7246811,33916317:24720180,513147,134348 -k1,5072:8544625,33916317:141104 -k1,5072:11464456,33916317:141104 -k1,5072:12367088,33916317:141104 -k1,5072:13527278,33916317:141105 -k1,5072:16854742,33916317:141104 -k1,5072:19201133,33916317:141104 -k1,5072:20028399,33916317:141104 -k1,5072:20940206,33916317:141104 -k1,5072:24327308,33916317:141104 -k1,5072:25084450,33916317:141104 -k1,5072:26244640,33916317:141105 -k1,5072:27752825,33916317:141104 -k1,5072:28553221,33916317:141104 -k1,5072:31966991,33916317:0 -) -(1,5073:7246811,34757805:24720180,505283,126483 -k1,5072:11121180,34757805:184037 -k1,5072:12324302,34757805:184037 -k1,5072:14188682,34757805:184037 -k1,5072:17151446,34757805:184037 -k1,5072:18097011,34757805:184037 -k1,5072:19300133,34757805:184037 -k1,5072:20632361,34757805:184037 -k1,5072:23956228,34757805:184037 -k1,5072:26264942,34757805:184037 -k1,5072:27945166,34757805:184037 -k1,5072:31315563,34757805:184037 -k1,5072:31966991,34757805:0 -) -(1,5073:7246811,35599293:24720180,513147,134348 -k1,5072:8156093,35599293:161516 -k1,5072:11324402,35599293:161517 -k1,5072:16006592,35599293:161516 -k1,5072:16634069,35599293:161516 -k1,5072:17814670,35599293:161516 -k1,5072:19868211,35599293:161517 -k1,5072:20561224,35599293:161516 -k1,5072:21374168,35599293:161516 -k1,5072:23797987,35599293:161516 -k1,5072:24978589,35599293:161517 -k1,5072:28321223,35599293:161516 -k1,5072:31966991,35599293:0 -) -(1,5073:7246811,36440781:24720180,505283,126483 -k1,5072:8090751,36440781:192512 -k1,5072:9053966,36440781:192512 -k1,5072:12439392,36440781:192512 -k1,5072:15255310,36440781:192512 -k1,5072:17959162,36440781:192512 -k1,5072:20741656,36440781:192511 -k1,5072:21550206,36440781:192512 -k1,5072:22945959,36440781:192512 -k1,5072:24712646,36440781:192512 -k1,5072:25436655,36440781:192512 -k1,5072:28515373,36440781:192512 -k1,5072:29335720,36440781:192512 -k1,5072:31966991,36440781:0 -) -(1,5073:7246811,37282269:24720180,513147,115847 -k1,5072:8109224,37282269:210985 -k1,5072:9339295,37282269:210986 -k1,5072:12310001,37282269:210985 -k1,5072:13188143,37282269:210986 -(1,5072:13188143,37282269:0,452978,115847 -r1,5127:16008392,37282269:2820249,568825,115847 -k1,5072:13188143,37282269:-2820249 -) -(1,5072:13188143,37282269:2820249,452978,115847 -k1,5072:13188143,37282269:3277 -h1,5072:16005115,37282269:0,411205,112570 -) -k1,5072:16393047,37282269:210985 -k1,5072:17231868,37282269:210986 -k1,5072:18646094,37282269:210985 -k1,5072:20397830,37282269:210985 -k1,5072:22991705,37282269:210986 -(1,5072:22991705,37282269:0,414482,115847 -r1,5127:23349971,37282269:358266,530329,115847 -k1,5072:22991705,37282269:-358266 -) -(1,5072:22991705,37282269:358266,414482,115847 -k1,5072:22991705,37282269:3277 -h1,5072:23346694,37282269:0,411205,112570 -) -k1,5072:23560956,37282269:210985 -k1,5072:24439098,37282269:210986 -(1,5072:24439098,37282269:0,459977,115847 -r1,5127:30073041,37282269:5633943,575824,115847 -k1,5072:24439098,37282269:-5633943 -) -(1,5072:24439098,37282269:5633943,459977,115847 -k1,5072:24439098,37282269:3277 -h1,5072:30069764,37282269:0,411205,112570 -) -k1,5072:30284026,37282269:210985 -k1,5072:31966991,37282269:0 -) -(1,5073:7246811,38123757:24720180,505283,126483 -g1,5072:11220914,38123757 -g1,5072:12611588,38123757 -g1,5072:13829902,38123757 -g1,5072:16807858,38123757 -g1,5072:18687430,38123757 -g1,5072:19418156,38123757 -g1,5072:20636470,38123757 -g1,5072:23674719,38123757 -k1,5073:31966991,38123757:6961891 -g1,5073:31966991,38123757 -) -v1,5075:7246811,39136588:0,393216,0 -(1,5086:7246811,42756360:24720180,4012988,196608 -g1,5086:7246811,42756360 -g1,5086:7246811,42756360 -g1,5086:7050203,42756360 -(1,5086:7050203,42756360:0,4012988,196608 -r1,5127:32163599,42756360:25113396,4209596,196608 -k1,5086:7050203,42756360:-25113396 -) -(1,5086:7050203,42756360:25113396,4012988,196608 -[1,5086:7246811,42756360:24720180,3816380,0 -(1,5077:7246811,39350498:24720180,410518,101187 -(1,5076:7246811,39350498:0,0,0 -g1,5076:7246811,39350498 -g1,5076:7246811,39350498 -g1,5076:6919131,39350498 -(1,5076:6919131,39350498:0,0,0 -) -g1,5076:7246811,39350498 -) -g1,5077:13253580,39350498 -g1,5077:14202018,39350498 -k1,5077:14202018,39350498:0 -h1,5077:15466601,39350498:0,0,0 -k1,5077:31966991,39350498:16500390 -g1,5077:31966991,39350498 -) -(1,5078:7246811,40016676:24720180,410518,101187 -h1,5078:7246811,40016676:0,0,0 -g1,5078:13253580,40016676 -g1,5078:14202018,40016676 -g1,5078:21473370,40016676 -g1,5078:22421807,40016676 -g1,5078:23054099,40016676 -g1,5078:24002536,40016676 -g1,5078:24634828,40016676 -h1,5078:25267119,40016676:0,0,0 -k1,5078:31966991,40016676:6699872 -g1,5078:31966991,40016676 -) -(1,5079:7246811,40682854:24720180,410518,101187 -h1,5079:7246811,40682854:0,0,0 -g1,5079:14518163,40682854 -h1,5079:15150455,40682854:0,0,0 -k1,5079:31966991,40682854:16816536 -g1,5079:31966991,40682854 -) -(1,5085:7246811,41414568:24720180,379060,7863 -(1,5081:7246811,41414568:0,0,0 -g1,5081:7246811,41414568 -g1,5081:7246811,41414568 -g1,5081:6919131,41414568 -(1,5081:6919131,41414568:0,0,0 -) -g1,5081:7246811,41414568 -) -g1,5085:8195248,41414568 -g1,5085:8511394,41414568 -g1,5085:8827540,41414568 -g1,5085:9459832,41414568 -g1,5085:10092124,41414568 -g1,5085:10408270,41414568 -g1,5085:10724416,41414568 -h1,5085:11040562,41414568:0,0,0 -k1,5085:31966990,41414568:20926428 -g1,5085:31966990,41414568 -) -(1,5085:7246811,42080746:24720180,388497,9436 -h1,5085:7246811,42080746:0,0,0 -g1,5085:8195248,42080746 -g1,5085:8827540,42080746 -g1,5085:9459832,42080746 -g1,5085:10092124,42080746 -h1,5085:11040561,42080746:0,0,0 -k1,5085:31966991,42080746:20926430 -g1,5085:31966991,42080746 -) -(1,5085:7246811,42746924:24720180,388497,9436 -h1,5085:7246811,42746924:0,0,0 -g1,5085:8195248,42746924 -g1,5085:8827540,42746924 -g1,5085:9459832,42746924 -g1,5085:10092124,42746924 -h1,5085:11040561,42746924:0,0,0 -k1,5085:31966991,42746924:20926430 -g1,5085:31966991,42746924 -) -] -) -g1,5086:31966991,42756360 -g1,5086:7246811,42756360 -g1,5086:7246811,42756360 -g1,5086:31966991,42756360 -g1,5086:31966991,42756360 -) -h1,5086:7246811,42952968:0,0,0 -(1,5090:7246811,44141109:24720180,513147,134348 -h1,5089:7246811,44141109:983040,0,0 -k1,5089:9061320,44141109:203634 -k1,5089:10284038,44141109:203633 -k1,5089:11854753,44141109:203634 -k1,5089:12725543,44141109:203634 -(1,5089:12725543,44141109:0,452978,115847 -r1,5127:15545792,44141109:2820249,568825,115847 -k1,5089:12725543,44141109:-2820249 -) -(1,5089:12725543,44141109:2820249,452978,115847 -k1,5089:12725543,44141109:3277 -h1,5089:15542515,44141109:0,411205,112570 -) -k1,5089:15923095,44141109:203633 -k1,5089:20102798,44141109:203634 -k1,5089:20922470,44141109:203634 -k1,5089:22145188,44141109:203633 -k1,5089:25421150,44141109:203634 -k1,5089:26276212,44141109:203634 -k1,5089:27268243,44141109:203633 -k1,5089:29713208,44141109:203634 -k1,5090:31966991,44141109:0 -) -(1,5090:7246811,44982597:24720180,513147,134348 -k1,5089:8677855,44982597:191103 -k1,5089:10648260,44982597:191103 -k1,5089:11858448,44982597:191103 -k1,5089:14009077,44982597:191103 -k1,5089:17152577,44982597:191103 -k1,5089:19229151,44982597:191103 -k1,5089:19951751,44982597:191103 -k1,5089:20498715,44982597:191104 -k1,5089:22199768,44982597:191103 -k1,5089:23050163,44982597:191103 -k1,5089:24260351,44982597:191103 -k1,5089:27458901,44982597:191103 -k1,5089:28484933,44982597:191103 -k1,5089:29879277,44982597:191103 -k1,5089:31611131,44982597:191103 -k1,5089:31966991,44982597:0 -) -] -) -] -r1,5127:32583029,45706769:26214,39845888,0 -) -] -) -) -g1,5127:32583029,45116945 -) -] -(1,5127:32583029,45706769:0,0,0 -g1,5127:32583029,45706769 -) -) -] -(1,5127:6630773,47279633:25952256,0,0 -h1,5127:6630773,47279633:25952256,0,0 -) -] -(1,5127:4262630,4025873:0,0,0 -[1,5127:-473656,4025873:0,0,0 -(1,5127:-473656,-710413:0,0,0 -(1,5127:-473656,-710413:0,0,0 -g1,5127:-473656,-710413 -) -g1,5127:-473656,-710413 -) -] -) -] -!26298 -}93 -Input:695:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!102 -{94 -[1,5138:4262630,47279633:28320399,43253760,0 -(1,5138:4262630,4025873:0,0,0 -[1,5138:-473656,4025873:0,0,0 -(1,5138:-473656,-710413:0,0,0 -(1,5138:-473656,-644877:0,0,0 -k1,5138:-473656,-644877:-65536 -) -(1,5138:-473656,4736287:0,0,0 -k1,5138:-473656,4736287:5209943 -) -g1,5138:-473656,-710413 -) -] -) -[1,5138:6630773,47279633:25952256,43253760,0 -[1,5138:6630773,4812305:25952256,786432,0 -(1,5138:6630773,4812305:25952256,513147,126483 -(1,5138:6630773,4812305:25952256,513147,126483 -g1,5138:3078558,4812305 -[1,5138:3078558,4812305:0,0,0 -(1,5138:3078558,2439708:0,1703936,0 -k1,5138:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,5138:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,5138:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,5138:3078558,4812305:0,0,0 -(1,5138:3078558,2439708:0,1703936,0 -g1,5138:29030814,2439708 -g1,5138:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,5138:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,5138:37855564,2439708:1179648,16384,0 -) -) -k1,5138:3078556,2439708:-34777008 -) -] -[1,5138:3078558,4812305:0,0,0 -(1,5138:3078558,49800853:0,16384,2228224 -k1,5138:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,5138:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,5138:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,5138:3078558,4812305:0,0,0 -(1,5138:3078558,49800853:0,16384,2228224 -g1,5138:29030814,49800853 -g1,5138:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,5138:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,5138:37855564,49800853:1179648,16384,0 -) -) -k1,5138:3078556,49800853:-34777008 -) -] -g1,5138:6630773,4812305 -g1,5138:6630773,4812305 -g1,5138:8364200,4812305 -g1,5138:10765439,4812305 -k1,5138:31786111,4812305:21020672 -) -) -] -[1,5138:6630773,45706769:25952256,40108032,0 -(1,5138:6630773,45706769:25952256,40108032,0 -(1,5138:6630773,45706769:0,0,0 -g1,5138:6630773,45706769 -) -[1,5138:6630773,45706769:25952256,40108032,0 -v1,5127:6630773,6254097:0,393216,0 -(1,5127:6630773,33321015:25952256,27460134,616038 -g1,5127:6630773,33321015 -(1,5127:6630773,33321015:25952256,27460134,616038 -(1,5127:6630773,33937053:25952256,28076172,0 -[1,5127:6630773,33937053:25952256,28076172,0 -(1,5127:6630773,33910839:25952256,28049958,0 -r1,5138:6656987,33910839:26214,28049958,0 -[1,5127:6656987,33910839:25899828,28049958,0 -(1,5127:6656987,33321015:25899828,26870310,0 -[1,5127:7246811,33321015:24720180,26870310,0 -(1,5090:7246811,6963852:24720180,513147,134348 -k1,5089:9308846,6963852:179186 -k1,5089:10877395,6963852:179186 -k1,5089:13313642,6963852:179187 -k1,5089:15378299,6963852:179186 -k1,5089:16756139,6963852:179186 -k1,5089:18795892,6963852:179186 -k1,5089:19626507,6963852:179187 -k1,5089:20553459,6963852:179186 -k1,5089:22544060,6963852:179186 -k1,5089:25281772,6963852:179186 -k1,5089:29280397,6963852:179187 -k1,5089:30947906,6963852:179186 -k1,5089:31966991,6963852:0 -) -(1,5090:7246811,7805340:24720180,513147,134348 -k1,5089:10378490,7805340:229089 -k1,5089:11139077,7805340:229090 -k1,5089:12019594,7805340:229089 -k1,5089:14510986,7805340:229089 -k1,5089:15371842,7805340:229089 -k1,5089:16325760,7805340:229090 -k1,5089:17423201,7805340:229089 -k1,5089:19659002,7805340:229089 -k1,5089:20346188,7805340:229089 -k1,5089:22057702,7805340:229090 -k1,5089:22938219,7805340:229089 -k1,5089:24186393,7805340:229089 -k1,5089:26068955,7805340:229089 -k1,5089:28209730,7805340:229090 -k1,5089:29510988,7805340:229089 -k1,5089:30198174,7805340:229089 -k1,5089:31966991,7805340:0 -) -(1,5090:7246811,8646828:24720180,513147,134348 -k1,5089:8899020,8646828:176994 -k1,5089:10585964,8646828:176994 -k1,5089:13537752,8646828:176994 -k1,5089:14366174,8646828:176994 -k1,5089:14899028,8646828:176994 -k1,5089:17838365,8646828:176994 -k1,5089:19753374,8646828:176994 -k1,5089:20655196,8646828:176994 -k1,5089:21518352,8646828:176994 -k1,5089:22761617,8646828:176994 -k1,5089:23590039,8646828:176994 -k1,5089:26769237,8646828:176994 -k1,5089:27965316,8646828:176994 -k1,5089:30577628,8646828:176994 -k1,5089:31966991,8646828:0 -) -(1,5090:7246811,9488316:24720180,513147,7863 -k1,5090:31966991,9488316:22670214 -g1,5090:31966991,9488316 -) -v1,5092:7246811,10678782:0,393216,0 -(1,5103:7246811,14298554:24720180,4012988,196608 -g1,5103:7246811,14298554 -g1,5103:7246811,14298554 -g1,5103:7050203,14298554 -(1,5103:7050203,14298554:0,4012988,196608 -r1,5138:32163599,14298554:25113396,4209596,196608 -k1,5103:7050203,14298554:-25113396 -) -(1,5103:7050203,14298554:25113396,4012988,196608 -[1,5103:7246811,14298554:24720180,3816380,0 -(1,5094:7246811,10892692:24720180,410518,101187 -(1,5093:7246811,10892692:0,0,0 -g1,5093:7246811,10892692 -g1,5093:7246811,10892692 -g1,5093:6919131,10892692 -(1,5093:6919131,10892692:0,0,0 -) -g1,5093:7246811,10892692 -) -g1,5094:13253580,10892692 -g1,5094:14202018,10892692 -k1,5094:14202018,10892692:0 -h1,5094:15466601,10892692:0,0,0 -k1,5094:31966991,10892692:16500390 -g1,5094:31966991,10892692 -) -(1,5095:7246811,11558870:24720180,410518,101187 -h1,5095:7246811,11558870:0,0,0 -g1,5095:12621288,11558870 -g1,5095:13569726,11558870 -g1,5095:21473369,11558870 -g1,5095:21789515,11558870 -g1,5095:22421807,11558870 -g1,5095:23370245,11558870 -g1,5095:24318682,11558870 -g1,5095:24950974,11558870 -g1,5095:25899411,11558870 -g1,5095:26531703,11558870 -h1,5095:27163994,11558870:0,0,0 -k1,5095:31966991,11558870:4802997 -g1,5095:31966991,11558870 -) -(1,5096:7246811,12225048:24720180,410518,101187 -h1,5096:7246811,12225048:0,0,0 -g1,5096:14518163,12225048 -h1,5096:15150455,12225048:0,0,0 -k1,5096:31966991,12225048:16816536 -g1,5096:31966991,12225048 -) -(1,5102:7246811,12956762:24720180,379060,7863 -(1,5098:7246811,12956762:0,0,0 -g1,5098:7246811,12956762 -g1,5098:7246811,12956762 -g1,5098:6919131,12956762 -(1,5098:6919131,12956762:0,0,0 -) -g1,5098:7246811,12956762 -) -g1,5102:8195248,12956762 -g1,5102:8511394,12956762 -g1,5102:8827540,12956762 -g1,5102:9459832,12956762 -g1,5102:10092124,12956762 -g1,5102:10408270,12956762 -g1,5102:10724416,12956762 -h1,5102:11040562,12956762:0,0,0 -k1,5102:31966990,12956762:20926428 -g1,5102:31966990,12956762 -) -(1,5102:7246811,13622940:24720180,388497,9436 -h1,5102:7246811,13622940:0,0,0 -g1,5102:8195248,13622940 -g1,5102:8827540,13622940 -g1,5102:9459832,13622940 -g1,5102:10092124,13622940 -h1,5102:11040561,13622940:0,0,0 -k1,5102:31966991,13622940:20926430 -g1,5102:31966991,13622940 -) -(1,5102:7246811,14289118:24720180,388497,9436 -h1,5102:7246811,14289118:0,0,0 -g1,5102:8195248,14289118 -g1,5102:8827540,14289118 -g1,5102:9459832,14289118 -g1,5102:10092124,14289118 -h1,5102:11040561,14289118:0,0,0 -k1,5102:31966991,14289118:20926430 -g1,5102:31966991,14289118 -) -] -) -g1,5103:31966991,14298554 -g1,5103:7246811,14298554 -g1,5103:7246811,14298554 -g1,5103:31966991,14298554 -g1,5103:31966991,14298554 -) -h1,5103:7246811,14495162:0,0,0 -(1,5106:7246811,15860938:24720180,513147,134348 -h1,5105:7246811,15860938:983040,0,0 -k1,5105:9088349,15860938:230663 -k1,5105:10338097,15860938:230663 -k1,5105:13230178,15860938:230664 -k1,5105:15489836,15860938:230663 -(1,5105:15489836,15860938:0,452978,115847 -r1,5138:18310085,15860938:2820249,568825,115847 -k1,5105:15489836,15860938:-2820249 -) -(1,5105:15489836,15860938:2820249,452978,115847 -k1,5105:15489836,15860938:3277 -h1,5105:18306808,15860938:0,411205,112570 -) -k1,5105:18540748,15860938:230663 -k1,5105:20817445,15860938:230663 -k1,5105:22520702,15860938:230663 -k1,5105:25937726,15860938:230664 -k1,5105:29349507,15860938:230663 -k1,5105:30231598,15860938:230663 -k1,5106:31966991,15860938:0 -) -(1,5106:7246811,16702426:24720180,513147,134348 -(1,5105:7246811,16702426:0,452978,115847 -r1,5138:9363636,16702426:2116825,568825,115847 -k1,5105:7246811,16702426:-2116825 -) -(1,5105:7246811,16702426:2116825,452978,115847 -k1,5105:7246811,16702426:3277 -h1,5105:9360359,16702426:0,411205,112570 -) -k1,5105:9538465,16702426:174829 -k1,5105:11107245,16702426:174829 -k1,5105:13606636,16702426:174829 -k1,5105:14432893,16702426:174829 -k1,5105:15626807,16702426:174829 -k1,5105:18258581,16702426:174829 -k1,5105:19092701,16702426:174828 -k1,5105:21296525,16702426:174829 -k1,5105:22154239,16702426:174829 -k1,5105:24504863,16702426:174829 -k1,5105:25751861,16702426:174829 -k1,5105:27320641,16702426:174829 -k1,5105:30166717,16702426:174829 -k1,5106:31966991,16702426:0 -) -(1,5106:7246811,17543914:24720180,505283,134348 -k1,5105:8439247,17543914:156312 -k1,5105:11437200,17543914:156312 -k1,5105:13331526,17543914:156311 -k1,5105:16319649,17543914:156312 -k1,5105:18294585,17543914:156312 -k1,5105:19137059,17543914:156312 -k1,5105:21368896,17543914:156312 -k1,5105:23567310,17543914:156312 -(1,5105:23567310,17543914:0,452978,115847 -r1,5138:26387559,17543914:2820249,568825,115847 -k1,5105:23567310,17543914:-2820249 -) -(1,5105:23567310,17543914:2820249,452978,115847 -k1,5105:23567310,17543914:3277 -h1,5105:26384282,17543914:0,411205,112570 -) -k1,5105:26543870,17543914:156311 -k1,5105:27801187,17543914:156312 -k1,5105:28728202,17543914:156312 -k1,5105:31966991,17543914:0 -) -(1,5106:7246811,18385402:24720180,505283,134348 -g1,5105:10279161,18385402 -g1,5105:11094428,18385402 -g1,5105:12943854,18385402 -g1,5105:15498447,18385402 -g1,5105:16889121,18385402 -g1,5105:18958748,18385402 -g1,5105:19809405,18385402 -g1,5105:23673407,18385402 -k1,5106:31966991,18385402:6623727 -g1,5106:31966991,18385402 -) -v1,5108:7246811,19575868:0,393216,0 -(1,5123:7246811,25860352:24720180,6677700,196608 -g1,5123:7246811,25860352 -g1,5123:7246811,25860352 -g1,5123:7050203,25860352 -(1,5123:7050203,25860352:0,6677700,196608 -r1,5138:32163599,25860352:25113396,6874308,196608 -k1,5123:7050203,25860352:-25113396 -) -(1,5123:7050203,25860352:25113396,6677700,196608 -[1,5123:7246811,25860352:24720180,6481092,0 -(1,5110:7246811,19789778:24720180,410518,101187 -(1,5109:7246811,19789778:0,0,0 -g1,5109:7246811,19789778 -g1,5109:7246811,19789778 -g1,5109:6919131,19789778 -(1,5109:6919131,19789778:0,0,0 -) -g1,5109:7246811,19789778 -) -g1,5110:13253580,19789778 -g1,5110:14202018,19789778 -k1,5110:14202018,19789778:0 -h1,5110:15466601,19789778:0,0,0 -k1,5110:31966991,19789778:16500390 -g1,5110:31966991,19789778 -) -(1,5111:7246811,20455956:24720180,410518,101187 -h1,5111:7246811,20455956:0,0,0 -g1,5111:12621288,20455956 -g1,5111:13569726,20455956 -k1,5111:13569726,20455956:0 -h1,5111:21157223,20455956:0,0,0 -k1,5111:31966991,20455956:10809768 -g1,5111:31966991,20455956 -) -(1,5112:7246811,21122134:24720180,404226,76021 -h1,5112:7246811,21122134:0,0,0 -g1,5112:7562957,21122134 -g1,5112:7879103,21122134 -g1,5112:8195249,21122134 -g1,5112:8511395,21122134 -g1,5112:8827541,21122134 -g1,5112:9143687,21122134 -g1,5112:9459833,21122134 -g1,5112:9775979,21122134 -g1,5112:10092125,21122134 -g1,5112:10408271,21122134 -g1,5112:10724417,21122134 -g1,5112:11040563,21122134 -g1,5112:11356709,21122134 -g1,5112:11672855,21122134 -g1,5112:11989001,21122134 -g1,5112:12305147,21122134 -g1,5112:12621293,21122134 -g1,5112:12937439,21122134 -g1,5112:13253585,21122134 -g1,5112:13569731,21122134 -g1,5112:13885877,21122134 -g1,5112:14202023,21122134 -g1,5112:14518169,21122134 -g1,5112:14834315,21122134 -g1,5112:15150461,21122134 -g1,5112:15466607,21122134 -g1,5112:15782753,21122134 -g1,5112:16731190,21122134 -g1,5112:17679628,21122134 -g1,5112:18628065,21122134 -g1,5112:19260357,21122134 -g1,5112:20208794,21122134 -g1,5112:20841086,21122134 -h1,5112:21157232,21122134:0,0,0 -k1,5112:31966991,21122134:10809759 -g1,5112:31966991,21122134 -) -(1,5113:7246811,21788312:24720180,328204,0 -h1,5113:7246811,21788312:0,0,0 -g1,5113:7562957,21788312 -g1,5113:7879103,21788312 -g1,5113:8195249,21788312 -g1,5113:8511395,21788312 -g1,5113:8827541,21788312 -g1,5113:9143687,21788312 -g1,5113:9459833,21788312 -g1,5113:9775979,21788312 -g1,5113:10092125,21788312 -g1,5113:10408271,21788312 -g1,5113:10724417,21788312 -g1,5113:11040563,21788312 -g1,5113:11356709,21788312 -g1,5113:11672855,21788312 -g1,5113:11989001,21788312 -g1,5113:12305147,21788312 -g1,5113:12621293,21788312 -g1,5113:12937439,21788312 -g1,5113:13253585,21788312 -g1,5113:13569731,21788312 -g1,5113:13885877,21788312 -g1,5113:14202023,21788312 -g1,5113:14518169,21788312 -g1,5113:14834315,21788312 -g1,5113:15150461,21788312 -g1,5113:15466607,21788312 -g1,5113:15782753,21788312 -g1,5113:16098899,21788312 -g1,5113:16731191,21788312 -g1,5113:17679629,21788312 -g1,5113:18311921,21788312 -g1,5113:18944213,21788312 -h1,5113:19260359,21788312:0,0,0 -k1,5113:31966991,21788312:12706632 -g1,5113:31966991,21788312 -) -(1,5114:7246811,22454490:24720180,404226,76021 -h1,5114:7246811,22454490:0,0,0 -g1,5114:7562957,22454490 -g1,5114:7879103,22454490 -g1,5114:8195249,22454490 -g1,5114:8511395,22454490 -g1,5114:8827541,22454490 -g1,5114:9143687,22454490 -g1,5114:9459833,22454490 -g1,5114:9775979,22454490 -g1,5114:10092125,22454490 -g1,5114:10408271,22454490 -g1,5114:10724417,22454490 -g1,5114:11040563,22454490 -g1,5114:11356709,22454490 -g1,5114:11672855,22454490 -g1,5114:11989001,22454490 -g1,5114:12305147,22454490 -g1,5114:12621293,22454490 -g1,5114:12937439,22454490 -g1,5114:13253585,22454490 -g1,5114:13569731,22454490 -g1,5114:13885877,22454490 -g1,5114:14202023,22454490 -g1,5114:14518169,22454490 -g1,5114:14834315,22454490 -g1,5114:15150461,22454490 -g1,5114:15466607,22454490 -g1,5114:15782753,22454490 -g1,5114:16098899,22454490 -g1,5114:16731191,22454490 -g1,5114:17679629,22454490 -g1,5114:18311921,22454490 -g1,5114:18944213,22454490 -g1,5114:19576505,22454490 -g1,5114:20208797,22454490 -h1,5114:20841089,22454490:0,0,0 -k1,5114:31966991,22454490:11125902 -g1,5114:31966991,22454490 -) -(1,5115:7246811,23120668:24720180,404226,76021 -h1,5115:7246811,23120668:0,0,0 -g1,5115:7562957,23120668 -g1,5115:7879103,23120668 -g1,5115:8195249,23120668 -g1,5115:8511395,23120668 -g1,5115:8827541,23120668 -g1,5115:9143687,23120668 -g1,5115:9459833,23120668 -g1,5115:9775979,23120668 -g1,5115:10092125,23120668 -g1,5115:10408271,23120668 -g1,5115:10724417,23120668 -g1,5115:11040563,23120668 -g1,5115:11356709,23120668 -g1,5115:11672855,23120668 -g1,5115:11989001,23120668 -g1,5115:12305147,23120668 -g1,5115:12621293,23120668 -g1,5115:12937439,23120668 -g1,5115:13253585,23120668 -g1,5115:13569731,23120668 -g1,5115:13885877,23120668 -g1,5115:14202023,23120668 -g1,5115:14518169,23120668 -g1,5115:14834315,23120668 -g1,5115:15150461,23120668 -g1,5115:15466607,23120668 -g1,5115:15782753,23120668 -h1,5115:16098899,23120668:0,0,0 -k1,5115:31966991,23120668:15868092 -g1,5115:31966991,23120668 -) -(1,5116:7246811,23786846:24720180,410518,101187 -h1,5116:7246811,23786846:0,0,0 -g1,5116:14518163,23786846 -h1,5116:15150455,23786846:0,0,0 -k1,5116:31966991,23786846:16816536 -g1,5116:31966991,23786846 -) -(1,5122:7246811,24518560:24720180,379060,7863 -(1,5118:7246811,24518560:0,0,0 -g1,5118:7246811,24518560 -g1,5118:7246811,24518560 -g1,5118:6919131,24518560 -(1,5118:6919131,24518560:0,0,0 -) -g1,5118:7246811,24518560 -) -g1,5122:8195248,24518560 -g1,5122:8511394,24518560 -g1,5122:8827540,24518560 -g1,5122:9459832,24518560 -g1,5122:10092124,24518560 -g1,5122:10408270,24518560 -g1,5122:10724416,24518560 -g1,5122:11040562,24518560 -g1,5122:11356708,24518560 -g1,5122:11672854,24518560 -g1,5122:11989000,24518560 -g1,5122:12305146,24518560 -g1,5122:12937438,24518560 -g1,5122:13569730,24518560 -g1,5122:13885876,24518560 -g1,5122:14202022,24518560 -h1,5122:14518168,24518560:0,0,0 -k1,5122:31966992,24518560:17448824 -g1,5122:31966992,24518560 -) -(1,5122:7246811,25184738:24720180,388497,9436 -h1,5122:7246811,25184738:0,0,0 -g1,5122:8195248,25184738 -g1,5122:8827540,25184738 -g1,5122:9459832,25184738 -g1,5122:10092124,25184738 -g1,5122:12937435,25184738 -g1,5122:13569727,25184738 -h1,5122:14518164,25184738:0,0,0 -k1,5122:31966992,25184738:17448828 -g1,5122:31966992,25184738 -) -(1,5122:7246811,25850916:24720180,388497,9436 -h1,5122:7246811,25850916:0,0,0 -g1,5122:8195248,25850916 -g1,5122:8827540,25850916 -g1,5122:9459832,25850916 -g1,5122:10092124,25850916 -g1,5122:12937435,25850916 -g1,5122:13569727,25850916 -h1,5122:14518164,25850916:0,0,0 -k1,5122:31966992,25850916:17448828 -g1,5122:31966992,25850916 -) -] -) -g1,5123:31966991,25860352 -g1,5123:7246811,25860352 -g1,5123:7246811,25860352 -g1,5123:31966991,25860352 -g1,5123:31966991,25860352 -) -h1,5123:7246811,26056960:0,0,0 -(1,5127:7246811,27422736:24720180,513147,126483 -h1,5126:7246811,27422736:983040,0,0 -k1,5126:9682302,27422736:303605 -k1,5126:10653064,27422736:303606 -(1,5126:10653064,27422736:0,452978,115847 -r1,5138:13473313,27422736:2820249,568825,115847 -k1,5126:10653064,27422736:-2820249 -) -(1,5126:10653064,27422736:2820249,452978,115847 -k1,5126:10653064,27422736:3277 -h1,5126:13470036,27422736:0,411205,112570 -) -k1,5126:13776918,27422736:303605 -k1,5126:15271968,27422736:303605 -(1,5126:15271968,27422736:0,452978,115847 -r1,5138:18092217,27422736:2820249,568825,115847 -k1,5126:15271968,27422736:-2820249 -) -(1,5126:15271968,27422736:2820249,452978,115847 -k1,5126:15271968,27422736:3277 -h1,5126:18088940,27422736:0,411205,112570 -) -k1,5126:18569492,27422736:303605 -k1,5126:20758569,27422736:303606 -k1,5126:23757670,27422736:303605 -k1,5126:24747437,27422736:303605 -k1,5126:25406903,27422736:303606 -k1,5126:26976664,27422736:303605 -k1,5126:27939561,27422736:303605 -k1,5126:29244452,27422736:303501 -k1,5126:30739502,27422736:303605 -k1,5126:31966991,27422736:0 -) -(1,5127:7246811,28264224:24720180,513147,126483 -k1,5126:10381671,28264224:225717 -k1,5126:11711670,28264224:225717 -k1,5126:13780259,28264224:225717 -k1,5126:14622014,28264224:225717 -k1,5126:15618434,28264224:225717 -k1,5126:19029856,28264224:225717 -k1,5126:22752573,28264224:225716 -k1,5126:23787660,28264224:225717 -k1,5126:25751392,28264224:225717 -k1,5126:28199435,28264224:225717 -k1,5126:28891113,28264224:225717 -k1,5126:30135915,28264224:225717 -k1,5126:31966991,28264224:0 -) -(1,5127:7246811,29105712:24720180,513147,126483 -k1,5126:10840048,29105712:174224 -k1,5126:12527497,29105712:174223 -(1,5126:12527497,29105712:0,452978,115847 -r1,5138:15347746,29105712:2820249,568825,115847 -k1,5126:12527497,29105712:-2820249 -) -(1,5126:12527497,29105712:2820249,452978,115847 -k1,5126:12527497,29105712:3277 -h1,5126:15344469,29105712:0,411205,112570 -) -k1,5126:15521970,29105712:174224 -k1,5126:16227691,29105712:174224 -k1,5126:19235035,29105712:174223 -k1,5126:20481428,29105712:174224 -k1,5126:22698408,29105712:174223 -(1,5126:22698408,29105712:0,452978,115847 -r1,5138:25518657,29105712:2820249,568825,115847 -k1,5126:22698408,29105712:-2820249 -) -(1,5126:22698408,29105712:2820249,452978,115847 -k1,5126:22698408,29105712:3277 -h1,5126:25515380,29105712:0,411205,112570 -) -k1,5126:25692881,29105712:174224 -k1,5126:26398602,29105712:174224 -k1,5126:28614271,29105712:174223 -k1,5126:29474657,29105712:174224 -k1,5126:31966991,29105712:0 -) -(1,5127:7246811,29947200:24720180,513147,134348 -k1,5126:7974891,29947200:196583 -k1,5126:9237745,29947200:196583 -k1,5126:12797637,29947200:196584 -k1,5126:13622055,29947200:196583 -k1,5126:16623579,29947200:196583 -(1,5126:16623579,29947200:0,452978,115847 -r1,5138:18740404,29947200:2116825,568825,115847 -k1,5126:16623579,29947200:-2116825 -) -(1,5126:16623579,29947200:2116825,452978,115847 -k1,5126:16623579,29947200:3277 -h1,5126:18737127,29947200:0,411205,112570 -) -k1,5126:18936987,29947200:196583 -k1,5126:20325015,29947200:196583 -(1,5126:20325015,29947200:0,452978,115847 -r1,5138:23145264,29947200:2820249,568825,115847 -k1,5126:20325015,29947200:-2820249 -) -(1,5126:20325015,29947200:2820249,452978,115847 -k1,5126:20325015,29947200:3277 -h1,5126:23141987,29947200:0,411205,112570 -) -k1,5126:23515518,29947200:196584 -k1,5126:25450116,29947200:196583 -k1,5126:30320727,29947200:196583 -k1,5127:31966991,29947200:0 -) -(1,5127:7246811,30788688:24720180,505283,126483 -k1,5126:9153908,30788688:184811 -k1,5126:10623226,30788688:184812 -k1,5126:13300371,30788688:184811 -k1,5126:15168148,30788688:184812 -k1,5126:17189278,30788688:184811 -k1,5126:21894763,30788688:184811 -k1,5126:23098660,30788688:184812 -k1,5126:25004446,30788688:184811 -k1,5126:30599255,30788688:184812 -k1,5126:31315563,30788688:184811 -k1,5126:31966991,30788688:0 -) -(1,5127:7246811,31630176:24720180,513147,134348 -k1,5126:8700777,31630176:174048 -k1,5126:12274832,31630176:174047 -k1,5126:13100308,31630176:174048 -k1,5126:14293440,31630176:174047 -k1,5126:15559973,31630176:174048 -k1,5126:16401176,31630176:174047 -(1,5126:16401176,31630176:0,452978,115847 -r1,5138:18518001,31630176:2116825,568825,115847 -k1,5126:16401176,31630176:-2116825 -) -(1,5126:16401176,31630176:2116825,452978,115847 -k1,5126:16401176,31630176:3277 -h1,5126:18514724,31630176:0,411205,112570 -) -k1,5126:18692049,31630176:174048 -k1,5126:20057542,31630176:174048 -(1,5126:20057542,31630176:0,452978,115847 -r1,5138:22877791,31630176:2820249,568825,115847 -k1,5126:20057542,31630176:-2820249 -) -(1,5126:20057542,31630176:2820249,452978,115847 -k1,5126:20057542,31630176:3277 -h1,5126:22874514,31630176:0,411205,112570 -) -k1,5126:23051838,31630176:174047 -k1,5126:24613283,31630176:174048 -(1,5126:24613283,31630176:0,452978,115847 -r1,5138:27433532,31630176:2820249,568825,115847 -k1,5126:24613283,31630176:-2820249 -) -(1,5126:24613283,31630176:2820249,452978,115847 -k1,5126:24613283,31630176:3277 -h1,5126:27430255,31630176:0,411205,112570 -) -k1,5126:27607579,31630176:174047 -k1,5126:28973072,31630176:174048 -(1,5126:28973072,31630176:0,452978,115847 -r1,5138:31793321,31630176:2820249,568825,115847 -k1,5126:28973072,31630176:-2820249 -) -(1,5126:28973072,31630176:2820249,452978,115847 -k1,5126:28973072,31630176:3277 -h1,5126:31790044,31630176:0,411205,112570 -) -k1,5126:31966991,31630176:0 -) -(1,5127:7246811,32471664:24720180,513147,134348 -k1,5126:8612732,32471664:217075 -k1,5126:9489100,32471664:217076 -k1,5126:11402902,32471664:217075 -k1,5126:14645775,32471664:217076 -k1,5126:15929121,32471664:217075 -k1,5126:17521797,32471664:217075 -k1,5126:19459848,32471664:217076 -k1,5126:21705918,32471664:217075 -k1,5126:22995162,32471664:217075 -k1,5126:24498054,32471664:217076 -k1,5126:26761163,32471664:217075 -k1,5126:28474426,32471664:217076 -k1,5126:30341698,32471664:217075 -k1,5127:31966991,32471664:0 -) -(1,5127:7246811,33313152:24720180,505283,7863 -k1,5127:31966991,33313152:23237756 -g1,5127:31966991,33313152 -) -] -) -] -r1,5138:32583029,33910839:26214,28049958,0 -) -] -) -) -g1,5127:32583029,33321015 -) -h1,5127:6630773,33937053:0,0,0 -(1,5129:6630773,36028313:25952256,555811,147783 -(1,5129:6630773,36028313:2899444,534184,0 -g1,5129:6630773,36028313 -g1,5129:9530217,36028313 -) -g1,5129:14396266,36028313 -g1,5129:17708063,36028313 -g1,5129:19275291,36028313 -k1,5129:32583029,36028313:11517753 -g1,5129:32583029,36028313 -) -(1,5132:6630773,37263017:25952256,513147,134348 -k1,5131:8001598,37263017:174138 -k1,5131:9777437,37263017:174139 -k1,5131:11799690,37263017:174138 -k1,5131:13211804,37263017:174139 -k1,5131:14045234,37263017:174138 -k1,5131:17102957,37263017:174139 -k1,5131:18296180,37263017:174138 -k1,5131:20209645,37263017:174139 -k1,5131:21043075,37263017:174138 -k1,5131:23930405,37263017:174139 -k1,5131:26314417,37263017:174138 -k1,5131:28022754,37263017:174139 -k1,5131:28812930,37263017:174138 -k1,5131:30376432,37263017:174139 -k1,5131:32583029,37263017:0 -) -(1,5132:6630773,38104505:25952256,505283,134348 -k1,5131:8198394,38104505:169083 -k1,5131:11100983,38104505:169082 -k1,5131:12461511,38104505:169083 -k1,5131:14817530,38104505:169083 -k1,5131:15518109,38104505:169082 -k1,5131:16338620,38104505:169083 -k1,5131:17600188,38104505:169083 -k1,5131:21736165,38104505:169083 -k1,5131:22591409,38104505:169082 -k1,5131:25850515,38104505:169083 -k1,5131:28048593,38104505:169083 -k1,5131:29822652,38104505:169082 -k1,5131:30860087,38104505:169083 -k1,5131:32583029,38104505:0 -) -(1,5132:6630773,38945993:25952256,505283,134348 -k1,5131:7920631,38945993:270773 -k1,5131:10626721,38945993:270772 -k1,5131:13511725,38945993:270773 -k1,5131:14973943,38945993:270773 -k1,5131:17124288,38945993:270772 -k1,5131:20009292,38945993:270773 -k1,5131:21148417,38945993:270773 -k1,5131:22523471,38945993:270772 -k1,5131:23886729,38945993:270773 -k1,5131:27338620,38945993:270773 -k1,5131:30036190,38945993:270772 -k1,5131:31116333,38945993:270773 -k1,5131:32583029,38945993:0 -) -(1,5132:6630773,39787481:25952256,513147,134348 -g1,5131:10184790,39787481 -g1,5131:11683598,39787481 -g1,5131:13074272,39787481 -g1,5131:16166916,39787481 -g1,5131:17665724,39787481 -g1,5131:18524245,39787481 -g1,5131:19494177,39787481 -k1,5132:32583029,39787481:9269414 -g1,5132:32583029,39787481 -) -v1,5134:6630773,41123561:0,393216,0 -(1,5135:6630773,45090731:25952256,4360386,616038 -g1,5135:6630773,45090731 -(1,5135:6630773,45090731:25952256,4360386,616038 -(1,5135:6630773,45706769:25952256,4976424,0 -[1,5135:6630773,45706769:25952256,4976424,0 -(1,5135:6630773,45680555:25952256,4923996,0 -r1,5138:6656987,45680555:26214,4923996,0 -[1,5135:6656987,45680555:25899828,4923996,0 -(1,5135:6656987,45090731:25899828,3744348,0 -[1,5135:7246811,45090731:24720180,3744348,0 -(1,5135:7246811,42431919:24720180,1085536,298548 -(1,5134:7246811,42431919:0,1085536,298548 -r1,5138:8753226,42431919:1506415,1384084,298548 -k1,5134:7246811,42431919:-1506415 -) -(1,5134:7246811,42431919:1506415,1085536,298548 -) -k1,5134:9036166,42431919:282940 -k1,5134:11102340,42431919:282939 -k1,5134:13120673,42431919:282940 -k1,5134:14422698,42431919:282940 -k1,5134:17920179,42431919:282940 -k1,5134:20949732,42431919:282939 -(1,5134:20949732,42431919:0,452978,115847 -r1,5138:21659710,42431919:709978,568825,115847 -k1,5134:20949732,42431919:-709978 -) -(1,5134:20949732,42431919:709978,452978,115847 -k1,5134:20949732,42431919:3277 -h1,5134:21656433,42431919:0,411205,112570 -) -k1,5134:21942650,42431919:282940 -k1,5134:23034960,42431919:282940 -k1,5134:24784596,42431919:282940 -k1,5134:26086620,42431919:282939 -k1,5134:30775546,42431919:282940 -k1,5134:31966991,42431919:0 -) -(1,5135:7246811,43273407:24720180,513147,134348 -k1,5134:12274316,43273407:160146 -k1,5134:13085890,43273407:160146 -k1,5134:14873950,43273407:160146 -k1,5134:17920957,43273407:160146 -k1,5134:19100188,43273407:160146 -k1,5134:21568513,43273407:160147 -k1,5134:22411544,43273407:160146 -k1,5134:24795982,43273407:160146 -k1,5134:25947688,43273407:160146 -k1,5134:29098242,43273407:160146 -k1,5134:30947906,43273407:160146 -k1,5134:31966991,43273407:0 -) -(1,5135:7246811,44114895:24720180,513147,126483 -k1,5134:9535782,44114895:220655 -k1,5134:10415728,44114895:220654 -k1,5134:11655468,44114895:220655 -k1,5134:14589314,44114895:220655 -k1,5134:15801528,44114895:220654 -k1,5134:17262124,44114895:220655 -k1,5134:18679466,44114895:220655 -k1,5134:20553594,44114895:220655 -k1,5134:23055556,44114895:220654 -k1,5134:23927639,44114895:220655 -k1,5134:25352190,44114895:220655 -k1,5134:27814831,44114895:220654 -k1,5134:29920957,44114895:220655 -k1,5134:31966991,44114895:0 -) -(1,5135:7246811,44956383:24720180,513147,134348 -g1,5134:9706377,44956383 -g1,5134:13114904,44956383 -g1,5134:17121119,44956383 -g1,5134:17936386,44956383 -g1,5134:19774670,44956383 -g1,5134:24072521,44956383 -g1,5134:25463195,44956383 -g1,5134:27269367,44956383 -k1,5135:31966991,44956383:2658144 -g1,5135:31966991,44956383 -) -] -) -] -r1,5138:32583029,45680555:26214,4923996,0 -) -] -) -) -g1,5135:32583029,45090731 -) -h1,5135:6630773,45706769:0,0,0 -] -(1,5138:32583029,45706769:0,0,0 -g1,5138:32583029,45706769 -) -) -] -(1,5138:6630773,47279633:25952256,0,0 -h1,5138:6630773,47279633:25952256,0,0 -) -] -(1,5138:4262630,4025873:0,0,0 -[1,5138:-473656,4025873:0,0,0 -(1,5138:-473656,-710413:0,0,0 -(1,5138:-473656,-710413:0,0,0 -g1,5138:-473656,-710413 -) -g1,5138:-473656,-710413 -) -] -) -] -!28054 -}94 -Input:696:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:697:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:698:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:699:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:700:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:701:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:702:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:703:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:704:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:705:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:706:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:707:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:708:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:709:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:710:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1376 -{95 -[1,5189:4262630,47279633:28320399,43253760,0 -(1,5189:4262630,4025873:0,0,0 -[1,5189:-473656,4025873:0,0,0 -(1,5189:-473656,-710413:0,0,0 -(1,5189:-473656,-644877:0,0,0 -k1,5189:-473656,-644877:-65536 -) -(1,5189:-473656,4736287:0,0,0 -k1,5189:-473656,4736287:5209943 -) -g1,5189:-473656,-710413 -) -] -) -[1,5189:6630773,47279633:25952256,43253760,0 -[1,5189:6630773,4812305:25952256,786432,0 -(1,5189:6630773,4812305:25952256,505283,134348 -(1,5189:6630773,4812305:25952256,505283,134348 -g1,5189:3078558,4812305 -[1,5189:3078558,4812305:0,0,0 -(1,5189:3078558,2439708:0,1703936,0 -k1,5189:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,5189:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,5189:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,5189:3078558,4812305:0,0,0 -(1,5189:3078558,2439708:0,1703936,0 -g1,5189:29030814,2439708 -g1,5189:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,5189:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,5189:37855564,2439708:1179648,16384,0 -) -) -k1,5189:3078556,2439708:-34777008 -) -] -[1,5189:3078558,4812305:0,0,0 -(1,5189:3078558,49800853:0,16384,2228224 -k1,5189:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,5189:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,5189:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,5189:3078558,4812305:0,0,0 -(1,5189:3078558,49800853:0,16384,2228224 -g1,5189:29030814,49800853 -g1,5189:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,5189:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,5189:37855564,49800853:1179648,16384,0 -) -) -k1,5189:3078556,49800853:-34777008 -) -] -g1,5189:6630773,4812305 -k1,5189:19515153,4812305:12087462 -g1,5189:20901894,4812305 -g1,5189:21550700,4812305 -g1,5189:24864855,4812305 -g1,5189:27600327,4812305 -g1,5189:29010006,4812305 -) -) -] -[1,5189:6630773,45706769:25952256,40108032,0 -(1,5189:6630773,45706769:25952256,40108032,0 -(1,5189:6630773,45706769:0,0,0 -g1,5189:6630773,45706769 -) -[1,5189:6630773,45706769:25952256,40108032,0 -(1,5138:6630773,6254097:25952256,505283,134348 -h1,5137:6630773,6254097:983040,0,0 -k1,5137:8715910,6254097:273067 -k1,5137:10853475,6254097:273066 -k1,5137:12145627,6254097:273067 -k1,5137:17495112,6254097:273066 -k1,5137:20403382,6254097:273067 -k1,5137:23059337,6254097:273066 -k1,5137:25713327,6254097:273067 -k1,5137:27177838,6254097:273066 -k1,5137:29833794,6254097:273067 -k1,5137:32583029,6254097:0 -) -(1,5138:6630773,7095585:25952256,513147,134348 -k1,5137:8309204,7095585:165205 -k1,5137:11513314,7095585:165206 -k1,5137:12361404,7095585:165205 -k1,5137:16230048,7095585:165205 -k1,5137:17414339,7095585:165206 -k1,5137:20466405,7095585:165205 -k1,5137:21499962,7095585:165205 -k1,5137:23195434,7095585:165206 -k1,5137:24012067,7095585:165205 -k1,5137:27446208,7095585:165205 -k1,5137:29330423,7095585:165206 -k1,5137:30514713,7095585:165205 -k1,5137:32583029,7095585:0 -) -(1,5138:6630773,7937073:25952256,513147,126483 -k1,5137:7451687,7937073:161622 -k1,5137:8632394,7937073:161622 -k1,5137:11680877,7937073:161622 -k1,5137:13223342,7937073:161621 -k1,5137:15360219,7937073:161622 -k1,5137:17972232,7937073:161622 -k1,5137:20959111,7937073:161622 -k1,5137:23163490,7937073:161622 -k1,5137:24193464,7937073:161622 -k1,5137:26035428,7937073:161621 -k1,5137:26813088,7937073:161622 -k1,5137:28817582,7937073:161622 -k1,5137:29638496,7937073:161622 -k1,5137:32583029,7937073:0 -) -(1,5138:6630773,8778561:25952256,513147,134348 -g1,5137:8568017,8778561 -g1,5137:10926002,8778561 -g1,5137:13076893,8778561 -g1,5137:14718569,8778561 -g1,5137:15936883,8778561 -g1,5137:18885347,8778561 -g1,5137:19743868,8778561 -g1,5137:20962182,8778561 -g1,5137:23874602,8778561 -g1,5137:25811846,8778561 -g1,5137:27992884,8778561 -g1,5137:28843541,8778561 -g1,5137:30061855,8778561 -k1,5138:32583029,8778561:279187 -g1,5138:32583029,8778561 -) -v1,5140:6630773,9969027:0,393216,0 -(1,5168:6630773,21026193:25952256,11450382,196608 -g1,5168:6630773,21026193 -g1,5168:6630773,21026193 -g1,5168:6434165,21026193 -(1,5168:6434165,21026193:0,11450382,196608 -r1,5189:32779637,21026193:26345472,11646990,196608 -k1,5168:6434165,21026193:-26345472 -) -(1,5168:6434165,21026193:26345472,11450382,196608 -[1,5168:6630773,21026193:25952256,11253774,0 -(1,5142:6630773,10182937:25952256,410518,101187 -(1,5141:6630773,10182937:0,0,0 -g1,5141:6630773,10182937 -g1,5141:6630773,10182937 -g1,5141:6303093,10182937 -(1,5141:6303093,10182937:0,0,0 -) -g1,5141:6630773,10182937 -) -g1,5142:12005250,10182937 -g1,5142:12953688,10182937 -g1,5142:17063583,10182937 -g1,5142:17695875,10182937 -g1,5142:19592750,10182937 -g1,5142:20225042,10182937 -g1,5142:20857334,10182937 -h1,5142:21489626,10182937:0,0,0 -k1,5142:32583029,10182937:11093403 -g1,5142:32583029,10182937 -) -(1,5143:6630773,10849115:25952256,410518,101187 -h1,5143:6630773,10849115:0,0,0 -g1,5143:13902125,10849115 -h1,5143:14534417,10849115:0,0,0 -k1,5143:32583029,10849115:18048612 -g1,5143:32583029,10849115 -) -(1,5149:6630773,11580829:25952256,379060,0 -(1,5145:6630773,11580829:0,0,0 -g1,5145:6630773,11580829 -g1,5145:6630773,11580829 -g1,5145:6303093,11580829 -(1,5145:6303093,11580829:0,0,0 -) -g1,5145:6630773,11580829 -) -g1,5149:7579210,11580829 -g1,5149:7895356,11580829 -g1,5149:8211502,11580829 -g1,5149:8843794,11580829 -h1,5149:9159940,11580829:0,0,0 -k1,5149:32583028,11580829:23423088 -g1,5149:32583028,11580829 -) -(1,5149:6630773,12247007:25952256,388497,9436 -h1,5149:6630773,12247007:0,0,0 -g1,5149:7579210,12247007 -g1,5149:8211502,12247007 -g1,5149:8843794,12247007 -h1,5149:9159940,12247007:0,0,0 -k1,5149:32583028,12247007:23423088 -g1,5149:32583028,12247007 -) -(1,5149:6630773,12913185:25952256,388497,9436 -h1,5149:6630773,12913185:0,0,0 -g1,5149:7579210,12913185 -g1,5149:8211502,12913185 -g1,5149:8843794,12913185 -h1,5149:9159940,12913185:0,0,0 -k1,5149:32583028,12913185:23423088 -g1,5149:32583028,12913185 -) -(1,5151:6630773,14234723:25952256,410518,101187 -(1,5150:6630773,14234723:0,0,0 -g1,5150:6630773,14234723 -g1,5150:6630773,14234723 -g1,5150:6303093,14234723 -(1,5150:6303093,14234723:0,0,0 -) -g1,5150:6630773,14234723 -) -g1,5151:12321396,14234723 -g1,5151:12953688,14234723 -g1,5151:14534418,14234723 -g1,5151:15482856,14234723 -g1,5151:21173479,14234723 -g1,5151:21805771,14234723 -h1,5151:23070355,14234723:0,0,0 -k1,5151:32583029,14234723:9512674 -g1,5151:32583029,14234723 -) -(1,5152:6630773,14900901:25952256,410518,101187 -h1,5152:6630773,14900901:0,0,0 -g1,5152:13902125,14900901 -h1,5152:14534417,14900901:0,0,0 -k1,5152:32583029,14900901:18048612 -g1,5152:32583029,14900901 -) -(1,5158:6630773,15632615:25952256,379060,0 -(1,5154:6630773,15632615:0,0,0 -g1,5154:6630773,15632615 -g1,5154:6630773,15632615 -g1,5154:6303093,15632615 -(1,5154:6303093,15632615:0,0,0 -) -g1,5154:6630773,15632615 -) -g1,5158:7579210,15632615 -g1,5158:7895356,15632615 -g1,5158:8211502,15632615 -g1,5158:8843794,15632615 -h1,5158:9159940,15632615:0,0,0 -k1,5158:32583028,15632615:23423088 -g1,5158:32583028,15632615 -) -(1,5158:6630773,16298793:25952256,388497,9436 -h1,5158:6630773,16298793:0,0,0 -g1,5158:7579210,16298793 -g1,5158:8211502,16298793 -g1,5158:8843794,16298793 -h1,5158:9159940,16298793:0,0,0 -k1,5158:32583028,16298793:23423088 -g1,5158:32583028,16298793 -) -(1,5158:6630773,16964971:25952256,388497,9436 -h1,5158:6630773,16964971:0,0,0 -g1,5158:7579210,16964971 -g1,5158:8211502,16964971 -g1,5158:8843794,16964971 -h1,5158:9159940,16964971:0,0,0 -k1,5158:32583028,16964971:23423088 -g1,5158:32583028,16964971 -) -(1,5160:6630773,18286509:25952256,410518,101187 -(1,5159:6630773,18286509:0,0,0 -g1,5159:6630773,18286509 -g1,5159:6630773,18286509 -g1,5159:6303093,18286509 -(1,5159:6303093,18286509:0,0,0 -) -g1,5159:6630773,18286509 -) -k1,5160:6630773,18286509:0 -g1,5160:16747436,18286509 -g1,5160:17695874,18286509 -k1,5160:17695874,18286509:0 -h1,5160:27496391,18286509:0,0,0 -k1,5160:32583029,18286509:5086638 -g1,5160:32583029,18286509 -) -(1,5161:6630773,18952687:25952256,410518,101187 -h1,5161:6630773,18952687:0,0,0 -g1,5161:13902125,18952687 -h1,5161:14534417,18952687:0,0,0 -k1,5161:32583029,18952687:18048612 -g1,5161:32583029,18952687 -) -(1,5167:6630773,19684401:25952256,379060,0 -(1,5163:6630773,19684401:0,0,0 -g1,5163:6630773,19684401 -g1,5163:6630773,19684401 -g1,5163:6303093,19684401 -(1,5163:6303093,19684401:0,0,0 -) -g1,5163:6630773,19684401 -) -g1,5167:7579210,19684401 -g1,5167:7895356,19684401 -g1,5167:8211502,19684401 -g1,5167:8843794,19684401 -h1,5167:9159940,19684401:0,0,0 -k1,5167:32583028,19684401:23423088 -g1,5167:32583028,19684401 -) -(1,5167:6630773,20350579:25952256,388497,9436 -h1,5167:6630773,20350579:0,0,0 -g1,5167:7579210,20350579 -g1,5167:8211502,20350579 -g1,5167:8843794,20350579 -h1,5167:9159940,20350579:0,0,0 -k1,5167:32583028,20350579:23423088 -g1,5167:32583028,20350579 -) -(1,5167:6630773,21016757:25952256,388497,9436 -h1,5167:6630773,21016757:0,0,0 -g1,5167:7579210,21016757 -g1,5167:8211502,21016757 -g1,5167:8843794,21016757 -h1,5167:9159940,21016757:0,0,0 -k1,5167:32583028,21016757:23423088 -g1,5167:32583028,21016757 -) -] -) -g1,5168:32583029,21026193 -g1,5168:6630773,21026193 -g1,5168:6630773,21026193 -g1,5168:32583029,21026193 -g1,5168:32583029,21026193 -) -h1,5168:6630773,21222801:0,0,0 -(1,5172:6630773,22588577:25952256,505283,134348 -h1,5171:6630773,22588577:983040,0,0 -k1,5171:10031235,22588577:244248 -k1,5171:11542948,22588577:244247 -k1,5171:14291327,22588577:244248 -k1,5171:15820081,22588577:244248 -(1,5171:15820081,22588577:0,452978,115847 -r1,5189:18288618,22588577:2468537,568825,115847 -k1,5171:15820081,22588577:-2468537 -) -(1,5171:15820081,22588577:2468537,452978,115847 -k1,5171:15820081,22588577:3277 -h1,5171:18285341,22588577:0,411205,112570 -) -k1,5171:18532865,22588577:244247 -k1,5171:21118059,22588577:244248 -k1,5171:22381392,22588577:244248 -k1,5171:25052437,22588577:244247 -k1,5171:27595033,22588577:244248 -k1,5171:28490709,22588577:244248 -k1,5171:30005044,22588577:244247 -k1,5171:30605152,22588577:244248 -k1,5171:32583029,22588577:0 -) -(1,5172:6630773,23430065:25952256,505283,134348 -k1,5171:8143359,23430065:280509 -k1,5171:9922020,23430065:280508 -h1,5171:10718938,23430065:0,0,0 -k1,5171:11380211,23430065:280509 -k1,5171:12529071,23430065:280508 -k1,5171:13913862,23430065:280509 -k1,5171:15286855,23430065:280508 -(1,5171:15286855,23430065:0,452978,115847 -r1,5189:17755392,23430065:2468537,568825,115847 -k1,5171:15286855,23430065:-2468537 -) -(1,5171:15286855,23430065:2468537,452978,115847 -k1,5171:15286855,23430065:3277 -h1,5171:17752115,23430065:0,411205,112570 -) -k1,5171:18035901,23430065:280509 -k1,5171:18967837,23430065:280508 -k1,5171:21980542,23430065:280509 -k1,5171:23280135,23430065:280508 -k1,5171:25987442,23430065:280509 -k1,5171:28566298,23430065:280508 -k1,5171:29498235,23430065:280509 -k1,5171:31048831,23430065:280508 -k1,5171:32583029,23430065:0 -) -(1,5172:6630773,24271553:25952256,513147,134348 -k1,5171:7519986,24271553:229921 -k1,5171:8105768,24271553:229922 -k1,5171:9725052,24271553:229921 -k1,5171:12004939,24271553:229921 -k1,5171:12862695,24271553:229921 -k1,5171:14295858,24271553:229922 -k1,5171:16066530,24271553:229921 -k1,5171:17315536,24271553:229921 -k1,5171:20617785,24271553:229921 -k1,5171:21499135,24271553:229922 -(1,5171:21499135,24271553:0,452978,115847 -r1,5189:23967672,24271553:2468537,568825,115847 -k1,5171:21499135,24271553:-2468537 -) -(1,5171:21499135,24271553:2468537,452978,115847 -k1,5171:21499135,24271553:3277 -h1,5171:23964395,24271553:0,411205,112570 -) -k1,5171:24197593,24271553:229921 -k1,5171:24959011,24271553:229921 -k1,5171:27476139,24271553:229921 -k1,5171:28061921,24271553:229922 -k1,5171:30674731,24271553:229921 -k1,5171:31563944,24271553:229921 -k1,5171:32583029,24271553:0 -) -(1,5172:6630773,25113041:25952256,513147,134348 -k1,5171:8249869,25113041:229733 -k1,5171:10355899,25113041:229734 -k1,5171:12323647,25113041:229733 -k1,5171:15572624,25113041:229733 -k1,5171:18737060,25113041:229734 -k1,5171:20098600,25113041:229733 -k1,5171:22306211,25113041:229734 -k1,5171:23195236,25113041:229733 -k1,5171:25936964,25113041:229733 -k1,5171:28353634,25113041:229734 -k1,5171:31563944,25113041:229733 -k1,5171:32583029,25113041:0 -) -(1,5172:6630773,25954529:25952256,513147,134348 -k1,5171:8704070,25954529:230425 -k1,5171:9593786,25954529:230424 -k1,5171:12578034,25954529:230425 -k1,5171:13164318,25954529:230424 -k1,5171:16090239,25954529:230425 -k1,5171:16972091,25954529:230424 -k1,5171:18359226,25954529:230425 -k1,5171:19272535,25954529:230424 -k1,5171:21153157,25954529:230425 -k1,5171:24270442,25954529:230424 -k1,5171:25605149,25954529:230425 -k1,5171:26583339,25954529:230424 -k1,5171:29019051,25954529:230425 -k1,5171:29935637,25954529:230424 -k1,5171:30936765,25954529:230425 -k1,5172:32583029,25954529:0 -) -(1,5172:6630773,26796017:25952256,513147,134348 -k1,5171:8430019,26796017:160191 -k1,5171:9241638,26796017:160191 -(1,5171:9241638,26796017:0,452978,115847 -r1,5189:11710175,26796017:2468537,568825,115847 -k1,5171:9241638,26796017:-2468537 -) -(1,5171:9241638,26796017:2468537,452978,115847 -k1,5171:9241638,26796017:3277 -h1,5171:11706898,26796017:0,411205,112570 -) -k1,5171:12044037,26796017:160192 -k1,5171:14994096,26796017:160191 -(1,5171:14994096,26796017:0,452978,115847 -r1,5189:17462633,26796017:2468537,568825,115847 -k1,5171:14994096,26796017:-2468537 -) -(1,5171:14994096,26796017:2468537,452978,115847 -k1,5171:14994096,26796017:3277 -h1,5171:17459356,26796017:0,411205,112570 -) -k1,5171:17622824,26796017:160191 -k1,5171:18314512,26796017:160191 -k1,5171:19828678,26796017:160192 -k1,5171:21835018,26796017:160191 -k1,5171:23972430,26796017:160191 -k1,5171:25080272,26796017:160191 -k1,5171:27500801,26796017:160192 -k1,5171:30374183,26796017:160191 -k1,5171:31193666,26796017:160191 -k1,5171:32583029,26796017:0 -) -(1,5172:6630773,27637505:25952256,513147,126483 -k1,5171:9060148,27637505:222778 -k1,5171:9969088,27637505:222778 -k1,5171:10649962,27637505:222777 -k1,5171:13494835,27637505:222778 -k1,5171:14073473,27637505:222778 -k1,5171:16274128,27637505:222778 -k1,5171:18529833,27637505:222778 -k1,5171:21465801,27637505:222777 -k1,5171:22374741,27637505:222778 -k1,5171:24479713,27637505:222778 -k1,5171:25330326,27637505:222778 -k1,5171:26572189,27637505:222778 -k1,5171:28162047,27637505:222777 -k1,5171:29051981,27637505:222778 -(1,5171:29051981,27637505:0,452978,115847 -r1,5189:31168806,27637505:2116825,568825,115847 -k1,5171:29051981,27637505:-2116825 -) -(1,5171:29051981,27637505:2116825,452978,115847 -k1,5171:29051981,27637505:3277 -h1,5171:31165529,27637505:0,411205,112570 -) -k1,5171:31391584,27637505:222778 -k1,5172:32583029,27637505:0 -) -(1,5172:6630773,28478993:25952256,513147,126483 -(1,5171:6630773,28478993:0,414482,115847 -r1,5189:8395886,28478993:1765113,530329,115847 -k1,5171:6630773,28478993:-1765113 -) -(1,5171:6630773,28478993:1765113,414482,115847 -k1,5171:6630773,28478993:3277 -h1,5171:8392609,28478993:0,411205,112570 -) -k1,5171:8561535,28478993:165649 -k1,5171:9930425,28478993:165649 -k1,5171:13080584,28478993:165649 -k1,5171:14350516,28478993:165650 -k1,5171:15263931,28478993:165649 -k1,5171:17801328,28478993:165649 -k1,5171:18618405,28478993:165649 -k1,5171:19915861,28478993:165649 -k1,5171:20740802,28478993:165649 -k1,5171:22415090,28478993:165649 -k1,5171:26255999,28478993:165650 -k1,5171:27107810,28478993:165649 -k1,5171:28039575,28478993:165649 -k1,5171:29713863,28478993:165649 -k1,5171:32583029,28478993:0 -) -(1,5172:6630773,29320481:25952256,505283,134348 -g1,5171:11496165,29320481 -g1,5171:13831868,29320481 -g1,5171:14682525,29320481 -g1,5171:16038464,29320481 -k1,5172:32583029,29320481:14815725 -g1,5172:32583029,29320481 -) -v1,5173:6630773,30686257:0,393216,0 -(1,5175:6630773,38021217:25952256,7728176,616038 -g1,5175:6630773,38021217 -(1,5175:6630773,38021217:25952256,7728176,616038 -(1,5175:6630773,38637255:25952256,8344214,0 -[1,5175:6630773,38637255:25952256,8344214,0 -(1,5175:6630773,38611041:25952256,8291786,0 -r1,5189:6656987,38611041:26214,8291786,0 -[1,5175:6656987,38611041:25899828,8291786,0 -(1,5175:6656987,38021217:25899828,7112138,0 -[1,5175:7246811,38021217:24720180,7112138,0 -(1,5175:7246811,31996453:24720180,1087374,126483 -k1,5173:8653906,31996453:197392 -k1,5173:8653906,31996453:0 -k1,5174:10047985,31996453:197392 -k1,5174:11551510,31996453:197392 -k1,5174:13084525,31996453:197391 -k1,5174:13933345,31996453:197392 -k1,5174:14878503,31996453:197392 -k1,5174:18422163,31996453:197392 -k1,5174:19151052,31996453:197392 -k1,5174:19999872,31996453:197392 -k1,5174:21467352,31996453:197392 -k1,5174:22020604,31996453:197392 -k1,5174:23607358,31996453:197391 -k1,5174:25681046,31996453:197392 -k1,5174:27733107,31996453:197392 -k1,5174:28739869,31996453:197392 -k1,5174:29956346,31996453:197392 -k1,5174:31966991,31996453:0 -) -(1,5175:7246811,32837941:24720180,513147,134348 -k1,5174:8058313,32837941:195464 -k1,5174:9410488,32837941:195465 -k1,5174:12162511,32837941:195464 -k1,5174:14093368,32837941:195464 -k1,5174:17028238,32837941:195465 -k1,5174:18415147,32837941:195464 -(1,5174:18415147,32837941:0,452978,115847 -r1,5189:20883684,32837941:2468537,568825,115847 -k1,5174:18415147,32837941:-2468537 -) -(1,5174:18415147,32837941:2468537,452978,115847 -k1,5174:18415147,32837941:3277 -h1,5174:20880407,32837941:0,411205,112570 -) -k1,5174:21252818,32837941:195464 -k1,5174:23499559,32837941:195464 -k1,5174:24050884,32837941:195465 -k1,5174:25529543,32837941:195464 -k1,5174:27114370,32837941:195464 -k1,5174:29186131,32837941:195465 -k1,5174:30573040,32837941:195464 -k1,5174:31966991,32837941:0 -) -(1,5175:7246811,33679429:24720180,513147,126483 -k1,5174:9167161,33679429:265566 -k1,5174:12052857,33679429:265567 -k1,5174:15031614,33679429:265566 -k1,5174:16691131,33679429:265566 -k1,5174:18611482,33679429:265567 -k1,5174:21639391,33679429:265566 -k1,5174:25322004,33679429:265566 -k1,5174:28857818,33679429:265567 -k1,5174:29782676,33679429:265566 -k1,5174:31966991,33679429:0 -) -(1,5175:7246811,34520917:24720180,513147,115847 -k1,5174:8706567,34520917:238165 -k1,5174:10641459,34520917:238165 -k1,5174:13592815,34520917:238165 -(1,5174:13592815,34520917:0,414482,115847 -r1,5189:13951081,34520917:358266,530329,115847 -k1,5174:13592815,34520917:-358266 -) -(1,5174:13592815,34520917:358266,414482,115847 -k1,5174:13592815,34520917:3277 -h1,5174:13947804,34520917:0,411205,112570 -) -k1,5174:14362916,34520917:238165 -(1,5174:14362916,34520917:0,414482,115847 -r1,5189:14721182,34520917:358266,530329,115847 -k1,5174:14362916,34520917:-358266 -) -(1,5174:14362916,34520917:358266,414482,115847 -k1,5174:14362916,34520917:3277 -h1,5174:14717905,34520917:0,411205,112570 -) -k1,5174:14959347,34520917:238165 -k1,5174:16388957,34520917:238165 -(1,5174:16388957,34520917:0,414482,115847 -r1,5189:16747223,34520917:358266,530329,115847 -k1,5174:16388957,34520917:-358266 -) -(1,5174:16388957,34520917:358266,414482,115847 -k1,5174:16388957,34520917:3277 -h1,5174:16743946,34520917:0,411205,112570 -) -k1,5174:17159058,34520917:238165 -k1,5174:18002776,34520917:238165 -k1,5174:19535933,34520917:238166 -k1,5174:20793183,34520917:238165 -k1,5174:22565546,34520917:238165 -k1,5174:23463003,34520917:238165 -k1,5174:24720253,34520917:238165 -k1,5174:26347781,34520917:238165 -k1,5174:28462242,34520917:238165 -k1,5174:29425235,34520917:238165 -k1,5174:30947906,34520917:238165 -k1,5174:31966991,34520917:0 -) -(1,5175:7246811,35362405:24720180,513147,134348 -k1,5174:9409863,35362405:152407 -k1,5174:10178309,35362405:152408 -(1,5174:10178309,35362405:0,414482,115847 -r1,5189:10536575,35362405:358266,530329,115847 -k1,5174:10178309,35362405:-358266 -) -(1,5174:10178309,35362405:358266,414482,115847 -k1,5174:10178309,35362405:3277 -h1,5174:10533298,35362405:0,411205,112570 -) -k1,5174:10688982,35362405:152407 -k1,5174:11832950,35362405:152408 -k1,5174:12601395,35362405:152407 -k1,5174:16167573,35362405:152408 -k1,5174:18232976,35362405:152407 -k1,5174:18990937,35362405:152408 -k1,5174:20438335,35362405:152407 -k1,5174:21609828,35362405:152408 -k1,5174:23296433,35362405:152407 -k1,5174:24108133,35362405:152408 -k1,5174:25279625,35362405:152407 -k1,5174:26821395,35362405:152407 -k1,5174:28850099,35362405:152408 -k1,5174:31966991,35362405:0 -) -(1,5175:7246811,36203893:24720180,513147,134348 -k1,5174:8075582,36203893:177343 -k1,5174:11514651,36203893:177342 -k1,5174:13702639,36203893:177343 -k1,5174:14539274,36203893:177343 -k1,5174:15735702,36203893:177343 -k1,5174:17278159,36203893:177342 -k1,5174:18122658,36203893:177343 -(1,5174:18122658,36203893:0,414482,115847 -r1,5189:18480924,36203893:358266,530329,115847 -k1,5174:18122658,36203893:-358266 -) -(1,5174:18122658,36203893:358266,414482,115847 -k1,5174:18122658,36203893:3277 -h1,5174:18477647,36203893:0,411205,112570 -) -k1,5174:18658267,36203893:177343 -k1,5174:20027055,36203893:177343 -(1,5174:20027055,36203893:0,414482,115847 -r1,5189:20385321,36203893:358266,530329,115847 -k1,5174:20027055,36203893:-358266 -) -(1,5174:20027055,36203893:358266,414482,115847 -k1,5174:20027055,36203893:3277 -h1,5174:20382044,36203893:0,411205,112570 -) -k1,5174:20562663,36203893:177342 -k1,5174:23200228,36203893:177343 -k1,5174:25565163,36203893:177343 -k1,5174:26098366,36203893:177343 -k1,5174:27558903,36203893:177342 -k1,5174:30119135,36203893:177343 -k1,5174:30947906,36203893:177343 -k1,5174:31966991,36203893:0 -) -(1,5175:7246811,37045381:24720180,513147,134348 -k1,5174:8850171,37045381:213997 -k1,5174:10940464,37045381:213997 -k1,5174:11837346,37045381:213997 -k1,5174:14311680,37045381:213997 -k1,5174:15544762,37045381:213997 -k1,5174:17736636,37045381:213997 -k1,5174:18609925,37045381:213997 -k1,5174:20519337,37045381:213996 -k1,5174:21349372,37045381:213997 -k1,5174:21919229,37045381:213997 -k1,5174:24818236,37045381:213997 -k1,5174:25660068,37045381:213997 -k1,5174:27576035,37045381:213997 -k1,5174:29918641,37045381:213997 -k1,5174:30947906,37045381:213997 -k1,5174:31966991,37045381:0 -) -(1,5175:7246811,37886869:24720180,513147,134348 -g1,5174:9706377,37886869 -g1,5174:11760275,37886869 -g1,5174:12768874,37886869 -g1,5174:14663519,37886869 -g1,5174:18091707,37886869 -g1,5174:19100306,37886869 -g1,5174:20318620,37886869 -k1,5175:31966991,37886869:10679094 -g1,5175:31966991,37886869 -) -] -) -] -r1,5189:32583029,38611041:26214,8291786,0 -) -] -) -) -g1,5175:32583029,38021217 -) -h1,5175:6630773,38637255:0,0,0 -v1,5177:6630773,40003031:0,393216,0 -(1,5179:6630773,43327159:25952256,3717344,616038 -g1,5179:6630773,43327159 -(1,5179:6630773,43327159:25952256,3717344,616038 -(1,5179:6630773,43943197:25952256,4333382,0 -[1,5179:6630773,43943197:25952256,4333382,0 -(1,5179:6630773,43916983:25952256,4280954,0 -r1,5189:6656987,43916983:26214,4280954,0 -[1,5179:6656987,43916983:25899828,4280954,0 -(1,5179:6656987,43327159:25899828,3101306,0 -[1,5179:7246811,43327159:24720180,3101306,0 -(1,5179:7246811,41509835:24720180,1283982,196608 -(1,5177:7246811,41509835:0,1283982,196608 -r1,5189:9812056,41509835:2565245,1480590,196608 -k1,5177:7246811,41509835:-2565245 -) -(1,5177:7246811,41509835:2565245,1283982,196608 -) -k1,5177:10016096,41509835:204040 -k1,5177:10016096,41509835:0 -k1,5178:12393311,41509835:204041 -k1,5178:13616436,41509835:204040 -k1,5178:15486401,41509835:204040 -k1,5178:16306479,41509835:204040 -k1,5178:17529605,41509835:204041 -k1,5178:21384000,41509835:204040 -k1,5178:25524788,41509835:204040 -k1,5178:27584152,41509835:204040 -k1,5178:28860362,41509835:204041 -k1,5178:30799795,41509835:204040 -k1,5179:31966991,41509835:0 -) -(1,5179:7246811,42351323:24720180,513147,7863 -k1,5178:8709827,42351323:192928 -k1,5178:11229938,42351323:192928 -k1,5178:12082158,42351323:192928 -k1,5178:14895215,42351323:192928 -k1,5178:17396321,42351323:192928 -k1,5178:18275411,42351323:192928 -k1,5178:21181529,42351323:192927 -k1,5178:21990495,42351323:192928 -k1,5178:23202508,42351323:192928 -k1,5178:24784799,42351323:192928 -k1,5178:27027693,42351323:192928 -k1,5178:28772514,42351323:192928 -k1,5178:30947906,42351323:192928 -k1,5178:31966991,42351323:0 -) -(1,5179:7246811,43192811:24720180,513147,134348 -g1,5178:10006532,43192811 -g1,5178:11015131,43192811 -g1,5178:12712513,43192811 -h1,5178:13509431,43192811:0,0,0 -g1,5178:13708660,43192811 -g1,5178:15411940,43192811 -g1,5178:16630254,43192811 -g1,5178:17921968,43192811 -g1,5178:18788353,43192811 -(1,5178:18788353,43192811:0,452978,115847 -r1,5189:21256890,43192811:2468537,568825,115847 -k1,5178:18788353,43192811:-2468537 -) -(1,5178:18788353,43192811:2468537,452978,115847 -k1,5178:18788353,43192811:3277 -h1,5178:21253613,43192811:0,411205,112570 -) -g1,5178:21456119,43192811 -g1,5178:22464718,43192811 -g1,5178:24888239,43192811 -g1,5178:25618965,43192811 -k1,5179:31966991,43192811:3084333 -g1,5179:31966991,43192811 -) -] -) -] -r1,5189:32583029,43916983:26214,4280954,0 -) -] -) -) -g1,5179:32583029,43327159 -) -h1,5179:6630773,43943197:0,0,0 -] -(1,5189:32583029,45706769:0,0,0 -g1,5189:32583029,45706769 -) -) -] -(1,5189:6630773,47279633:25952256,0,0 -h1,5189:6630773,47279633:25952256,0,0 -) -] -(1,5189:4262630,4025873:0,0,0 -[1,5189:-473656,4025873:0,0,0 -(1,5189:-473656,-710413:0,0,0 -(1,5189:-473656,-710413:0,0,0 -g1,5189:-473656,-710413 -) -g1,5189:-473656,-710413 -) -] -) -] -!25626 -}95 -Input:711:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:712:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:713:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:714:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:715:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:716:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:717:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:718:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:719:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:720:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:721:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:722:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:723:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:724:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:725:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:726:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:727:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:728:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:729:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:730:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:731:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1922 -{96 -[1,5242:4262630,47279633:28320399,43253760,0 -(1,5242:4262630,4025873:0,0,0 -[1,5242:-473656,4025873:0,0,0 -(1,5242:-473656,-710413:0,0,0 -(1,5242:-473656,-644877:0,0,0 -k1,5242:-473656,-644877:-65536 -) -(1,5242:-473656,4736287:0,0,0 -k1,5242:-473656,4736287:5209943 -) -g1,5242:-473656,-710413 -) -] -) -[1,5242:6630773,47279633:25952256,43253760,0 -[1,5242:6630773,4812305:25952256,786432,0 -(1,5242:6630773,4812305:25952256,513147,134348 -(1,5242:6630773,4812305:25952256,513147,134348 -g1,5242:3078558,4812305 -[1,5242:3078558,4812305:0,0,0 -(1,5242:3078558,2439708:0,1703936,0 -k1,5242:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,5242:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,5242:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,5242:3078558,4812305:0,0,0 -(1,5242:3078558,2439708:0,1703936,0 -g1,5242:29030814,2439708 -g1,5242:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,5242:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,5242:37855564,2439708:1179648,16384,0 -) -) -k1,5242:3078556,2439708:-34777008 -) -] -[1,5242:3078558,4812305:0,0,0 -(1,5242:3078558,49800853:0,16384,2228224 -k1,5242:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,5242:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,5242:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,5242:3078558,4812305:0,0,0 -(1,5242:3078558,49800853:0,16384,2228224 -g1,5242:29030814,49800853 -g1,5242:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,5242:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,5242:37855564,49800853:1179648,16384,0 -) -) -k1,5242:3078556,49800853:-34777008 -) -] -g1,5242:6630773,4812305 -g1,5242:6630773,4812305 -g1,5242:9946239,4812305 -g1,5242:10761506,4812305 -g1,5242:11410312,4812305 -g1,5242:13771574,4812305 -k1,5242:31786110,4812305:18014536 -) -) -] -[1,5242:6630773,45706769:25952256,40108032,0 -(1,5242:6630773,45706769:25952256,40108032,0 -(1,5242:6630773,45706769:0,0,0 -g1,5242:6630773,45706769 -) -[1,5242:6630773,45706769:25952256,40108032,0 -(1,5185:6630773,6254097:25952256,32768,229376 -(1,5185:6630773,6254097:0,32768,229376 -(1,5185:6630773,6254097:5505024,32768,229376 -r1,5242:12135797,6254097:5505024,262144,229376 -) -k1,5185:6630773,6254097:-5505024 -) -(1,5185:6630773,6254097:25952256,32768,0 -r1,5242:32583029,6254097:25952256,32768,0 -) -) -(1,5185:6630773,7858425:25952256,615776,161218 -(1,5185:6630773,7858425:2464678,582746,14155 -g1,5185:6630773,7858425 -g1,5185:9095451,7858425 -) -g1,5185:13374428,7858425 -g1,5185:14432179,7858425 -g1,5185:15243777,7858425 -k1,5185:32583029,7858425:14486077 -g1,5185:32583029,7858425 -) -(1,5189:6630773,9093129:25952256,505283,134348 -k1,5188:7283094,9093129:237478 -k1,5188:9810439,9093129:237517 -k1,5188:11152237,9093129:237516 -k1,5188:12864969,9093129:237517 -k1,5188:16385183,9093129:237516 -k1,5188:19863455,9093129:237517 -k1,5188:21092531,9093129:237516 -k1,5188:23488804,9093129:237517 -k1,5188:25243478,9093129:237516 -k1,5188:28325913,9093129:237517 -k1,5188:30076655,9093129:237516 -k1,5188:30965600,9093129:237517 -k1,5188:32583029,9093129:0 -) -(1,5189:6630773,9934617:25952256,505283,134348 -k1,5188:9649525,9934617:297697 -k1,5188:11336585,9934617:297697 -k1,5188:13127848,9934617:297697 -k1,5188:14111707,9934617:297697 -k1,5188:16368930,9934617:297697 -k1,5188:20136104,9934617:297698 -k1,5188:22266188,9934617:297697 -k1,5188:23555445,9934617:297697 -k1,5188:24662512,9934617:297697 -k1,5188:28604011,9934617:297697 -k1,5188:29711078,9934617:297697 -k1,5188:31027860,9934617:297697 -k1,5188:32583029,9934617:0 -) -(1,5189:6630773,10776105:25952256,513147,134348 -k1,5188:7528291,10776105:238226 -k1,5188:9315133,10776105:238226 -k1,5188:10084855,10776105:238225 -k1,5188:13097875,10776105:238226 -k1,5188:13987529,10776105:238226 -k1,5188:14996458,10776105:238226 -k1,5188:18187080,10776105:238225 -k1,5188:19983097,10776105:238226 -k1,5188:21212883,10776105:238226 -k1,5188:22964335,10776105:238226 -k1,5188:23964088,10776105:238225 -k1,5188:24617118,10776105:238187 -k1,5188:26460976,10776105:238226 -k1,5188:27350629,10776105:238225 -k1,5188:29206284,10776105:238226 -k1,5188:31436804,10776105:238226 -k1,5188:32583029,10776105:0 -) -(1,5189:6630773,11617593:25952256,513147,7863 -k1,5188:9247424,11617593:233762 -k1,5188:11549502,11617593:233762 -k1,5188:12399302,11617593:233762 -k1,5188:14022427,11617593:233762 -k1,5188:16462786,11617593:233762 -k1,5188:17887993,11617593:233762 -k1,5188:19965937,11617593:233761 -k1,5188:20858991,11617593:233762 -k1,5188:22986743,11617593:233762 -k1,5188:25186585,11617593:233762 -k1,5188:26318190,11617593:233762 -k1,5188:28248679,11617593:233762 -k1,5188:31591469,11617593:233762 -k1,5188:32583029,11617593:0 -) -(1,5189:6630773,12459081:25952256,505283,134348 -k1,5188:8837773,12459081:164243 -k1,5188:9653444,12459081:164243 -k1,5188:11198531,12459081:164243 -k1,5188:13032632,12459081:164244 -k1,5188:14388320,12459081:164243 -k1,5188:15933407,12459081:164243 -k1,5188:17593837,12459081:164243 -k1,5188:18862362,12459081:164243 -k1,5188:20438906,12459081:164243 -k1,5188:21794595,12459081:164244 -k1,5188:23573645,12459081:164243 -k1,5188:26201386,12459081:164243 -k1,5188:29648327,12459081:164243 -k1,5188:32583029,12459081:0 -) -(1,5189:6630773,13300569:25952256,505283,134348 -k1,5188:8159634,13300569:148673 -k1,5188:9299867,13300569:148673 -k1,5188:11294689,13300569:148673 -k1,5188:14506515,13300569:148673 -k1,5188:17552535,13300569:148673 -k1,5188:19399246,13300569:148673 -k1,5188:20318622,13300569:148673 -k1,5188:22426822,13300569:148674 -k1,5188:23106992,13300569:148673 -k1,5188:25779456,13300569:148673 -k1,5188:27485920,13300569:148673 -k1,5188:28738875,13300569:148673 -k1,5188:29635314,13300569:148673 -k1,5188:31069803,13300569:148673 -k1,5188:32583029,13300569:0 -) -(1,5189:6630773,14142057:25952256,505283,134348 -k1,5188:7493937,14142057:211736 -k1,5188:9323102,14142057:211736 -k1,5188:12504274,14142057:211736 -k1,5188:17296320,14142057:211735 -k1,5188:18527141,14142057:211736 -k1,5188:20128240,14142057:211736 -k1,5188:22378146,14142057:211736 -k1,5188:23205920,14142057:211736 -k1,5188:24188359,14142057:211736 -k1,5188:26533291,14142057:211735 -k1,5188:28630498,14142057:211736 -k1,5188:29373731,14142057:211736 -k1,5188:32583029,14142057:0 -) -(1,5189:6630773,14983545:25952256,513147,134348 -g1,5188:7777653,14983545 -g1,5188:12039459,14983545 -g1,5188:14944670,14983545 -g1,5188:16335344,14983545 -g1,5188:17923936,14983545 -k1,5189:32583029,14983545:12105810 -g1,5189:32583029,14983545 -) -(1,5191:6630773,15825033:25952256,505283,134348 -h1,5190:6630773,15825033:983040,0,0 -k1,5190:10692794,15825033:168527 -(1,5190:10692794,15825033:0,452978,115847 -r1,5242:13864754,15825033:3171960,568825,115847 -k1,5190:10692794,15825033:-3171960 -) -(1,5190:10692794,15825033:3171960,452978,115847 -k1,5190:10692794,15825033:3277 -h1,5190:13861477,15825033:0,411205,112570 -) -k1,5190:14033281,15825033:168527 -k1,5190:14733305,15825033:168527 -k1,5190:16896748,15825033:168527 -k1,5190:17716703,15825033:168527 -k1,5190:18632996,15825033:168527 -k1,5190:19736065,15825033:168526 -k1,5190:20666120,15825033:168527 -k1,5190:22545792,15825033:168527 -k1,5190:23365747,15825033:168527 -k1,5190:25151703,15825033:168527 -k1,5190:25676090,15825033:168527 -k1,5190:28819296,15825033:168527 -k1,5190:32583029,15825033:0 -) -(1,5191:6630773,16666521:25952256,513147,134348 -k1,5190:7484556,16666521:202355 -k1,5190:9304340,16666521:202355 -k1,5190:12476130,16666521:202354 -k1,5190:13364647,16666521:202355 -k1,5190:14793181,16666521:202355 -k1,5190:17675959,16666521:202355 -k1,5190:19272264,16666521:202354 -k1,5190:21037653,16666521:202355 -k1,5190:22057897,16666521:202355 -k1,5190:25577684,16666521:202355 -k1,5190:26771598,16666521:202354 -k1,5190:30278934,16666521:202355 -k1,5190:32168186,16666521:202355 -k1,5191:32583029,16666521:0 -) -(1,5191:6630773,17508009:25952256,513147,134348 -g1,5190:7931007,17508009 -g1,5190:11156033,17508009 -g1,5190:12302913,17508009 -g1,5190:15523352,17508009 -g1,5190:16914026,17508009 -g1,5190:19294949,17508009 -g1,5190:22985281,17508009 -g1,5190:22985281,17508009 -g1,5190:23184510,17508009 -g1,5190:23184510,17508009 -k1,5191:32583029,17508009:9398519 -g1,5191:32583029,17508009 -) -v1,5193:6630773,18698475:0,393216,0 -(1,5208:6630773,23105728:25952256,4800469,196608 -g1,5208:6630773,23105728 -g1,5208:6630773,23105728 -g1,5208:6434165,23105728 -(1,5208:6434165,23105728:0,4800469,196608 -r1,5242:32779637,23105728:26345472,4997077,196608 -k1,5208:6434165,23105728:-26345472 -) -(1,5208:6434165,23105728:26345472,4800469,196608 -[1,5208:6630773,23105728:25952256,4603861,0 -(1,5195:6630773,18912385:25952256,410518,101187 -(1,5194:6630773,18912385:0,0,0 -g1,5194:6630773,18912385 -g1,5194:6630773,18912385 -g1,5194:6303093,18912385 -(1,5194:6303093,18912385:0,0,0 -) -g1,5194:6630773,18912385 -) -g1,5195:8211502,18912385 -g1,5195:9159940,18912385 -g1,5195:13269835,18912385 -g1,5195:13902127,18912385 -g1,5195:15482857,18912385 -g1,5195:16115149,18912385 -g1,5195:16747441,18912385 -g1,5195:18328170,18912385 -g1,5195:18960462,18912385 -g1,5195:19592754,18912385 -g1,5195:22121921,18912385 -h1,5195:24334940,18912385:0,0,0 -k1,5195:32583029,18912385:8248089 -g1,5195:32583029,18912385 -) -(1,5196:6630773,19578563:25952256,410518,76021 -h1,5196:6630773,19578563:0,0,0 -k1,5196:6630773,19578563:0 -h1,5196:10740667,19578563:0,0,0 -k1,5196:32583029,19578563:21842362 -g1,5196:32583029,19578563 -) -(1,5200:6630773,20310277:25952256,379060,7863 -(1,5198:6630773,20310277:0,0,0 -g1,5198:6630773,20310277 -g1,5198:6630773,20310277 -g1,5198:6303093,20310277 -(1,5198:6303093,20310277:0,0,0 -) -g1,5198:6630773,20310277 -) -g1,5200:7579210,20310277 -h1,5200:8843793,20310277:0,0,0 -k1,5200:32583029,20310277:23739236 -g1,5200:32583029,20310277 -) -(1,5202:6630773,21631815:25952256,410518,76021 -(1,5201:6630773,21631815:0,0,0 -g1,5201:6630773,21631815 -g1,5201:6630773,21631815 -g1,5201:6303093,21631815 -(1,5201:6303093,21631815:0,0,0 -) -g1,5201:6630773,21631815 -) -k1,5202:6630773,21631815:0 -g1,5202:11056813,21631815 -g1,5202:12005251,21631815 -g1,5202:13902125,21631815 -g1,5202:14850562,21631815 -g1,5202:17063582,21631815 -g1,5202:18012019,21631815 -g1,5202:18644311,21631815 -h1,5202:21173476,21631815:0,0,0 -k1,5202:32583029,21631815:11409553 -g1,5202:32583029,21631815 -) -(1,5203:6630773,22297993:25952256,410518,76021 -h1,5203:6630773,22297993:0,0,0 -k1,5203:6630773,22297993:0 -h1,5203:10740667,22297993:0,0,0 -k1,5203:32583029,22297993:21842362 -g1,5203:32583029,22297993 -) -(1,5207:6630773,23029707:25952256,404226,76021 -(1,5205:6630773,23029707:0,0,0 -g1,5205:6630773,23029707 -g1,5205:6630773,23029707 -g1,5205:6303093,23029707 -(1,5205:6303093,23029707:0,0,0 -) -g1,5205:6630773,23029707 -) -g1,5207:7579210,23029707 -g1,5207:8843793,23029707 -g1,5207:10740667,23029707 -g1,5207:11689104,23029707 -g1,5207:13902124,23029707 -g1,5207:14850561,23029707 -g1,5207:15482853,23029707 -h1,5207:18012018,23029707:0,0,0 -k1,5207:32583029,23029707:14571011 -g1,5207:32583029,23029707 -) -] -) -g1,5208:32583029,23105728 -g1,5208:6630773,23105728 -g1,5208:6630773,23105728 -g1,5208:32583029,23105728 -g1,5208:32583029,23105728 -) -h1,5208:6630773,23302336:0,0,0 -(1,5212:6630773,24668112:25952256,513147,115847 -h1,5211:6630773,24668112:983040,0,0 -k1,5211:10505236,24668112:163159 -k1,5211:11814619,24668112:163158 -(1,5211:11814619,24668112:0,452978,115847 -r1,5242:14283156,24668112:2468537,568825,115847 -k1,5211:11814619,24668112:-2468537 -) -(1,5211:11814619,24668112:2468537,452978,115847 -k1,5211:11814619,24668112:3277 -h1,5211:14279879,24668112:0,411205,112570 -) -k1,5211:14619985,24668112:163159 -(1,5211:14619985,24668112:0,452978,115847 -r1,5242:16385098,24668112:1765113,568825,115847 -k1,5211:14619985,24668112:-1765113 -) -(1,5211:14619985,24668112:1765113,452978,115847 -k1,5211:14619985,24668112:3277 -h1,5211:16381821,24668112:0,411205,112570 -) -k1,5211:16548256,24668112:163158 -k1,5211:17394300,24668112:163159 -(1,5211:17394300,24668112:0,452978,115847 -r1,5242:20214549,24668112:2820249,568825,115847 -k1,5211:17394300,24668112:-2820249 -) -(1,5211:17394300,24668112:2820249,452978,115847 -k1,5211:17394300,24668112:3277 -h1,5211:20211272,24668112:0,411205,112570 -) -k1,5211:20377708,24668112:163159 -k1,5211:22551511,24668112:163158 -k1,5211:24725315,24668112:163159 -k1,5211:27743221,24668112:163158 -k1,5211:29474001,24668112:163159 -k1,5211:32583029,24668112:0 -) -(1,5212:6630773,25509600:25952256,505283,134348 -k1,5211:8854289,25509600:185346 -k1,5211:9655674,25509600:185347 -k1,5211:10255849,25509600:185332 -k1,5211:12904693,25509600:185346 -k1,5211:14281485,25509600:185347 -k1,5211:17251456,25509600:185346 -k1,5211:18583027,25509600:185346 -(1,5211:18583027,25509600:0,452978,115847 -r1,5242:21754987,25509600:3171960,568825,115847 -k1,5211:18583027,25509600:-3171960 -) -(1,5211:18583027,25509600:3171960,452978,115847 -k1,5211:18583027,25509600:3277 -h1,5211:21751710,25509600:0,411205,112570 -) -k1,5211:22114004,25509600:185347 -(1,5211:22114004,25509600:0,452978,115847 -r1,5242:24582541,25509600:2468537,568825,115847 -k1,5211:22114004,25509600:-2468537 -) -(1,5211:22114004,25509600:2468537,452978,115847 -k1,5211:22114004,25509600:3277 -h1,5211:24579264,25509600:0,411205,112570 -) -k1,5211:24767887,25509600:185346 -k1,5211:25636118,25509600:185346 -(1,5211:25636118,25509600:0,452978,115847 -r1,5242:29159790,25509600:3523672,568825,115847 -k1,5211:25636118,25509600:-3523672 -) -(1,5211:25636118,25509600:3523672,452978,115847 -k1,5211:25636118,25509600:3277 -h1,5211:29156513,25509600:0,411205,112570 -) -k1,5211:29345136,25509600:185346 -k1,5211:30465026,25509600:185347 -k1,5211:31540351,25509600:185346 -k1,5212:32583029,25509600:0 -) -(1,5212:6630773,26351088:25952256,513147,126483 -k1,5211:7716367,26351088:151051 -k1,5211:9261370,26351088:151052 -(1,5211:9261370,26351088:0,414482,115847 -r1,5242:10674771,26351088:1413401,530329,115847 -k1,5211:9261370,26351088:-1413401 -) -(1,5211:9261370,26351088:1413401,414482,115847 -k1,5211:9261370,26351088:3277 -h1,5211:10671494,26351088:0,411205,112570 -) -k1,5211:11032916,26351088:151051 -k1,5211:12203052,26351088:151051 -k1,5211:14034447,26351088:151052 -k1,5211:14844790,26351088:151051 -k1,5211:16014926,26351088:151051 -k1,5211:19396247,26351088:151051 -k1,5211:22829997,26351088:151052 -k1,5211:25403259,26351088:151051 -k1,5211:27370313,26351088:151051 -k1,5211:28712810,26351088:151052 -k1,5211:29798404,26351088:151051 -k1,5211:32583029,26351088:0 -) -(1,5212:6630773,27192576:25952256,513147,115847 -k1,5211:7651364,27192576:205323 -k1,5211:8922959,27192576:205324 -k1,5211:10629056,27192576:205323 -k1,5211:11782031,27192576:205324 -k1,5211:12753470,27192576:205323 -k1,5211:16241492,27192576:205324 -k1,5211:19175079,27192576:205323 -(1,5211:19175079,27192576:0,452978,115847 -r1,5242:21291904,27192576:2116825,568825,115847 -k1,5211:19175079,27192576:-2116825 -) -(1,5211:19175079,27192576:2116825,452978,115847 -k1,5211:19175079,27192576:3277 -h1,5211:21288627,27192576:0,411205,112570 -) -k1,5211:21670897,27192576:205323 -(1,5211:21670897,27192576:0,452978,115847 -r1,5242:24491146,27192576:2820249,568825,115847 -k1,5211:21670897,27192576:-2820249 -) -(1,5211:21670897,27192576:2820249,452978,115847 -k1,5211:21670897,27192576:3277 -h1,5211:24487869,27192576:0,411205,112570 -) -k1,5211:24696470,27192576:205324 -k1,5211:26093238,27192576:205323 -(1,5211:26093238,27192576:0,452978,115847 -r1,5242:30320334,27192576:4227096,568825,115847 -k1,5211:26093238,27192576:-4227096 -) -(1,5211:26093238,27192576:4227096,452978,115847 -k1,5211:26093238,27192576:3277 -h1,5211:30317057,27192576:0,411205,112570 -) -k1,5211:30525658,27192576:205324 -k1,5211:31835263,27192576:205323 -k1,5211:32583029,27192576:0 -) -(1,5212:6630773,28034064:25952256,505283,126483 -k1,5211:8348099,28034064:204100 -k1,5211:9946151,28034064:204101 -k1,5211:11282058,28034064:204100 -k1,5211:14438555,28034064:204100 -k1,5211:16121804,28034064:204101 -(1,5211:16121804,28034064:0,452978,115847 -r1,5242:18238629,28034064:2116825,568825,115847 -k1,5211:16121804,28034064:-2116825 -) -(1,5211:16121804,28034064:2116825,452978,115847 -k1,5211:16121804,28034064:3277 -h1,5211:18235352,28034064:0,411205,112570 -) -k1,5211:18442729,28034064:204100 -k1,5211:19515181,28034064:204100 -k1,5211:21923912,28034064:204100 -k1,5211:23319458,28034064:204101 -k1,5211:24917509,28034064:204100 -(1,5211:24917509,28034064:0,452978,115847 -r1,5242:27737758,28034064:2820249,568825,115847 -k1,5211:24917509,28034064:-2820249 -) -(1,5211:24917509,28034064:2820249,452978,115847 -k1,5211:24917509,28034064:3277 -h1,5211:27734481,28034064:0,411205,112570 -) -k1,5211:27941858,28034064:204100 -k1,5211:29014311,28034064:204101 -k1,5211:30152954,28034064:204100 -k1,5212:32583029,28034064:0 -) -(1,5212:6630773,28875552:25952256,513147,134348 -k1,5211:7778508,28875552:171904 -k1,5211:11059440,28875552:171904 -k1,5211:11992872,28875552:171904 -k1,5211:14076462,28875552:171905 -k1,5211:15727514,28875552:171904 -(1,5211:15727514,28875552:0,452978,115847 -r1,5242:19954610,28875552:4227096,568825,115847 -k1,5211:15727514,28875552:-4227096 -) -(1,5211:15727514,28875552:4227096,452978,115847 -k1,5211:15727514,28875552:3277 -h1,5211:19951333,28875552:0,411205,112570 -) -k1,5211:20126514,28875552:171904 -k1,5211:21166770,28875552:171904 -k1,5211:23772681,28875552:171904 -k1,5211:24710701,28875552:171904 -k1,5211:27991634,28875552:171905 -k1,5211:28822830,28875552:171904 -k1,5211:29765437,28875552:171904 -k1,5211:31896867,28875552:171904 -k1,5211:32583029,28875552:0 -) -(1,5212:6630773,29717040:25952256,513147,126483 -k1,5211:7158500,29717040:171867 -k1,5211:9489122,29717040:171866 -(1,5211:9489122,29717040:0,452978,115847 -r1,5242:10902523,29717040:1413401,568825,115847 -k1,5211:9489122,29717040:-1413401 -) -(1,5211:9489122,29717040:1413401,452978,115847 -k1,5211:9489122,29717040:3277 -h1,5211:10899246,29717040:0,411205,112570 -) -k1,5211:11248060,29717040:171867 -k1,5211:12047762,29717040:171867 -k1,5211:15059303,29717040:171866 -k1,5211:17685493,29717040:171867 -(1,5211:17685493,29717040:0,452978,115847 -r1,5242:19450606,29717040:1765113,568825,115847 -k1,5211:17685493,29717040:-1765113 -) -(1,5211:17685493,29717040:1765113,452978,115847 -k1,5211:17685493,29717040:3277 -h1,5211:19447329,29717040:0,411205,112570 -) -k1,5211:19622473,29717040:171867 -k1,5211:22419711,29717040:171866 -k1,5211:23357694,29717040:171867 -k1,5211:27457134,29717040:171867 -k1,5211:28820445,29717040:171866 -k1,5211:31923737,29717040:171867 -k1,5212:32583029,29717040:0 -) -(1,5212:6630773,30558528:25952256,505283,134348 -g1,5211:7244845,30558528 -g1,5211:9733902,30558528 -g1,5211:12913708,30558528 -g1,5211:14621576,30558528 -k1,5212:32583029,30558528:14678755 -g1,5212:32583029,30558528 -) -(1,5214:6630773,31400016:25952256,505283,134348 -h1,5213:6630773,31400016:983040,0,0 -k1,5213:11418952,31400016:262263 -k1,5213:13075166,31400016:262263 -k1,5213:14356514,31400016:262263 -k1,5213:17373255,31400016:262263 -k1,5213:20470605,31400016:262263 -k1,5213:21601221,31400016:262264 -k1,5213:22967766,31400016:262263 -k1,5213:25664036,31400016:262263 -k1,5213:27117744,31400016:262263 -k1,5213:28314550,31400016:262263 -k1,5213:29595898,31400016:262263 -k1,5213:32583029,31400016:0 -) -(1,5214:6630773,32241504:25952256,513147,134348 -k1,5213:8603104,32241504:236938 -k1,5213:10536769,32241504:236938 -k1,5213:13973175,32241504:236938 -k1,5213:14837947,32241504:236937 -k1,5213:16093970,32241504:236938 -k1,5213:18572239,32241504:236938 -k1,5213:21995537,32241504:236938 -k1,5213:23100827,32241504:236938 -k1,5213:25262557,32241504:236938 -k1,5213:26518579,32241504:236937 -k1,5213:28435860,32241504:236938 -k1,5213:30710968,32241504:236938 -k1,5213:31563944,32241504:236938 -k1,5214:32583029,32241504:0 -) -(1,5214:6630773,33082992:25952256,505283,134348 -(1,5213:6630773,33082992:0,452978,115847 -r1,5242:9802733,33082992:3171960,568825,115847 -k1,5213:6630773,33082992:-3171960 -) -(1,5213:6630773,33082992:3171960,452978,115847 -k1,5213:6630773,33082992:3277 -h1,5213:9799456,33082992:0,411205,112570 -) -g1,5213:10001962,33082992 -g1,5213:12979918,33082992 -g1,5213:13940675,33082992 -g1,5213:17136865,33082992 -(1,5213:17136865,33082992:0,414482,115847 -r1,5242:18550266,33082992:1413401,530329,115847 -k1,5213:17136865,33082992:-1413401 -) -(1,5213:17136865,33082992:1413401,414482,115847 -k1,5213:17136865,33082992:3277 -h1,5213:18546989,33082992:0,411205,112570 -) -g1,5213:18749495,33082992 -g1,5213:19600152,33082992 -k1,5214:32583029,33082992:12351110 -g1,5214:32583029,33082992 -) -v1,5216:6630773,34273458:0,393216,0 -(1,5236:6630773,39999627:25952256,6119385,196608 -g1,5236:6630773,39999627 -g1,5236:6630773,39999627 -g1,5236:6434165,39999627 -(1,5236:6434165,39999627:0,6119385,196608 -r1,5242:32779637,39999627:26345472,6315993,196608 -k1,5236:6434165,39999627:-26345472 -) -(1,5236:6434165,39999627:26345472,6119385,196608 -[1,5236:6630773,39999627:25952256,5922777,0 -(1,5218:6630773,34487368:25952256,410518,82312 -(1,5217:6630773,34487368:0,0,0 -g1,5217:6630773,34487368 -g1,5217:6630773,34487368 -g1,5217:6303093,34487368 -(1,5217:6303093,34487368:0,0,0 -) -g1,5217:6630773,34487368 -) -k1,5218:6630773,34487368:0 -g1,5218:10108376,34487368 -h1,5218:13269833,34487368:0,0,0 -k1,5218:32583029,34487368:19313196 -g1,5218:32583029,34487368 -) -(1,5222:6630773,35219082:25952256,404226,76021 -(1,5220:6630773,35219082:0,0,0 -g1,5220:6630773,35219082 -g1,5220:6630773,35219082 -g1,5220:6303093,35219082 -(1,5220:6303093,35219082:0,0,0 -) -g1,5220:6630773,35219082 -) -g1,5222:7579210,35219082 -g1,5222:8843793,35219082 -g1,5222:10740667,35219082 -g1,5222:11689104,35219082 -g1,5222:13902124,35219082 -g1,5222:14850561,35219082 -g1,5222:15482853,35219082 -h1,5222:18012018,35219082:0,0,0 -k1,5222:32583029,35219082:14571011 -g1,5222:32583029,35219082 -) -(1,5224:6630773,36540620:25952256,410518,82312 -(1,5223:6630773,36540620:0,0,0 -g1,5223:6630773,36540620 -g1,5223:6630773,36540620 -g1,5223:6303093,36540620 -(1,5223:6303093,36540620:0,0,0 -) -g1,5223:6630773,36540620 -) -k1,5224:6630773,36540620:0 -g1,5224:10108376,36540620 -g1,5224:13585979,36540620 -g1,5224:14534417,36540620 -k1,5224:14534417,36540620:0 -h1,5224:15799000,36540620:0,0,0 -k1,5224:32583028,36540620:16784028 -g1,5224:32583028,36540620 -) -(1,5225:6630773,37206798:25952256,410518,82312 -h1,5225:6630773,37206798:0,0,0 -g1,5225:10108376,37206798 -h1,5225:13269833,37206798:0,0,0 -k1,5225:32583029,37206798:19313196 -g1,5225:32583029,37206798 -) -(1,5229:6630773,37938512:25952256,379060,7863 -(1,5227:6630773,37938512:0,0,0 -g1,5227:6630773,37938512 -g1,5227:6630773,37938512 -g1,5227:6303093,37938512 -(1,5227:6303093,37938512:0,0,0 -) -g1,5227:6630773,37938512 -) -g1,5229:7579210,37938512 -h1,5229:8843793,37938512:0,0,0 -k1,5229:32583029,37938512:23739236 -g1,5229:32583029,37938512 -) -(1,5231:6630773,39260050:25952256,410518,101187 -(1,5230:6630773,39260050:0,0,0 -g1,5230:6630773,39260050 -g1,5230:6630773,39260050 -g1,5230:6303093,39260050 -(1,5230:6303093,39260050:0,0,0 -) -g1,5230:6630773,39260050 -) -k1,5231:6630773,39260050:0 -g1,5231:11056813,39260050 -g1,5231:11689105,39260050 -g1,5231:13269834,39260050 -g1,5231:14218271,39260050 -g1,5231:17063582,39260050 -k1,5231:17063582,39260050:1573 -h1,5231:18329738,39260050:0,0,0 -k1,5231:32583029,39260050:14253291 -g1,5231:32583029,39260050 -) -(1,5235:6630773,39991764:25952256,379060,7863 -(1,5233:6630773,39991764:0,0,0 -g1,5233:6630773,39991764 -g1,5233:6630773,39991764 -g1,5233:6303093,39991764 -(1,5233:6303093,39991764:0,0,0 -) -g1,5233:6630773,39991764 -) -g1,5235:7579210,39991764 -h1,5235:8843793,39991764:0,0,0 -k1,5235:32583029,39991764:23739236 -g1,5235:32583029,39991764 -) -] -) -g1,5236:32583029,39999627 -g1,5236:6630773,39999627 -g1,5236:6630773,39999627 -g1,5236:32583029,39999627 -g1,5236:32583029,39999627 -) -h1,5236:6630773,40196235:0,0,0 -(1,5240:6630773,41562011:25952256,513147,126483 -h1,5239:6630773,41562011:983040,0,0 -k1,5239:9073275,41562011:262775 -(1,5239:9073275,41562011:0,452978,115847 -r1,5242:11541812,41562011:2468537,568825,115847 -k1,5239:9073275,41562011:-2468537 -) -(1,5239:9073275,41562011:2468537,452978,115847 -k1,5239:9073275,41562011:3277 -h1,5239:11538535,41562011:0,411205,112570 -) -k1,5239:11804588,41562011:262776 -k1,5239:14846090,41562011:262775 -k1,5239:15776021,41562011:262775 -(1,5239:15776021,41562011:0,459977,115847 -r1,5242:17189422,41562011:1413401,575824,115847 -k1,5239:15776021,41562011:-1413401 -) -(1,5239:15776021,41562011:1413401,459977,115847 -k1,5239:15776021,41562011:3277 -h1,5239:17186145,41562011:0,411205,112570 -) -k1,5239:17452198,41562011:262776 -k1,5239:18922146,41562011:262775 -k1,5239:20119465,41562011:262776 -k1,5239:21143768,41562011:262775 -k1,5239:22425628,41562011:262775 -(1,5239:22425628,41562011:0,459977,115847 -r1,5242:26652724,41562011:4227096,575824,115847 -k1,5239:22425628,41562011:-4227096 -) -(1,5239:22425628,41562011:4227096,459977,115847 -k1,5239:22425628,41562011:3277 -h1,5239:26649447,41562011:0,411205,112570 -) -k1,5239:26915500,41562011:262776 -k1,5239:30884991,41562011:262775 -k1,5239:32583029,41562011:0 -) -(1,5240:6630773,42403499:25952256,513147,126483 -k1,5239:7345490,42403499:256620 -k1,5239:8809283,42403499:256620 -k1,5239:11416025,42403499:256621 -k1,5239:13701640,42403499:256620 -k1,5239:14586095,42403499:256620 -k1,5239:15861800,42403499:256620 -k1,5239:17502541,42403499:256621 -k1,5239:20594248,42403499:256620 -k1,5239:21466906,42403499:256620 -k1,5239:22742611,42403499:256620 -k1,5239:24305364,42403499:256620 -k1,5239:27748345,42403499:256621 -k1,5239:28873317,42403499:256620 -k1,5239:31563944,42403499:256620 -k1,5239:32583029,42403499:0 -) -(1,5240:6630773,43244987:25952256,513147,134348 -k1,5239:9061604,43244987:188844 -k1,5239:10441894,43244987:188845 -k1,5239:13636874,43244987:188844 -k1,5239:15407757,43244987:188844 -k1,5239:17409328,43244987:188845 -k1,5239:18226007,43244987:188844 -k1,5239:19433936,43244987:188844 -k1,5239:21864111,43244987:188844 -k1,5239:25412987,43244987:188845 -k1,5239:27014132,43244987:188844 -k1,5239:28770597,43244987:188844 -k1,5239:30494951,43244987:188845 -k1,5239:31335223,43244987:188844 -k1,5239:32583029,43244987:0 -) -(1,5240:6630773,44086475:25952256,505283,126483 -k1,5239:7660387,44086475:161262 -k1,5239:10255657,44086475:161263 -k1,5239:11436004,44086475:161262 -k1,5239:13839253,44086475:161262 -k1,5239:16393234,44086475:161262 -k1,5239:18193552,44086475:161263 -k1,5239:19006242,44086475:161262 -k1,5239:21059528,44086475:161262 -k1,5239:22587871,44086475:161262 -k1,5239:23940579,44086475:161263 -k1,5239:25492515,44086475:161262 -k1,5239:27292832,44086475:161262 -k1,5239:28936518,44086475:161262 -k1,5239:29749209,44086475:161263 -k1,5239:30929556,44086475:161262 -k1,5239:32583029,44086475:0 -) -(1,5240:6630773,44927963:25952256,505283,7863 -k1,5240:32583030,44927963:22999860 -g1,5240:32583030,44927963 -) -] -(1,5242:32583029,45706769:0,0,0 -g1,5242:32583029,45706769 -) -) -] -(1,5242:6630773,47279633:25952256,0,0 -h1,5242:6630773,47279633:25952256,0,0 -) -] -(1,5242:4262630,4025873:0,0,0 -[1,5242:-473656,4025873:0,0,0 -(1,5242:-473656,-710413:0,0,0 -(1,5242:-473656,-710413:0,0,0 -g1,5242:-473656,-710413 -) -g1,5242:-473656,-710413 -) -] -) -] -!27594 -}96 -Input:732:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!102 -{97 -[1,5344:4262630,47279633:28320399,43253760,0 -(1,5344:4262630,4025873:0,0,0 -[1,5344:-473656,4025873:0,0,0 -(1,5344:-473656,-710413:0,0,0 -(1,5344:-473656,-644877:0,0,0 -k1,5344:-473656,-644877:-65536 -) -(1,5344:-473656,4736287:0,0,0 -k1,5344:-473656,4736287:5209943 -) -g1,5344:-473656,-710413 -) -] -) -[1,5344:6630773,47279633:25952256,43253760,0 -[1,5344:6630773,4812305:25952256,786432,0 -(1,5344:6630773,4812305:25952256,505283,134348 -(1,5344:6630773,4812305:25952256,505283,134348 -g1,5344:3078558,4812305 -[1,5344:3078558,4812305:0,0,0 -(1,5344:3078558,2439708:0,1703936,0 -k1,5344:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,5344:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,5344:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,5344:3078558,4812305:0,0,0 -(1,5344:3078558,2439708:0,1703936,0 -g1,5344:29030814,2439708 -g1,5344:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,5344:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,5344:37855564,2439708:1179648,16384,0 -) -) -k1,5344:3078556,2439708:-34777008 -) -] -[1,5344:3078558,4812305:0,0,0 -(1,5344:3078558,49800853:0,16384,2228224 -k1,5344:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,5344:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,5344:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,5344:3078558,4812305:0,0,0 -(1,5344:3078558,49800853:0,16384,2228224 -g1,5344:29030814,49800853 -g1,5344:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,5344:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,5344:37855564,49800853:1179648,16384,0 -) -) -k1,5344:3078556,49800853:-34777008 -) -] -g1,5344:6630773,4812305 -k1,5344:19515153,4812305:12087462 -g1,5344:20901894,4812305 -g1,5344:21550700,4812305 -g1,5344:24864855,4812305 -g1,5344:27600327,4812305 -g1,5344:29010006,4812305 -) -) -] -[1,5344:6630773,45706769:25952256,40108032,0 -(1,5344:6630773,45706769:25952256,40108032,0 -(1,5344:6630773,45706769:0,0,0 -g1,5344:6630773,45706769 -) -[1,5344:6630773,45706769:25952256,40108032,0 -v1,5242:6630773,6254097:0,393216,0 -(1,5262:6630773,12048424:25952256,6187543,196608 -g1,5262:6630773,12048424 -g1,5262:6630773,12048424 -g1,5262:6434165,12048424 -(1,5262:6434165,12048424:0,6187543,196608 -r1,5344:32779637,12048424:26345472,6384151,196608 -k1,5262:6434165,12048424:-26345472 -) -(1,5262:6434165,12048424:26345472,6187543,196608 -[1,5262:6630773,12048424:25952256,5990935,0 -(1,5244:6630773,6468007:25952256,410518,76021 -(1,5243:6630773,6468007:0,0,0 -g1,5243:6630773,6468007 -g1,5243:6630773,6468007 -g1,5243:6303093,6468007 -(1,5243:6303093,6468007:0,0,0 -) -g1,5243:6630773,6468007 -) -k1,5244:6630773,6468007:0 -h1,5244:10108375,6468007:0,0,0 -k1,5244:32583029,6468007:22474654 -g1,5244:32583029,6468007 -) -(1,5248:6630773,7199721:25952256,404226,101187 -(1,5246:6630773,7199721:0,0,0 -g1,5246:6630773,7199721 -g1,5246:6630773,7199721 -g1,5246:6303093,7199721 -(1,5246:6303093,7199721:0,0,0 -) -g1,5246:6630773,7199721 -) -g1,5248:7579210,7199721 -g1,5248:8843793,7199721 -g1,5248:10108376,7199721 -g1,5248:11372959,7199721 -h1,5248:12321396,7199721:0,0,0 -k1,5248:32583028,7199721:20261632 -g1,5248:32583028,7199721 -) -(1,5250:6630773,8521259:25952256,410518,101187 -(1,5249:6630773,8521259:0,0,0 -g1,5249:6630773,8521259 -g1,5249:6630773,8521259 -g1,5249:6303093,8521259 -(1,5249:6303093,8521259:0,0,0 -) -g1,5249:6630773,8521259 -) -k1,5250:6630773,8521259:0 -g1,5250:10424521,8521259 -g1,5250:11372959,8521259 -k1,5250:11372959,8521259:0 -h1,5250:17695873,8521259:0,0,0 -k1,5250:32583029,8521259:14887156 -g1,5250:32583029,8521259 -) -(1,5251:6630773,9187437:25952256,410518,76021 -h1,5251:6630773,9187437:0,0,0 -k1,5251:6630773,9187437:0 -h1,5251:10108375,9187437:0,0,0 -k1,5251:32583029,9187437:22474654 -g1,5251:32583029,9187437 -) -(1,5255:6630773,9919151:25952256,404226,76021 -(1,5253:6630773,9919151:0,0,0 -g1,5253:6630773,9919151 -g1,5253:6630773,9919151 -g1,5253:6303093,9919151 -(1,5253:6303093,9919151:0,0,0 -) -g1,5253:6630773,9919151 -) -g1,5255:7579210,9919151 -g1,5255:8843793,9919151 -g1,5255:10108376,9919151 -g1,5255:11372959,9919151 -h1,5255:12321396,9919151:0,0,0 -k1,5255:32583028,9919151:20261632 -g1,5255:32583028,9919151 -) -(1,5257:6630773,11240689:25952256,410518,101187 -(1,5256:6630773,11240689:0,0,0 -g1,5256:6630773,11240689 -g1,5256:6630773,11240689 -g1,5256:6303093,11240689 -(1,5256:6303093,11240689:0,0,0 -) -g1,5256:6630773,11240689 -) -k1,5257:6630773,11240689:0 -g1,5257:10108376,11240689 -g1,5257:12953688,11240689 -g1,5257:13585980,11240689 -g1,5257:15166709,11240689 -g1,5257:16115146,11240689 -g1,5257:18960457,11240689 -k1,5257:18960457,11240689:1573 -h1,5257:20226613,11240689:0,0,0 -k1,5257:32583029,11240689:12356416 -g1,5257:32583029,11240689 -) -(1,5261:6630773,11972403:25952256,404226,76021 -(1,5259:6630773,11972403:0,0,0 -g1,5259:6630773,11972403 -g1,5259:6630773,11972403 -g1,5259:6303093,11972403 -(1,5259:6303093,11972403:0,0,0 -) -g1,5259:6630773,11972403 -) -g1,5261:7579210,11972403 -g1,5261:8843793,11972403 -g1,5261:10108376,11972403 -g1,5261:11372959,11972403 -h1,5261:12321396,11972403:0,0,0 -k1,5261:32583028,11972403:20261632 -g1,5261:32583028,11972403 -) -] -) -g1,5262:32583029,12048424 -g1,5262:6630773,12048424 -g1,5262:6630773,12048424 -g1,5262:32583029,12048424 -g1,5262:32583029,12048424 -) -h1,5262:6630773,12245032:0,0,0 -(1,5266:6630773,13610808:25952256,505283,134348 -h1,5265:6630773,13610808:983040,0,0 -k1,5265:8805127,13610808:237765 -k1,5265:10147173,13610808:237764 -k1,5265:11582281,13610808:237765 -k1,5265:12175905,13610808:237764 -k1,5265:13696865,13610808:237765 -k1,5265:16887026,13610808:237764 -k1,5265:19010917,13610808:237765 -k1,5265:20346409,13610808:237764 -k1,5265:21914555,13610808:237765 -k1,5265:24613851,13610808:237764 -k1,5265:25537778,13610808:237765 -k1,5265:27164250,13610808:237764 -k1,5265:28088177,13610808:237765 -k1,5265:29114339,13610808:237764 -k1,5265:31090119,13610808:237765 -k1,5265:32583029,13610808:0 -) -(1,5266:6630773,14452296:25952256,513147,134348 -g1,5265:7896273,14452296 -g1,5265:9735213,14452296 -g1,5265:11328393,14452296 -g1,5265:12812128,14452296 -g1,5265:13670649,14452296 -g1,5265:16360901,14452296 -k1,5266:32583029,14452296:12939430 -g1,5266:32583029,14452296 -) -v1,5268:6630773,15642762:0,393216,0 -(1,5286:6630773,24017531:25952256,8767985,196608 -g1,5286:6630773,24017531 -g1,5286:6630773,24017531 -g1,5286:6434165,24017531 -(1,5286:6434165,24017531:0,8767985,196608 -r1,5344:32779637,24017531:26345472,8964593,196608 -k1,5286:6434165,24017531:-26345472 -) -(1,5286:6434165,24017531:26345472,8767985,196608 -[1,5286:6630773,24017531:25952256,8571377,0 -(1,5270:6630773,15856672:25952256,410518,101187 -(1,5269:6630773,15856672:0,0,0 -g1,5269:6630773,15856672 -g1,5269:6630773,15856672 -g1,5269:6303093,15856672 -(1,5269:6303093,15856672:0,0,0 -) -g1,5269:6630773,15856672 -) -k1,5270:6630773,15856672:0 -g1,5270:10108376,15856672 -g1,5270:15166708,15856672 -g1,5270:16115146,15856672 -g1,5270:18012020,15856672 -g1,5270:18960457,15856672 -g1,5270:21173477,15856672 -g1,5270:22121914,15856672 -g1,5270:23070351,15856672 -h1,5270:26231808,15856672:0,0,0 -k1,5270:32583029,15856672:6351221 -g1,5270:32583029,15856672 -) -(1,5271:6630773,16522850:25952256,410518,76021 -h1,5271:6630773,16522850:0,0,0 -k1,5271:6630773,16522850:0 -h1,5271:11689104,16522850:0,0,0 -k1,5271:32583028,16522850:20893924 -g1,5271:32583028,16522850 -) -(1,5285:6630773,17254564:25952256,410518,31456 -(1,5273:6630773,17254564:0,0,0 -g1,5273:6630773,17254564 -g1,5273:6630773,17254564 -g1,5273:6303093,17254564 -(1,5273:6303093,17254564:0,0,0 -) -g1,5273:6630773,17254564 -) -g1,5285:7579210,17254564 -h1,5285:9476084,17254564:0,0,0 -k1,5285:32583028,17254564:23106944 -g1,5285:32583028,17254564 -) -(1,5285:6630773,17920742:25952256,404226,76021 -h1,5285:6630773,17920742:0,0,0 -g1,5285:7579210,17920742 -g1,5285:8843793,17920742 -g1,5285:10108376,17920742 -g1,5285:11372959,17920742 -h1,5285:12321396,17920742:0,0,0 -k1,5285:32583028,17920742:20261632 -g1,5285:32583028,17920742 -) -(1,5285:6630773,18586920:25952256,379060,0 -h1,5285:6630773,18586920:0,0,0 -h1,5285:7263064,18586920:0,0,0 -k1,5285:32583028,18586920:25319964 -g1,5285:32583028,18586920 -) -(1,5285:6630773,19253098:25952256,410518,31456 -h1,5285:6630773,19253098:0,0,0 -g1,5285:7579210,19253098 -h1,5285:9476084,19253098:0,0,0 -k1,5285:32583028,19253098:23106944 -g1,5285:32583028,19253098 -) -(1,5285:6630773,19919276:25952256,410518,76021 -h1,5285:6630773,19919276:0,0,0 -g1,5285:7579210,19919276 -g1,5285:8843793,19919276 -h1,5285:12637541,19919276:0,0,0 -k1,5285:32583029,19919276:19945488 -g1,5285:32583029,19919276 -) -(1,5285:6630773,20585454:25952256,379060,0 -h1,5285:6630773,20585454:0,0,0 -h1,5285:7263064,20585454:0,0,0 -k1,5285:32583028,20585454:25319964 -g1,5285:32583028,20585454 -) -(1,5285:6630773,21251632:25952256,410518,31456 -h1,5285:6630773,21251632:0,0,0 -g1,5285:7579210,21251632 -h1,5285:10740667,21251632:0,0,0 -k1,5285:32583029,21251632:21842362 -g1,5285:32583029,21251632 -) -(1,5285:6630773,21917810:25952256,404226,76021 -h1,5285:6630773,21917810:0,0,0 -g1,5285:7579210,21917810 -g1,5285:8843793,21917810 -g1,5285:9476085,21917810 -g1,5285:10108377,21917810 -g1,5285:10740669,21917810 -g1,5285:11372961,21917810 -g1,5285:12005253,21917810 -h1,5285:12321399,21917810:0,0,0 -k1,5285:32583029,21917810:20261630 -g1,5285:32583029,21917810 -) -(1,5285:6630773,22583988:25952256,379060,0 -h1,5285:6630773,22583988:0,0,0 -h1,5285:7263064,22583988:0,0,0 -k1,5285:32583028,22583988:25319964 -g1,5285:32583028,22583988 -) -(1,5285:6630773,23250166:25952256,410518,101187 -h1,5285:6630773,23250166:0,0,0 -g1,5285:7579210,23250166 -h1,5285:11689104,23250166:0,0,0 -k1,5285:32583028,23250166:20893924 -g1,5285:32583028,23250166 -) -(1,5285:6630773,23916344:25952256,404226,101187 -h1,5285:6630773,23916344:0,0,0 -g1,5285:7579210,23916344 -g1,5285:8843793,23916344 -g1,5285:10740667,23916344 -g1,5285:11689104,23916344 -g1,5285:13902124,23916344 -g1,5285:14850561,23916344 -g1,5285:15798998,23916344 -h1,5285:18960455,23916344:0,0,0 -k1,5285:32583029,23916344:13622574 -g1,5285:32583029,23916344 -) -] -) -g1,5286:32583029,24017531 -g1,5286:6630773,24017531 -g1,5286:6630773,24017531 -g1,5286:32583029,24017531 -g1,5286:32583029,24017531 -) -h1,5286:6630773,24214139:0,0,0 -v1,5289:6630773,26104203:0,393216,0 -(1,5344:6630773,43458680:25952256,17747693,589824 -g1,5344:6630773,43458680 -(1,5344:6630773,43458680:25952256,17747693,589824 -(1,5344:6630773,44048504:25952256,18337517,0 -[1,5344:6630773,44048504:25952256,18337517,0 -(1,5344:6630773,44048504:25952256,18311303,0 -r1,5344:6656987,44048504:26214,18311303,0 -[1,5344:6656987,44048504:25899828,18311303,0 -(1,5344:6656987,43458680:25899828,17131655,0 -[1,5344:7246811,43458680:24720180,17131655,0 -(1,5290:7246811,27412561:24720180,1085536,298548 -(1,5289:7246811,27412561:0,1085536,298548 -r1,5344:8753226,27412561:1506415,1384084,298548 -k1,5289:7246811,27412561:-1506415 -) -(1,5289:7246811,27412561:1506415,1085536,298548 -) -k1,5289:8910028,27412561:156802 -k1,5289:10899217,27412561:156802 -k1,5289:11587516,27412561:156802 -k1,5289:12553688,27412561:156802 -k1,5289:16023990,27412561:156802 -k1,5289:16832220,27412561:156802 -k1,5289:18008106,27412561:156801 -k1,5289:20931183,27412561:156802 -k1,5289:23443349,27412561:156802 -k1,5289:26417544,27412561:156802 -k1,5289:27765791,27412561:156802 -k1,5289:30325143,27412561:156802 -k1,5289:31141237,27412561:156802 -k1,5290:31966991,27412561:0 -) -(1,5290:7246811,28254049:24720180,513147,134348 -k1,5289:10089007,28254049:172259 -k1,5289:11333434,28254049:172258 -k1,5289:12571964,28254049:172259 -k1,5289:13510339,28254049:172259 -k1,5289:16467222,28254049:172258 -k1,5289:17830926,28254049:172259 -k1,5289:21080100,28254049:172259 -k1,5289:22536865,28254049:172259 -k1,5289:23813405,28254049:172258 -k1,5289:24733430,28254049:172259 -k1,5289:26418915,28254049:172259 -k1,5289:27242601,28254049:172258 -k1,5289:29677163,28254049:172259 -k1,5289:31966991,28254049:0 -) -(1,5290:7246811,29095537:24720180,505283,134348 -k1,5289:8552586,29095537:173313 -k1,5289:11452852,29095537:173313 -k1,5289:15906977,29095537:173313 -k1,5289:19362988,29095537:173313 -k1,5289:20917145,29095537:173313 -k1,5289:22194739,29095537:173312 -k1,5289:23115818,29095537:173313 -k1,5289:23644991,29095537:173313 -k1,5289:26494794,29095537:173313 -k1,5289:28366145,29095537:173313 -k1,5289:30274851,29095537:173313 -k1,5290:31966991,29095537:0 -) -(1,5290:7246811,29937025:24720180,513147,134348 -k1,5289:7843993,29937025:182339 -k1,5289:11110472,29937025:182355 -k1,5289:12786393,29937025:182355 -k1,5289:13654910,29937025:182355 -k1,5289:15529406,29937025:182356 -k1,5289:18211960,29937025:182355 -k1,5289:21304769,29937025:182355 -k1,5289:23054746,29937025:182356 -k1,5289:24256186,29937025:182355 -k1,5289:27820198,29937025:182355 -k1,5289:28925956,29937025:182356 -k1,5289:30843704,29937025:182355 -k1,5290:31966991,29937025:0 -) -(1,5290:7246811,30778513:24720180,505283,134348 -k1,5289:8739656,30778513:175571 -k1,5289:12024255,30778513:175571 -k1,5289:12731322,30778513:175570 -k1,5289:13262753,30778513:175571 -k1,5289:17744695,30778513:175571 -k1,5289:19875205,30778513:175571 -k1,5289:21335282,30778513:175571 -k1,5289:23798059,30778513:175570 -k1,5289:24505127,30778513:175571 -k1,5289:28245857,30778513:175571 -k1,5289:31966991,30778513:0 -) -(1,5290:7246811,31620001:24720180,513147,134348 -k1,5289:8797333,31620001:174921 -k1,5289:10670293,31620001:174922 -k1,5289:13924095,31620001:174921 -k1,5289:14454877,31620001:174922 -k1,5289:15912993,31620001:174921 -k1,5289:17643084,31620001:174922 -k1,5289:20498428,31620001:174921 -k1,5289:22067301,31620001:174922 -k1,5289:23261307,31620001:174921 -k1,5289:28059794,31620001:174922 -k1,5289:31019340,31620001:174921 -k1,5289:31966991,31620001:0 -) -(1,5290:7246811,32461489:24720180,513147,134348 -k1,5289:8102003,32461489:223425 -k1,5289:8812992,32461489:223401 -k1,5289:10620422,32461489:223425 -k1,5289:13505264,32461489:223425 -k1,5289:14387982,32461489:223426 -k1,5289:17578877,32461489:223425 -k1,5289:18894787,32461489:223425 -k1,5289:19777504,32461489:223425 -k1,5289:24166397,32461489:223425 -k1,5289:27498851,32461489:223426 -k1,5289:28713836,32461489:223425 -k1,5289:29956346,32461489:223425 -k1,5289:31966991,32461489:0 -) -(1,5290:7246811,33302977:24720180,513147,134348 -g1,5289:10224767,33302977 -g1,5289:11185524,33302977 -g1,5289:13372460,33302977 -g1,5289:15506312,33302977 -g1,5289:18731338,33302977 -g1,5289:20076792,33302977 -(1,5289:20076792,33302977:0,452978,115847 -r1,5344:21490193,33302977:1413401,568825,115847 -k1,5289:20076792,33302977:-1413401 -) -(1,5289:20076792,33302977:1413401,452978,115847 -k1,5289:20076792,33302977:3277 -h1,5289:21486916,33302977:0,411205,112570 -) -g1,5289:21689422,33302977 -g1,5289:23120728,33302977 -g1,5289:25598644,33302977 -h1,5289:26569232,33302977:0,0,0 -g1,5289:26768461,33302977 -g1,5289:27777060,33302977 -g1,5289:29474442,33302977 -h1,5289:30669819,33302977:0,0,0 -k1,5290:31966991,33302977:916408 -g1,5290:31966991,33302977 -) -(1,5292:7246811,34144465:24720180,513147,134348 -h1,5291:7246811,34144465:983040,0,0 -k1,5291:9876509,34144465:156369 -k1,5291:11051963,34144465:156369 -k1,5291:12763500,34144465:156368 -k1,5291:13579161,34144465:156369 -k1,5291:14489194,34144465:156369 -k1,5291:16935391,34144465:156369 -k1,5291:17623257,34144465:156369 -k1,5291:19817795,34144465:156368 -k1,5291:20660326,34144465:156369 -k1,5291:21587398,34144465:156369 -k1,5291:24522494,34144465:156369 -k1,5291:25963369,34144465:156369 -k1,5291:26651234,34144465:156368 -k1,5291:29992653,34144465:156369 -k1,5291:30835184,34144465:156369 -k1,5291:31966991,34144465:0 -) -(1,5292:7246811,34985953:24720180,513147,134348 -k1,5291:9154715,34985953:205934 -k1,5291:13997977,34985953:205934 -k1,5291:14735409,34985953:205935 -k1,5291:15557381,34985953:205934 -k1,5291:18394586,34985953:205934 -k1,5291:19251948,34985953:205934 -k1,5291:20476968,34985953:205935 -k1,5291:22465481,34985953:205934 -k1,5291:23862860,34985953:205934 -k1,5291:26230827,34985953:205934 -k1,5291:27991931,34985953:205935 -k1,5291:28857157,34985953:205934 -k1,5291:29833794,34985953:205934 -k1,5291:31966991,34985953:0 -) -(1,5292:7246811,35827441:24720180,505283,134348 -g1,5291:12404494,35827441 -g1,5291:16955969,35827441 -g1,5291:17771236,35827441 -g1,5291:18385308,35827441 -g1,5291:19116034,35827441 -g1,5291:22393489,35827441 -g1,5291:23208756,35827441 -g1,5291:25686672,35827441 -h1,5291:26657260,35827441:0,0,0 -g1,5291:26856489,35827441 -g1,5291:27865088,35827441 -g1,5291:29562470,35827441 -h1,5291:30757847,35827441:0,0,0 -k1,5292:31966991,35827441:1035474 -g1,5292:31966991,35827441 -) -v1,5294:7246811,37017907:0,393216,0 -(1,5314:7246811,42737784:24720180,6113093,196608 -g1,5314:7246811,42737784 -g1,5314:7246811,42737784 -g1,5314:7050203,42737784 -(1,5314:7050203,42737784:0,6113093,196608 -r1,5344:32163599,42737784:25113396,6309701,196608 -k1,5314:7050203,42737784:-25113396 -) -(1,5314:7050203,42737784:25113396,6113093,196608 -[1,5314:7246811,42737784:24720180,5916485,0 -(1,5296:7246811,37225525:24720180,404226,9436 -(1,5295:7246811,37225525:0,0,0 -g1,5295:7246811,37225525 -g1,5295:7246811,37225525 -g1,5295:6919131,37225525 -(1,5295:6919131,37225525:0,0,0 -) -g1,5295:7246811,37225525 -) -g1,5296:9775977,37225525 -g1,5296:10724415,37225525 -h1,5296:11988998,37225525:0,0,0 -k1,5296:31966990,37225525:19977992 -g1,5296:31966990,37225525 -) -(1,5297:7246811,37891703:24720180,404226,76021 -h1,5297:7246811,37891703:0,0,0 -k1,5297:7246811,37891703:0 -h1,5297:11356705,37891703:0,0,0 -k1,5297:31966991,37891703:20610286 -g1,5297:31966991,37891703 -) -(1,5301:7246811,38623417:24720180,404226,76021 -(1,5299:7246811,38623417:0,0,0 -g1,5299:7246811,38623417 -g1,5299:7246811,38623417 -g1,5299:6919131,38623417 -(1,5299:6919131,38623417:0,0,0 -) -g1,5299:7246811,38623417 -) -g1,5301:8195248,38623417 -g1,5301:9459831,38623417 -h1,5301:12305142,38623417:0,0,0 -k1,5301:31966990,38623417:19661848 -g1,5301:31966990,38623417 -) -(1,5303:7246811,39944955:24720180,404226,76021 -(1,5302:7246811,39944955:0,0,0 -g1,5302:7246811,39944955 -g1,5302:7246811,39944955 -g1,5302:6919131,39944955 -(1,5302:6919131,39944955:0,0,0 -) -g1,5302:7246811,39944955 -) -k1,5303:7246811,39944955:0 -h1,5303:11672850,39944955:0,0,0 -k1,5303:31966990,39944955:20294140 -g1,5303:31966990,39944955 -) -(1,5307:7246811,40676669:24720180,404226,107478 -(1,5305:7246811,40676669:0,0,0 -g1,5305:7246811,40676669 -g1,5305:7246811,40676669 -g1,5305:6919131,40676669 -(1,5305:6919131,40676669:0,0,0 -) -g1,5305:7246811,40676669 -) -g1,5307:8195248,40676669 -g1,5307:9459831,40676669 -h1,5307:12305142,40676669:0,0,0 -k1,5307:31966990,40676669:19661848 -g1,5307:31966990,40676669 -) -(1,5309:7246811,41998207:24720180,404226,76021 -(1,5308:7246811,41998207:0,0,0 -g1,5308:7246811,41998207 -g1,5308:7246811,41998207 -g1,5308:6919131,41998207 -(1,5308:6919131,41998207:0,0,0 -) -g1,5308:7246811,41998207 -) -k1,5309:7246811,41998207:0 -h1,5309:13253579,41998207:0,0,0 -k1,5309:31966991,41998207:18713412 -g1,5309:31966991,41998207 -) -(1,5313:7246811,42729921:24720180,379060,7863 -(1,5311:7246811,42729921:0,0,0 -g1,5311:7246811,42729921 -g1,5311:7246811,42729921 -g1,5311:6919131,42729921 -(1,5311:6919131,42729921:0,0,0 -) -g1,5311:7246811,42729921 -) -g1,5313:8195248,42729921 -h1,5313:9459831,42729921:0,0,0 -k1,5313:31966991,42729921:22507160 -g1,5313:31966991,42729921 -) -] -) -g1,5314:31966991,42737784 -g1,5314:7246811,42737784 -g1,5314:7246811,42737784 -g1,5314:31966991,42737784 -g1,5314:31966991,42737784 -) -h1,5314:7246811,42934392:0,0,0 -] -) -] -r1,5344:32583029,44048504:26214,18311303,0 -) -] -) -) -g1,5344:32583029,43458680 -) -] -(1,5344:32583029,45706769:0,0,0 -g1,5344:32583029,45706769 -) -) -] -(1,5344:6630773,47279633:25952256,0,0 -h1,5344:6630773,47279633:25952256,0,0 -) -] -(1,5344:4262630,4025873:0,0,0 -[1,5344:-473656,4025873:0,0,0 -(1,5344:-473656,-710413:0,0,0 -(1,5344:-473656,-710413:0,0,0 -g1,5344:-473656,-710413 -) -g1,5344:-473656,-710413 -) -] -) -] -!20545 -}97 -Input:733:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:734:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:735:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:736:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:737:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:738:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:739:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:740:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:741:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:742:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:743:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:744:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1103 -{98 -[1,5372:4262630,47279633:28320399,43253760,0 -(1,5372:4262630,4025873:0,0,0 -[1,5372:-473656,4025873:0,0,0 -(1,5372:-473656,-710413:0,0,0 -(1,5372:-473656,-644877:0,0,0 -k1,5372:-473656,-644877:-65536 -) -(1,5372:-473656,4736287:0,0,0 -k1,5372:-473656,4736287:5209943 -) -g1,5372:-473656,-710413 -) -] -) -[1,5372:6630773,47279633:25952256,43253760,0 -[1,5372:6630773,4812305:25952256,786432,0 -(1,5372:6630773,4812305:25952256,505283,134348 -(1,5372:6630773,4812305:25952256,505283,134348 -g1,5372:3078558,4812305 -[1,5372:3078558,4812305:0,0,0 -(1,5372:3078558,2439708:0,1703936,0 -k1,5372:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,5372:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,5372:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,5372:3078558,4812305:0,0,0 -(1,5372:3078558,2439708:0,1703936,0 -g1,5372:29030814,2439708 -g1,5372:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,5372:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,5372:37855564,2439708:1179648,16384,0 -) -) -k1,5372:3078556,2439708:-34777008 -) -] -[1,5372:3078558,4812305:0,0,0 -(1,5372:3078558,49800853:0,16384,2228224 -k1,5372:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,5372:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,5372:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,5372:3078558,4812305:0,0,0 -(1,5372:3078558,49800853:0,16384,2228224 -g1,5372:29030814,49800853 -g1,5372:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,5372:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,5372:37855564,49800853:1179648,16384,0 -) -) -k1,5372:3078556,49800853:-34777008 -) -] -g1,5372:6630773,4812305 -g1,5372:6630773,4812305 -g1,5372:8951402,4812305 -g1,5372:10361081,4812305 -g1,5372:12911086,4812305 -g1,5372:14538345,4812305 -k1,5372:31786111,4812305:17247766 -) -) -] -[1,5372:6630773,45706769:25952256,40108032,0 -(1,5372:6630773,45706769:25952256,40108032,0 -(1,5372:6630773,45706769:0,0,0 -g1,5372:6630773,45706769 -) -[1,5372:6630773,45706769:25952256,40108032,0 -v1,5344:6630773,6254097:0,393216,0 -(1,5344:6630773,16023856:25952256,10162975,616038 -g1,5344:6630773,16023856 -(1,5344:6630773,16023856:25952256,10162975,616038 -(1,5344:6630773,16639894:25952256,10779013,0 -[1,5344:6630773,16639894:25952256,10779013,0 -(1,5344:6630773,16613680:25952256,10752799,0 -r1,5372:6656987,16613680:26214,10752799,0 -[1,5344:6656987,16613680:25899828,10752799,0 -(1,5344:6656987,16023856:25899828,9573151,0 -[1,5344:7246811,16023856:24720180,9573151,0 -v1,5318:7246811,6843921:0,393216,0 -(1,5342:7246811,15302960:24720180,8852255,196608 -g1,5342:7246811,15302960 -g1,5342:7246811,15302960 -g1,5342:7050203,15302960 -(1,5342:7050203,15302960:0,8852255,196608 -r1,5372:32163599,15302960:25113396,9048863,196608 -k1,5342:7050203,15302960:-25113396 -) -(1,5342:7050203,15302960:25113396,8852255,196608 -[1,5342:7246811,15302960:24720180,8655647,0 -(1,5320:7246811,7057831:24720180,410518,76021 -(1,5319:7246811,7057831:0,0,0 -g1,5319:7246811,7057831 -g1,5319:7246811,7057831 -g1,5319:6919131,7057831 -(1,5319:6919131,7057831:0,0,0 -) -g1,5319:7246811,7057831 -) -g1,5320:10092122,7057831 -g1,5320:11040560,7057831 -k1,5320:11040560,7057831:0 -h1,5320:15782745,7057831:0,0,0 -k1,5320:31966991,7057831:16184246 -g1,5320:31966991,7057831 -) -(1,5321:7246811,7724009:24720180,410518,76021 -h1,5321:7246811,7724009:0,0,0 -k1,5321:7246811,7724009:0 -h1,5321:11672851,7724009:0,0,0 -k1,5321:31966991,7724009:20294140 -g1,5321:31966991,7724009 -) -(1,5325:7246811,8455723:24720180,404226,76021 -(1,5323:7246811,8455723:0,0,0 -g1,5323:7246811,8455723 -g1,5323:7246811,8455723 -g1,5323:6919131,8455723 -(1,5323:6919131,8455723:0,0,0 -) -g1,5323:7246811,8455723 -) -g1,5325:8195248,8455723 -g1,5325:9459831,8455723 -h1,5325:12305142,8455723:0,0,0 -k1,5325:31966990,8455723:19661848 -g1,5325:31966990,8455723 -) -(1,5327:7246811,9777261:24720180,410518,76021 -(1,5326:7246811,9777261:0,0,0 -g1,5326:7246811,9777261 -g1,5326:7246811,9777261 -g1,5326:6919131,9777261 -(1,5326:6919131,9777261:0,0,0 -) -g1,5326:7246811,9777261 -) -k1,5327:7246811,9777261:0 -h1,5327:11988996,9777261:0,0,0 -k1,5327:31966992,9777261:19977996 -g1,5327:31966992,9777261 -) -(1,5331:7246811,10508975:24720180,410518,76021 -(1,5329:7246811,10508975:0,0,0 -g1,5329:7246811,10508975 -g1,5329:7246811,10508975 -g1,5329:6919131,10508975 -(1,5329:6919131,10508975:0,0,0 -) -g1,5329:7246811,10508975 -) -g1,5331:8195248,10508975 -g1,5331:9459831,10508975 -h1,5331:11988996,10508975:0,0,0 -k1,5331:31966992,10508975:19977996 -g1,5331:31966992,10508975 -) -(1,5333:7246811,11830513:24720180,410518,76021 -(1,5332:7246811,11830513:0,0,0 -g1,5332:7246811,11830513 -g1,5332:7246811,11830513 -g1,5332:6919131,11830513 -(1,5332:6919131,11830513:0,0,0 -) -g1,5332:7246811,11830513 -) -k1,5333:7246811,11830513:0 -h1,5333:13569725,11830513:0,0,0 -k1,5333:31966991,11830513:18397266 -g1,5333:31966991,11830513 -) -(1,5341:7246811,12562227:24720180,410518,31456 -(1,5335:7246811,12562227:0,0,0 -g1,5335:7246811,12562227 -g1,5335:7246811,12562227 -g1,5335:6919131,12562227 -(1,5335:6919131,12562227:0,0,0 -) -g1,5335:7246811,12562227 -) -g1,5341:8195248,12562227 -h1,5341:10408268,12562227:0,0,0 -k1,5341:31966992,12562227:21558724 -g1,5341:31966992,12562227 -) -(1,5341:7246811,13228405:24720180,404226,76021 -h1,5341:7246811,13228405:0,0,0 -g1,5341:8195248,13228405 -g1,5341:8511394,13228405 -g1,5341:9775977,13228405 -g1,5341:11040560,13228405 -g1,5341:11356706,13228405 -g1,5341:12621289,13228405 -g1,5341:12937435,13228405 -g1,5341:14202018,13228405 -g1,5341:14518164,13228405 -g1,5341:15782747,13228405 -g1,5341:16098893,13228405 -g1,5341:17363476,13228405 -g1,5341:17679622,13228405 -g1,5341:18944205,13228405 -g1,5341:19260351,13228405 -g1,5341:20524934,13228405 -g1,5341:20841080,13228405 -g1,5341:22105663,13228405 -g1,5341:22421809,13228405 -g1,5341:23686392,13228405 -g1,5341:24002538,13228405 -h1,5341:25267121,13228405:0,0,0 -k1,5341:31966991,13228405:6699870 -g1,5341:31966991,13228405 -) -(1,5341:7246811,13894583:24720180,379060,0 -h1,5341:7246811,13894583:0,0,0 -h1,5341:7879102,13894583:0,0,0 -k1,5341:31966990,13894583:24087888 -g1,5341:31966990,13894583 -) -(1,5341:7246811,14560761:24720180,410518,31456 -h1,5341:7246811,14560761:0,0,0 -g1,5341:8195248,14560761 -h1,5341:10092122,14560761:0,0,0 -k1,5341:31966990,14560761:21874868 -g1,5341:31966990,14560761 -) -(1,5341:7246811,15226939:24720180,410518,76021 -h1,5341:7246811,15226939:0,0,0 -g1,5341:8195248,15226939 -g1,5341:9459831,15226939 -h1,5341:11988996,15226939:0,0,0 -k1,5341:31966992,15226939:19977996 -g1,5341:31966992,15226939 -) -] -) -g1,5342:31966991,15302960 -g1,5342:7246811,15302960 -g1,5342:7246811,15302960 -g1,5342:31966991,15302960 -g1,5342:31966991,15302960 -) -h1,5342:7246811,15499568:0,0,0 -] -) -] -r1,5372:32583029,16613680:26214,10752799,0 -) -] -) -) -g1,5344:32583029,16023856 -) -h1,5344:6630773,16639894:0,0,0 -(1,5350:6630773,19971750:25952256,32768,229376 -(1,5350:6630773,19971750:0,32768,229376 -(1,5350:6630773,19971750:5505024,32768,229376 -r1,5372:12135797,19971750:5505024,262144,229376 -) -k1,5350:6630773,19971750:-5505024 -) -(1,5350:6630773,19971750:25952256,32768,0 -r1,5372:32583029,19971750:25952256,32768,0 -) -) -(1,5350:6630773,21576078:25952256,606339,161218 -(1,5350:6630773,21576078:2464678,582746,14155 -g1,5350:6630773,21576078 -g1,5350:9095451,21576078 -) -g1,5350:11973006,21576078 -g1,5350:13682709,21576078 -g1,5350:16859895,21576078 -k1,5350:32583029,21576078:14029946 -g1,5350:32583029,21576078 -) -(1,5352:6630773,22880906:25952256,555811,147783 -(1,5352:6630773,22880906:2899444,534184,12975 -g1,5352:6630773,22880906 -g1,5352:9530217,22880906 -) -g1,5352:11409593,22880906 -g1,5352:13075584,22880906 -g1,5352:14006261,22880906 -g1,5352:14750226,22880906 -g1,5352:16317454,22880906 -k1,5352:32583029,22880906:12917734 -g1,5352:32583029,22880906 -) -(1,5355:6630773,24115610:25952256,513147,134348 -k1,5354:7629354,24115610:169551 -k1,5354:8546671,24115610:169551 -k1,5354:10024975,24115610:169550 -k1,5354:10845954,24115610:169551 -k1,5354:13421332,24115610:169551 -k1,5354:15241080,24115610:169551 -k1,5354:19023630,24115610:169550 -k1,5354:22358570,24115610:169551 -k1,5354:23396473,24115610:169551 -k1,5354:25096290,24115610:169551 -k1,5354:26957981,24115610:169551 -k1,5354:28324218,24115610:169550 -k1,5354:30056803,24115610:169551 -k1,5354:31714677,24115610:169551 -k1,5354:32583029,24115610:0 -) -(1,5355:6630773,24957098:25952256,513147,126483 -k1,5354:7912751,24957098:189493 -(1,5354:7912751,24957098:0,414482,115847 -r1,5372:9326152,24957098:1413401,530329,115847 -k1,5354:7912751,24957098:-1413401 -) -(1,5354:7912751,24957098:1413401,414482,115847 -k1,5354:7912751,24957098:3277 -h1,5354:9322875,24957098:0,411205,112570 -) -k1,5354:9689316,24957098:189494 -k1,5354:11035519,24957098:189493 -k1,5354:11884305,24957098:189494 -k1,5354:13092883,24957098:189493 -k1,5354:15034154,24957098:189494 -k1,5354:16613010,24957098:189493 -k1,5354:18067348,24957098:189493 -k1,5354:21015252,24957098:189494 -k1,5354:21820783,24957098:189493 -k1,5354:23444205,24957098:189494 -k1,5354:24222211,24957098:189493 -k1,5354:27201573,24957098:189494 -(1,5354:27201573,24957098:0,452978,115847 -r1,5372:29318398,24957098:2116825,568825,115847 -k1,5354:27201573,24957098:-2116825 -) -(1,5354:27201573,24957098:2116825,452978,115847 -k1,5354:27201573,24957098:3277 -h1,5354:29315121,24957098:0,411205,112570 -) -k1,5354:29507891,24957098:189493 -k1,5354:30228882,24957098:189494 -k1,5354:31931601,24957098:189493 -k1,5354:32583029,24957098:0 -) -(1,5355:6630773,25798586:25952256,505283,134348 -k1,5354:8215784,25798586:208755 -k1,5354:9813901,25798586:208754 -k1,5354:12312484,25798586:208755 -k1,5354:13805745,25798586:208755 -k1,5354:15006060,25798586:208755 -k1,5354:17973224,25798586:208754 -k1,5354:18798017,25798586:208755 -k1,5354:19421605,25798586:208745 -k1,5354:20313245,25798586:208755 -k1,5354:23661829,25798586:208754 -k1,5354:24486622,25798586:208755 -k1,5354:27779501,25798586:208755 -k1,5354:28458149,25798586:208755 -k1,5354:29198400,25798586:208754 -k1,5354:30692971,25798586:208755 -k1,5355:32583029,25798586:0 -) -(1,5355:6630773,26640074:25952256,513147,134348 -k1,5354:7821461,26640074:237795 -k1,5354:8710684,26640074:237795 -k1,5354:11130172,26640074:237794 -k1,5354:12757330,26640074:237795 -k1,5354:14806540,26640074:237795 -k1,5354:15660373,26640074:237795 -k1,5354:17211509,26640074:237794 -k1,5354:18843255,26640074:237795 -k1,5354:21343353,26640074:237795 -k1,5354:24265503,26640074:237795 -k1,5354:26884875,26640074:237794 -k1,5354:27884198,26640074:237795 -k1,5354:29823963,26640074:237795 -k1,5354:32583029,26640074:0 -) -(1,5355:6630773,27481562:25952256,513147,134348 -k1,5354:7486784,27481562:173126 -k1,5354:11003558,27481562:173127 -k1,5354:12689910,27481562:173126 -k1,5354:13810688,27481562:173127 -k1,5354:15373177,27481562:173126 -k1,5354:18673026,27481562:173126 -k1,5354:21381086,27481562:173127 -k1,5354:24355220,27481562:173126 -k1,5354:27286757,27481562:173127 -k1,5354:28075921,27481562:173126 -k1,5354:29268133,27481562:173127 -k1,5354:29856076,27481562:173100 -k1,5355:32583029,27481562:0 -) -(1,5355:6630773,28323050:25952256,513147,134348 -k1,5354:8273165,28323050:201255 -k1,5354:9160582,28323050:201255 -k1,5354:10640444,28323050:201255 -k1,5354:11527861,28323050:201255 -k1,5354:15458770,28323050:201255 -k1,5354:18570479,28323050:201255 -k1,5354:20487467,28323050:201255 -k1,5354:23472691,28323050:201255 -k1,5354:26699743,28323050:201255 -k1,5354:29319932,28323050:201255 -k1,5354:30180479,28323050:201255 -k1,5354:32583029,28323050:0 -) -(1,5355:6630773,29164538:25952256,513147,134348 -k1,5354:7993065,29164538:170847 -k1,5354:11071089,29164538:170847 -k1,5354:13584193,29164538:170847 -k1,5354:16040281,29164538:170848 -k1,5354:18895483,29164538:170847 -k1,5354:20487151,29164538:170847 -k1,5354:21309426,29164538:170847 -k1,5354:22892574,29164538:170847 -k1,5354:23746306,29164538:170847 -k1,5354:26098848,29164538:170848 -k1,5354:29155245,29164538:170847 -k1,5354:30715455,29164538:170847 -k1,5354:31417799,29164538:170847 -k1,5355:32583029,29164538:0 -) -(1,5355:6630773,30006026:25952256,505283,126483 -k1,5354:9030453,30006026:222574 -k1,5354:9869065,30006026:222574 -k1,5354:10506459,30006026:222551 -k1,5354:15555104,30006026:222574 -k1,5354:16393716,30006026:222574 -k1,5354:17065843,30006026:222550 -k1,5354:18822615,30006026:222574 -k1,5354:23670064,30006026:222574 -k1,5354:25084083,30006026:222574 -k1,5354:25922695,30006026:222574 -k1,5354:27348510,30006026:222574 -k1,5354:29326794,30006026:222574 -k1,5354:30165406,30006026:222574 -k1,5354:32583029,30006026:0 -) -(1,5355:6630773,30847514:25952256,513147,134348 -h1,5354:7029232,30847514:0,0,0 -k1,5354:7272332,30847514:243100 -k1,5354:9994004,30847514:243100 -k1,5354:11046474,30847514:243100 -k1,5354:12787727,30847514:243100 -h1,5354:13983104,30847514:0,0,0 -k1,5354:14399874,30847514:243100 -k1,5354:15112867,30847514:243100 -k1,5354:15887464,30847514:243100 -k1,5354:17416380,30847514:243100 -k1,5354:19243486,30847514:243101 -k1,5354:20138014,30847514:243100 -k1,5354:21889097,30847514:243100 -k1,5354:22748235,30847514:243100 -k1,5354:24648085,30847514:243100 -k1,5354:26175691,30847514:243100 -k1,5354:27034829,30847514:243100 -k1,5354:27866442,30847514:243100 -k1,5354:29721072,30847514:243100 -k1,5354:32583029,30847514:0 -) -(1,5355:6630773,31689002:25952256,513147,134348 -k1,5354:9791063,31689002:259011 -k1,5354:12976258,31689002:259012 -k1,5354:14226829,31689002:259011 -k1,5354:17301923,31689002:259012 -k1,5354:18247096,31689002:259011 -k1,5354:21908737,31689002:259012 -k1,5354:22819176,31689002:259011 -k1,5354:24097272,31689002:259011 -(1,5354:24097272,31689002:0,459977,115847 -r1,5372:25510673,31689002:1413401,575824,115847 -k1,5354:24097272,31689002:-1413401 -) -(1,5354:24097272,31689002:1413401,459977,115847 -k1,5354:24097272,31689002:3277 -h1,5354:25507396,31689002:0,411205,112570 -) -k1,5354:25769685,31689002:259012 -k1,5354:26711581,31689002:259011 -(1,5354:26711581,31689002:0,452978,115847 -r1,5372:28124982,31689002:1413401,568825,115847 -k1,5354:26711581,31689002:-1413401 -) -(1,5354:26711581,31689002:1413401,452978,115847 -k1,5354:26711581,31689002:3277 -h1,5354:28121705,31689002:0,411205,112570 -) -k1,5354:28383994,31689002:259012 -k1,5354:31923737,31689002:259011 -k1,5354:32583029,31689002:0 -) -(1,5355:6630773,32530490:25952256,513147,134348 -g1,5354:8581779,32530490 -g1,5354:11806805,32530490 -g1,5354:13238111,32530490 -g1,5354:15716027,32530490 -h1,5354:17085074,32530490:0,0,0 -g1,5354:17284303,32530490 -g1,5354:19962104,32530490 -g1,5354:20970703,32530490 -g1,5354:22668085,32530490 -h1,5354:23863462,32530490:0,0,0 -k1,5355:32583029,32530490:8338803 -g1,5355:32583029,32530490 -) -(1,5357:6630773,33371978:25952256,513147,134348 -h1,5356:6630773,33371978:983040,0,0 -k1,5356:8436028,33371978:194380 -k1,5356:9649494,33371978:194381 -k1,5356:11227994,33371978:194380 -k1,5356:14083792,33371978:194381 -k1,5356:15146524,33371978:194380 -k1,5356:16717161,33371978:194381 -k1,5356:18300904,33371978:194380 -k1,5356:21253695,33371978:194381 -k1,5356:22064113,33371978:194380 -k1,5356:22673332,33371978:194376 -k1,5356:23553874,33371978:194380 -k1,5356:24163093,33371978:194376 -k1,5356:26647301,33371978:194380 -k1,5356:27603210,33371978:194381 -k1,5356:29887533,33371978:194380 -k1,5357:32583029,33371978:0 -) -(1,5357:6630773,34213466:25952256,513147,134348 -(1,5356:6630773,34213466:0,452978,115847 -r1,5372:8747598,34213466:2116825,568825,115847 -k1,5356:6630773,34213466:-2116825 -) -(1,5356:6630773,34213466:2116825,452978,115847 -k1,5356:6630773,34213466:3277 -h1,5356:8744321,34213466:0,411205,112570 -) -g1,5356:9120497,34213466 -g1,5356:10516413,34213466 -g1,5356:12859980,34213466 -g1,5356:13474052,34213466 -g1,5356:15632807,34213466 -(1,5356:15632807,34213466:0,414482,115847 -r1,5372:17046208,34213466:1413401,530329,115847 -k1,5356:15632807,34213466:-1413401 -) -(1,5356:15632807,34213466:1413401,414482,115847 -k1,5356:15632807,34213466:3277 -h1,5356:17042931,34213466:0,411205,112570 -) -g1,5356:17245437,34213466 -g1,5356:17976163,34213466 -g1,5356:18531252,34213466 -g1,5356:20119844,34213466 -k1,5357:32583029,34213466:10413219 -g1,5357:32583029,34213466 -) -v1,5359:6630773,35403932:0,393216,0 -(1,5363:6630773,35687571:25952256,676855,196608 -g1,5363:6630773,35687571 -g1,5363:6630773,35687571 -g1,5363:6434165,35687571 -(1,5363:6434165,35687571:0,676855,196608 -r1,5372:32779637,35687571:26345472,873463,196608 -k1,5363:6434165,35687571:-26345472 -) -(1,5363:6434165,35687571:26345472,676855,196608 -[1,5363:6630773,35687571:25952256,480247,0 -(1,5361:6630773,35611550:25952256,404226,76021 -(1,5360:6630773,35611550:0,0,0 -g1,5360:6630773,35611550 -g1,5360:6630773,35611550 -g1,5360:6303093,35611550 -(1,5360:6303093,35611550:0,0,0 -) -g1,5360:6630773,35611550 -) -k1,5361:6630773,35611550:0 -h1,5361:9792230,35611550:0,0,0 -k1,5361:32583030,35611550:22790800 -g1,5361:32583030,35611550 -) -] -) -g1,5363:32583029,35687571 -g1,5363:6630773,35687571 -g1,5363:6630773,35687571 -g1,5363:32583029,35687571 -g1,5363:32583029,35687571 -) -h1,5363:6630773,35884179:0,0,0 -(1,5368:6630773,37249955:25952256,513147,126483 -h1,5366:6630773,37249955:983040,0,0 -k1,5366:9417077,37249955:198287 -k1,5366:10483716,37249955:198287 -k1,5366:12157219,37249955:198288 -k1,5366:12711366,37249955:198287 -k1,5366:14299016,37249955:198287 -k1,5366:15431846,37249955:198287 -k1,5366:18587774,37249955:198288 -k1,5366:19805146,37249955:198287 -k1,5366:21309566,37249955:198287 -k1,5366:22863138,37249955:198287 -k1,5366:23592923,37249955:198288 -k1,5366:26078417,37249955:198287 -k1,5366:26928132,37249955:198287 -k1,5366:29494890,37249955:198287 -k1,5366:30324945,37249955:198288 -k1,5366:31714677,37249955:198287 -k1,5366:32583029,37249955:0 -) -(1,5368:6630773,38091443:25952256,505283,134348 -g1,5366:7962464,38091443 -g1,5366:8976961,38091443 -g1,5366:10379431,38091443 -g1,5366:11972611,38091443 -(1,5366:11972611,38091443:0,414482,115847 -r1,5372:13386012,38091443:1413401,530329,115847 -k1,5366:11972611,38091443:-1413401 -) -(1,5366:11972611,38091443:1413401,414482,115847 -k1,5366:11972611,38091443:3277 -h1,5366:13382735,38091443:0,411205,112570 -) -g1,5366:13585241,38091443 -g1,5366:14400508,38091443 -g1,5366:16878424,38091443 -h1,5366:18247471,38091443:0,0,0 -g1,5366:18446700,38091443 -g1,5366:19455299,38091443 -g1,5366:21152681,38091443 -h1,5366:21949599,38091443:0,0,0 -g1,5366:22322498,38091443 -k1,5368:32583029,38091443:10260531 -g1,5368:32583029,38091443 -) -(1,5369:6630773,40182703:25952256,564462,12975 -(1,5369:6630773,40182703:2899444,534184,12975 -g1,5369:6630773,40182703 -g1,5369:9530217,40182703 -) -g1,5369:11150071,40182703 -k1,5369:32583029,40182703:19931332 -g1,5369:32583029,40182703 -) -(1,5372:6630773,41417407:25952256,513147,134348 -k1,5371:7629340,41417407:238349 -k1,5371:10306939,41417407:238349 -k1,5371:11158051,41417407:238350 -k1,5371:12415485,41417407:238349 -k1,5371:13836759,41417407:238349 -k1,5371:14734400,41417407:238349 -k1,5371:15328610,41417407:238350 -k1,5371:18089440,41417407:238349 -k1,5371:19346874,41417407:238349 -k1,5371:21929446,41417407:238349 -k1,5371:25552075,41417407:238350 -k1,5371:29152421,41417407:238349 -k1,5371:30409855,41417407:238349 -k1,5371:32583029,41417407:0 -) -(1,5372:6630773,42258895:25952256,513147,134348 -k1,5371:7573355,42258895:283290 -k1,5371:9315475,42258895:283289 -k1,5371:11195222,42258895:283290 -k1,5371:12010008,42258895:283289 -k1,5371:14104713,42258895:283290 -k1,5371:15655468,42258895:283289 -k1,5371:16294618,42258895:283290 -k1,5371:17560947,42258895:283289 -k1,5371:19712013,42258895:283290 -(1,5371:19712013,42258895:0,414482,115847 -r1,5372:21828838,42258895:2116825,530329,115847 -k1,5371:19712013,42258895:-2116825 -) -(1,5371:19712013,42258895:2116825,414482,115847 -k1,5371:19712013,42258895:3277 -h1,5371:21825561,42258895:0,411205,112570 -) -k1,5371:22285797,42258895:283289 -k1,5371:23196922,42258895:283290 -k1,5371:26146216,42258895:283289 -k1,5371:27080934,42258895:283290 -k1,5371:29397806,42258895:283290 -k1,5371:30700180,42258895:283289 -k1,5371:32583029,42258895:0 -) -(1,5372:6630773,43100383:25952256,505283,134348 -k1,5371:10411079,43100383:222356 -k1,5371:11091532,43100383:222356 -k1,5371:11845384,43100383:222355 -k1,5371:14697700,43100383:222356 -k1,5371:15571484,43100383:222356 -k1,5371:17184514,43100383:222356 -k1,5371:18563580,43100383:222356 -k1,5371:19468820,43100383:222355 -k1,5371:21341373,43100383:222356 -k1,5371:21978549,43100383:222333 -k1,5371:24490733,43100383:222356 -k1,5371:27118915,43100383:222355 -k1,5371:27957309,43100383:222356 -k1,5371:29198750,43100383:222356 -k1,5371:32583029,43100383:0 -) -(1,5372:6630773,43941871:25952256,513147,134348 -k1,5371:7433537,43941871:151336 -k1,5371:8929672,43941871:151336 -k1,5371:10816400,43941871:151335 -k1,5371:11986821,43941871:151336 -k1,5371:13791630,43941871:151336 -k1,5371:14926006,43941871:151336 -k1,5371:17257724,43941871:151335 -k1,5371:19010105,43941871:151336 -k1,5371:20144481,43941871:151336 -k1,5371:22033832,43941871:151336 -k1,5371:23172139,43941871:151335 -(1,5371:23172139,43941871:0,452978,115847 -r1,5372:24585540,43941871:1413401,568825,115847 -k1,5371:23172139,43941871:-1413401 -) -(1,5371:23172139,43941871:1413401,452978,115847 -k1,5371:23172139,43941871:3277 -h1,5371:24582263,43941871:0,411205,112570 -) -k1,5371:24736876,43941871:151336 -k1,5371:25571097,43941871:151336 -(1,5371:25571097,43941871:0,452978,115847 -r1,5372:26984498,43941871:1413401,568825,115847 -k1,5371:25571097,43941871:-1413401 -) -(1,5371:25571097,43941871:1413401,452978,115847 -k1,5371:25571097,43941871:3277 -h1,5371:26981221,43941871:0,411205,112570 -) -k1,5371:27516598,43941871:151336 -k1,5371:28939331,43941871:151335 -k1,5371:29773552,43941871:151336 -k1,5371:31575085,43941871:151336 -k1,5372:32583029,43941871:0 -) -(1,5372:6630773,44783359:25952256,513147,134348 -k1,5371:8484612,44783359:185292 -k1,5371:11796627,44783359:185292 -k1,5371:12633347,44783359:185292 -k1,5371:13950446,44783359:185292 -k1,5371:15918317,44783359:185292 -k1,5371:16786494,44783359:185292 -k1,5371:18526955,44783359:185292 -k1,5371:19816530,44783359:185293 -k1,5371:20749588,44783359:185292 -k1,5371:22746295,44783359:185292 -k1,5371:24199053,44783359:185292 -k1,5371:24740205,44783359:185292 -k1,5371:26798516,44783359:185292 -k1,5371:27966848,44783359:185292 -k1,5371:29887533,44783359:185292 -k1,5372:32583029,44783359:0 -) -(1,5372:6630773,45624847:25952256,513147,134348 -(1,5371:6630773,45624847:0,452978,115847 -r1,5372:8747598,45624847:2116825,568825,115847 -k1,5371:6630773,45624847:-2116825 -) -(1,5371:6630773,45624847:2116825,452978,115847 -k1,5371:6630773,45624847:3277 -h1,5371:8744321,45624847:0,411205,112570 -) -k1,5371:9139229,45624847:217961 -k1,5371:11916371,45624847:217961 -k1,5371:13153416,45624847:217960 -k1,5371:14354417,45624847:217961 -k1,5371:17155807,45624847:217961 -k1,5371:18139884,45624847:217961 -k1,5371:19376929,45624847:217960 -k1,5371:21406305,45624847:217961 -k1,5371:23914094,45624847:217961 -k1,5371:25399521,45624847:217961 -k1,5371:26636566,45624847:217960 -k1,5371:29198750,45624847:217961 -k1,5371:32583029,45624847:0 -) -] -(1,5372:32583029,45706769:0,0,0 -g1,5372:32583029,45706769 -) -) -] -(1,5372:6630773,47279633:25952256,0,0 -h1,5372:6630773,47279633:25952256,0,0 -) -] -(1,5372:4262630,4025873:0,0,0 -[1,5372:-473656,4025873:0,0,0 -(1,5372:-473656,-710413:0,0,0 -(1,5372:-473656,-710413:0,0,0 -g1,5372:-473656,-710413 -) -g1,5372:-473656,-710413 -) -] -) -] -!23965 -}98 -Input:745:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:746:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:747:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:748:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:749:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!466 -{99 -[1,5441:4262630,47279633:28320399,43253760,0 -(1,5441:4262630,4025873:0,0,0 -[1,5441:-473656,4025873:0,0,0 -(1,5441:-473656,-710413:0,0,0 -(1,5441:-473656,-644877:0,0,0 -k1,5441:-473656,-644877:-65536 -) -(1,5441:-473656,4736287:0,0,0 -k1,5441:-473656,4736287:5209943 -) -g1,5441:-473656,-710413 -) -] -) -[1,5441:6630773,47279633:25952256,43253760,0 -[1,5441:6630773,4812305:25952256,786432,0 -(1,5441:6630773,4812305:25952256,505283,134348 -(1,5441:6630773,4812305:25952256,505283,134348 -g1,5441:3078558,4812305 -[1,5441:3078558,4812305:0,0,0 -(1,5441:3078558,2439708:0,1703936,0 -k1,5441:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,5441:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,5441:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,5441:3078558,4812305:0,0,0 -(1,5441:3078558,2439708:0,1703936,0 -g1,5441:29030814,2439708 -g1,5441:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,5441:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,5441:37855564,2439708:1179648,16384,0 -) -) -k1,5441:3078556,2439708:-34777008 -) -] -[1,5441:3078558,4812305:0,0,0 -(1,5441:3078558,49800853:0,16384,2228224 -k1,5441:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,5441:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,5441:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,5441:3078558,4812305:0,0,0 -(1,5441:3078558,49800853:0,16384,2228224 -g1,5441:29030814,49800853 -g1,5441:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,5441:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,5441:37855564,49800853:1179648,16384,0 -) -) -k1,5441:3078556,49800853:-34777008 -) -] -g1,5441:6630773,4812305 -k1,5441:19515153,4812305:12087462 -g1,5441:20901894,4812305 -g1,5441:21550700,4812305 -g1,5441:24864855,4812305 -g1,5441:27600327,4812305 -g1,5441:29010006,4812305 -) -) -] -[1,5441:6630773,45706769:25952256,40108032,0 -(1,5441:6630773,45706769:25952256,40108032,0 -(1,5441:6630773,45706769:0,0,0 -g1,5441:6630773,45706769 -) -[1,5441:6630773,45706769:25952256,40108032,0 -(1,5372:6630773,6254097:25952256,513147,134348 -k1,5371:8305225,6254097:280501 -k1,5371:10094365,6254097:280501 -k1,5371:12810185,6254097:280502 -k1,5371:15332673,6254097:280501 -k1,5371:17487504,6254097:280501 -k1,5371:19081347,6254097:280501 -k1,5371:20353409,6254097:280502 -k1,5371:23303191,6254097:280501 -k1,5371:25616619,6254097:280501 -k1,5371:27498820,6254097:280501 -k1,5371:28194083,6254097:280420 -k1,5371:32583029,6254097:0 -) -(1,5372:6630773,7095585:25952256,513147,134348 -k1,5371:7873570,7095585:222401 -k1,5371:10606655,7095585:222401 -k1,5371:11933338,7095585:222401 -k1,5371:12903505,7095585:222401 -k1,5371:14538207,7095585:222401 -k1,5371:15952053,7095585:222401 -k1,5371:18461005,7095585:222401 -k1,5371:19444933,7095585:222400 -k1,5371:21586228,7095585:222401 -k1,5371:24472668,7095585:222401 -k1,5371:25354361,7095585:222401 -k1,5371:26195422,7095585:222401 -k1,5371:29248978,7095585:222401 -k1,5371:30490464,7095585:222401 -k1,5371:32583029,7095585:0 -) -(1,5372:6630773,7937073:25952256,513147,126483 -k1,5371:9096595,7937073:200242 -k1,5371:11477220,7937073:200242 -k1,5371:13014397,7937073:200243 -k1,5371:13962405,7937073:200242 -k1,5371:15228918,7937073:200242 -k1,5371:18150215,7937073:200242 -k1,5371:19744408,7937073:200242 -k1,5371:21978232,7937073:200242 -k1,5371:22593317,7937073:200242 -k1,5371:25631268,7937073:200242 -k1,5371:28507345,7937073:200242 -k1,5371:32583029,7937073:0 -) -(1,5372:6630773,8778561:25952256,505283,134348 -k1,5371:7376301,8778561:214031 -k1,5371:9277229,8778561:214031 -k1,5371:10682704,8778561:214030 -k1,5371:13487373,8778561:214031 -k1,5371:14720489,8778561:214031 -k1,5371:17556615,8778561:214031 -k1,5371:19160009,8778561:214031 -k1,5371:19905537,8778561:214031 -k1,5371:22798679,8778561:214030 -k1,5371:24280176,8778561:214031 -k1,5371:26218444,8778561:214016 -k1,5371:29911126,8778561:214031 -k1,5371:32583029,8778561:0 -) -(1,5372:6630773,9620049:25952256,513147,134348 -k1,5371:9989165,9620049:161546 -k1,5371:13493047,9620049:161546 -k1,5371:14267355,9620049:161546 -k1,5371:15447987,9620049:161547 -k1,5371:18182476,9620049:161546 -k1,5371:19003314,9620049:161546 -k1,5371:22204420,9620049:161546 -k1,5371:23634743,9620049:161546 -k1,5371:24900571,9620049:161546 -k1,5371:25809884,9620049:161547 -k1,5371:29232501,9620049:161546 -k1,5371:30155575,9620049:161546 -k1,5371:32583029,9620049:0 -) -(1,5372:6630773,10461537:25952256,505283,134348 -g1,5371:9341997,10461537 -g1,5371:12943855,10461537 -g1,5371:13794512,10461537 -(1,5371:13794512,10461537:0,452978,115847 -r1,5441:15911337,10461537:2116825,568825,115847 -k1,5371:13794512,10461537:-2116825 -) -(1,5371:13794512,10461537:2116825,452978,115847 -k1,5371:13794512,10461537:3277 -h1,5371:15908060,10461537:0,411205,112570 -) -k1,5372:32583029,10461537:16498022 -g1,5372:32583029,10461537 -) -(1,5374:6630773,11303025:25952256,513147,134348 -h1,5373:6630773,11303025:983040,0,0 -g1,5373:8766591,11303025 -g1,5373:10895200,11303025 -g1,5373:11450289,11303025 -g1,5373:13038881,11303025 -g1,5373:15114406,11303025 -g1,5373:17273161,11303025 -g1,5373:18663835,11303025 -g1,5373:20296992,11303025 -g1,5373:21886895,11303025 -g1,5373:22544221,11303025 -g1,5373:23394878,11303025 -g1,5373:23949967,11303025 -k1,5374:32583029,11303025:7476352 -g1,5374:32583029,11303025 -) -v1,5376:6630773,12439791:0,393216,0 -(1,5392:6630773,18805208:25952256,6758633,196608 -g1,5392:6630773,18805208 -g1,5392:6630773,18805208 -g1,5392:6434165,18805208 -(1,5392:6434165,18805208:0,6758633,196608 -r1,5441:32779637,18805208:26345472,6955241,196608 -k1,5392:6434165,18805208:-26345472 -) -(1,5392:6434165,18805208:26345472,6758633,196608 -[1,5392:6630773,18805208:25952256,6562025,0 -(1,5378:6630773,12653701:25952256,410518,101187 -(1,5377:6630773,12653701:0,0,0 -g1,5377:6630773,12653701 -g1,5377:6630773,12653701 -g1,5377:6303093,12653701 -(1,5377:6303093,12653701:0,0,0 -) -g1,5377:6630773,12653701 -) -g1,5378:8527647,12653701 -g1,5378:9476085,12653701 -g1,5378:13585980,12653701 -g1,5378:14218272,12653701 -g1,5378:15799002,12653701 -g1,5378:16431294,12653701 -g1,5378:17063586,12653701 -h1,5378:18328170,12653701:0,0,0 -k1,5378:32583029,12653701:14254859 -g1,5378:32583029,12653701 -) -(1,5379:6630773,13319879:25952256,410518,101187 -h1,5379:6630773,13319879:0,0,0 -h1,5379:8211501,13319879:0,0,0 -k1,5379:32583029,13319879:24371528 -g1,5379:32583029,13319879 -) -(1,5388:6630773,14051593:25952256,379060,101187 -(1,5381:6630773,14051593:0,0,0 -g1,5381:6630773,14051593 -g1,5381:6630773,14051593 -g1,5381:6303093,14051593 -(1,5381:6303093,14051593:0,0,0 -) -g1,5381:6630773,14051593 -) -g1,5388:7579210,14051593 -g1,5388:7895356,14051593 -g1,5388:8211502,14051593 -g1,5388:8843794,14051593 -h1,5388:9159940,14051593:0,0,0 -k1,5388:32583028,14051593:23423088 -g1,5388:32583028,14051593 -) -(1,5388:6630773,14717771:25952256,388497,9436 -h1,5388:6630773,14717771:0,0,0 -g1,5388:7579210,14717771 -g1,5388:8211502,14717771 -g1,5388:8843794,14717771 -h1,5388:9159940,14717771:0,0,0 -k1,5388:32583028,14717771:23423088 -g1,5388:32583028,14717771 -) -(1,5388:6630773,15383949:25952256,388497,0 -h1,5388:6630773,15383949:0,0,0 -g1,5388:7579210,15383949 -g1,5388:8211502,15383949 -g1,5388:8843794,15383949 -h1,5388:9159940,15383949:0,0,0 -k1,5388:32583028,15383949:23423088 -g1,5388:32583028,15383949 -) -(1,5388:6630773,16050127:25952256,388497,9436 -h1,5388:6630773,16050127:0,0,0 -g1,5388:7579210,16050127 -g1,5388:8211502,16050127 -g1,5388:8843794,16050127 -h1,5388:9159940,16050127:0,0,0 -k1,5388:32583028,16050127:23423088 -g1,5388:32583028,16050127 -) -(1,5388:6630773,16716305:25952256,388497,0 -h1,5388:6630773,16716305:0,0,0 -g1,5388:7579210,16716305 -g1,5388:8211502,16716305 -g1,5388:8843794,16716305 -h1,5388:9159940,16716305:0,0,0 -k1,5388:32583028,16716305:23423088 -g1,5388:32583028,16716305 -) -(1,5388:6630773,17382483:25952256,388497,9436 -h1,5388:6630773,17382483:0,0,0 -g1,5388:7579210,17382483 -g1,5388:8211502,17382483 -g1,5388:8843794,17382483 -h1,5388:9159940,17382483:0,0,0 -k1,5388:32583028,17382483:23423088 -g1,5388:32583028,17382483 -) -(1,5390:6630773,18704021:25952256,410518,101187 -(1,5389:6630773,18704021:0,0,0 -g1,5389:6630773,18704021 -g1,5389:6630773,18704021 -g1,5389:6303093,18704021 -(1,5389:6303093,18704021:0,0,0 -) -g1,5389:6630773,18704021 -) -k1,5390:6630773,18704021:0 -g1,5390:10424522,18704021 -g1,5390:12005251,18704021 -g1,5390:12637543,18704021 -k1,5390:12637543,18704021:0 -h1,5390:16431291,18704021:0,0,0 -k1,5390:32583029,18704021:16151738 -g1,5390:32583029,18704021 -) -] -) -g1,5392:32583029,18805208 -g1,5392:6630773,18805208 -g1,5392:6630773,18805208 -g1,5392:32583029,18805208 -g1,5392:32583029,18805208 -) -h1,5392:6630773,19001816:0,0,0 -(1,5396:6630773,20313892:25952256,513147,134348 -h1,5395:6630773,20313892:983040,0,0 -k1,5395:8768994,20313892:201632 -k1,5395:10895419,20313892:201633 -k1,5395:12116136,20313892:201632 -k1,5395:13707131,20313892:201632 -k1,5395:15785060,20313892:201633 -k1,5395:17946218,20313892:201632 -k1,5395:19339295,20313892:201632 -k1,5395:22022776,20313892:201633 -k1,5395:23508914,20313892:201632 -k1,5395:24168643,20313892:201632 -k1,5395:24901773,20313892:201633 -k1,5395:25912775,20313892:201632 -k1,5395:28138814,20313892:201632 -k1,5395:30746274,20313892:201633 -k1,5395:31563944,20313892:201632 -k1,5395:32583029,20313892:0 -) -(1,5396:6630773,21155380:25952256,505283,126483 -k1,5396:32583029,21155380:22394306 -g1,5396:32583029,21155380 -) -v1,5398:6630773,22292146:0,393216,0 -(1,5406:6630773,23979969:25952256,2081039,196608 -g1,5406:6630773,23979969 -g1,5406:6630773,23979969 -g1,5406:6434165,23979969 -(1,5406:6434165,23979969:0,2081039,196608 -r1,5441:32779637,23979969:26345472,2277647,196608 -k1,5406:6434165,23979969:-26345472 -) -(1,5406:6434165,23979969:26345472,2081039,196608 -[1,5406:6630773,23979969:25952256,1884431,0 -(1,5400:6630773,22506056:25952256,410518,101187 -(1,5399:6630773,22506056:0,0,0 -g1,5399:6630773,22506056 -g1,5399:6630773,22506056 -g1,5399:6303093,22506056 -(1,5399:6303093,22506056:0,0,0 -) -g1,5399:6630773,22506056 -) -k1,5400:6630773,22506056:0 -h1,5400:9476084,22506056:0,0,0 -k1,5400:32583028,22506056:23106944 -g1,5400:32583028,22506056 -) -(1,5401:6630773,23172234:25952256,410518,101187 -h1,5401:6630773,23172234:0,0,0 -g1,5401:10108376,23172234 -g1,5401:10740668,23172234 -h1,5401:13269834,23172234:0,0,0 -k1,5401:32583030,23172234:19313196 -g1,5401:32583030,23172234 -) -(1,5405:6630773,23903948:25952256,404226,76021 -(1,5403:6630773,23903948:0,0,0 -g1,5403:6630773,23903948 -g1,5403:6630773,23903948 -g1,5403:6303093,23903948 -(1,5403:6303093,23903948:0,0,0 -) -g1,5403:6630773,23903948 -) -g1,5405:7579210,23903948 -h1,5405:11372958,23903948:0,0,0 -k1,5405:32583030,23903948:21210072 -g1,5405:32583030,23903948 -) -] -) -g1,5406:32583029,23979969 -g1,5406:6630773,23979969 -g1,5406:6630773,23979969 -g1,5406:32583029,23979969 -g1,5406:32583029,23979969 -) -h1,5406:6630773,24176577:0,0,0 -(1,5410:6630773,25488653:25952256,513147,134348 -h1,5409:6630773,25488653:983040,0,0 -g1,5409:8766591,25488653 -g1,5409:10378121,25488653 -g1,5409:11596435,25488653 -g1,5409:12778704,25488653 -g1,5409:13846285,25488653 -g1,5409:16079096,25488653 -g1,5409:18089740,25488653 -g1,5409:18940397,25488653 -g1,5409:21392754,25488653 -g1,5409:22611068,25488653 -k1,5410:32583029,25488653:7838764 -g1,5410:32583029,25488653 -) -v1,5412:6630773,26625420:0,393216,0 -(1,5431:6630773,33630800:25952256,7398596,196608 -g1,5431:6630773,33630800 -g1,5431:6630773,33630800 -g1,5431:6434165,33630800 -(1,5431:6434165,33630800:0,7398596,196608 -r1,5441:32779637,33630800:26345472,7595204,196608 -k1,5431:6434165,33630800:-26345472 -) -(1,5431:6434165,33630800:26345472,7398596,196608 -[1,5431:6630773,33630800:25952256,7201988,0 -(1,5414:6630773,26839330:25952256,410518,101187 -(1,5413:6630773,26839330:0,0,0 -g1,5413:6630773,26839330 -g1,5413:6630773,26839330 -g1,5413:6303093,26839330 -(1,5413:6303093,26839330:0,0,0 -) -g1,5413:6630773,26839330 -) -k1,5414:6630773,26839330:0 -g1,5414:9792231,26839330 -g1,5414:10424523,26839330 -k1,5414:10424523,26839330:0 -h1,5414:14218271,26839330:0,0,0 -k1,5414:32583029,26839330:18364758 -g1,5414:32583029,26839330 -) -(1,5415:6630773,27505508:25952256,410518,101187 -h1,5415:6630773,27505508:0,0,0 -g1,5415:10108376,27505508 -g1,5415:10740668,27505508 -h1,5415:13269834,27505508:0,0,0 -k1,5415:32583030,27505508:19313196 -g1,5415:32583030,27505508 -) -(1,5419:6630773,28237222:25952256,410518,101187 -(1,5417:6630773,28237222:0,0,0 -g1,5417:6630773,28237222 -g1,5417:6630773,28237222 -g1,5417:6303093,28237222 -(1,5417:6303093,28237222:0,0,0 -) -g1,5417:6630773,28237222 -) -g1,5419:7579210,28237222 -g1,5419:8843793,28237222 -h1,5419:11056813,28237222:0,0,0 -k1,5419:32583029,28237222:21526216 -g1,5419:32583029,28237222 -) -(1,5421:6630773,29558760:25952256,410518,101187 -(1,5420:6630773,29558760:0,0,0 -g1,5420:6630773,29558760 -g1,5420:6630773,29558760 -g1,5420:6303093,29558760 -(1,5420:6303093,29558760:0,0,0 -) -g1,5420:6630773,29558760 -) -h1,5421:8211501,29558760:0,0,0 -k1,5421:32583029,29558760:24371528 -g1,5421:32583029,29558760 -) -(1,5430:6630773,30290474:25952256,379060,101187 -(1,5423:6630773,30290474:0,0,0 -g1,5423:6630773,30290474 -g1,5423:6630773,30290474 -g1,5423:6303093,30290474 -(1,5423:6303093,30290474:0,0,0 -) -g1,5423:6630773,30290474 -) -g1,5430:7579210,30290474 -g1,5430:7895356,30290474 -g1,5430:8211502,30290474 -g1,5430:8843794,30290474 -h1,5430:9159940,30290474:0,0,0 -k1,5430:32583028,30290474:23423088 -g1,5430:32583028,30290474 -) -(1,5430:6630773,30956652:25952256,388497,9436 -h1,5430:6630773,30956652:0,0,0 -g1,5430:7579210,30956652 -g1,5430:8211502,30956652 -g1,5430:8843794,30956652 -h1,5430:9159940,30956652:0,0,0 -k1,5430:32583028,30956652:23423088 -g1,5430:32583028,30956652 -) -(1,5430:6630773,31622830:25952256,388497,0 -h1,5430:6630773,31622830:0,0,0 -g1,5430:7579210,31622830 -g1,5430:8211502,31622830 -g1,5430:8843794,31622830 -h1,5430:9159940,31622830:0,0,0 -k1,5430:32583028,31622830:23423088 -g1,5430:32583028,31622830 -) -(1,5430:6630773,32289008:25952256,388497,9436 -h1,5430:6630773,32289008:0,0,0 -g1,5430:7579210,32289008 -g1,5430:8211502,32289008 -g1,5430:8843794,32289008 -h1,5430:9159940,32289008:0,0,0 -k1,5430:32583028,32289008:23423088 -g1,5430:32583028,32289008 -) -(1,5430:6630773,32955186:25952256,388497,0 -h1,5430:6630773,32955186:0,0,0 -g1,5430:7579210,32955186 -g1,5430:8211502,32955186 -g1,5430:8843794,32955186 -h1,5430:9159940,32955186:0,0,0 -k1,5430:32583028,32955186:23423088 -g1,5430:32583028,32955186 -) -(1,5430:6630773,33621364:25952256,388497,9436 -h1,5430:6630773,33621364:0,0,0 -g1,5430:7579210,33621364 -g1,5430:8211502,33621364 -g1,5430:8843794,33621364 -h1,5430:9159940,33621364:0,0,0 -k1,5430:32583028,33621364:23423088 -g1,5430:32583028,33621364 -) -] -) -g1,5431:32583029,33630800 -g1,5431:6630773,33630800 -g1,5431:6630773,33630800 -g1,5431:32583029,33630800 -g1,5431:32583029,33630800 -) -h1,5431:6630773,33827408:0,0,0 -(1,5435:6630773,35139484:25952256,513147,126483 -h1,5434:6630773,35139484:983040,0,0 -k1,5434:9086406,35139484:275906 -k1,5434:11627893,35139484:275907 -k1,5434:14084182,35139484:275906 -k1,5434:15873315,35139484:275907 -k1,5434:16680718,35139484:275906 -k1,5434:18978411,35139484:275907 -k1,5434:20445762,35139484:275906 -k1,5434:24728540,35139484:275907 -k1,5434:26889917,35139484:275906 -k1,5434:29338998,35139484:275907 -k1,5434:30230942,35139484:275906 -k1,5434:32583029,35139484:0 -) -(1,5435:6630773,35980972:25952256,513147,7863 -k1,5435:32583029,35980972:24465244 -g1,5435:32583029,35980972 -) -v1,5437:6630773,37293048:0,393216,0 -(1,5438:6630773,42095679:25952256,5195847,616038 -g1,5438:6630773,42095679 -(1,5438:6630773,42095679:25952256,5195847,616038 -(1,5438:6630773,42711717:25952256,5811885,0 -[1,5438:6630773,42711717:25952256,5811885,0 -(1,5438:6630773,42685503:25952256,5759457,0 -r1,5441:6656987,42685503:26214,5759457,0 -[1,5438:6656987,42685503:25899828,5759457,0 -(1,5438:6656987,42095679:25899828,4579809,0 -[1,5438:7246811,42095679:24720180,4579809,0 -(1,5438:7246811,38603244:24720180,1087374,134348 -k1,5437:8652052,38603244:195538 -k1,5437:9475425,38603244:195538 -k1,5437:10690048,38603244:195538 -k1,5437:13547002,38603244:195537 -k1,5437:15771535,38603244:195538 -k1,5437:17342674,38603244:195538 -k1,5437:18694922,38603244:195538 -k1,5437:20849986,38603244:195538 -k1,5437:22252697,38603244:195538 -k1,5437:24433321,38603244:195538 -k1,5437:25701027,38603244:195537 -k1,5437:27053275,38603244:195538 -k1,5437:28353095,38603244:195538 -k1,5437:30687073,38603244:195538 -k1,5437:31966991,38603244:0 -) -(1,5438:7246811,39444732:24720180,513147,134348 -k1,5437:8493087,39444732:227191 -k1,5437:10788595,39444732:227192 -k1,5437:11675078,39444732:227191 -k1,5437:15129263,39444732:227192 -k1,5437:17646283,39444732:227192 -k1,5437:18559636,39444732:227191 -k1,5437:22363127,39444732:227191 -k1,5437:23868926,39444732:227192 -k1,5437:25002480,39444732:227191 -k1,5437:27263254,39444732:227192 -k1,5437:29140643,39444732:227192 -k1,5437:30810281,39444732:227191 -k1,5437:31966991,39444732:0 -) -(1,5438:7246811,40286220:24720180,513147,126483 -k1,5437:8904778,40286220:268604 -k1,5437:11049678,40286220:268604 -k1,5437:11969710,40286220:268604 -k1,5437:13257399,40286220:268604 -k1,5437:15179476,40286220:268604 -k1,5437:16604790,40286220:268604 -k1,5437:18484925,40286220:268605 -k1,5437:19772614,40286220:268604 -k1,5437:21430581,40286220:268604 -k1,5437:23905782,40286220:268604 -k1,5437:25545399,40286220:268604 -k1,5437:26169863,40286220:268604 -k1,5437:27571585,40286220:268604 -k1,5437:30322037,40286220:268604 -k1,5437:31966991,40286220:0 -) -(1,5438:7246811,41127708:24720180,513147,134348 -k1,5437:9961312,41127708:142213 -k1,5437:11555147,41127708:142213 -k1,5437:12854070,41127708:142213 -k1,5437:14526549,41127708:142213 -k1,5437:15687847,41127708:142213 -k1,5437:19214339,41127708:142213 -k1,5437:20547998,41127708:142214 -k1,5437:22124139,41127708:142213 -k1,5437:24519480,41127708:142213 -k1,5437:26229314,41127708:142213 -k1,5437:27390612,41127708:142213 -k1,5437:28515865,41127708:142213 -k1,5437:29677163,41127708:142213 -k1,5437:31966991,41127708:0 -) -(1,5438:7246811,41969196:24720180,505283,126483 -g1,5437:8616513,41969196 -k1,5438:31966991,41969196:21365392 -g1,5438:31966991,41969196 -) -] -) -] -r1,5441:32583029,42685503:26214,5759457,0 -) -] -) -) -g1,5438:32583029,42095679 -) -h1,5438:6630773,42711717:0,0,0 -(1,5441:6630773,44023793:25952256,513147,134348 -h1,5440:6630773,44023793:983040,0,0 -k1,5440:11245695,44023793:159129 -k1,5440:11862922,44023793:159130 -k1,5440:12553548,44023793:159129 -k1,5440:14583076,44023793:159130 -k1,5440:15393633,44023793:159129 -k1,5440:17705621,44023793:159130 -k1,5440:18883835,44023793:159129 -k1,5440:21111280,44023793:159129 -k1,5440:21929702,44023793:159130 -k1,5440:23107916,44023793:159129 -k1,5440:25556874,44023793:159130 -k1,5440:26367431,44023793:159129 -k1,5440:27274327,44023793:159130 -k1,5440:29244871,44023793:159129 -k1,5440:30090163,44023793:159130 -k1,5440:30605152,44023793:159129 -k1,5440:32583029,44023793:0 -) -(1,5441:6630773,44865281:25952256,513147,134348 -k1,5440:7520869,44865281:230804 -k1,5440:10726352,44865281:230804 -k1,5440:13153266,44865281:230803 -k1,5440:15589357,44865281:230804 -k1,5440:16506323,44865281:230804 -k1,5440:17507830,44865281:230804 -k1,5440:20810961,44865281:230803 -k1,5440:21693193,44865281:230804 -k1,5440:25204729,44865281:230804 -(1,5440:25204729,44865281:0,452978,115847 -r1,5441:26618130,44865281:1413401,568825,115847 -k1,5440:25204729,44865281:-1413401 -) -(1,5440:25204729,44865281:1413401,452978,115847 -k1,5440:25204729,44865281:3277 -h1,5440:26614853,44865281:0,411205,112570 -) -k1,5440:27022604,44865281:230804 -k1,5440:28524805,44865281:230803 -k1,5440:30122690,44865281:230804 -k1,5440:30884991,44865281:230804 -k1,5440:32583029,44865281:0 -) -(1,5441:6630773,45706769:25952256,513147,134348 -k1,5440:9391531,45706769:221893 -k1,5440:10264853,45706769:221894 -k1,5440:11877420,45706769:221893 -k1,5440:12455173,45706769:221893 -k1,5440:14569747,45706769:221894 -k1,5440:15450932,45706769:221893 -k1,5440:17962653,45706769:221893 -k1,5440:20039216,45706769:221894 -k1,5440:21070479,45706769:221893 -k1,5440:22801011,45706769:221893 -k1,5440:25264891,45706769:221893 -k1,5440:26440334,45706769:221894 -k1,5440:27766509,45706769:221893 -k1,5440:29080887,45706769:221893 -(1,5440:29080887,45706769:0,452978,115847 -r1,5441:30494288,45706769:1413401,568825,115847 -k1,5440:29080887,45706769:-1413401 -) -(1,5440:29080887,45706769:1413401,452978,115847 -k1,5440:29080887,45706769:3277 -h1,5440:30491011,45706769:0,411205,112570 -) -k1,5440:30716182,45706769:221894 -k1,5440:31589503,45706769:221893 -k1,5440:32583029,45706769:0 -) -] -(1,5441:32583029,45706769:0,0,0 -g1,5441:32583029,45706769 -) -) -] -(1,5441:6630773,47279633:25952256,0,0 -h1,5441:6630773,47279633:25952256,0,0 -) -] -(1,5441:4262630,4025873:0,0,0 -[1,5441:-473656,4025873:0,0,0 -(1,5441:-473656,-710413:0,0,0 -(1,5441:-473656,-710413:0,0,0 -g1,5441:-473656,-710413 -) -g1,5441:-473656,-710413 -) -] -) -] -!21578 -}99 -Input:750:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:751:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:752:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:753:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:754:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!466 -{100 -[1,5517:4262630,47279633:28320399,43253760,0 -(1,5517:4262630,4025873:0,0,0 -[1,5517:-473656,4025873:0,0,0 -(1,5517:-473656,-710413:0,0,0 -(1,5517:-473656,-644877:0,0,0 -k1,5517:-473656,-644877:-65536 -) -(1,5517:-473656,4736287:0,0,0 -k1,5517:-473656,4736287:5209943 -) -g1,5517:-473656,-710413 -) -] -) -[1,5517:6630773,47279633:25952256,43253760,0 -[1,5517:6630773,4812305:25952256,786432,0 -(1,5517:6630773,4812305:25952256,505283,134348 -(1,5517:6630773,4812305:25952256,505283,134348 -g1,5517:3078558,4812305 -[1,5517:3078558,4812305:0,0,0 -(1,5517:3078558,2439708:0,1703936,0 -k1,5517:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,5517:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,5517:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,5517:3078558,4812305:0,0,0 -(1,5517:3078558,2439708:0,1703936,0 -g1,5517:29030814,2439708 -g1,5517:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,5517:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,5517:37855564,2439708:1179648,16384,0 -) -) -k1,5517:3078556,2439708:-34777008 -) -] -[1,5517:3078558,4812305:0,0,0 -(1,5517:3078558,49800853:0,16384,2228224 -k1,5517:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,5517:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,5517:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,5517:3078558,4812305:0,0,0 -(1,5517:3078558,49800853:0,16384,2228224 -g1,5517:29030814,49800853 -g1,5517:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,5517:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,5517:37855564,49800853:1179648,16384,0 -) -) -k1,5517:3078556,49800853:-34777008 -) -] -g1,5517:6630773,4812305 -g1,5517:6630773,4812305 -g1,5517:8951402,4812305 -g1,5517:10361081,4812305 -g1,5517:12911086,4812305 -g1,5517:14538345,4812305 -k1,5517:31786111,4812305:17247766 -) -) -] -[1,5517:6630773,45706769:25952256,40108032,0 -(1,5517:6630773,45706769:25952256,40108032,0 -(1,5517:6630773,45706769:0,0,0 -g1,5517:6630773,45706769 -) -[1,5517:6630773,45706769:25952256,40108032,0 -(1,5441:6630773,6254097:25952256,513147,134348 -k1,5440:7848395,6254097:198537 -k1,5440:10115247,6254097:198536 -k1,5440:10973076,6254097:198537 -k1,5440:13461440,6254097:198536 -k1,5440:16631379,6254097:198537 -k1,5440:17185775,6254097:198536 -k1,5440:19508989,6254097:198537 -(1,5440:19508989,6254097:0,414482,115847 -r1,5517:21977526,6254097:2468537,530329,115847 -k1,5440:19508989,6254097:-2468537 -) -(1,5440:19508989,6254097:2468537,414482,115847 -k1,5440:19508989,6254097:3277 -h1,5440:21974249,6254097:0,411205,112570 -) -k1,5440:22176063,6254097:198537 -k1,5440:23057484,6254097:198536 -k1,5440:23611881,6254097:198537 -k1,5440:26496738,6254097:198536 -k1,5440:28969374,6254097:198537 -k1,5440:32583029,6254097:0 -) -(1,5441:6630773,7095585:25952256,513147,134348 -k1,5440:8028936,7095585:201476 -k1,5440:10891830,7095585:201477 -k1,5440:12961737,7095585:201476 -k1,5440:14656124,7095585:201477 -k1,5440:16060841,7095585:201476 -k1,5440:16878356,7095585:201477 -k1,5440:18252271,7095585:201476 -k1,5440:20313003,7095585:201476 -k1,5440:21820613,7095585:201477 -k1,5440:24055671,7095585:201476 -k1,5440:24613008,7095585:201477 -k1,5440:27789163,7095585:201476 -k1,5440:29968517,7095585:201477 -k1,5440:31563944,7095585:201476 -k1,5440:32583029,7095585:0 -) -(1,5441:6630773,7937073:25952256,513147,134348 -k1,5440:8932210,7937073:233121 -k1,5440:9824623,7937073:233121 -k1,5440:11076829,7937073:233121 -k1,5440:13599778,7937073:233121 -k1,5440:16804301,7937073:233121 -k1,5440:17393282,7937073:233121 -k1,5440:20141019,7937073:233121 -k1,5440:21565584,7937073:233120 -k1,5440:23232633,7937073:233121 -k1,5440:25201147,7937073:233121 -k1,5440:26637509,7937073:233121 -k1,5440:28682045,7937073:233121 -k1,5440:30893043,7937073:233121 -k1,5440:31812326,7937073:233121 -k1,5440:32583029,7937073:0 -) -(1,5441:6630773,8778561:25952256,505283,134348 -g1,5440:9902330,8778561 -g1,5440:10752987,8778561 -(1,5440:10752987,8778561:0,414482,115847 -r1,5517:12166388,8778561:1413401,530329,115847 -k1,5440:10752987,8778561:-1413401 -) -(1,5440:10752987,8778561:1413401,414482,115847 -k1,5440:10752987,8778561:3277 -h1,5440:12163111,8778561:0,411205,112570 -) -g1,5440:12869589,8778561 -(1,5440:12869589,8778561:0,452978,115847 -r1,5517:14282990,8778561:1413401,568825,115847 -k1,5440:12869589,8778561:-1413401 -) -(1,5440:12869589,8778561:1413401,452978,115847 -k1,5440:12869589,8778561:3277 -h1,5440:14279713,8778561:0,411205,112570 -) -g1,5440:14482219,8778561 -k1,5441:32583029,8778561:14646407 -g1,5441:32583029,8778561 -) -v1,5443:6630773,9969027:0,393216,0 -(1,5448:6630773,10956593:25952256,1380782,196608 -g1,5448:6630773,10956593 -g1,5448:6630773,10956593 -g1,5448:6434165,10956593 -(1,5448:6434165,10956593:0,1380782,196608 -r1,5517:32779637,10956593:26345472,1577390,196608 -k1,5448:6434165,10956593:-26345472 -) -(1,5448:6434165,10956593:26345472,1380782,196608 -[1,5448:6630773,10956593:25952256,1184174,0 -(1,5445:6630773,10182937:25952256,410518,107478 -(1,5444:6630773,10182937:0,0,0 -g1,5444:6630773,10182937 -g1,5444:6630773,10182937 -g1,5444:6303093,10182937 -(1,5444:6303093,10182937:0,0,0 -) -g1,5444:6630773,10182937 -) -g1,5445:8843793,10182937 -g1,5445:9792231,10182937 -g1,5445:13269834,10182937 -g1,5445:13902126,10182937 -h1,5445:16115146,10182937:0,0,0 -k1,5445:32583029,10182937:16467883 -g1,5445:32583029,10182937 -) -(1,5446:6630773,10849115:25952256,410518,107478 -h1,5446:6630773,10849115:0,0,0 -g1,5446:9792231,10849115 -g1,5446:10424523,10849115 -g1,5446:12953689,10849115 -g1,5446:14534418,10849115 -g1,5446:15166710,10849115 -k1,5446:15166710,10849115:0 -h1,5446:19276604,10849115:0,0,0 -k1,5446:32583029,10849115:13306425 -g1,5446:32583029,10849115 -) -] -) -g1,5448:32583029,10956593 -g1,5448:6630773,10956593 -g1,5448:6630773,10956593 -g1,5448:32583029,10956593 -g1,5448:32583029,10956593 -) -h1,5448:6630773,11153201:0,0,0 -(1,5452:6630773,12518977:25952256,505283,134348 -h1,5451:6630773,12518977:983040,0,0 -k1,5451:9015464,12518977:204964 -k1,5451:10392867,12518977:204964 -k1,5451:14114493,12518977:204964 -k1,5451:16174781,12518977:204964 -k1,5451:17484027,12518977:204964 -k1,5451:18436757,12518977:204964 -k1,5451:21774341,12518977:204963 -k1,5451:23246771,12518977:204964 -k1,5451:23807595,12518977:204964 -k1,5451:25885578,12518977:204964 -k1,5451:29276902,12518977:204964 -k1,5451:30243394,12518977:204964 -k1,5451:32583029,12518977:0 -) -(1,5452:6630773,13360465:25952256,513147,7863 -g1,5451:7849087,13360465 -g1,5451:10743812,13360465 -k1,5452:32583030,13360465:20235552 -g1,5452:32583030,13360465 -) -v1,5454:6630773,14550931:0,393216,0 -(1,5458:6630773,14866028:25952256,708313,196608 -g1,5458:6630773,14866028 -g1,5458:6630773,14866028 -g1,5458:6434165,14866028 -(1,5458:6434165,14866028:0,708313,196608 -r1,5517:32779637,14866028:26345472,904921,196608 -k1,5458:6434165,14866028:-26345472 -) -(1,5458:6434165,14866028:26345472,708313,196608 -[1,5458:6630773,14866028:25952256,511705,0 -(1,5456:6630773,14764841:25952256,410518,101187 -(1,5455:6630773,14764841:0,0,0 -g1,5455:6630773,14764841 -g1,5455:6630773,14764841 -g1,5455:6303093,14764841 -(1,5455:6303093,14764841:0,0,0 -) -g1,5455:6630773,14764841 -) -k1,5456:6630773,14764841:0 -g1,5456:9792231,14764841 -g1,5456:10424523,14764841 -g1,5456:13902126,14764841 -g1,5456:14534418,14764841 -g1,5456:17379730,14764841 -g1,5456:18960459,14764841 -g1,5456:19592751,14764841 -k1,5456:19592751,14764841:0 -h1,5456:23702645,14764841:0,0,0 -k1,5456:32583029,14764841:8880384 -g1,5456:32583029,14764841 -) -] -) -g1,5458:32583029,14866028 -g1,5458:6630773,14866028 -g1,5458:6630773,14866028 -g1,5458:32583029,14866028 -g1,5458:32583029,14866028 -) -h1,5458:6630773,15062636:0,0,0 -v1,5462:6630773,16952700:0,393216,0 -(1,5463:6630773,19238732:25952256,2679248,616038 -g1,5463:6630773,19238732 -(1,5463:6630773,19238732:25952256,2679248,616038 -(1,5463:6630773,19854770:25952256,3295286,0 -[1,5463:6630773,19854770:25952256,3295286,0 -(1,5463:6630773,19828556:25952256,3242858,0 -r1,5517:6656987,19828556:26214,3242858,0 -[1,5463:6656987,19828556:25899828,3242858,0 -(1,5463:6656987,19238732:25899828,2063210,0 -[1,5463:7246811,19238732:24720180,2063210,0 -(1,5463:7246811,18262896:24720180,1087374,134348 -k1,5462:8698163,18262896:241649 -k1,5462:11432147,18262896:241650 -k1,5462:13409189,18262896:241649 -k1,5462:16413182,18262896:241650 -k1,5462:19326078,18262896:241649 -k1,5462:20961678,18262896:241649 -(1,5462:20961678,18262896:0,452978,115847 -r1,5517:22375079,18262896:1413401,568825,115847 -k1,5462:20961678,18262896:-1413401 -) -(1,5462:20961678,18262896:1413401,452978,115847 -k1,5462:20961678,18262896:3277 -h1,5462:22371802,18262896:0,411205,112570 -) -k1,5462:22790399,18262896:241650 -k1,5462:24285752,18262896:241649 -k1,5462:25342669,18262896:241649 -k1,5462:26650590,18262896:241650 -k1,5462:28422505,18262896:241649 -k1,5462:29315583,18262896:241650 -k1,5462:30947906,18262896:241649 -k1,5462:31966991,18262896:0 -) -(1,5463:7246811,19104384:24720180,513147,134348 -g1,5462:9735868,19104384 -g1,5462:10586525,19104384 -g1,5462:11141614,19104384 -g1,5462:12497553,19104384 -g1,5462:13975389,19104384 -g1,5462:15649833,19104384 -g1,5462:16204922,19104384 -g1,5462:17790893,19104384 -g1,5462:18602884,19104384 -g1,5462:19821198,19104384 -g1,5462:21013953,19104384 -g1,5462:21872474,19104384 -g1,5462:24031229,19104384 -g1,5462:26298774,19104384 -k1,5463:31966991,19104384:2715820 -g1,5463:31966991,19104384 -) -] -) -] -r1,5517:32583029,19828556:26214,3242858,0 -) -] -) -) -g1,5463:32583029,19238732 -) -h1,5463:6630773,19854770:0,0,0 -(1,5466:6630773,21220546:25952256,513147,134348 -h1,5465:6630773,21220546:983040,0,0 -k1,5465:8628720,21220546:197018 -k1,5465:9181597,21220546:197017 -k1,5465:11056992,21220546:197018 -k1,5465:12122361,21220546:197017 -k1,5465:13980061,21220546:197018 -k1,5465:15507460,21220546:197018 -k1,5465:16355905,21220546:197017 -k1,5465:18209673,21220546:197018 -k1,5465:19242275,21220546:197018 -k1,5465:20200820,21220546:197017 -k1,5465:22965539,21220546:197018 -k1,5465:24181641,21220546:197017 -k1,5465:25551098,21220546:197018 -k1,5465:27061458,21220546:197018 -k1,5465:28126827,21220546:197017 -k1,5465:30847636,21220546:197018 -k1,5466:32583029,21220546:0 -) -(1,5466:6630773,22062034:25952256,513147,134348 -k1,5465:8081156,22062034:182917 -(1,5465:8081156,22062034:0,452978,115847 -r1,5517:10901405,22062034:2820249,568825,115847 -k1,5465:8081156,22062034:-2820249 -) -(1,5465:8081156,22062034:2820249,452978,115847 -k1,5465:8081156,22062034:3277 -h1,5465:10898128,22062034:0,411205,112570 -) -k1,5465:11084322,22062034:182917 -k1,5465:12371521,22062034:182917 -k1,5465:13302204,22062034:182917 -k1,5465:14998347,22062034:182917 -k1,5465:15832692,22062034:182917 -k1,5465:17940401,22062034:182917 -k1,5465:19255125,22062034:182917 -k1,5465:20751384,22062034:182917 -k1,5465:21881952,22062034:182917 -k1,5465:23950340,22062034:182917 -k1,5465:25152342,22062034:182917 -k1,5465:26716103,22062034:182917 -k1,5465:28000025,22062034:182917 -k1,5465:30543549,22062034:182917 -k1,5466:32583029,22062034:0 -k1,5466:32583029,22062034:0 -) -v1,5468:6630773,23252500:0,393216,0 -(1,5472:6630773,23567597:25952256,708313,196608 -g1,5472:6630773,23567597 -g1,5472:6630773,23567597 -g1,5472:6434165,23567597 -(1,5472:6434165,23567597:0,708313,196608 -r1,5517:32779637,23567597:26345472,904921,196608 -k1,5472:6434165,23567597:-26345472 -) -(1,5472:6434165,23567597:26345472,708313,196608 -[1,5472:6630773,23567597:25952256,511705,0 -(1,5470:6630773,23466410:25952256,410518,101187 -(1,5469:6630773,23466410:0,0,0 -g1,5469:6630773,23466410 -g1,5469:6630773,23466410 -g1,5469:6303093,23466410 -(1,5469:6303093,23466410:0,0,0 -) -g1,5469:6630773,23466410 -) -k1,5470:6630773,23466410:0 -g1,5470:13585979,23466410 -k1,5470:13585979,23466410:0 -h1,5470:18012018,23466410:0,0,0 -k1,5470:32583029,23466410:14571011 -g1,5470:32583029,23466410 -) -] -) -g1,5472:32583029,23567597 -g1,5472:6630773,23567597 -g1,5472:6630773,23567597 -g1,5472:32583029,23567597 -g1,5472:32583029,23567597 -) -h1,5472:6630773,23764205:0,0,0 -(1,5475:6630773,26379753:25952256,564462,12975 -(1,5475:6630773,26379753:2899444,534184,12975 -g1,5475:6630773,26379753 -g1,5475:9530217,26379753 -) -g1,5475:11127002,26379753 -k1,5475:32583028,26379753:19954400 -g1,5475:32583028,26379753 -) -(1,5479:6630773,27614457:25952256,513147,134348 -k1,5477:8113304,27614457:285844 -k1,5477:9702573,27614457:285758 -k1,5477:12168800,27614457:285844 -k1,5477:13558927,27614457:285845 -k1,5477:14592537,27614457:285844 -k1,5477:16391608,27614457:285845 -k1,5477:17328880,27614457:285844 -k1,5477:19005399,27614457:285845 -k1,5477:22484157,27614457:285844 -k1,5477:25059830,27614457:285845 -k1,5477:27672857,27614457:285844 -k1,5477:28617994,27614457:285845 -k1,5477:31575085,27614457:285844 -k1,5479:32583029,27614457:0 -) -(1,5479:6630773,28455945:25952256,513147,134348 -k1,5477:8382667,28455945:257018 -k1,5477:11133985,28455945:257018 -k1,5477:13126396,28455945:257018 -k1,5477:14366454,28455945:257018 -k1,5477:16361487,28455945:257018 -k1,5477:17605477,28455945:257018 -(1,5477:17605477,28455945:0,452978,115847 -r1,5517:19018878,28455945:1413401,568825,115847 -k1,5477:17605477,28455945:-1413401 -) -(1,5477:17605477,28455945:1413401,452978,115847 -k1,5477:17605477,28455945:3277 -h1,5477:19015601,28455945:0,411205,112570 -) -k1,5477:19656661,28455945:257019 -k1,5477:21471470,28455945:257018 -k1,5477:22720048,28455945:257018 -k1,5477:24389367,28455945:257018 -k1,5477:25837830,28455945:257018 -k1,5477:27906263,28455945:257018 -k1,5477:29557232,28455945:257018 -k1,5479:32583029,28455945:0 -) -(1,5479:6630773,29297433:25952256,513147,126483 -(1,5477:6630773,29297433:0,452978,115847 -r1,5517:9802733,29297433:3171960,568825,115847 -k1,5477:6630773,29297433:-3171960 -) -(1,5477:6630773,29297433:3171960,452978,115847 -k1,5477:6630773,29297433:3277 -h1,5477:9799456,29297433:0,411205,112570 -) -k1,5477:10099289,29297433:296556 -k1,5477:11587291,29297433:296557 -(1,5477:11587291,29297433:0,452978,115847 -r1,5517:14759251,29297433:3171960,568825,115847 -k1,5477:11587291,29297433:-3171960 -) -(1,5477:11587291,29297433:3171960,452978,115847 -k1,5477:11587291,29297433:3277 -h1,5477:14755974,29297433:0,411205,112570 -) -k1,5477:15229477,29297433:296556 -k1,5477:19496205,29297433:296557 -k1,5478:21575996,29297433:296556 -k1,5478:23175966,29297433:296459 -k1,5478:24785865,29297433:296557 -k1,5478:26073981,29297433:296556 -k1,5478:27956509,29297433:296557 -k1,5478:31015408,29297433:296556 -k1,5478:32583029,29297433:0 -) -(1,5479:6630773,30138921:25952256,513147,134348 -k1,5478:8538177,30138921:209366 -k1,5478:10183427,30138921:209356 -k1,5478:11706136,30138921:209367 -k1,5478:12907062,30138921:209366 -k1,5478:15434436,30138921:209366 -k1,5478:16512154,30138921:209366 -k1,5478:18251787,30138921:209367 -k1,5478:19112581,30138921:209366 -k1,5478:21328659,30138921:209366 -k1,5478:22557111,30138921:209367 -k1,5478:24726003,30138921:209366 -k1,5478:26347670,30138921:209366 -k1,5478:27208464,30138921:209366 -k1,5478:27773691,30138921:209367 -k1,5478:30626779,30138921:209366 -k1,5479:32583029,30138921:0 -) -(1,5479:6630773,30980409:25952256,513147,126483 -k1,5478:7821853,30980409:171995 -k1,5478:9731864,30980409:171996 -k1,5478:10851510,30980409:171995 -k1,5478:11481603,30980409:171996 -k1,5478:12305026,30980409:171995 -k1,5478:14442447,30980409:171996 -k1,5478:15265870,30980409:171995 -k1,5478:16456951,30980409:171996 -k1,5478:18699228,30980409:171995 -k1,5478:20482098,30980409:171995 -k1,5478:21428074,30980409:171996 -k1,5478:23882688,30980409:171995 -k1,5478:24512781,30980409:171996 -k1,5478:25216273,30980409:171995 -k1,5478:26674085,30980409:171996 -k1,5478:29476040,30980409:171995 -k1,5478:30299464,30980409:171996 -k1,5478:31563944,30980409:171995 -k1,5478:32583029,30980409:0 -) -(1,5479:6630773,31821897:25952256,513147,134348 -k1,5478:9589537,31821897:180037 -k1,5478:11729099,31821897:180036 -k1,5478:12595298,31821897:180037 -k1,5478:13546038,31821897:180037 -k1,5478:16798403,31821897:180037 -k1,5478:17629867,31821897:180036 -k1,5478:18165764,31821897:180037 -k1,5478:21041297,31821897:180037 -k1,5478:21904218,31821897:180036 -k1,5478:22700293,31821897:180037 -k1,5478:23651033,31821897:180037 -k1,5478:27271055,31821897:180037 -k1,5478:29911313,31821897:180036 -k1,5478:32124932,31821897:180037 -k1,5478:32583029,31821897:0 -) -(1,5479:6630773,32663385:25952256,505283,7863 -g1,5478:7481430,32663385 -g1,5478:8036519,32663385 -k1,5479:32583029,32663385:21861500 -g1,5479:32583029,32663385 -) -v1,5481:6630773,33853851:0,393216,0 -(1,5485:6630773,34168948:25952256,708313,196608 -g1,5485:6630773,34168948 -g1,5485:6630773,34168948 -g1,5485:6434165,34168948 -(1,5485:6434165,34168948:0,708313,196608 -r1,5517:32779637,34168948:26345472,904921,196608 -k1,5485:6434165,34168948:-26345472 -) -(1,5485:6434165,34168948:26345472,708313,196608 -[1,5485:6630773,34168948:25952256,511705,0 -(1,5483:6630773,34067761:25952256,410518,101187 -(1,5482:6630773,34067761:0,0,0 -g1,5482:6630773,34067761 -g1,5482:6630773,34067761 -g1,5482:6303093,34067761 -(1,5482:6303093,34067761:0,0,0 -) -g1,5482:6630773,34067761 -) -k1,5483:6630773,34067761:0 -g1,5483:11372959,34067761 -k1,5483:11372959,34067761:0 -h1,5483:15166707,34067761:0,0,0 -k1,5483:32583029,34067761:17416322 -g1,5483:32583029,34067761 -) -] -) -g1,5485:32583029,34168948 -g1,5485:6630773,34168948 -g1,5485:6630773,34168948 -g1,5485:32583029,34168948 -g1,5485:32583029,34168948 -) -h1,5485:6630773,34365556:0,0,0 -(1,5489:6630773,35731332:25952256,513147,134348 -h1,5488:6630773,35731332:983040,0,0 -g1,5488:8290799,35731332 -g1,5488:9358380,35731332 -g1,5488:10969910,35731332 -g1,5488:12188224,35731332 -g1,5488:13544163,35731332 -g1,5488:14504920,35731332 -g1,5488:16969729,35731332 -g1,5488:18188043,35731332 -g1,5488:19799573,35731332 -g1,5488:20413645,35731332 -g1,5488:22572400,35731332 -g1,5488:23904091,35731332 -g1,5488:24851086,35731332 -g1,5488:27400436,35731332 -g1,5488:28212427,35731332 -g1,5488:29430741,35731332 -k1,5489:32583029,35731332:558373 -g1,5489:32583029,35731332 -) -v1,5491:6630773,36921798:0,393216,0 -(1,5503:6630773,41207748:25952256,4679166,196608 -g1,5503:6630773,41207748 -g1,5503:6630773,41207748 -g1,5503:6434165,41207748 -(1,5503:6434165,41207748:0,4679166,196608 -r1,5517:32779637,41207748:26345472,4875774,196608 -k1,5503:6434165,41207748:-26345472 -) -(1,5503:6434165,41207748:26345472,4679166,196608 -[1,5503:6630773,41207748:25952256,4482558,0 -(1,5493:6630773,37135708:25952256,410518,101187 -(1,5492:6630773,37135708:0,0,0 -g1,5492:6630773,37135708 -g1,5492:6630773,37135708 -g1,5492:6303093,37135708 -(1,5492:6303093,37135708:0,0,0 -) -g1,5492:6630773,37135708 -) -k1,5493:6630773,37135708:0 -k1,5493:6630773,37135708:0 -h1,5493:12953687,37135708:0,0,0 -k1,5493:32583029,37135708:19629342 -g1,5493:32583029,37135708 -) -(1,5502:6630773,37867422:25952256,379060,101187 -(1,5495:6630773,37867422:0,0,0 -g1,5495:6630773,37867422 -g1,5495:6630773,37867422 -g1,5495:6303093,37867422 -(1,5495:6303093,37867422:0,0,0 -) -g1,5495:6630773,37867422 -) -g1,5502:7579210,37867422 -g1,5502:7895356,37867422 -g1,5502:8211502,37867422 -g1,5502:8843794,37867422 -h1,5502:9159940,37867422:0,0,0 -k1,5502:32583028,37867422:23423088 -g1,5502:32583028,37867422 -) -(1,5502:6630773,38533600:25952256,388497,9436 -h1,5502:6630773,38533600:0,0,0 -g1,5502:7579210,38533600 -g1,5502:8211502,38533600 -g1,5502:8843794,38533600 -h1,5502:9159940,38533600:0,0,0 -k1,5502:32583028,38533600:23423088 -g1,5502:32583028,38533600 -) -(1,5502:6630773,39199778:25952256,388497,0 -h1,5502:6630773,39199778:0,0,0 -g1,5502:7579210,39199778 -g1,5502:8211502,39199778 -g1,5502:8843794,39199778 -h1,5502:9159940,39199778:0,0,0 -k1,5502:32583028,39199778:23423088 -g1,5502:32583028,39199778 -) -(1,5502:6630773,39865956:25952256,388497,9436 -h1,5502:6630773,39865956:0,0,0 -g1,5502:7579210,39865956 -g1,5502:8211502,39865956 -g1,5502:8843794,39865956 -h1,5502:9159940,39865956:0,0,0 -k1,5502:32583028,39865956:23423088 -g1,5502:32583028,39865956 -) -(1,5502:6630773,40532134:25952256,388497,0 -h1,5502:6630773,40532134:0,0,0 -g1,5502:7579210,40532134 -g1,5502:8211502,40532134 -g1,5502:8843794,40532134 -h1,5502:9159940,40532134:0,0,0 -k1,5502:32583028,40532134:23423088 -g1,5502:32583028,40532134 -) -(1,5502:6630773,41198312:25952256,388497,9436 -h1,5502:6630773,41198312:0,0,0 -g1,5502:7579210,41198312 -g1,5502:8211502,41198312 -g1,5502:8843794,41198312 -h1,5502:9159940,41198312:0,0,0 -k1,5502:32583028,41198312:23423088 -g1,5502:32583028,41198312 -) -] -) -g1,5503:32583029,41207748 -g1,5503:6630773,41207748 -g1,5503:6630773,41207748 -g1,5503:32583029,41207748 -g1,5503:32583029,41207748 -) -h1,5503:6630773,41404356:0,0,0 -(1,5507:6630773,42770132:25952256,513147,134348 -h1,5506:6630773,42770132:983040,0,0 -k1,5506:8478514,42770132:236866 -k1,5506:9734465,42770132:236866 -k1,5506:11355450,42770132:236865 -k1,5506:14253733,42770132:236866 -k1,5506:15358951,42770132:236866 -k1,5506:17602529,42770132:236866 -k1,5506:18858480,42770132:236866 -k1,5506:20507646,42770132:236865 -k1,5506:22704038,42770132:236866 -k1,5506:23592332,42770132:236866 -k1,5506:24185058,42770132:236866 -k1,5506:27184266,42770132:236865 -k1,5506:29332817,42770132:236866 -k1,5506:30761128,42770132:236866 -k1,5506:32583029,42770132:0 -) -(1,5507:6630773,43611620:25952256,505283,134348 -g1,5506:8114508,43611620 -g1,5506:9332822,43611620 -g1,5506:11491577,43611620 -g1,5506:13103107,43611620 -g1,5506:13833833,43611620 -g1,5506:16769845,43611620 -g1,5506:17620502,43611620 -g1,5506:18838816,43611620 -g1,5506:20194755,43611620 -k1,5507:32583029,43611620:10403188 -g1,5507:32583029,43611620 -) -v1,5509:6630773,44802086:0,393216,0 -] -(1,5517:32583029,45706769:0,0,0 -g1,5517:32583029,45706769 -) -) -] -(1,5517:6630773,47279633:25952256,0,0 -h1,5517:6630773,47279633:25952256,0,0 -) -] -(1,5517:4262630,4025873:0,0,0 -[1,5517:-473656,4025873:0,0,0 -(1,5517:-473656,-710413:0,0,0 -(1,5517:-473656,-710413:0,0,0 -g1,5517:-473656,-710413 -) -g1,5517:-473656,-710413 -) -] -) -] -!22479 -}100 -Input:755:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:756:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:757:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:758:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:759:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:760:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:761:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:762:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:763:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:764:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!922 -{101 -[1,5604:4262630,47279633:28320399,43253760,0 -(1,5604:4262630,4025873:0,0,0 -[1,5604:-473656,4025873:0,0,0 -(1,5604:-473656,-710413:0,0,0 -(1,5604:-473656,-644877:0,0,0 -k1,5604:-473656,-644877:-65536 -) -(1,5604:-473656,4736287:0,0,0 -k1,5604:-473656,4736287:5209943 -) -g1,5604:-473656,-710413 -) -] -) -[1,5604:6630773,47279633:25952256,43253760,0 -[1,5604:6630773,4812305:25952256,786432,0 -(1,5604:6630773,4812305:25952256,505283,134348 -(1,5604:6630773,4812305:25952256,505283,134348 -g1,5604:3078558,4812305 -[1,5604:3078558,4812305:0,0,0 -(1,5604:3078558,2439708:0,1703936,0 -k1,5604:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,5604:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,5604:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,5604:3078558,4812305:0,0,0 -(1,5604:3078558,2439708:0,1703936,0 -g1,5604:29030814,2439708 -g1,5604:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,5604:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,5604:37855564,2439708:1179648,16384,0 -) -) -k1,5604:3078556,2439708:-34777008 -) -] -[1,5604:3078558,4812305:0,0,0 -(1,5604:3078558,49800853:0,16384,2228224 -k1,5604:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,5604:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,5604:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,5604:3078558,4812305:0,0,0 -(1,5604:3078558,49800853:0,16384,2228224 -g1,5604:29030814,49800853 -g1,5604:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,5604:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,5604:37855564,49800853:1179648,16384,0 -) -) -k1,5604:3078556,49800853:-34777008 -) -] -g1,5604:6630773,4812305 -k1,5604:19515153,4812305:12087462 -g1,5604:20901894,4812305 -g1,5604:21550700,4812305 -g1,5604:24864855,4812305 -g1,5604:27600327,4812305 -g1,5604:29010006,4812305 -) -) -] -[1,5604:6630773,45706769:25952256,40108032,0 -(1,5604:6630773,45706769:25952256,40108032,0 -(1,5604:6630773,45706769:0,0,0 -g1,5604:6630773,45706769 -) -[1,5604:6630773,45706769:25952256,40108032,0 -v1,5517:6630773,6254097:0,393216,0 -(1,5517:6630773,7941920:25952256,2081039,196608 -g1,5517:6630773,7941920 -g1,5517:6630773,7941920 -g1,5517:6434165,7941920 -(1,5517:6434165,7941920:0,2081039,196608 -r1,5604:32779637,7941920:26345472,2277647,196608 -k1,5517:6434165,7941920:-26345472 -) -(1,5517:6434165,7941920:26345472,2081039,196608 -[1,5517:6630773,7941920:25952256,1884431,0 -(1,5511:6630773,6468007:25952256,410518,101187 -(1,5510:6630773,6468007:0,0,0 -g1,5510:6630773,6468007 -g1,5510:6630773,6468007 -g1,5510:6303093,6468007 -(1,5510:6303093,6468007:0,0,0 -) -g1,5510:6630773,6468007 -) -g1,5511:10108376,6468007 -g1,5511:11056814,6468007 -k1,5511:11056814,6468007:0 -h1,5511:17379728,6468007:0,0,0 -k1,5511:32583029,6468007:15203301 -g1,5511:32583029,6468007 -) -(1,5512:6630773,7134185:25952256,410518,101187 -h1,5512:6630773,7134185:0,0,0 -g1,5512:12005250,7134185 -h1,5512:15482852,7134185:0,0,0 -k1,5512:32583028,7134185:17100176 -g1,5512:32583028,7134185 -) -(1,5516:6630773,7865899:25952256,404226,76021 -(1,5514:6630773,7865899:0,0,0 -g1,5514:6630773,7865899 -g1,5514:6630773,7865899 -g1,5514:6303093,7865899 -(1,5514:6303093,7865899:0,0,0 -) -g1,5514:6630773,7865899 -) -g1,5516:7579210,7865899 -g1,5516:8843793,7865899 -h1,5516:10108376,7865899:0,0,0 -k1,5516:32583028,7865899:22474652 -g1,5516:32583028,7865899 -) -] -) -g1,5517:32583029,7941920 -g1,5517:6630773,7941920 -g1,5517:6630773,7941920 -g1,5517:32583029,7941920 -g1,5517:32583029,7941920 -) -h1,5517:6630773,8138528:0,0,0 -(1,5521:6630773,9426594:25952256,513147,134348 -h1,5520:6630773,9426594:983040,0,0 -g1,5520:8630931,9426594 -g1,5520:10859155,9426594 -g1,5520:11926736,9426594 -g1,5520:13782715,9426594 -g1,5520:14817528,9426594 -g1,5520:15778285,9426594 -g1,5520:18545215,9426594 -g1,5520:19763529,9426594 -k1,5521:32583029,9426594:11662790 -g1,5521:32583029,9426594 -) -v1,5523:6630773,10539351:0,393216,0 -(1,5527:6630773,10854448:25952256,708313,196608 -g1,5527:6630773,10854448 -g1,5527:6630773,10854448 -g1,5527:6434165,10854448 -(1,5527:6434165,10854448:0,708313,196608 -r1,5604:32779637,10854448:26345472,904921,196608 -k1,5527:6434165,10854448:-26345472 -) -(1,5527:6434165,10854448:26345472,708313,196608 -[1,5527:6630773,10854448:25952256,511705,0 -(1,5525:6630773,10753261:25952256,410518,101187 -(1,5524:6630773,10753261:0,0,0 -g1,5524:6630773,10753261 -g1,5524:6630773,10753261 -g1,5524:6303093,10753261 -(1,5524:6303093,10753261:0,0,0 -) -g1,5524:6630773,10753261 -) -k1,5525:6630773,10753261:0 -k1,5525:6630773,10753261:0 -h1,5525:12637541,10753261:0,0,0 -k1,5525:32583029,10753261:19945488 -g1,5525:32583029,10753261 -) -] -) -g1,5527:32583029,10854448 -g1,5527:6630773,10854448 -g1,5527:6630773,10854448 -g1,5527:32583029,10854448 -g1,5527:32583029,10854448 -) -h1,5527:6630773,11051056:0,0,0 -(1,5530:6630773,14305202:25952256,32768,229376 -(1,5530:6630773,14305202:0,32768,229376 -(1,5530:6630773,14305202:5505024,32768,229376 -r1,5604:12135797,14305202:5505024,262144,229376 -) -k1,5530:6630773,14305202:-5505024 -) -(1,5530:6630773,14305202:25952256,32768,0 -r1,5604:32583029,14305202:25952256,32768,0 -) -) -(1,5530:6630773,15909530:25952256,606339,161218 -(1,5530:6630773,15909530:2464678,582746,0 -g1,5530:6630773,15909530 -g1,5530:9095451,15909530 -) -g1,5530:12525868,15909530 -g1,5530:13514413,15909530 -k1,5530:32583029,15909530:17375428 -g1,5530:32583029,15909530 -) -(1,5533:6630773,17144234:25952256,513147,134348 -k1,5532:8749861,17144234:286701 -k1,5532:10028123,17144234:286702 -k1,5532:12546325,17144234:286701 -k1,5532:15858824,17144234:286702 -k1,5532:16761563,17144234:286701 -k1,5532:17463020,17144234:286614 -k1,5532:19034227,17144234:286701 -k1,5532:20130299,17144234:286702 -k1,5532:21162144,17144234:286701 -k1,5532:23472598,17144234:286702 -k1,5532:26521642,17144234:286701 -k1,5532:28565364,17144234:286702 -k1,5532:30119531,17144234:286701 -k1,5532:32583029,17144234:0 -) -(1,5533:6630773,17985722:25952256,513147,134348 -k1,5532:9683204,17985722:262563 -(1,5532:9683204,17985722:0,452978,115847 -r1,5604:12151741,17985722:2468537,568825,115847 -k1,5532:9683204,17985722:-2468537 -) -(1,5532:9683204,17985722:2468537,452978,115847 -k1,5532:9683204,17985722:3277 -h1,5532:12148464,17985722:0,411205,112570 -) -k1,5532:12414304,17985722:262563 -k1,5532:13208364,17985722:262563 -k1,5532:15448148,17985722:262563 -k1,5532:16658362,17985722:262563 -k1,5532:18637313,17985722:262563 -k1,5532:20289239,17985722:262563 -k1,5532:21990317,17985722:262563 -k1,5532:22935765,17985722:262563 -k1,5532:25661826,17985722:262563 -k1,5532:29055699,17985722:262563 -k1,5532:29934300,17985722:262563 -k1,5532:31215948,17985722:262563 -k1,5532:32583029,17985722:0 -) -(1,5533:6630773,18827210:25952256,513147,134348 -k1,5532:7503630,18827210:213565 -k1,5532:9288094,18827210:213566 -k1,5532:10891022,18827210:213565 -k1,5532:13484856,18827210:213566 -k1,5532:14566773,18827210:213565 -k1,5532:16310604,18827210:213565 -k1,5532:17175598,18827210:213566 -k1,5532:19757634,18827210:213565 -k1,5532:21610254,18827210:213565 -k1,5532:23179105,18827210:213566 -k1,5532:24154198,18827210:213565 -k1,5532:25896719,18827210:213566 -k1,5532:26738119,18827210:213565 -k1,5532:27970769,18827210:213565 -k1,5532:29551416,18827210:213566 -k1,5532:30424273,18827210:213565 -k1,5532:32583029,18827210:0 -) -(1,5533:6630773,19668698:25952256,505283,126483 -k1,5532:10897554,19668698:165538 -k1,5532:11931445,19668698:165539 -k1,5532:13201266,19668698:165539 -k1,5532:15390556,19668698:165538 -k1,5532:17064734,19668698:165539 -k1,5532:19298588,19668698:165538 -k1,5532:20858078,19668698:165539 -(1,5532:20858078,19668698:0,452978,115847 -r1,5604:24381750,19668698:3523672,568825,115847 -k1,5532:20858078,19668698:-3523672 -) -(1,5532:20858078,19668698:3523672,452978,115847 -k1,5532:20858078,19668698:3277 -h1,5532:24378473,19668698:0,411205,112570 -) -k1,5532:24720958,19668698:165538 -(1,5532:24720958,19668698:0,452978,115847 -r1,5604:28244630,19668698:3523672,568825,115847 -k1,5532:24720958,19668698:-3523672 -) -(1,5532:24720958,19668698:3523672,452978,115847 -k1,5532:24720958,19668698:3277 -h1,5532:28241353,19668698:0,411205,112570 -) -k1,5532:28583839,19668698:165539 -k1,5532:29940822,19668698:165538 -(1,5532:29940822,19668698:0,452978,115847 -r1,5604:32409359,19668698:2468537,568825,115847 -k1,5532:29940822,19668698:-2468537 -) -(1,5532:29940822,19668698:2468537,452978,115847 -k1,5532:29940822,19668698:3277 -h1,5532:32406082,19668698:0,411205,112570 -) -k1,5532:32583029,19668698:0 -) -(1,5533:6630773,20510186:25952256,513147,126483 -k1,5532:7347634,20510186:239104 -k1,5532:7942598,20510186:239104 -k1,5532:9571064,20510186:239103 -k1,5532:11686464,20510186:239104 -k1,5532:14627617,20510186:239104 -k1,5532:16618498,20510186:239104 -k1,5532:18391799,20510186:239103 -k1,5532:19290195,20510186:239104 -k1,5532:23774721,20510186:239104 -(1,5532:23774721,20510186:0,452978,115847 -r1,5604:25891546,20510186:2116825,568825,115847 -k1,5532:23774721,20510186:-2116825 -) -(1,5532:23774721,20510186:2116825,452978,115847 -k1,5532:23774721,20510186:3277 -h1,5532:25888269,20510186:0,411205,112570 -) -k1,5532:26130650,20510186:239104 -k1,5532:27561198,20510186:239103 -(1,5532:27561198,20510186:0,452978,115847 -r1,5604:29678023,20510186:2116825,568825,115847 -k1,5532:27561198,20510186:-2116825 -) -(1,5532:27561198,20510186:2116825,452978,115847 -k1,5532:27561198,20510186:3277 -h1,5532:29674746,20510186:0,411205,112570 -) -k1,5532:29917127,20510186:239104 -k1,5532:31837885,20510186:239104 -k1,5532:32583029,20510186:0 -) -(1,5533:6630773,21351674:25952256,513147,126483 -k1,5532:7483777,21351674:201576 -k1,5532:9486281,21351674:201575 -k1,5532:11990792,21351674:201576 -k1,5532:13211453,21351674:201576 -k1,5532:15898809,21351674:201575 -k1,5532:16759677,21351674:201576 -k1,5532:18495451,21351674:201576 -k1,5532:21220817,21351674:201575 -k1,5532:24542562,21351674:201576 -(1,5532:24542562,21351674:0,452978,115847 -r1,5604:26659387,21351674:2116825,568825,115847 -k1,5532:24542562,21351674:-2116825 -) -(1,5532:24542562,21351674:2116825,452978,115847 -k1,5532:24542562,21351674:3277 -h1,5532:26656110,21351674:0,411205,112570 -) -k1,5532:26860963,21351674:201576 -k1,5532:28253983,21351674:201575 -(1,5532:28253983,21351674:0,452978,115847 -r1,5604:30370808,21351674:2116825,568825,115847 -k1,5532:28253983,21351674:-2116825 -) -(1,5532:28253983,21351674:2116825,452978,115847 -k1,5532:28253983,21351674:3277 -h1,5532:30367531,21351674:0,411205,112570 -) -k1,5532:30572384,21351674:201576 -k1,5532:32583029,21351674:0 -) -(1,5533:6630773,22193162:25952256,513147,126483 -k1,5532:7905599,22193162:255741 -k1,5532:10647122,22193162:255742 -k1,5532:11562155,22193162:255741 -k1,5532:13352095,22193162:255742 -k1,5532:14799281,22193162:255741 -k1,5532:17768214,22193162:255742 -k1,5532:18639993,22193162:255741 -k1,5532:19914820,22193162:255742 -k1,5532:21559924,22193162:255741 -k1,5532:23691962,22193162:255742 -k1,5532:25440613,22193162:255741 -k1,5532:28942353,22193162:255742 -k1,5532:29849522,22193162:255741 -k1,5532:32583029,22193162:0 -) -(1,5533:6630773,23034650:25952256,513147,122846 -k1,5532:7905128,23034650:202186 -k1,5532:9173584,23034650:202185 -k1,5532:10027198,23034650:202186 -k1,5532:11553210,23034650:202185 -k1,5532:12438281,23034650:202186 -k1,5532:14948645,23034650:202186 -k1,5532:17069724,23034650:202185 -k1,5532:18140262,23034650:202186 -k1,5532:19434933,23034650:202186 -(1,5532:19434933,23034650:0,452978,122846 -r1,5604:22255182,23034650:2820249,575824,122846 -k1,5532:19434933,23034650:-2820249 -) -(1,5532:19434933,23034650:2820249,452978,122846 -k1,5532:19434933,23034650:3277 -h1,5532:22251905,23034650:0,411205,112570 -) -k1,5532:22838131,23034650:202185 -k1,5532:23858206,23034650:202186 -k1,5532:27478094,23034650:202185 -k1,5532:29887533,23034650:202186 -k1,5533:32583029,23034650:0 -) -(1,5533:6630773,23876138:25952256,513147,134348 -(1,5532:6630773,23876138:0,452978,115847 -r1,5604:8395886,23876138:1765113,568825,115847 -k1,5532:6630773,23876138:-1765113 -) -(1,5532:6630773,23876138:1765113,452978,115847 -k1,5532:6630773,23876138:3277 -h1,5532:8392609,23876138:0,411205,112570 -) -g1,5532:8595115,23876138 -g1,5532:11715939,23876138 -g1,5532:14540540,23876138 -g1,5532:15758854,23876138 -g1,5532:18889508,23876138 -g1,5532:19755893,23876138 -g1,5532:20369965,23876138 -k1,5533:32583029,23876138:9749566 -g1,5533:32583029,23876138 -) -v1,5535:6630773,24988895:0,393216,0 -(1,5604:6630773,45510161:25952256,20914482,196608 -g1,5604:6630773,45510161 -g1,5604:6630773,45510161 -g1,5604:6434165,45510161 -(1,5604:6434165,45510161:0,20914482,196608 -r1,5604:32779637,45510161:26345472,21111090,196608 -k1,5604:6434165,45510161:-26345472 -) -(1,5604:6434165,45510161:26345472,20914482,196608 -[1,5604:6630773,45510161:25952256,20717874,0 -(1,5537:6630773,25196513:25952256,404226,76021 -(1,5536:6630773,25196513:0,0,0 -g1,5536:6630773,25196513 -g1,5536:6630773,25196513 -g1,5536:6303093,25196513 -(1,5536:6303093,25196513:0,0,0 -) -g1,5536:6630773,25196513 -) -k1,5537:6630773,25196513:0 -h1,5537:10108375,25196513:0,0,0 -k1,5537:32583029,25196513:22474654 -g1,5537:32583029,25196513 -) -(1,5541:6630773,25928227:25952256,410518,76021 -(1,5539:6630773,25928227:0,0,0 -g1,5539:6630773,25928227 -g1,5539:6630773,25928227 -g1,5539:6303093,25928227 -(1,5539:6303093,25928227:0,0,0 -) -g1,5539:6630773,25928227 -) -g1,5541:7579210,25928227 -g1,5541:8843793,25928227 -h1,5541:12637541,25928227:0,0,0 -k1,5541:32583029,25928227:19945488 -g1,5541:32583029,25928227 -) -(1,5543:6630773,27249765:25952256,404226,76021 -(1,5542:6630773,27249765:0,0,0 -g1,5542:6630773,27249765 -g1,5542:6630773,27249765 -g1,5542:6303093,27249765 -(1,5542:6303093,27249765:0,0,0 -) -g1,5542:6630773,27249765 -) -k1,5543:6630773,27249765:0 -h1,5543:9792230,27249765:0,0,0 -k1,5543:32583030,27249765:22790800 -g1,5543:32583030,27249765 -) -(1,5553:6630773,27981479:25952256,404226,101187 -(1,5545:6630773,27981479:0,0,0 -g1,5545:6630773,27981479 -g1,5545:6630773,27981479 -g1,5545:6303093,27981479 -(1,5545:6303093,27981479:0,0,0 -) -g1,5545:6630773,27981479 -) -g1,5553:7579210,27981479 -g1,5553:7895356,27981479 -g1,5553:8211502,27981479 -g1,5553:10108376,27981479 -h1,5553:11372959,27981479:0,0,0 -k1,5553:32583029,27981479:21210070 -g1,5553:32583029,27981479 -) -(1,5553:6630773,28647657:25952256,388497,0 -h1,5553:6630773,28647657:0,0,0 -g1,5553:7579210,28647657 -g1,5553:8211502,28647657 -g1,5553:8527648,28647657 -g1,5553:8843794,28647657 -g1,5553:9159940,28647657 -g1,5553:9476086,28647657 -g1,5553:10108378,28647657 -g1,5553:10424524,28647657 -g1,5553:10740670,28647657 -g1,5553:11056816,28647657 -h1,5553:11372962,28647657:0,0,0 -k1,5553:32583030,28647657:21210068 -g1,5553:32583030,28647657 -) -(1,5553:6630773,29313835:25952256,388497,9436 -h1,5553:6630773,29313835:0,0,0 -g1,5553:7579210,29313835 -g1,5553:8211502,29313835 -g1,5553:8527648,29313835 -g1,5553:8843794,29313835 -g1,5553:9159940,29313835 -g1,5553:9476086,29313835 -g1,5553:10108378,29313835 -g1,5553:10424524,29313835 -g1,5553:10740670,29313835 -h1,5553:11372961,29313835:0,0,0 -k1,5553:32583029,29313835:21210068 -g1,5553:32583029,29313835 -) -(1,5553:6630773,29980013:25952256,388497,9436 -h1,5553:6630773,29980013:0,0,0 -g1,5553:7579210,29980013 -g1,5553:8211502,29980013 -g1,5553:8527648,29980013 -g1,5553:8843794,29980013 -g1,5553:9159940,29980013 -g1,5553:9476086,29980013 -g1,5553:10108378,29980013 -g1,5553:10424524,29980013 -g1,5553:10740670,29980013 -g1,5553:11056816,29980013 -h1,5553:11372962,29980013:0,0,0 -k1,5553:32583030,29980013:21210068 -g1,5553:32583030,29980013 -) -(1,5553:6630773,30646191:25952256,388497,0 -h1,5553:6630773,30646191:0,0,0 -g1,5553:7579210,30646191 -g1,5553:8211502,30646191 -g1,5553:8527648,30646191 -g1,5553:8843794,30646191 -g1,5553:9159940,30646191 -g1,5553:9476086,30646191 -g1,5553:10108378,30646191 -g1,5553:10424524,30646191 -g1,5553:10740670,30646191 -h1,5553:11372961,30646191:0,0,0 -k1,5553:32583029,30646191:21210068 -g1,5553:32583029,30646191 -) -(1,5553:6630773,31312369:25952256,388497,9436 -h1,5553:6630773,31312369:0,0,0 -g1,5553:7579210,31312369 -g1,5553:8211502,31312369 -g1,5553:8527648,31312369 -g1,5553:8843794,31312369 -g1,5553:9159940,31312369 -g1,5553:9476086,31312369 -g1,5553:10108378,31312369 -g1,5553:10424524,31312369 -g1,5553:10740670,31312369 -h1,5553:11372961,31312369:0,0,0 -k1,5553:32583029,31312369:21210068 -g1,5553:32583029,31312369 -) -(1,5553:6630773,31978547:25952256,388497,9436 -h1,5553:6630773,31978547:0,0,0 -g1,5553:7579210,31978547 -g1,5553:8211502,31978547 -g1,5553:8527648,31978547 -g1,5553:8843794,31978547 -g1,5553:9159940,31978547 -g1,5553:9476086,31978547 -g1,5553:10108378,31978547 -g1,5553:10424524,31978547 -g1,5553:10740670,31978547 -h1,5553:11372961,31978547:0,0,0 -k1,5553:32583029,31978547:21210068 -g1,5553:32583029,31978547 -) -(1,5555:6630773,33300085:25952256,404226,76021 -(1,5554:6630773,33300085:0,0,0 -g1,5554:6630773,33300085 -g1,5554:6630773,33300085 -g1,5554:6303093,33300085 -(1,5554:6303093,33300085:0,0,0 -) -g1,5554:6630773,33300085 -) -k1,5555:6630773,33300085:0 -h1,5555:9792230,33300085:0,0,0 -k1,5555:32583030,33300085:22790800 -g1,5555:32583030,33300085 -) -(1,5565:6630773,34031799:25952256,404226,101187 -(1,5557:6630773,34031799:0,0,0 -g1,5557:6630773,34031799 -g1,5557:6630773,34031799 -g1,5557:6303093,34031799 -(1,5557:6303093,34031799:0,0,0 -) -g1,5557:6630773,34031799 -) -g1,5565:7579210,34031799 -g1,5565:7895356,34031799 -g1,5565:8211502,34031799 -g1,5565:8527648,34031799 -g1,5565:10424522,34031799 -h1,5565:11689105,34031799:0,0,0 -k1,5565:32583029,34031799:20893924 -g1,5565:32583029,34031799 -) -(1,5565:6630773,34697977:25952256,388497,9436 -h1,5565:6630773,34697977:0,0,0 -g1,5565:7579210,34697977 -g1,5565:8527647,34697977 -g1,5565:8843793,34697977 -g1,5565:9159939,34697977 -g1,5565:9476085,34697977 -g1,5565:10424522,34697977 -g1,5565:10740668,34697977 -g1,5565:11056814,34697977 -h1,5565:11689105,34697977:0,0,0 -k1,5565:32583029,34697977:20893924 -g1,5565:32583029,34697977 -) -(1,5565:6630773,35364155:25952256,388497,9436 -h1,5565:6630773,35364155:0,0,0 -g1,5565:7579210,35364155 -g1,5565:8527647,35364155 -g1,5565:8843793,35364155 -g1,5565:9159939,35364155 -g1,5565:9476085,35364155 -g1,5565:10424522,35364155 -g1,5565:10740668,35364155 -g1,5565:11056814,35364155 -h1,5565:11689105,35364155:0,0,0 -k1,5565:32583029,35364155:20893924 -g1,5565:32583029,35364155 -) -(1,5565:6630773,36030333:25952256,388497,9436 -h1,5565:6630773,36030333:0,0,0 -g1,5565:7579210,36030333 -g1,5565:8527647,36030333 -g1,5565:8843793,36030333 -g1,5565:9159939,36030333 -g1,5565:9476085,36030333 -g1,5565:10424522,36030333 -g1,5565:10740668,36030333 -g1,5565:11056814,36030333 -h1,5565:11689105,36030333:0,0,0 -k1,5565:32583029,36030333:20893924 -g1,5565:32583029,36030333 -) -(1,5565:6630773,36696511:25952256,388497,9436 -h1,5565:6630773,36696511:0,0,0 -g1,5565:7579210,36696511 -g1,5565:8527647,36696511 -g1,5565:8843793,36696511 -g1,5565:9159939,36696511 -g1,5565:9476085,36696511 -g1,5565:10424522,36696511 -g1,5565:10740668,36696511 -g1,5565:11056814,36696511 -h1,5565:11689105,36696511:0,0,0 -k1,5565:32583029,36696511:20893924 -g1,5565:32583029,36696511 -) -(1,5565:6630773,37362689:25952256,388497,9436 -h1,5565:6630773,37362689:0,0,0 -g1,5565:7579210,37362689 -g1,5565:8527647,37362689 -g1,5565:8843793,37362689 -g1,5565:9159939,37362689 -g1,5565:9476085,37362689 -g1,5565:10424522,37362689 -g1,5565:10740668,37362689 -h1,5565:11689105,37362689:0,0,0 -k1,5565:32583029,37362689:20893924 -g1,5565:32583029,37362689 -) -(1,5565:6630773,38028867:25952256,388497,9436 -h1,5565:6630773,38028867:0,0,0 -g1,5565:7579210,38028867 -g1,5565:8527647,38028867 -g1,5565:8843793,38028867 -g1,5565:9159939,38028867 -g1,5565:9476085,38028867 -g1,5565:10424522,38028867 -g1,5565:10740668,38028867 -g1,5565:11056814,38028867 -h1,5565:11689105,38028867:0,0,0 -k1,5565:32583029,38028867:20893924 -g1,5565:32583029,38028867 -) -(1,5567:6630773,39350405:25952256,404226,76021 -(1,5566:6630773,39350405:0,0,0 -g1,5566:6630773,39350405 -g1,5566:6630773,39350405 -g1,5566:6303093,39350405 -(1,5566:6303093,39350405:0,0,0 -) -g1,5566:6630773,39350405 -) -k1,5567:6630773,39350405:0 -h1,5567:9792230,39350405:0,0,0 -k1,5567:32583030,39350405:22790800 -g1,5567:32583030,39350405 -) -(1,5571:6630773,40082119:25952256,404226,76021 -(1,5569:6630773,40082119:0,0,0 -g1,5569:6630773,40082119 -g1,5569:6630773,40082119 -g1,5569:6303093,40082119 -(1,5569:6303093,40082119:0,0,0 -) -g1,5569:6630773,40082119 -) -g1,5571:7579210,40082119 -g1,5571:8843793,40082119 -h1,5571:9476084,40082119:0,0,0 -k1,5571:32583028,40082119:23106944 -g1,5571:32583028,40082119 -) -(1,5573:6630773,41403657:25952256,404226,76021 -(1,5572:6630773,41403657:0,0,0 -g1,5572:6630773,41403657 -g1,5572:6630773,41403657 -g1,5572:6303093,41403657 -(1,5572:6303093,41403657:0,0,0 -) -g1,5572:6630773,41403657 -) -k1,5573:6630773,41403657:0 -h1,5573:9792230,41403657:0,0,0 -k1,5573:32583030,41403657:22790800 -g1,5573:32583030,41403657 -) -(1,5577:6630773,42135371:25952256,404226,76021 -(1,5575:6630773,42135371:0,0,0 -g1,5575:6630773,42135371 -g1,5575:6630773,42135371 -g1,5575:6303093,42135371 -(1,5575:6303093,42135371:0,0,0 -) -g1,5575:6630773,42135371 -) -g1,5577:7579210,42135371 -g1,5577:8843793,42135371 -h1,5577:9159939,42135371:0,0,0 -k1,5577:32583029,42135371:23423090 -g1,5577:32583029,42135371 -) -(1,5579:6630773,43456909:25952256,404226,76021 -(1,5578:6630773,43456909:0,0,0 -g1,5578:6630773,43456909 -g1,5578:6630773,43456909 -g1,5578:6303093,43456909 -(1,5578:6303093,43456909:0,0,0 -) -g1,5578:6630773,43456909 -) -k1,5579:6630773,43456909:0 -h1,5579:10108375,43456909:0,0,0 -k1,5579:32583029,43456909:22474654 -g1,5579:32583029,43456909 -) -(1,5583:6630773,44188623:25952256,404226,101187 -(1,5581:6630773,44188623:0,0,0 -g1,5581:6630773,44188623 -g1,5581:6630773,44188623 -g1,5581:6303093,44188623 -(1,5581:6303093,44188623:0,0,0 -) -g1,5581:6630773,44188623 -) -g1,5583:7579210,44188623 -g1,5583:8843793,44188623 -g1,5583:11372959,44188623 -h1,5583:13269833,44188623:0,0,0 -k1,5583:32583029,44188623:19313196 -g1,5583:32583029,44188623 -) -(1,5585:6630773,45510161:25952256,404226,76021 -(1,5584:6630773,45510161:0,0,0 -g1,5584:6630773,45510161 -g1,5584:6630773,45510161 -g1,5584:6303093,45510161 -(1,5584:6303093,45510161:0,0,0 -) -g1,5584:6630773,45510161 -) -k1,5585:6630773,45510161:0 -h1,5585:11056812,45510161:0,0,0 -k1,5585:32583028,45510161:21526216 -g1,5585:32583028,45510161 -) -] -) -g1,5604:32583029,45510161 -g1,5604:6630773,45510161 -g1,5604:6630773,45510161 -g1,5604:32583029,45510161 -g1,5604:32583029,45510161 -) -] -(1,5604:32583029,45706769:0,0,0 -g1,5604:32583029,45706769 -) -) -] -(1,5604:6630773,47279633:25952256,0,0 -h1,5604:6630773,47279633:25952256,0,0 -) -] -(1,5604:4262630,4025873:0,0,0 -[1,5604:-473656,4025873:0,0,0 -(1,5604:-473656,-710413:0,0,0 -(1,5604:-473656,-710413:0,0,0 -g1,5604:-473656,-710413 -) -g1,5604:-473656,-710413 -) -] -) -] -!23330 -}101 -Input:765:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:766:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:767:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:768:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:769:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:770:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:771:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:772:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:773:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:774:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:775:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:776:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:777:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:778:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:779:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1377 -{102 -[1,5661:4262630,47279633:28320399,43253760,0 -(1,5661:4262630,4025873:0,0,0 -[1,5661:-473656,4025873:0,0,0 -(1,5661:-473656,-710413:0,0,0 -(1,5661:-473656,-644877:0,0,0 -k1,5661:-473656,-644877:-65536 -) -(1,5661:-473656,4736287:0,0,0 -k1,5661:-473656,4736287:5209943 -) -g1,5661:-473656,-710413 -) -] -) -[1,5661:6630773,47279633:25952256,43253760,0 -[1,5661:6630773,4812305:25952256,786432,0 -(1,5661:6630773,4812305:25952256,505283,134348 -(1,5661:6630773,4812305:25952256,505283,134348 -g1,5661:3078558,4812305 -[1,5661:3078558,4812305:0,0,0 -(1,5661:3078558,2439708:0,1703936,0 -k1,5661:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,5661:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,5661:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,5661:3078558,4812305:0,0,0 -(1,5661:3078558,2439708:0,1703936,0 -g1,5661:29030814,2439708 -g1,5661:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,5661:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,5661:37855564,2439708:1179648,16384,0 -) -) -k1,5661:3078556,2439708:-34777008 -) -] -[1,5661:3078558,4812305:0,0,0 -(1,5661:3078558,49800853:0,16384,2228224 -k1,5661:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,5661:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,5661:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,5661:3078558,4812305:0,0,0 -(1,5661:3078558,49800853:0,16384,2228224 -g1,5661:29030814,49800853 -g1,5661:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,5661:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,5661:37855564,49800853:1179648,16384,0 -) -) -k1,5661:3078556,49800853:-34777008 -) -] -g1,5661:6630773,4812305 -g1,5661:6630773,4812305 -g1,5661:9303331,4812305 -g1,5661:10133672,4812305 -g1,5661:11760931,4812305 -k1,5661:31786111,4812305:20025180 -) -) -] -[1,5661:6630773,45706769:25952256,40108032,0 -(1,5661:6630773,45706769:25952256,40108032,0 -(1,5661:6630773,45706769:0,0,0 -g1,5661:6630773,45706769 -) -[1,5661:6630773,45706769:25952256,40108032,0 -v1,5604:6630773,6254097:0,393216,0 -(1,5604:6630773,11932031:25952256,6071150,196608 -g1,5604:6630773,11932031 -g1,5604:6630773,11932031 -g1,5604:6434165,11932031 -(1,5604:6434165,11932031:0,6071150,196608 -r1,5661:32779637,11932031:26345472,6267758,196608 -k1,5604:6434165,11932031:-26345472 -) -(1,5604:6434165,11932031:26345472,6071150,196608 -[1,5604:6630773,11932031:25952256,5874542,0 -(1,5589:6630773,6461715:25952256,404226,101187 -(1,5587:6630773,6461715:0,0,0 -g1,5587:6630773,6461715 -g1,5587:6630773,6461715 -g1,5587:6303093,6461715 -(1,5587:6303093,6461715:0,0,0 -) -g1,5587:6630773,6461715 -) -g1,5589:7579210,6461715 -g1,5589:8843793,6461715 -g1,5589:11372959,6461715 -h1,5589:13269833,6461715:0,0,0 -k1,5589:32583029,6461715:19313196 -g1,5589:32583029,6461715 -) -(1,5591:6630773,7783253:25952256,404226,76021 -(1,5590:6630773,7783253:0,0,0 -g1,5590:6630773,7783253 -g1,5590:6630773,7783253 -g1,5590:6303093,7783253 -(1,5590:6303093,7783253:0,0,0 -) -g1,5590:6630773,7783253 -) -k1,5591:6630773,7783253:0 -k1,5591:6630773,7783253:0 -h1,5591:12953687,7783253:0,0,0 -k1,5591:32583029,7783253:19629342 -g1,5591:32583029,7783253 -) -(1,5595:6630773,8514967:25952256,404226,76021 -(1,5593:6630773,8514967:0,0,0 -g1,5593:6630773,8514967 -g1,5593:6630773,8514967 -g1,5593:6303093,8514967 -(1,5593:6303093,8514967:0,0,0 -) -g1,5593:6630773,8514967 -) -g1,5595:7579210,8514967 -g1,5595:8843793,8514967 -g1,5595:10108376,8514967 -g1,5595:11372959,8514967 -g1,5595:12637542,8514967 -g1,5595:13902125,8514967 -g1,5595:15166708,8514967 -h1,5595:16115145,8514967:0,0,0 -k1,5595:32583029,8514967:16467884 -g1,5595:32583029,8514967 -) -(1,5597:6630773,9836505:25952256,404226,76021 -(1,5596:6630773,9836505:0,0,0 -g1,5596:6630773,9836505 -g1,5596:6630773,9836505 -g1,5596:6303093,9836505 -(1,5596:6303093,9836505:0,0,0 -) -g1,5596:6630773,9836505 -) -k1,5597:6630773,9836505:0 -h1,5597:9476084,9836505:0,0,0 -k1,5597:32583028,9836505:23106944 -g1,5597:32583028,9836505 -) -(1,5603:6630773,10568219:25952256,410518,9436 -(1,5599:6630773,10568219:0,0,0 -g1,5599:6630773,10568219 -g1,5599:6630773,10568219 -g1,5599:6303093,10568219 -(1,5599:6303093,10568219:0,0,0 -) -g1,5599:6630773,10568219 -) -g1,5603:7579210,10568219 -g1,5603:12005251,10568219 -g1,5603:12953688,10568219 -g1,5603:14534417,10568219 -g1,5603:15482854,10568219 -g1,5603:15799000,10568219 -g1,5603:16431292,10568219 -h1,5603:19592749,10568219:0,0,0 -k1,5603:32583029,10568219:12990280 -g1,5603:32583029,10568219 -) -(1,5603:6630773,11234397:25952256,410518,101187 -h1,5603:6630773,11234397:0,0,0 -g1,5603:7579210,11234397 -g1,5603:7895356,11234397 -g1,5603:8527648,11234397 -g1,5603:10740668,11234397 -g1,5603:12005251,11234397 -g1,5603:12321397,11234397 -g1,5603:12953689,11234397 -g1,5603:13585981,11234397 -g1,5603:14218273,11234397 -g1,5603:14850565,11234397 -g1,5603:15482857,11234397 -g1,5603:16115149,11234397 -g1,5603:17063586,11234397 -g1,5603:18012023,11234397 -g1,5603:18960460,11234397 -g1,5603:19908897,11234397 -h1,5603:20857334,11234397:0,0,0 -k1,5603:32583029,11234397:11725695 -g1,5603:32583029,11234397 -) -(1,5603:6630773,11900575:25952256,410518,31456 -h1,5603:6630773,11900575:0,0,0 -g1,5603:7579210,11900575 -g1,5603:7895356,11900575 -g1,5603:8527648,11900575 -g1,5603:10108377,11900575 -g1,5603:10740669,11900575 -g1,5603:12005252,11900575 -g1,5603:12321398,11900575 -g1,5603:12953690,11900575 -g1,5603:13902127,11900575 -g1,5603:14534419,11900575 -g1,5603:15482856,11900575 -g1,5603:16431293,11900575 -g1,5603:17379730,11900575 -g1,5603:18328167,11900575 -g1,5603:19276604,11900575 -g1,5603:20225041,11900575 -g1,5603:21173478,11900575 -h1,5603:22121915,11900575:0,0,0 -k1,5603:32583029,11900575:10461114 -g1,5603:32583029,11900575 -) -] -) -g1,5604:32583029,11932031 -g1,5604:6630773,11932031 -g1,5604:6630773,11932031 -g1,5604:32583029,11932031 -g1,5604:32583029,11932031 -) -h1,5604:6630773,12128639:0,0,0 -v1,5608:6630773,14018703:0,393216,0 -(1,5609:6630773,16296870:25952256,2671383,616038 -g1,5609:6630773,16296870 -(1,5609:6630773,16296870:25952256,2671383,616038 -(1,5609:6630773,16912908:25952256,3287421,0 -[1,5609:6630773,16912908:25952256,3287421,0 -(1,5609:6630773,16886694:25952256,3234993,0 -r1,5661:6656987,16886694:26214,3234993,0 -[1,5609:6656987,16886694:25899828,3234993,0 -(1,5609:6656987,16296870:25899828,2055345,0 -[1,5609:7246811,16296870:24720180,2055345,0 -(1,5609:7246811,15328899:24720180,1087374,134348 -k1,5608:8650286,15328899:193772 -k1,5608:10390709,15328899:193773 -k1,5608:11420065,15328899:193772 -k1,5608:12632923,15328899:193773 -k1,5608:14214748,15328899:193772 -k1,5608:16236975,15328899:193773 -k1,5608:17378398,15328899:193772 -(1,5608:17378398,15328899:0,452978,115847 -r1,5661:19495223,15328899:2116825,568825,115847 -k1,5608:17378398,15328899:-2116825 -) -(1,5608:17378398,15328899:2116825,452978,115847 -k1,5608:17378398,15328899:3277 -h1,5608:19491946,15328899:0,411205,112570 -) -k1,5608:19688996,15328899:193773 -k1,5608:21074213,15328899:193772 -(1,5608:21074213,15328899:0,452978,115847 -r1,5661:23191038,15328899:2116825,568825,115847 -k1,5608:21074213,15328899:-2116825 -) -(1,5608:21074213,15328899:2116825,452978,115847 -k1,5608:21074213,15328899:3277 -h1,5608:23187761,15328899:0,411205,112570 -) -k1,5608:23558481,15328899:193773 -k1,5608:24943698,15328899:193772 -k1,5608:26363650,15328899:193773 -k1,5608:27576507,15328899:193772 -k1,5608:29266467,15328899:193773 -k1,5608:31315563,15328899:193772 -k1,5608:31966991,15328899:0 -) -(1,5609:7246811,16170387:24720180,513147,126483 -g1,5608:9028079,16170387 -g1,5608:10602909,16170387 -g1,5608:11821223,16170387 -g1,5608:13326585,16170387 -g1,5608:14698253,16170387 -g1,5608:16569961,16170387 -g1,5608:17452075,16170387 -g1,5608:19026905,16170387 -g1,5608:20245219,16170387 -g1,5608:21592639,16170387 -g1,5608:23446652,16170387 -g1,5608:25144689,16170387 -g1,5608:26011074,16170387 -(1,5608:26011074,16170387:0,414482,115847 -r1,5661:27424475,16170387:1413401,530329,115847 -k1,5608:26011074,16170387:-1413401 -) -(1,5608:26011074,16170387:1413401,414482,115847 -k1,5608:26011074,16170387:3277 -h1,5608:27421198,16170387:0,411205,112570 -) -g1,5608:27797374,16170387 -k1,5609:31966991,16170387:199446 -g1,5609:31966991,16170387 -) -] -) -] -r1,5661:32583029,16886694:26214,3234993,0 -) -] -) -) -g1,5609:32583029,16296870 -) -h1,5609:6630773,16912908:0,0,0 -(1,5614:6630773,18278684:25952256,513147,102891 -h1,5611:6630773,18278684:983040,0,0 -k1,5611:9100774,18278684:290274 -k1,5611:12153391,18278684:290274 -k1,5611:15156856,18278684:290274 -k1,5611:16106422,18278684:290274 -k1,5611:16752556,18278684:290274 -k1,5611:18432193,18278684:290274 -k1,5611:20598763,18278684:290274 -k1,5611:21993319,18278684:290274 -k1,5611:23031359,18278684:290274 -k1,5611:25719595,18278684:290274 -k1,5611:26692754,18278684:290274 -k1,5611:29291206,18278684:290274 -k1,5611:30240772,18278684:290274 -k1,5611:32583029,18278684:0 -) -(1,5614:6630773,19120172:25952256,505283,134348 -k1,5611:8956444,19120172:212790 -k1,5611:10618891,19120172:212791 -k1,5611:13625481,19120172:212790 -k1,5611:16081568,19120172:212790 -k1,5611:19442709,19120172:212791 -k1,5611:20974083,19120172:212790 -k1,5611:22418950,19120172:212790 -k1,5611:24910427,19120172:212790 -h1,5611:26279474,19120172:0,0,0 -k1,5611:26492265,19120172:212791 -k1,5611:27514425,19120172:212790 -k1,5611:29225368,19120172:212790 -h1,5611:30022286,19120172:0,0,0 -k1,5611:30615841,19120172:212791 -k1,5612:31657661,19120172:212790 -k1,5614:32583029,19120172:0 -) -(1,5614:6630773,19961660:25952256,513147,126483 -k1,5612:8430528,19961660:143660 -k1,5612:9593273,19961660:143660 -k1,5612:11519511,19961660:143659 -k1,5612:12322463,19961660:143660 -k1,5612:13485208,19961660:143660 -k1,5612:16342059,19961660:143660 -k1,5612:17152875,19961660:143660 -(1,5612:17152875,19961660:0,414482,115847 -r1,5661:18566276,19961660:1413401,530329,115847 -k1,5612:17152875,19961660:-1413401 -) -(1,5612:17152875,19961660:1413401,414482,115847 -k1,5612:17152875,19961660:3277 -h1,5612:18562999,19961660:0,411205,112570 -) -k1,5612:18883605,19961660:143659 -k1,5612:19895617,19961660:143660 -k1,5612:21143559,19961660:143660 -k1,5612:22379704,19961660:143660 -k1,5612:23294067,19961660:143660 -k1,5612:25230137,19961660:143660 -k1,5612:28242962,19961660:143659 -k1,5612:29014457,19961660:143660 -k1,5612:30177202,19961660:143660 -k1,5612:32583029,19961660:0 -) -(1,5614:6630773,20803148:25952256,513147,126483 -k1,5612:8414271,20803148:242747 -k1,5612:9525370,20803148:242747 -k1,5612:11316733,20803148:242747 -k1,5612:12210907,20803148:242746 -k1,5612:14217228,20803148:242747 -k1,5612:17155471,20803148:242747 -(1,5612:17155471,20803148:0,452978,115847 -r1,5661:19624008,20803148:2468537,568825,115847 -k1,5612:17155471,20803148:-2468537 -) -(1,5612:17155471,20803148:2468537,452978,115847 -k1,5612:17155471,20803148:3277 -h1,5612:19620731,20803148:0,411205,112570 -) -k1,5612:19866755,20803148:242747 -k1,5612:20760930,20803148:242747 -k1,5612:22455299,20803148:242747 -k1,5612:25080935,20803148:242747 -k1,5612:25982973,20803148:242746 -k1,5612:27244805,20803148:242747 -k1,5612:28876915,20803148:242747 -k1,5612:30995958,20803148:242747 -(1,5612:30995958,20803148:0,414482,115847 -r1,5661:32409359,20803148:1413401,530329,115847 -k1,5612:30995958,20803148:-1413401 -) -(1,5612:30995958,20803148:1413401,414482,115847 -k1,5612:30995958,20803148:3277 -h1,5612:32406082,20803148:0,411205,112570 -) -k1,5612:32583029,20803148:0 -) -(1,5614:6630773,21644636:25952256,513147,134348 -g1,5612:8932397,21644636 -g1,5612:12157423,21644636 -g1,5612:13348212,21644636 -g1,5612:16637464,21644636 -g1,5612:17452731,21644636 -g1,5612:19930647,21644636 -h1,5612:20901235,21644636:0,0,0 -g1,5612:21100464,21644636 -g1,5612:22109063,21644636 -g1,5612:23806445,21644636 -h1,5612:25001822,21644636:0,0,0 -g1,5612:25581815,21644636 -g1,5613:25581815,21644636 -k1,5614:32583029,21644636:7001214 -g1,5614:32583029,21644636 -) -v1,5616:6630773,22835102:0,393216,0 -(1,5624:6630773,24446902:25952256,2005016,196608 -g1,5624:6630773,24446902 -g1,5624:6630773,24446902 -g1,5624:6434165,24446902 -(1,5624:6434165,24446902:0,2005016,196608 -r1,5661:32779637,24446902:26345472,2201624,196608 -k1,5624:6434165,24446902:-26345472 -) -(1,5624:6434165,24446902:26345472,2005016,196608 -[1,5624:6630773,24446902:25952256,1808408,0 -(1,5618:6630773,23042720:25952256,404226,101187 -(1,5617:6630773,23042720:0,0,0 -g1,5617:6630773,23042720 -g1,5617:6630773,23042720 -g1,5617:6303093,23042720 -(1,5617:6303093,23042720:0,0,0 -) -g1,5617:6630773,23042720 -) -k1,5618:6630773,23042720:0 -g1,5618:9476085,23042720 -g1,5618:10108377,23042720 -g1,5618:12005252,23042720 -g1,5618:13269835,23042720 -g1,5618:13902127,23042720 -h1,5618:15799001,23042720:0,0,0 -k1,5618:32583029,23042720:16784028 -g1,5618:32583029,23042720 -) -(1,5623:6630773,23774434:25952256,404226,101187 -(1,5620:6630773,23774434:0,0,0 -g1,5620:6630773,23774434 -g1,5620:6630773,23774434 -g1,5620:6303093,23774434 -(1,5620:6303093,23774434:0,0,0 -) -g1,5620:6630773,23774434 -) -g1,5623:7579210,23774434 -g1,5623:7895356,23774434 -g1,5623:8211502,23774434 -g1,5623:8527648,23774434 -g1,5623:8843794,23774434 -g1,5623:10740668,23774434 -g1,5623:11056814,23774434 -g1,5623:11372960,23774434 -g1,5623:11689106,23774434 -g1,5623:12005252,23774434 -g1,5623:12321398,23774434 -h1,5623:13585981,23774434:0,0,0 -k1,5623:32583029,23774434:18997048 -g1,5623:32583029,23774434 -) -(1,5623:6630773,24440612:25952256,404226,6290 -h1,5623:6630773,24440612:0,0,0 -g1,5623:7579210,24440612 -g1,5623:10740667,24440612 -h1,5623:13585978,24440612:0,0,0 -k1,5623:32583030,24440612:18997052 -g1,5623:32583030,24440612 -) -] -) -g1,5624:32583029,24446902 -g1,5624:6630773,24446902 -g1,5624:6630773,24446902 -g1,5624:32583029,24446902 -g1,5624:32583029,24446902 -) -h1,5624:6630773,24643510:0,0,0 -(1,5628:6630773,26009286:25952256,513147,134348 -h1,5627:6630773,26009286:983040,0,0 -k1,5627:9076959,26009286:266459 -k1,5627:12529777,26009286:266458 -k1,5627:14651560,26009286:266459 -k1,5627:17258964,26009286:266458 -k1,5627:17881283,26009286:266459 -k1,5627:20125618,26009286:266458 -k1,5627:21051369,26009286:266459 -k1,5627:24292506,26009286:266458 -k1,5627:26928747,26009286:266459 -k1,5627:28589156,26009286:266458 -k1,5627:29874700,26009286:266459 -k1,5627:31923737,26009286:266458 -k1,5627:32583029,26009286:0 -) -(1,5628:6630773,26850774:25952256,513147,134348 -k1,5627:8323802,26850774:241407 -k1,5627:11121767,26850774:241406 -k1,5627:12838389,26850774:241407 -k1,5627:15618660,26850774:241406 -k1,5627:16519359,26850774:241407 -k1,5627:17779850,26850774:241406 -k1,5627:19999134,26850774:241407 -k1,5627:20772037,26850774:241406 -k1,5627:23172200,26850774:241407 -k1,5627:26530498,26850774:241406 -k1,5627:27423333,26850774:241407 -k1,5627:28683824,26850774:241406 -k1,5627:30663246,26850774:241407 -k1,5627:31563944,26850774:241406 -k1,5627:32583029,26850774:0 -) -(1,5628:6630773,27692262:25952256,513147,134348 -k1,5627:11398921,27692262:144583 -k1,5627:14526702,27692262:144582 -k1,5627:15287323,27692262:144583 -k1,5627:16450990,27692262:144582 -k1,5627:17984936,27692262:144583 -k1,5627:20179484,27692262:144582 -k1,5627:21366089,27692262:144583 -k1,5627:22713912,27692262:144582 -k1,5627:24511968,27692262:144583 -k1,5627:27842910,27692262:144582 -k1,5627:28638921,27692262:144583 -k1,5627:29531269,27692262:144582 -k1,5627:31189078,27692262:144583 -k1,5627:32583029,27692262:0 -) -(1,5628:6630773,28533750:25952256,513147,134348 -k1,5627:7936291,28533750:173711 -k1,5627:9811972,28533750:173711 -k1,5627:11375047,28533750:173712 -k1,5627:13425054,28533750:173711 -k1,5627:14281650,28533750:173711 -k1,5627:15622557,28533750:173711 -k1,5627:16664621,28533750:173712 -k1,5627:18368598,28533750:173711 -k1,5627:19917910,28533750:173711 -k1,5627:20743049,28533750:173711 -k1,5627:24126714,28533750:173712 -k1,5627:25319510,28533750:173711 -k1,5627:27231236,28533750:173711 -k1,5627:28064239,28533750:173711 -k1,5627:29257036,28533750:173712 -k1,5627:31563944,28533750:173711 -k1,5627:32583029,28533750:0 -) -(1,5628:6630773,29375238:25952256,513147,134348 -g1,5627:9902330,29375238 -g1,5627:10752987,29375238 -g1,5627:11971301,29375238 -g1,5627:13476663,29375238 -g1,5627:16956624,29375238 -g1,5627:19023629,29375238 -(1,5627:19023629,29375238:0,414482,115847 -r1,5661:19381895,29375238:358266,530329,115847 -k1,5627:19023629,29375238:-358266 -) -(1,5627:19023629,29375238:358266,414482,115847 -k1,5627:19023629,29375238:3277 -h1,5627:19378618,29375238:0,411205,112570 -) -g1,5627:19754794,29375238 -g1,5627:20605451,29375238 -g1,5627:21823765,29375238 -g1,5627:23179704,29375238 -g1,5627:24038225,29375238 -g1,5627:26581677,29375238 -k1,5628:32583029,29375238:3384499 -g1,5628:32583029,29375238 -) -v1,5630:6630773,30741014:0,393216,0 -(1,5631:6630773,34678565:25952256,4330767,616038 -g1,5631:6630773,34678565 -(1,5631:6630773,34678565:25952256,4330767,616038 -(1,5631:6630773,35294603:25952256,4946805,0 -[1,5631:6630773,35294603:25952256,4946805,0 -(1,5631:6630773,35268389:25952256,4894377,0 -r1,5661:6656987,35268389:26214,4894377,0 -[1,5631:6656987,35268389:25899828,4894377,0 -(1,5631:6656987,34678565:25899828,3714729,0 -[1,5631:7246811,34678565:24720180,3714729,0 -(1,5631:7246811,32051210:24720180,1087374,126483 -k1,5630:8815222,32051210:358708 -k1,5630:10645869,32051210:358708 -k1,5630:11939119,32051210:358707 -(1,5630:11939119,32051210:0,452978,115847 -r1,5661:15462791,32051210:3523672,568825,115847 -k1,5630:11939119,32051210:-3523672 -) -(1,5630:11939119,32051210:3523672,452978,115847 -k1,5630:11939119,32051210:3277 -h1,5630:15459514,32051210:0,411205,112570 -) -k1,5630:15821499,32051210:358708 -k1,5630:18882256,32051210:358708 -k1,5630:20630327,32051210:358708 -k1,5630:22556656,32051210:358708 -k1,5630:23760777,32051210:358707 -k1,5630:26318873,32051210:358708 -k1,5630:31350953,32051210:358708 -k1,5630:31966991,32051210:0 -) -(1,5631:7246811,32892698:24720180,505283,134348 -k1,5630:8974791,32892698:367453 -k1,5630:11035693,32892698:367452 -k1,5630:12768261,32892698:367453 -k1,5630:14873728,32892698:367452 -k1,5630:17999591,32892698:367453 -k1,5630:18983081,32892698:367452 -k1,5630:20369619,32892698:367453 -k1,5630:21151746,32892698:367284 -k1,5630:25474296,32892698:367452 -k1,5630:26946031,32892698:367453 -k1,5630:28061249,32892698:367452 -k1,5630:30573040,32892698:367453 -k1,5631:31966991,32892698:0 -) -(1,5631:7246811,33734186:24720180,505283,126483 -(1,5630:7246811,33734186:0,452978,115847 -r1,5661:12880754,33734186:5633943,568825,115847 -k1,5630:7246811,33734186:-5633943 -) -(1,5630:7246811,33734186:5633943,452978,115847 -k1,5630:7246811,33734186:3277 -h1,5630:12877477,33734186:0,411205,112570 -) -k1,5630:13249857,33734186:195433 -k1,5630:14981455,33734186:195434 -k1,5630:15808655,33734186:195433 -k1,5630:17195533,33734186:195433 -k1,5630:19407510,33734186:195434 -k1,5630:20622028,33734186:195433 -k1,5630:22503048,33734186:195434 -k1,5630:24727476,33734186:195433 -k1,5630:25574337,33734186:195433 -k1,5630:27381301,33734186:195434 -k1,5630:29125350,33734186:195433 -k1,5630:31966991,33734186:0 -) -(1,5631:7246811,34575674:24720180,513147,102891 -g1,5630:10573418,34575674 -g1,5630:11230744,34575674 -g1,5630:14305693,34575674 -g1,5630:16013561,34575674 -g1,5630:18619272,34575674 -g1,5630:19837586,34575674 -g1,5630:22522596,34575674 -g1,5630:23381117,34575674 -g1,5630:25288214,34575674 -k1,5631:31966991,34575674:5567286 -g1,5631:31966991,34575674 -) -] -) -] -r1,5661:32583029,35268389:26214,4894377,0 -) -] -) -) -g1,5631:32583029,34678565 -) -h1,5631:6630773,35294603:0,0,0 -v1,5634:6630773,36660379:0,393216,0 -(1,5635:6630773,40703898:25952256,4436735,616038 -g1,5635:6630773,40703898 -(1,5635:6630773,40703898:25952256,4436735,616038 -(1,5635:6630773,41319936:25952256,5052773,0 -[1,5635:6630773,41319936:25952256,5052773,0 -(1,5635:6630773,41293722:25952256,5000345,0 -r1,5661:6656987,41293722:26214,5000345,0 -[1,5635:6656987,41293722:25899828,5000345,0 -(1,5635:6656987,40703898:25899828,3820697,0 -[1,5635:7246811,40703898:24720180,3820697,0 -(1,5635:7246811,38045086:24720180,1161885,196608 -(1,5634:7246811,38045086:0,1161885,196608 -r1,5661:8794447,38045086:1547636,1358493,196608 -k1,5634:7246811,38045086:-1547636 -) -(1,5634:7246811,38045086:1547636,1161885,196608 -) -k1,5634:8955203,38045086:160756 -k1,5634:12078843,38045086:160757 -k1,5634:13258684,38045086:160756 -k1,5634:13834245,38045086:160718 -k1,5634:16837297,38045086:160756 -k1,5634:19010008,38045086:160756 -k1,5634:20560128,38045086:160757 -k1,5634:22597180,38045086:160756 -k1,5634:25471127,38045086:160756 -k1,5634:26291175,38045086:160756 -k1,5634:28007101,38045086:160757 -(1,5634:28007101,38045086:0,452978,115847 -r1,5661:30123926,38045086:2116825,568825,115847 -k1,5634:28007101,38045086:-2116825 -) -(1,5634:28007101,38045086:2116825,452978,115847 -k1,5634:28007101,38045086:3277 -h1,5634:30120649,38045086:0,411205,112570 -) -k1,5634:30458352,38045086:160756 -k1,5634:31966991,38045086:0 -) -(1,5635:7246811,38886574:24720180,513147,134348 -k1,5634:8533601,38886574:194305 -k1,5634:9259403,38886574:194305 -k1,5634:12982166,38886574:194305 -k1,5634:14100530,38886574:194306 -k1,5634:15313920,38886574:194305 -k1,5634:17210195,38886574:194305 -k1,5634:19184458,38886574:194305 -k1,5634:22091954,38886574:194305 -k1,5634:25412982,38886574:194305 -k1,5634:26258716,38886574:194306 -k1,5634:28008190,38886574:194305 -(1,5634:28008190,38886574:0,452978,115847 -r1,5661:29421591,38886574:1413401,568825,115847 -k1,5634:28008190,38886574:-1413401 -) -(1,5634:28008190,38886574:1413401,452978,115847 -k1,5634:28008190,38886574:3277 -h1,5634:29418314,38886574:0,411205,112570 -) -k1,5634:29615896,38886574:194305 -k1,5634:30801761,38886574:194305 -k1,5635:31966991,38886574:0 -) -(1,5635:7246811,39728062:24720180,513147,95026 -k1,5634:9968358,39728062:271811 -k1,5634:10856206,39728062:271810 -k1,5634:12517380,39728062:271811 -k1,5634:15169458,39728062:271810 -k1,5634:16637956,39728062:271811 -k1,5634:19215979,39728062:271811 -k1,5634:20019286,39728062:271810 -k1,5634:21598540,39728062:271811 -k1,5634:22818001,39728062:271810 -k1,5634:25231529,39728062:271811 -k1,5634:28800455,39728062:271810 -k1,5634:29688304,39728062:271811 -k1,5634:31966991,39728062:0 -) -(1,5635:7246811,40569550:24720180,505283,134348 -h1,5634:8789529,40569550:0,0,0 -g1,5634:8988758,40569550 -g1,5634:9997357,40569550 -g1,5634:11694739,40569550 -h1,5634:12890116,40569550:0,0,0 -k1,5635:31966992,40569550:18696112 -g1,5635:31966992,40569550 -) -] -) -] -r1,5661:32583029,41293722:26214,5000345,0 -) -] -) -) -g1,5635:32583029,40703898 -) -h1,5635:6630773,41319936:0,0,0 -(1,5638:6630773,42685712:25952256,513147,134348 -h1,5637:6630773,42685712:983040,0,0 -k1,5637:10641172,42685712:237491 -(1,5637:10641172,42685712:0,452978,115847 -r1,5661:13813132,42685712:3171960,568825,115847 -k1,5637:10641172,42685712:-3171960 -) -(1,5637:10641172,42685712:3171960,452978,115847 -k1,5637:10641172,42685712:3277 -h1,5637:13809855,42685712:0,411205,112570 -) -k1,5637:14050623,42685712:237491 -k1,5637:15392396,42685712:237491 -k1,5637:16377653,42685712:237491 -k1,5637:18128370,42685712:237491 -k1,5637:19017289,42685712:237491 -k1,5637:21278531,42685712:237490 -k1,5637:21871882,42685712:237491 -k1,5637:25099781,42685712:237491 -k1,5637:26904893,42685712:237491 -k1,5637:29432212,42685712:237491 -k1,5637:30328995,42685712:237491 -k1,5637:32168186,42685712:237491 -k1,5638:32583029,42685712:0 -) -(1,5638:6630773,43527200:25952256,513147,134348 -k1,5637:9236480,43527200:199225 -k1,5637:12416283,43527200:199226 -k1,5637:14004871,43527200:199225 -k1,5637:16584364,43527200:199225 -k1,5637:17737139,43527200:199226 -k1,5637:19040646,43527200:199225 -k1,5637:20525687,43527200:199225 -k1,5637:21817398,43527200:199226 -(1,5637:21817398,43527200:0,452978,115847 -r1,5661:24637647,43527200:2820249,568825,115847 -k1,5637:21817398,43527200:-2820249 -) -(1,5637:21817398,43527200:2820249,452978,115847 -k1,5637:21817398,43527200:3277 -h1,5637:24634370,43527200:0,411205,112570 -) -k1,5637:25010542,43527200:199225 -(1,5637:25010542,43527200:0,452978,115847 -r1,5661:27830791,43527200:2820249,568825,115847 -k1,5637:25010542,43527200:-2820249 -) -(1,5637:25010542,43527200:2820249,452978,115847 -k1,5637:25010542,43527200:3277 -h1,5637:27827514,43527200:0,411205,112570 -) -k1,5637:28030016,43527200:199225 -k1,5637:28912127,43527200:199226 -(1,5637:28912127,43527200:0,452978,115847 -r1,5661:31732376,43527200:2820249,568825,115847 -k1,5637:28912127,43527200:-2820249 -) -(1,5637:28912127,43527200:2820249,452978,115847 -k1,5637:28912127,43527200:3277 -h1,5637:31729099,43527200:0,411205,112570 -) -k1,5637:31931601,43527200:199225 -k1,5637:32583029,43527200:0 -) -(1,5638:6630773,44368688:25952256,513147,126483 -g1,5637:8593576,44368688 -g1,5637:9924612,44368688 -g1,5637:12635836,44368688 -g1,5637:15530561,44368688 -g1,5637:16381218,44368688 -g1,5637:19773361,44368688 -k1,5638:32583029,44368688:9922807 -g1,5638:32583029,44368688 -) -v1,5640:6630773,45559154:0,393216,0 -] -(1,5661:32583029,45706769:0,0,0 -g1,5661:32583029,45706769 -) -) -] -(1,5661:6630773,47279633:25952256,0,0 -h1,5661:6630773,47279633:25952256,0,0 -) -] -(1,5661:4262630,4025873:0,0,0 -[1,5661:-473656,4025873:0,0,0 -(1,5661:-473656,-710413:0,0,0 -(1,5661:-473656,-710413:0,0,0 -g1,5661:-473656,-710413 -) -g1,5661:-473656,-710413 -) -] -) -] -!25670 -}102 -Input:780:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:781:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:782:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:783:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:784:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:785:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:786:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:787:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:788:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:789:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:790:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:791:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:792:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1195 -{103 -[1,5690:4262630,47279633:28320399,43253760,0 -(1,5690:4262630,4025873:0,0,0 -[1,5690:-473656,4025873:0,0,0 -(1,5690:-473656,-710413:0,0,0 -(1,5690:-473656,-644877:0,0,0 -k1,5690:-473656,-644877:-65536 -) -(1,5690:-473656,4736287:0,0,0 -k1,5690:-473656,4736287:5209943 -) -g1,5690:-473656,-710413 -) -] -) -[1,5690:6630773,47279633:25952256,43253760,0 -[1,5690:6630773,4812305:25952256,786432,0 -(1,5690:6630773,4812305:25952256,505283,134348 -(1,5690:6630773,4812305:25952256,505283,134348 -g1,5690:3078558,4812305 -[1,5690:3078558,4812305:0,0,0 -(1,5690:3078558,2439708:0,1703936,0 -k1,5690:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,5690:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,5690:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,5690:3078558,4812305:0,0,0 -(1,5690:3078558,2439708:0,1703936,0 -g1,5690:29030814,2439708 -g1,5690:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,5690:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,5690:37855564,2439708:1179648,16384,0 -) -) -k1,5690:3078556,2439708:-34777008 -) -] -[1,5690:3078558,4812305:0,0,0 -(1,5690:3078558,49800853:0,16384,2228224 -k1,5690:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,5690:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,5690:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,5690:3078558,4812305:0,0,0 -(1,5690:3078558,49800853:0,16384,2228224 -g1,5690:29030814,49800853 -g1,5690:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,5690:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,5690:37855564,49800853:1179648,16384,0 -) -) -k1,5690:3078556,49800853:-34777008 -) -] -g1,5690:6630773,4812305 -k1,5690:19515153,4812305:12087462 -g1,5690:20901894,4812305 -g1,5690:21550700,4812305 -g1,5690:24864855,4812305 -g1,5690:27600327,4812305 -g1,5690:29010006,4812305 -) -) -] -[1,5690:6630773,45706769:25952256,40108032,0 -(1,5690:6630773,45706769:25952256,40108032,0 -(1,5690:6630773,45706769:0,0,0 -g1,5690:6630773,45706769 -) -[1,5690:6630773,45706769:25952256,40108032,0 -v1,5661:6630773,6254097:0,393216,0 -(1,5661:6630773,14658417:25952256,8797536,196608 -g1,5661:6630773,14658417 -g1,5661:6630773,14658417 -g1,5661:6434165,14658417 -(1,5661:6434165,14658417:0,8797536,196608 -r1,5690:32779637,14658417:26345472,8994144,196608 -k1,5661:6434165,14658417:-26345472 -) -(1,5661:6434165,14658417:26345472,8797536,196608 -[1,5661:6630773,14658417:25952256,8600928,0 -(1,5642:6630773,6461715:25952256,404226,101187 -(1,5641:6630773,6461715:0,0,0 -g1,5641:6630773,6461715 -g1,5641:6630773,6461715 -g1,5641:6303093,6461715 -(1,5641:6303093,6461715:0,0,0 -) -g1,5641:6630773,6461715 -) -k1,5642:6630773,6461715:0 -h1,5642:10740667,6461715:0,0,0 -k1,5642:32583029,6461715:21842362 -g1,5642:32583029,6461715 -) -(1,5652:6630773,7193429:25952256,404226,101187 -(1,5644:6630773,7193429:0,0,0 -g1,5644:6630773,7193429 -g1,5644:6630773,7193429 -g1,5644:6303093,7193429 -(1,5644:6303093,7193429:0,0,0 -) -g1,5644:6630773,7193429 -) -g1,5652:7579210,7193429 -g1,5652:7895356,7193429 -g1,5652:8211502,7193429 -g1,5652:8527648,7193429 -g1,5652:8843794,7193429 -g1,5652:9159940,7193429 -g1,5652:11056814,7193429 -g1,5652:11372960,7193429 -g1,5652:11689106,7193429 -g1,5652:12005252,7193429 -g1,5652:12321398,7193429 -g1,5652:12637544,7193429 -g1,5652:12953690,7193429 -g1,5652:13269836,7193429 -g1,5652:13585982,7193429 -g1,5652:13902128,7193429 -g1,5652:14218274,7193429 -h1,5652:15482857,7193429:0,0,0 -k1,5652:32583029,7193429:17100172 -g1,5652:32583029,7193429 -) -(1,5652:6630773,7859607:25952256,404226,9436 -h1,5652:6630773,7859607:0,0,0 -g1,5652:7579210,7859607 -g1,5652:7895356,7859607 -g1,5652:9476085,7859607 -g1,5652:9792231,7859607 -g1,5652:10108377,7859607 -g1,5652:10740669,7859607 -g1,5652:12005252,7859607 -g1,5652:12321398,7859607 -g1,5652:12637544,7859607 -g1,5652:14218273,7859607 -g1,5652:14534419,7859607 -g1,5652:14850565,7859607 -g1,5652:15482857,7859607 -g1,5652:15799003,7859607 -h1,5652:17063586,7859607:0,0,0 -k1,5652:32583029,7859607:15519443 -g1,5652:32583029,7859607 -) -(1,5652:6630773,8525785:25952256,388497,82312 -h1,5652:6630773,8525785:0,0,0 -g1,5652:7579210,8525785 -g1,5652:7895356,8525785 -g1,5652:9159939,8525785 -g1,5652:12005250,8525785 -g1,5652:12321396,8525785 -g1,5652:12637542,8525785 -g1,5652:13902125,8525785 -g1,5652:15482854,8525785 -h1,5652:17063582,8525785:0,0,0 -k1,5652:32583029,8525785:15519447 -g1,5652:32583029,8525785 -) -(1,5652:6630773,9191963:25952256,404226,9436 -h1,5652:6630773,9191963:0,0,0 -g1,5652:7579210,9191963 -g1,5652:7895356,9191963 -g1,5652:10108376,9191963 -g1,5652:12005250,9191963 -g1,5652:12321396,9191963 -g1,5652:12637542,9191963 -g1,5652:14850562,9191963 -g1,5652:15482854,9191963 -h1,5652:17063582,9191963:0,0,0 -k1,5652:32583029,9191963:15519447 -g1,5652:32583029,9191963 -) -(1,5652:6630773,9858141:25952256,388497,9436 -h1,5652:6630773,9858141:0,0,0 -g1,5652:7579210,9858141 -g1,5652:7895356,9858141 -g1,5652:9476085,9858141 -g1,5652:9792231,9858141 -g1,5652:10108377,9858141 -g1,5652:12005251,9858141 -g1,5652:12321397,9858141 -g1,5652:12637543,9858141 -g1,5652:14218272,9858141 -g1,5652:14534418,9858141 -g1,5652:14850564,9858141 -g1,5652:15482856,9858141 -h1,5652:17063584,9858141:0,0,0 -k1,5652:32583029,9858141:15519445 -g1,5652:32583029,9858141 -) -(1,5652:6630773,10524319:25952256,404226,82312 -h1,5652:6630773,10524319:0,0,0 -g1,5652:7579210,10524319 -g1,5652:7895356,10524319 -g1,5652:9159939,10524319 -g1,5652:12005250,10524319 -g1,5652:12321396,10524319 -g1,5652:12637542,10524319 -g1,5652:13902125,10524319 -g1,5652:15482854,10524319 -h1,5652:17063582,10524319:0,0,0 -k1,5652:32583029,10524319:15519447 -g1,5652:32583029,10524319 -) -(1,5652:6630773,11190497:25952256,388497,9436 -h1,5652:6630773,11190497:0,0,0 -g1,5652:7579210,11190497 -g1,5652:7895356,11190497 -g1,5652:9476085,11190497 -g1,5652:9792231,11190497 -g1,5652:10108377,11190497 -g1,5652:12005251,11190497 -g1,5652:12321397,11190497 -g1,5652:12637543,11190497 -g1,5652:14218272,11190497 -g1,5652:14534418,11190497 -g1,5652:14850564,11190497 -h1,5652:17063584,11190497:0,0,0 -k1,5652:32583029,11190497:15519445 -g1,5652:32583029,11190497 -) -(1,5654:6630773,12512035:25952256,404226,107478 -(1,5653:6630773,12512035:0,0,0 -g1,5653:6630773,12512035 -g1,5653:6630773,12512035 -g1,5653:6303093,12512035 -(1,5653:6303093,12512035:0,0,0 -) -g1,5653:6630773,12512035 -) -k1,5654:6630773,12512035:0 -g1,5654:10740667,12512035 -h1,5654:12637541,12512035:0,0,0 -k1,5654:32583029,12512035:19945488 -g1,5654:32583029,12512035 -) -(1,5660:6630773,13243749:25952256,404226,101187 -(1,5656:6630773,13243749:0,0,0 -g1,5656:6630773,13243749 -g1,5656:6630773,13243749 -g1,5656:6303093,13243749 -(1,5656:6303093,13243749:0,0,0 -) -g1,5656:6630773,13243749 -) -g1,5660:7579210,13243749 -g1,5660:7895356,13243749 -g1,5660:8211502,13243749 -g1,5660:8527648,13243749 -g1,5660:8843794,13243749 -g1,5660:9159940,13243749 -g1,5660:11056814,13243749 -h1,5660:12321397,13243749:0,0,0 -k1,5660:32583029,13243749:20261632 -g1,5660:32583029,13243749 -) -(1,5660:6630773,13909927:25952256,404226,82312 -h1,5660:6630773,13909927:0,0,0 -g1,5660:7579210,13909927 -g1,5660:9159938,13909927 -g1,5660:9476084,13909927 -g1,5660:9792230,13909927 -g1,5660:10108376,13909927 -g1,5660:10424522,13909927 -g1,5660:11056814,13909927 -g1,5660:11372960,13909927 -g1,5660:11689106,13909927 -g1,5660:12005252,13909927 -h1,5660:12321398,13909927:0,0,0 -k1,5660:32583030,13909927:20261632 -g1,5660:32583030,13909927 -) -(1,5660:6630773,14576105:25952256,404226,82312 -h1,5660:6630773,14576105:0,0,0 -g1,5660:7579210,14576105 -g1,5660:9159938,14576105 -g1,5660:9476084,14576105 -g1,5660:9792230,14576105 -g1,5660:10108376,14576105 -g1,5660:11056813,14576105 -g1,5660:11372959,14576105 -h1,5660:12321396,14576105:0,0,0 -k1,5660:32583028,14576105:20261632 -g1,5660:32583028,14576105 -) -] -) -g1,5661:32583029,14658417 -g1,5661:6630773,14658417 -g1,5661:6630773,14658417 -g1,5661:32583029,14658417 -g1,5661:32583029,14658417 -) -h1,5661:6630773,14855025:0,0,0 -v1,5665:6630773,16745089:0,393216,0 -(1,5666:6630773,21744328:25952256,5392455,616038 -g1,5666:6630773,21744328 -(1,5666:6630773,21744328:25952256,5392455,616038 -(1,5666:6630773,22360366:25952256,6008493,0 -[1,5666:6630773,22360366:25952256,6008493,0 -(1,5666:6630773,22334152:25952256,5956065,0 -r1,5690:6656987,22334152:26214,5956065,0 -[1,5666:6656987,22334152:25899828,5956065,0 -(1,5666:6656987,21744328:25899828,4776417,0 -[1,5666:7246811,21744328:24720180,4776417,0 -(1,5666:7246811,18251893:24720180,1283982,196608 -(1,5665:7246811,18251893:0,1283982,196608 -r1,5690:9812056,18251893:2565245,1480590,196608 -k1,5665:7246811,18251893:-2565245 -) -(1,5665:7246811,18251893:2565245,1283982,196608 -) -k1,5665:9966901,18251893:154845 -k1,5665:12260186,18251893:154845 -k1,5665:13434116,18251893:154845 -k1,5665:16579369,18251893:154845 -k1,5665:17401370,18251893:154845 -(1,5665:17401370,18251893:0,452978,115847 -r1,5690:20925042,18251893:3523672,568825,115847 -k1,5665:17401370,18251893:-3523672 -) -(1,5665:17401370,18251893:3523672,452978,115847 -k1,5665:17401370,18251893:3277 -h1,5665:20921765,18251893:0,411205,112570 -) -k1,5665:21079888,18251893:154846 -k1,5665:22628684,18251893:154845 -k1,5665:25479025,18251893:154845 -(1,5665:25479025,18251893:0,452978,115847 -r1,5690:28650985,18251893:3171960,568825,115847 -k1,5665:25479025,18251893:-3171960 -) -(1,5665:25479025,18251893:3171960,452978,115847 -k1,5665:25479025,18251893:3277 -h1,5665:28647708,18251893:0,411205,112570 -) -k1,5665:28979500,18251893:154845 -k1,5665:30206514,18251893:154845 -k1,5665:30977397,18251893:154845 -k1,5666:31966991,18251893:0 -) -(1,5666:7246811,19093381:24720180,513147,134348 -k1,5665:9506055,19093381:196171 -k1,5665:11317033,19093381:196171 -k1,5665:13009391,19093381:196171 -k1,5665:14599513,19093381:196171 -k1,5665:15566387,19093381:196171 -k1,5665:17554968,19093381:196171 -k1,5665:20446635,19093381:196171 -k1,5665:21294234,19093381:196171 -k1,5665:23305097,19093381:196171 -k1,5665:24520353,19093381:196171 -k1,5665:27202305,19093381:196171 -k1,5665:28057768,19093381:196171 -k1,5665:31966991,19093381:0 -) -(1,5666:7246811,19934869:24720180,505283,134348 -k1,5665:9430268,19934869:172812 -k1,5665:10219117,19934869:172811 -k1,5665:11843551,19934869:172812 -k1,5665:14572921,19934869:172811 -k1,5665:16297626,19934869:172812 -k1,5665:18205830,19934869:172811 -(1,5665:18205830,19934869:0,452978,115847 -r1,5690:19970943,19934869:1765113,568825,115847 -k1,5665:18205830,19934869:-1765113 -) -(1,5665:18205830,19934869:1765113,452978,115847 -k1,5665:18205830,19934869:3277 -h1,5665:19967666,19934869:0,411205,112570 -) -k1,5665:20143755,19934869:172812 -k1,5665:21125936,19934869:172811 -k1,5665:21654608,19934869:172812 -(1,5665:21654608,19934869:0,452978,122846 -r1,5690:24123145,19934869:2468537,575824,122846 -k1,5665:21654608,19934869:-2468537 -) -(1,5665:21654608,19934869:2468537,452978,122846 -k1,5665:21654608,19934869:3277 -h1,5665:24119868,19934869:0,411205,112570 -) -k1,5665:24295956,19934869:172811 -k1,5665:26446645,19934869:172812 -k1,5665:28960402,19934869:172811 -k1,5665:30152299,19934869:172812 -k1,5665:31966991,19934869:0 -) -(1,5666:7246811,20776357:24720180,513147,126483 -k1,5665:8148619,20776357:234652 -(1,5665:8148619,20776357:0,414482,115847 -r1,5690:9562020,20776357:1413401,530329,115847 -k1,5665:8148619,20776357:-1413401 -) -(1,5665:8148619,20776357:1413401,414482,115847 -k1,5665:8148619,20776357:3277 -h1,5665:9558743,20776357:0,411205,112570 -) -k1,5665:9796672,20776357:234652 -k1,5665:12041969,20776357:234652 -k1,5665:12962783,20776357:234652 -(1,5665:12962783,20776357:0,414482,115847 -r1,5690:14376184,20776357:1413401,530329,115847 -k1,5665:12962783,20776357:-1413401 -) -(1,5665:12962783,20776357:1413401,414482,115847 -k1,5665:12962783,20776357:3277 -h1,5665:14372907,20776357:0,411205,112570 -) -k1,5665:14784506,20776357:234652 -k1,5665:16210603,20776357:234652 -(1,5665:16210603,20776357:0,414482,115847 -r1,5690:17975716,20776357:1765113,530329,115847 -k1,5665:16210603,20776357:-1765113 -) -(1,5665:16210603,20776357:1765113,414482,115847 -k1,5665:16210603,20776357:3277 -h1,5665:17972439,20776357:0,411205,112570 -) -k1,5665:18210368,20776357:234652 -k1,5665:19436580,20776357:234652 -k1,5665:23967772,20776357:234652 -k1,5665:27363225,20776357:234652 -k1,5665:28865343,20776357:234652 -(1,5665:28865343,20776357:0,452978,115847 -r1,5690:31333880,20776357:2468537,568825,115847 -k1,5665:28865343,20776357:-2468537 -) -(1,5665:28865343,20776357:2468537,452978,115847 -k1,5665:28865343,20776357:3277 -h1,5665:31330603,20776357:0,411205,112570 -) -k1,5665:31568532,20776357:234652 -k1,5665:31966991,20776357:0 -) -(1,5666:7246811,21617845:24720180,505283,126483 -g1,5665:8637485,21617845 -g1,5665:9408843,21617845 -g1,5665:13578243,21617845 -g1,5665:15475510,21617845 -(1,5665:15475510,21617845:0,452978,122846 -r1,5690:17944047,21617845:2468537,575824,122846 -k1,5665:15475510,21617845:-2468537 -) -(1,5665:15475510,21617845:2468537,452978,122846 -k1,5665:15475510,21617845:3277 -h1,5665:17940770,21617845:0,411205,112570 -) -g1,5665:18143276,21617845 -g1,5665:20353150,21617845 -g1,5665:21543939,21617845 -g1,5665:23256394,21617845 -g1,5665:24071661,21617845 -g1,5665:27547035,21617845 -k1,5666:31966991,21617845:475999 -g1,5666:31966991,21617845 -) -] -) -] -r1,5690:32583029,22334152:26214,5956065,0 -) -] -) -) -g1,5666:32583029,21744328 -) -h1,5666:6630773,22360366:0,0,0 -(1,5668:6630773,25167934:25952256,32768,229376 -(1,5668:6630773,25167934:0,32768,229376 -(1,5668:6630773,25167934:5505024,32768,229376 -r1,5690:12135797,25167934:5505024,262144,229376 -) -k1,5668:6630773,25167934:-5505024 -) -(1,5668:6630773,25167934:25952256,32768,0 -r1,5690:32583029,25167934:25952256,32768,0 -) -) -(1,5668:6630773,26772262:25952256,606339,161218 -(1,5668:6630773,26772262:2464678,582746,14155 -g1,5668:6630773,26772262 -g1,5668:9095451,26772262 -) -k1,5668:32583029,26772262:20411056 -g1,5668:32583029,26772262 -) -(1,5671:6630773,28006966:25952256,513147,134348 -k1,5670:7996282,28006966:168822 -k1,5670:10226837,28006966:168792 -k1,5670:12702525,28006966:168821 -k1,5670:15325670,28006966:168822 -(1,5670:15325670,28006966:0,452978,115847 -r1,5690:17442495,28006966:2116825,568825,115847 -k1,5670:15325670,28006966:-2116825 -) -(1,5670:15325670,28006966:2116825,452978,115847 -k1,5670:15325670,28006966:3277 -h1,5670:17439218,28006966:0,411205,112570 -) -k1,5670:17611317,28006966:168822 -k1,5670:18884421,28006966:168822 -k1,5670:19801009,28006966:168822 -k1,5670:21483057,28006966:168822 -k1,5670:22303307,28006966:168822 -k1,5670:23749426,28006966:168822 -k1,5670:26680590,28006966:168821 -k1,5670:28412446,28006966:168822 -k1,5670:29051161,28006966:168822 -k1,5670:29751480,28006966:168822 -k1,5670:30276162,28006966:168822 -k1,5670:32583029,28006966:0 -) -(1,5671:6630773,28848454:25952256,513147,134348 -k1,5670:9356594,28848454:271498 -k1,5670:10912597,28848454:271497 -k1,5670:12285100,28848454:271498 -k1,5670:17295505,28848454:271497 -k1,5670:20078998,28848454:271498 -k1,5670:21298146,28848454:271497 -k1,5670:24331987,28848454:271498 -k1,5670:26363126,28848454:271497 -k1,5670:27293916,28848454:271498 -k1,5670:29855241,28848454:271497 -k1,5670:31358816,28848454:271498 -k1,5671:32583029,28848454:0 -) -(1,5671:6630773,29689942:25952256,513147,134348 -k1,5670:8118299,29689942:220060 -h1,5670:9088887,29689942:0,0,0 -k1,5670:9308948,29689942:220061 -k1,5670:10338378,29689942:220060 -k1,5670:12056592,29689942:220061 -h1,5670:13251969,29689942:0,0,0 -k1,5670:13472029,29689942:220060 -k1,5670:14639741,29689942:220061 -k1,5670:15215661,29689942:220060 -k1,5670:16937806,29689942:220060 -k1,5670:21150320,29689942:220061 -k1,5670:22021808,29689942:220060 -k1,5670:24705367,29689942:220061 -k1,5670:27158239,29689942:220060 -k1,5670:28569745,29689942:220061 -k1,5670:31955194,29689942:220060 -k1,5670:32583029,29689942:0 -) -(1,5671:6630773,30531430:25952256,513147,126483 -k1,5670:8032134,30531430:198120 -k1,5670:10508941,30531430:198120 -k1,5670:11575413,30531430:198120 -k1,5670:13149135,30531430:198121 -k1,5670:14701229,30531430:198120 -k1,5670:16932276,30531430:198120 -k1,5670:21163482,30531430:198120 -k1,5670:22380687,30531430:198120 -k1,5670:23671292,30531430:198120 -k1,5670:24528705,30531430:198121 -k1,5670:25745910,30531430:198120 -k1,5670:27545730,30531430:198120 -k1,5670:30521266,30531430:198120 -k1,5671:32583029,30531430:0 -) -(1,5671:6630773,31372918:25952256,513147,134348 -k1,5670:9526590,31372918:176728 -k1,5670:12902787,31372918:176729 -k1,5670:14637306,31372918:176728 -k1,5670:15805595,31372918:176729 -k1,5670:17260930,31372918:176728 -k1,5670:20527682,31372918:176729 -k1,5670:21320448,31372918:176728 -k1,5670:22516262,31372918:176729 -k1,5670:24275029,31372918:176728 -k1,5670:24901335,31372918:176729 -k1,5670:27911840,31372918:176728 -k1,5670:30608429,31372918:176729 -k1,5670:32583029,31372918:0 -) -(1,5671:6630773,32214406:25952256,505283,134348 -k1,5670:7787534,32214406:203212 -k1,5670:9123208,32214406:203212 -k1,5670:10392690,32214406:203211 -k1,5670:13265183,32214406:203212 -k1,5670:14487480,32214406:203212 -k1,5670:16807505,32214406:203212 -k1,5670:19072479,32214406:203211 -k1,5670:20085061,32214406:203212 -k1,5670:21147450,32214406:203212 -k1,5670:23569711,32214406:203212 -k1,5670:26757432,32214406:203211 -k1,5670:27612072,32214406:203212 -k1,5670:30339731,32214406:203212 -k1,5670:32583029,32214406:0 -) -(1,5671:6630773,33055894:25952256,513147,134348 -k1,5670:8807709,33055894:202336 -k1,5670:11349007,33055894:202318 -k1,5670:12419676,33055894:202317 -k1,5670:15291275,33055894:202318 -k1,5670:16109630,33055894:202317 -k1,5670:18099115,33055894:202318 -k1,5670:19320517,33055894:202317 -k1,5670:20615320,33055894:202318 -k1,5670:21476929,33055894:202317 -k1,5670:22698332,33055894:202318 -k1,5670:25945452,33055894:202317 -k1,5670:26763808,33055894:202318 -k1,5670:29698977,33055894:202317 -k1,5670:31092740,33055894:202318 -k1,5671:32583029,33055894:0 -) -(1,5671:6630773,33897382:25952256,505283,134348 -g1,5670:8077152,33897382 -g1,5670:9670332,33897382 -g1,5670:12449713,33897382 -g1,5670:15477475,33897382 -g1,5670:16292742,33897382 -g1,5670:18909594,33897382 -h1,5670:19308053,33897382:0,0,0 -g1,5670:19507282,33897382 -g1,5670:22185083,33897382 -g1,5670:23193682,33897382 -g1,5670:24891064,33897382 -h1,5670:26086441,33897382:0,0,0 -k1,5671:32583029,33897382:6322918 -g1,5671:32583029,33897382 -) -(1,5673:6630773,34738870:25952256,513147,126483 -h1,5672:6630773,34738870:983040,0,0 -k1,5672:8256580,34738870:172874 -k1,5672:8960952,34738870:172875 -k1,5672:11763786,34738870:172874 -k1,5672:12588089,34738870:172875 -k1,5672:14198168,34738870:172874 -k1,5672:15543482,34738870:172875 -k1,5672:18557997,34738870:172874 -k1,5672:20335849,34738870:172875 -k1,5672:23221914,34738870:172874 -k1,5672:24962410,34738870:172875 -k1,5672:25491144,34738870:172874 -k1,5672:27053382,34738870:172875 -k1,5672:29309646,34738870:172874 -k1,5672:31896867,34738870:172875 -k1,5672:32583029,34738870:0 -) -(1,5673:6630773,35580358:25952256,513147,134348 -g1,5672:10232631,35580358 -g1,5672:11083288,35580358 -g1,5672:12301602,35580358 -(1,5672:12301602,35580358:0,414482,115847 -r1,5690:12659868,35580358:358266,530329,115847 -k1,5672:12301602,35580358:-358266 -) -(1,5672:12301602,35580358:358266,414482,115847 -k1,5672:12301602,35580358:3277 -h1,5672:12656591,35580358:0,411205,112570 -) -g1,5672:12859097,35580358 -g1,5672:14249771,35580358 -(1,5672:14249771,35580358:0,414482,115847 -r1,5690:14608037,35580358:358266,530329,115847 -k1,5672:14249771,35580358:-358266 -) -(1,5672:14249771,35580358:358266,414482,115847 -k1,5672:14249771,35580358:3277 -h1,5672:14604760,35580358:0,411205,112570 -) -g1,5672:14807266,35580358 -g1,5672:18617529,35580358 -g1,5672:19483914,35580358 -(1,5672:19483914,35580358:0,452978,115847 -r1,5690:21600739,35580358:2116825,568825,115847 -k1,5672:19483914,35580358:-2116825 -) -(1,5672:19483914,35580358:2116825,452978,115847 -k1,5672:19483914,35580358:3277 -h1,5672:21597462,35580358:0,411205,112570 -) -k1,5673:32583029,35580358:10808620 -g1,5673:32583029,35580358 -) -v1,5677:6630773,36770824:0,393216,0 -(1,5681:6630773,37085921:25952256,708313,196608 -g1,5681:6630773,37085921 -g1,5681:6630773,37085921 -g1,5681:6434165,37085921 -(1,5681:6434165,37085921:0,708313,196608 -r1,5690:32779637,37085921:26345472,904921,196608 -k1,5681:6434165,37085921:-26345472 -) -(1,5681:6434165,37085921:26345472,708313,196608 -[1,5681:6630773,37085921:25952256,511705,0 -(1,5679:6630773,36984734:25952256,410518,101187 -(1,5678:6630773,36984734:0,0,0 -g1,5678:6630773,36984734 -g1,5678:6630773,36984734 -g1,5678:6303093,36984734 -(1,5678:6303093,36984734:0,0,0 -) -g1,5678:6630773,36984734 -) -k1,5679:6630773,36984734:0 -g1,5679:8843794,36984734 -g1,5679:9476086,36984734 -g1,5679:13269835,36984734 -g1,5679:13902127,36984734 -g1,5679:14534419,36984734 -h1,5679:17695876,36984734:0,0,0 -k1,5679:32583029,36984734:14887153 -g1,5679:32583029,36984734 -) -] -) -g1,5681:32583029,37085921 -g1,5681:6630773,37085921 -g1,5681:6630773,37085921 -g1,5681:32583029,37085921 -g1,5681:32583029,37085921 -) -h1,5681:6630773,37282529:0,0,0 -] -(1,5690:32583029,45706769:0,0,0 -g1,5690:32583029,45706769 -) -) -] -(1,5690:6630773,47279633:25952256,0,0 -h1,5690:6630773,47279633:25952256,0,0 -) -] -(1,5690:4262630,4025873:0,0,0 -[1,5690:-473656,4025873:0,0,0 -(1,5690:-473656,-710413:0,0,0 -(1,5690:-473656,-710413:0,0,0 -g1,5690:-473656,-710413 -) -g1,5690:-473656,-710413 -) -] -) -] -!21936 -}103 -Input:793:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:794:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:795:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:796:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:797:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:798:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:799:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:800:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:801:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:802:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:803:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1013 -{104 -[1,5709:4262630,47279633:28320399,43253760,0 -(1,5709:4262630,4025873:0,0,0 -[1,5709:-473656,4025873:0,0,0 -(1,5709:-473656,-710413:0,0,0 -(1,5709:-473656,-644877:0,0,0 -k1,5709:-473656,-644877:-65536 -) -(1,5709:-473656,4736287:0,0,0 -k1,5709:-473656,4736287:5209943 -) -g1,5709:-473656,-710413 -) -] -) -[1,5709:6630773,47279633:25952256,43253760,0 -[1,5709:6630773,4812305:25952256,786432,0 -(1,5709:6630773,4812305:25952256,505283,134348 -(1,5709:6630773,4812305:25952256,505283,134348 -g1,5709:3078558,4812305 -[1,5709:3078558,4812305:0,0,0 -(1,5709:3078558,2439708:0,1703936,0 -k1,5709:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,5709:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,5709:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,5709:3078558,4812305:0,0,0 -(1,5709:3078558,2439708:0,1703936,0 -g1,5709:29030814,2439708 -g1,5709:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,5709:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,5709:37855564,2439708:1179648,16384,0 -) -) -k1,5709:3078556,2439708:-34777008 -) -] -[1,5709:3078558,4812305:0,0,0 -(1,5709:3078558,49800853:0,16384,2228224 -k1,5709:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,5709:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,5709:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,5709:3078558,4812305:0,0,0 -(1,5709:3078558,49800853:0,16384,2228224 -g1,5709:29030814,49800853 -g1,5709:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,5709:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,5709:37855564,49800853:1179648,16384,0 -) -) -k1,5709:3078556,49800853:-34777008 -) -] -g1,5709:6630773,4812305 -g1,5709:6630773,4812305 -g1,5709:9228620,4812305 -k1,5709:31786112,4812305:22557492 -) -) -] -[1,5709:6630773,45706769:25952256,40108032,0 -(1,5709:6630773,45706769:25952256,40108032,0 -(1,5709:6630773,45706769:0,0,0 -g1,5709:6630773,45706769 -) -[1,5709:6630773,45706769:25952256,40108032,0 -(1,5684:6630773,19612721:25952256,14013984,0 -k1,5684:12599879,19612721:5969106 -h1,5683:12599879,19612721:0,0,0 -(1,5683:12599879,19612721:14014044,14013984,0 -(1,5683:12599879,19612721:14014019,14014019,0 -(1,5683:12599879,19612721:14014019,14014019,0 -(1,5683:12599879,19612721:0,14014019,0 -(1,5683:12599879,19612721:0,18945146,0 -(1,5683:12599879,19612721:18945146,18945146,0 -) -k1,5683:12599879,19612721:-18945146 -) -) -g1,5683:26613898,19612721 -) -) -) -g1,5684:26613923,19612721 -k1,5684:32583029,19612721:5969106 -) -(1,5691:6630773,20454209:25952256,513147,126483 -h1,5690:6630773,20454209:983040,0,0 -k1,5690:8263415,20454209:179709 -k1,5690:8974621,20454209:179709 -k1,5690:10440146,20454209:179709 -k1,5690:13423485,20454209:179709 -k1,5690:14794639,20454209:179709 -k1,5690:17261555,20454209:179709 -k1,5690:19091460,20454209:179708 -k1,5690:22927423,20454209:179709 -k1,5690:23758560,20454209:179709 -k1,5690:25030754,20454209:179709 -k1,5690:25566323,20454209:179709 -k1,5690:28294072,20454209:179709 -k1,5690:29125209,20454209:179709 -k1,5690:31563944,20454209:179709 -k1,5690:32583029,20454209:0 -) -(1,5691:6630773,21295697:25952256,505283,138281 -k1,5690:9629831,21295697:157417 -k1,5690:10438677,21295697:157418 -k1,5690:11343860,21295697:157417 -k1,5690:13803557,21295697:157417 -k1,5690:14770344,21295697:157417 -k1,5690:15946847,21295697:157418 -$1,5690:15946847,21295697 -$1,5690:16449508,21295697 -k1,5690:16606925,21295697:157417 -k1,5690:17955787,21295697:157417 -$1,5690:17955787,21295697 -$1,5690:18507600,21295697 -k1,5690:18665017,21295697:157417 -k1,5690:20394644,21295697:157418 -k1,5690:22979515,21295697:157417 -k1,5690:26930156,21295697:157417 -k1,5690:27773735,21295697:157417 -k1,5690:28701856,21295697:157418 -k1,5690:31931601,21295697:157417 -k1,5690:32583029,21295697:0 -) -(1,5691:6630773,22137185:25952256,513147,134348 -k1,5690:10056739,22137185:145234 -(1,5690:10056739,22137185:0,452978,115847 -r1,5709:11470140,22137185:1413401,568825,115847 -k1,5690:10056739,22137185:-1413401 -) -(1,5690:10056739,22137185:1413401,452978,115847 -k1,5690:10056739,22137185:3277 -h1,5690:11466863,22137185:0,411205,112570 -) -k1,5690:11615375,22137185:145235 -k1,5690:12779694,22137185:145234 -k1,5690:14662944,22137185:145235 -k1,5690:15467470,22137185:145234 -k1,5690:16631789,22137185:145234 -k1,5690:18166387,22137185:145235 -k1,5690:20187917,22137185:145234 -k1,5690:23695149,22137185:145235 -k1,5690:25537110,22137185:145234 -k1,5690:28697656,22137185:145235 -k1,5690:30039577,22137185:145234 -k1,5691:32583029,22137185:0 -) -(1,5691:6630773,22978673:25952256,505283,138281 -(1,5690:6630773,22978673:0,452978,115847 -r1,5709:10857869,22978673:4227096,568825,115847 -k1,5690:6630773,22978673:-4227096 -) -(1,5690:6630773,22978673:4227096,452978,115847 -g1,5690:8392609,22978673 -g1,5690:9096033,22978673 -h1,5690:10854592,22978673:0,411205,112570 -) -k1,5690:11182335,22978673:150796 -k1,5690:11864628,22978673:150796 -k1,5690:13427725,22978673:150796 -k1,5690:14264684,22978673:150797 -(1,5690:14264684,22978673:0,452978,115847 -r1,5709:15678085,22978673:1413401,568825,115847 -k1,5690:14264684,22978673:-1413401 -) -(1,5690:14264684,22978673:1413401,452978,115847 -k1,5690:14264684,22978673:3277 -h1,5690:15674808,22978673:0,411205,112570 -) -k1,5690:15828881,22978673:150796 -k1,5690:19057903,22978673:150796 -k1,5690:19970227,22978673:150796 -(1,5690:19970227,22978673:0,452978,115847 -r1,5709:21735340,22978673:1765113,568825,115847 -k1,5690:19970227,22978673:-1765113 -) -(1,5690:19970227,22978673:1765113,452978,115847 -k1,5690:19970227,22978673:3277 -h1,5690:21732063,22978673:0,411205,112570 -) -k1,5690:23611044,22978673:150796 -(1,5690:23611044,22978673:0,452978,115847 -r1,5709:25024445,22978673:1413401,568825,115847 -k1,5690:23611044,22978673:-1413401 -) -(1,5690:23611044,22978673:1413401,452978,115847 -k1,5690:23611044,22978673:3277 -h1,5690:25021168,22978673:0,411205,112570 -) -k1,5690:25175241,22978673:150796 -k1,5690:25857535,22978673:150797 -k1,5690:28593726,22978673:150796 -k1,5690:29395950,22978673:150796 -k1,5690:30565831,22978673:150796 -$1,5690:30565831,22978673 -$1,5690:31117644,22978673 -k1,5690:32583029,22978673:0 -) -(1,5691:6630773,23820161:25952256,505283,126483 -g1,5690:7516164,23820161 -g1,5690:8734478,23820161 -g1,5690:12324540,23820161 -g1,5690:15035109,23820161 -g1,5690:16425783,23820161 -(1,5690:16425783,23820161:0,452978,115847 -r1,5709:18190896,23820161:1765113,568825,115847 -k1,5690:16425783,23820161:-1765113 -) -(1,5690:16425783,23820161:1765113,452978,115847 -k1,5690:16425783,23820161:3277 -h1,5690:18187619,23820161:0,411205,112570 -) -g1,5690:18390125,23820161 -g1,5690:19240782,23820161 -g1,5690:20459096,23820161 -$1,5690:20459096,23820161 -$1,5690:20961757,23820161 -g1,5690:22626371,23820161 -g1,5690:23511762,23820161 -g1,5690:24730076,23820161 -g1,5690:28936176,23820161 -k1,5691:32583029,23820161:961843 -g1,5691:32583029,23820161 -) -v1,5693:6630773,24858879:0,393216,0 -(1,5697:6630773,25167684:25952256,702021,196608 -g1,5697:6630773,25167684 -g1,5697:6630773,25167684 -g1,5697:6434165,25167684 -(1,5697:6434165,25167684:0,702021,196608 -r1,5709:32779637,25167684:26345472,898629,196608 -k1,5697:6434165,25167684:-26345472 -) -(1,5697:6434165,25167684:26345472,702021,196608 -[1,5697:6630773,25167684:25952256,505413,0 -(1,5695:6630773,25066497:25952256,404226,101187 -(1,5694:6630773,25066497:0,0,0 -g1,5694:6630773,25066497 -g1,5694:6630773,25066497 -g1,5694:6303093,25066497 -(1,5694:6303093,25066497:0,0,0 -) -g1,5694:6630773,25066497 -) -k1,5695:6630773,25066497:0 -g1,5695:9792230,25066497 -g1,5695:10424522,25066497 -g1,5695:12637542,25066497 -g1,5695:14218271,25066497 -g1,5695:14850563,25066497 -h1,5695:16431291,25066497:0,0,0 -k1,5695:32583029,25066497:16151738 -g1,5695:32583029,25066497 -) -] -) -g1,5697:32583029,25167684 -g1,5697:6630773,25167684 -g1,5697:6630773,25167684 -g1,5697:32583029,25167684 -g1,5697:32583029,25167684 -) -h1,5697:6630773,25364292:0,0,0 -(1,5700:6630773,39816353:25952256,14013984,0 -k1,5700:12599879,39816353:5969106 -h1,5699:12599879,39816353:0,0,0 -(1,5699:12599879,39816353:14014044,14013984,0 -(1,5699:12599879,39816353:14014019,14014019,0 -(1,5699:12599879,39816353:14014019,14014019,0 -(1,5699:12599879,39816353:0,14014019,0 -(1,5699:12599879,39816353:0,18945146,0 -(1,5699:12599879,39816353:18945146,18945146,0 -) -k1,5699:12599879,39816353:-18945146 -) -) -g1,5699:26613898,39816353 -) -) -) -g1,5700:26613923,39816353 -k1,5700:32583029,39816353:5969106 -) -(1,5707:6630773,40657841:25952256,513147,126483 -h1,5706:6630773,40657841:983040,0,0 -k1,5706:9987075,40657841:278076 -k1,5706:10679915,40657841:277997 -k1,5706:12612775,40657841:278076 -k1,5706:14391625,40657841:278076 -k1,5706:17432043,40657841:278075 -k1,5706:22622698,40657841:278076 -k1,5706:23583659,40657841:278076 -k1,5706:26796437,40657841:278076 -k1,5706:27733805,40657841:278076 -k1,5706:30466204,40657841:278076 -(1,5706:30466204,40657841:0,452978,115847 -r1,5709:32583029,40657841:2116825,568825,115847 -k1,5706:30466204,40657841:-2116825 -) -(1,5706:30466204,40657841:2116825,452978,115847 -k1,5706:30466204,40657841:3277 -h1,5706:32579752,40657841:0,411205,112570 -) -k1,5706:32583029,40657841:0 -) -(1,5707:6630773,41499329:25952256,513147,134348 -k1,5706:8135207,41499329:219928 -k1,5706:10798317,41499329:219928 -k1,5706:12870291,41499329:219927 -k1,5706:16452216,41499329:219928 -k1,5706:17481514,41499329:219928 -k1,5706:18720527,41499329:219928 -k1,5706:20495623,41499329:219927 -k1,5706:21374843,41499329:219928 -k1,5706:22613856,41499329:219928 -k1,5706:25675425,41499329:219928 -k1,5706:28100639,41499329:219927 -k1,5706:29006729,41499329:219928 -k1,5706:32583029,41499329:0 -) -(1,5707:6630773,42340817:25952256,505283,134348 -k1,5706:9335091,42340817:276864 -k1,5706:10784394,42340817:276864 -k1,5706:14242377,42340817:276865 -k1,5706:17360882,42340817:276864 -k1,5706:19810920,42340817:276864 -k1,5706:20703822,42340817:276864 -k1,5706:21336547,42340817:276865 -k1,5706:23782653,42340817:276864 -k1,5706:25336814,42340817:276864 -k1,5706:26299840,42340817:276864 -k1,5706:28016531,42340817:276865 -k1,5706:30322390,42340817:276864 -k1,5706:31227089,42340817:276864 -k1,5707:32583029,42340817:0 -) -(1,5707:6630773,43182305:25952256,513147,134348 -k1,5706:8335666,43182305:216570 -k1,5706:10979691,43182305:216571 -k1,5706:12352971,43182305:216570 -k1,5706:14463531,43182305:216570 -k1,5706:15871547,43182305:216571 -k1,5706:17244827,43182305:216570 -k1,5706:20081526,43182305:216570 -k1,5706:22809436,43182305:216570 -k1,5706:23677435,43182305:216571 -(1,5706:23677435,43182305:0,452978,115847 -r1,5709:25794260,43182305:2116825,568825,115847 -k1,5706:23677435,43182305:-2116825 -) -(1,5706:23677435,43182305:2116825,452978,115847 -k1,5706:23677435,43182305:3277 -h1,5706:25790983,43182305:0,411205,112570 -) -k1,5706:26010830,43182305:216570 -k1,5706:28400574,43182305:216570 -k1,5706:29233183,43182305:216571 -k1,5706:29805613,43182305:216570 -k1,5707:32583029,43182305:0 -) -(1,5707:6630773,44023793:25952256,513147,134348 -k1,5706:9693724,44023793:237039 -k1,5706:11208059,44023793:237038 -k1,5706:13183113,44023793:237039 -k1,5706:16634692,44023793:237038 -k1,5706:17700761,44023793:237039 -k1,5706:21070421,44023793:237039 -k1,5706:22510700,44023793:237038 -k1,5706:23616091,44023793:237039 -k1,5706:25383396,44023793:237039 -k1,5706:26271862,44023793:237038 -k1,5706:27601386,44023793:237039 -k1,5706:28194284,44023793:237038 -k1,5706:31193666,44023793:237039 -k1,5706:32583029,44023793:0 -) -(1,5707:6630773,44865281:25952256,513147,126483 -k1,5706:7958273,44865281:219286 -k1,5706:9575442,44865281:219286 -(1,5706:9575442,44865281:0,452978,115847 -r1,5709:12395691,44865281:2820249,568825,115847 -k1,5706:9575442,44865281:-2820249 -) -(1,5706:9575442,44865281:2820249,452978,115847 -k1,5706:9575442,44865281:3277 -h1,5706:12392414,44865281:0,411205,112570 -) -k1,5706:12614977,44865281:219286 -k1,5706:13520425,44865281:219286 -(1,5706:13520425,44865281:0,414482,115847 -r1,5709:14933826,44865281:1413401,530329,115847 -k1,5706:13520425,44865281:-1413401 -) -(1,5706:13520425,44865281:1413401,414482,115847 -k1,5706:13520425,44865281:3277 -h1,5706:14930549,44865281:0,411205,112570 -) -k1,5706:15153112,44865281:219286 -k1,5706:16865308,44865281:219286 -k1,5706:18150865,44865281:219286 -k1,5706:20741899,44865281:219286 -k1,5706:22092992,44865281:219286 -k1,5706:24710240,44865281:219286 -k1,5706:26078372,44865281:219286 -(1,5706:26078372,44865281:0,452978,115847 -r1,5709:31712315,44865281:5633943,568825,115847 -k1,5706:26078372,44865281:-5633943 -) -(1,5706:26078372,44865281:5633943,452978,115847 -k1,5706:26078372,44865281:3277 -h1,5706:31709038,44865281:0,411205,112570 -) -k1,5706:31931601,44865281:219286 -k1,5706:32583029,44865281:0 -) -(1,5707:6630773,45706769:25952256,505283,102891 -g1,5706:8441532,45706769 -g1,5706:10290958,45706769 -g1,5706:12312743,45706769 -g1,5706:13715213,45706769 -g1,5706:15303805,45706769 -g1,5706:16611248,45706769 -g1,5706:18096293,45706769 -g1,5706:21053932,45706769 -g1,5706:21869199,45706769 -k1,5707:32583029,45706769:10125317 -g1,5707:32583029,45706769 -) -] -(1,5709:32583029,45706769:0,0,0 -g1,5709:32583029,45706769 -) -) -] -(1,5709:6630773,47279633:25952256,0,0 -h1,5709:6630773,47279633:25952256,0,0 -) -] -(1,5709:4262630,4025873:0,0,0 -[1,5709:-473656,4025873:0,0,0 -(1,5709:-473656,-710413:0,0,0 -(1,5709:-473656,-710413:0,0,0 -g1,5709:-473656,-710413 -) -g1,5709:-473656,-710413 -) -] -) -] -!14160 -}104 -Input:804:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:805:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:806:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:807:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:808:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!467 -{105 -[1,5760:4262630,47279633:28320399,43253760,0 -(1,5760:4262630,4025873:0,0,0 -[1,5760:-473656,4025873:0,0,0 -(1,5760:-473656,-710413:0,0,0 -(1,5760:-473656,-644877:0,0,0 -k1,5760:-473656,-644877:-65536 -) -(1,5760:-473656,4736287:0,0,0 -k1,5760:-473656,4736287:5209943 -) -g1,5760:-473656,-710413 -) -] -) -[1,5760:6630773,47279633:25952256,43253760,0 -[1,5760:6630773,4812305:25952256,786432,0 -(1,5760:6630773,4812305:25952256,505283,134348 -(1,5760:6630773,4812305:25952256,505283,134348 -g1,5760:3078558,4812305 -[1,5760:3078558,4812305:0,0,0 -(1,5760:3078558,2439708:0,1703936,0 -k1,5760:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,5760:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,5760:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,5760:3078558,4812305:0,0,0 -(1,5760:3078558,2439708:0,1703936,0 -g1,5760:29030814,2439708 -g1,5760:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,5760:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,5760:37855564,2439708:1179648,16384,0 -) -) -k1,5760:3078556,2439708:-34777008 -) -] -[1,5760:3078558,4812305:0,0,0 -(1,5760:3078558,49800853:0,16384,2228224 -k1,5760:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,5760:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,5760:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,5760:3078558,4812305:0,0,0 -(1,5760:3078558,49800853:0,16384,2228224 -g1,5760:29030814,49800853 -g1,5760:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,5760:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,5760:37855564,49800853:1179648,16384,0 -) -) -k1,5760:3078556,49800853:-34777008 -) -] -g1,5760:6630773,4812305 -k1,5760:19515153,4812305:12087462 -g1,5760:20901894,4812305 -g1,5760:21550700,4812305 -g1,5760:24864855,4812305 -g1,5760:27600327,4812305 -g1,5760:29010006,4812305 -) -) -] -[1,5760:6630773,45706769:25952256,40108032,0 -(1,5760:6630773,45706769:25952256,40108032,0 -(1,5760:6630773,45706769:0,0,0 -g1,5760:6630773,45706769 -) -[1,5760:6630773,45706769:25952256,40108032,0 -v1,5709:6630773,6254097:0,393216,0 -(1,5713:6630773,6575485:25952256,714604,196608 -g1,5713:6630773,6575485 -g1,5713:6630773,6575485 -g1,5713:6434165,6575485 -(1,5713:6434165,6575485:0,714604,196608 -r1,5760:32779637,6575485:26345472,911212,196608 -k1,5713:6434165,6575485:-26345472 -) -(1,5713:6434165,6575485:26345472,714604,196608 -[1,5713:6630773,6575485:25952256,517996,0 -(1,5711:6630773,6468007:25952256,410518,107478 -(1,5710:6630773,6468007:0,0,0 -g1,5710:6630773,6468007 -g1,5710:6630773,6468007 -g1,5710:6303093,6468007 -(1,5710:6303093,6468007:0,0,0 -) -g1,5710:6630773,6468007 -) -k1,5711:6630773,6468007:0 -g1,5711:10424522,6468007 -g1,5711:11056814,6468007 -g1,5711:12953689,6468007 -g1,5711:14534418,6468007 -g1,5711:15166710,6468007 -h1,5711:18012021,6468007:0,0,0 -k1,5711:32583029,6468007:14571008 -g1,5711:32583029,6468007 -) -] -) -g1,5713:32583029,6575485 -g1,5713:6630773,6575485 -g1,5713:6630773,6575485 -g1,5713:32583029,6575485 -g1,5713:32583029,6575485 -) -h1,5713:6630773,6772093:0,0,0 -(1,5716:6630773,21375901:25952256,14013984,0 -k1,5716:12599879,21375901:5969106 -h1,5715:12599879,21375901:0,0,0 -(1,5715:12599879,21375901:14014044,14013984,0 -(1,5715:12599879,21375901:14014019,14014019,0 -(1,5715:12599879,21375901:14014019,14014019,0 -(1,5715:12599879,21375901:0,14014019,0 -(1,5715:12599879,21375901:0,18945146,0 -(1,5715:12599879,21375901:18945146,18945146,0 -) -k1,5715:12599879,21375901:-18945146 -) -) -g1,5715:26613898,21375901 -) -) -) -g1,5716:26613923,21375901 -k1,5716:32583029,21375901:5969106 -) -(1,5723:6630773,22217389:25952256,513147,134348 -h1,5722:6630773,22217389:983040,0,0 -k1,5722:10254585,22217389:242810 -(1,5722:10254585,22217389:0,452978,115847 -r1,5760:12371410,22217389:2116825,568825,115847 -k1,5722:10254585,22217389:-2116825 -) -(1,5722:10254585,22217389:2116825,452978,115847 -k1,5722:10254585,22217389:3277 -h1,5722:12368133,22217389:0,411205,112570 -) -k1,5722:12614220,22217389:242810 -k1,5722:14048474,22217389:242809 -k1,5722:16851776,22217389:242810 -k1,5722:19476164,22217389:242810 -k1,5722:20335012,22217389:242810 -k1,5722:21166334,22217389:242809 -k1,5722:23107182,22217389:242810 -k1,5722:24863218,22217389:242810 -k1,5722:26053679,22217389:242810 -k1,5722:28820935,22217389:242809 -k1,5722:31074390,22217389:242810 -k1,5722:32583029,22217389:0 -) -(1,5723:6630773,23058877:25952256,513147,134348 -k1,5722:9786886,23058877:206338 -k1,5722:12151979,23058877:206337 -k1,5722:13009745,23058877:206338 -k1,5722:13571942,23058877:206337 -k1,5722:16787693,23058877:206338 -k1,5722:19050551,23058877:206338 -k1,5722:21382220,23058877:206337 -k1,5722:22216393,23058877:206338 -k1,5722:23011244,23058877:206338 -k1,5722:26167356,23058877:206337 -k1,5722:28711363,23058877:206338 -k1,5722:29909260,23058877:206337 -k1,5722:31469572,23058877:206338 -k1,5723:32583029,23058877:0 -) -(1,5723:6630773,23900365:25952256,505283,126483 -k1,5722:9284385,23900365:249096 -k1,5722:10599753,23900365:249097 -k1,5722:12045536,23900365:249096 -k1,5722:14917383,23900365:249096 -k1,5722:17504149,23900365:249097 -k1,5722:18899470,23900365:249096 -k1,5722:19504427,23900365:249097 -k1,5722:22144932,23900365:249096 -k1,5722:23466197,23900365:249096 -k1,5722:25794751,23900365:249097 -k1,5722:28381516,23900365:249096 -k1,5722:32583029,23900365:0 -) -(1,5723:6630773,24741853:25952256,513147,134348 -k1,5722:8252024,24741853:170284 -k1,5722:9038347,24741853:170285 -k1,5722:11967697,24741853:170284 -k1,5722:13422487,24741853:170284 -k1,5722:16404267,24741853:170285 -k1,5722:17593636,24741853:170284 -k1,5722:20288367,24741853:170284 -k1,5722:23948444,24741853:170285 -k1,5722:25386194,24741853:170284 -k1,5722:25912338,24741853:170284 -k1,5722:28479930,24741853:170285 -k1,5722:31599989,24741853:170284 -k1,5722:32583029,24741853:0 -) -(1,5723:6630773,25583341:25952256,513147,134348 -k1,5722:9179871,25583341:195045 -k1,5722:11631322,25583341:195046 -k1,5722:14588710,25583341:195045 -k1,5722:17733531,25583341:195046 -k1,5722:20266245,25583341:195045 -k1,5722:21452851,25583341:195046 -k1,5722:24431865,25583341:195045 -k1,5722:25242949,25583341:195046 -k1,5722:25852833,25583341:195041 -k1,5722:27239324,25583341:195046 -k1,5722:28814557,25583341:195045 -k1,5722:30752861,25583341:195046 -k1,5722:31563944,25583341:195045 -k1,5722:32583029,25583341:0 -) -(1,5723:6630773,26424829:25952256,513147,134348 -k1,5722:8248606,26424829:188493 -k1,5722:9096391,26424829:188493 -k1,5722:11443640,26424829:188493 -k1,5722:13012321,26424829:188493 -k1,5722:15994615,26424829:188494 -k1,5722:18050229,26424829:188493 -k1,5722:19552064,26424829:188493 -k1,5722:21190213,26424829:188493 -k1,5722:22918147,26424829:188493 -k1,5722:24454049,26424829:188482 -k1,5722:25833987,26424829:188493 -k1,5722:27525211,26424829:188483 -k1,5722:30605152,26424829:188493 -k1,5722:32583029,26424829:0 -) -(1,5723:6630773,27266317:25952256,513147,134348 -k1,5722:9537253,27266317:187391 -k1,5722:11037985,27266317:187390 -k1,5722:12675032,27266317:187391 -k1,5722:14329119,27266317:187391 -k1,5722:15618158,27266317:187379 -k1,5722:16996993,27266317:187390 -k1,5722:18629441,27266317:187379 -k1,5722:19499717,27266317:187391 -k1,5722:21845864,27266317:187391 -k1,5722:22684682,27266317:187390 -k1,5722:23227933,27266317:187391 -k1,5722:26038075,27266317:187391 -k1,5722:28232834,27266317:187391 -k1,5722:29566449,27266317:187390 -k1,5722:30109700,27266317:187391 -k1,5722:32583029,27266317:0 -) -(1,5723:6630773,28107805:25952256,513147,134348 -k1,5722:7449556,28107805:202745 -k1,5722:8671385,28107805:202744 -k1,5722:10935893,28107805:202745 -k1,5722:11797929,28107805:202744 -k1,5722:12356534,28107805:202745 -k1,5722:15809208,28107805:202744 -k1,5722:19370673,28107805:202745 -k1,5722:21911086,28107805:202744 -k1,5722:23105391,28107805:202745 -k1,5722:26092104,28107805:202744 -k1,5722:28853375,28107805:202745 -k1,5723:32583029,28107805:0 -) -(1,5723:6630773,28949293:25952256,505283,134348 -g1,5722:7244845,28949293 -k1,5723:32583029,28949293:22254060 -g1,5723:32583029,28949293 -) -(1,5725:6630773,29790781:25952256,513147,134348 -h1,5724:6630773,29790781:983040,0,0 -k1,5724:10234181,29790781:200123 -k1,5724:12419390,29790781:200123 -k1,5724:13638598,29790781:200123 -k1,5724:16875660,29790781:200124 -k1,5724:17735075,29790781:200123 -k1,5724:18936587,29790781:200122 -k1,5724:20328155,29790781:200123 -k1,5724:21755767,29790781:200123 -k1,5724:24865033,29790781:200123 -k1,5724:26782199,29790781:200123 -k1,5724:29319991,29790781:200123 -k1,5724:32583029,29790781:0 -) -(1,5725:6630773,30632269:25952256,513147,134348 -k1,5724:7206528,30632269:219895 -k1,5724:8409463,30632269:219895 -k1,5724:9315520,30632269:219895 -k1,5724:11867841,30632269:219895 -k1,5724:13478410,30632269:219895 -k1,5724:14901546,30632269:219895 -k1,5724:17280197,30632269:219895 -k1,5724:18875693,30632269:219895 -k1,5724:20793626,30632269:219895 -k1,5724:22032606,30632269:219895 -k1,5724:24259869,30632269:219895 -k1,5724:25011261,30632269:219895 -k1,5724:27436443,30632269:219895 -k1,5724:29439573,30632269:219895 -k1,5724:32227169,30632269:219895 -k1,5724:32583029,30632269:0 -) -(1,5725:6630773,31473757:25952256,513147,126483 -k1,5724:8831353,31473757:193212 -k1,5724:10043651,31473757:193213 -k1,5724:11617707,31473757:193212 -k1,5724:14481511,31473757:193212 -k1,5724:17901717,31473757:193213 -k1,5724:22075586,31473757:193212 -k1,5724:23310821,31473757:193213 -k1,5724:24523118,31473757:193212 -k1,5724:25954299,31473757:193206 -k1,5724:28154880,31473757:193213 -k1,5724:29632598,31473757:193212 -k1,5724:32583029,31473757:0 -) -(1,5725:6630773,32315245:25952256,513147,134348 -k1,5724:8963804,32315245:174275 -k1,5724:9754118,32315245:174276 -k1,5724:10284253,32315245:174275 -k1,5724:15368485,32315245:174275 -k1,5724:17896814,32315245:174276 -k1,5724:19885781,32315245:174275 -k1,5724:21251501,32315245:174275 -k1,5724:23435110,32315245:174275 -k1,5724:24268678,32315245:174276 -k1,5724:25462038,32315245:174275 -k1,5724:27795069,32315245:174275 -k1,5724:28960905,32315245:174276 -k1,5724:31966991,32315245:174275 -k1,5724:32583029,32315245:0 -) -(1,5725:6630773,33156733:25952256,513147,134348 -k1,5724:8902909,33156733:135007 -k1,5724:9525441,33156733:134944 -k1,5724:11926028,33156733:135007 -k1,5724:13044075,33156733:135007 -k1,5724:14917097,33156733:135007 -k1,5724:15583601,33156733:135007 -k1,5724:17231834,33156733:135007 -k1,5724:19409599,33156733:135008 -k1,5724:20412958,33156733:135007 -k1,5724:21985170,33156733:135007 -k1,5724:22476037,33156733:135007 -(1,5724:22476037,33156733:0,452978,115847 -r1,5760:25647997,33156733:3171960,568825,115847 -k1,5724:22476037,33156733:-3171960 -) -(1,5724:22476037,33156733:3171960,452978,115847 -k1,5724:22476037,33156733:3277 -h1,5724:25644720,33156733:0,411205,112570 -) -k1,5724:25783004,33156733:135007 -k1,5724:27783822,33156733:135008 -k1,5724:28604991,33156733:135007 -k1,5724:29510701,33156733:135007 -k1,5724:32583029,33156733:0 -) -(1,5725:6630773,33998221:25952256,459977,126483 -g1,5724:7481430,33998221 -g1,5724:10961391,33998221 -(1,5724:10961391,33998221:0,459977,115847 -r1,5760:12374792,33998221:1413401,575824,115847 -k1,5724:10961391,33998221:-1413401 -) -(1,5724:10961391,33998221:1413401,459977,115847 -k1,5724:10961391,33998221:3277 -h1,5724:12371515,33998221:0,411205,112570 -) -k1,5725:32583030,33998221:20034568 -g1,5725:32583030,33998221 -) -v1,5727:6630773,35188687:0,393216,0 -(1,5738:6630773,38799023:25952256,4003552,196608 -g1,5738:6630773,38799023 -g1,5738:6630773,38799023 -g1,5738:6434165,38799023 -(1,5738:6434165,38799023:0,4003552,196608 -r1,5760:32779637,38799023:26345472,4200160,196608 -k1,5738:6434165,38799023:-26345472 -) -(1,5738:6434165,38799023:26345472,4003552,196608 -[1,5738:6630773,38799023:25952256,3806944,0 -(1,5729:6630773,35402597:25952256,410518,107478 -(1,5728:6630773,35402597:0,0,0 -g1,5728:6630773,35402597 -g1,5728:6630773,35402597 -g1,5728:6303093,35402597 -(1,5728:6303093,35402597:0,0,0 -) -g1,5728:6630773,35402597 -) -k1,5729:6630773,35402597:0 -g1,5729:9476085,35402597 -g1,5729:10108377,35402597 -g1,5729:17063583,35402597 -g1,5729:18960457,35402597 -g1,5729:19592749,35402597 -g1,5729:20541187,35402597 -g1,5729:22754207,35402597 -g1,5729:23386499,35402597 -g1,5729:24334937,35402597 -g1,5729:26864103,35402597 -g1,5729:27496395,35402597 -h1,5729:29077124,35402597:0,0,0 -k1,5729:32583029,35402597:3505905 -g1,5729:32583029,35402597 -) -(1,5730:6630773,36068775:25952256,404226,101187 -h1,5730:6630773,36068775:0,0,0 -g1,5730:9792230,36068775 -g1,5730:10424522,36068775 -g1,5730:12637542,36068775 -g1,5730:14218271,36068775 -g1,5730:14850563,36068775 -h1,5730:16431291,36068775:0,0,0 -k1,5730:32583029,36068775:16151738 -g1,5730:32583029,36068775 -) -(1,5731:6630773,36734953:25952256,410518,107478 -h1,5731:6630773,36734953:0,0,0 -g1,5731:10424522,36734953 -g1,5731:11056814,36734953 -g1,5731:12953689,36734953 -g1,5731:14534418,36734953 -g1,5731:15166710,36734953 -h1,5731:18012021,36734953:0,0,0 -k1,5731:32583029,36734953:14571008 -g1,5731:32583029,36734953 -) -(1,5732:6630773,37401131:25952256,410518,76021 -h1,5732:6630773,37401131:0,0,0 -k1,5732:6630773,37401131:0 -h1,5732:9476084,37401131:0,0,0 -k1,5732:32583028,37401131:23106944 -g1,5732:32583028,37401131 -) -(1,5737:6630773,38132845:25952256,410518,101187 -(1,5734:6630773,38132845:0,0,0 -g1,5734:6630773,38132845 -g1,5734:6630773,38132845 -g1,5734:6303093,38132845 -(1,5734:6303093,38132845:0,0,0 -) -g1,5734:6630773,38132845 -) -g1,5737:7579210,38132845 -h1,5737:10424521,38132845:0,0,0 -k1,5737:32583029,38132845:22158508 -g1,5737:32583029,38132845 -) -(1,5737:6630773,38799023:25952256,388497,0 -h1,5737:6630773,38799023:0,0,0 -g1,5737:7579210,38799023 -g1,5737:7895356,38799023 -g1,5737:8211502,38799023 -g1,5737:8527648,38799023 -g1,5737:8843794,38799023 -g1,5737:9159940,38799023 -g1,5737:9476086,38799023 -g1,5737:9792232,38799023 -g1,5737:10108378,38799023 -h1,5737:10424524,38799023:0,0,0 -k1,5737:32583028,38799023:22158504 -g1,5737:32583028,38799023 -) -] -) -g1,5738:32583029,38799023 -g1,5738:6630773,38799023 -g1,5738:6630773,38799023 -g1,5738:32583029,38799023 -g1,5738:32583029,38799023 -) -h1,5738:6630773,38995631:0,0,0 -(1,5742:6630773,40361407:25952256,513147,126483 -h1,5741:6630773,40361407:983040,0,0 -g1,5741:9836794,40361407 -g1,5741:12373692,40361407 -g1,5741:14583566,40361407 -g1,5741:17368190,40361407 -g1,5741:18758864,40361407 -(1,5741:18758864,40361407:0,452978,115847 -r1,5760:20523977,40361407:1765113,568825,115847 -k1,5741:18758864,40361407:-1765113 -) -(1,5741:18758864,40361407:1765113,452978,115847 -k1,5741:18758864,40361407:3277 -h1,5741:20520700,40361407:0,411205,112570 -) -g1,5741:20723206,40361407 -g1,5741:22113880,40361407 -(1,5741:22113880,40361407:0,452978,122846 -r1,5760:24230705,40361407:2116825,575824,122846 -k1,5741:22113880,40361407:-2116825 -) -(1,5741:22113880,40361407:2116825,452978,122846 -k1,5741:22113880,40361407:3277 -h1,5741:24227428,40361407:0,411205,112570 -) -g1,5741:24429934,40361407 -g1,5741:25620723,40361407 -g1,5741:28651763,40361407 -g1,5741:29467030,40361407 -k1,5742:32583029,40361407:1203003 -g1,5742:32583029,40361407 -) -v1,5744:6630773,41551873:0,393216,0 -(1,5754:6630773,44496031:25952256,3337374,196608 -g1,5754:6630773,44496031 -g1,5754:6630773,44496031 -g1,5754:6434165,44496031 -(1,5754:6434165,44496031:0,3337374,196608 -r1,5760:32779637,44496031:26345472,3533982,196608 -k1,5754:6434165,44496031:-26345472 -) -(1,5754:6434165,44496031:26345472,3337374,196608 -[1,5754:6630773,44496031:25952256,3140766,0 -(1,5746:6630773,41765783:25952256,410518,107478 -(1,5745:6630773,41765783:0,0,0 -g1,5745:6630773,41765783 -g1,5745:6630773,41765783 -g1,5745:6303093,41765783 -(1,5745:6303093,41765783:0,0,0 -) -g1,5745:6630773,41765783 -) -k1,5746:6630773,41765783:0 -g1,5746:9476085,41765783 -g1,5746:10108377,41765783 -g1,5746:17063583,41765783 -g1,5746:18960457,41765783 -g1,5746:19592749,41765783 -g1,5746:21173478,41765783 -g1,5746:23386498,41765783 -g1,5746:24018790,41765783 -h1,5746:25283373,41765783:0,0,0 -k1,5746:32583029,41765783:7299656 -g1,5746:32583029,41765783 -) -(1,5747:6630773,42431961:25952256,410518,107478 -h1,5747:6630773,42431961:0,0,0 -g1,5747:10424522,42431961 -g1,5747:11056814,42431961 -g1,5747:12953689,42431961 -g1,5747:14534418,42431961 -g1,5747:15166710,42431961 -h1,5747:18012021,42431961:0,0,0 -k1,5747:32583029,42431961:14571008 -g1,5747:32583029,42431961 -) -(1,5748:6630773,43098139:25952256,410518,76021 -h1,5748:6630773,43098139:0,0,0 -k1,5748:6630773,43098139:0 -h1,5748:9476084,43098139:0,0,0 -k1,5748:32583028,43098139:23106944 -g1,5748:32583028,43098139 -) -(1,5753:6630773,43829853:25952256,410518,101187 -(1,5750:6630773,43829853:0,0,0 -g1,5750:6630773,43829853 -g1,5750:6630773,43829853 -g1,5750:6303093,43829853 -(1,5750:6303093,43829853:0,0,0 -) -g1,5750:6630773,43829853 -) -g1,5753:7579210,43829853 -h1,5753:10424521,43829853:0,0,0 -k1,5753:32583029,43829853:22158508 -g1,5753:32583029,43829853 -) -(1,5753:6630773,44496031:25952256,388497,0 -h1,5753:6630773,44496031:0,0,0 -g1,5753:7579210,44496031 -g1,5753:7895356,44496031 -g1,5753:8211502,44496031 -g1,5753:8527648,44496031 -g1,5753:8843794,44496031 -g1,5753:9159940,44496031 -g1,5753:9476086,44496031 -g1,5753:9792232,44496031 -g1,5753:10108378,44496031 -h1,5753:10424524,44496031:0,0,0 -k1,5753:32583028,44496031:22158504 -g1,5753:32583028,44496031 -) -] -) -g1,5754:32583029,44496031 -g1,5754:6630773,44496031 -g1,5754:6630773,44496031 -g1,5754:32583029,44496031 -g1,5754:32583029,44496031 -) -h1,5754:6630773,44692639:0,0,0 -] -(1,5760:32583029,45706769:0,0,0 -g1,5760:32583029,45706769 -) -) -] -(1,5760:6630773,47279633:25952256,0,0 -h1,5760:6630773,47279633:25952256,0,0 -) -] -(1,5760:4262630,4025873:0,0,0 -[1,5760:-473656,4025873:0,0,0 -(1,5760:-473656,-710413:0,0,0 -(1,5760:-473656,-710413:0,0,0 -g1,5760:-473656,-710413 -) -g1,5760:-473656,-710413 -) -] -) -] -!18445 -}105 -Input:809:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!103 -{106 -[1,5794:4262630,47279633:28320399,43253760,0 -(1,5794:4262630,4025873:0,0,0 -[1,5794:-473656,4025873:0,0,0 -(1,5794:-473656,-710413:0,0,0 -(1,5794:-473656,-644877:0,0,0 -k1,5794:-473656,-644877:-65536 -) -(1,5794:-473656,4736287:0,0,0 -k1,5794:-473656,4736287:5209943 -) -g1,5794:-473656,-710413 -) -] -) -[1,5794:6630773,47279633:25952256,43253760,0 -[1,5794:6630773,4812305:25952256,786432,0 -(1,5794:6630773,4812305:25952256,505283,134348 -(1,5794:6630773,4812305:25952256,505283,134348 -g1,5794:3078558,4812305 -[1,5794:3078558,4812305:0,0,0 -(1,5794:3078558,2439708:0,1703936,0 -k1,5794:1358238,2439708:-1720320 -(1,416:1358238,2439708:1720320,1703936,0 -(1,416:1358238,2439708:1179648,16384,0 -r1,5794:2537886,2439708:1179648,16384,0 -) -g1,416:3062174,2439708 -(1,416:3062174,2439708:16384,1703936,0 -[1,416:3062174,2439708:25952256,1703936,0 -(1,416:3062174,1915420:25952256,1179648,0 -(1,416:3062174,1915420:16384,1179648,0 -r1,5794:3078558,1915420:16384,1179648,0 -) -k1,416:29014430,1915420:25935872 -g1,416:29014430,1915420 -) -] -) -) -) -] -[1,5794:3078558,4812305:0,0,0 -(1,5794:3078558,2439708:0,1703936,0 -g1,5794:29030814,2439708 -g1,5794:36135244,2439708 -(1,416:36135244,2439708:1720320,1703936,0 -(1,416:36135244,2439708:16384,1703936,0 -[1,416:36135244,2439708:25952256,1703936,0 -(1,416:36135244,1915420:25952256,1179648,0 -(1,416:36135244,1915420:16384,1179648,0 -r1,5794:36151628,1915420:16384,1179648,0 -) -k1,416:62087500,1915420:25935872 -g1,416:62087500,1915420 -) -] -) -g1,416:36675916,2439708 -(1,416:36675916,2439708:1179648,16384,0 -r1,5794:37855564,2439708:1179648,16384,0 -) -) -k1,5794:3078556,2439708:-34777008 -) -] -[1,5794:3078558,4812305:0,0,0 -(1,5794:3078558,49800853:0,16384,2228224 -k1,5794:1358238,49800853:-1720320 -(1,416:1358238,49800853:1720320,16384,2228224 -(1,416:1358238,49800853:1179648,16384,0 -r1,5794:2537886,49800853:1179648,16384,0 -) -g1,416:3062174,49800853 -(1,416:3062174,52029077:16384,1703936,0 -[1,416:3062174,52029077:25952256,1703936,0 -(1,416:3062174,51504789:25952256,1179648,0 -(1,416:3062174,51504789:16384,1179648,0 -r1,5794:3078558,51504789:16384,1179648,0 -) -k1,416:29014430,51504789:25935872 -g1,416:29014430,51504789 -) -] -) -) -) -] -[1,5794:3078558,4812305:0,0,0 -(1,5794:3078558,49800853:0,16384,2228224 -g1,5794:29030814,49800853 -g1,5794:36135244,49800853 -(1,416:36135244,49800853:1720320,16384,2228224 -(1,416:36135244,52029077:16384,1703936,0 -[1,416:36135244,52029077:25952256,1703936,0 -(1,416:36135244,51504789:25952256,1179648,0 -(1,416:36135244,51504789:16384,1179648,0 -r1,5794:36151628,51504789:16384,1179648,0 -) -k1,416:62087500,51504789:25935872 -g1,416:62087500,51504789 -) -] -) -g1,416:36675916,49800853 -(1,416:36675916,49800853:1179648,16384,0 -r1,5794:37855564,49800853:1179648,16384,0 -) -) -k1,5794:3078556,49800853:-34777008 -) -] -g1,5794:6630773,4812305 -g1,5794:6630773,4812305 -g1,5794:9205682,4812305 -g1,5794:11846782,4812305 -k1,5794:31786110,4812305:19939328 -) -) -] -[1,5794:6630773,45706769:25952256,40108032,0 -(1,5794:6630773,45706769:25952256,40108032,0 -(1,5794:6630773,45706769:0,0,0 -g1,5794:6630773,45706769 -) -[1,5794:6630773,45706769:25952256,40108032,0 -(1,5758:6630773,6254097:25952256,505283,134348 -h1,5757:6630773,6254097:983040,0,0 -k1,5757:9622213,6254097:225165 -k1,5757:10262195,6254097:225139 -k1,5757:11018856,6254097:225164 -k1,5757:12757247,6254097:225165 -k1,5757:17083000,6254097:225165 -k1,5757:17664025,6254097:225165 -k1,5757:19896557,6254097:225164 -k1,5757:20773150,6254097:225165 -k1,5757:23157071,6254097:225165 -k1,5757:24401321,6254097:225165 -k1,5757:27576261,6254097:225165 -k1,5757:29960181,6254097:225164 -k1,5757:30836774,6254097:225165 -k1,5757:31417799,6254097:225165 -k1,5758:32583029,6254097:0 -) -(1,5758:6630773,7095585:25952256,513147,126483 -k1,5757:8210292,7095585:236686 -k1,5757:10454345,7095585:236685 -k1,5757:11222528,7095585:236686 -k1,5757:13804747,7095585:236685 -k1,5757:18531960,7095585:236686 -k1,5757:19965333,7095585:236686 -k1,5757:21940033,7095585:236685 -k1,5757:22836011,7095585:236686 -k1,5757:24091782,7095585:236686 -k1,5757:26335835,7095585:236685 -k1,5757:27909455,7095585:236686 -k1,5757:30517888,7095585:236685 -k1,5757:31563944,7095585:236686 -k1,5757:32583029,7095585:0 -) -(1,5758:6630773,7937073:25952256,513147,134348 -k1,5757:9862234,7937073:177483 -k1,5757:12285637,7937073:177484 -k1,5757:13976346,7937073:177483 -k1,5757:15603485,7937073:177483 -k1,5757:19720993,7937073:177484 -k1,5757:20581361,7937073:177483 -k1,5757:22719027,7937073:177484 -k1,5757:23579395,7937073:177483 -k1,5757:24527581,7937073:177483 -k1,5757:27690230,7937073:177484 -k1,5757:30291890,7937073:177483 -k1,5757:32583029,7937073:0 -) -(1,5758:6630773,8778561:25952256,513147,134348 -g1,5757:7618400,8778561 -g1,5757:9148010,8778561 -g1,5757:11736026,8778561 -g1,5757:13942623,8778561 -g1,5757:15089503,8778561 -g1,5757:17447488,8778561 -g1,5757:18298145,8778561 -g1,5757:19516459,8778561 -g1,5757:21278066,8778561 -g1,5757:23016080,8778561 -g1,5757:23874601,8778561 -g1,5757:24862228,8778561 -g1,5757:26442301,8778561 -k1,5758:32583029,8778561:3156874 -g1,5758:32583029,8778561 -) -v1,5760:6630773,10144337:0,393216,0 -(1,5776:6630773,20340345:25952256,10589224,616038 -g1,5776:6630773,20340345 -(1,5776:6630773,20340345:25952256,10589224,616038 -(1,5776:6630773,20956383:25952256,11205262,0 -[1,5776:6630773,20956383:25952256,11205262,0 -(1,5776:6630773,20930169:25952256,11152834,0 -r1,5794:6656987,20930169:26214,11152834,0 -[1,5776:6656987,20930169:25899828,11152834,0 -(1,5776:6656987,20340345:25899828,9973186,0 -[1,5776:7246811,20340345:24720180,9973186,0 -(1,5761:7246811,11452695:24720180,1085536,298548 -(1,5760:7246811,11452695:0,1085536,298548 -r1,5794:8753226,11452695:1506415,1384084,298548 -k1,5760:7246811,11452695:-1506415 -) -(1,5760:7246811,11452695:1506415,1085536,298548 -) -k1,5760:9033135,11452695:279909 -k1,5760:10693888,11452695:279909 -k1,5760:13958307,11452695:279909 -k1,5760:14897507,11452695:279908 -k1,5760:17025531,11452695:279909 -k1,5760:19464196,11452695:279909 -k1,5760:20395533,11452695:279909 -k1,5760:21031302,11452695:279909 -k1,5760:23492249,11452695:279909 -k1,5760:24963603,11452695:279909 -k1,5760:27909516,11452695:279908 -k1,5760:28848717,11452695:279909 -k1,5760:30405923,11452695:279909 -k1,5761:31966991,11452695:0 -) -(1,5761:7246811,12294183:24720180,513147,126483 -k1,5760:10069094,12294183:242786 -k1,5760:10998041,12294183:242785 -k1,5760:13316352,12294183:242786 -k1,5760:15601239,12294183:242785 -k1,5760:18258371,12294183:242786 -k1,5760:19310527,12294183:242786 -k1,5760:20572397,12294183:242785 -k1,5760:22973939,12294183:242786 -k1,5760:25224093,12294183:242786 -k1,5760:27246180,12294183:242785 -k1,5760:28020463,12294183:242786 -k1,5760:29329519,12294183:242785 -k1,5760:30591390,12294183:242786 -k1,5760:31966991,12294183:0 -) -(1,5761:7246811,13135671:24720180,505283,134348 -k1,5760:10439164,13135671:207843 -k1,5760:13604646,13135671:207842 -k1,5760:14630378,13135671:207843 -k1,5760:15706573,13135671:207843 -k1,5760:17046878,13135671:207843 -k1,5760:18279703,13135671:207842 -k1,5760:19103584,13135671:207843 -k1,5760:21729050,13135671:207843 -h1,5760:22127509,13135671:0,0,0 -k1,5760:22335351,13135671:207842 -k1,5760:25021766,13135671:207843 -k1,5760:26038979,13135671:207843 -k1,5760:27744975,13135671:207843 -h1,5760:28940352,13135671:0,0,0 -k1,5760:29321864,13135671:207842 -k1,5760:30300410,13135671:207843 -k1,5761:31966991,13135671:0 -) -(1,5761:7246811,13977159:24720180,513147,134348 -k1,5760:9392975,13977159:212852 -k1,5760:12590336,13977159:212851 -k1,5760:13334685,13977159:212852 -k1,5760:14198965,13977159:212852 -k1,5760:16054148,13977159:212851 -k1,5760:16622860,13977159:212852 -k1,5760:18023224,13977159:212852 -k1,5760:20159556,13977159:212851 -k1,5760:21058570,13977159:212852 -k1,5760:21627281,13977159:212851 -k1,5760:22833659,13977159:212852 -k1,5760:23705803,13977159:212852 -k1,5760:26542060,13977159:212851 -k1,5760:30682485,13977159:212852 -k1,5760:31966991,13977159:0 -) -(1,5761:7246811,14818647:24720180,505283,134348 -g1,5760:7977537,14818647 -g1,5760:9630355,14818647 -g1,5760:12704648,14818647 -g1,5760:13590039,14818647 -g1,5760:14145128,14818647 -g1,5760:16227206,14818647 -g1,5760:17235805,14818647 -g1,5760:17790894,14818647 -g1,5760:20939898,14818647 -g1,5760:23146495,14818647 -g1,5760:24107252,14818647 -g1,5760:26396424,14818647 -(1,5760:26396424,14818647:0,452978,115847 -r1,5794:28864961,14818647:2468537,568825,115847 -k1,5760:26396424,14818647:-2468537 -) -(1,5760:26396424,14818647:2468537,452978,115847 -k1,5760:26396424,14818647:3277 -h1,5760:28861684,14818647:0,411205,112570 -) -g1,5760:29064190,14818647 -k1,5761:31966991,14818647:1238842 -g1,5761:31966991,14818647 -) -v1,5763:7246811,16009113:0,393216,0 -(1,5774:7246811,19619449:24720180,4003552,196608 -g1,5774:7246811,19619449 -g1,5774:7246811,19619449 -g1,5774:7050203,19619449 -(1,5774:7050203,19619449:0,4003552,196608 -r1,5794:32163599,19619449:25113396,4200160,196608 -k1,5774:7050203,19619449:-25113396 -) -(1,5774:7050203,19619449:25113396,4003552,196608 -[1,5774:7246811,19619449:24720180,3806944,0 -(1,5765:7246811,16223023:24720180,410518,107478 -(1,5764:7246811,16223023:0,0,0 -g1,5764:7246811,16223023 -g1,5764:7246811,16223023 -g1,5764:6919131,16223023 -(1,5764:6919131,16223023:0,0,0 -) -g1,5764:7246811,16223023 -) -k1,5765:7246811,16223023:0 -g1,5765:10092123,16223023 -g1,5765:10724415,16223023 -g1,5765:17679621,16223023 -g1,5765:19576495,16223023 -g1,5765:20208787,16223023 -g1,5765:21789516,16223023 -g1,5765:24002536,16223023 -g1,5765:24634828,16223023 -h1,5765:25899411,16223023:0,0,0 -k1,5765:31966991,16223023:6067580 -g1,5765:31966991,16223023 -) -(1,5766:7246811,16889201:24720180,404226,101187 -h1,5766:7246811,16889201:0,0,0 -g1,5766:10408268,16889201 -g1,5766:11040560,16889201 -g1,5766:13253580,16889201 -g1,5766:14834309,16889201 -g1,5766:15466601,16889201 -h1,5766:17047329,16889201:0,0,0 -k1,5766:31966991,16889201:14919662 -g1,5766:31966991,16889201 -) -(1,5767:7246811,17555379:24720180,404226,101187 -h1,5767:7246811,17555379:0,0,0 -g1,5767:9459832,17555379 -g1,5767:10092124,17555379 -g1,5767:11356707,17555379 -g1,5767:11988999,17555379 -g1,5767:12621291,17555379 -g1,5767:14202020,17555379 -g1,5767:16415040,17555379 -g1,5767:17047332,17555379 -g1,5767:18944206,17555379 -g1,5767:20841080,17555379 -g1,5767:21789517,17555379 -g1,5767:22737954,17555379 -h1,5767:24950974,17555379:0,0,0 -k1,5767:31966991,17555379:7016017 -g1,5767:31966991,17555379 -) -(1,5768:7246811,18221557:24720180,410518,76021 -h1,5768:7246811,18221557:0,0,0 -k1,5768:7246811,18221557:0 -h1,5768:10092122,18221557:0,0,0 -k1,5768:31966990,18221557:21874868 -g1,5768:31966990,18221557 -) -(1,5773:7246811,18953271:24720180,410518,101187 -(1,5770:7246811,18953271:0,0,0 -g1,5770:7246811,18953271 -g1,5770:7246811,18953271 -g1,5770:6919131,18953271 -(1,5770:6919131,18953271:0,0,0 -) -g1,5770:7246811,18953271 -) -g1,5773:8195248,18953271 -h1,5773:11040559,18953271:0,0,0 -k1,5773:31966991,18953271:20926432 -g1,5773:31966991,18953271 -) -(1,5773:7246811,19619449:24720180,388497,0 -h1,5773:7246811,19619449:0,0,0 -g1,5773:8195248,19619449 -g1,5773:8511394,19619449 -g1,5773:8827540,19619449 -g1,5773:9143686,19619449 -g1,5773:9459832,19619449 -g1,5773:9775978,19619449 -g1,5773:10092124,19619449 -g1,5773:10408270,19619449 -g1,5773:10724416,19619449 -h1,5773:11040562,19619449:0,0,0 -k1,5773:31966990,19619449:20926428 -g1,5773:31966990,19619449 -) -] -) -g1,5774:31966991,19619449 -g1,5774:7246811,19619449 -g1,5774:7246811,19619449 -g1,5774:31966991,19619449 -g1,5774:31966991,19619449 -) -h1,5774:7246811,19816057:0,0,0 -] -) -] -r1,5794:32583029,20930169:26214,11152834,0 -) -] -) -) -g1,5776:32583029,20340345 -) -h1,5776:6630773,20956383:0,0,0 -(1,5778:6630773,23763951:25952256,32768,229376 -(1,5778:6630773,23763951:0,32768,229376 -(1,5778:6630773,23763951:5505024,32768,229376 -r1,5794:12135797,23763951:5505024,262144,229376 -) -k1,5778:6630773,23763951:-5505024 -) -(1,5778:6630773,23763951:25952256,32768,0 -r1,5794:32583029,23763951:25952256,32768,0 -) -) -(1,5778:6630773,25368279:25952256,606339,161218 -(1,5778:6630773,25368279:2464678,582746,14155 -g1,5778:6630773,25368279 -g1,5778:9095451,25368279 -) -g1,5778:12303307,25368279 -k1,5778:32583029,25368279:17283416 -g1,5778:32583029,25368279 -) -(1,5781:6630773,26602983:25952256,513147,134348 -k1,5779:7858919,26602983:186124 -k1,5779:10320453,26602983:186124 -k1,5779:12909127,26602983:186124 -k1,5779:13904621,26602983:186124 -k1,5779:15109830,26602983:186124 -k1,5779:17670979,26602983:186124 -k1,5779:18524259,26602983:186124 -k1,5779:19125213,26602983:186111 -k1,5779:22440681,26602983:186124 -k1,5779:23242843,26602983:186124 -k1,5779:24448052,26602983:186124 -k1,5779:26978399,26602983:186124 -k1,5779:29755817,26602983:186124 -k1,5780:30154920,26602983:186111 -k1,5780:32583029,26602983:0 -) -(1,5781:6630773,27444471:25952256,513147,134348 -k1,5780:7840467,27444471:190609 -k1,5780:9943417,27444471:190609 -k1,5780:10583602,27444471:190608 -k1,5780:15164468,27444471:190609 -k1,5780:16279135,27444471:190609 -k1,5780:18003942,27444471:190609 -k1,5780:20474548,27444471:190608 -k1,5780:22591260,27444471:190609 -k1,5780:23973314,27444471:190609 -k1,5780:25351435,27444471:190609 -k1,5780:26572269,27444471:190608 -k1,5780:27378916,27444471:190609 -k1,5780:28019102,27444471:190609 -k1,5780:32583029,27444471:0 -) -(1,5781:6630773,28285959:25952256,513147,134348 -g1,5780:7319556,28285959 -g1,5780:9041186,28285959 -g1,5780:9856453,28285959 -g1,5780:13086067,28285959 -g1,5780:16067299,28285959 -g1,5780:18397759,28285959 -k1,5781:32583029,28285959:11335764 -g1,5781:32583029,28285959 -) -] -(1,5794:32583029,45706769:0,0,0 -g1,5794:32583029,45706769 -) -) -] -(1,5794:6630773,47279633:25952256,0,0 -h1,5794:6630773,47279633:25952256,0,0 -) -] -(1,5794:4262630,4025873:0,0,0 -[1,5794:-473656,4025873:0,0,0 -(1,5794:-473656,-710413:0,0,0 -(1,5794:-473656,-710413:0,0,0 -g1,5794:-473656,-710413 -) -g1,5794:-473656,-710413 -) -] -) -] -!13575 -}106 -!12 -{107 -[1,5794:4262630,47279633:28320399,43253760,0 -(1,5794:4262630,4025873:0,0,0 -[1,5794:-473656,4025873:0,0,0 -(1,5794:-473656,-710413:0,0,0 -(1,5794:-473656,-644877:0,0,0 -k1,5794:-473656,-644877:-65536 -) -(1,5794:-473656,4736287:0,0,0 -k1,5794:-473656,4736287:5209943 -) -g1,5794:-473656,-710413 -) -] -) -[1,5794:6630773,47279633:25952256,43253760,0 -[1,5794:6630773,4812305:25952256,786432,0 -(1,5794:6630773,4812305:25952256,0,0 -(1,5794:6630773,4812305:25952256,0,0 -g1,5794:3078558,4812305 -[1,5794:3078558,4812305:0,0,0 -(1,5794:3078558,2439708:0,1703936,0 -k1,5794:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,5794:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,5794:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,5794:3078558,4812305:0,0,0 -(1,5794:3078558,2439708:0,1703936,0 -g1,5794:29030814,2439708 -g1,5794:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,5794:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,5794:37855564,2439708:1179648,16384,0 -) -) -k1,5794:3078556,2439708:-34777008 -) -] -[1,5794:3078558,4812305:0,0,0 -(1,5794:3078558,49800853:0,16384,2228224 -k1,5794:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,5794:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,5794:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,5794:3078558,4812305:0,0,0 -(1,5794:3078558,49800853:0,16384,2228224 -g1,5794:29030814,49800853 -g1,5794:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,5794:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,5794:37855564,49800853:1179648,16384,0 -) -) -k1,5794:3078556,49800853:-34777008 -) -] -g1,5794:6630773,4812305 -) -) -] -[1,5794:6630773,45706769:0,40108032,0 -(1,5794:6630773,45706769:0,40108032,0 -(1,5794:6630773,45706769:0,0,0 -g1,5794:6630773,45706769 -) -[1,5794:6630773,45706769:0,40108032,0 -h1,5794:6630773,6254097:0,0,0 -] -(1,5794:6630773,45706769:0,0,0 -g1,5794:6630773,45706769 -) -) -] -(1,5794:6630773,47279633:25952256,0,0 -h1,5794:6630773,47279633:25952256,0,0 -) -] -(1,5794:4262630,4025873:0,0,0 -[1,5794:-473656,4025873:0,0,0 -(1,5794:-473656,-710413:0,0,0 -(1,5794:-473656,-710413:0,0,0 -g1,5794:-473656,-710413 -) -g1,5794:-473656,-710413 -) -] -) -] -!3308 -}107 -!11 -{108 -[1,5819:4262630,47279633:28320399,43253760,11795 -(1,5819:4262630,4025873:0,0,0 -[1,5819:-473656,4025873:0,0,0 -(1,5819:-473656,-710413:0,0,0 -(1,5819:-473656,-644877:0,0,0 -k1,5819:-473656,-644877:-65536 -) -(1,5819:-473656,4736287:0,0,0 -k1,5819:-473656,4736287:5209943 -) -g1,5819:-473656,-710413 -) -] -) -[1,5819:6630773,47279633:25952256,43253760,11795 -[1,5819:6630773,4812305:25952256,786432,0 -(1,5819:6630773,4812305:25952256,0,0 -(1,5819:6630773,4812305:25952256,0,0 -g1,5819:3078558,4812305 -[1,5819:3078558,4812305:0,0,0 -(1,5819:3078558,2439708:0,1703936,0 -k1,5819:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,5819:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,5819:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,5819:3078558,4812305:0,0,0 -(1,5819:3078558,2439708:0,1703936,0 -g1,5819:29030814,2439708 -g1,5819:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,5819:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,5819:37855564,2439708:1179648,16384,0 -) -) -k1,5819:3078556,2439708:-34777008 -) -] -[1,5819:3078558,4812305:0,0,0 -(1,5819:3078558,49800853:0,16384,2228224 -k1,5819:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,5819:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,5819:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,5819:3078558,4812305:0,0,0 -(1,5819:3078558,49800853:0,16384,2228224 -g1,5819:29030814,49800853 -g1,5819:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,5819:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,5819:37855564,49800853:1179648,16384,0 -) -) -k1,5819:3078556,49800853:-34777008 -) -] -g1,5819:6630773,4812305 -) -) -] -[1,5819:6630773,45706769:25952256,40108032,0 -(1,5819:6630773,45706769:25952256,40108032,0 -(1,5819:6630773,45706769:0,0,0 -g1,5819:6630773,45706769 -) -[1,5819:6630773,45706769:25952256,40108032,0 -[1,5794:6630773,11663733:25952256,6064996,0 -(1,5794:6630773,6633157:25952256,1165492,28311 -h1,5794:6630773,6633157:0,0,0 -k1,5794:20096848,6633157:12486181 -k1,5794:32583029,6633157:12486181 -) -(1,5794:6630773,7333093:25952256,32768,229376 -(1,5794:6630773,7333093:0,32768,229376 -(1,5794:6630773,7333093:5505024,32768,229376 -r1,5819:12135797,7333093:5505024,262144,229376 -) -k1,5794:6630773,7333093:-5505024 -) -(1,5794:6630773,7333093:25952256,32768,0 -r1,5819:32583029,7333093:25952256,32768,0 -) -) -(1,5794:6630773,9128789:25952256,909509,241827 -h1,5794:6630773,9128789:0,0,0 -g1,5794:9126908,9128789 -g1,5794:10294760,9128789 -g1,5794:16260240,9128789 -g1,5794:24331392,9128789 -g1,5794:26868815,9128789 -k1,5794:32036853,9128789:546177 -k1,5794:32583029,9128789:546176 -) -(1,5794:6630773,9828725:25952256,32768,0 -(1,5794:6630773,9828725:5505024,32768,0 -r1,5819:12135797,9828725:5505024,32768,0 -) -k1,5794:22359413,9828725:10223616 -k1,5794:32583029,9828725:10223616 -) -] -(1,5797:6630773,14556498:25952256,131072,0 -r1,5819:32583029,14556498:25952256,131072,0 -g1,5797:32583029,14556498 -g1,5797:32583029,14556498 -) -(1,5799:6630773,15876399:25952256,513147,134348 -k1,5799:8596853,15876399:1966080 -k1,5798:8596853,15876399:0 -k1,5798:9787977,15876399:288693 -k1,5798:10491424,15876399:288604 -k1,5798:12611193,15876399:288693 -k1,5798:13431384,15876399:288694 -k1,5798:15858517,15876399:288693 -k1,5798:16503071,15876399:288694 -k1,5798:18017943,15876399:288693 -k1,5798:19289676,15876399:288693 -k1,5798:22940367,15876399:288694 -k1,5798:25805936,15876399:288693 -k1,5798:27113715,15876399:288694 -k1,5798:29055881,15876399:288693 -k1,5799:32583029,15876399:1966080 -) -(1,5799:6630773,16717887:25952256,513147,126483 -g1,5799:8596853,16717887 -g1,5798:10937799,16717887 -g1,5798:12421534,16717887 -g1,5798:13791236,16717887 -g1,5798:15946715,16717887 -g1,5798:17800728,16717887 -g1,5798:18809327,16717887 -g1,5798:20027641,16717887 -g1,5798:23386361,16717887 -g1,5798:24754097,16717887 -g1,5798:25620482,16717887 -k1,5799:30616949,16717887:4407954 -g1,5799:32583029,16717887 -) -(1,5800:6630773,18345807:25952256,473825,95026 -k1,5800:27178275,18345807:20547502 -h1,5800:27178275,18345807:0,0,0 -g1,5800:28475232,18345807 -g1,5800:30616949,18345807 -g1,5800:32583029,18345807 -) -(1,5801:6630773,19187295:25952256,505283,134348 -k1,5801:26177541,19187295:19546768 -h1,5800:26177541,19187295:0,0,0 -g1,5800:30167372,19187295 -g1,5801:30616949,19187295 -g1,5801:32583029,19187295 -) -(1,5801:6630773,20421999:25952256,131072,0 -r1,5819:32583029,20421999:25952256,131072,0 -g1,5801:32583029,20421999 -g1,5801:34549109,20421999 -) -(1,5805:6630773,23229567:25952256,32768,229376 -(1,5805:6630773,23229567:0,32768,229376 -(1,5805:6630773,23229567:5505024,32768,229376 -r1,5819:12135797,23229567:5505024,262144,229376 -) -k1,5805:6630773,23229567:-5505024 -) -(1,5805:6630773,23229567:25952256,32768,0 -r1,5819:32583029,23229567:25952256,32768,0 -) -) -(1,5805:6630773,24833895:25952256,615776,151780 -(1,5805:6630773,24833895:1974731,582746,14155 -g1,5805:6630773,24833895 -g1,5805:8605504,24833895 -) -g1,5805:10904245,24833895 -g1,5805:11961996,24833895 -g1,5805:13695292,24833895 -k1,5805:32583029,24833895:15886712 -g1,5805:32583029,24833895 -) -(1,5808:6630773,26068599:25952256,513147,134348 -k1,5807:7845631,26068599:172836 -k1,5807:9762380,26068599:172836 -k1,5807:11265598,26068599:172837 -k1,5807:12913649,26068599:172836 -k1,5807:15244586,26068599:172836 -k1,5807:16930648,26068599:172836 -k1,5807:20053259,26068599:172836 -k1,5807:21606939,26068599:172836 -k1,5807:25093932,26068599:172837 -k1,5807:29921790,26068599:172836 -k1,5807:31391584,26068599:172836 -k1,5807:32583029,26068599:0 -) -(1,5808:6630773,26910087:25952256,505283,134348 -k1,5807:8579705,26910087:250894 -k1,5807:10991975,26910087:250893 -k1,5807:12347151,26910087:250894 -k1,5807:13986097,26910087:250893 -k1,5807:14853029,26910087:250894 -k1,5807:20039439,26910087:250894 -k1,5807:20646192,26910087:250893 -k1,5807:23095164,26910087:250894 -k1,5807:24735420,26910087:250893 -k1,5807:27540907,26910087:250894 -k1,5807:30480087,26910087:250893 -k1,5807:31835263,26910087:250894 -k1,5807:32583029,26910087:0 -) -(1,5808:6630773,27751575:25952256,513147,134348 -k1,5807:10209139,27751575:202607 -k1,5807:11229635,27751575:202607 -k1,5807:12966440,27751575:202607 -k1,5807:13855209,27751575:202607 -k1,5807:14413676,27751575:202607 -k1,5807:16005646,27751575:202607 -k1,5807:18762847,27751575:202608 -k1,5807:20698226,27751575:202607 -k1,5807:22638848,27751575:202607 -k1,5807:24880935,27751575:202607 -k1,5807:28395732,27751575:202607 -k1,5807:29617424,27751575:202607 -k1,5807:31505617,27751575:202607 -k1,5808:32583029,27751575:0 -) -(1,5808:6630773,28593063:25952256,513147,134348 -k1,5807:8694264,28593063:174743 -k1,5807:11427532,28593063:174742 -k1,5807:11958135,28593063:174743 -k1,5807:14378796,28593063:174742 -k1,5807:15212831,28593063:174743 -k1,5807:17514872,28593063:174742 -k1,5807:18881060,28593063:174743 -k1,5807:21769648,28593063:174742 -k1,5807:23782021,28593063:174743 -k1,5807:26730247,28593063:174742 -k1,5807:30043509,28593063:174743 -k1,5808:32583029,28593063:0 -k1,5808:32583029,28593063:0 -) -(1,5810:6630773,29434551:25952256,513147,134348 -h1,5809:6630773,29434551:983040,0,0 -k1,5809:11032766,29434551:264050 -k1,5809:14246592,29434551:264051 -k1,5809:15891486,29434551:264050 -k1,5809:19296022,29434551:264051 -k1,5809:20999898,29434551:264050 -k1,5809:21915377,29434551:264051 -k1,5809:22927193,29434551:264050 -k1,5809:25675059,29434551:264051 -k1,5809:26590537,29434551:264050 -k1,5809:29006790,29434551:264051 -k1,5809:29953725,29434551:264050 -k1,5809:32583029,29434551:0 -) -(1,5810:6630773,30276039:25952256,505283,134348 -k1,5809:7493465,30276039:246654 -k1,5809:8095978,30276039:246653 -k1,5809:9580607,30276039:246654 -k1,5809:11111767,30276039:246654 -k1,5809:13196705,30276039:246653 -k1,5809:17341440,30276039:246654 -k1,5809:21425881,30276039:246653 -k1,5809:23212631,30276039:246654 -k1,5809:25492212,30276039:246654 -k1,5809:28480891,30276039:246653 -k1,5809:31391584,30276039:246654 -k1,5809:32583029,30276039:0 -) -(1,5810:6630773,31117527:25952256,473825,134348 -g1,5809:9883980,31117527 -k1,5810:32583029,31117527:19949158 -g1,5810:32583029,31117527 -) -(1,5812:6630773,31959015:25952256,513147,126483 -h1,5811:6630773,31959015:983040,0,0 -k1,5811:9565475,31959015:256246 -k1,5811:11751100,31959015:256245 -k1,5811:14232293,31959015:256246 -k1,5811:15507624,31959015:256246 -k1,5811:17417343,31959015:256246 -k1,5811:20613533,31959015:256245 -k1,5811:21529071,31959015:256246 -k1,5811:25275109,31959015:256246 -k1,5811:27391922,31959015:256246 -k1,5811:28299596,31959015:256246 -k1,5811:29303607,31959015:256245 -k1,5811:31931601,31959015:256246 -k1,5811:32583029,31959015:0 -) -(1,5812:6630773,32800503:25952256,513147,126483 -k1,5811:9598780,32800503:205664 -k1,5811:11193806,32800503:205663 -k1,5811:12837985,32800503:205664 -k1,5811:14235094,32800503:205664 -k1,5811:16602134,32800503:205663 -k1,5811:18523531,32800503:205664 -k1,5811:20195890,32800503:205663 -k1,5811:25458312,32800503:205664 -k1,5811:26855421,32800503:205664 -k1,5811:30224507,32800503:205663 -k1,5811:31089463,32800503:205664 -k1,5811:32583029,32800503:0 -) -(1,5812:6630773,33641991:25952256,473825,126483 -g1,5811:7185862,33641991 -g1,5811:11315940,33641991 -k1,5812:32583029,33641991:19698812 -g1,5812:32583029,33641991 -) -(1,5814:6630773,34483479:25952256,513147,134348 -h1,5813:6630773,34483479:983040,0,0 -k1,5813:8485142,34483479:243494 -k1,5813:9931877,34483479:243494 -k1,5813:12766665,34483479:243494 -k1,5813:13223106,34483479:243449 -k1,5813:14599062,34483479:243494 -k1,5813:16317116,34483479:243494 -k1,5813:17731083,34483479:243494 -k1,5813:20533103,34483479:243494 -k1,5813:21795682,34483479:243494 -k1,5813:23131661,34483479:243494 -k1,5813:24042311,34483479:243494 -k1,5813:24700603,34483479:243449 -k1,5813:27279145,34483479:243494 -k1,5813:30001211,34483479:243494 -k1,5813:31812326,34483479:243494 -k1,5813:32583029,34483479:0 -) -(1,5814:6630773,35324967:25952256,505283,126483 -g1,5813:9968521,35324967 -g1,5813:12292427,35324967 -k1,5814:32583029,35324967:18285856 -g1,5814:32583029,35324967 -) -(1,5815:6630773,38132535:25952256,32768,229376 -(1,5815:6630773,38132535:0,32768,229376 -(1,5815:6630773,38132535:5505024,32768,229376 -r1,5819:12135797,38132535:5505024,262144,229376 -) -k1,5815:6630773,38132535:-5505024 -) -(1,5815:6630773,38132535:25952256,32768,0 -r1,5819:32583029,38132535:25952256,32768,0 -) -) -(1,5815:6630773,39736863:25952256,606339,161218 -(1,5815:6630773,39736863:1974731,582746,14155 -g1,5815:6630773,39736863 -g1,5815:8605504,39736863 -) -g1,5815:11767747,39736863 -k1,5815:32583029,39736863:18128044 -g1,5815:32583029,39736863 -) -(1,5818:6630773,40971567:25952256,505283,134348 -k1,5817:7499830,40971567:241222 -k1,5817:8155852,40971567:241179 -k1,5817:11413041,40971567:241222 -k1,5817:12673348,40971567:241222 -k1,5817:15112648,40971567:241222 -k1,5817:17335022,40971567:241221 -k1,5817:18227672,40971567:241222 -k1,5817:18824754,40971567:241222 -k1,5817:21357770,40971567:241222 -k1,5817:24441287,40971567:241221 -k1,5817:26407417,40971567:241222 -k1,5817:27180136,40971567:241222 -k1,5817:27777218,40971567:241222 -k1,5817:30023185,40971567:241221 -k1,5817:30751953,40971567:241180 -k1,5817:32583029,40971567:0 -) -(1,5818:6630773,41813055:25952256,513147,134348 -k1,5817:7343388,41813055:181118 -k1,5817:9002997,41813055:181117 -k1,5817:10751736,41813055:181118 -k1,5817:13604101,41813055:181118 -k1,5817:18557550,41813055:181117 -k1,5817:20234855,41813055:181118 -k1,5817:23932634,41813055:181117 -k1,5817:26412100,41813055:181118 -k1,5817:27244646,41813055:181118 -k1,5817:30351290,41813055:181117 -k1,5817:30888268,41813055:181118 -k1,5817:32583029,41813055:0 -) -(1,5818:6630773,42654543:25952256,505283,126483 -k1,5817:8394412,42654543:254345 -k1,5817:10798338,42654543:254345 -k1,5817:14569345,42654543:254345 -k1,5817:15927972,42654543:254345 -k1,5817:16930084,42654543:254346 -k1,5817:20317050,42654543:254345 -k1,5817:21838861,42654543:254345 -k1,5817:25506976,42654543:254345 -k1,5817:29451653,42654543:254345 -k1,5817:31591469,42654543:254345 -k1,5817:32583029,42654543:0 -) -(1,5818:6630773,43496031:25952256,513147,134348 -k1,5817:7790701,43496031:140843 -k1,5817:11236524,43496031:140842 -k1,5817:12036659,43496031:140843 -k1,5817:14469296,43496031:140843 -k1,5817:17452435,43496031:140843 -k1,5817:21372083,43496031:140842 -k1,5817:23699207,43496031:140843 -k1,5817:24944332,43496031:140843 -k1,5817:26447669,43496031:140843 -k1,5817:28156132,43496031:140842 -k1,5817:30421652,43496031:140843 -k1,5817:32583029,43496031:0 -) -(1,5818:6630773,44337519:25952256,513147,134348 -k1,5817:10171564,44337519:178794 -k1,5817:11725959,44337519:178794 -k1,5817:12260613,44337519:178794 -k1,5817:13572525,44337519:178794 -k1,5817:15247506,44337519:178794 -k1,5817:19116632,44337519:178794 -k1,5817:19946854,44337519:178794 -k1,5817:22811969,44337519:178794 -k1,5817:25152140,44337519:178794 -k1,5817:28692931,44337519:178794 -k1,5817:31923737,44337519:178794 -k1,5817:32583029,44337519:0 -) -] -(1,5819:32583029,45706769:0,0,0 -g1,5819:32583029,45706769 -) -) -] -(1,5819:6630773,47279633:25952256,485622,11795 -(1,5819:6630773,47279633:25952256,485622,11795 -(1,5819:6630773,47279633:0,0,0 -v1,5819:6630773,47279633:0,0,0 -) -g1,5819:6830002,47279633 -k1,5819:31786110,47279633:24956108 -) -) -] -(1,5819:4262630,4025873:0,0,0 -[1,5819:-473656,4025873:0,0,0 -(1,5819:-473656,-710413:0,0,0 -(1,5819:-473656,-710413:0,0,0 -g1,5819:-473656,-710413 -) -g1,5819:-473656,-710413 -) -] -) -] -!14267 -}108 -Input:810:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:811:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:812:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!285 -{109 -[1,5854:4262630,47279633:28320399,43253760,0 -(1,5854:4262630,4025873:0,0,0 -[1,5854:-473656,4025873:0,0,0 -(1,5854:-473656,-710413:0,0,0 -(1,5854:-473656,-644877:0,0,0 -k1,5854:-473656,-644877:-65536 -) -(1,5854:-473656,4736287:0,0,0 -k1,5854:-473656,4736287:5209943 -) -g1,5854:-473656,-710413 -) -] -) -[1,5854:6630773,47279633:25952256,43253760,0 -[1,5854:6630773,4812305:25952256,786432,0 -(1,5854:6630773,4812305:25952256,505283,134348 -(1,5854:6630773,4812305:25952256,505283,134348 -g1,5854:3078558,4812305 -[1,5854:3078558,4812305:0,0,0 -(1,5854:3078558,2439708:0,1703936,0 -k1,5854:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,5854:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,5854:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,5854:3078558,4812305:0,0,0 -(1,5854:3078558,2439708:0,1703936,0 -g1,5854:29030814,2439708 -g1,5854:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,5854:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,5854:37855564,2439708:1179648,16384,0 -) -) -k1,5854:3078556,2439708:-34777008 -) -] -[1,5854:3078558,4812305:0,0,0 -(1,5854:3078558,49800853:0,16384,2228224 -k1,5854:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,5854:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,5854:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,5854:3078558,4812305:0,0,0 -(1,5854:3078558,49800853:0,16384,2228224 -g1,5854:29030814,49800853 -g1,5854:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,5854:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,5854:37855564,49800853:1179648,16384,0 -) -) -k1,5854:3078556,49800853:-34777008 -) -] -g1,5854:6630773,4812305 -k1,5854:18771974,4812305:11344283 -g1,5854:20158715,4812305 -g1,5854:20807521,4812305 -g1,5854:24121676,4812305 -g1,5854:28605649,4812305 -g1,5854:30015328,4812305 -) -) -] -[1,5854:6630773,45706769:25952256,40108032,0 -(1,5854:6630773,45706769:25952256,40108032,0 -(1,5854:6630773,45706769:0,0,0 -g1,5854:6630773,45706769 -) -[1,5854:6630773,45706769:25952256,40108032,0 -(1,5818:6630773,6254097:25952256,513147,126483 -k1,5817:8315611,6254097:188651 -k1,5817:12194593,6254097:188650 -k1,5817:13011079,6254097:188651 -k1,5817:14218815,6254097:188651 -k1,5817:15630367,6254097:188650 -k1,5817:16478310,6254097:188651 -k1,5817:17686046,6254097:188651 -k1,5817:20280523,6254097:188650 -k1,5817:22747861,6254097:188651 -k1,5817:23149493,6254097:188640 -k1,5817:25699406,6254097:188651 -k1,5817:27218438,6254097:188651 -k1,5817:28058516,6254097:188650 -k1,5817:29861974,6254097:188651 -k1,5817:32583029,6254097:0 -) -(1,5818:6630773,7095585:25952256,505283,126483 -g1,5817:8021447,7095585 -g1,5817:10571452,7095585 -g1,5817:12932058,7095585 -g1,5817:14322732,7095585 -g1,5817:15852342,7095585 -g1,5817:16702999,7095585 -g1,5817:17994713,7095585 -k1,5818:32583029,7095585:12775590 -g1,5818:32583029,7095585 -) -(1,5819:6630773,9186845:25952256,555811,139132 -(1,5819:6630773,9186845:2450326,534184,12975 -g1,5819:6630773,9186845 -g1,5819:9081099,9186845 -) -g1,5819:11147187,9186845 -g1,5819:11984148,9186845 -g1,5819:12609886,9186845 -k1,5819:32583029,9186845:17523538 -g1,5819:32583029,9186845 -) -(1,5822:6630773,10421549:25952256,513147,126483 -k1,5821:7364405,10421549:246044 -k1,5821:9396352,10421549:246091 -k1,5821:10173940,10421549:246091 -k1,5821:10775891,10421549:246091 -k1,5821:12248161,10421549:246091 -k1,5821:13477292,10421549:246091 -k1,5821:15007888,10421549:246090 -k1,5821:17956028,10421549:246091 -k1,5821:20778995,10421549:246091 -k1,5821:22044171,10421549:246091 -k1,5821:23943735,10421549:246091 -k1,5821:27679618,10421549:246091 -k1,5821:29210215,10421549:246091 -k1,5821:30626779,10421549:246091 -k1,5821:32583029,10421549:0 -) -(1,5822:6630773,11263037:25952256,513147,126483 -k1,5821:8166503,11263037:149644 -k1,5821:8928908,11263037:149643 -k1,5821:10097637,11263037:149644 -k1,5821:12667526,11263037:149644 -k1,5821:15392080,11263037:149644 -k1,5821:16029262,11263037:149594 -k1,5821:17486349,11263037:149644 -k1,5821:19467069,11263037:149644 -k1,5821:20148209,11263037:149643 -k1,5821:21537794,11263037:149644 -k1,5821:22635089,11263037:149644 -k1,5821:25619820,11263037:149644 -k1,5821:26540166,11263037:149643 -k1,5821:29531451,11263037:149644 -k1,5821:30664135,11263037:149644 -k1,5821:32583029,11263037:0 -) -(1,5822:6630773,12104525:25952256,505283,126483 -g1,5821:8000475,12104525 -g1,5821:9674919,12104525 -g1,5821:12006034,12104525 -g1,5821:12888148,12104525 -g1,5821:14894205,12104525 -g1,5821:16785574,12104525 -g1,5821:17399646,12104525 -k1,5822:32583029,12104525:11519920 -g1,5822:32583029,12104525 -) -(1,5824:6630773,12946013:25952256,513147,134348 -h1,5823:6630773,12946013:983040,0,0 -k1,5823:9573287,12946013:176239 -k1,5823:11778521,12946013:176239 -k1,5823:19296758,12946013:176239 -k1,5823:20085759,12946013:176239 -k1,5823:21281083,12946013:176239 -k1,5823:21872142,12946013:176216 -k1,5823:24642296,12946013:176239 -k1,5823:25686887,12946013:176239 -k1,5823:27843624,12946013:176239 -k1,5823:29176573,12946013:176239 -k1,5823:30521319,12946013:176239 -k1,5823:31356850,12946013:176239 -k1,5823:32583029,12946013:0 -) -(1,5824:6630773,13787501:25952256,513147,134348 -k1,5823:7378466,13787501:134931 -k1,5823:7869258,13787501:134932 -k1,5823:9603267,13787501:134931 -k1,5823:11521433,13787501:134931 -k1,5823:12524716,13787501:134931 -k1,5823:13842573,13787501:134932 -k1,5823:14996589,13787501:134931 -k1,5823:16300027,13787501:134931 -k1,5823:17196486,13787501:134931 -k1,5823:19360413,13787501:134932 -k1,5823:20514429,13787501:134931 -k1,5823:22304144,13787501:134931 -k1,5823:23713751,13787501:134932 -k1,5823:24867767,13787501:134931 -k1,5823:26171205,13787501:134931 -k1,5823:26965428,13787501:134931 -k1,5823:28326539,13787501:134932 -k1,5823:28992967,13787501:134931 -k1,5823:32583029,13787501:0 -) -(1,5824:6630773,14628989:25952256,513147,134348 -k1,5823:8061237,14628989:239019 -k1,5823:11535113,14628989:239019 -k1,5823:12727681,14628989:239019 -k1,5823:14400629,14628989:239020 -k1,5823:16025734,14628989:239019 -k1,5823:17283838,14628989:239019 -k1,5823:18906977,14628989:239019 -k1,5823:20314503,14628989:239019 -k1,5823:21212814,14628989:239019 -k1,5823:22851682,14628989:239019 -k1,5823:24976173,14628989:239020 -k1,5823:26523946,14628989:239019 -k1,5823:27379003,14628989:239019 -k1,5823:28992967,14628989:239019 -k1,5823:32583029,14628989:0 -) -(1,5824:6630773,15470477:25952256,505283,126483 -k1,5823:8082314,15470477:260096 -k1,5823:11577267,15470477:260096 -k1,5823:13028808,15470477:260096 -k1,5823:14013732,15470477:260096 -k1,5823:15256868,15470477:260096 -k1,5823:16144799,15470477:260096 -k1,5823:16760755,15470477:260096 -k1,5823:18851927,15470477:260096 -k1,5823:19980374,15470477:260095 -k1,5823:21855277,15470477:260096 -k1,5823:24088007,15470477:260096 -k1,5823:25367188,15470477:260096 -k1,5823:27280757,15470477:260096 -k1,5823:28767032,15470477:260096 -k1,5823:29643166,15470477:260096 -k1,5823:30673965,15470477:260096 -k1,5823:32583029,15470477:0 -) -(1,5824:6630773,16311965:25952256,513147,134348 -k1,5823:8022401,16311965:200183 -k1,5823:9613257,16311965:200182 -k1,5823:12484687,16311965:200183 -k1,5823:14183678,16311965:200183 -k1,5823:17745857,16311965:200182 -k1,5823:21435832,16311965:200183 -k1,5823:22903480,16311965:200182 -k1,5823:23459523,16311965:200183 -k1,5823:24885885,16311965:200183 -k1,5823:26242777,16311965:200182 -k1,5823:30900064,16311965:200183 -k1,5823:32583029,16311965:0 -) -(1,5824:6630773,17153453:25952256,513147,126483 -g1,5823:8492650,17153453 -g1,5823:10067480,17153453 -g1,5823:11893968,17153453 -g1,5823:13791235,17153453 -g1,5823:14858816,17153453 -g1,5823:17092938,17153453 -g1,5823:18311252,17153453 -g1,5823:19493521,17153453 -g1,5823:20378912,17153453 -g1,5823:20934001,17153453 -g1,5823:23016079,17153453 -g1,5823:24482774,17153453 -k1,5824:32583029,17153453:7511742 -g1,5824:32583029,17153453 -) -(1,5826:6630773,17994941:25952256,513147,134348 -h1,5825:6630773,17994941:983040,0,0 -g1,5825:8300630,17994941 -g1,5825:10330935,17994941 -g1,5825:11513204,17994941 -g1,5825:12813438,17994941 -g1,5825:14031752,17994941 -g1,5825:17206316,17994941 -k1,5826:32583029,17994941:10574890 -g1,5826:32583029,17994941 -) -(1,5828:7202902,19360717:25380127,513147,126483 -(1,5827:7202902,19360717:0,355205,0 -g1,5827:7202902,19360717 -g1,5827:5892182,19360717 -g1,5827:5564502,19360717 -(1,5827:5564502,19360717:1310720,355205,0 -k1,5827:6875222,19360717:1310720 -(1,5827:6875222,19360717:0,355205,0 -k1,5827:6476763,19360717:-398459 -) -) -g1,5827:7202902,19360717 -) -g1,5827:8598818,19360717 -g1,5827:10629123,19360717 -g1,5827:11359849,19360717 -g1,5827:11914938,19360717 -g1,5827:13340346,19360717 -k1,5828:32583028,19360717:18085972 -g1,5828:32583028,19360717 -) -(1,5829:7202902,20726493:25380127,513147,134348 -(1,5828:7202902,20726493:0,355205,0 -g1,5828:7202902,20726493 -g1,5828:5892182,20726493 -g1,5828:5564502,20726493 -(1,5828:5564502,20726493:1310720,355205,0 -k1,5828:6875222,20726493:1310720 -(1,5828:6875222,20726493:0,355205,0 -k1,5828:6476763,20726493:-398459 -) -) -g1,5828:7202902,20726493 -) -g1,5828:8598818,20726493 -g1,5828:9781087,20726493 -g1,5828:12682365,20726493 -g1,5828:14421690,20726493 -g1,5828:15035762,20726493 -g1,5828:18751653,20726493 -g1,5828:22138553,20726493 -g1,5828:25862308,20726493 -g1,5828:27252982,20726493 -g1,5828:29923574,20726493 -k1,5829:32583029,20726493:1255674 -g1,5829:32583029,20726493 -) -(1,5830:7202902,22092269:25380127,513147,115847 -(1,5829:7202902,22092269:0,355205,0 -g1,5829:7202902,22092269 -g1,5829:5892182,22092269 -g1,5829:5564502,22092269 -(1,5829:5564502,22092269:1310720,355205,0 -k1,5829:6875222,22092269:1310720 -(1,5829:6875222,22092269:0,355205,0 -k1,5829:6476763,22092269:-398459 -) -) -g1,5829:7202902,22092269 -) -g1,5829:10841460,22092269 -g1,5829:12529012,22092269 -g1,5829:13341003,22092269 -g1,5829:13896092,22092269 -(1,5829:13896092,22092269:0,424981,115847 -r1,5854:14254358,22092269:358266,540828,115847 -k1,5829:13896092,22092269:-358266 -) -(1,5829:13896092,22092269:358266,424981,115847 -k1,5829:13896092,22092269:3277 -h1,5829:14251081,22092269:0,411205,112570 -) -g1,5829:14453587,22092269 -g1,5829:15844261,22092269 -g1,5829:17226415,22092269 -g1,5829:18038406,22092269 -g1,5829:19256720,22092269 -g1,5829:20638874,22092269 -g1,5829:21497395,22092269 -g1,5829:22715709,22092269 -k1,5830:32583029,22092269:8525143 -g1,5830:32583029,22092269 -) -(1,5831:7202902,23458045:25380127,513147,126483 -(1,5830:7202902,23458045:0,355205,0 -g1,5830:7202902,23458045 -g1,5830:5892182,23458045 -g1,5830:5564502,23458045 -(1,5830:5564502,23458045:1310720,355205,0 -k1,5830:6875222,23458045:1310720 -(1,5830:6875222,23458045:0,355205,0 -k1,5830:6476763,23458045:-398459 -) -) -g1,5830:7202902,23458045 -) -g1,5830:8598818,23458045 -g1,5830:9212890,23458045 -g1,5830:12928781,23458045 -g1,5830:14119570,23458045 -g1,5830:14934837,23458045 -g1,5830:16153151,23458045 -g1,5830:17335420,23458045 -g1,5830:18150687,23458045 -g1,5830:19369001,23458045 -g1,5830:21307556,23458045 -g1,5830:22791291,23458045 -g1,5830:24370708,23458045 -g1,5830:26191953,23458045 -g1,5830:27138948,23458045 -k1,5831:32583029,23458045:2437289 -g1,5831:32583029,23458045 -) -(1,5832:7202902,24823821:25380127,513147,134348 -(1,5831:7202902,24823821:0,355205,0 -g1,5831:7202902,24823821 -g1,5831:5892182,24823821 -g1,5831:5564502,24823821 -(1,5831:5564502,24823821:1310720,355205,0 -k1,5831:6875222,24823821:1310720 -(1,5831:6875222,24823821:0,355205,0 -k1,5831:6476763,24823821:-398459 -) -) -g1,5831:7202902,24823821 -) -g1,5831:7816974,24823821 -g1,5831:10177580,24823821 -g1,5831:11852024,24823821 -g1,5831:13034293,24823821 -g1,5831:15301838,24823821 -g1,5831:17674241,24823821 -g1,5831:18489508,24823821 -g1,5831:19479101,24823821 -g1,5831:20361215,24823821 -k1,5832:32583029,24823821:11257780 -g1,5832:32583029,24823821 -) -(1,5835:6630773,26189597:25952256,513147,126483 -h1,5834:6630773,26189597:983040,0,0 -k1,5834:8974102,26189597:163602 -k1,5834:12654365,26189597:163601 -k1,5834:13434005,26189597:163602 -k1,5834:14616692,26189597:163602 -k1,5834:16006472,26189597:163601 -k1,5834:17326784,26189597:163602 -k1,5834:18481945,26189597:163601 -k1,5834:20231518,26189597:163602 -k1,5834:23985182,26189597:163602 -k1,5834:25340228,26189597:163601 -k1,5834:28565017,26189597:163602 -k1,5834:32583029,26189597:0 -) -(1,5835:6630773,27031085:25952256,513147,134348 -k1,5834:8433283,27031085:234889 -k1,5834:9687256,27031085:234888 -k1,5834:11410468,27031085:234889 -k1,5834:12296785,27031085:234889 -k1,5834:13550758,27031085:234888 -k1,5834:14968572,27031085:234889 -k1,5834:15862753,27031085:234889 -k1,5834:17116726,27031085:234888 -k1,5834:18508325,27031085:234889 -k1,5834:19429375,27031085:234888 -k1,5834:23473872,27031085:234889 -k1,5834:24324799,27031085:234889 -k1,5834:25578772,27031085:234888 -k1,5834:28603529,27031085:234889 -k1,5834:29791967,27031085:234889 -k1,5834:31119340,27031085:234888 -$1,5834:31119340,27031085 -$1,5834:31696712,27031085 -k1,5834:31931601,27031085:234889 -k1,5834:32583029,27031085:0 -) -(1,5835:6630773,27872573:25952256,505283,126483 -g1,5834:9871528,27872573 -g1,5834:13297750,27872573 -g1,5834:17013641,27872573 -g1,5834:17828908,27872573 -g1,5834:19047222,27872573 -k1,5835:32583029,27872573:11531061 -g1,5835:32583029,27872573 -) -(1,5850:6630773,41798920:25952256,13078968,0 -k1,5850:16796775,41798920:10166002 -(1,5836:16796775,41798920:0,0,0 -g1,5836:16796775,41798920 -g1,5836:16796775,41798920 -g1,5836:16469095,41798920 -(1,5836:16469095,41798920:0,0,0 -) -g1,5836:16796775,41798920 -) -(1,5848:16796775,41798920:5620252,13078968,0 -g1,5848:19606901,41798920 -(1,5848:19606901,29665398:0,0,0 -(1,5848:19606901,29665398:0,0,0 -g1,5838:19606901,29665398 -(1,5839:19606901,29665398:0,0,0 -(1,5839:19606901,29665398:0,0,0 -g1,5839:19606901,29665398 -g1,5839:19606901,29665398 -g1,5839:19606901,29665398 -g1,5839:19606901,29665398 -g1,5839:19606901,29665398 -(1,5839:19606901,29665398:0,0,0 -(1,5839:19606901,29665398:3308914,426443,113835 -(1,5839:19606901,29665398:3308914,426443,113835 -g1,5839:20866176,29665398 -g1,5839:21556860,29665398 -) -g1,5839:22915815,29665398 -) -) -g1,5839:19606901,29665398 -g1,5839:19606901,29665398 -) -) -g1,5839:19606901,29665398 -g1,5840:19606901,29665398 -(1,5840:19606901,29665398:0,0,0 -(1,5840:19606901,29665398:0,0,0 -g1,5840:19606901,29665398 -g1,5840:19606901,29665398 -g1,5840:19606901,29665398 -g1,5840:19606901,29665398 -g1,5840:19606901,29665398 -(1,5840:19606901,29665398:0,0,0 -(1,5840:19606901,29665398:4121582,373362,104590 -(1,5840:19606901,29665398:4121582,373362,104590 -(1,5840:19606901,29665398:0,373362,104590 -r1,5854:23728483,29665398:4121582,477952,104590 -k1,5840:19606901,29665398:-4121582 -) -(1,5840:19606901,29665398:4121582,373362,104590 -g1,5840:23092125,29665398 -h1,5840:23725206,29665398:0,370085,101313 -) -) -g1,5840:23728483,29665398 -) -) -g1,5840:19606901,29665398 -g1,5840:19606901,29665398 -) -) -g1,5840:19606901,29665398 -g1,5841:19606901,29665398 -(1,5841:19606901,29665398:0,0,0 -(1,5841:19606901,29665398:0,0,0 -g1,5841:19606901,29665398 -g1,5841:19606901,29665398 -g1,5841:19606901,29665398 -g1,5841:19606901,29665398 -g1,5841:19606901,29665398 -(1,5841:19606901,29665398:0,0,0 -(1,5841:19606901,29665398:4121582,373362,104590 -(1,5841:19606901,29665398:4121582,373362,104590 -(1,5841:19606901,29665398:0,373362,104590 -r1,5854:23728483,29665398:4121582,477952,104590 -k1,5841:19606901,29665398:-4121582 -) -(1,5841:19606901,29665398:4121582,373362,104590 -g1,5841:23092125,29665398 -h1,5841:23725206,29665398:0,370085,101313 -) -) -g1,5841:23728483,29665398 -) -) -g1,5841:19606901,29665398 -g1,5841:19606901,29665398 -) -) -g1,5841:19606901,29665398 -g1,5842:19606901,29665398 -(1,5842:19606901,29665398:0,0,0 -(1,5842:19606901,29665398:0,0,0 -g1,5842:19606901,29665398 -g1,5842:19606901,29665398 -g1,5842:19606901,29665398 -g1,5842:19606901,29665398 -g1,5842:19606901,29665398 -(1,5842:19606901,29665398:0,0,0 -(1,5842:19606901,29665398:519635,224133,0 -(1,5842:19606901,29665398:519635,224133,0 -$1,5842:19606901,29665398 -$1,5842:20126536,29665398 -) -g1,5842:20126536,29665398 -) -) -g1,5842:19606901,29665398 -g1,5842:19606901,29665398 -) -) -g1,5842:19606901,29665398 -g1,5843:19606901,29665398 -(1,5843:19606901,29665398:0,0,0 -(1,5843:19606901,29665398:0,0,0 -g1,5843:19606901,29665398 -g1,5843:19606901,29665398 -g1,5843:19606901,29665398 -g1,5843:19606901,29665398 -g1,5843:19606901,29665398 -(1,5843:19606901,29665398:0,0,0 -(1,5843:19606901,29665398:3931768,454754,7077 -(1,5843:19606901,29665398:3931768,454754,7077 -g1,5843:21779813,29665398 -g1,5843:22470497,29665398 -) -g1,5843:23538669,29665398 -) -) -g1,5843:19606901,29665398 -g1,5843:19606901,29665398 -) -) -g1,5843:19606901,29665398 -g1,5844:19606901,29665398 -g1,5844:19606901,29665398 -g1,5844:19606901,29665398 -g1,5844:19606901,29665398 -g1,5844:19606901,29665398 -g1,5844:19606901,29665398 -g1,5844:19606901,29665398 -g1,5844:19606901,29665398 -g1,5844:19606901,29665398 -g1,5844:19606901,29665398 -g1,5844:19606901,29665398 -g1,5845:19606901,29665398 -g1,5845:19606901,29665398 -g1,5845:19606901,29665398 -g1,5845:19606901,29665398 -g1,5845:19606901,29665398 -g1,5845:19606901,29665398 -g1,5846:19606901,29665398 -g1,5846:19606901,29665398 -g1,5846:19606901,29665398 -g1,5846:19606901,29665398 -g1,5846:19606901,29665398 -g1,5846:19606901,29665398 -g1,5847:19606901,29665398 -g1,5847:19606901,29665398 -g1,5847:19606901,29665398 -g1,5847:19606901,29665398 -g1,5847:19606901,29665398 -g1,5847:19606901,29665398 -g1,5848:19606901,29665398 -g1,5848:19606901,29665398 -) -g1,5848:19606901,29665398 -) -) -g1,5850:22417027,41798920 -k1,5850:32583029,41798920:10166002 -) -(1,5853:6630773,43295768:25952256,505283,134348 -h1,5852:6630773,43295768:983040,0,0 -k1,5852:8597508,43295768:165806 -k1,5852:9631666,43295768:165806 -k1,5852:10929934,43295768:165806 -k1,5852:12120723,43295768:165806 -k1,5852:13740118,43295768:165806 -k1,5852:14521962,43295768:165806 -k1,5852:15706853,43295768:165806 -k1,5852:18463953,43295768:165806 -k1,5852:20125946,43295768:165806 -k1,5852:23808414,43295768:165806 -k1,5852:25078502,43295768:165806 -k1,5852:25992074,43295768:165806 -k1,5852:29290501,43295768:165806 -k1,5852:30723773,43295768:165806 -k1,5852:32583029,43295768:0 -) -(1,5853:6630773,44137256:25952256,505283,126483 -k1,5852:10311340,44137256:163905 -k1,5852:11666691,44137256:163906 -k1,5852:14891783,44137256:163905 -k1,5852:19215259,44137256:163906 -k1,5852:21589038,44137256:163905 -k1,5852:25277469,44137256:163905 -k1,5852:27326846,44137256:163906 -k1,5852:29502706,44137256:163905 -k1,5852:30411756,44137256:163906 -k1,5852:31227089,44137256:163905 -k1,5853:32583029,44137256:0 -) -(1,5853:6630773,44978744:25952256,513147,126483 -k1,5852:8010251,44978744:234564 -k1,5852:9263900,44978744:234564 -k1,5852:11994731,44978744:234565 -k1,5852:15169240,44978744:234564 -k1,5852:16063096,44978744:234564 -k1,5852:19358847,44978744:234564 -k1,5852:23283743,44978744:234564 -k1,5852:25704588,44978744:234564 -k1,5852:27469419,44978744:234565 -k1,5852:28355411,44978744:234564 -k1,5852:30914537,44978744:234564 -k1,5852:32168186,44978744:234564 -k1,5853:32583029,44978744:0 -) -] -(1,5854:32583029,45706769:0,0,0 -g1,5854:32583029,45706769 -) -) -] -(1,5854:6630773,47279633:25952256,0,0 -h1,5854:6630773,47279633:25952256,0,0 -) -] -(1,5854:4262630,4025873:0,0,0 -[1,5854:-473656,4025873:0,0,0 -(1,5854:-473656,-710413:0,0,0 -(1,5854:-473656,-710413:0,0,0 -g1,5854:-473656,-710413 -) -g1,5854:-473656,-710413 -) -] -) -] -!20058 -}109 -Input:813:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:814:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:815:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:816:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!376 -{110 -[1,5904:4262630,47279633:28320399,43253760,0 -(1,5904:4262630,4025873:0,0,0 -[1,5904:-473656,4025873:0,0,0 -(1,5904:-473656,-710413:0,0,0 -(1,5904:-473656,-644877:0,0,0 -k1,5904:-473656,-644877:-65536 -) -(1,5904:-473656,4736287:0,0,0 -k1,5904:-473656,4736287:5209943 -) -g1,5904:-473656,-710413 -) -] -) -[1,5904:6630773,47279633:25952256,43253760,0 -[1,5904:6630773,4812305:25952256,786432,0 -(1,5904:6630773,4812305:25952256,485622,134348 -(1,5904:6630773,4812305:25952256,485622,134348 -g1,5904:3078558,4812305 -[1,5904:3078558,4812305:0,0,0 -(1,5904:3078558,2439708:0,1703936,0 -k1,5904:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,5904:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,5904:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,5904:3078558,4812305:0,0,0 -(1,5904:3078558,2439708:0,1703936,0 -g1,5904:29030814,2439708 -g1,5904:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,5904:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,5904:37855564,2439708:1179648,16384,0 -) -) -k1,5904:3078556,2439708:-34777008 -) -] -[1,5904:3078558,4812305:0,0,0 -(1,5904:3078558,49800853:0,16384,2228224 -k1,5904:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,5904:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,5904:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,5904:3078558,4812305:0,0,0 -(1,5904:3078558,49800853:0,16384,2228224 -g1,5904:29030814,49800853 -g1,5904:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,5904:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,5904:37855564,49800853:1179648,16384,0 -) -) -k1,5904:3078556,49800853:-34777008 -) -] -g1,5904:6630773,4812305 -g1,5904:6630773,4812305 -g1,5904:9132937,4812305 -g1,5904:11356573,4812305 -k1,5904:31786111,4812305:20429538 -) -) -] -[1,5904:6630773,45706769:25952256,40108032,0 -(1,5904:6630773,45706769:25952256,40108032,0 -(1,5904:6630773,45706769:0,0,0 -g1,5904:6630773,45706769 -) -[1,5904:6630773,45706769:25952256,40108032,0 -(1,5853:6630773,6254097:25952256,505283,134348 -k1,5852:9093968,6254097:205480 -k1,5852:9927284,6254097:205481 -k1,5852:12798769,6254097:205480 -k1,5852:13655678,6254097:205481 -k1,5852:15599173,6254097:205480 -k1,5852:17344750,6254097:205481 -k1,5852:18008327,6254097:205480 -k1,5852:18745305,6254097:205481 -k1,5852:22160083,6254097:205480 -k1,5852:23650070,6254097:205481 -k1,5852:26016927,6254097:205480 -k1,5852:27213968,6254097:205481 -k1,5852:28705264,6254097:205480 -k1,5853:32583029,6254097:0 -) -(1,5853:6630773,7095585:25952256,505283,134348 -k1,5852:8151700,7095585:212173 -k1,5852:9015300,7095585:212172 -k1,5852:11951805,7095585:212173 -k1,5852:16389084,7095585:212173 -k1,5852:16957116,7095585:212172 -k1,5852:18699555,7095585:212173 -k1,5852:21169443,7095585:212173 -k1,5852:22882389,7095585:212172 -k1,5852:24286007,7095585:212173 -k1,5852:27778912,7095585:212173 -k1,5852:31261331,7095585:212172 -k1,5852:32124932,7095585:212173 -k1,5852:32583029,7095585:0 -) -(1,5853:6630773,7937073:25952256,473825,126483 -g1,5852:7821562,7937073 -k1,5853:32583030,7937073:21378500 -g1,5853:32583030,7937073 -) -(1,5855:6630773,8778561:25952256,513147,134348 -h1,5854:6630773,8778561:983040,0,0 -k1,5854:8331058,8778561:247352 -k1,5854:9109906,8778561:247351 -k1,5854:10941263,8778561:247352 -k1,5854:13726168,8778561:247351 -k1,5854:14624948,8778561:247352 -k1,5854:16487106,8778561:247351 -k1,5854:18895835,8778561:247352 -k1,5854:19868015,8778561:247352 -k1,5854:21399872,8778561:247351 -k1,5854:23027412,8778561:247352 -k1,5854:24266323,8778561:247351 -k1,5854:29187703,8778561:247352 -k1,5854:30264084,8778561:247351 -k1,5854:32227169,8778561:247352 -k1,5854:32583029,8778561:0 -) -(1,5855:6630773,9620049:25952256,513147,134348 -k1,5854:8710528,9620049:248679 -k1,5854:13633235,9620049:248679 -k1,5854:15038625,9620049:248680 -k1,5854:16909320,9620049:248679 -k1,5854:19495668,9620049:248679 -k1,5854:21174343,9620049:248679 -k1,5854:22074450,9620049:248679 -k1,5854:25879768,9620049:248679 -k1,5854:26779876,9620049:248680 -k1,5854:28404811,9620049:248679 -k1,5854:29672575,9620049:248679 -k1,5854:32583029,9620049:0 -) -(1,5855:6630773,10461537:25952256,513147,126483 -k1,5854:8494365,10461537:176695 -k1,5854:10047316,10461537:176695 -k1,5854:10906896,10461537:176695 -k1,5854:13265285,10461537:176695 -k1,5854:14831343,10461537:176695 -k1,5854:16575659,10461537:176695 -k1,5854:18239366,10461537:176695 -k1,5854:21040123,10461537:176695 -k1,5854:22235903,10461537:176695 -k1,5854:23801961,10461537:176695 -k1,5854:26533249,10461537:176695 -k1,5854:27901389,10461537:176695 -k1,5854:30373155,10461537:176695 -k1,5854:32583029,10461537:0 -) -(1,5855:6630773,11303025:25952256,513147,126483 -k1,5854:8173141,11303025:151694 -k1,5854:9343920,11303025:151694 -k1,5854:11668788,11303025:151694 -k1,5854:12479774,11303025:151694 -k1,5854:13650553,11303025:151694 -k1,5854:16530511,11303025:151694 -k1,5854:18200674,11303025:151694 -k1,5854:20513744,11303025:151693 -k1,5854:21769720,11303025:151694 -k1,5854:22669180,11303025:151694 -k1,5854:24334100,11303025:151694 -k1,5854:25137222,11303025:151694 -k1,5854:27052490,11303025:151694 -k1,5854:28223269,11303025:151694 -k1,5854:30028436,11303025:151694 -k1,5854:32583029,11303025:0 -) -(1,5855:6630773,12144513:25952256,505283,134348 -k1,5854:9899943,12144513:158176 -k1,5854:10709547,12144513:158176 -k1,5854:12569692,12144513:158175 -k1,5854:14117231,12144513:158176 -k1,5854:16485281,12144513:158176 -k1,5854:17294885,12144513:158176 -k1,5854:20708889,12144513:158175 -k1,5854:21886150,12144513:158176 -k1,5854:23697799,12144513:158176 -k1,5854:26410568,12144513:158176 -k1,5854:27181506,12144513:158176 -k1,5854:27695541,12144513:158175 -k1,5854:29307306,12144513:158176 -k1,5854:31064560,12144513:158176 -k1,5854:32583029,12144513:0 -) -(1,5855:6630773,12986001:25952256,513147,126483 -g1,5854:8991379,12986001 -g1,5854:12393352,12986001 -g1,5854:13358697,12986001 -g1,5854:15243512,12986001 -g1,5854:16955967,12986001 -g1,5854:18102847,12986001 -g1,5854:19321161,12986001 -k1,5855:32583029,12986001:10533604 -g1,5855:32583029,12986001 -) -(1,5858:6630773,15077261:25952256,555811,139132 -(1,5858:6630773,15077261:2450326,534184,12975 -g1,5858:6630773,15077261 -g1,5858:9081099,15077261 -) -g1,5858:10960475,15077261 -g1,5858:12100212,15077261 -g1,5858:13364664,15077261 -g1,5858:14843943,15077261 -g1,5858:15469681,15077261 -k1,5858:32583029,15077261:14663743 -g1,5858:32583029,15077261 -) -(1,5862:6630773,16311965:25952256,513147,134348 -k1,5861:7402036,16311965:283675 -k1,5861:9516873,16311965:283761 -k1,5861:10904915,16311965:283760 -k1,5861:11936441,16311965:283760 -k1,5861:15350200,16311965:283760 -k1,5861:17369353,16311965:283760 -k1,5861:20348610,16311965:283761 -(1,5861:20348610,16311965:0,452978,115847 -r1,5904:23168859,16311965:2820249,568825,115847 -k1,5861:20348610,16311965:-2820249 -) -(1,5861:20348610,16311965:2820249,452978,115847 -k1,5861:20348610,16311965:3277 -h1,5861:23165582,16311965:0,411205,112570 -) -k1,5861:23626289,16311965:283760 -k1,5861:24387806,16311965:283760 -k1,5861:25539918,16311965:283760 -k1,5861:27298893,16311965:283760 -k1,5861:27938514,16311965:283761 -k1,5861:29448453,16311965:283760 -k1,5861:30715253,16311965:283760 -k1,5862:32583029,16311965:0 -) -(1,5862:6630773,17153453:25952256,513147,134348 -g1,5861:13548098,17153453 -g1,5861:17109324,17153453 -g1,5861:18327638,17153453 -g1,5861:21502202,17153453 -k1,5862:32583029,17153453:9680978 -g1,5862:32583029,17153453 -) -v1,5862:6630773,18519229:0,393216,0 -(1,5868:6630773,19303896:25952256,1177883,589824 -k1,5868:6040949,19303896:-589824 -(1,5868:6040949,19303896:0,1177883,589824 -r1,5904:33172853,19303896:27131904,1767707,589824 -k1,5868:6040949,19303896:-27131904 -) -(1,5868:6040949,19303896:27131904,1177883,589824 -[1,5868:6630773,19303896:25952256,588059,0 -(1,5867:6630773,19126355:25952256,410518,101187 -(1,5864:6630773,19126355:0,0,0 -g1,5864:6630773,19126355 -g1,5864:6630773,19126355 -g1,5864:6303093,19126355 -(1,5864:6303093,19126355:0,0,0 -) -g1,5864:6630773,19126355 -) -g1,5867:7263065,19126355 -g1,5867:8843794,19126355 -g1,5867:9792231,19126355 -g1,5867:10740668,19126355 -g1,5867:12637542,19126355 -g1,5867:13269834,19126355 -h1,5867:15166708,19126355:0,0,0 -k1,5867:32583028,19126355:17416320 -g1,5867:32583028,19126355 -) -(1,5867:6630773,19792533:25952256,404226,101187 -h1,5867:6630773,19792533:0,0,0 -g1,5867:9159939,19792533 -g1,5867:9792231,19792533 -h1,5867:10424522,19792533:0,0,0 -k1,5867:32583030,19792533:22158508 -g1,5867:32583030,19792533 -) -] -) -k1,5868:32583029,19303896:-589824 -) -h1,5868:6630773,19893720:0,0,0 -(1,5871:6630773,21259496:25952256,513147,7863 -h1,5870:6630773,21259496:983040,0,0 -g1,5870:9004487,21259496 -g1,5870:10637644,21259496 -g1,5870:12945822,21259496 -g1,5870:14348292,21259496 -k1,5871:32583030,21259496:17078028 -g1,5871:32583030,21259496 -) -v1,5873:6630773,22449962:0,393216,0 -(1,5880:6630773,23471607:25952256,1414861,196608 -g1,5880:6630773,23471607 -g1,5880:6630773,23471607 -g1,5880:6434165,23471607 -(1,5880:6434165,23471607:0,1414861,196608 -r1,5904:32779637,23471607:26345472,1611469,196608 -k1,5880:6434165,23471607:-26345472 -) -(1,5880:6434165,23471607:26345472,1414861,196608 -[1,5880:6630773,23471607:25952256,1218253,0 -(1,5875:6630773,22663872:25952256,410518,101187 -(1,5874:6630773,22663872:0,0,0 -g1,5874:6630773,22663872 -g1,5874:6630773,22663872 -g1,5874:6303093,22663872 -(1,5874:6303093,22663872:0,0,0 -) -g1,5874:6630773,22663872 -) -k1,5875:6630773,22663872:0 -h1,5875:15166707,22663872:0,0,0 -k1,5875:32583029,22663872:17416322 -g1,5875:32583029,22663872 -) -(1,5879:6630773,23395586:25952256,404226,76021 -(1,5877:6630773,23395586:0,0,0 -g1,5877:6630773,23395586 -g1,5877:6630773,23395586 -g1,5877:6303093,23395586 -(1,5877:6303093,23395586:0,0,0 -) -g1,5877:6630773,23395586 -) -g1,5879:7579210,23395586 -g1,5879:8843793,23395586 -h1,5879:9159939,23395586:0,0,0 -k1,5879:32583029,23395586:23423090 -g1,5879:32583029,23395586 -) -] -) -g1,5880:32583029,23471607 -g1,5880:6630773,23471607 -g1,5880:6630773,23471607 -g1,5880:32583029,23471607 -g1,5880:32583029,23471607 -) -h1,5880:6630773,23668215:0,0,0 -(1,5884:6630773,25033991:25952256,513147,134348 -h1,5883:6630773,25033991:983040,0,0 -k1,5883:9013157,25033991:202657 -k1,5883:11388989,25033991:202658 -k1,5883:12250938,25033991:202657 -k1,5883:15508884,25033991:202658 -k1,5883:16730626,25033991:202657 -k1,5883:20449946,25033991:202658 -k1,5883:23792433,25033991:202657 -k1,5883:24611129,25033991:202658 -k1,5883:25832871,25033991:202657 -k1,5883:27018569,25033991:202658 -k1,5883:28353688,25033991:202657 -k1,5883:30745249,25033991:202658 -k1,5883:31563944,25033991:202657 -k1,5883:32583029,25033991:0 -) -(1,5884:6630773,25875479:25952256,513147,126483 -k1,5883:9448384,25875479:223696 -k1,5883:10868767,25875479:223696 -k1,5883:14582255,25875479:223696 -k1,5883:18362590,25875479:223696 -k1,5883:19577846,25875479:223696 -k1,5883:20867814,25875479:223697 -k1,5883:23167035,25875479:223696 -k1,5883:24359353,25875479:223696 -k1,5883:26848629,25875479:223696 -k1,5883:28091410,25875479:223696 -k1,5883:30844796,25875479:223696 -k1,5883:32051532,25875479:223696 -k1,5883:32583029,25875479:0 -) -(1,5884:6630773,26716967:25952256,505283,126483 -k1,5883:7921645,26716967:224601 -k1,5883:10358741,26716967:224601 -k1,5883:11234770,26716967:224601 -k1,5883:12478457,26716967:224602 -k1,5883:15330396,26716967:224601 -k1,5883:16746442,26716967:224601 -k1,5883:17990128,26716967:224601 -k1,5883:20387903,26716967:224601 -k1,5883:21744966,26716967:224601 -k1,5883:23035838,26716967:224601 -k1,5883:24008206,26716967:224602 -k1,5883:26582928,26716967:224601 -k1,5883:28850286,26716967:224601 -k1,5883:30245360,26716967:224601 -k1,5883:32583029,26716967:0 -) -(1,5884:6630773,27558455:25952256,505283,126483 -k1,5883:9123073,27558455:161184 -(1,5883:9123073,27558455:0,452978,115847 -r1,5904:11591610,27558455:2468537,568825,115847 -k1,5883:9123073,27558455:-2468537 -) -(1,5883:9123073,27558455:2468537,452978,115847 -k1,5883:9123073,27558455:3277 -h1,5883:11588333,27558455:0,411205,112570 -) -k1,5883:11752794,27558455:161184 -k1,5883:15403770,27558455:161184 -k1,5883:16180992,27558455:161184 -k1,5883:17361261,27558455:161184 -k1,5883:19527191,27558455:161184 -k1,5883:21069218,27558455:161183 -k1,5883:23511710,27558455:161184 -k1,5883:24288932,27558455:161184 -k1,5883:26201893,27558455:161184 -k1,5883:28060459,27558455:161184 -k1,5883:29507459,27558455:161184 -k1,5883:30320071,27558455:161184 -k1,5884:32583029,27558455:0 -) -(1,5884:6630773,28399943:25952256,513147,134348 -k1,5883:8049941,28399943:176605 -k1,5883:8582405,28399943:176604 -k1,5883:10614334,28399943:176605 -k1,5883:13141060,28399943:176605 -k1,5883:14711616,28399943:176605 -(1,5883:14711616,28399943:0,452978,122846 -r1,5904:17531865,28399943:2820249,575824,122846 -k1,5883:14711616,28399943:-2820249 -) -(1,5883:14711616,28399943:2820249,452978,122846 -k1,5883:14711616,28399943:3277 -h1,5883:17528588,28399943:0,411205,112570 -) -k1,5883:17708469,28399943:176604 -k1,5883:19745641,28399943:176605 -k1,5883:20573674,28399943:176605 -k1,5883:21498045,28399943:176605 -k1,5883:24024770,28399943:176604 -k1,5883:24667336,28399943:176605 -k1,5883:25712293,28399943:176605 -k1,5883:27437514,28399943:176605 -k1,5883:28072215,28399943:176604 -k1,5883:28900248,28399943:176605 -k1,5883:29824619,28399943:176605 -k1,5883:32583029,28399943:0 -) -(1,5884:6630773,29241431:25952256,505283,134348 -g1,5883:7446040,29241431 -g1,5883:8664354,29241431 -g1,5883:11022339,29241431 -g1,5883:12919606,29241431 -g1,5883:14137920,29241431 -g1,5883:16168225,29241431 -g1,5883:16898951,29241431 -g1,5883:18389895,29241431 -g1,5883:20908443,29241431 -g1,5883:21463532,29241431 -g1,5883:24997233,29241431 -(1,5883:24997233,29241431:0,452978,115847 -r1,5904:27465770,29241431:2468537,568825,115847 -k1,5883:24997233,29241431:-2468537 -) -(1,5883:24997233,29241431:2468537,452978,115847 -k1,5883:24997233,29241431:3277 -h1,5883:27462493,29241431:0,411205,112570 -) -g1,5883:27664999,29241431 -g1,5883:28395725,29241431 -k1,5884:32583029,29241431:1121530 -g1,5884:32583029,29241431 -) -(1,5886:6630773,30082919:25952256,513147,126483 -h1,5885:6630773,30082919:983040,0,0 -k1,5885:9487365,30082919:211559 -k1,5885:11708913,30082919:211559 -k1,5885:14518320,30082919:211560 -k1,5885:15195840,30082919:211559 -k1,5885:16577872,30082919:211559 -k1,5885:18264646,30082919:211559 -k1,5885:19246908,30082919:211559 -k1,5885:19873298,30082919:211547 -k1,5885:21915934,30082919:211560 -k1,5885:23704945,30082919:211559 -k1,5885:24532542,30082919:211559 -k1,5885:25763186,30082919:211559 -k1,5885:28057479,30082919:211559 -k1,5885:29923823,30082919:211560 -k1,5885:31267844,30082919:211559 -k1,5885:32227169,30082919:211559 -k1,5885:32583029,30082919:0 -) -(1,5886:6630773,30924407:25952256,513147,126483 -k1,5885:9483446,30924407:143415 -k1,5885:10971003,30924407:143414 -k1,5885:13157175,30924407:143415 -k1,5885:14694541,30924407:143415 -k1,5885:15608658,30924407:143414 -k1,5885:18494099,30924407:143415 -k1,5885:22125995,30924407:143415 -k1,5885:24066406,30924407:143414 -k1,5885:25777442,30924407:143415 -k1,5885:27806328,30924407:143415 -k1,5885:29120215,30924407:143414 -k1,5885:30367912,30924407:143415 -k1,5885:32583029,30924407:0 -) -(1,5886:6630773,31765895:25952256,513147,134348 -k1,5885:9532941,31765895:168006 -k1,5885:10387109,31765895:168006 -k1,5885:13645138,31765895:168006 -k1,5885:15842139,31765895:168006 -k1,5885:16693030,31765895:168006 -k1,5885:19295043,31765895:168006 -k1,5885:20857000,31765895:168006 -k1,5885:22989121,31765895:168007 -k1,5885:23840012,31765895:168006 -k1,5885:26442025,31765895:168006 -k1,5885:27296193,31765895:168006 -k1,5885:28958420,31765895:168006 -k1,5885:30448287,31765895:168006 -k1,5885:31563944,31765895:168006 -k1,5885:32583029,31765895:0 -) -(1,5886:6630773,32607383:25952256,505283,126483 -g1,5885:8661078,32607383 -g1,5885:9476345,32607383 -g1,5885:10694659,32607383 -g1,5885:13804342,32607383 -g1,5885:15855618,32607383 -g1,5885:17963911,32607383 -k1,5886:32583029,32607383:13432261 -g1,5886:32583029,32607383 -) -(1,5888:6630773,33448871:25952256,513147,134348 -h1,5887:6630773,33448871:983040,0,0 -k1,5887:9589437,33448871:192389 -k1,5887:10137686,33448871:192389 -k1,5887:12161151,33448871:192389 -k1,5887:12885037,33448871:192389 -k1,5887:15684448,33448871:192389 -k1,5887:16895922,33448871:192389 -k1,5887:19247067,33448871:192389 -k1,5887:20543738,33448871:192389 -k1,5887:21483894,33448871:192390 -k1,5887:23487698,33448871:192389 -k1,5887:24331515,33448871:192389 -k1,5887:24879764,33448871:192389 -k1,5887:26298332,33448871:192389 -k1,5887:27473761,33448871:192389 -k1,5887:29993333,33448871:192389 -k1,5887:30845014,33448871:192389 -k1,5887:32583029,33448871:0 -) -(1,5888:6630773,34290359:25952256,513147,134348 -k1,5887:8907894,34290359:201596 -k1,5887:9725529,34290359:201597 -k1,5887:10946210,34290359:201596 -k1,5887:13741721,34290359:201596 -k1,5887:14413210,34290359:201596 -k1,5887:15146304,34290359:201597 -k1,5887:16633716,34290359:201596 -k1,5887:18229918,34290359:201596 -k1,5887:19082942,34290359:201596 -k1,5887:20384233,34290359:201597 -k1,5887:21000670,34290359:201594 -k1,5887:22596217,34290359:201596 -k1,5887:23816898,34290359:201596 -k1,5887:24433335,34290359:201594 -k1,5887:26466007,34290359:201596 -k1,5887:27650643,34290359:201596 -k1,5887:28538402,34290359:201597 -k1,5887:29510701,34290359:201596 -k1,5887:32583029,34290359:0 -) -(1,5888:6630773,35131847:25952256,505283,134348 -k1,5887:9242455,35131847:197336 -k1,5887:10052553,35131847:197336 -k1,5887:11268974,35131847:197336 -k1,5887:14520288,35131847:197336 -k1,5887:16963543,35131847:197336 -k1,5887:18663620,35131847:197336 -k1,5887:19543841,35131847:197336 -k1,5887:26571339,35131847:197336 -k1,5887:31016719,35131847:197336 -k1,5888:32583029,35131847:0 -) -(1,5888:6630773,35973335:25952256,513147,126483 -k1,5887:8513269,35973335:176594 -k1,5887:9975680,35973335:176595 -k1,5887:11719895,35973335:176594 -k1,5887:13399230,35973335:176594 -k1,5887:15910873,35973335:176595 -k1,5887:17284154,35973335:176594 -k1,5887:18844868,35973335:176594 -k1,5887:20193901,35973335:176594 -k1,5887:22671465,35973335:176595 -k1,5887:24508741,35973335:176594 -k1,5887:28175127,35973335:176594 -k1,5887:30774588,35973335:176595 -k1,5887:31563944,35973335:176594 -k1,5887:32583029,35973335:0 -) -(1,5888:6630773,36814823:25952256,505283,126483 -g1,5887:7694422,36814823 -g1,5887:9396392,36814823 -g1,5887:12755112,36814823 -g1,5887:15355580,36814823 -g1,5887:17506471,36814823 -g1,5887:19148147,36814823 -g1,5887:19960138,36814823 -g1,5887:21178452,36814823 -g1,5887:21792524,36814823 -g1,5887:25151244,36814823 -k1,5888:32583029,36814823:4856875 -g1,5888:32583029,36814823 -) -v1,5888:6630773,38180599:0,393216,0 -(1,5893:6630773,38377207:25952256,589824,589824 -k1,5893:6040949,38377207:-589824 -(1,5893:6040949,38377207:0,589824,589824 -r1,5904:33172853,38377207:27131904,1179648,589824 -k1,5893:6040949,38377207:-27131904 -) -(1,5893:6040949,38377207:27131904,589824,589824 -[1,5893:6630773,38377207:25952256,-78119,0 -(1,5892:6630773,38865844:25952256,410518,101187 -(1,5890:6630773,38865844:0,0,0 -g1,5890:6630773,38865844 -g1,5890:6630773,38865844 -g1,5890:6303093,38865844 -(1,5890:6303093,38865844:0,0,0 -) -g1,5890:6630773,38865844 -) -k1,5892:6630773,38865844:0 -g1,5892:7263065,38865844 -g1,5892:9792231,38865844 -h1,5892:15166708,38865844:0,0,0 -k1,5892:32583028,38865844:17416320 -g1,5892:32583028,38865844 -) -] -) -k1,5893:32583029,38377207:-589824 -) -h1,5893:6630773,38967031:0,0,0 -(1,5896:6630773,40332807:25952256,513147,134348 -h1,5895:6630773,40332807:983040,0,0 -k1,5895:9098103,40332807:230586 -k1,5895:10432971,40332807:230586 -k1,5895:12241009,40332807:230586 -k1,5895:13242297,40332807:230585 -k1,5895:16526861,40332807:230586 -k1,5895:19507338,40332807:230586 -k1,5895:21191512,40332807:230586 -k1,5895:22989719,40332807:230586 -k1,5895:24239390,40332807:230586 -k1,5895:26228961,40332807:230585 -k1,5895:28256544,40332807:230586 -k1,5895:29103168,40332807:230586 -k1,5895:31931601,40332807:230586 -k1,5895:32583029,40332807:0 -) -(1,5896:6630773,41174295:25952256,513147,126483 -k1,5895:7895093,41174295:146276 -k1,5895:9244611,41174295:146277 -k1,5895:12724048,41174295:146276 -k1,5895:14067011,41174295:146276 -k1,5895:16372043,41174295:146276 -k1,5895:17650782,41174295:146277 -k1,5895:18544824,41174295:146276 -k1,5895:21041221,41174295:146276 -k1,5895:21838925,41174295:146276 -k1,5895:23004287,41174295:146277 -k1,5895:24653304,41174295:146276 -k1,5895:27393495,41174295:146276 -k1,5895:28017528,41174295:146276 -k1,5895:29334278,41174295:146277 -k1,5895:31436804,41174295:146276 -k1,5895:32583029,41174295:0 -) -(1,5896:6630773,42015783:25952256,513147,134348 -g1,5895:7481430,42015783 -g1,5895:9071333,42015783 -g1,5895:10289647,42015783 -g1,5895:12647632,42015783 -g1,5895:13498289,42015783 -g1,5895:14053378,42015783 -g1,5895:15409317,42015783 -g1,5895:16701031,42015783 -g1,5895:20394640,42015783 -g1,5895:22329262,42015783 -g1,5895:23547576,42015783 -g1,5895:26800783,42015783 -g1,5895:29749903,42015783 -k1,5896:32583029,42015783:575411 -g1,5896:32583029,42015783 -) -v1,5896:6630773,43381559:0,393216,0 -(1,5901:6630773,43578167:25952256,589824,589824 -k1,5901:6040949,43578167:-589824 -(1,5901:6040949,43578167:0,589824,589824 -r1,5904:33172853,43578167:27131904,1179648,589824 -k1,5901:6040949,43578167:-27131904 -) -(1,5901:6040949,43578167:27131904,589824,589824 -[1,5901:6630773,43578167:25952256,-78119,0 -(1,5900:6630773,44066804:25952256,410518,101187 -(1,5898:6630773,44066804:0,0,0 -g1,5898:6630773,44066804 -g1,5898:6630773,44066804 -g1,5898:6303093,44066804 -(1,5898:6303093,44066804:0,0,0 -) -g1,5898:6630773,44066804 -) -k1,5900:6630773,44066804:0 -g1,5900:7263065,44066804 -g1,5900:9792231,44066804 -g1,5900:15482854,44066804 -g1,5900:16115146,44066804 -h1,5900:20225040,44066804:0,0,0 -k1,5900:32583029,44066804:12357989 -g1,5900:32583029,44066804 -) -] -) -k1,5901:32583029,43578167:-589824 -) -h1,5901:6630773,44167991:0,0,0 -(1,5904:6630773,45533767:25952256,513147,134348 -h1,5903:6630773,45533767:983040,0,0 -k1,5903:10634749,45533767:244176 -k1,5903:11410422,45533767:244176 -k1,5903:13008572,45533767:244176 -k1,5903:15229969,45533767:244176 -k1,5903:17172183,45533767:244176 -k1,5903:18435445,45533767:244177 -k1,5903:20510697,45533767:244176 -k1,5903:21286370,45533767:244176 -k1,5903:23477621,45533767:244176 -k1,5903:26566060,45533767:244176 -k1,5903:28499754,45533767:244176 -k1,5903:32227169,45533767:244176 -k1,5903:32583029,45533767:0 -) -] -(1,5904:32583029,45706769:0,0,0 -g1,5904:32583029,45706769 -) -) -] -(1,5904:6630773,47279633:25952256,0,0 -h1,5904:6630773,47279633:25952256,0,0 -) -] -(1,5904:4262630,4025873:0,0,0 -[1,5904:-473656,4025873:0,0,0 -(1,5904:-473656,-710413:0,0,0 -(1,5904:-473656,-710413:0,0,0 -g1,5904:-473656,-710413 -) -g1,5904:-473656,-710413 -) -] -) -] -!23364 -}110 -!12 -{111 -[1,5930:4262630,47279633:28320399,43253760,0 -(1,5930:4262630,4025873:0,0,0 -[1,5930:-473656,4025873:0,0,0 -(1,5930:-473656,-710413:0,0,0 -(1,5930:-473656,-644877:0,0,0 -k1,5930:-473656,-644877:-65536 -) -(1,5930:-473656,4736287:0,0,0 -k1,5930:-473656,4736287:5209943 -) -g1,5930:-473656,-710413 -) -] -) -[1,5930:6630773,47279633:25952256,43253760,0 -[1,5930:6630773,4812305:25952256,786432,0 -(1,5930:6630773,4812305:25952256,505283,134348 -(1,5930:6630773,4812305:25952256,505283,134348 -g1,5930:3078558,4812305 -[1,5930:3078558,4812305:0,0,0 -(1,5930:3078558,2439708:0,1703936,0 -k1,5930:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,5930:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,5930:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,5930:3078558,4812305:0,0,0 -(1,5930:3078558,2439708:0,1703936,0 -g1,5930:29030814,2439708 -g1,5930:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,5930:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,5930:37855564,2439708:1179648,16384,0 -) -) -k1,5930:3078556,2439708:-34777008 -) -] -[1,5930:3078558,4812305:0,0,0 -(1,5930:3078558,49800853:0,16384,2228224 -k1,5930:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,5930:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,5930:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,5930:3078558,4812305:0,0,0 -(1,5930:3078558,49800853:0,16384,2228224 -g1,5930:29030814,49800853 -g1,5930:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,5930:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,5930:37855564,49800853:1179648,16384,0 -) -) -k1,5930:3078556,49800853:-34777008 -) -] -g1,5930:6630773,4812305 -k1,5930:18771974,4812305:11344283 -g1,5930:20158715,4812305 -g1,5930:20807521,4812305 -g1,5930:24121676,4812305 -g1,5930:28605649,4812305 -g1,5930:30015328,4812305 -) -) -] -[1,5930:6630773,45706769:25952256,40108032,0 -(1,5930:6630773,45706769:25952256,40108032,0 -(1,5930:6630773,45706769:0,0,0 -g1,5930:6630773,45706769 -) -[1,5930:6630773,45706769:25952256,40108032,0 -(1,5904:6630773,6254097:25952256,505283,134348 -k1,5903:8907548,6254097:272029 -k1,5903:9862462,6254097:272029 -k1,5903:13582340,6254097:272029 -k1,5903:15552407,6254097:272029 -k1,5903:18006130,6254097:272029 -k1,5903:20444124,6254097:272029 -k1,5903:21872862,6254097:272028 -k1,5903:24432098,6254097:272029 -k1,5903:26583044,6254097:272029 -k1,5903:27506501,6254097:272029 -k1,5903:28896574,6254097:272029 -k1,5903:30058582,6254097:272029 -k1,5903:32583029,6254097:0 -) -(1,5904:6630773,7095585:25952256,609711,134348 -k1,5903:7993282,7095585:205799 -k1,5903:8881967,7095585:205800 -k1,5903:9443626,7095585:205799 -k1,5903:10782544,7095585:205800 -k1,5903:14505005,7095585:205799 -k1,5903:15323566,7095585:205799 -k1,5903:15885226,7095585:205800 -k1,5903:17690103,7095585:205799 -k1,5903:19276746,7095585:205799 -k1,5903:20586828,7095585:205800 -k1,5903:21540393,7095585:205799 -k1,5903:23323645,7095585:205800 -k1,5903:25264837,7095585:205799 -k1,5903:26489721,7095585:205799 -k1,5903:28413875,7095585:205800 -(1,5903:30552315,7095585:311689,609711,0 -$1,5903:30552315,7095585 -(1,5903:30552315,6820304:311689,334430,0 -) -$1,5903:30864004,7095585 -) -k1,5903:31069803,7095585:205799 -k1,5903:32583029,7095585:0 -) -(1,5904:6630773,7937073:25952256,505283,134348 -k1,5903:8714584,7937073:227831 -k1,5903:12546895,7937073:227831 -k1,5903:13793811,7937073:227831 -k1,5903:16071608,7937073:227831 -k1,5903:16915477,7937073:227831 -k1,5903:18162393,7937073:227831 -k1,5903:19558732,7937073:227832 -k1,5903:20437991,7937073:227831 -k1,5903:21413588,7937073:227831 -k1,5903:24648211,7937073:227831 -k1,5903:25558927,7937073:227831 -k1,5903:28597597,7937073:227831 -k1,5903:29844513,7937073:227831 -k1,5903:31298523,7937073:227831 -k1,5903:32583029,7937073:0 -) -(1,5904:6630773,8778561:25952256,513147,126483 -k1,5903:8050355,8778561:262872 -k1,5903:10269477,8778561:262872 -k1,5903:11678575,8778561:262873 -k1,5903:12592875,8778561:262872 -k1,5903:13973791,8778561:262872 -k1,5903:15462842,8778561:262872 -k1,5903:18314387,8778561:262873 -k1,5903:19803438,8778561:262872 -k1,5903:21170592,8778561:262872 -k1,5903:22181230,8778561:262872 -k1,5903:23765963,8778561:262872 -k1,5903:24688128,8778561:262873 -k1,5903:25306860,8778561:262872 -k1,5903:26911909,8778561:262872 -k1,5903:27530641,8778561:262872 -k1,5903:29676363,8778561:262873 -k1,5903:31281412,8778561:262872 -k1,5903:32227169,8778561:262872 -k1,5903:32583029,8778561:0 -) -(1,5904:6630773,9620049:25952256,513147,134348 -k1,5903:8773851,9620049:250398 -k1,5903:9683541,9620049:250398 -k1,5903:11606418,9620049:250398 -k1,5903:12542977,9620049:250397 -k1,5903:14182083,9620049:250398 -k1,5903:15118643,9620049:250398 -k1,5903:15827138,9620049:250398 -k1,5903:16609033,9620049:250398 -k1,5903:20830913,9620049:250398 -k1,5903:23002170,9620049:250397 -k1,5903:24449255,9620049:250398 -k1,5903:28703903,9620049:250398 -k1,5903:32051532,9620049:250398 -k1,5903:32583029,9620049:0 -) -(1,5904:6630773,10461537:25952256,505283,134348 -g1,5903:10134983,10461537 -g1,5903:10985640,10461537 -g1,5903:13892161,10461537 -g1,5903:15110475,10461537 -g1,5903:17028058,10461537 -g1,5903:19365727,10461537 -g1,5903:20180994,10461537 -k1,5904:32583029,10461537:9804188 -g1,5904:32583029,10461537 -) -(1,5905:6630773,12552797:25952256,555811,139132 -(1,5905:6630773,12552797:2450326,534184,12975 -g1,5905:6630773,12552797 -g1,5905:9081099,12552797 -) -g1,5905:10960475,12552797 -g1,5905:11910616,12552797 -g1,5905:14022842,12552797 -g1,5905:14648580,12552797 -k1,5905:32583029,12552797:15848897 -g1,5905:32583029,12552797 -) -(1,5909:6630773,13787501:25952256,513147,134348 -k1,5908:7705781,13787501:257119 -k1,5908:9356852,13787501:257120 -k1,5908:10745779,13787501:257120 -k1,5908:12388984,13787501:257119 -k1,5908:13305396,13787501:257120 -k1,5908:15993901,13787501:257119 -k1,5908:19013363,13787501:257119 -k1,5908:22932635,13787501:257120 -k1,5908:24526688,13787501:257119 -k1,5908:25531574,13787501:257120 -k1,5908:28802039,13787501:257120 -k1,5908:29820686,13787501:257119 -k1,5909:32583029,13787501:0 -) -(1,5909:6630773,14628989:25952256,513147,134348 -k1,5908:7328100,14628989:282484 -k1,5908:9495482,14628989:282567 -k1,5908:10405884,14628989:282567 -k1,5908:13195204,14628989:282568 -k1,5908:14496856,14628989:282567 -k1,5908:17763934,14628989:282568 -k1,5908:19733398,14628989:282567 -k1,5908:20698850,14628989:282567 -k1,5908:22167620,14628989:282568 -k1,5908:23109479,14628989:282567 -k1,5908:27227868,14628989:282567 -k1,5908:28642898,14628989:282568 -k1,5908:30211281,14628989:282567 -k1,5908:32583029,14628989:0 -) -(1,5909:6630773,15470477:25952256,513147,126483 -k1,5908:7640355,15470477:200212 -k1,5908:9170949,15470477:200213 -k1,5908:12384506,15470477:200212 -k1,5908:13755191,15470477:200212 -k1,5908:14946964,15470477:200213 -k1,5908:16431682,15470477:200212 -k1,5908:17650979,15470477:200212 -k1,5908:21367854,15470477:200213 -k1,5908:22700528,15470477:200212 -k1,5908:24497197,15470477:200212 -k1,5908:25383572,15470477:200213 -k1,5908:30248637,15470477:200212 -k1,5908:32583029,15470477:0 -) -(1,5909:6630773,16311965:25952256,513147,134348 -g1,5908:8552944,16311965 -g1,5908:9771258,16311965 -g1,5908:11305455,16311965 -g1,5908:14489194,16311965 -g1,5908:15549566,16311965 -g1,5908:16919268,16311965 -g1,5908:18110057,16311965 -g1,5908:21320665,16311965 -g1,5908:24282237,16311965 -k1,5909:32583029,16311965:4409920 -g1,5909:32583029,16311965 -) -(1,5911:7202902,17677741:25380127,513147,134348 -(1,5910:7202902,17677741:14421851,513147,126483 -g1,5910:6630773,17677741 -g1,5910:6630773,17677741 -g1,5910:6303093,17677741 -(1,5910:6303093,17677741:14993980,513147,126483 -g1,5910:6630773,17677741 -g1,5910:7336595,17677741 -g1,5910:8742342,17677741 -g1,5910:9503215,17677741 -g1,5910:11237953,17677741 -g1,5910:14019301,17677741 -g1,5910:15697022,17677741 -g1,5910:18184768,17677741 -) -g1,5910:21624753,17677741 -) -k1,5910:23180687,17677741:284536 -k1,5910:25421472,17677741:284535 -k1,5910:26934808,17677741:284536 -k1,5910:29148724,17677741:284536 -k1,5910:29789119,17677741:284535 -k1,5910:31356850,17677741:284536 -k1,5910:32583029,17677741:0 -) -(1,5911:7202902,18519229:25380127,513147,134348 -k1,5910:8327950,18519229:142008 -k1,5910:9661403,18519229:142008 -k1,5910:11418219,18519229:142009 -k1,5910:12579312,18519229:142008 -k1,5910:14604169,18519229:142008 -k1,5910:16408170,18519229:142008 -k1,5910:17166216,18519229:142008 -k1,5910:18327309,18519229:142008 -k1,5910:20552052,18519229:142009 -k1,5910:21885505,18519229:142008 -k1,5910:23461441,18519229:142008 -k1,5910:24794894,18519229:142008 -k1,5910:25568669,18519229:142008 -k1,5910:27091522,18519229:142009 -k1,5910:27765027,18519229:142008 -k1,5910:29858697,18519229:142008 -k1,5911:32583029,18519229:0 -k1,5911:32583029,18519229:0 -) -(1,5912:7202902,19885005:25380127,513147,126483 -(1,5911:7202902,19885005:15082454,513147,126483 -g1,5911:6630773,19885005 -g1,5911:6630773,19885005 -g1,5911:6303093,19885005 -(1,5911:6303093,19885005:15654583,513147,126483 -g1,5911:6630773,19885005 -g1,5911:7336595,19885005 -g1,5911:8742342,19885005 -g1,5911:9503215,19885005 -g1,5911:13473386,19885005 -g1,5911:16254734,19885005 -g1,5911:17932455,19885005 -g1,5911:19188780,19885005 -) -g1,5911:22285356,19885005 -) -k1,5911:23940533,19885005:383779 -k1,5911:26280562,19885005:383779 -k1,5911:28279148,19885005:383779 -k1,5911:29682012,19885005:383779 -k1,5911:31896867,19885005:383779 -k1,5911:32583029,19885005:0 -) -(1,5912:7202902,20726493:25380127,505283,134348 -k1,5911:9519067,20726493:287170 -k1,5911:10878407,20726493:287171 -k1,5911:13347271,20726493:287170 -k1,5911:14266209,20726493:287171 -k1,5911:15908664,20726493:287170 -k1,5911:16957363,20726493:287171 -k1,5911:18773488,20726493:287170 -k1,5911:19746821,20726493:287171 -k1,5911:21190701,20726493:287170 -k1,5911:22009368,20726493:287170 -k1,5911:24554254,20726493:287171 -k1,5911:25473191,20726493:287170 -k1,5911:27141206,20726493:287171 -k1,5911:27959873,20726493:287170 -k1,5911:30534251,20726493:287171 -k1,5911:32370037,20726493:287170 -k1,5911:32583029,20726493:0 -) -(1,5912:7202902,21567981:25380127,505283,7863 -k1,5912:32583028,21567981:24391188 -g1,5912:32583028,21567981 -) -(1,5913:7202902,22933757:25380127,513147,134348 -(1,5912:7202902,22933757:10138418,513147,134348 -g1,5912:6630773,22933757 -g1,5912:6630773,22933757 -g1,5912:6303093,22933757 -(1,5912:6303093,22933757:10710547,513147,134348 -g1,5912:6630773,22933757 -g1,5912:7336595,22933757 -g1,5912:8742342,22933757 -g1,5912:9503215,22933757 -g1,5912:11985718,22933757 -g1,5912:14657621,22933757 -) -g1,5912:17341320,22933757 -) -k1,5912:19145672,22933757:192822 -k1,5912:19804455,22933757:192822 -k1,5912:21153986,22933757:192821 -k1,5912:21878305,22933757:192822 -k1,5912:23806520,22933757:192822 -k1,5912:26597189,22933757:192822 -k1,5912:27946720,22933757:192821 -k1,5912:29243824,22933757:192822 -k1,5912:30822732,22933757:192822 -k1,5913:32583029,22933757:0 -) -(1,5913:7202902,23775245:25380127,505283,134348 -k1,5912:9401080,23775245:228821 -k1,5912:10242664,23775245:228822 -k1,5912:11490570,23775245:228821 -k1,5912:14139636,23775245:228821 -k1,5912:16943368,23775245:228822 -k1,5912:17990078,23775245:228821 -k1,5912:19389372,23775245:228821 -k1,5912:21798576,23775245:228821 -k1,5912:23750340,23775245:228822 -k1,5912:24740689,23775245:228821 -k1,5912:26473561,23775245:228821 -k1,5912:30065691,23775245:228822 -k1,5912:31464985,23775245:228821 -k1,5912:32583029,23775245:0 -) -(1,5913:7202902,24616733:25380127,505283,126483 -k1,5912:8059224,24616733:243560 -k1,5912:9321869,24616733:243560 -k1,5912:11985673,24616733:243559 -k1,5912:12760730,24616733:243560 -k1,5912:14815705,24616733:243560 -k1,5912:15710693,24616733:243560 -k1,5912:16973338,24616733:243560 -k1,5912:20328546,24616733:243559 -k1,5912:21199941,24616733:243560 -k1,5912:24041348,24616733:243560 -k1,5912:25303993,24616733:243560 -k1,5912:27885221,24616733:243559 -k1,5912:28660278,24616733:243560 -k1,5912:31966991,24616733:243560 -k1,5912:32583029,24616733:0 -) -(1,5913:7202902,25458221:25380127,505283,126483 -k1,5912:8216135,25458221:224835 -k1,5912:9771352,25458221:224836 -k1,5912:11708643,25458221:224835 -k1,5912:13124923,25458221:224835 -k1,5912:13965796,25458221:224835 -k1,5912:15393873,25458221:224836 -k1,5912:17157493,25458221:224835 -k1,5912:18539038,25458221:224835 -k1,5912:19868156,25458221:224836 -k1,5912:21913581,25458221:224835 -k1,5912:23270223,25458221:224835 -k1,5912:26249536,25458221:224835 -k1,5912:30405221,25458221:224836 -k1,5912:31821501,25458221:224835 -k1,5912:32583029,25458221:0 -) -(1,5913:7202902,26299709:25380127,505283,134348 -k1,5912:9838979,26299709:179788 -k1,5912:10828137,26299709:179788 -k1,5912:11363786,26299709:179789 -k1,5912:13416593,26299709:179788 -k1,5912:15114195,26299709:179788 -k1,5912:16803933,26299709:179788 -k1,5912:18175167,26299709:179789 -k1,5912:20066100,26299709:179788 -k1,5912:21884943,26299709:179788 -k1,5912:22716159,26299709:179788 -k1,5912:24751927,26299709:179788 -k1,5912:25950801,26299709:179789 -k1,5912:26545413,26299709:179769 -k1,5912:29145446,26299709:179788 -k1,5912:31900144,26299709:179788 -k1,5912:32583029,26299709:0 -) -(1,5913:7202902,27141197:25380127,505283,126483 -k1,5912:8396763,27141197:174776 -k1,5912:10621506,27141197:174777 -k1,5912:13410513,27141197:174776 -k1,5912:14201327,27141197:174776 -k1,5912:15395189,27141197:174777 -k1,5912:17479029,27141197:174776 -k1,5912:19366261,27141197:174776 -k1,5912:20168872,27141197:174776 -k1,5912:21546890,27141197:174777 -k1,5912:22959641,27141197:174776 -k1,5912:24291127,27141197:174776 -k1,5912:25570186,27141197:174777 -k1,5912:27387294,27141197:174776 -k1,5912:27917930,27141197:174776 -k1,5912:29923783,27141197:174777 -k1,5912:30860087,27141197:174776 -k1,5913:32583029,27141197:0 -) -(1,5913:7202902,27982685:25380127,513147,134348 -k1,5912:8386089,27982685:192938 -k1,5912:9770472,27982685:192938 -k1,5912:12317463,27982685:192938 -k1,5912:14078022,27982685:192938 -k1,5912:15290045,27982685:192938 -k1,5912:17730213,27982685:192938 -k1,5912:18574579,27982685:192938 -k1,5912:20226347,27982685:192937 -k1,5912:22250361,27982685:192938 -k1,5912:23600009,27982685:192938 -k1,5912:24812032,27982685:192938 -k1,5912:26193793,27982685:192938 -k1,5912:27671237,27982685:192938 -k1,5912:29339390,27982685:192938 -k1,5912:31896867,27982685:192938 -k1,5912:32583029,27982685:0 -) -(1,5913:7202902,28824173:25380127,505283,126483 -g1,5912:8572604,28824173 -k1,5913:32583028,28824173:21520056 -g1,5913:32583028,28824173 -) -v1,5916:6630773,30189949:0,393216,0 -(1,5924:6630773,40209924:25952256,10413191,616038 -g1,5924:6630773,40209924 -(1,5924:6630773,40209924:25952256,10413191,616038 -(1,5924:6630773,40825962:25952256,11029229,0 -[1,5924:6630773,40825962:25952256,11029229,0 -(1,5924:6630773,40799748:25952256,10976801,0 -r1,5930:6656987,40799748:26214,10976801,0 -[1,5924:6656987,40799748:25899828,10976801,0 -(1,5924:6656987,40209924:25899828,9797153,0 -[1,5924:7246811,40209924:24720180,9797153,0 -(1,5918:7246811,31500145:24720180,1087374,134348 -k1,5916:8637523,31500145:181009 -k1,5916:9578750,31500145:181009 -k1,5916:11090140,31500145:181009 -k1,5916:12441622,31500145:181009 -k1,5916:14803014,31500145:181009 -k1,5916:15731789,31500145:181009 -k1,5916:18405132,31500145:181009 -k1,5916:20946748,31500145:181009 -k1,5916:22521708,31500145:181009 -k1,5916:23117542,31500145:180991 -k1,5916:23949979,31500145:181009 -k1,5916:24878754,31500145:181009 -k1,5916:26368517,31500145:181009 -k1,5916:27200954,31500145:181009 -k1,5916:28996770,31500145:181009 -k1,5916:30636610,31500145:181009 -k1,5916:31966991,31500145:0 -) -(1,5918:7246811,32341633:24720180,473825,126483 -k1,5918:31966991,32341633:22715434 -g1,5918:31966991,32341633 -) -(1,5919:9389838,33707409:21790721,513147,126483 -(1,5918:9389838,33707409:0,477757,0 -g1,5918:9389838,33707409 -g1,5918:8079118,33707409 -g1,5918:8079118,33707409 -(1,5918:8079118,33707409:1310720,477757,0 -(1,5918:8079118,33707409:1048576,477757,0 -g1,5918:8341262,33707409 -(1,5918:8341262,33707409:572129,477757,0 -g1,5918:8341262,33707409 -) -) -) -g1,5918:9389838,33707409 -) -k1,5918:11629157,33707409:188042 -k1,5918:12173060,33707409:188043 -k1,5918:13644297,33707409:188042 -k1,5918:14247171,33707409:188031 -k1,5918:16266290,33707409:188043 -k1,5918:17277464,33707409:188042 -k1,5918:20063353,33707409:188042 -k1,5918:21819017,33707409:188043 -k1,5918:23026144,33707409:188042 -k1,5918:24326988,33707409:188043 -k1,5918:26485698,33707409:188042 -k1,5918:27842247,33707409:188042 -k1,5918:29548104,33707409:188043 -k1,5918:30419031,33707409:188042 -k1,5918:31180559,33707409:0 -) -(1,5919:9389838,34548897:21790721,513147,134348 -g1,5918:11618062,34548897 -g1,5918:13323308,34548897 -g1,5918:14090734,34548897 -g1,5918:15782873,34548897 -g1,5918:16550299,34548897 -k1,5919:31180559,34548897:13457166 -g1,5919:31180559,34548897 -) -(1,5920:9389838,35652529:21790721,513147,126483 -(1,5919:9389838,35652529:0,485622,0 -g1,5919:9389838,35652529 -g1,5919:8079118,35652529 -g1,5919:8079118,35652529 -(1,5919:8079118,35652529:1310720,485622,0 -(1,5919:8079118,35652529:1048576,485622,0 -g1,5919:8341262,35652529 -(1,5919:8341262,35652529:572129,485622,0 -g1,5919:8341262,35652529 -) -) -) -g1,5919:9389838,35652529 -) -g1,5919:11004645,35652529 -g1,5919:12222959,35652529 -g1,5919:13405228,35652529 -g1,5919:14290619,35652529 -k1,5920:31180559,35652529:9602992 -g1,5920:31180559,35652529 -) -(1,5921:9389838,36756161:21790721,505283,126483 -(1,5920:9389838,36756161:0,485622,11795 -g1,5920:9389838,36756161 -g1,5920:8079118,36756161 -g1,5920:8079118,36756161 -(1,5920:8079118,36756161:1310720,485622,11795 -(1,5920:8079118,36756161:1048576,485622,11795 -g1,5920:8341262,36756161 -(1,5920:8341262,36756161:572129,485622,11795 -g1,5920:8341262,36756161 -) -) -) -g1,5920:9389838,36756161 -) -k1,5920:10767680,36756161:228996 -k1,5920:12015761,36756161:228996 -k1,5920:14153821,36756161:228996 -k1,5920:15921603,36756161:228997 -k1,5920:16766637,36756161:228996 -k1,5920:19419810,36756161:228996 -k1,5920:20300234,36756161:228996 -k1,5920:21915316,36756161:228996 -k1,5920:23836452,36756161:228996 -k1,5920:24480262,36756161:228967 -k1,5920:28199050,36756161:228996 -k1,5920:29619491,36756161:228996 -k1,5921:31180559,36756161:0 -) -(1,5921:9389838,37597649:21790721,426639,7863 -k1,5921:31180559,37597649:19647694 -g1,5921:31180559,37597649 -) -(1,5922:9389838,38701281:21790721,505283,7863 -(1,5921:9389838,38701281:0,481690,0 -g1,5921:9389838,38701281 -g1,5921:8079118,38701281 -g1,5921:8079118,38701281 -(1,5921:8079118,38701281:1310720,481690,0 -(1,5921:8079118,38701281:1048576,481690,0 -g1,5921:8341262,38701281 -(1,5921:8341262,38701281:572129,481690,0 -g1,5921:8341262,38701281 -) -) -) -g1,5921:9389838,38701281 -) -g1,5921:10866364,38701281 -g1,5921:14258507,38701281 -k1,5922:31180559,38701281:13258589 -g1,5922:31180559,38701281 -) -(1,5923:9389838,39804913:21790721,513147,11795 -(1,5922:9389838,39804913:0,473825,11795 -g1,5922:9389838,39804913 -g1,5922:8079118,39804913 -g1,5922:8079118,39804913 -(1,5922:8079118,39804913:1310720,473825,11795 -(1,5922:8079118,39804913:1048576,473825,11795 -g1,5922:8341262,39804913 -(1,5922:8341262,39804913:572129,473825,11795 -g1,5922:8341262,39804913 -) -) -) -g1,5922:9389838,39804913 -) -g1,5922:11695394,39804913 -g1,5922:12913708,39804913 -g1,5922:14995786,39804913 -k1,5923:31180559,39804913:15028063 -g1,5923:31180559,39804913 -) -] -) -] -r1,5930:32583029,40799748:26214,10976801,0 -) -] -) -) -g1,5924:32583029,40209924 -) -h1,5924:6630773,40825962:0,0,0 -(1,5903:6630773,42119272:25952256,506878,101187 -(1,5903:6630773,42119272:943720,506878,0 -k1,5903:7302650,42119272:671877 -(1,5903:7302650,42119272:271843,506878,0 -$1,5903:7302650,42119272 -(1,5903:7302650,41899048:271843,286654,0 -) -$1,5903:7574493,42119272 -) -) -(1,5903:7574493,42119272:0,435814,0 -r1,5930:7574493,42119272:0,435814,0 -) -k1,5903:8101304,42119272:144605 -k1,5903:9182287,42119272:144605 -k1,5903:10200880,42119272:144605 -k1,5903:10630173,42119272:144605 -k1,5903:12984651,42119272:144604 -k1,5903:13999036,42119272:144591 -k1,5903:14689948,42119272:144604 -k1,5903:16361804,42119272:144605 -k1,5903:17621570,42119272:144605 -k1,5903:18382738,42119272:144605 -k1,5903:18859202,42119272:144590 -k1,5903:20568807,42119272:144605 -k1,5903:21528680,42119272:144605 -k1,5903:23367260,42119272:144605 -k1,5903:24417835,42119272:144605 -k1,5903:25791371,42119272:144605 -k1,5903:26793710,42119272:144604 -k1,5903:27223003,42119272:144605 -k1,5903:28262043,42119272:144605 -k1,5903:30934241,42119272:144605 -k1,5903:31984816,42119272:144605 -k1,5903:32583029,42119272:0 -) -(1,5903:6630773,42785450:25952256,404226,199855 -g1,5903:8619922,42785450 -r1,5930:10986034,42785450:0,199855,199855 -k1,5903:32583030,42785450:21596996 -g1,5903:32583030,42785450 -) -] -(1,5930:32583029,45706769:0,0,0 -g1,5930:32583029,45706769 -) -) -] -(1,5930:6630773,47279633:25952256,0,0 -h1,5930:6630773,47279633:25952256,0,0 -) -] -(1,5930:4262630,4025873:0,0,0 -[1,5930:-473656,4025873:0,0,0 -(1,5930:-473656,-710413:0,0,0 -(1,5930:-473656,-710413:0,0,0 -g1,5930:-473656,-710413 -) -g1,5930:-473656,-710413 -) -] -) -] -!21677 -}111 -Input:817:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:818:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:819:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:820:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:821:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:822:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:823:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!649 -{112 -[1,5960:4262630,47279633:28320399,43253760,0 -(1,5960:4262630,4025873:0,0,0 -[1,5960:-473656,4025873:0,0,0 -(1,5960:-473656,-710413:0,0,0 -(1,5960:-473656,-644877:0,0,0 -k1,5960:-473656,-644877:-65536 -) -(1,5960:-473656,4736287:0,0,0 -k1,5960:-473656,4736287:5209943 -) -g1,5960:-473656,-710413 -) -] -) -[1,5960:6630773,47279633:25952256,43253760,0 -[1,5960:6630773,4812305:25952256,786432,0 -(1,5960:6630773,4812305:25952256,485622,134348 -(1,5960:6630773,4812305:25952256,485622,134348 -g1,5960:3078558,4812305 -[1,5960:3078558,4812305:0,0,0 -(1,5960:3078558,2439708:0,1703936,0 -k1,5960:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,5960:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,5960:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,5960:3078558,4812305:0,0,0 -(1,5960:3078558,2439708:0,1703936,0 -g1,5960:29030814,2439708 -g1,5960:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,5960:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,5960:37855564,2439708:1179648,16384,0 -) -) -k1,5960:3078556,2439708:-34777008 -) -] -[1,5960:3078558,4812305:0,0,0 -(1,5960:3078558,49800853:0,16384,2228224 -k1,5960:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,5960:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,5960:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,5960:3078558,4812305:0,0,0 -(1,5960:3078558,49800853:0,16384,2228224 -g1,5960:29030814,49800853 -g1,5960:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,5960:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,5960:37855564,49800853:1179648,16384,0 -) -) -k1,5960:3078556,49800853:-34777008 -) -] -g1,5960:6630773,4812305 -g1,5960:6630773,4812305 -g1,5960:9132937,4812305 -g1,5960:11356573,4812305 -k1,5960:31786111,4812305:20429538 -) -) -] -[1,5960:6630773,45706769:25952256,40108032,0 -(1,5960:6630773,45706769:25952256,40108032,0 -(1,5960:6630773,45706769:0,0,0 -g1,5960:6630773,45706769 -) -[1,5960:6630773,45706769:25952256,40108032,0 -(1,5926:6630773,6254097:25952256,555811,139132 -(1,5926:6630773,6254097:2450326,534184,12975 -g1,5926:6630773,6254097 -g1,5926:9081099,6254097 -) -g1,5926:10697348,6254097 -g1,5926:12674045,6254097 -g1,5926:13624186,6254097 -g1,5926:14715623,6254097 -g1,5926:20593810,6254097 -g1,5926:21543951,6254097 -k1,5926:32583029,6254097:8609658 -g1,5926:32583029,6254097 -) -(1,5930:6630773,7488801:25952256,505283,126483 -k1,5929:8606028,7488801:192020 -k1,5929:9968522,7488801:192021 -k1,5929:11775349,7488801:192020 -k1,5929:12323230,7488801:192021 -k1,5929:14519996,7488801:192020 -k1,5929:15170113,7488801:192020 -k1,5929:15893631,7488801:192021 -k1,5929:17941631,7488801:192020 -k1,5929:20663342,7488801:192021 -k1,5929:22025835,7488801:192020 -k1,5929:23766471,7488801:192020 -k1,5929:24609920,7488801:192021 -k1,5929:28004684,7488801:192020 -k1,5929:29745321,7488801:192021 -k1,5929:31107814,7488801:192020 -k1,5929:32583029,7488801:0 -) -(1,5930:6630773,8330289:25952256,513147,126483 -k1,5929:8438215,8330289:229990 -k1,5929:9351091,8330289:229991 -k1,5929:10751554,8330289:229990 -k1,5929:12530160,8330289:229990 -k1,5929:14701327,8330289:229991 -k1,5929:15950402,8330289:229990 -k1,5929:18011468,8330289:229990 -k1,5929:18854221,8330289:229991 -k1,5929:19440071,8330289:229990 -k1,5929:21123650,8330289:229990 -k1,5929:22952718,8330289:229990 -k1,5929:23810544,8330289:229991 -k1,5929:25896514,8330289:229990 -k1,5929:27667255,8330289:229990 -k1,5929:28916331,8330289:229991 -k1,5929:30977397,8330289:229990 -k1,5929:32583029,8330289:0 -) -(1,5930:6630773,9171777:25952256,513147,134348 -k1,5929:9736643,9171777:274715 -k1,5929:11210012,9171777:274715 -k1,5929:15097726,9171777:274714 -k1,5929:16320092,9171777:274715 -k1,5929:17613892,9171777:274715 -k1,5929:21138537,9171777:274715 -k1,5929:23182069,9171777:274715 -k1,5929:25899966,9171777:274715 -k1,5929:27528654,9171777:274714 -k1,5929:30312743,9171777:274715 -k1,5929:31238886,9171777:274715 -k1,5929:32583029,9171777:0 -) -(1,5930:6630773,10013265:25952256,513147,134348 -k1,5929:8074794,10013265:252576 -k1,5929:9794065,10013265:252575 -k1,5929:11696838,10013265:252576 -k1,5929:12600841,10013265:252575 -k1,5929:15702267,10013265:252576 -k1,5929:17970074,10013265:252575 -k1,5929:18680747,10013265:252576 -k1,5929:19880973,10013265:252575 -k1,5929:21152634,10013265:252576 -k1,5929:22711342,10013265:252575 -k1,5929:24562996,10013265:252576 -k1,5929:26196415,10013265:252575 -k1,5929:28071007,10013265:252576 -k1,5929:29071348,10013265:252575 -k1,5929:31821501,10013265:252576 -k1,5929:32583029,10013265:0 -) -(1,5930:6630773,10854753:25952256,513147,134348 -g1,5929:9754218,10854753 -g1,5929:11378855,10854753 -g1,5929:12769529,10854753 -g1,5929:14741507,10854753 -g1,5929:15750106,10854753 -g1,5929:16968420,10854753 -g1,5929:19425364,10854753 -k1,5930:32583029,10854753:11483220 -g1,5930:32583029,10854753 -) -(1,5932:6630773,11696241:25952256,505283,134348 -h1,5931:6630773,11696241:983040,0,0 -g1,5931:9233863,11696241 -g1,5931:10926002,11696241 -g1,5931:12281941,11696241 -g1,5931:14838500,11696241 -g1,5931:15808432,11696241 -g1,5931:20981188,11696241 -g1,5931:23011493,11696241 -g1,5931:23893607,11696241 -k1,5932:32583029,11696241:5620371 -g1,5932:32583029,11696241 -) -(1,5934:7202902,12866580:25380127,505283,134348 -(1,5933:7202902,12866580:0,355205,0 -g1,5933:7202902,12866580 -g1,5933:5892182,12866580 -g1,5933:5564502,12866580 -(1,5933:5564502,12866580:1310720,355205,0 -k1,5933:6875222,12866580:1310720 -(1,5933:6875222,12866580:0,355205,0 -k1,5933:6476763,12866580:-398459 -) -) -g1,5933:7202902,12866580 -) -k1,5933:9338422,12866580:274298 -k1,5933:10631805,12866580:274298 -k1,5933:13630435,12866580:274298 -k1,5933:15995331,12866580:274298 -k1,5933:18005022,12866580:274298 -k1,5933:18635180,12866580:274298 -k1,5933:21107556,12866580:274298 -k1,5933:25734100,12866580:274298 -k1,5933:28850694,12866580:274298 -k1,5933:30564818,12866580:274298 -k1,5933:31490544,12866580:274298 -k1,5933:32583029,12866580:0 -) -(1,5934:7202902,13708068:25380127,513147,126483 -k1,5933:9067533,13708068:172491 -k1,5933:11679928,13708068:172490 -k1,5933:12535304,13708068:172491 -k1,5933:15038911,13708068:172491 -k1,5933:16797372,13708068:172490 -k1,5933:17629155,13708068:172491 -k1,5933:21458555,13708068:172491 -k1,5933:24299017,13708068:172491 -k1,5933:28060914,13708068:172490 -k1,5933:28892697,13708068:172491 -k1,5933:32583029,13708068:0 -) -(1,5934:7202902,14549556:25380127,513147,126483 -k1,5933:11635212,14549556:163294 -k1,5933:12457797,14549556:163293 -k1,5933:15132431,14549556:163294 -k1,5933:16487170,14549556:163294 -k1,5933:19345959,14549556:163293 -k1,5933:21751240,14549556:163294 -k1,5933:22732423,14549556:163294 -k1,5933:23251576,14549556:163293 -k1,5933:26506859,14549556:163294 -k1,5933:27576516,14549556:163294 -k1,5933:28391237,14549556:163293 -k1,5933:29302297,14549556:163294 -k1,5933:32583029,14549556:0 -) -(1,5934:7202902,15391044:25380127,513147,126483 -g1,5933:8796082,15391044 -k1,5934:32583029,15391044:21006910 -g1,5934:32583029,15391044 -) -(1,5935:7202902,16659102:25380127,513147,134348 -(1,5934:7202902,16659102:0,355205,0 -g1,5934:7202902,16659102 -g1,5934:5892182,16659102 -g1,5934:5564502,16659102 -(1,5934:5564502,16659102:1310720,355205,0 -k1,5934:6875222,16659102:1310720 -(1,5934:6875222,16659102:0,355205,0 -k1,5934:6476763,16659102:-398459 -) -) -g1,5934:7202902,16659102 -) -k1,5934:8592682,16659102:240934 -k1,5934:12446616,16659102:240934 -k1,5934:14755866,16659102:240934 -k1,5934:15944451,16659102:240934 -k1,5934:19200696,16659102:240934 -k1,5934:20633075,16659102:240934 -k1,5934:22005816,16659102:240934 -k1,5934:23948720,16659102:240934 -k1,5934:26322851,16659102:240934 -k1,5934:28197598,16659102:240934 -k1,5934:28970029,16659102:240934 -k1,5934:32583029,16659102:0 -) -(1,5935:7202902,17500590:25380127,505283,134348 -k1,5934:10085225,17500590:180274 -k1,5934:11074870,17500590:180275 -k1,5934:12274229,17500590:180274 -k1,5934:14997300,17500590:180274 -k1,5934:18622147,17500590:180275 -k1,5934:19611791,17500590:180274 -k1,5934:22569481,17500590:180274 -k1,5934:24015911,17500590:180274 -k1,5934:24552046,17500590:180275 -k1,5934:26605339,17500590:180274 -k1,5934:28487583,17500590:180274 -k1,5934:30004792,17500590:180275 -k1,5934:30932832,17500590:180274 -k1,5934:32583029,17500590:0 -) -(1,5935:7202902,18342078:25380127,513147,134348 -k1,5934:10963554,18342078:147652 -k1,5934:12553654,18342078:147653 -k1,5934:13057166,18342078:147652 -k1,5934:14593527,18342078:147653 -k1,5934:16539487,18342078:147652 -k1,5934:19448172,18342078:147653 -k1,5934:24722050,18342078:147652 -k1,5934:26938019,18342078:147653 -k1,5934:28077231,18342078:147652 -k1,5934:30512091,18342078:147653 -k1,5934:32583029,18342078:0 -) -(1,5935:7202902,19183566:25380127,505283,134348 -k1,5934:8637592,19183566:192127 -k1,5934:10565112,19183566:192127 -(1,5934:10565112,19183566:0,414482,115847 -r1,5960:12681937,19183566:2116825,530329,115847 -k1,5934:10565112,19183566:-2116825 -) -(1,5934:10565112,19183566:2116825,414482,115847 -k1,5934:10565112,19183566:3277 -h1,5934:12678660,19183566:0,411205,112570 -) -k1,5934:12874065,19183566:192128 -k1,5934:14257637,19183566:192127 -(1,5934:14257637,19183566:0,452978,115847 -r1,5960:16374462,19183566:2116825,568825,115847 -k1,5934:14257637,19183566:-2116825 -) -(1,5934:14257637,19183566:2116825,452978,115847 -k1,5934:14257637,19183566:3277 -h1,5934:16371185,19183566:0,411205,112570 -) -k1,5934:16566589,19183566:192127 -k1,5934:17290213,19183566:192127 -k1,5934:19265575,19183566:192127 -k1,5934:21623668,19183566:192128 -k1,5934:23258242,19183566:192127 -k1,5934:25185762,19183566:192127 -(1,5934:25185762,19183566:0,435480,115847 -r1,5960:25895740,19183566:709978,551327,115847 -k1,5934:25185762,19183566:-709978 -) -(1,5934:25185762,19183566:709978,435480,115847 -k1,5934:25185762,19183566:3277 -h1,5934:25892463,19183566:0,411205,112570 -) -k1,5934:26087867,19183566:192127 -k1,5934:27471440,19183566:192128 -(1,5934:27471440,19183566:0,435480,115847 -r1,5960:28181418,19183566:709978,551327,115847 -k1,5934:27471440,19183566:-709978 -) -(1,5934:27471440,19183566:709978,435480,115847 -k1,5934:27471440,19183566:3277 -h1,5934:28178141,19183566:0,411205,112570 -) -k1,5934:28373545,19183566:192127 -k1,5934:30263710,19183566:192127 -k1,5934:32583029,19183566:0 -) -(1,5935:7202902,20025054:25380127,513147,126483 -k1,5934:8871903,20025054:275050 -k1,5934:9502813,20025054:275050 -k1,5934:11865185,20025054:275050 -k1,5934:12799527,20025054:275050 -k1,5934:14637611,20025054:275050 -k1,5934:17694009,20025054:275050 -(1,5934:17694009,20025054:0,459977,115847 -r1,5960:22624529,20025054:4930520,575824,115847 -k1,5934:17694009,20025054:-4930520 -) -(1,5934:17694009,20025054:4930520,459977,115847 -k1,5934:17694009,20025054:3277 -h1,5934:22621252,20025054:0,411205,112570 -) -k1,5934:22899579,20025054:275050 -k1,5934:24366074,20025054:275050 -(1,5934:24366074,20025054:0,459977,115847 -r1,5960:30351729,20025054:5985655,575824,115847 -k1,5934:24366074,20025054:-5985655 -) -(1,5934:24366074,20025054:5985655,459977,115847 -k1,5934:24366074,20025054:3277 -h1,5934:30348452,20025054:0,411205,112570 -) -k1,5934:30626779,20025054:275050 -k1,5934:32583029,20025054:0 -) -(1,5935:7202902,20866542:25380127,505283,134348 -k1,5934:9198856,20866542:280221 -k1,5934:10498162,20866542:280221 -k1,5934:12609459,20866542:280221 -k1,5934:15528814,20866542:280220 -k1,5934:17000480,20866542:280221 -k1,5934:18633364,20866542:280221 -k1,5934:20937992,20866542:280221 -k1,5934:21869641,20866542:280221 -k1,5934:23535948,20866542:280221 -k1,5934:26276390,20866542:280220 -k1,5934:28892970,20866542:280221 -k1,5934:31966991,20866542:280221 -k1,5934:32583029,20866542:0 -) -(1,5935:7202902,21708030:25380127,426639,7863 -k1,5935:32583029,21708030:23195812 -g1,5935:32583029,21708030 -) -(1,5936:7202902,22976087:25380127,505283,126483 -(1,5935:7202902,22976087:0,355205,0 -g1,5935:7202902,22976087 -g1,5935:5892182,22976087 -g1,5935:5564502,22976087 -(1,5935:5564502,22976087:1310720,355205,0 -k1,5935:6875222,22976087:1310720 -(1,5935:6875222,22976087:0,355205,0 -k1,5935:6476763,22976087:-398459 -) -) -g1,5935:7202902,22976087 -) -k1,5935:8849496,22976087:225773 -k1,5935:9726698,22976087:225774 -k1,5935:11668204,22976087:225773 -k1,5935:12913063,22976087:225774 -k1,5935:15093775,22976087:225773 -k1,5935:17362305,22976087:225773 -k1,5935:18204117,22976087:225774 -k1,5935:20671877,22976087:225773 -k1,5935:24815393,22976087:225774 -k1,5935:25657204,22976087:225773 -k1,5935:26297794,22976087:225747 -k1,5935:27680277,22976087:225773 -k1,5935:29862301,22976087:225774 -k1,5935:31180559,22976087:225773 -k1,5935:32583029,22976087:0 -) -(1,5936:7202902,23817575:25380127,505283,134348 -k1,5935:8081178,23817575:226848 -k1,5935:11010731,23817575:226848 -k1,5935:12256664,23817575:226848 -k1,5935:14438451,23817575:226848 -k1,5935:15856744,23817575:226848 -k1,5935:17176077,23817575:226848 -k1,5935:18778526,23817575:226848 -k1,5935:20761740,23817575:226849 -k1,5935:22529339,23817575:226848 -k1,5935:24473230,23817575:226848 -k1,5935:26383043,23817575:226848 -k1,5935:27908159,23817575:226848 -k1,5935:28593104,23817575:226848 -k1,5935:31224468,23817575:226848 -k1,5936:32583029,23817575:0 -) -(1,5936:7202902,24659063:25380127,513147,126483 -k1,5935:8971003,24659063:283711 -k1,5935:9906143,24659063:283712 -k1,5935:11282339,24659063:283711 -k1,5935:15650254,24659063:283711 -k1,5935:17130652,24659063:283711 -k1,5935:18506849,24659063:283712 -k1,5935:19449852,24659063:283711 -k1,5935:23644096,24659063:283711 -k1,5935:24459304,24659063:283711 -k1,5935:26367654,24659063:283712 -k1,5935:29428781,24659063:283711 -k1,5935:32583029,24659063:0 -) -(1,5936:7202902,25500551:25380127,513147,126483 -k1,5935:9982284,25500551:249692 -k1,5935:10848014,25500551:249692 -k1,5935:12789847,25500551:249693 -k1,5935:15738967,25500551:249692 -k1,5935:16446756,25500551:249692 -k1,5935:17227945,25500551:249692 -k1,5935:19838244,25500551:249692 -k1,5935:20774099,25500551:249693 -k1,5935:21639829,25500551:249692 -k1,5935:23581661,25500551:249692 -k1,5935:26988222,25500551:249692 -k1,5935:27593774,25500551:249692 -k1,5935:28915636,25500551:249693 -k1,5935:30502262,25500551:249692 -k1,5935:32227169,25500551:249692 -k1,5935:32583029,25500551:0 -) -(1,5936:7202902,26342039:25380127,513147,134348 -k1,5935:9640441,26342039:243394 -k1,5935:12785769,26342039:243394 -k1,5935:14662976,26342039:243394 -k1,5935:15774722,26342039:243394 -k1,5935:17117810,26342039:243394 -k1,5935:19523237,26342039:243394 -k1,5935:21433867,26342039:243394 -k1,5935:22208758,26342039:243394 -k1,5935:23827753,26342039:243394 -k1,5935:27992166,26342039:243394 -k1,5935:29748786,26342039:243394 -k1,5935:30608218,26342039:243394 -k1,5935:31266411,26342039:243350 -k1,5936:32583029,26342039:0 -) -(1,5936:7202902,27183527:25380127,513147,134348 -k1,5935:10693077,27183527:241555 -k1,5935:12006800,27183527:241554 -k1,5935:12779852,27183527:241555 -k1,5935:15798823,27183527:241555 -k1,5935:16656415,27183527:241554 -k1,5935:18599940,27183527:241555 -k1,5935:22014093,27183527:241555 -k1,5935:23401872,27183527:241554 -k1,5935:25773347,27183527:241555 -k1,5935:26917333,27183527:241555 -k1,5935:29820304,27183527:241554 -k1,5935:30721151,27183527:241555 -k1,5935:32583029,27183527:0 -) -(1,5936:7202902,28025015:25380127,473825,115847 -g1,5935:8769212,28025015 -g1,5935:9499938,28025015 -(1,5935:9499938,28025015:0,452978,115847 -r1,5960:11968475,28025015:2468537,568825,115847 -k1,5935:9499938,28025015:-2468537 -) -(1,5935:9499938,28025015:2468537,452978,115847 -k1,5935:9499938,28025015:3277 -h1,5935:11965198,28025015:0,411205,112570 -) -k1,5936:32583029,28025015:20440884 -g1,5936:32583029,28025015 -) -v1,5939:6630773,29195355:0,393216,0 -(1,5957:6630773,39712952:25952256,10910813,616038 -g1,5957:6630773,39712952 -(1,5957:6630773,39712952:25952256,10910813,616038 -(1,5957:6630773,40328990:25952256,11526851,0 -[1,5957:6630773,40328990:25952256,11526851,0 -(1,5957:6630773,40302776:25952256,11474423,0 -r1,5960:6656987,40302776:26214,11474423,0 -[1,5957:6656987,40302776:25899828,11474423,0 -(1,5957:6656987,39712952:25899828,10294775,0 -[1,5957:7246811,39712952:24720180,10294775,0 -(1,5941:7246811,30505551:24720180,1087374,134348 -k1,5939:8709100,30505551:252586 -k1,5939:10450008,30505551:252585 -k1,5939:11234091,30505551:252586 -k1,5939:12257379,30505551:252585 -k1,5939:15171382,30505551:252586 -k1,5939:16083259,30505551:252585 -k1,5939:17512872,30505551:252586 -k1,5939:19266231,30505551:252585 -k1,5939:20134855,30505551:252586 -k1,5939:20743300,30505551:252585 -k1,5939:23000632,30505551:252586 -k1,5939:24822149,30505551:252585 -k1,5939:27689622,30505551:252586 -k1,5939:28391731,30505551:252532 -k1,5939:30131328,30505551:252585 -k1,5941:31966991,30505551:0 -) -(1,5941:7246811,31347039:24720180,505283,134349 -$1,5939:7453905,31347039 -k1,5939:9429815,31347039:0 -k1,5939:9824997,31347039:0 -k1,5939:10220179,31347039:0 -k1,5939:10615361,31347039:0 -k1,5939:12986453,31347039:0 -k1,5939:13381635,31347039:0 -k1,5939:15752727,31347039:0 -k1,5939:16147909,31347039:0 -k1,5939:16938273,31347039:0 -k1,5939:17333455,31347039:0 -k1,5939:21285275,31347039:0 -k1,5939:21680457,31347039:0 -k1,5939:24051549,31347039:0 -k1,5939:24446731,31347039:0 -$1,5939:25632277,31347039 -k1,5940:26268305,31347039:255264 -k1,5940:27715013,31347039:255263 -k1,5940:29196456,31347039:255264 -k1,5940:30470804,31347039:255263 -k1,5940:31966991,31347039:0 -) -(1,5941:7246811,32188527:24720180,505283,7863 -g1,5940:8062078,32188527 -g1,5940:9280392,32188527 -g1,5940:11450289,32188527 -g1,5940:13517949,32188527 -g1,5940:14442006,32188527 -g1,5940:15925741,32188527 -g1,5940:16583067,32188527 -g1,5940:19555780,32188527 -g1,5940:21625407,32188527 -g1,5940:22476064,32188527 -k1,5941:31966991,32188527:7904956 -g1,5941:31966991,32188527 -) -v1,5943:7246811,33378993:0,393216,0 -(1,5955:7246811,38992056:24720180,6006279,196608 -g1,5955:7246811,38992056 -g1,5955:7246811,38992056 -g1,5955:7050203,38992056 -(1,5955:7050203,38992056:0,6006279,196608 -r1,5960:32163599,38992056:25113396,6202887,196608 -k1,5955:7050203,38992056:-25113396 -) -(1,5955:7050203,38992056:25113396,6006279,196608 -[1,5955:7246811,38992056:24720180,5809671,0 -(1,5945:7246811,33586611:24720180,404226,107478 -(1,5944:7246811,33586611:0,0,0 -g1,5944:7246811,33586611 -g1,5944:7246811,33586611 -g1,5944:6919131,33586611 -(1,5944:6919131,33586611:0,0,0 -) -g1,5944:7246811,33586611 -) -g1,5945:7879103,33586611 -g1,5945:8827541,33586611 -g1,5945:9459833,33586611 -g1,5945:10092125,33586611 -k1,5945:10092125,33586611:14156 -h1,5945:12003155,33586611:0,0,0 -k1,5945:31966991,33586611:19963836 -g1,5945:31966991,33586611 -) -(1,5946:7246811,34252789:24720180,404226,107478 -h1,5946:7246811,34252789:0,0,0 -g1,5946:7879103,34252789 -g1,5946:8827541,34252789 -g1,5946:9459833,34252789 -g1,5946:10092125,34252789 -k1,5946:10092125,34252789:0 -h1,5946:11988999,34252789:0,0,0 -k1,5946:31966991,34252789:19977992 -g1,5946:31966991,34252789 -) -(1,5947:7246811,34918967:24720180,336593,7863 -h1,5947:7246811,34918967:0,0,0 -g1,5947:7879103,34918967 -k1,5947:7879103,34918967:0 -h1,5947:8511395,34918967:0,0,0 -k1,5947:31966991,34918967:23455596 -g1,5947:31966991,34918967 -) -(1,5948:7246811,35585145:24720180,328204,4718 -h1,5948:7246811,35585145:0,0,0 -g1,5948:7562957,35585145 -g1,5948:7879103,35585145 -g1,5948:8195249,35585145 -g1,5948:8511395,35585145 -g1,5948:9143687,35585145 -h1,5948:9459833,35585145:0,0,0 -k1,5948:31966991,35585145:22507158 -g1,5948:31966991,35585145 -) -(1,5949:7246811,36251323:24720180,404226,6290 -h1,5949:7246811,36251323:0,0,0 -h1,5949:7562957,36251323:0,0,0 -k1,5949:31966991,36251323:24404034 -g1,5949:31966991,36251323 -) -(1,5950:7246811,36917501:24720180,404226,7863 -h1,5950:7246811,36917501:0,0,0 -g1,5950:7879103,36917501 -g1,5950:8827541,36917501 -h1,5950:11356706,36917501:0,0,0 -k1,5950:31966990,36917501:20610284 -g1,5950:31966990,36917501 -) -(1,5951:7246811,37583679:24720180,404226,101187 -h1,5951:7246811,37583679:0,0,0 -g1,5951:7562957,37583679 -g1,5951:7879103,37583679 -g1,5951:8195249,37583679 -g1,5951:8511395,37583679 -g1,5951:8827541,37583679 -g1,5951:9143687,37583679 -k1,5951:9143687,37583679:0 -h1,5951:11040561,37583679:0,0,0 -k1,5951:31966991,37583679:20926430 -g1,5951:31966991,37583679 -) -(1,5952:7246811,38249857:24720180,404226,82312 -h1,5952:7246811,38249857:0,0,0 -g1,5952:9459831,38249857 -g1,5952:10408269,38249857 -h1,5952:12937434,38249857:0,0,0 -k1,5952:31966990,38249857:19029556 -g1,5952:31966990,38249857 -) -(1,5953:7246811,38916035:24720180,404226,76021 -h1,5953:7246811,38916035:0,0,0 -h1,5953:7562957,38916035:0,0,0 -k1,5953:31966991,38916035:24404034 -g1,5953:31966991,38916035 -) -] -) -g1,5955:31966991,38992056 -g1,5955:7246811,38992056 -g1,5955:7246811,38992056 -g1,5955:31966991,38992056 -g1,5955:31966991,38992056 -) -h1,5955:7246811,39188664:0,0,0 -] -) -] -r1,5960:32583029,40302776:26214,11474423,0 -) -] -) -) -g1,5957:32583029,39712952 -) -h1,5957:6630773,40328990:0,0,0 -(1,5960:6630773,41499329:25952256,513147,134348 -h1,5959:6630773,41499329:983040,0,0 -k1,5959:9026265,41499329:215765 -k1,5959:11260539,41499329:215765 -k1,5959:14605647,41499329:215764 -k1,5959:16676736,41499329:215765 -k1,5959:19226893,41499329:215765 -k1,5959:20830711,41499329:215765 -k1,5959:21402335,41499329:215764 -k1,5959:22648326,41499329:215765 -k1,5959:25798793,41499329:215765 -k1,5959:27171268,41499329:215765 -k1,5959:28491314,41499329:215764 -k1,5959:29475816,41499329:215765 -k1,5959:31966991,41499329:215765 -k1,5959:32583029,41499329:0 -) -(1,5960:6630773,42340817:25952256,513147,134348 -k1,5959:9891189,42340817:260178 -k1,5959:11170451,42340817:260177 -k1,5959:12760355,42340817:260178 -k1,5959:13679825,42340817:260178 -k1,5959:16160363,42340817:260178 -k1,5959:19814650,42340817:260177 -k1,5959:20836356,42340817:260178 -k1,5959:25312465,42340817:260178 -k1,5959:29635219,42340817:260177 -k1,5959:31086842,42340817:260178 -k1,5959:32583029,42340817:0 -) -(1,5960:6630773,43182305:25952256,513147,134348 -k1,5959:9762957,43182305:230905 -k1,5959:11185307,43182305:230905 -k1,5959:13151605,43182305:230905 -k1,5959:14148626,43182305:230905 -k1,5959:15398616,43182305:230905 -k1,5959:18326983,43182305:230905 -k1,5959:19217180,43182305:230905 -k1,5959:23189535,43182305:230905 -k1,5959:24887136,43182305:230905 -k1,5959:25777333,43182305:230905 -k1,5959:29213604,43182305:230905 -k1,5959:31422386,43182305:230905 -k1,5960:32583029,43182305:0 -) -(1,5960:6630773,44023793:25952256,513147,134348 -k1,5959:8821344,44023793:264468 -k1,5959:10277256,44023793:264467 -k1,5959:13835563,44023793:264468 -k1,5959:16110019,44023793:264467 -k1,5959:17393572,44023793:264468 -k1,5959:19641814,44023793:264467 -k1,5959:20565574,44023793:264468 -k1,5959:21849126,44023793:264467 -k1,5959:24118340,44023793:264468 -k1,5959:28576456,44023793:264467 -k1,5959:29602452,44023793:264468 -k1,5959:32583029,44023793:0 -) -(1,5960:6630773,44865281:25952256,513147,126483 -k1,5959:7904512,44865281:254654 -k1,5959:10332340,44865281:254654 -k1,5959:11246286,44865281:254654 -k1,5959:12520026,44865281:254655 -k1,5959:16576423,44865281:254654 -k1,5959:18022522,44865281:254654 -k1,5959:19296261,44865281:254654 -k1,5959:21047102,44865281:254654 -k1,5959:22907388,44865281:254654 -k1,5959:23778080,44865281:254654 -k1,5959:24388595,44865281:254655 -k1,5959:26963879,44865281:254654 -k1,5959:29214760,44865281:254654 -k1,5959:30947906,44865281:254654 -k1,5960:32583029,44865281:0 -) -(1,5960:6630773,45706769:25952256,513147,134348 -k1,5959:9884027,45706769:184858 -k1,5959:10937237,45706769:184858 -k1,5959:12226378,45706769:184859 -k1,5959:14554263,45706769:184858 -k1,5959:16023627,45706769:184858 -k1,5959:17227570,45706769:184858 -k1,5959:19585602,45706769:184858 -k1,5959:20762021,45706769:184859 -k1,5959:23099081,45706769:184858 -k1,5959:24303024,45706769:184858 -k1,5959:26330754,45706769:184858 -k1,5959:27174905,45706769:184859 -k1,5959:29882899,45706769:184858 -k1,5959:31086842,45706769:184858 -k1,5959:32583029,45706769:0 -) -] -(1,5960:32583029,45706769:0,0,0 -g1,5960:32583029,45706769 -) -) -] -(1,5960:6630773,47279633:25952256,0,0 -h1,5960:6630773,47279633:25952256,0,0 -) -] -(1,5960:4262630,4025873:0,0,0 -[1,5960:-473656,4025873:0,0,0 -(1,5960:-473656,-710413:0,0,0 -(1,5960:-473656,-710413:0,0,0 -g1,5960:-473656,-710413 -) -g1,5960:-473656,-710413 -) -] -) -] -!24767 -}112 -!12 -{113 -[1,5978:4262630,47279633:28320399,43253760,0 -(1,5978:4262630,4025873:0,0,0 -[1,5978:-473656,4025873:0,0,0 -(1,5978:-473656,-710413:0,0,0 -(1,5978:-473656,-644877:0,0,0 -k1,5978:-473656,-644877:-65536 -) -(1,5978:-473656,4736287:0,0,0 -k1,5978:-473656,4736287:5209943 -) -g1,5978:-473656,-710413 -) -] -) -[1,5978:6630773,47279633:25952256,43253760,0 -[1,5978:6630773,4812305:25952256,786432,0 -(1,5978:6630773,4812305:25952256,505283,134348 -(1,5978:6630773,4812305:25952256,505283,134348 -g1,5978:3078558,4812305 -[1,5978:3078558,4812305:0,0,0 -(1,5978:3078558,2439708:0,1703936,0 -k1,5978:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,5978:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,5978:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,5978:3078558,4812305:0,0,0 -(1,5978:3078558,2439708:0,1703936,0 -g1,5978:29030814,2439708 -g1,5978:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,5978:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,5978:37855564,2439708:1179648,16384,0 -) -) -k1,5978:3078556,2439708:-34777008 -) -] -[1,5978:3078558,4812305:0,0,0 -(1,5978:3078558,49800853:0,16384,2228224 -k1,5978:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,5978:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,5978:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,5978:3078558,4812305:0,0,0 -(1,5978:3078558,49800853:0,16384,2228224 -g1,5978:29030814,49800853 -g1,5978:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,5978:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,5978:37855564,49800853:1179648,16384,0 -) -) -k1,5978:3078556,49800853:-34777008 -) -] -g1,5978:6630773,4812305 -k1,5978:18771974,4812305:10945824 -g1,5978:20158715,4812305 -g1,5978:20807521,4812305 -g1,5978:24121676,4812305 -g1,5978:28605649,4812305 -g1,5978:30015328,4812305 -) -) -] -[1,5978:6630773,45706769:25952256,40108032,0 -(1,5978:6630773,45706769:25952256,40108032,0 -(1,5978:6630773,45706769:0,0,0 -g1,5978:6630773,45706769 -) -[1,5978:6630773,45706769:25952256,40108032,0 -(1,5960:6630773,6254097:25952256,505283,134348 -k1,5959:9028604,6254097:148635 -k1,5959:10558084,6254097:148636 -k1,5959:12895622,6254097:148635 -k1,5959:16683472,6254097:148636 -k1,5959:17483535,6254097:148635 -k1,5959:19021534,6254097:148636 -k1,5959:21724762,6254097:148635 -k1,5959:26782700,6254097:148636 -k1,5959:28816806,6254097:148635 -k1,5959:29496939,6254097:148636 -k1,5959:32583029,6254097:0 -) -(1,5960:6630773,7095585:25952256,513147,126483 -k1,5959:7173793,7095585:187160 -k1,5959:11014585,7095585:187160 -k1,5959:15132594,7095585:187160 -k1,5959:16267405,7095585:187160 -k1,5959:17586372,7095585:187160 -k1,5959:19162894,7095585:187159 -k1,5959:21904647,7095585:187160 -k1,5959:23558503,7095585:187160 -k1,5959:24361701,7095585:187160 -k1,5959:27539269,7095585:187160 -k1,5959:28917874,7095585:187160 -k1,5959:29721072,7095585:187160 -k1,5959:32583029,7095585:0 -) -(1,5960:6630773,7937073:25952256,505283,126483 -k1,5959:7339916,7937073:239250 -k1,5959:8110663,7937073:239250 -k1,5959:10979873,7937073:239250 -k1,5959:12285394,7937073:239250 -k1,5959:13900245,7937073:239250 -k1,5959:14790923,7937073:239250 -k1,5959:17350803,7937073:239250 -k1,5959:19472902,7937073:239250 -k1,5959:21624493,7937073:239250 -k1,5959:23009968,7937073:239250 -k1,5959:24452459,7937073:239250 -k1,5959:26022090,7937073:239250 -k1,5959:27333509,7937073:239250 -k1,5959:28858575,7937073:239250 -k1,5959:30980674,7937073:239250 -k1,5960:32583029,7937073:0 -) -(1,5960:6630773,8778561:25952256,505283,7863 -g1,5959:8684671,8778561 -g1,5959:10152677,8778561 -g1,5959:11817946,8778561 -g1,5959:13411126,8778561 -g1,5959:15307082,8778561 -k1,5960:32583029,8778561:15520893 -g1,5960:32583029,8778561 -) -(1,5962:6630773,9620049:25952256,513147,134348 -h1,5961:6630773,9620049:983040,0,0 -k1,5961:8417165,9620049:175517 -k1,5961:9611767,9620049:175517 -k1,5961:11603943,9620049:175518 -k1,5961:12438752,9620049:175517 -k1,5961:17140185,9620049:175517 -k1,5961:18518943,9620049:175517 -k1,5961:21678970,9620049:175517 -k1,5961:22385984,9620049:175517 -k1,5961:24429278,9620049:175518 -k1,5961:26863821,9620049:175517 -k1,5961:31391584,9620049:175517 -k1,5961:32583029,9620049:0 -) -(1,5962:6630773,10461537:25952256,513147,134348 -k1,5961:8035109,10461537:197163 -k1,5961:9538404,10461537:197162 -k1,5961:12752845,10461537:197163 -k1,5961:13711535,10461537:197162 -k1,5961:16203113,10461537:197163 -k1,5961:18365700,10461537:197162 -k1,5961:20735382,10461537:197163 -k1,5961:22733473,10461537:197162 -k1,5961:25489162,10461537:197163 -k1,5961:26632664,10461537:197162 -k1,5961:28122195,10461537:197161 -k1,5961:30738946,10461537:197162 -k1,5961:31563944,10461537:197163 -k1,5961:32583029,10461537:0 -) -(1,5962:6630773,11303025:25952256,513147,134348 -k1,5961:8278713,11303025:280859 -k1,5961:9226728,11303025:280859 -k1,5961:9922348,11303025:280777 -k1,5961:14729123,11303025:280859 -k1,5961:16029067,11303025:280859 -k1,5961:17616059,11303025:280859 -k1,5961:20423330,11303025:280858 -k1,5961:21363481,11303025:280859 -k1,5961:23903366,11303025:280859 -k1,5961:28536471,11303025:280859 -k1,5961:30024503,11303025:280859 -k1,5961:32583029,11303025:0 -) -(1,5962:6630773,12144513:25952256,505283,134348 -k1,5961:9721584,12144513:280628 -k1,5961:11887684,12144513:280629 -k1,5961:13269317,12144513:280628 -k1,5961:15059896,12144513:280629 -k1,5961:17508455,12144513:280628 -k1,5961:21457134,12144513:280629 -k1,5961:22499290,12144513:280628 -k1,5961:24618858,12144513:280629 -k1,5961:26085688,12144513:280628 -k1,5961:28341405,12144513:281117 -k1,5961:30002877,12144513:280628 -k1,5961:32583029,12144513:0 -) -(1,5962:6630773,12986001:25952256,513147,173670 -k1,5961:9751209,12986001:263722 -k1,5961:11034016,12986001:263722 -k1,5961:12390223,12986001:263722 -k1,5961:13321101,12986001:263722 -k1,5961:16887838,12986001:263722 -k1,5961:17834445,12986001:263722 -[1,5961:17963551,12986001:341312,473825,0 -(1,5961:17963551,12847982:341312,335806,0 -) -] -(1,5961:18531817,13159671:370934,473825,0 -) -k1,5961:19515125,12986001:263722 -k1,5961:22687335,12986001:263722 -k1,5961:24751986,12986001:263722 -k1,5961:25701870,12986001:263722 -k1,5961:26984677,12986001:263722 -k1,5961:29740733,12986001:263722 -k1,5961:32583029,12986001:0 -) -(1,5962:6630773,13827489:25952256,513147,134348 -k1,5961:7849088,13827489:270664 -k1,5961:9138836,13827489:270663 -k1,5961:11611510,13827489:270664 -k1,5961:14631408,13827489:270663 -k1,5961:16093517,13827489:270664 -k1,5961:17649996,13827489:270663 -k1,5961:20431344,13827489:270664 -k1,5961:21893452,13827489:270663 -k1,5961:23691760,13827489:270664 -k1,5961:26046468,13827489:270663 -k1,5961:30164751,13827489:270664 -k1,5961:31086842,13827489:270663 -k1,5961:32583029,13827489:0 -) -(1,5962:6630773,14668977:25952256,505283,7863 -k1,5961:9333313,14668977:227901 -k1,5961:13326914,14668977:227902 -k1,5961:14086312,14668977:227901 -k1,5961:15084916,14668977:227901 -k1,5961:18385145,14668977:227901 -k1,5961:19264475,14668977:227902 -k1,5961:22795391,14668977:227901 -k1,5961:24307798,14668977:227901 -k1,5961:26581733,14668977:227901 -k1,5961:27267732,14668977:227902 -k1,5961:29366031,14668977:227901 -k1,5961:30245360,14668977:227901 -k1,5962:32583029,14668977:0 -) -(1,5962:6630773,15510465:25952256,513147,126484 -k1,5961:7297685,15510465:252069 -k1,5961:9045995,15510465:252123 -k1,5961:9914155,15510465:252122 -k1,5961:13699324,15510465:252123 -k1,5961:15183523,15510465:252122 -$1,5961:15183523,15510465 -k1,5961:16764251,15510465:0 -k1,5961:17159433,15510465:0 -k1,5961:17554615,15510465:0 -k1,5961:17949797,15510465:0 -k1,5961:21506435,15510465:0 -k1,5961:21901617,15510465:0 -k1,5961:24667891,15510465:0 -k1,5961:25063073,15510465:0 -$1,5961:26643801,15510465 -k1,5961:27276688,15510465:252123 -k1,5961:27998703,15510465:252122 -k1,5961:28782323,15510465:252123 -k1,5961:30053531,15510465:252123 -k1,5961:31923737,15510465:252122 -k1,5962:32583029,15510465:0 -) -(1,5962:6630773,16351953:25952256,505283,134348 -k1,5961:7268344,16351953:222728 -k1,5961:10401551,16351953:222753 -k1,5961:11908809,16351953:222752 -k1,5961:14657974,16351953:222752 -k1,5961:18448506,16351953:222752 -k1,5961:20242156,16351953:222752 -k1,5961:21656353,16351953:222752 -k1,5961:24565426,16351953:222752 -k1,5961:28321224,16351953:222752 -k1,5961:32583029,16351953:0 -) -(1,5962:6630773,17193441:25952256,513147,134348 -k1,5961:8083051,17193441:183501 -k1,5961:9732591,17193441:183500 -k1,5961:13990465,17193441:183501 -k1,5961:16754118,17193441:183501 -k1,5961:19823824,17193441:183500 -k1,5961:23698968,17193441:183501 -k1,5961:25073914,17193441:183501 -k1,5961:27092422,17193441:183500 -k1,5961:28223574,17193441:183501 -k1,5961:32583029,17193441:0 -) -(1,5962:6630773,18034929:25952256,513147,134348 -k1,5961:7990708,18034929:173733 -k1,5961:9932049,18034929:173835 -k1,5961:11084890,18034929:173733 -k1,5961:11862866,18034929:173734 -k1,5961:12771309,18034929:173784 -k1,5961:14919795,18034929:173886 -k1,5961:16290215,18034929:173733 -k1,5961:17556433,18034929:173733 -k1,5961:18389458,18034929:173733 -k1,5961:20402131,18034929:173734 -k1,5961:21107361,18034929:173733 -k1,5961:22635068,18034929:173733 -k1,5961:24087408,18034929:173733 -k1,5961:27524835,18034929:173734 -k1,5961:28966034,18034929:173733 -k1,5961:30158852,18034929:173733 -k1,5961:32583029,18034929:0 -) -(1,5962:6630773,18876417:25952256,475136,0 -k1,5962:32583030,18876417:24691344 -g1,5962:32583030,18876417 -) -(1,5964:6630773,19717905:25952256,505283,134348 -h1,5963:6630773,19717905:983040,0,0 -k1,5963:9225128,19717905:230471 -k1,5963:9987095,19717905:230470 -k1,5963:11283837,19717905:230471 -k1,5963:13747775,19717905:230471 -k1,5963:14748948,19717905:230470 -k1,5963:15394231,19717905:230440 -k1,5963:19976948,19717905:230471 -k1,5963:22691233,19717905:230470 -k1,5963:23607866,19717905:230471 -k1,5963:24296434,19717905:230471 -k1,5963:27384274,19717905:230470 -k1,5963:31966991,19717905:230471 -k1,5963:32583029,19717905:0 -) -(1,5964:6630773,20559393:25952256,505283,134348 -k1,5963:7951698,20559393:189118 -k1,5963:11156783,20559393:189118 -k1,5963:12269959,20559393:189118 -k1,5963:13478162,20559393:189118 -k1,5963:15369250,20559393:189118 -k1,5963:17338326,20559393:189118 -k1,5963:18730685,20559393:189118 -k1,5963:19451300,20559393:189118 -k1,5963:20411121,20559393:189118 -k1,5963:23774148,20559393:189118 -k1,5963:27172564,20559393:189118 -k1,5963:28695995,20559393:189118 -k1,5963:29536541,20559393:189118 -k1,5963:31510860,20559393:189118 -k1,5963:32583029,20559393:0 -) -(1,5964:6630773,21400881:25952256,505283,134348 -k1,5963:8113096,21400881:203716 -k1,5963:11406835,21400881:203716 -k1,5963:12226589,21400881:203716 -k1,5963:14132275,21400881:203716 -k1,5963:16248332,21400881:203716 -k1,5963:17643493,21400881:203716 -k1,5963:19115987,21400881:203717 -k1,5963:20785743,21400881:203716 -k1,5963:22549216,21400881:203716 -k1,5963:23368970,21400881:203716 -k1,5963:24591771,21400881:203716 -k1,5963:27549965,21400881:203716 -k1,5963:31202185,21400881:203716 -k1,5963:32583029,21400881:0 -) -(1,5964:6630773,22242369:25952256,513147,134348 -k1,5963:8665283,22242369:151661 -k1,5963:10572654,22242369:151661 -k1,5963:13704892,22242369:151661 -k1,5963:16215850,22242369:151662 -k1,5963:17468516,22242369:151661 -k1,5963:19130127,22242369:151661 -k1,5963:22434725,22242369:151661 -k1,5963:24321779,22242369:151661 -k1,5963:26312379,22242369:151661 -k1,5963:27655486,22242369:151662 -k1,5963:28826232,22242369:151661 -k1,5963:31086842,22242369:151661 -k1,5963:32583029,22242369:0 -) -(1,5964:6630773,23083857:25952256,513147,134349 -k1,5963:7760123,23083857:181699 -k1,5963:8960906,23083857:181698 -k1,5963:10724644,23083857:181699 -k1,5963:11437839,23083857:181698 -k1,5963:14403507,23083857:181699 -k1,5963:17143732,23083857:181699 -k1,5963:20328290,23083857:181698 -k1,5963:21122751,23083857:181699 -$1,5963:21122751,23083857 -k1,5963:23098661,23083857:0 -k1,5963:23493843,23083857:0 -k1,5963:23889025,23083857:0 -k1,5963:24284207,23083857:0 -k1,5963:27840845,23083857:0 -k1,5963:28236027,23083857:0 -k1,5963:29421573,23083857:0 -k1,5963:29816755,23083857:0 -k1,5963:32187847,23083857:0 -k1,5964:32583029,23083857:0 -) -(1,5964:6630773,23925345:25952256,505283,98314 -(1,5963:9397047,24023659:32768,0,0 -) -$1,5963:11010543,23925345 -k1,5964:32583029,23925345:21398816 -g1,5964:32583029,23925345 -) -(1,5965:6630773,26016605:25952256,555811,147783 -(1,5965:6630773,26016605:2450326,534184,12975 -g1,5965:6630773,26016605 -g1,5965:9081099,26016605 -) -g1,5965:13217601,26016605 -k1,5965:32583029,26016605:16902126 -g1,5965:32583029,26016605 -) -(1,5969:6630773,27251309:25952256,513147,134348 -k1,5968:7982031,27251309:154571 -k1,5968:9229088,27251309:154572 -k1,5968:10042951,27251309:154571 -k1,5968:11216607,27251309:154571 -k1,5968:12995817,27251309:154572 -k1,5968:14358216,27251309:154571 -k1,5968:15164215,27251309:154571 -k1,5968:17988068,27251309:154572 -k1,5968:18498499,27251309:154571 -k1,5968:21329561,27251309:154572 -k1,5968:22100170,27251309:154571 -k1,5968:25331001,27251309:154571 -k1,5968:28477947,27251309:154572 -k1,5968:29823963,27251309:154571 -k1,5968:32583029,27251309:0 -) -(1,5969:6630773,28092797:25952256,505283,134348 -k1,5968:9088233,28092797:201055 -k1,5968:9905326,28092797:201055 -k1,5968:11700217,28092797:201055 -k1,5968:13599310,28092797:201055 -k1,5968:14156225,28092797:201055 -k1,5968:15553967,28092797:201055 -k1,5968:17118172,28092797:201056 -k1,5968:18969424,28092797:201055 -k1,5968:22005566,28092797:201055 -k1,5968:22562481,28092797:201055 -k1,5968:24623448,28092797:201055 -k1,5968:25850141,28092797:201055 -k1,5968:28686399,28092797:201055 -k1,5968:29906539,28092797:201055 -k1,5968:32583029,28092797:0 -) -(1,5969:6630773,28934285:25952256,513147,134348 -k1,5968:7519550,28934285:229485 -k1,5968:8104895,28934285:229485 -k1,5968:9892171,28934285:229485 -k1,5968:10737694,28934285:229485 -k1,5968:11737882,28934285:229485 -k1,5968:17722739,28934285:229485 -k1,5968:21028485,28934285:229486 -k1,5968:23682802,28934285:229485 -k1,5968:24370384,28934285:229485 -k1,5968:25251297,28934285:229485 -k1,5968:29357237,28934285:229485 -k1,5968:30778167,28934285:229485 -k1,5968:32583029,28934285:0 -) -(1,5969:6630773,29775773:25952256,513147,134348 -k1,5968:9251104,29775773:269555 -k1,5968:12610681,29775773:269554 -k1,5968:13899321,29775773:269555 -k1,5968:15475008,29775773:269554 -k1,5968:18820823,29775773:269555 -k1,5968:20462046,29775773:269555 -k1,5968:21928287,29775773:269554 -k1,5968:23290327,29775773:269555 -k1,5968:24219174,29775773:269555 -k1,5968:25507813,29775773:269554 -k1,5968:27289939,29775773:269555 -k1,5968:28748971,29775773:269554 -k1,5968:29634564,29775773:269555 -k1,5969:32583029,29775773:0 -) -(1,5969:6630773,30617261:25952256,513147,134348 -k1,5968:7855792,30617261:234770 -k1,5968:10858147,30617261:234770 -k1,5968:12112002,30617261:234770 -k1,5968:13439257,30617261:234770 -k1,5968:14290065,30617261:234770 -k1,5968:17601095,30617261:234770 -k1,5968:20317714,30617261:234771 -k1,5968:21743929,30617261:234770 -k1,5968:26377476,30617261:234770 -k1,5968:27631331,30617261:234770 -k1,5968:29172234,30617261:234770 -k1,5968:30499489,30617261:234770 -k1,5968:31393551,30617261:234770 -k1,5968:32583029,30617261:0 -) -(1,5969:6630773,31458749:25952256,505283,134348 -k1,5968:7518654,31458749:271843 -k1,5968:11221308,31458749:271844 -k1,5968:13643387,31458749:271843 -k1,5968:14724600,31458749:271843 -k1,5968:16797373,31458749:271844 -k1,5968:19598906,31458749:271843 -k1,5968:20328846,31458749:271843 -k1,5968:24410297,31458749:271843 -k1,5968:25452844,31458749:271844 -k1,5968:29484487,31458749:271843 -k1,5968:32583029,31458749:0 -) -(1,5969:6630773,32300237:25952256,505283,134348 -g1,5968:9916092,32300237 -k1,5969:32583030,32300237:21296580 -g1,5969:32583030,32300237 -) -(1,5971:6630773,33141725:25952256,513147,134348 -h1,5970:6630773,33141725:983040,0,0 -k1,5970:8249970,33141725:148569 -k1,5970:10910584,33141725:148619 -k1,5970:14153158,33141725:148619 -k1,5970:15869399,33141725:148620 -k1,5970:16373878,33141725:148619 -k1,5970:18224467,33141725:148619 -k1,5970:20659637,33141725:148619 -k1,5970:21569785,33141725:148620 -k1,5970:24268410,33141725:148619 -k1,5970:25822776,33141725:148619 -k1,5970:28103937,33141725:148619 -k1,5970:29846393,33141725:148620 -k1,5970:30888268,33141725:148619 -k1,5970:32583029,33141725:0 -) -(1,5971:6630773,33983213:25952256,505283,134348 -g1,5970:7591530,33983213 -g1,5970:10177580,33983213 -k1,5971:32583028,33983213:20430848 -g1,5971:32583028,33983213 -) -(1,5973:7202902,35216807:24807998,513147,134348 -(1,5971:7202902,35216807:983040,0,0 -g1,5971:8185942,35216807 -g1,5971:6875222,35216807 -g1,5971:6547542,35216807 -(1,5971:6547542,35216807:1310720,0,0 -k1,5971:7858262,35216807:1310720 -) -g1,5971:8185942,35216807 -) -k1,5972:8842039,35216807:186204 -k1,5972:10129248,35216807:186204 -k1,5972:11825402,35216807:186204 -k1,5972:13240406,35216807:186204 -k1,5972:14151439,35216807:186205 -k1,5972:14953681,35216807:186204 -k1,5972:15906001,35216807:186204 -k1,5972:16751497,35216807:186204 -k1,5972:17918775,35216807:186204 -k1,5972:21611810,35216807:186204 -k1,5972:22994701,35216807:186204 -k1,5972:24487038,35216807:186204 -k1,5972:26028528,35216807:186205 -k1,5972:26746229,35216807:186204 -k1,5972:27703136,35216807:186204 -k1,5972:30819455,35216807:186204 -k1,5972:32010900,35216807:0 -) -(1,5973:7202902,36058295:24807998,513147,134348 -k1,5972:9455526,36058295:226906 -k1,5972:11076382,36058295:226905 -k1,5972:11659148,36058295:226906 -k1,5972:13750553,36058295:226906 -k1,5972:15411386,36058295:226905 -k1,5972:19000944,36058295:226906 -k1,5972:22281828,36058295:226906 -k1,5972:24170727,36058295:226906 -k1,5972:26007852,36058295:226905 -k1,5972:27301029,36058295:226906 -k1,5972:28719380,36058295:226906 -k1,5972:29611475,36058295:226905 -k1,5972:30576972,36058295:226906 -k1,5972:32010900,36058295:0 -) -(1,5973:7202902,36899783:24807998,513147,134348 -k1,5972:8632111,36899783:144703 -k1,5972:11909436,36899783:144704 -k1,5972:13547705,36899783:144703 -k1,5972:15165002,36899783:144703 -k1,5972:17137504,36899783:144703 -k1,5972:18473653,36899783:144704 -k1,5972:21981008,36899783:144703 -k1,5972:23117271,36899783:144703 -k1,5972:27118113,36899783:144704 -k1,5972:30819455,36899783:144703 -k1,5972:32010900,36899783:0 -) -(1,5973:7202902,37741271:24807998,513147,134348 -k1,5972:9855603,37741271:221315 -k1,5972:10736210,37741271:221315 -k1,5972:13270291,37741271:221315 -k1,5972:16537719,37741271:221315 -k1,5972:18542924,37741271:221315 -k1,5972:19955684,37741271:221315 -k1,5972:21821297,37741271:221315 -k1,5972:23034172,37741271:221315 -k1,5972:26047321,37741271:221315 -k1,5972:28311393,37741271:221315 -k1,5972:32010900,37741271:0 -) -(1,5973:7202902,38582759:24807998,513147,126483 -g1,5972:9822376,38582759 -g1,5972:10704490,38582759 -g1,5972:12981210,38582759 -g1,5972:13711936,38582759 -g1,5972:16675474,38582759 -k1,5973:32010900,38582759:12653693 -g1,5973:32010900,38582759 -) -(1,5976:6630773,39816353:25952256,505283,134348 -h1,5975:6630773,39816353:983040,0,0 -k1,5975:8990486,39816353:179986 -k1,5975:11409181,39816353:179985 -k1,5975:14864001,39816353:179986 -k1,5975:16899310,39816353:179985 -k1,5975:19125330,39816353:179986 -k1,5975:20835581,39816353:179985 -k1,5975:22300073,39816353:179986 -k1,5975:23855659,39816353:179985 -k1,5975:25389619,39816353:179986 -k1,5975:29778326,39816353:179985 -k1,5975:31451222,39816353:179986 -k1,5975:32583029,39816353:0 -) -(1,5976:6630773,40657841:25952256,513147,134348 -k1,5975:8123771,40657841:209803 -k1,5975:10422207,40657841:209804 -k1,5975:12082977,40657841:209803 -k1,5975:14994174,40657841:209803 -k1,5975:16400665,40657841:209804 -k1,5975:18263941,40657841:209803 -k1,5975:20755052,40657841:209803 -k1,5975:21616283,40657841:209803 -k1,5975:22240919,40657841:209793 -k1,5975:24612099,40657841:209803 -k1,5975:25508065,40657841:209804 -k1,5975:26996475,40657841:209803 -k1,5975:27892440,40657841:209803 -k1,5975:29234051,40657841:209804 -k1,5975:31145824,40657841:209803 -k1,5976:32583029,40657841:0 -) -(1,5976:6630773,41499329:25952256,513147,134348 -k1,5975:8736394,41499329:239811 -k1,5975:10626402,41499329:239811 -k1,5975:11525505,41499329:239811 -k1,5975:14841577,41499329:239812 -k1,5975:16751245,41499329:239811 -k1,5975:18653049,41499329:239811 -k1,5975:20096101,41499329:239811 -k1,5975:20794009,41499329:239811 -k1,5975:23669678,41499329:239811 -k1,5975:26224877,41499329:239812 -k1,5975:27749194,41499329:239811 -k1,5975:30170699,41499329:239811 -k1,5975:31601955,41499329:239811 -k1,5976:32583029,41499329:0 -) -(1,5976:6630773,42340817:25952256,513147,134348 -k1,5975:9490536,42340817:305825 -k1,5975:10787920,42340817:305824 -k1,5975:15164841,42340817:305825 -k1,5975:17156251,42340817:305824 -k1,5975:18078114,42340817:305825 -k1,5975:19403023,42340817:305824 -k1,5975:23840893,42340817:305825 -k1,5975:24813873,42340817:305824 -k1,5975:25534434,42340817:305718 -k1,5975:28001636,42340817:305825 -k1,5975:29498905,42340817:305824 -k1,5975:32583029,42340817:0 -) -(1,5976:6630773,43182305:25952256,513147,134348 -k1,5975:10461100,43182305:252061 -k1,5975:11399324,43182305:252062 -k1,5975:12422088,43182305:252061 -k1,5975:15171727,43182305:252062 -k1,5975:15955285,43182305:252061 -k1,5975:18573197,43182305:252062 -k1,5975:19844343,43182305:252061 -k1,5975:21922893,43182305:252062 -k1,5975:22834246,43182305:252061 -k1,5975:24289549,43182305:252062 -k1,5975:26297320,43182305:252061 -k1,5975:29484084,43182305:252062 -k1,5975:31266411,43182305:252061 -k1,5976:32583029,43182305:0 -) -(1,5976:6630773,44023793:25952256,513147,134348 -k1,5975:10161343,44023793:281950 -k1,5975:11944067,44023793:281950 -k1,5975:13417463,44023793:281951 -k1,5975:15283418,44023793:281950 -k1,5975:20391439,44023793:281950 -k1,5975:21664949,44023793:281950 -k1,5975:26337157,44023793:281951 -k1,5975:27566758,44023793:281950 -k1,5975:30401335,44023793:281950 -k1,5975:32583029,44023793:0 -) -(1,5976:6630773,44865281:25952256,505283,7863 -g1,5975:8021447,44865281 -k1,5976:32583030,44865281:22659728 -g1,5976:32583030,44865281 -) -(1,5978:6630773,45706769:25952256,513147,134348 -h1,5977:6630773,45706769:983040,0,0 -k1,5977:9339704,45706769:235602 -k1,5977:10522957,45706769:235602 -k1,5977:12919936,45706769:235602 -k1,5977:14668763,45706769:235601 -k1,5977:15852016,45706769:235602 -k1,5977:19160601,45706769:235602 -k1,5977:19752063,45706769:235602 -k1,5977:21860684,45706769:235602 -k1,5977:23485649,45706769:235602 -k1,5977:24829465,45706769:235602 -k1,5977:25933418,45706769:235601 -k1,5977:27699286,45706769:235602 -k1,5977:28586316,45706769:235602 -k1,5977:29569684,45706769:235602 -k1,5977:32583029,45706769:0 -) -] -(1,5978:32583029,45706769:0,0,0 -g1,5978:32583029,45706769 -) -) -] -(1,5978:6630773,47279633:25952256,0,0 -h1,5978:6630773,47279633:25952256,0,0 -) -] -(1,5978:4262630,4025873:0,0,0 -[1,5978:-473656,4025873:0,0,0 -(1,5978:-473656,-710413:0,0,0 -(1,5978:-473656,-710413:0,0,0 -g1,5978:-473656,-710413 -) -g1,5978:-473656,-710413 -) -] -) -] -!23466 -}113 -Input:824:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:825:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:826:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!285 -{114 -[1,5992:4262630,47279633:28320399,43253760,0 -(1,5992:4262630,4025873:0,0,0 -[1,5992:-473656,4025873:0,0,0 -(1,5992:-473656,-710413:0,0,0 -(1,5992:-473656,-644877:0,0,0 -k1,5992:-473656,-644877:-65536 -) -(1,5992:-473656,4736287:0,0,0 -k1,5992:-473656,4736287:5209943 -) -g1,5992:-473656,-710413 -) -] -) -[1,5992:6630773,47279633:25952256,43253760,0 -[1,5992:6630773,4812305:25952256,786432,0 -(1,5992:6630773,4812305:25952256,485622,134348 -(1,5992:6630773,4812305:25952256,485622,134348 -g1,5992:3078558,4812305 -[1,5992:3078558,4812305:0,0,0 -(1,5992:3078558,2439708:0,1703936,0 -k1,5992:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,5992:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,5992:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,5992:3078558,4812305:0,0,0 -(1,5992:3078558,2439708:0,1703936,0 -g1,5992:29030814,2439708 -g1,5992:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,5992:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,5992:37855564,2439708:1179648,16384,0 -) -) -k1,5992:3078556,2439708:-34777008 -) -] -[1,5992:3078558,4812305:0,0,0 -(1,5992:3078558,49800853:0,16384,2228224 -k1,5992:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,5992:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,5992:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,5992:3078558,4812305:0,0,0 -(1,5992:3078558,49800853:0,16384,2228224 -g1,5992:29030814,49800853 -g1,5992:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,5992:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,5992:37855564,49800853:1179648,16384,0 -) -) -k1,5992:3078556,49800853:-34777008 -) -] -g1,5992:6630773,4812305 -g1,5992:6630773,4812305 -g1,5992:9132937,4812305 -g1,5992:11356573,4812305 -k1,5992:31387653,4812305:20031080 -) -) -] -[1,5992:6630773,45706769:25952256,40108032,0 -(1,5992:6630773,45706769:25952256,40108032,0 -(1,5992:6630773,45706769:0,0,0 -g1,5992:6630773,45706769 -) -[1,5992:6630773,45706769:25952256,40108032,0 -(1,5978:6630773,6254097:25952256,505283,134348 -k1,5977:8110303,6254097:195024 -k1,5977:9324412,6254097:195024 -k1,5977:12960731,6254097:195024 -k1,5977:14347200,6254097:195024 -k1,5977:16050863,6254097:195024 -k1,5977:21302645,6254097:195024 -k1,5977:22489229,6254097:195024 -k1,5977:24398019,6254097:195024 -k1,5977:25784488,6254097:195024 -k1,5977:27288266,6254097:195024 -k1,5977:28134718,6254097:195024 -k1,5977:30340387,6254097:195024 -k1,5977:32583029,6254097:0 -) -(1,5978:6630773,7095585:25952256,513147,126483 -k1,5977:9185038,7095585:207421 -k1,5977:10773304,7095585:207422 -k1,5977:11512222,7095585:207421 -k1,5977:13027086,7095585:207421 -k1,5977:14701203,7095585:207421 -k1,5977:15856276,7095585:207422 -k1,5977:18913202,7095585:207421 -k1,5977:21620822,7095585:207421 -k1,5977:23853961,7095585:207421 -k1,5977:27518407,7095585:207422 -k1,5977:30052356,7095585:207421 -k1,5977:31451222,7095585:207421 -k1,5977:32583029,7095585:0 -) -(1,5978:6630773,7937073:25952256,513147,134348 -k1,5977:8226640,7937073:206504 -k1,5977:10987737,7937073:206504 -k1,5977:13415911,7937073:206503 -k1,5977:14273843,7937073:206504 -k1,5977:18143810,7937073:206504 -k1,5977:19009606,7937073:206504 -k1,5977:22842872,7937073:206504 -k1,5977:24443326,7937073:206503 -k1,5977:27936461,7937073:206504 -k1,5977:28825850,7937073:206504 -k1,5977:32583029,7937073:0 -) -(1,5978:6630773,8778561:25952256,513147,126483 -k1,5977:7675064,8778561:270311 -k1,5977:10227993,8778561:270310 -k1,5977:11965000,8778561:270311 -k1,5977:12851349,8778561:270311 -k1,5977:14819041,8778561:270310 -k1,5977:16787390,8778561:270311 -k1,5977:17926053,8778561:270311 -k1,5977:19187924,8778561:270311 -k1,5977:20524505,8778561:270310 -k1,5977:23507351,8778561:270311 -k1,5977:24429090,8778561:270311 -k1,5977:28732486,8778561:270310 -k1,5977:31535764,8778561:270311 -k1,5977:32583029,8778561:0 -) -(1,5978:6630773,9620049:25952256,513147,134348 -k1,5977:7780728,9620049:202304 -k1,5977:10626755,9620049:202305 -k1,5977:13187700,9620049:202304 -k1,5977:15427519,9620049:202305 -k1,5977:18114293,9620049:202304 -k1,5977:18968026,9620049:202305 -k1,5977:19526190,9620049:202304 -k1,5977:21956064,9620049:202305 -k1,5977:26374299,9620049:202304 -k1,5977:27444956,9620049:202305 -k1,5977:28779722,9620049:202304 -k1,5977:30180681,9620049:202305 -k1,5977:31931601,9620049:202304 -k1,5977:32583029,9620049:0 -) -(1,5978:6630773,10461537:25952256,505283,126483 -g1,5977:8559497,10461537 -g1,5977:10640265,10461537 -k1,5978:32583028,10461537:18934660 -g1,5978:32583028,10461537 -) -(1,5980:6630773,11303025:25952256,513147,134348 -h1,5979:6630773,11303025:983040,0,0 -k1,5979:9053991,11303025:243491 -k1,5979:10603616,11303025:243492 -k1,5979:12202392,11303025:243491 -k1,5979:13061921,11303025:243491 -k1,5979:16568451,11303025:243492 -k1,5979:19162718,11303025:243491 -k1,5979:22482469,11303025:243491 -k1,5979:24222147,11303025:243491 -k1,5979:24997136,11303025:243492 -k1,5979:25892055,11303025:243491 -k1,5979:28183546,11303025:243491 -k1,5979:29711544,11303025:243492 -k1,5979:31086842,11303025:243491 -k1,5979:32583029,11303025:0 -) -(1,5980:6630773,12144513:25952256,513147,126483 -k1,5979:8200470,12144513:285191 -k1,5979:9354013,12144513:285191 -k1,5979:11254010,12144513:285190 -k1,5979:13399768,12144513:285191 -k1,5979:14336387,12144513:285191 -k1,5979:15369344,12144513:285191 -k1,5979:17614060,12144513:285190 -k1,5979:19264366,12144513:285191 -k1,5979:20015518,12144513:285191 -k1,5979:23104339,12144513:285191 -k1,5979:26484139,12144513:285190 -k1,5979:29373731,12144513:285191 -k1,5979:32583029,12144513:0 -) -(1,5980:6630773,12986001:25952256,505283,126483 -k1,5979:8209099,12986001:223041 -k1,5979:8963636,12986001:223040 -k1,5979:9838105,12986001:223041 -k1,5979:11776878,12986001:223040 -k1,5979:13380763,12986001:223041 -k1,5979:14888310,12986001:223041 -k1,5979:16819874,12986001:223040 -k1,5979:17574412,12986001:223041 -k1,5979:20718392,12986001:223040 -k1,5979:22951422,12986001:223041 -k1,5979:24193548,12986001:223041 -k1,5979:26247664,12986001:223040 -k1,5979:27662150,12986001:223041 -k1,5979:28241050,12986001:223040 -k1,5979:30976086,12986001:223041 -k1,5979:32583029,12986001:0 -) -(1,5980:6630773,13827489:25952256,513147,134348 -k1,5979:9851649,13827489:180005 -k1,5979:10979305,13827489:180005 -k1,5979:12336338,13827489:180006 -k1,5979:14224867,13827489:180005 -k1,5979:17592543,13827489:180005 -k1,5979:19312644,13827489:180005 -k1,5979:21201174,13827489:180006 -k1,5979:23391824,13827489:180005 -k1,5979:25592959,13827489:180005 -k1,5979:28138814,13827489:180005 -k1,5979:29337905,13827489:180006 -k1,5979:31298523,13827489:180005 -k1,5979:32583029,13827489:0 -) -(1,5980:6630773,14668977:25952256,505283,126483 -g1,5979:7934284,14668977 -g1,5979:8881279,14668977 -g1,5979:11445047,14668977 -g1,5979:14223773,14668977 -g1,5979:15184530,14668977 -g1,5979:16402844,14668977 -k1,5980:32583029,14668977:13968345 -g1,5980:32583029,14668977 -) -(1,5982:6630773,15510465:25952256,513147,134348 -h1,5981:6630773,15510465:983040,0,0 -k1,5981:8385546,15510465:293976 -k1,5981:10793713,15510465:293976 -k1,5981:13443053,15510465:293976 -k1,5981:14419913,15510465:293975 -k1,5981:16828080,15510465:293976 -k1,5981:19400743,15510465:293976 -k1,5981:20960875,15510465:293976 -k1,5981:21610711,15510465:293976 -k1,5981:23897637,15510465:293976 -k1,5981:25871956,15510465:293976 -k1,5981:26697428,15510465:293975 -k1,5981:29770131,15510465:293976 -k1,5981:30825635,15510465:293976 -k1,5981:31475471,15510465:293976 -k1,5982:32583029,15510465:0 -) -(1,5982:6630773,16351953:25952256,513147,134348 -k1,5981:9618307,16351953:236988 -k1,5981:10538180,16351953:236988 -k1,5981:11584539,16351953:236989 -k1,5981:13501870,16351953:236988 -k1,5981:15188514,16351953:236988 -k1,5981:16444587,16351953:236988 -k1,5981:18512652,16351953:236989 -k1,5981:21150224,16351953:236988 -k1,5981:22070097,16351953:236988 -k1,5981:24767962,16351953:236988 -k1,5981:25360811,16351953:236989 -k1,5981:27036314,16351953:236988 -k1,5981:29261009,16351953:236988 -k1,5981:32583029,16351953:0 -) -(1,5982:6630773,17193441:25952256,513147,134348 -k1,5981:9422432,17193441:199710 -k1,5981:10238180,17193441:199710 -k1,5981:12694295,17193441:199710 -k1,5981:13913090,17193441:199710 -k1,5981:15894724,17193441:199710 -k1,5981:16753726,17193441:199710 -k1,5981:17972521,17193441:199710 -k1,5981:21022391,17193441:199709 -k1,5981:22418788,17193441:199710 -k1,5981:24400422,17193441:199710 -k1,5981:25704414,17193441:199710 -k1,5981:26651890,17193441:199710 -k1,5981:28707580,17193441:199710 -k1,5981:29263150,17193441:199710 -k1,5981:31966991,17193441:199710 -k1,5981:32583029,17193441:0 -) -(1,5982:6630773,18034929:25952256,513147,134348 -k1,5981:7904083,18034929:254225 -k1,5981:13215066,18034929:254225 -k1,5981:14128584,18034929:254226 -k1,5981:15153512,18034929:254225 -k1,5981:18692401,18034929:254225 -k1,5981:19632788,18034929:254225 -k1,5981:21165620,18034929:254225 -k1,5981:22106007,18034929:254225 -k1,5981:22976271,18034929:254226 -k1,5981:24249581,18034929:254225 -k1,5981:27614800,18034929:254225 -k1,5981:29648327,18034929:254225 -k1,5981:32583029,18034929:0 -) -(1,5982:6630773,18876417:25952256,513147,134348 -k1,5981:8616715,18876417:234165 -k1,5981:11711527,18876417:234165 -k1,5981:13454987,18876417:234165 -k1,5981:14680712,18876417:234165 -k1,5981:17117542,18876417:234165 -k1,5981:18113235,18876417:234165 -k1,5981:19524428,18876417:234166 -k1,5981:20441478,18876417:234165 -k1,5981:23147661,18876417:234165 -k1,5981:26183490,18876417:234165 -k1,5981:27076947,18876417:234165 -k1,5981:29505257,18876417:234165 -k1,5981:31436804,18876417:234165 -k1,5981:32583029,18876417:0 -) -(1,5982:6630773,19717905:25952256,505283,134348 -k1,5981:9045884,19717905:258976 -k1,5981:11013385,19717905:258977 -k1,5981:13456676,19717905:258976 -k1,5981:16639213,19717905:258976 -k1,5981:19009105,19717905:258977 -k1,5981:21789251,19717905:258976 -k1,5981:22809755,19717905:258976 -k1,5981:24662568,19717905:258977 -k1,5981:26206705,19717905:258976 -k1,5981:27081719,19717905:258976 -k1,5981:29226167,19717905:258977 -k1,5981:29841003,19717905:258976 -k1,5981:32583029,19717905:0 -) -(1,5982:6630773,20559393:25952256,513147,134348 -g1,5981:9230586,20559393 -g1,5981:11756998,20559393 -g1,5981:12615519,20559393 -g1,5981:15682603,20559393 -g1,5981:18148722,20559393 -g1,5981:18703811,20559393 -g1,5981:21175829,20559393 -g1,5981:22982001,20559393 -k1,5982:32583029,20559393:6722031 -g1,5982:32583029,20559393 -) -(1,5984:6630773,21400881:25952256,513147,134348 -h1,5983:6630773,21400881:983040,0,0 -k1,5983:11395593,21400881:217277 -k1,5983:12631955,21400881:217277 -k1,5983:14958181,21400881:217277 -k1,5983:15834750,21400881:217277 -k1,5983:17571807,21400881:217277 -k1,5983:18494251,21400881:217277 -k1,5983:19327566,21400881:217277 -k1,5983:21146543,21400881:217277 -k1,5983:23234873,21400881:217277 -k1,5983:24598375,21400881:217277 -k1,5983:27684163,21400881:217277 -k1,5983:29671567,21400881:217277 -k1,5983:31160242,21400881:217277 -k1,5983:32583029,21400881:0 -) -(1,5984:6630773,22242369:25952256,513147,126483 -k1,5983:9493479,22242369:192114 -k1,5983:11540262,22242369:192114 -k1,5983:12541746,22242369:192114 -k1,5983:15511276,22242369:192114 -k1,5983:17473517,22242369:192114 -k1,5983:18857076,22242369:192114 -k1,5983:22462305,22242369:192114 -k1,5983:23305847,22242369:192114 -k1,5983:24404324,22242369:192114 -k1,5983:25247866,22242369:192114 -k1,5983:27333315,22242369:192114 -k1,5983:28544514,22242369:192114 -k1,5983:30235436,22242369:192114 -k1,5983:31086842,22242369:192114 -k1,5983:32583029,22242369:0 -) -(1,5984:6630773,23083857:25952256,513147,134348 -k1,5983:9271218,23083857:215613 -k1,5983:10505917,23083857:215614 -k1,5983:13571691,23083857:215613 -k1,5983:15058702,23083857:215613 -k1,5983:17589703,23083857:215614 -k1,5983:20567659,23083857:215613 -k1,5983:22420362,23083857:215613 -k1,5983:24128885,23083857:215613 -k1,5983:25363584,23083857:215614 -k1,5983:26946278,23083857:215613 -k1,5983:27693388,23083857:215613 -k1,5983:30137881,23083857:215614 -k1,5983:30981329,23083857:215613 -k1,5983:32583029,23083857:0 -) -(1,5984:6630773,23925345:25952256,513147,134348 -k1,5983:8680336,23925345:178510 -k1,5983:9471608,23925345:178510 -k1,5983:10669203,23925345:178510 -k1,5983:12201686,23925345:178509 -k1,5983:14703447,23925345:178510 -k1,5983:15750309,23925345:178510 -k1,5983:17130749,23925345:178510 -k1,5983:18118629,23925345:178510 -k1,5983:19989279,23925345:178510 -k1,5983:21437876,23925345:178509 -k1,5983:22275678,23925345:178510 -k1,5983:28617849,23925345:178510 -k1,5983:31541007,23925345:178510 -k1,5983:32583029,23925345:0 -) -(1,5984:6630773,24766833:25952256,505283,126483 -k1,5983:9704888,24766833:239028 -k1,5983:10812267,24766833:239027 -k1,5983:12388229,24766833:239028 -k1,5983:14449158,24766833:239028 -k1,5983:15707271,24766833:239028 -k1,5983:17626641,24766833:239027 -k1,5983:20644396,24766833:239028 -k1,5983:21644952,24766833:239028 -k1,5983:25941969,24766833:239028 -k1,5983:29982739,24766833:239027 -k1,5983:31714677,24766833:239028 -k1,5983:32583029,24766833:0 -) -(1,5984:6630773,25608321:25952256,505283,134348 -k1,5983:8688663,25608321:164555 -k1,5983:9872303,25608321:164555 -k1,5983:12369283,25608321:164554 -k1,5983:14030025,25608321:164555 -k1,5983:17380940,25608321:164555 -k1,5983:20808533,25608321:164555 -k1,5983:21328948,25608321:164555 -k1,5983:23486453,25608321:164555 -k1,5983:25505021,25608321:164554 -k1,5983:28273977,25608321:164555 -k1,5983:31215948,25608321:164555 -k1,5983:32583029,25608321:0 -) -(1,5984:6630773,26449809:25952256,513147,134348 -k1,5983:7341879,26449809:179609 -k1,5983:9219527,26449809:179610 -k1,5983:11091276,26449809:179609 -k1,5983:12979410,26449809:179610 -k1,5983:15169664,26449809:179609 -k1,5983:17479849,26449809:179610 -k1,5983:18015318,26449809:179609 -k1,5983:19558076,26449809:179609 -k1,5983:20365521,26449809:179610 -k1,5983:22038696,26449809:179609 -k1,5983:23915688,26449809:179610 -k1,5983:24553394,26449809:179609 -k1,5983:25264501,26449809:179610 -k1,5983:28749091,26449809:179609 -k1,5983:30263669,26449809:179610 -k1,5983:31094706,26449809:179609 -k1,5983:32583029,26449809:0 -) -(1,5984:6630773,27291297:25952256,513147,134348 -k1,5983:7529271,27291297:136970 -k1,5983:9847935,27291297:136970 -k1,5983:10450866,27291297:136970 -k1,5983:13350180,27291297:136971 -k1,5983:15784842,27291297:136970 -k1,5983:16581104,27291297:136970 -k1,5983:18426598,27291297:136970 -k1,5983:19892638,27291297:136970 -k1,5983:20681036,27291297:136970 -k1,5983:25491379,27291297:136971 -k1,5983:26311234,27291297:136970 -k1,5983:27688145,27291297:136970 -k1,5983:30874505,27291297:136970 -k1,5983:32583029,27291297:0 -) -(1,5984:6630773,28132785:25952256,513147,134348 -k1,5983:8864240,28132785:222822 -k1,5983:10078622,28132785:222822 -k1,5983:12588652,28132785:222823 -k1,5983:13830559,28132785:222822 -k1,5983:16233108,28132785:222822 -k1,5983:18116612,28132785:222822 -k1,5983:19581997,28132785:222822 -k1,5983:20752470,28132785:222822 -k1,5983:23965045,28132785:222823 -k1,5983:25781703,28132785:222822 -k1,5983:28659388,28132785:222822 -k1,5983:30073655,28132785:222822 -k1,5983:32583029,28132785:0 -) -(1,5984:6630773,28974273:25952256,513147,134348 -k1,5983:9035325,28974273:220237 -k1,5983:10609536,28974273:220237 -k1,5983:12400671,28974273:220237 -k1,5983:14805222,28974273:220236 -k1,5983:16379433,28974273:220237 -k1,5983:18316058,28974273:220237 -k1,5983:20720610,28974273:220237 -k1,5983:23412865,28974273:220237 -k1,5983:25643747,28974273:220237 -(1,5983:25850841,28974273:0,414482,115847 -r1,5992:26560819,28974273:709978,530329,115847 -k1,5983:25850841,28974273:-709978 -) -(1,5983:25850841,28974273:709978,414482,115847 -k1,5983:25850841,28974273:3277 -h1,5983:26557542,28974273:0,411205,112570 -) -k1,5983:27161819,28974273:220236 -k1,5983:29690234,28974273:220237 -k1,5983:30569763,28974273:220237 -k1,5983:32583029,28974273:0 -) -(1,5984:6630773,29815761:25952256,505283,115847 -g1,5983:8250167,29815761 -(1,5983:8457261,29815761:0,452978,115847 -r1,5992:11629221,29815761:3171960,568825,115847 -k1,5983:8457261,29815761:-3171960 -) -(1,5983:8457261,29815761:3171960,452978,115847 -k1,5983:8457261,29815761:3277 -h1,5983:11625944,29815761:0,411205,112570 -) -g1,5983:12209214,29815761 -k1,5984:32583029,29815761:19262324 -g1,5984:32583029,29815761 -) -v1,5986:6630773,31181537:0,393216,0 -(1,5987:6630773,37665306:25952256,6876985,616038 -g1,5987:6630773,37665306 -(1,5987:6630773,37665306:25952256,6876985,616038 -(1,5987:6630773,38281344:25952256,7493023,0 -[1,5987:6630773,38281344:25952256,7493023,0 -(1,5987:6630773,38255130:25952256,7440595,0 -r1,5992:6656987,38255130:26214,7440595,0 -[1,5987:6656987,38255130:25899828,7440595,0 -(1,5987:6656987,37665306:25899828,6260947,0 -[1,5987:7246811,37665306:24720180,6260947,0 -(1,5987:7246811,32489895:24720180,1085536,298548 -(1,5986:7246811,32489895:0,1085536,298548 -r1,5992:8753226,32489895:1506415,1384084,298548 -k1,5986:7246811,32489895:-1506415 -) -(1,5986:7246811,32489895:1506415,1085536,298548 -) -k1,5986:8889185,32489895:135959 -k1,5986:10735279,32489895:139536 -k1,5986:14028763,32489895:135959 -k1,5986:15947956,32489895:135958 -k1,5986:19579605,32489895:135959 -k1,5986:21223547,32489895:135959 -k1,5986:21975544,32489895:135959 -k1,5986:23768252,32489895:135958 -k1,5986:25188717,32489895:135959 -k1,5986:25940714,32489895:135959 -k1,5986:27768813,32489895:135959 -k1,5986:29602153,32489895:135958 -k1,5986:30093972,32489895:135959 -k1,5986:31966991,32489895:0 -) -(1,5987:7246811,33331383:24720180,513147,134348 -k1,5986:8636655,33331383:200366 -k1,5986:9941302,33331383:200365 -k1,5986:11470738,33331383:200366 -k1,5986:12322531,33331383:200365 -k1,5986:12878757,33331383:200366 -k1,5986:14961971,33331383:200365 -k1,5986:17639598,33331383:200366 -k1,5986:18499255,33331383:200365 -k1,5986:20306564,33331383:200366 -k1,5986:23716227,33331383:200365 -k1,5986:24814436,33331383:200366 -k1,5986:26300617,33331383:200365 -k1,5986:28008966,33331383:200366 -k1,5986:28825369,33331383:200365 -k1,5986:30682485,33331383:200366 -k1,5986:31966991,33331383:0 -) -(1,5987:7246811,34172871:24720180,505283,134348 -k1,5986:9499873,34172871:224067 -k1,5986:12732044,34172871:224068 -k1,5986:16433451,34172871:224067 -k1,5986:18355557,34172871:224068 -k1,5986:20075811,34172871:224067 -k1,5986:20831375,34172871:224067 -k1,5986:23478309,34172871:224068 -k1,5986:26260902,34172871:224067 -k1,5986:27504055,34172871:224068 -k1,5986:30862709,34172871:224067 -k1,5986:31966991,34172871:0 -) -(1,5987:7246811,35014359:24720180,505283,126483 -k1,5986:9416768,35014359:264825 -k1,5986:11930133,35014359:264825 -k1,5986:12810996,35014359:264825 -k1,5986:13431681,35014359:264825 -k1,5986:15701252,35014359:264825 -k1,5986:18253284,35014359:264825 -k1,5986:20172893,35014359:264825 -k1,5986:20969215,35014359:264825 -k1,5986:22706634,35014359:264825 -k1,5986:28047878,35014359:264825 -k1,5986:30947906,35014359:264825 -k1,5986:31966991,35014359:0 -) -(1,5987:7246811,35855847:24720180,513147,134348 -k1,5986:10022678,35855847:290086 -k1,5986:10972056,35855847:290086 -k1,5986:12869085,35855847:290086 -k1,5986:16194799,35855847:290086 -k1,5986:17676330,35855847:290086 -k1,5986:18985502,35855847:290087 -k1,5986:23005242,35855847:290086 -k1,5986:23954620,35855847:290086 -k1,5986:25263791,35855847:290086 -k1,5986:26743355,35855847:290086 -k1,5986:30154265,35855847:290086 -k1,5986:31966991,35855847:0 -) -(1,5987:7246811,36697335:24720180,505283,134348 -k1,5986:9245540,36697335:215494 -k1,5986:11692535,36697335:215494 -k1,5986:13845274,36697335:215495 -k1,5986:15052328,36697335:215494 -k1,5986:18340150,36697335:215494 -k1,5986:20043967,36697335:215494 -k1,5986:21020989,36697335:215494 -k1,5986:23639033,36697335:215494 -k1,5986:24873613,36697335:215495 -k1,5986:26696050,36697335:215494 -k1,5986:29616870,36697335:215494 -k1,5986:31966991,36697335:0 -) -(1,5987:7246811,37538823:24720180,513147,126483 -g1,5986:8925843,37538823 -g1,5986:9811234,37538823 -g1,5986:11464052,37538823 -g1,5986:13600525,37538823 -g1,5986:14904036,37538823 -g1,5986:15851031,37538823 -g1,5986:16820963,37538823 -g1,5986:19484346,37538823 -g1,5986:23766468,37538823 -g1,5986:24624989,37538823 -g1,5986:26857800,37538823 -k1,5987:31966991,37538823:3448509 -g1,5987:31966991,37538823 -) -] -) -] -r1,5992:32583029,38255130:26214,7440595,0 -) -] -) -) -g1,5987:32583029,37665306 -) -h1,5987:6630773,38281344:0,0,0 -(1,5990:6630773,39647120:25952256,505283,134348 -h1,5989:6630773,39647120:983040,0,0 -k1,5989:9645691,39647120:199491 -k1,5989:10836743,39647120:199492 -k1,5989:13230379,39647120:199491 -k1,5989:15184925,39647120:199492 -k1,5989:17252192,39647120:199491 -k1,5989:20923125,39647120:199491 -k1,5989:24080257,39647120:199492 -k1,5989:25471193,39647120:199491 -k1,5989:27050873,39647120:199492 -k1,5989:28638417,39647120:199491 -k1,5989:32583029,39647120:0 -) -(1,5990:6630773,40488608:25952256,505283,134348 -k1,5989:10204451,40488608:193331 -k1,5989:12079436,40488608:193331 -k1,5989:13429478,40488608:193332 -k1,5989:14274237,40488608:193331 -k1,5989:15822853,40488608:193331 -k1,5989:18574710,40488608:193331 -k1,5989:19787127,40488608:193332 -k1,5989:21650315,40488608:193331 -k1,5989:24898934,40488608:193331 -k1,5989:26248975,40488608:193331 -k1,5989:29628667,40488608:193332 -k1,5989:30434760,40488608:193331 -k1,5989:30983951,40488608:193331 -k1,5989:32583029,40488608:0 -) -(1,5990:6630773,41330096:25952256,505283,134348 -k1,5989:8081264,41330096:259046 -k1,5989:8953072,41330096:259046 -k1,5989:10663739,41330096:259045 -k1,5989:12965542,41330096:259046 -k1,5989:15896491,41330096:259046 -k1,5989:17174622,41330096:259046 -k1,5989:18814512,41330096:259046 -k1,5989:19724985,41330096:259045 -k1,5989:22288932,41330096:259046 -k1,5989:23567063,41330096:259046 -k1,5989:26115937,41330096:259046 -k1,5989:28780810,41330096:259046 -k1,5989:29655893,41330096:259045 -k1,5989:30934024,41330096:259046 -k1,5989:31607853,41330096:258986 -k1,5990:32583029,41330096:0 -) -(1,5990:6630773,42171584:25952256,505283,126483 -k1,5989:10170789,42171584:244866 -k1,5989:11607100,42171584:244866 -k1,5989:13360606,42171584:244867 -k1,5989:15789787,42171584:244866 -k1,5989:16504546,42171584:244866 -k1,5989:17280909,42171584:244866 -k1,5989:18992471,42171584:244866 -k1,5989:21867297,42171584:244866 -k1,5989:22763592,42171584:244867 -k1,5989:25420838,42171584:244866 -k1,5989:28892697,42171584:244866 -k1,5989:32583029,42171584:0 -) -(1,5990:6630773,43013072:25952256,513147,134348 -k1,5989:8041152,43013072:189443 -k1,5989:8882024,43013072:189444 -k1,5989:11333770,43013072:189443 -k1,5989:12542298,43013072:189443 -k1,5989:14412085,43013072:189444 -k1,5989:15260820,43013072:189443 -k1,5989:15806123,43013072:189443 -k1,5989:18680577,43013072:189444 -k1,5989:20559538,43013072:189443 -k1,5989:23824586,43013072:189443 -k1,5989:24545526,43013072:189443 -k1,5989:27198468,43013072:189444 -k1,5989:28290342,43013072:189443 -k1,5989:28894619,43013072:189434 -k1,5989:32051532,43013072:189443 -k1,5989:32583029,43013072:0 -) -(1,5990:6630773,43854560:25952256,505283,134348 -g1,5989:9613971,43854560 -g1,5989:11823189,43854560 -g1,5989:14446595,43854560 -g1,5989:15837269,43854560 -g1,5989:17322314,43854560 -g1,5989:20080069,43854560 -g1,5989:21298383,43854560 -g1,5989:21912455,43854560 -k1,5990:32583029,43854560:8076659 -g1,5990:32583029,43854560 -) -(1,5992:6630773,44696048:25952256,513147,134348 -h1,5991:6630773,44696048:983040,0,0 -k1,5991:9590925,44696048:193877 -k1,5991:12042517,44696048:193877 -k1,5991:13695225,44696048:193877 -k1,5991:15195236,44696048:193878 -k1,5991:17724161,44696048:193877 -k1,5991:19088511,44696048:193877 -k1,5991:20414850,44696048:193877 -k1,5991:23076813,44696048:193877 -k1,5991:26095947,44696048:193877 -k1,5991:27742103,44696048:193878 -k1,5991:29127425,44696048:193877 -k1,5991:30932832,44696048:193877 -k1,5991:32583029,44696048:0 -) -(1,5992:6630773,45537536:25952256,505283,134348 -k1,5991:7649353,45537536:257052 -k1,5991:10429542,45537536:257053 -k1,5991:11705679,45537536:257052 -k1,5991:13793807,45537536:257052 -k1,5991:15207570,45537536:257053 -k1,5991:16633129,45537536:257052 -k1,5991:17502943,45537536:257052 -k1,5991:18115855,45537536:257052 -k1,5991:19798316,45537536:257053 -k1,5991:21246813,45537536:257052 -k1,5991:23201903,45537536:257052 -k1,5991:25757304,45537536:257053 -k1,5991:29753840,45537536:257052 -k1,5992:32583029,45537536:0 -) -] -(1,5992:32583029,45706769:0,0,0 -g1,5992:32583029,45706769 -) -) -] -(1,5992:6630773,47279633:25952256,0,0 -h1,5992:6630773,47279633:25952256,0,0 -) -] -(1,5992:4262630,4025873:0,0,0 -[1,5992:-473656,4025873:0,0,0 -(1,5992:-473656,-710413:0,0,0 -(1,5992:-473656,-710413:0,0,0 -g1,5992:-473656,-710413 -) -g1,5992:-473656,-710413 -) -] -) -] -!25131 -}114 -!12 -{115 -[1,6007:4262630,47279633:28320399,43253760,0 -(1,6007:4262630,4025873:0,0,0 -[1,6007:-473656,4025873:0,0,0 -(1,6007:-473656,-710413:0,0,0 -(1,6007:-473656,-644877:0,0,0 -k1,6007:-473656,-644877:-65536 -) -(1,6007:-473656,4736287:0,0,0 -k1,6007:-473656,4736287:5209943 -) -g1,6007:-473656,-710413 -) -] -) -[1,6007:6630773,47279633:25952256,43253760,0 -[1,6007:6630773,4812305:25952256,786432,0 -(1,6007:6630773,4812305:25952256,505283,134348 -(1,6007:6630773,4812305:25952256,505283,134348 -g1,6007:3078558,4812305 -[1,6007:3078558,4812305:0,0,0 -(1,6007:3078558,2439708:0,1703936,0 -k1,6007:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,6007:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,6007:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,6007:3078558,4812305:0,0,0 -(1,6007:3078558,2439708:0,1703936,0 -g1,6007:29030814,2439708 -g1,6007:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,6007:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,6007:37855564,2439708:1179648,16384,0 -) -) -k1,6007:3078556,2439708:-34777008 -) -] -[1,6007:3078558,4812305:0,0,0 -(1,6007:3078558,49800853:0,16384,2228224 -k1,6007:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,6007:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,6007:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,6007:3078558,4812305:0,0,0 -(1,6007:3078558,49800853:0,16384,2228224 -g1,6007:29030814,49800853 -g1,6007:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,6007:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,6007:37855564,49800853:1179648,16384,0 -) -) -k1,6007:3078556,49800853:-34777008 -) -] -g1,6007:6630773,4812305 -k1,6007:18771974,4812305:10945824 -g1,6007:20158715,4812305 -g1,6007:20807521,4812305 -g1,6007:24121676,4812305 -g1,6007:28605649,4812305 -g1,6007:30015328,4812305 -) -) -] -[1,6007:6630773,45706769:25952256,40108032,0 -(1,6007:6630773,45706769:25952256,40108032,0 -(1,6007:6630773,45706769:0,0,0 -g1,6007:6630773,45706769 -) -[1,6007:6630773,45706769:25952256,40108032,0 -(1,5992:6630773,6254097:25952256,513147,134348 -(1,5991:6630773,6254097:0,452978,115847 -r1,6007:9099310,6254097:2468537,568825,115847 -k1,5991:6630773,6254097:-2468537 -) -(1,5991:6630773,6254097:2468537,452978,115847 -k1,5991:6630773,6254097:3277 -h1,5991:9096033,6254097:0,411205,112570 -) -k1,5991:9280251,6254097:180941 -k1,5991:12977853,6254097:180940 -k1,5991:13810222,6254097:180941 -k1,5991:15978215,6254097:180941 -k1,5991:16771917,6254097:180940 -k1,5991:18283239,6254097:180941 -k1,5991:19483264,6254097:180940 -k1,5991:21344548,6254097:180941 -k1,5991:22184781,6254097:180941 -k1,5991:25207362,6254097:180940 -k1,5991:27959280,6254097:180941 -k1,5991:28752983,6254097:180941 -k1,5991:30385545,6254097:180940 -k1,5991:32095441,6254097:180941 -k1,5991:32583029,6254097:0 -) -(1,5992:6630773,7095585:25952256,513147,134348 -k1,5991:9769030,7095585:170787 -k1,5991:11951772,7095585:170787 -k1,5991:12478418,7095585:170786 -k1,5991:13505761,7095585:170787 -k1,5991:15326745,7095585:170787 -k1,5991:17959064,7095585:170787 -k1,5991:18816013,7095585:170787 -k1,5991:20143509,7095585:170786 -k1,5991:21418578,7095585:170787 -k1,5991:23244804,7095585:170787 -k1,5991:24331784,7095585:170787 -k1,5991:25694016,7095585:170787 -k1,5991:27520241,7095585:170786 -k1,5991:29057454,7095585:170787 -k1,5991:29887533,7095585:170787 -k1,5991:32583029,7095585:0 -) -(1,5992:6630773,7937073:25952256,513147,126483 -k1,5991:10497015,7937073:280112 -k1,5991:11968571,7937073:280111 -k1,5991:13183226,7937073:280112 -k1,5991:14654783,7937073:280112 -k1,5991:16699123,7937073:280111 -k1,5991:18763780,7937073:280112 -k1,5991:21062401,7937073:280112 -k1,5991:23261406,7937073:280111 -k1,5991:26617123,7937073:280112 -k1,5991:28029697,7937073:280112 -k1,5991:29885949,7937073:280111 -k1,5991:32051532,7937073:280112 -k1,5991:32583029,7937073:0 -) -(1,5992:6630773,8778561:25952256,513147,134348 -g1,5991:9937719,8778561 -g1,5991:12114169,8778561 -g1,5991:14011436,8778561 -g1,5991:17693904,8778561 -g1,5991:18307976,8778561 -k1,5992:32583029,8778561:11190929 -g1,5992:32583029,8778561 -) -(1,5994:6630773,9620049:25952256,505283,134348 -h1,5993:6630773,9620049:983040,0,0 -k1,5993:9614900,9620049:217852 -k1,5993:13731490,9620049:217853 -k1,5993:14968427,9620049:217852 -k1,5993:18177999,9620049:217853 -k1,5993:19011889,9620049:217852 -k1,5993:20432983,9620049:217853 -k1,5993:23242129,9620049:217852 -k1,5993:24275249,9620049:217852 -k1,5993:26001085,9620049:217853 -k1,5993:27422178,9620049:217852 -k1,5993:29918718,9620049:217853 -k1,5993:30752608,9620049:217852 -k1,5993:32583029,9620049:0 -) -(1,5994:6630773,10461537:25952256,513147,134348 -k1,5993:7414584,10461537:155976 -k1,5993:10410234,10461537:155975 -k1,5993:11032171,10461537:155976 -k1,5993:12358620,10461537:155976 -k1,5993:13493048,10461537:155975 -k1,5993:15377208,10461537:155976 -k1,5993:17429796,10461537:155976 -k1,5993:18237199,10461537:155975 -k1,5993:19659331,10461537:155976 -k1,5993:20834391,10461537:155975 -k1,5993:22772291,10461537:155976 -k1,5993:23587559,10461537:155976 -k1,5993:24099394,10461537:155975 -k1,5993:25618519,10461537:155976 -k1,5993:26589763,10461537:155976 -k1,5993:28897940,10461537:155975 -k1,5993:30512747,10461537:155976 -k1,5993:32583029,10461537:0 -) -(1,5994:6630773,11303025:25952256,513147,126483 -k1,5993:8314516,11303025:217047 -k1,5993:9182991,11303025:217047 -k1,5993:10419123,11303025:217047 -k1,5993:12237870,11303025:217047 -k1,5993:14320726,11303025:217046 -k1,5993:15197065,11303025:217047 -k1,5993:18044072,11303025:217047 -k1,5993:20547015,11303025:217047 -k1,5993:21955507,11303025:217047 -k1,5993:22823982,11303025:217047 -k1,5993:24060114,11303025:217047 -k1,5993:25772693,11303025:217047 -k1,5993:27702195,11303025:217046 -k1,5993:29406254,11303025:217047 -k1,5993:31323960,11303025:217047 -k1,5993:32227169,11303025:217047 -k1,5993:32583029,11303025:0 -) -(1,5994:6630773,12144513:25952256,513147,134348 -k1,5993:7968063,12144513:147812 -k1,5993:8731914,12144513:147813 -k1,5993:9235586,12144513:147812 -k1,5993:11963551,12144513:147813 -k1,5993:14848802,12144513:147812 -k1,5993:16564236,12144513:147813 -k1,5993:18592225,12144513:147761 -k1,5993:19422923,12144513:147813 -k1,5993:19985527,12144513:147761 -k1,5993:22119736,12144513:147813 -k1,5993:23041528,12144513:147812 -k1,5993:25471960,12144513:147813 -k1,5993:27317810,12144513:147812 -k1,5993:30889878,12144513:147812 -k1,5993:31393551,12144513:147813 -k1,5993:32583029,12144513:0 -) -(1,5994:6630773,12986001:25952256,513147,126483 -k1,5993:7465795,12986001:218984 -k1,5993:9180965,12986001:218983 -k1,5993:10570422,12986001:218984 -k1,5993:12264621,12986001:218984 -k1,5993:13549876,12986001:218984 -k1,5993:16229081,12986001:218983 -k1,5993:16906162,12986001:218984 -k1,5993:17656643,12986001:218984 -k1,5993:19275475,12986001:218983 -k1,5993:20145887,12986001:218984 -k1,5993:21718845,12986001:218984 -k1,5993:24713934,12986001:218984 -k1,5993:26345218,12986001:218983 -k1,5993:27583287,12986001:218984 -k1,5993:32583029,12986001:0 -) -(1,5994:6630773,13827489:25952256,513147,134348 -k1,5993:7573356,13827489:256421 -k1,5993:8848861,13827489:256420 -k1,5993:10895070,13827489:256421 -k1,5993:12488424,13827489:256420 -k1,5993:13492611,13827489:256421 -k1,5993:14977831,13827489:256420 -k1,5993:15850290,13827489:256421 -k1,5993:17565541,13827489:256420 -k1,5993:22476984,13827489:256421 -k1,5993:23392696,13827489:256420 -k1,5993:25197733,13827489:256421 -k1,5993:25810013,13827489:256420 -k1,5993:28264512,13827489:256421 -k1,5993:30171130,13827489:256421 -k1,5993:31086842,13827489:256420 -k1,5993:32583029,13827489:0 -) -(1,5994:6630773,14668977:25952256,505283,134348 -k1,5993:7431910,14668977:269640 -k1,5993:10540569,14668977:269639 -k1,5993:11461637,14668977:269640 -k1,5993:12720215,14668977:269640 -k1,5993:14407398,14668977:269639 -k1,5993:16185021,14668977:269640 -k1,5993:17070698,14668977:269639 -k1,5993:18997088,14668977:269640 -k1,5993:20551234,14668977:269640 -k1,5993:21507035,14668977:269639 -k1,5993:24906019,14668977:269640 -k1,5993:25985029,14668977:269640 -k1,5993:27752821,14668977:269639 -h1,5993:28549739,14668977:0,0,0 -k1,5993:28993049,14668977:269640 -k1,5993:30433161,14668977:269639 -k1,5993:31835263,14668977:269640 -k1,5993:32583029,14668977:0 -) -(1,5994:6630773,15510465:25952256,513147,126483 -k1,5993:8197679,15510465:258152 -k1,5993:9107259,15510465:258152 -k1,5993:10631567,15510465:258152 -k1,5993:12867596,15510465:258152 -k1,5993:18698930,15510465:258152 -k1,5993:22051693,15510465:258153 -k1,5993:22961273,15510465:258152 -k1,5993:24971202,15510465:258152 -k1,5993:25888646,15510465:258152 -k1,5993:27605629,15510465:258152 -k1,5993:29576237,15510465:258152 -k1,5993:32583029,15510465:0 -) -(1,5994:6630773,16351953:25952256,513147,134348 -k1,5993:8009464,16351953:187246 -k1,5993:10588118,16351953:187245 -k1,5993:11817386,16351953:187246 -k1,5993:14839719,16351953:187246 -k1,5993:17865328,16351953:187245 -k1,5993:19000225,16351953:187246 -k1,5993:20206555,16351953:187245 -k1,5993:21619980,16351953:187246 -k1,5993:22466518,16351953:187246 -k1,5993:23424466,16351953:187245 -k1,5993:25218655,16351953:187246 -k1,5993:28111227,16351953:187246 -k1,5993:28829969,16351953:187245 -k1,5993:31304422,16351953:187246 -k1,5993:32583029,16351953:0 -) -(1,5994:6630773,17193441:25952256,505283,7863 -k1,5994:32583028,17193441:22788832 -g1,5994:32583028,17193441 -) -v1,5996:6630773,18559217:0,393216,0 -(1,5999:6630773,33457866:25952256,15291865,616038 -g1,5999:6630773,33457866 -(1,5999:6630773,33457866:25952256,15291865,616038 -(1,5999:6630773,34073904:25952256,15907903,0 -[1,5999:6630773,34073904:25952256,15907903,0 -(1,5999:6630773,34047690:25952256,15855475,0 -r1,6007:6656987,34047690:26214,15855475,0 -[1,5999:6656987,34047690:25899828,15855475,0 -(1,5999:6656987,33457866:25899828,14675827,0 -[1,5999:7246811,33457866:24720180,14675827,0 -(1,5997:7246811,19867575:24720180,1085536,298548 -(1,5996:7246811,19867575:0,1085536,298548 -r1,6007:8753226,19867575:1506415,1384084,298548 -k1,5996:7246811,19867575:-1506415 -) -(1,5996:7246811,19867575:1506415,1085536,298548 -) -k1,5996:8990561,19867575:237335 -k1,5996:11011132,19867575:237336 -k1,5996:14208073,19867575:237335 -k1,5996:17355863,19867575:237336 -k1,5996:19160819,19867575:237335 -k1,5996:21100125,19867575:237336 -k1,5996:23776710,19867575:237335 -k1,5996:25456492,19867575:237335 -k1,5996:27574018,19867575:237298 -k1,5996:29261009,19867575:237335 -k1,5997:31966991,19867575:0 -) -(1,5997:7246811,20709063:24720180,513147,134348 -k1,5996:9080901,20709063:195035 -k1,5996:11939975,20709063:195035 -k1,5996:13702631,20709063:195035 -k1,5996:16329707,20709063:195035 -k1,5996:19527603,20709063:195036 -k1,5996:20405523,20709063:195035 -k1,5996:23195784,20709063:195035 -k1,5996:24073704,20709063:195035 -k1,5996:26999624,20709063:195035 -k1,5996:30312207,20709063:195035 -k1,5996:31966991,20709063:0 -) -(1,5997:7246811,21550551:24720180,513147,134348 -k1,5996:7971148,21550551:192840 -k1,5996:8973357,21550551:192839 -k1,5996:12008493,21550551:192840 -k1,5996:13485839,21550551:192840 -k1,5996:16378106,21550551:192839 -k1,5996:17703408,21550551:192840 -k1,5996:18962519,21550551:192840 -k1,5996:21703398,21550551:192839 -k1,5996:24761472,21550551:192840 -k1,5996:26352850,21550551:192840 -k1,5996:28054328,21550551:192839 -k1,5996:31118300,21550551:192840 -k1,5997:31966991,21550551:0 -) -(1,5997:7246811,22392039:24720180,513147,134348 -k1,5996:9408630,22392039:155107 -k1,5996:12122262,22392039:155106 -k1,5996:14157553,22392039:155063 -k1,5996:15304220,22392039:155107 -k1,5996:18299656,22392039:155106 -k1,5996:21044746,22392039:155107 -k1,5996:22147504,22392039:155107 -k1,5996:28406633,22392039:155106 -k1,5996:30251258,22392039:155107 -k1,5997:31966991,22392039:0 -) -(1,5997:7246811,23233527:24720180,513147,134348 -k1,5996:8888189,23233527:233665 -k1,5996:11764267,23233527:233666 -k1,5996:14556458,23233527:233665 -k1,5996:16492094,23233527:233666 -k1,5996:19542496,23233527:233665 -k1,5996:20767722,23233527:233666 -k1,5996:23288594,23233527:233665 -k1,5996:26112243,23233527:233666 -k1,5996:28635081,23233527:233665 -k1,5996:30244348,23233527:233666 -k1,5996:30833873,23233527:233665 -k1,5996:31966991,23233527:0 -) -(1,5997:7246811,24075015:24720180,505283,134348 -k1,5997:31966991,24075015:21636056 -g1,5997:31966991,24075015 -) -(1,5999:7246811,24916503:24720180,513147,134348 -h1,5998:7246811,24916503:983040,0,0 -k1,5998:11257674,24916503:206498 -k1,5998:13623583,24916503:206498 -k1,5998:16740535,24916503:206498 -k1,5998:18051315,24916503:206498 -k1,5998:20058742,24916503:206498 -k1,5998:21961967,24916503:206498 -k1,5998:23116116,24916503:206498 -k1,5998:26157701,24916503:206498 -k1,5998:28062237,24916503:206498 -k1,5998:29648923,24916503:206498 -k1,5998:30947906,24916503:206498 -k1,5998:31966991,24916503:0 -) -(1,5999:7246811,25757991:24720180,513147,134348 -k1,5998:9048515,25757991:148231 -k1,5998:11265061,25757991:148230 -k1,5998:12360943,25757991:148231 -k1,5998:14799001,25757991:148230 -k1,5998:15630117,25757991:148231 -k1,5998:18977815,25757991:148230 -k1,5998:19753881,25757991:148231 -k1,5998:22741786,25757991:148230 -k1,5998:24641794,25757991:148231 -k1,5998:27700478,25757991:148230 -k1,5998:28941194,25757991:148231 -k1,5998:31966991,25757991:0 -) -(1,5999:7246811,26599479:24720180,513147,134348 -k1,5998:9858066,26599479:229677 -k1,5998:10703781,26599479:229677 -k1,5998:13843911,26599479:229676 -k1,5998:14689626,26599479:229677 -k1,5998:15938388,26599479:229677 -k1,5998:16582877,26599479:229646 -k1,5998:20593981,26599479:229677 -k1,5998:22429290,26599479:229677 -k1,5998:23341851,26599479:229676 -k1,5998:25273498,26599479:229677 -k1,5998:30076277,26599479:229677 -k1,5999:31966991,26599479:0 -) -(1,5999:7246811,27440967:24720180,505283,134348 -k1,5998:9076066,27440967:245905 -k1,5998:12232426,27440967:245906 -k1,5998:13239859,27440967:245905 -k1,5998:16657708,27440967:245906 -k1,5998:18716339,27440967:245905 -k1,5998:21565335,27440967:245906 -k1,5998:22462668,27440967:245905 -k1,5998:27706350,27440967:245906 -k1,5998:30862709,27440967:245905 -k1,5998:31966991,27440967:0 -) -(1,5999:7246811,28282455:24720180,513147,134348 -k1,5998:9850425,28282455:218759 -k1,5998:11992010,28282455:218759 -k1,5998:17111552,28282455:218760 -k1,5998:18349396,28282455:218759 -k1,5998:21958988,28282455:218759 -k1,5998:25088201,28282455:218759 -k1,5998:25989845,28282455:218759 -k1,5998:27860768,28282455:218760 -k1,5998:28738819,28282455:218759 -k1,5998:30770304,28282455:218759 -k1,5998:31966991,28282455:0 -) -(1,5999:7246811,29123943:24720180,505283,134348 -k1,5998:10135281,29123943:202149 -k1,5998:12519124,29123943:202149 -k1,5998:13482801,29123943:202149 -k1,5998:15565175,29123943:202146 -k1,5998:18060429,29123943:202149 -k1,5998:19756144,29123943:202149 -k1,5998:22965085,29123943:202149 -k1,5998:23783272,29123943:202149 -k1,5998:25587121,29123943:202149 -k1,5998:27486652,29123943:202149 -k1,5998:29386839,29123943:202149 -k1,5998:31966991,29123943:0 -) -(1,5999:7246811,29965431:24720180,513147,134348 -k1,5998:10368291,29965431:256246 -k1,5998:11616097,29965431:256246 -k1,5998:15294632,29965431:256245 -k1,5998:17822356,29965431:256246 -k1,5998:20658754,29965431:256246 -k1,5998:24701670,29965431:256246 -k1,5998:25609343,29965431:256245 -k1,5998:26661196,29965431:256246 -k1,5998:29924234,29965431:256246 -k1,5998:31966991,29965431:0 -) -(1,5999:7246811,30806919:24720180,513147,134348 -k1,5998:11210692,30806919:182454 -k1,5998:13951672,30806919:182454 -k1,5998:16014337,30806919:182437 -k1,5998:16728288,30806919:182454 -k1,5998:19714372,30806919:182454 -k1,5998:22831528,30806919:182454 -k1,5998:23479942,30806919:182453 -k1,5998:24832869,30806919:182454 -k1,5998:26107808,30806919:182454 -k1,5998:27992232,30806919:182454 -k1,5998:31966991,30806919:0 -) -(1,5999:7246811,31648407:24720180,513147,126483 -k1,5998:7752366,31648407:292563 -k1,5998:11831692,31648407:292656 -k1,5998:13408855,31648407:292657 -k1,5998:14871984,31648407:292656 -k1,5998:16880373,31648407:292656 -k1,5998:18553874,31648407:292657 -k1,5998:20131036,31648407:292656 -k1,5998:22716142,31648407:292657 -k1,5998:26323609,31648407:292656 -k1,5998:27082227,31648407:292657 -k1,5998:29261009,31648407:292656 -k1,5999:31966991,31648407:0 -) -(1,5999:7246811,32489895:24720180,513147,126483 -k1,5998:9277116,32489895:184156 -k1,5998:12125311,32489895:184156 -k1,5998:13124735,32489895:184156 -k1,5998:14905349,32489895:184157 -k1,5998:16483456,32489895:184156 -k1,5998:18126443,32489895:184156 -k1,5998:19640980,32489895:184156 -k1,5998:21829882,32489895:184156 -k1,5998:24056795,32489895:184156 -k1,5998:25749591,32489895:184157 -k1,5998:27026232,32489895:184156 -k1,5998:27826426,32489895:184156 -k1,5998:31966991,32489895:0 -) -(1,5999:7246811,33331383:24720180,505283,126483 -g1,5998:11069526,33331383 -g1,5998:12658118,33331383 -k1,5999:31966991,33331383:16434464 -g1,5999:31966991,33331383 -) -] -) -] -r1,6007:32583029,34047690:26214,15855475,0 -) -] -) -) -g1,5999:32583029,33457866 -) -h1,5999:6630773,34073904:0,0,0 -(1,6002:6630773,36881472:25952256,32768,229376 -(1,6002:6630773,36881472:0,32768,229376 -(1,6002:6630773,36881472:5505024,32768,229376 -r1,6007:12135797,36881472:5505024,262144,229376 -) -k1,6002:6630773,36881472:-5505024 -) -(1,6002:6630773,36881472:25952256,32768,0 -r1,6007:32583029,36881472:25952256,32768,0 -) -) -(1,6002:6630773,38485800:25952256,615776,14155 -(1,6002:6630773,38485800:1974731,582746,14155 -g1,6002:6630773,38485800 -g1,6002:8605504,38485800 -) -g1,6002:11819652,38485800 -g1,6002:12877403,38485800 -g1,6002:16985724,38485800 -k1,6002:32583029,38485800:13891534 -g1,6002:32583029,38485800 -) -(1,6005:6630773,39720504:25952256,513147,126483 -k1,6004:7551978,39720504:160987 -k1,6004:9978545,39720504:160987 -k1,6004:10554337,39720504:160949 -k1,6004:14231987,39720504:160988 -k1,6004:15009012,39720504:160987 -k1,6004:15525859,39720504:160987 -k1,6004:17517922,39720504:160987 -k1,6004:18670469,39720504:160987 -k1,6004:21892643,39720504:160987 -k1,6004:22943609,39720504:160987 -k1,6004:26144812,39720504:160988 -k1,6004:26921837,39720504:160987 -k1,6004:28101909,39720504:160987 -k1,6004:31202841,39720504:160987 -k1,6004:32583029,39720504:0 -) -(1,6005:6630773,40561992:25952256,513147,134348 -k1,6004:8989274,40561992:169598 -k1,6004:9774910,40561992:169598 -k1,6004:10963592,40561992:169597 -k1,6004:12964266,40561992:169598 -k1,6004:15040961,40561992:169598 -k1,6004:15893444,40561992:169598 -k1,6004:17462890,40561992:169597 -k1,6004:18586037,40561992:169598 -k1,6004:20035553,40561992:169598 -k1,6004:21224236,40561992:169598 -k1,6004:23131849,40561992:169598 -k1,6004:25498213,40561992:169597 -k1,6004:26283849,40561992:169598 -k1,6004:29401256,40561992:169598 -k1,6005:32583029,40561992:0 -) -(1,6005:6630773,41403480:25952256,513147,126483 -k1,6004:7499881,41403480:217680 -k1,6004:9461474,41403480:217680 -k1,6004:11873300,41403480:217681 -k1,6004:15607642,41403480:217680 -k1,6004:17109828,41403480:217680 -k1,6004:19009162,41403480:217680 -k1,6004:19971987,41403480:217681 -k1,6004:20841095,41403480:217680 -k1,6004:22512364,41403480:217680 -k1,6004:23933285,41403480:217680 -k1,6004:26416546,41403480:217681 -k1,6004:29747841,41403480:217680 -k1,6004:30727049,41403480:217680 -k1,6004:32583029,41403480:0 -) -(1,6005:6630773,42244968:25952256,505283,134348 -k1,6004:9670906,42244968:284344 -k1,6004:10638136,42244968:284345 -k1,6004:14273336,42244968:284344 -k1,6004:17841034,42244968:284344 -k1,6004:21318292,42244968:284344 -k1,6004:25292969,42244968:284345 -k1,6004:26774000,42244968:284344 -k1,6004:30575006,42244968:284344 -k1,6004:32583029,42244968:0 -) -(1,6005:6630773,43086456:25952256,513147,126483 -k1,6004:10119859,43086456:185416 -k1,6004:10836773,43086456:185417 -k1,6004:14283260,43086456:185416 -k1,6004:15572959,43086456:185417 -k1,6004:16506141,43086456:185416 -k1,6004:18547537,43086456:185416 -k1,6004:20857631,43086456:185417 -k1,6004:21725932,43086456:185416 -k1,6004:25498789,43086456:185416 -k1,6004:27401249,43086456:185417 -k1,6004:28245957,43086456:185416 -k1,6004:29450459,43086456:185417 -k1,6004:31923737,43086456:185416 -k1,6004:32583029,43086456:0 -) -(1,6005:6630773,43927944:25952256,513147,134348 -k1,6004:9877503,43927944:171125 -k1,6004:11398669,43927944:171124 -k1,6004:15260126,43927944:171125 -k1,6004:18126746,43927944:171124 -k1,6004:19444096,43927944:171125 -k1,6004:22068205,43927944:171096 -k1,6004:24860771,43927944:171125 -k1,6004:25979546,43927944:171124 -k1,6004:28892697,43927944:171125 -k1,6004:32583029,43927944:0 -) -(1,6005:6630773,44769432:25952256,505283,126483 -k1,6004:9047631,44769432:269899 -k1,6004:10999184,44769432:269899 -k1,6004:14785745,44769432:269899 -k1,6004:15707072,44769432:269899 -k1,6004:16724737,44769432:269899 -k1,6004:19827758,44769432:269900 -k1,6004:23448513,44769432:269899 -k1,6004:25407930,44769432:269899 -k1,6004:26360714,44769432:269899 -k1,6004:28123523,44769432:269899 -k1,6004:28749282,44769432:269899 -k1,6004:32051532,44769432:269899 -k1,6004:32583029,44769432:0 -) -(1,6005:6630773,45610920:25952256,513147,126483 -g1,6004:8227885,45610920 -g1,6004:9109999,45610920 -g1,6004:10802138,45610920 -g1,6004:11767483,45610920 -g1,6004:14920420,45610920 -g1,6004:15778941,45610920 -g1,6004:16334030,45610920 -g1,6004:17526785,45610920 -g1,6004:18408899,45610920 -g1,6004:18963988,45610920 -g1,6004:21141094,45610920 -g1,6004:22331883,45610920 -k1,6005:32583029,45610920:6864245 -g1,6005:32583029,45610920 -) -] -(1,6007:32583029,45706769:0,0,0 -g1,6007:32583029,45706769 -) -) -] -(1,6007:6630773,47279633:25952256,0,0 -h1,6007:6630773,47279633:25952256,0,0 -) -] -(1,6007:4262630,4025873:0,0,0 -[1,6007:-473656,4025873:0,0,0 -(1,6007:-473656,-710413:0,0,0 -(1,6007:-473656,-710413:0,0,0 -g1,6007:-473656,-710413 -) -g1,6007:-473656,-710413 -) -] -) -] -!22332 -}115 -Input:827:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:828:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:829:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:830:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!376 -{116 -[1,6059:4262630,47279633:28320399,43253760,0 -(1,6059:4262630,4025873:0,0,0 -[1,6059:-473656,4025873:0,0,0 -(1,6059:-473656,-710413:0,0,0 -(1,6059:-473656,-644877:0,0,0 -k1,6059:-473656,-644877:-65536 -) -(1,6059:-473656,4736287:0,0,0 -k1,6059:-473656,4736287:5209943 -) -g1,6059:-473656,-710413 -) -] -) -[1,6059:6630773,47279633:25952256,43253760,0 -[1,6059:6630773,4812305:25952256,786432,0 -(1,6059:6630773,4812305:25952256,513147,126483 -(1,6059:6630773,4812305:25952256,513147,126483 -g1,6059:3078558,4812305 -[1,6059:3078558,4812305:0,0,0 -(1,6059:3078558,2439708:0,1703936,0 -k1,6059:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,6059:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,6059:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,6059:3078558,4812305:0,0,0 -(1,6059:3078558,2439708:0,1703936,0 -g1,6059:29030814,2439708 -g1,6059:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,6059:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,6059:37855564,2439708:1179648,16384,0 -) -) -k1,6059:3078556,2439708:-34777008 -) -] -[1,6059:3078558,4812305:0,0,0 -(1,6059:3078558,49800853:0,16384,2228224 -k1,6059:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,6059:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,6059:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,6059:3078558,4812305:0,0,0 -(1,6059:3078558,49800853:0,16384,2228224 -g1,6059:29030814,49800853 -g1,6059:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,6059:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,6059:37855564,49800853:1179648,16384,0 -) -) -k1,6059:3078556,49800853:-34777008 -) -] -g1,6059:6630773,4812305 -g1,6059:6630773,4812305 -g1,6059:9175536,4812305 -g1,6059:9990803,4812305 -g1,6059:13137841,4812305 -g1,6059:14654344,4812305 -k1,6059:31387652,4812305:16733308 -) -) -] -[1,6059:6630773,45706769:25952256,40108032,0 -(1,6059:6630773,45706769:25952256,40108032,0 -(1,6059:6630773,45706769:0,0,0 -g1,6059:6630773,45706769 -) -[1,6059:6630773,45706769:25952256,40108032,0 -(1,6007:6630773,6254097:25952256,513147,126483 -h1,6006:6630773,6254097:983040,0,0 -k1,6006:9777819,6254097:289676 -k1,6006:12264262,6254097:289676 -k1,6006:13169976,6254097:289676 -k1,6006:16407461,6254097:289676 -k1,6006:19901848,6254097:289676 -k1,6006:21295806,6254097:289676 -k1,6006:22333248,6254097:289676 -k1,6006:23908740,6254097:289676 -k1,6006:25711642,6254097:289676 -k1,6006:26614080,6254097:289676 -k1,6006:27922841,6254097:289676 -k1,6006:28627269,6254097:289585 -k1,6006:31510860,6254097:289676 -k1,6006:32583029,6254097:0 -) -(1,6007:6630773,7095585:25952256,513147,126483 -k1,6006:7370183,7095585:281313 -k1,6006:8182993,7095585:281313 -k1,6006:10751514,7095585:281314 -k1,6006:13888231,7095585:281313 -k1,6006:14820972,7095585:281313 -k1,6006:15917553,7095585:281313 -k1,6006:16923694,7095585:281313 -k1,6006:17891170,7095585:281314 -k1,6006:19552671,7095585:281313 -k1,6006:20938266,7095585:281313 -k1,6006:23371781,7095585:281313 -k1,6006:25040491,7095585:281313 -k1,6006:27553305,7095585:281313 -k1,6006:29333427,7095585:281314 -k1,6006:30274032,7095585:281313 -k1,6006:31955194,7095585:281313 -k1,6006:32583029,7095585:0 -) -(1,6007:6630773,7937073:25952256,513147,126483 -k1,6006:8995967,7937073:240517 -k1,6006:11571532,7937073:240517 -k1,6006:12831134,7937073:240517 -k1,6006:14388925,7937073:240517 -k1,6006:15245480,7937073:240517 -k1,6006:18435117,7937073:240517 -k1,6006:19779916,7937073:240517 -k1,6006:20768198,7937073:240516 -k1,6006:22572404,7937073:240517 -k1,6006:24004366,7937073:240517 -k1,6006:26057609,7937073:240517 -k1,6006:27865747,7937073:240517 -k1,6006:29125349,7937073:240517 -k1,6006:30671999,7937073:240517 -k1,6006:31563944,7937073:240517 -k1,6006:32583029,7937073:0 -) -(1,6007:6630773,8778561:25952256,513147,126483 -k1,6006:8040705,8778561:261741 -k1,6006:11488805,8778561:261740 -k1,6006:12366584,8778561:261741 -k1,6006:13647410,8778561:261741 -k1,6006:15913896,8778561:261740 -k1,6006:18521171,8778561:261741 -k1,6006:19398950,8778561:261741 -k1,6006:22608500,8778561:261741 -k1,6006:26074951,8778561:261740 -k1,6006:27328252,8778561:261741 -k1,6006:27945853,8778561:261741 -k1,6006:30340135,8778561:261740 -k1,6006:31923737,8778561:261741 -k1,6006:32583029,8778561:0 -) -(1,6007:6630773,9620049:25952256,505283,126483 -k1,6006:8527877,9620049:295404 -k1,6006:11158328,9620049:295403 -k1,6006:12271621,9620049:295404 -k1,6006:13435376,9620049:295403 -k1,6006:14863242,9620049:295404 -k1,6006:16183629,9620049:295404 -k1,6006:18036823,9620049:295403 -k1,6006:18688087,9620049:295404 -k1,6006:22397260,9620049:295403 -k1,6006:25879024,9620049:295404 -k1,6006:27278710,9620049:295404 -k1,6006:29911782,9620049:295403 -k1,6006:32583029,9620049:0 -) -(1,6007:6630773,10461537:25952256,505283,126483 -g1,6006:8954679,10461537 -g1,6006:9836793,10461537 -g1,6006:12153490,10461537 -g1,6006:15766489,10461537 -k1,6007:32583029,10461537:13126208 -g1,6007:32583029,10461537 -) -(1,6008:6630773,12552797:25952256,555811,139132 -(1,6008:6630773,12552797:2450326,534184,12975 -g1,6008:6630773,12552797 -g1,6008:9081099,12552797 -) -g1,6008:13288249,12552797 -k1,6008:32583029,12552797:15318318 -g1,6008:32583029,12552797 -) -(1,6012:6630773,13787501:25952256,505283,134348 -k1,6011:9990870,13787501:155386 -k1,6011:13662917,13787501:155385 -k1,6011:14922585,13787501:155386 -k1,6011:15825737,13787501:155386 -k1,6011:18641884,13787501:155385 -k1,6011:20064736,13787501:155386 -k1,6011:23515272,13787501:155386 -k1,6011:27077875,13787501:155386 -k1,6011:27994788,13787501:155385 -k1,6011:30943974,13787501:155386 -k1,6011:32583029,13787501:0 -) -(1,6012:6630773,14628989:25952256,505283,134348 -k1,6011:7538883,14628989:292072 -k1,6011:9433966,14628989:292072 -k1,6011:11955573,14628989:292072 -k1,6011:16413113,14628989:292072 -k1,6011:17236682,14628989:292072 -k1,6011:18674980,14628989:292073 -k1,6011:21306687,14628989:292072 -k1,6011:23830260,14628989:292072 -k1,6011:27638994,14628989:292072 -k1,6011:29198532,14628989:292072 -k1,6011:29846464,14628989:292072 -k1,6011:31298523,14628989:292072 -k1,6011:32583029,14628989:0 -) -(1,6012:6630773,15470477:25952256,505283,126483 -g1,6011:8841957,15470477 -g1,6011:9786330,15470477 -g1,6011:10636987,15470477 -g1,6011:13247286,15470477 -g1,6011:14840466,15470477 -g1,6011:16678750,15470477 -g1,6011:17564141,15470477 -g1,6011:18534073,15470477 -g1,6011:22434120,15470477 -k1,6012:32583029,15470477:8092389 -g1,6012:32583029,15470477 -) -(1,6028:6630773,27345665:25952256,11027809,0 -k1,6028:16423845,27345665:9793072 -(1,6013:16423845,27345665:0,0,0 -g1,6013:16423845,27345665 -g1,6013:16423845,27345665 -g1,6013:16096165,27345665 -(1,6013:16096165,27345665:0,0,0 -) -g1,6013:16423845,27345665 -) -(1,6026:16423845,27345665:6366112,11027809,0 -g1,6026:19606901,27345665 -(1,6026:19606901,17263302:0,0,0 -(1,6026:19606901,17263302:0,0,0 -g1,6015:19606901,17263302 -(1,6016:19606901,17263302:0,0,0 -(1,6016:19606901,17263302:0,0,0 -g1,6016:19606901,17263302 -g1,6016:19606901,17263302 -g1,6016:19606901,17263302 -g1,6016:19606901,17263302 -g1,6016:19606901,17263302 -(1,6016:19606901,17263302:0,0,0 -(1,6016:19606901,17263302:589824,56623,0 -(1,6016:19606901,17263302:589824,56623,0 -) -g1,6016:20196725,17263302 -) -) -g1,6016:19606901,17263302 -g1,6016:19606901,17263302 -) -) -g1,6016:19606901,17263302 -(1,6017:19606901,17263302:0,0,0 -(1,6017:19606901,17263302:0,0,0 -g1,6017:19606901,17263302 -g1,6017:19606901,17263302 -g1,6017:19606901,17263302 -g1,6017:19606901,17263302 -g1,6017:19606901,17263302 -(1,6017:19606901,17263302:0,0,0 -(1,6017:19606901,17263302:0,0,0 -(1,6017:19606901,17263302:0,0,0 -) -g1,6017:19606901,17263302 -) -) -g1,6017:19606901,17263302 -g1,6017:19606901,17263302 -) -) -g1,6017:19606901,17263302 -g1,6018:19606901,17263302 -(1,6018:19606901,17263302:0,0,0 -(1,6018:19606901,17263302:0,0,0 -g1,6018:19606901,17263302 -g1,6018:19606901,17263302 -g1,6018:19606901,17263302 -g1,6018:19606901,17263302 -g1,6018:19606901,17263302 -(1,6018:19606901,17263302:0,0,0 -(1,6018:19606901,17263302:4121582,373362,104590 -(1,6018:19606901,17263302:4121582,373362,104590 -(1,6018:19606901,17263302:0,373362,104590 -r1,6059:23728483,17263302:4121582,477952,104590 -k1,6018:19606901,17263302:-4121582 -) -(1,6018:19606901,17263302:4121582,373362,104590 -g1,6018:23092125,17263302 -h1,6018:23725206,17263302:0,370085,101313 -) -) -g1,6018:23728483,17263302 -) -) -g1,6018:19606901,17263302 -g1,6018:19606901,17263302 -) -) -(1,6019:19606901,17263302:0,0,0 -(1,6019:19606901,17263302:0,0,0 -g1,6019:19606901,17263302 -g1,6019:19606901,17263302 -g1,6019:19606901,17263302 -g1,6019:19606901,17263302 -g1,6019:19606901,17263302 -(1,6019:19606901,17263302:0,0,0 -(1,6019:19606901,17263302:4121582,373362,104590 -(1,6019:19606901,17263302:4121582,373362,104590 -(1,6019:19606901,17263302:0,373362,104590 -r1,6059:23728483,17263302:4121582,477952,104590 -k1,6019:19606901,17263302:-4121582 -) -(1,6019:19606901,17263302:4121582,373362,104590 -g1,6019:23092125,17263302 -h1,6019:23725206,17263302:0,370085,101313 -) -) -g1,6019:23728483,17263302 -) -) -g1,6019:19606901,17263302 -g1,6019:19606901,17263302 -) -) -g1,6019:19606901,17263302 -g1,6020:19606901,17263302 -(1,6020:19606901,17263302:0,0,0 -(1,6020:19606901,17263302:0,0,0 -g1,6020:19606901,17263302 -g1,6020:19606901,17263302 -g1,6020:19606901,17263302 -g1,6020:19606901,17263302 -g1,6020:19606901,17263302 -(1,6020:19606901,17263302:0,0,0 -(1,6020:19606901,17263302:589824,56623,0 -(1,6020:19606901,17263302:589824,56623,0 -) -g1,6020:20196725,17263302 -) -) -g1,6020:19606901,17263302 -g1,6020:19606901,17263302 -) -) -g1,6020:19606901,17263302 -g1,6021:19606901,17263302 -g1,6021:19606901,17263302 -g1,6021:19606901,17263302 -g1,6021:19606901,17263302 -g1,6021:19606901,17263302 -g1,6021:19606901,17263302 -g1,6022:19606901,17263302 -g1,6022:19606901,17263302 -g1,6022:19606901,17263302 -g1,6022:19606901,17263302 -g1,6022:19606901,17263302 -g1,6022:19606901,17263302 -g1,6023:19606901,17263302 -g1,6023:19606901,17263302 -g1,6023:19606901,17263302 -g1,6023:19606901,17263302 -g1,6023:19606901,17263302 -g1,6023:19606901,17263302 -g1,6024:19606901,17263302 -g1,6024:19606901,17263302 -g1,6024:19606901,17263302 -g1,6024:19606901,17263302 -g1,6024:19606901,17263302 -g1,6024:19606901,17263302 -g1,6025:19606901,17263302 -g1,6025:19606901,17263302 -g1,6025:19606901,17263302 -g1,6025:19606901,17263302 -g1,6025:19606901,17263302 -g1,6025:19606901,17263302 -g1,6026:19606901,17263302 -g1,6026:19606901,17263302 -) -g1,6026:19606901,17263302 -) -) -g1,6028:22789957,27345665 -k1,6028:32583029,27345665:9793072 -) -v1,6031:6630773,29191491:0,393216,0 -(1,6048:6630773,34924808:25952256,6126533,196608 -g1,6048:6630773,34924808 -g1,6048:6630773,34924808 -g1,6048:6434165,34924808 -(1,6048:6434165,34924808:0,6126533,196608 -r1,6059:32779637,34924808:26345472,6323141,196608 -k1,6048:6434165,34924808:-26345472 -) -(1,6048:6434165,34924808:26345472,6126533,196608 -[1,6048:6630773,34924808:25952256,5929925,0 -(1,6033:6630773,29399109:25952256,404226,101187 -(1,6032:6630773,29399109:0,0,0 -g1,6032:6630773,29399109 -g1,6032:6630773,29399109 -g1,6032:6303093,29399109 -(1,6032:6303093,29399109:0,0,0 -) -g1,6032:6630773,29399109 -) -k1,6033:6630773,29399109:0 -h1,6033:9792230,29399109:0,0,0 -k1,6033:32583030,29399109:22790800 -g1,6033:32583030,29399109 -) -(1,6037:6630773,30130823:25952256,404226,76021 -(1,6035:6630773,30130823:0,0,0 -g1,6035:6630773,30130823 -g1,6035:6630773,30130823 -g1,6035:6303093,30130823 -(1,6035:6303093,30130823:0,0,0 -) -g1,6035:6630773,30130823 -) -g1,6037:7579210,30130823 -g1,6037:8843793,30130823 -h1,6037:9792230,30130823:0,0,0 -k1,6037:32583030,30130823:22790800 -g1,6037:32583030,30130823 -) -(1,6039:6630773,31452361:25952256,404226,76021 -(1,6038:6630773,31452361:0,0,0 -g1,6038:6630773,31452361 -g1,6038:6630773,31452361 -g1,6038:6303093,31452361 -(1,6038:6303093,31452361:0,0,0 -) -g1,6038:6630773,31452361 -) -h1,6039:6946919,31452361:0,0,0 -k1,6039:32583029,31452361:25636110 -g1,6039:32583029,31452361 -) -(1,6040:6630773,32118539:25952256,404226,101187 -h1,6040:6630773,32118539:0,0,0 -g1,6040:6946919,32118539 -g1,6040:7263065,32118539 -k1,6040:7263065,32118539:0 -h1,6040:10424522,32118539:0,0,0 -k1,6040:32583030,32118539:22158508 -g1,6040:32583030,32118539 -) -(1,6041:6630773,32784717:25952256,404226,101187 -h1,6041:6630773,32784717:0,0,0 -g1,6041:6946919,32784717 -g1,6041:7263065,32784717 -k1,6041:7263065,32784717:0 -h1,6041:10424522,32784717:0,0,0 -k1,6041:32583030,32784717:22158508 -g1,6041:32583030,32784717 -) -(1,6042:6630773,33450895:25952256,404226,76021 -h1,6042:6630773,33450895:0,0,0 -h1,6042:6946919,33450895:0,0,0 -k1,6042:32583029,33450895:25636110 -g1,6042:32583029,33450895 -) -(1,6047:6630773,34182609:25952256,404226,76021 -(1,6044:6630773,34182609:0,0,0 -g1,6044:6630773,34182609 -g1,6044:6630773,34182609 -g1,6044:6303093,34182609 -(1,6044:6303093,34182609:0,0,0 -) -g1,6044:6630773,34182609 -) -g1,6047:7579210,34182609 -g1,6047:8843793,34182609 -h1,6047:9792230,34182609:0,0,0 -k1,6047:32583030,34182609:22790800 -g1,6047:32583030,34182609 -) -(1,6047:6630773,34848787:25952256,404226,76021 -h1,6047:6630773,34848787:0,0,0 -g1,6047:7579210,34848787 -g1,6047:8843793,34848787 -h1,6047:9792230,34848787:0,0,0 -k1,6047:32583030,34848787:22790800 -g1,6047:32583030,34848787 -) -] -) -g1,6048:32583029,34924808 -g1,6048:6630773,34924808 -g1,6048:6630773,34924808 -g1,6048:32583029,34924808 -g1,6048:32583029,34924808 -) -h1,6048:6630773,35121416:0,0,0 -(1,6052:6630773,36487192:25952256,513147,134348 -h1,6051:6630773,36487192:983040,0,0 -k1,6051:9033171,36487192:222671 -k1,6051:12138771,36487192:222671 -k1,6051:13020734,36487192:222671 -k1,6051:14262491,36487192:222672 -k1,6051:15633353,36487192:222671 -k1,6051:17028463,36487192:222671 -k1,6051:20767796,36487192:222671 -k1,6051:22845791,36487192:222671 -k1,6051:23599959,36487192:222671 -k1,6051:24481923,36487192:222672 -k1,6051:25513964,36487192:222671 -k1,6051:29819528,36487192:222671 -k1,6051:30803727,36487192:222671 -k1,6051:32583029,36487192:0 -) -(1,6052:6630773,37328680:25952256,513147,134348 -k1,6051:7942512,37328680:239570 -k1,6051:11065011,37328680:239570 -k1,6051:14078066,37328680:239571 -k1,6051:16294857,37328680:239570 -k1,6051:18232465,37328680:239570 -k1,6051:19985261,37328680:239570 -k1,6051:22905255,37328680:239571 -k1,6051:24538776,37328680:239570 -k1,6051:31227089,37328680:239570 -k1,6052:32583029,37328680:0 -) -(1,6052:6630773,38170168:25952256,426639,7863 -k1,6052:32583028,38170168:23567400 -g1,6052:32583028,38170168 -) -(1,6053:6630773,40261428:25952256,555811,12975 -(1,6053:6630773,40261428:2450326,534184,12975 -g1,6053:6630773,40261428 -g1,6053:9081099,40261428 -) -g1,6053:13505238,40261428 -k1,6053:32583029,40261428:15536750 -g1,6053:32583029,40261428 -) -(1,6057:6630773,41496132:25952256,513147,134348 -k1,6056:10539799,41496132:193790 -k1,6056:13809193,41496132:193789 -k1,6056:16014938,41496132:193790 -k1,6056:19010392,41496132:193790 -k1,6056:21966524,41496132:193789 -k1,6056:24344629,41496132:193790 -k1,6056:26031985,41496132:193790 -k1,6056:26911937,41496132:193790 -k1,6056:29760589,41496132:193789 -k1,6056:31145824,41496132:193790 -k1,6057:32583029,41496132:0 -) -(1,6057:6630773,42337620:25952256,513147,134348 -k1,6056:9529758,42337620:244122 -k1,6056:11958194,42337620:244121 -k1,6056:15530890,42337620:244122 -k1,6056:17785000,42337620:244121 -k1,6056:18384982,42337620:244122 -k1,6056:20633850,42337620:244122 -k1,6056:22258815,42337620:244121 -k1,6056:23034434,42337620:244122 -k1,6056:26056626,42337620:244121 -k1,6056:27062276,42337620:244122 -k1,6056:30589751,42337620:244121 -k1,6056:31516758,42337620:244122 -k1,6056:32583029,42337620:0 -) -(1,6057:6630773,43179108:25952256,513147,134348 -k1,6056:8179398,43179108:271984 -k1,6056:11499461,43179108:271984 -k1,6056:12772762,43179108:271911 -k1,6056:14236192,43179108:271985 -k1,6056:15942686,43179108:271911 -k1,6056:17866833,43179108:271984 -k1,6056:18798109,43179108:271984 -k1,6056:19425953,43179108:271984 -k1,6056:21529013,43179108:271984 -k1,6056:23655666,43179108:271984 -k1,6056:24737021,43179108:271985 -k1,6056:26028090,43179108:271984 -k1,6056:28142946,43179108:271984 -k1,6056:31193657,43179108:271984 -k1,6056:32227169,43179108:271984 -k1,6056:32583029,43179108:0 -) -(1,6057:6630773,44020596:25952256,505283,134348 -k1,6056:8893263,44020596:192863 -k1,6056:12699782,44020596:192864 -k1,6056:13795076,44020596:192863 -k1,6056:14402776,44020596:192857 -k1,6056:18035625,44020596:192864 -k1,6056:21229382,44020596:192863 -k1,6056:21778106,44020596:192864 -k1,6056:24040596,44020596:192863 -k1,6056:25913803,44020596:192864 -k1,6056:27210948,44020596:192863 -k1,6056:28151578,44020596:192864 -k1,6056:29030603,44020596:192863 -k1,6056:31348144,44020596:192864 -k1,6056:32227169,44020596:192863 -k1,6056:32583029,44020596:0 -) -(1,6057:6630773,44862084:25952256,513147,134348 -k1,6056:8935629,44862084:235229 -k1,6056:10851202,44862084:235230 -k1,6056:11753587,44862084:235229 -(1,6056:11753587,44862084:0,414482,115847 -r1,6059:13166988,44862084:1413401,530329,115847 -k1,6056:11753587,44862084:-1413401 -) -(1,6056:11753587,44862084:1413401,414482,115847 -k1,6056:11753587,44862084:3277 -h1,6056:13163711,44862084:0,411205,112570 -) -k1,6056:13402218,44862084:235230 -k1,6056:14320332,44862084:235229 -(1,6056:14320332,44862084:0,414482,115847 -r1,6059:16085445,44862084:1765113,530329,115847 -k1,6056:14320332,44862084:-1765113 -) -(1,6056:14320332,44862084:1765113,414482,115847 -k1,6056:14320332,44862084:3277 -h1,6056:16082168,44862084:0,411205,112570 -) -k1,6056:16320675,44862084:235230 -k1,6056:18594074,44862084:235229 -k1,6056:19445342,44862084:235230 -k1,6056:20036431,44862084:235229 -k1,6056:22783001,44862084:235230 -k1,6056:23701115,44862084:235229 -k1,6056:24955430,44862084:235230 -k1,6056:27033531,44862084:235229 -k1,6056:27928053,44862084:235230 -k1,6056:28519142,44862084:235229 -k1,6056:32583029,44862084:0 -) -(1,6057:6630773,45703572:25952256,513147,7863 -g1,6056:8407454,45703572 -g1,6056:9219445,45703572 -g1,6056:10437759,45703572 -g1,6056:12062396,45703572 -g1,6056:12920917,45703572 -g1,6056:14139231,45703572 -g1,6056:18189355,45703572 -k1,6057:32583029,45703572:11576281 -g1,6057:32583029,45703572 -) -] -(1,6059:32583029,45706769:0,0,0 -g1,6059:32583029,45706769 -) -) -] -(1,6059:6630773,47279633:25952256,0,0 -h1,6059:6630773,47279633:25952256,0,0 -) -] -(1,6059:4262630,4025873:0,0,0 -[1,6059:-473656,4025873:0,0,0 -(1,6059:-473656,-710413:0,0,0 -(1,6059:-473656,-710413:0,0,0 -g1,6059:-473656,-710413 -) -g1,6059:-473656,-710413 -) -] -) -] -!19149 -}116 -Input:831:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:832:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:833:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:834:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:835:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:836:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:837:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:838:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:839:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:840:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:841:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:842:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:843:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:844:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:845:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:846:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:847:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:848:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:849:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:850:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:851:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:852:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:853:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:854:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!2196 -{117 -[1,6117:4262630,47279633:28320399,43253760,0 -(1,6117:4262630,4025873:0,0,0 -[1,6117:-473656,4025873:0,0,0 -(1,6117:-473656,-710413:0,0,0 -(1,6117:-473656,-644877:0,0,0 -k1,6117:-473656,-644877:-65536 -) -(1,6117:-473656,4736287:0,0,0 -k1,6117:-473656,4736287:5209943 -) -g1,6117:-473656,-710413 -) -] -) -[1,6117:6630773,47279633:25952256,43253760,0 -[1,6117:6630773,4812305:25952256,786432,0 -(1,6117:6630773,4812305:25952256,505283,134348 -(1,6117:6630773,4812305:25952256,505283,134348 -g1,6117:3078558,4812305 -[1,6117:3078558,4812305:0,0,0 -(1,6117:3078558,2439708:0,1703936,0 -k1,6117:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,6117:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,6117:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,6117:3078558,4812305:0,0,0 -(1,6117:3078558,2439708:0,1703936,0 -g1,6117:29030814,2439708 -g1,6117:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,6117:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,6117:37855564,2439708:1179648,16384,0 -) -) -k1,6117:3078556,2439708:-34777008 -) -] -[1,6117:3078558,4812305:0,0,0 -(1,6117:3078558,49800853:0,16384,2228224 -k1,6117:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,6117:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,6117:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,6117:3078558,4812305:0,0,0 -(1,6117:3078558,49800853:0,16384,2228224 -g1,6117:29030814,49800853 -g1,6117:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,6117:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,6117:37855564,49800853:1179648,16384,0 -) -) -k1,6117:3078556,49800853:-34777008 -) -] -g1,6117:6630773,4812305 -k1,6117:18771974,4812305:10945824 -g1,6117:20158715,4812305 -g1,6117:20807521,4812305 -g1,6117:24121676,4812305 -g1,6117:28605649,4812305 -g1,6117:30015328,4812305 -) -) -] -[1,6117:6630773,45706769:25952256,40108032,0 -(1,6117:6630773,45706769:25952256,40108032,0 -(1,6117:6630773,45706769:0,0,0 -g1,6117:6630773,45706769 -) -[1,6117:6630773,45706769:25952256,40108032,0 -v1,6059:6630773,6254097:0,393216,0 -(1,6060:6630773,11139104:25952256,5278223,616038 -g1,6060:6630773,11139104 -(1,6060:6630773,11139104:25952256,5278223,616038 -(1,6060:6630773,11755142:25952256,5894261,0 -[1,6060:6630773,11755142:25952256,5894261,0 -(1,6060:6630773,11728928:25952256,5841833,0 -r1,6117:6656987,11728928:26214,5841833,0 -[1,6060:6656987,11728928:25899828,5841833,0 -(1,6060:6656987,11139104:25899828,4662185,0 -[1,6060:7246811,11139104:24720180,4662185,0 -(1,6060:7246811,7638804:24720180,1161885,196608 -(1,6059:7246811,7638804:0,1161885,196608 -r1,6117:8794447,7638804:1547636,1358493,196608 -k1,6059:7246811,7638804:-1547636 -) -(1,6059:7246811,7638804:1547636,1161885,196608 -) -k1,6059:8958580,7638804:164133 -k1,6059:10076261,7638804:164132 -k1,6059:11332879,7638804:164133 -k1,6059:12516096,7638804:164132 -k1,6059:14418244,7638804:164133 -k1,6059:15807900,7638804:164133 -k1,6059:16919683,7638804:164132 -k1,6059:17439676,7638804:164133 -(1,6059:17439676,7638804:0,452978,122846 -r1,6117:19908213,7638804:2468537,575824,122846 -k1,6059:17439676,7638804:-2468537 -) -(1,6059:17439676,7638804:2468537,452978,122846 -k1,6059:17439676,7638804:3277 -h1,6059:19904936,7638804:0,411205,112570 -) -k1,6059:20072346,7638804:164133 -k1,6059:22747818,7638804:164132 -k1,6059:23846494,7638804:164133 -k1,6059:27117033,7638804:164132 -k1,6059:30560588,7638804:164133 -k1,6059:31966991,7638804:0 -) -(1,6060:7246811,8480292:24720180,513147,134348 -k1,6059:8478654,8480292:212758 -k1,6059:9763581,8480292:212758 -k1,6059:10635631,8480292:212758 -k1,6059:11867474,8480292:212758 -k1,6059:14084978,8480292:212758 -k1,6059:15446582,8480292:212758 -k1,6059:16318632,8480292:212758 -k1,6059:18026266,8480292:212758 -k1,6059:18770521,8480292:212758 -k1,6059:20584979,8480292:212758 -k1,6059:22774958,8480292:212758 -k1,6059:24685754,8480292:212758 -k1,6059:27946591,8480292:212758 -k1,6059:30794552,8480292:212758 -k1,6059:31966991,8480292:0 -) -(1,6060:7246811,9321780:24720180,513147,126483 -k1,6059:9349928,9321780:272041 -k1,6059:12711991,9321780:272040 -k1,6059:15686081,9321780:272041 -k1,6059:16767492,9321780:272041 -k1,6059:19710779,9321780:272040 -k1,6059:22591808,9321780:272041 -k1,6059:23523141,9321780:272041 -k1,6059:25465038,9321780:272040 -k1,6059:26224594,9321780:271968 -k1,6059:29235384,9321780:272040 -k1,6059:30599910,9321780:272041 -k1,6059:31966991,9321780:0 -) -(1,6060:7246811,10163268:24720180,513147,134348 -k1,6059:8489672,10163268:295210 -k1,6059:10279758,10163268:295210 -k1,6059:11106465,10163268:295210 -k1,6059:13462127,10163268:295210 -k1,6059:16471183,10163268:295210 -k1,6059:17957838,10163268:295210 -k1,6059:21156947,10163268:295209 -k1,6059:24024445,10163268:295210 -k1,6059:24978947,10163268:295210 -k1,6059:27432913,10163268:295210 -k1,6059:29295744,10163268:295210 -k1,6059:31966991,10163268:0 -) -(1,6060:7246811,11004756:24720180,505283,134348 -g1,6059:10962702,11004756 -g1,6059:14099255,11004756 -g1,6059:14914522,11004756 -g1,6059:16501148,11004756 -g1,6059:17056237,11004756 -g1,6059:18644174,11004756 -k1,6060:31966991,11004756:11318071 -g1,6060:31966991,11004756 -) -] -) -] -r1,6117:32583029,11728928:26214,5841833,0 -) -] -) -) -g1,6060:32583029,11139104 -) -h1,6060:6630773,11755142:0,0,0 -(1,6063:6630773,13120918:25952256,513147,126483 -h1,6062:6630773,13120918:983040,0,0 -k1,6062:8245782,13120918:217126 -k1,6062:9563931,13120918:217144 -k1,6062:10953514,13120918:217144 -k1,6062:12887046,13120918:217144 -k1,6062:13763482,13120918:217144 -k1,6062:14538993,13120918:217144 -k1,6062:18446468,13120918:217143 -k1,6062:23437910,13120918:217144 -k1,6062:24846499,13120918:217144 -k1,6062:28574407,13120918:217144 -k1,6062:29745100,13120918:217144 -k1,6062:31094706,13120918:217144 -k1,6062:32583029,13120918:0 -) -(1,6063:6630773,13962406:25952256,505283,102891 -k1,6062:8284751,13962406:260027 -k1,6062:9563862,13962406:260026 -k1,6062:14598187,13962406:260027 -k1,6062:16188594,13962406:260026 -k1,6062:18334092,13962406:260027 -k1,6062:19125615,13962406:260026 -k1,6062:21587652,13962406:260027 -k1,6062:22499106,13962406:260026 -k1,6062:24307749,13962406:260027 -k1,6062:25099272,13962406:260026 -k1,6062:28143268,13962406:260027 -k1,6062:29019332,13962406:260026 -k1,6062:30881059,13962406:260027 -k1,6062:32583029,13962406:0 -) -(1,6063:6630773,14803894:25952256,513147,134348 -k1,6062:9841775,14803894:134742 -k1,6062:14328763,14803894:134742 -k1,6062:17636103,14803894:134742 -k1,6062:18962290,14803894:134742 -k1,6062:21715194,14803894:134741 -k1,6062:22869021,14803894:134742 -k1,6062:26307433,14803894:134742 -k1,6062:27101467,14803894:134742 -k1,6062:27592069,14803894:134742 -k1,6062:29222998,14803894:134742 -k1,6062:32583029,14803894:0 -) -(1,6063:6630773,15645382:25952256,505283,126483 -g1,6062:8715473,15645382 -g1,6062:10018984,15645382 -g1,6062:10965979,15645382 -g1,6062:13021188,15645382 -g1,6062:15345094,15645382 -g1,6062:16227208,15645382 -k1,6063:32583029,15645382:12768380 -g1,6063:32583029,15645382 -) -(1,6064:6630773,17273302:25952256,505283,115847 -(1,6064:6630773,17273302:2809528,485622,11795 -g1,6064:6630773,17273302 -g1,6064:9440301,17273302 -) -g1,6064:14690390,17273302 -(1,6064:14690390,17273302:0,459977,115847 -r1,6117:15400368,17273302:709978,575824,115847 -k1,6064:14690390,17273302:-709978 -) -(1,6064:14690390,17273302:709978,459977,115847 -k1,6064:14690390,17273302:3277 -h1,6064:15397091,17273302:0,411205,112570 -) -g1,6064:15778510,17273302 -(1,6064:15778510,17273302:0,452978,115847 -r1,6117:17191911,17273302:1413401,568825,115847 -k1,6064:15778510,17273302:-1413401 -) -(1,6064:15778510,17273302:1413401,452978,115847 -k1,6064:15778510,17273302:3277 -h1,6064:17188634,17273302:0,411205,112570 -) -g1,6064:17396383,17273302 -g1,6064:18821135,17273302 -(1,6064:18821135,17273302:0,452978,115847 -r1,6117:20937960,17273302:2116825,568825,115847 -k1,6064:18821135,17273302:-2116825 -) -(1,6064:18821135,17273302:2116825,452978,115847 -k1,6064:18821135,17273302:3277 -h1,6064:20934683,17273302:0,411205,112570 -) -k1,6064:32583029,17273302:11645069 -g1,6064:32583029,17273302 -) -(1,6068:6630773,18508006:25952256,505283,134348 -k1,6067:8036354,18508006:208894 -(1,6067:8036354,18508006:0,459977,115847 -r1,6117:8746332,18508006:709978,575824,115847 -k1,6067:8036354,18508006:-709978 -) -(1,6067:8036354,18508006:709978,459977,115847 -k1,6067:8036354,18508006:3277 -h1,6067:8743055,18508006:0,411205,112570 -) -k1,6067:8955227,18508006:208895 -k1,6067:12187952,18508006:208894 -k1,6067:15572066,18508006:208895 -k1,6067:19142957,18508006:208894 -k1,6067:20161222,18508006:208895 -k1,6067:20725976,18508006:208894 -(1,6067:20725976,18508006:0,452978,122846 -r1,6117:23194513,18508006:2468537,575824,122846 -k1,6067:20725976,18508006:-2468537 -) -(1,6067:20725976,18508006:2468537,452978,122846 -k1,6067:20725976,18508006:3277 -h1,6067:23191236,18508006:0,411205,112570 -) -k1,6067:23403407,18508006:208894 -k1,6067:25466316,18508006:208895 -k1,6067:28265848,18508006:208894 -k1,6067:29493828,18508006:208895 -k1,6067:31086842,18508006:208894 -k1,6067:32583029,18508006:0 -) -(1,6068:6630773,19349494:25952256,513147,126483 -k1,6067:10089358,19349494:272225 -k1,6067:10893080,19349494:272225 -k1,6067:13998426,19349494:272225 -k1,6067:14951570,19349494:272225 -(1,6067:14951570,19349494:0,414482,115847 -r1,6117:16364971,19349494:1413401,530329,115847 -k1,6067:14951570,19349494:-1413401 -) -(1,6067:14951570,19349494:1413401,414482,115847 -k1,6067:14951570,19349494:3277 -h1,6067:16361694,19349494:0,411205,112570 -) -k1,6067:16844290,19349494:272225 -k1,6067:17799400,19349494:272225 -k1,6067:20605248,19349494:272226 -k1,6067:21558392,19349494:272225 -(1,6067:21558392,19349494:0,414482,115847 -r1,6117:23323505,19349494:1765113,530329,115847 -k1,6067:21558392,19349494:-1765113 -) -(1,6067:21558392,19349494:1765113,414482,115847 -k1,6067:21558392,19349494:3277 -h1,6067:23320228,19349494:0,411205,112570 -) -k1,6067:23976494,19349494:272225 -k1,6067:25445406,19349494:272225 -k1,6067:27067673,19349494:272225 -k1,6067:28989439,19349494:272225 -k1,6067:31252648,19349494:272225 -k1,6068:32583029,19349494:0 -) -(1,6068:6630773,20190982:25952256,513147,134348 -(1,6067:6630773,20190982:0,459977,115847 -r1,6117:7340751,20190982:709978,575824,115847 -k1,6067:6630773,20190982:-709978 -) -(1,6067:6630773,20190982:709978,459977,115847 -k1,6067:6630773,20190982:3277 -h1,6067:7337474,20190982:0,411205,112570 -) -k1,6067:7538066,20190982:197315 -k1,6067:9835810,20190982:197315 -(1,6067:9835810,20190982:0,414482,115847 -r1,6117:14414618,20190982:4578808,530329,115847 -k1,6067:9835810,20190982:-4578808 -) -(1,6067:9835810,20190982:4578808,414482,115847 -g1,6067:13707917,20190982 -h1,6067:14411341,20190982:0,411205,112570 -) -k1,6067:14611934,20190982:197316 -k1,6067:15340746,20190982:197315 -k1,6067:17394041,20190982:197315 -k1,6067:20652543,20190982:197315 -k1,6067:21532744,20190982:197316 -k1,6067:24263681,20190982:197315 -k1,6067:27822993,20190982:197315 -k1,6067:28829678,20190982:197315 -k1,6067:30046079,20190982:197316 -k1,6067:31923737,20190982:197315 -k1,6068:32583029,20190982:0 -) -(1,6068:6630773,21032470:25952256,505283,126483 -(1,6067:6630773,21032470:0,452978,115847 -r1,6117:10506157,21032470:3875384,568825,115847 -k1,6067:6630773,21032470:-3875384 -) -(1,6067:6630773,21032470:3875384,452978,115847 -k1,6067:6630773,21032470:3277 -h1,6067:10502880,21032470:0,411205,112570 -) -g1,6067:10879056,21032470 -g1,6067:12767803,21032470 -(1,6067:12767803,21032470:0,414482,115847 -r1,6117:17346611,21032470:4578808,530329,115847 -k1,6067:12767803,21032470:-4578808 -) -(1,6067:12767803,21032470:4578808,414482,115847 -g1,6067:16639910,21032470 -h1,6067:17343334,21032470:0,411205,112570 -) -g1,6067:17545840,21032470 -g1,6067:18276566,21032470 -g1,6067:20605060,21032470 -k1,6068:32583029,21032470:8743112 -g1,6068:32583029,21032470 -) -(1,6084:6630773,33653546:25952256,11773697,0 -k1,6084:12310416,33653546:5679643 -(1,6069:12310416,33653546:0,0,0 -g1,6069:12310416,33653546 -g1,6069:12310416,33653546 -g1,6069:11982736,33653546 -(1,6069:11982736,33653546:0,0,0 -) -g1,6069:12310416,33653546 -) -(1,6082:12310416,33653546:14592970,11773697,0 -g1,6082:15329272,33653546 -(1,6082:15329272,22825295:0,0,0 -(1,6082:15329272,22825295:0,0,0 -g1,6071:15329272,22825295 -(1,6072:15329272,22825295:0,0,0 -(1,6072:15329272,22825295:0,0,0 -g1,6072:15329272,22825295 -g1,6072:15329272,22825295 -g1,6072:15329272,22825295 -g1,6072:15329272,22825295 -g1,6072:15329272,22825295 -(1,6072:15329272,22825295:0,0,0 -(1,6072:15329272,22825295:589824,56623,0 -(1,6072:15329272,22825295:589824,56623,0 -) -g1,6072:15919096,22825295 -) -) -g1,6072:15329272,22825295 -g1,6072:15329272,22825295 -) -) -g1,6072:15329272,22825295 -(1,6073:15329272,22825295:0,0,0 -(1,6073:15329272,22825295:0,0,0 -g1,6073:15329272,22825295 -g1,6073:15329272,22825295 -(1,6073:15329272,22825295:0,0,0 -(1,6073:15329272,22825295:3805042,414307,104590 -(1,6073:15329272,22825295:3805042,414307,104590 -(1,6073:15329272,22825295:0,414307,104590 -r1,6117:19134314,22825295:3805042,518897,104590 -k1,6073:15329272,22825295:-3805042 -) -(1,6073:15329272,22825295:3805042,414307,104590 -g1,6073:16282171,22825295 -h1,6073:19131037,22825295:0,370085,101313 -) -) -g1,6073:19134314,22825295 -) -) -g1,6073:15329272,22825295 -g1,6073:15329272,22825295 -) -) -(1,6074:15329272,22825295:0,0,0 -(1,6074:15329272,22825295:0,0,0 -g1,6074:15329272,22825295 -g1,6074:15329272,22825295 -g1,6074:15329272,22825295 -g1,6074:15329272,22825295 -g1,6074:15329272,22825295 -(1,6074:15329272,22825295:0,0,0 -(1,6074:15329272,22825295:4121582,373362,104590 -(1,6074:15329272,22825295:4121582,373362,104590 -(1,6074:15329272,22825295:0,373362,104590 -r1,6117:19450854,22825295:4121582,477952,104590 -k1,6074:15329272,22825295:-4121582 -) -(1,6074:15329272,22825295:4121582,373362,104590 -g1,6074:18814496,22825295 -h1,6074:19447577,22825295:0,370085,101313 -) -) -g1,6074:19450854,22825295 -) -) -g1,6074:15329272,22825295 -g1,6074:15329272,22825295 -) -) -(1,6075:15329272,22825295:0,0,0 -(1,6075:15329272,22825295:0,0,0 -g1,6075:15329272,22825295 -g1,6075:15329272,22825295 -g1,6075:15329272,22825295 -g1,6075:15329272,22825295 -g1,6075:15329272,22825295 -(1,6075:15329272,22825295:0,0,0 -(1,6075:15329272,22825295:4121582,373362,104590 -(1,6075:15329272,22825295:4121582,373362,104590 -(1,6075:15329272,22825295:0,373362,104590 -r1,6117:19450854,22825295:4121582,477952,104590 -k1,6075:15329272,22825295:-4121582 -) -(1,6075:15329272,22825295:4121582,373362,104590 -g1,6075:18814496,22825295 -h1,6075:19447577,22825295:0,370085,101313 -) -) -g1,6075:19450854,22825295 -) -) -g1,6075:15329272,22825295 -g1,6075:15329272,22825295 -) -) -g1,6075:15329272,22825295 -g1,6076:15329272,22825295 -(1,6076:15329272,22825295:0,0,0 -(1,6076:15329272,22825295:0,0,0 -g1,6076:15329272,22825295 -g1,6076:15329272,22825295 -g1,6076:15329272,22825295 -g1,6076:15329272,22825295 -g1,6076:15329272,22825295 -(1,6076:15329272,22825295:0,0,0 -(1,6076:15329272,22825295:589824,56623,0 -(1,6076:15329272,22825295:589824,56623,0 -) -g1,6076:15919096,22825295 -) -) -g1,6076:15329272,22825295 -g1,6076:15329272,22825295 -) -) -g1,6076:15329272,22825295 -g1,6077:15329272,22825295 -g1,6077:15329272,22825295 -g1,6077:15329272,22825295 -g1,6077:15329272,22825295 -g1,6078:15329272,22825295 -g1,6078:15329272,22825295 -g1,6078:15329272,22825295 -(1,6078:15329272,22825295:0,0,0 -(1,6078:15329272,22825295:0,0,0 -g1,6078:15329272,22825295 -g1,6078:15329272,22825295 -g1,6078:15329272,22825295 -g1,6078:15329272,22825295 -g1,6078:15329272,22825295 -(1,6078:15329272,22825295:0,0,0 -(1,6078:15329272,22825295:1272717,373362,104590 -(1,6078:15329272,22825295:1272717,373362,104590 -(1,6078:15329272,22825295:0,373362,104590 -r1,6117:16601989,22825295:1272717,477952,104590 -k1,6078:15329272,22825295:-1272717 -) -(1,6078:15329272,22825295:1272717,373362,104590 -k1,6078:15329272,22825295:3277 -h1,6078:16598712,22825295:0,370085,101313 -) -) -g1,6078:16601989,22825295 -) -) -g1,6078:15329272,22825295 -g1,6078:15329272,22825295 -) -) -g1,6078:15329272,22825295 -g1,6079:15329272,22825295 -g1,6079:15329272,22825295 -g1,6079:15329272,22825295 -(1,6079:15329272,22825295:0,0,0 -(1,6079:15329272,22825295:0,0,0 -g1,6079:15329272,22825295 -g1,6079:15329272,22825295 -g1,6079:15329272,22825295 -g1,6079:15329272,22825295 -g1,6079:15329272,22825295 -(1,6079:15329272,22825295:0,0,0 -(1,6079:15329272,22825295:1589257,373362,104590 -(1,6079:15329272,22825295:1589257,373362,104590 -(1,6079:15329272,22825295:0,373362,104590 -r1,6117:16918529,22825295:1589257,477952,104590 -k1,6079:15329272,22825295:-1589257 -) -(1,6079:15329272,22825295:1589257,373362,104590 -k1,6079:15329272,22825295:3277 -h1,6079:16915252,22825295:0,370085,101313 -) -) -g1,6079:16918529,22825295 -) -) -g1,6079:15329272,22825295 -g1,6079:15329272,22825295 -) -) -g1,6079:15329272,22825295 -g1,6080:15329272,22825295 -g1,6080:15329272,22825295 -g1,6080:15329272,22825295 -g1,6080:15329272,22825295 -g1,6080:15329272,22825295 -g1,6081:15329272,22825295 -g1,6081:15329272,22825295 -g1,6081:15329272,22825295 -g1,6081:15329272,22825295 -g1,6081:15329272,22825295 -g1,6081:15329272,22825295 -g1,6082:15329272,22825295 -g1,6082:15329272,22825295 -) -g1,6082:15329272,22825295 -) -) -g1,6084:26903386,33653546 -k1,6084:32583029,33653546:5679643 -) -(1,6087:6630773,35150394:25952256,513147,134348 -h1,6086:6630773,35150394:983040,0,0 -k1,6086:8821522,35150394:254160 -k1,6086:10564006,35150394:254161 -k1,6086:12212117,35150394:254160 -k1,6086:13478808,35150394:254160 -k1,6086:16724688,35150394:254161 -k1,6086:21654842,35150394:254160 -k1,6086:23239384,35150394:254161 -k1,6086:24051911,35150394:254160 -k1,6086:27822733,35150394:254160 -k1,6086:29847021,35150394:254161 -k1,6086:31714677,35150394:254160 -k1,6086:32583029,35150394:0 -) -(1,6087:6630773,35991882:25952256,505283,126483 -g1,6086:7962464,35991882 -g1,6086:9186676,35991882 -g1,6086:12377624,35991882 -g1,6086:14476086,35991882 -g1,6086:15326743,35991882 -g1,6086:16722659,35991882 -g1,6086:18014373,35991882 -k1,6087:32583029,35991882:12697603 -g1,6087:32583029,35991882 -) -v1,6089:6630773,37182348:0,393216,0 -(1,6097:6630773,38870171:25952256,2081039,196608 -g1,6097:6630773,38870171 -g1,6097:6630773,38870171 -g1,6097:6434165,38870171 -(1,6097:6434165,38870171:0,2081039,196608 -r1,6117:32779637,38870171:26345472,2277647,196608 -k1,6097:6434165,38870171:-26345472 -) -(1,6097:6434165,38870171:26345472,2081039,196608 -[1,6097:6630773,38870171:25952256,1884431,0 -(1,6091:6630773,37396258:25952256,410518,107478 -(1,6090:6630773,37396258:0,0,0 -g1,6090:6630773,37396258 -g1,6090:6630773,37396258 -g1,6090:6303093,37396258 -(1,6090:6303093,37396258:0,0,0 -) -g1,6090:6630773,37396258 -) -g1,6091:8211502,37396258 -g1,6091:9159940,37396258 -h1,6091:10424523,37396258:0,0,0 -k1,6091:32583029,37396258:22158506 -g1,6091:32583029,37396258 -) -(1,6092:6630773,38062436:25952256,410518,107478 -h1,6092:6630773,38062436:0,0,0 -g1,6092:7579210,38062436 -g1,6092:9792230,38062436 -k1,6092:9792230,38062436:0 -h1,6092:14534415,38062436:0,0,0 -k1,6092:32583029,38062436:18048614 -g1,6092:32583029,38062436 -) -(1,6096:6630773,38794150:25952256,404226,76021 -(1,6094:6630773,38794150:0,0,0 -g1,6094:6630773,38794150 -g1,6094:6630773,38794150 -g1,6094:6303093,38794150 -(1,6094:6303093,38794150:0,0,0 -) -g1,6094:6630773,38794150 -) -g1,6096:7579210,38794150 -g1,6096:8843793,38794150 -h1,6096:11372958,38794150:0,0,0 -k1,6096:32583030,38794150:21210072 -g1,6096:32583030,38794150 -) -] -) -g1,6097:32583029,38870171 -g1,6097:6630773,38870171 -g1,6097:6630773,38870171 -g1,6097:32583029,38870171 -g1,6097:32583029,38870171 -) -h1,6097:6630773,39066779:0,0,0 -v1,6101:6630773,40956843:0,393216,0 -(1,6117:6630773,44925851:25952256,4362224,589824 -g1,6117:6630773,44925851 -(1,6117:6630773,44925851:25952256,4362224,589824 -(1,6117:6630773,45515675:25952256,4952048,0 -[1,6117:6630773,45515675:25952256,4952048,0 -(1,6117:6630773,45515675:25952256,4925834,0 -r1,6117:6656987,45515675:26214,4925834,0 -[1,6117:6656987,45515675:25899828,4925834,0 -(1,6117:6656987,44925851:25899828,3746186,0 -[1,6117:7246811,44925851:24720180,3746186,0 -(1,6102:7246811,42267039:24720180,1087374,134348 -k1,6101:8654910,42267039:198396 -k1,6101:10150918,42267039:198395 -k1,6101:11743265,42267039:198396 -k1,6101:12960746,42267039:198396 -k1,6101:14655328,42267039:198395 -k1,6101:16709048,42267039:198396 -k1,6101:17668972,42267039:198396 -k1,6101:20750952,42267039:198396 -k1,6101:21968432,42267039:198395 -k1,6101:23847171,42267039:198396 -k1,6101:26820361,42267039:198396 -k1,6101:27670184,42267039:198395 -k1,6101:30379920,42267039:198396 -(1,6101:30379920,42267039:0,459977,122846 -r1,6117:31793321,42267039:1413401,582823,122846 -k1,6101:30379920,42267039:-1413401 -) -(1,6101:30379920,42267039:1413401,459977,122846 -k1,6101:30379920,42267039:3277 -h1,6101:31790044,42267039:0,411205,112570 -) -k1,6102:31966991,42267039:0 -) -(1,6102:7246811,43108527:24720180,505283,122846 -(1,6101:7246811,43108527:0,414482,115847 -r1,6117:9011924,43108527:1765113,530329,115847 -k1,6101:7246811,43108527:-1765113 -) -(1,6101:7246811,43108527:1765113,414482,115847 -k1,6101:7246811,43108527:3277 -h1,6101:9008647,43108527:0,411205,112570 -) -g1,6101:9384823,43108527 -(1,6101:9384823,43108527:0,414482,115847 -r1,6117:10094801,43108527:709978,530329,115847 -k1,6101:9384823,43108527:-709978 -) -(1,6101:9384823,43108527:709978,414482,115847 -k1,6101:9384823,43108527:3277 -h1,6101:10091524,43108527:0,411205,112570 -) -g1,6101:10467700,43108527 -g1,6101:11858374,43108527 -(1,6101:11858374,43108527:0,452978,122846 -r1,6117:15382046,43108527:3523672,575824,122846 -k1,6101:11858374,43108527:-3523672 -) -(1,6101:11858374,43108527:3523672,452978,122846 -k1,6101:11858374,43108527:3277 -h1,6101:15378769,43108527:0,411205,112570 -) -k1,6102:31966991,43108527:16411275 -g1,6102:31966991,43108527 -) -(1,6104:7246811,43950015:24720180,505283,126483 -h1,6103:7246811,43950015:983040,0,0 -g1,6103:9056915,43950015 -g1,6103:10275229,43950015 -g1,6103:13135875,43950015 -g1,6103:15190428,43950015 -g1,6103:16258009,43950015 -g1,6103:17549723,43950015 -g1,6103:20260292,43950015 -(1,6103:20260292,43950015:0,459977,122846 -r1,6117:21673693,43950015:1413401,582823,122846 -k1,6103:20260292,43950015:-1413401 -) -(1,6103:20260292,43950015:1413401,459977,122846 -k1,6103:20260292,43950015:3277 -h1,6103:21670416,43950015:0,411205,112570 -) -g1,6103:21872922,43950015 -g1,6103:22758313,43950015 -g1,6103:23976627,43950015 -k1,6104:31966991,43950015:4926556 -g1,6104:31966991,43950015 -) -(1,6106:7246811,44791503:24720180,513147,134348 -h1,6105:7246811,44791503:983040,0,0 -k1,6105:11066514,44791503:287968 -k1,6105:11970520,44791503:287968 -k1,6105:13277573,44791503:287968 -k1,6105:13980295,44791503:287879 -k1,6105:17110559,44791503:287968 -k1,6105:20161526,44791503:287969 -k1,6105:21652735,44791503:287968 -k1,6105:24973054,44791503:287968 -k1,6105:26828643,44791503:287968 -k1,6105:28854626,44791503:287968 -k1,6105:29498454,44791503:287968 -(1,6105:29498454,44791503:0,452978,122846 -r1,6117:31966991,44791503:2468537,575824,122846 -k1,6105:29498454,44791503:-2468537 -) -(1,6105:29498454,44791503:2468537,452978,122846 -k1,6105:29498454,44791503:3277 -h1,6105:31963714,44791503:0,411205,112570 -) -k1,6105:31966991,44791503:0 -) -] -) -] -r1,6117:32583029,45515675:26214,4925834,0 -) -] -) -) -g1,6117:32583029,44925851 -) -] -(1,6117:32583029,45706769:0,0,0 -g1,6117:32583029,45706769 -) -) -] -(1,6117:6630773,47279633:25952256,0,0 -h1,6117:6630773,47279633:25952256,0,0 -) -] -(1,6117:4262630,4025873:0,0,0 -[1,6117:-473656,4025873:0,0,0 -(1,6117:-473656,-710413:0,0,0 -(1,6117:-473656,-710413:0,0,0 -g1,6117:-473656,-710413 -) -g1,6117:-473656,-710413 -) -] -) -] -!24180 -}117 -Input:855:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:856:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:857:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:858:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:859:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:860:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:861:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:862:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:863:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:864:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:865:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:866:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:867:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:868:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:869:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1377 -{118 -[1,6177:4262630,47279633:28320399,43253760,0 -(1,6177:4262630,4025873:0,0,0 -[1,6177:-473656,4025873:0,0,0 -(1,6177:-473656,-710413:0,0,0 -(1,6177:-473656,-644877:0,0,0 -k1,6177:-473656,-644877:-65536 -) -(1,6177:-473656,4736287:0,0,0 -k1,6177:-473656,4736287:5209943 -) -g1,6177:-473656,-710413 -) -] -) -[1,6177:6630773,47279633:25952256,43253760,0 -[1,6177:6630773,4812305:25952256,786432,0 -(1,6177:6630773,4812305:25952256,513147,126483 -(1,6177:6630773,4812305:25952256,513147,126483 -g1,6177:3078558,4812305 -[1,6177:3078558,4812305:0,0,0 -(1,6177:3078558,2439708:0,1703936,0 -k1,6177:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,6177:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,6177:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,6177:3078558,4812305:0,0,0 -(1,6177:3078558,2439708:0,1703936,0 -g1,6177:29030814,2439708 -g1,6177:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,6177:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,6177:37855564,2439708:1179648,16384,0 -) -) -k1,6177:3078556,2439708:-34777008 -) -] -[1,6177:3078558,4812305:0,0,0 -(1,6177:3078558,49800853:0,16384,2228224 -k1,6177:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,6177:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,6177:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,6177:3078558,4812305:0,0,0 -(1,6177:3078558,49800853:0,16384,2228224 -g1,6177:29030814,49800853 -g1,6177:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,6177:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,6177:37855564,49800853:1179648,16384,0 -) -) -k1,6177:3078556,49800853:-34777008 -) -] -g1,6177:6630773,4812305 -g1,6177:6630773,4812305 -g1,6177:9175536,4812305 -g1,6177:9990803,4812305 -g1,6177:13137841,4812305 -g1,6177:14654344,4812305 -k1,6177:31387652,4812305:16733308 -) -) -] -[1,6177:6630773,45706769:25952256,40108032,0 -(1,6177:6630773,45706769:25952256,40108032,0 -(1,6177:6630773,45706769:0,0,0 -g1,6177:6630773,45706769 -) -[1,6177:6630773,45706769:25952256,40108032,0 -v1,6117:6630773,6254097:0,393216,0 -(1,6117:6630773,10730483:25952256,4869602,616038 -g1,6117:6630773,10730483 -(1,6117:6630773,10730483:25952256,4869602,616038 -(1,6117:6630773,11346521:25952256,5485640,0 -[1,6117:6630773,11346521:25952256,5485640,0 -(1,6117:6630773,11320307:25952256,5459426,0 -r1,6177:6656987,11320307:26214,5459426,0 -[1,6117:6656987,11320307:25899828,5459426,0 -(1,6117:6656987,10730483:25899828,4279778,0 -[1,6117:7246811,10730483:24720180,4279778,0 -(1,6106:7246811,6955988:24720180,505283,126483 -k1,6105:10411870,6955988:233634 -k1,6105:12979240,6955988:233633 -k1,6105:14509832,6955988:233634 -(1,6105:14509832,6955988:0,459977,115847 -r1,6177:17681793,6955988:3171961,575824,115847 -k1,6105:14509832,6955988:-3171961 -) -(1,6105:14509832,6955988:3171961,459977,115847 -g1,6105:15568245,6955988 -h1,6105:17678516,6955988:0,411205,112570 -) -k1,6105:17915427,6955988:233634 -k1,6105:18765098,6955988:233633 -k1,6105:20017817,6955988:233634 -k1,6105:26678566,6955988:233633 -k1,6105:30098560,6955988:233634 -k1,6105:31966991,6955988:0 -) -(1,6106:7246811,7797476:24720180,513147,126483 -g1,6105:7977537,7797476 -g1,6105:8836058,7797476 -g1,6105:9844657,7797476 -g1,6105:12795087,7797476 -k1,6106:31966991,7797476:17905748 -g1,6106:31966991,7797476 -) -v1,6108:7246811,8987942:0,393216,0 -(1,6115:7246811,10009587:24720180,1414861,196608 -g1,6115:7246811,10009587 -g1,6115:7246811,10009587 -g1,6115:7050203,10009587 -(1,6115:7050203,10009587:0,1414861,196608 -r1,6177:32163599,10009587:25113396,1611469,196608 -k1,6115:7050203,10009587:-25113396 -) -(1,6115:7050203,10009587:25113396,1414861,196608 -[1,6115:7246811,10009587:24720180,1218253,0 -(1,6110:7246811,9201852:24720180,410518,101187 -(1,6109:7246811,9201852:0,0,0 -g1,6109:7246811,9201852 -g1,6109:7246811,9201852 -g1,6109:6919131,9201852 -(1,6109:6919131,9201852:0,0,0 -) -g1,6109:7246811,9201852 -) -k1,6110:7246811,9201852:0 -g1,6110:8195248,9201852 -g1,6110:10408269,9201852 -k1,6110:10408269,9201852:0 -h1,6110:15150454,9201852:0,0,0 -k1,6110:31966990,9201852:16816536 -g1,6110:31966990,9201852 -) -(1,6114:7246811,9933566:24720180,404226,76021 -(1,6112:7246811,9933566:0,0,0 -g1,6112:7246811,9933566 -g1,6112:7246811,9933566 -g1,6112:6919131,9933566 -(1,6112:6919131,9933566:0,0,0 -) -g1,6112:7246811,9933566 -) -g1,6114:8195248,9933566 -g1,6114:9459831,9933566 -h1,6114:11988996,9933566:0,0,0 -k1,6114:31966992,9933566:19977996 -g1,6114:31966992,9933566 -) -] -) -g1,6115:31966991,10009587 -g1,6115:7246811,10009587 -g1,6115:7246811,10009587 -g1,6115:31966991,10009587 -g1,6115:31966991,10009587 -) -h1,6115:7246811,10206195:0,0,0 -] -) -] -r1,6177:32583029,11320307:26214,5459426,0 -) -] -) -) -g1,6117:32583029,10730483 -) -h1,6117:6630773,11346521:0,0,0 -(1,6120:6630773,12712297:25952256,513147,126483 -h1,6119:6630773,12712297:983040,0,0 -k1,6119:11540134,12712297:211085 -k1,6119:14826825,12712297:211086 -k1,6119:15569407,12712297:211085 -k1,6119:17563727,12712297:211085 -k1,6119:19425009,12712297:211085 -k1,6119:21613316,12712297:211086 -k1,6119:23266848,12712297:211085 -k1,6119:25026549,12712297:211085 -k1,6119:27006451,12712297:211085 -k1,6119:27965303,12712297:211086 -k1,6119:31015408,12712297:211085 -k1,6119:32583029,12712297:0 -) -(1,6120:6630773,13553785:25952256,505283,134348 -k1,6119:7849284,13553785:199426 -k1,6119:10803188,13553785:199426 -k1,6119:13837701,13553785:199426 -k1,6119:16566817,13553785:199426 -k1,6119:17785328,13553785:199426 -k1,6119:21171114,13553785:199426 -k1,6119:23378563,13553785:199426 -k1,6119:26653594,13553785:199426 -k1,6119:27384517,13553785:199426 -k1,6119:29321958,13553785:199426 -k1,6119:32583029,13553785:0 -) -(1,6120:6630773,14395273:25952256,513147,134348 -k1,6119:7954199,14395273:219144 -k1,6119:8921109,14395273:219144 -k1,6119:9496113,14395273:219144 -k1,6119:13129026,14395273:219143 -k1,6119:16534530,14395273:219144 -k1,6119:17412966,14395273:219144 -k1,6119:19794798,14395273:219144 -k1,6119:21145749,14395273:219144 -k1,6119:23378159,14395273:219144 -k1,6119:24280187,14395273:219143 -k1,6119:28178522,14395273:219144 -k1,6119:28885234,14395273:219124 -k1,6119:30458352,14395273:219144 -k1,6119:32583029,14395273:0 -) -(1,6120:6630773,15236761:25952256,513147,126483 -g1,6119:9491419,15236761 -k1,6120:32583028,15236761:20602552 -g1,6120:32583028,15236761 -) -v1,6122:6630773,16427227:0,393216,0 -(1,6134:6630773,20773470:25952256,4739459,196608 -g1,6134:6630773,20773470 -g1,6134:6630773,20773470 -g1,6134:6434165,20773470 -(1,6134:6434165,20773470:0,4739459,196608 -r1,6177:32779637,20773470:26345472,4936067,196608 -k1,6134:6434165,20773470:-26345472 -) -(1,6134:6434165,20773470:26345472,4739459,196608 -[1,6134:6630773,20773470:25952256,4542851,0 -(1,6124:6630773,16634845:25952256,404226,107478 -(1,6123:6630773,16634845:0,0,0 -g1,6123:6630773,16634845 -g1,6123:6630773,16634845 -g1,6123:6303093,16634845 -(1,6123:6303093,16634845:0,0,0 -) -g1,6123:6630773,16634845 -) -g1,6124:9476084,16634845 -g1,6124:10424522,16634845 -h1,6124:11689105,16634845:0,0,0 -k1,6124:32583029,16634845:20893924 -g1,6124:32583029,16634845 -) -(1,6125:6630773,17301023:25952256,410518,107478 -h1,6125:6630773,17301023:0,0,0 -g1,6125:7579210,17301023 -g1,6125:11056813,17301023 -h1,6125:11372959,17301023:0,0,0 -k1,6125:32583029,17301023:21210070 -g1,6125:32583029,17301023 -) -(1,6126:6630773,17967201:25952256,404226,101187 -h1,6126:6630773,17967201:0,0,0 -g1,6126:6946919,17967201 -g1,6126:7263065,17967201 -k1,6126:7263065,17967201:0 -h1,6126:10424522,17967201:0,0,0 -k1,6126:32583030,17967201:22158508 -g1,6126:32583030,17967201 -) -(1,6127:6630773,18633379:25952256,404226,101187 -h1,6127:6630773,18633379:0,0,0 -g1,6127:6946919,18633379 -g1,6127:7263065,18633379 -k1,6127:7263065,18633379:0 -h1,6127:10424522,18633379:0,0,0 -k1,6127:32583030,18633379:22158508 -g1,6127:32583030,18633379 -) -(1,6128:6630773,19299557:25952256,404226,76021 -h1,6128:6630773,19299557:0,0,0 -h1,6128:6946919,19299557:0,0,0 -k1,6128:32583029,19299557:25636110 -g1,6128:32583029,19299557 -) -(1,6133:6630773,20031271:25952256,404226,76021 -(1,6130:6630773,20031271:0,0,0 -g1,6130:6630773,20031271 -g1,6130:6630773,20031271 -g1,6130:6303093,20031271 -(1,6130:6303093,20031271:0,0,0 -) -g1,6130:6630773,20031271 -) -g1,6133:7579210,20031271 -g1,6133:8843793,20031271 -h1,6133:9792230,20031271:0,0,0 -k1,6133:32583030,20031271:22790800 -g1,6133:32583030,20031271 -) -(1,6133:6630773,20697449:25952256,404226,76021 -h1,6133:6630773,20697449:0,0,0 -g1,6133:7579210,20697449 -g1,6133:8843793,20697449 -h1,6133:9792230,20697449:0,0,0 -k1,6133:32583030,20697449:22790800 -g1,6133:32583030,20697449 -) -] -) -g1,6134:32583029,20773470 -g1,6134:6630773,20773470 -g1,6134:6630773,20773470 -g1,6134:32583029,20773470 -g1,6134:32583029,20773470 -) -h1,6134:6630773,20970078:0,0,0 -v1,6138:6630773,22860142:0,393216,0 -(1,6139:6630773,26700827:25952256,4233901,616038 -g1,6139:6630773,26700827 -(1,6139:6630773,26700827:25952256,4233901,616038 -(1,6139:6630773,27316865:25952256,4849939,0 -[1,6139:6630773,27316865:25952256,4849939,0 -(1,6139:6630773,27290651:25952256,4797511,0 -r1,6177:6656987,27290651:26214,4797511,0 -[1,6139:6656987,27290651:25899828,4797511,0 -(1,6139:6656987,26700827:25899828,3617863,0 -[1,6139:7246811,26700827:24720180,3617863,0 -(1,6139:7246811,24168500:24720180,1085536,298548 -(1,6138:7246811,24168500:0,1085536,298548 -r1,6177:8753226,24168500:1506415,1384084,298548 -k1,6138:7246811,24168500:-1506415 -) -(1,6138:7246811,24168500:1506415,1085536,298548 -) -k1,6138:8934327,24168500:181101 -k1,6138:10312114,24168500:181100 -k1,6138:13525566,24168500:181101 -k1,6138:15911954,24168500:181101 -k1,6138:16779216,24168500:181100 -k1,6138:17731020,24168500:181101 -k1,6138:20984449,24168500:181101 -k1,6138:21816977,24168500:181100 -(1,6138:21816977,24168500:0,459977,115847 -r1,6177:22526955,24168500:709978,575824,115847 -k1,6138:21816977,24168500:-709978 -) -(1,6138:21816977,24168500:709978,459977,115847 -k1,6138:21816977,24168500:3277 -h1,6138:22523678,24168500:0,411205,112570 -) -k1,6138:22881726,24168500:181101 -k1,6138:25856627,24168500:181101 -k1,6138:26653765,24168500:181100 -k1,6138:30862709,24168500:181101 -k1,6138:31966991,24168500:0 -) -(1,6139:7246811,25009988:24720180,513147,134348 -k1,6138:8244537,25009988:249960 -k1,6138:11288297,25009988:249960 -k1,6138:14064015,25009988:249960 -k1,6138:14669834,25009988:249959 -(1,6138:14669834,25009988:0,452978,122846 -r1,6177:17138371,25009988:2468537,575824,122846 -k1,6138:14669834,25009988:-2468537 -) -(1,6138:14669834,25009988:2468537,452978,122846 -k1,6138:14669834,25009988:3277 -h1,6138:17135094,25009988:0,411205,112570 -) -k1,6138:17388331,25009988:249960 -k1,6138:19616168,25009988:249960 -k1,6138:20525420,25009988:249960 -k1,6138:22788646,25009988:249960 -k1,6138:24368987,25009988:249960 -k1,6138:25436835,25009988:249959 -k1,6138:26890036,25009988:249960 -k1,6138:30172347,25009988:249960 -k1,6138:30953804,25009988:249960 -k1,6139:31966991,25009988:0 -) -(1,6139:7246811,25851476:24720180,505283,134348 -k1,6138:10946219,25851476:188644 -k1,6138:11490722,25851476:188643 -k1,6138:13703773,25851476:188644 -k1,6138:15870294,25851476:188644 -k1,6138:17191399,25851476:188643 -k1,6138:19510618,25851476:188644 -k1,6138:20469965,25851476:188644 -k1,6138:21073441,25851476:188633 -k1,6138:23832406,25851476:188643 -k1,6138:24703935,25851476:188644 -k1,6138:26499522,25851476:188644 -k1,6138:30050162,25851476:188643 -k1,6138:31048176,25851476:188644 -k1,6138:31966991,25851476:0 -) -(1,6139:7246811,26692964:24720180,473825,7863 -k1,6139:31966990,26692964:22212772 -g1,6139:31966990,26692964 -) -] -) -] -r1,6177:32583029,27290651:26214,4797511,0 -) -] -) -) -g1,6139:32583029,26700827 -) -h1,6139:6630773,27316865:0,0,0 -(1,6142:6630773,28682641:25952256,513147,134348 -h1,6141:6630773,28682641:983040,0,0 -k1,6141:9111198,28682641:300698 -(1,6141:9111198,28682641:0,459977,115847 -r1,6177:12283159,28682641:3171961,575824,115847 -k1,6141:9111198,28682641:-3171961 -) -(1,6141:9111198,28682641:3171961,459977,115847 -g1,6141:10169611,28682641 -g1,6141:10873035,28682641 -h1,6141:12279882,28682641:0,411205,112570 -) -k1,6141:12583856,28682641:300697 -k1,6141:15908385,28682641:300698 -k1,6141:19384302,28682641:300698 -k1,6141:23046996,28682641:300697 -k1,6141:24157064,28682641:300698 -k1,6141:24813622,28682641:300698 -(1,6141:24813622,28682641:0,452978,122846 -r1,6177:27282159,28682641:2468537,575824,122846 -k1,6141:24813622,28682641:-2468537 -) -(1,6141:24813622,28682641:2468537,452978,122846 -k1,6141:24813622,28682641:3277 -h1,6141:27278882,28682641:0,411205,112570 -) -k1,6141:27582857,28682641:300698 -k1,6141:29737568,28682641:300697 -k1,6141:31923737,28682641:300698 -k1,6141:32583029,28682641:0 -) -(1,6142:6630773,29524129:25952256,513147,115847 -k1,6141:8140267,29524129:337055 -k1,6141:9973509,29524129:337055 -k1,6141:13827225,29524129:337054 -k1,6141:14695777,29524129:337055 -k1,6141:18039624,29524129:337055 -k1,6141:19573366,29524129:337055 -k1,6141:21260462,29524129:337054 -k1,6141:23247058,29524129:337055 -k1,6141:25575097,29524129:337055 -k1,6141:27242533,29524129:337055 -(1,6141:27242533,29524129:0,459977,115847 -r1,6177:27952511,29524129:709978,575824,115847 -k1,6141:27242533,29524129:-709978 -) -(1,6141:27242533,29524129:709978,459977,115847 -k1,6141:27242533,29524129:3277 -h1,6141:27949234,29524129:0,411205,112570 -) -k1,6141:28289565,29524129:337054 -k1,6141:30727049,29524129:337055 -k1,6142:32583029,29524129:0 -) -(1,6142:6630773,30365617:25952256,505283,134348 -(1,6141:6630773,30365617:0,414482,115847 -r1,6177:11209581,30365617:4578808,530329,115847 -k1,6141:6630773,30365617:-4578808 -) -(1,6141:6630773,30365617:4578808,414482,115847 -g1,6141:10502880,30365617 -h1,6141:11206304,30365617:0,411205,112570 -) -k1,6141:11399739,30365617:190158 -k1,6141:12272782,30365617:190158 -(1,6141:12272782,30365617:0,414482,115847 -r1,6177:16851590,30365617:4578808,530329,115847 -k1,6141:12272782,30365617:-4578808 -) -(1,6141:12272782,30365617:4578808,414482,115847 -g1,6141:16144889,30365617 -h1,6141:16848313,30365617:0,411205,112570 -) -k1,6141:17041749,30365617:190159 -k1,6141:17763404,30365617:190158 -k1,6141:21014749,30365617:190158 -k1,6141:22396352,30365617:190158 -k1,6141:23605595,30365617:190158 -k1,6141:25497724,30365617:190159 -k1,6141:28221504,30365617:190158 -k1,6141:31773659,30365617:190158 -k1,6141:32583029,30365617:0 -) -(1,6142:6630773,31207105:25952256,513147,126483 -g1,6141:7849087,31207105 -g1,6141:9728659,31207105 -g1,6141:10595044,31207105 -(1,6141:10595044,31207105:0,452978,115847 -r1,6177:14470428,31207105:3875384,568825,115847 -k1,6141:10595044,31207105:-3875384 -) -(1,6141:10595044,31207105:3875384,452978,115847 -k1,6141:10595044,31207105:3277 -h1,6141:14467151,31207105:0,411205,112570 -) -g1,6141:14843327,31207105 -g1,6141:16732074,31207105 -(1,6141:16732074,31207105:0,414482,115847 -r1,6177:21310882,31207105:4578808,530329,115847 -k1,6141:16732074,31207105:-4578808 -) -(1,6141:16732074,31207105:4578808,414482,115847 -g1,6141:20604181,31207105 -h1,6141:21307605,31207105:0,411205,112570 -) -g1,6141:21510111,31207105 -g1,6141:22240837,31207105 -g1,6141:24569331,31207105 -k1,6142:32583029,31207105:4778841 -g1,6142:32583029,31207105 -) -(1,6160:6630773,44201111:25952256,12146627,0 -k1,6160:8032787,44201111:1402014 -(1,6143:8032787,44201111:0,0,0 -g1,6143:8032787,44201111 -g1,6143:8032787,44201111 -g1,6143:7705107,44201111 -(1,6143:7705107,44201111:0,0,0 -) -g1,6143:8032787,44201111 -) -(1,6158:8032787,44201111:23148228,12146627,0 -g1,6158:19606901,44201111 -(1,6158:19606901,32999930:0,0,0 -(1,6158:19606901,32999930:0,0,0 -g1,6145:19606901,32999930 -(1,6146:19606901,32999930:0,0,0 -(1,6146:19606901,32999930:0,0,0 -g1,6146:19606901,32999930 -g1,6146:19606901,32999930 -g1,6146:19606901,32999930 -g1,6146:19606901,32999930 -g1,6146:19606901,32999930 -(1,6146:19606901,32999930:0,0,0 -(1,6146:19606901,32999930:589824,56623,0 -(1,6146:19606901,32999930:589824,56623,0 -) -g1,6146:20196725,32999930 -) -) -g1,6146:19606901,32999930 -g1,6146:19606901,32999930 -) -) -g1,6146:19606901,32999930 -(1,6147:19606901,32999930:0,0,0 -(1,6147:19606901,32999930:0,0,0 -g1,6147:19606901,32999930 -g1,6147:19606901,32999930 -(1,6147:19606901,32999930:0,0,0 -(1,6147:19606901,32999930:5387746,414307,104590 -(1,6147:19606901,32999930:5387746,414307,104590 -(1,6147:19606901,32999930:0,414307,104590 -r1,6177:24994647,32999930:5387746,518897,104590 -k1,6147:19606901,32999930:-5387746 -) -(1,6147:19606901,32999930:5387746,414307,104590 -g1,6147:20559800,32999930 -g1,6147:23725207,32999930 -h1,6147:24991370,32999930:0,370085,101313 -) -) -g1,6147:24994647,32999930 -) -) -g1,6147:19606901,32999930 -g1,6147:19606901,32999930 -) -) -(1,6148:19606901,32999930:0,0,0 -(1,6148:19606901,32999930:0,0,0 -g1,6148:19606901,32999930 -g1,6148:19606901,32999930 -g1,6148:19606901,32999930 -g1,6148:19606901,32999930 -g1,6148:19606901,32999930 -(1,6148:19606901,32999930:0,0,0 -(1,6148:19606901,32999930:4121582,373362,104590 -(1,6148:19606901,32999930:4121582,373362,104590 -(1,6148:19606901,32999930:0,373362,104590 -r1,6177:23728483,32999930:4121582,477952,104590 -k1,6148:19606901,32999930:-4121582 -) -(1,6148:19606901,32999930:4121582,373362,104590 -g1,6148:23092125,32999930 -h1,6148:23725206,32999930:0,370085,101313 -) -) -g1,6148:23728483,32999930 -) -) -g1,6148:19606901,32999930 -g1,6148:19606901,32999930 -) -) -(1,6149:19606901,32999930:0,0,0 -(1,6149:19606901,32999930:0,0,0 -g1,6149:19606901,32999930 -g1,6149:19606901,32999930 -g1,6149:19606901,32999930 -g1,6149:19606901,32999930 -g1,6149:19606901,32999930 -(1,6149:19606901,32999930:0,0,0 -(1,6149:19606901,32999930:4121582,373362,104590 -(1,6149:19606901,32999930:4121582,373362,104590 -(1,6149:19606901,32999930:0,373362,104590 -r1,6177:23728483,32999930:4121582,477952,104590 -k1,6149:19606901,32999930:-4121582 -) -(1,6149:19606901,32999930:4121582,373362,104590 -g1,6149:23092125,32999930 -h1,6149:23725206,32999930:0,370085,101313 -) -) -g1,6149:23728483,32999930 -) -) -g1,6149:19606901,32999930 -g1,6149:19606901,32999930 -) -) -(1,6150:19606901,32999930:0,0,0 -(1,6150:19606901,32999930:0,0,0 -g1,6150:19606901,32999930 -g1,6150:19606901,32999930 -g1,6150:19606901,32999930 -g1,6150:19606901,32999930 -g1,6150:19606901,32999930 -(1,6150:19606901,32999930:0,0,0 -(1,6150:19606901,32999930:4121582,373362,104590 -(1,6150:19606901,32999930:4121582,373362,104590 -(1,6150:19606901,32999930:0,373362,104590 -r1,6177:23728483,32999930:4121582,477952,104590 -k1,6150:19606901,32999930:-4121582 -) -(1,6150:19606901,32999930:4121582,373362,104590 -g1,6150:23092125,32999930 -h1,6150:23725206,32999930:0,370085,101313 -) -) -g1,6150:23728483,32999930 -) -) -g1,6150:19606901,32999930 -g1,6150:19606901,32999930 -) -) -g1,6150:19606901,32999930 -g1,6151:19606901,32999930 -(1,6151:19606901,32999930:0,0,0 -(1,6151:19606901,32999930:0,0,0 -g1,6151:19606901,32999930 -g1,6151:19606901,32999930 -g1,6151:19606901,32999930 -g1,6151:19606901,32999930 -g1,6151:19606901,32999930 -(1,6151:19606901,32999930:0,0,0 -(1,6151:19606901,32999930:589824,56623,0 -(1,6151:19606901,32999930:589824,56623,0 -) -g1,6151:20196725,32999930 -) -) -g1,6151:19606901,32999930 -g1,6151:19606901,32999930 -) -) -g1,6151:19606901,32999930 -g1,6152:19606901,32999930 -g1,6152:19606901,32999930 -g1,6152:19606901,32999930 -g1,6152:19606901,32999930 -g1,6153:19606901,32999930 -g1,6153:19606901,32999930 -g1,6153:19606901,32999930 -(1,6153:19606901,32999930:0,0,0 -(1,6153:19606901,32999930:0,0,0 -g1,6153:19606901,32999930 -g1,6153:19606901,32999930 -g1,6153:19606901,32999930 -g1,6153:19606901,32999930 -g1,6153:19606901,32999930 -(1,6153:19606901,32999930:0,0,0 -(1,6153:19606901,32999930:1272717,373362,104590 -(1,6153:19606901,32999930:1272717,373362,104590 -(1,6153:19606901,32999930:0,373362,104590 -r1,6177:20879618,32999930:1272717,477952,104590 -k1,6153:19606901,32999930:-1272717 -) -(1,6153:19606901,32999930:1272717,373362,104590 -k1,6153:19606901,32999930:3277 -h1,6153:20876341,32999930:0,370085,101313 -) -) -g1,6153:20879618,32999930 -) -) -g1,6153:19606901,32999930 -g1,6153:19606901,32999930 -) -) -g1,6153:19606901,32999930 -g1,6154:19606901,32999930 -g1,6154:19606901,32999930 -g1,6154:19606901,32999930 -(1,6154:19606901,32999930:0,0,0 -(1,6154:19606901,32999930:0,0,0 -g1,6154:19606901,32999930 -g1,6154:19606901,32999930 -g1,6154:19606901,32999930 -g1,6154:19606901,32999930 -g1,6154:19606901,32999930 -(1,6154:19606901,32999930:0,0,0 -(1,6154:19606901,32999930:1589257,373362,104590 -(1,6154:19606901,32999930:1589257,373362,104590 -(1,6154:19606901,32999930:0,373362,104590 -r1,6177:21196158,32999930:1589257,477952,104590 -k1,6154:19606901,32999930:-1589257 -) -(1,6154:19606901,32999930:1589257,373362,104590 -k1,6154:19606901,32999930:3277 -h1,6154:21192881,32999930:0,370085,101313 -) -) -g1,6154:21196158,32999930 -) -) -g1,6154:19606901,32999930 -g1,6154:19606901,32999930 -) -) -g1,6154:19606901,32999930 -g1,6155:19606901,32999930 -g1,6155:19606901,32999930 -g1,6155:19606901,32999930 -g1,6155:19606901,32999930 -g1,6155:19606901,32999930 -g1,6156:19606901,32999930 -g1,6156:19606901,32999930 -g1,6156:19606901,32999930 -g1,6156:19606901,32999930 -g1,6156:19606901,32999930 -g1,6157:19606901,32999930 -g1,6157:19606901,32999930 -g1,6157:19606901,32999930 -g1,6157:19606901,32999930 -g1,6157:19606901,32999930 -g1,6157:19606901,32999930 -g1,6158:19606901,32999930 -g1,6158:19606901,32999930 -) -g1,6158:19606901,32999930 -) -) -g1,6160:31181015,44201111 -k1,6160:32583029,44201111:1402014 -) -v1,6163:6630773,46046937:0,393216,0 -] -(1,6177:32583029,45706769:0,0,0 -g1,6177:32583029,45706769 -) -) -] -(1,6177:6630773,47279633:25952256,0,0 -h1,6177:6630773,47279633:25952256,0,0 -) -] -(1,6177:4262630,4025873:0,0,0 -[1,6177:-473656,4025873:0,0,0 -(1,6177:-473656,-710413:0,0,0 -(1,6177:-473656,-710413:0,0,0 -g1,6177:-473656,-710413 -) -g1,6177:-473656,-710413 -) -] -) -] -!22368 -}118 -Input:870:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:871:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:872:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:873:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:874:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:875:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:876:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:877:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:878:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!831 -{119 -[1,6240:4262630,47279633:28320399,43253760,0 -(1,6240:4262630,4025873:0,0,0 -[1,6240:-473656,4025873:0,0,0 -(1,6240:-473656,-710413:0,0,0 -(1,6240:-473656,-644877:0,0,0 -k1,6240:-473656,-644877:-65536 -) -(1,6240:-473656,4736287:0,0,0 -k1,6240:-473656,4736287:5209943 -) -g1,6240:-473656,-710413 -) -] -) -[1,6240:6630773,47279633:25952256,43253760,0 -[1,6240:6630773,4812305:25952256,786432,0 -(1,6240:6630773,4812305:25952256,505283,134348 -(1,6240:6630773,4812305:25952256,505283,134348 -g1,6240:3078558,4812305 -[1,6240:3078558,4812305:0,0,0 -(1,6240:3078558,2439708:0,1703936,0 -k1,6240:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,6240:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,6240:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,6240:3078558,4812305:0,0,0 -(1,6240:3078558,2439708:0,1703936,0 -g1,6240:29030814,2439708 -g1,6240:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,6240:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,6240:37855564,2439708:1179648,16384,0 -) -) -k1,6240:3078556,2439708:-34777008 -) -] -[1,6240:3078558,4812305:0,0,0 -(1,6240:3078558,49800853:0,16384,2228224 -k1,6240:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,6240:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,6240:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,6240:3078558,4812305:0,0,0 -(1,6240:3078558,49800853:0,16384,2228224 -g1,6240:29030814,49800853 -g1,6240:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,6240:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,6240:37855564,49800853:1179648,16384,0 -) -) -k1,6240:3078556,49800853:-34777008 -) -] -g1,6240:6630773,4812305 -k1,6240:18771974,4812305:10945824 -g1,6240:20158715,4812305 -g1,6240:20807521,4812305 -g1,6240:24121676,4812305 -g1,6240:28605649,4812305 -g1,6240:30015328,4812305 -) -) -] -[1,6240:6630773,45706769:25952256,40108032,0 -(1,6240:6630773,45706769:25952256,40108032,0 -(1,6240:6630773,45706769:0,0,0 -g1,6240:6630773,45706769 -) -[1,6240:6630773,45706769:25952256,40108032,0 -v1,6177:6630773,6254097:0,393216,0 -(1,6177:6630773,9998317:25952256,4137436,196608 -g1,6177:6630773,9998317 -g1,6177:6630773,9998317 -g1,6177:6434165,9998317 -(1,6177:6434165,9998317:0,4137436,196608 -r1,6240:32779637,9998317:26345472,4334044,196608 -k1,6177:6434165,9998317:-26345472 -) -(1,6177:6434165,9998317:26345472,4137436,196608 -[1,6177:6630773,9998317:25952256,3940828,0 -(1,6165:6630773,6445986:25952256,388497,9436 -(1,6164:6630773,6445986:0,0,0 -g1,6164:6630773,6445986 -g1,6164:6630773,6445986 -g1,6164:6303093,6445986 -(1,6164:6303093,6445986:0,0,0 -) -g1,6164:6630773,6445986 -) -g1,6165:7263065,6445986 -g1,6165:8211503,6445986 -h1,6165:9476086,6445986:0,0,0 -k1,6165:32583030,6445986:23106944 -g1,6165:32583030,6445986 -) -(1,6166:6630773,7112164:25952256,410518,107478 -h1,6166:6630773,7112164:0,0,0 -g1,6166:7579210,7112164 -g1,6166:8527647,7112164 -g1,6166:9159939,7112164 -g1,6166:10740668,7112164 -g1,6166:14218272,7112164 -g1,6166:15166709,7112164 -g1,6166:18644312,7112164 -g1,6166:20225041,7112164 -g1,6166:23702645,7112164 -g1,6166:24651082,7112164 -g1,6166:25915665,7112164 -h1,6166:29077122,7112164:0,0,0 -k1,6166:32583029,7112164:3505907 -g1,6166:32583029,7112164 -) -(1,6170:6630773,7843878:25952256,404226,107478 -(1,6168:6630773,7843878:0,0,0 -g1,6168:6630773,7843878 -g1,6168:6630773,7843878 -g1,6168:6303093,7843878 -(1,6168:6303093,7843878:0,0,0 -) -g1,6168:6630773,7843878 -) -g1,6170:7579210,7843878 -g1,6170:8843793,7843878 -g1,6170:10424523,7843878 -g1,6170:11372960,7843878 -g1,6170:12637543,7843878 -h1,6170:15482854,7843878:0,0,0 -k1,6170:32583030,7843878:17100176 -g1,6170:32583030,7843878 -) -(1,6172:6630773,9165416:25952256,404226,101187 -(1,6171:6630773,9165416:0,0,0 -g1,6171:6630773,9165416 -g1,6171:6630773,9165416 -g1,6171:6303093,9165416 -(1,6171:6303093,9165416:0,0,0 -) -g1,6171:6630773,9165416 -) -k1,6172:6630773,9165416:0 -g1,6172:10424521,9165416 -g1,6172:11372958,9165416 -g1,6172:13585978,9165416 -h1,6172:16431289,9165416:0,0,0 -k1,6172:32583029,9165416:16151740 -g1,6172:32583029,9165416 -) -(1,6176:6630773,9897130:25952256,404226,101187 -(1,6174:6630773,9897130:0,0,0 -g1,6174:6630773,9897130 -g1,6174:6630773,9897130 -g1,6174:6303093,9897130 -(1,6174:6303093,9897130:0,0,0 -) -g1,6174:6630773,9897130 -) -g1,6176:7579210,9897130 -g1,6176:8843793,9897130 -g1,6176:10740667,9897130 -g1,6176:11689104,9897130 -g1,6176:13902124,9897130 -h1,6176:16431289,9897130:0,0,0 -k1,6176:32583029,9897130:16151740 -g1,6176:32583029,9897130 -) -] -) -g1,6177:32583029,9998317 -g1,6177:6630773,9998317 -g1,6177:6630773,9998317 -g1,6177:32583029,9998317 -g1,6177:32583029,9998317 -) -h1,6177:6630773,10194925:0,0,0 -(1,6181:6630773,11516560:25952256,513147,134348 -h1,6180:6630773,11516560:983040,0,0 -k1,6180:8696066,11516560:264364 -k1,6180:10064713,11516560:264365 -k1,6180:11076843,11516560:264364 -k1,6180:12781034,11516560:264365 -k1,6180:15074393,11516560:264364 -k1,6180:16357843,11516560:264365 -k1,6180:19808567,11516560:264364 -k1,6180:24009679,11516560:264364 -k1,6180:27249379,11516560:264365 -(1,6180:27249379,11516560:0,459977,115847 -r1,6240:27959357,11516560:709978,575824,115847 -k1,6180:27249379,11516560:-709978 -) -(1,6180:27249379,11516560:709978,459977,115847 -k1,6180:27249379,11516560:3277 -h1,6180:27956080,11516560:0,411205,112570 -) -k1,6180:28223721,11516560:264364 -k1,6180:29019583,11516560:264365 -k1,6180:32117068,11516560:264364 -k1,6180:32583029,11516560:0 -) -(1,6181:6630773,12358048:25952256,513147,134348 -k1,6180:7933172,12358048:283314 -k1,6180:11248838,12358048:283315 -k1,6180:13873098,12358048:283314 -(1,6180:13873098,12358048:0,414482,115847 -r1,6240:15286499,12358048:1413401,530329,115847 -k1,6180:13873098,12358048:-1413401 -) -(1,6180:13873098,12358048:1413401,414482,115847 -k1,6180:13873098,12358048:3277 -h1,6180:15283222,12358048:0,411205,112570 -) -k1,6180:15569813,12358048:283314 -k1,6180:17044572,12358048:283314 -k1,6180:18612393,12358048:283315 -k1,6180:21871042,12358048:283314 -(1,6180:21871042,12358048:0,452978,115847 -r1,6240:23284443,12358048:1413401,568825,115847 -k1,6180:21871042,12358048:-1413401 -) -(1,6180:21871042,12358048:1413401,452978,115847 -k1,6180:21871042,12358048:3277 -h1,6180:23281166,12358048:0,411205,112570 -) -k1,6180:23567757,12358048:283314 -k1,6180:24382568,12358048:283314 -k1,6180:27499004,12358048:283315 -k1,6180:28248279,12358048:283314 -k1,6180:29550678,12358048:283314 -k1,6180:32583029,12358048:0 -) -(1,6181:6630773,13199536:25952256,513147,126483 -k1,6180:9149166,13199536:177447 -(1,6180:9149166,13199536:0,414482,115847 -r1,6240:10914279,13199536:1765113,530329,115847 -k1,6180:9149166,13199536:-1765113 -) -(1,6180:9149166,13199536:1765113,414482,115847 -k1,6180:9149166,13199536:3277 -h1,6180:10911002,13199536:0,411205,112570 -) -k1,6180:11265397,13199536:177448 -k1,6180:14984410,13199536:177447 -k1,6180:16675083,13199536:177447 -k1,6180:17871615,13199536:177447 -k1,6180:22208633,13199536:177448 -k1,6180:25219201,13199536:177447 -(1,6180:25219201,13199536:0,459977,115847 -r1,6240:25929179,13199536:709978,575824,115847 -k1,6180:25219201,13199536:-709978 -) -(1,6180:25219201,13199536:709978,459977,115847 -k1,6180:25219201,13199536:3277 -h1,6180:25925902,13199536:0,411205,112570 -) -k1,6180:26106626,13199536:177447 -k1,6180:27475519,13199536:177448 -(1,6180:27475519,13199536:0,452978,115847 -r1,6240:28888920,13199536:1413401,568825,115847 -k1,6180:27475519,13199536:-1413401 -) -(1,6180:27475519,13199536:1413401,452978,115847 -k1,6180:27475519,13199536:3277 -h1,6180:28885643,13199536:0,411205,112570 -) -k1,6180:29066367,13199536:177447 -k1,6180:32583029,13199536:0 -) -(1,6181:6630773,14041024:25952256,513147,126483 -g1,6180:7821562,14041024 -g1,6180:10150056,14041024 -g1,6180:13356077,14041024 -g1,6180:18128408,14041024 -g1,6180:18986929,14041024 -g1,6180:20205243,14041024 -g1,6180:22084815,14041024 -g1,6180:25062771,14041024 -g1,6180:26023528,14041024 -g1,6180:27241842,14041024 -k1,6181:32583029,14041024:2135166 -g1,6181:32583029,14041024 -) -v1,6183:6630773,15362659:0,393216,0 -(1,6184:6630773,17630190:25952256,2660747,616038 -g1,6184:6630773,17630190 -(1,6184:6630773,17630190:25952256,2660747,616038 -(1,6184:6630773,18246228:25952256,3276785,0 -[1,6184:6630773,18246228:25952256,3276785,0 -(1,6184:6630773,18220014:25952256,3224357,0 -r1,6240:6656987,18220014:26214,3224357,0 -[1,6184:6656987,18220014:25899828,3224357,0 -(1,6184:6656987,17630190:25899828,2044709,0 -[1,6184:7246811,17630190:24720180,2044709,0 -(1,6184:7246811,16672855:24720180,1087374,134348 -k1,6183:8645013,16672855:188499 -k1,6183:10131124,16672855:188498 -k1,6183:11713574,16672855:188499 -k1,6183:12921158,16672855:188499 -k1,6183:14605843,16672855:188498 -k1,6183:15410380,16672855:188499 -k1,6183:16617964,16672855:188499 -k1,6183:18777131,16672855:188499 -k1,6183:20820953,16672855:188498 -k1,6183:21770980,16672855:188499 -k1,6183:24956440,16672855:188499 -k1,6183:27907281,16672855:188498 -k1,6183:30715909,16672855:188499 -k1,6184:31966991,16672855:0 -) -(1,6184:7246811,17514343:24720180,426639,115847 -g1,6183:8716128,17514343 -g1,6183:9566785,17514343 -(1,6183:9566785,17514343:0,414482,115847 -r1,6240:9925051,17514343:358266,530329,115847 -k1,6183:9566785,17514343:-358266 -) -(1,6183:9566785,17514343:358266,414482,115847 -k1,6183:9566785,17514343:3277 -h1,6183:9921774,17514343:0,411205,112570 -) -k1,6184:31966991,17514343:21868270 -g1,6184:31966991,17514343 -) -] -) -] -r1,6240:32583029,18220014:26214,3224357,0 -) -] -) -) -g1,6184:32583029,17630190 -) -h1,6184:6630773,18246228:0,0,0 -v1,6189:6630773,19567863:0,393216,0 -(1,6236:6630773,41742593:25952256,22567946,616038 -g1,6236:6630773,41742593 -(1,6236:6630773,41742593:25952256,22567946,616038 -(1,6236:6630773,42358631:25952256,23183984,0 -[1,6236:6630773,42358631:25952256,23183984,0 -(1,6236:6630773,42332417:25952256,23131556,0 -r1,6240:6656987,42332417:26214,23131556,0 -[1,6236:6656987,42332417:25899828,23131556,0 -(1,6236:6656987,41742593:25899828,21951908,0 -[1,6236:7246811,41742593:24720180,21951908,0 -(1,6190:7246811,20952570:24720180,1161885,196608 -(1,6189:7246811,20952570:0,1161885,196608 -r1,6240:8794447,20952570:1547636,1358493,196608 -k1,6189:7246811,20952570:-1547636 -) -(1,6189:7246811,20952570:1547636,1161885,196608 -) -g1,6189:8993676,20952570 -g1,6189:10090748,20952570 -g1,6189:11460450,20952570 -g1,6189:12858333,20952570 -g1,6189:16316667,20952570 -g1,6189:17534981,20952570 -g1,6189:19320181,20952570 -g1,6189:21341966,20952570 -g1,6189:25595252,20952570 -k1,6190:31966991,20952570:4545906 -g1,6190:31966991,20952570 -) -v1,6192:7246811,22143036:0,393216,0 -(1,6201:7246811,24506473:24720180,2756653,196608 -g1,6201:7246811,24506473 -g1,6201:7246811,24506473 -g1,6201:7050203,24506473 -(1,6201:7050203,24506473:0,2756653,196608 -r1,6240:32163599,24506473:25113396,2953261,196608 -k1,6201:7050203,24506473:-25113396 -) -(1,6201:7050203,24506473:25113396,2756653,196608 -[1,6201:7246811,24506473:24720180,2560045,0 -(1,6194:7246811,22334925:24720180,388497,0 -(1,6193:7246811,22334925:0,0,0 -g1,6193:7246811,22334925 -g1,6193:7246811,22334925 -g1,6193:6919131,22334925 -(1,6193:6919131,22334925:0,0,0 -) -g1,6193:7246811,22334925 -) -g1,6194:7879103,22334925 -k1,6194:7879103,22334925:0 -h1,6194:8195249,22334925:0,0,0 -k1,6194:31966991,22334925:23771742 -g1,6194:31966991,22334925 -) -(1,6195:7246811,23001103:24720180,388497,4718 -h1,6195:7246811,23001103:0,0,0 -g1,6195:7879103,23001103 -g1,6195:8827541,23001103 -h1,6195:9143687,23001103:0,0,0 -k1,6195:31966991,23001103:22823304 -g1,6195:31966991,23001103 -) -(1,6196:7246811,23667281:24720180,410518,107478 -h1,6196:7246811,23667281:0,0,0 -g1,6196:8195248,23667281 -g1,6196:9143685,23667281 -g1,6196:9775977,23667281 -g1,6196:11356706,23667281 -g1,6196:14834310,23667281 -g1,6196:15782747,23667281 -g1,6196:19260350,23667281 -g1,6196:20841079,23667281 -g1,6196:24318683,23667281 -g1,6196:25267120,23667281 -g1,6196:26531703,23667281 -h1,6196:29693160,23667281:0,0,0 -k1,6196:31966991,23667281:2273831 -g1,6196:31966991,23667281 -) -(1,6200:7246811,24398995:24720180,404226,107478 -(1,6198:7246811,24398995:0,0,0 -g1,6198:7246811,24398995 -g1,6198:7246811,24398995 -g1,6198:6919131,24398995 -(1,6198:6919131,24398995:0,0,0 -) -g1,6198:7246811,24398995 -) -g1,6200:8195248,24398995 -g1,6200:9459831,24398995 -g1,6200:11040561,24398995 -g1,6200:11988998,24398995 -g1,6200:13253581,24398995 -h1,6200:16098892,24398995:0,0,0 -k1,6200:31966991,24398995:15868099 -g1,6200:31966991,24398995 -) -] -) -g1,6201:31966991,24506473 -g1,6201:7246811,24506473 -g1,6201:7246811,24506473 -g1,6201:31966991,24506473 -g1,6201:31966991,24506473 -) -h1,6201:7246811,24703081:0,0,0 -(1,6205:7246811,26068857:24720180,505283,134348 -h1,6204:7246811,26068857:983040,0,0 -k1,6204:9852999,26068857:240994 -k1,6204:11586903,26068857:240994 -k1,6204:12846981,26068857:240993 -k1,6204:16274335,26068857:240994 -k1,6204:18383760,26068857:240994 -k1,6204:19898119,26068857:240994 -k1,6204:23200300,26068857:240994 -k1,6204:25046271,26068857:240994 -k1,6204:27417839,26068857:240993 -k1,6204:28429536,26068857:240994 -k1,6204:30277473,26068857:240994 -k1,6204:31966991,26068857:0 -) -(1,6205:7246811,26910345:24720180,505283,7863 -g1,6204:8465125,26910345 -g1,6204:9821064,26910345 -g1,6204:11875617,26910345 -g1,6204:13567756,26910345 -k1,6205:31966991,26910345:17005940 -g1,6205:31966991,26910345 -) -v1,6207:7246811,28100811:0,393216,0 -(1,6213:7246811,29748263:24720180,2040668,196608 -g1,6213:7246811,29748263 -g1,6213:7246811,29748263 -g1,6213:7050203,29748263 -(1,6213:7050203,29748263:0,2040668,196608 -r1,6240:32163599,29748263:25113396,2237276,196608 -k1,6213:7050203,29748263:-25113396 -) -(1,6213:7050203,29748263:25113396,2040668,196608 -[1,6213:7246811,29748263:24720180,1844060,0 -(1,6209:7246811,28308429:24720180,404226,76021 -(1,6208:7246811,28308429:0,0,0 -g1,6208:7246811,28308429 -g1,6208:7246811,28308429 -g1,6208:6919131,28308429 -(1,6208:6919131,28308429:0,0,0 -) -g1,6208:7246811,28308429 -) -g1,6209:7879103,28308429 -g1,6209:8511395,28308429 -g1,6209:10092124,28308429 -g1,6209:13253581,28308429 -k1,6209:13253581,28308429:0 -h1,6209:14834309,28308429:0,0,0 -k1,6209:31966991,28308429:17132682 -g1,6209:31966991,28308429 -) -(1,6210:7246811,28974607:24720180,410518,107478 -h1,6210:7246811,28974607:0,0,0 -g1,6210:8195248,28974607 -g1,6210:9143685,28974607 -g1,6210:9775977,28974607 -g1,6210:11356706,28974607 -g1,6210:14834310,28974607 -g1,6210:15782747,28974607 -h1,6210:18944204,28974607:0,0,0 -k1,6210:31966991,28974607:13022787 -g1,6210:31966991,28974607 -) -(1,6211:7246811,29640785:24720180,404226,107478 -h1,6211:7246811,29640785:0,0,0 -g1,6211:8827540,29640785 -g1,6211:12305144,29640785 -g1,6211:13253581,29640785 -g1,6211:14518164,29640785 -h1,6211:17679621,29640785:0,0,0 -k1,6211:31966991,29640785:14287370 -g1,6211:31966991,29640785 -) -] -) -g1,6213:31966991,29748263 -g1,6213:7246811,29748263 -g1,6213:7246811,29748263 -g1,6213:31966991,29748263 -g1,6213:31966991,29748263 -) -h1,6213:7246811,29944871:0,0,0 -(1,6217:7246811,31310647:24720180,505283,126483 -h1,6216:7246811,31310647:983040,0,0 -k1,6216:9967429,31310647:316757 -k1,6216:11099455,31310647:316758 -k1,6216:12435297,31310647:316757 -k1,6216:16806111,31310647:316757 -k1,6216:18291375,31310647:316757 -k1,6216:20194104,31310647:316758 -k1,6216:22274435,31310647:316757 -k1,6216:24289230,31310647:316757 -k1,6216:25474339,31310647:316757 -k1,6216:26988440,31310647:316758 -k1,6216:28908208,31310647:316757 -k1,6216:31280829,31310647:316757 -k1,6216:31966991,31310647:0 -) -(1,6217:7246811,32152135:24720180,505283,7863 -g1,6216:9521565,32152135 -k1,6217:31966991,32152135:20403324 -g1,6217:31966991,32152135 -) -v1,6219:7246811,33342601:0,393216,0 -(1,6232:7246811,38370750:24720180,5421365,196608 -g1,6232:7246811,38370750 -g1,6232:7246811,38370750 -g1,6232:7050203,38370750 -(1,6232:7050203,38370750:0,5421365,196608 -r1,6240:32163599,38370750:25113396,5617973,196608 -k1,6232:7050203,38370750:-25113396 -) -(1,6232:7050203,38370750:25113396,5421365,196608 -[1,6232:7246811,38370750:24720180,5224757,0 -(1,6221:7246811,33534490:24720180,388497,0 -(1,6220:7246811,33534490:0,0,0 -g1,6220:7246811,33534490 -g1,6220:7246811,33534490 -g1,6220:6919131,33534490 -(1,6220:6919131,33534490:0,0,0 -) -g1,6220:7246811,33534490 -) -g1,6221:7879103,33534490 -k1,6221:7879103,33534490:0 -h1,6221:8195249,33534490:0,0,0 -k1,6221:31966991,33534490:23771742 -g1,6221:31966991,33534490 -) -(1,6222:7246811,34200668:24720180,388497,4718 -h1,6222:7246811,34200668:0,0,0 -g1,6222:7879103,34200668 -g1,6222:8827541,34200668 -h1,6222:9143687,34200668:0,0,0 -k1,6222:31966991,34200668:22823304 -g1,6222:31966991,34200668 -) -(1,6223:7246811,34866846:24720180,410518,76021 -h1,6223:7246811,34866846:0,0,0 -g1,6223:8195248,34866846 -g1,6223:9143685,34866846 -g1,6223:9775977,34866846 -g1,6223:11356706,34866846 -h1,6223:11672852,34866846:0,0,0 -k1,6223:31966992,34866846:20294140 -g1,6223:31966992,34866846 -) -(1,6224:7246811,35533024:24720180,404226,107478 -h1,6224:7246811,35533024:0,0,0 -g1,6224:7562957,35533024 -g1,6224:7879103,35533024 -g1,6224:8195249,35533024 -g1,6224:8511395,35533024 -g1,6224:11988999,35533024 -g1,6224:12937436,35533024 -h1,6224:16098893,35533024:0,0,0 -k1,6224:31966991,35533024:15868098 -g1,6224:31966991,35533024 -) -(1,6225:7246811,36199202:24720180,404226,76021 -h1,6225:7246811,36199202:0,0,0 -g1,6225:7562957,36199202 -g1,6225:7879103,36199202 -g1,6225:8511395,36199202 -g1,6225:10092124,36199202 -h1,6225:10408270,36199202:0,0,0 -k1,6225:31966990,36199202:21558720 -g1,6225:31966990,36199202 -) -(1,6226:7246811,36865380:24720180,404226,107478 -h1,6226:7246811,36865380:0,0,0 -g1,6226:7562957,36865380 -g1,6226:7879103,36865380 -g1,6226:8195249,36865380 -g1,6226:8511395,36865380 -g1,6226:11988999,36865380 -g1,6226:12937436,36865380 -g1,6226:14202019,36865380 -h1,6226:17363476,36865380:0,0,0 -k1,6226:31966991,36865380:14603515 -g1,6226:31966991,36865380 -) -(1,6227:7246811,37531558:24720180,404226,76021 -h1,6227:7246811,37531558:0,0,0 -g1,6227:7562957,37531558 -g1,6227:7879103,37531558 -h1,6227:8195249,37531558:0,0,0 -k1,6227:31966991,37531558:23771742 -g1,6227:31966991,37531558 -) -(1,6231:7246811,38263272:24720180,404226,107478 -(1,6229:7246811,38263272:0,0,0 -g1,6229:7246811,38263272 -g1,6229:7246811,38263272 -g1,6229:6919131,38263272 -(1,6229:6919131,38263272:0,0,0 -) -g1,6229:7246811,38263272 -) -g1,6231:8195248,38263272 -g1,6231:9459831,38263272 -g1,6231:11040561,38263272 -g1,6231:11988998,38263272 -g1,6231:13253581,38263272 -h1,6231:16098892,38263272:0,0,0 -k1,6231:31966991,38263272:15868099 -g1,6231:31966991,38263272 -) -] -) -g1,6232:31966991,38370750 -g1,6232:7246811,38370750 -g1,6232:7246811,38370750 -g1,6232:31966991,38370750 -g1,6232:31966991,38370750 -) -h1,6232:7246811,38567358:0,0,0 -(1,6236:7246811,39933134:24720180,513147,134348 -h1,6235:7246811,39933134:983040,0,0 -k1,6235:9050198,39933134:192512 -k1,6235:10261795,39933134:192512 -k1,6235:13115724,39933134:192512 -k1,6235:15337231,39933134:192512 -k1,6235:16398095,39933134:192512 -k1,6235:19384407,39933134:192512 -k1,6235:19932779,39933134:192512 -k1,6235:21998310,39933134:192512 -k1,6235:25377182,39933134:192512 -k1,6235:28204897,39933134:192512 -k1,6235:29849031,39933134:192512 -k1,6235:31307699,39933134:192512 -k1,6235:31966991,39933134:0 -) -(1,6236:7246811,40774622:24720180,505283,126483 -k1,6235:9040991,40774622:191169 -k1,6235:11461694,40774622:191168 -k1,6235:12725032,40774622:191169 -k1,6235:13602362,40774622:191168 -k1,6235:15490258,40774622:191169 -k1,6235:17737291,40774622:191169 -k1,6235:19857839,40774622:191168 -k1,6235:23462778,40774622:191169 -k1,6235:27344278,40774622:191168 -k1,6235:30206694,40774622:191169 -k1,6236:31966991,40774622:0 -) -(1,6236:7246811,41616110:24720180,505283,126483 -g1,6235:9415397,41616110 -g1,6235:11383443,41616110 -g1,6235:13057887,41616110 -g1,6235:14767066,41616110 -g1,6235:17760095,41616110 -g1,6235:20594527,41616110 -g1,6235:22245378,41616110 -k1,6236:31966991,41616110:8281787 -g1,6236:31966991,41616110 -) -] -) -] -r1,6240:32583029,42332417:26214,23131556,0 -) -] -) -) -g1,6236:32583029,41742593 -) -h1,6236:6630773,42358631:0,0,0 -v1,6239:6630773,43680266:0,393216,0 -(1,6240:6630773,45116945:25952256,1829895,589824 -g1,6240:6630773,45116945 -(1,6240:6630773,45116945:25952256,1829895,589824 -(1,6240:6630773,45706769:25952256,2419719,0 -[1,6240:6630773,45706769:25952256,2419719,0 -(1,6240:6630773,45706769:25952256,2393505,0 -r1,6240:6656987,45706769:26214,2393505,0 -[1,6240:6656987,45706769:25899828,2393505,0 -(1,6240:6656987,45116945:25899828,1213857,0 -[1,6240:7246811,45116945:24720180,1213857,0 -(1,6240:7246811,44990462:24720180,1087374,126483 -k1,6239:8591089,44990462:134575 -k1,6239:10023277,44990462:134575 -k1,6239:11551802,44990462:134574 -k1,6239:12705462,44990462:134575 -k1,6239:13932522,44990462:134575 -k1,6239:14726389,44990462:134575 -k1,6239:18454303,44990462:134575 -k1,6239:21838153,44990462:134575 -k1,6239:23366678,44990462:134574 -k1,6239:24967949,44990462:134575 -k1,6239:27227201,44990462:134575 -k1,6239:28553221,44990462:134575 -k1,6239:31966991,44990462:0 -) -] -) -] -r1,6240:32583029,45706769:26214,2393505,0 -) -] -) -) -g1,6240:32583029,45116945 -) -] -(1,6240:32583029,45706769:0,0,0 -g1,6240:32583029,45706769 -) -) -] -(1,6240:6630773,47279633:25952256,0,0 -h1,6240:6630773,47279633:25952256,0,0 -) -] -(1,6240:4262630,4025873:0,0,0 -[1,6240:-473656,4025873:0,0,0 -(1,6240:-473656,-710413:0,0,0 -(1,6240:-473656,-710413:0,0,0 -g1,6240:-473656,-710413 -) -g1,6240:-473656,-710413 -) -] -) -] -!22058 -}119 -Input:879:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:880:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:881:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:882:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:883:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:884:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:885:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:886:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:887:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:888:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:889:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:890:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:891:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:892:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:893:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:894:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:895:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1559 -{120 -[1,6299:4262630,47279633:28320399,43253760,0 -(1,6299:4262630,4025873:0,0,0 -[1,6299:-473656,4025873:0,0,0 -(1,6299:-473656,-710413:0,0,0 -(1,6299:-473656,-644877:0,0,0 -k1,6299:-473656,-644877:-65536 -) -(1,6299:-473656,4736287:0,0,0 -k1,6299:-473656,4736287:5209943 -) -g1,6299:-473656,-710413 -) -] -) -[1,6299:6630773,47279633:25952256,43253760,0 -[1,6299:6630773,4812305:25952256,786432,0 -(1,6299:6630773,4812305:25952256,513147,126483 -(1,6299:6630773,4812305:25952256,513147,126483 -g1,6299:3078558,4812305 -[1,6299:3078558,4812305:0,0,0 -(1,6299:3078558,2439708:0,1703936,0 -k1,6299:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,6299:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,6299:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,6299:3078558,4812305:0,0,0 -(1,6299:3078558,2439708:0,1703936,0 -g1,6299:29030814,2439708 -g1,6299:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,6299:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,6299:37855564,2439708:1179648,16384,0 -) -) -k1,6299:3078556,2439708:-34777008 -) -] -[1,6299:3078558,4812305:0,0,0 -(1,6299:3078558,49800853:0,16384,2228224 -k1,6299:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,6299:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,6299:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,6299:3078558,4812305:0,0,0 -(1,6299:3078558,49800853:0,16384,2228224 -g1,6299:29030814,49800853 -g1,6299:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,6299:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,6299:37855564,49800853:1179648,16384,0 -) -) -k1,6299:3078556,49800853:-34777008 -) -] -g1,6299:6630773,4812305 -g1,6299:6630773,4812305 -g1,6299:9175536,4812305 -g1,6299:9990803,4812305 -g1,6299:13137841,4812305 -g1,6299:14654344,4812305 -k1,6299:31387652,4812305:16733308 -) -) -] -[1,6299:6630773,45706769:25952256,40108032,0 -(1,6299:6630773,45706769:25952256,40108032,0 -(1,6299:6630773,45706769:0,0,0 -g1,6299:6630773,45706769 -) -[1,6299:6630773,45706769:25952256,40108032,0 -v1,6240:6630773,6254097:0,393216,0 -(1,6240:6630773,7923959:25952256,2063078,616038 -g1,6240:6630773,7923959 -(1,6240:6630773,7923959:25952256,2063078,616038 -(1,6240:6630773,8539997:25952256,2679116,0 -[1,6240:6630773,8539997:25952256,2679116,0 -(1,6240:6630773,8513783:25952256,2652902,0 -r1,6299:6656987,8513783:26214,2652902,0 -[1,6240:6656987,8513783:25899828,2652902,0 -(1,6240:6656987,7923959:25899828,1473254,0 -[1,6240:7246811,7923959:24720180,1473254,0 -(1,6240:7246811,6955988:24720180,505283,134348 -k1,6239:11135766,6955988:198623 -k1,6239:12525835,6955988:198624 -k1,6239:14010274,6955988:198623 -k1,6239:15889241,6955988:198624 -k1,6239:17418245,6955988:198623 -k1,6239:18268297,6955988:198624 -k1,6239:21178800,6955988:198623 -(1,6239:21178800,6955988:0,459977,115847 -r1,6299:21888778,6955988:709978,575824,115847 -k1,6239:21178800,6955988:-709978 -) -(1,6239:21178800,6955988:709978,459977,115847 -k1,6239:21178800,6955988:3277 -h1,6239:21885501,6955988:0,411205,112570 -) -k1,6239:22087402,6955988:198624 -k1,6239:23477470,6955988:198623 -(1,6239:23477470,6955988:0,452978,115847 -r1,6299:24890871,6955988:1413401,568825,115847 -k1,6239:23477470,6955988:-1413401 -) -(1,6239:23477470,6955988:1413401,452978,115847 -k1,6239:23477470,6955988:3277 -h1,6239:24887594,6955988:0,411205,112570 -) -k1,6239:25089495,6955988:198624 -k1,6239:25939546,6955988:198623 -k1,6239:27958760,6955988:198624 -k1,6239:30316794,6955988:198623 -k1,6239:31966991,6955988:0 -) -(1,6240:7246811,7797476:24720180,505283,126483 -g1,6239:8888487,7797476 -g1,6239:10260155,7797476 -k1,6240:31966991,7797476:19120130 -g1,6240:31966991,7797476 -) -] -) -] -r1,6299:32583029,8513783:26214,2652902,0 -) -] -) -) -g1,6240:32583029,7923959 -) -h1,6240:6630773,8539997:0,0,0 -(1,6243:6630773,9851841:25952256,505283,126483 -h1,6242:6630773,9851841:983040,0,0 -k1,6242:8473192,9851841:231544 -k1,6242:9293248,9851841:231543 -k1,6242:10543877,9851841:231544 -k1,6242:12455764,9851841:231544 -k1,6242:15466034,9851841:231543 -k1,6242:16459106,9851841:231544 -k1,6242:17822457,9851841:231544 -k1,6242:21467771,9851841:231544 -k1,6242:24885674,9851841:231543 -k1,6242:25648715,9851841:231544 -k1,6242:26899344,9851841:231544 -k1,6242:28811230,9851841:231543 -k1,6242:31821501,9851841:231544 -k1,6242:32583029,9851841:0 -) -(1,6243:6630773,10693329:25952256,505283,126483 -k1,6242:7838656,10693329:188798 -k1,6242:9175645,10693329:188798 -k1,6242:11489121,10693329:188799 -k1,6242:14864279,10693329:188798 -k1,6242:17886198,10693329:188798 -k1,6242:20084986,10693329:188799 -k1,6242:21292869,10693329:188798 -k1,6242:24895437,10693329:188798 -k1,6242:26414616,10693329:188798 -k1,6242:27984259,10693329:188799 -k1,6242:30241373,10693329:188798 -k1,6242:31714677,10693329:188798 -k1,6242:32583029,10693329:0 -) -(1,6243:6630773,11534817:25952256,505283,134348 -k1,6242:7918773,11534817:183718 -k1,6242:10109204,11534817:183719 -k1,6242:11312007,11534817:183718 -k1,6242:13176069,11534817:183719 -k1,6242:16138514,11534817:183718 -k1,6242:17083760,11534817:183718 -k1,6242:18038182,11534817:183719 -(1,6242:18038182,11534817:0,459977,115847 -r1,6299:18748160,11534817:709978,575824,115847 -k1,6242:18038182,11534817:-709978 -) -(1,6242:18038182,11534817:709978,459977,115847 -k1,6242:18038182,11534817:3277 -h1,6242:18744883,11534817:0,411205,112570 -) -k1,6242:18931878,11534817:183718 -k1,6242:20307042,11534817:183719 -(1,6242:20307042,11534817:0,452978,115847 -r1,6299:21720443,11534817:1413401,568825,115847 -k1,6242:20307042,11534817:-1413401 -) -(1,6242:20307042,11534817:1413401,452978,115847 -k1,6242:20307042,11534817:3277 -h1,6242:21717166,11534817:0,411205,112570 -) -k1,6242:21904161,11534817:183718 -k1,6242:25274239,11534817:183718 -k1,6242:26109386,11534817:183719 -k1,6242:26648964,11534817:183718 -k1,6242:29517693,11534817:183719 -k1,6242:31082255,11534817:183718 -k1,6242:32583029,11534817:0 -) -(1,6243:6630773,12376305:25952256,513147,126483 -k1,6242:7336989,12376305:174719 -k1,6242:8724779,12376305:174719 -k1,6242:12204478,12376305:174718 -k1,6242:14066094,12376305:174719 -k1,6242:15312982,12376305:174719 -k1,6242:19373331,12376305:174719 -k1,6242:20652332,12376305:174719 -k1,6242:22669922,12376305:174718 -k1,6242:23460679,12376305:174719 -k1,6242:30247981,12376305:174719 -k1,6243:32583029,12376305:0 -k1,6243:32583029,12376305:0 -) -v1,6245:6630773,13512839:0,393216,0 -(1,6255:6630773,16542454:25952256,3422831,196608 -g1,6255:6630773,16542454 -g1,6255:6630773,16542454 -g1,6255:6434165,16542454 -(1,6255:6434165,16542454:0,3422831,196608 -r1,6299:32779637,16542454:26345472,3619439,196608 -k1,6255:6434165,16542454:-26345472 -) -(1,6255:6434165,16542454:26345472,3422831,196608 -[1,6255:6630773,16542454:25952256,3226223,0 -(1,6247:6630773,13704728:25952256,388497,4718 -(1,6246:6630773,13704728:0,0,0 -g1,6246:6630773,13704728 -g1,6246:6630773,13704728 -g1,6246:6303093,13704728 -(1,6246:6303093,13704728:0,0,0 -) -g1,6246:6630773,13704728 -) -g1,6247:7263065,13704728 -g1,6247:8211503,13704728 -h1,6247:8527649,13704728:0,0,0 -k1,6247:32583029,13704728:24055380 -g1,6247:32583029,13704728 -) -(1,6248:6630773,14370906:25952256,293601,107478 -h1,6248:6630773,14370906:0,0,0 -g1,6248:10108376,14370906 -k1,6248:10108376,14370906:0 -h1,6248:10740668,14370906:0,0,0 -k1,6248:32583028,14370906:21842360 -g1,6248:32583028,14370906 -) -(1,6249:6630773,15037084:25952256,410518,107478 -h1,6249:6630773,15037084:0,0,0 -g1,6249:6946919,15037084 -g1,6249:7263065,15037084 -g1,6249:8211502,15037084 -g1,6249:9159939,15037084 -g1,6249:9792231,15037084 -g1,6249:11372960,15037084 -g1,6249:12953690,15037084 -g1,6249:13902127,15037084 -g1,6249:17063584,15037084 -g1,6249:18644313,15037084 -g1,6249:20225043,15037084 -g1,6249:21173480,15037084 -g1,6249:22438063,15037084 -h1,6249:25283374,15037084:0,0,0 -k1,6249:32583029,15037084:7299655 -g1,6249:32583029,15037084 -) -(1,6250:6630773,15703262:25952256,404226,107478 -h1,6250:6630773,15703262:0,0,0 -k1,6250:6630773,15703262:0 -h1,6250:12005249,15703262:0,0,0 -k1,6250:32583029,15703262:20577780 -g1,6250:32583029,15703262 -) -(1,6254:6630773,16434976:25952256,404226,107478 -(1,6252:6630773,16434976:0,0,0 -g1,6252:6630773,16434976 -g1,6252:6630773,16434976 -g1,6252:6303093,16434976 -(1,6252:6303093,16434976:0,0,0 -) -g1,6252:6630773,16434976 -) -g1,6254:7579210,16434976 -g1,6254:8843793,16434976 -g1,6254:10424523,16434976 -g1,6254:11372960,16434976 -g1,6254:12637543,16434976 -h1,6254:15482854,16434976:0,0,0 -k1,6254:32583030,16434976:17100176 -g1,6254:32583030,16434976 -) -] -) -g1,6255:32583029,16542454 -g1,6255:6630773,16542454 -g1,6255:6630773,16542454 -g1,6255:32583029,16542454 -g1,6255:32583029,16542454 -) -h1,6255:6630773,16739062:0,0,0 -v1,6259:6630773,18521261:0,393216,0 -(1,6271:6630773,26272686:25952256,8144641,616038 -g1,6271:6630773,26272686 -(1,6271:6630773,26272686:25952256,8144641,616038 -(1,6271:6630773,26888724:25952256,8760679,0 -[1,6271:6630773,26888724:25952256,8760679,0 -(1,6271:6630773,26862510:25952256,8708251,0 -r1,6299:6656987,26862510:26214,8708251,0 -[1,6271:6656987,26862510:25899828,8708251,0 -(1,6271:6656987,26272686:25899828,7528603,0 -[1,6271:7246811,26272686:24720180,7528603,0 -(1,6261:7246811,19905968:24720180,1161885,196608 -(1,6259:7246811,19905968:0,1161885,196608 -r1,6299:8794447,19905968:1547636,1358493,196608 -k1,6259:7246811,19905968:-1547636 -) -(1,6259:7246811,19905968:1547636,1161885,196608 -) -k1,6259:9003901,19905968:209454 -k1,6259:9691111,19905968:209453 -k1,6259:10919650,19905968:209454 -k1,6259:14161454,19905968:209453 -k1,6259:17557268,19905968:209454 -k1,6259:20107668,19905968:209454 -k1,6259:20672981,19905968:209453 -k1,6259:22562778,19905968:209454 -k1,6259:23431524,19905968:209454 -k1,6259:23996837,19905968:209453 -k1,6259:25761460,19905968:209454 -k1,6259:27672883,19905968:209453 -k1,6259:29324784,19905968:209454 -(1,6259:29324784,19905968:0,452978,122846 -r1,6299:31793321,19905968:2468537,575824,122846 -k1,6259:29324784,19905968:-2468537 -) -(1,6259:29324784,19905968:2468537,452978,122846 -k1,6259:29324784,19905968:3277 -h1,6259:31790044,19905968:0,411205,112570 -) -k1,6261:31966991,19905968:0 -) -(1,6261:7246811,20681259:24720180,513147,134348 -k1,6259:7906576,20681259:244922 -k1,6259:9284005,20681259:244967 -k1,6259:12043589,20681259:244968 -k1,6259:12939985,20681259:244968 -k1,6259:15577671,20681259:244967 -k1,6259:16280736,20681259:244968 -k1,6259:17793170,20681259:244968 -k1,6259:18393997,20681259:244967 -k1,6259:20882262,20681259:244968 -k1,6259:22508073,20681259:244967 -k1,6259:23284538,20681259:244968 -k1,6259:26977355,20681259:244968 -k1,6259:28735548,20681259:244967 -k1,6259:31307699,20681259:244968 -k1,6259:31966991,20681259:0 -) -(1,6261:7246811,21347437:24720180,513147,126483 -k1,6259:7811964,21347437:209293 -k1,6259:11775160,21347437:209294 -k1,6259:12635881,21347437:209293 -k1,6259:14439011,21347437:209294 -k1,6259:15334466,21347437:209293 -k1,6259:16562844,21347437:209293 -k1,6259:20248823,21347437:209294 -k1,6259:22025737,21347437:209293 -(1,6259:22025737,21347437:0,452978,122846 -r1,6299:24494274,21347437:2468537,575824,122846 -k1,6259:22025737,21347437:-2468537 -) -(1,6259:22025737,21347437:2468537,452978,122846 -k1,6259:22025737,21347437:3277 -h1,6259:24490997,21347437:0,411205,112570 -) -k1,6259:24703567,21347437:209293 -k1,6259:26778671,21347437:209294 -(1,6259:26778671,21347437:0,414482,115847 -r1,6299:28192072,21347437:1413401,530329,115847 -k1,6259:26778671,21347437:-1413401 -) -(1,6259:26778671,21347437:1413401,414482,115847 -k1,6259:26778671,21347437:3277 -h1,6259:28188795,21347437:0,411205,112570 -) -k1,6259:28401365,21347437:209293 -k1,6259:29558310,21347437:209294 -k1,6259:30533719,21347437:209293 -k1,6261:31966991,21347437:0 -) -(1,6261:7246811,22013615:24720180,513147,134348 -k1,6259:8757907,22013615:170885 -k1,6259:10999730,22013615:170885 -k1,6259:12764451,22013615:170885 -k1,6259:14132023,22013615:170885 -k1,6259:15799095,22013615:170885 -k1,6259:17838411,22013615:170885 -k1,6259:21201556,22013615:170886 -k1,6259:21728301,22013615:170885 -k1,6259:23850848,22013615:170885 -k1,6259:27326714,22013615:170885 -k1,6259:29010825,22013615:170885 -k1,6259:31019340,22013615:170885 -k1,6259:31966991,22013615:0 -) -(1,6261:7246811,22679793:24720180,513147,134348 -g1,6259:10258190,22679793 -g1,6259:10923380,22679793 -g1,6259:12777393,22679793 -g1,6259:13508119,22679793 -g1,6259:17061481,22679793 -g1,6259:20044679,22679793 -g1,6259:20895336,22679793 -g1,6259:23563306,22679793 -k1,6261:31966991,22679793:8403685 -g1,6261:31966991,22679793 -) -v1,6261:7246811,23870259:0,393216,0 -(1,6269:7246811,25551790:24720180,2074747,196608 -g1,6269:7246811,25551790 -g1,6269:7246811,25551790 -g1,6269:7050203,25551790 -(1,6269:7050203,25551790:0,2074747,196608 -r1,6299:32163599,25551790:25113396,2271355,196608 -k1,6269:7050203,25551790:-25113396 -) -(1,6269:7050203,25551790:25113396,2074747,196608 -[1,6269:7246811,25551790:24720180,1878139,0 -(1,6263:7246811,24077877:24720180,404226,107478 -(1,6262:7246811,24077877:0,0,0 -g1,6262:7246811,24077877 -g1,6262:7246811,24077877 -g1,6262:6919131,24077877 -(1,6262:6919131,24077877:0,0,0 -) -g1,6262:7246811,24077877 -) -g1,6263:9775977,24077877 -g1,6263:10724415,24077877 -h1,6263:12305143,24077877:0,0,0 -k1,6263:31966991,24077877:19661848 -g1,6263:31966991,24077877 -) -(1,6264:7246811,24744055:24720180,410518,107478 -h1,6264:7246811,24744055:0,0,0 -g1,6264:8195248,24744055 -g1,6264:13885871,24744055 -k1,6264:13885871,24744055:0 -h1,6264:18311910,24744055:0,0,0 -k1,6264:31966991,24744055:13655081 -g1,6264:31966991,24744055 -) -(1,6268:7246811,25475769:24720180,404226,76021 -(1,6266:7246811,25475769:0,0,0 -g1,6266:7246811,25475769 -g1,6266:7246811,25475769 -g1,6266:6919131,25475769 -(1,6266:6919131,25475769:0,0,0 -) -g1,6266:7246811,25475769 -) -g1,6268:8195248,25475769 -g1,6268:9459831,25475769 -h1,6268:11040559,25475769:0,0,0 -k1,6268:31966991,25475769:20926432 -g1,6268:31966991,25475769 -) -] -) -g1,6269:31966991,25551790 -g1,6269:7246811,25551790 -g1,6269:7246811,25551790 -g1,6269:31966991,25551790 -g1,6269:31966991,25551790 -) -h1,6269:7246811,25748398:0,0,0 -] -) -] -r1,6299:32583029,26862510:26214,8708251,0 -) -] -) -) -g1,6271:32583029,26272686 -) -h1,6271:6630773,26888724:0,0,0 -v1,6274:6630773,28200568:0,393216,0 -(1,6296:6630773,43778887:25952256,15971535,616038 -g1,6296:6630773,43778887 -(1,6296:6630773,43778887:25952256,15971535,616038 -(1,6296:6630773,44394925:25952256,16587573,0 -[1,6296:6630773,44394925:25952256,16587573,0 -(1,6296:6630773,44368711:25952256,16535145,0 -r1,6299:6656987,44368711:26214,16535145,0 -[1,6296:6656987,44368711:25899828,16535145,0 -(1,6296:6656987,43778887:25899828,15355497,0 -[1,6296:7246811,43778887:24720180,15355497,0 -(1,6275:7246811,29707372:24720180,1283982,196608 -(1,6274:7246811,29707372:0,1283982,196608 -r1,6299:9812056,29707372:2565245,1480590,196608 -k1,6274:7246811,29707372:-2565245 -) -(1,6274:7246811,29707372:2565245,1283982,196608 -) -k1,6274:10031888,29707372:219832 -k1,6274:12060514,29707372:219832 -k1,6274:13299431,29707372:219832 -k1,6274:16995948,29707372:219832 -k1,6274:18801751,29707372:219832 -k1,6274:21656785,29707372:219831 -(1,6274:21656785,29707372:0,452978,115847 -r1,6299:24125322,29707372:2468537,568825,115847 -k1,6274:21656785,29707372:-2468537 -) -(1,6274:21656785,29707372:2468537,452978,115847 -k1,6274:21656785,29707372:3277 -h1,6274:24122045,29707372:0,411205,112570 -) -k1,6274:24345154,29707372:219832 -k1,6274:25756431,29707372:219832 -(1,6274:25756431,29707372:0,452978,122846 -r1,6299:28224968,29707372:2468537,575824,122846 -k1,6274:25756431,29707372:-2468537 -) -(1,6274:25756431,29707372:2468537,452978,122846 -k1,6274:25756431,29707372:3277 -h1,6274:28221691,29707372:0,411205,112570 -) -k1,6274:28444800,29707372:219832 -k1,6274:30848947,29707372:219832 -k1,6274:31966991,29707372:0 -) -(1,6275:7246811,30548860:24720180,513147,126483 -k1,6274:8899628,30548860:201195 -k1,6274:9760116,30548860:201196 -k1,6274:10980396,30548860:201195 -k1,6274:14698254,30548860:201196 -k1,6274:16941551,30548860:201195 -k1,6274:18334192,30548860:201196 -k1,6274:20845531,30548860:201195 -k1,6274:22065812,30548860:201196 -k1,6274:24425763,30548860:201195 -k1,6274:26481628,30548860:201196 -k1,6274:27492193,30548860:201195 -k1,6274:29023770,30548860:201196 -k1,6274:30611051,30548860:201195 -k1,6275:31966991,30548860:0 -) -(1,6275:7246811,31390348:24720180,513147,134348 -k1,6274:10194621,31390348:283771 -k1,6274:11469951,31390348:283770 -k1,6274:15517455,31390348:283771 -k1,6274:20050580,31390348:283771 -k1,6274:21353436,31390348:283771 -k1,6274:24823566,31390348:283770 -k1,6274:27742540,31390348:283771 -k1,6274:31966991,31390348:0 -) -(1,6275:7246811,32231836:24720180,513147,126483 -k1,6274:10330698,32231836:289431 -k1,6274:11306290,32231836:289430 -k1,6274:15797234,32231836:289431 -k1,6274:16702703,32231836:289431 -k1,6274:20398694,32231836:289430 -k1,6274:21879570,32231836:289431 -k1,6274:23404354,32231836:289430 -k1,6274:26488241,32231836:289431 -$1,6274:26695335,32231836 -$1,6274:27207827,32231836 -k1,6274:27704352,32231836:289431 -k1,6274:28679944,32231836:289430 -k1,6274:31350953,32231836:289431 -k1,6274:31966991,32231836:0 -) -(1,6275:7246811,33073324:24720180,505283,7863 -k1,6275:31966991,33073324:20453786 -g1,6275:31966991,33073324 -) -v1,6278:7246811,34263790:0,393216,0 -(1,6292:7246811,41240667:24720180,7370093,196608 -g1,6292:7246811,41240667 -g1,6292:7246811,41240667 -g1,6292:7050203,41240667 -(1,6292:7050203,41240667:0,7370093,196608 -r1,6299:32163599,41240667:25113396,7566701,196608 -k1,6292:7050203,41240667:-25113396 -) -(1,6292:7050203,41240667:25113396,7370093,196608 -[1,6292:7246811,41240667:24720180,7173485,0 -(1,6280:7246811,34477700:24720180,410518,101187 -(1,6279:7246811,34477700:0,0,0 -g1,6279:7246811,34477700 -g1,6279:7246811,34477700 -g1,6279:6919131,34477700 -(1,6279:6919131,34477700:0,0,0 -) -g1,6279:7246811,34477700 -) -k1,6280:7246811,34477700:0 -g1,6280:8195248,34477700 -g1,6280:9459832,34477700 -k1,6280:9459832,34477700:0 -h1,6280:13885872,34477700:0,0,0 -k1,6280:31966992,34477700:18081120 -g1,6280:31966992,34477700 -) -(1,6281:7246811,35143878:24720180,410518,101187 -h1,6281:7246811,35143878:0,0,0 -g1,6281:8195248,35143878 -g1,6281:9775978,35143878 -k1,6281:9775978,35143878:0 -h1,6281:14202018,35143878:0,0,0 -k1,6281:31966990,35143878:17764972 -g1,6281:31966990,35143878 -) -(1,6282:7246811,35810056:24720180,410518,101187 -h1,6282:7246811,35810056:0,0,0 -g1,6282:8195248,35810056 -g1,6282:10408269,35810056 -k1,6282:10408269,35810056:0 -h1,6282:14834309,35810056:0,0,0 -k1,6282:31966991,35810056:17132682 -g1,6282:31966991,35810056 -) -(1,6283:7246811,36476234:24720180,410518,101187 -h1,6283:7246811,36476234:0,0,0 -g1,6283:8195248,36476234 -g1,6283:11040560,36476234 -k1,6283:11040560,36476234:0 -h1,6283:15466600,36476234:0,0,0 -k1,6283:31966991,36476234:16500391 -g1,6283:31966991,36476234 -) -(1,6284:7246811,37142412:24720180,410518,101187 -h1,6284:7246811,37142412:0,0,0 -g1,6284:8195248,37142412 -g1,6284:11040560,37142412 -k1,6284:11040560,37142412:0 -h1,6284:15466600,37142412:0,0,0 -k1,6284:31966991,37142412:16500391 -g1,6284:31966991,37142412 -) -(1,6285:7246811,37808590:24720180,410518,101187 -h1,6285:7246811,37808590:0,0,0 -g1,6285:8195248,37808590 -g1,6285:11040560,37808590 -k1,6285:11040560,37808590:0 -h1,6285:15466600,37808590:0,0,0 -k1,6285:31966991,37808590:16500391 -g1,6285:31966991,37808590 -) -(1,6286:7246811,38474768:24720180,410518,101187 -h1,6286:7246811,38474768:0,0,0 -g1,6286:8195248,38474768 -g1,6286:11040560,38474768 -k1,6286:11040560,38474768:0 -h1,6286:15466600,38474768:0,0,0 -k1,6286:31966991,38474768:16500391 -g1,6286:31966991,38474768 -) -(1,6287:7246811,39140946:24720180,410518,107478 -h1,6287:7246811,39140946:0,0,0 -g1,6287:8195248,39140946 -g1,6287:14834308,39140946 -k1,6287:14834308,39140946:0 -h1,6287:19260348,39140946:0,0,0 -k1,6287:31966991,39140946:12706643 -g1,6287:31966991,39140946 -) -(1,6288:7246811,39807124:24720180,410518,107478 -h1,6288:7246811,39807124:0,0,0 -g1,6288:8195248,39807124 -g1,6288:17679620,39807124 -k1,6288:17679620,39807124:0 -h1,6288:22105660,39807124:0,0,0 -k1,6288:31966991,39807124:9861331 -g1,6288:31966991,39807124 -) -(1,6289:7246811,40473302:24720180,410518,107478 -h1,6289:7246811,40473302:0,0,0 -g1,6289:8195248,40473302 -g1,6289:13885871,40473302 -k1,6289:13885871,40473302:0 -h1,6289:18311911,40473302:0,0,0 -k1,6289:31966991,40473302:13655080 -g1,6289:31966991,40473302 -) -(1,6290:7246811,41139480:24720180,410518,101187 -h1,6290:7246811,41139480:0,0,0 -g1,6290:8195248,41139480 -g1,6290:10092123,41139480 -k1,6290:10092123,41139480:0 -h1,6290:14518163,41139480:0,0,0 -k1,6290:31966991,41139480:17448828 -g1,6290:31966991,41139480 -) -] -) -g1,6292:31966991,41240667 -g1,6292:7246811,41240667 -g1,6292:7246811,41240667 -g1,6292:31966991,41240667 -g1,6292:31966991,41240667 -) -h1,6292:7246811,41437275:0,0,0 -(1,6296:7246811,42803051:24720180,513147,134348 -h1,6295:7246811,42803051:983040,0,0 -k1,6295:9921008,42803051:139264 -k1,6295:10526233,42803051:139264 -k1,6295:11835970,42803051:139264 -k1,6295:13505500,42803051:139264 -k1,6295:14296192,42803051:139264 -k1,6295:16716764,42803051:139264 -k1,6295:18314859,42803051:139264 -k1,6295:23109145,42803051:139264 -k1,6295:23907701,42803051:139264 -k1,6295:25066050,42803051:139264 -k1,6295:26591400,42803051:139264 -k1,6295:30207349,42803051:139264 -k1,6295:31966991,42803051:0 -) -(1,6296:7246811,43644539:24720180,485622,134348 -g1,6295:8471023,43644539 -g1,6295:10948939,43644539 -h1,6295:11919527,43644539:0,0,0 -g1,6295:12118756,43644539 -g1,6295:13127355,43644539 -g1,6295:14824737,43644539 -h1,6295:15621655,43644539:0,0,0 -k1,6296:31966991,43644539:16171666 -g1,6296:31966991,43644539 -) -] -) -] -r1,6299:32583029,44368711:26214,16535145,0 -) -] -) -) -g1,6296:32583029,43778887 -) -h1,6296:6630773,44394925:0,0,0 -(1,6299:6630773,45706769:25952256,505283,115847 -h1,6298:6630773,45706769:983040,0,0 -k1,6298:8397640,45706769:155992 -k1,6298:11219636,45706769:155991 -k1,6298:12027056,45706769:155992 -(1,6298:12027056,45706769:0,459977,115847 -r1,6299:13792170,45706769:1765114,575824,115847 -k1,6298:12027056,45706769:-1765114 -) -(1,6298:12027056,45706769:1765114,459977,115847 -g1,6298:13085469,45706769 -h1,6298:13788893,45706769:0,411205,112570 -) -k1,6298:13948162,45706769:155992 -k1,6298:15295598,45706769:155991 -(1,6298:15295598,45706769:0,459977,115847 -r1,6299:19522695,45706769:4227097,575824,115847 -k1,6298:15295598,45706769:-4227097 -) -(1,6298:15295598,45706769:4227097,459977,115847 -g1,6298:16354011,45706769 -g1,6298:17409147,45706769 -g1,6298:18112571,45706769 -h1,6298:19519418,45706769:0,411205,112570 -) -k1,6298:19852357,45706769:155992 -k1,6298:21663133,45706769:155992 -k1,6298:22350621,45706769:155991 -k1,6298:23122651,45706769:155992 -k1,6298:23693443,45706769:155949 -k1,6298:24205295,45706769:155992 -(1,6298:24205295,45706769:0,452978,115847 -r1,6299:27025544,45706769:2820249,568825,115847 -k1,6298:24205295,45706769:-2820249 -) -(1,6298:24205295,45706769:2820249,452978,115847 -k1,6298:24205295,45706769:3277 -h1,6298:27022267,45706769:0,411205,112570 -) -k1,6298:27181535,45706769:155991 -k1,6298:30697558,45706769:155992 -k1,6298:32583029,45706769:0 -) -] -(1,6299:32583029,45706769:0,0,0 -g1,6299:32583029,45706769 -) -) -] -(1,6299:6630773,47279633:25952256,0,0 -h1,6299:6630773,47279633:25952256,0,0 -) -] -(1,6299:4262630,4025873:0,0,0 -[1,6299:-473656,4025873:0,0,0 -(1,6299:-473656,-710413:0,0,0 -(1,6299:-473656,-710413:0,0,0 -g1,6299:-473656,-710413 -) -g1,6299:-473656,-710413 -) -] -) -] -!24041 -}120 -Input:896:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:897:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:898:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:899:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:900:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:901:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:902:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:903:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:904:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:905:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:906:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:907:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:908:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:909:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1286 -{121 -[1,6344:4262630,47279633:28320399,43253760,0 -(1,6344:4262630,4025873:0,0,0 -[1,6344:-473656,4025873:0,0,0 -(1,6344:-473656,-710413:0,0,0 -(1,6344:-473656,-644877:0,0,0 -k1,6344:-473656,-644877:-65536 -) -(1,6344:-473656,4736287:0,0,0 -k1,6344:-473656,4736287:5209943 -) -g1,6344:-473656,-710413 -) -] -) -[1,6344:6630773,47279633:25952256,43253760,0 -[1,6344:6630773,4812305:25952256,786432,0 -(1,6344:6630773,4812305:25952256,505283,134348 -(1,6344:6630773,4812305:25952256,505283,134348 -g1,6344:3078558,4812305 -[1,6344:3078558,4812305:0,0,0 -(1,6344:3078558,2439708:0,1703936,0 -k1,6344:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,6344:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,6344:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,6344:3078558,4812305:0,0,0 -(1,6344:3078558,2439708:0,1703936,0 -g1,6344:29030814,2439708 -g1,6344:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,6344:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,6344:37855564,2439708:1179648,16384,0 -) -) -k1,6344:3078556,2439708:-34777008 -) -] -[1,6344:3078558,4812305:0,0,0 -(1,6344:3078558,49800853:0,16384,2228224 -k1,6344:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,6344:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,6344:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,6344:3078558,4812305:0,0,0 -(1,6344:3078558,49800853:0,16384,2228224 -g1,6344:29030814,49800853 -g1,6344:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,6344:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,6344:37855564,49800853:1179648,16384,0 -) -) -k1,6344:3078556,49800853:-34777008 -) -] -g1,6344:6630773,4812305 -k1,6344:18771974,4812305:10945824 -g1,6344:20158715,4812305 -g1,6344:20807521,4812305 -g1,6344:24121676,4812305 -g1,6344:28605649,4812305 -g1,6344:30015328,4812305 -) -) -] -[1,6344:6630773,45706769:25952256,40108032,0 -(1,6344:6630773,45706769:25952256,40108032,0 -(1,6344:6630773,45706769:0,0,0 -g1,6344:6630773,45706769 -) -[1,6344:6630773,45706769:25952256,40108032,0 -(1,6299:6630773,6254097:25952256,505283,134348 -k1,6298:7679208,6254097:180083 -k1,6298:10528573,6254097:180084 -k1,6298:12266447,6254097:180083 -k1,6298:12916424,6254097:180084 -k1,6298:14200789,6254097:180083 -k1,6298:15128639,6254097:180084 -k1,6298:16821948,6254097:180083 -k1,6298:17653460,6254097:180084 -k1,6298:19654133,6254097:180083 -k1,6298:21993628,6254097:180084 -k1,6298:23981194,6254097:180083 -k1,6298:24844163,6254097:180084 -k1,6298:27255747,6254097:180083 -k1,6298:30822732,6254097:180084 -k1,6299:32583029,6254097:0 -) -(1,6299:6630773,7095585:25952256,513147,134348 -k1,6298:9052645,7095585:278845 -k1,6298:11186159,7095585:278845 -k1,6298:12274374,7095585:278845 -k1,6298:13323921,7095585:278844 -k1,6298:17042751,7095585:278845 -k1,6298:20604950,7095585:278845 -k1,6298:21535223,7095585:278845 -k1,6298:22169928,7095585:278845 -(1,6298:22169928,7095585:0,452978,115847 -r1,6344:24638465,7095585:2468537,568825,115847 -k1,6298:22169928,7095585:-2468537 -) -(1,6298:22169928,7095585:2468537,452978,115847 -k1,6298:22169928,7095585:3277 -h1,6298:24635188,7095585:0,411205,112570 -) -k1,6298:24917310,7095585:278845 -k1,6298:25879040,7095585:278845 -k1,6298:26513744,7095585:278844 -(1,6298:26513744,7095585:0,452978,115847 -r1,6344:29685704,7095585:3171960,568825,115847 -k1,6298:26513744,7095585:-3171960 -) -(1,6298:26513744,7095585:3171960,452978,115847 -k1,6298:26513744,7095585:3277 -h1,6298:29682427,7095585:0,411205,112570 -) -k1,6298:29964549,7095585:278845 -k1,6298:31923737,7095585:278845 -k1,6298:32583029,7095585:0 -) -(1,6299:6630773,7937073:25952256,513147,134348 -k1,6298:8942261,7937073:298222 -k1,6298:10968012,7937073:298222 -k1,6298:11917662,7937073:298222 -k1,6298:13546265,7937073:298222 -k1,6298:15619202,7937073:298222 -(1,6298:15619202,7937073:0,459977,115847 -r1,6344:17384316,7937073:1765114,575824,115847 -k1,6298:15619202,7937073:-1765114 -) -(1,6298:15619202,7937073:1765114,459977,115847 -g1,6298:16677615,7937073 -h1,6298:17381039,7937073:0,411205,112570 -) -k1,6298:17682538,7937073:298222 -k1,6298:19172205,7937073:298222 -(1,6298:19172205,7937073:0,459977,115847 -r1,6344:23399302,7937073:4227097,575824,115847 -k1,6298:19172205,7937073:-4227097 -) -(1,6298:19172205,7937073:4227097,459977,115847 -g1,6298:20230618,7937073 -g1,6298:21285754,7937073 -g1,6298:21989178,7937073 -h1,6298:23396025,7937073:0,411205,112570 -) -k1,6298:23697524,7937073:298222 -k1,6298:25677400,7937073:298222 -k1,6298:26923273,7937073:298222 -k1,6298:29243281,7937073:298222 -k1,6298:31896867,7937073:298222 -k1,6298:32583029,7937073:0 -) -(1,6299:6630773,8778561:25952256,513147,134348 -k1,6298:8309239,8778561:298278 -k1,6298:9599078,8778561:298279 -k1,6298:13158427,8778561:298278 -k1,6298:14218234,8778561:298279 -k1,6298:14872372,8778561:298278 -k1,6298:17240278,8778561:298279 -k1,6298:19392570,8778561:298278 -(1,6298:19392570,8778561:0,452978,115847 -r1,6344:22212819,8778561:2820249,568825,115847 -k1,6298:19392570,8778561:-2820249 -) -(1,6298:19392570,8778561:2820249,452978,115847 -k1,6298:19392570,8778561:3277 -h1,6298:22209542,8778561:0,411205,112570 -) -k1,6298:22511097,8778561:298278 -k1,6298:23913658,8778561:298279 -k1,6298:26499798,8778561:298278 -k1,6298:29873682,8778561:298279 -k1,6298:30831252,8778561:298278 -k1,6298:32583029,8778561:0 -) -(1,6299:6630773,9620049:25952256,505283,134348 -k1,6298:8464856,9620049:183886 -k1,6298:12339074,9620049:183886 -k1,6298:13719647,9620049:183886 -k1,6298:15624509,9620049:183887 -k1,6298:17046370,9620049:183886 -k1,6298:17846294,9620049:183886 -k1,6298:19915651,9620049:183886 -(1,6298:19915651,9620049:0,452978,115847 -r1,6344:22735900,9620049:2820249,568825,115847 -k1,6298:19915651,9620049:-2820249 -) -(1,6298:19915651,9620049:2820249,452978,115847 -k1,6298:19915651,9620049:3277 -h1,6298:22732623,9620049:0,411205,112570 -) -k1,6298:22919786,9620049:183886 -k1,6298:26290032,9620049:183886 -k1,6298:27005416,9620049:183887 -k1,6298:28702528,9620049:183886 -k1,6298:29417911,9620049:183886 -k1,6298:30363325,9620049:183886 -k1,6299:32583029,9620049:0 -) -(1,6299:6630773,10461537:25952256,513147,134348 -k1,6298:8534795,10461537:264967 -k1,6298:9459054,10461537:264967 -k1,6298:10743106,10461537:264967 -k1,6298:13786799,10461537:264966 -k1,6298:15905780,10461537:264967 -k1,6298:16856909,10461537:264967 -k1,6298:20211899,10461537:264967 -k1,6298:21163028,10461537:264967 -k1,6298:23166010,10461537:264967 -k1,6298:25382638,10461537:264966 -k1,6298:28371937,10461537:264967 -k1,6298:29709073,10461537:264967 -k1,6298:31635378,10461537:264967 -k1,6299:32583029,10461537:0 -) -(1,6299:6630773,11303025:25952256,485622,134348 -(1,6298:6630773,11303025:0,459977,115847 -r1,6344:10857870,11303025:4227097,575824,115847 -k1,6298:6630773,11303025:-4227097 -) -(1,6298:6630773,11303025:4227097,459977,115847 -g1,6298:7689186,11303025 -g1,6298:8744322,11303025 -g1,6298:9447746,11303025 -h1,6298:10854593,11303025:0,411205,112570 -) -g1,6298:11057099,11303025 -g1,6298:12065698,11303025 -g1,6298:13763080,11303025 -h1,6298:14958457,11303025:0,0,0 -k1,6299:32583029,11303025:17450902 -g1,6299:32583029,11303025 -) -(1,6301:6630773,12144513:25952256,505283,126483 -h1,6300:6630773,12144513:983040,0,0 -k1,6300:8988684,12144513:178184 -k1,6300:11224697,12144513:178183 -k1,6300:14589241,12144513:178184 -k1,6300:17108371,12144513:178184 -k1,6300:17642415,12144513:178184 -k1,6300:19674612,12144513:178183 -k1,6300:20871881,12144513:178184 -k1,6300:22730408,12144513:178184 -k1,6300:25687319,12144513:178184 -k1,6300:26627030,12144513:178183 -k1,6300:27824299,12144513:178184 -(1,6300:27824299,12144513:0,452978,115847 -r1,6344:30644548,12144513:2820249,568825,115847 -k1,6300:27824299,12144513:-2820249 -) -(1,6300:27824299,12144513:2820249,452978,115847 -k1,6300:27824299,12144513:3277 -h1,6300:30641271,12144513:0,411205,112570 -) -k1,6300:30822732,12144513:178184 -k1,6301:32583029,12144513:0 -) -(1,6301:6630773,12986001:25952256,505283,134348 -k1,6300:8581481,12986001:311653 -k1,6300:9424632,12986001:311654 -k1,6300:11020791,12986001:311653 -k1,6300:14111172,12986001:311654 -k1,6300:15184353,12986001:311653 -k1,6300:16515092,12986001:311654 -k1,6300:20013105,12986001:311653 -k1,6300:24948324,12986001:311654 -k1,6300:25911405,12986001:311653 -k1,6300:27242144,12986001:311654 -k1,6300:30525199,12986001:311653 -k1,6300:32583029,12986001:0 -) -(1,6301:6630773,13827489:25952256,513147,115847 -k1,6300:8763678,13827489:278891 -k1,6300:9725455,13827489:278892 -k1,6300:11023431,13827489:278891 -k1,6300:13567903,13827489:278892 -k1,6300:16255897,13827489:278891 -k1,6300:17186216,13827489:278891 -(1,6300:17186216,13827489:0,452978,115847 -r1,6344:18599617,13827489:1413401,568825,115847 -k1,6300:17186216,13827489:-1413401 -) -(1,6300:17186216,13827489:1413401,452978,115847 -k1,6300:17186216,13827489:3277 -h1,6300:18596340,13827489:0,411205,112570 -) -k1,6300:19085603,13827489:278892 -k1,6300:19830455,13827489:278891 -k1,6300:21764131,13827489:278892 -k1,6300:22574519,13827489:278891 -k1,6300:23662780,13827489:278891 -k1,6300:25922825,13827489:278892 -k1,6300:27393161,13827489:278891 -k1,6300:28027913,13827489:278892 -k1,6300:30572384,13827489:278891 -k1,6300:32583029,13827489:0 -) -(1,6301:6630773,14668977:25952256,513147,134348 -k1,6300:8533283,14668977:222167 -k1,6300:9856455,14668977:222167 -k1,6300:11588572,14668977:222167 -k1,6300:14365988,14668977:222167 -k1,6300:16063370,14668977:222167 -k1,6300:18929259,14668977:222167 -k1,6300:22337787,14668977:222168 -k1,6300:23664236,14668977:222167 -k1,6300:24634169,14668977:222167 -k1,6300:27383404,14668977:222167 -k1,6300:28291733,14668977:222167 -k1,6300:28869760,14668977:222167 -k1,6300:30437381,14668977:222167 -k1,6300:32227169,14668977:222167 -k1,6300:32583029,14668977:0 -) -(1,6301:6630773,15510465:25952256,513147,126483 -g1,6300:7764545,15510465 -g1,6300:8623066,15510465 -g1,6300:11452255,15510465 -k1,6301:32583028,15510465:19259720 -g1,6301:32583028,15510465 -) -(1,6325:6630773,38573729:25952256,22215885,0 -k1,6325:10211480,38573729:3580707 -(1,6302:10211480,38573729:0,0,0 -g1,6302:10211480,38573729 -g1,6302:10211480,38573729 -g1,6302:9883800,38573729 -(1,6302:9883800,38573729:0,0,0 -) -g1,6302:10211480,38573729 -) -(1,6323:10211480,38573729:18790843,22215885,0 -g1,6323:13698849,38573729 -(1,6323:13698849,17303290:0,0,0 -(1,6323:13698849,17303290:0,0,0 -g1,6304:13698849,17303290 -(1,6305:13698849,17303290:0,0,0 -(1,6305:13698849,17303290:0,0,0 -g1,6305:13698849,17303290 -g1,6305:13698849,17303290 -g1,6305:13698849,17303290 -g1,6305:13698849,17303290 -g1,6305:13698849,17303290 -(1,6305:13698849,17303290:0,0,0 -(1,6305:13698849,17303290:589824,56623,0 -(1,6305:13698849,17303290:589824,56623,0 -) -g1,6305:14288673,17303290 -) -) -g1,6305:13698849,17303290 -g1,6305:13698849,17303290 -) -) -g1,6305:13698849,17303290 -(1,6306:13698849,17303290:0,0,0 -(1,6306:13698849,17303290:0,0,0 -g1,6306:13698849,17303290 -g1,6306:13698849,17303290 -(1,6306:13698849,17303290:0,0,0 -(1,6306:13698849,17303290:4754664,408008,104590 -(1,6306:13698849,17303290:4754664,408008,104590 -(1,6306:13698849,17303290:0,408008,104590 -r1,6344:18453513,17303290:4754664,512598,104590 -k1,6306:13698849,17303290:-4754664 -) -(1,6306:13698849,17303290:4754664,408008,104590 -k1,6306:13698849,17303290:3277 -h1,6306:18450236,17303290:0,370085,101313 -) -) -g1,6306:18453513,17303290 -) -) -g1,6306:13698849,17303290 -g1,6306:13698849,17303290 -) -) -(1,6307:13698849,17303290:0,0,0 -(1,6307:13698849,17303290:0,0,0 -g1,6307:13698849,17303290 -g1,6307:13698849,17303290 -g1,6307:13698849,17303290 -g1,6307:13698849,17303290 -g1,6307:13698849,17303290 -(1,6307:13698849,17303290:0,0,0 -(1,6307:13698849,17303290:4121582,373362,104590 -(1,6307:13698849,17303290:4121582,373362,104590 -(1,6307:13698849,17303290:0,373362,104590 -r1,6344:17820431,17303290:4121582,477952,104590 -k1,6307:13698849,17303290:-4121582 -) -(1,6307:13698849,17303290:4121582,373362,104590 -g1,6307:17184073,17303290 -h1,6307:17817154,17303290:0,370085,101313 -) -) -g1,6307:17820431,17303290 -) -) -g1,6307:13698849,17303290 -g1,6307:13698849,17303290 -) -) -g1,6307:13698849,17303290 -g1,6308:13698849,17303290 -(1,6308:13698849,17303290:0,0,0 -(1,6308:13698849,17303290:0,0,0 -g1,6308:13698849,17303290 -g1,6308:13698849,17303290 -g1,6308:13698849,17303290 -g1,6308:13698849,17303290 -g1,6308:13698849,17303290 -(1,6308:13698849,17303290:0,0,0 -(1,6308:13698849,17303290:4121582,373362,104590 -(1,6308:13698849,17303290:4121582,373362,104590 -(1,6308:13698849,17303290:0,373362,104590 -r1,6344:17820431,17303290:4121582,477952,104590 -k1,6308:13698849,17303290:-4121582 -) -(1,6308:13698849,17303290:4121582,373362,104590 -g1,6308:17184073,17303290 -h1,6308:17817154,17303290:0,370085,101313 -) -) -g1,6308:17820431,17303290 -) -) -g1,6308:13698849,17303290 -g1,6308:13698849,17303290 -) -) -g1,6308:13698849,17303290 -g1,6309:13698849,17303290 -(1,6309:13698849,17303290:0,0,0 -(1,6309:13698849,17303290:0,0,0 -g1,6309:13698849,17303290 -g1,6309:13698849,17303290 -g1,6309:13698849,17303290 -g1,6309:13698849,17303290 -g1,6309:13698849,17303290 -(1,6309:13698849,17303290:0,0,0 -(1,6309:13698849,17303290:4121582,373362,104590 -(1,6309:13698849,17303290:4121582,373362,104590 -(1,6309:13698849,17303290:0,373362,104590 -r1,6344:17820431,17303290:4121582,477952,104590 -k1,6309:13698849,17303290:-4121582 -) -(1,6309:13698849,17303290:4121582,373362,104590 -g1,6309:17184073,17303290 -h1,6309:17817154,17303290:0,370085,101313 -) -) -g1,6309:17820431,17303290 -) -) -g1,6309:13698849,17303290 -g1,6309:13698849,17303290 -) -) -g1,6309:13698849,17303290 -g1,6310:13698849,17303290 -(1,6310:13698849,17303290:0,0,0 -(1,6310:13698849,17303290:0,0,0 -g1,6310:13698849,17303290 -g1,6310:13698849,17303290 -g1,6310:13698849,17303290 -g1,6310:13698849,17303290 -g1,6310:13698849,17303290 -(1,6310:13698849,17303290:0,0,0 -(1,6310:13698849,17303290:4121582,373362,104590 -(1,6310:13698849,17303290:4121582,373362,104590 -(1,6310:13698849,17303290:0,373362,104590 -r1,6344:17820431,17303290:4121582,477952,104590 -k1,6310:13698849,17303290:-4121582 -) -(1,6310:13698849,17303290:4121582,373362,104590 -g1,6310:17184073,17303290 -h1,6310:17817154,17303290:0,370085,101313 -) -) -g1,6310:17820431,17303290 -) -) -g1,6310:13698849,17303290 -g1,6310:13698849,17303290 -) -) -g1,6310:13698849,17303290 -(1,6311:13698849,17303290:0,0,0 -(1,6311:13698849,17303290:0,0,0 -g1,6311:13698849,17303290 -g1,6311:13698849,17303290 -g1,6311:13698849,17303290 -g1,6311:13698849,17303290 -g1,6311:13698849,17303290 -(1,6311:13698849,17303290:0,0,0 -(1,6311:13698849,17303290:4121582,373362,104590 -(1,6311:13698849,17303290:4121582,373362,104590 -(1,6311:13698849,17303290:0,373362,104590 -r1,6344:17820431,17303290:4121582,477952,104590 -k1,6311:13698849,17303290:-4121582 -) -(1,6311:13698849,17303290:4121582,373362,104590 -g1,6311:17184073,17303290 -h1,6311:17817154,17303290:0,370085,101313 -) -) -g1,6311:17820431,17303290 -) -) -g1,6311:13698849,17303290 -g1,6311:13698849,17303290 -) -) -g1,6311:13698849,17303290 -g1,6312:13698849,17303290 -(1,6312:13698849,17303290:0,0,0 -(1,6312:13698849,17303290:0,0,0 -g1,6312:13698849,17303290 -g1,6312:13698849,17303290 -g1,6312:13698849,17303290 -g1,6312:13698849,17303290 -g1,6312:13698849,17303290 -(1,6312:13698849,17303290:0,0,0 -(1,6312:13698849,17303290:589824,56623,0 -(1,6312:13698849,17303290:589824,56623,0 -) -g1,6312:14288673,17303290 -) -) -g1,6312:13698849,17303290 -g1,6312:13698849,17303290 -) -) -g1,6312:13698849,17303290 -g1,6313:13698849,17303290 -g1,6313:13698849,17303290 -g1,6313:13698849,17303290 -g1,6313:13698849,17303290 -g1,6314:13698849,17303290 -g1,6314:13698849,17303290 -(1,6314:13698849,17303290:0,0,0 -(1,6314:13698849,17303290:0,0,0 -g1,6314:13698849,17303290 -g1,6314:13698849,17303290 -g1,6314:13698849,17303290 -g1,6314:13698849,17303290 -g1,6314:13698849,17303290 -(1,6314:13698849,17303290:0,0,0 -(1,6314:13698849,17303290:2855420,408008,104590 -(1,6314:13698849,17303290:2855420,408008,104590 -(1,6314:13698849,17303290:0,408008,104590 -r1,6344:16554269,17303290:2855420,512598,104590 -k1,6314:13698849,17303290:-2855420 -) -(1,6314:13698849,17303290:2855420,408008,104590 -g1,6314:15917911,17303290 -h1,6314:16550992,17303290:0,370085,101313 -) -) -g1,6314:16554269,17303290 -) -) -g1,6314:13698849,17303290 -g1,6314:13698849,17303290 -) -) -g1,6314:13698849,17303290 -g1,6315:13698849,17303290 -g1,6315:13698849,17303290 -(1,6315:13698849,17303290:0,0,0 -(1,6315:13698849,17303290:0,0,0 -g1,6315:13698849,17303290 -g1,6315:13698849,17303290 -g1,6315:13698849,17303290 -g1,6315:13698849,17303290 -g1,6315:13698849,17303290 -(1,6315:13698849,17303290:0,0,0 -(1,6315:13698849,17303290:2855420,408008,104590 -(1,6315:13698849,17303290:2855420,408008,104590 -(1,6315:13698849,17303290:0,408008,104590 -r1,6344:16554269,17303290:2855420,512598,104590 -k1,6315:13698849,17303290:-2855420 -) -(1,6315:13698849,17303290:2855420,408008,104590 -g1,6315:15917911,17303290 -h1,6315:16550992,17303290:0,370085,101313 -) -) -g1,6315:16554269,17303290 -) -) -g1,6315:13698849,17303290 -g1,6315:13698849,17303290 -) -) -g1,6315:13698849,17303290 -g1,6316:13698849,17303290 -g1,6316:13698849,17303290 -(1,6316:13698849,17303290:0,0,0 -(1,6316:13698849,17303290:0,0,0 -g1,6316:13698849,17303290 -g1,6316:13698849,17303290 -g1,6316:13698849,17303290 -g1,6316:13698849,17303290 -g1,6316:13698849,17303290 -(1,6316:13698849,17303290:0,0,0 -(1,6316:13698849,17303290:2855420,408008,104590 -(1,6316:13698849,17303290:2855420,408008,104590 -(1,6316:13698849,17303290:0,408008,104590 -r1,6344:16554269,17303290:2855420,512598,104590 -k1,6316:13698849,17303290:-2855420 -) -(1,6316:13698849,17303290:2855420,408008,104590 -g1,6316:15917911,17303290 -h1,6316:16550992,17303290:0,370085,101313 -) -) -g1,6316:16554269,17303290 -) -) -g1,6316:13698849,17303290 -g1,6316:13698849,17303290 -) -) -g1,6316:13698849,17303290 -g1,6317:13698849,17303290 -g1,6317:13698849,17303290 -(1,6317:13698849,17303290:0,0,0 -(1,6317:13698849,17303290:0,0,0 -g1,6317:13698849,17303290 -g1,6317:13698849,17303290 -g1,6317:13698849,17303290 -g1,6317:13698849,17303290 -g1,6317:13698849,17303290 -(1,6317:13698849,17303290:0,0,0 -(1,6317:13698849,17303290:2855420,414307,104590 -(1,6317:13698849,17303290:2855420,414307,104590 -(1,6317:13698849,17303290:0,414307,104590 -r1,6344:16554269,17303290:2855420,518897,104590 -k1,6317:13698849,17303290:-2855420 -) -(1,6317:13698849,17303290:2855420,414307,104590 -k1,6317:13698849,17303290:3277 -h1,6317:16550992,17303290:0,370085,101313 -) -) -g1,6317:16554269,17303290 -) -) -g1,6317:13698849,17303290 -g1,6317:13698849,17303290 -) -) -g1,6317:13698849,17303290 -g1,6318:13698849,17303290 -g1,6318:13698849,17303290 -g1,6318:13698849,17303290 -g1,6318:13698849,17303290 -g1,6318:13698849,17303290 -g1,6319:13698849,17303290 -g1,6319:13698849,17303290 -g1,6319:13698849,17303290 -g1,6319:13698849,17303290 -g1,6319:13698849,17303290 -g1,6320:13698849,17303290 -g1,6320:13698849,17303290 -g1,6320:13698849,17303290 -g1,6320:13698849,17303290 -g1,6320:13698849,17303290 -g1,6321:13698849,17303290 -g1,6321:13698849,17303290 -g1,6321:13698849,17303290 -g1,6321:13698849,17303290 -g1,6321:13698849,17303290 -g1,6322:13698849,17303290 -g1,6322:13698849,17303290 -g1,6322:13698849,17303290 -g1,6322:13698849,17303290 -g1,6322:13698849,17303290 -g1,6322:13698849,17303290 -g1,6323:13698849,17303290 -g1,6323:13698849,17303290 -) -g1,6323:13698849,17303290 -) -) -g1,6325:29002323,38573729 -k1,6325:32583029,38573729:3580706 -) -(1,6328:6630773,40070577:25952256,513147,126483 -h1,6327:6630773,40070577:983040,0,0 -k1,6327:8457121,40070577:215473 -k1,6327:9691679,40070577:215473 -k1,6327:11213285,40070577:215473 -k1,6327:14090175,40070577:215473 -k1,6327:15174000,40070577:215473 -k1,6327:16481958,40070577:215473 -k1,6327:19672110,40070577:215473 -k1,6327:22975639,40070577:215473 -k1,6327:25002527,40070577:215473 -k1,6327:25834038,40070577:215473 -k1,6327:26405371,40070577:215473 -k1,6327:29132184,40070577:215473 -k1,6327:30033819,40070577:215473 -k1,6327:30605152,40070577:215473 -k1,6328:32583029,40070577:0 -) -(1,6328:6630773,40912065:25952256,513147,134348 -k1,6327:8269392,40912065:197482 -k1,6327:9860824,40912065:197481 -k1,6327:11077391,40912065:197482 -k1,6327:12423064,40912065:197482 -k1,6327:15806905,40912065:197481 -k1,6327:17398338,40912065:197482 -k1,6327:18405190,40912065:197482 -k1,6327:19589643,40912065:197481 -k1,6327:21525140,40912065:197482 -k1,6327:22741707,40912065:197482 -k1,6327:25378438,40912065:197481 -k1,6327:27914900,40912065:197482 -k1,6327:28771674,40912065:197482 -k1,6327:29988240,40912065:197481 -k1,6327:31923737,40912065:197482 -k1,6327:32583029,40912065:0 -) -(1,6328:6630773,41753553:25952256,505283,134348 -k1,6327:9334728,41753553:192615 -(1,6327:9334728,41753553:0,452978,122846 -r1,6344:12506688,41753553:3171960,575824,122846 -k1,6327:9334728,41753553:-3171960 -) -(1,6327:9334728,41753553:3171960,452978,122846 -k1,6327:9334728,41753553:3277 -h1,6327:12503411,41753553:0,411205,112570 -) -k1,6327:12872972,41753553:192614 -k1,6327:13933939,41753553:192615 -k1,6327:15895371,41753553:192615 -k1,6327:17563200,41753553:192614 -k1,6327:19269041,41753553:192615 -k1,6327:19817515,41753553:192614 -k1,6327:22696451,41753553:192615 -k1,6327:26329051,41753553:192615 -k1,6327:29522559,41753553:192614 -k1,6327:30071034,41753553:192615 -k1,6328:32583029,41753553:0 -) -(1,6328:6630773,42595041:25952256,513147,134348 -(1,6327:6630773,42595041:0,452978,115847 -r1,6344:9802733,42595041:3171960,568825,115847 -k1,6327:6630773,42595041:-3171960 -) -(1,6327:6630773,42595041:3171960,452978,115847 -k1,6327:6630773,42595041:3277 -h1,6327:9799456,42595041:0,411205,112570 -) -g1,6327:10001962,42595041 -g1,6327:11881534,42595041 -g1,6327:12740055,42595041 -g1,6327:14952550,42595041 -k1,6328:32583029,42595041:16300098 -g1,6328:32583029,42595041 -) -v1,6330:6630773,43785507:0,393216,0 -(1,6344:6630773,45407793:25952256,2015502,196608 -g1,6344:6630773,45407793 -g1,6344:6630773,45407793 -g1,6344:6434165,45407793 -(1,6344:6434165,45407793:0,2015502,196608 -r1,6344:32779637,45407793:26345472,2212110,196608 -k1,6344:6434165,45407793:-26345472 -) -(1,6344:6434165,45407793:26345472,2015502,196608 -[1,6344:6630773,45407793:25952256,1818894,0 -(1,6332:6630773,43993125:25952256,404226,107478 -(1,6331:6630773,43993125:0,0,0 -g1,6331:6630773,43993125 -g1,6331:6630773,43993125 -g1,6331:6303093,43993125 -(1,6331:6303093,43993125:0,0,0 -) -g1,6331:6630773,43993125 -) -g1,6332:9792230,43993125 -g1,6332:10740668,43993125 -h1,6332:12321396,43993125:0,0,0 -k1,6332:32583028,43993125:20261632 -g1,6332:32583028,43993125 -) -(1,6333:6630773,44659303:25952256,404226,107478 -h1,6333:6630773,44659303:0,0,0 -g1,6333:7263065,44659303 -g1,6333:8211503,44659303 -k1,6333:8211503,44659303:0 -h1,6333:13585980,44659303:0,0,0 -k1,6333:32583028,44659303:18997048 -g1,6333:32583028,44659303 -) -(1,6334:6630773,45325481:25952256,388497,82312 -h1,6334:6630773,45325481:0,0,0 -g1,6334:6946919,45325481 -g1,6334:7263065,45325481 -g1,6334:7579211,45325481 -g1,6334:7895357,45325481 -g1,6334:8211503,45325481 -g1,6334:8527649,45325481 -g1,6334:8843795,45325481 -g1,6334:9159941,45325481 -g1,6334:9476087,45325481 -g1,6334:9792233,45325481 -g1,6334:10108379,45325481 -g1,6334:10424525,45325481 -g1,6334:11689108,45325481 -g1,6334:12321400,45325481 -k1,6334:12321400,45325481:0 -h1,6334:12953692,45325481:0,0,0 -k1,6334:32583028,45325481:19629336 -g1,6334:32583028,45325481 -) -] -) -g1,6344:32583029,45407793 -g1,6344:6630773,45407793 -g1,6344:6630773,45407793 -g1,6344:32583029,45407793 -g1,6344:32583029,45407793 -) -] -(1,6344:32583029,45706769:0,0,0 -g1,6344:32583029,45706769 -) -) -] -(1,6344:6630773,47279633:25952256,0,0 -h1,6344:6630773,47279633:25952256,0,0 -) -] -(1,6344:4262630,4025873:0,0,0 -[1,6344:-473656,4025873:0,0,0 -(1,6344:-473656,-710413:0,0,0 -(1,6344:-473656,-710413:0,0,0 -g1,6344:-473656,-710413 -) -g1,6344:-473656,-710413 -) -] -) -] -!24350 -}121 -Input:910:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:911:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:912:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:913:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:914:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:915:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:916:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:917:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:918:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:919:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:920:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:921:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:922:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:923:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:924:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:925:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1468 -{122 -[1,6418:4262630,47279633:28320399,43253760,0 -(1,6418:4262630,4025873:0,0,0 -[1,6418:-473656,4025873:0,0,0 -(1,6418:-473656,-710413:0,0,0 -(1,6418:-473656,-644877:0,0,0 -k1,6418:-473656,-644877:-65536 -) -(1,6418:-473656,4736287:0,0,0 -k1,6418:-473656,4736287:5209943 -) -g1,6418:-473656,-710413 -) -] -) -[1,6418:6630773,47279633:25952256,43253760,0 -[1,6418:6630773,4812305:25952256,786432,0 -(1,6418:6630773,4812305:25952256,513147,126483 -(1,6418:6630773,4812305:25952256,513147,126483 -g1,6418:3078558,4812305 -[1,6418:3078558,4812305:0,0,0 -(1,6418:3078558,2439708:0,1703936,0 -k1,6418:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,6418:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,6418:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,6418:3078558,4812305:0,0,0 -(1,6418:3078558,2439708:0,1703936,0 -g1,6418:29030814,2439708 -g1,6418:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,6418:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,6418:37855564,2439708:1179648,16384,0 -) -) -k1,6418:3078556,2439708:-34777008 -) -] -[1,6418:3078558,4812305:0,0,0 -(1,6418:3078558,49800853:0,16384,2228224 -k1,6418:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,6418:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,6418:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,6418:3078558,4812305:0,0,0 -(1,6418:3078558,49800853:0,16384,2228224 -g1,6418:29030814,49800853 -g1,6418:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,6418:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,6418:37855564,49800853:1179648,16384,0 -) -) -k1,6418:3078556,49800853:-34777008 -) -] -g1,6418:6630773,4812305 -g1,6418:6630773,4812305 -g1,6418:9175536,4812305 -g1,6418:9990803,4812305 -g1,6418:13137841,4812305 -g1,6418:14654344,4812305 -k1,6418:31387652,4812305:16733308 -) -) -] -[1,6418:6630773,45706769:25952256,40108032,0 -(1,6418:6630773,45706769:25952256,40108032,0 -(1,6418:6630773,45706769:0,0,0 -g1,6418:6630773,45706769 -) -[1,6418:6630773,45706769:25952256,40108032,0 -v1,6344:6630773,6254097:0,393216,0 -(1,6344:6630773,9934162:25952256,4073281,196608 -g1,6344:6630773,9934162 -g1,6344:6630773,9934162 -g1,6344:6434165,9934162 -(1,6344:6434165,9934162:0,4073281,196608 -r1,6418:32779637,9934162:26345472,4269889,196608 -k1,6344:6434165,9934162:-26345472 -) -(1,6344:6434165,9934162:26345472,4073281,196608 -[1,6344:6630773,9934162:25952256,3876673,0 -(1,6335:6630773,6461715:25952256,404226,82312 -h1,6335:6630773,6461715:0,0,0 -g1,6335:6946919,6461715 -g1,6335:7263065,6461715 -g1,6335:7579211,6461715 -g1,6335:7895357,6461715 -g1,6335:8211503,6461715 -g1,6335:8527649,6461715 -g1,6335:8843795,6461715 -g1,6335:9159941,6461715 -g1,6335:9476087,6461715 -g1,6335:9792233,6461715 -g1,6335:10108379,6461715 -g1,6335:10424525,6461715 -g1,6335:11689108,6461715 -g1,6335:12321400,6461715 -g1,6335:12953692,6461715 -g1,6335:13585984,6461715 -k1,6335:13585984,6461715:0 -h1,6335:14218276,6461715:0,0,0 -k1,6335:32583028,6461715:18364752 -g1,6335:32583028,6461715 -) -(1,6336:6630773,7127893:25952256,410518,82312 -h1,6336:6630773,7127893:0,0,0 -g1,6336:6946919,7127893 -g1,6336:7263065,7127893 -g1,6336:7579211,7127893 -g1,6336:7895357,7127893 -g1,6336:8211503,7127893 -g1,6336:8527649,7127893 -g1,6336:8843795,7127893 -g1,6336:9159941,7127893 -g1,6336:9476087,7127893 -g1,6336:9792233,7127893 -g1,6336:10108379,7127893 -g1,6336:10424525,7127893 -g1,6336:12005254,7127893 -g1,6336:12637546,7127893 -g1,6336:13269838,7127893 -g1,6336:13902130,7127893 -k1,6336:13902130,7127893:0 -h1,6336:14534422,7127893:0,0,0 -k1,6336:32583030,7127893:18048608 -g1,6336:32583030,7127893 -) -(1,6337:6630773,7794071:25952256,388497,9436 -h1,6337:6630773,7794071:0,0,0 -g1,6337:6946919,7794071 -g1,6337:7263065,7794071 -g1,6337:7579211,7794071 -g1,6337:7895357,7794071 -g1,6337:8211503,7794071 -g1,6337:8527649,7794071 -g1,6337:8843795,7794071 -g1,6337:9159941,7794071 -g1,6337:9476087,7794071 -g1,6337:9792233,7794071 -g1,6337:10108379,7794071 -g1,6337:10424525,7794071 -h1,6337:10740671,7794071:0,0,0 -k1,6337:32583029,7794071:21842358 -g1,6337:32583029,7794071 -) -(1,6338:6630773,8460249:25952256,404226,76021 -h1,6338:6630773,8460249:0,0,0 -h1,6338:6946919,8460249:0,0,0 -k1,6338:32583029,8460249:25636110 -g1,6338:32583029,8460249 -) -(1,6339:6630773,9126427:25952256,404226,6290 -h1,6339:6630773,9126427:0,0,0 -h1,6339:6946919,9126427:0,0,0 -k1,6339:32583029,9126427:25636110 -g1,6339:32583029,9126427 -) -(1,6343:6630773,9858141:25952256,404226,76021 -(1,6341:6630773,9858141:0,0,0 -g1,6341:6630773,9858141 -g1,6341:6630773,9858141 -g1,6341:6303093,9858141 -(1,6341:6303093,9858141:0,0,0 -) -g1,6341:6630773,9858141 -) -g1,6343:7579210,9858141 -g1,6343:8843793,9858141 -h1,6343:9792230,9858141:0,0,0 -k1,6343:32583030,9858141:22790800 -g1,6343:32583030,9858141 -) -] -) -g1,6344:32583029,9934162 -g1,6344:6630773,9934162 -g1,6344:6630773,9934162 -g1,6344:32583029,9934162 -g1,6344:32583029,9934162 -) -h1,6344:6630773,10130770:0,0,0 -(1,6348:6630773,11480274:25952256,505283,126483 -h1,6347:6630773,11480274:983040,0,0 -g1,6347:10427929,11480274 -g1,6347:13659509,11480274 -g1,6347:15869383,11480274 -g1,6347:17172894,11480274 -g1,6347:19108827,11480274 -g1,6347:20327141,11480274 -g1,6347:22179843,11480274 -k1,6348:32583029,11480274:7043155 -g1,6348:32583029,11480274 -) -v1,6350:6630773,12654468:0,393216,0 -(1,6364:6630773,18333067:25952256,6071815,196608 -g1,6364:6630773,18333067 -g1,6364:6630773,18333067 -g1,6364:6434165,18333067 -(1,6364:6434165,18333067:0,6071815,196608 -r1,6418:32779637,18333067:26345472,6268423,196608 -k1,6364:6434165,18333067:-26345472 -) -(1,6364:6434165,18333067:26345472,6071815,196608 -[1,6364:6630773,18333067:25952256,5875207,0 -(1,6352:6630773,12862086:25952256,404226,107478 -(1,6351:6630773,12862086:0,0,0 -g1,6351:6630773,12862086 -g1,6351:6630773,12862086 -g1,6351:6303093,12862086 -(1,6351:6303093,12862086:0,0,0 -) -g1,6351:6630773,12862086 -) -g1,6352:9792230,12862086 -g1,6352:10740668,12862086 -h1,6352:12321396,12862086:0,0,0 -k1,6352:32583028,12862086:20261632 -g1,6352:32583028,12862086 -) -(1,6353:6630773,13528264:25952256,404226,107478 -h1,6353:6630773,13528264:0,0,0 -g1,6353:7263065,13528264 -g1,6353:8211503,13528264 -k1,6353:8211503,13528264:0 -h1,6353:13585980,13528264:0,0,0 -k1,6353:32583028,13528264:18997048 -g1,6353:32583028,13528264 -) -(1,6354:6630773,14194442:25952256,388497,82312 -h1,6354:6630773,14194442:0,0,0 -g1,6354:6946919,14194442 -g1,6354:7263065,14194442 -g1,6354:7579211,14194442 -g1,6354:7895357,14194442 -g1,6354:8211503,14194442 -g1,6354:8527649,14194442 -g1,6354:8843795,14194442 -g1,6354:9159941,14194442 -g1,6354:9476087,14194442 -g1,6354:9792233,14194442 -g1,6354:10108379,14194442 -g1,6354:10424525,14194442 -g1,6354:11689108,14194442 -g1,6354:12637546,14194442 -g1,6354:13902129,14194442 -g1,6354:14534421,14194442 -k1,6354:14534421,14194442:0 -h1,6354:15166713,14194442:0,0,0 -k1,6354:32583029,14194442:17416316 -g1,6354:32583029,14194442 -) -(1,6355:6630773,14860620:25952256,404226,82312 -h1,6355:6630773,14860620:0,0,0 -g1,6355:6946919,14860620 -g1,6355:7263065,14860620 -g1,6355:7579211,14860620 -g1,6355:7895357,14860620 -g1,6355:8211503,14860620 -g1,6355:8527649,14860620 -g1,6355:8843795,14860620 -g1,6355:9159941,14860620 -g1,6355:9476087,14860620 -g1,6355:9792233,14860620 -g1,6355:10108379,14860620 -g1,6355:10424525,14860620 -g1,6355:11689108,14860620 -g1,6355:12637546,14860620 -g1,6355:13902129,14860620 -g1,6355:14534421,14860620 -g1,6355:15166713,14860620 -g1,6355:15799005,14860620 -k1,6355:15799005,14860620:0 -h1,6355:16431297,14860620:0,0,0 -k1,6355:32583029,14860620:16151732 -g1,6355:32583029,14860620 -) -(1,6356:6630773,15526798:25952256,410518,82312 -h1,6356:6630773,15526798:0,0,0 -g1,6356:6946919,15526798 -g1,6356:7263065,15526798 -g1,6356:7579211,15526798 -g1,6356:7895357,15526798 -g1,6356:8211503,15526798 -g1,6356:8527649,15526798 -g1,6356:8843795,15526798 -g1,6356:9159941,15526798 -g1,6356:9476087,15526798 -g1,6356:9792233,15526798 -g1,6356:10108379,15526798 -g1,6356:10424525,15526798 -g1,6356:12005254,15526798 -g1,6356:12953692,15526798 -g1,6356:15166712,15526798 -g1,6356:15799004,15526798 -g1,6356:16431296,15526798 -g1,6356:17063588,15526798 -k1,6356:17063588,15526798:0 -h1,6356:17695880,15526798:0,0,0 -k1,6356:32583029,15526798:14887149 -g1,6356:32583029,15526798 -) -(1,6357:6630773,16192976:25952256,388497,9436 -h1,6357:6630773,16192976:0,0,0 -g1,6357:6946919,16192976 -g1,6357:7263065,16192976 -g1,6357:7579211,16192976 -g1,6357:7895357,16192976 -g1,6357:8211503,16192976 -g1,6357:8527649,16192976 -g1,6357:8843795,16192976 -g1,6357:9159941,16192976 -g1,6357:9476087,16192976 -g1,6357:9792233,16192976 -g1,6357:10108379,16192976 -g1,6357:10424525,16192976 -h1,6357:10740671,16192976:0,0,0 -k1,6357:32583029,16192976:21842358 -g1,6357:32583029,16192976 -) -(1,6358:6630773,16859154:25952256,404226,76021 -h1,6358:6630773,16859154:0,0,0 -h1,6358:6946919,16859154:0,0,0 -k1,6358:32583029,16859154:25636110 -g1,6358:32583029,16859154 -) -(1,6359:6630773,17525332:25952256,404226,6290 -h1,6359:6630773,17525332:0,0,0 -h1,6359:6946919,17525332:0,0,0 -k1,6359:32583029,17525332:25636110 -g1,6359:32583029,17525332 -) -(1,6363:6630773,18257046:25952256,404226,76021 -(1,6361:6630773,18257046:0,0,0 -g1,6361:6630773,18257046 -g1,6361:6630773,18257046 -g1,6361:6303093,18257046 -(1,6361:6303093,18257046:0,0,0 -) -g1,6361:6630773,18257046 -) -g1,6363:7579210,18257046 -g1,6363:8843793,18257046 -h1,6363:9792230,18257046:0,0,0 -k1,6363:32583030,18257046:22790800 -g1,6363:32583030,18257046 -) -] -) -g1,6364:32583029,18333067 -g1,6364:6630773,18333067 -g1,6364:6630773,18333067 -g1,6364:32583029,18333067 -g1,6364:32583029,18333067 -) -h1,6364:6630773,18529675:0,0,0 -v1,6367:6630773,20387196:0,393216,0 -(1,6368:6630773,25189827:25952256,5195847,616038 -g1,6368:6630773,25189827 -(1,6368:6630773,25189827:25952256,5195847,616038 -(1,6368:6630773,25805865:25952256,5811885,0 -[1,6368:6630773,25805865:25952256,5811885,0 -(1,6368:6630773,25779651:25952256,5759457,0 -r1,6418:6656987,25779651:26214,5759457,0 -[1,6368:6656987,25779651:25899828,5759457,0 -(1,6368:6656987,25189827:25899828,4579809,0 -[1,6368:7246811,25189827:24720180,4579809,0 -(1,6368:7246811,21697392:24720180,1087374,126483 -k1,6367:9080643,21697392:624129 -k1,6367:10602615,21697392:624129 -k1,6367:12569576,21697392:624128 -k1,6367:14587656,21697392:624129 -k1,6367:16230870,21697392:624129 -k1,6367:17947484,21697392:624129 -k1,6367:19230905,21697392:624129 -k1,6367:20874118,21697392:624128 -k1,6367:23556077,21697392:624129 -k1,6367:27540237,21697392:624129 -k1,6367:29711016,21697392:624129 -k1,6367:30947907,21697392:624129 -k1,6367:31966992,21697392:0 -) -(1,6368:7246811,22538880:24720180,513147,134348 -k1,6367:12606395,22538880:533513 -k1,6367:14087558,22538880:533512 -(1,6367:14087558,22538880:0,452978,115847 -r1,6418:16907807,22538880:2820249,568825,115847 -k1,6367:14087558,22538880:-2820249 -) -(1,6367:14087558,22538880:2820249,452978,115847 -k1,6367:14087558,22538880:3277 -h1,6367:16904530,22538880:0,411205,112570 -) -k1,6367:17441320,22538880:533513 -k1,6367:19710226,22538880:533513 -(1,6367:19710226,22538880:0,452978,115847 -r1,6418:23937322,22538880:4227096,568825,115847 -k1,6367:19710226,22538880:-4227096 -) -(1,6367:19710226,22538880:4227096,452978,115847 -k1,6367:19710226,22538880:3277 -h1,6367:23934045,22538880:0,411205,112570 -) -k1,6367:24470834,22538880:533512 -k1,6367:26195792,22538880:533513 -k1,6367:28513195,22538880:533513 -k1,6367:30065792,22538880:533512 -k1,6368:31966991,22538880:0 -) -(1,6368:7246811,23380368:24720180,513147,134348 -k1,6367:9061654,23380368:511332 -k1,6367:10185748,23380368:511332 -k1,6367:11716165,23380368:511332 -k1,6367:13410422,23380368:511332 -k1,6367:14581046,23380368:511332 -k1,6367:16111463,23380368:511332 -k1,6367:18010848,23380368:511332 -k1,6367:20194003,23380368:511332 -k1,6367:23097399,23380368:511332 -k1,6367:25157347,23380368:511332 -k1,6367:28373350,23380368:511332 -k1,6367:29350643,23380368:511332 -k1,6367:31032448,23380368:511332 -k1,6368:31966991,23380368:0 -) -(1,6368:7246811,24221856:24720180,452978,122846 -(1,6367:7246811,24221856:0,452978,122846 -r1,6418:13584178,24221856:6337367,575824,122846 -k1,6367:7246811,24221856:-6337367 -) -(1,6367:7246811,24221856:6337367,452978,122846 -g1,6367:10767206,24221856 -g1,6367:11822342,24221856 -h1,6367:13580901,24221856:0,411205,112570 -) -k1,6367:14144760,24221856:386912 -(1,6367:14144760,24221856:0,452978,122846 -r1,6418:21185551,24221856:7040791,575824,122846 -k1,6367:14144760,24221856:-7040791 -) -(1,6367:14144760,24221856:7040791,452978,122846 -g1,6367:17665155,24221856 -g1,6367:18720291,24221856 -h1,6367:21182274,24221856:0,411205,112570 -) -k1,6367:21746132,24221856:386911 -(1,6367:21746132,24221856:0,452978,122846 -r1,6418:30897194,24221856:9151062,575824,122846 -k1,6367:21746132,24221856:-9151062 -) -(1,6367:21746132,24221856:9151062,452978,122846 -g1,6367:25266527,24221856 -g1,6367:26321663,24221856 -h1,6367:30893917,24221856:0,411205,112570 -) -k1,6367:31284106,24221856:386912 -k1,6368:31966991,24221856:0 -) -(1,6368:7246811,25063344:24720180,513147,126483 -(1,6367:7246811,25063344:0,452978,122846 -r1,6418:15694449,25063344:8447638,575824,122846 -k1,6367:7246811,25063344:-8447638 -) -(1,6367:7246811,25063344:8447638,452978,122846 -g1,6367:10767206,25063344 -g1,6367:11822342,25063344 -h1,6367:15691172,25063344:0,411205,112570 -) -g1,6367:16067348,25063344 -g1,6367:17878107,25063344 -g1,6367:20432045,25063344 -g1,6367:21650359,25063344 -(1,6367:21650359,25063344:0,435480,115847 -r1,6418:22712049,25063344:1061690,551327,115847 -k1,6367:21650359,25063344:-1061690 -) -(1,6367:21650359,25063344:1061690,435480,115847 -g1,6367:22357060,25063344 -h1,6367:22708772,25063344:0,411205,112570 -) -g1,6367:22911278,25063344 -g1,6367:23796669,25063344 -g1,6367:26261478,25063344 -g1,6367:28314721,25063344 -g1,6367:29705395,25063344 -k1,6368:31966991,25063344:71383 -g1,6368:31966991,25063344 -) -] -) -] -r1,6418:32583029,25779651:26214,5759457,0 -) -] -) -) -g1,6368:32583029,25189827 -) -h1,6368:6630773,25805865:0,0,0 -(1,6371:6630773,27155369:25952256,505283,126483 -h1,6370:6630773,27155369:983040,0,0 -k1,6370:9552648,27155369:155600 -k1,6370:10727333,27155369:155600 -k1,6370:14322918,27155369:155600 -k1,6370:15991744,27155369:155600 -k1,6370:16833506,27155369:155600 -k1,6370:17344966,27155369:155600 -k1,6370:20532916,27155369:155599 -k1,6370:23029462,27155369:155600 -k1,6370:23540922,27155369:155600 -k1,6370:25376865,27155369:155600 -k1,6370:26816971,27155369:155600 -k1,6370:27504068,27155369:155600 -k1,6370:28725939,27155369:155600 -k1,6370:29237399,27155369:155600 -(1,6370:29237399,27155369:0,452978,115847 -r1,6418:32409359,27155369:3171960,568825,115847 -k1,6370:29237399,27155369:-3171960 -) -(1,6370:29237399,27155369:3171960,452978,115847 -k1,6370:29237399,27155369:3277 -h1,6370:32406082,27155369:0,411205,112570 -) -k1,6370:32583029,27155369:0 -) -(1,6371:6630773,27996857:25952256,513147,126483 -k1,6370:7315637,27996857:226767 -k1,6370:8674867,27996857:226768 -k1,6370:9649400,27996857:226767 -k1,6370:13466229,27996857:226767 -k1,6370:14379158,27996857:226767 -k1,6370:15376629,27996857:226768 -(1,6370:15376629,27996857:0,452978,122846 -r1,6418:17845166,27996857:2468537,575824,122846 -k1,6370:15376629,27996857:-2468537 -) -(1,6370:15376629,27996857:2468537,452978,122846 -k1,6370:15376629,27996857:3277 -h1,6370:17841889,27996857:0,411205,112570 -) -k1,6370:18071933,27996857:226767 -k1,6370:20221526,27996857:226767 -k1,6370:21076128,27996857:226767 -k1,6370:22506137,27996857:226768 -k1,6370:24099985,27996857:226767 -k1,6370:25136122,27996857:226767 -k1,6370:27431205,27996857:226767 -k1,6370:28649533,27996857:226768 -k1,6370:30389526,27996857:226767 -k1,6370:31563944,27996857:226767 -k1,6370:32583029,27996857:0 -) -(1,6371:6630773,28838345:25952256,513147,126483 -g1,6370:8701055,28838345 -g1,6370:10091729,28838345 -g1,6370:11310043,28838345 -g1,6370:12657463,28838345 -g1,6370:14013402,28838345 -g1,6370:14744128,28838345 -g1,6370:17072622,28838345 -g1,6370:20861913,28838345 -g1,6370:21747304,28838345 -g1,6370:22965618,28838345 -k1,6371:32583029,28838345:7178161 -g1,6371:32583029,28838345 -) -v1,6373:6630773,30012539:0,393216,0 -(1,6387:6630773,35691138:25952256,6071815,196608 -g1,6387:6630773,35691138 -g1,6387:6630773,35691138 -g1,6387:6434165,35691138 -(1,6387:6434165,35691138:0,6071815,196608 -r1,6418:32779637,35691138:26345472,6268423,196608 -k1,6387:6434165,35691138:-26345472 -) -(1,6387:6434165,35691138:26345472,6071815,196608 -[1,6387:6630773,35691138:25952256,5875207,0 -(1,6375:6630773,30220157:25952256,404226,101187 -(1,6374:6630773,30220157:0,0,0 -g1,6374:6630773,30220157 -g1,6374:6630773,30220157 -g1,6374:6303093,30220157 -(1,6374:6303093,30220157:0,0,0 -) -g1,6374:6630773,30220157 -) -g1,6375:9792230,30220157 -g1,6375:10740668,30220157 -h1,6375:11056814,30220157:0,0,0 -k1,6375:32583030,30220157:21526216 -g1,6375:32583030,30220157 -) -(1,6376:6630773,30886335:25952256,404226,101187 -h1,6376:6630773,30886335:0,0,0 -g1,6376:7263065,30886335 -g1,6376:8211503,30886335 -k1,6376:8211503,30886335:0 -h1,6376:13585980,30886335:0,0,0 -k1,6376:32583028,30886335:18997048 -g1,6376:32583028,30886335 -) -(1,6377:6630773,31552513:25952256,388497,82312 -h1,6377:6630773,31552513:0,0,0 -g1,6377:6946919,31552513 -g1,6377:7263065,31552513 -g1,6377:7579211,31552513 -g1,6377:7895357,31552513 -g1,6377:8211503,31552513 -g1,6377:8527649,31552513 -g1,6377:8843795,31552513 -g1,6377:9159941,31552513 -g1,6377:9476087,31552513 -g1,6377:9792233,31552513 -g1,6377:10108379,31552513 -g1,6377:10424525,31552513 -k1,6377:10424525,31552513:0 -h1,6377:11056817,31552513:0,0,0 -k1,6377:32583029,31552513:21526212 -g1,6377:32583029,31552513 -) -(1,6378:6630773,32218691:25952256,404226,82312 -h1,6378:6630773,32218691:0,0,0 -g1,6378:6946919,32218691 -g1,6378:7263065,32218691 -g1,6378:7579211,32218691 -g1,6378:7895357,32218691 -g1,6378:8211503,32218691 -g1,6378:8527649,32218691 -g1,6378:8843795,32218691 -g1,6378:9159941,32218691 -g1,6378:9476087,32218691 -g1,6378:9792233,32218691 -g1,6378:10108379,32218691 -g1,6378:10424525,32218691 -g1,6378:11056817,32218691 -g1,6378:11689109,32218691 -k1,6378:11689109,32218691:0 -h1,6378:12321401,32218691:0,0,0 -k1,6378:32583029,32218691:20261628 -g1,6378:32583029,32218691 -) -(1,6379:6630773,32884869:25952256,404226,82312 -h1,6379:6630773,32884869:0,0,0 -g1,6379:6946919,32884869 -g1,6379:7263065,32884869 -g1,6379:7579211,32884869 -g1,6379:7895357,32884869 -g1,6379:8211503,32884869 -g1,6379:8527649,32884869 -g1,6379:8843795,32884869 -g1,6379:9159941,32884869 -g1,6379:9476087,32884869 -g1,6379:9792233,32884869 -g1,6379:10108379,32884869 -g1,6379:10424525,32884869 -g1,6379:11056817,32884869 -g1,6379:11689109,32884869 -k1,6379:11689109,32884869:0 -h1,6379:12321401,32884869:0,0,0 -k1,6379:32583029,32884869:20261628 -g1,6379:32583029,32884869 -) -(1,6380:6630773,33551047:25952256,388497,9436 -h1,6380:6630773,33551047:0,0,0 -g1,6380:6946919,33551047 -g1,6380:7263065,33551047 -g1,6380:7579211,33551047 -g1,6380:7895357,33551047 -g1,6380:8211503,33551047 -g1,6380:8527649,33551047 -g1,6380:8843795,33551047 -g1,6380:9159941,33551047 -g1,6380:9476087,33551047 -g1,6380:9792233,33551047 -g1,6380:10108379,33551047 -g1,6380:10424525,33551047 -h1,6380:10740671,33551047:0,0,0 -k1,6380:32583029,33551047:21842358 -g1,6380:32583029,33551047 -) -(1,6381:6630773,34217225:25952256,404226,76021 -h1,6381:6630773,34217225:0,0,0 -h1,6381:6946919,34217225:0,0,0 -k1,6381:32583029,34217225:25636110 -g1,6381:32583029,34217225 -) -(1,6382:6630773,34883403:25952256,404226,6290 -h1,6382:6630773,34883403:0,0,0 -h1,6382:6946919,34883403:0,0,0 -k1,6382:32583029,34883403:25636110 -g1,6382:32583029,34883403 -) -(1,6386:6630773,35615117:25952256,404226,76021 -(1,6384:6630773,35615117:0,0,0 -g1,6384:6630773,35615117 -g1,6384:6630773,35615117 -g1,6384:6303093,35615117 -(1,6384:6303093,35615117:0,0,0 -) -g1,6384:6630773,35615117 -) -g1,6386:7579210,35615117 -g1,6386:8843793,35615117 -h1,6386:9792230,35615117:0,0,0 -k1,6386:32583030,35615117:22790800 -g1,6386:32583030,35615117 -) -] -) -g1,6387:32583029,35691138 -g1,6387:6630773,35691138 -g1,6387:6630773,35691138 -g1,6387:32583029,35691138 -g1,6387:32583029,35691138 -) -h1,6387:6630773,35887746:0,0,0 -v1,6391:6630773,37745267:0,393216,0 -(1,6392:6630773,40864922:25952256,3512871,616038 -g1,6392:6630773,40864922 -(1,6392:6630773,40864922:25952256,3512871,616038 -(1,6392:6630773,41480960:25952256,4128909,0 -[1,6392:6630773,41480960:25952256,4128909,0 -(1,6392:6630773,41454746:25952256,4076481,0 -r1,6418:6656987,41454746:26214,4076481,0 -[1,6392:6656987,41454746:25899828,4076481,0 -(1,6392:6656987,40864922:25899828,2896833,0 -[1,6392:7246811,40864922:24720180,2896833,0 -(1,6392:7246811,39055463:24720180,1087374,134348 -k1,6391:8796058,39055463:339544 -k1,6391:12035571,39055463:339545 -k1,6391:14708197,39055463:339544 -k1,6391:16441692,39055463:339544 -k1,6391:17800322,39055463:339545 -k1,6391:19232351,39055463:339544 -k1,6391:20231188,39055463:339545 -k1,6391:21589817,39055463:339544 -k1,6391:23987191,39055463:339544 -k1,6391:27686767,39055463:339545 -k1,6391:30418375,39055463:339544 -k1,6391:31966991,39055463:0 -) -(1,6392:7246811,39896951:24720180,513147,126483 -k1,6391:10368528,39896951:417046 -k1,6391:11251535,39896951:417046 -k1,6391:12839054,39896951:417046 -k1,6391:14190644,39896951:417047 -(1,6391:14190644,39896951:0,452978,115847 -r1,6418:19472876,39896951:5282232,568825,115847 -k1,6391:14190644,39896951:-5282232 -) -(1,6391:14190644,39896951:5282232,452978,115847 -g1,6391:17711039,39896951 -g1,6391:18766175,39896951 -h1,6391:19469599,39896951:0,411205,112570 -) -k1,6391:20063592,39896951:417046 -(1,6391:20063592,39896951:0,452978,115847 -r1,6418:24994112,39896951:4930520,568825,115847 -k1,6391:20063592,39896951:-4930520 -) -(1,6391:20063592,39896951:4930520,452978,115847 -g1,6391:23583987,39896951 -g1,6391:24639123,39896951 -h1,6391:24990835,39896951:0,411205,112570 -) -k1,6391:25584828,39896951:417046 -(1,6391:25584828,39896951:0,452978,115847 -r1,6418:30867060,39896951:5282232,568825,115847 -k1,6391:25584828,39896951:-5282232 -) -(1,6391:25584828,39896951:5282232,452978,115847 -g1,6391:29105223,39896951 -g1,6391:30160359,39896951 -h1,6391:30863783,39896951:0,411205,112570 -) -k1,6391:31284106,39896951:417046 -k1,6392:31966991,39896951:0 -) -(1,6392:7246811,40738439:24720180,513147,126483 -(1,6391:7246811,40738439:0,452978,122846 -r1,6418:14991025,40738439:7744214,575824,122846 -k1,6391:7246811,40738439:-7744214 -) -(1,6391:7246811,40738439:7744214,452978,122846 -g1,6391:10767206,40738439 -g1,6391:11822342,40738439 -h1,6391:14987748,40738439:0,411205,112570 -) -g1,6391:15363924,40738439 -g1,6391:17174683,40738439 -g1,6391:19728621,40738439 -g1,6391:20946935,40738439 -(1,6391:20946935,40738439:0,435480,115847 -r1,6418:22008625,40738439:1061690,551327,115847 -k1,6391:20946935,40738439:-1061690 -) -(1,6391:20946935,40738439:1061690,435480,115847 -g1,6391:21653636,40738439 -h1,6391:22005348,40738439:0,411205,112570 -) -g1,6391:22207854,40738439 -g1,6391:23093245,40738439 -g1,6391:25558054,40738439 -g1,6391:27611297,40738439 -g1,6391:29001971,40738439 -k1,6392:31966991,40738439:774807 -g1,6392:31966991,40738439 -) -] -) -] -r1,6418:32583029,41454746:26214,4076481,0 -) -] -) -) -g1,6392:32583029,40864922 -) -h1,6392:6630773,41480960:0,0,0 -v1,6395:6630773,42830464:0,393216,0 -(1,6418:6630773,45116945:25952256,2679697,589824 -g1,6418:6630773,45116945 -(1,6418:6630773,45116945:25952256,2679697,589824 -(1,6418:6630773,45706769:25952256,3269521,0 -[1,6418:6630773,45706769:25952256,3269521,0 -(1,6418:6630773,45706769:25952256,3243307,0 -r1,6418:6656987,45706769:26214,3243307,0 -[1,6418:6656987,45706769:25899828,3243307,0 -(1,6418:6656987,45116945:25899828,2063659,0 -[1,6418:7246811,45116945:24720180,2063659,0 -(1,6397:7246811,44215171:24720180,1161885,196608 -(1,6395:7246811,44215171:0,1161885,196608 -r1,6418:8794447,44215171:1547636,1358493,196608 -k1,6395:7246811,44215171:-1547636 -) -(1,6395:7246811,44215171:1547636,1161885,196608 -) -k1,6395:9062497,44215171:268050 -k1,6395:10527233,44215171:268049 -k1,6395:14311945,44215171:268050 -k1,6395:15527646,44215171:268050 -k1,6395:16814780,44215171:268049 -k1,6395:19845173,44215171:268050 -k1,6395:22123868,44215171:268050 -k1,6395:23051209,44215171:268049 -k1,6395:24338344,44215171:268050 -k1,6395:27638745,44215171:268050 -k1,6395:28522832,44215171:268049 -k1,6395:29146742,44215171:268050 -(1,6395:29146742,44215171:0,452978,115847 -r1,6418:31966991,44215171:2820249,568825,115847 -k1,6395:29146742,44215171:-2820249 -) -(1,6395:29146742,44215171:2820249,452978,115847 -k1,6395:29146742,44215171:3277 -h1,6395:31963714,44215171:0,411205,112570 -) -k1,6395:31966991,44215171:0 -) -(1,6397:7246811,44990462:24720180,513147,126483 -k1,6395:10602425,44990462:169254 -k1,6395:11875961,44990462:169254 -k1,6395:12792982,44990462:169255 -k1,6395:16376006,44990462:169254 -k1,6395:20061922,44990462:169254 -k1,6395:20917338,44990462:169254 -k1,6395:21702630,44990462:169254 -k1,6395:22890970,44990462:169255 -k1,6395:24427305,44990462:169254 -k1,6395:25263715,44990462:169254 -(1,6395:25263715,44990462:0,459977,115847 -r1,6418:25973693,44990462:709978,575824,115847 -k1,6395:25263715,44990462:-709978 -) -(1,6395:25263715,44990462:709978,459977,115847 -k1,6395:25263715,44990462:3277 -h1,6395:25970416,44990462:0,411205,112570 -) -k1,6395:26316617,44990462:169254 -k1,6395:27677317,44990462:169255 -k1,6395:29226759,44990462:169254 -k1,6395:30500295,44990462:169254 -k1,6395:31966991,44990462:0 -) -] -) -] -r1,6418:32583029,45706769:26214,3243307,0 -) -] -) -) -g1,6418:32583029,45116945 -) -] -(1,6418:32583029,45706769:0,0,0 -g1,6418:32583029,45706769 -) -) -] -(1,6418:6630773,47279633:25952256,0,0 -h1,6418:6630773,47279633:25952256,0,0 -) -] -(1,6418:4262630,4025873:0,0,0 -[1,6418:-473656,4025873:0,0,0 -(1,6418:-473656,-710413:0,0,0 -(1,6418:-473656,-710413:0,0,0 -g1,6418:-473656,-710413 -) -g1,6418:-473656,-710413 -) -] -) -] -!26369 -}122 -Input:926:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:927:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:928:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:929:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:930:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:931:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:932:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:933:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:934:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:935:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:936:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:937:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:938:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:939:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:940:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:941:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:942:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:943:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:944:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:945:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:946:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:947:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:948:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:949:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:950:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:951:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:952:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!2469 -{123 -[1,6450:4262630,47279633:28320399,43253760,0 -(1,6450:4262630,4025873:0,0,0 -[1,6450:-473656,4025873:0,0,0 -(1,6450:-473656,-710413:0,0,0 -(1,6450:-473656,-644877:0,0,0 -k1,6450:-473656,-644877:-65536 -) -(1,6450:-473656,4736287:0,0,0 -k1,6450:-473656,4736287:5209943 -) -g1,6450:-473656,-710413 -) -] -) -[1,6450:6630773,47279633:25952256,43253760,0 -[1,6450:6630773,4812305:25952256,786432,0 -(1,6450:6630773,4812305:25952256,505283,134348 -(1,6450:6630773,4812305:25952256,505283,134348 -g1,6450:3078558,4812305 -[1,6450:3078558,4812305:0,0,0 -(1,6450:3078558,2439708:0,1703936,0 -k1,6450:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,6450:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,6450:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,6450:3078558,4812305:0,0,0 -(1,6450:3078558,2439708:0,1703936,0 -g1,6450:29030814,2439708 -g1,6450:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,6450:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,6450:37855564,2439708:1179648,16384,0 -) -) -k1,6450:3078556,2439708:-34777008 -) -] -[1,6450:3078558,4812305:0,0,0 -(1,6450:3078558,49800853:0,16384,2228224 -k1,6450:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,6450:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,6450:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,6450:3078558,4812305:0,0,0 -(1,6450:3078558,49800853:0,16384,2228224 -g1,6450:29030814,49800853 -g1,6450:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,6450:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,6450:37855564,49800853:1179648,16384,0 -) -) -k1,6450:3078556,49800853:-34777008 -) -] -g1,6450:6630773,4812305 -k1,6450:18771974,4812305:10945824 -g1,6450:20158715,4812305 -g1,6450:20807521,4812305 -g1,6450:24121676,4812305 -g1,6450:28605649,4812305 -g1,6450:30015328,4812305 -) -) -] -[1,6450:6630773,45706769:25952256,40108032,0 -(1,6450:6630773,45706769:25952256,40108032,0 -(1,6450:6630773,45706769:0,0,0 -g1,6450:6630773,45706769 -) -[1,6450:6630773,45706769:25952256,40108032,0 -v1,6418:6630773,6254097:0,393216,0 -(1,6418:6630773,16607065:25952256,10746184,616038 -g1,6418:6630773,16607065 -(1,6418:6630773,16607065:25952256,10746184,616038 -(1,6418:6630773,17223103:25952256,11362222,0 -[1,6418:6630773,17223103:25952256,11362222,0 -(1,6418:6630773,17196889:25952256,11336008,0 -r1,6450:6656987,17196889:26214,11336008,0 -[1,6418:6656987,17196889:25899828,11336008,0 -(1,6418:6656987,16607065:25899828,10156360,0 -[1,6418:7246811,16607065:24720180,10156360,0 -(1,6397:7246811,6963852:24720180,513147,126483 -k1,6395:8265662,6963852:271085 -k1,6395:10049973,6963852:271085 -k1,6395:11268709,6963852:271085 -k1,6395:11895654,6963852:271085 -k1,6395:13466318,6963852:271085 -k1,6395:15681856,6963852:271085 -k1,6395:16906490,6963852:271085 -k1,6395:18281856,6963852:271084 -k1,6395:19500592,6963852:271085 -k1,6395:22433094,6963852:271085 -k1,6395:24966482,6963852:271085 -k1,6395:26256652,6963852:271085 -k1,6395:29189154,6963852:271085 -k1,6395:31315563,6963852:271085 -k1,6395:31966991,6963852:0 -) -(1,6397:7246811,7630030:24720180,513147,134348 -g1,6395:9028079,7630030 -g1,6395:9583168,7630030 -g1,6395:12487723,7630030 -g1,6395:14384990,7630030 -g1,6395:15603304,7630030 -g1,6395:18068113,7630030 -g1,6395:19947685,7630030 -g1,6395:20678411,7630030 -g1,6395:23830037,7630030 -k1,6397:31966991,7630030:8136954 -g1,6397:31966991,7630030 -) -v1,6397:7246811,8820496:0,393216,0 -(1,6416:7246811,15886169:24720180,7458889,196608 -g1,6416:7246811,15886169 -g1,6416:7246811,15886169 -g1,6416:7050203,15886169 -(1,6416:7050203,15886169:0,7458889,196608 -r1,6450:32163599,15886169:25113396,7655497,196608 -k1,6416:7050203,15886169:-25113396 -) -(1,6416:7050203,15886169:25113396,7458889,196608 -[1,6416:7246811,15886169:24720180,7262281,0 -(1,6399:7246811,9028114:24720180,404226,107478 -(1,6398:7246811,9028114:0,0,0 -g1,6398:7246811,9028114 -g1,6398:7246811,9028114 -g1,6398:6919131,9028114 -(1,6398:6919131,9028114:0,0,0 -) -g1,6398:7246811,9028114 -) -g1,6399:10408268,9028114 -g1,6399:11356706,9028114 -h1,6399:12937434,9028114:0,0,0 -k1,6399:31966990,9028114:19029556 -g1,6399:31966990,9028114 -) -(1,6400:7246811,9694292:24720180,404226,107478 -h1,6400:7246811,9694292:0,0,0 -g1,6400:7879103,9694292 -g1,6400:8827541,9694292 -k1,6400:8827541,9694292:0 -h1,6400:14202018,9694292:0,0,0 -k1,6400:31966990,9694292:17764972 -g1,6400:31966990,9694292 -) -(1,6401:7246811,10360470:24720180,388497,82312 -h1,6401:7246811,10360470:0,0,0 -g1,6401:7562957,10360470 -g1,6401:7879103,10360470 -g1,6401:8195249,10360470 -g1,6401:8511395,10360470 -g1,6401:8827541,10360470 -g1,6401:9143687,10360470 -g1,6401:9459833,10360470 -g1,6401:9775979,10360470 -g1,6401:10092125,10360470 -g1,6401:10408271,10360470 -g1,6401:10724417,10360470 -g1,6401:11040563,10360470 -g1,6401:12305146,10360470 -g1,6401:12937438,10360470 -k1,6401:12937438,10360470:0 -h1,6401:13569730,10360470:0,0,0 -k1,6401:31966990,10360470:18397260 -g1,6401:31966990,10360470 -) -(1,6402:7246811,11026648:24720180,404226,82312 -h1,6402:7246811,11026648:0,0,0 -g1,6402:7562957,11026648 -g1,6402:7879103,11026648 -g1,6402:8195249,11026648 -g1,6402:8511395,11026648 -g1,6402:8827541,11026648 -g1,6402:9143687,11026648 -g1,6402:9459833,11026648 -g1,6402:9775979,11026648 -g1,6402:10092125,11026648 -g1,6402:10408271,11026648 -g1,6402:10724417,11026648 -g1,6402:11040563,11026648 -g1,6402:12305146,11026648 -g1,6402:12937438,11026648 -g1,6402:13569730,11026648 -g1,6402:14202022,11026648 -k1,6402:14202022,11026648:0 -h1,6402:14834314,11026648:0,0,0 -k1,6402:31966990,11026648:17132676 -g1,6402:31966990,11026648 -) -(1,6403:7246811,11692826:24720180,404226,82312 -h1,6403:7246811,11692826:0,0,0 -g1,6403:7562957,11692826 -g1,6403:7879103,11692826 -g1,6403:8195249,11692826 -g1,6403:8511395,11692826 -g1,6403:8827541,11692826 -g1,6403:9143687,11692826 -g1,6403:9459833,11692826 -g1,6403:9775979,11692826 -g1,6403:10092125,11692826 -g1,6403:10408271,11692826 -g1,6403:10724417,11692826 -g1,6403:11040563,11692826 -g1,6403:12937437,11692826 -g1,6403:13569729,11692826 -g1,6403:14202021,11692826 -g1,6403:14834313,11692826 -k1,6403:14834313,11692826:0 -h1,6403:15466605,11692826:0,0,0 -k1,6403:31966991,11692826:16500386 -g1,6403:31966991,11692826 -) -(1,6404:7246811,12359004:24720180,410518,107478 -h1,6404:7246811,12359004:0,0,0 -g1,6404:7562957,12359004 -g1,6404:7879103,12359004 -g1,6404:8195249,12359004 -g1,6404:8511395,12359004 -g1,6404:8827541,12359004 -g1,6404:9143687,12359004 -g1,6404:9459833,12359004 -g1,6404:9775979,12359004 -g1,6404:10092125,12359004 -g1,6404:10408271,12359004 -g1,6404:10724417,12359004 -g1,6404:11040563,12359004 -g1,6404:14518166,12359004 -g1,6404:16731186,12359004 -g1,6404:18628060,12359004 -g1,6404:22105662,12359004 -h1,6404:22737954,12359004:0,0,0 -k1,6404:31966991,12359004:9229037 -g1,6404:31966991,12359004 -) -(1,6405:7246811,13025182:24720180,404226,76021 -h1,6405:7246811,13025182:0,0,0 -h1,6405:7562957,13025182:0,0,0 -k1,6405:31966991,13025182:24404034 -g1,6405:31966991,13025182 -) -(1,6409:7246811,13756896:24720180,410518,107478 -(1,6407:7246811,13756896:0,0,0 -g1,6407:7246811,13756896 -g1,6407:7246811,13756896 -g1,6407:6919131,13756896 -(1,6407:6919131,13756896:0,0,0 -) -g1,6407:7246811,13756896 -) -g1,6409:8195248,13756896 -g1,6409:9459831,13756896 -g1,6409:10724414,13756896 -g1,6409:12937434,13756896 -g1,6409:14834308,13756896 -h1,6409:17363473,13756896:0,0,0 -k1,6409:31966991,13756896:14603518 -g1,6409:31966991,13756896 -) -(1,6411:7246811,15078434:24720180,404226,6290 -(1,6410:7246811,15078434:0,0,0 -g1,6410:7246811,15078434 -g1,6410:7246811,15078434 -g1,6410:6919131,15078434 -(1,6410:6919131,15078434:0,0,0 -) -g1,6410:7246811,15078434 -) -h1,6411:7562957,15078434:0,0,0 -k1,6411:31966991,15078434:24404034 -g1,6411:31966991,15078434 -) -(1,6415:7246811,15810148:24720180,404226,76021 -(1,6413:7246811,15810148:0,0,0 -g1,6413:7246811,15810148 -g1,6413:7246811,15810148 -g1,6413:6919131,15810148 -(1,6413:6919131,15810148:0,0,0 -) -g1,6413:7246811,15810148 -) -g1,6415:8195248,15810148 -g1,6415:9459831,15810148 -h1,6415:9775977,15810148:0,0,0 -k1,6415:31966991,15810148:22191014 -g1,6415:31966991,15810148 -) -] -) -g1,6416:31966991,15886169 -g1,6416:7246811,15886169 -g1,6416:7246811,15886169 -g1,6416:31966991,15886169 -g1,6416:31966991,15886169 -) -h1,6416:7246811,16082777:0,0,0 -] -) -] -r1,6450:32583029,17196889:26214,11336008,0 -) -] -) -) -g1,6418:32583029,16607065 -) -h1,6418:6630773,17223103:0,0,0 -v1,6421:6630773,18588879:0,393216,0 -(1,6444:6630773,35452497:25952256,17256834,616038 -g1,6444:6630773,35452497 -(1,6444:6630773,35452497:25952256,17256834,616038 -(1,6444:6630773,36068535:25952256,17872872,0 -[1,6444:6630773,36068535:25952256,17872872,0 -(1,6444:6630773,36042321:25952256,17820444,0 -r1,6450:6656987,36042321:26214,17820444,0 -[1,6444:6656987,36042321:25899828,17820444,0 -(1,6444:6656987,35452497:25899828,16640796,0 -[1,6444:7246811,35452497:24720180,16640796,0 -(1,6422:7246811,19973586:24720180,1161885,196608 -(1,6421:7246811,19973586:0,1161885,196608 -r1,6450:8794447,19973586:1547636,1358493,196608 -k1,6421:7246811,19973586:-1547636 -) -(1,6421:7246811,19973586:1547636,1161885,196608 -) -k1,6421:8964484,19973586:170037 -k1,6421:10331209,19973586:170038 -(1,6421:10331209,19973586:0,452978,115847 -r1,6450:13151458,19973586:2820249,568825,115847 -k1,6421:10331209,19973586:-2820249 -) -(1,6421:10331209,19973586:2820249,452978,115847 -k1,6421:10331209,19973586:3277 -h1,6421:13148181,19973586:0,411205,112570 -) -k1,6421:13321495,19973586:170037 -k1,6421:16677893,19973586:170038 -k1,6421:17952212,19973586:170037 -k1,6421:21332203,19973586:170038 -k1,6421:22449891,19973586:170037 -k1,6421:25108331,19973586:170038 -(1,6421:25108331,19973586:0,459977,115847 -r1,6450:28280292,19973586:3171961,575824,115847 -k1,6421:25108331,19973586:-3171961 -) -(1,6421:25108331,19973586:3171961,459977,115847 -g1,6421:26166744,19973586 -g1,6421:26870168,19973586 -h1,6421:28277015,19973586:0,411205,112570 -) -k1,6421:28450329,19973586:170037 -k1,6421:31966991,19973586:0 -) -(1,6422:7246811,20815074:24720180,505283,126483 -k1,6421:9209232,20815074:264383 -k1,6421:10239731,20815074:264383 -k1,6421:11523199,20815074:264383 -k1,6421:15150234,20815074:264383 -k1,6421:16518899,20815074:264383 -k1,6421:17531049,20815074:264384 -k1,6421:20885455,20815074:264383 -k1,6421:21911366,20815074:264383 -k1,6421:24933504,20815074:264383 -k1,6421:27208532,20815074:264383 -k1,6421:28155800,20815074:264383 -k1,6421:30835840,20815074:264383 -k1,6422:31966991,20815074:0 -) -(1,6422:7246811,21656562:24720180,505283,134348 -k1,6421:8603024,21656562:263728 -k1,6421:11645479,21656562:263728 -k1,6421:12670734,21656562:263727 -k1,6421:13953547,21656562:263728 -k1,6421:15870748,21656562:263728 -k1,6421:17499591,21656562:263728 -k1,6421:18960005,21656562:263727 -k1,6421:22462522,21656562:263728 -k1,6421:23257747,21656562:263728 -k1,6421:25171672,21656562:263728 -k1,6421:27790763,21656562:263727 -k1,6421:29245936,21656562:263728 -k1,6421:31966991,21656562:0 -) -(1,6422:7246811,22498050:24720180,513147,134348 -k1,6421:9144593,22498050:227925 -k1,6421:10569205,22498050:227925 -k1,6421:14102110,22498050:227924 -k1,6421:14989327,22498050:227925 -k1,6421:16236337,22498050:227925 -k1,6421:17770395,22498050:227925 -(1,6421:17770395,22498050:0,452978,115847 -r1,6450:20590644,22498050:2820249,568825,115847 -k1,6421:17770395,22498050:-2820249 -) -(1,6421:17770395,22498050:2820249,452978,115847 -k1,6421:17770395,22498050:3277 -h1,6421:20587367,22498050:0,411205,112570 -) -k1,6421:20818569,22498050:227925 -k1,6421:23707911,22498050:227925 -k1,6421:25791159,22498050:227924 -k1,6421:27717122,22498050:227925 -k1,6421:30231598,22498050:227925 -k1,6422:31966991,22498050:0 -) -(1,6422:7246811,23339538:24720180,505283,134348 -(1,6421:7246811,23339538:0,459977,115847 -r1,6450:10418772,23339538:3171961,575824,115847 -k1,6421:7246811,23339538:-3171961 -) -(1,6421:7246811,23339538:3171961,459977,115847 -g1,6421:8305224,23339538 -g1,6421:9008648,23339538 -h1,6421:10415495,23339538:0,411205,112570 -) -k1,6421:10628643,23339538:209871 -k1,6421:13611998,23339538:209871 -k1,6421:16019946,23339538:209870 -k1,6421:18030091,23339538:209871 -k1,6421:19570343,23339538:209871 -k1,6421:21350457,23339538:209871 -k1,6421:23056515,23339538:209871 -k1,6421:25001779,23339538:209871 -(1,6421:25001779,23339538:0,452978,115847 -r1,6450:27822028,23339538:2820249,568825,115847 -k1,6421:25001779,23339538:-2820249 -) -(1,6421:25001779,23339538:2820249,452978,115847 -k1,6421:25001779,23339538:3277 -h1,6421:27818751,23339538:0,411205,112570 -) -k1,6421:28031898,23339538:209870 -k1,6421:28946936,23339538:209871 -k1,6421:30900720,23339538:209871 -k1,6421:31966991,23339538:0 -) -(1,6422:7246811,24181026:24720180,513147,126483 -k1,6421:8415411,24181026:203255 -k1,6421:11111001,24181026:203256 -k1,6421:12708207,24181026:203255 -k1,6421:13699860,24181026:203255 -k1,6421:14995600,24181026:203255 -k1,6421:16535790,24181026:203256 -k1,6421:18005201,24181026:203255 -k1,6421:19227541,24181026:203255 -k1,6421:21080994,24181026:203256 -k1,6421:23749713,24181026:203255 -k1,6421:25453742,24181026:203255 -k1,6421:27170223,24181026:203255 -k1,6421:29241910,24181026:203256 -k1,6421:31315563,24181026:203255 -k1,6421:31966991,24181026:0 -) -(1,6422:7246811,25022514:24720180,505283,115847 -k1,6421:11239791,25022514:154536 -k1,6421:12318385,25022514:154536 -k1,6421:13492006,25022514:154536 -k1,6421:15348512,25022514:154536 -k1,6421:17283006,25022514:154536 -k1,6421:18831493,25022514:154536 -k1,6421:22211056,25022514:154536 -k1,6421:24062974,25022514:154536 -(1,6421:24062974,25022514:0,452978,115847 -r1,6450:26883223,25022514:2820249,568825,115847 -k1,6421:24062974,25022514:-2820249 -) -(1,6421:24062974,25022514:2820249,452978,115847 -k1,6421:24062974,25022514:3277 -h1,6421:26879946,25022514:0,411205,112570 -) -k1,6421:27037759,25022514:154536 -k1,6421:27723792,25022514:154536 -k1,6421:29748726,25022514:154536 -k1,6421:30554690,25022514:154536 -k1,6421:31966991,25022514:0 -) -(1,6422:7246811,25864002:24720180,505283,7863 -g1,6421:8637485,25864002 -k1,6422:31966991,25864002:19491062 -g1,6422:31966991,25864002 -) -v1,6424:7246811,27054468:0,393216,0 -(1,6441:7246811,34731601:24720180,8070349,196608 -g1,6441:7246811,34731601 -g1,6441:7246811,34731601 -g1,6441:7050203,34731601 -(1,6441:7050203,34731601:0,8070349,196608 -r1,6450:32163599,34731601:25113396,8266957,196608 -k1,6441:7050203,34731601:-25113396 -) -(1,6441:7050203,34731601:25113396,8070349,196608 -[1,6441:7246811,34731601:24720180,7873741,0 -(1,6426:7246811,27262086:24720180,404226,107478 -(1,6425:7246811,27262086:0,0,0 -g1,6425:7246811,27262086 -g1,6425:7246811,27262086 -g1,6425:6919131,27262086 -(1,6425:6919131,27262086:0,0,0 -) -g1,6425:7246811,27262086 -) -g1,6426:10408268,27262086 -g1,6426:11356706,27262086 -h1,6426:12937434,27262086:0,0,0 -k1,6426:31966990,27262086:19029556 -g1,6426:31966990,27262086 -) -(1,6427:7246811,27928264:24720180,410518,107478 -h1,6427:7246811,27928264:0,0,0 -g1,6427:8195248,27928264 -g1,6427:11672851,27928264 -g1,6427:12621288,27928264 -g1,6427:14834308,27928264 -h1,6427:15150454,27928264:0,0,0 -k1,6427:31966990,27928264:16816536 -g1,6427:31966990,27928264 -) -(1,6428:7246811,28594442:24720180,404226,6290 -h1,6428:7246811,28594442:0,0,0 -g1,6428:7562957,28594442 -g1,6428:7879103,28594442 -g1,6428:8511395,28594442 -g1,6428:9459833,28594442 -h1,6428:9775979,28594442:0,0,0 -k1,6428:31966991,28594442:22191012 -g1,6428:31966991,28594442 -) -(1,6429:7246811,29260620:24720180,410518,107478 -h1,6429:7246811,29260620:0,0,0 -g1,6429:7879103,29260620 -g1,6429:9459832,29260620 -g1,6429:10408269,29260620 -g1,6429:13885872,29260620 -g1,6429:14834309,29260620 -g1,6429:17047329,29260620 -h1,6429:17363475,29260620:0,0,0 -k1,6429:31966991,29260620:14603516 -g1,6429:31966991,29260620 -) -(1,6430:7246811,29926798:24720180,404226,76021 -h1,6430:7246811,29926798:0,0,0 -g1,6430:7562957,29926798 -g1,6430:7879103,29926798 -g1,6430:8511395,29926798 -g1,6430:9459833,29926798 -g1,6430:10092125,29926798 -g1,6430:10724417,29926798 -h1,6430:11040563,29926798:0,0,0 -k1,6430:31966991,29926798:20926428 -g1,6430:31966991,29926798 -) -(1,6431:7246811,30592976:24720180,410518,107478 -h1,6431:7246811,30592976:0,0,0 -g1,6431:7879103,30592976 -g1,6431:9459832,30592976 -g1,6431:10408269,30592976 -g1,6431:13885872,30592976 -g1,6431:14834309,30592976 -g1,6431:17363475,30592976 -h1,6431:17679621,30592976:0,0,0 -k1,6431:31966991,30592976:14287370 -g1,6431:31966991,30592976 -) -(1,6432:7246811,31259154:24720180,404226,76021 -h1,6432:7246811,31259154:0,0,0 -g1,6432:7562957,31259154 -g1,6432:7879103,31259154 -g1,6432:8511395,31259154 -g1,6432:9459833,31259154 -g1,6432:10092125,31259154 -g1,6432:10724417,31259154 -h1,6432:11040563,31259154:0,0,0 -k1,6432:31966991,31259154:20926428 -g1,6432:31966991,31259154 -) -(1,6433:7246811,31925332:24720180,404226,76021 -h1,6433:7246811,31925332:0,0,0 -g1,6433:7879103,31925332 -g1,6433:9459832,31925332 -h1,6433:9775978,31925332:0,0,0 -k1,6433:31966990,31925332:22191012 -g1,6433:31966990,31925332 -) -(1,6434:7246811,32591510:24720180,404226,9436 -h1,6434:7246811,32591510:0,0,0 -g1,6434:7562957,32591510 -g1,6434:7879103,32591510 -g1,6434:8511395,32591510 -g1,6434:9459833,32591510 -h1,6434:9775979,32591510:0,0,0 -k1,6434:31966991,32591510:22191012 -g1,6434:31966991,32591510 -) -(1,6435:7246811,33257688:24720180,404226,76021 -h1,6435:7246811,33257688:0,0,0 -h1,6435:7562957,33257688:0,0,0 -k1,6435:31966991,33257688:24404034 -g1,6435:31966991,33257688 -) -(1,6436:7246811,33923866:24720180,404226,6290 -h1,6436:7246811,33923866:0,0,0 -h1,6436:7562957,33923866:0,0,0 -k1,6436:31966991,33923866:24404034 -g1,6436:31966991,33923866 -) -(1,6440:7246811,34655580:24720180,404226,76021 -(1,6438:7246811,34655580:0,0,0 -g1,6438:7246811,34655580 -g1,6438:7246811,34655580 -g1,6438:6919131,34655580 -(1,6438:6919131,34655580:0,0,0 -) -g1,6438:7246811,34655580 -) -g1,6440:8195248,34655580 -g1,6440:9459831,34655580 -h1,6440:10408268,34655580:0,0,0 -k1,6440:31966992,34655580:21558724 -g1,6440:31966992,34655580 -) -] -) -g1,6441:31966991,34731601 -g1,6441:7246811,34731601 -g1,6441:7246811,34731601 -g1,6441:31966991,34731601 -g1,6441:31966991,34731601 -) -h1,6441:7246811,34928209:0,0,0 -] -) -] -r1,6450:32583029,36042321:26214,17820444,0 -) -] -) -) -g1,6444:32583029,35452497 -) -h1,6444:6630773,36068535:0,0,0 -(1,6446:6630773,37696455:25952256,505283,115847 -(1,6446:6630773,37696455:2809528,485622,11795 -g1,6446:6630773,37696455 -g1,6446:9440301,37696455 -) -g1,6446:13214519,37696455 -(1,6446:13214519,37696455:0,459977,115847 -r1,6450:16034768,37696455:2820249,575824,115847 -k1,6446:13214519,37696455:-2820249 -) -(1,6446:13214519,37696455:2820249,459977,115847 -k1,6446:13214519,37696455:3277 -h1,6446:16031491,37696455:0,411205,112570 -) -k1,6446:32583029,37696455:16548261 -g1,6446:32583029,37696455 -) -(1,6450:6630773,38931159:25952256,513147,134348 -k1,6448:10252481,38931159:183689 -k1,6448:12031316,38931159:183689 -k1,6448:12746502,38931159:183689 -k1,6448:13286051,38931159:183689 -k1,6448:16855986,38931159:183690 -k1,6448:17698967,38931159:183689 -k1,6448:18901741,38931159:183689 -k1,6448:19500257,38931159:183673 -k1,6448:22699913,38931159:183689 -k1,6448:23955772,38931159:183690 -k1,6448:25493435,38931159:183689 -k1,6448:27654345,38931159:183689 -k1,6448:28785685,38931159:183689 -k1,6448:31227089,38931159:183689 -k1,6450:32583029,38931159:0 -) -(1,6450:6630773,39772647:25952256,513147,134348 -k1,6448:7996325,39772647:153136 -k1,6448:9645647,39772647:153135 -k1,6448:11083289,39772647:153136 -k1,6448:12573359,39772647:153136 -k1,6448:15138875,39772647:153136 -k1,6448:17135538,39772647:153135 -k1,6448:18731121,39772647:153136 -k1,6448:21520115,39772647:153136 -k1,6448:24978232,39772647:153136 -k1,6448:26203536,39772647:153135 -k1,6448:27422943,39772647:153136 -k1,6448:30913172,39772647:153136 -k1,6448:32583029,39772647:0 -) -(1,6450:6630773,40614135:25952256,513147,126483 -k1,6449:10268326,40614135:199534 -k1,6449:14061198,40614135:199533 -k1,6449:17336337,40614135:199534 -k1,6449:18067367,40614135:199533 -k1,6449:20183829,40614135:199534 -k1,6449:21144890,40614135:199533 -k1,6449:23412740,40614135:199534 -k1,6449:24271565,40614135:199533 -k1,6449:27069602,40614135:199534 -(1,6449:27069602,40614135:0,459977,115847 -r1,6450:29889851,40614135:2820249,575824,115847 -k1,6449:27069602,40614135:-2820249 -) -(1,6449:27069602,40614135:2820249,459977,115847 -k1,6449:27069602,40614135:3277 -h1,6449:29886574,40614135:0,411205,112570 -) -k1,6449:30089384,40614135:199533 -k1,6449:32583029,40614135:0 -) -(1,6450:6630773,41455623:25952256,513147,134348 -k1,6449:7562930,41455623:245995 -k1,6449:8164786,41455623:245996 -k1,6449:10283800,41455623:245995 -k1,6449:12535197,41455623:245995 -k1,6449:14162036,41455623:245995 -k1,6449:17103528,41455623:245996 -k1,6449:19032488,41455623:245995 -k1,6449:20933267,41455623:245995 -k1,6449:24755562,41455623:245995 -k1,6449:25357418,41455623:245996 -(1,6449:25357418,41455623:0,452978,122846 -r1,6450:27825955,41455623:2468537,575824,122846 -k1,6449:25357418,41455623:-2468537 -) -(1,6449:25357418,41455623:2468537,452978,122846 -k1,6449:25357418,41455623:3277 -h1,6449:27822678,41455623:0,411205,112570 -) -k1,6449:28071950,41455623:245995 -k1,6449:30295822,41455623:245995 -k1,6449:32583029,41455623:0 -) -(1,6450:6630773,42297111:25952256,513147,126483 -k1,6449:7799919,42297111:150061 -k1,6449:9792851,42297111:150060 -k1,6449:10602204,42297111:150061 -k1,6449:11108125,42297111:150061 -k1,6449:12449631,42297111:150061 -k1,6449:16087517,42297111:150060 -(1,6449:16087517,42297111:0,414482,115847 -r1,6450:17500918,42297111:1413401,530329,115847 -k1,6449:16087517,42297111:-1413401 -) -(1,6449:16087517,42297111:1413401,414482,115847 -k1,6449:16087517,42297111:3277 -h1,6449:17497641,42297111:0,411205,112570 -) -k1,6449:18031743,42297111:150061 -k1,6449:18952507,42297111:150061 -k1,6449:22542552,42297111:150060 -k1,6449:23344041,42297111:150061 -k1,6449:24586587,42297111:150061 -k1,6449:25684299,42297111:150061 -(1,6449:25684299,42297111:0,414482,115847 -r1,6450:27097700,42297111:1413401,530329,115847 -k1,6449:25684299,42297111:-1413401 -) -(1,6449:25684299,42297111:1413401,414482,115847 -k1,6449:25684299,42297111:3277 -h1,6449:27094423,42297111:0,411205,112570 -) -k1,6449:27247760,42297111:150060 -k1,6449:29095203,42297111:150061 -k1,6450:32583029,42297111:0 -) -(1,6450:6630773,43138599:25952256,513147,126483 -(1,6449:6630773,43138599:0,414482,115847 -r1,6450:7692462,43138599:1061689,530329,115847 -k1,6449:6630773,43138599:-1061689 -) -(1,6449:6630773,43138599:1061689,414482,115847 -k1,6449:6630773,43138599:3277 -h1,6449:7689185,43138599:0,411205,112570 -) -k1,6449:8278227,43138599:205001 -k1,6449:9674674,43138599:205002 -k1,6449:10650378,43138599:205001 -k1,6449:14295364,43138599:205001 -k1,6449:15151794,43138599:205002 -k1,6449:16449280,43138599:205001 -k1,6449:17601933,43138599:205002 -(1,6449:17601933,43138599:0,414482,115847 -r1,6450:19367046,43138599:1765113,530329,115847 -k1,6449:17601933,43138599:-1765113 -) -(1,6449:17601933,43138599:1765113,414482,115847 -k1,6449:17601933,43138599:3277 -h1,6449:19363769,43138599:0,411205,112570 -) -k1,6449:19572047,43138599:205001 -k1,6449:21474430,43138599:205001 -k1,6449:25167258,43138599:205002 -(1,6449:25167258,43138599:0,414482,115847 -r1,6450:25877236,43138599:709978,530329,115847 -k1,6449:25167258,43138599:-709978 -) -(1,6449:25167258,43138599:709978,414482,115847 -k1,6449:25167258,43138599:3277 -h1,6449:25873959,43138599:0,411205,112570 -) -k1,6449:26463001,43138599:205001 -k1,6449:27412491,43138599:205001 -k1,6449:29069115,43138599:205002 -k1,6449:31023272,43138599:205001 -k1,6450:32583029,43138599:0 -) -(1,6450:6630773,43980087:25952256,513147,134348 -k1,6449:8088340,43980087:190101 -k1,6449:10023009,43980087:190101 -k1,6449:11232194,43980087:190100 -k1,6449:13904143,43980087:190101 -k1,6449:15113329,43980087:190101 -k1,6449:16983773,43980087:190101 -k1,6449:19932283,43980087:190100 -k1,6449:20738422,43980087:190101 -k1,6449:21947608,43980087:190101 -k1,6449:24916436,43980087:190101 -k1,6449:27084414,43980087:190101 -k1,6449:27806011,43980087:190100 -k1,6449:29763618,43980087:190101 -k1,6449:31521340,43980087:190101 -(1,6449:31521340,43980087:0,414482,115847 -r1,6450:32583029,43980087:1061689,530329,115847 -k1,6449:31521340,43980087:-1061689 -) -(1,6449:31521340,43980087:1061689,414482,115847 -k1,6449:31521340,43980087:3277 -h1,6449:32579752,43980087:0,411205,112570 -) -k1,6449:32583029,43980087:0 -) -(1,6450:6630773,44821575:25952256,513147,134348 -k1,6449:7281229,44821575:176631 -(1,6449:7281229,44821575:0,414482,115847 -r1,6450:8694630,44821575:1413401,530329,115847 -k1,6449:7281229,44821575:-1413401 -) -(1,6449:7281229,44821575:1413401,414482,115847 -k1,6449:7281229,44821575:3277 -h1,6449:8691353,44821575:0,411205,112570 -) -k1,6449:8871260,44821575:176630 -k1,6449:9579388,44821575:176631 -(1,6449:9579388,44821575:0,414482,115847 -r1,6450:10992789,44821575:1413401,530329,115847 -k1,6449:9579388,44821575:-1413401 -) -(1,6449:9579388,44821575:1413401,414482,115847 -k1,6449:9579388,44821575:3277 -h1,6449:10989512,44821575:0,411205,112570 -) -k1,6449:11169420,44821575:176631 -k1,6449:12537496,44821575:176631 -k1,6449:14281747,44821575:176630 -(1,6449:14281747,44821575:0,414482,115847 -r1,6450:14991725,44821575:709978,530329,115847 -k1,6449:14281747,44821575:-709978 -) -(1,6449:14281747,44821575:709978,414482,115847 -k1,6449:14281747,44821575:3277 -h1,6449:14988448,44821575:0,411205,112570 -) -k1,6449:15168356,44821575:176631 -k1,6449:15818812,44821575:176631 -(1,6449:15818812,44821575:0,414482,115847 -r1,6450:17232213,44821575:1413401,530329,115847 -k1,6449:15818812,44821575:-1413401 -) -(1,6449:15818812,44821575:1413401,414482,115847 -k1,6449:15818812,44821575:3277 -h1,6449:17228936,44821575:0,411205,112570 -) -k1,6449:17408844,44821575:176631 -k1,6449:18116971,44821575:176630 -(1,6449:18116971,44821575:0,414482,115847 -r1,6450:19882084,44821575:1765113,530329,115847 -k1,6449:18116971,44821575:-1765113 -) -(1,6449:18116971,44821575:1765113,414482,115847 -k1,6449:18116971,44821575:3277 -h1,6449:19878807,44821575:0,411205,112570 -) -k1,6449:20232385,44821575:176631 -k1,6449:21306859,44821575:176631 -k1,6449:23138274,44821575:176631 -k1,6449:26717533,44821575:176630 -k1,6449:27998446,44821575:176631 -k1,6449:28922843,44821575:176631 -k1,6449:30231281,44821575:176631 -k1,6449:30822732,44821575:176608 -k1,6450:32583029,44821575:0 -) -(1,6450:6630773,45663063:25952256,513147,134348 -k1,6449:8436894,45663063:167066 -k1,6449:11604855,45663063:167067 -k1,6449:12791006,45663063:167066 -k1,6449:15670607,45663063:167066 -k1,6449:18319522,45663063:167067 -k1,6449:19114423,45663063:167066 -k1,6449:20300574,45663063:167066 -k1,6449:21834721,45663063:167066 -k1,6449:22661080,45663063:167067 -k1,6449:25136324,45663063:167066 -k1,6449:27508677,45663063:167066 -k1,6449:28361906,45663063:167067 -k1,6449:31931601,45663063:167066 -k1,6449:32583029,45663063:0 -) -] -(1,6450:32583029,45706769:0,0,0 -g1,6450:32583029,45706769 -) -) -] -(1,6450:6630773,47279633:25952256,0,0 -h1,6450:6630773,47279633:25952256,0,0 -) -] -(1,6450:4262630,4025873:0,0,0 -[1,6450:-473656,4025873:0,0,0 -(1,6450:-473656,-710413:0,0,0 -(1,6450:-473656,-710413:0,0,0 -g1,6450:-473656,-710413 -) -g1,6450:-473656,-710413 -) -] -) -] -!27691 -}123 -Input:953:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:954:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:955:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:956:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:957:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:958:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:959:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:960:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:961:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:962:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:963:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:964:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:965:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:966:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:967:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:968:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1468 -{124 -[1,6536:4262630,47279633:28320399,43253760,0 -(1,6536:4262630,4025873:0,0,0 -[1,6536:-473656,4025873:0,0,0 -(1,6536:-473656,-710413:0,0,0 -(1,6536:-473656,-644877:0,0,0 -k1,6536:-473656,-644877:-65536 -) -(1,6536:-473656,4736287:0,0,0 -k1,6536:-473656,4736287:5209943 -) -g1,6536:-473656,-710413 -) -] -) -[1,6536:6630773,47279633:25952256,43253760,0 -[1,6536:6630773,4812305:25952256,786432,0 -(1,6536:6630773,4812305:25952256,513147,126483 -(1,6536:6630773,4812305:25952256,513147,126483 -g1,6536:3078558,4812305 -[1,6536:3078558,4812305:0,0,0 -(1,6536:3078558,2439708:0,1703936,0 -k1,6536:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,6536:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,6536:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,6536:3078558,4812305:0,0,0 -(1,6536:3078558,2439708:0,1703936,0 -g1,6536:29030814,2439708 -g1,6536:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,6536:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,6536:37855564,2439708:1179648,16384,0 -) -) -k1,6536:3078556,2439708:-34777008 -) -] -[1,6536:3078558,4812305:0,0,0 -(1,6536:3078558,49800853:0,16384,2228224 -k1,6536:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,6536:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,6536:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,6536:3078558,4812305:0,0,0 -(1,6536:3078558,49800853:0,16384,2228224 -g1,6536:29030814,49800853 -g1,6536:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,6536:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,6536:37855564,49800853:1179648,16384,0 -) -) -k1,6536:3078556,49800853:-34777008 -) -] -g1,6536:6630773,4812305 -g1,6536:6630773,4812305 -g1,6536:9175536,4812305 -g1,6536:9990803,4812305 -g1,6536:13137841,4812305 -g1,6536:14654344,4812305 -k1,6536:31387652,4812305:16733308 -) -) -] -[1,6536:6630773,45706769:25952256,40108032,0 -(1,6536:6630773,45706769:25952256,40108032,0 -(1,6536:6630773,45706769:0,0,0 -g1,6536:6630773,45706769 -) -[1,6536:6630773,45706769:25952256,40108032,0 -(1,6450:6630773,6254097:25952256,513147,134348 -k1,6449:10420938,6254097:179131 -(1,6449:10420938,6254097:0,414482,115847 -r1,6536:11482627,6254097:1061689,530329,115847 -k1,6449:10420938,6254097:-1061689 -) -(1,6449:10420938,6254097:1061689,414482,115847 -k1,6449:10420938,6254097:3277 -h1,6449:11479350,6254097:0,411205,112570 -) -k1,6449:11661758,6254097:179131 -k1,6449:13032334,6254097:179131 -(1,6449:13032334,6254097:0,414482,115847 -r1,6536:13742312,6254097:709978,530329,115847 -k1,6449:13032334,6254097:-709978 -) -(1,6449:13032334,6254097:709978,414482,115847 -k1,6449:13032334,6254097:3277 -h1,6449:13739035,6254097:0,411205,112570 -) -k1,6449:14095113,6254097:179131 -k1,6449:17133580,6254097:179131 -k1,6449:18445173,6254097:179131 -k1,6449:19976966,6254097:179130 -k1,6449:21818745,6254097:179131 -k1,6449:22463837,6254097:179131 -k1,6449:24023156,6254097:179131 -k1,6449:25193847,6254097:179131 -k1,6449:27693608,6254097:179131 -k1,6449:29315186,6254097:179131 -k1,6449:30513402,6254097:179131 -k1,6449:32583029,6254097:0 -) -(1,6450:6630773,7095585:25952256,505283,134348 -k1,6449:8832527,7095585:223877 -k1,6449:11835132,7095585:223878 -k1,6449:12820537,7095585:223877 -k1,6449:14063500,7095585:223878 -k1,6449:17727362,7095585:223877 -k1,6449:20156527,7095585:223878 -k1,6449:21066566,7095585:223877 -k1,6449:24362771,7095585:223877 -k1,6449:25238077,7095585:223878 -(1,6449:25238077,7095585:0,414482,115847 -r1,6536:26651478,7095585:1413401,530329,115847 -k1,6449:25238077,7095585:-1413401 -) -(1,6449:25238077,7095585:1413401,414482,115847 -k1,6449:25238077,7095585:3277 -h1,6449:26648201,7095585:0,411205,112570 -) -k1,6449:27049025,7095585:223877 -k1,6449:28159605,7095585:223878 -k1,6449:31242818,7095585:223877 -k1,6449:32583029,7095585:0 -) -(1,6450:6630773,7937073:25952256,513147,134348 -g1,6449:9111310,7937073 -g1,6449:9961967,7937073 -(1,6449:9961967,7937073:0,414482,115847 -r1,6536:11375368,7937073:1413401,530329,115847 -k1,6449:9961967,7937073:-1413401 -) -(1,6449:9961967,7937073:1413401,414482,115847 -k1,6449:9961967,7937073:3277 -h1,6449:11372091,7937073:0,411205,112570 -) -g1,6449:11748267,7937073 -g1,6449:13414192,7937073 -g1,6449:14087246,7937073 -(1,6449:14087246,7937073:0,414482,115847 -r1,6536:15148935,7937073:1061689,530329,115847 -k1,6449:14087246,7937073:-1061689 -) -(1,6449:14087246,7937073:1061689,414482,115847 -k1,6449:14087246,7937073:3277 -h1,6449:15145658,7937073:0,411205,112570 -) -g1,6449:15348164,7937073 -g1,6449:17757267,7937073 -(1,6449:17757267,7937073:0,414482,115847 -r1,6536:18467245,7937073:709978,530329,115847 -k1,6449:17757267,7937073:-709978 -) -(1,6449:17757267,7937073:709978,414482,115847 -k1,6449:17757267,7937073:3277 -h1,6449:18463968,7937073:0,411205,112570 -) -g1,6449:18666474,7937073 -g1,6449:19857263,7937073 -g1,6449:22080899,7937073 -g1,6449:23722575,7937073 -(1,6449:23722575,7937073:0,414482,115847 -r1,6536:25135976,7937073:1413401,530329,115847 -k1,6449:23722575,7937073:-1413401 -) -(1,6449:23722575,7937073:1413401,414482,115847 -k1,6449:23722575,7937073:3277 -h1,6449:25132699,7937073:0,411205,112570 -) -k1,6450:32583029,7937073:7273383 -g1,6450:32583029,7937073 -) -(1,6452:6630773,8778561:25952256,513147,134348 -h1,6451:6630773,8778561:983040,0,0 -k1,6451:8998898,8778561:188398 -k1,6451:10537337,8778561:188397 -k1,6451:12375276,8778561:188398 -k1,6451:13511325,8778561:188398 -(1,6451:13511325,8778561:0,459977,115847 -r1,6536:16331574,8778561:2820249,575824,115847 -k1,6451:13511325,8778561:-2820249 -) -(1,6451:13511325,8778561:2820249,459977,115847 -k1,6451:13511325,8778561:3277 -h1,6451:16328297,8778561:0,411205,112570 -) -k1,6451:16519972,8778561:188398 -k1,6451:17239866,8778561:188397 -k1,6451:19630274,8778561:188398 -k1,6451:20470100,8778561:188398 -k1,6451:21943003,8778561:188397 -k1,6451:23079052,8778561:188398 -(1,6451:23079052,8778561:0,459977,115847 -r1,6536:26251013,8778561:3171961,575824,115847 -k1,6451:23079052,8778561:-3171961 -) -(1,6451:23079052,8778561:3171961,459977,115847 -g1,6451:24137465,8778561 -g1,6451:24840889,8778561 -h1,6451:26247736,8778561:0,411205,112570 -) -k1,6451:26439411,8778561:188398 -k1,6451:28703334,8778561:188398 -k1,6451:29701101,8778561:188397 -k1,6451:31387652,8778561:188398 -h1,6451:32583029,8778561:0,0,0 -k1,6451:32583029,8778561:0 -) -(1,6452:6630773,9620049:25952256,513147,134348 -k1,6451:7988788,9620049:285846 -k1,6451:10646382,9620049:285846 -k1,6451:11548267,9620049:285847 -k1,6451:14217657,9620049:285846 -k1,6451:15154931,9620049:285846 -k1,6451:16459862,9620049:285846 -k1,6451:19938622,9620049:285846 -k1,6451:23178176,9620049:285846 -k1,6451:24123315,9620049:285847 -k1,6451:26891009,9620049:285846 -k1,6451:28245747,9620049:285846 -k1,6451:29550678,9620049:285846 -k1,6451:32583029,9620049:0 -) -(1,6452:6630773,10461537:25952256,505283,126483 -k1,6451:10262997,10461537:192239 -k1,6451:10986732,10461537:192238 -k1,6451:14240158,10461537:192239 -k1,6451:15045158,10461537:192238 -k1,6451:16986553,10461537:192239 -k1,6451:19793023,10461537:192239 -(1,6451:19793023,10461537:0,435480,115847 -r1,6536:20151289,10461537:358266,551327,115847 -k1,6451:19793023,10461537:-358266 -) -(1,6451:19793023,10461537:358266,435480,115847 -k1,6451:19793023,10461537:3277 -h1,6451:20148012,10461537:0,411205,112570 -) -k1,6451:20343527,10461537:192238 -k1,6451:23153929,10461537:192239 -k1,6451:25231639,10461537:192239 -k1,6451:27104220,10461537:192238 -k1,6451:28428921,10461537:192239 -k1,6451:29368925,10461537:192238 -k1,6451:31966991,10461537:192239 -k1,6451:32583029,10461537:0 -) -(1,6452:6630773,11303025:25952256,505283,126483 -g1,6451:7849087,11303025 -g1,6451:10827043,11303025 -g1,6451:13004149,11303025 -g1,6451:13816140,11303025 -g1,6451:15764525,11303025 -g1,6451:18577985,11303025 -(1,6451:18577985,11303025:0,435480,115847 -r1,6536:18936251,11303025:358266,551327,115847 -k1,6451:18577985,11303025:-358266 -) -(1,6451:18577985,11303025:358266,435480,115847 -k1,6451:18577985,11303025:3277 -h1,6451:18932974,11303025:0,411205,112570 -) -g1,6451:19309150,11303025 -g1,6451:20699824,11303025 -g1,6451:21623881,11303025 -k1,6452:32583029,11303025:9976108 -g1,6452:32583029,11303025 -) -(1,6454:6630773,12144513:25952256,513147,134348 -h1,6453:6630773,12144513:983040,0,0 -k1,6453:8244175,12144513:160469 -k1,6453:8936140,12144513:160468 -k1,6453:12452052,12144513:160469 -k1,6453:13263949,12144513:160469 -k1,6453:14861622,12144513:160468 -k1,6453:18424720,12144513:160469 -k1,6453:19236616,12144513:160468 -(1,6453:19236616,12144513:0,459977,115847 -r1,6536:21353441,12144513:2116825,575824,115847 -k1,6453:19236616,12144513:-2116825 -) -(1,6453:19236616,12144513:2116825,459977,115847 -k1,6453:19236616,12144513:3277 -h1,6453:21350164,12144513:0,411205,112570 -) -k1,6453:21513910,12144513:160469 -k1,6453:22435907,12144513:160469 -k1,6453:25384277,12144513:160468 -k1,6453:26498295,12144513:160469 -k1,6453:27938682,12144513:160469 -k1,6453:28455010,12144513:160468 -k1,6453:29921612,12144513:160469 -k1,6453:32583029,12144513:0 -) -(1,6454:6630773,12986001:25952256,513147,134348 -g1,6453:8223953,12986001 -g1,6453:10581938,12986001 -g1,6453:14183796,12986001 -g1,6453:15034453,12986001 -g1,6453:17243671,12986001 -g1,6453:18461985,12986001 -g1,6453:19753699,12986001 -g1,6453:20612220,12986001 -g1,6453:21830534,12986001 -k1,6454:32583029,12986001:7883329 -g1,6454:32583029,12986001 -) -v1,6456:6630773,13992015:0,393216,0 -(1,6464:6630773,15673546:25952256,2074747,196608 -g1,6464:6630773,15673546 -g1,6464:6630773,15673546 -g1,6464:6434165,15673546 -(1,6464:6434165,15673546:0,2074747,196608 -r1,6536:32779637,15673546:26345472,2271355,196608 -k1,6464:6434165,15673546:-26345472 -) -(1,6464:6434165,15673546:26345472,2074747,196608 -[1,6464:6630773,15673546:25952256,1878139,0 -(1,6458:6630773,14199633:25952256,404226,101187 -(1,6457:6630773,14199633:0,0,0 -g1,6457:6630773,14199633 -g1,6457:6630773,14199633 -g1,6457:6303093,14199633 -(1,6457:6303093,14199633:0,0,0 -) -g1,6457:6630773,14199633 -) -g1,6458:9159939,14199633 -g1,6458:10108377,14199633 -g1,6458:12637544,14199633 -g1,6458:14850564,14199633 -g1,6458:16747439,14199633 -h1,6458:18328168,14199633:0,0,0 -k1,6458:32583029,14199633:14254861 -g1,6458:32583029,14199633 -) -(1,6459:6630773,14865811:25952256,410518,101187 -h1,6459:6630773,14865811:0,0,0 -g1,6459:10424522,14865811 -g1,6459:11056814,14865811 -g1,6459:13902126,14865811 -g1,6459:15166709,14865811 -g1,6459:15799001,14865811 -g1,6459:16747439,14865811 -g1,6459:17695876,14865811 -g1,6459:18328168,14865811 -k1,6459:18328168,14865811:0 -h1,6459:19276606,14865811:0,0,0 -k1,6459:32583029,14865811:13306423 -g1,6459:32583029,14865811 -) -(1,6463:6630773,15597525:25952256,404226,76021 -(1,6461:6630773,15597525:0,0,0 -g1,6461:6630773,15597525 -g1,6461:6630773,15597525 -g1,6461:6303093,15597525 -(1,6461:6303093,15597525:0,0,0 -) -g1,6461:6630773,15597525 -) -g1,6463:7579210,15597525 -g1,6463:8843793,15597525 -g1,6463:9159939,15597525 -g1,6463:9792231,15597525 -g1,6463:10740668,15597525 -g1,6463:11056814,15597525 -g1,6463:11689106,15597525 -g1,6463:12005252,15597525 -h1,6463:12321398,15597525:0,0,0 -k1,6463:32583030,15597525:20261632 -g1,6463:32583030,15597525 -) -] -) -g1,6464:32583029,15673546 -g1,6464:6630773,15673546 -g1,6464:6630773,15673546 -g1,6464:32583029,15673546 -g1,6464:32583029,15673546 -) -h1,6464:6630773,15870154:0,0,0 -(1,6468:6630773,17051478:25952256,505283,134348 -h1,6467:6630773,17051478:983040,0,0 -k1,6467:8439020,17051478:197372 -k1,6467:11347616,17051478:197372 -k1,6467:12564073,17051478:197372 -k1,6467:14363145,17051478:197372 -k1,6467:17337933,17051478:197372 -k1,6467:19372935,17051478:197372 -k1,6467:20101803,17051478:197371 -k1,6467:20950603,17051478:197372 -k1,6467:22623190,17051478:197372 -k1,6467:23506724,17051478:197372 -k1,6467:24474799,17051478:197372 -k1,6467:27744499,17051478:197372 -k1,6467:30147158,17051478:197372 -k1,6467:30995958,17051478:197372 -(1,6467:30995958,17051478:0,414482,115847 -r1,6536:32409359,17051478:1413401,530329,115847 -k1,6467:30995958,17051478:-1413401 -) -(1,6467:30995958,17051478:1413401,414482,115847 -k1,6467:30995958,17051478:3277 -h1,6467:32406082,17051478:0,411205,112570 -) -k1,6467:32583029,17051478:0 -) -(1,6468:6630773,17892966:25952256,513147,126483 -k1,6467:7865846,17892966:215988 -k1,6467:9924706,17892966:215988 -k1,6467:10799986,17892966:215988 -k1,6467:11371833,17892966:215987 -k1,6467:15341723,17892966:215988 -k1,6467:18786670,17892966:215988 -k1,6467:19812028,17892966:215988 -k1,6467:21047101,17892966:215988 -k1,6467:22232366,17892966:215988 -k1,6467:23076189,17892966:215988 -k1,6467:24311261,17892966:215987 -k1,6467:25833382,17892966:215988 -k1,6467:28710787,17892966:215988 -k1,6467:29795127,17892966:215988 -k1,6467:32583029,17892966:0 -) -(1,6468:6630773,18734454:25952256,513147,126483 -g1,6467:7849087,18734454 -g1,6467:10753642,18734454 -g1,6467:12963516,18734454 -g1,6467:14110396,18734454 -g1,6467:14665485,18734454 -g1,6467:17016261,18734454 -g1,6467:20520471,18734454 -g1,6467:21371128,18734454 -g1,6467:22854863,18734454 -g1,6467:25832819,18734454 -g1,6467:26793576,18734454 -g1,6467:27407648,18734454 -g1,6467:30302373,18734454 -(1,6467:30302373,18734454:0,452978,115847 -r1,6536:32067486,18734454:1765113,568825,115847 -k1,6467:30302373,18734454:-1765113 -) -(1,6467:30302373,18734454:1765113,452978,115847 -k1,6467:30302373,18734454:3277 -h1,6467:32064209,18734454:0,411205,112570 -) -k1,6468:32583029,18734454:341873 -g1,6468:32583029,18734454 -) -v1,6470:6630773,19740468:0,393216,0 -(1,6478:6630773,21406270:25952256,2059018,196608 -g1,6478:6630773,21406270 -g1,6478:6630773,21406270 -g1,6478:6434165,21406270 -(1,6478:6434165,21406270:0,2059018,196608 -r1,6536:32779637,21406270:26345472,2255626,196608 -k1,6478:6434165,21406270:-26345472 -) -(1,6478:6434165,21406270:26345472,2059018,196608 -[1,6478:6630773,21406270:25952256,1862410,0 -(1,6472:6630773,19932357:25952256,388497,9436 -(1,6471:6630773,19932357:0,0,0 -g1,6471:6630773,19932357 -g1,6471:6630773,19932357 -g1,6471:6303093,19932357 -(1,6471:6303093,19932357:0,0,0 -) -g1,6471:6630773,19932357 -) -g1,6472:8211502,19932357 -g1,6472:9159940,19932357 -k1,6472:9159940,19932357:0 -h1,6472:10740669,19932357:0,0,0 -k1,6472:32583029,19932357:21842360 -g1,6472:32583029,19932357 -) -(1,6473:6630773,20598535:25952256,410518,82312 -h1,6473:6630773,20598535:0,0,0 -g1,6473:10424521,20598535 -g1,6473:11056813,20598535 -g1,6473:12005251,20598535 -g1,6473:14218272,20598535 -h1,6473:15799000,20598535:0,0,0 -k1,6473:32583028,20598535:16784028 -g1,6473:32583028,20598535 -) -(1,6477:6630773,21330249:25952256,404226,76021 -(1,6475:6630773,21330249:0,0,0 -g1,6475:6630773,21330249 -g1,6475:6630773,21330249 -g1,6475:6303093,21330249 -(1,6475:6303093,21330249:0,0,0 -) -g1,6475:6630773,21330249 -) -g1,6477:7579210,21330249 -g1,6477:8843793,21330249 -g1,6477:9476085,21330249 -g1,6477:10108377,21330249 -g1,6477:10740669,21330249 -g1,6477:11372961,21330249 -g1,6477:12005253,21330249 -g1,6477:12637545,21330249 -h1,6477:12953691,21330249:0,0,0 -k1,6477:32583029,21330249:19629338 -g1,6477:32583029,21330249 -) -] -) -g1,6478:32583029,21406270 -g1,6478:6630773,21406270 -g1,6478:6630773,21406270 -g1,6478:32583029,21406270 -g1,6478:32583029,21406270 -) -h1,6478:6630773,21602878:0,0,0 -v1,6482:6630773,23124038:0,393216,0 -(1,6497:6630773,34311350:25952256,11580528,616038 -g1,6497:6630773,34311350 -(1,6497:6630773,34311350:25952256,11580528,616038 -(1,6497:6630773,34927388:25952256,12196566,0 -[1,6497:6630773,34927388:25952256,12196566,0 -(1,6497:6630773,34901174:25952256,12144138,0 -r1,6536:6656987,34901174:26214,12144138,0 -[1,6497:6656987,34901174:25899828,12144138,0 -(1,6497:6656987,34311350:25899828,10964490,0 -[1,6497:7246811,34311350:24720180,10964490,0 -(1,6483:7246811,24434234:24720180,1087374,126483 -k1,6482:8721232,24434234:264718 -k1,6482:10702994,24434234:264719 -k1,6482:14194705,24434234:264718 -k1,6482:17451142,24434234:264718 -k1,6482:18367289,24434234:264719 -k1,6482:19974840,24434234:264718 -k1,6482:21807179,24434234:264718 -k1,6482:23465849,24434234:264719 -k1,6482:24086427,24434234:264718 -k1,6482:25484263,24434234:264718 -k1,6482:28874394,24434234:264719 -k1,6482:30947906,24434234:264718 -k1,6482:31966991,24434234:0 -) -(1,6483:7246811,25275722:24720180,505283,126483 -k1,6482:10453071,25275722:214541 -k1,6482:12536043,25275722:214541 -k1,6482:14243494,25275722:214541 -k1,6482:15628508,25275722:214541 -k1,6482:19507822,25275722:214541 -k1,6482:21019320,25275722:214540 -k1,6482:24012588,25275722:214541 -k1,6482:26237774,25275722:214541 -k1,6482:27443875,25275722:214541 -k1,6482:29207032,25275722:214541 -k1,6482:30801761,25275722:214541 -k1,6482:31966991,25275722:0 -) -(1,6483:7246811,26117210:24720180,505283,126483 -k1,6482:8138538,26117210:263892 -k1,6482:11242104,26117210:263891 -k1,6482:13435376,26117210:263892 -k1,6482:15158098,26117210:263891 -k1,6482:16752371,26117210:263892 -k1,6482:20007981,26117210:263891 -k1,6482:20923301,26117210:263892 -k1,6482:22378637,26117210:263891 -k1,6482:24344499,26117210:263892 -k1,6482:27238350,26117210:263891 -k1,6482:29373295,26117210:263892 -k1,6482:30265021,26117210:263891 -k1,6482:31966991,26117210:0 -) -(1,6483:7246811,26958698:24720180,513147,126483 -g1,6482:9574649,26958698 -g1,6482:11116711,26958698 -g1,6482:12709891,26958698 -g1,6482:13928205,26958698 -g1,6482:15623621,26958698 -g1,6482:17315760,26958698 -g1,6482:18685462,26958698 -g1,6482:20335658,26958698 -g1,6482:24199660,26958698 -g1,6482:25729270,26958698 -(1,6482:25729270,26958698:0,459977,115847 -r1,6536:27846095,26958698:2116825,575824,115847 -k1,6482:25729270,26958698:-2116825 -) -(1,6482:25729270,26958698:2116825,459977,115847 -k1,6482:25729270,26958698:3277 -h1,6482:27842818,26958698:0,411205,112570 -) -g1,6482:28045324,26958698 -k1,6483:31966991,26958698:1821238 -g1,6483:31966991,26958698 -) -v1,6485:7246811,28149164:0,393216,0 -(1,6494:7246811,31773130:24720180,4017182,196608 -g1,6494:7246811,31773130 -g1,6494:7246811,31773130 -g1,6494:7050203,31773130 -(1,6494:7050203,31773130:0,4017182,196608 -r1,6536:32163599,31773130:25113396,4213790,196608 -k1,6494:7050203,31773130:-25113396 -) -(1,6494:7050203,31773130:25113396,4017182,196608 -[1,6494:7246811,31773130:24720180,3820574,0 -(1,6487:7246811,28341053:24720180,388497,9436 -(1,6486:7246811,28341053:0,0,0 -g1,6486:7246811,28341053 -g1,6486:7246811,28341053 -g1,6486:6919131,28341053 -(1,6486:6919131,28341053:0,0,0 -) -g1,6486:7246811,28341053 -) -g1,6487:7879103,28341053 -g1,6487:8827541,28341053 -h1,6487:10092124,28341053:0,0,0 -k1,6487:31966992,28341053:21874868 -g1,6487:31966992,28341053 -) -(1,6488:7246811,29007231:24720180,410518,82312 -h1,6488:7246811,29007231:0,0,0 -g1,6488:10092122,29007231 -g1,6488:10724414,29007231 -g1,6488:11672852,29007231 -g1,6488:12621290,29007231 -k1,6488:12621290,29007231:0 -h1,6488:13569728,29007231:0,0,0 -k1,6488:31966992,29007231:18397264 -g1,6488:31966992,29007231 -) -(1,6489:7246811,29673409:24720180,410518,82312 -h1,6489:7246811,29673409:0,0,0 -g1,6489:10092122,29673409 -g1,6489:10724414,29673409 -g1,6489:11672852,29673409 -g1,6489:12305144,29673409 -g1,6489:12937436,29673409 -g1,6489:13885874,29673409 -g1,6489:14518166,29673409 -g1,6489:15150458,29673409 -h1,6489:15782750,29673409:0,0,0 -k1,6489:31966991,29673409:16184241 -g1,6489:31966991,29673409 -) -(1,6490:7246811,30339587:24720180,410518,101187 -h1,6490:7246811,30339587:0,0,0 -g1,6490:11356705,30339587 -g1,6490:11988997,30339587 -g1,6490:13253581,30339587 -g1,6490:13885873,30339587 -g1,6490:14518165,30339587 -g1,6490:15466603,30339587 -g1,6490:16098895,30339587 -g1,6490:16731187,30339587 -g1,6490:17679625,30339587 -g1,6490:18311917,30339587 -k1,6490:18311917,30339587:41419 -h1,6490:20250210,30339587:0,0,0 -k1,6490:31966991,30339587:11716781 -g1,6490:31966991,30339587 -) -(1,6491:7246811,31005765:24720180,410518,107478 -h1,6491:7246811,31005765:0,0,0 -g1,6491:13253581,31005765 -g1,6491:13885873,31005765 -g1,6491:14518165,31005765 -g1,6491:15466603,31005765 -g1,6491:16098895,31005765 -g1,6491:16731187,31005765 -g1,6491:17679625,31005765 -g1,6491:18311917,31005765 -g1,6491:19892646,31005765 -g1,6491:21473375,31005765 -k1,6491:21473375,31005765:41419 -h1,6491:23411668,31005765:0,0,0 -k1,6491:31966991,31005765:8555323 -g1,6491:31966991,31005765 -) -(1,6492:7246811,31671943:24720180,410518,101187 -h1,6492:7246811,31671943:0,0,0 -g1,6492:10724414,31671943 -g1,6492:11356706,31671943 -g1,6492:11988998,31671943 -g1,6492:12937436,31671943 -g1,6492:13569728,31671943 -g1,6492:14202020,31671943 -g1,6492:15150458,31671943 -g1,6492:15782750,31671943 -g1,6492:16731187,31671943 -k1,6492:16731187,31671943:39846 -h1,6492:19300198,31671943:0,0,0 -k1,6492:31966991,31671943:12666793 -g1,6492:31966991,31671943 -) -] -) -g1,6494:31966991,31773130 -g1,6494:7246811,31773130 -g1,6494:7246811,31773130 -g1,6494:31966991,31773130 -g1,6494:31966991,31773130 -) -h1,6494:7246811,31969738:0,0,0 -(1,6497:7246811,33335514:24720180,513147,134348 -h1,6496:7246811,33335514:983040,0,0 -k1,6496:10112124,33335514:330380 -k1,6496:10908464,33335514:330379 -k1,6496:12409317,33335514:330380 -k1,6496:14269962,33335514:330379 -k1,6496:15251770,33335514:330380 -k1,6496:17863457,33335514:330379 -k1,6496:19652668,33335514:330380 -k1,6496:24638069,33335514:330379 -k1,6496:25635605,33335514:330380 -(1,6496:25635605,33335514:0,452978,122846 -r1,6536:28104142,33335514:2468537,575824,122846 -k1,6496:25635605,33335514:-2468537 -) -(1,6496:25635605,33335514:2468537,452978,122846 -k1,6496:25635605,33335514:3277 -h1,6496:28100865,33335514:0,411205,112570 -) -k1,6496:28434521,33335514:330379 -k1,6496:30775546,33335514:330380 -k1,6496:31966991,33335514:0 -) -(1,6497:7246811,34177002:24720180,505283,134348 -g1,6496:9957380,34177002 -g1,6496:12483792,34177002 -g1,6496:13708004,34177002 -g1,6496:16185920,34177002 -h1,6496:17156508,34177002:0,0,0 -g1,6496:17355737,34177002 -g1,6496:18364336,34177002 -g1,6496:20061718,34177002 -h1,6496:20858636,34177002:0,0,0 -k1,6497:31966991,34177002:10934685 -g1,6497:31966991,34177002 -) -] -) -] -r1,6536:32583029,34901174:26214,12144138,0 -) -] -) -) -g1,6497:32583029,34311350 -) -h1,6497:6630773,34927388:0,0,0 -v1,6500:6630773,36108712:0,393216,0 -(1,6536:6630773,45116945:25952256,9401449,589824 -g1,6536:6630773,45116945 -(1,6536:6630773,45116945:25952256,9401449,589824 -(1,6536:6630773,45706769:25952256,9991273,0 -[1,6536:6630773,45706769:25952256,9991273,0 -(1,6536:6630773,45706769:25952256,9965059,0 -r1,6536:6656987,45706769:26214,9965059,0 -[1,6536:6656987,45706769:25899828,9965059,0 -(1,6536:6656987,45116945:25899828,8785411,0 -[1,6536:7246811,45116945:24720180,8785411,0 -(1,6501:7246811,37417070:24720180,1085536,298548 -(1,6500:7246811,37417070:0,1085536,298548 -r1,6536:8753226,37417070:1506415,1384084,298548 -k1,6500:7246811,37417070:-1506415 -) -(1,6500:7246811,37417070:1506415,1085536,298548 -) -k1,6500:8997274,37417070:244048 -k1,6500:9869157,37417070:244048 -k1,6500:11132289,37417070:244047 -k1,6500:12743418,37417070:244048 -k1,6500:13654622,37417070:244048 -(1,6500:13654622,37417070:0,459977,115847 -r1,6536:16474871,37417070:2820249,575824,115847 -k1,6500:13654622,37417070:-2820249 -) -(1,6500:13654622,37417070:2820249,459977,115847 -k1,6500:13654622,37417070:3277 -h1,6500:16471594,37417070:0,411205,112570 -) -k1,6500:16892589,37417070:244048 -k1,6500:18155721,37417070:244047 -k1,6500:20413035,37417070:244048 -k1,6500:21316375,37417070:244048 -k1,6500:22579508,37417070:244048 -k1,6500:25602282,37417070:244047 -k1,6500:27526673,37417070:244048 -k1,6500:28302218,37417070:244048 -k1,6500:31966991,37417070:0 -) -(1,6501:7246811,38258558:24720180,513147,134348 -k1,6500:8264866,38258558:256527 -k1,6500:9540477,38258558:256526 -k1,6500:11810270,38258558:256527 -k1,6500:12726088,38258558:256526 -k1,6500:14001700,38258558:256527 -k1,6500:16327853,38258558:256526 -k1,6500:18562257,38258558:256527 -k1,6500:21024071,38258558:256527 -k1,6500:21966759,38258558:256526 -k1,6500:22993989,38258558:256527 -k1,6500:26322843,38258558:256526 -k1,6500:27230798,38258558:256527 -k1,6500:28275722,38258558:256526 -k1,6500:29838382,38258558:256527 -k1,6500:31966991,38258558:0 -) -(1,6501:7246811,39100046:24720180,513147,126483 -k1,6500:10715868,39100046:188325 -k1,6500:13270043,39100046:188325 -(1,6500:13270043,39100046:0,414482,115847 -r1,6536:14683444,39100046:1413401,530329,115847 -k1,6500:13270043,39100046:-1413401 -) -(1,6500:13270043,39100046:1413401,414482,115847 -k1,6500:13270043,39100046:3277 -h1,6500:14680167,39100046:0,411205,112570 -) -k1,6500:15252533,39100046:188325 -k1,6500:15928436,39100046:188315 -k1,6500:18855511,39100046:188325 -k1,6500:21547967,39100046:188325 -k1,6500:22267789,39100046:188325 -k1,6500:23107542,39100046:188325 -k1,6500:24388353,39100046:188326 -k1,6500:24932538,39100046:188325 -k1,6500:28153214,39100046:188325 -k1,6500:29626045,39100046:188325 -k1,6500:31966991,39100046:0 -) -(1,6501:7246811,39941534:24720180,513147,134348 -k1,6500:7788658,39941534:185987 -(1,6500:7788658,39941534:0,452978,122846 -r1,6536:10257195,39941534:2468537,575824,122846 -k1,6500:7788658,39941534:-2468537 -) -(1,6500:7788658,39941534:2468537,452978,122846 -k1,6500:7788658,39941534:3277 -h1,6500:10253918,39941534:0,411205,112570 -) -k1,6500:10443181,39941534:185986 -k1,6500:12607045,39941534:185987 -k1,6500:13452323,39941534:185986 -k1,6500:15651576,39941534:185987 -k1,6500:17167944,39941534:185987 -k1,6500:20415117,39941534:185986 -k1,6500:21885610,39941534:185987 -k1,6500:22529694,39941534:185987 -k1,6500:23848142,39941534:185986 -k1,6500:24781895,39941534:185987 -k1,6500:27605050,39941534:185986 -k1,6500:30320727,39941534:185987 -k1,6501:31966991,39941534:0 -) -(1,6501:7246811,40783022:24720180,513147,134348 -k1,6500:9441811,40783022:225643 -k1,6500:11872741,40783022:225643 -k1,6500:12749812,40783022:225643 -k1,6500:13994540,40783022:225643 -k1,6500:15922153,40783022:225643 -k1,6500:18276405,40783022:225643 -k1,6500:22113082,40783022:225643 -k1,6500:24704575,40783022:225643 -(1,6500:24704575,40783022:0,414482,115847 -r1,6536:25766264,40783022:1061689,530329,115847 -k1,6500:24704575,40783022:-1061689 -) -(1,6500:24704575,40783022:1061689,414482,115847 -k1,6500:24704575,40783022:3277 -h1,6500:25762987,40783022:0,411205,112570 -) -k1,6500:25991907,40783022:225643 -k1,6500:27408995,40783022:225643 -(1,6500:27408995,40783022:0,414482,115847 -r1,6536:28118973,40783022:709978,530329,115847 -k1,6500:27408995,40783022:-709978 -) -(1,6500:27408995,40783022:709978,414482,115847 -k1,6500:27408995,40783022:3277 -h1,6500:28115696,40783022:0,411205,112570 -) -k1,6500:28551710,40783022:225643 -k1,6500:29768913,40783022:225643 -k1,6500:31966991,40783022:0 -) -(1,6501:7246811,41624510:24720180,513147,134348 -k1,6500:10419736,41624510:238223 -k1,6500:11467330,41624510:238224 -k1,6500:14564889,41624510:238223 -k1,6500:15935575,41624510:238224 -k1,6500:17526461,41624510:238223 -k1,6500:19601004,41624510:238224 -k1,6500:22672348,41624510:238223 -k1,6500:23526609,41624510:238223 -k1,6500:24120693,41624510:238224 -k1,6500:27137643,41624510:238223 -k1,6500:29056210,41624510:238224 -k1,6500:29953725,41624510:238223 -k1,6500:31966991,41624510:0 -) -(1,6501:7246811,42465998:24720180,513147,134348 -k1,6500:8834529,42465998:257337 -k1,6500:10485817,42465998:257337 -k1,6500:11762239,42465998:257337 -k1,6500:15237394,42465998:257337 -k1,6500:18363897,42465998:257337 -k1,6500:19280526,42465998:257337 -k1,6500:20556949,42465998:257338 -k1,6500:23122464,42465998:257337 -k1,6500:25585088,42465998:257337 -k1,6500:26493853,42465998:257337 -(1,6500:26493853,42465998:0,414482,115847 -r1,6536:27555542,42465998:1061689,530329,115847 -k1,6500:26493853,42465998:-1061689 -) -(1,6500:26493853,42465998:1061689,414482,115847 -k1,6500:26493853,42465998:3277 -h1,6500:27552265,42465998:0,411205,112570 -) -k1,6500:27812879,42465998:257337 -k1,6500:29261661,42465998:257337 -(1,6500:29261661,42465998:0,414482,115847 -r1,6536:29971639,42465998:709978,530329,115847 -k1,6500:29261661,42465998:-709978 -) -(1,6500:29261661,42465998:709978,414482,115847 -k1,6500:29261661,42465998:3277 -h1,6500:29968362,42465998:0,411205,112570 -) -k1,6500:30228976,42465998:257337 -k1,6500:31966991,42465998:0 -) -(1,6501:7246811,43307486:24720180,513147,134348 -k1,6500:10796301,43307486:256961 -k1,6500:11951104,43307486:256960 -k1,6500:13114428,43307486:256961 -k1,6500:14574630,43307486:256961 -k1,6500:15593119,43307486:256961 -k1,6500:18630116,43307486:256960 -k1,6500:20622470,43307486:256961 -k1,6500:22949058,43307486:256961 -k1,6500:25514197,43307486:256961 -k1,6500:26430449,43307486:256960 -k1,6500:29449753,43307486:256961 -k1,6500:31966991,43307486:0 -) -(1,6501:7246811,44148974:24720180,505283,134348 -k1,6500:8711868,44148974:211353 -k1,6500:10027504,44148974:211354 -k1,6500:11727180,44148974:211353 -k1,6500:13332484,44148974:211353 -k1,6500:14562923,44148974:211354 -k1,6500:17765995,44148974:211353 -k1,6500:20019450,44148974:211353 -k1,6500:22589445,44148974:211354 -k1,6500:24181642,44148974:211353 -k1,6500:25563468,44148974:211353 -k1,6500:29439595,44148974:211354 -k1,6500:30947906,44148974:211353 -k1,6500:31966991,44148974:0 -) -(1,6501:7246811,44990462:24720180,505283,126483 -g1,6500:10224767,44990462 -g1,6500:12434641,44990462 -g1,6500:13625430,44990462 -g1,6500:15373275,44990462 -g1,6500:16952692,44990462 -k1,6501:31966991,44990462:13849069 -g1,6501:31966991,44990462 -) -] -) -] -r1,6536:32583029,45706769:26214,9965059,0 -) -] -) -) -g1,6536:32583029,45116945 -) -] -(1,6536:32583029,45706769:0,0,0 -g1,6536:32583029,45706769 -) -) -] -(1,6536:6630773,47279633:25952256,0,0 -h1,6536:6630773,47279633:25952256,0,0 -) -] -(1,6536:4262630,4025873:0,0,0 -[1,6536:-473656,4025873:0,0,0 -(1,6536:-473656,-710413:0,0,0 -(1,6536:-473656,-710413:0,0,0 -g1,6536:-473656,-710413 -) -g1,6536:-473656,-710413 -) -] -) -] -!30056 -}124 -Input:969:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:970:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:971:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:972:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:973:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:974:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:975:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:976:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:977:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:978:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:979:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:980:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:981:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1195 -{125 -[1,6561:4262630,47279633:28320399,43253760,0 -(1,6561:4262630,4025873:0,0,0 -[1,6561:-473656,4025873:0,0,0 -(1,6561:-473656,-710413:0,0,0 -(1,6561:-473656,-644877:0,0,0 -k1,6561:-473656,-644877:-65536 -) -(1,6561:-473656,4736287:0,0,0 -k1,6561:-473656,4736287:5209943 -) -g1,6561:-473656,-710413 -) -] -) -[1,6561:6630773,47279633:25952256,43253760,0 -[1,6561:6630773,4812305:25952256,786432,0 -(1,6561:6630773,4812305:25952256,505283,134348 -(1,6561:6630773,4812305:25952256,505283,134348 -g1,6561:3078558,4812305 -[1,6561:3078558,4812305:0,0,0 -(1,6561:3078558,2439708:0,1703936,0 -k1,6561:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,6561:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,6561:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,6561:3078558,4812305:0,0,0 -(1,6561:3078558,2439708:0,1703936,0 -g1,6561:29030814,2439708 -g1,6561:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,6561:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,6561:37855564,2439708:1179648,16384,0 -) -) -k1,6561:3078556,2439708:-34777008 -) -] -[1,6561:3078558,4812305:0,0,0 -(1,6561:3078558,49800853:0,16384,2228224 -k1,6561:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,6561:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,6561:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,6561:3078558,4812305:0,0,0 -(1,6561:3078558,49800853:0,16384,2228224 -g1,6561:29030814,49800853 -g1,6561:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,6561:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,6561:37855564,49800853:1179648,16384,0 -) -) -k1,6561:3078556,49800853:-34777008 -) -] -g1,6561:6630773,4812305 -k1,6561:18771974,4812305:10945824 -g1,6561:20158715,4812305 -g1,6561:20807521,4812305 -g1,6561:24121676,4812305 -g1,6561:28605649,4812305 -g1,6561:30015328,4812305 -) -) -] -[1,6561:6630773,45706769:25952256,40108032,0 -(1,6561:6630773,45706769:25952256,40108032,0 -(1,6561:6630773,45706769:0,0,0 -g1,6561:6630773,45706769 -) -[1,6561:6630773,45706769:25952256,40108032,0 -v1,6536:6630773,6254097:0,393216,0 -(1,6536:6630773,16799470:25952256,10938589,616038 -g1,6536:6630773,16799470 -(1,6536:6630773,16799470:25952256,10938589,616038 -(1,6536:6630773,17415508:25952256,11554627,0 -[1,6536:6630773,17415508:25952256,11554627,0 -(1,6536:6630773,17389294:25952256,11528413,0 -r1,6561:6656987,17389294:26214,11528413,0 -[1,6536:6656987,17389294:25899828,11528413,0 -(1,6536:6656987,16799470:25899828,10348765,0 -[1,6536:7246811,16799470:24720180,10348765,0 -v1,6503:7246811,6843921:0,393216,0 -(1,6534:7246811,16078574:24720180,9627869,196608 -g1,6534:7246811,16078574 -g1,6534:7246811,16078574 -g1,6534:7050203,16078574 -(1,6534:7050203,16078574:0,9627869,196608 -r1,6561:32163599,16078574:25113396,9824477,196608 -k1,6534:7050203,16078574:-25113396 -) -(1,6534:7050203,16078574:25113396,9627869,196608 -[1,6534:7246811,16078574:24720180,9431261,0 -(1,6505:7246811,7057831:24720180,410518,82312 -(1,6504:7246811,7057831:0,0,0 -g1,6504:7246811,7057831 -g1,6504:7246811,7057831 -g1,6504:6919131,7057831 -(1,6504:6919131,7057831:0,0,0 -) -g1,6504:7246811,7057831 -) -k1,6505:7246811,7057831:0 -g1,6505:11356706,7057831 -g1,6505:12937436,7057831 -k1,6505:12937436,7057831:0 -h1,6505:14834312,7057831:0,0,0 -k1,6505:31966992,7057831:17132680 -g1,6505:31966992,7057831 -) -(1,6509:7246811,7789545:24720180,404226,76021 -(1,6507:7246811,7789545:0,0,0 -g1,6507:7246811,7789545 -g1,6507:7246811,7789545 -g1,6507:6919131,7789545 -(1,6507:6919131,7789545:0,0,0 -) -g1,6507:7246811,7789545 -) -g1,6509:8195248,7789545 -g1,6509:9459831,7789545 -h1,6509:9775977,7789545:0,0,0 -k1,6509:31966991,7789545:22191014 -g1,6509:31966991,7789545 -) -(1,6511:7246811,9111083:24720180,410518,82312 -(1,6510:7246811,9111083:0,0,0 -g1,6510:7246811,9111083 -g1,6510:7246811,9111083 -g1,6510:6919131,9111083 -(1,6510:6919131,9111083:0,0,0 -) -g1,6510:7246811,9111083 -) -k1,6511:7246811,9111083:0 -g1,6511:11672851,9111083 -g1,6511:13253581,9111083 -k1,6511:13253581,9111083:0 -h1,6511:15150457,9111083:0,0,0 -k1,6511:31966991,9111083:16816534 -g1,6511:31966991,9111083 -) -(1,6515:7246811,9842797:24720180,404226,76021 -(1,6513:7246811,9842797:0,0,0 -g1,6513:7246811,9842797 -g1,6513:7246811,9842797 -g1,6513:6919131,9842797 -(1,6513:6919131,9842797:0,0,0 -) -g1,6513:7246811,9842797 -) -g1,6515:8195248,9842797 -g1,6515:9459831,9842797 -k1,6515:9459831,9842797:0 -h1,6515:10092122,9842797:0,0,0 -k1,6515:31966990,9842797:21874868 -g1,6515:31966990,9842797 -) -(1,6517:7246811,11164335:24720180,410518,82312 -(1,6516:7246811,11164335:0,0,0 -g1,6516:7246811,11164335 -g1,6516:7246811,11164335 -g1,6516:6919131,11164335 -(1,6516:6919131,11164335:0,0,0 -) -g1,6516:7246811,11164335 -) -k1,6517:7246811,11164335:0 -g1,6517:11988998,11164335 -g1,6517:14518164,11164335 -g1,6517:16098894,11164335 -k1,6517:16098894,11164335:0 -h1,6517:17995770,11164335:0,0,0 -k1,6517:31966991,11164335:13971221 -g1,6517:31966991,11164335 -) -(1,6521:7246811,11896049:24720180,404226,76021 -(1,6519:7246811,11896049:0,0,0 -g1,6519:7246811,11896049 -g1,6519:7246811,11896049 -g1,6519:6919131,11896049 -(1,6519:6919131,11896049:0,0,0 -) -g1,6519:7246811,11896049 -) -g1,6521:8195248,11896049 -g1,6521:9459831,11896049 -g1,6521:9775977,11896049 -g1,6521:10408269,11896049 -k1,6521:10408269,11896049:0 -h1,6521:11040560,11896049:0,0,0 -k1,6521:31966992,11896049:20926432 -g1,6521:31966992,11896049 -) -(1,6523:7246811,13217587:24720180,410518,82312 -(1,6522:7246811,13217587:0,0,0 -g1,6522:7246811,13217587 -g1,6522:7246811,13217587 -g1,6522:6919131,13217587 -(1,6522:6919131,13217587:0,0,0 -) -g1,6522:7246811,13217587 -) -k1,6523:7246811,13217587:0 -g1,6523:12305143,13217587 -g1,6523:14518164,13217587 -g1,6523:16098894,13217587 -k1,6523:16098894,13217587:0 -h1,6523:17995770,13217587:0,0,0 -k1,6523:31966991,13217587:13971221 -g1,6523:31966991,13217587 -) -(1,6527:7246811,13949301:24720180,404226,76021 -(1,6525:7246811,13949301:0,0,0 -g1,6525:7246811,13949301 -g1,6525:7246811,13949301 -g1,6525:6919131,13949301 -(1,6525:6919131,13949301:0,0,0 -) -g1,6525:7246811,13949301 -) -g1,6527:8195248,13949301 -g1,6527:9459831,13949301 -g1,6527:10408268,13949301 -g1,6527:10724414,13949301 -h1,6527:11040560,13949301:0,0,0 -k1,6527:31966992,13949301:20926432 -g1,6527:31966992,13949301 -) -(1,6529:7246811,15270839:24720180,410518,82312 -(1,6528:7246811,15270839:0,0,0 -g1,6528:7246811,15270839 -g1,6528:7246811,15270839 -g1,6528:6919131,15270839 -(1,6528:6919131,15270839:0,0,0 -) -g1,6528:7246811,15270839 -) -k1,6529:7246811,15270839:0 -g1,6529:12305143,15270839 -g1,6529:14518164,15270839 -g1,6529:16098894,15270839 -h1,6529:16731186,15270839:0,0,0 -k1,6529:31966991,15270839:15235805 -g1,6529:31966991,15270839 -) -(1,6533:7246811,16002553:24720180,404226,76021 -(1,6531:7246811,16002553:0,0,0 -g1,6531:7246811,16002553 -g1,6531:7246811,16002553 -g1,6531:6919131,16002553 -(1,6531:6919131,16002553:0,0,0 -) -g1,6531:7246811,16002553 -) -g1,6533:8195248,16002553 -g1,6533:9459831,16002553 -g1,6533:10092123,16002553 -h1,6533:10408269,16002553:0,0,0 -k1,6533:31966991,16002553:21558722 -g1,6533:31966991,16002553 -) -] -) -g1,6534:31966991,16078574 -g1,6534:7246811,16078574 -g1,6534:7246811,16078574 -g1,6534:31966991,16078574 -g1,6534:31966991,16078574 -) -h1,6534:7246811,16275182:0,0,0 -] -) -] -r1,6561:32583029,17389294:26214,11528413,0 -) -] -) -) -g1,6536:32583029,16799470 -) -h1,6536:6630773,17415508:0,0,0 -v1,6539:6630773,18781284:0,393216,0 -(1,6553:6630773,30300715:25952256,11912647,616038 -g1,6553:6630773,30300715 -(1,6553:6630773,30300715:25952256,11912647,616038 -(1,6553:6630773,30916753:25952256,12528685,0 -[1,6553:6630773,30916753:25952256,12528685,0 -(1,6553:6630773,30890539:25952256,12476257,0 -r1,6561:6656987,30890539:26214,12476257,0 -[1,6553:6656987,30890539:25899828,12476257,0 -(1,6553:6656987,30300715:25899828,11296609,0 -[1,6553:7246811,30300715:24720180,11296609,0 -(1,6540:7246811,20091480:24720180,1087374,134348 -k1,6539:8704346,20091480:247832 -k1,6539:10825853,20091480:247833 -k1,6539:12809078,20091480:247832 -(1,6539:12809078,20091480:0,459977,115847 -r1,6561:15629327,20091480:2820249,575824,115847 -k1,6539:12809078,20091480:-2820249 -) -(1,6539:12809078,20091480:2820249,459977,115847 -k1,6539:12809078,20091480:3277 -h1,6539:15626050,20091480:0,411205,112570 -) -k1,6539:16050829,20091480:247832 -k1,6539:16654522,20091480:247833 -k1,6539:18775373,20091480:247832 -k1,6539:22209566,20091480:247833 -k1,6539:23108826,20091480:247832 -k1,6539:26068538,20091480:247832 -k1,6539:29132453,20091480:247833 -k1,6539:30947906,20091480:247832 -k1,6539:31966991,20091480:0 -) -(1,6540:7246811,20932968:24720180,505283,134348 -k1,6539:8594839,20932968:175589 -k1,6539:11078606,20932968:175589 -(1,6539:11078606,20932968:0,414482,115847 -r1,6561:11436872,20932968:358266,530329,115847 -k1,6539:11078606,20932968:-358266 -) -(1,6539:11078606,20932968:358266,414482,115847 -k1,6539:11078606,20932968:3277 -h1,6539:11433595,20932968:0,411205,112570 -) -k1,6539:11612461,20932968:175589 -k1,6539:12979496,20932968:175590 -(1,6539:12979496,20932968:0,452978,115847 -r1,6561:13337762,20932968:358266,568825,115847 -k1,6539:12979496,20932968:-358266 -) -(1,6539:12979496,20932968:358266,452978,115847 -k1,6539:12979496,20932968:3277 -h1,6539:13334485,20932968:0,411205,112570 -) -k1,6539:13513351,20932968:175589 -k1,6539:14956406,20932968:175589 -k1,6539:15487855,20932968:175589 -k1,6539:17506316,20932968:175589 -k1,6539:19659782,20932968:175589 -(1,6539:19659782,20932968:0,452978,115847 -r1,6561:20018048,20932968:358266,568825,115847 -k1,6539:19659782,20932968:-358266 -) -(1,6539:19659782,20932968:358266,452978,115847 -k1,6539:19659782,20932968:3277 -h1,6539:20014771,20932968:0,411205,112570 -) -k1,6539:20367307,20932968:175589 -k1,6539:22397566,20932968:175590 -k1,6539:23382525,20932968:175589 -k1,6539:26148752,20932968:175589 -k1,6539:27343426,20932968:175589 -k1,6539:31966991,20932968:0 -) -(1,6540:7246811,21774456:24720180,505283,126483 -k1,6539:9156311,21774456:229157 -k1,6539:10001505,21774456:229156 -k1,6539:12208539,21774456:229157 -(1,6539:12208539,21774456:0,414482,115847 -r1,6561:12566805,21774456:358266,530329,115847 -k1,6539:12208539,21774456:-358266 -) -(1,6539:12208539,21774456:358266,414482,115847 -k1,6539:12208539,21774456:3277 -h1,6539:12563528,21774456:0,411205,112570 -) -k1,6539:12795961,21774456:229156 -k1,6539:13556615,21774456:229157 -k1,6539:14804856,21774456:229156 -k1,6539:18008692,21774456:229157 -(1,6539:18008692,21774456:0,452978,115847 -r1,6561:19070381,21774456:1061689,568825,115847 -k1,6539:18008692,21774456:-1061689 -) -(1,6539:18008692,21774456:1061689,452978,115847 -k1,6539:18008692,21774456:3277 -h1,6539:19067104,21774456:0,411205,112570 -) -k1,6539:19299537,21774456:229156 -k1,6539:20211579,21774456:229157 -(1,6539:20211579,21774456:0,452978,115847 -r1,6561:21273268,21774456:1061689,568825,115847 -k1,6539:20211579,21774456:-1061689 -) -(1,6539:20211579,21774456:1061689,452978,115847 -k1,6539:20211579,21774456:3277 -h1,6539:21269991,21774456:0,411205,112570 -) -k1,6539:21676094,21774456:229156 -k1,6539:23516781,21774456:229157 -k1,6539:25327976,21774456:229156 -k1,6539:27535010,21774456:229157 -(1,6539:27535010,21774456:0,452978,115847 -r1,6561:27893276,21774456:358266,568825,115847 -k1,6539:27535010,21774456:-358266 -) -(1,6539:27535010,21774456:358266,452978,115847 -k1,6539:27535010,21774456:3277 -h1,6539:27889999,21774456:0,411205,112570 -) -k1,6539:28122432,21774456:229156 -k1,6539:29003017,21774456:229157 -k1,6539:30947906,21774456:229156 -k1,6539:31966991,21774456:0 -) -(1,6540:7246811,22615944:24720180,505283,7863 -g1,6539:9288912,22615944 -k1,6540:31966992,22615944:20461652 -g1,6540:31966992,22615944 -) -v1,6542:7246811,23806410:0,393216,0 -(1,6549:7246811,26098020:24720180,2684826,196608 -g1,6549:7246811,26098020 -g1,6549:7246811,26098020 -g1,6549:7050203,26098020 -(1,6549:7050203,26098020:0,2684826,196608 -r1,6561:32163599,26098020:25113396,2881434,196608 -k1,6549:7050203,26098020:-25113396 -) -(1,6549:7050203,26098020:25113396,2684826,196608 -[1,6549:7246811,26098020:24720180,2488218,0 -(1,6544:7246811,23998299:24720180,388497,9436 -(1,6543:7246811,23998299:0,0,0 -g1,6543:7246811,23998299 -g1,6543:7246811,23998299 -g1,6543:6919131,23998299 -(1,6543:6919131,23998299:0,0,0 -) -g1,6543:7246811,23998299 -) -g1,6544:7879103,23998299 -g1,6544:8827541,23998299 -k1,6544:8827541,23998299:0 -h1,6544:10724416,23998299:0,0,0 -k1,6544:31966992,23998299:21242576 -g1,6544:31966992,23998299 -) -(1,6545:7246811,24664477:24720180,404226,9436 -h1,6545:7246811,24664477:0,0,0 -g1,6545:7879103,24664477 -g1,6545:8827541,24664477 -h1,6545:10408270,24664477:0,0,0 -k1,6545:31966990,24664477:21558720 -g1,6545:31966990,24664477 -) -(1,6546:7246811,25330655:24720180,404226,101187 -h1,6546:7246811,25330655:0,0,0 -g1,6546:7879103,25330655 -g1,6546:8827541,25330655 -g1,6546:12305145,25330655 -g1,6546:13569729,25330655 -g1,6546:16415041,25330655 -h1,6546:17363478,25330655:0,0,0 -k1,6546:31966991,25330655:14603513 -g1,6546:31966991,25330655 -) -(1,6547:7246811,25996833:24720180,404226,101187 -h1,6547:7246811,25996833:0,0,0 -g1,6547:7879103,25996833 -g1,6547:9459832,25996833 -k1,6547:9459832,25996833:1573 -h1,6547:10725988,25996833:0,0,0 -k1,6547:31966992,25996833:21241004 -g1,6547:31966992,25996833 -) -] -) -g1,6549:31966991,26098020 -g1,6549:7246811,26098020 -g1,6549:7246811,26098020 -g1,6549:31966991,26098020 -g1,6549:31966991,26098020 -) -h1,6549:7246811,26294628:0,0,0 -(1,6553:7246811,27660404:24720180,513147,126483 -h1,6552:7246811,27660404:983040,0,0 -k1,6552:8981649,27660404:274041 -k1,6552:10426164,27660404:274042 -k1,6552:11515473,27660404:274041 -k1,6552:12855785,27660404:274041 -k1,6552:16794600,27660404:274042 -k1,6552:18399022,27660404:274041 -k1,6552:19692148,27660404:274041 -k1,6552:21620974,27660404:274042 -k1,6552:24203193,27660404:274041 -k1,6552:25468794,27660404:274041 -k1,6552:27394998,27660404:274041 -k1,6552:28351925,27660404:274042 -k1,6552:29796439,27660404:274041 -k1,6552:31966991,27660404:0 -) -(1,6553:7246811,28501892:24720180,505283,134348 -k1,6552:9182838,28501892:139030 -k1,6552:10340953,28501892:139030 -k1,6552:12490628,28501892:139030 -k1,6552:14009845,28501892:139029 -k1,6552:16520623,28501892:139030 -k1,6552:17421181,28501892:139030 -k1,6552:19962761,28501892:139030 -k1,6552:21120876,28501892:139030 -k1,6552:22929763,28501892:139030 -k1,6552:24650832,28501892:139030 -k1,6552:26602587,28501892:139029 -k1,6552:27933062,28501892:139030 -k1,6552:29414925,28501892:139030 -k1,6552:30947906,28501892:139030 -k1,6552:31966991,28501892:0 -) -(1,6553:7246811,29343380:24720180,505283,134348 -k1,6552:10977315,29343380:154204 -k1,6552:12624430,29343380:154205 -k1,6552:13949107,29343380:154204 -k1,6552:17412225,29343380:154205 -k1,6552:19115045,29343380:154204 -k1,6552:20720871,29343380:154204 -k1,6552:24155808,29343380:154205 -k1,6552:25976593,29343380:154204 -k1,6552:27548342,29343380:154205 -k1,6552:28795031,29343380:154204 -(1,6552:28795031,29343380:0,452978,115847 -r1,6561:31966991,29343380:3171960,568825,115847 -k1,6552:28795031,29343380:-3171960 -) -(1,6552:28795031,29343380:3171960,452978,115847 -k1,6552:28795031,29343380:3277 -h1,6552:31963714,29343380:0,411205,112570 -) -k1,6552:31966991,29343380:0 -) -(1,6553:7246811,30184868:24720180,505283,115847 -g1,6552:9655914,30184868 -(1,6552:9655914,30184868:0,459977,115847 -r1,6561:13883010,30184868:4227096,575824,115847 -k1,6552:9655914,30184868:-4227096 -) -(1,6552:9655914,30184868:4227096,459977,115847 -k1,6552:9655914,30184868:3277 -h1,6552:13879733,30184868:0,411205,112570 -) -g1,6552:14082239,30184868 -g1,6552:14932896,30184868 -g1,6552:17163086,30184868 -g1,6552:18381400,30184868 -k1,6553:31966991,30184868:8585849 -g1,6553:31966991,30184868 -) -] -) -] -r1,6561:32583029,30890539:26214,12476257,0 -) -] -) -) -g1,6553:32583029,30300715 -) -h1,6553:6630773,30916753:0,0,0 -(1,6555:6630773,33008013:25952256,555811,12975 -(1,6555:6630773,33008013:2450326,534184,12975 -g1,6555:6630773,33008013 -g1,6555:9081099,33008013 -) -k1,6555:32583029,33008013:20399914 -g1,6555:32583029,33008013 -) -(1,6558:6630773,34242717:25952256,513147,134348 -k1,6557:7719841,34242717:135519 -k1,6557:9135278,34242717:135519 -k1,6557:10289882,34242717:135519 -k1,6557:12163416,34242717:135519 -k1,6557:14970838,34242717:135519 -k1,6557:15757785,34242717:135519 -k1,6557:16912389,34242717:135519 -k1,6557:19493056,34242717:135519 -k1,6557:20287867,34242717:135519 -k1,6557:23447873,34242717:135519 -k1,6557:26658997,34242717:135519 -k1,6557:27453808,34242717:135519 -k1,6557:27945187,34242717:135519 -k1,6557:30822732,34242717:135519 -k1,6558:32583029,34242717:0 -) -(1,6558:6630773,35084205:25952256,505283,134348 -k1,6557:8503970,35084205:234142 -k1,6557:11069884,35084205:234143 -k1,6557:11986911,35084205:234142 -k1,6557:17739840,35084205:234142 -k1,6557:21060728,35084205:234142 -k1,6557:22051156,35084205:234143 -k1,6557:25129560,35084205:234142 -k1,6557:26317251,35084205:234142 -k1,6557:27643878,35084205:234142 -k1,6557:28897106,35084205:234143 -k1,6557:30784721,35084205:234142 -k1,6557:32583029,35084205:0 -) -(1,6558:6630773,35925693:25952256,513147,126483 -k1,6557:9724425,35925693:202859 -k1,6557:10578712,35925693:202859 -k1,6557:12519586,35925693:202859 -k1,6557:14174068,35925693:202860 -k1,6557:15533637,35925693:202859 -k1,6557:16395788,35925693:202859 -k1,6557:18295374,35925693:202859 -k1,6557:21957879,35925693:202859 -k1,6557:22820030,35925693:202859 -k1,6557:24041975,35925693:202860 -k1,6557:27320439,35925693:202859 -k1,6557:28182590,35925693:202859 -k1,6557:28741309,35925693:202859 -k1,6558:32583029,35925693:0 -) -(1,6558:6630773,36767181:25952256,505283,134348 -g1,6557:8072565,36767181 -g1,6557:9290879,36767181 -g1,6557:11731439,36767181 -k1,6558:32583028,36767181:17960796 -g1,6558:32583028,36767181 -) -(1,6560:6630773,37608669:25952256,513147,134348 -h1,6559:6630773,37608669:983040,0,0 -k1,6559:9048723,37608669:238223 -k1,6559:11565634,37608669:238224 -k1,6559:12463149,37608669:238223 -k1,6559:15777633,37608669:238224 -k1,6559:17512043,37608669:238223 -k1,6559:19488282,37608669:238224 -k1,6559:22559626,37608669:238223 -k1,6559:25469096,37608669:238223 -k1,6559:27636700,37608669:238224 -k1,6559:29772846,37608669:238223 -k1,6559:30366930,37608669:238224 -k1,6559:32020075,37608669:238223 -k1,6559:32583029,37608669:0 -) -(1,6560:6630773,38450157:25952256,513147,126483 -k1,6559:8857031,38450157:194642 -k1,6559:10880783,38450157:194642 -k1,6559:12620763,38450157:194641 -k1,6559:14560629,38450157:194642 -k1,6559:17127019,38450157:194642 -k1,6559:17677521,38450157:194642 -k1,6559:20904513,38450157:194641 -k1,6559:22383661,38450157:194642 -k1,6559:26152637,38450157:194642 -k1,6559:28045317,38450157:194642 -k1,6559:29259043,38450157:194641 -k1,6559:30803727,38450157:194642 -k1,6559:31657661,38450157:194642 -k1,6560:32583029,38450157:0 -) -(1,6560:6630773,39291645:25952256,513147,134348 -k1,6559:9232249,39291645:238248 -k1,6559:10602960,39291645:238249 -k1,6559:12011681,39291645:238248 -k1,6559:13269015,39291645:238249 -k1,6559:14922185,39291645:238248 -k1,6559:16351879,39291645:238249 -k1,6559:19368198,39291645:238248 -k1,6559:20219209,39291645:238249 -k1,6559:21476542,39291645:238248 -k1,6559:23098911,39291645:238249 -k1,6559:26523519,39291645:238248 -k1,6559:29737103,39291645:238249 -k1,6559:30994436,39291645:238248 -k1,6559:32583029,39291645:0 -) -(1,6560:6630773,40133133:25952256,513147,134348 -k1,6559:7450003,40133133:191395 -k1,6559:8056233,40133133:191387 -k1,6559:9902412,40133133:191395 -k1,6559:11810194,40133133:191394 -k1,6559:12660881,40133133:191395 -k1,6559:15569399,40133133:191395 -k1,6559:17506018,40133133:191395 -k1,6559:18688972,40133133:191394 -k1,6559:21838007,40133133:191395 -k1,6559:23773315,40133133:191395 -k1,6559:25700103,40133133:191395 -(1,6559:25700103,40133133:0,459977,115847 -r1,6561:26761792,40133133:1061689,575824,115847 -k1,6559:25700103,40133133:-1061689 -) -(1,6559:25700103,40133133:1061689,459977,115847 -k1,6559:25700103,40133133:3277 -h1,6559:26758515,40133133:0,411205,112570 -) -k1,6559:27126856,40133133:191394 -(1,6559:27126856,40133133:0,452978,115847 -r1,6561:28891969,40133133:1765113,568825,115847 -k1,6559:27126856,40133133:-1765113 -) -(1,6559:27126856,40133133:1765113,452978,115847 -k1,6559:27126856,40133133:3277 -h1,6559:28888692,40133133:0,411205,112570 -) -k1,6559:29083364,40133133:191395 -k1,6559:30466204,40133133:191395 -(1,6559:30466204,40133133:0,414482,115847 -r1,6561:32583029,40133133:2116825,530329,115847 -k1,6559:30466204,40133133:-2116825 -) -(1,6559:30466204,40133133:2116825,414482,115847 -k1,6559:30466204,40133133:3277 -h1,6559:32579752,40133133:0,411205,112570 -) -k1,6559:32583029,40133133:0 -) -(1,6560:6630773,40974621:25952256,513147,126483 -k1,6559:10319290,40974621:160714 -k1,6559:12037796,40974621:160715 -k1,6559:13941768,40974621:160714 -k1,6559:14718520,40974621:160714 -k1,6559:16209616,40974621:160715 -k1,6559:18153565,40974621:160714 -k1,6559:21288303,40974621:160714 -k1,6559:22829205,40974621:160714 -k1,6559:25419995,40974621:160715 -k1,6559:26974660,40974621:160714 -k1,6559:29459936,40974621:160714 -k1,6559:30272079,40974621:160715 -k1,6559:31451878,40974621:160714 -k1,6560:32583029,40974621:0 -) -(1,6560:6630773,41816109:25952256,505283,126483 -k1,6559:7891484,41816109:168226 -k1,6559:9439897,41816109:168225 -k1,6559:11662021,41816109:168226 -k1,6559:13391315,41816109:168226 -k1,6559:14750985,41816109:168225 -k1,6559:16249592,41816109:168226 -k1,6559:17436903,41816109:168226 -k1,6559:20637480,41816109:168226 -k1,6559:22090211,41816109:168225 -k1,6559:25677450,41816109:168226 -k1,6559:26864761,41816109:168226 -k1,6559:29750109,41816109:168225 -k1,6559:30449832,41816109:168226 -k1,6559:32583029,41816109:0 -) -(1,6560:6630773,42657597:25952256,513147,134348 -k1,6559:8642981,42657597:228973 -k1,6559:9891038,42657597:228972 -k1,6559:11773484,42657597:228973 -k1,6559:15113450,42657597:228972 -k1,6559:16446705,42657597:228973 -k1,6559:17423444,42657597:228973 -k1,6559:21853929,42657597:228972 -k1,6559:23476853,42657597:228973 -k1,6559:25356023,42657597:228973 -k1,6559:27027442,42657597:228972 -k1,6559:28413125,42657597:228973 -k1,6559:29301389,42657597:228972 -k1,6559:31227089,42657597:228973 -k1,6560:32583029,42657597:0 -) -(1,6560:6630773,43499085:25952256,513147,134348 -k1,6559:9180022,43499085:164394 -k1,6559:11079810,43499085:164395 -k1,6559:12263289,43499085:164394 -k1,6559:13923216,43499085:164395 -k1,6559:16388579,43499085:164394 -k1,6559:17212266,43499085:164395 -k1,6559:19015715,43499085:164394 -k1,6559:21467317,43499085:164395 -k1,6559:23804885,43499085:164394 -k1,6559:24585318,43499085:164395 -k1,6559:25768797,43499085:164394 -k1,6559:28102434,43499085:164395 -k1,6559:28918256,43499085:164394 -k1,6560:32583029,43499085:0 -) -(1,6560:6630773,44340573:25952256,513147,126483 -k1,6559:7242268,44340573:196652 -k1,6559:9773971,44340573:196655 -k1,6559:10598461,44340573:196655 -k1,6559:11383629,44340573:196655 -k1,6559:13531946,44340573:196655 -k1,6559:17207251,44340573:196654 -k1,6559:19735022,44340573:196655 -k1,6559:21676901,44340573:196655 -k1,6559:22559718,44340573:196655 -k1,6559:25846396,44340573:196655 -k1,6559:26659089,44340573:196655 -k1,6559:28058984,44340573:196654 -k1,6559:30534326,44340573:196655 -k1,6559:31835263,44340573:196655 -k1,6559:32583029,44340573:0 -) -] -(1,6561:32583029,45706769:0,0,0 -g1,6561:32583029,45706769 -) -) -] -(1,6561:6630773,47279633:25952256,0,0 -h1,6561:6630773,47279633:25952256,0,0 -) -] -(1,6561:4262630,4025873:0,0,0 -[1,6561:-473656,4025873:0,0,0 -(1,6561:-473656,-710413:0,0,0 -(1,6561:-473656,-710413:0,0,0 -g1,6561:-473656,-710413 -) -g1,6561:-473656,-710413 -) -] -) -] -!24135 -}125 -Input:982:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:983:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:984:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:985:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:986:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:987:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:988:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:989:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:990:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:991:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:992:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1013 -{126 -[1,6624:4262630,47279633:28320399,43253760,0 -(1,6624:4262630,4025873:0,0,0 -[1,6624:-473656,4025873:0,0,0 -(1,6624:-473656,-710413:0,0,0 -(1,6624:-473656,-644877:0,0,0 -k1,6624:-473656,-644877:-65536 -) -(1,6624:-473656,4736287:0,0,0 -k1,6624:-473656,4736287:5209943 -) -g1,6624:-473656,-710413 -) -] -) -[1,6624:6630773,47279633:25952256,43253760,0 -[1,6624:6630773,4812305:25952256,786432,0 -(1,6624:6630773,4812305:25952256,513147,126483 -(1,6624:6630773,4812305:25952256,513147,126483 -g1,6624:3078558,4812305 -[1,6624:3078558,4812305:0,0,0 -(1,6624:3078558,2439708:0,1703936,0 -k1,6624:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,6624:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,6624:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,6624:3078558,4812305:0,0,0 -(1,6624:3078558,2439708:0,1703936,0 -g1,6624:29030814,2439708 -g1,6624:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,6624:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,6624:37855564,2439708:1179648,16384,0 -) -) -k1,6624:3078556,2439708:-34777008 -) -] -[1,6624:3078558,4812305:0,0,0 -(1,6624:3078558,49800853:0,16384,2228224 -k1,6624:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,6624:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,6624:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,6624:3078558,4812305:0,0,0 -(1,6624:3078558,49800853:0,16384,2228224 -g1,6624:29030814,49800853 -g1,6624:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,6624:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,6624:37855564,49800853:1179648,16384,0 -) -) -k1,6624:3078556,49800853:-34777008 -) -] -g1,6624:6630773,4812305 -g1,6624:6630773,4812305 -g1,6624:9175536,4812305 -g1,6624:9990803,4812305 -g1,6624:13137841,4812305 -g1,6624:14654344,4812305 -k1,6624:31387652,4812305:16733308 -) -) -] -[1,6624:6630773,45706769:25952256,40108032,0 -(1,6624:6630773,45706769:25952256,40108032,0 -(1,6624:6630773,45706769:0,0,0 -g1,6624:6630773,45706769 -) -[1,6624:6630773,45706769:25952256,40108032,0 -(1,6560:6630773,6254097:25952256,513147,134348 -k1,6559:9591034,6254097:241172 -k1,6559:14776898,6254097:241173 -k1,6559:15779598,6254097:241172 -k1,6559:17450766,6254097:241172 -k1,6559:18343367,6254097:241173 -k1,6559:19603624,6254097:241172 -k1,6559:21637207,6254097:241173 -k1,6559:24904176,6254097:241172 -k1,6559:28235371,6254097:241172 -k1,6559:29092582,6254097:241173 -k1,6559:31612441,6254097:241172 -h1,6559:32583029,6254097:0,0,0 -k1,6559:32583029,6254097:0 -) -(1,6560:6630773,7095585:25952256,485622,134348 -g1,6559:7639372,7095585 -g1,6559:9336754,7095585 -h1,6559:10532131,7095585:0,0,0 -k1,6560:32583029,7095585:21877228 -g1,6560:32583029,7095585 -) -(1,6561:6630773,8723505:25952256,505283,126483 -(1,6561:6630773,8723505:2809528,485622,11795 -g1,6561:6630773,8723505 -g1,6561:9440301,8723505 -) -(1,6561:9440301,8723505:0,459977,115847 -r1,6624:10501990,8723505:1061689,575824,115847 -k1,6561:9440301,8723505:-1061689 -) -(1,6561:9440301,8723505:1061689,459977,115847 -k1,6561:9440301,8723505:3277 -h1,6561:10498713,8723505:0,411205,112570 -) -g1,6561:10706462,8723505 -k1,6561:32583028,8723505:20084156 -g1,6561:32583028,8723505 -) -(1,6563:6630773,9958209:25952256,513147,126483 -k1,6562:8001440,9958209:173980 -k1,6562:9777120,9958209:173980 -k1,6562:13256081,9958209:173980 -k1,6562:14943287,9958209:173980 -k1,6562:16503353,9958209:173980 -k1,6562:17336625,9958209:173980 -k1,6562:18925527,9958209:173980 -k1,6562:19631004,9958209:173980 -k1,6562:20160844,9958209:173980 -(1,6562:20160844,9958209:0,459977,115847 -r1,6624:21222533,9958209:1061689,575824,115847 -k1,6562:20160844,9958209:-1061689 -) -(1,6562:20160844,9958209:1061689,459977,115847 -k1,6562:20160844,9958209:3277 -h1,6562:21219256,9958209:0,411205,112570 -) -k1,6562:21396512,9958209:173979 -k1,6562:23159085,9958209:173980 -k1,6562:25207395,9958209:173980 -k1,6562:27126599,9958209:173980 -k1,6562:28897036,9958209:173980 -k1,6562:29687054,9958209:173980 -k1,6562:30275852,9958209:173955 -k1,6562:31259202,9958209:173980 -k1,6562:32583029,9958209:0 -) -(1,6563:6630773,10799697:25952256,513147,126483 -k1,6562:7523335,10799697:209677 -k1,6562:10041189,10799697:209676 -k1,6562:10910158,10799697:209677 -k1,6562:13130479,10799697:209676 -k1,6562:13991584,10799697:209677 -k1,6562:15147600,10799697:209676 -k1,6562:17175901,10799697:209677 -k1,6562:18582264,10799697:209676 -k1,6562:21231846,10799697:209677 -k1,6562:22632967,10799697:209676 -k1,6562:23790295,10799697:209677 -k1,6562:25019056,10799697:209676 -k1,6562:26411658,10799697:209677 -k1,6562:27280626,10799697:209676 -k1,6562:28509388,10799697:209677 -k1,6562:30696941,10799697:209676 -k1,6562:31589503,10799697:209677 -k1,6562:32583029,10799697:0 -) -(1,6563:6630773,11641185:25952256,513147,126483 -k1,6562:8497613,11641185:183875 -k1,6562:10344137,11641185:183876 -k1,6562:11140774,11641185:183875 -k1,6562:12343734,11641185:183875 -k1,6562:13599778,11641185:183875 -k1,6562:14442946,11641185:183876 -k1,6562:15645906,11641185:183875 -k1,6562:18853612,11641185:183875 -k1,6562:21080245,11641185:183876 -k1,6562:22283205,11641185:183875 -k1,6562:23882002,11641185:183875 -k1,6562:27252237,11641185:183875 -k1,6562:27967610,11641185:183876 -k1,6562:31386342,11641185:183875 -k1,6562:32583029,11641185:0 -) -(1,6563:6630773,12482673:25952256,513147,126483 -k1,6562:8180782,12482673:199967 -k1,6562:10030289,12482673:199966 -k1,6562:11331261,12482673:199967 -k1,6562:11887088,12482673:199967 -k1,6562:13429231,12482673:199966 -k1,6562:14315360,12482673:199967 -k1,6562:15534412,12482673:199967 -k1,6562:18809984,12482673:199967 -k1,6562:20114232,12482673:199966 -k1,6562:21061965,12482673:199967 -k1,6562:23878129,12482673:199967 -k1,6562:24729523,12482673:199966 -k1,6562:25700193,12482673:199967 -k1,6562:27933742,12482673:199967 -k1,6562:30747939,12482673:199966 -k1,6562:31563944,12482673:199967 -k1,6562:32583029,12482673:0 -) -(1,6563:6630773,13324161:25952256,513147,134348 -g1,6562:9769947,13324161 -g1,6562:10628468,13324161 -g1,6562:14518029,13324161 -g1,6562:17389161,13324161 -g1,6562:18607475,13324161 -g1,6562:20460177,13324161 -g1,6562:22155593,13324161 -g1,6562:23006250,13324161 -g1,6562:23953245,13324161 -g1,6562:27213661,13324161 -g1,6562:30084137,13324161 -k1,6563:32583029,13324161:569512 -g1,6563:32583029,13324161 -) -(1,6581:6630773,26698964:25952256,12519559,0 -k1,6581:11984091,26698964:5353318 -(1,6564:11984091,26698964:0,0,0 -g1,6564:11984091,26698964 -g1,6564:11984091,26698964 -g1,6564:11656411,26698964 -(1,6564:11656411,26698964:0,0,0 -) -g1,6564:11984091,26698964 -) -(1,6579:11984091,26698964:15245620,12519559,0 -g1,6579:15002947,26698964 -(1,6579:15002947,15124851:0,0,0 -(1,6579:15002947,15124851:0,0,0 -g1,6566:15002947,15124851 -(1,6567:15002947,15124851:0,0,0 -(1,6567:15002947,15124851:0,0,0 -g1,6567:15002947,15124851 -g1,6567:15002947,15124851 -g1,6567:15002947,15124851 -g1,6567:15002947,15124851 -g1,6567:15002947,15124851 -(1,6567:15002947,15124851:0,0,0 -(1,6567:15002947,15124851:589824,56623,0 -(1,6567:15002947,15124851:589824,56623,0 -) -g1,6567:15592771,15124851 -) -) -g1,6567:15002947,15124851 -g1,6567:15002947,15124851 -) -) -g1,6567:15002947,15124851 -(1,6568:15002947,15124851:0,0,0 -(1,6568:15002947,15124851:0,0,0 -g1,6568:15002947,15124851 -g1,6568:15002947,15124851 -g1,6568:15002947,15124851 -g1,6568:15002947,15124851 -g1,6568:15002947,15124851 -(1,6568:15002947,15124851:0,0,0 -(1,6568:15002947,15124851:358613,319685,0 -(1,6568:15002947,15124851:358613,319685,0 -$1,6568:15002947,15124851 -$1,6568:15361560,15124851 -) -g1,6568:15361560,15124851 -) -) -g1,6568:15002947,15124851 -g1,6568:15002947,15124851 -) -) -g1,6568:15002947,15124851 -(1,6569:15002947,15124851:0,0,0 -(1,6569:15002947,15124851:0,0,0 -g1,6569:15002947,15124851 -g1,6569:15002947,15124851 -(1,6569:15002947,15124851:0,0,0 -(1,6569:15002947,15124851:3805042,414307,104590 -(1,6569:15002947,15124851:3805042,414307,104590 -(1,6569:15002947,15124851:0,414307,104590 -r1,6624:18807989,15124851:3805042,518897,104590 -k1,6569:15002947,15124851:-3805042 -) -(1,6569:15002947,15124851:3805042,414307,104590 -g1,6569:16272387,15124851 -h1,6569:18804712,15124851:0,370085,101313 -) -) -g1,6569:18807989,15124851 -) -) -g1,6569:15002947,15124851 -g1,6569:15002947,15124851 -) -) -(1,6570:15002947,15124851:0,0,0 -(1,6570:15002947,15124851:0,0,0 -g1,6570:15002947,15124851 -g1,6570:15002947,15124851 -g1,6570:15002947,15124851 -g1,6570:15002947,15124851 -g1,6570:15002947,15124851 -(1,6570:15002947,15124851:0,0,0 -(1,6570:15002947,15124851:4121582,373362,104590 -(1,6570:15002947,15124851:4121582,373362,104590 -(1,6570:15002947,15124851:0,373362,104590 -r1,6624:19124529,15124851:4121582,477952,104590 -k1,6570:15002947,15124851:-4121582 -) -(1,6570:15002947,15124851:4121582,373362,104590 -g1,6570:18488171,15124851 -h1,6570:19121252,15124851:0,370085,101313 -) -) -g1,6570:19124529,15124851 -) -) -g1,6570:15002947,15124851 -g1,6570:15002947,15124851 -) -) -(1,6571:15002947,15124851:0,0,0 -(1,6571:15002947,15124851:0,0,0 -g1,6571:15002947,15124851 -g1,6571:15002947,15124851 -g1,6571:15002947,15124851 -g1,6571:15002947,15124851 -g1,6571:15002947,15124851 -(1,6571:15002947,15124851:0,0,0 -(1,6571:15002947,15124851:4121582,373362,104590 -(1,6571:15002947,15124851:4121582,373362,104590 -(1,6571:15002947,15124851:0,373362,104590 -r1,6624:19124529,15124851:4121582,477952,104590 -k1,6571:15002947,15124851:-4121582 -) -(1,6571:15002947,15124851:4121582,373362,104590 -g1,6571:18488171,15124851 -h1,6571:19121252,15124851:0,370085,101313 -) -) -g1,6571:19124529,15124851 -) -) -g1,6571:15002947,15124851 -g1,6571:15002947,15124851 -) -) -g1,6571:15002947,15124851 -g1,6572:15002947,15124851 -(1,6572:15002947,15124851:0,0,0 -(1,6572:15002947,15124851:0,0,0 -g1,6572:15002947,15124851 -g1,6572:15002947,15124851 -g1,6572:15002947,15124851 -g1,6572:15002947,15124851 -g1,6572:15002947,15124851 -(1,6572:15002947,15124851:0,0,0 -(1,6572:15002947,15124851:589824,56623,0 -(1,6572:15002947,15124851:589824,56623,0 -) -g1,6572:15592771,15124851 -) -) -g1,6572:15002947,15124851 -g1,6572:15002947,15124851 -) -) -g1,6572:15002947,15124851 -g1,6573:15002947,15124851 -g1,6573:15002947,15124851 -g1,6573:15002947,15124851 -g1,6573:15002947,15124851 -g1,6574:15002947,15124851 -g1,6574:15002947,15124851 -g1,6574:15002947,15124851 -(1,6574:15002947,15124851:0,0,0 -(1,6574:15002947,15124851:0,0,0 -g1,6574:15002947,15124851 -g1,6574:15002947,15124851 -g1,6574:15002947,15124851 -g1,6574:15002947,15124851 -g1,6574:15002947,15124851 -(1,6574:15002947,15124851:0,0,0 -(1,6574:15002947,15124851:2418868,426443,7077 -(1,6574:15002947,15124851:2418868,426443,7077 -) -g1,6574:17421815,15124851 -) -) -g1,6574:15002947,15124851 -g1,6574:15002947,15124851 -) -) -g1,6574:15002947,15124851 -g1,6575:15002947,15124851 -g1,6575:15002947,15124851 -g1,6575:15002947,15124851 -(1,6575:15002947,15124851:0,0,0 -(1,6575:15002947,15124851:0,0,0 -g1,6575:15002947,15124851 -g1,6575:15002947,15124851 -g1,6575:15002947,15124851 -g1,6575:15002947,15124851 -g1,6575:15002947,15124851 -(1,6575:15002947,15124851:0,0,0 -(1,6575:15002947,15124851:1643250,454754,7077 -(1,6575:15002947,15124851:1643250,454754,7077 -) -g1,6575:16646197,15124851 -) -) -g1,6575:15002947,15124851 -g1,6575:15002947,15124851 -) -) -g1,6575:15002947,15124851 -g1,6576:15002947,15124851 -g1,6576:15002947,15124851 -g1,6576:15002947,15124851 -g1,6576:15002947,15124851 -g1,6576:15002947,15124851 -g1,6577:15002947,15124851 -g1,6577:15002947,15124851 -g1,6577:15002947,15124851 -g1,6577:15002947,15124851 -g1,6578:15002947,15124851 -g1,6578:15002947,15124851 -g1,6578:15002947,15124851 -g1,6578:15002947,15124851 -g1,6578:15002947,15124851 -g1,6578:15002947,15124851 -g1,6579:15002947,15124851 -g1,6579:15002947,15124851 -) -g1,6579:15002947,15124851 -) -) -g1,6581:27229711,26698964 -k1,6581:32583029,26698964:5353318 -) -v1,6584:6630773,28544790:0,393216,0 -(1,6600:6630773,33611929:25952256,5460355,196608 -g1,6600:6630773,33611929 -g1,6600:6630773,33611929 -g1,6600:6434165,33611929 -(1,6600:6434165,33611929:0,5460355,196608 -r1,6624:32779637,33611929:26345472,5656963,196608 -k1,6600:6434165,33611929:-26345472 -) -(1,6600:6434165,33611929:26345472,5460355,196608 -[1,6600:6630773,33611929:25952256,5263747,0 -(1,6586:6630773,28752408:25952256,404226,9436 -(1,6585:6630773,28752408:0,0,0 -g1,6585:6630773,28752408 -g1,6585:6630773,28752408 -g1,6585:6303093,28752408 -(1,6585:6303093,28752408:0,0,0 -) -g1,6585:6630773,28752408 -) -g1,6586:7263065,28752408 -g1,6586:8211503,28752408 -h1,6586:8527649,28752408:0,0,0 -k1,6586:32583029,28752408:24055380 -g1,6586:32583029,28752408 -) -(1,6587:6630773,29418586:25952256,410518,76021 -h1,6587:6630773,29418586:0,0,0 -g1,6587:7895356,29418586 -g1,6587:8843793,29418586 -g1,6587:9792230,29418586 -g1,6587:11372960,29418586 -g1,6587:12005252,29418586 -g1,6587:12953690,29418586 -g1,6587:13585982,29418586 -g1,6587:14218274,29418586 -h1,6587:14534420,29418586:0,0,0 -k1,6587:32583028,29418586:18048608 -g1,6587:32583028,29418586 -) -(1,6588:6630773,30084764:25952256,404226,6290 -h1,6588:6630773,30084764:0,0,0 -h1,6588:6946919,30084764:0,0,0 -k1,6588:32583029,30084764:25636110 -g1,6588:32583029,30084764 -) -(1,6592:6630773,30816478:25952256,404226,76021 -(1,6590:6630773,30816478:0,0,0 -g1,6590:6630773,30816478 -g1,6590:6630773,30816478 -g1,6590:6303093,30816478 -(1,6590:6303093,30816478:0,0,0 -) -g1,6590:6630773,30816478 -) -g1,6592:7579210,30816478 -g1,6592:8843793,30816478 -h1,6592:9476084,30816478:0,0,0 -k1,6592:32583028,30816478:23106944 -g1,6592:32583028,30816478 -) -(1,6594:6630773,32138016:25952256,410518,101187 -(1,6593:6630773,32138016:0,0,0 -g1,6593:6630773,32138016 -g1,6593:6630773,32138016 -g1,6593:6303093,32138016 -(1,6593:6303093,32138016:0,0,0 -) -g1,6593:6630773,32138016 -) -g1,6594:7263065,32138016 -g1,6594:8211503,32138016 -g1,6594:11056816,32138016 -g1,6594:11689108,32138016 -g1,6594:14534419,32138016 -g1,6594:17379730,32138016 -k1,6594:17379730,32138016:0 -h1,6594:19908895,32138016:0,0,0 -k1,6594:32583029,32138016:12674134 -g1,6594:32583029,32138016 -) -(1,6595:6630773,32804194:25952256,404226,6290 -h1,6595:6630773,32804194:0,0,0 -h1,6595:6946919,32804194:0,0,0 -k1,6595:32583029,32804194:25636110 -g1,6595:32583029,32804194 -) -(1,6599:6630773,33535908:25952256,404226,76021 -(1,6597:6630773,33535908:0,0,0 -g1,6597:6630773,33535908 -g1,6597:6630773,33535908 -g1,6597:6303093,33535908 -(1,6597:6303093,33535908:0,0,0 -) -g1,6597:6630773,33535908 -) -g1,6599:7579210,33535908 -g1,6599:8843793,33535908 -h1,6599:9476084,33535908:0,0,0 -k1,6599:32583028,33535908:23106944 -g1,6599:32583028,33535908 -) -] -) -g1,6600:32583029,33611929 -g1,6600:6630773,33611929 -g1,6600:6630773,33611929 -g1,6600:32583029,33611929 -g1,6600:32583029,33611929 -) -h1,6600:6630773,33808537:0,0,0 -(1,6604:6630773,35174313:25952256,513147,126483 -h1,6603:6630773,35174313:983040,0,0 -k1,6603:9337328,35174313:235192 -k1,6603:10591606,35174313:235193 -k1,6603:14013158,35174313:235192 -(1,6603:14013158,35174313:0,452978,115847 -r1,6624:17536832,35174313:3523674,568825,115847 -k1,6603:14013158,35174313:-3523674 -) -(1,6603:14013158,35174313:3523674,452978,115847 -g1,6603:14719859,35174313 -g1,6603:15774995,35174313 -g1,6603:16478419,35174313 -g1,6603:17181843,35174313 -h1,6603:17533555,35174313:0,411205,112570 -) -k1,6603:17772025,35174313:235193 -k1,6603:18538714,35174313:235192 -k1,6603:21607028,35174313:235193 -k1,6603:22977304,35174313:235192 -k1,6603:25141877,35174313:235193 -k1,6603:26771020,35174313:235192 -k1,6603:29517553,35174313:235193 -(1,6603:29517553,35174313:0,414482,115847 -r1,6624:29875819,35174313:358266,530329,115847 -k1,6603:29517553,35174313:-358266 -) -(1,6603:29517553,35174313:358266,414482,115847 -k1,6603:29517553,35174313:3277 -h1,6603:29872542,35174313:0,411205,112570 -) -k1,6603:30111011,35174313:235192 -k1,6604:32583029,35174313:0 -) -(1,6604:6630773,36015801:25952256,513147,134348 -k1,6603:8434324,36015801:218235 -k1,6603:10648129,36015801:218234 -k1,6603:12317986,36015801:218235 -k1,6603:13195513,36015801:218235 -k1,6603:14432832,36015801:218234 -k1,6603:16661712,36015801:218235 -k1,6603:17495985,36015801:218235 -(1,6603:17495985,36015801:0,435480,115847 -r1,6624:18557674,36015801:1061689,551327,115847 -k1,6603:17495985,36015801:-1061689 -) -(1,6603:17495985,36015801:1061689,435480,115847 -k1,6603:17495985,36015801:3277 -h1,6603:18554397,36015801:0,411205,112570 -) -k1,6603:18949578,36015801:218234 -k1,6603:21506793,36015801:218235 -k1,6603:22384320,36015801:218235 -k1,6603:22958414,36015801:218234 -k1,6603:25301326,36015801:218235 -k1,6603:28705921,36015801:218235 -k1,6603:30437381,36015801:218234 -k1,6603:32227169,36015801:218235 -k1,6603:32583029,36015801:0 -) -(1,6604:6630773,36857289:25952256,513147,126483 -g1,6603:10243772,36857289 -g1,6603:13629361,36857289 -g1,6603:15597407,36857289 -g1,6603:17082452,36857289 -g1,6603:18756896,36857289 -g1,6603:20466075,36857289 -g1,6603:22178530,36857289 -g1,6603:23325410,36857289 -g1,6603:24543724,36857289 -g1,6603:26319749,36857289 -g1,6603:27178270,36857289 -g1,6603:28396584,36857289 -(1,6603:28396584,36857289:0,459977,115847 -r1,6624:29458273,36857289:1061689,575824,115847 -k1,6603:28396584,36857289:-1061689 -) -(1,6603:28396584,36857289:1061689,459977,115847 -k1,6603:28396584,36857289:3277 -h1,6603:29454996,36857289:0,411205,112570 -) -g1,6603:29657502,36857289 -k1,6604:32583029,36857289:1336934 -g1,6604:32583029,36857289 -) -v1,6606:6630773,38223065:0,393216,0 -(1,6607:6630773,41340882:25952256,3511033,616038 -g1,6607:6630773,41340882 -(1,6607:6630773,41340882:25952256,3511033,616038 -(1,6607:6630773,41956920:25952256,4127071,0 -[1,6607:6630773,41956920:25952256,4127071,0 -(1,6607:6630773,41930706:25952256,4074643,0 -r1,6624:6656987,41930706:26214,4074643,0 -[1,6607:6656987,41930706:25899828,4074643,0 -(1,6607:6656987,41340882:25899828,2894995,0 -[1,6607:7246811,41340882:24720180,2894995,0 -(1,6607:7246811,39531423:24720180,1085536,298548 -(1,6606:7246811,39531423:0,1085536,298548 -r1,6624:8753226,39531423:1506415,1384084,298548 -k1,6606:7246811,39531423:-1506415 -) -(1,6606:7246811,39531423:1506415,1085536,298548 -) -k1,6606:9004167,39531423:250941 -k1,6606:9725001,39531423:250941 -k1,6606:10507439,39531423:250941 -k1,6606:13967678,39531423:250941 -k1,6606:14870047,39531423:250941 -k1,6606:16534600,39531423:250941 -k1,6606:18070047,39531423:250941 -k1,6606:18676848,39531423:250941 -k1,6606:19921315,39531423:250941 -k1,6606:20855140,39531423:250940 -k1,6606:23083958,39531423:250941 -k1,6606:23994191,39531423:250941 -k1,6606:26258398,39531423:250941 -k1,6606:27929504,39531423:250941 -k1,6606:28711942,39531423:250941 -k1,6606:29318743,39531423:250941 -k1,6606:31109780,39531423:250941 -k1,6607:31966991,39531423:0 -) -(1,6607:7246811,40372911:24720180,505283,134348 -k1,6606:9908261,40372911:233341 -k1,6606:10793030,40372911:233341 -(1,6606:10793030,40372911:0,459977,115847 -r1,6624:12558143,40372911:1765113,575824,115847 -k1,6606:10793030,40372911:-1765113 -) -(1,6606:10793030,40372911:1765113,459977,115847 -k1,6606:10793030,40372911:3277 -h1,6606:12554866,40372911:0,411205,112570 -) -k1,6606:12965154,40372911:233341 -k1,6606:14483001,40372911:233341 -k1,6606:17177219,40372911:233341 -k1,6606:18219930,40372911:233341 -k1,6606:20233884,40372911:233341 -k1,6606:21539394,40372911:233341 -k1,6606:23447835,40372911:233341 -k1,6606:24700261,40372911:233341 -k1,6606:28450264,40372911:233341 -k1,6606:29299643,40372911:233341 -k1,6606:30552069,40372911:233341 -k1,6606:31966991,40372911:0 -) -(1,6607:7246811,41214399:24720180,505283,126483 -k1,6607:31966990,41214399:22969712 -g1,6607:31966990,41214399 -) -] -) -] -r1,6624:32583029,41930706:26214,4074643,0 -) -] -) -) -g1,6607:32583029,41340882 -) -h1,6607:6630773,41956920:0,0,0 -(1,6610:6630773,43322696:25952256,513147,126483 -h1,6609:6630773,43322696:983040,0,0 -g1,6609:9530085,43322696 -g1,6609:12721033,43322696 -g1,6609:13579554,43322696 -g1,6609:14871268,43322696 -g1,6609:15737653,43322696 -(1,6609:15737653,43322696:0,459977,115847 -r1,6624:16799342,43322696:1061689,575824,115847 -k1,6609:15737653,43322696:-1061689 -) -(1,6609:15737653,43322696:1061689,459977,115847 -k1,6609:15737653,43322696:3277 -h1,6609:16796065,43322696:0,411205,112570 -) -g1,6609:16998571,43322696 -g1,6609:20789828,43322696 -g1,6609:21648349,43322696 -g1,6609:23177959,43322696 -g1,6609:24028616,43322696 -g1,6609:25957340,43322696 -g1,6609:27665208,43322696 -k1,6610:32583029,43322696:3651665 -g1,6610:32583029,43322696 -) -v1,6612:6630773,44513162:0,393216,0 -(1,6624:6630773,45386958:25952256,1267012,196608 -g1,6624:6630773,45386958 -g1,6624:6630773,45386958 -g1,6624:6434165,45386958 -(1,6624:6434165,45386958:0,1267012,196608 -r1,6624:32779637,45386958:26345472,1463620,196608 -k1,6624:6434165,45386958:-26345472 -) -(1,6624:6434165,45386958:26345472,1267012,196608 -[1,6624:6630773,45386958:25952256,1070404,0 -(1,6614:6630773,44720780:25952256,404226,82312 -(1,6613:6630773,44720780:0,0,0 -g1,6613:6630773,44720780 -g1,6613:6630773,44720780 -g1,6613:6303093,44720780 -(1,6613:6303093,44720780:0,0,0 -) -g1,6613:6630773,44720780 -) -g1,6614:7263065,44720780 -g1,6614:8211503,44720780 -g1,6614:9792233,44720780 -g1,6614:10740671,44720780 -g1,6614:11689109,44720780 -g1,6614:12637547,44720780 -h1,6614:13269839,44720780:0,0,0 -k1,6614:32583029,44720780:19313190 -g1,6614:32583029,44720780 -) -(1,6615:6630773,45386958:25952256,410518,101187 -h1,6615:6630773,45386958:0,0,0 -g1,6615:8527647,45386958 -g1,6615:9476084,45386958 -g1,6615:10424521,45386958 -g1,6615:14534415,45386958 -g1,6615:15166707,45386958 -g1,6615:17063581,45386958 -g1,6615:18012018,45386958 -k1,6615:18012018,45386958:0 -h1,6615:20225038,45386958:0,0,0 -k1,6615:32583029,45386958:12357991 -g1,6615:32583029,45386958 -) -] -) -g1,6624:32583029,45386958 -g1,6624:6630773,45386958 -g1,6624:6630773,45386958 -g1,6624:32583029,45386958 -g1,6624:32583029,45386958 -) -] -(1,6624:32583029,45706769:0,0,0 -g1,6624:32583029,45706769 -) -) -] -(1,6624:6630773,47279633:25952256,0,0 -h1,6624:6630773,47279633:25952256,0,0 -) -] -(1,6624:4262630,4025873:0,0,0 -[1,6624:-473656,4025873:0,0,0 -(1,6624:-473656,-710413:0,0,0 -(1,6624:-473656,-710413:0,0,0 -g1,6624:-473656,-710413 -) -g1,6624:-473656,-710413 -) -] -) -] -!22682 -}126 -Input:993:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:994:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:995:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:996:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:997:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:998:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:999:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1000:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1001:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1002:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!925 -{127 -[1,6696:4262630,47279633:28320399,43253760,0 -(1,6696:4262630,4025873:0,0,0 -[1,6696:-473656,4025873:0,0,0 -(1,6696:-473656,-710413:0,0,0 -(1,6696:-473656,-644877:0,0,0 -k1,6696:-473656,-644877:-65536 -) -(1,6696:-473656,4736287:0,0,0 -k1,6696:-473656,4736287:5209943 -) -g1,6696:-473656,-710413 -) -] -) -[1,6696:6630773,47279633:25952256,43253760,0 -[1,6696:6630773,4812305:25952256,786432,0 -(1,6696:6630773,4812305:25952256,505283,134348 -(1,6696:6630773,4812305:25952256,505283,134348 -g1,6696:3078558,4812305 -[1,6696:3078558,4812305:0,0,0 -(1,6696:3078558,2439708:0,1703936,0 -k1,6696:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,6696:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,6696:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,6696:3078558,4812305:0,0,0 -(1,6696:3078558,2439708:0,1703936,0 -g1,6696:29030814,2439708 -g1,6696:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,6696:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,6696:37855564,2439708:1179648,16384,0 -) -) -k1,6696:3078556,2439708:-34777008 -) -] -[1,6696:3078558,4812305:0,0,0 -(1,6696:3078558,49800853:0,16384,2228224 -k1,6696:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,6696:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,6696:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,6696:3078558,4812305:0,0,0 -(1,6696:3078558,49800853:0,16384,2228224 -g1,6696:29030814,49800853 -g1,6696:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,6696:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,6696:37855564,49800853:1179648,16384,0 -) -) -k1,6696:3078556,49800853:-34777008 -) -] -g1,6696:6630773,4812305 -k1,6696:18771974,4812305:10945824 -g1,6696:20158715,4812305 -g1,6696:20807521,4812305 -g1,6696:24121676,4812305 -g1,6696:28605649,4812305 -g1,6696:30015328,4812305 -) -) -] -[1,6696:6630773,45706769:25952256,40108032,0 -(1,6696:6630773,45706769:25952256,40108032,0 -(1,6696:6630773,45706769:0,0,0 -g1,6696:6630773,45706769 -) -[1,6696:6630773,45706769:25952256,40108032,0 -v1,6624:6630773,6254097:0,393216,0 -(1,6624:6630773,9202448:25952256,3341567,196608 -g1,6624:6630773,9202448 -g1,6624:6630773,9202448 -g1,6624:6434165,9202448 -(1,6624:6434165,9202448:0,3341567,196608 -r1,6696:32779637,9202448:26345472,3538175,196608 -k1,6624:6434165,9202448:-26345472 -) -(1,6624:6434165,9202448:26345472,3341567,196608 -[1,6624:6630773,9202448:25952256,3144959,0 -(1,6623:6630773,6461715:25952256,404226,76021 -(1,6617:6630773,6461715:0,0,0 -g1,6617:6630773,6461715 -g1,6617:6630773,6461715 -g1,6617:6303093,6461715 -(1,6617:6303093,6461715:0,0,0 -) -g1,6617:6630773,6461715 -) -g1,6623:7579210,6461715 -g1,6623:8843793,6461715 -h1,6623:9159939,6461715:0,0,0 -k1,6623:32583029,6461715:23423090 -g1,6623:32583029,6461715 -) -(1,6623:6630773,7127893:25952256,404226,76021 -h1,6623:6630773,7127893:0,0,0 -g1,6623:7579210,7127893 -g1,6623:8843793,7127893 -h1,6623:9159939,7127893:0,0,0 -k1,6623:32583029,7127893:23423090 -g1,6623:32583029,7127893 -) -(1,6623:6630773,7794071:25952256,404226,76021 -h1,6623:6630773,7794071:0,0,0 -g1,6623:7579210,7794071 -g1,6623:8843793,7794071 -h1,6623:9159939,7794071:0,0,0 -k1,6623:32583029,7794071:23423090 -g1,6623:32583029,7794071 -) -(1,6623:6630773,8460249:25952256,404226,76021 -h1,6623:6630773,8460249:0,0,0 -g1,6623:7579210,8460249 -g1,6623:8843793,8460249 -h1,6623:9476084,8460249:0,0,0 -k1,6623:32583028,8460249:23106944 -g1,6623:32583028,8460249 -) -(1,6623:6630773,9126427:25952256,404226,76021 -h1,6623:6630773,9126427:0,0,0 -g1,6623:7579210,9126427 -g1,6623:8843793,9126427 -h1,6623:9476084,9126427:0,0,0 -k1,6623:32583028,9126427:23106944 -g1,6623:32583028,9126427 -) -] -) -g1,6624:32583029,9202448 -g1,6624:6630773,9202448 -g1,6624:6630773,9202448 -g1,6624:32583029,9202448 -g1,6624:32583029,9202448 -) -h1,6624:6630773,9399056:0,0,0 -(1,6628:6630773,10764832:25952256,505283,134348 -h1,6627:6630773,10764832:983040,0,0 -k1,6627:8373511,10764832:272110 -k1,6627:9745388,10764832:272183 -k1,6627:10669000,10764832:272184 -(1,6627:10669000,10764832:0,459977,115847 -r1,6696:11730689,10764832:1061689,575824,115847 -k1,6627:10669000,10764832:-1061689 -) -(1,6627:10669000,10764832:1061689,459977,115847 -k1,6627:10669000,10764832:3277 -h1,6627:11727412,10764832:0,411205,112570 -) -k1,6627:12002872,10764832:272183 -k1,6627:13767965,10764832:272183 -k1,6627:15106420,10764832:272184 -k1,6627:17389248,10764832:272183 -k1,6627:18017291,10764832:272183 -k1,6627:20143489,10764832:272184 -k1,6627:21369221,10764832:272183 -k1,6627:23171670,10764832:272183 -k1,6627:24095282,10764832:272184 -k1,6627:26374177,10764832:272183 -k1,6627:28657005,10764832:272183 -k1,6627:29580617,10764832:272184 -k1,6627:30623503,10764832:272183 -k1,6627:32583029,10764832:0 -) -(1,6628:6630773,11606320:25952256,513147,134348 -k1,6627:7583319,11606320:227718 -k1,6627:9095544,11606320:227719 -k1,6627:10703450,11606320:227718 -k1,6627:11922728,11606320:227718 -k1,6627:13216717,11606320:227718 -k1,6627:14804963,11606320:227719 -k1,6627:15510438,11606320:227718 -k1,6627:16606508,11606320:227718 -k1,6627:18416266,11606320:227719 -k1,6627:19256746,11606320:227718 -k1,6627:20936086,11606320:227718 -k1,6627:23880928,11606320:227719 -k1,6627:25127731,11606320:227718 -k1,6627:27035792,11606320:227718 -k1,6627:27922802,11606320:227718 -k1,6627:29353762,11606320:227719 -k1,6627:31714677,11606320:227718 -k1,6627:32583029,11606320:0 -) -(1,6628:6630773,12447808:25952256,513147,134348 -k1,6627:7919960,12447808:184905 -k1,6627:10089951,12447808:184905 -k1,6627:11605237,12447808:184905 -k1,6627:12809227,12447808:184905 -k1,6627:15032302,12447808:184905 -k1,6627:16897550,12447808:184905 -k1,6627:19827102,12447808:184904 -k1,6627:22539075,12447808:184905 -k1,6627:24735935,12447808:184905 -k1,6627:25665984,12447808:184905 -k1,6627:26502317,12447808:184905 -k1,6627:27885876,12447808:184905 -k1,6627:29401162,12447808:184905 -k1,6627:30605152,12447808:184905 -k1,6627:32583029,12447808:0 -) -(1,6628:6630773,13289296:25952256,513147,134348 -k1,6627:8702553,13289296:163372 -k1,6627:9481963,13289296:163372 -k1,6627:11832271,13289296:163372 -k1,6627:14038399,13289296:163371 -k1,6627:15070123,13289296:163372 -k1,6627:17162875,13289296:163372 -k1,6627:17682107,13289296:163372 -k1,6627:21807786,13289296:163372 -k1,6627:23949035,13289296:163372 -k1,6627:26155164,13289296:163372 -k1,6627:27337620,13289296:163371 -k1,6627:28989315,13289296:163372 -k1,6627:29811979,13289296:163372 -k1,6627:30994436,13289296:163372 -k1,6628:32583029,13289296:0 -k1,6628:32583029,13289296:0 -) -v1,6630:6630773,14479762:0,393216,0 -(1,6687:6630773,39091227:25952256,25004681,196608 -g1,6687:6630773,39091227 -g1,6687:6630773,39091227 -g1,6687:6434165,39091227 -(1,6687:6434165,39091227:0,25004681,196608 -r1,6696:32779637,39091227:26345472,25201289,196608 -k1,6687:6434165,39091227:-26345472 -) -(1,6687:6434165,39091227:26345472,25004681,196608 -[1,6687:6630773,39091227:25952256,24808073,0 -(1,6632:6630773,14693672:25952256,410518,76021 -(1,6631:6630773,14693672:0,0,0 -g1,6631:6630773,14693672 -g1,6631:6630773,14693672 -g1,6631:6303093,14693672 -(1,6631:6303093,14693672:0,0,0 -) -g1,6631:6630773,14693672 -) -g1,6632:7263065,14693672 -g1,6632:8211503,14693672 -g1,6632:10108377,14693672 -g1,6632:11056814,14693672 -g1,6632:12005251,14693672 -h1,6632:13585980,14693672:0,0,0 -k1,6632:32583028,14693672:18997048 -g1,6632:32583028,14693672 -) -(1,6633:6630773,15359850:25952256,404226,6290 -h1,6633:6630773,15359850:0,0,0 -h1,6633:6946919,15359850:0,0,0 -k1,6633:32583029,15359850:25636110 -g1,6633:32583029,15359850 -) -(1,6637:6630773,16091564:25952256,379060,7863 -(1,6635:6630773,16091564:0,0,0 -g1,6635:6630773,16091564 -g1,6635:6630773,16091564 -g1,6635:6303093,16091564 -(1,6635:6303093,16091564:0,0,0 -) -g1,6635:6630773,16091564 -) -g1,6637:7579210,16091564 -h1,6637:8843793,16091564:0,0,0 -k1,6637:32583029,16091564:23739236 -g1,6637:32583029,16091564 -) -(1,6639:6630773,17413102:25952256,404226,76021 -(1,6638:6630773,17413102:0,0,0 -g1,6638:6630773,17413102 -g1,6638:6630773,17413102 -g1,6638:6303093,17413102 -(1,6638:6303093,17413102:0,0,0 -) -g1,6638:6630773,17413102 -) -g1,6639:7263065,17413102 -g1,6639:8211503,17413102 -k1,6639:8211503,17413102:0 -h1,6639:11056814,17413102:0,0,0 -k1,6639:32583030,17413102:21526216 -g1,6639:32583030,17413102 -) -(1,6640:6630773,18079280:25952256,410518,107478 -h1,6640:6630773,18079280:0,0,0 -g1,6640:8527647,18079280 -g1,6640:9476084,18079280 -g1,6640:14218270,18079280 -g1,6640:14850562,18079280 -g1,6640:16115145,18079280 -h1,6640:16431291,18079280:0,0,0 -k1,6640:32583029,18079280:16151738 -g1,6640:32583029,18079280 -) -(1,6641:6630773,18745458:25952256,404226,76021 -h1,6641:6630773,18745458:0,0,0 -g1,6641:6946919,18745458 -g1,6641:7263065,18745458 -g1,6641:8843794,18745458 -g1,6641:9792232,18745458 -h1,6641:11689107,18745458:0,0,0 -k1,6641:32583029,18745458:20893922 -g1,6641:32583029,18745458 -) -(1,6642:6630773,19411636:25952256,404226,101187 -h1,6642:6630773,19411636:0,0,0 -g1,6642:6946919,19411636 -g1,6642:7263065,19411636 -k1,6642:7263065,19411636:0 -h1,6642:9792230,19411636:0,0,0 -k1,6642:32583030,19411636:22790800 -g1,6642:32583030,19411636 -) -(1,6643:6630773,20077814:25952256,404226,76021 -h1,6643:6630773,20077814:0,0,0 -h1,6643:6946919,20077814:0,0,0 -k1,6643:32583029,20077814:25636110 -g1,6643:32583029,20077814 -) -(1,6651:6630773,20809528:25952256,404226,76021 -(1,6645:6630773,20809528:0,0,0 -g1,6645:6630773,20809528 -g1,6645:6630773,20809528 -g1,6645:6303093,20809528 -(1,6645:6303093,20809528:0,0,0 -) -g1,6645:6630773,20809528 -) -g1,6651:7579210,20809528 -g1,6651:8843793,20809528 -h1,6651:9159939,20809528:0,0,0 -k1,6651:32583029,20809528:23423090 -g1,6651:32583029,20809528 -) -(1,6651:6630773,21475706:25952256,404226,76021 -h1,6651:6630773,21475706:0,0,0 -g1,6651:7579210,21475706 -g1,6651:8843793,21475706 -g1,6651:9159939,21475706 -g1,6651:9792231,21475706 -h1,6651:10424522,21475706:0,0,0 -k1,6651:32583030,21475706:22158508 -g1,6651:32583030,21475706 -) -(1,6651:6630773,22141884:25952256,404226,76021 -h1,6651:6630773,22141884:0,0,0 -g1,6651:7579210,22141884 -g1,6651:8843793,22141884 -g1,6651:9159939,22141884 -g1,6651:9792231,22141884 -g1,6651:10740668,22141884 -g1,6651:11056814,22141884 -h1,6651:11372960,22141884:0,0,0 -k1,6651:32583028,22141884:21210068 -g1,6651:32583028,22141884 -) -(1,6651:6630773,22808062:25952256,404226,76021 -h1,6651:6630773,22808062:0,0,0 -g1,6651:7579210,22808062 -g1,6651:8843793,22808062 -g1,6651:9159939,22808062 -g1,6651:9792231,22808062 -g1,6651:10740668,22808062 -g1,6651:11056814,22808062 -g1,6651:11689106,22808062 -h1,6651:12321397,22808062:0,0,0 -k1,6651:32583029,22808062:20261632 -g1,6651:32583029,22808062 -) -(1,6651:6630773,23474240:25952256,404226,76021 -h1,6651:6630773,23474240:0,0,0 -g1,6651:7579210,23474240 -g1,6651:8843793,23474240 -g1,6651:9159939,23474240 -g1,6651:9792231,23474240 -g1,6651:10740668,23474240 -g1,6651:11056814,23474240 -g1,6651:11689106,23474240 -g1,6651:12637543,23474240 -h1,6651:13269834,23474240:0,0,0 -k1,6651:32583030,23474240:19313196 -g1,6651:32583030,23474240 -) -(1,6653:6630773,24795778:25952256,404226,6290 -(1,6652:6630773,24795778:0,0,0 -g1,6652:6630773,24795778 -g1,6652:6630773,24795778 -g1,6652:6303093,24795778 -(1,6652:6303093,24795778:0,0,0 -) -g1,6652:6630773,24795778 -) -h1,6653:6946919,24795778:0,0,0 -k1,6653:32583029,24795778:25636110 -g1,6653:32583029,24795778 -) -(1,6657:6630773,25527492:25952256,404226,76021 -(1,6655:6630773,25527492:0,0,0 -g1,6655:6630773,25527492 -g1,6655:6630773,25527492 -g1,6655:6303093,25527492 -(1,6655:6303093,25527492:0,0,0 -) -g1,6655:6630773,25527492 -) -g1,6657:7579210,25527492 -g1,6657:8843793,25527492 -g1,6657:9159939,25527492 -g1,6657:9792231,25527492 -g1,6657:10740668,25527492 -g1,6657:11056814,25527492 -g1,6657:11689106,25527492 -g1,6657:12637543,25527492 -h1,6657:13269834,25527492:0,0,0 -k1,6657:32583030,25527492:19313196 -g1,6657:32583030,25527492 -) -(1,6659:6630773,26849030:25952256,410518,107478 -(1,6658:6630773,26849030:0,0,0 -g1,6658:6630773,26849030 -g1,6658:6630773,26849030 -g1,6658:6303093,26849030 -(1,6658:6303093,26849030:0,0,0 -) -g1,6658:6630773,26849030 -) -g1,6659:7263065,26849030 -g1,6659:8843794,26849030 -g1,6659:11056814,26849030 -g1,6659:12005251,26849030 -g1,6659:12953688,26849030 -g1,6659:14850562,26849030 -g1,6659:17695873,26849030 -g1,6659:18328165,26849030 -g1,6659:19908894,26849030 -g1,6659:22121914,26849030 -k1,6659:22121914,26849030:23593 -h1,6659:24042381,26849030:0,0,0 -k1,6659:32583029,26849030:8540648 -g1,6659:32583029,26849030 -) -(1,6660:6630773,27515208:25952256,404226,107478 -h1,6660:6630773,27515208:0,0,0 -g1,6660:7263065,27515208 -g1,6660:8211503,27515208 -k1,6660:8211503,27515208:0 -h1,6660:13902126,27515208:0,0,0 -k1,6660:32583030,27515208:18680904 -g1,6660:32583030,27515208 -) -(1,6661:6630773,28181386:25952256,410518,107478 -h1,6661:6630773,28181386:0,0,0 -g1,6661:8527647,28181386 -g1,6661:9476084,28181386 -g1,6661:14218270,28181386 -g1,6661:14850562,28181386 -g1,6661:16115145,28181386 -h1,6661:16431291,28181386:0,0,0 -k1,6661:32583029,28181386:16151738 -g1,6661:32583029,28181386 -) -(1,6662:6630773,28847564:25952256,404226,76021 -h1,6662:6630773,28847564:0,0,0 -g1,6662:6946919,28847564 -g1,6662:7263065,28847564 -g1,6662:8843794,28847564 -g1,6662:9792232,28847564 -h1,6662:11689107,28847564:0,0,0 -k1,6662:32583029,28847564:20893922 -g1,6662:32583029,28847564 -) -(1,6663:6630773,29513742:25952256,404226,101187 -h1,6663:6630773,29513742:0,0,0 -g1,6663:6946919,29513742 -g1,6663:7263065,29513742 -k1,6663:7263065,29513742:0 -h1,6663:9792230,29513742:0,0,0 -k1,6663:32583030,29513742:22790800 -g1,6663:32583030,29513742 -) -(1,6664:6630773,30179920:25952256,404226,76021 -h1,6664:6630773,30179920:0,0,0 -h1,6664:6946919,30179920:0,0,0 -k1,6664:32583029,30179920:25636110 -g1,6664:32583029,30179920 -) -(1,6672:6630773,30911634:25952256,404226,76021 -(1,6666:6630773,30911634:0,0,0 -g1,6666:6630773,30911634 -g1,6666:6630773,30911634 -g1,6666:6303093,30911634 -(1,6666:6303093,30911634:0,0,0 -) -g1,6666:6630773,30911634 -) -g1,6672:7579210,30911634 -g1,6672:8843793,30911634 -g1,6672:9476085,30911634 -g1,6672:10108377,30911634 -g1,6672:10740669,30911634 -g1,6672:11372961,30911634 -h1,6672:11689107,30911634:0,0,0 -k1,6672:32583029,30911634:20893922 -g1,6672:32583029,30911634 -) -(1,6672:6630773,31577812:25952256,404226,76021 -h1,6672:6630773,31577812:0,0,0 -g1,6672:7579210,31577812 -g1,6672:8843793,31577812 -g1,6672:9159939,31577812 -g1,6672:9792231,31577812 -g1,6672:10740668,31577812 -g1,6672:11056814,31577812 -g1,6672:11689106,31577812 -g1,6672:12005252,31577812 -g1,6672:12637544,31577812 -g1,6672:12953690,31577812 -h1,6672:13269836,31577812:0,0,0 -k1,6672:32583028,31577812:19313192 -g1,6672:32583028,31577812 -) -(1,6672:6630773,32243990:25952256,404226,76021 -h1,6672:6630773,32243990:0,0,0 -g1,6672:7579210,32243990 -g1,6672:8843793,32243990 -g1,6672:9159939,32243990 -g1,6672:9792231,32243990 -g1,6672:10740668,32243990 -g1,6672:11056814,32243990 -g1,6672:11689106,32243990 -g1,6672:12005252,32243990 -g1,6672:12637544,32243990 -g1,6672:12953690,32243990 -h1,6672:13269836,32243990:0,0,0 -k1,6672:32583028,32243990:19313192 -g1,6672:32583028,32243990 -) -(1,6672:6630773,32910168:25952256,404226,76021 -h1,6672:6630773,32910168:0,0,0 -g1,6672:7579210,32910168 -g1,6672:8843793,32910168 -g1,6672:9159939,32910168 -g1,6672:9792231,32910168 -g1,6672:10740668,32910168 -g1,6672:11056814,32910168 -g1,6672:11689106,32910168 -g1,6672:12637543,32910168 -g1,6672:12953689,32910168 -h1,6672:13269835,32910168:0,0,0 -k1,6672:32583029,32910168:19313194 -g1,6672:32583029,32910168 -) -(1,6672:6630773,33576346:25952256,404226,76021 -h1,6672:6630773,33576346:0,0,0 -g1,6672:7579210,33576346 -g1,6672:8843793,33576346 -g1,6672:9159939,33576346 -g1,6672:9792231,33576346 -g1,6672:10740668,33576346 -g1,6672:11056814,33576346 -g1,6672:11689106,33576346 -g1,6672:12637543,33576346 -h1,6672:13269834,33576346:0,0,0 -k1,6672:32583030,33576346:19313196 -g1,6672:32583030,33576346 -) -(1,6674:6630773,34897884:25952256,404226,6290 -(1,6673:6630773,34897884:0,0,0 -g1,6673:6630773,34897884 -g1,6673:6630773,34897884 -g1,6673:6303093,34897884 -(1,6673:6303093,34897884:0,0,0 -) -g1,6673:6630773,34897884 -) -h1,6674:6946919,34897884:0,0,0 -k1,6674:32583029,34897884:25636110 -g1,6674:32583029,34897884 -) -(1,6678:6630773,35629598:25952256,404226,76021 -(1,6676:6630773,35629598:0,0,0 -g1,6676:6630773,35629598 -g1,6676:6630773,35629598 -g1,6676:6303093,35629598 -(1,6676:6303093,35629598:0,0,0 -) -g1,6676:6630773,35629598 -) -g1,6678:7579210,35629598 -g1,6678:8843793,35629598 -g1,6678:9159939,35629598 -g1,6678:9792231,35629598 -g1,6678:10740668,35629598 -g1,6678:11056814,35629598 -g1,6678:11689106,35629598 -g1,6678:12637543,35629598 -h1,6678:13269834,35629598:0,0,0 -k1,6678:32583030,35629598:19313196 -g1,6678:32583030,35629598 -) -(1,6680:6630773,36951136:25952256,410518,101187 -(1,6679:6630773,36951136:0,0,0 -g1,6679:6630773,36951136 -g1,6679:6630773,36951136 -g1,6679:6303093,36951136 -(1,6679:6303093,36951136:0,0,0 -) -g1,6679:6630773,36951136 -) -g1,6680:7263065,36951136 -g1,6680:7895357,36951136 -g1,6680:11372960,36951136 -g1,6680:14850563,36951136 -g1,6680:15799000,36951136 -g1,6680:18644311,36951136 -g1,6680:19908894,36951136 -k1,6680:19908894,36951136:14156 -h1,6680:22136070,36951136:0,0,0 -k1,6680:32583029,36951136:10446959 -g1,6680:32583029,36951136 -) -(1,6681:6630773,37617314:25952256,404226,6290 -h1,6681:6630773,37617314:0,0,0 -g1,6681:7263065,37617314 -g1,6681:8211503,37617314 -h1,6681:9159941,37617314:0,0,0 -k1,6681:32583029,37617314:23423088 -g1,6681:32583029,37617314 -) -(1,6682:6630773,38283492:25952256,404226,6290 -h1,6682:6630773,38283492:0,0,0 -h1,6682:6946919,38283492:0,0,0 -k1,6682:32583029,38283492:25636110 -g1,6682:32583029,38283492 -) -(1,6686:6630773,39015206:25952256,404226,76021 -(1,6684:6630773,39015206:0,0,0 -g1,6684:6630773,39015206 -g1,6684:6630773,39015206 -g1,6684:6303093,39015206 -(1,6684:6303093,39015206:0,0,0 -) -g1,6684:6630773,39015206 -) -g1,6686:7579210,39015206 -g1,6686:8843793,39015206 -g1,6686:9159939,39015206 -g1,6686:9792231,39015206 -g1,6686:10740668,39015206 -g1,6686:11056814,39015206 -g1,6686:11689106,39015206 -g1,6686:12637543,39015206 -h1,6686:13269834,39015206:0,0,0 -k1,6686:32583030,39015206:19313196 -g1,6686:32583030,39015206 -) -] -) -g1,6687:32583029,39091227 -g1,6687:6630773,39091227 -g1,6687:6630773,39091227 -g1,6687:32583029,39091227 -g1,6687:32583029,39091227 -) -h1,6687:6630773,39287835:0,0,0 -(1,6691:6630773,40653611:25952256,505283,126483 -h1,6690:6630773,40653611:983040,0,0 -k1,6690:8511971,40653611:270323 -k1,6690:9801378,40653611:270322 -k1,6690:12826179,40653611:270323 -k1,6690:15067169,40653611:270322 -k1,6690:16205844,40653611:270323 -k1,6690:17989392,40653611:270322 -(1,6690:17989392,40653611:0,452978,122846 -r1,6696:24678472,40653611:6689080,575824,122846 -k1,6690:17989392,40653611:-6689080 -) -(1,6690:17989392,40653611:6689080,452978,122846 -g1,6690:23268347,40653611 -g1,6690:23971771,40653611 -h1,6690:24675195,40653611:0,411205,112570 -) -k1,6690:24948795,40653611:270323 -k1,6690:25870545,40653611:270322 -k1,6690:27783200,40653611:270323 -k1,6690:28409382,40653611:270322 -k1,6690:29962900,40653611:270323 -k1,6690:32583029,40653611:0 -) -(1,6691:6630773,41495099:25952256,513147,134348 -k1,6690:8783567,41495099:174917 -k1,6690:10352434,41495099:174916 -k1,6690:10883211,41495099:174917 -k1,6690:13998073,41495099:174917 -k1,6690:14832282,41495099:174917 -k1,6690:16026283,41495099:174916 -k1,6690:17854673,41495099:174917 -k1,6690:20042856,41495099:174917 -k1,6690:20903934,41495099:174916 -k1,6690:23056728,41495099:174917 -(1,6690:23056728,41495099:0,414482,115847 -r1,6696:23414994,41495099:358266,530329,115847 -k1,6690:23056728,41495099:-358266 -) -(1,6690:23056728,41495099:358266,414482,115847 -k1,6690:23056728,41495099:3277 -h1,6690:23411717,41495099:0,411205,112570 -) -k1,6690:23763581,41495099:174917 -k1,6690:25730251,41495099:174916 -k1,6690:27108409,41495099:174917 -k1,6690:29047555,41495099:174917 -k1,6690:29753969,41495099:174917 -k1,6690:31263853,41495099:174916 -k1,6690:32124932,41495099:174917 -k1,6690:32583029,41495099:0 -) -(1,6691:6630773,42336587:25952256,513147,134348 -k1,6690:9257592,42336587:153490 -k1,6690:10695589,42336587:153491 -k1,6690:12315775,42336587:153490 -k1,6690:13488351,42336587:153491 -k1,6690:15008922,42336587:153490 -k1,6690:16860451,42336587:153491 -(1,6690:16860451,42336587:0,414482,115847 -r1,6696:17218717,42336587:358266,530329,115847 -k1,6690:16860451,42336587:-358266 -) -(1,6690:16860451,42336587:358266,414482,115847 -k1,6690:16860451,42336587:3277 -h1,6690:17215440,42336587:0,411205,112570 -) -k1,6690:17372207,42336587:153490 -k1,6690:18057195,42336587:153491 -k1,6690:18981388,42336587:153490 -k1,6690:21131761,42336587:153491 -k1,6690:23263128,42336587:153490 -k1,6690:24075911,42336587:153491 -k1,6690:26242667,42336587:153490 -k1,6690:27816323,42336587:153491 -k1,6690:29102275,42336587:153490 -k1,6690:30003532,42336587:153491 -k1,6690:32583029,42336587:0 -) -(1,6691:6630773,43178075:25952256,505283,134348 -g1,6690:9812545,43178075 -g1,6690:11405725,43178075 -(1,6690:11405725,43178075:0,452978,115847 -r1,6696:14929397,43178075:3523672,568825,115847 -k1,6690:11405725,43178075:-3523672 -) -(1,6690:11405725,43178075:3523672,452978,115847 -k1,6690:11405725,43178075:3277 -h1,6690:14926120,43178075:0,411205,112570 -) -g1,6690:15128626,43178075 -g1,6690:18102649,43178075 -g1,6690:18953306,43178075 -(1,6690:18953306,43178075:0,452978,115847 -r1,6696:19311572,43178075:358266,568825,115847 -k1,6690:18953306,43178075:-358266 -) -(1,6690:18953306,43178075:358266,452978,115847 -k1,6690:18953306,43178075:3277 -h1,6690:19308295,43178075:0,411205,112570 -) -k1,6691:32583029,43178075:13097787 -g1,6691:32583029,43178075 -) -v1,6692:6630773,44543851:0,393216,0 -] -(1,6696:32583029,45706769:0,0,0 -g1,6696:32583029,45706769 -) -) -] -(1,6696:6630773,47279633:25952256,0,0 -h1,6696:6630773,47279633:25952256,0,0 -) -] -(1,6696:4262630,4025873:0,0,0 -[1,6696:-473656,4025873:0,0,0 -(1,6696:-473656,-710413:0,0,0 -(1,6696:-473656,-710413:0,0,0 -g1,6696:-473656,-710413 -) -g1,6696:-473656,-710413 -) -] -) -] -!22666 -}127 -Input:1003:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1004:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1005:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1006:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1007:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1008:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1009:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1010:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1011:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1012:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1013:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1014:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1015:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1016:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1017:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1018:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1484 -{128 -[1,6745:4262630,47279633:28320399,43253760,0 -(1,6745:4262630,4025873:0,0,0 -[1,6745:-473656,4025873:0,0,0 -(1,6745:-473656,-710413:0,0,0 -(1,6745:-473656,-644877:0,0,0 -k1,6745:-473656,-644877:-65536 -) -(1,6745:-473656,4736287:0,0,0 -k1,6745:-473656,4736287:5209943 -) -g1,6745:-473656,-710413 -) -] -) -[1,6745:6630773,47279633:25952256,43253760,0 -[1,6745:6630773,4812305:25952256,786432,0 -(1,6745:6630773,4812305:25952256,513147,126483 -(1,6745:6630773,4812305:25952256,513147,126483 -g1,6745:3078558,4812305 -[1,6745:3078558,4812305:0,0,0 -(1,6745:3078558,2439708:0,1703936,0 -k1,6745:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,6745:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,6745:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,6745:3078558,4812305:0,0,0 -(1,6745:3078558,2439708:0,1703936,0 -g1,6745:29030814,2439708 -g1,6745:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,6745:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,6745:37855564,2439708:1179648,16384,0 -) -) -k1,6745:3078556,2439708:-34777008 -) -] -[1,6745:3078558,4812305:0,0,0 -(1,6745:3078558,49800853:0,16384,2228224 -k1,6745:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,6745:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,6745:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,6745:3078558,4812305:0,0,0 -(1,6745:3078558,49800853:0,16384,2228224 -g1,6745:29030814,49800853 -g1,6745:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,6745:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,6745:37855564,49800853:1179648,16384,0 -) -) -k1,6745:3078556,49800853:-34777008 -) -] -g1,6745:6630773,4812305 -g1,6745:6630773,4812305 -g1,6745:9175536,4812305 -g1,6745:9990803,4812305 -g1,6745:13137841,4812305 -g1,6745:14654344,4812305 -k1,6745:31387652,4812305:16733308 -) -) -] -[1,6745:6630773,45706769:25952256,40108032,0 -(1,6745:6630773,45706769:25952256,40108032,0 -(1,6745:6630773,45706769:0,0,0 -g1,6745:6630773,45706769 -) -[1,6745:6630773,45706769:25952256,40108032,0 -v1,6696:6630773,6254097:0,393216,0 -(1,6696:6630773,13581192:25952256,7720311,616038 -g1,6696:6630773,13581192 -(1,6696:6630773,13581192:25952256,7720311,616038 -(1,6696:6630773,14197230:25952256,8336349,0 -[1,6696:6630773,14197230:25952256,8336349,0 -(1,6696:6630773,14171016:25952256,8283921,0 -r1,6745:6656987,14171016:26214,8283921,0 -[1,6696:6656987,14171016:25899828,8283921,0 -(1,6696:6656987,13581192:25899828,7104273,0 -[1,6696:7246811,13581192:24720180,7104273,0 -(1,6694:7246811,7564293:24720180,1087374,126483 -k1,6692:8627167,7564293:170653 -k1,6692:8627167,7564293:0 -k1,6693:10344469,7564293:170652 -k1,6693:11127884,7564293:170653 -k1,6693:12317621,7564293:170652 -k1,6693:14661448,7564293:170653 -k1,6693:16399722,7564293:170653 -k1,6693:17589459,7564293:170652 -k1,6693:19615436,7564293:170653 -k1,6693:22951478,7564293:170653 -k1,6693:24313575,7564293:170652 -k1,6693:25390591,7564293:170653 -k1,6693:26212671,7564293:170652 -k1,6693:30048097,7564293:170653 -k1,6693:31966991,7564293:0 -) -(1,6694:7246811,8405781:24720180,513147,115847 -k1,6693:8452740,8405781:186844 -k1,6693:11418310,8405781:186843 -k1,6693:13285497,8405781:186844 -k1,6693:15498059,8405781:186844 -k1,6693:17252523,8405781:186843 -k1,6693:18055405,8405781:186844 -k1,6693:19693871,8405781:186844 -k1,6693:21421466,8405781:186844 -k1,6693:22236144,8405781:186843 -k1,6693:23442073,8405781:186844 -k1,6693:25125104,8405781:186844 -k1,6693:27282615,8405781:186843 -k1,6693:29498454,8405781:186844 -(1,6693:29498454,8405781:0,452978,115847 -r1,6745:31966991,8405781:2468537,568825,115847 -k1,6693:29498454,8405781:-2468537 -) -(1,6693:29498454,8405781:2468537,452978,115847 -k1,6693:29498454,8405781:3277 -h1,6693:31963714,8405781:0,411205,112570 -) -k1,6693:31966991,8405781:0 -) -(1,6694:7246811,9247269:24720180,505283,126483 -k1,6693:7969471,9247269:191163 -k1,6693:9673861,9247269:191164 -k1,6693:11875013,9247269:191163 -k1,6693:13085262,9247269:191164 -k1,6693:14618602,9247269:191163 -k1,6693:15461193,9247269:191163 -k1,6693:17368090,9247269:191164 -k1,6693:21617242,9247269:191163 -k1,6693:23819050,9247269:191163 -k1,6693:26226642,9247269:191164 -k1,6693:27671509,9247269:191163 -k1,6693:28966955,9247269:191164 -k1,6693:30355461,9247269:191163 -k1,6694:31966991,9247269:0 -) -(1,6694:7246811,10088757:24720180,505283,126483 -k1,6693:9289439,10088757:214174 -(1,6693:9289439,10088757:0,452978,115847 -r1,6745:11757976,10088757:2468537,568825,115847 -k1,6693:9289439,10088757:-2468537 -) -(1,6693:9289439,10088757:2468537,452978,115847 -k1,6693:9289439,10088757:3277 -h1,6693:11754699,10088757:0,411205,112570 -) -k1,6693:11972150,10088757:214174 -k1,6693:15702986,10088757:214174 -k1,6693:16568588,10088757:214174 -k1,6693:19585737,10088757:214174 -k1,6693:21501881,10088757:214174 -k1,6693:24731365,10088757:214173 -k1,6693:26439105,10088757:214174 -k1,6693:27339441,10088757:214174 -(1,6693:27339441,10088757:0,452978,115847 -r1,6745:27697707,10088757:358266,568825,115847 -k1,6693:27339441,10088757:-358266 -) -(1,6693:27339441,10088757:358266,452978,115847 -k1,6693:27339441,10088757:3277 -h1,6693:27694430,10088757:0,411205,112570 -) -k1,6693:28085551,10088757:214174 -k1,6693:28982610,10088757:214174 -k1,6693:30314828,10088757:214174 -k1,6693:31966991,10088757:0 -) -(1,6694:7246811,10930245:24720180,513147,126483 -g1,6693:8105332,10930245 -g1,6693:9323646,10930245 -g1,6693:11192732,10930245 -g1,6693:12885527,10930245 -g1,6693:13770918,10930245 -(1,6693:13770918,10930245:0,452978,122846 -r1,6745:20459998,10930245:6689080,575824,122846 -k1,6693:13770918,10930245:-6689080 -) -(1,6693:13770918,10930245:6689080,452978,122846 -g1,6693:19049873,10930245 -g1,6693:19753297,10930245 -h1,6693:20456721,10930245:0,411205,112570 -) -g1,6693:20832897,10930245 -g1,6693:21793654,10930245 -k1,6694:31966991,10930245:6443028 -g1,6694:31966991,10930245 -) -(1,6696:7246811,11771733:24720180,505283,134348 -h1,6695:7246811,11771733:983040,0,0 -k1,6695:9048396,11771733:190710 -k1,6695:10442347,11771733:190710 -k1,6695:12173807,11771733:190709 -k1,6695:13383602,11771733:190710 -k1,6695:15070499,11771733:190710 -k1,6695:18252928,11771733:190710 -k1,6695:20574212,11771733:190709 -k1,6695:21574292,11771733:190710 -k1,6695:23702246,11771733:190710 -k1,6695:24575841,11771733:190710 -k1,6695:27840844,11771733:190709 -k1,6695:29103723,11771733:190710 -k1,6695:30313518,11771733:190710 -k1,6695:31966991,11771733:0 -) -(1,6696:7246811,12613221:24720180,513147,134348 -k1,6695:10462842,12613221:231521 -k1,6695:11798644,12613221:231520 -k1,6695:12777931,12613221:231521 -k1,6695:14522678,12613221:231521 -k1,6695:15701849,12613221:231520 -k1,6695:19255390,12613221:231521 -k1,6695:23458392,12613221:231520 -k1,6695:25932555,12613221:231521 -k1,6695:27660263,12613221:231521 -k1,6695:29176289,12613221:231520 -k1,6695:30900720,12613221:231521 -k1,6695:31966991,12613221:0 -) -(1,6696:7246811,13454709:24720180,505283,126483 -g1,6695:9456685,13454709 -g1,6695:10674999,13454709 -g1,6695:13713248,13454709 -k1,6696:31966991,13454709:15906899 -g1,6696:31966991,13454709 -) -] -) -] -r1,6745:32583029,14171016:26214,8283921,0 -) -] -) -) -g1,6696:32583029,13581192 -) -h1,6696:6630773,14197230:0,0,0 -v1,6699:6630773,15563006:0,393216,0 -(1,6719:6630773,29317709:25952256,14147919,616038 -g1,6719:6630773,29317709 -(1,6719:6630773,29317709:25952256,14147919,616038 -(1,6719:6630773,29933747:25952256,14763957,0 -[1,6719:6630773,29933747:25952256,14763957,0 -(1,6719:6630773,29907533:25952256,14711529,0 -r1,6745:6656987,29907533:26214,14711529,0 -[1,6719:6656987,29907533:25899828,14711529,0 -(1,6719:6656987,29317709:25899828,13531881,0 -[1,6719:7246811,29317709:24720180,13531881,0 -(1,6700:7246811,17069810:24720180,1283982,196608 -(1,6699:7246811,17069810:0,1283982,196608 -r1,6745:9812056,17069810:2565245,1480590,196608 -k1,6699:7246811,17069810:-2565245 -) -(1,6699:7246811,17069810:2565245,1283982,196608 -) -k1,6699:10036395,17069810:224339 -k1,6699:10888569,17069810:224339 -k1,6699:12131993,17069810:224339 -k1,6699:15348051,17069810:224339 -k1,6699:17427714,17069810:224339 -k1,6699:18520405,17069810:224339 -k1,6699:20405426,17069810:224339 -k1,6699:21648850,17069810:224339 -k1,6699:22965674,17069810:224339 -k1,6699:23857169,17069810:224339 -(1,6699:23857169,17069810:0,452978,115847 -r1,6745:25622282,17069810:1765113,568825,115847 -k1,6699:23857169,17069810:-1765113 -) -(1,6699:23857169,17069810:1765113,452978,115847 -k1,6699:23857169,17069810:3277 -h1,6699:25619005,17069810:0,411205,112570 -) -k1,6699:25846621,17069810:224339 -k1,6699:28498414,17069810:224339 -k1,6699:29078613,17069810:224339 -k1,6699:31280829,17069810:224339 -k1,6699:31966991,17069810:0 -) -(1,6700:7246811,17911298:24720180,505283,134348 -k1,6699:8181491,17911298:163977 -k1,6699:11417797,17911298:163978 -k1,6699:12233202,17911298:163977 -k1,6699:13185577,17911298:163977 -k1,6699:16630286,17911298:163977 -(1,6699:16630286,17911298:0,452978,122846 -r1,6745:20153958,17911298:3523672,575824,122846 -k1,6699:16630286,17911298:-3523672 -) -(1,6699:16630286,17911298:3523672,452978,122846 -k1,6699:16630286,17911298:3277 -h1,6699:20150681,17911298:0,411205,112570 -) -k1,6699:20491606,17911298:163978 -k1,6699:21930258,17911298:163977 -k1,6699:23113320,17911298:163977 -k1,6699:26269016,17911298:163977 -k1,6699:28301425,17911298:163978 -k1,6699:29656847,17911298:163977 -k1,6699:31966991,17911298:0 -) -(1,6700:7246811,18752786:24720180,513147,134348 -k1,6699:8813091,18752786:269322 -k1,6699:10101497,18752786:269321 -k1,6699:11543258,18752786:269322 -k1,6699:15474731,18752786:269321 -k1,6699:16735613,18752786:269322 -k1,6699:20309915,18752786:269321 -k1,6699:21954838,18752786:269322 -k1,6699:23922197,18752786:269321 -k1,6699:25210604,18752786:269322 -k1,6699:27493191,18752786:269321 -k1,6699:28429669,18752786:269322 -(1,6699:28429669,18752786:0,414482,115847 -r1,6745:28787935,18752786:358266,530329,115847 -k1,6699:28429669,18752786:-358266 -) -(1,6699:28429669,18752786:358266,414482,115847 -k1,6699:28429669,18752786:3277 -h1,6699:28784658,18752786:0,411205,112570 -) -k1,6699:29057256,18752786:269321 -k1,6699:29858075,18752786:269322 -k1,6699:31284106,18752786:269321 -k1,6699:31966991,18752786:0 -) -(1,6700:7246811,19594274:24720180,513147,134348 -k1,6699:9241854,19594274:171176 -k1,6699:10808947,19594274:171176 -k1,6699:11999209,19594274:171177 -k1,6699:14428100,19594274:171176 -k1,6699:15360804,19594274:171176 -k1,6699:18528941,19594274:171176 -k1,6699:19351546,19594274:171177 -(1,6699:19351546,19594274:0,414482,115847 -r1,6745:19709812,19594274:358266,530329,115847 -k1,6699:19351546,19594274:-358266 -) -(1,6699:19351546,19594274:358266,414482,115847 -k1,6699:19351546,19594274:3277 -h1,6699:19706535,19594274:0,411205,112570 -) -k1,6699:20054658,19594274:171176 -k1,6699:22534012,19594274:171176 -k1,6699:23364480,19594274:171176 -k1,6699:26298000,19594274:171177 -k1,6699:28986414,19594274:171176 -k1,6699:31966991,19594274:0 -) -(1,6700:7246811,20435762:24720180,505283,134348 -g1,6699:8866205,20435762 -g1,6699:11007921,20435762 -(1,6699:11007921,20435762:0,452978,115847 -r1,6745:16290153,20435762:5282232,568825,115847 -k1,6699:11007921,20435762:-5282232 -) -(1,6699:11007921,20435762:5282232,452978,115847 -g1,6699:11714622,20435762 -g1,6699:12769758,20435762 -h1,6699:16286876,20435762:0,411205,112570 -) -k1,6700:31966991,20435762:15296074 -g1,6700:31966991,20435762 -) -v1,6702:7246811,21626228:0,393216,0 -(1,6716:7246811,28596813:24720180,7363801,196608 -g1,6716:7246811,28596813 -g1,6716:7246811,28596813 -g1,6716:7050203,28596813 -(1,6716:7050203,28596813:0,7363801,196608 -r1,6745:32163599,28596813:25113396,7560409,196608 -k1,6716:7050203,28596813:-25113396 -) -(1,6716:7050203,28596813:25113396,7363801,196608 -[1,6716:7246811,28596813:24720180,7167193,0 -(1,6704:7246811,21833846:24720180,404226,107478 -(1,6703:7246811,21833846:0,0,0 -g1,6703:7246811,21833846 -g1,6703:7246811,21833846 -g1,6703:6919131,21833846 -(1,6703:6919131,21833846:0,0,0 -) -g1,6703:7246811,21833846 -) -g1,6704:7879103,21833846 -g1,6704:8827541,21833846 -k1,6704:8827541,21833846:0 -h1,6704:14518164,21833846:0,0,0 -k1,6704:31966992,21833846:17448828 -g1,6704:31966992,21833846 -) -(1,6705:7246811,22500024:24720180,410518,107478 -h1,6705:7246811,22500024:0,0,0 -g1,6705:9143685,22500024 -g1,6705:10092122,22500024 -g1,6705:14834308,22500024 -g1,6705:15466600,22500024 -g1,6705:16731183,22500024 -h1,6705:17047329,22500024:0,0,0 -k1,6705:31966991,22500024:14919662 -g1,6705:31966991,22500024 -) -(1,6706:7246811,23166202:24720180,404226,76021 -h1,6706:7246811,23166202:0,0,0 -g1,6706:7562957,23166202 -g1,6706:7879103,23166202 -g1,6706:9459832,23166202 -g1,6706:10408270,23166202 -h1,6706:12305145,23166202:0,0,0 -k1,6706:31966991,23166202:19661846 -g1,6706:31966991,23166202 -) -(1,6707:7246811,23832380:24720180,404226,76021 -h1,6707:7246811,23832380:0,0,0 -h1,6707:7562957,23832380:0,0,0 -k1,6707:31966991,23832380:24404034 -g1,6707:31966991,23832380 -) -(1,6708:7246811,24498558:24720180,404226,101187 -h1,6708:7246811,24498558:0,0,0 -k1,6708:7246811,24498558:0 -h1,6708:9775976,24498558:0,0,0 -k1,6708:31966992,24498558:22191016 -g1,6708:31966992,24498558 -) -(1,6709:7246811,25164736:24720180,0,0 -h1,6709:7246811,25164736:0,0,0 -h1,6709:7246811,25164736:0,0,0 -k1,6709:31966991,25164736:24720180 -g1,6709:31966991,25164736 -) -(1,6710:7246811,25830914:24720180,404226,107478 -h1,6710:7246811,25830914:0,0,0 -g1,6710:7879103,25830914 -g1,6710:8827541,25830914 -k1,6710:8827541,25830914:0 -h1,6710:14518164,25830914:0,0,0 -k1,6710:31966992,25830914:17448828 -g1,6710:31966992,25830914 -) -(1,6711:7246811,26497092:24720180,410518,107478 -h1,6711:7246811,26497092:0,0,0 -g1,6711:9143685,26497092 -g1,6711:10092122,26497092 -g1,6711:14202017,26497092 -h1,6711:14518163,26497092:0,0,0 -k1,6711:31966991,26497092:17448828 -g1,6711:31966991,26497092 -) -(1,6712:7246811,27163270:24720180,404226,76021 -h1,6712:7246811,27163270:0,0,0 -g1,6712:7562957,27163270 -g1,6712:7879103,27163270 -g1,6712:9459832,27163270 -g1,6712:10408270,27163270 -h1,6712:12305145,27163270:0,0,0 -k1,6712:31966991,27163270:19661846 -g1,6712:31966991,27163270 -) -(1,6713:7246811,27829448:24720180,404226,76021 -h1,6713:7246811,27829448:0,0,0 -h1,6713:7562957,27829448:0,0,0 -k1,6713:31966991,27829448:24404034 -g1,6713:31966991,27829448 -) -(1,6714:7246811,28495626:24720180,404226,101187 -h1,6714:7246811,28495626:0,0,0 -k1,6714:7246811,28495626:0 -h1,6714:9775976,28495626:0,0,0 -k1,6714:31966992,28495626:22191016 -g1,6714:31966992,28495626 -) -] -) -g1,6716:31966991,28596813 -g1,6716:7246811,28596813 -g1,6716:7246811,28596813 -g1,6716:31966991,28596813 -g1,6716:31966991,28596813 -) -h1,6716:7246811,28793421:0,0,0 -] -) -] -r1,6745:32583029,29907533:26214,14711529,0 -) -] -) -) -g1,6719:32583029,29317709 -) -h1,6719:6630773,29933747:0,0,0 -v1,6722:6630773,31299523:0,393216,0 -(1,6723:6630773,37026018:25952256,6119711,616038 -g1,6723:6630773,37026018 -(1,6723:6630773,37026018:25952256,6119711,616038 -(1,6723:6630773,37642056:25952256,6735749,0 -[1,6723:6630773,37642056:25952256,6735749,0 -(1,6723:6630773,37615842:25952256,6683321,0 -r1,6745:6656987,37615842:26214,6683321,0 -[1,6723:6656987,37615842:25899828,6683321,0 -(1,6723:6656987,37026018:25899828,5503673,0 -[1,6723:7246811,37026018:24720180,5503673,0 -(1,6723:7246811,32684230:24720180,1161885,196608 -(1,6722:7246811,32684230:0,1161885,196608 -r1,6745:8794447,32684230:1547636,1358493,196608 -k1,6722:7246811,32684230:-1547636 -) -(1,6722:7246811,32684230:1547636,1161885,196608 -) -k1,6722:8949741,32684230:155294 -(1,6722:8949741,32684230:0,459977,115847 -r1,6745:10011430,32684230:1061689,575824,115847 -k1,6722:8949741,32684230:-1061689 -) -(1,6722:8949741,32684230:1061689,459977,115847 -k1,6722:8949741,32684230:3277 -h1,6722:10008153,32684230:0,411205,112570 -) -k1,6722:10166725,32684230:155295 -k1,6722:12067243,32684230:155294 -k1,6722:12908700,32684230:155295 -k1,6722:16154017,32684230:155294 -k1,6722:18338306,32684230:155294 -k1,6722:19109639,32684230:155295 -k1,6722:20284018,32684230:155294 -k1,6722:22969002,32684230:155294 -k1,6722:23783589,32684230:155295 -k1,6722:26049798,32684230:155294 -k1,6722:27680308,32684230:155295 -k1,6722:30697559,32684230:155294 -k1,6723:31966991,32684230:0 -) -(1,6723:7246811,33525718:24720180,505283,126483 -k1,6722:9969355,33525718:201374 -k1,6722:13104121,33525718:201375 -k1,6722:14502182,33525718:201374 -k1,6722:18117327,33525718:201375 -k1,6722:21505061,33525718:201374 -k1,6722:22322474,33525718:201375 -k1,6722:23542933,33525718:201374 -k1,6722:25159230,33525718:201375 -k1,6722:26493066,33525718:201374 -k1,6722:27442207,33525718:201375 -k1,6722:30476702,33525718:201374 -k1,6722:31966991,33525718:0 -) -(1,6723:7246811,34367206:24720180,513147,126483 -k1,6722:8390616,34367206:196154 -k1,6722:10038393,34367206:196155 -k1,6722:12857953,34367206:196154 -k1,6722:13713400,34367206:196155 -k1,6722:14928639,34367206:196154 -k1,6722:17102670,34367206:196154 -k1,6722:17981710,34367206:196155 -k1,6722:19345060,34367206:196154 -k1,6722:21760263,34367206:196154 -k1,6722:23653800,34367206:196155 -k1,6722:25186888,34367206:196154 -k1,6722:27674837,34367206:196155 -k1,6722:28890076,34367206:196154 -k1,6722:31966991,34367206:0 -) -(1,6723:7246811,35208694:24720180,513147,126483 -k1,6722:8137620,35208694:231517 -k1,6722:9388222,35208694:231517 -k1,6722:11898425,35208694:231516 -k1,6722:13479984,35208694:231517 -k1,6722:14370793,35208694:231517 -k1,6722:17677915,35208694:231517 -k1,6722:18525470,35208694:231517 -k1,6722:19776071,35208694:231516 -k1,6722:21596181,35208694:231517 -k1,6722:23177740,35208694:231517 -k1,6722:25106639,35208694:231517 -k1,6722:26329716,35208694:231517 -k1,6722:27955838,35208694:231516 -k1,6722:28838783,35208694:231517 -k1,6722:30399370,35208694:231517 -k1,6722:31966991,35208694:0 -) -(1,6723:7246811,36050182:24720180,505283,134348 -k1,6722:8623889,36050182:220368 -k1,6722:9375754,36050182:220368 -k1,6722:12409583,36050182:220368 -k1,6722:15347073,36050182:220367 -k1,6722:17298902,36050182:220368 -k1,6722:19404741,36050182:220368 -k1,6722:20493461,36050182:220368 -k1,6722:21818111,36050182:220368 -k1,6722:22853747,36050182:220368 -k1,6722:24468065,36050182:220367 -(1,6722:24468065,36050182:0,452978,115847 -r1,6745:26936602,36050182:2468537,568825,115847 -k1,6722:24468065,36050182:-2468537 -) -(1,6722:24468065,36050182:2468537,452978,115847 -k1,6722:24468065,36050182:3277 -h1,6722:26933325,36050182:0,411205,112570 -) -k1,6722:27330640,36050182:220368 -k1,6722:28742453,36050182:220368 -k1,6722:31435494,36050182:220368 -k1,6722:31966991,36050182:0 -) -(1,6723:7246811,36891670:24720180,513147,134348 -k1,6722:10111014,36891670:191645 -k1,6722:12197305,36891670:191645 -k1,6722:13040378,36891670:191645 -k1,6722:14251108,36891670:191645 -k1,6722:15931076,36891670:191645 -k1,6722:16782013,36891670:191645 -k1,6722:17992743,36891670:191645 -k1,6722:19568509,36891670:191646 -k1,6722:22650947,36891670:191645 -k1,6722:24728063,36891670:191645 -k1,6722:25788060,36891670:191645 -k1,6722:27083987,36891670:191645 -k1,6722:28090900,36891670:191645 -k1,6722:29676496,36891670:191645 -(1,6722:29676496,36891670:0,452978,115847 -r1,6745:31793321,36891670:2116825,568825,115847 -k1,6722:29676496,36891670:-2116825 -) -(1,6722:29676496,36891670:2116825,452978,115847 -k1,6722:29676496,36891670:3277 -h1,6722:31790044,36891670:0,411205,112570 -) -k1,6723:31966991,36891670:0 -k1,6723:31966991,36891670:0 -) -] -) -] -r1,6745:32583029,37615842:26214,6683321,0 -) -] -) -) -g1,6723:32583029,37026018 -) -h1,6723:6630773,37642056:0,0,0 -(1,6725:6630773,39269976:25952256,505283,126483 -(1,6725:6630773,39269976:2809528,485622,11795 -g1,6725:6630773,39269976 -g1,6725:9440301,39269976 -) -(1,6725:9440301,39269976:0,452978,115847 -r1,6745:11205414,39269976:1765113,568825,115847 -k1,6725:9440301,39269976:-1765113 -) -(1,6725:9440301,39269976:1765113,452978,115847 -k1,6725:9440301,39269976:3277 -h1,6725:11202137,39269976:0,411205,112570 -) -g1,6725:11409886,39269976 -k1,6725:32583028,39269976:19380732 -g1,6725:32583028,39269976 -) -(1,6727:6630773,40504680:25952256,513147,126483 -(1,6726:6630773,40504680:0,452978,115847 -r1,6745:8395886,40504680:1765113,568825,115847 -k1,6726:6630773,40504680:-1765113 -) -(1,6726:6630773,40504680:1765113,452978,115847 -k1,6726:6630773,40504680:3277 -h1,6726:8392609,40504680:0,411205,112570 -) -k1,6726:8690074,40504680:294188 -k1,6726:10729486,40504680:294188 -k1,6726:12015234,40504680:294188 -k1,6726:15614403,40504680:294188 -k1,6726:18059483,40504680:294188 -k1,6726:19820367,40504680:294188 -k1,6726:20580516,40504680:294188 -k1,6726:21940975,40504680:294188 -k1,6726:22921325,40504680:294188 -k1,6726:26520494,40504680:294188 -k1,6726:28327908,40504680:294188 -k1,6726:29308258,40504680:294188 -(1,6726:29308258,40504680:0,459977,115847 -r1,6745:30369947,40504680:1061689,575824,115847 -k1,6726:29308258,40504680:-1061689 -) -(1,6726:29308258,40504680:1061689,459977,115847 -k1,6726:29308258,40504680:3277 -h1,6726:30366670,40504680:0,411205,112570 -) -k1,6726:30664135,40504680:294188 -k1,6726:32583029,40504680:0 -) -(1,6727:6630773,41346168:25952256,513147,134348 -k1,6726:9141676,41346168:171923 -k1,6726:9972891,41346168:171923 -k1,6726:10500673,41346168:171922 -k1,6726:11666122,41346168:171923 -k1,6726:12520930,41346168:171923 -k1,6726:14844400,41346168:171923 -k1,6726:16396511,41346168:171923 -k1,6726:17921096,41346168:171922 -k1,6726:18448879,41346168:171923 -k1,6726:20690429,41346168:171923 -k1,6726:24108350,41346168:171923 -k1,6726:26165744,41346168:171923 -k1,6726:26869163,41346168:171922 -k1,6726:29328293,41346168:171923 -k1,6726:30270919,41346168:171923 -k1,6727:32583029,41346168:0 -) -(1,6727:6630773,42187656:25952256,505283,102891 -g1,6726:8344539,42187656 -g1,6726:9615937,42187656 -g1,6726:11700637,42187656 -g1,6726:13004148,42187656 -g1,6726:14489193,42187656 -g1,6726:15436188,42187656 -g1,6726:15991277,42187656 -k1,6727:32583029,42187656:13906742 -g1,6727:32583029,42187656 -) -] -(1,6745:32583029,45706769:0,0,0 -g1,6745:32583029,45706769 -) -) -] -(1,6745:6630773,47279633:25952256,0,0 -h1,6745:6630773,47279633:25952256,0,0 -) -] -(1,6745:4262630,4025873:0,0,0 -[1,6745:-473656,4025873:0,0,0 -(1,6745:-473656,-710413:0,0,0 -(1,6745:-473656,-710413:0,0,0 -g1,6745:-473656,-710413 -) -g1,6745:-473656,-710413 -) -] -) -] -!22817 -}128 -Input:1019:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1020:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1021:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!288 -{129 -[1,6806:4262630,47279633:28320399,43253760,0 -(1,6806:4262630,4025873:0,0,0 -[1,6806:-473656,4025873:0,0,0 -(1,6806:-473656,-710413:0,0,0 -(1,6806:-473656,-644877:0,0,0 -k1,6806:-473656,-644877:-65536 -) -(1,6806:-473656,4736287:0,0,0 -k1,6806:-473656,4736287:5209943 -) -g1,6806:-473656,-710413 -) -] -) -[1,6806:6630773,47279633:25952256,43253760,0 -[1,6806:6630773,4812305:25952256,786432,0 -(1,6806:6630773,4812305:25952256,505283,134348 -(1,6806:6630773,4812305:25952256,505283,134348 -g1,6806:3078558,4812305 -[1,6806:3078558,4812305:0,0,0 -(1,6806:3078558,2439708:0,1703936,0 -k1,6806:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,6806:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,6806:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,6806:3078558,4812305:0,0,0 -(1,6806:3078558,2439708:0,1703936,0 -g1,6806:29030814,2439708 -g1,6806:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,6806:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,6806:37855564,2439708:1179648,16384,0 -) -) -k1,6806:3078556,2439708:-34777008 -) -] -[1,6806:3078558,4812305:0,0,0 -(1,6806:3078558,49800853:0,16384,2228224 -k1,6806:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,6806:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,6806:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,6806:3078558,4812305:0,0,0 -(1,6806:3078558,49800853:0,16384,2228224 -g1,6806:29030814,49800853 -g1,6806:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,6806:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,6806:37855564,49800853:1179648,16384,0 -) -) -k1,6806:3078556,49800853:-34777008 -) -] -g1,6806:6630773,4812305 -k1,6806:18771974,4812305:10945824 -g1,6806:20158715,4812305 -g1,6806:20807521,4812305 -g1,6806:24121676,4812305 -g1,6806:28605649,4812305 -g1,6806:30015328,4812305 -) -) -] -[1,6806:6630773,45706769:25952256,40108032,0 -(1,6806:6630773,45706769:25952256,40108032,0 -(1,6806:6630773,45706769:0,0,0 -g1,6806:6630773,45706769 -) -[1,6806:6630773,45706769:25952256,40108032,0 -(1,6745:6630773,18118296:25952256,12519559,0 -k1,6745:11982920,18118296:5352147 -(1,6728:11982920,18118296:0,0,0 -g1,6728:11982920,18118296 -g1,6728:11982920,18118296 -g1,6728:11655240,18118296 -(1,6728:11655240,18118296:0,0,0 -) -g1,6728:11982920,18118296 -) -(1,6743:11982920,18118296:15247963,12519559,0 -g1,6743:15470289,18118296 -(1,6743:15470289,6544183:0,0,0 -(1,6743:15470289,6544183:0,0,0 -g1,6730:15470289,6544183 -(1,6731:15470289,6544183:0,0,0 -(1,6731:15470289,6544183:0,0,0 -g1,6731:15470289,6544183 -g1,6731:15470289,6544183 -g1,6731:15470289,6544183 -g1,6731:15470289,6544183 -g1,6731:15470289,6544183 -(1,6731:15470289,6544183:0,0,0 -(1,6731:15470289,6544183:589824,56623,0 -(1,6731:15470289,6544183:589824,56623,0 -) -g1,6731:16060113,6544183 -) -) -g1,6731:15470289,6544183 -g1,6731:15470289,6544183 -) -) -g1,6731:15470289,6544183 -(1,6732:15470289,6544183:0,0,0 -(1,6732:15470289,6544183:0,0,0 -g1,6732:15470289,6544183 -g1,6732:15470289,6544183 -g1,6732:15470289,6544183 -g1,6732:15470289,6544183 -g1,6732:15470289,6544183 -(1,6732:15470289,6544183:0,0,0 -(1,6732:15470289,6544183:358613,319685,0 -(1,6732:15470289,6544183:358613,319685,0 -$1,6732:15470289,6544183 -$1,6732:15828902,6544183 -) -g1,6732:15828902,6544183 -) -) -g1,6732:15470289,6544183 -g1,6732:15470289,6544183 -) -) -g1,6732:15470289,6544183 -(1,6733:15470289,6544183:0,0,0 -(1,6733:15470289,6544183:0,0,0 -g1,6733:15470289,6544183 -g1,6733:15470289,6544183 -(1,6733:15470289,6544183:0,0,0 -(1,6733:15470289,6544183:4754664,408008,104590 -(1,6733:15470289,6544183:4754664,408008,104590 -(1,6733:15470289,6544183:0,408008,104590 -r1,6806:20224953,6544183:4754664,512598,104590 -k1,6733:15470289,6544183:-4754664 -) -(1,6733:15470289,6544183:4754664,408008,104590 -g1,6733:17372810,6544183 -h1,6733:20221676,6544183:0,370085,101313 -) -) -g1,6733:20224953,6544183 -) -) -g1,6733:15470289,6544183 -g1,6733:15470289,6544183 -) -) -(1,6734:15470289,6544183:0,0,0 -(1,6734:15470289,6544183:0,0,0 -g1,6734:15470289,6544183 -g1,6734:15470289,6544183 -g1,6734:15470289,6544183 -g1,6734:15470289,6544183 -g1,6734:15470289,6544183 -(1,6734:15470289,6544183:0,0,0 -(1,6734:15470289,6544183:4121582,373362,104590 -(1,6734:15470289,6544183:4121582,373362,104590 -(1,6734:15470289,6544183:0,373362,104590 -r1,6806:19591871,6544183:4121582,477952,104590 -k1,6734:15470289,6544183:-4121582 -) -(1,6734:15470289,6544183:4121582,373362,104590 -g1,6734:18955513,6544183 -h1,6734:19588594,6544183:0,370085,101313 -) -) -g1,6734:19591871,6544183 -) -) -g1,6734:15470289,6544183 -g1,6734:15470289,6544183 -) -) -(1,6735:15470289,6544183:0,0,0 -(1,6735:15470289,6544183:0,0,0 -g1,6735:15470289,6544183 -g1,6735:15470289,6544183 -g1,6735:15470289,6544183 -g1,6735:15470289,6544183 -g1,6735:15470289,6544183 -(1,6735:15470289,6544183:0,0,0 -(1,6735:15470289,6544183:4121582,373362,104590 -(1,6735:15470289,6544183:4121582,373362,104590 -(1,6735:15470289,6544183:0,373362,104590 -r1,6806:19591871,6544183:4121582,477952,104590 -k1,6735:15470289,6544183:-4121582 -) -(1,6735:15470289,6544183:4121582,373362,104590 -g1,6735:18955513,6544183 -h1,6735:19588594,6544183:0,370085,101313 -) -) -g1,6735:19591871,6544183 -) -) -g1,6735:15470289,6544183 -g1,6735:15470289,6544183 -) -) -g1,6735:15470289,6544183 -g1,6736:15470289,6544183 -(1,6736:15470289,6544183:0,0,0 -(1,6736:15470289,6544183:0,0,0 -g1,6736:15470289,6544183 -g1,6736:15470289,6544183 -g1,6736:15470289,6544183 -g1,6736:15470289,6544183 -g1,6736:15470289,6544183 -(1,6736:15470289,6544183:0,0,0 -(1,6736:15470289,6544183:589824,56623,0 -(1,6736:15470289,6544183:589824,56623,0 -) -g1,6736:16060113,6544183 -) -) -g1,6736:15470289,6544183 -g1,6736:15470289,6544183 -) -) -g1,6736:15470289,6544183 -g1,6737:15470289,6544183 -g1,6737:15470289,6544183 -g1,6737:15470289,6544183 -g1,6737:15470289,6544183 -g1,6738:15470289,6544183 -g1,6738:15470289,6544183 -g1,6738:15470289,6544183 -(1,6738:15470289,6544183:0,0,0 -(1,6738:15470289,6544183:0,0,0 -g1,6738:15470289,6544183 -g1,6738:15470289,6544183 -g1,6738:15470289,6544183 -g1,6738:15470289,6544183 -g1,6738:15470289,6544183 -(1,6738:15470289,6544183:0,0,0 -(1,6738:15470289,6544183:1272717,373362,104590 -(1,6738:15470289,6544183:1272717,373362,104590 -(1,6738:15470289,6544183:0,373362,104590 -r1,6806:16743006,6544183:1272717,477952,104590 -k1,6738:15470289,6544183:-1272717 -) -(1,6738:15470289,6544183:1272717,373362,104590 -k1,6738:15470289,6544183:3277 -h1,6738:16739729,6544183:0,370085,101313 -) -) -g1,6738:16743006,6544183 -) -) -g1,6738:15470289,6544183 -g1,6738:15470289,6544183 -) -) -g1,6738:15470289,6544183 -g1,6739:15470289,6544183 -g1,6739:15470289,6544183 -g1,6739:15470289,6544183 -(1,6739:15470289,6544183:0,0,0 -(1,6739:15470289,6544183:0,0,0 -g1,6739:15470289,6544183 -g1,6739:15470289,6544183 -g1,6739:15470289,6544183 -g1,6739:15470289,6544183 -g1,6739:15470289,6544183 -(1,6739:15470289,6544183:0,0,0 -(1,6739:15470289,6544183:1589257,373362,104590 -(1,6739:15470289,6544183:1589257,373362,104590 -(1,6739:15470289,6544183:0,373362,104590 -r1,6806:17059546,6544183:1589257,477952,104590 -k1,6739:15470289,6544183:-1589257 -) -(1,6739:15470289,6544183:1589257,373362,104590 -k1,6739:15470289,6544183:3277 -h1,6739:17056269,6544183:0,370085,101313 -) -) -g1,6739:17059546,6544183 -) -) -g1,6739:15470289,6544183 -g1,6739:15470289,6544183 -) -) -g1,6739:15470289,6544183 -g1,6740:15470289,6544183 -g1,6740:15470289,6544183 -g1,6740:15470289,6544183 -g1,6740:15470289,6544183 -g1,6740:15470289,6544183 -g1,6741:15470289,6544183 -g1,6741:15470289,6544183 -g1,6741:15470289,6544183 -g1,6741:15470289,6544183 -g1,6742:15470289,6544183 -g1,6742:15470289,6544183 -g1,6742:15470289,6544183 -g1,6742:15470289,6544183 -g1,6742:15470289,6544183 -g1,6742:15470289,6544183 -g1,6743:15470289,6544183 -g1,6743:15470289,6544183 -) -g1,6743:15470289,6544183 -) -) -g1,6745:27230883,18118296 -k1,6745:32583029,18118296:5352146 -) -v1,6749:6630773,19934352:0,393216,0 -(1,6768:6630773,26984296:25952256,7443160,196608 -g1,6768:6630773,26984296 -g1,6768:6630773,26984296 -g1,6768:6434165,26984296 -(1,6768:6434165,26984296:0,7443160,196608 -r1,6806:32779637,26984296:26345472,7639768,196608 -k1,6768:6434165,26984296:-26345472 -) -(1,6768:6434165,26984296:26345472,7443160,196608 -[1,6768:6630773,26984296:25952256,7246552,0 -(1,6751:6630773,20126241:25952256,388497,4718 -(1,6750:6630773,20126241:0,0,0 -g1,6750:6630773,20126241 -g1,6750:6630773,20126241 -g1,6750:6303093,20126241 -(1,6750:6303093,20126241:0,0,0 -) -g1,6750:6630773,20126241 -) -g1,6751:7263065,20126241 -g1,6751:8211503,20126241 -h1,6751:8527649,20126241:0,0,0 -k1,6751:32583029,20126241:24055380 -g1,6751:32583029,20126241 -) -(1,6752:6630773,20792419:25952256,404226,76021 -h1,6752:6630773,20792419:0,0,0 -g1,6752:8527647,20792419 -g1,6752:9476084,20792419 -g1,6752:10108376,20792419 -g1,6752:11372959,20792419 -h1,6752:11689105,20792419:0,0,0 -k1,6752:32583029,20792419:20893924 -g1,6752:32583029,20792419 -) -(1,6753:6630773,21458597:25952256,404226,101187 -h1,6753:6630773,21458597:0,0,0 -g1,6753:6946919,21458597 -g1,6753:7263065,21458597 -k1,6753:7263065,21458597:0 -h1,6753:9792230,21458597:0,0,0 -k1,6753:32583030,21458597:22790800 -g1,6753:32583030,21458597 -) -(1,6754:6630773,22124775:25952256,388497,4718 -h1,6754:6630773,22124775:0,0,0 -g1,6754:6946919,22124775 -g1,6754:7263065,22124775 -g1,6754:7895357,22124775 -g1,6754:8843795,22124775 -h1,6754:9792233,22124775:0,0,0 -k1,6754:32583029,22124775:22790796 -g1,6754:32583029,22124775 -) -(1,6755:6630773,22790953:25952256,404226,76021 -h1,6755:6630773,22790953:0,0,0 -h1,6755:6946919,22790953:0,0,0 -k1,6755:32583029,22790953:25636110 -g1,6755:32583029,22790953 -) -(1,6761:6630773,23522667:25952256,404226,76021 -(1,6757:6630773,23522667:0,0,0 -g1,6757:6630773,23522667 -g1,6757:6630773,23522667 -g1,6757:6303093,23522667 -(1,6757:6303093,23522667:0,0,0 -) -g1,6757:6630773,23522667 -) -g1,6761:7579210,23522667 -g1,6761:8843793,23522667 -h1,6761:9159939,23522667:0,0,0 -k1,6761:32583029,23522667:23423090 -g1,6761:32583029,23522667 -) -(1,6761:6630773,24188845:25952256,404226,76021 -h1,6761:6630773,24188845:0,0,0 -g1,6761:7579210,24188845 -g1,6761:8843793,24188845 -h1,6761:9159939,24188845:0,0,0 -k1,6761:32583029,24188845:23423090 -g1,6761:32583029,24188845 -) -(1,6761:6630773,24855023:25952256,404226,76021 -h1,6761:6630773,24855023:0,0,0 -g1,6761:7579210,24855023 -g1,6761:8843793,24855023 -h1,6761:9476084,24855023:0,0,0 -k1,6761:32583028,24855023:23106944 -g1,6761:32583028,24855023 -) -(1,6763:6630773,26176561:25952256,404226,101187 -(1,6762:6630773,26176561:0,0,0 -g1,6762:6630773,26176561 -g1,6762:6630773,26176561 -g1,6762:6303093,26176561 -(1,6762:6303093,26176561:0,0,0 -) -g1,6762:6630773,26176561 -) -k1,6763:6630773,26176561:0 -h1,6763:9159938,26176561:0,0,0 -k1,6763:32583030,26176561:23423092 -g1,6763:32583030,26176561 -) -(1,6767:6630773,26908275:25952256,404226,76021 -(1,6765:6630773,26908275:0,0,0 -g1,6765:6630773,26908275 -g1,6765:6630773,26908275 -g1,6765:6303093,26908275 -(1,6765:6303093,26908275:0,0,0 -) -g1,6765:6630773,26908275 -) -g1,6767:7579210,26908275 -g1,6767:8843793,26908275 -h1,6767:9792230,26908275:0,0,0 -k1,6767:32583030,26908275:22790800 -g1,6767:32583030,26908275 -) -] -) -g1,6768:32583029,26984296 -g1,6768:6630773,26984296 -g1,6768:6630773,26984296 -g1,6768:32583029,26984296 -g1,6768:32583029,26984296 -) -h1,6768:6630773,27180904:0,0,0 -v1,6772:6630773,29044505:0,393216,0 -(1,6773:6630773,30489049:25952256,1837760,616038 -g1,6773:6630773,30489049 -(1,6773:6630773,30489049:25952256,1837760,616038 -(1,6773:6630773,31105087:25952256,2453798,0 -[1,6773:6630773,31105087:25952256,2453798,0 -(1,6773:6630773,31078873:25952256,2401370,0 -r1,6806:6656987,31078873:26214,2401370,0 -[1,6773:6656987,31078873:25899828,2401370,0 -(1,6773:6656987,30489049:25899828,1221722,0 -[1,6773:7246811,30489049:24720180,1221722,0 -(1,6773:7246811,30354701:24720180,1087374,134348 -g1,6772:8655743,30354701 -g1,6772:10514344,30354701 -g1,6772:12094417,30354701 -g1,6772:13578152,30354701 -g1,6772:14947854,30354701 -g1,6772:18811856,30354701 -g1,6772:20308043,30354701 -g1,6772:21526357,30354701 -g1,6772:23131989,30354701 -g1,6772:25011561,30354701 -g1,6772:25877946,30354701 -(1,6772:25877946,30354701:0,414482,115847 -r1,6806:26236212,30354701:358266,530329,115847 -k1,6772:25877946,30354701:-358266 -) -(1,6772:25877946,30354701:358266,414482,115847 -k1,6772:25877946,30354701:3277 -h1,6772:26232935,30354701:0,411205,112570 -) -g1,6772:26435441,30354701 -g1,6772:27166167,30354701 -g1,6772:29224652,30354701 -g1,6772:30866328,30354701 -k1,6773:31966991,30354701:130075 -g1,6773:31966991,30354701 -) -] -) -] -r1,6806:32583029,31078873:26214,2401370,0 -) -] -) -) -g1,6773:32583029,30489049 -) -h1,6773:6630773,31105087:0,0,0 -v1,6777:6630773,32457632:0,393216,0 -(1,6803:6630773,45090731:25952256,13026315,616038 -g1,6803:6630773,45090731 -(1,6803:6630773,45090731:25952256,13026315,616038 -(1,6803:6630773,45706769:25952256,13642353,0 -[1,6803:6630773,45706769:25952256,13642353,0 -(1,6803:6630773,45680555:25952256,13589925,0 -r1,6806:6656987,45680555:26214,13589925,0 -[1,6803:6656987,45680555:25899828,13589925,0 -(1,6803:6656987,45090731:25899828,12410277,0 -[1,6803:7246811,45090731:24720180,12410277,0 -(1,6778:7246811,33964436:24720180,1283982,196608 -(1,6777:7246811,33964436:0,1283982,196608 -r1,6806:9812056,33964436:2565245,1480590,196608 -k1,6777:7246811,33964436:-2565245 -) -(1,6777:7246811,33964436:2565245,1283982,196608 -) -g1,6777:10011285,33964436 -g1,6777:11407201,33964436 -g1,6777:15123092,33964436 -g1,6777:17177645,33964436 -g1,6777:18481156,33964436 -g1,6777:19428151,33964436 -g1,6777:22804565,33964436 -k1,6778:31966991,33964436:8337328 -g1,6778:31966991,33964436 -) -v1,6780:7246811,35154902:0,393216,0 -(1,6788:7246811,38087524:24720180,3325838,196608 -g1,6788:7246811,38087524 -g1,6788:7246811,38087524 -g1,6788:7050203,38087524 -(1,6788:7050203,38087524:0,3325838,196608 -r1,6806:32163599,38087524:25113396,3522446,196608 -k1,6788:7050203,38087524:-25113396 -) -(1,6788:7050203,38087524:25113396,3325838,196608 -[1,6788:7246811,38087524:24720180,3129230,0 -(1,6782:7246811,35346791:24720180,388497,4718 -(1,6781:7246811,35346791:0,0,0 -g1,6781:7246811,35346791 -g1,6781:7246811,35346791 -g1,6781:6919131,35346791 -(1,6781:6919131,35346791:0,0,0 -) -g1,6781:7246811,35346791 -) -g1,6782:7879103,35346791 -g1,6782:8827541,35346791 -h1,6782:9143687,35346791:0,0,0 -k1,6782:31966991,35346791:22823304 -g1,6782:31966991,35346791 -) -(1,6783:7246811,36012969:24720180,404226,101187 -h1,6783:7246811,36012969:0,0,0 -k1,6783:7246811,36012969:0 -h1,6783:9775976,36012969:0,0,0 -k1,6783:31966992,36012969:22191016 -g1,6783:31966992,36012969 -) -(1,6784:7246811,36679147:24720180,404226,76021 -h1,6784:7246811,36679147:0,0,0 -g1,6784:9143685,36679147 -g1,6784:10092122,36679147 -g1,6784:10724414,36679147 -g1,6784:11988997,36679147 -h1,6784:12305143,36679147:0,0,0 -k1,6784:31966991,36679147:19661848 -g1,6784:31966991,36679147 -) -(1,6785:7246811,37345325:24720180,404226,101187 -h1,6785:7246811,37345325:0,0,0 -g1,6785:7562957,37345325 -g1,6785:7879103,37345325 -g1,6785:10408268,37345325 -g1,6785:11356706,37345325 -h1,6785:12621290,37345325:0,0,0 -k1,6785:31966990,37345325:19345700 -g1,6785:31966990,37345325 -) -(1,6786:7246811,38011503:24720180,404226,76021 -h1,6786:7246811,38011503:0,0,0 -h1,6786:7562957,38011503:0,0,0 -k1,6786:31966991,38011503:24404034 -g1,6786:31966991,38011503 -) -] -) -g1,6788:31966991,38087524 -g1,6788:7246811,38087524 -g1,6788:7246811,38087524 -g1,6788:31966991,38087524 -g1,6788:31966991,38087524 -) -h1,6788:7246811,38284132:0,0,0 -(1,6792:7246811,39649908:24720180,513147,126483 -h1,6791:7246811,39649908:983040,0,0 -k1,6791:10801627,39649908:238039 -k1,6791:12336624,39649908:238039 -k1,6791:13777903,39649908:238038 -k1,6791:16116371,39649908:238039 -k1,6791:17545855,39649908:238039 -k1,6791:19114275,39649908:238039 -k1,6791:19810410,39649908:238038 -k1,6791:22179680,39649908:238039 -k1,6791:23069147,39649908:238039 -k1,6791:24326271,39649908:238039 -k1,6791:27090723,39649908:238039 -k1,6791:27944799,39649908:238038 -k1,6791:28597642,39649908:238000 -k1,6791:29494973,39649908:238039 -k1,6792:31966991,39649908:0 -) -(1,6792:7246811,40491396:24720180,505283,134348 -g1,6791:11422109,40491396 -g1,6791:12272766,40491396 -g1,6791:14703496,40491396 -g1,6791:17744366,40491396 -g1,6791:19953584,40491396 -g1,6791:20508673,40491396 -g1,6791:22580921,40491396 -g1,6791:25966510,40491396 -g1,6791:27311964,40491396 -g1,6791:28530278,40491396 -g1,6791:29886217,40491396 -k1,6792:31966991,40491396:38672 -g1,6792:31966991,40491396 -) -v1,6794:7246811,41681862:0,393216,0 -(1,6799:7246811,42560376:24720180,1271730,196608 -g1,6799:7246811,42560376 -g1,6799:7246811,42560376 -g1,6799:7050203,42560376 -(1,6799:7050203,42560376:0,1271730,196608 -r1,6806:32163599,42560376:25113396,1468338,196608 -k1,6799:7050203,42560376:-25113396 -) -(1,6799:7050203,42560376:25113396,1271730,196608 -[1,6799:7246811,42560376:24720180,1075122,0 -(1,6796:7246811,41889480:24720180,404226,9436 -(1,6795:7246811,41889480:0,0,0 -g1,6795:7246811,41889480 -g1,6795:7246811,41889480 -g1,6795:6919131,41889480 -(1,6795:6919131,41889480:0,0,0 -) -g1,6795:7246811,41889480 -) -g1,6796:7879103,41889480 -g1,6796:8827541,41889480 -g1,6796:9459833,41889480 -g1,6796:10408271,41889480 -g1,6796:11040563,41889480 -g1,6796:11989001,41889480 -h1,6796:12937439,41889480:0,0,0 -k1,6796:31966991,41889480:19029552 -g1,6796:31966991,41889480 -) -(1,6797:7246811,42555658:24720180,284164,4718 -h1,6797:7246811,42555658:0,0,0 -h1,6797:7562957,42555658:0,0,0 -k1,6797:31966991,42555658:24404034 -g1,6797:31966991,42555658 -) -] -) -g1,6799:31966991,42560376 -g1,6799:7246811,42560376 -g1,6799:7246811,42560376 -g1,6799:31966991,42560376 -g1,6799:31966991,42560376 -) -h1,6799:7246811,42756984:0,0,0 -(1,6803:7246811,44122760:24720180,513147,126483 -h1,6802:7246811,44122760:983040,0,0 -k1,6802:10735766,44122760:172178 -k1,6802:12204902,44122760:172178 -k1,6802:12732940,44122760:172178 -k1,6802:15146449,44122760:172178 -(1,6802:15146449,44122760:0,452978,115847 -r1,6806:17966698,44122760:2820249,568825,115847 -k1,6802:15146449,44122760:-2820249 -) -(1,6802:15146449,44122760:2820249,452978,115847 -k1,6802:15146449,44122760:3277 -h1,6802:17963421,44122760:0,411205,112570 -) -k1,6802:18138876,44122760:172178 -k1,6802:19412060,44122760:172179 -k1,6802:21094188,44122760:172178 -k1,6802:23231791,44122760:172178 -k1,6802:25446726,44122760:172178 -(1,6802:25446726,44122760:0,452978,115847 -r1,6806:27915263,44122760:2468537,568825,115847 -k1,6802:25446726,44122760:-2468537 -) -(1,6802:25446726,44122760:2468537,452978,115847 -k1,6802:25446726,44122760:3277 -h1,6802:27911986,44122760:0,411205,112570 -) -k1,6802:28261111,44122760:172178 -k1,6802:29985182,44122760:172178 -k1,6803:31966991,44122760:0 -) -(1,6803:7246811,44964248:24720180,513147,126483 -g1,6802:9286291,44964248 -g1,6802:9951481,44964248 -k1,6803:31966991,44964248:18732812 -g1,6803:31966991,44964248 -) -] -) -] -r1,6806:32583029,45680555:26214,13589925,0 -) -] -) -) -g1,6803:32583029,45090731 -) -h1,6803:6630773,45706769:0,0,0 -] -(1,6806:32583029,45706769:0,0,0 -g1,6806:32583029,45706769 -) -) -] -(1,6806:6630773,47279633:25952256,0,0 -h1,6806:6630773,47279633:25952256,0,0 -) -] -(1,6806:4262630,4025873:0,0,0 -[1,6806:-473656,4025873:0,0,0 -(1,6806:-473656,-710413:0,0,0 -(1,6806:-473656,-710413:0,0,0 -g1,6806:-473656,-710413 -) -g1,6806:-473656,-710413 -) -] -) -] -!20010 -}129 -Input:1022:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1023:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1024:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1025:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1026:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1027:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1028:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1029:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1030:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1031:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1032:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1033:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1034:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1035:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1036:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1037:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1038:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1039:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1040:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1041:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1042:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1043:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1044:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1045:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1046:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!2312 -{130 -[1,6858:4262630,47279633:28320399,43253760,0 -(1,6858:4262630,4025873:0,0,0 -[1,6858:-473656,4025873:0,0,0 -(1,6858:-473656,-710413:0,0,0 -(1,6858:-473656,-644877:0,0,0 -k1,6858:-473656,-644877:-65536 -) -(1,6858:-473656,4736287:0,0,0 -k1,6858:-473656,4736287:5209943 -) -g1,6858:-473656,-710413 -) -] -) -[1,6858:6630773,47279633:25952256,43253760,0 -[1,6858:6630773,4812305:25952256,786432,0 -(1,6858:6630773,4812305:25952256,513147,126483 -(1,6858:6630773,4812305:25952256,513147,126483 -g1,6858:3078558,4812305 -[1,6858:3078558,4812305:0,0,0 -(1,6858:3078558,2439708:0,1703936,0 -k1,6858:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,6858:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,6858:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,6858:3078558,4812305:0,0,0 -(1,6858:3078558,2439708:0,1703936,0 -g1,6858:29030814,2439708 -g1,6858:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,6858:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,6858:37855564,2439708:1179648,16384,0 -) -) -k1,6858:3078556,2439708:-34777008 -) -] -[1,6858:3078558,4812305:0,0,0 -(1,6858:3078558,49800853:0,16384,2228224 -k1,6858:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,6858:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,6858:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,6858:3078558,4812305:0,0,0 -(1,6858:3078558,49800853:0,16384,2228224 -g1,6858:29030814,49800853 -g1,6858:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,6858:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,6858:37855564,49800853:1179648,16384,0 -) -) -k1,6858:3078556,49800853:-34777008 -) -] -g1,6858:6630773,4812305 -g1,6858:6630773,4812305 -g1,6858:9175536,4812305 -g1,6858:9990803,4812305 -g1,6858:13137841,4812305 -g1,6858:14654344,4812305 -k1,6858:31387652,4812305:16733308 -) -) -] -[1,6858:6630773,45706769:25952256,40108032,0 -(1,6858:6630773,45706769:25952256,40108032,0 -(1,6858:6630773,45706769:0,0,0 -g1,6858:6630773,45706769 -) -[1,6858:6630773,45706769:25952256,40108032,0 -v1,6806:6630773,6254097:0,393216,0 -(1,6807:6630773,10279115:25952256,4418234,616038 -g1,6807:6630773,10279115 -(1,6807:6630773,10279115:25952256,4418234,616038 -(1,6807:6630773,10895153:25952256,5034272,0 -[1,6807:6630773,10895153:25952256,5034272,0 -(1,6807:6630773,10868939:25952256,4981844,0 -r1,6858:6656987,10868939:26214,4981844,0 -[1,6807:6656987,10868939:25899828,4981844,0 -(1,6807:6656987,10279115:25899828,3802196,0 -[1,6807:7246811,10279115:24720180,3802196,0 -(1,6807:7246811,7638804:24720180,1161885,196608 -(1,6806:7246811,7638804:0,1161885,196608 -r1,6858:8794447,7638804:1547636,1358493,196608 -k1,6806:7246811,7638804:-1547636 -) -(1,6806:7246811,7638804:1547636,1161885,196608 -) -k1,6806:8985404,7638804:190957 -(1,6806:8985404,7638804:0,452978,115847 -r1,6858:10750517,7638804:1765113,568825,115847 -k1,6806:8985404,7638804:-1765113 -) -(1,6806:8985404,7638804:1765113,452978,115847 -k1,6806:8985404,7638804:3277 -h1,6806:10747240,7638804:0,411205,112570 -) -k1,6806:10941473,7638804:190956 -k1,6806:12877654,7638804:190957 -k1,6806:13754773,7638804:190957 -k1,6806:17035753,7638804:190957 -k1,6806:19082033,7638804:190956 -k1,6806:20405452,7638804:190957 -k1,6806:23685121,7638804:190957 -k1,6806:25574116,7638804:190957 -k1,6806:26784157,7638804:190956 -k1,6806:30007465,7638804:190957 -k1,6806:31966991,7638804:0 -) -(1,6807:7246811,8480292:24720180,505283,134348 -k1,6806:7979321,8480292:201013 -(1,6806:7979321,8480292:0,414482,115847 -r1,6858:9744434,8480292:1765113,530329,115847 -k1,6806:7979321,8480292:-1765113 -) -(1,6806:7979321,8480292:1765113,414482,115847 -k1,6806:7979321,8480292:3277 -h1,6806:9741157,8480292:0,411205,112570 -) -k1,6806:10119116,8480292:201012 -k1,6806:10947964,8480292:201013 -k1,6806:12892889,8480292:201012 -k1,6806:14791284,8480292:201013 -k1,6806:16276803,8480292:201013 -k1,6806:18769609,8480292:201012 -k1,6806:21784083,8480292:201013 -k1,6806:24702218,8480292:201012 -k1,6806:26757900,8480292:201013 -k1,6806:27768282,8480292:201012 -k1,6806:28739998,8480292:201013 -k1,6806:31966991,8480292:0 -) -(1,6807:7246811,9321780:24720180,505283,126483 -k1,6806:8599983,9321780:161727 -k1,6806:11794061,9321780:161727 -k1,6806:13965777,9321780:161727 -k1,6806:15146589,9321780:161727 -k1,6806:18722086,9321780:161727 -k1,6806:22243845,9321780:161728 -k1,6806:23273924,9321780:161727 -k1,6806:24539933,9321780:161727 -k1,6806:25801354,9321780:161727 -(1,6806:25801354,9321780:0,452978,115847 -r1,6858:28269891,9321780:2468537,568825,115847 -k1,6806:25801354,9321780:-2468537 -) -(1,6806:25801354,9321780:2468537,452978,115847 -k1,6806:25801354,9321780:3277 -h1,6806:28266614,9321780:0,411205,112570 -) -k1,6806:28431618,9321780:161727 -k1,6806:29209383,9321780:161727 -k1,6806:30390195,9321780:161727 -k1,6806:31966991,9321780:0 -) -(1,6807:7246811,10163268:24720180,513147,115847 -g1,6806:8105332,10163268 -g1,6806:9075264,10163268 -(1,6806:9075264,10163268:0,459977,115847 -r1,6858:9785242,10163268:709978,575824,115847 -k1,6806:9075264,10163268:-709978 -) -(1,6806:9075264,10163268:709978,459977,115847 -k1,6806:9075264,10163268:3277 -h1,6806:9781965,10163268:0,411205,112570 -) -g1,6806:9984471,10163268 -g1,6806:10866585,10163268 -(1,6806:10866585,10163268:0,452978,115847 -r1,6858:12279986,10163268:1413401,568825,115847 -k1,6806:10866585,10163268:-1413401 -) -(1,6806:10866585,10163268:1413401,452978,115847 -k1,6806:10866585,10163268:3277 -h1,6806:12276709,10163268:0,411205,112570 -) -g1,6806:12479215,10163268 -k1,6807:31966991,10163268:16127745 -g1,6807:31966991,10163268 -) -] -) -] -r1,6858:32583029,10868939:26214,4981844,0 -) -] -) -) -g1,6807:32583029,10279115 -) -h1,6807:6630773,10895153:0,0,0 -(1,6809:6630773,12523073:25952256,505283,126483 -(1,6809:6630773,12523073:2809528,485622,11795 -g1,6809:6630773,12523073 -g1,6809:9440301,12523073 -) -(1,6809:9440301,12523073:0,414482,115847 -r1,6858:11557126,12523073:2116825,530329,115847 -k1,6809:9440301,12523073:-2116825 -) -(1,6809:9440301,12523073:2116825,414482,115847 -k1,6809:9440301,12523073:3277 -h1,6809:11553849,12523073:0,411205,112570 -) -g1,6809:11761598,12523073 -k1,6809:32583028,12523073:19029020 -g1,6809:32583028,12523073 -) -(1,6811:6630773,13757777:25952256,513147,126483 -k1,6810:8088054,13757777:260594 -(1,6810:8088054,13757777:0,414482,115847 -r1,6858:10204879,13757777:2116825,530329,115847 -k1,6810:8088054,13757777:-2116825 -) -(1,6810:8088054,13757777:2116825,414482,115847 -k1,6810:8088054,13757777:3277 -h1,6810:10201602,13757777:0,411205,112570 -) -k1,6810:10465473,13757777:260594 -k1,6810:10465473,13757777:0 -k1,6810:13749897,13757777:260593 -k1,6810:14541988,13757777:260594 -k1,6810:16015653,13757777:260594 -k1,6810:19581228,13757777:260594 -k1,6810:21528719,13757777:260594 -k1,6810:22861482,13757777:260594 -k1,6810:24649719,13757777:260593 -k1,6810:27884337,13757777:260594 -k1,6810:28831093,13757777:260594 -k1,6810:32583029,13757777:0 -) -(1,6811:6630773,14599265:25952256,505283,126483 -k1,6810:7951010,14599265:187775 -k1,6810:10268050,14599265:187775 -k1,6810:12827573,14599265:187775 -k1,6810:13824719,14599265:187776 -k1,6810:14368354,14599265:187775 -k1,6810:15655823,14599265:187775 -k1,6810:16495026,14599265:187775 -(1,6810:16495026,14599265:0,452978,115847 -r1,6858:18963563,14599265:2468537,568825,115847 -k1,6810:16495026,14599265:-2468537 -) -(1,6810:16495026,14599265:2468537,452978,115847 -k1,6810:16495026,14599265:3277 -h1,6810:18960286,14599265:0,411205,112570 -) -k1,6810:19325008,14599265:187775 -k1,6810:21398254,14599265:187775 -k1,6810:22690311,14599265:187775 -k1,6810:23625853,14599265:187776 -k1,6810:26127704,14599265:187775 -k1,6810:29366180,14599265:187775 -k1,6810:31563944,14599265:187775 -k1,6810:32583029,14599265:0 -) -(1,6811:6630773,15440753:25952256,513147,126483 -k1,6810:10239895,15440753:195352 -k1,6810:13621607,15440753:195352 -k1,6810:15101464,15440753:195351 -k1,6810:17194739,15440753:195352 -k1,6810:18409176,15440753:195352 -k1,6810:20181324,15440753:195352 -k1,6810:21035968,15440753:195352 -k1,6810:22250405,15440753:195352 -k1,6810:24034349,15440753:195351 -k1,6810:25058731,15440753:195352 -k1,6810:27611413,15440753:195352 -k1,6810:31400104,15440753:195352 -k1,6810:32583029,15440753:0 -) -(1,6811:6630773,16282241:25952256,513147,115847 -k1,6810:7545016,16282241:254951 -k1,6810:10690760,16282241:254951 -k1,6810:13641207,16282241:254951 -(1,6810:13641207,16282241:0,452978,115847 -r1,6858:16109744,16282241:2468537,568825,115847 -k1,6810:13641207,16282241:-2468537 -) -(1,6810:13641207,16282241:2468537,452978,115847 -k1,6810:13641207,16282241:3277 -h1,6810:16106467,16282241:0,411205,112570 -) -k1,6810:16364695,16282241:254951 -k1,6810:18241662,16282241:254951 -k1,6810:19244380,16282241:254952 -k1,6810:21540777,16282241:254951 -k1,6810:22481890,16282241:254951 -k1,6810:26012330,16282241:254951 -k1,6810:28984404,16282241:254951 -k1,6810:29855393,16282241:254951 -k1,6810:30466204,16282241:254951 -(1,6810:30466204,16282241:0,414482,115847 -r1,6858:32583029,16282241:2116825,530329,115847 -k1,6810:30466204,16282241:-2116825 -) -(1,6810:30466204,16282241:2116825,414482,115847 -k1,6810:30466204,16282241:3277 -h1,6810:32579752,16282241:0,411205,112570 -) -k1,6810:32583029,16282241:0 -) -(1,6811:6630773,17123729:25952256,505283,126483 -g1,6810:8244924,17123729 -g1,6810:9576615,17123729 -g1,6810:10842115,17123729 -k1,6811:32583028,17123729:20164772 -g1,6811:32583028,17123729 -) -(1,6829:6630773,28998945:25952256,11027837,0 -k1,6829:12321541,28998945:5690768 -(1,6812:12321541,28998945:0,0,0 -g1,6812:12321541,28998945 -g1,6812:12321541,28998945 -g1,6812:11993861,28998945 -(1,6812:11993861,28998945:0,0,0 -) -g1,6812:12321541,28998945 -) -(1,6827:12321541,28998945:14570720,11027837,0 -g1,6827:15131667,28998945 -(1,6827:15131667,18916554:0,0,0 -(1,6827:15131667,18916554:0,0,0 -g1,6814:15131667,18916554 -(1,6815:15131667,18916554:0,0,0 -(1,6815:15131667,18916554:0,0,0 -g1,6815:15131667,18916554 -g1,6815:15131667,18916554 -g1,6815:15131667,18916554 -g1,6815:15131667,18916554 -g1,6815:15131667,18916554 -(1,6815:15131667,18916554:0,0,0 -(1,6815:15131667,18916554:589824,56623,0 -(1,6815:15131667,18916554:589824,56623,0 -) -g1,6815:15721491,18916554 -) -) -g1,6815:15131667,18916554 -g1,6815:15131667,18916554 -) -) -g1,6815:15131667,18916554 -(1,6816:15131667,18916554:0,0,0 -(1,6816:15131667,18916554:0,0,0 -g1,6816:15131667,18916554 -g1,6816:15131667,18916554 -g1,6816:15131667,18916554 -g1,6816:15131667,18916554 -g1,6816:15131667,18916554 -(1,6816:15131667,18916554:0,0,0 -(1,6816:15131667,18916554:358613,319685,0 -(1,6816:15131667,18916554:358613,319685,0 -$1,6816:15131667,18916554 -$1,6816:15490280,18916554 -) -g1,6816:15490280,18916554 -) -) -g1,6816:15131667,18916554 -g1,6816:15131667,18916554 -) -) -g1,6816:15131667,18916554 -(1,6817:15131667,18916554:0,0,0 -(1,6817:15131667,18916554:0,0,0 -g1,6817:15131667,18916554 -g1,6817:15131667,18916554 -g1,6817:15131667,18916554 -g1,6817:15131667,18916554 -g1,6817:15131667,18916554 -(1,6817:15131667,18916554:0,0,0 -(1,6817:15131667,18916554:1905798,373362,104590 -(1,6817:15131667,18916554:1905798,373362,104590 -(1,6817:15131667,18916554:0,373362,104590 -r1,6858:17037465,18916554:1905798,477952,104590 -k1,6817:15131667,18916554:-1905798 -) -(1,6817:15131667,18916554:1905798,373362,104590 -k1,6817:15131667,18916554:3277 -h1,6817:17034188,18916554:0,370085,101313 -) -) -g1,6817:17037465,18916554 -) -) -g1,6817:15131667,18916554 -g1,6817:15131667,18916554 -) -) -g1,6817:15131667,18916554 -(1,6818:15131667,18916554:0,0,0 -(1,6818:15131667,18916554:0,0,0 -g1,6818:15131667,18916554 -g1,6818:15131667,18916554 -g1,6818:15131667,18916554 -g1,6818:15131667,18916554 -g1,6818:15131667,18916554 -(1,6818:15131667,18916554:0,0,0 -(1,6818:15131667,18916554:4121582,373362,104590 -(1,6818:15131667,18916554:4121582,373362,104590 -(1,6818:15131667,18916554:0,373362,104590 -r1,6858:19253249,18916554:4121582,477952,104590 -k1,6818:15131667,18916554:-4121582 -) -(1,6818:15131667,18916554:4121582,373362,104590 -g1,6818:18616891,18916554 -h1,6818:19249972,18916554:0,370085,101313 -) -) -g1,6818:19253249,18916554 -) -) -g1,6818:15131667,18916554 -g1,6818:15131667,18916554 -) -) -g1,6818:15131667,18916554 -(1,6819:15131667,18916554:0,0,0 -(1,6819:15131667,18916554:0,0,0 -g1,6819:15131667,18916554 -g1,6819:15131667,18916554 -g1,6819:15131667,18916554 -g1,6819:15131667,18916554 -g1,6819:15131667,18916554 -(1,6819:15131667,18916554:0,0,0 -(1,6819:15131667,18916554:4121582,373362,104590 -(1,6819:15131667,18916554:4121582,373362,104590 -(1,6819:15131667,18916554:0,373362,104590 -r1,6858:19253249,18916554:4121582,477952,104590 -k1,6819:15131667,18916554:-4121582 -) -(1,6819:15131667,18916554:4121582,373362,104590 -g1,6819:18616891,18916554 -h1,6819:19249972,18916554:0,370085,101313 -) -) -g1,6819:19253249,18916554 -) -) -g1,6819:15131667,18916554 -g1,6819:15131667,18916554 -) -) -g1,6819:15131667,18916554 -g1,6820:15131667,18916554 -(1,6820:15131667,18916554:0,0,0 -(1,6820:15131667,18916554:0,0,0 -g1,6820:15131667,18916554 -g1,6820:15131667,18916554 -g1,6820:15131667,18916554 -g1,6820:15131667,18916554 -g1,6820:15131667,18916554 -(1,6820:15131667,18916554:0,0,0 -(1,6820:15131667,18916554:589824,56623,0 -(1,6820:15131667,18916554:589824,56623,0 -) -g1,6820:15721491,18916554 -) -) -g1,6820:15131667,18916554 -g1,6820:15131667,18916554 -) -) -g1,6820:15131667,18916554 -g1,6821:15131667,18916554 -g1,6821:15131667,18916554 -g1,6821:15131667,18916554 -g1,6821:15131667,18916554 -g1,6821:15131667,18916554 -g1,6821:15131667,18916554 -g1,6822:15131667,18916554 -g1,6822:15131667,18916554 -g1,6822:15131667,18916554 -g1,6822:15131667,18916554 -g1,6822:15131667,18916554 -(1,6822:15131667,18916554:0,0,0 -(1,6822:15131667,18916554:0,0,0 -g1,6822:15131667,18916554 -g1,6822:15131667,18916554 -g1,6822:15131667,18916554 -g1,6822:15131667,18916554 -g1,6822:15131667,18916554 -(1,6822:15131667,18916554:0,0,0 -(1,6822:15131667,18916554:0,0,0 -(1,6822:15131667,18916554:0,0,0 -) -g1,6822:15131667,18916554 -) -) -g1,6822:15131667,18916554 -g1,6822:15131667,18916554 -) -) -g1,6822:15131667,18916554 -g1,6823:15131667,18916554 -g1,6823:15131667,18916554 -g1,6823:15131667,18916554 -g1,6823:15131667,18916554 -(1,6823:15131667,18916554:0,0,0 -(1,6823:15131667,18916554:0,0,0 -g1,6823:15131667,18916554 -g1,6823:15131667,18916554 -g1,6823:15131667,18916554 -g1,6823:15131667,18916554 -g1,6823:15131667,18916554 -(1,6823:15131667,18916554:0,0,0 -(1,6823:15131667,18916554:2418868,426443,7077 -(1,6823:15131667,18916554:2418868,426443,7077 -) -g1,6823:17550535,18916554 -) -) -g1,6823:15131667,18916554 -g1,6823:15131667,18916554 -) -) -g1,6823:15131667,18916554 -g1,6824:15131667,18916554 -g1,6824:15131667,18916554 -g1,6824:15131667,18916554 -g1,6824:15131667,18916554 -g1,6824:15131667,18916554 -(1,6824:15131667,18916554:0,0,0 -(1,6824:15131667,18916554:0,0,0 -g1,6824:15131667,18916554 -g1,6824:15131667,18916554 -g1,6824:15131667,18916554 -g1,6824:15131667,18916554 -g1,6824:15131667,18916554 -(1,6824:15131667,18916554:0,0,0 -(1,6824:15131667,18916554:2222339,408008,104590 -(1,6824:15131667,18916554:2222339,408008,104590 -(1,6824:15131667,18916554:0,408008,104590 -r1,6858:17354006,18916554:2222339,512598,104590 -k1,6824:15131667,18916554:-2222339 -) -(1,6824:15131667,18916554:2222339,408008,104590 -k1,6824:15131667,18916554:3277 -h1,6824:17350729,18916554:0,370085,101313 -) -) -g1,6824:17354006,18916554 -) -) -g1,6824:15131667,18916554 -g1,6824:15131667,18916554 -) -) -g1,6824:15131667,18916554 -g1,6825:15131667,18916554 -g1,6825:15131667,18916554 -g1,6825:15131667,18916554 -g1,6825:15131667,18916554 -g1,6825:15131667,18916554 -g1,6825:15131667,18916554 -g1,6826:15131667,18916554 -g1,6826:15131667,18916554 -g1,6826:15131667,18916554 -g1,6826:15131667,18916554 -g1,6826:15131667,18916554 -g1,6826:15131667,18916554 -g1,6827:15131667,18916554 -g1,6827:15131667,18916554 -) -g1,6827:15131667,18916554 -) -) -g1,6829:26892261,28998945 -k1,6829:32583029,28998945:5690768 -) -v1,6832:6630773,30844771:0,393216,0 -(1,6847:6630773,37173819:25952256,6722264,196608 -g1,6847:6630773,37173819 -g1,6847:6630773,37173819 -g1,6847:6434165,37173819 -(1,6847:6434165,37173819:0,6722264,196608 -r1,6858:32779637,37173819:26345472,6918872,196608 -k1,6847:6434165,37173819:-26345472 -) -(1,6847:6434165,37173819:26345472,6722264,196608 -[1,6847:6630773,37173819:25952256,6525656,0 -(1,6834:6630773,31036660:25952256,388497,4718 -(1,6833:6630773,31036660:0,0,0 -g1,6833:6630773,31036660 -g1,6833:6630773,31036660 -g1,6833:6303093,31036660 -(1,6833:6303093,31036660:0,0,0 -) -g1,6833:6630773,31036660 -) -g1,6834:7263065,31036660 -g1,6834:8211503,31036660 -h1,6834:8527649,31036660:0,0,0 -k1,6834:32583029,31036660:24055380 -g1,6834:32583029,31036660 -) -(1,6835:6630773,31702838:25952256,404226,101187 -h1,6835:6630773,31702838:0,0,0 -k1,6835:6630773,31702838:0 -h1,6835:8843793,31702838:0,0,0 -k1,6835:32583029,31702838:23739236 -g1,6835:32583029,31702838 -) -(1,6836:6630773,32369016:25952256,404226,101187 -h1,6836:6630773,32369016:0,0,0 -g1,6836:6946919,32369016 -g1,6836:7263065,32369016 -k1,6836:7263065,32369016:0 -h1,6836:9792230,32369016:0,0,0 -k1,6836:32583030,32369016:22790800 -g1,6836:32583030,32369016 -) -(1,6837:6630773,33035194:25952256,410518,76021 -h1,6837:6630773,33035194:0,0,0 -g1,6837:6946919,33035194 -g1,6837:7263065,33035194 -g1,6837:8211502,33035194 -g1,6837:9159939,33035194 -g1,6837:9792231,33035194 -g1,6837:11056814,33035194 -k1,6837:11056814,33035194:0 -h1,6837:13269833,33035194:0,0,0 -k1,6837:32583029,33035194:19313196 -g1,6837:32583029,33035194 -) -(1,6838:6630773,33701372:25952256,388497,4718 -h1,6838:6630773,33701372:0,0,0 -g1,6838:6946919,33701372 -g1,6838:7263065,33701372 -g1,6838:7895357,33701372 -g1,6838:8843795,33701372 -h1,6838:9792233,33701372:0,0,0 -k1,6838:32583029,33701372:22790796 -g1,6838:32583029,33701372 -) -(1,6839:6630773,34367550:25952256,404226,76021 -h1,6839:6630773,34367550:0,0,0 -h1,6839:6946919,34367550:0,0,0 -k1,6839:32583029,34367550:25636110 -g1,6839:32583029,34367550 -) -(1,6846:6630773,35099264:25952256,404226,76021 -(1,6841:6630773,35099264:0,0,0 -g1,6841:6630773,35099264 -g1,6841:6630773,35099264 -g1,6841:6303093,35099264 -(1,6841:6303093,35099264:0,0,0 -) -g1,6841:6630773,35099264 -) -g1,6846:7579210,35099264 -g1,6846:8843793,35099264 -h1,6846:9159939,35099264:0,0,0 -k1,6846:32583029,35099264:23423090 -g1,6846:32583029,35099264 -) -(1,6846:6630773,35765442:25952256,404226,76021 -h1,6846:6630773,35765442:0,0,0 -g1,6846:7579210,35765442 -g1,6846:8843793,35765442 -h1,6846:9159939,35765442:0,0,0 -k1,6846:32583029,35765442:23423090 -g1,6846:32583029,35765442 -) -(1,6846:6630773,36431620:25952256,404226,76021 -h1,6846:6630773,36431620:0,0,0 -g1,6846:7579210,36431620 -g1,6846:8843793,36431620 -h1,6846:9476084,36431620:0,0,0 -k1,6846:32583028,36431620:23106944 -g1,6846:32583028,36431620 -) -(1,6846:6630773,37097798:25952256,404226,76021 -h1,6846:6630773,37097798:0,0,0 -g1,6846:7579210,37097798 -g1,6846:8843793,37097798 -h1,6846:9792230,37097798:0,0,0 -k1,6846:32583030,37097798:22790800 -g1,6846:32583030,37097798 -) -] -) -g1,6847:32583029,37173819 -g1,6847:6630773,37173819 -g1,6847:6630773,37173819 -g1,6847:32583029,37173819 -g1,6847:32583029,37173819 -) -h1,6847:6630773,37370427:0,0,0 -v1,6851:6630773,39260491:0,393216,0 -(1,6852:6630773,41546523:25952256,2679248,616038 -g1,6852:6630773,41546523 -(1,6852:6630773,41546523:25952256,2679248,616038 -(1,6852:6630773,42162561:25952256,3295286,0 -[1,6852:6630773,42162561:25952256,3295286,0 -(1,6852:6630773,42136347:25952256,3242858,0 -r1,6858:6656987,42136347:26214,3242858,0 -[1,6852:6656987,42136347:25899828,3242858,0 -(1,6852:6656987,41546523:25899828,2063210,0 -[1,6852:7246811,41546523:24720180,2063210,0 -(1,6852:7246811,40570687:24720180,1087374,126483 -k1,6851:8667496,40570687:210982 -k1,6851:10839972,40570687:210983 -k1,6851:13361098,40570687:210982 -k1,6851:14869039,40570687:210983 -k1,6851:16099106,40570687:210982 -k1,6851:18971505,40570687:210982 -k1,6851:21037812,40570687:210983 -k1,6851:23589740,40570687:210982 -k1,6851:24819807,40570687:210982 -k1,6851:27041435,40570687:210983 -k1,6851:27710514,40570687:210982 -k1,6851:29588078,40570687:210983 -k1,6851:30947906,40570687:210982 -k1,6851:31966991,40570687:0 -) -(1,6852:7246811,41412175:24720180,513147,134348 -g1,6851:10430550,41412175 -g1,6851:11289071,41412175 -g1,6851:13675892,41412175 -(1,6851:13675892,41412175:0,452978,115847 -r1,6858:16144429,41412175:2468537,568825,115847 -k1,6851:13675892,41412175:-2468537 -) -(1,6851:13675892,41412175:2468537,452978,115847 -k1,6851:13675892,41412175:3277 -h1,6851:16141152,41412175:0,411205,112570 -) -g1,6851:16343658,41412175 -g1,6851:20233219,41412175 -g1,6851:21118610,41412175 -g1,6851:24407862,41412175 -g1,6851:25416461,41412175 -g1,6851:27113843,41412175 -h1,6851:28309220,41412175:0,0,0 -k1,6852:31966991,41412175:3484101 -g1,6852:31966991,41412175 -) -] -) -] -r1,6858:32583029,42136347:26214,3242858,0 -) -] -) -) -g1,6852:32583029,41546523 -) -h1,6852:6630773,42162561:0,0,0 -v1,6855:6630773,43528337:0,393216,0 -(1,6858:6630773,45109652:25952256,1974531,589824 -g1,6858:6630773,45109652 -(1,6858:6630773,45109652:25952256,1974531,589824 -(1,6858:6630773,45699476:25952256,2564355,0 -[1,6858:6630773,45699476:25952256,2564355,0 -(1,6858:6630773,45699476:25952256,2538141,0 -r1,6858:6656987,45699476:26214,2538141,0 -[1,6858:6656987,45699476:25899828,2538141,0 -(1,6858:6656987,45109652:25899828,1358493,0 -[1,6858:7246811,45109652:24720180,1358493,0 -(1,6856:7246811,44913044:24720180,1161885,196608 -(1,6855:7246811,44913044:0,1161885,196608 -r1,6858:8794447,44913044:1547636,1358493,196608 -k1,6855:7246811,44913044:-1547636 -) -(1,6855:7246811,44913044:1547636,1161885,196608 -) -k1,6855:9013512,44913044:219065 -k1,6855:12195461,44913044:219066 -(1,6855:12195461,44913044:0,414482,115847 -r1,6858:14312286,44913044:2116825,530329,115847 -k1,6855:12195461,44913044:-2116825 -) -(1,6855:12195461,44913044:2116825,414482,115847 -k1,6855:12195461,44913044:3277 -h1,6855:14309009,44913044:0,411205,112570 -) -k1,6855:14531351,44913044:219065 -k1,6855:16165339,44913044:219066 -k1,6855:19738537,44913044:219065 -k1,6855:20949163,44913044:219066 -k1,6855:23038626,44913044:219065 -k1,6855:23909120,44913044:219066 -k1,6855:25540486,44913044:219065 -k1,6855:26225513,44913044:219066 -k1,6855:27824766,44913044:219065 -k1,6855:29519047,44913044:219066 -k1,6855:30093972,44913044:219065 -k1,6855:31966991,44913044:0 -) -] -) -] -r1,6858:32583029,45699476:26214,2538141,0 -) -] -) -) -g1,6858:32583029,45109652 -) -] -(1,6858:32583029,45706769:0,0,0 -g1,6858:32583029,45706769 -) -) -] -(1,6858:6630773,47279633:25952256,0,0 -h1,6858:6630773,47279633:25952256,0,0 -) -] -(1,6858:4262630,4025873:0,0,0 -[1,6858:-473656,4025873:0,0,0 -(1,6858:-473656,-710413:0,0,0 -(1,6858:-473656,-710413:0,0,0 -g1,6858:-473656,-710413 -) -g1,6858:-473656,-710413 -) -] -) -] -!23315 -}130 -Input:1047:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1048:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1049:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1050:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1051:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1052:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1053:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1054:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1055:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1056:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!932 -{131 -[1,6945:4262630,47279633:28320399,43253760,0 -(1,6945:4262630,4025873:0,0,0 -[1,6945:-473656,4025873:0,0,0 -(1,6945:-473656,-710413:0,0,0 -(1,6945:-473656,-644877:0,0,0 -k1,6945:-473656,-644877:-65536 -) -(1,6945:-473656,4736287:0,0,0 -k1,6945:-473656,4736287:5209943 -) -g1,6945:-473656,-710413 -) -] -) -[1,6945:6630773,47279633:25952256,43253760,0 -[1,6945:6630773,4812305:25952256,786432,0 -(1,6945:6630773,4812305:25952256,505283,134348 -(1,6945:6630773,4812305:25952256,505283,134348 -g1,6945:3078558,4812305 -[1,6945:3078558,4812305:0,0,0 -(1,6945:3078558,2439708:0,1703936,0 -k1,6945:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,6945:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,6945:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,6945:3078558,4812305:0,0,0 -(1,6945:3078558,2439708:0,1703936,0 -g1,6945:29030814,2439708 -g1,6945:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,6945:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,6945:37855564,2439708:1179648,16384,0 -) -) -k1,6945:3078556,2439708:-34777008 -) -] -[1,6945:3078558,4812305:0,0,0 -(1,6945:3078558,49800853:0,16384,2228224 -k1,6945:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,6945:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,6945:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,6945:3078558,4812305:0,0,0 -(1,6945:3078558,49800853:0,16384,2228224 -g1,6945:29030814,49800853 -g1,6945:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,6945:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,6945:37855564,49800853:1179648,16384,0 -) -) -k1,6945:3078556,49800853:-34777008 -) -] -g1,6945:6630773,4812305 -k1,6945:18771974,4812305:10945824 -g1,6945:20158715,4812305 -g1,6945:20807521,4812305 -g1,6945:24121676,4812305 -g1,6945:28605649,4812305 -g1,6945:30015328,4812305 -) -) -] -[1,6945:6630773,45706769:25952256,40108032,0 -(1,6945:6630773,45706769:25952256,40108032,0 -(1,6945:6630773,45706769:0,0,0 -g1,6945:6630773,45706769 -) -[1,6945:6630773,45706769:25952256,40108032,0 -v1,6858:6630773,6254097:0,393216,0 -(1,6858:6630773,12020643:25952256,6159762,616038 -g1,6858:6630773,12020643 -(1,6858:6630773,12020643:25952256,6159762,616038 -(1,6858:6630773,12636681:25952256,6775800,0 -[1,6858:6630773,12636681:25952256,6775800,0 -(1,6858:6630773,12610467:25952256,6749586,0 -r1,6945:6656987,12610467:26214,6749586,0 -[1,6858:6656987,12610467:25899828,6749586,0 -(1,6858:6656987,12020643:25899828,5569938,0 -[1,6858:7246811,12020643:24720180,5569938,0 -(1,6856:7246811,6963852:24720180,513147,134348 -k1,6855:10484126,6963852:204964 -k1,6855:13522212,6963852:204965 -k1,6855:14343214,6963852:204964 -k1,6855:18300115,6963852:204965 -k1,6855:19164371,6963852:204964 -k1,6855:22260128,6963852:204964 -k1,6855:22923190,6963852:204965 -k1,6855:23659651,6963852:204964 -k1,6855:26314352,6963852:204965 -k1,6855:27280844,6963852:204964 -k1,6855:28504893,6963852:204964 -k1,6855:29124695,6963852:204959 -k1,6855:31966991,6963852:0 -) -(1,6856:7246811,7805340:24720180,513147,126483 -k1,6855:8425804,7805340:231342 -k1,6855:9676231,7805340:231342 -k1,6855:13321344,7805340:231343 -k1,6855:16739046,7805340:231342 -k1,6855:17586426,7805340:231342 -k1,6855:18836853,7805340:231342 -k1,6855:20644992,7805340:231343 -k1,6855:21535626,7805340:231342 -k1,6855:22122828,7805340:231342 -k1,6855:23769092,7805340:231342 -k1,6855:24651862,7805340:231342 -k1,6855:27254953,7805340:231343 -k1,6855:29136492,7805340:231342 -k1,6855:30810281,7805340:231342 -k1,6855:31966991,7805340:0 -) -(1,6856:7246811,8646828:24720180,513147,115847 -g1,6855:8545734,8646828 -g1,6855:9396391,8646828 -(1,6855:9396391,8646828:0,452978,115847 -r1,6945:11864928,8646828:2468537,568825,115847 -k1,6855:9396391,8646828:-2468537 -) -(1,6855:9396391,8646828:2468537,452978,115847 -k1,6855:9396391,8646828:3277 -h1,6855:11861651,8646828:0,411205,112570 -) -g1,6855:12237827,8646828 -g1,6855:13888678,8646828 -g1,6855:16097896,8646828 -g1,6855:16652985,8646828 -g1,6855:19614557,8646828 -(1,6855:19614557,8646828:0,459977,115847 -r1,6945:20324535,8646828:709978,575824,115847 -k1,6855:19614557,8646828:-709978 -) -(1,6855:19614557,8646828:709978,459977,115847 -k1,6855:19614557,8646828:3277 -h1,6855:20321258,8646828:0,411205,112570 -) -g1,6855:20523764,8646828 -g1,6855:21405878,8646828 -(1,6855:21405878,8646828:0,452978,115847 -r1,6945:22819279,8646828:1413401,568825,115847 -k1,6855:21405878,8646828:-1413401 -) -(1,6855:21405878,8646828:1413401,452978,115847 -k1,6855:21405878,8646828:3277 -h1,6855:22816002,8646828:0,411205,112570 -) -g1,6855:23018508,8646828 -k1,6856:31966991,8646828:5588452 -g1,6856:31966991,8646828 -) -(1,6858:7246811,9488316:24720180,505283,126483 -h1,6857:7246811,9488316:983040,0,0 -k1,6857:11190362,9488316:170643 -(1,6857:11190362,9488316:0,452978,115847 -r1,6945:13658899,9488316:2468537,568825,115847 -k1,6857:11190362,9488316:-2468537 -) -(1,6857:11190362,9488316:2468537,452978,115847 -k1,6857:11190362,9488316:3277 -h1,6857:13655622,9488316:0,411205,112570 -) -k1,6857:13829543,9488316:170644 -k1,6857:15104468,9488316:170643 -k1,6857:16022877,9488316:170643 -k1,6857:17479337,9488316:170644 -k1,6857:19163206,9488316:170643 -k1,6857:21343838,9488316:170643 -(1,6857:21343838,9488316:0,459977,115847 -r1,6945:22405527,9488316:1061689,575824,115847 -k1,6857:21343838,9488316:-1061689 -) -(1,6857:21343838,9488316:1061689,459977,115847 -k1,6857:21343838,9488316:3277 -h1,6857:22402250,9488316:0,411205,112570 -) -k1,6857:22576170,9488316:170643 -k1,6857:23938259,9488316:170644 -(1,6857:23938259,9488316:0,452978,115847 -r1,6945:25703372,9488316:1765113,568825,115847 -k1,6857:23938259,9488316:-1765113 -) -(1,6857:23938259,9488316:1765113,452978,115847 -k1,6857:23938259,9488316:3277 -h1,6857:25700095,9488316:0,411205,112570 -) -k1,6857:25874015,9488316:170643 -k1,6857:27963552,9488316:170643 -k1,6857:28762031,9488316:170644 -k1,6857:30426240,9488316:170643 -k1,6857:31966991,9488316:0 -) -(1,6858:7246811,10329804:24720180,513147,126483 -k1,6857:8427908,10329804:233446 -k1,6857:10837149,10329804:233446 -k1,6857:12089679,10329804:233445 -k1,6857:13415610,10329804:233446 -k1,6857:14316212,10329804:233446 -(1,6857:14316212,10329804:0,452978,115847 -r1,6945:16784749,10329804:2468537,568825,115847 -k1,6857:14316212,10329804:-2468537 -) -(1,6857:14316212,10329804:2468537,452978,115847 -k1,6857:14316212,10329804:3277 -h1,6857:16781472,10329804:0,411205,112570 -) -k1,6857:17018195,10329804:233446 -k1,6857:19432024,10329804:233446 -k1,6857:20413236,10329804:233446 -k1,6857:23373634,10329804:233445 -k1,6857:24554731,10329804:233446 -k1,6857:28430668,10329804:233446 -k1,6857:31966991,10329804:0 -) -(1,6858:7246811,11171292:24720180,513147,134348 -k1,6857:8063716,11171292:189070 -k1,6857:8608646,11171292:189070 -(1,6857:8608646,11171292:0,459977,115847 -r1,6945:9670335,11171292:1061689,575824,115847 -k1,6857:8608646,11171292:-1061689 -) -(1,6857:8608646,11171292:1061689,459977,115847 -k1,6857:8608646,11171292:3277 -h1,6857:9667058,11171292:0,411205,112570 -) -k1,6857:9859405,11171292:189070 -k1,6857:11637068,11171292:189070 -(1,6857:11637068,11171292:0,452978,115847 -r1,6945:13753893,11171292:2116825,568825,115847 -k1,6857:11637068,11171292:-2116825 -) -(1,6857:11637068,11171292:2116825,452978,115847 -k1,6857:11637068,11171292:3277 -h1,6857:13750616,11171292:0,411205,112570 -) -k1,6857:13942963,11171292:189070 -k1,6857:17351817,11171292:189070 -k1,6857:18559971,11171292:189069 -k1,6857:21093264,11171292:189070 -k1,6857:23999457,11171292:189070 -k1,6857:25379972,11171292:189070 -k1,6857:27581653,11171292:189070 -k1,6857:28422151,11171292:189070 -k1,6857:29630306,11171292:189070 -k1,6857:31307699,11171292:189070 -k1,6857:31966991,11171292:0 -) -(1,6858:7246811,12012780:24720180,505283,7863 -g1,6857:8465125,12012780 -g1,6857:10048474,12012780 -k1,6858:31966991,12012780:20588136 -g1,6858:31966991,12012780 -) -] -) -] -r1,6945:32583029,12610467:26214,6749586,0 -) -] -) -) -g1,6858:32583029,12020643 -) -h1,6858:6630773,12636681:0,0,0 -(1,6860:6630773,14727941:25952256,555811,139132 -(1,6860:6630773,14727941:2450326,534184,12975 -g1,6860:6630773,14727941 -g1,6860:9081099,14727941 -) -g1,6860:12020913,14727941 -g1,6860:14217484,14727941 -g1,6860:15704693,14727941 -g1,6860:16796130,14727941 -g1,6860:18712272,14727941 -g1,6860:19642949,14727941 -k1,6860:32583029,14727941:12442662 -g1,6860:32583029,14727941 -) -(1,6863:6630773,15962645:25952256,513147,134348 -k1,6862:7321391,15962645:212861 -k1,6862:8704725,15962645:212861 -k1,6862:10392801,15962645:212861 -k1,6862:12892213,15962645:212861 -k1,6862:16177402,15962645:212861 -k1,6862:17006301,15962645:212861 -k1,6862:18921132,15962645:212861 -k1,6862:22480260,15962645:212860 -k1,6862:23151218,15962645:212861 -k1,6862:24496541,15962645:212861 -k1,6862:25873977,15962645:212861 -k1,6862:28378632,15962645:212861 -k1,6862:29242921,15962645:212861 -k1,6862:30626255,15962645:212861 -k1,6862:31490544,15962645:212861 -k1,6862:32583029,15962645:0 -) -(1,6863:6630773,16804133:25952256,513147,134348 -k1,6862:8529993,16804133:153996 -(1,6862:8737087,16804133:0,459977,115847 -r1,6945:9798776,16804133:1061689,575824,115847 -k1,6862:8737087,16804133:-1061689 -) -(1,6862:8737087,16804133:1061689,459977,115847 -k1,6862:8737087,16804133:3277 -h1,6862:9795499,16804133:0,411205,112570 -) -k1,6862:10126442,16804133:153996 -(1,6862:10126442,16804133:0,452978,115847 -r1,6945:11891555,16804133:1765113,568825,115847 -k1,6862:10126442,16804133:-1765113 -) -(1,6862:10126442,16804133:1765113,452978,115847 -k1,6862:10126442,16804133:3277 -h1,6862:11888278,16804133:0,411205,112570 -) -k1,6862:12219221,16804133:153996 -(1,6862:12219221,16804133:0,414482,115847 -r1,6945:14336046,16804133:2116825,530329,115847 -k1,6862:12219221,16804133:-2116825 -) -(1,6862:12219221,16804133:2116825,414482,115847 -k1,6862:12219221,16804133:3277 -h1,6862:14332769,16804133:0,411205,112570 -) -k1,6862:14697137,16804133:153997 -k1,6862:15798784,16804133:153996 -k1,6862:17704557,16804133:153996 -k1,6862:18517845,16804133:153996 -k1,6862:19690926,16804133:153996 -k1,6862:21837216,16804133:153996 -k1,6862:22938863,16804133:153996 -k1,6862:24978330,16804133:153996 -k1,6862:25748365,16804133:153997 -k1,6862:26317159,16804133:153951 -k1,6862:27627865,16804133:153996 -k1,6862:29738111,16804133:153996 -k1,6862:32583029,16804133:0 -) -(1,6863:6630773,17645621:25952256,505283,134348 -k1,6862:7859376,17645621:136118 -k1,6862:12361503,17645621:136118 -k1,6862:13125457,17645621:136119 -k1,6862:13850088,17645621:136118 -k1,6862:15721599,17645621:136118 -k1,6862:20050055,17645621:136118 -k1,6862:23224422,17645621:136118 -k1,6862:25990501,17645621:136119 -k1,6862:27964904,17645621:136118 -k1,6862:30262399,17645621:136118 -k1,6862:32583029,17645621:0 -) -(1,6863:6630773,18487109:25952256,513147,126483 -k1,6862:7961104,18487109:138886 -k1,6862:9970388,18487109:138886 -k1,6862:10760701,18487109:138885 -k1,6862:14564360,18487109:138886 -k1,6862:15523101,18487109:138886 -k1,6862:17157519,18487109:138886 -k1,6862:18244055,18487109:138885 -k1,6862:20126854,18487109:138886 -k1,6862:21659691,18487109:138886 -k1,6862:25211692,18487109:138886 -k1,6862:25966615,18487109:138885 -k1,6862:26901108,18487109:138886 -k1,6862:28633830,18487109:138886 -k1,6862:32583029,18487109:0 -) -(1,6863:6630773,19328597:25952256,513147,134348 -k1,6862:7477804,19328597:160869 -k1,6862:8053477,19328597:160830 -k1,6862:8745843,19328597:160869 -k1,6862:9677414,19328597:160868 -k1,6862:13428345,19328597:160869 -k1,6862:16605180,19328597:160868 -k1,6862:20103142,19328597:160869 -k1,6862:23540155,19328597:160868 -k1,6862:25471151,19328597:160869 -k1,6862:26283447,19328597:160868 -k1,6862:27192082,19328597:160869 -k1,6862:29136185,19328597:160868 -k1,6862:31140582,19328597:160869 -k1,6862:32583029,19328597:0 -) -(1,6863:6630773,20170085:25952256,513147,126483 -k1,6862:7899096,20170085:249238 -k1,6862:9240820,20170085:249239 -k1,6862:10149350,20170085:249238 -k1,6862:12729705,20170085:249239 -k1,6862:15869736,20170085:249238 -k1,6862:16746810,20170085:249239 -k1,6862:18984410,20170085:249238 -k1,6862:21897688,20170085:249239 -k1,6862:22814082,20170085:249238 -k1,6862:23651834,20170085:249239 -k1,6862:29278301,20170085:249238 -k1,6862:30059037,20170085:249239 -k1,6862:31821501,20170085:249238 -k1,6862:32583029,20170085:0 -) -(1,6863:6630773,21011573:25952256,513147,126483 -k1,6862:9074261,21011573:177908 -k1,6862:10443615,21011573:177909 -k1,6862:12366747,21011573:177908 -k1,6862:13881589,21011573:177908 -k1,6862:14807263,21011573:177908 -k1,6862:17928394,21011573:177909 -k1,6862:18915672,21011573:177908 -k1,6862:20112665,21011573:177908 -k1,6862:21259850,21011573:177908 -k1,6862:23323230,21011573:177909 -k1,6862:25925315,21011573:177908 -k1,6862:27425084,21011573:177908 -k1,6862:28262284,21011573:177908 -k1,6862:29459278,21011573:177909 -k1,6862:31923737,21011573:177908 -k1,6862:32583029,21011573:0 -) -(1,6863:6630773,21853061:25952256,505283,126483 -k1,6862:9622419,21853061:207021 -k1,6862:14448417,21853061:207020 -k1,6862:17590140,21853061:207021 -k1,6862:19263857,21853061:207021 -k1,6862:23992861,21853061:207020 -k1,6862:25945106,21853061:207021 -k1,6862:27143687,21853061:207021 -k1,6862:29637914,21853061:207020 -k1,6862:31931601,21853061:207021 -k1,6862:32583029,21853061:0 -) -(1,6863:6630773,22694549:25952256,513147,126483 -g1,6862:9242382,22694549 -g1,6862:10884058,22694549 -g1,6862:14202145,22694549 -g1,6862:16318302,22694549 -g1,6862:19854624,22694549 -g1,6862:23079650,22694549 -g1,6862:24470324,22694549 -k1,6863:32583029,22694549:4862119 -g1,6863:32583029,22694549 -) -(1,6865:6630773,23536037:25952256,513147,134348 -h1,6864:6630773,23536037:983040,0,0 -k1,6864:11011140,23536037:298129 -k1,6864:13175734,23536037:298129 -k1,6864:15334430,23536037:298129 -k1,6864:16283987,23536037:298129 -k1,6864:17329882,23536037:298129 -k1,6864:20461789,23536037:298130 -k1,6864:23049091,23536037:298129 -k1,6864:24366305,23536037:298129 -k1,6864:26437183,23536037:298129 -k1,6864:29411147,23536037:298129 -k1,6864:30325314,23536037:298129 -k1,6864:32583029,23536037:0 -) -(1,6865:6630773,24377525:25952256,513147,134348 -k1,6864:8719541,24377525:245240 -k1,6864:10634639,24377525:245241 -k1,6864:13814581,24377525:245240 -k1,6864:15795214,24377525:245240 -k1,6864:20232793,24377525:245241 -k1,6864:21669478,24377525:245240 -k1,6864:24312025,24377525:245240 -k1,6864:24972062,24377525:245194 -k1,6864:28243100,24377525:245241 -k1,6864:31110435,24377525:245240 -k1,6864:32583029,24377525:0 -) -(1,6865:6630773,25219013:25952256,513147,134348 -k1,6864:8548356,25219013:144834 -k1,6864:10183480,25219013:144835 -k1,6864:11196666,25219013:144834 -k1,6864:12333061,25219013:144835 -k1,6864:14970229,25219013:144834 -k1,6864:16509014,25219013:144834 -k1,6864:18466575,25219013:144835 -k1,6864:19808096,25219013:144834 -k1,6864:22664810,25219013:144834 -k1,6864:24047620,25219013:144835 -k1,6864:24851746,25219013:144834 -k1,6864:28343505,25219013:144835 -k1,6864:29507424,25219013:144834 -k1,6864:32583029,25219013:0 -) -(1,6865:6630773,26060501:25952256,513147,126483 -k1,6864:8288361,26060501:232180 -k1,6864:9179833,26060501:232180 -k1,6864:10182716,26060501:232180 -k1,6864:10829706,26060501:232147 -k1,6864:14501871,26060501:232180 -k1,6864:15265548,26060501:232180 -k1,6864:16149156,26060501:232180 -k1,6864:17473821,26060501:232180 -k1,6864:20401497,26060501:232180 -(1,6864:20401497,26060501:0,452978,115847 -r1,6945:24980305,26060501:4578808,568825,115847 -k1,6864:20401497,26060501:-4578808 -) -(1,6864:20401497,26060501:4578808,452978,115847 -k1,6864:20401497,26060501:3277 -h1,6864:24977028,26060501:0,411205,112570 -) -k1,6864:25386155,26060501:232180 -k1,6864:28553037,26060501:232180 -k1,6864:29804302,26060501:232180 -k1,6864:32583029,26060501:0 -) -(1,6865:6630773,26901989:25952256,505283,134348 -k1,6864:8231868,26901989:175687 -k1,6864:8939052,26901989:175687 -k1,6864:9730776,26901989:175686 -k1,6864:12478096,26901989:175687 -k1,6864:13845228,26901989:175687 -k1,6864:18246021,26901989:175687 -k1,6864:19440792,26901989:175686 -k1,6864:23056464,26901989:175687 -k1,6864:24854167,26901989:175687 -k1,6864:26382517,26901989:175687 -k1,6864:27946911,26901989:175686 -k1,6864:30483205,26901989:175687 -k1,6864:31310320,26901989:175687 -k1,6865:32583029,26901989:0 -) -(1,6865:6630773,27743477:25952256,513147,134348 -k1,6864:8125947,27743477:142511 -k1,6864:9216109,27743477:142511 -k1,6864:10377705,27743477:142511 -k1,6864:13298943,27743477:142511 -k1,6864:14866862,27743477:142511 -k1,6864:15660800,27743477:142510 -k1,6864:17278526,27743477:142511 -k1,6864:19398258,27743477:142511 -k1,6864:22962404,27743477:142511 -k1,6864:24154802,27743477:142511 -k1,6864:26877465,27743477:142511 -k1,6864:32583029,27743477:0 -) -(1,6865:6630773,28584965:25952256,513147,134348 -g1,6864:7777653,28584965 -g1,6864:9558266,28584965 -g1,6864:10705146,28584965 -g1,6864:15462404,28584965 -g1,6864:17157820,28584965 -g1,6864:18751000,28584965 -g1,6864:20847496,28584965 -g1,6864:22472133,28584965 -k1,6865:32583029,28584965:6689261 -g1,6865:32583029,28584965 -) -v1,6867:6630773,29775431:0,393216,0 -(1,6879:6630773,34055089:25952256,4672874,196608 -g1,6879:6630773,34055089 -g1,6879:6630773,34055089 -g1,6879:6434165,34055089 -(1,6879:6434165,34055089:0,4672874,196608 -r1,6945:32779637,34055089:26345472,4869482,196608 -k1,6879:6434165,34055089:-26345472 -) -(1,6879:6434165,34055089:26345472,4672874,196608 -[1,6879:6630773,34055089:25952256,4476266,0 -(1,6869:6630773,29983049:25952256,404226,101187 -(1,6868:6630773,29983049:0,0,0 -g1,6868:6630773,29983049 -g1,6868:6630773,29983049 -g1,6868:6303093,29983049 -(1,6868:6303093,29983049:0,0,0 -) -g1,6868:6630773,29983049 -) -k1,6869:6630773,29983049:0 -g1,6869:11372958,29983049 -g1,6869:12321396,29983049 -k1,6869:12321396,29983049:0 -h1,6869:15166707,29983049:0,0,0 -k1,6869:32583029,29983049:17416322 -g1,6869:32583029,29983049 -) -(1,6870:6630773,30649227:25952256,410518,76021 -h1,6870:6630773,30649227:0,0,0 -g1,6870:6946919,30649227 -g1,6870:7263065,30649227 -g1,6870:7579211,30649227 -g1,6870:7895357,30649227 -g1,6870:8211503,30649227 -g1,6870:8527649,30649227 -g1,6870:8843795,30649227 -g1,6870:9159941,30649227 -g1,6870:9476087,30649227 -g1,6870:9792233,30649227 -g1,6870:10108379,30649227 -g1,6870:10424525,30649227 -g1,6870:11689108,30649227 -g1,6870:12637545,30649227 -g1,6870:13585982,30649227 -g1,6870:17063586,30649227 -h1,6870:17379732,30649227:0,0,0 -k1,6870:32583029,30649227:15203297 -g1,6870:32583029,30649227 -) -(1,6871:6630773,31315405:25952256,404226,76021 -h1,6871:6630773,31315405:0,0,0 -g1,6871:6946919,31315405 -g1,6871:7263065,31315405 -g1,6871:7579211,31315405 -g1,6871:7895357,31315405 -g1,6871:8211503,31315405 -g1,6871:8527649,31315405 -g1,6871:8843795,31315405 -g1,6871:9159941,31315405 -g1,6871:9476087,31315405 -g1,6871:9792233,31315405 -g1,6871:10108379,31315405 -g1,6871:10424525,31315405 -g1,6871:10740671,31315405 -g1,6871:11056817,31315405 -g1,6871:12637546,31315405 -g1,6871:13585984,31315405 -g1,6871:14218276,31315405 -g1,6871:14850568,31315405 -h1,6871:16115151,31315405:0,0,0 -k1,6871:32583029,31315405:16467878 -g1,6871:32583029,31315405 -) -(1,6872:6630773,31981583:25952256,404226,76021 -h1,6872:6630773,31981583:0,0,0 -g1,6872:6946919,31981583 -g1,6872:7263065,31981583 -g1,6872:7579211,31981583 -g1,6872:7895357,31981583 -g1,6872:8211503,31981583 -g1,6872:8527649,31981583 -g1,6872:8843795,31981583 -g1,6872:9159941,31981583 -g1,6872:9476087,31981583 -g1,6872:9792233,31981583 -g1,6872:10108379,31981583 -g1,6872:10424525,31981583 -g1,6872:10740671,31981583 -g1,6872:11056817,31981583 -h1,6872:11372963,31981583:0,0,0 -k1,6872:32583029,31981583:21210066 -g1,6872:32583029,31981583 -) -(1,6873:6630773,32647761:25952256,404226,76021 -h1,6873:6630773,32647761:0,0,0 -g1,6873:6946919,32647761 -g1,6873:7263065,32647761 -g1,6873:7579211,32647761 -g1,6873:7895357,32647761 -g1,6873:8211503,32647761 -g1,6873:8527649,32647761 -g1,6873:8843795,32647761 -g1,6873:9159941,32647761 -g1,6873:9476087,32647761 -g1,6873:9792233,32647761 -g1,6873:10108379,32647761 -g1,6873:10424525,32647761 -h1,6873:11056816,32647761:0,0,0 -k1,6873:32583028,32647761:21526212 -g1,6873:32583028,32647761 -) -(1,6878:6630773,33379475:25952256,404226,101187 -(1,6875:6630773,33379475:0,0,0 -g1,6875:6630773,33379475 -g1,6875:6630773,33379475 -g1,6875:6303093,33379475 -(1,6875:6303093,33379475:0,0,0 -) -g1,6875:6630773,33379475 -) -g1,6878:7579210,33379475 -g1,6878:7895356,33379475 -g1,6878:8211502,33379475 -g1,6878:8527648,33379475 -g1,6878:10108377,33379475 -g1,6878:10424523,33379475 -g1,6878:12637543,33379475 -h1,6878:14850563,33379475:0,0,0 -k1,6878:32583029,33379475:17732466 -g1,6878:32583029,33379475 -) -(1,6878:6630773,34045653:25952256,388497,9436 -h1,6878:6630773,34045653:0,0,0 -g1,6878:7579210,34045653 -g1,6878:7895356,34045653 -g1,6878:8211502,34045653 -g1,6878:8527648,34045653 -g1,6878:10108377,34045653 -g1,6878:10424523,34045653 -g1,6878:10740669,34045653 -g1,6878:11056815,34045653 -g1,6878:12637544,34045653 -g1,6878:12953690,34045653 -g1,6878:13269836,34045653 -g1,6878:13585982,34045653 -h1,6878:14850565,34045653:0,0,0 -k1,6878:32583029,34045653:17732464 -g1,6878:32583029,34045653 -) -] -) -g1,6879:32583029,34055089 -g1,6879:6630773,34055089 -g1,6879:6630773,34055089 -g1,6879:32583029,34055089 -g1,6879:32583029,34055089 -) -h1,6879:6630773,34251697:0,0,0 -v1,6883:6630773,36141761:0,393216,0 -(1,6945:6630773,44266235:25952256,8517690,589824 -g1,6945:6630773,44266235 -(1,6945:6630773,44266235:25952256,8517690,589824 -(1,6945:6630773,44856059:25952256,9107514,0 -[1,6945:6630773,44856059:25952256,9107514,0 -(1,6945:6630773,44856059:25952256,9081300,0 -r1,6945:6656987,44856059:26214,9081300,0 -[1,6945:6656987,44856059:25899828,9081300,0 -(1,6945:6656987,44266235:25899828,7901652,0 -[1,6945:7246811,44266235:24720180,7901652,0 -(1,6884:7246811,37526468:24720180,1161885,196608 -(1,6883:7246811,37526468:0,1161885,196608 -r1,6945:8794447,37526468:1547636,1358493,196608 -k1,6883:7246811,37526468:-1547636 -) -(1,6883:7246811,37526468:1547636,1161885,196608 -) -k1,6883:8964009,37526468:169562 -k1,6883:12257016,37526468:169561 -k1,6883:15013284,37526468:169562 -k1,6883:16576796,37526468:169561 -k1,6883:18317256,37526468:169562 -k1,6883:19876181,37526468:169562 -k1,6883:21484257,37526468:169561 -k1,6883:22336704,37526468:169562 -k1,6883:24258043,37526468:169562 -k1,6883:26629614,37526468:169561 -k1,6883:28188539,37526468:169562 -k1,6883:29796615,37526468:169561 -k1,6883:30834529,37526468:169562 -k1,6883:31966991,37526468:0 -) -(1,6884:7246811,38367956:24720180,513147,126483 -k1,6883:9030636,38367956:253559 -k1,6883:9935623,38367956:253559 -k1,6883:11541844,38367956:253558 -k1,6883:15871087,38367956:253559 -k1,6883:17392112,38367956:253559 -k1,6883:20323472,38367956:253559 -k1,6883:21394920,38367956:253559 -k1,6883:25840816,38367956:253558 -k1,6883:28381582,38367956:253559 -k1,6883:29920957,38367956:253559 -k1,6883:31966991,38367956:0 -) -(1,6884:7246811,39209444:24720180,505283,134348 -k1,6883:8969207,39209444:226209 -k1,6883:11782121,39209444:226208 -k1,6883:12466427,39209444:226209 -k1,6883:13224132,39209444:226208 -k1,6883:15034346,39209444:226209 -k1,6883:16761328,39209444:226208 -k1,6883:17638965,39209444:226209 -k1,6883:18957658,39209444:226208 -k1,6883:23376205,39209444:226209 -k1,6883:26640662,39209444:226208 -k1,6883:29670501,39209444:226209 -k1,6883:30938731,39209444:226208 -k1,6884:31966991,39209444:0 -) -(1,6884:7246811,40050932:24720180,513147,126483 -k1,6883:10063714,40050932:227576 -k1,6883:11575796,40050932:227576 -k1,6883:12794932,40050932:227576 -k1,6883:16327489,40050932:227576 -k1,6883:18241962,40050932:227576 -k1,6883:18884353,40050932:227548 -k1,6883:21779900,40050932:227576 -k1,6883:24404783,40050932:227576 -k1,6883:27831827,40050932:227576 -k1,6883:28529296,40050932:227576 -k1,6883:29288369,40050932:227576 -k1,6883:30932833,40050932:227576 -k1,6884:31966991,40050932:0 -) -(1,6884:7246811,40892420:24720180,513147,126483 -k1,6883:9821065,40892420:186122 -k1,6883:10658615,40892420:186122 -k1,6883:13575622,40892420:186122 -k1,6883:14828016,40892420:186123 -k1,6883:16389739,40892420:186122 -k1,6883:20768199,40892420:186122 -k1,6883:21613613,40892420:186122 -k1,6883:25075880,40892420:186122 -k1,6883:26334171,40892420:186122 -k1,6883:27806110,40892420:186123 -k1,6883:29814133,40892420:186122 -k1,6883:30947906,40892420:186122 -k1,6883:31966991,40892420:0 -) -(1,6884:7246811,41733908:24720180,513147,126483 -k1,6883:10885206,41733908:181371 -k1,6883:11725869,41733908:181371 -k1,6883:19448468,41733908:181371 -k1,6883:22655635,41733908:181370 -k1,6883:23784657,41733908:181371 -k1,6883:26363335,41733908:181371 -k1,6883:28415759,41733908:181371 -k1,6883:29793817,41733908:181371 -k1,6883:31966991,41733908:0 -) -(1,6884:7246811,42575396:24720180,513147,134348 -k1,6883:8987649,42575396:173217 -k1,6883:11684001,42575396:173216 -k1,6883:12876303,42575396:173217 -k1,6883:14545706,42575396:173216 -k1,6883:17710642,42575396:173217 -k1,6883:18499897,42575396:173217 -k1,6883:19876354,42575396:173216 -k1,6883:21209558,42575396:173217 -k1,6883:22374335,42575396:173217 -k1,6883:23613822,42575396:173216 -k1,6883:26719120,42575396:173217 -k1,6883:29422026,42575396:173216 -k1,6883:30975431,42575396:173217 -k1,6883:31966991,42575396:0 -) -(1,6884:7246811,43416884:24720180,513147,102891 -k1,6883:8475190,43416884:209294 -k1,6883:10337957,43416884:209294 -k1,6883:11494902,43416884:209294 -k1,6883:12470311,43416884:209293 -k1,6883:15154244,43416884:209294 -k1,6883:16851861,43416884:209294 -k1,6883:17929507,43416884:209294 -k1,6883:19130361,43416884:209294 -k1,6883:22550919,43416884:209294 -k1,6883:23376251,43416884:209294 -k1,6883:24604629,43416884:209293 -k1,6883:27889528,43416884:209294 -k1,6883:29697900,43416884:209294 -k1,6883:31098639,43416884:209294 -k1,6883:31966991,43416884:0 -) -(1,6884:7246811,44258372:24720180,505283,7863 -g1,6883:9058881,44258372 -g1,6883:10461351,44258372 -g1,6883:11346742,44258372 -g1,6883:12316674,44258372 -k1,6884:31966992,44258372:16916156 -g1,6884:31966992,44258372 -) -] -) -] -r1,6945:32583029,44856059:26214,9081300,0 -) -] -) -) -g1,6945:32583029,44266235 -) -] -(1,6945:32583029,45706769:0,0,0 -g1,6945:32583029,45706769 -) -) -] -(1,6945:6630773,47279633:25952256,0,0 -h1,6945:6630773,47279633:25952256,0,0 -) -] -(1,6945:4262630,4025873:0,0,0 -[1,6945:-473656,4025873:0,0,0 -(1,6945:-473656,-710413:0,0,0 -(1,6945:-473656,-710413:0,0,0 -g1,6945:-473656,-710413 -) -g1,6945:-473656,-710413 -) -] -) -] -!26839 -}131 -Input:1057:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!104 -{132 -[1,6972:4262630,47279633:28320399,43253760,0 -(1,6972:4262630,4025873:0,0,0 -[1,6972:-473656,4025873:0,0,0 -(1,6972:-473656,-710413:0,0,0 -(1,6972:-473656,-644877:0,0,0 -k1,6972:-473656,-644877:-65536 -) -(1,6972:-473656,4736287:0,0,0 -k1,6972:-473656,4736287:5209943 -) -g1,6972:-473656,-710413 -) -] -) -[1,6972:6630773,47279633:25952256,43253760,0 -[1,6972:6630773,4812305:25952256,786432,0 -(1,6972:6630773,4812305:25952256,513147,126483 -(1,6972:6630773,4812305:25952256,513147,126483 -g1,6972:3078558,4812305 -[1,6972:3078558,4812305:0,0,0 -(1,6972:3078558,2439708:0,1703936,0 -k1,6972:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,6972:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,6972:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,6972:3078558,4812305:0,0,0 -(1,6972:3078558,2439708:0,1703936,0 -g1,6972:29030814,2439708 -g1,6972:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,6972:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,6972:37855564,2439708:1179648,16384,0 -) -) -k1,6972:3078556,2439708:-34777008 -) -] -[1,6972:3078558,4812305:0,0,0 -(1,6972:3078558,49800853:0,16384,2228224 -k1,6972:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,6972:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,6972:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,6972:3078558,4812305:0,0,0 -(1,6972:3078558,49800853:0,16384,2228224 -g1,6972:29030814,49800853 -g1,6972:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,6972:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,6972:37855564,49800853:1179648,16384,0 -) -) -k1,6972:3078556,49800853:-34777008 -) -] -g1,6972:6630773,4812305 -g1,6972:6630773,4812305 -g1,6972:9175536,4812305 -g1,6972:9990803,4812305 -g1,6972:13137841,4812305 -g1,6972:14654344,4812305 -k1,6972:31387652,4812305:16733308 -) -) -] -[1,6972:6630773,45706769:25952256,40108032,0 -(1,6972:6630773,45706769:25952256,40108032,0 -(1,6972:6630773,45706769:0,0,0 -g1,6972:6630773,45706769 -) -[1,6972:6630773,45706769:25952256,40108032,0 -v1,6945:6630773,6254097:0,393216,0 -(1,6945:6630773,35017526:25952256,29156645,616038 -g1,6945:6630773,35017526 -(1,6945:6630773,35017526:25952256,29156645,616038 -(1,6945:6630773,35633564:25952256,29772683,0 -[1,6945:6630773,35633564:25952256,29772683,0 -(1,6945:6630773,35607350:25952256,29746469,0 -r1,6972:6656987,35607350:26214,29746469,0 -[1,6945:6656987,35607350:25899828,29746469,0 -(1,6945:6656987,35017526:25899828,28566821,0 -[1,6945:7246811,35017526:24720180,28566821,0 -v1,6886:7246811,6843921:0,393216,0 -(1,6890:7246811,7152726:24720180,702021,196608 -g1,6890:7246811,7152726 -g1,6890:7246811,7152726 -g1,6890:7050203,7152726 -(1,6890:7050203,7152726:0,702021,196608 -r1,6972:32163599,7152726:25113396,898629,196608 -k1,6890:7050203,7152726:-25113396 -) -(1,6890:7050203,7152726:25113396,702021,196608 -[1,6890:7246811,7152726:24720180,505413,0 -(1,6888:7246811,7051539:24720180,404226,101187 -(1,6887:7246811,7051539:0,0,0 -g1,6887:7246811,7051539 -g1,6887:7246811,7051539 -g1,6887:6919131,7051539 -(1,6887:6919131,7051539:0,0,0 -) -g1,6887:7246811,7051539 -) -g1,6888:7879103,7051539 -g1,6888:8827541,7051539 -g1,6888:12621290,7051539 -g1,6888:13253582,7051539 -g1,6888:14202019,7051539 -g1,6888:15466602,7051539 -g1,6888:17047331,7051539 -g1,6888:21473371,7051539 -k1,6888:21473371,7051539:0 -h1,6888:23686391,7051539:0,0,0 -k1,6888:31966991,7051539:8280600 -g1,6888:31966991,7051539 -) -] -) -g1,6890:31966991,7152726 -g1,6890:7246811,7152726 -g1,6890:7246811,7152726 -g1,6890:31966991,7152726 -g1,6890:31966991,7152726 -) -h1,6890:7246811,7349334:0,0,0 -v1,6894:7246811,9064088:0,393216,0 -(1,6906:7246811,14607420:24720180,5936548,196608 -g1,6906:7246811,14607420 -g1,6906:7246811,14607420 -g1,6906:7050203,14607420 -(1,6906:7050203,14607420:0,5936548,196608 -r1,6972:32163599,14607420:25113396,6133156,196608 -k1,6906:7050203,14607420:-25113396 -) -(1,6906:7050203,14607420:25113396,5936548,196608 -[1,6906:7246811,14607420:24720180,5739940,0 -(1,6896:7246811,9271706:24720180,404226,76021 -(1,6895:7246811,9271706:0,0,0 -g1,6895:7246811,9271706 -g1,6895:7246811,9271706 -g1,6895:6919131,9271706 -(1,6895:6919131,9271706:0,0,0 -) -g1,6895:7246811,9271706 -) -g1,6896:7879103,9271706 -g1,6896:8511395,9271706 -g1,6896:9459833,9271706 -k1,6896:9459833,9271706:0 -h1,6896:12305144,9271706:0,0,0 -k1,6896:31966992,9271706:19661848 -g1,6896:31966992,9271706 -) -(1,6897:7246811,9937884:24720180,404226,107478 -h1,6897:7246811,9937884:0,0,0 -g1,6897:7879103,9937884 -g1,6897:8827541,9937884 -g1,6897:15466602,9937884 -g1,6897:16098894,9937884 -g1,6897:20208788,9937884 -k1,6897:20208788,9937884:41419 -h1,6897:22147081,9937884:0,0,0 -k1,6897:31966991,9937884:9819910 -g1,6897:31966991,9937884 -) -(1,6898:7246811,10604062:24720180,404226,0 -h1,6898:7246811,10604062:0,0,0 -g1,6898:7879103,10604062 -g1,6898:8827541,10604062 -h1,6898:9143687,10604062:0,0,0 -k1,6898:31966991,10604062:22823304 -g1,6898:31966991,10604062 -) -(1,6899:7246811,11270240:24720180,404226,107478 -h1,6899:7246811,11270240:0,0,0 -g1,6899:9143685,11270240 -g1,6899:10092122,11270240 -g1,6899:10724414,11270240 -g1,6899:14202017,11270240 -h1,6899:14518163,11270240:0,0,0 -k1,6899:31966991,11270240:17448828 -g1,6899:31966991,11270240 -) -(1,6900:7246811,11936418:24720180,404226,76021 -h1,6900:7246811,11936418:0,0,0 -g1,6900:7562957,11936418 -g1,6900:7879103,11936418 -g1,6900:9459832,11936418 -g1,6900:10408270,11936418 -g1,6900:12621291,11936418 -g1,6900:13253583,11936418 -h1,6900:14518166,11936418:0,0,0 -k1,6900:31966990,11936418:17448824 -g1,6900:31966990,11936418 -) -(1,6901:7246811,12602596:24720180,404226,101187 -h1,6901:7246811,12602596:0,0,0 -g1,6901:7562957,12602596 -g1,6901:7879103,12602596 -k1,6901:7879103,12602596:0 -h1,6901:10408268,12602596:0,0,0 -k1,6901:31966992,12602596:21558724 -g1,6901:31966992,12602596 -) -(1,6902:7246811,13268774:24720180,404226,0 -h1,6902:7246811,13268774:0,0,0 -g1,6902:7562957,13268774 -g1,6902:7879103,13268774 -g1,6902:8511395,13268774 -g1,6902:9459833,13268774 -g1,6902:10092125,13268774 -g1,6902:10724417,13268774 -h1,6902:11040563,13268774:0,0,0 -k1,6902:31966991,13268774:20926428 -g1,6902:31966991,13268774 -) -(1,6903:7246811,13934952:24720180,404226,76021 -h1,6903:7246811,13934952:0,0,0 -h1,6903:7562957,13934952:0,0,0 -k1,6903:31966991,13934952:24404034 -g1,6903:31966991,13934952 -) -(1,6904:7246811,14601130:24720180,404226,6290 -h1,6904:7246811,14601130:0,0,0 -h1,6904:7562957,14601130:0,0,0 -k1,6904:31966991,14601130:24404034 -g1,6904:31966991,14601130 -) -] -) -g1,6906:31966991,14607420 -g1,6906:7246811,14607420 -g1,6906:7246811,14607420 -g1,6906:31966991,14607420 -g1,6906:31966991,14607420 -) -h1,6906:7246811,14804028:0,0,0 -v1,6910:7246811,16518782:0,393216,0 -(1,6920:7246811,20729758:24720180,4604192,196608 -g1,6920:7246811,20729758 -g1,6920:7246811,20729758 -g1,6920:7050203,20729758 -(1,6920:7050203,20729758:0,4604192,196608 -r1,6972:32163599,20729758:25113396,4800800,196608 -k1,6920:7050203,20729758:-25113396 -) -(1,6920:7050203,20729758:25113396,4604192,196608 -[1,6920:7246811,20729758:24720180,4407584,0 -(1,6912:7246811,16726400:24720180,404226,76021 -(1,6911:7246811,16726400:0,0,0 -g1,6911:7246811,16726400 -g1,6911:7246811,16726400 -g1,6911:6919131,16726400 -(1,6911:6919131,16726400:0,0,0 -) -g1,6911:7246811,16726400 -) -g1,6912:7879103,16726400 -g1,6912:8511395,16726400 -g1,6912:9459833,16726400 -k1,6912:9459833,16726400:0 -h1,6912:12305144,16726400:0,0,0 -k1,6912:31966992,16726400:19661848 -g1,6912:31966992,16726400 -) -(1,6913:7246811,17392578:24720180,404226,107478 -h1,6913:7246811,17392578:0,0,0 -g1,6913:7879103,17392578 -g1,6913:8827541,17392578 -g1,6913:15466602,17392578 -g1,6913:16098894,17392578 -g1,6913:20208788,17392578 -k1,6913:20208788,17392578:41419 -h1,6913:22147081,17392578:0,0,0 -k1,6913:31966991,17392578:9819910 -g1,6913:31966991,17392578 -) -(1,6914:7246811,18058756:24720180,410518,107478 -h1,6914:7246811,18058756:0,0,0 -g1,6914:9143685,18058756 -g1,6914:10092122,18058756 -g1,6914:14834308,18058756 -g1,6914:15466600,18058756 -g1,6914:16731183,18058756 -h1,6914:17047329,18058756:0,0,0 -k1,6914:31966991,18058756:14919662 -g1,6914:31966991,18058756 -) -(1,6915:7246811,18724934:24720180,404226,76021 -h1,6915:7246811,18724934:0,0,0 -g1,6915:7562957,18724934 -g1,6915:7879103,18724934 -g1,6915:9459832,18724934 -g1,6915:10408270,18724934 -g1,6915:12621291,18724934 -g1,6915:13253583,18724934 -h1,6915:14518166,18724934:0,0,0 -k1,6915:31966990,18724934:17448824 -g1,6915:31966990,18724934 -) -(1,6916:7246811,19391112:24720180,404226,101187 -h1,6916:7246811,19391112:0,0,0 -g1,6916:7562957,19391112 -g1,6916:7879103,19391112 -k1,6916:7879103,19391112:0 -h1,6916:10408268,19391112:0,0,0 -k1,6916:31966992,19391112:21558724 -g1,6916:31966992,19391112 -) -(1,6917:7246811,20057290:24720180,404226,76021 -h1,6917:7246811,20057290:0,0,0 -h1,6917:7562957,20057290:0,0,0 -k1,6917:31966991,20057290:24404034 -g1,6917:31966991,20057290 -) -(1,6918:7246811,20723468:24720180,404226,6290 -h1,6918:7246811,20723468:0,0,0 -h1,6918:7562957,20723468:0,0,0 -k1,6918:31966991,20723468:24404034 -g1,6918:31966991,20723468 -) -] -) -g1,6920:31966991,20729758 -g1,6920:7246811,20729758 -g1,6920:7246811,20729758 -g1,6920:31966991,20729758 -g1,6920:31966991,20729758 -) -h1,6920:7246811,20926366:0,0,0 -v1,6924:7246811,22641120:0,393216,0 -(1,6931:7246811,24853562:24720180,2605658,196608 -g1,6931:7246811,24853562 -g1,6931:7246811,24853562 -g1,6931:7050203,24853562 -(1,6931:7050203,24853562:0,2605658,196608 -r1,6972:32163599,24853562:25113396,2802266,196608 -k1,6931:7050203,24853562:-25113396 -) -(1,6931:7050203,24853562:25113396,2605658,196608 -[1,6931:7246811,24853562:24720180,2409050,0 -(1,6926:7246811,22848738:24720180,404226,107478 -(1,6925:7246811,22848738:0,0,0 -g1,6925:7246811,22848738 -g1,6925:7246811,22848738 -g1,6925:6919131,22848738 -(1,6925:6919131,22848738:0,0,0 -) -g1,6925:7246811,22848738 -) -g1,6926:7879103,22848738 -g1,6926:10724414,22848738 -g1,6926:11672851,22848738 -g1,6926:13253580,22848738 -g1,6926:14834309,22848738 -g1,6926:16731183,22848738 -g1,6926:18311912,22848738 -g1,6926:22737952,22848738 -k1,6926:22737952,22848738:1573 -h1,6926:24320253,22848738:0,0,0 -k1,6926:31966991,22848738:7646738 -g1,6926:31966991,22848738 -) -(1,6927:7246811,23514916:24720180,404226,101187 -h1,6927:7246811,23514916:0,0,0 -g1,6927:7879103,23514916 -g1,6927:9143686,23514916 -g1,6927:11040560,23514916 -g1,6927:12937434,23514916 -g1,6927:14518163,23514916 -g1,6927:15466600,23514916 -g1,6927:17047329,23514916 -g1,6927:17995766,23514916 -g1,6927:19260349,23514916 -g1,6927:21789515,23514916 -k1,6927:21789515,23514916:41419 -h1,6927:24992391,23514916:0,0,0 -k1,6927:31966991,23514916:6974600 -g1,6927:31966991,23514916 -) -(1,6928:7246811,24181094:24720180,404226,107478 -h1,6928:7246811,24181094:0,0,0 -g1,6928:7879103,24181094 -g1,6928:8827541,24181094 -g1,6928:13569727,24181094 -g1,6928:14202019,24181094 -k1,6928:14202019,24181094:0 -h1,6928:19260351,24181094:0,0,0 -k1,6928:31966991,24181094:12706640 -g1,6928:31966991,24181094 -) -(1,6929:7246811,24847272:24720180,404226,6290 -h1,6929:7246811,24847272:0,0,0 -h1,6929:7562957,24847272:0,0,0 -k1,6929:31966991,24847272:24404034 -g1,6929:31966991,24847272 -) -] -) -g1,6931:31966991,24853562 -g1,6931:7246811,24853562 -g1,6931:7246811,24853562 -g1,6931:31966991,24853562 -g1,6931:31966991,24853562 -) -h1,6931:7246811,25050170:0,0,0 -v1,6935:7246811,26764924:0,393216,0 -(1,6941:7246811,28311188:24720180,1939480,196608 -g1,6941:7246811,28311188 -g1,6941:7246811,28311188 -g1,6941:7050203,28311188 -(1,6941:7050203,28311188:0,1939480,196608 -r1,6972:32163599,28311188:25113396,2136088,196608 -k1,6941:7050203,28311188:-25113396 -) -(1,6941:7050203,28311188:25113396,1939480,196608 -[1,6941:7246811,28311188:24720180,1742872,0 -(1,6937:7246811,26972542:24720180,404226,6290 -(1,6936:7246811,26972542:0,0,0 -g1,6936:7246811,26972542 -g1,6936:7246811,26972542 -g1,6936:6919131,26972542 -(1,6936:6919131,26972542:0,0,0 -) -g1,6936:7246811,26972542 -) -g1,6937:7879103,26972542 -g1,6937:8827540,26972542 -g1,6937:10408269,26972542 -k1,6937:10408269,26972542:23593 -h1,6937:12328736,26972542:0,0,0 -k1,6937:31966992,26972542:19638256 -g1,6937:31966992,26972542 -) -(1,6938:7246811,27638720:24720180,410518,76021 -h1,6938:7246811,27638720:0,0,0 -g1,6938:7879103,27638720 -g1,6938:8827541,27638720 -k1,6938:8827541,27638720:0 -h1,6938:11040561,27638720:0,0,0 -k1,6938:31966991,27638720:20926430 -g1,6938:31966991,27638720 -) -(1,6939:7246811,28304898:24720180,404226,6290 -h1,6939:7246811,28304898:0,0,0 -h1,6939:7562957,28304898:0,0,0 -k1,6939:31966991,28304898:24404034 -g1,6939:31966991,28304898 -) -] -) -g1,6941:31966991,28311188 -g1,6941:7246811,28311188 -g1,6941:7246811,28311188 -g1,6941:31966991,28311188 -g1,6941:31966991,28311188 -) -h1,6941:7246811,28507796:0,0,0 -(1,6945:7246811,29873572:24720180,513147,115847 -h1,6944:7246811,29873572:983040,0,0 -k1,6944:11506449,29873572:177400 -k1,6944:13109257,29873572:177400 -k1,6944:14390939,29873572:177400 -k1,6944:15316105,29873572:177400 -k1,6944:18285339,29873572:177400 -k1,6944:19856691,29873572:177401 -(1,6944:19856691,29873572:0,452978,115847 -r1,6972:24435499,29873572:4578808,568825,115847 -k1,6944:19856691,29873572:-4578808 -) -(1,6944:19856691,29873572:4578808,452978,115847 -k1,6944:19856691,29873572:3277 -h1,6944:24432222,29873572:0,411205,112570 -) -k1,6944:24786569,29873572:177400 -k1,6944:26005991,29873572:177400 -k1,6944:26539251,29873572:177400 -k1,6944:28694528,29873572:177400 -k1,6944:29531220,29873572:177400 -k1,6944:30727705,29873572:177400 -k1,6945:31966991,29873572:0 -) -(1,6945:7246811,30715060:24720180,505283,126483 -k1,6944:8743759,30715060:281255 -k1,6944:12014767,30715060:281256 -k1,6944:13315107,30715060:281255 -(1,6944:13315107,30715060:0,459977,115847 -r1,6972:14376796,30715060:1061689,575824,115847 -k1,6944:13315107,30715060:-1061689 -) -(1,6944:13315107,30715060:1061689,459977,115847 -k1,6944:13315107,30715060:3277 -h1,6944:14373519,30715060:0,411205,112570 -) -k1,6944:14658052,30715060:281256 -k1,6944:16354229,30715060:281255 -k1,6944:18490809,30715060:281256 -k1,6944:20455029,30715060:281255 -k1,6944:22146423,30715060:281255 -k1,6944:23619124,30715060:281256 -k1,6944:24919464,30715060:281255 -k1,6944:28505701,30715060:281256 -(1,6944:28505701,30715060:0,452978,115847 -r1,6972:30270814,30715060:1765113,568825,115847 -k1,6944:28505701,30715060:-1765113 -) -(1,6944:28505701,30715060:1765113,452978,115847 -k1,6944:28505701,30715060:3277 -h1,6944:30267537,30715060:0,411205,112570 -) -k1,6944:30552069,30715060:281255 -k1,6944:31966991,30715060:0 -) -(1,6945:7246811,31556548:24720180,513147,134348 -k1,6944:9032837,31556548:202216 -k1,6944:10254139,31556548:202217 -k1,6944:13793448,31556548:202216 -k1,6944:17182025,31556548:202217 -k1,6944:19119634,31556548:202216 -k1,6944:22061255,31556548:202216 -k1,6944:23946437,31556548:202217 -k1,6944:25558792,31556548:202216 -k1,6944:26952454,31556548:202217 -k1,6944:29850166,31556548:202216 -(1,6944:29850166,31556548:0,459977,115847 -r1,6972:31966991,31556548:2116825,575824,115847 -k1,6944:29850166,31556548:-2116825 -) -(1,6944:29850166,31556548:2116825,459977,115847 -k1,6944:29850166,31556548:3277 -h1,6944:31963714,31556548:0,411205,112570 -) -k1,6944:31966991,31556548:0 -) -(1,6945:7246811,32398036:24720180,513147,126483 -k1,6944:9097040,32398036:167264 -k1,6944:10848113,32398036:167263 -k1,6944:12212064,32398036:167264 -(1,6944:12212064,32398036:0,459977,115847 -r1,6972:13273753,32398036:1061689,575824,115847 -k1,6944:12212064,32398036:-1061689 -) -(1,6944:12212064,32398036:1061689,459977,115847 -k1,6944:12212064,32398036:3277 -h1,6944:13270476,32398036:0,411205,112570 -) -k1,6944:13441017,32398036:167264 -k1,6944:15023202,32398036:167263 -k1,6944:17650688,32398036:167264 -k1,6944:22204932,32398036:167264 -k1,6944:23031488,32398036:167264 -k1,6944:25830022,32398036:167263 -k1,6944:26648714,32398036:167264 -(1,6944:26648714,32398036:0,452978,115847 -r1,6972:27006980,32398036:358266,568825,115847 -k1,6944:26648714,32398036:-358266 -) -(1,6944:26648714,32398036:358266,452978,115847 -k1,6944:26648714,32398036:3277 -h1,6944:27003703,32398036:0,411205,112570 -) -k1,6944:27174244,32398036:167264 -k1,6944:29024472,32398036:167263 -k1,6944:30775546,32398036:167264 -k1,6944:31966991,32398036:0 -) -(1,6945:7246811,33239524:24720180,513147,126483 -k1,6944:8465381,33239524:199485 -k1,6944:11969848,33239524:199486 -k1,6944:13858851,33239524:199485 -k1,6944:15473259,33239524:199486 -k1,6944:18807791,33239524:199485 -k1,6944:20026362,33239524:199486 -k1,6944:22368219,33239524:199485 -k1,6944:25643310,33239524:199486 -k1,6944:27268203,33239524:199485 -k1,6944:28674862,33239524:199486 -k1,6944:30524544,33239524:199485 -k1,6944:31966991,33239524:0 -) -(1,6945:7246811,34081012:24720180,513147,126483 -k1,6944:8284483,34081012:240754 -k1,6944:10280947,34081012:240754 -k1,6944:12365229,34081012:240754 -k1,6944:14048430,34081012:240754 -k1,6944:15308269,34081012:240754 -k1,6944:17934534,34081012:240754 -k1,6944:19505669,34081012:240754 -k1,6944:21886829,34081012:240754 -k1,6944:23075234,34081012:240754 -k1,6944:23730789,34081012:240712 -k1,6944:25514261,34081012:240754 -k1,6944:26564385,34081012:240754 -k1,6944:27786213,34081012:240754 -k1,6944:30080865,34081012:240754 -k1,6944:31966991,34081012:0 -) -(1,6945:7246811,34922500:24720180,505283,95026 -g1,6944:10334867,34922500 -g1,6944:11331014,34922500 -k1,6945:31966992,34922500:19093260 -g1,6945:31966992,34922500 -) -] -) -] -r1,6972:32583029,35607350:26214,29746469,0 -) -] -) -) -g1,6945:32583029,35017526 -) -h1,6945:6630773,35633564:0,0,0 -(1,6948:6630773,38070040:25952256,564462,147783 -(1,6948:6630773,38070040:2450326,534184,12975 -g1,6948:6630773,38070040 -g1,6948:9081099,38070040 -) -g1,6948:12074981,38070040 -g1,6948:13044587,38070040 -k1,6948:32583030,38070040:17566792 -g1,6948:32583030,38070040 -) -(1,6952:6630773,39304744:25952256,513147,7863 -k1,6951:7729211,39304744:200595 -k1,6951:8948890,39304744:200594 -k1,6951:13788123,39304744:200595 -k1,6951:16276580,39304744:200595 -k1,6951:19993836,39304744:200594 -k1,6951:21634257,39304744:200595 -k1,6951:23690176,39304744:200595 -k1,6951:24995052,39304744:200594 -k1,6951:25943413,39304744:200595 -k1,6951:28435147,39304744:200595 -k1,6951:29589290,39304744:200594 -k1,6951:30922347,39304744:200595 -k1,6951:32583029,39304744:0 -) -(1,6952:6630773,40146232:25952256,513147,126483 -g1,6951:7600705,40146232 -g1,6951:10461351,40146232 -g1,6951:12054531,40146232 -g1,6951:13426199,40146232 -(1,6951:13426199,40146232:0,459977,115847 -r1,6972:14487888,40146232:1061689,575824,115847 -k1,6951:13426199,40146232:-1061689 -) -(1,6951:13426199,40146232:1061689,459977,115847 -k1,6951:13426199,40146232:3277 -h1,6951:14484611,40146232:0,411205,112570 -) -g1,6951:14687117,40146232 -g1,6951:16805240,40146232 -g1,6951:17958018,40146232 -g1,6951:19463380,40146232 -g1,6951:21591989,40146232 -g1,6951:22147078,40146232 -g1,6951:24433629,40146232 -g1,6951:25292150,40146232 -g1,6951:26880742,40146232 -g1,6951:27731399,40146232 -g1,6951:29527085,40146232 -k1,6952:32583029,40146232:1488323 -g1,6952:32583029,40146232 -) -v1,6954:6630773,41157627:0,393216,0 -(1,6972:6630773,45510161:25952256,4745750,196608 -g1,6972:6630773,45510161 -g1,6972:6630773,45510161 -g1,6972:6434165,45510161 -(1,6972:6434165,45510161:0,4745750,196608 -r1,6972:32779637,45510161:26345472,4942358,196608 -k1,6972:6434165,45510161:-26345472 -) -(1,6972:6434165,45510161:26345472,4745750,196608 -[1,6972:6630773,45510161:25952256,4549142,0 -(1,6956:6630773,41365245:25952256,404226,82312 -(1,6955:6630773,41365245:0,0,0 -g1,6955:6630773,41365245 -g1,6955:6630773,41365245 -g1,6955:6303093,41365245 -(1,6955:6303093,41365245:0,0,0 -) -g1,6955:6630773,41365245 -) -g1,6956:7263065,41365245 -g1,6956:8211503,41365245 -g1,6956:12321398,41365245 -h1,6956:13269835,41365245:0,0,0 -k1,6956:32583029,41365245:19313194 -g1,6956:32583029,41365245 -) -(1,6957:6630773,42031423:25952256,328204,0 -h1,6957:6630773,42031423:0,0,0 -h1,6957:6946919,42031423:0,0,0 -k1,6957:32583029,42031423:25636110 -g1,6957:32583029,42031423 -) -(1,6971:6630773,42763137:25952256,404226,82312 -(1,6959:6630773,42763137:0,0,0 -g1,6959:6630773,42763137 -g1,6959:6630773,42763137 -g1,6959:6303093,42763137 -(1,6959:6303093,42763137:0,0,0 -) -g1,6959:6630773,42763137 -) -g1,6971:7579210,42763137 -g1,6971:7895356,42763137 -g1,6971:8211502,42763137 -g1,6971:8527648,42763137 -g1,6971:8843794,42763137 -g1,6971:9159940,42763137 -g1,6971:9476086,42763137 -g1,6971:11056815,42763137 -g1,6971:12637544,42763137 -g1,6971:14218273,42763137 -g1,6971:15799002,42763137 -k1,6971:15799002,42763137:0 -h1,6971:17063585,42763137:0,0,0 -k1,6971:32583029,42763137:15519444 -g1,6971:32583029,42763137 -) -(1,6971:6630773,43429315:25952256,404226,82312 -h1,6971:6630773,43429315:0,0,0 -g1,6971:7579210,43429315 -g1,6971:7895356,43429315 -g1,6971:9476084,43429315 -g1,6971:9792230,43429315 -g1,6971:10108376,43429315 -g1,6971:10424522,43429315 -g1,6971:11056814,43429315 -g1,6971:11372960,43429315 -g1,6971:11689106,43429315 -g1,6971:12637543,43429315 -g1,6971:12953689,43429315 -g1,6971:13269835,43429315 -g1,6971:14218272,43429315 -g1,6971:14534418,43429315 -g1,6971:14850564,43429315 -g1,6971:15799001,43429315 -g1,6971:16115147,43429315 -g1,6971:16431293,43429315 -h1,6971:17063584,43429315:0,0,0 -k1,6971:32583029,43429315:15519445 -g1,6971:32583029,43429315 -) -(1,6971:6630773,44095493:25952256,404226,82312 -h1,6971:6630773,44095493:0,0,0 -g1,6971:7579210,44095493 -g1,6971:7895356,44095493 -g1,6971:9476084,44095493 -g1,6971:9792230,44095493 -g1,6971:10108376,44095493 -g1,6971:10424522,44095493 -g1,6971:11056814,44095493 -g1,6971:11372960,44095493 -g1,6971:11689106,44095493 -g1,6971:12637543,44095493 -g1,6971:12953689,44095493 -g1,6971:13269835,44095493 -g1,6971:14218272,44095493 -g1,6971:14534418,44095493 -g1,6971:14850564,44095493 -g1,6971:15799001,44095493 -g1,6971:16115147,44095493 -g1,6971:16431293,44095493 -h1,6971:17063584,44095493:0,0,0 -k1,6971:32583029,44095493:15519445 -g1,6971:32583029,44095493 -) -(1,6971:6630773,44761671:25952256,404226,82312 -h1,6971:6630773,44761671:0,0,0 -g1,6971:7579210,44761671 -g1,6971:7895356,44761671 -g1,6971:9476084,44761671 -g1,6971:9792230,44761671 -g1,6971:10108376,44761671 -g1,6971:10424522,44761671 -g1,6971:11056814,44761671 -g1,6971:11372960,44761671 -g1,6971:11689106,44761671 -g1,6971:12637543,44761671 -g1,6971:12953689,44761671 -g1,6971:13269835,44761671 -g1,6971:14218272,44761671 -g1,6971:14534418,44761671 -g1,6971:14850564,44761671 -g1,6971:15799001,44761671 -g1,6971:16115147,44761671 -g1,6971:16431293,44761671 -h1,6971:17063584,44761671:0,0,0 -k1,6971:32583029,44761671:15519445 -g1,6971:32583029,44761671 -) -(1,6971:6630773,45427849:25952256,404226,82312 -h1,6971:6630773,45427849:0,0,0 -g1,6971:7579210,45427849 -g1,6971:7895356,45427849 -g1,6971:9476084,45427849 -g1,6971:9792230,45427849 -g1,6971:10108376,45427849 -g1,6971:10424522,45427849 -g1,6971:11056814,45427849 -g1,6971:11372960,45427849 -g1,6971:11689106,45427849 -g1,6971:12637543,45427849 -g1,6971:12953689,45427849 -g1,6971:13269835,45427849 -g1,6971:14218272,45427849 -g1,6971:14534418,45427849 -g1,6971:14850564,45427849 -g1,6971:15799001,45427849 -g1,6971:16115147,45427849 -g1,6971:16431293,45427849 -h1,6971:17063584,45427849:0,0,0 -k1,6971:32583029,45427849:15519445 -g1,6971:32583029,45427849 -) -] -) -g1,6972:32583029,45510161 -g1,6972:6630773,45510161 -g1,6972:6630773,45510161 -g1,6972:32583029,45510161 -g1,6972:32583029,45510161 -) -] -(1,6972:32583029,45706769:0,0,0 -g1,6972:32583029,45706769 -) -) -] -(1,6972:6630773,47279633:25952256,0,0 -h1,6972:6630773,47279633:25952256,0,0 -) -] -(1,6972:4262630,4025873:0,0,0 -[1,6972:-473656,4025873:0,0,0 -(1,6972:-473656,-710413:0,0,0 -(1,6972:-473656,-710413:0,0,0 -g1,6972:-473656,-710413 -) -g1,6972:-473656,-710413 -) -] -) -] -!24287 -}132 -Input:1058:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1059:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1060:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1061:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1062:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1063:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1064:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1065:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1066:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1067:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1068:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1069:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1070:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1071:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1072:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1073:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1074:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1075:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1076:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1077:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1078:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1079:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!2036 -{133 -[1,7048:4262630,47279633:28320399,43253760,0 -(1,7048:4262630,4025873:0,0,0 -[1,7048:-473656,4025873:0,0,0 -(1,7048:-473656,-710413:0,0,0 -(1,7048:-473656,-644877:0,0,0 -k1,7048:-473656,-644877:-65536 -) -(1,7048:-473656,4736287:0,0,0 -k1,7048:-473656,4736287:5209943 -) -g1,7048:-473656,-710413 -) -] -) -[1,7048:6630773,47279633:25952256,43253760,0 -[1,7048:6630773,4812305:25952256,786432,0 -(1,7048:6630773,4812305:25952256,505283,134348 -(1,7048:6630773,4812305:25952256,505283,134348 -g1,7048:3078558,4812305 -[1,7048:3078558,4812305:0,0,0 -(1,7048:3078558,2439708:0,1703936,0 -k1,7048:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,7048:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,7048:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,7048:3078558,4812305:0,0,0 -(1,7048:3078558,2439708:0,1703936,0 -g1,7048:29030814,2439708 -g1,7048:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,7048:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,7048:37855564,2439708:1179648,16384,0 -) -) -k1,7048:3078556,2439708:-34777008 -) -] -[1,7048:3078558,4812305:0,0,0 -(1,7048:3078558,49800853:0,16384,2228224 -k1,7048:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,7048:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,7048:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,7048:3078558,4812305:0,0,0 -(1,7048:3078558,49800853:0,16384,2228224 -g1,7048:29030814,49800853 -g1,7048:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,7048:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,7048:37855564,49800853:1179648,16384,0 -) -) -k1,7048:3078556,49800853:-34777008 -) -] -g1,7048:6630773,4812305 -k1,7048:18771974,4812305:10945824 -g1,7048:20158715,4812305 -g1,7048:20807521,4812305 -g1,7048:24121676,4812305 -g1,7048:28605649,4812305 -g1,7048:30015328,4812305 -) -) -] -[1,7048:6630773,45706769:25952256,40108032,0 -(1,7048:6630773,45706769:25952256,40108032,0 -(1,7048:6630773,45706769:0,0,0 -g1,7048:6630773,45706769 -) -[1,7048:6630773,45706769:25952256,40108032,0 -v1,6972:6630773,6254097:0,393216,0 -(1,6972:6630773,9874917:25952256,4014036,196608 -g1,6972:6630773,9874917 -g1,6972:6630773,9874917 -g1,6972:6434165,9874917 -(1,6972:6434165,9874917:0,4014036,196608 -r1,7048:32779637,9874917:26345472,4210644,196608 -k1,6972:6434165,9874917:-26345472 -) -(1,6972:6434165,9874917:26345472,4014036,196608 -[1,6972:6630773,9874917:25952256,3817428,0 -(1,6971:6630773,6461715:25952256,404226,82312 -h1,6971:6630773,6461715:0,0,0 -g1,6971:7579210,6461715 -g1,6971:7895356,6461715 -g1,6971:9476084,6461715 -g1,6971:9792230,6461715 -g1,6971:10108376,6461715 -g1,6971:10424522,6461715 -g1,6971:11056814,6461715 -g1,6971:11372960,6461715 -g1,6971:11689106,6461715 -g1,6971:12637543,6461715 -g1,6971:12953689,6461715 -g1,6971:13269835,6461715 -g1,6971:14218272,6461715 -g1,6971:14534418,6461715 -g1,6971:14850564,6461715 -g1,6971:15799001,6461715 -g1,6971:16115147,6461715 -g1,6971:16431293,6461715 -h1,6971:17063584,6461715:0,0,0 -k1,6971:32583029,6461715:15519445 -g1,6971:32583029,6461715 -) -(1,6971:6630773,7127893:25952256,404226,82312 -h1,6971:6630773,7127893:0,0,0 -g1,6971:7579210,7127893 -g1,6971:7895356,7127893 -g1,6971:9476084,7127893 -g1,6971:9792230,7127893 -g1,6971:10108376,7127893 -g1,6971:10424522,7127893 -g1,6971:11056814,7127893 -g1,6971:11372960,7127893 -g1,6971:11689106,7127893 -g1,6971:12637543,7127893 -g1,6971:12953689,7127893 -g1,6971:13269835,7127893 -g1,6971:14218272,7127893 -g1,6971:14534418,7127893 -g1,6971:14850564,7127893 -g1,6971:15799001,7127893 -g1,6971:16115147,7127893 -g1,6971:16431293,7127893 -h1,6971:17063584,7127893:0,0,0 -k1,6971:32583029,7127893:15519445 -g1,6971:32583029,7127893 -) -(1,6971:6630773,7794071:25952256,404226,82312 -h1,6971:6630773,7794071:0,0,0 -g1,6971:7579210,7794071 -g1,6971:7895356,7794071 -g1,6971:9476084,7794071 -g1,6971:9792230,7794071 -g1,6971:10108376,7794071 -g1,6971:10424522,7794071 -g1,6971:11056814,7794071 -g1,6971:11372960,7794071 -g1,6971:11689106,7794071 -g1,6971:12637543,7794071 -g1,6971:12953689,7794071 -g1,6971:13269835,7794071 -g1,6971:14218272,7794071 -g1,6971:14534418,7794071 -g1,6971:14850564,7794071 -g1,6971:15799001,7794071 -g1,6971:16115147,7794071 -g1,6971:16431293,7794071 -h1,6971:17063584,7794071:0,0,0 -k1,6971:32583029,7794071:15519445 -g1,6971:32583029,7794071 -) -(1,6971:6630773,8460249:25952256,404226,82312 -h1,6971:6630773,8460249:0,0,0 -g1,6971:7579210,8460249 -g1,6971:7895356,8460249 -g1,6971:9476084,8460249 -g1,6971:9792230,8460249 -g1,6971:10108376,8460249 -g1,6971:10424522,8460249 -g1,6971:11056814,8460249 -g1,6971:11372960,8460249 -g1,6971:11689106,8460249 -g1,6971:12637543,8460249 -g1,6971:12953689,8460249 -g1,6971:13269835,8460249 -g1,6971:14218272,8460249 -g1,6971:14534418,8460249 -g1,6971:14850564,8460249 -g1,6971:15799001,8460249 -g1,6971:16115147,8460249 -g1,6971:16431293,8460249 -h1,6971:17063584,8460249:0,0,0 -k1,6971:32583029,8460249:15519445 -g1,6971:32583029,8460249 -) -(1,6971:6630773,9126427:25952256,404226,82312 -h1,6971:6630773,9126427:0,0,0 -g1,6971:7579210,9126427 -g1,6971:7895356,9126427 -g1,6971:9476084,9126427 -g1,6971:9792230,9126427 -g1,6971:10108376,9126427 -g1,6971:10424522,9126427 -g1,6971:11056814,9126427 -g1,6971:11372960,9126427 -g1,6971:11689106,9126427 -g1,6971:12637543,9126427 -g1,6971:12953689,9126427 -g1,6971:13269835,9126427 -g1,6971:14218272,9126427 -g1,6971:14534418,9126427 -g1,6971:14850564,9126427 -g1,6971:15799001,9126427 -g1,6971:16115147,9126427 -g1,6971:16431293,9126427 -h1,6971:17063584,9126427:0,0,0 -k1,6971:32583029,9126427:15519445 -g1,6971:32583029,9126427 -) -(1,6971:6630773,9792605:25952256,404226,82312 -h1,6971:6630773,9792605:0,0,0 -g1,6971:7579210,9792605 -g1,6971:9476084,9792605 -g1,6971:9792230,9792605 -g1,6971:10108376,9792605 -g1,6971:11056813,9792605 -g1,6971:11372959,9792605 -g1,6971:11689105,9792605 -g1,6971:12637542,9792605 -g1,6971:12953688,9792605 -g1,6971:13269834,9792605 -g1,6971:14218271,9792605 -g1,6971:14534417,9792605 -g1,6971:14850563,9792605 -g1,6971:15799000,9792605 -g1,6971:16115146,9792605 -g1,6971:16431292,9792605 -h1,6971:17063583,9792605:0,0,0 -k1,6971:32583029,9792605:15519446 -g1,6971:32583029,9792605 -) -] -) -g1,6972:32583029,9874917 -g1,6972:6630773,9874917 -g1,6972:6630773,9874917 -g1,6972:32583029,9874917 -g1,6972:32583029,9874917 -) -h1,6972:6630773,10071525:0,0,0 -v1,6976:6630773,11786279:0,393216,0 -(1,6989:6630773,16798700:25952256,5405637,196608 -g1,6989:6630773,16798700 -g1,6989:6630773,16798700 -g1,6989:6434165,16798700 -(1,6989:6434165,16798700:0,5405637,196608 -r1,7048:32779637,16798700:26345472,5602245,196608 -k1,6989:6434165,16798700:-26345472 -) -(1,6989:6434165,16798700:26345472,5405637,196608 -[1,6989:6630773,16798700:25952256,5209029,0 -(1,6978:6630773,11993897:25952256,404226,76021 -(1,6977:6630773,11993897:0,0,0 -g1,6977:6630773,11993897 -g1,6977:6630773,11993897 -g1,6977:6303093,11993897 -(1,6977:6303093,11993897:0,0,0 -) -g1,6977:6630773,11993897 -) -g1,6978:9159939,11993897 -g1,6978:10108377,11993897 -k1,6978:10108377,11993897:0 -h1,6978:12953688,11993897:0,0,0 -k1,6978:32583028,11993897:19629340 -g1,6978:32583028,11993897 -) -(1,6979:6630773,12660075:25952256,410518,76021 -h1,6979:6630773,12660075:0,0,0 -g1,6979:7895356,12660075 -g1,6979:8843793,12660075 -g1,6979:9792230,12660075 -g1,6979:13269834,12660075 -h1,6979:13585980,12660075:0,0,0 -k1,6979:32583028,12660075:18997048 -g1,6979:32583028,12660075 -) -(1,6980:6630773,13326253:25952256,404226,76021 -h1,6980:6630773,13326253:0,0,0 -g1,6980:6946919,13326253 -g1,6980:7263065,13326253 -g1,6980:10740668,13326253 -g1,6980:11689106,13326253 -h1,6980:12005252,13326253:0,0,0 -k1,6980:32583028,13326253:20577776 -g1,6980:32583028,13326253 -) -(1,6981:6630773,13992431:25952256,410518,107478 -h1,6981:6630773,13992431:0,0,0 -g1,6981:6946919,13992431 -g1,6981:7263065,13992431 -g1,6981:8527648,13992431 -g1,6981:9476085,13992431 -g1,6981:10424522,13992431 -k1,6981:10424522,13992431:0 -h1,6981:13585980,13992431:0,0,0 -k1,6981:32583028,13992431:18997048 -g1,6981:32583028,13992431 -) -(1,6982:6630773,14658609:25952256,404226,107478 -h1,6982:6630773,14658609:0,0,0 -g1,6982:6946919,14658609 -g1,6982:7263065,14658609 -g1,6982:7579211,14658609 -g1,6982:7895357,14658609 -g1,6982:11372960,14658609 -g1,6982:12321398,14658609 -g1,6982:15799001,14658609 -g1,6982:16431293,14658609 -g1,6982:18012022,14658609 -h1,6982:18644313,14658609:0,0,0 -k1,6982:32583029,14658609:13938716 -g1,6982:32583029,14658609 -) -(1,6983:6630773,15324787:25952256,404226,76021 -h1,6983:6630773,15324787:0,0,0 -h1,6983:6946919,15324787:0,0,0 -k1,6983:32583029,15324787:25636110 -g1,6983:32583029,15324787 -) -(1,6984:6630773,15990965:25952256,404226,101187 -h1,6984:6630773,15990965:0,0,0 -k1,6984:6630773,15990965:0 -h1,6984:11056812,15990965:0,0,0 -k1,6984:32583028,15990965:21526216 -g1,6984:32583028,15990965 -) -(1,6988:6630773,16722679:25952256,404226,76021 -(1,6986:6630773,16722679:0,0,0 -g1,6986:6630773,16722679 -g1,6986:6630773,16722679 -g1,6986:6303093,16722679 -(1,6986:6303093,16722679:0,0,0 -) -g1,6986:6630773,16722679 -) -g1,6988:7579210,16722679 -g1,6988:7895356,16722679 -g1,6988:9159939,16722679 -g1,6988:10424522,16722679 -g1,6988:11689105,16722679 -g1,6988:12953688,16722679 -g1,6988:14218271,16722679 -g1,6988:15482854,16722679 -g1,6988:16747437,16722679 -g1,6988:18012020,16722679 -g1,6988:19276603,16722679 -g1,6988:20541186,16722679 -h1,6988:21489623,16722679:0,0,0 -k1,6988:32583029,16722679:11093406 -g1,6988:32583029,16722679 -) -] -) -g1,6989:32583029,16798700 -g1,6989:6630773,16798700 -g1,6989:6630773,16798700 -g1,6989:32583029,16798700 -g1,6989:32583029,16798700 -) -h1,6989:6630773,16995308:0,0,0 -(1,6993:6630773,18361084:25952256,505283,134348 -h1,6992:6630773,18361084:983040,0,0 -k1,6992:9055277,18361084:244777 -k1,6992:10796241,18361084:244777 -k1,6992:12896342,18361084:244777 -k1,6992:13672615,18361084:244776 -k1,6992:15271366,18361084:244777 -k1,6992:18022895,18361084:244777 -k1,6992:18725769,18361084:244777 -k1,6992:20103008,18361084:244777 -k1,6992:21944242,18361084:244777 -k1,6992:23582969,18361084:244776 -k1,6992:24959553,18361084:244777 -k1,6992:30495707,18361084:244777 -k1,6992:32583029,18361084:0 -) -(1,6993:6630773,19202572:25952256,513147,126483 -k1,6992:8205956,19202572:181232 -k1,6992:8999950,19202572:181232 -k1,6992:10676714,19202572:181232 -k1,6992:12014656,19202572:181232 -k1,6992:14578777,19202572:181232 -k1,6992:15951454,19202572:181232 -k1,6992:17289397,19202572:181233 -k1,6992:18848196,19202572:181232 -k1,6992:21964130,19202572:181232 -k1,6992:25593211,19202572:181232 -k1,6992:26642795,19202572:181232 -k1,6992:28354293,19202572:181232 -k1,6992:30185722,19202572:181232 -k1,6992:32583029,19202572:0 -) -(1,6993:6630773,20044060:25952256,513147,115847 -k1,6992:10807571,20044060:201384 -(1,6992:10807571,20044060:0,452978,115847 -r1,7048:13276108,20044060:2468537,568825,115847 -k1,6992:10807571,20044060:-2468537 -) -(1,6992:10807571,20044060:2468537,452978,115847 -g1,6992:12569407,20044060 -h1,6992:13272831,20044060:0,411205,112570 -) -k1,6992:13477492,20044060:201384 -k1,6992:15829768,20044060:201384 -k1,6992:17187861,20044060:201383 -k1,6992:18480419,20044060:201384 -k1,6992:19297841,20044060:201384 -k1,6992:20518310,20044060:201384 -k1,6992:22980686,20044060:201384 -k1,6992:24201155,20044060:201384 -k1,6992:25559249,20044060:201384 -k1,6992:26570003,20044060:201384 -k1,6992:27790471,20044060:201383 -k1,6992:29297988,20044060:201384 -k1,6992:30703268,20044060:201384 -k1,6992:31563944,20044060:201384 -k1,6992:32583029,20044060:0 -) -(1,6993:6630773,20885548:25952256,505283,115847 -k1,6992:9135902,20885548:263798 -k1,6992:11956259,20885548:263798 -(1,6992:11956259,20885548:0,452978,115847 -r1,7048:14073084,20885548:2116825,568825,115847 -k1,6992:11956259,20885548:-2116825 -) -(1,6992:11956259,20885548:2116825,452978,115847 -g1,6992:13718095,20885548 -h1,6992:14069807,20885548:0,411205,112570 -) -k1,6992:14336883,20885548:263799 -k1,6992:16751573,20885548:263798 -k1,6992:18219267,20885548:263798 -k1,6992:19813446,20885548:263798 -k1,6992:21268689,20885548:263798 -(1,6992:21268689,20885548:0,452978,115847 -r1,7048:23737227,20885548:2468538,568825,115847 -k1,6992:21268689,20885548:-2468538 -) -(1,6992:21268689,20885548:2468538,452978,115847 -g1,6992:22327102,20885548 -g1,6992:23030526,20885548 -h1,6992:23733950,20885548:0,411205,112570 -) -k1,6992:24001025,20885548:263798 -k1,6992:26415716,20885548:263799 -k1,6992:29062403,20885548:263798 -k1,6992:30672311,20885548:263798 -k1,6992:31563944,20885548:263798 -k1,6992:32583029,20885548:0 -) -(1,6993:6630773,21727036:25952256,513147,134348 -k1,6992:9555332,21727036:263142 -k1,6992:11847470,21727036:263143 -k1,6992:13129697,21727036:263142 -k1,6992:15073183,21727036:263143 -k1,6992:16003481,21727036:263142 -(1,6992:16003481,21727036:0,452978,115847 -r1,7048:16361747,21727036:358266,568825,115847 -k1,6992:16003481,21727036:-358266 -) -(1,6992:16003481,21727036:358266,452978,115847 -k1,6992:16003481,21727036:3277 -h1,6992:16358470,21727036:0,411205,112570 -) -k1,6992:16624890,21727036:263143 -k1,6992:19459009,21727036:263142 -k1,6992:20669802,21727036:263142 -k1,6992:22384567,21727036:263143 -k1,6992:25364832,21727036:263142 -k1,6992:26287267,21727036:263143 -k1,6992:27569494,21727036:263142 -k1,6992:29534607,21727036:263143 -k1,6992:31386342,21727036:263142 -k1,6992:32583029,21727036:0 -) -(1,6993:6630773,22568524:25952256,513147,134348 -k1,6992:8491584,22568524:180468 -k1,6992:9339208,22568524:180468 -(1,6992:9339208,22568524:0,452978,122846 -r1,7048:9697474,22568524:358266,575824,122846 -k1,6992:9339208,22568524:-358266 -) -(1,6992:9339208,22568524:358266,452978,122846 -k1,6992:9339208,22568524:3277 -h1,6992:9694197,22568524:0,411205,112570 -) -k1,6992:9877942,22568524:180468 -k1,6992:12629387,22568524:180468 -k1,6992:13757506,22568524:180468 -k1,6992:15389596,22568524:180468 -k1,6992:18287187,22568524:180468 -k1,6992:19126947,22568524:180468 -k1,6992:20326499,22568524:180467 -k1,6992:22173548,22568524:180468 -k1,6992:23942609,22568524:180468 -k1,6992:25314522,22568524:180468 -k1,6992:26514075,22568524:180468 -k1,6992:28361124,22568524:180468 -k1,6992:29956514,22568524:180468 -k1,6992:30668479,22568524:180468 -k1,6992:31966991,22568524:180468 -k1,6992:32583029,22568524:0 -) -(1,6993:6630773,23410012:25952256,513147,134348 -g1,6992:7919866,23410012 -g1,6992:9066746,23410012 -g1,6992:10717597,23410012 -g1,6992:13633949,23410012 -g1,6992:14492470,23410012 -g1,6992:15710784,23410012 -g1,6992:17611983,23410012 -g1,6992:19399805,23410012 -g1,6992:20795721,23410012 -g1,6992:22661531,23410012 -g1,6992:24275682,23410012 -g1,6992:26224722,23410012 -(1,6992:26224722,23410012:0,452978,122846 -r1,7048:26582988,23410012:358266,575824,122846 -k1,6992:26224722,23410012:-358266 -) -(1,6992:26224722,23410012:358266,452978,122846 -k1,6992:26224722,23410012:3277 -h1,6992:26579711,23410012:0,411205,112570 -) -g1,6992:26782217,23410012 -g1,6992:29552423,23410012 -k1,6993:32583029,23410012:714564 -g1,6993:32583029,23410012 -) -v1,6995:6630773,24775788:0,393216,0 -(1,6998:6630773,35665443:25952256,11282871,616038 -g1,6998:6630773,35665443 -(1,6998:6630773,35665443:25952256,11282871,616038 -(1,6998:6630773,36281481:25952256,11898909,0 -[1,6998:6630773,36281481:25952256,11898909,0 -(1,6998:6630773,36255267:25952256,11846481,0 -r1,7048:6656987,36255267:26214,11846481,0 -[1,6998:6656987,36255267:25899828,11846481,0 -(1,6998:6656987,35665443:25899828,10666833,0 -[1,6998:7246811,35665443:24720180,10666833,0 -(1,6996:7246811,26282592:24720180,1283982,196608 -(1,6995:7246811,26282592:0,1283982,196608 -r1,7048:9812056,26282592:2565245,1480590,196608 -k1,6995:7246811,26282592:-2565245 -) -(1,6995:7246811,26282592:2565245,1283982,196608 -) -k1,6995:10091555,26282592:279499 -k1,6995:10976607,26282592:279499 -k1,6995:13462048,26282592:279499 -k1,6995:14760633,26282592:279500 -k1,6995:16536319,26282592:279499 -k1,6995:17431856,26282592:279499 -k1,6995:18730440,26282592:279499 -k1,6995:21671356,26282592:279499 -k1,6995:22566893,26282592:279499 -k1,6995:23865477,26282592:279499 -k1,6995:25293168,26282592:279500 -k1,6995:27543335,26282592:279499 -k1,6995:29678158,26282592:279499 -k1,6995:30682485,26282592:279499 -k1,6995:31966991,26282592:0 -) -(1,6996:7246811,27124080:24720180,513147,126483 -k1,6995:7979081,27124080:274173 -k1,6995:9948671,27124080:274174 -k1,6995:11241929,27124080:274173 -k1,6995:13526747,27124080:274173 -k1,6995:15176521,27124080:274173 -k1,6995:16066733,27124080:274174 -k1,6995:17359991,27124080:274173 -k1,6995:18940297,27124080:274173 -k1,6995:20869254,27124080:274173 -k1,6995:23856619,27124080:274174 -k1,6995:24797948,27124080:274173 -(1,6995:24797948,27124080:0,414482,115847 -r1,7048:25156214,27124080:358266,530329,115847 -k1,6995:24797948,27124080:-358266 -) -(1,6995:24797948,27124080:358266,414482,115847 -k1,6995:24797948,27124080:3277 -h1,6995:25152937,27124080:0,411205,112570 -) -k1,6995:25604057,27124080:274173 -k1,6995:26483784,27124080:274174 -k1,6995:29020260,27124080:274173 -k1,6995:30313518,27124080:274173 -k1,6995:31966991,27124080:0 -) -(1,6996:7246811,27965568:24720180,513147,126483 -k1,6995:10123937,27965568:215709 -k1,6995:11064474,27965568:215709 -k1,6995:12564688,27965568:215708 -k1,6995:13238494,27965568:215709 -k1,6995:15149619,27965568:215709 -k1,6995:16384413,27965568:215709 -k1,6995:18610767,27965568:215709 -k1,6995:20202077,27965568:215709 -k1,6995:21033823,27965568:215708 -k1,6995:22268617,27965568:215709 -k1,6995:23632517,27965568:215709 -k1,6995:25503010,27965568:215709 -k1,6995:27252917,27965568:215709 -k1,6995:28135781,27965568:215708 -(1,6995:28135781,27965568:0,414482,115847 -r1,7048:28494047,27965568:358266,530329,115847 -k1,6995:28135781,27965568:-358266 -) -(1,6995:28135781,27965568:358266,414482,115847 -k1,6995:28135781,27965568:3277 -h1,6995:28490770,27965568:0,411205,112570 -) -k1,6995:28883426,27965568:215709 -k1,6995:29704688,27965568:215709 -k1,6995:31966991,27965568:0 -) -(1,6996:7246811,28807056:24720180,505283,126483 -k1,6995:8424190,28807056:158294 -k1,6995:10078670,28807056:158293 -k1,6995:10961792,28807056:158294 -k1,6995:12404591,28807056:158293 -k1,6995:15296392,28807056:158294 -k1,6995:16848637,28807056:158294 -k1,6995:20682189,28807056:158293 -k1,6995:22568012,28807056:158294 -k1,6995:23377734,28807056:158294 -k1,6995:24956192,28807056:158293 -k1,6995:26007742,28807056:158294 -k1,6995:28930344,28807056:158293 -k1,6995:29850166,28807056:158294 -(1,6995:29850166,28807056:0,452978,115847 -r1,7048:31966991,28807056:2116825,568825,115847 -k1,6995:29850166,28807056:-2116825 -) -(1,6995:29850166,28807056:2116825,452978,115847 -k1,6995:29850166,28807056:3277 -h1,6995:31963714,28807056:0,411205,112570 -) -k1,6995:31966991,28807056:0 -) -(1,6996:7246811,29648544:24720180,505283,115847 -g1,6995:8637485,29648544 -(1,6995:8637485,29648544:0,452978,115847 -r1,7048:10754310,29648544:2116825,568825,115847 -k1,6995:8637485,29648544:-2116825 -) -(1,6995:8637485,29648544:2116825,452978,115847 -k1,6995:8637485,29648544:3277 -h1,6995:10751033,29648544:0,411205,112570 -) -k1,6996:31966990,29648544:20831916 -g1,6996:31966990,29648544 -) -(1,6998:7246811,30490032:24720180,513147,134348 -h1,6997:7246811,30490032:983040,0,0 -k1,6997:9599150,30490032:151640 -k1,6997:10769875,30490032:151640 -k1,6997:12417702,30490032:151640 -k1,6997:13739816,30490032:151641 -k1,6997:15699594,30490032:151640 -k1,6997:18629305,30490032:151640 -k1,6997:21367651,30490032:151640 -k1,6997:22205453,30490032:151640 -k1,6997:25196113,30490032:151640 -k1,6997:25813715,30490032:151641 -k1,6997:26984440,30490032:151640 -k1,6997:29621861,30490032:151640 -k1,6997:30432793,30490032:151640 -k1,6997:31966991,30490032:0 -) -(1,6998:7246811,31331520:24720180,513147,134348 -k1,6997:8080553,31331520:217704 -(1,6997:8080553,31331520:0,414482,115847 -r1,7048:8438819,31331520:358266,530329,115847 -k1,6997:8080553,31331520:-358266 -) -(1,6997:8080553,31331520:358266,414482,115847 -k1,6997:8080553,31331520:3277 -h1,6997:8435542,31331520:0,411205,112570 -) -k1,6997:8656523,31331520:217704 -k1,6997:11862669,31331520:217704 -k1,6997:13714186,31331520:217704 -k1,6997:14397851,31331520:217704 -k1,6997:15634640,31331520:217704 -k1,6997:18338125,31331520:217704 -k1,6997:19215120,31331520:217703 -k1,6997:22146015,31331520:217704 -k1,6997:22979757,31331520:217704 -(1,6997:22979757,31331520:0,414482,115847 -r1,7048:23338023,31331520:358266,530329,115847 -k1,6997:22979757,31331520:-358266 -) -(1,6997:22979757,31331520:358266,414482,115847 -k1,6997:22979757,31331520:3277 -h1,6997:23334746,31331520:0,411205,112570 -) -k1,6997:23555727,31331520:217704 -k1,6997:26608518,31331520:217704 -k1,6997:28017667,31331520:217704 -k1,6997:29254456,31331520:217704 -k1,6997:31966991,31331520:0 -) -(1,6998:7246811,32173008:24720180,513147,126483 -k1,6997:9590795,32173008:170810 -k1,6997:10960260,32173008:170811 -k1,6997:13429418,32173008:170810 -k1,6997:14251657,32173008:170811 -k1,6997:15170233,32173008:170810 -k1,6997:18570003,32173008:170811 -k1,6997:19688464,32173008:170810 -k1,6997:22218571,32173008:170811 -k1,6997:25660938,32173008:170810 -k1,6997:27465562,32173008:170811 -k1,6997:29592622,32173008:170810 -k1,6997:31966991,32173008:0 -) -(1,6998:7246811,33014496:24720180,513147,126483 -k1,6997:8002269,33014496:281633 -(1,6997:8002269,33014496:0,414482,115847 -r1,7048:8360535,33014496:358266,530329,115847 -k1,6997:8002269,33014496:-358266 -) -(1,6997:8002269,33014496:358266,414482,115847 -k1,6997:8002269,33014496:3277 -h1,6997:8357258,33014496:0,411205,112570 -) -k1,6997:8642168,33014496:281633 -k1,6997:10115246,33014496:281633 -k1,6997:12165695,33014496:281632 -k1,6997:13889775,33014496:281633 -k1,6997:15826192,33014496:281633 -k1,6997:19148040,33014496:281633 -k1,6997:20513639,33014496:281633 -k1,6997:21446700,33014496:281633 -k1,6997:23408676,33014496:281633 -k1,6997:24996441,33014496:281632 -k1,6997:26826690,33014496:281633 -k1,6997:27759751,33014496:281633 -k1,6997:30112322,33014496:281633 -k1,6997:31966991,33014496:0 -) -(1,6998:7246811,33855984:24720180,513147,126483 -k1,6997:8295135,33855984:238954 -k1,6997:9553174,33855984:238954 -k1,6997:11288316,33855984:238955 -k1,6997:12697743,33855984:238954 -k1,6997:14918506,33855984:238954 -k1,6997:16768990,33855984:238954 -k1,6997:18937325,33855984:238955 -k1,6997:21909786,33855984:238954 -k1,6997:22808032,33855984:238954 -k1,6997:25809329,33855984:238954 -k1,6997:27647362,33855984:238955 -k1,6997:29077761,33855984:238954 -k1,6997:30508160,33855984:238954 -k1,6997:31966991,33855984:0 -) -(1,6998:7246811,34697472:24720180,513147,134348 -k1,6997:9111918,34697472:195250 -k1,6997:10952123,34697472:195251 -k1,6997:12605549,34697472:195250 -k1,6997:14481143,34697472:195251 -k1,6997:16006774,34697472:195250 -k1,6997:16853453,34697472:195251 -k1,6997:19678007,34697472:195250 -k1,6997:20892342,34697472:195250 -k1,6997:22757450,34697472:195251 -k1,6997:23677528,34697472:195250 -k1,6997:25157285,34697472:195251 -k1,6997:27345485,34697472:195250 -k1,6997:29713910,34697472:195251 -k1,6997:30900720,34697472:195250 -k1,6997:31966991,34697472:0 -) -(1,6998:7246811,35538960:24720180,505283,126483 -k1,6998:31966992,35538960:21505640 -g1,6998:31966992,35538960 -) -] -) -] -r1,7048:32583029,36255267:26214,11846481,0 -) -] -) -) -g1,6998:32583029,35665443 -) -h1,6998:6630773,36281481:0,0,0 -v1,7001:6630773,37647257:0,393216,0 -(1,7048:6630773,45056728:25952256,7802687,589824 -g1,7048:6630773,45056728 -(1,7048:6630773,45056728:25952256,7802687,589824 -(1,7048:6630773,45646552:25952256,8392511,0 -[1,7048:6630773,45646552:25952256,8392511,0 -(1,7048:6630773,45646552:25952256,8366297,0 -r1,7048:6656987,45646552:26214,8366297,0 -[1,7048:6656987,45646552:25899828,8366297,0 -(1,7048:6656987,45056728:25899828,7186649,0 -[1,7048:7246811,45056728:24720180,7186649,0 -(1,7003:7246811,39031964:24720180,1161885,196608 -(1,7001:7246811,39031964:0,1161885,196608 -r1,7048:8794447,39031964:1547636,1358493,196608 -k1,7001:7246811,39031964:-1547636 -) -(1,7001:7246811,39031964:1547636,1161885,196608 -) -k1,7001:9030681,39031964:236234 -k1,7001:9744671,39031964:236233 -k1,7001:10999990,39031964:236234 -k1,7001:12705541,39031964:236234 -k1,7001:15427555,39031964:236233 -k1,7001:16323081,39031964:236234 -k1,7001:19606739,39031964:236234 -k1,7001:20374469,39031964:236233 -k1,7001:22181601,39031964:236234 -k1,7001:23609279,39031964:236233 -k1,7001:24864598,39031964:236234 -k1,7001:26597019,39031964:236234 -k1,7001:29666373,39031964:236233 -k1,7001:30515369,39031964:236234 -k1,7001:31966991,39031964:0 -) -(1,7003:7246811,39873452:24720180,513147,134348 -k1,7001:10182731,39873452:218797 -k1,7001:11849873,39873452:218796 -k1,7001:13450169,39873452:218797 -k1,7001:14688050,39873452:218796 -k1,7001:17833030,39873452:218797 -k1,7001:20017251,39873452:218796 -k1,7001:20997576,39873452:218797 -k1,7001:22235457,39873452:218796 -k1,7001:23869176,39873452:218797 -k1,7001:25584159,39873452:218796 -k1,7001:26907238,39873452:218797 -k1,7001:28841767,39873452:218796 -k1,7001:29416424,39873452:218797 -k1,7001:30611051,39873452:218796 -k1,7003:31966991,39873452:0 -) -(1,7003:7246811,40714940:24720180,513147,134348 -k1,7001:10249066,40714940:173066 -k1,7001:11073559,40714940:173065 -k1,7001:12265710,40714940:173066 -k1,7001:13908092,40714940:173065 -k1,7001:16604294,40714940:173066 -k1,7001:18202767,40714940:173065 -k1,7001:19035125,40714940:173066 -k1,7001:19564050,40714940:173065 -k1,7001:21741862,40714940:173066 -k1,7002:23698162,40714940:173065 -k1,7002:26190547,40714940:173066 -k1,7002:27757563,40714940:173065 -k1,7002:30048097,40714940:173066 -k1,7002:31966991,40714940:0 -) -(1,7003:7246811,41556428:24720180,513147,126483 -k1,7002:8116386,41556428:183413 -k1,7002:9318885,41556428:183414 -k1,7002:11168879,41556428:183413 -k1,7002:12767215,41556428:183414 -k1,7002:13482125,41556428:183413 -k1,7002:16498659,41556428:183413 -k1,7002:18283773,41556428:183414 -k1,7002:21945837,41556428:183413 -k1,7002:23332492,41556428:183414 -k1,7002:24047402,41556428:183413 -k1,7002:25249900,41556428:183413 -k1,7002:26768282,41556428:183414 -k1,7002:28614343,41556428:183413 -k1,7002:29449185,41556428:183414 -k1,7002:31019340,41556428:183413 -k1,7002:31966991,41556428:0 -) -(1,7003:7246811,42397916:24720180,513147,134348 -k1,7002:8954560,42397916:139472 -k1,7002:9753325,42397916:139473 -k1,7002:12687908,42397916:139472 -k1,7002:15902986,42397916:139473 -k1,7002:17641536,42397916:139472 -k1,7002:18408844,42397916:139473 -k1,7002:19751557,42397916:139472 -k1,7002:22726117,42397916:139473 -k1,7002:27057927,42397916:139472 -k1,7002:28301682,42397916:139473 -k1,7002:29188920,42397916:139472 -k1,7002:31966991,42397916:0 -) -(1,7003:7246811,43239404:24720180,513147,126483 -k1,7002:9238559,43239404:190819 -k1,7002:10377029,43239404:190819 -k1,7002:11586933,43239404:190819 -k1,7002:13444332,43239404:190818 -k1,7002:15223744,43239404:190819 -k1,7002:16100725,43239404:190819 -k1,7002:16706378,43239404:190810 -k1,7002:17998202,43239404:190819 -k1,7002:18544881,43239404:190819 -k1,7002:21431196,43239404:190819 -(1,7002:21431196,43239404:0,452978,115847 -r1,7048:23196309,43239404:1765113,568825,115847 -k1,7002:21431196,43239404:-1765113 -) -(1,7002:21431196,43239404:1765113,452978,115847 -k1,7002:21431196,43239404:3277 -h1,7002:23193032,43239404:0,411205,112570 -) -k1,7002:23387128,43239404:190819 -k1,7002:25463418,43239404:190819 -k1,7002:27995182,43239404:190818 -k1,7002:29205086,43239404:190819 -k1,7002:30761020,43239404:190819 -k1,7002:31611131,43239404:190819 -k1,7002:31966991,43239404:0 -) -(1,7003:7246811,44080892:24720180,513147,134348 -k1,7002:9377824,44080892:153136 -k1,7002:11736246,44080892:153135 -k1,7002:12575544,44080892:153136 -k1,7002:13517078,44080892:153136 -k1,7002:16916212,44080892:153136 -k1,7002:20167234,44080892:153135 -k1,7002:21339455,44080892:153136 -k1,7002:23159172,44080892:153136 -k1,7002:24727230,44080892:153136 -k1,7002:25641893,44080892:153135 -k1,7002:26565732,44080892:153136 -k1,7002:29271495,44080892:153136 -k1,7002:31966991,44080892:0 -) -(1,7003:7246811,44922380:24720180,513147,134348 -g1,7002:8550322,44922380 -g1,7002:9497317,44922380 -g1,7002:12535566,44922380 -g1,7002:13386223,44922380 -g1,7002:16214756,44922380 -g1,7002:20489669,44922380 -k1,7003:31966991,44922380:7423920 -g1,7003:31966991,44922380 -) -] -) -] -r1,7048:32583029,45646552:26214,8366297,0 -) -] -) -) -g1,7048:32583029,45056728 -) -] -(1,7048:32583029,45706769:0,0,0 -g1,7048:32583029,45706769 -) -) -] -(1,7048:6630773,47279633:25952256,0,0 -h1,7048:6630773,47279633:25952256,0,0 -) -] -(1,7048:4262630,4025873:0,0,0 -[1,7048:-473656,4025873:0,0,0 -(1,7048:-473656,-710413:0,0,0 -(1,7048:-473656,-710413:0,0,0 -g1,7048:-473656,-710413 -) -g1,7048:-473656,-710413 -) -] -) -] -!29025 -}133 -Input:1080:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1081:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1082:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1083:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!380 -{134 -[1,7060:4262630,47279633:28320399,43253760,0 -(1,7060:4262630,4025873:0,0,0 -[1,7060:-473656,4025873:0,0,0 -(1,7060:-473656,-710413:0,0,0 -(1,7060:-473656,-644877:0,0,0 -k1,7060:-473656,-644877:-65536 -) -(1,7060:-473656,4736287:0,0,0 -k1,7060:-473656,4736287:5209943 -) -g1,7060:-473656,-710413 -) -] -) -[1,7060:6630773,47279633:25952256,43253760,0 -[1,7060:6630773,4812305:25952256,786432,0 -(1,7060:6630773,4812305:25952256,513147,126483 -(1,7060:6630773,4812305:25952256,513147,126483 -g1,7060:3078558,4812305 -[1,7060:3078558,4812305:0,0,0 -(1,7060:3078558,2439708:0,1703936,0 -k1,7060:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,7060:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,7060:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,7060:3078558,4812305:0,0,0 -(1,7060:3078558,2439708:0,1703936,0 -g1,7060:29030814,2439708 -g1,7060:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,7060:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,7060:37855564,2439708:1179648,16384,0 -) -) -k1,7060:3078556,2439708:-34777008 -) -] -[1,7060:3078558,4812305:0,0,0 -(1,7060:3078558,49800853:0,16384,2228224 -k1,7060:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,7060:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,7060:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,7060:3078558,4812305:0,0,0 -(1,7060:3078558,49800853:0,16384,2228224 -g1,7060:29030814,49800853 -g1,7060:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,7060:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,7060:37855564,49800853:1179648,16384,0 -) -) -k1,7060:3078556,49800853:-34777008 -) -] -g1,7060:6630773,4812305 -g1,7060:6630773,4812305 -g1,7060:9175536,4812305 -g1,7060:9990803,4812305 -g1,7060:13137841,4812305 -g1,7060:14654344,4812305 -k1,7060:31387652,4812305:16733308 -) -) -] -[1,7060:6630773,45706769:25952256,40108032,0 -(1,7060:6630773,45706769:25952256,40108032,0 -(1,7060:6630773,45706769:0,0,0 -g1,7060:6630773,45706769 -) -[1,7060:6630773,45706769:25952256,40108032,0 -v1,7048:6630773,6254097:0,393216,0 -(1,7048:6630773,26185662:25952256,20324781,616038 -g1,7048:6630773,26185662 -(1,7048:6630773,26185662:25952256,20324781,616038 -(1,7048:6630773,26801700:25952256,20940819,0 -[1,7048:6630773,26801700:25952256,20940819,0 -(1,7048:6630773,26775486:25952256,20914605,0 -r1,7060:6656987,26775486:26214,20914605,0 -[1,7048:6656987,26775486:25899828,20914605,0 -(1,7048:6656987,26185662:25899828,19734957,0 -[1,7048:7246811,26185662:24720180,19734957,0 -v1,7005:7246811,6843921:0,393216,0 -(1,7016:7246811,10530278:24720180,4079573,196608 -g1,7016:7246811,10530278 -g1,7016:7246811,10530278 -g1,7016:7050203,10530278 -(1,7016:7050203,10530278:0,4079573,196608 -r1,7060:32163599,10530278:25113396,4276181,196608 -k1,7016:7050203,10530278:-25113396 -) -(1,7016:7050203,10530278:25113396,4079573,196608 -[1,7016:7246811,10530278:24720180,3882965,0 -(1,7007:7246811,7057831:24720180,410518,101187 -(1,7006:7246811,7057831:0,0,0 -g1,7006:7246811,7057831 -g1,7006:7246811,7057831 -g1,7006:6919131,7057831 -(1,7006:6919131,7057831:0,0,0 -) -g1,7006:7246811,7057831 -) -g1,7007:9775977,7057831 -g1,7007:10724415,7057831 -g1,7007:16098893,7057831 -g1,7007:16731185,7057831 -k1,7007:16731185,7057831:23593 -h1,7007:18651652,7057831:0,0,0 -k1,7007:31966991,7057831:13315339 -g1,7007:31966991,7057831 -) -(1,7008:7246811,7724009:24720180,410518,76021 -h1,7008:7246811,7724009:0,0,0 -g1,7008:8511394,7724009 -g1,7008:9459831,7724009 -g1,7008:10408268,7724009 -g1,7008:13885872,7724009 -h1,7008:14202018,7724009:0,0,0 -k1,7008:31966990,7724009:17764972 -g1,7008:31966990,7724009 -) -(1,7009:7246811,8390187:24720180,404226,82312 -h1,7009:7246811,8390187:0,0,0 -g1,7009:7562957,8390187 -g1,7009:7879103,8390187 -g1,7009:11356706,8390187 -g1,7009:12305144,8390187 -g1,7009:15150456,8390187 -h1,7009:15782747,8390187:0,0,0 -k1,7009:31966991,8390187:16184244 -g1,7009:31966991,8390187 -) -(1,7010:7246811,9056365:24720180,404226,76021 -h1,7010:7246811,9056365:0,0,0 -h1,7010:7562957,9056365:0,0,0 -k1,7010:31966991,9056365:24404034 -g1,7010:31966991,9056365 -) -(1,7011:7246811,9722543:24720180,404226,101187 -h1,7011:7246811,9722543:0,0,0 -k1,7011:7246811,9722543:0 -h1,7011:11672850,9722543:0,0,0 -k1,7011:31966990,9722543:20294140 -g1,7011:31966990,9722543 -) -(1,7015:7246811,10454257:24720180,404226,76021 -(1,7013:7246811,10454257:0,0,0 -g1,7013:7246811,10454257 -g1,7013:7246811,10454257 -g1,7013:6919131,10454257 -(1,7013:6919131,10454257:0,0,0 -) -g1,7013:7246811,10454257 -) -g1,7015:8195248,10454257 -g1,7015:8511394,10454257 -g1,7015:9775977,10454257 -g1,7015:11040560,10454257 -g1,7015:12305143,10454257 -g1,7015:13569726,10454257 -g1,7015:14834309,10454257 -g1,7015:16098892,10454257 -g1,7015:17363475,10454257 -g1,7015:18628058,10454257 -g1,7015:19892641,10454257 -g1,7015:21157224,10454257 -h1,7015:22105661,10454257:0,0,0 -k1,7015:31966991,10454257:9861330 -g1,7015:31966991,10454257 -) -] -) -g1,7016:31966991,10530278 -g1,7016:7246811,10530278 -g1,7016:7246811,10530278 -g1,7016:31966991,10530278 -g1,7016:31966991,10530278 -) -h1,7016:7246811,10726886:0,0,0 -(1,7020:7246811,12092662:24720180,505283,115847 -h1,7019:7246811,12092662:983040,0,0 -(1,7019:8229851,12092662:0,452978,115847 -r1,7060:10346676,12092662:2116825,568825,115847 -k1,7019:8229851,12092662:-2116825 -) -(1,7019:8229851,12092662:2116825,452978,115847 -g1,7019:9991687,12092662 -h1,7019:10343399,12092662:0,411205,112570 -) -k1,7019:10560189,12092662:213513 -k1,7019:12924594,12092662:213513 -k1,7019:14342003,12092662:213513 -(1,7019:14342003,12092662:0,452978,115847 -r1,7060:14700269,12092662:358266,568825,115847 -k1,7019:14342003,12092662:-358266 -) -(1,7019:14342003,12092662:358266,452978,115847 -k1,7019:14342003,12092662:3277 -h1,7019:14696992,12092662:0,411205,112570 -) -k1,7019:14913781,12092662:213512 -k1,7019:16318739,12092662:213513 -k1,7019:17298368,12092662:213513 -k1,7019:20398742,12092662:213513 -k1,7019:23870705,12092662:213513 -k1,7019:24700256,12092662:213513 -k1,7019:25328597,12092662:213498 -k1,7019:26561195,12092662:213513 -k1,7019:27978604,12092662:213513 -k1,7019:29941273,12092662:213513 -k1,7019:31966991,12092662:0 -) -(1,7020:7246811,12934150:24720180,513147,7863 -k1,7020:31966990,12934150:23240376 -g1,7020:31966990,12934150 -) -(1,7023:7246811,13775638:24720180,513147,126483 -h1,7021:7246811,13775638:983040,0,0 -k1,7021:9920932,13775638:225696 -k1,7021:12477744,13775638:225696 -k1,7021:14448663,13775638:225695 -k1,7021:15778641,13775638:225696 -k1,7021:16752103,13775638:225696 -k1,7021:20348316,13775638:225696 -k1,7021:21039972,13775638:225695 -k1,7021:22134020,13775638:225696 -k1,7021:23452201,13775638:225696 -k1,7021:24448600,13775638:225696 -k1,7021:26466705,13775638:225695 -k1,7021:29561567,13775638:225696 -k1,7021:31280829,13775638:225696 -k1,7023:31966991,13775638:0 -) -(1,7023:7246811,14617126:24720180,513147,126483 -(1,7021:7246811,14617126:0,452978,115847 -r1,7060:9715348,14617126:2468537,568825,115847 -k1,7021:7246811,14617126:-2468537 -) -(1,7021:7246811,14617126:2468537,452978,115847 -k1,7021:7246811,14617126:3277 -h1,7021:9712071,14617126:0,411205,112570 -) -k1,7021:10117667,14617126:228649 -(1,7021:10117667,14617126:0,452978,115847 -r1,7060:12937916,14617126:2820249,568825,115847 -k1,7021:10117667,14617126:-2820249 -) -(1,7021:10117667,14617126:2820249,452978,115847 -k1,7021:10117667,14617126:3277 -h1,7021:12934639,14617126:0,411205,112570 -) -k1,7021:13166566,14617126:228650 -k1,7021:14078100,14617126:228649 -(1,7021:14078100,14617126:0,452978,115847 -r1,7060:16898349,14617126:2820249,568825,115847 -k1,7021:14078100,14617126:-2820249 -) -(1,7021:14078100,14617126:2820249,452978,115847 -k1,7021:14078100,14617126:3277 -h1,7021:16895072,14617126:0,411205,112570 -) -k1,7021:17300669,14617126:228650 -k1,7021:18145356,14617126:228649 -k1,7021:20036654,14617126:228650 -k1,7021:20924595,14617126:228649 -k1,7021:22172330,14617126:228650 -k1,7021:24102949,14617126:228649 -(1,7021:24102949,14617126:0,459977,115847 -r1,7060:25164638,14617126:1061689,575824,115847 -k1,7021:24102949,14617126:-1061689 -) -(1,7021:24102949,14617126:1061689,459977,115847 -k1,7021:24102949,14617126:3277 -h1,7021:25161361,14617126:0,411205,112570 -) -k1,7021:25393288,14617126:228650 -k1,7021:27210530,14617126:228649 -k1,7021:28489067,14617126:228650 -k1,7021:30996403,14617126:228649 -h1,7021:31966991,14617126:0,0,0 -k1,7021:31966991,14617126:0 -) -(1,7023:7246811,15458614:24720180,513147,126483 -g1,7021:9314471,15458614 -g1,7022:10461351,15458614 -g1,7022:12778048,15458614 -g1,7022:13786647,15458614 -g1,7022:15004961,15458614 -g1,7022:16296675,15458614 -g1,7022:17155196,15458614 -g1,7022:18373510,15458614 -g1,7022:21335082,15458614 -g1,7022:23326721,15458614 -k1,7023:31966991,15458614:5440802 -g1,7023:31966991,15458614 -) -v1,7025:7246811,16649080:0,393216,0 -(1,7033:7246811,18330611:24720180,2074747,196608 -g1,7033:7246811,18330611 -g1,7033:7246811,18330611 -g1,7033:7050203,18330611 -(1,7033:7050203,18330611:0,2074747,196608 -r1,7060:32163599,18330611:25113396,2271355,196608 -k1,7033:7050203,18330611:-25113396 -) -(1,7033:7050203,18330611:25113396,2074747,196608 -[1,7033:7246811,18330611:24720180,1878139,0 -(1,7027:7246811,16856698:24720180,404226,101187 -(1,7026:7246811,16856698:0,0,0 -g1,7026:7246811,16856698 -g1,7026:7246811,16856698 -g1,7026:6919131,16856698 -(1,7026:6919131,16856698:0,0,0 -) -g1,7026:7246811,16856698 -) -g1,7027:9775977,16856698 -g1,7027:10724415,16856698 -g1,7027:13569726,16856698 -g1,7027:15782746,16856698 -g1,7027:16415038,16856698 -g1,7027:17363476,16856698 -g1,7027:18944205,16856698 -g1,7027:19576497,16856698 -g1,7027:22421808,16856698 -g1,7027:25583265,16856698 -k1,7027:25583265,16856698:0 -h1,7027:26847848,16856698:0,0,0 -k1,7027:31966991,16856698:5119143 -g1,7027:31966991,16856698 -) -(1,7028:7246811,17522876:24720180,404226,101187 -h1,7028:7246811,17522876:0,0,0 -k1,7028:7246811,17522876:0 -h1,7028:11672850,17522876:0,0,0 -k1,7028:31966990,17522876:20294140 -g1,7028:31966990,17522876 -) -(1,7032:7246811,18254590:24720180,404226,76021 -(1,7030:7246811,18254590:0,0,0 -g1,7030:7246811,18254590 -g1,7030:7246811,18254590 -g1,7030:6919131,18254590 -(1,7030:6919131,18254590:0,0,0 -) -g1,7030:7246811,18254590 -) -g1,7032:8195248,18254590 -g1,7032:8511394,18254590 -g1,7032:9775977,18254590 -g1,7032:11040560,18254590 -g1,7032:12305143,18254590 -g1,7032:13569726,18254590 -g1,7032:14834309,18254590 -g1,7032:16098892,18254590 -g1,7032:17363475,18254590 -g1,7032:18628058,18254590 -g1,7032:19892641,18254590 -g1,7032:21157224,18254590 -h1,7032:22105661,18254590:0,0,0 -k1,7032:31966991,18254590:9861330 -g1,7032:31966991,18254590 -) -] -) -g1,7033:31966991,18330611 -g1,7033:7246811,18330611 -g1,7033:7246811,18330611 -g1,7033:31966991,18330611 -g1,7033:31966991,18330611 -) -h1,7033:7246811,18527219:0,0,0 -(1,7036:7246811,19892995:24720180,513147,134348 -h1,7035:7246811,19892995:983040,0,0 -k1,7035:12035475,19892995:232601 -k1,7035:13471972,19892995:232601 -k1,7035:15399989,19892995:232601 -k1,7035:16164087,19892995:232601 -k1,7035:16752548,19892995:232601 -k1,7035:19723899,19892995:232601 -k1,7035:23204464,19892995:232601 -k1,7035:24161893,19892995:232601 -k1,7035:24809304,19892995:232568 -k1,7035:26142910,19892995:232601 -k1,7035:26731371,19892995:232601 -k1,7035:29271495,19892995:232601 -k1,7035:31966991,19892995:0 -) -(1,7036:7246811,20734483:24720180,513147,126483 -k1,7035:8413089,20734483:218627 -k1,7035:10008628,20734483:218628 -k1,7035:11045144,20734483:218627 -k1,7035:13297353,20734483:218627 -k1,7035:14909931,20734483:218627 -(1,7035:14909931,20734483:0,459977,115847 -r1,7060:17026756,20734483:2116825,575824,115847 -k1,7035:14909931,20734483:-2116825 -) -(1,7035:14909931,20734483:2116825,459977,115847 -k1,7035:14909931,20734483:3277 -h1,7035:17023479,20734483:0,411205,112570 -) -k1,7035:17419054,20734483:218628 -k1,7035:18095778,20734483:218627 -k1,7035:18845902,20734483:218627 -k1,7035:21193794,20734483:218627 -k1,7035:24977581,20734483:218628 -k1,7035:25847636,20734483:218627 -k1,7035:27888164,20734483:218627 -k1,7035:28572752,20734483:218627 -k1,7035:30446164,20734483:218628 -k1,7035:31196288,20734483:218627 -k1,7035:31966991,20734483:0 -) -(1,7036:7246811,21575971:24720180,513147,134348 -k1,7035:9957447,21575971:219613 -k1,7035:10591883,21575971:219593 -k1,7035:13680662,21575971:219613 -k1,7035:17152827,21575971:219613 -k1,7035:18320091,21575971:219613 -k1,7035:22789058,21575971:219613 -k1,7035:25427606,21575971:219614 -k1,7035:26306511,21575971:219613 -k1,7035:28331641,21575971:219613 -k1,7035:29570339,21575971:219613 -k1,7036:31966991,21575971:0 -) -(1,7036:7246811,22417459:24720180,513147,134348 -k1,7035:9659190,22417459:201850 -k1,7035:10729391,22417459:201849 -k1,7035:12635177,22417459:201850 -k1,7035:13464861,22417459:201849 -k1,7035:14869952,22417459:201850 -k1,7035:16612552,22417459:201849 -k1,7035:18549795,22417459:201850 -(1,7035:18549795,22417459:0,452978,115847 -r1,7060:21721755,22417459:3171960,568825,115847 -k1,7035:18549795,22417459:-3171960 -) -(1,7035:18549795,22417459:3171960,452978,115847 -k1,7035:18549795,22417459:3277 -h1,7035:21718478,22417459:0,411205,112570 -) -k1,7035:21923604,22417459:201849 -k1,7035:25212200,22417459:201850 -k1,7035:26433134,22417459:201849 -k1,7035:28752452,22417459:201850 -k1,7035:30699525,22417459:201849 -k1,7035:31966991,22417459:0 -) -(1,7036:7246811,23258947:24720180,513147,134348 -g1,7035:7801900,23258947 -g1,7035:9874148,23258947 -g1,7035:12768873,23258947 -g1,7035:14241467,23258947 -g1,7035:15907392,23258947 -g1,7035:19378834,23258947 -g1,7035:23653747,23258947 -g1,7035:25044421,23258947 -k1,7036:31966991,23258947:3354790 -g1,7036:31966991,23258947 -) -v1,7038:7246811,24449413:0,393216,0 -(1,7045:7246811,25464766:24720180,1408569,196608 -g1,7045:7246811,25464766 -g1,7045:7246811,25464766 -g1,7045:7050203,25464766 -(1,7045:7050203,25464766:0,1408569,196608 -r1,7060:32163599,25464766:25113396,1605177,196608 -k1,7045:7050203,25464766:-25113396 -) -(1,7045:7050203,25464766:25113396,1408569,196608 -[1,7045:7246811,25464766:24720180,1211961,0 -(1,7040:7246811,24657031:24720180,404226,76021 -(1,7039:7246811,24657031:0,0,0 -g1,7039:7246811,24657031 -g1,7039:7246811,24657031 -g1,7039:6919131,24657031 -(1,7039:6919131,24657031:0,0,0 -) -g1,7039:7246811,24657031 -) -k1,7040:7246811,24657031:0 -h1,7040:10408268,24657031:0,0,0 -k1,7040:31966992,24657031:21558724 -g1,7040:31966992,24657031 -) -(1,7044:7246811,25388745:24720180,404226,76021 -(1,7042:7246811,25388745:0,0,0 -g1,7042:7246811,25388745 -g1,7042:7246811,25388745 -g1,7042:6919131,25388745 -(1,7042:6919131,25388745:0,0,0 -) -g1,7042:7246811,25388745 -) -g1,7044:8195248,25388745 -g1,7044:8511394,25388745 -g1,7044:9775977,25388745 -g1,7044:11040560,25388745 -g1,7044:12305143,25388745 -g1,7044:13569726,25388745 -g1,7044:14834309,25388745 -g1,7044:16098892,25388745 -g1,7044:17363475,25388745 -g1,7044:18628058,25388745 -g1,7044:19892641,25388745 -g1,7044:21157224,25388745 -h1,7044:22105661,25388745:0,0,0 -k1,7044:31966991,25388745:9861330 -g1,7044:31966991,25388745 -) -] -) -g1,7045:31966991,25464766 -g1,7045:7246811,25464766 -g1,7045:7246811,25464766 -g1,7045:31966991,25464766 -g1,7045:31966991,25464766 -) -h1,7045:7246811,25661374:0,0,0 -] -) -] -r1,7060:32583029,26775486:26214,20914605,0 -) -] -) -) -g1,7048:32583029,26185662 -) -h1,7048:6630773,26801700:0,0,0 -v1,7051:6630773,28167476:0,393216,0 -(1,7053:6630773,35494571:25952256,7720311,616038 -g1,7053:6630773,35494571 -(1,7053:6630773,35494571:25952256,7720311,616038 -(1,7053:6630773,36110609:25952256,8336349,0 -[1,7053:6630773,36110609:25952256,8336349,0 -(1,7053:6630773,36084395:25952256,8283921,0 -r1,7060:6656987,36084395:26214,8283921,0 -[1,7053:6656987,36084395:25899828,8283921,0 -(1,7053:6656987,35494571:25899828,7104273,0 -[1,7053:7246811,35494571:24720180,7104273,0 -(1,7053:7246811,29477672:24720180,1087374,134348 -k1,7051:8722456,29477672:265942 -k1,7051:9593951,29477672:265942 -k1,7051:11280714,29477672:265942 -k1,7051:13502907,29477672:265943 -k1,7051:14939322,29477672:265942 -k1,7051:17445940,29477672:265942 -k1,7051:18915123,29477672:265942 -k1,7051:20329256,29477672:265942 -k1,7051:23430285,29477672:265942 -k1,7051:24421055,29477672:265942 -k1,7051:25971504,29477672:265943 -k1,7051:27613047,29477672:265942 -k1,7051:28898074,29477672:265942 -k1,7051:30312207,29477672:265942 -k1,7051:31966991,29477672:0 -) -(1,7053:7246811,30319160:24720180,513147,126483 -k1,7051:10182356,30319160:222354 -k1,7051:11396271,30319160:222355 -k1,7051:13584050,30319160:222354 -k1,7051:14969013,30319160:222354 -k1,7051:17256406,30319160:222354 -k1,7051:19301317,30319160:222355 -k1,7051:20616156,30319160:222354 -k1,7051:21497802,30319160:222354 -k1,7051:25027104,30319160:222355 -k1,7051:25900886,30319160:222354 -k1,7051:27943830,30319160:222354 -k1,7051:28522044,30319160:222354 -k1,7051:30066260,30319160:222355 -k1,7051:30947906,30319160:222354 -k1,7051:31966991,30319160:0 -) -(1,7053:7246811,31160648:24720180,513147,126483 -k1,7051:9930292,31160648:215395 -k1,7052:10751240,31160648:215395 -k1,7052:11795665,31160648:215395 -k1,7052:14034812,31160648:215395 -k1,7052:16633096,31160648:215395 -k1,7052:18717578,31160648:215395 -k1,7052:20089682,31160648:215394 -k1,7052:22073894,31160648:215395 -k1,7052:24551592,31160648:215395 -k1,7052:25786072,31160648:215395 -k1,7052:28118935,31160648:215395 -k1,7052:30079554,31160648:215395 -k1,7052:31966991,31160648:0 -) -(1,7053:7246811,32002136:24720180,513147,126483 -k1,7052:9164343,32002136:206387 -k1,7052:12509904,32002136:206386 -k1,7052:13735376,32002136:206387 -k1,7052:16029084,32002136:206386 -k1,7052:17426916,32002136:206387 -k1,7052:18725787,32002136:206386 -(1,7052:18725787,32002136:0,452978,115847 -r1,7060:21897747,32002136:3171960,568825,115847 -k1,7052:18725787,32002136:-3171960 -) -(1,7052:18725787,32002136:3171960,452978,115847 -k1,7052:18725787,32002136:3277 -h1,7052:21894470,32002136:0,411205,112570 -) -k1,7052:22104134,32002136:206387 -k1,7052:24197957,32002136:206386 -k1,7052:26115489,32002136:206387 -k1,7052:27004760,32002136:206386 -k1,7052:28597889,32002136:206387 -k1,7052:29639859,32002136:206386 -k1,7052:30312207,32002136:206387 -k1,7052:31966991,32002136:0 -) -(1,7053:7246811,32843624:24720180,513147,134348 -k1,7052:7933603,32843624:155295 -k1,7052:8704937,32843624:155296 -k1,7052:9275031,32843624:155251 -k1,7052:9786186,32843624:155295 -k1,7052:12636978,32843624:155296 -k1,7052:13739924,32843624:155295 -k1,7052:15098460,32843624:155295 -k1,7052:18501720,32843624:155296 -k1,7052:19144559,32843624:155251 -k1,7052:20883860,32843624:155296 -k1,7052:22701803,32843624:155295 -k1,7052:23508526,32843624:155295 -k1,7052:25152144,32843624:155295 -k1,7052:25838937,32843624:155296 -k1,7052:27388183,32843624:155295 -(1,7052:27388183,32843624:0,452978,115847 -r1,7060:31966991,32843624:4578808,568825,115847 -k1,7052:27388183,32843624:-4578808 -) -(1,7052:27388183,32843624:4578808,452978,115847 -k1,7052:27388183,32843624:3277 -h1,7052:31963714,32843624:0,411205,112570 -) -k1,7052:31966991,32843624:0 -) -(1,7053:7246811,33685112:24720180,513147,134348 -k1,7052:8137271,33685112:204298 -k1,7052:10543578,33685112:204297 -k1,7052:13773673,33685112:204298 -k1,7052:15314904,33685112:204297 -k1,7052:17255906,33685112:204298 -k1,7052:18479288,33685112:204297 -k1,7052:20337059,33685112:204298 -k1,7052:21929409,33685112:204297 -k1,7052:23805530,33685112:204298 -k1,7052:24692712,33685112:204297 -k1,7052:25509772,33685112:204298 -k1,7052:27209601,33685112:204297 -k1,7052:28161665,33685112:204298 -k1,7052:30127570,33685112:204297 -k1,7052:30947906,33685112:204298 -k1,7052:31966991,33685112:0 -) -(1,7053:7246811,34526600:24720180,513147,134348 -k1,7052:8764438,34526600:167585 -k1,7052:10517994,34526600:167585 -k1,7052:13137936,34526600:167585 -k1,7052:14203364,34526600:167585 -k1,7052:15277312,34526600:167585 -k1,7052:16821808,34526600:167585 -k1,7052:18180837,34526600:167584 -k1,7052:20716893,34526600:167585 -k1,7052:22586448,34526600:167585 -k1,7052:24142086,34526600:167585 -k1,7052:26138125,34526600:167585 -k1,7052:26921748,34526600:167585 -k1,7052:29159615,34526600:167585 -k1,7052:30274851,34526600:167585 -k1,7052:31966991,34526600:0 -) -(1,7053:7246811,35368088:24720180,513147,126483 -g1,7052:10141536,35368088 -g1,7052:11511238,35368088 -g1,7052:13047401,35368088 -g1,7052:14512786,35368088 -g1,7052:16689236,35368088 -g1,7052:17504503,35368088 -g1,7052:18722817,35368088 -g1,7052:21476639,35368088 -g1,7052:22335160,35368088 -g1,7052:23993220,35368088 -g1,7052:25522830,35368088 -k1,7053:31966991,35368088:4881127 -g1,7053:31966991,35368088 -) -] -) -] -r1,7060:32583029,36084395:26214,8283921,0 -) -] -) -) -g1,7053:32583029,35494571 -) -h1,7053:6630773,36110609:0,0,0 -(1,7055:6630773,37738529:25952256,505283,126483 -(1,7055:6630773,37738529:2809528,485622,11795 -g1,7055:6630773,37738529 -g1,7055:9440301,37738529 -) -k1,7055:32583029,37738529:20257178 -g1,7055:32583029,37738529 -) -(1,7058:6630773,38973233:25952256,513147,126483 -k1,7057:10361036,38973233:257510 -k1,7057:11486897,38973233:257509 -k1,7057:13274673,38973233:257510 -k1,7057:14183610,38973233:257509 -k1,7057:16156853,38973233:257510 -k1,7057:17795206,38973233:257509 -k1,7057:19337222,38973233:257510 -k1,7057:22300057,38973233:257509 -k1,7057:24053754,38973233:257510 -k1,7057:24842760,38973233:257509 -k1,7057:27933391,38973233:257510 -k1,7057:29657596,38973233:257509 -k1,7057:30381067,38973233:257510 -k1,7057:31657661,38973233:257509 -k1,7058:32583029,38973233:0 -) -(1,7058:6630773,39814721:25952256,513147,126483 -k1,7057:9264742,39814721:270741 -k1,7057:10194775,39814721:270741 -k1,7057:10821375,39814721:270740 -k1,7057:12923192,39814721:270741 -k1,7057:13876818,39814721:270741 -k1,7057:16843055,39814721:270741 -k1,7057:17645293,39814721:270741 -k1,7057:20380188,39814721:270741 -k1,7057:21412456,39814721:270740 -k1,7057:22702282,39814721:270741 -k1,7057:24353867,39814721:270741 -k1,7057:25307493,39814721:270741 -k1,7057:26264396,39814721:270741 -k1,7057:26890997,39814721:270741 -k1,7057:29004609,39814721:270740 -k1,7057:29934642,39814721:270741 -k1,7057:30976086,39814721:270741 -k1,7057:32583029,39814721:0 -) -(1,7058:6630773,40656209:25952256,513147,126483 -k1,7057:10060273,40656209:223479 -k1,7057:10771317,40656209:223456 -k1,7057:13129304,40656209:223479 -k1,7057:16014200,40656209:223479 -k1,7057:16769177,40656209:223480 -k1,7057:17348516,40656209:223479 -k1,7057:19403072,40656209:223480 -k1,7057:20911057,40656209:223479 -k1,7057:24874021,40656209:223480 -k1,7057:26362345,40656209:223479 -k1,7057:26941685,40656209:223480 -k1,7057:28509963,40656209:223479 -k1,7057:30654303,40656209:223480 -k1,7057:31563944,40656209:223479 -k1,7057:32583029,40656209:0 -) -(1,7058:6630773,41497697:25952256,513147,134348 -k1,7057:9440354,41497697:222875 -k1,7057:12555334,41497697:222876 -k1,7057:13461094,41497697:222875 -k1,7057:15106757,41497697:222876 -k1,7057:15685492,41497697:222875 -k1,7057:16891408,41497697:222876 -k1,7057:17800445,41497697:222875 -k1,7057:21356481,41497697:222875 -k1,7057:24100527,41497697:222876 -k1,7057:27113270,41497697:222875 -(1,7057:27113270,41497697:0,452978,115847 -r1,7060:30285230,41497697:3171960,568825,115847 -k1,7057:27113270,41497697:-3171960 -) -(1,7057:27113270,41497697:3171960,452978,115847 -k1,7057:27113270,41497697:3277 -h1,7057:30281953,41497697:0,411205,112570 -) -k1,7057:30508106,41497697:222876 -k1,7057:31835263,41497697:222875 -k1,7057:32583029,41497697:0 -) -(1,7058:6630773,42339185:25952256,505283,126483 -k1,7057:8317763,42339185:173764 -k1,7057:9142955,42339185:173764 -k1,7057:11389623,42339185:173764 -k1,7057:12847892,42339185:173763 -k1,7057:13377516,42339185:173764 -k1,7057:14932124,42339185:173764 -k1,7057:17866920,42339185:173764 -k1,7057:21480669,42339185:173764 -k1,7057:23515000,42339185:173764 -k1,7057:24340192,42339185:173764 -k1,7057:25261721,42339185:173763 -k1,7057:28268606,42339185:173764 -k1,7057:30140408,42339185:173764 -k1,7057:31333257,42339185:173764 -k1,7058:32583029,42339185:0 -) -(1,7058:6630773,43180673:25952256,513147,126483 -k1,7057:8166834,43180673:228618 -k1,7057:11264619,43180673:228619 -k1,7057:12176122,43180673:228618 -k1,7057:12760601,43180673:228619 -k1,7057:14993965,43180673:228618 -k1,7057:16897028,43180673:228618 -k1,7057:19915515,43180673:228619 -(1,7057:19915515,43180673:0,452978,115847 -r1,7060:23087475,43180673:3171960,568825,115847 -k1,7057:19915515,43180673:-3171960 -) -(1,7057:19915515,43180673:3171960,452978,115847 -k1,7057:19915515,43180673:3277 -h1,7057:23084198,43180673:0,411205,112570 -) -k1,7057:23316093,43180673:228618 -k1,7057:24648993,43180673:228618 -k1,7057:26163428,43180673:228619 -k1,7057:28107779,43180673:228618 -k1,7057:29832585,43180673:228619 -k1,7057:31931601,43180673:228618 -k1,7057:32583029,43180673:0 -) -(1,7058:6630773,44022161:25952256,513147,126483 -k1,7057:8227845,44022161:184771 -k1,7057:9098777,44022161:184770 -k1,7057:9741645,44022161:184771 -k1,7057:11764700,44022161:184770 -k1,7057:14542075,44022161:184771 -k1,7057:15918290,44022161:184770 -k1,7057:18808387,44022161:184771 -k1,7057:20377277,44022161:184770 -k1,7057:21213476,44022161:184771 -k1,7057:22849869,44022161:184771 -k1,7057:24736609,44022161:184770 -k1,7057:25537418,44022161:184771 -k1,7057:26741273,44022161:184770 -k1,7057:28502840,44022161:184771 -k1,7057:29346902,44022161:184770 -k1,7057:29887533,44022161:184771 -k1,7057:32583029,44022161:0 -) -(1,7058:6630773,44863649:25952256,513147,134348 -g1,7057:7512887,44863649 -g1,7057:8328154,44863649 -g1,7057:9546468,44863649 -g1,7057:11729472,44863649 -g1,7057:12587993,44863649 -g1,7057:13143082,44863649 -k1,7058:32583028,44863649:17435200 -g1,7058:32583028,44863649 -) -] -(1,7060:32583029,45706769:0,0,0 -g1,7060:32583029,45706769 -) -) -] -(1,7060:6630773,47279633:25952256,0,0 -h1,7060:6630773,47279633:25952256,0,0 -) -] -(1,7060:4262630,4025873:0,0,0 -[1,7060:-473656,4025873:0,0,0 -(1,7060:-473656,-710413:0,0,0 -(1,7060:-473656,-710413:0,0,0 -g1,7060:-473656,-710413 -) -g1,7060:-473656,-710413 -) -] -) -] -!26419 -}134 -Input:1084:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1085:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1086:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1087:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1088:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1089:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1090:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1091:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1092:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1093:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1094:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1095:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1096:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1097:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1098:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1099:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1100:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1101:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1102:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1103:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1104:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1105:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1106:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1107:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1108:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1109:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1110:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1111:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1112:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1113:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!2772 -{135 -[1,7089:4262630,47279633:28320399,43253760,0 -(1,7089:4262630,4025873:0,0,0 -[1,7089:-473656,4025873:0,0,0 -(1,7089:-473656,-710413:0,0,0 -(1,7089:-473656,-644877:0,0,0 -k1,7089:-473656,-644877:-65536 -) -(1,7089:-473656,4736287:0,0,0 -k1,7089:-473656,4736287:5209943 -) -g1,7089:-473656,-710413 -) -] -) -[1,7089:6630773,47279633:25952256,43253760,0 -[1,7089:6630773,4812305:25952256,786432,0 -(1,7089:6630773,4812305:25952256,505283,134348 -(1,7089:6630773,4812305:25952256,505283,134348 -g1,7089:3078558,4812305 -[1,7089:3078558,4812305:0,0,0 -(1,7089:3078558,2439708:0,1703936,0 -k1,7089:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,7089:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,7089:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,7089:3078558,4812305:0,0,0 -(1,7089:3078558,2439708:0,1703936,0 -g1,7089:29030814,2439708 -g1,7089:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,7089:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,7089:37855564,2439708:1179648,16384,0 -) -) -k1,7089:3078556,2439708:-34777008 -) -] -[1,7089:3078558,4812305:0,0,0 -(1,7089:3078558,49800853:0,16384,2228224 -k1,7089:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,7089:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,7089:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,7089:3078558,4812305:0,0,0 -(1,7089:3078558,49800853:0,16384,2228224 -g1,7089:29030814,49800853 -g1,7089:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,7089:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,7089:37855564,49800853:1179648,16384,0 -) -) -k1,7089:3078556,49800853:-34777008 -) -] -g1,7089:6630773,4812305 -k1,7089:18771974,4812305:10945824 -g1,7089:20158715,4812305 -g1,7089:20807521,4812305 -g1,7089:24121676,4812305 -g1,7089:28605649,4812305 -g1,7089:30015328,4812305 -) -) -] -[1,7089:6630773,45706769:25952256,40108032,0 -(1,7089:6630773,45706769:25952256,40108032,0 -(1,7089:6630773,45706769:0,0,0 -g1,7089:6630773,45706769 -) -[1,7089:6630773,45706769:25952256,40108032,0 -v1,7060:6630773,6254097:0,393216,0 -(1,7071:6630773,9294915:25952256,3434034,196608 -g1,7071:6630773,9294915 -g1,7071:6630773,9294915 -g1,7071:6434165,9294915 -(1,7071:6434165,9294915:0,3434034,196608 -r1,7089:32779637,9294915:26345472,3630642,196608 -k1,7071:6434165,9294915:-26345472 -) -(1,7071:6434165,9294915:26345472,3434034,196608 -[1,7071:6630773,9294915:25952256,3237426,0 -(1,7062:6630773,6468007:25952256,410518,101187 -(1,7061:6630773,6468007:0,0,0 -g1,7061:6630773,6468007 -g1,7061:6630773,6468007 -g1,7061:6303093,6468007 -(1,7061:6303093,6468007:0,0,0 -) -g1,7061:6630773,6468007 -) -k1,7062:6630773,6468007:0 -h1,7062:14218269,6468007:0,0,0 -k1,7062:32583029,6468007:18364760 -g1,7062:32583029,6468007 -) -(1,7066:6630773,7199721:25952256,404226,76021 -(1,7064:6630773,7199721:0,0,0 -g1,7064:6630773,7199721 -g1,7064:6630773,7199721 -g1,7064:6303093,7199721 -(1,7064:6303093,7199721:0,0,0 -) -g1,7064:6630773,7199721 -) -g1,7066:7579210,7199721 -g1,7066:8843793,7199721 -h1,7066:10108376,7199721:0,0,0 -k1,7066:32583028,7199721:22474652 -g1,7066:32583028,7199721 -) -(1,7068:6630773,8521259:25952256,410518,101187 -(1,7067:6630773,8521259:0,0,0 -g1,7067:6630773,8521259 -g1,7067:6630773,8521259 -g1,7067:6303093,8521259 -(1,7067:6303093,8521259:0,0,0 -) -g1,7067:6630773,8521259 -) -k1,7068:6630773,8521259:0 -k1,7068:6630773,8521259:0 -h1,7068:17063580,8521259:0,0,0 -k1,7068:32583029,8521259:15519449 -g1,7068:32583029,8521259 -) -(1,7069:6630773,9187437:25952256,410518,107478 -h1,7069:6630773,9187437:0,0,0 -g1,7069:7263065,9187437 -g1,7069:8843794,9187437 -g1,7069:10424523,9187437 -g1,7069:12321397,9187437 -g1,7069:13585980,9187437 -g1,7069:14534417,9187437 -g1,7069:15799000,9187437 -g1,7069:17379729,9187437 -g1,7069:18960458,9187437 -k1,7069:18960458,9187437:1573 -h1,7069:20226614,9187437:0,0,0 -k1,7069:32583029,9187437:12356415 -g1,7069:32583029,9187437 -) -] -) -g1,7071:32583029,9294915 -g1,7071:6630773,9294915 -g1,7071:6630773,9294915 -g1,7071:32583029,9294915 -g1,7071:32583029,9294915 -) -h1,7071:6630773,9491523:0,0,0 -(1,7074:6630773,12823379:25952256,32768,229376 -(1,7074:6630773,12823379:0,32768,229376 -(1,7074:6630773,12823379:5505024,32768,229376 -r1,7089:12135797,12823379:5505024,262144,229376 -) -k1,7074:6630773,12823379:-5505024 -) -(1,7074:6630773,12823379:25952256,32768,0 -r1,7089:32583029,12823379:25952256,32768,0 -) -) -(1,7074:6630773,14427707:25952256,615776,151780 -(1,7074:6630773,14427707:1974731,582746,14155 -g1,7074:6630773,14427707 -g1,7074:8605504,14427707 -) -g1,7074:11225896,14427707 -k1,7074:32583030,14427707:17602708 -g1,7074:32583030,14427707 -) -(1,7077:6630773,15662411:25952256,513147,134348 -k1,7076:8832346,15662411:318068 -k1,7076:12176210,15662411:318067 -k1,7076:14257852,15662411:318068 -k1,7076:14931779,15662411:318067 -k1,7076:17945343,15662411:318068 -k1,7076:20468697,15662411:318067 -k1,7076:21472927,15662411:318068 -k1,7076:22561697,15662411:318067 -k1,7076:25952093,15662411:318068 -k1,7076:26921588,15662411:318067 -k1,7076:30520388,15662411:318068 -(1,7076:30520388,15662411:0,414482,115847 -r1,7089:31582077,15662411:1061689,530329,115847 -k1,7076:30520388,15662411:-1061689 -) -(1,7076:30520388,15662411:1061689,414482,115847 -k1,7076:30520388,15662411:3277 -h1,7076:31578800,15662411:0,411205,112570 -) -k1,7076:31900144,15662411:318067 -k1,7076:32583029,15662411:0 -) -(1,7077:6630773,16503899:25952256,513147,134348 -k1,7076:10334214,16503899:224790 -k1,7076:11210433,16503899:224791 -k1,7076:14304389,16503899:224790 -k1,7076:15145217,16503899:224790 -k1,7076:15725867,16503899:224790 -k1,7076:19037404,16503899:224791 -k1,7076:19929350,16503899:224790 -k1,7076:20568957,16503899:224764 -k1,7076:23083576,16503899:224791 -k1,7076:25513653,16503899:224790 -k1,7076:26424605,16503899:224790 -k1,7076:27420098,16503899:224790 -k1,7076:30717217,16503899:224791 -k1,7076:31593435,16503899:224790 -k1,7077:32583029,16503899:0 -) -(1,7077:6630773,17345387:25952256,505283,126483 -k1,7076:9360222,17345387:225318 -(1,7076:9360222,17345387:0,414482,115847 -r1,7089:9718488,17345387:358266,530329,115847 -k1,7076:9360222,17345387:-358266 -) -(1,7076:9360222,17345387:358266,414482,115847 -k1,7076:9360222,17345387:3277 -h1,7076:9715211,17345387:0,411205,112570 -) -k1,7076:9943807,17345387:225319 -k1,7076:10852010,17345387:225318 -k1,7076:14555979,17345387:225318 -k1,7076:18320241,17345387:225318 -k1,7076:19196988,17345387:225319 -k1,7076:21307777,17345387:225318 -(1,7076:21307777,17345387:0,414482,115847 -r1,7089:22369466,17345387:1061689,530329,115847 -k1,7076:21307777,17345387:-1061689 -) -(1,7076:21307777,17345387:1061689,414482,115847 -k1,7076:21307777,17345387:3277 -h1,7076:22366189,17345387:0,411205,112570 -) -k1,7076:22594784,17345387:225318 -k1,7076:23351600,17345387:225319 -k1,7076:24228346,17345387:225318 -k1,7076:25201430,17345387:225318 -k1,7076:27798496,17345387:225318 -k1,7076:29128097,17345387:225319 -k1,7076:30101181,17345387:225318 -k1,7076:32583029,17345387:0 -) -(1,7077:6630773,18186875:25952256,513147,134348 -k1,7076:8345148,18186875:216877 -k1,7076:9951388,18186875:216877 -k1,7076:12548534,18186875:216878 -k1,7076:15498918,18186875:216877 -k1,7076:16398680,18186875:216877 -k1,7076:18769070,18186875:216877 -k1,7076:19803837,18186875:216878 -k1,7076:21409422,18186875:216877 -k1,7076:22312461,18186875:216877 -k1,7076:23548423,18186875:216877 -k1,7076:27169895,18186875:216877 -k1,7076:28038201,18186875:216878 -k1,7076:29002844,18186875:216877 -k1,7076:31591469,18186875:216877 -k1,7076:32583029,18186875:0 -) -(1,7077:6630773,19028363:25952256,513147,126483 -k1,7076:12402707,19028363:190233 -k1,7076:13578601,19028363:190233 -k1,7076:15827975,19028363:190233 -k1,7076:17560926,19028363:190233 -k1,7076:18871169,19028363:190233 -k1,7076:21731995,19028363:190234 -k1,7076:22968183,19028363:190233 -k1,7076:24171603,19028363:190233 -k1,7076:25801007,19028363:190233 -k1,7076:26594171,19028363:190233 -k1,7076:29257077,19028363:190233 -k1,7076:32583029,19028363:0 -) -(1,7077:6630773,19869851:25952256,513147,126483 -g1,7076:8593576,19869851 -g1,7076:11818602,19869851 -g1,7076:13122113,19869851 -g1,7076:15619690,19869851 -(1,7076:15619690,19869851:0,459977,115847 -r1,7089:16681379,19869851:1061689,575824,115847 -k1,7076:15619690,19869851:-1061689 -) -(1,7076:15619690,19869851:1061689,459977,115847 -k1,7076:15619690,19869851:3277 -h1,7076:16678102,19869851:0,411205,112570 -) -g1,7076:17054278,19869851 -(1,7076:17054278,19869851:0,452978,115847 -r1,7089:18819391,19869851:1765113,568825,115847 -k1,7076:17054278,19869851:-1765113 -) -(1,7076:17054278,19869851:1765113,452978,115847 -k1,7076:17054278,19869851:3277 -h1,7076:18816114,19869851:0,411205,112570 -) -g1,7076:19018620,19869851 -g1,7076:19900734,19869851 -(1,7076:19900734,19869851:0,414482,115847 -r1,7089:22017559,19869851:2116825,530329,115847 -k1,7076:19900734,19869851:-2116825 -) -(1,7076:19900734,19869851:2116825,414482,115847 -k1,7076:19900734,19869851:3277 -h1,7076:22014282,19869851:0,411205,112570 -) -g1,7076:22216788,19869851 -k1,7077:32583029,19869851:8447347 -g1,7077:32583029,19869851 -) -v1,7079:6630773,21235627:0,393216,0 -(1,7080:6630773,26954257:25952256,6111846,616038 -g1,7080:6630773,26954257 -(1,7080:6630773,26954257:25952256,6111846,616038 -(1,7080:6630773,27570295:25952256,6727884,0 -[1,7080:6630773,27570295:25952256,6727884,0 -(1,7080:6630773,27544081:25952256,6675456,0 -r1,7089:6656987,27544081:26214,6675456,0 -[1,7080:6656987,27544081:25899828,6675456,0 -(1,7080:6656987,26954257:25899828,5495808,0 -[1,7080:7246811,26954257:24720180,5495808,0 -(1,7080:7246811,22620334:24720180,1161885,196608 -(1,7079:7246811,22620334:0,1161885,196608 -r1,7089:8794447,22620334:1547636,1358493,196608 -k1,7079:7246811,22620334:-1547636 -) -(1,7079:7246811,22620334:1547636,1161885,196608 -) -k1,7079:8997289,22620334:202842 -k1,7079:13539269,22620334:202841 -(1,7079:13539269,22620334:0,459977,115847 -r1,7089:14600958,22620334:1061689,575824,115847 -k1,7079:13539269,22620334:-1061689 -) -(1,7079:13539269,22620334:1061689,459977,115847 -k1,7079:13539269,22620334:3277 -h1,7079:14597681,22620334:0,411205,112570 -) -k1,7079:14977470,22620334:202842 -(1,7079:14977470,22620334:0,452978,115847 -r1,7089:16742583,22620334:1765113,568825,115847 -k1,7079:14977470,22620334:-1765113 -) -(1,7079:14977470,22620334:1765113,452978,115847 -k1,7079:14977470,22620334:3277 -h1,7079:16739306,22620334:0,411205,112570 -) -k1,7079:16945424,22620334:202841 -k1,7079:18339711,22620334:202842 -(1,7079:18339711,22620334:0,414482,115847 -r1,7089:20456536,22620334:2116825,530329,115847 -k1,7079:18339711,22620334:-2116825 -) -(1,7079:18339711,22620334:2116825,414482,115847 -k1,7079:18339711,22620334:3277 -h1,7079:20453259,22620334:0,411205,112570 -) -k1,7079:20659378,22620334:202842 -k1,7079:22607443,22620334:202841 -k1,7079:23801845,22620334:202842 -k1,7079:27594748,22620334:202841 -k1,7079:28483752,22620334:202842 -k1,7079:31966991,22620334:0 -) -(1,7080:7246811,23461822:24720180,513147,134348 -k1,7079:10733472,23461822:208550 -k1,7079:14245692,23461822:208550 -k1,7079:15113534,23461822:208550 -k1,7079:18064110,23461822:208550 -k1,7079:21962993,23461822:208551 -k1,7079:22799378,23461822:208550 -k1,7079:25812869,23461822:208550 -k1,7079:26940234,23461822:208550 -k1,7079:28941194,23461822:208550 -k1,7079:31966991,23461822:0 -) -(1,7080:7246811,24303310:24720180,513147,134348 -k1,7079:8638086,24303310:226045 -k1,7079:13081372,24303310:226044 -k1,7079:15834485,24303310:226045 -k1,7079:16746692,24303310:226045 -k1,7079:20256090,24303310:226044 -k1,7079:20837995,24303310:226045 -k1,7079:23759536,24303310:226045 -k1,7079:24601618,24303310:226044 -k1,7079:27211207,24303310:226045 -k1,7079:28384903,24303310:226045 -k1,7079:30062569,24303310:226044 -k1,7079:30947906,24303310:226045 -k1,7079:31966991,24303310:0 -) -(1,7080:7246811,25144798:24720180,513147,126483 -k1,7079:10272508,25144798:263354 -k1,7079:13489570,25144798:263354 -k1,7079:14412216,25144798:263354 -k1,7079:16184208,25144798:263353 -k1,7079:18329756,25144798:263354 -k1,7079:19516512,25144798:263354 -k1,7079:21469384,25144798:263354 -k1,7079:22348776,25144798:263354 -k1,7079:24357354,25144798:263354 -k1,7079:25639792,25144798:263353 -k1,7079:28076320,25144798:263354 -k1,7079:28998966,25144798:263354 -k1,7079:31295902,25144798:263354 -k1,7080:31966991,25144798:0 -) -(1,7080:7246811,25986286:24720180,505283,134348 -k1,7079:10125425,25986286:289287 -k1,7079:12973238,25986286:289287 -k1,7079:13618385,25986286:289287 -k1,7079:15322594,25986286:289287 -k1,7079:16716163,25986286:289287 -k1,7079:17753216,25986286:289287 -k1,7079:20080672,25986286:289286 -k1,7079:20985997,25986286:289287 -k1,7079:24116925,25986286:289287 -k1,7079:25597657,25986286:289287 -k1,7079:27400170,25986286:289287 -k1,7079:28305495,25986286:289287 -k1,7079:31966991,25986286:0 -) -(1,7080:7246811,26827774:24720180,513147,126483 -g1,7079:10667135,26827774 -g1,7079:12069605,26827774 -g1,7079:12800331,26827774 -g1,7079:14065831,26827774 -g1,7079:16895020,26827774 -g1,7079:17710287,26827774 -g1,7079:18928601,26827774 -g1,7079:20494911,26827774 -g1,7079:21353432,26827774 -g1,7079:23345071,26827774 -k1,7080:31966991,26827774:5422452 -g1,7080:31966991,26827774 -) -] -) -] -r1,7089:32583029,27544081:26214,6675456,0 -) -] -) -) -g1,7080:32583029,26954257 -) -h1,7080:6630773,27570295:0,0,0 -(1,7083:6630773,28936071:25952256,513147,126483 -h1,7082:6630773,28936071:983040,0,0 -k1,7082:9076534,28936071:266034 -k1,7082:12104911,28936071:266034 -k1,7082:14163355,28936071:266034 -k1,7082:17455186,28936071:266034 -k1,7082:18337258,28936071:266034 -k1,7082:20037220,28936071:266034 -k1,7082:20718031,28936071:265968 -k1,7082:22727323,28936071:266034 -k1,7082:23609395,28936071:266034 -k1,7082:24894514,28936071:266034 -k1,7082:26715717,28936071:266034 -k1,7082:27641043,28936071:266034 -k1,7082:28926162,28936071:266034 -k1,7082:31202841,28936071:266034 -k1,7082:32583029,28936071:0 -) -(1,7083:6630773,29777559:25952256,513147,134348 -k1,7082:8851365,29777559:172592 -k1,7082:9971609,29777559:172593 -k1,7082:11652840,29777559:172592 -(1,7082:11652840,29777559:0,414482,115847 -r1,7089:12011106,29777559:358266,530329,115847 -k1,7082:11652840,29777559:-358266 -) -(1,7082:11652840,29777559:358266,414482,115847 -k1,7082:11652840,29777559:3277 -h1,7082:12007829,29777559:0,411205,112570 -) -k1,7082:12183699,29777559:172593 -k1,7082:15810694,29777559:172592 -k1,7082:17002372,29777559:172593 -k1,7082:18730133,29777559:172592 -k1,7082:19562018,29777559:172593 -k1,7082:20753695,29777559:172592 -k1,7082:22885814,29777559:172593 -k1,7082:24438594,29777559:172592 -k1,7082:26621832,29777559:172593 -k1,7082:29004298,29777559:172592 -k1,7082:30195976,29777559:172593 -k1,7082:31923737,29777559:172592 -k1,7082:32583029,29777559:0 -) -(1,7083:6630773,30619047:25952256,513147,126483 -k1,7082:7822942,30619047:173084 -k1,7082:9676369,30619047:173084 -k1,7082:12628180,30619047:173084 -k1,7082:13562792,30619047:173084 -k1,7082:14754961,30619047:173084 -k1,7082:17299793,30619047:173084 -k1,7082:20342043,30619047:173084 -(1,7082:20342043,30619047:0,452978,115847 -r1,7089:23162292,30619047:2820249,568825,115847 -k1,7082:20342043,30619047:-2820249 -) -(1,7082:20342043,30619047:2820249,452978,115847 -k1,7082:20342043,30619047:3277 -h1,7082:23159015,30619047:0,411205,112570 -) -k1,7082:23335376,30619047:173084 -k1,7082:24699905,30619047:173084 -(1,7082:24699905,30619047:0,452978,115847 -r1,7089:27520154,30619047:2820249,568825,115847 -k1,7082:24699905,30619047:-2820249 -) -(1,7082:24699905,30619047:2820249,452978,115847 -k1,7082:24699905,30619047:3277 -h1,7082:27516877,30619047:0,411205,112570 -) -k1,7082:27693238,30619047:173084 -k1,7082:29937260,30619047:173084 -k1,7082:30466204,30619047:173084 -(1,7082:30466204,30619047:0,414482,115847 -r1,7089:32583029,30619047:2116825,530329,115847 -k1,7082:30466204,30619047:-2116825 -) -(1,7082:30466204,30619047:2116825,414482,115847 -k1,7082:30466204,30619047:3277 -h1,7082:32579752,30619047:0,411205,112570 -) -k1,7082:32583029,30619047:0 -) -(1,7083:6630773,31460535:25952256,505283,134348 -k1,7082:7481442,31460535:167784 -(1,7082:7481442,31460535:0,452978,115847 -r1,7089:8894843,31460535:1413401,568825,115847 -k1,7082:7481442,31460535:-1413401 -) -(1,7082:7481442,31460535:1413401,452978,115847 -k1,7082:7481442,31460535:3277 -h1,7082:8891566,31460535:0,411205,112570 -) -k1,7082:9062626,31460535:167783 -k1,7082:9916572,31460535:167784 -k1,7082:10855059,31460535:167784 -k1,7082:14095171,31460535:167784 -k1,7082:16468241,31460535:167783 -k1,7082:19194551,31460535:167784 -(1,7082:19194551,31460535:0,414482,115847 -r1,7089:19552817,31460535:358266,530329,115847 -k1,7082:19194551,31460535:-358266 -) -(1,7082:19194551,31460535:358266,414482,115847 -k1,7082:19194551,31460535:3277 -h1,7082:19549540,31460535:0,411205,112570 -) -k1,7082:19894271,31460535:167784 -(1,7082:19894271,31460535:0,452978,115847 -r1,7089:22714520,31460535:2820249,568825,115847 -k1,7082:19894271,31460535:-2820249 -) -(1,7082:19894271,31460535:2820249,452978,115847 -k1,7082:19894271,31460535:3277 -h1,7082:22711243,31460535:0,411205,112570 -) -k1,7082:22882304,31460535:167784 -k1,7082:25391033,31460535:167783 -k1,7082:25914677,31460535:167784 -(1,7082:25914677,31460535:0,452978,115847 -r1,7089:27328078,31460535:1413401,568825,115847 -k1,7082:25914677,31460535:-1413401 -) -(1,7082:25914677,31460535:1413401,452978,115847 -k1,7082:25914677,31460535:3277 -h1,7082:27324801,31460535:0,411205,112570 -) -k1,7082:27495862,31460535:167784 -k1,7082:28346531,31460535:167784 -k1,7082:29285017,31460535:167783 -(1,7082:29285017,31460535:0,414482,115847 -r1,7089:31050130,31460535:1765113,530329,115847 -k1,7082:29285017,31460535:-1765113 -) -(1,7082:29285017,31460535:1765113,414482,115847 -k1,7082:29285017,31460535:3277 -h1,7082:31046853,31460535:0,411205,112570 -) -k1,7082:31391584,31460535:167784 -k1,7083:32583029,31460535:0 -) -(1,7083:6630773,32302023:25952256,513147,126483 -(1,7082:6630773,32302023:0,452978,115847 -r1,7089:9451022,32302023:2820249,568825,115847 -k1,7082:6630773,32302023:-2820249 -) -(1,7082:6630773,32302023:2820249,452978,115847 -k1,7082:6630773,32302023:3277 -h1,7082:9447745,32302023:0,411205,112570 -) -k1,7082:9727243,32302023:276221 -k1,7082:12132730,32302023:276222 -k1,7082:15348241,32302023:276221 -k1,7082:16412860,32302023:276221 -k1,7082:19467808,32302023:276221 -k1,7082:21424373,32302023:276222 -k1,7082:22968060,32302023:276221 -k1,7082:23600141,32302023:276221 -k1,7082:26027909,32302023:276221 -k1,7082:27993649,32302023:276222 -(1,7082:27993649,32302023:0,452978,115847 -r1,7089:30813898,32302023:2820249,568825,115847 -k1,7082:27993649,32302023:-2820249 -) -(1,7082:27993649,32302023:2820249,452978,115847 -k1,7082:27993649,32302023:3277 -h1,7082:30810621,32302023:0,411205,112570 -) -k1,7082:31090119,32302023:276221 -k1,7082:32583029,32302023:0 -) -(1,7083:6630773,33143511:25952256,513147,134348 -k1,7082:7821660,33143511:171802 -k1,7082:12359471,33143511:171802 -k1,7082:15648165,33143511:171802 -k1,7082:16471395,33143511:171802 -k1,7082:17662282,33143511:171802 -k1,7082:20906411,33143511:171801 -k1,7082:23283500,33143511:171802 -k1,7082:24106730,33143511:171802 -k1,7082:25066930,33143511:171802 -(1,7082:25066930,33143511:0,459977,115847 -r1,7089:27887179,33143511:2820249,575824,115847 -k1,7082:25066930,33143511:-2820249 -) -(1,7082:25066930,33143511:2820249,459977,115847 -k1,7082:25066930,33143511:3277 -h1,7082:27883902,33143511:0,411205,112570 -) -k1,7082:28058981,33143511:171802 -k1,7082:31685186,33143511:171802 -k1,7082:32583029,33143511:0 -) -(1,7083:6630773,33984999:25952256,513147,126483 -k1,7082:8479751,33984999:152251 -k1,7082:10424412,33984999:152251 -k1,7082:13602460,33984999:152251 -k1,7082:14858994,33984999:152252 -k1,7082:15759011,33984999:152251 -k1,7082:17424488,33984999:152251 -k1,7082:18228167,33984999:152251 -k1,7082:20143992,33984999:152251 -k1,7082:21066947,33984999:152252 -k1,7082:21633994,33984999:152204 -k1,7082:24481741,33984999:152251 -k1,7082:25918498,33984999:152251 -k1,7082:28411695,33984999:152251 -k1,7082:28919807,33984999:152252 -k1,7082:30752401,33984999:152251 -k1,7082:31563944,33984999:152251 -k1,7082:32583029,33984999:0 -) -(1,7083:6630773,34826487:25952256,513147,134348 -k1,7082:8483867,34826487:199621 -k1,7082:9366372,34826487:199620 -k1,7082:9921853,34826487:199621 -k1,7082:12883816,34826487:199620 -k1,7082:14638606,34826487:199621 -k1,7082:15524389,34826487:199621 -k1,7082:16512407,34826487:199620 -k1,7082:19958026,34826487:199621 -k1,7082:20785481,34826487:199620 -k1,7082:22004187,34826487:199621 -k1,7082:23570889,34826487:199621 -k1,7082:24437665,34826487:199620 -(1,7082:24437665,34826487:0,452978,115847 -r1,7089:26906202,34826487:2468537,568825,115847 -k1,7082:24437665,34826487:-2468537 -) -(1,7082:24437665,34826487:2468537,452978,115847 -k1,7082:24437665,34826487:3277 -h1,7082:26902925,34826487:0,411205,112570 -) -k1,7082:27105823,34826487:199621 -k1,7082:28496888,34826487:199620 -(1,7082:28496888,34826487:0,452978,115847 -r1,7089:31317137,34826487:2820249,568825,115847 -k1,7082:28496888,34826487:-2820249 -) -(1,7082:28496888,34826487:2820249,452978,115847 -k1,7082:28496888,34826487:3277 -h1,7082:31313860,34826487:0,411205,112570 -) -k1,7082:31516758,34826487:199621 -k1,7082:32583029,34826487:0 -) -(1,7083:6630773,35667975:25952256,513147,134348 -k1,7082:8327651,35667975:230182 -k1,7082:9576919,35667975:230183 -k1,7082:11820367,35667975:230182 -k1,7082:12709842,35667975:230183 -k1,7082:13959109,35667975:230182 -k1,7082:16199936,35667975:230182 -k1,7082:19208846,35667975:230183 -k1,7082:20386679,35667975:230182 -k1,7082:22068483,35667975:230182 -k1,7082:24922072,35667975:230183 -k1,7082:25811546,35667975:230182 -k1,7082:27060814,35667975:230183 -k1,7082:30377742,35667975:230182 -k1,7082:32583029,35667975:0 -) -(1,7083:6630773,36509463:25952256,505283,134348 -k1,7082:7564020,36509463:247085 -k1,7082:8581809,36509463:247086 -k1,7082:12074892,36509463:247085 -k1,7082:14182544,36509463:247085 -k1,7082:15081057,36509463:247085 -k1,7082:16075909,36509463:247086 -k1,7082:19777397,36509463:247085 -k1,7082:20652317,36509463:247085 -k1,7082:24063481,36509463:247086 -(1,7082:24063481,36509463:0,452978,115847 -r1,7089:26532018,36509463:2468537,568825,115847 -k1,7082:24063481,36509463:-2468537 -) -(1,7082:24063481,36509463:2468537,452978,115847 -k1,7082:24063481,36509463:3277 -h1,7082:26528741,36509463:0,411205,112570 -) -k1,7082:26779103,36509463:247085 -k1,7082:27557685,36509463:247085 -k1,7082:29317996,36509463:247085 -k1,7082:30216510,36509463:247086 -k1,7082:32227169,36509463:247085 -k1,7082:32583029,36509463:0 -) -(1,7083:6630773,37350951:25952256,513147,134348 -k1,7082:9539479,37350951:213210 -k1,7082:10404118,37350951:213211 -k1,7082:11636413,37350951:213210 -k1,7082:14718790,37350951:213211 -k1,7082:16676568,37350951:213210 -k1,7082:17245638,37350951:213210 -k1,7082:20803807,37350951:213211 -k1,7082:21676309,37350951:213210 -k1,7082:22660223,37350951:213211 -k1,7082:24832959,37350951:213210 -k1,7082:26330675,37350951:213210 -k1,7082:27644891,37350951:213211 -k1,7082:29030540,37350951:213210 -k1,7082:29926636,37350951:213211 -k1,7082:31790043,37350951:213210 -k1,7083:32583029,37350951:0 -) -(1,7083:6630773,38192439:25952256,513147,126483 -k1,7082:9895185,38192439:172424 -k1,7082:11259054,38192439:172424 -(1,7082:11259054,38192439:0,452978,115847 -r1,7089:14079303,38192439:2820249,568825,115847 -k1,7082:11259054,38192439:-2820249 -) -(1,7082:11259054,38192439:2820249,452978,115847 -k1,7082:11259054,38192439:3277 -h1,7082:14076026,38192439:0,411205,112570 -) -k1,7082:14251728,38192439:172425 -k1,7082:15615597,38192439:172424 -(1,7082:15615597,38192439:0,452978,115847 -r1,7089:18435846,38192439:2820249,568825,115847 -k1,7082:15615597,38192439:-2820249 -) -(1,7082:15615597,38192439:2820249,452978,115847 -k1,7082:15615597,38192439:3277 -h1,7082:18432569,38192439:0,411205,112570 -) -k1,7082:18608270,38192439:172424 -k1,7082:19772254,38192439:172424 -k1,7082:21457905,38192439:172425 -k1,7082:22281757,38192439:172424 -k1,7082:24217755,38192439:172424 -k1,7082:24746039,38192439:172424 -k1,7082:27613960,38192439:172425 -k1,7082:28437812,38192439:172424 -k1,7082:29629321,38192439:172424 -k1,7082:32583029,38192439:0 -) -(1,7083:6630773,39033927:25952256,513147,134348 -k1,7082:7504187,39033927:214122 -k1,7082:8074169,39033927:214122 -k1,7082:10266168,39033927:214122 -k1,7082:11163175,39033927:214122 -k1,7082:12544493,39033927:214122 -(1,7082:12544493,39033927:0,452978,115847 -r1,7089:15013030,39033927:2468537,568825,115847 -k1,7082:12544493,39033927:-2468537 -) -(1,7082:12544493,39033927:2468537,452978,115847 -k1,7082:12544493,39033927:3277 -h1,7082:15009753,39033927:0,411205,112570 -) -k1,7082:15227152,39033927:214122 -k1,7082:17782220,39033927:214122 -k1,7082:18767045,39033927:214122 -k1,7082:20630708,39033927:214122 -k1,7082:21527715,39033927:214122 -k1,7082:22097697,39033927:214122 -k1,7082:23305345,39033927:214122 -k1,7082:24202352,39033927:214122 -k1,7082:24772334,39033927:214122 -k1,7082:26964333,39033927:214122 -k1,7082:30540452,39033927:214122 -k1,7082:31563944,39033927:214122 -k1,7082:32583029,39033927:0 -) -(1,7083:6630773,39875415:25952256,505283,134348 -k1,7082:8235043,39875415:161823 -k1,7082:9588312,39875415:161824 -k1,7082:13468648,39875415:161823 -k1,7082:14246510,39875415:161824 -k1,7082:16421599,39875415:161823 -k1,7082:17774867,39875415:161823 -k1,7082:19491860,39875415:161824 -k1,7082:21813094,39875415:161823 -k1,7082:22994002,39875415:161823 -k1,7082:25166471,39875415:161824 -k1,7082:28107021,39875415:161823 -k1,7082:29030373,39875415:161824 -k1,7082:30211281,39875415:161823 -k1,7082:32583029,39875415:0 -) -(1,7083:6630773,40716903:25952256,513147,7863 -k1,7083:32583029,40716903:23083090 -g1,7083:32583029,40716903 -) -(1,7084:6630773,42808163:25952256,564462,147783 -(1,7084:6630773,42808163:2450326,534184,12975 -g1,7084:6630773,42808163 -g1,7084:9081099,42808163 -) -g1,7084:12662511,42808163 -g1,7084:16328989,42808163 -g1,7084:17279130,42808163 -g1,7084:20208852,42808163 -g1,7084:21776080,42808163 -k1,7084:32583029,42808163:9302439 -g1,7084:32583029,42808163 -) -(1,7087:6630773,44042867:25952256,513147,126483 -k1,7086:7735505,44042867:151183 -k1,7086:9192820,44042867:151182 -k1,7086:12476624,44042867:151183 -k1,7086:13646892,44042867:151183 -k1,7086:14890559,44042867:151182 -k1,7086:15708898,44042867:151183 -(1,7086:15708898,44042867:0,452978,115847 -r1,7089:18529147,44042867:2820249,568825,115847 -k1,7086:15708898,44042867:-2820249 -) -(1,7086:15708898,44042867:2820249,452978,115847 -k1,7086:15708898,44042867:3277 -h1,7086:18525870,44042867:0,411205,112570 -) -k1,7086:18854000,44042867:151183 -(1,7086:18854000,44042867:0,452978,115847 -r1,7089:21674249,44042867:2820249,568825,115847 -k1,7086:18854000,44042867:-2820249 -) -(1,7086:18854000,44042867:2820249,452978,115847 -k1,7086:18854000,44042867:3277 -h1,7086:21670972,44042867:0,411205,112570 -) -k1,7086:21825432,44042867:151183 -k1,7086:23168059,44042867:151182 -(1,7086:23168059,44042867:0,452978,115847 -r1,7089:25988308,44042867:2820249,568825,115847 -k1,7086:23168059,44042867:-2820249 -) -(1,7086:23168059,44042867:2820249,452978,115847 -k1,7086:23168059,44042867:3277 -h1,7086:25985031,44042867:0,411205,112570 -) -k1,7086:26313161,44042867:151183 -k1,7086:27092179,44042867:151183 -k1,7086:28262446,44042867:151182 -k1,7086:30714598,44042867:151183 -k1,7086:32583029,44042867:0 -) -(1,7087:6630773,44884355:25952256,513147,126483 -g1,7086:7698354,44884355 -g1,7086:9661157,44884355 -g1,7086:10216246,44884355 -g1,7086:14390889,44884355 -g1,7086:17285614,44884355 -g1,7086:18136271,44884355 -g1,7086:18691360,44884355 -k1,7087:32583029,44884355:11740122 -g1,7087:32583029,44884355 -) -] -(1,7089:32583029,45706769:0,0,0 -g1,7089:32583029,45706769 -) -) -] -(1,7089:6630773,47279633:25952256,0,0 -h1,7089:6630773,47279633:25952256,0,0 -) -] -(1,7089:4262630,4025873:0,0,0 -[1,7089:-473656,4025873:0,0,0 -(1,7089:-473656,-710413:0,0,0 -(1,7089:-473656,-710413:0,0,0 -g1,7089:-473656,-710413 -) -g1,7089:-473656,-710413 -) -] -) -] -!28431 -}135 -Input:1114:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1115:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1116:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1117:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!380 -{136 -[1,7180:4262630,47279633:28320399,43253760,0 -(1,7180:4262630,4025873:0,0,0 -[1,7180:-473656,4025873:0,0,0 -(1,7180:-473656,-710413:0,0,0 -(1,7180:-473656,-644877:0,0,0 -k1,7180:-473656,-644877:-65536 -) -(1,7180:-473656,4736287:0,0,0 -k1,7180:-473656,4736287:5209943 -) -g1,7180:-473656,-710413 -) -] -) -[1,7180:6630773,47279633:25952256,43253760,0 -[1,7180:6630773,4812305:25952256,786432,0 -(1,7180:6630773,4812305:25952256,513147,126483 -(1,7180:6630773,4812305:25952256,513147,126483 -g1,7180:3078558,4812305 -[1,7180:3078558,4812305:0,0,0 -(1,7180:3078558,2439708:0,1703936,0 -k1,7180:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,7180:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,7180:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,7180:3078558,4812305:0,0,0 -(1,7180:3078558,2439708:0,1703936,0 -g1,7180:29030814,2439708 -g1,7180:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,7180:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,7180:37855564,2439708:1179648,16384,0 -) -) -k1,7180:3078556,2439708:-34777008 -) -] -[1,7180:3078558,4812305:0,0,0 -(1,7180:3078558,49800853:0,16384,2228224 -k1,7180:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,7180:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,7180:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,7180:3078558,4812305:0,0,0 -(1,7180:3078558,49800853:0,16384,2228224 -g1,7180:29030814,49800853 -g1,7180:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,7180:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,7180:37855564,49800853:1179648,16384,0 -) -) -k1,7180:3078556,49800853:-34777008 -) -] -g1,7180:6630773,4812305 -g1,7180:6630773,4812305 -g1,7180:8671564,4812305 -g1,7180:11756343,4812305 -k1,7180:31387651,4812305:19631308 -) -) -] -[1,7180:6630773,45706769:25952256,40108032,0 -(1,7180:6630773,45706769:25952256,40108032,0 -(1,7180:6630773,45706769:0,0,0 -g1,7180:6630773,45706769 -) -[1,7180:6630773,45706769:25952256,40108032,0 -v1,7089:6630773,6254097:0,393216,0 -(1,7090:6630773,11054890:25952256,5194009,616038 -g1,7090:6630773,11054890 -(1,7090:6630773,11054890:25952256,5194009,616038 -(1,7090:6630773,11670928:25952256,5810047,0 -[1,7090:6630773,11670928:25952256,5810047,0 -(1,7090:6630773,11644714:25952256,5757619,0 -r1,7180:6656987,11644714:26214,5757619,0 -[1,7090:6656987,11644714:25899828,5757619,0 -(1,7090:6656987,11054890:25899828,4577971,0 -[1,7090:7246811,11054890:24720180,4577971,0 -(1,7090:7246811,7562455:24720180,1085536,298548 -(1,7089:7246811,7562455:0,1085536,298548 -r1,7180:8753226,7562455:1506415,1384084,298548 -k1,7089:7246811,7562455:-1506415 -) -(1,7089:7246811,7562455:1506415,1085536,298548 -) -k1,7089:9003093,7562455:249867 -k1,7089:9740497,7562455:249816 -k1,7089:13237673,7562455:249867 -k1,7089:14019037,7562455:249867 -k1,7089:15553411,7562455:249868 -k1,7089:16822363,7562455:249867 -k1,7089:20265144,7562455:249867 -k1,7089:23138417,7562455:249867 -k1,7089:25678112,7562455:249867 -k1,7089:26544017,7562455:249867 -k1,7089:27812969,7562455:249867 -k1,7089:29056362,7562455:249867 -k1,7089:29989114,7562455:249867 -k1,7089:31966991,7562455:0 -) -(1,7090:7246811,8403943:24720180,513147,134348 -k1,7089:9587068,8403943:134970 -k1,7089:10408200,8403943:134970 -k1,7089:13615499,8403943:134971 -k1,7089:14401897,8403943:134970 -k1,7089:15555952,8403943:134970 -(1,7089:15555952,8403943:0,414482,115847 -r1,7180:15914218,8403943:358266,530329,115847 -k1,7089:15555952,8403943:-358266 -) -(1,7089:15555952,8403943:358266,414482,115847 -k1,7089:15555952,8403943:3277 -h1,7089:15910941,8403943:0,411205,112570 -) -k1,7089:16049188,8403943:134970 -k1,7089:19464891,8403943:134971 -k1,7089:20259153,8403943:134970 -k1,7089:22186533,8403943:134970 -k1,7089:25347300,8403943:134970 -k1,7089:26614733,8403943:134971 -k1,7089:27497469,8403943:134970 -k1,7089:29761704,8403943:134970 -k1,7089:31966991,8403943:0 -) -(1,7090:7246811,9245431:24720180,513147,134348 -k1,7089:8110084,9245431:177111 -k1,7089:8643055,9245431:177111 -k1,7089:11995385,9245431:177111 -k1,7089:15244824,9245431:177111 -k1,7089:16073363,9245431:177111 -k1,7089:17269559,9245431:177111 -k1,7089:18752804,9245431:177112 -k1,7089:21058524,9245431:177111 -k1,7089:24516367,9245431:177111 -k1,7089:25352770,9245431:177111 -k1,7089:26548966,9245431:177111 -k1,7089:29097825,9245431:177111 -k1,7089:31966991,9245431:0 -) -(1,7090:7246811,10086919:24720180,513147,134348 -k1,7089:8529199,10086919:212840 -k1,7089:9761124,10086919:212840 -k1,7089:12669460,10086919:212840 -k1,7089:15087588,10086919:212841 -k1,7089:15986590,10086919:212840 -k1,7089:19271758,10086919:212840 -k1,7089:20136026,10086919:212840 -(1,7089:20136026,10086919:0,414482,115847 -r1,7180:21197715,10086919:1061689,530329,115847 -k1,7089:20136026,10086919:-1061689 -) -(1,7089:20136026,10086919:1061689,414482,115847 -k1,7089:20136026,10086919:3277 -h1,7089:21194438,10086919:0,411205,112570 -) -k1,7089:21410555,10086919:212840 -k1,7089:23245411,10086919:212840 -k1,7089:24206018,10086919:212841 -k1,7089:27954525,10086919:212840 -k1,7089:29561316,10086919:212840 -k1,7089:30977397,10086919:212840 -k1,7090:31966991,10086919:0 -) -(1,7090:7246811,10928407:24720180,505283,126483 -k1,7090:31966991,10928407:22338602 -g1,7090:31966991,10928407 -) -] -) -] -r1,7180:32583029,11644714:26214,5757619,0 -) -] -) -) -g1,7090:32583029,11054890 -) -h1,7090:6630773,11670928:0,0,0 -v1,7093:6630773,13075848:0,393216,0 -(1,7102:6630773,15423557:25952256,2740925,196608 -g1,7102:6630773,15423557 -g1,7102:6630773,15423557 -g1,7102:6434165,15423557 -(1,7102:6434165,15423557:0,2740925,196608 -r1,7180:32779637,15423557:26345472,2937533,196608 -k1,7102:6434165,15423557:-26345472 -) -(1,7102:6434165,15423557:26345472,2740925,196608 -[1,7102:6630773,15423557:25952256,2544317,0 -(1,7095:6630773,13283466:25952256,404226,107478 -(1,7094:6630773,13283466:0,0,0 -g1,7094:6630773,13283466 -g1,7094:6630773,13283466 -g1,7094:6303093,13283466 -(1,7094:6303093,13283466:0,0,0 -) -g1,7094:6630773,13283466 -) -k1,7095:6630773,13283466:0 -g1,7095:12005250,13283466 -g1,7095:12637542,13283466 -g1,7095:13585979,13283466 -g1,7095:15166708,13283466 -g1,7095:18012019,13283466 -g1,7095:19592748,13283466 -g1,7095:20857331,13283466 -k1,7095:20857331,13283466:1573 -h1,7095:22755778,13283466:0,0,0 -k1,7095:32583029,13283466:9827251 -g1,7095:32583029,13283466 -) -(1,7096:6630773,13949644:25952256,410518,101187 -h1,7096:6630773,13949644:0,0,0 -g1,7096:9476084,13949644 -g1,7096:10424522,13949644 -g1,7096:13269834,13949644 -g1,7096:13902126,13949644 -g1,7096:14534418,13949644 -g1,7096:16431292,13949644 -g1,7096:18644312,13949644 -g1,7096:19592749,13949644 -g1,7096:21489623,13949644 -g1,7096:22438060,13949644 -g1,7096:24018789,13949644 -g1,7096:26231809,13949644 -k1,7096:26231809,13949644:14156 -h1,7096:27826693,13949644:0,0,0 -k1,7096:32583029,13949644:4756336 -g1,7096:32583029,13949644 -) -(1,7097:6630773,14615822:25952256,404226,76021 -h1,7097:6630773,14615822:0,0,0 -k1,7097:6630773,14615822:0 -h1,7097:10740667,14615822:0,0,0 -k1,7097:32583029,14615822:21842362 -g1,7097:32583029,14615822 -) -(1,7101:6630773,15347536:25952256,404226,76021 -(1,7099:6630773,15347536:0,0,0 -g1,7099:6630773,15347536 -g1,7099:6630773,15347536 -g1,7099:6303093,15347536 -(1,7099:6303093,15347536:0,0,0 -) -g1,7099:6630773,15347536 -) -g1,7101:7579210,15347536 -g1,7101:7895356,15347536 -g1,7101:9159939,15347536 -g1,7101:11056813,15347536 -g1,7101:12953687,15347536 -g1,7101:14850561,15347536 -g1,7101:16747435,15347536 -g1,7101:18644309,15347536 -g1,7101:20541183,15347536 -h1,7101:21489620,15347536:0,0,0 -k1,7101:32583029,15347536:11093409 -g1,7101:32583029,15347536 -) -] -) -g1,7102:32583029,15423557 -g1,7102:6630773,15423557 -g1,7102:6630773,15423557 -g1,7102:32583029,15423557 -g1,7102:32583029,15423557 -) -h1,7102:6630773,15620165:0,0,0 -v1,7106:6630773,17025086:0,393216,0 -(1,7110:6630773,17346474:25952256,714604,196608 -g1,7110:6630773,17346474 -g1,7110:6630773,17346474 -g1,7110:6434165,17346474 -(1,7110:6434165,17346474:0,714604,196608 -r1,7180:32779637,17346474:26345472,911212,196608 -k1,7110:6434165,17346474:-26345472 -) -(1,7110:6434165,17346474:26345472,714604,196608 -[1,7110:6630773,17346474:25952256,517996,0 -(1,7108:6630773,17238996:25952256,410518,107478 -(1,7107:6630773,17238996:0,0,0 -g1,7107:6630773,17238996 -g1,7107:6630773,17238996 -g1,7107:6303093,17238996 -(1,7107:6303093,17238996:0,0,0 -) -g1,7107:6630773,17238996 -) -g1,7108:8843793,17238996 -g1,7108:9792231,17238996 -g1,7108:13585980,17238996 -g1,7108:14534418,17238996 -g1,7108:17063584,17238996 -g1,7108:17695876,17238996 -h1,7108:18328167,17238996:0,0,0 -k1,7108:32583029,17238996:14254862 -g1,7108:32583029,17238996 -) -] -) -g1,7110:32583029,17346474 -g1,7110:6630773,17346474 -g1,7110:6630773,17346474 -g1,7110:32583029,17346474 -g1,7110:32583029,17346474 -) -h1,7110:6630773,17543082:0,0,0 -v1,7114:6630773,18948002:0,393216,0 -(1,7128:6630773,24588328:25952256,6033542,196608 -g1,7128:6630773,24588328 -g1,7128:6630773,24588328 -g1,7128:6434165,24588328 -(1,7128:6434165,24588328:0,6033542,196608 -r1,7180:32779637,24588328:26345472,6230150,196608 -k1,7128:6434165,24588328:-26345472 -) -(1,7128:6434165,24588328:26345472,6033542,196608 -[1,7128:6630773,24588328:25952256,5836934,0 -(1,7116:6630773,19161912:25952256,410518,101187 -(1,7115:6630773,19161912:0,0,0 -g1,7115:6630773,19161912 -g1,7115:6630773,19161912 -g1,7115:6303093,19161912 -(1,7115:6303093,19161912:0,0,0 -) -g1,7115:6630773,19161912 -) -g1,7116:7263065,19161912 -g1,7116:8211503,19161912 -g1,7116:11056815,19161912 -g1,7116:11689107,19161912 -g1,7116:14850564,19161912 -g1,7116:16115147,19161912 -g1,7116:16747439,19161912 -g1,7116:19276605,19161912 -g1,7116:19908897,19161912 -g1,7116:20541189,19161912 -h1,7116:21173481,19161912:0,0,0 -k1,7116:32583029,19161912:11409548 -g1,7116:32583029,19161912 -) -(1,7117:6630773,19828090:25952256,404226,76021 -h1,7117:6630773,19828090:0,0,0 -k1,7117:6630773,19828090:0 -h1,7117:8527647,19828090:0,0,0 -k1,7117:32583029,19828090:24055382 -g1,7117:32583029,19828090 -) -(1,7127:6630773,20559804:25952256,410518,9436 -(1,7119:6630773,20559804:0,0,0 -g1,7119:6630773,20559804 -g1,7119:6630773,20559804 -g1,7119:6303093,20559804 -(1,7119:6303093,20559804:0,0,0 -) -g1,7119:6630773,20559804 -) -g1,7127:7579210,20559804 -g1,7127:9159939,20559804 -g1,7127:10108376,20559804 -h1,7127:10424522,20559804:0,0,0 -k1,7127:32583030,20559804:22158508 -g1,7127:32583030,20559804 -) -(1,7127:6630773,21225982:25952256,410518,31456 -h1,7127:6630773,21225982:0,0,0 -g1,7127:7579210,21225982 -g1,7127:7895356,21225982 -g1,7127:8527648,21225982 -g1,7127:9159940,21225982 -g1,7127:10424523,21225982 -h1,7127:11689106,21225982:0,0,0 -k1,7127:32583030,21225982:20893924 -g1,7127:32583030,21225982 -) -(1,7127:6630773,21892160:25952256,410518,31456 -h1,7127:6630773,21892160:0,0,0 -g1,7127:7579210,21892160 -g1,7127:7895356,21892160 -g1,7127:8527648,21892160 -g1,7127:9159940,21892160 -g1,7127:10424523,21892160 -h1,7127:11689106,21892160:0,0,0 -k1,7127:32583030,21892160:20893924 -g1,7127:32583030,21892160 -) -(1,7127:6630773,22558338:25952256,410518,31456 -h1,7127:6630773,22558338:0,0,0 -g1,7127:7579210,22558338 -g1,7127:7895356,22558338 -g1,7127:8527648,22558338 -g1,7127:9159940,22558338 -g1,7127:10424523,22558338 -h1,7127:11689106,22558338:0,0,0 -k1,7127:32583030,22558338:20893924 -g1,7127:32583030,22558338 -) -(1,7127:6630773,23224516:25952256,410518,31456 -h1,7127:6630773,23224516:0,0,0 -g1,7127:7579210,23224516 -g1,7127:7895356,23224516 -g1,7127:8527648,23224516 -g1,7127:9159940,23224516 -g1,7127:10424523,23224516 -h1,7127:11689106,23224516:0,0,0 -k1,7127:32583030,23224516:20893924 -g1,7127:32583030,23224516 -) -(1,7127:6630773,23890694:25952256,410518,31456 -h1,7127:6630773,23890694:0,0,0 -g1,7127:7579210,23890694 -g1,7127:7895356,23890694 -g1,7127:8527648,23890694 -g1,7127:9159940,23890694 -g1,7127:10424523,23890694 -h1,7127:11689106,23890694:0,0,0 -k1,7127:32583030,23890694:20893924 -g1,7127:32583030,23890694 -) -(1,7127:6630773,24556872:25952256,410518,31456 -h1,7127:6630773,24556872:0,0,0 -g1,7127:7579210,24556872 -g1,7127:7895356,24556872 -g1,7127:8527648,24556872 -g1,7127:9159940,24556872 -g1,7127:10424523,24556872 -h1,7127:11689106,24556872:0,0,0 -k1,7127:32583030,24556872:20893924 -g1,7127:32583030,24556872 -) -] -) -g1,7128:32583029,24588328 -g1,7128:6630773,24588328 -g1,7128:6630773,24588328 -g1,7128:32583029,24588328 -g1,7128:32583029,24588328 -) -h1,7128:6630773,24784936:0,0,0 -v1,7132:6630773,26189857:0,393216,0 -(1,7140:6630773,27877680:25952256,2081039,196608 -g1,7140:6630773,27877680 -g1,7140:6630773,27877680 -g1,7140:6434165,27877680 -(1,7140:6434165,27877680:0,2081039,196608 -r1,7180:32779637,27877680:26345472,2277647,196608 -k1,7140:6434165,27877680:-26345472 -) -(1,7140:6434165,27877680:26345472,2081039,196608 -[1,7140:6630773,27877680:25952256,1884431,0 -(1,7134:6630773,26403767:25952256,410518,101187 -(1,7133:6630773,26403767:0,0,0 -g1,7133:6630773,26403767 -g1,7133:6630773,26403767 -g1,7133:6303093,26403767 -(1,7133:6303093,26403767:0,0,0 -) -g1,7133:6630773,26403767 -) -g1,7134:7263065,26403767 -g1,7134:8211503,26403767 -g1,7134:11056815,26403767 -g1,7134:11689107,26403767 -g1,7134:14850564,26403767 -g1,7134:16115147,26403767 -g1,7134:16747439,26403767 -g1,7134:19276605,26403767 -g1,7134:19908897,26403767 -g1,7134:20541189,26403767 -h1,7134:21173481,26403767:0,0,0 -k1,7134:32583029,26403767:11409548 -g1,7134:32583029,26403767 -) -(1,7135:6630773,27069945:25952256,404226,76021 -h1,7135:6630773,27069945:0,0,0 -k1,7135:6630773,27069945:0 -h1,7135:8527647,27069945:0,0,0 -k1,7135:32583029,27069945:24055382 -g1,7135:32583029,27069945 -) -(1,7139:6630773,27801659:25952256,404226,76021 -(1,7137:6630773,27801659:0,0,0 -g1,7137:6630773,27801659 -g1,7137:6630773,27801659 -g1,7137:6303093,27801659 -(1,7137:6303093,27801659:0,0,0 -) -g1,7137:6630773,27801659 -) -g1,7139:7579210,27801659 -g1,7139:7895356,27801659 -g1,7139:9159939,27801659 -g1,7139:11056813,27801659 -g1,7139:12637542,27801659 -g1,7139:14218271,27801659 -g1,7139:15799000,27801659 -g1,7139:17379729,27801659 -g1,7139:18960458,27801659 -h1,7139:19908895,27801659:0,0,0 -k1,7139:32583029,27801659:12674134 -g1,7139:32583029,27801659 -) -] -) -g1,7140:32583029,27877680 -g1,7140:6630773,27877680 -g1,7140:6630773,27877680 -g1,7140:32583029,27877680 -g1,7140:32583029,27877680 -) -h1,7140:6630773,28074288:0,0,0 -v1,7144:6630773,29479208:0,393216,0 -(1,7158:6630773,35119534:25952256,6033542,196608 -g1,7158:6630773,35119534 -g1,7158:6630773,35119534 -g1,7158:6434165,35119534 -(1,7158:6434165,35119534:0,6033542,196608 -r1,7180:32779637,35119534:26345472,6230150,196608 -k1,7158:6434165,35119534:-26345472 -) -(1,7158:6434165,35119534:26345472,6033542,196608 -[1,7158:6630773,35119534:25952256,5836934,0 -(1,7146:6630773,29693118:25952256,410518,101187 -(1,7145:6630773,29693118:0,0,0 -g1,7145:6630773,29693118 -g1,7145:6630773,29693118 -g1,7145:6303093,29693118 -(1,7145:6303093,29693118:0,0,0 -) -g1,7145:6630773,29693118 -) -g1,7146:7263065,29693118 -g1,7146:8211503,29693118 -g1,7146:11056815,29693118 -g1,7146:11689107,29693118 -g1,7146:14850564,29693118 -g1,7146:16115147,29693118 -g1,7146:16747439,29693118 -g1,7146:19276605,29693118 -g1,7146:19908897,29693118 -g1,7146:20541189,29693118 -g1,7146:21489627,29693118 -g1,7146:24334938,29693118 -g1,7146:24967230,29693118 -h1,7146:26864104,29693118:0,0,0 -k1,7146:32583029,29693118:5718925 -g1,7146:32583029,29693118 -) -(1,7147:6630773,30359296:25952256,404226,76021 -h1,7147:6630773,30359296:0,0,0 -k1,7147:6630773,30359296:0 -h1,7147:8527647,30359296:0,0,0 -k1,7147:32583029,30359296:24055382 -g1,7147:32583029,30359296 -) -(1,7157:6630773,31091010:25952256,410518,9436 -(1,7149:6630773,31091010:0,0,0 -g1,7149:6630773,31091010 -g1,7149:6630773,31091010 -g1,7149:6303093,31091010 -(1,7149:6303093,31091010:0,0,0 -) -g1,7149:6630773,31091010 -) -g1,7157:7579210,31091010 -g1,7157:9159939,31091010 -g1,7157:10108376,31091010 -h1,7157:10424522,31091010:0,0,0 -k1,7157:32583030,31091010:22158508 -g1,7157:32583030,31091010 -) -(1,7157:6630773,31757188:25952256,410518,31456 -h1,7157:6630773,31757188:0,0,0 -g1,7157:7579210,31757188 -g1,7157:7895356,31757188 -g1,7157:8527648,31757188 -g1,7157:9159940,31757188 -g1,7157:10424523,31757188 -h1,7157:11689106,31757188:0,0,0 -k1,7157:32583030,31757188:20893924 -g1,7157:32583030,31757188 -) -(1,7157:6630773,32423366:25952256,410518,31456 -h1,7157:6630773,32423366:0,0,0 -g1,7157:7579210,32423366 -g1,7157:7895356,32423366 -g1,7157:8527648,32423366 -g1,7157:9159940,32423366 -g1,7157:10424523,32423366 -h1,7157:11689106,32423366:0,0,0 -k1,7157:32583030,32423366:20893924 -g1,7157:32583030,32423366 -) -(1,7157:6630773,33089544:25952256,410518,31456 -h1,7157:6630773,33089544:0,0,0 -g1,7157:7579210,33089544 -g1,7157:7895356,33089544 -g1,7157:8527648,33089544 -g1,7157:9159940,33089544 -g1,7157:10424523,33089544 -h1,7157:11689106,33089544:0,0,0 -k1,7157:32583030,33089544:20893924 -g1,7157:32583030,33089544 -) -(1,7157:6630773,33755722:25952256,410518,31456 -h1,7157:6630773,33755722:0,0,0 -g1,7157:7579210,33755722 -g1,7157:7895356,33755722 -g1,7157:8527648,33755722 -g1,7157:9159940,33755722 -g1,7157:10424523,33755722 -h1,7157:11689106,33755722:0,0,0 -k1,7157:32583030,33755722:20893924 -g1,7157:32583030,33755722 -) -(1,7157:6630773,34421900:25952256,410518,31456 -h1,7157:6630773,34421900:0,0,0 -g1,7157:7579210,34421900 -g1,7157:7895356,34421900 -g1,7157:8527648,34421900 -g1,7157:9159940,34421900 -g1,7157:10424523,34421900 -h1,7157:11689106,34421900:0,0,0 -k1,7157:32583030,34421900:20893924 -g1,7157:32583030,34421900 -) -(1,7157:6630773,35088078:25952256,410518,31456 -h1,7157:6630773,35088078:0,0,0 -g1,7157:7579210,35088078 -g1,7157:7895356,35088078 -g1,7157:8527648,35088078 -g1,7157:9159940,35088078 -g1,7157:10424523,35088078 -h1,7157:11689106,35088078:0,0,0 -k1,7157:32583030,35088078:20893924 -g1,7157:32583030,35088078 -) -] -) -g1,7158:32583029,35119534 -g1,7158:6630773,35119534 -g1,7158:6630773,35119534 -g1,7158:32583029,35119534 -g1,7158:32583029,35119534 -) -h1,7158:6630773,35316142:0,0,0 -(1,7162:6630773,36527002:25952256,505283,126483 -h1,7161:6630773,36527002:983040,0,0 -k1,7161:8818833,36527002:251471 -k1,7161:10174586,36527002:251471 -k1,7161:11451040,36527002:251471 -k1,7161:13557834,36527002:251470 -k1,7161:15093811,36527002:251471 -k1,7161:16364367,36527002:251471 -k1,7161:19824481,36527002:251471 -k1,7161:22249126,36527002:251471 -k1,7161:23492157,36527002:251471 -k1,7161:24762713,36527002:251471 -k1,7161:26667656,36527002:251470 -k1,7161:27535165,36527002:251471 -k1,7161:28805721,36527002:251471 -k1,7161:30711976,36527002:251471 -k1,7161:32583029,36527002:0 -) -(1,7162:6630773,37368490:25952256,513147,134348 -g1,7161:7902171,37368490 -g1,7161:9120485,37368490 -g1,7161:10874883,37368490 -g1,7161:12265557,37368490 -g1,7161:15396211,37368490 -g1,7161:16254732,37368490 -g1,7161:17473046,37368490 -g1,7161:19962103,37368490 -g1,7161:22940059,37368490 -k1,7162:32583029,37368490:7726042 -g1,7162:32583029,37368490 -) -(1,7164:6630773,38209978:25952256,513147,134348 -h1,7163:6630773,38209978:983040,0,0 -k1,7163:11642713,38209978:196355 -k1,7163:14864866,38209978:196356 -k1,7163:16165503,38209978:196355 -k1,7163:17109625,38209978:196356 -k1,7163:19687558,38209978:196355 -k1,7163:20693283,38209978:196355 -k1,7163:21908724,38209978:196356 -k1,7163:22900686,38209978:196355 -k1,7163:24288486,38209978:196355 -k1,7163:26690129,38209978:196356 -k1,7163:27537912,38209978:196355 -(1,7163:27537912,38209978:0,414482,115847 -r1,7180:28599601,38209978:1061689,530329,115847 -k1,7163:27537912,38209978:-1061689 -) -(1,7163:27537912,38209978:1061689,414482,115847 -k1,7163:27537912,38209978:3277 -h1,7163:28596324,38209978:0,411205,112570 -) -k1,7163:28969627,38209978:196356 -k1,7163:31837885,38209978:196355 -k1,7163:32583029,38209978:0 -) -(1,7164:6630773,39051466:25952256,505283,126483 -g1,7163:7481430,39051466 -g1,7163:10144157,39051466 -g1,7163:11362471,39051466 -g1,7163:14553419,39051466 -g1,7163:16607972,39051466 -g1,7163:18457398,39051466 -g1,7163:21578222,39051466 -g1,7163:23360145,39051466 -g1,7163:24578459,39051466 -g1,7163:27019019,39051466 -g1,7163:28374958,39051466 -k1,7164:32583029,39051466:1751782 -g1,7164:32583029,39051466 -) -v1,7166:6630773,40087015:0,393216,0 -(1,7174:6630773,41774838:25952256,2081039,196608 -g1,7174:6630773,41774838 -g1,7174:6630773,41774838 -g1,7174:6434165,41774838 -(1,7174:6434165,41774838:0,2081039,196608 -r1,7180:32779637,41774838:26345472,2277647,196608 -k1,7174:6434165,41774838:-26345472 -) -(1,7174:6434165,41774838:26345472,2081039,196608 -[1,7174:6630773,41774838:25952256,1884431,0 -(1,7168:6630773,40300925:25952256,410518,107478 -(1,7167:6630773,40300925:0,0,0 -g1,7167:6630773,40300925 -g1,7167:6630773,40300925 -g1,7167:6303093,40300925 -(1,7167:6303093,40300925:0,0,0 -) -g1,7167:6630773,40300925 -) -g1,7168:7263065,40300925 -g1,7168:8211503,40300925 -g1,7168:11056815,40300925 -g1,7168:11689107,40300925 -g1,7168:14850564,40300925 -g1,7168:16115147,40300925 -g1,7168:16747439,40300925 -g1,7168:20541188,40300925 -g1,7168:21489626,40300925 -g1,7168:24018792,40300925 -g1,7168:24651084,40300925 -g1,7168:25915667,40300925 -g1,7168:26547959,40300925 -g1,7168:27180251,40300925 -h1,7168:27812543,40300925:0,0,0 -k1,7168:32583029,40300925:4770486 -g1,7168:32583029,40300925 -) -(1,7169:6630773,40967103:25952256,404226,76021 -h1,7169:6630773,40967103:0,0,0 -k1,7169:6630773,40967103:0 -h1,7169:8527647,40967103:0,0,0 -k1,7169:32583029,40967103:24055382 -g1,7169:32583029,40967103 -) -(1,7173:6630773,41698817:25952256,404226,76021 -(1,7171:6630773,41698817:0,0,0 -g1,7171:6630773,41698817 -g1,7171:6630773,41698817 -g1,7171:6303093,41698817 -(1,7171:6303093,41698817:0,0,0 -) -g1,7171:6630773,41698817 -) -g1,7173:7579210,41698817 -g1,7173:7895356,41698817 -g1,7173:9159939,41698817 -g1,7173:11056813,41698817 -g1,7173:12637542,41698817 -g1,7173:14218271,41698817 -g1,7173:15799000,41698817 -g1,7173:17379729,41698817 -g1,7173:18960458,41698817 -h1,7173:19908895,41698817:0,0,0 -k1,7173:32583029,41698817:12674134 -g1,7173:32583029,41698817 -) -] -) -g1,7174:32583029,41774838 -g1,7174:6630773,41774838 -g1,7174:6630773,41774838 -g1,7174:32583029,41774838 -g1,7174:32583029,41774838 -) -h1,7174:6630773,41971446:0,0,0 -(1,7178:6630773,43182305:25952256,513147,134348 -h1,7177:6630773,43182305:983040,0,0 -k1,7177:8590791,43182305:202998 -k1,7177:11076407,43182305:202997 -k1,7177:11965567,43182305:202998 -k1,7177:15297909,43182305:202998 -k1,7177:16116944,43182305:202997 -k1,7177:18598629,43182305:202998 -h1,7177:20141347,43182305:0,0,0 -k1,7177:20344345,43182305:202998 -k1,7177:21356712,43182305:202997 -k1,7177:23057863,43182305:202998 -h1,7177:24253240,43182305:0,0,0 -k1,7177:24629908,43182305:202998 -k1,7177:26530943,43182305:202997 -k1,7177:29245936,43182305:202998 -k1,7177:32583029,43182305:0 -) -(1,7178:6630773,44023793:25952256,513147,126483 -k1,7177:9879896,44023793:223326 -k1,7177:11094783,44023793:223327 -k1,7177:14275749,44023793:223326 -k1,7177:16007714,44023793:223326 -k1,7177:17323526,44023793:223327 -k1,7177:19727235,44023793:223326 -k1,7177:20698327,44023793:223326 -k1,7177:24108669,44023793:223326 -k1,7177:25256054,44023793:223327 -k1,7177:26498465,44023793:223326 -k1,7177:28423761,44023793:223326 -k1,7177:30427046,44023793:223327 -k1,7177:32117068,44023793:223326 -k1,7177:32583029,44023793:0 -) -(1,7178:6630773,44865281:25952256,513147,126483 -k1,7177:8578150,44865281:154967 -k1,7177:11758914,44865281:154967 -k1,7177:12905442,44865281:154968 -k1,7177:15347616,44865281:154967 -k1,7177:16568854,44865281:154967 -k1,7177:17409983,44865281:154967 -k1,7177:18772780,44865281:154968 -k1,7177:19613909,44865281:154967 -k1,7177:23105969,44865281:154967 -k1,7177:26460404,44865281:154967 -k1,7177:27995560,44865281:154968 -k1,7177:29142087,44865281:154967 -k1,7177:31140582,44865281:154967 -k1,7177:32583029,44865281:0 -) -(1,7178:6630773,45706769:25952256,505283,126483 -g1,7177:7849087,45706769 -g1,7177:11353297,45706769 -(1,7177:11353297,45706769:0,459977,115847 -r1,7180:13118410,45706769:1765113,575824,115847 -k1,7177:11353297,45706769:-1765113 -) -(1,7177:11353297,45706769:1765113,459977,115847 -k1,7177:11353297,45706769:3277 -h1,7177:13115133,45706769:0,411205,112570 -) -g1,7177:13317639,45706769 -k1,7178:32583029,45706769:17346496 -g1,7178:32583029,45706769 -) -] -(1,7180:32583029,45706769:0,0,0 -g1,7180:32583029,45706769 -) -) -] -(1,7180:6630773,47279633:25952256,0,0 -h1,7180:6630773,47279633:25952256,0,0 -) -] -(1,7180:4262630,4025873:0,0,0 -[1,7180:-473656,4025873:0,0,0 -(1,7180:-473656,-710413:0,0,0 -(1,7180:-473656,-710413:0,0,0 -g1,7180:-473656,-710413 -) -g1,7180:-473656,-710413 -) -] -) -] -!25073 -}136 -Input:1118:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1119:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1120:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1121:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1122:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1123:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1124:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1125:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1126:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1127:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!932 -{137 -[1,7254:4262630,47279633:28320399,43253760,0 -(1,7254:4262630,4025873:0,0,0 -[1,7254:-473656,4025873:0,0,0 -(1,7254:-473656,-710413:0,0,0 -(1,7254:-473656,-644877:0,0,0 -k1,7254:-473656,-644877:-65536 -) -(1,7254:-473656,4736287:0,0,0 -k1,7254:-473656,4736287:5209943 -) -g1,7254:-473656,-710413 -) -] -) -[1,7254:6630773,47279633:25952256,43253760,0 -[1,7254:6630773,4812305:25952256,786432,0 -(1,7254:6630773,4812305:25952256,505283,134348 -(1,7254:6630773,4812305:25952256,505283,134348 -g1,7254:3078558,4812305 -[1,7254:3078558,4812305:0,0,0 -(1,7254:3078558,2439708:0,1703936,0 -k1,7254:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,7254:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,7254:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,7254:3078558,4812305:0,0,0 -(1,7254:3078558,2439708:0,1703936,0 -g1,7254:29030814,2439708 -g1,7254:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,7254:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,7254:37855564,2439708:1179648,16384,0 -) -) -k1,7254:3078556,2439708:-34777008 -) -] -[1,7254:3078558,4812305:0,0,0 -(1,7254:3078558,49800853:0,16384,2228224 -k1,7254:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,7254:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,7254:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,7254:3078558,4812305:0,0,0 -(1,7254:3078558,49800853:0,16384,2228224 -g1,7254:29030814,49800853 -g1,7254:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,7254:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,7254:37855564,49800853:1179648,16384,0 -) -) -k1,7254:3078556,49800853:-34777008 -) -] -g1,7254:6630773,4812305 -k1,7254:18771974,4812305:10945824 -g1,7254:20158715,4812305 -g1,7254:20807521,4812305 -g1,7254:24121676,4812305 -g1,7254:28605649,4812305 -g1,7254:30015328,4812305 -) -) -] -[1,7254:6630773,45706769:25952256,40108032,0 -(1,7254:6630773,45706769:25952256,40108032,0 -(1,7254:6630773,45706769:0,0,0 -g1,7254:6630773,45706769 -) -[1,7254:6630773,45706769:25952256,40108032,0 -v1,7180:6630773,6254097:0,393216,0 -(1,7188:6630773,7935628:25952256,2074747,196608 -g1,7188:6630773,7935628 -g1,7188:6630773,7935628 -g1,7188:6434165,7935628 -(1,7188:6434165,7935628:0,2074747,196608 -r1,7254:32779637,7935628:26345472,2271355,196608 -k1,7188:6434165,7935628:-26345472 -) -(1,7188:6434165,7935628:26345472,2074747,196608 -[1,7188:6630773,7935628:25952256,1878139,0 -(1,7182:6630773,6461715:25952256,404226,107478 -(1,7181:6630773,6461715:0,0,0 -g1,7181:6630773,6461715 -g1,7181:6630773,6461715 -g1,7181:6303093,6461715 -(1,7181:6303093,6461715:0,0,0 -) -g1,7181:6630773,6461715 -) -g1,7182:7263065,6461715 -g1,7182:8211503,6461715 -g1,7182:12637543,6461715 -g1,7182:13269835,6461715 -h1,7182:13585981,6461715:0,0,0 -k1,7182:32583029,6461715:18997048 -g1,7182:32583029,6461715 -) -(1,7183:6630773,7127893:25952256,404226,76021 -h1,7183:6630773,7127893:0,0,0 -k1,7183:6630773,7127893:0 -h1,7183:8527647,7127893:0,0,0 -k1,7183:32583029,7127893:24055382 -g1,7183:32583029,7127893 -) -(1,7187:6630773,7859607:25952256,404226,76021 -(1,7185:6630773,7859607:0,0,0 -g1,7185:6630773,7859607 -g1,7185:6630773,7859607 -g1,7185:6303093,7859607 -(1,7185:6303093,7859607:0,0,0 -) -g1,7185:6630773,7859607 -) -g1,7187:7579210,7859607 -g1,7187:7895356,7859607 -g1,7187:9159939,7859607 -g1,7187:11056813,7859607 -g1,7187:12637542,7859607 -g1,7187:14218271,7859607 -g1,7187:15799000,7859607 -g1,7187:17379729,7859607 -g1,7187:18960458,7859607 -h1,7187:19908895,7859607:0,0,0 -k1,7187:32583029,7859607:12674134 -g1,7187:32583029,7859607 -) -] -) -g1,7188:32583029,7935628 -g1,7188:6630773,7935628 -g1,7188:6630773,7935628 -g1,7188:32583029,7935628 -g1,7188:32583029,7935628 -) -h1,7188:6630773,8132236:0,0,0 -v1,7192:6630773,9602868:0,393216,0 -(1,7250:6630773,41960979:25952256,32751327,616038 -g1,7250:6630773,41960979 -(1,7250:6630773,41960979:25952256,32751327,616038 -(1,7250:6630773,42577017:25952256,33367365,0 -[1,7250:6630773,42577017:25952256,33367365,0 -(1,7250:6630773,42550803:25952256,33314937,0 -r1,7254:6656987,42550803:26214,33314937,0 -[1,7250:6656987,42550803:25899828,33314937,0 -(1,7250:6656987,41960979:25899828,32135289,0 -[1,7250:7246811,41960979:24720180,32135289,0 -(1,7193:7246811,10987575:24720180,1161885,196608 -(1,7192:7246811,10987575:0,1161885,196608 -r1,7254:8794447,10987575:1547636,1358493,196608 -k1,7192:7246811,10987575:-1547636 -) -(1,7192:7246811,10987575:1547636,1161885,196608 -) -k1,7192:9002436,10987575:207989 -k1,7192:12000294,10987575:207990 -(1,7192:12000294,10987575:0,452978,115847 -r1,7254:14820543,10987575:2820249,568825,115847 -k1,7192:12000294,10987575:-2820249 -) -(1,7192:12000294,10987575:2820249,452978,115847 -k1,7192:12000294,10987575:3277 -h1,7192:14817266,10987575:0,411205,112570 -) -k1,7192:15028532,10987575:207989 -k1,7192:16340804,10987575:207990 -k1,7192:17296559,10987575:207989 -k1,7192:19091176,10987575:207990 -k1,7192:19950593,10987575:207989 -k1,7192:21251067,10987575:207989 -k1,7192:22145219,10987575:207990 -k1,7192:23372293,10987575:207989 -k1,7192:25362862,10987575:207990 -k1,7192:26230143,10987575:207989 -k1,7192:29216860,10987575:207990 -k1,7192:31435494,10987575:207989 -k1,7192:31966991,10987575:0 -) -(1,7193:7246811,11829063:24720180,513147,134348 -k1,7192:10377029,11829063:145053 -k1,7192:12010405,11829063:145053 -k1,7192:12686955,11829063:145053 -k1,7192:13187868,11829063:145053 -k1,7192:15962881,11829063:145053 -k1,7192:17345908,11829063:145052 -k1,7192:18150253,11829063:145053 -k1,7192:21309307,11829063:145053 -k1,7192:23522676,11829063:145053 -k1,7192:24859174,11829063:145053 -k1,7192:27988737,11829063:145053 -k1,7192:30166717,11829063:145053 -k1,7193:31966991,11829063:0 -) -(1,7193:7246811,12670551:24720180,513147,126483 -k1,7192:8463019,12670551:180084 -k1,7192:10951280,12670551:180083 -k1,7192:11744126,12670551:180084 -k1,7192:13375831,12670551:180083 -k1,7192:15533792,12670551:180084 -k1,7192:17463031,12670551:180083 -k1,7192:20257346,12670551:180084 -k1,7192:22005051,12670551:180084 -k1,7192:22540994,12670551:180083 -k1,7192:23714604,12670551:180084 -k1,7192:24553979,12670551:180083 -k1,7192:27215911,12670551:180084 -k1,7192:29270324,12670551:180083 -k1,7192:31219225,12670551:180084 -k1,7192:31966991,12670551:0 -) -(1,7193:7246811,13512039:24720180,505283,134348 -k1,7192:9352153,13512039:237566 -k1,7192:12034212,13512039:237566 -k1,7192:14340095,13512039:237567 -k1,7192:15769106,13512039:237566 -k1,7192:19164852,13512039:237566 -k1,7192:20599105,13512039:237566 -k1,7192:23908999,13512039:237566 -k1,7192:26351853,13512039:237567 -k1,7192:27240847,13512039:237566 -(1,7192:27240847,13512039:0,414482,115847 -r1,7254:30412807,13512039:3171960,530329,115847 -k1,7192:27240847,13512039:-3171960 -) -(1,7192:27240847,13512039:3171960,414482,115847 -k1,7192:27240847,13512039:3277 -h1,7192:30409530,13512039:0,411205,112570 -) -k1,7192:30650373,13512039:237566 -k1,7193:31966991,13512039:0 -) -(1,7193:7246811,14353527:24720180,513147,134348 -k1,7192:9071520,14353527:167959 -k1,7192:9595340,14353527:167960 -k1,7192:12573483,14353527:167959 -k1,7192:13689093,14353527:167959 -k1,7192:14876138,14353527:167960 -k1,7192:16430183,14353527:167959 -k1,7192:17257434,14353527:167959 -k1,7192:18444479,14353527:167960 -k1,7192:20623083,14353527:167959 -k1,7192:22471386,14353527:167960 -k1,7192:23830790,14353527:167959 -k1,7192:24787147,14353527:167959 -k1,7192:28997368,14353527:167960 -k1,7192:30432793,14353527:167959 -k1,7192:31966991,14353527:0 -) -(1,7193:7246811,15195015:24720180,505283,134348 -k1,7192:8648677,15195015:210421 -k1,7192:11745959,15195015:210421 -k1,7192:13982098,15195015:210421 -k1,7192:15477024,15195015:210420 -k1,7192:16706530,15195015:210421 -k1,7192:18451149,15195015:210421 -k1,7192:19277608,15195015:210421 -k1,7192:20507114,15195015:210421 -k1,7192:22876291,15195015:210421 -k1,7192:24078271,15195015:210420 -k1,7192:25619073,15195015:210421 -k1,7192:27988250,15195015:210421 -k1,7192:31315563,15195015:210421 -k1,7192:31966991,15195015:0 -) -(1,7193:7246811,16036503:24720180,505283,115847 -g1,7192:8465125,16036503 -g1,7192:10732670,16036503 -g1,7192:11547937,16036503 -(1,7192:11547937,16036503:0,414482,115847 -r1,7254:14719897,16036503:3171960,530329,115847 -k1,7192:11547937,16036503:-3171960 -) -(1,7192:11547937,16036503:3171960,414482,115847 -k1,7192:11547937,16036503:3277 -h1,7192:14716620,16036503:0,411205,112570 -) -k1,7193:31966991,16036503:17073424 -g1,7193:31966991,16036503 -) -(1,7195:7246811,16877991:24720180,513147,134348 -h1,7194:7246811,16877991:983040,0,0 -k1,7194:9395655,16877991:212255 -k1,7194:10914042,16877991:212254 -k1,7194:12218782,16877991:212255 -(1,7194:12218782,16877991:0,452978,115847 -r1,7254:15039031,16877991:2820249,568825,115847 -k1,7194:12218782,16877991:-2820249 -) -(1,7194:12218782,16877991:2820249,452978,115847 -k1,7194:12218782,16877991:3277 -h1,7194:15035754,16877991:0,411205,112570 -) -k1,7194:15251285,16877991:212254 -k1,7194:16114968,16877991:212255 -k1,7194:18256602,16877991:212254 -k1,7194:19487942,16877991:212255 -k1,7194:21659722,16877991:212254 -(1,7194:21659722,16877991:0,452978,115847 -r1,7254:23776547,16877991:2116825,568825,115847 -k1,7194:21659722,16877991:-2116825 -) -(1,7194:21659722,16877991:2116825,452978,115847 -k1,7194:21659722,16877991:3277 -h1,7194:23773270,16877991:0,411205,112570 -) -k1,7194:23988802,16877991:212255 -k1,7194:27563053,16877991:212254 -k1,7194:30403957,16877991:212255 -k1,7194:31966991,16877991:0 -) -(1,7195:7246811,17719479:24720180,513147,134348 -k1,7194:8707406,17719479:189197 -k1,7194:9579489,17719479:189198 -k1,7194:11418883,17719479:189197 -k1,7194:14835073,17719479:189197 -k1,7194:17228246,17719479:189198 -k1,7194:20820072,17719479:189197 -k1,7194:22113551,17719479:189197 -k1,7194:23050514,17719479:189197 -k1,7194:25444999,17719479:189198 -k1,7194:26285624,17719479:189197 -k1,7194:27493906,17719479:189197 -k1,7194:30378600,17719479:189198 -k1,7194:31219225,17719479:189197 -k1,7194:31966991,17719479:0 -) -(1,7195:7246811,18560967:24720180,505283,126483 -k1,7195:31966991,18560967:22174762 -g1,7195:31966991,18560967 -) -v1,7197:7246811,19751433:0,393216,0 -(1,7211:7246811,25430032:24720180,6071815,196608 -g1,7211:7246811,25430032 -g1,7211:7246811,25430032 -g1,7211:7050203,25430032 -(1,7211:7050203,25430032:0,6071815,196608 -r1,7254:32163599,25430032:25113396,6268423,196608 -k1,7211:7050203,25430032:-25113396 -) -(1,7211:7050203,25430032:25113396,6071815,196608 -[1,7211:7246811,25430032:24720180,5875207,0 -(1,7199:7246811,19959051:24720180,404226,76021 -(1,7198:7246811,19959051:0,0,0 -g1,7198:7246811,19959051 -g1,7198:7246811,19959051 -g1,7198:6919131,19959051 -(1,7198:6919131,19959051:0,0,0 -) -g1,7198:7246811,19959051 -) -k1,7199:7246811,19959051:0 -h1,7199:12305142,19959051:0,0,0 -k1,7199:31966990,19959051:19661848 -g1,7199:31966990,19959051 -) -(1,7200:7246811,20625229:24720180,404226,101187 -h1,7200:7246811,20625229:0,0,0 -g1,7200:9459831,20625229 -g1,7200:10408269,20625229 -g1,7200:14834310,20625229 -g1,7200:16098894,20625229 -g1,7200:18311914,20625229 -g1,7200:19892643,20625229 -g1,7200:20524935,20625229 -g1,7200:21789518,20625229 -g1,7200:22737955,20625229 -g1,7200:23370247,20625229 -h1,7200:24002539,20625229:0,0,0 -k1,7200:31966991,20625229:7964452 -g1,7200:31966991,20625229 -) -(1,7201:7246811,21291407:24720180,404226,76021 -h1,7201:7246811,21291407:0,0,0 -k1,7201:7246811,21291407:0 -h1,7201:10724413,21291407:0,0,0 -k1,7201:31966991,21291407:21242578 -g1,7201:31966991,21291407 -) -(1,7210:7246811,22023121:24720180,410518,9436 -(1,7203:7246811,22023121:0,0,0 -g1,7203:7246811,22023121 -g1,7203:7246811,22023121 -g1,7203:6919131,22023121 -(1,7203:6919131,22023121:0,0,0 -) -g1,7203:7246811,22023121 -) -g1,7210:8195248,22023121 -g1,7210:9775977,22023121 -g1,7210:10724414,22023121 -h1,7210:11040560,22023121:0,0,0 -k1,7210:31966992,22023121:20926432 -g1,7210:31966992,22023121 -) -(1,7210:7246811,22689299:24720180,410518,76021 -h1,7210:7246811,22689299:0,0,0 -g1,7210:8195248,22689299 -g1,7210:8511394,22689299 -g1,7210:9143686,22689299 -g1,7210:9775978,22689299 -g1,7210:11040561,22689299 -g1,7210:12937435,22689299 -g1,7210:14834309,22689299 -g1,7210:16415038,22689299 -g1,7210:17995767,22689299 -h1,7210:19576495,22689299:0,0,0 -k1,7210:31966991,22689299:12390496 -g1,7210:31966991,22689299 -) -(1,7210:7246811,23355477:24720180,410518,76021 -h1,7210:7246811,23355477:0,0,0 -g1,7210:8195248,23355477 -g1,7210:8511394,23355477 -g1,7210:9143686,23355477 -g1,7210:9775978,23355477 -g1,7210:11040561,23355477 -g1,7210:12937435,23355477 -g1,7210:14518164,23355477 -g1,7210:16098893,23355477 -g1,7210:17679622,23355477 -h1,7210:18944205,23355477:0,0,0 -k1,7210:31966991,23355477:13022786 -g1,7210:31966991,23355477 -) -(1,7210:7246811,24021655:24720180,410518,76021 -h1,7210:7246811,24021655:0,0,0 -g1,7210:8195248,24021655 -g1,7210:8511394,24021655 -g1,7210:9143686,24021655 -g1,7210:9775978,24021655 -g1,7210:11040561,24021655 -g1,7210:12937435,24021655 -g1,7210:14834309,24021655 -g1,7210:16415038,24021655 -g1,7210:17047330,24021655 -h1,7210:18311913,24021655:0,0,0 -k1,7210:31966991,24021655:13655078 -g1,7210:31966991,24021655 -) -(1,7210:7246811,24687833:24720180,410518,76021 -h1,7210:7246811,24687833:0,0,0 -g1,7210:8195248,24687833 -g1,7210:8511394,24687833 -g1,7210:9143686,24687833 -g1,7210:9775978,24687833 -g1,7210:11040561,24687833 -g1,7210:12937435,24687833 -g1,7210:14518164,24687833 -g1,7210:16415038,24687833 -g1,7210:18311912,24687833 -h1,7210:19892640,24687833:0,0,0 -k1,7210:31966991,24687833:12074351 -g1,7210:31966991,24687833 -) -(1,7210:7246811,25354011:24720180,410518,76021 -h1,7210:7246811,25354011:0,0,0 -g1,7210:8195248,25354011 -g1,7210:8511394,25354011 -g1,7210:9143686,25354011 -g1,7210:9775978,25354011 -g1,7210:11040561,25354011 -g1,7210:12937435,25354011 -g1,7210:14518164,25354011 -g1,7210:16415038,25354011 -g1,7210:18311912,25354011 -h1,7210:19892640,25354011:0,0,0 -k1,7210:31966991,25354011:12074351 -g1,7210:31966991,25354011 -) -] -) -g1,7211:31966991,25430032 -g1,7211:7246811,25430032 -g1,7211:7246811,25430032 -g1,7211:31966991,25430032 -g1,7211:31966991,25430032 -) -h1,7211:7246811,25626640:0,0,0 -(1,7215:7246811,26992416:24720180,513147,126483 -h1,7214:7246811,26992416:983040,0,0 -k1,7214:9355155,26992416:171755 -k1,7214:11487747,26992416:171755 -k1,7214:12678586,26992416:171754 -k1,7214:15545837,26992416:171755 -k1,7214:17002098,26992416:171755 -k1,7214:18042205,26992416:171755 -k1,7214:19346421,26992416:171754 -k1,7214:21455420,26992416:171755 -k1,7214:21983035,26992416:171755 -k1,7214:24850286,26992416:171755 -k1,7214:26306546,26992416:171754 -k1,7214:28819247,26992416:171755 -k1,7214:29346862,26992416:171755 -k1,7214:31966991,26992416:0 -) -(1,7215:7246811,27833904:24720180,513147,134348 -g1,7214:9423917,27833904 -g1,7214:10282438,27833904 -g1,7214:12494933,27833904 -k1,7215:31966990,27833904:18899928 -g1,7215:31966990,27833904 -) -v1,7217:7246811,29024370:0,393216,0 -(1,7223:7246811,30646657:24720180,2015503,196608 -g1,7223:7246811,30646657 -g1,7223:7246811,30646657 -g1,7223:7050203,30646657 -(1,7223:7050203,30646657:0,2015503,196608 -r1,7254:32163599,30646657:25113396,2212111,196608 -k1,7223:7050203,30646657:-25113396 -) -(1,7223:7050203,30646657:25113396,2015503,196608 -[1,7223:7246811,30646657:24720180,1818895,0 -(1,7219:7246811,29238280:24720180,410518,82312 -(1,7218:7246811,29238280:0,0,0 -g1,7218:7246811,29238280 -g1,7218:7246811,29238280 -g1,7218:6919131,29238280 -(1,7218:6919131,29238280:0,0,0 -) -g1,7218:7246811,29238280 -) -g1,7219:11040559,29238280 -g1,7219:11988997,29238280 -g1,7219:15782746,29238280 -g1,7219:17679620,29238280 -g1,7219:18311912,29238280 -g1,7219:20524932,29238280 -h1,7219:20841078,29238280:0,0,0 -k1,7219:31966991,29238280:11125913 -g1,7219:31966991,29238280 -) -(1,7220:7246811,29904458:24720180,404226,82312 -h1,7220:7246811,29904458:0,0,0 -g1,7220:7562957,29904458 -g1,7220:7879103,29904458 -g1,7220:8195249,29904458 -g1,7220:8511395,29904458 -g1,7220:8827541,29904458 -g1,7220:9143687,29904458 -g1,7220:9459833,29904458 -g1,7220:12621291,29904458 -g1,7220:14518165,29904458 -g1,7220:15150457,29904458 -g1,7220:17679623,29904458 -g1,7220:17995769,29904458 -g1,7220:19892643,29904458 -g1,7220:21789517,29904458 -g1,7220:22421809,29904458 -h1,7220:24634829,29904458:0,0,0 -k1,7220:31966991,29904458:7332162 -g1,7220:31966991,29904458 -) -(1,7221:7246811,30570636:24720180,404226,76021 -h1,7221:7246811,30570636:0,0,0 -g1,7221:7562957,30570636 -g1,7221:7879103,30570636 -g1,7221:8195249,30570636 -g1,7221:8511395,30570636 -h1,7221:8827541,30570636:0,0,0 -k1,7221:31966991,30570636:23139450 -g1,7221:31966991,30570636 -) -] -) -g1,7223:31966991,30646657 -g1,7223:7246811,30646657 -g1,7223:7246811,30646657 -g1,7223:31966991,30646657 -g1,7223:31966991,30646657 -) -h1,7223:7246811,30843265:0,0,0 -(1,7227:7246811,32209041:24720180,513147,126483 -h1,7226:7246811,32209041:983040,0,0 -k1,7226:9406154,32209041:222754 -k1,7226:11013028,32209041:222754 -k1,7226:12328267,32209041:222754 -(1,7226:12328267,32209041:0,452978,115847 -r1,7254:15148516,32209041:2820249,568825,115847 -k1,7226:12328267,32209041:-2820249 -) -(1,7226:12328267,32209041:2820249,452978,115847 -k1,7226:12328267,32209041:3277 -h1,7226:15145239,32209041:0,411205,112570 -) -k1,7226:15371270,32209041:222754 -k1,7226:16245452,32209041:222754 -k1,7226:18231780,32209041:222754 -k1,7226:19552261,32209041:222753 -k1,7226:22470511,32209041:222754 -k1,7226:23344693,32209041:222754 -k1,7226:25019069,32209041:222754 -k1,7226:27865229,32209041:222754 -k1,7226:30065860,32209041:222754 -k1,7226:30947906,32209041:222754 -k1,7226:31966991,32209041:0 -) -(1,7227:7246811,33050529:24720180,505283,7863 -k1,7227:31966991,33050529:23552984 -g1,7227:31966991,33050529 -) -v1,7229:7246811,34240995:0,393216,0 -(1,7248:7246811,41240083:24720180,7392304,196608 -g1,7248:7246811,41240083 -g1,7248:7246811,41240083 -g1,7248:7050203,41240083 -(1,7248:7050203,41240083:0,7392304,196608 -r1,7254:32163599,41240083:25113396,7588912,196608 -k1,7248:7050203,41240083:-25113396 -) -(1,7248:7050203,41240083:25113396,7392304,196608 -[1,7248:7246811,41240083:24720180,7195696,0 -(1,7231:7246811,34448613:24720180,404226,101187 -(1,7230:7246811,34448613:0,0,0 -g1,7230:7246811,34448613 -g1,7230:7246811,34448613 -g1,7230:6919131,34448613 -(1,7230:6919131,34448613:0,0,0 -) -g1,7230:7246811,34448613 -) -g1,7231:9459831,34448613 -g1,7231:10408269,34448613 -g1,7231:13253581,34448613 -g1,7231:13885873,34448613 -k1,7231:13885873,34448613:0 -h1,7231:16098893,34448613:0,0,0 -k1,7231:31966991,34448613:15868098 -g1,7231:31966991,34448613 -) -(1,7232:7246811,35114791:24720180,404226,82312 -h1,7232:7246811,35114791:0,0,0 -g1,7232:7562957,35114791 -g1,7232:7879103,35114791 -g1,7232:8195249,35114791 -g1,7232:8511395,35114791 -g1,7232:8827541,35114791 -g1,7232:9143687,35114791 -g1,7232:9459833,35114791 -g1,7232:9775979,35114791 -g1,7232:10092125,35114791 -g1,7232:10408271,35114791 -g1,7232:10724417,35114791 -g1,7232:11040563,35114791 -g1,7232:11356709,35114791 -g1,7232:11672855,35114791 -g1,7232:11989001,35114791 -g1,7232:12305147,35114791 -g1,7232:12621293,35114791 -g1,7232:13885876,35114791 -g1,7232:14518168,35114791 -k1,7232:14518168,35114791:0 -h1,7232:18311916,35114791:0,0,0 -k1,7232:31966991,35114791:13655075 -g1,7232:31966991,35114791 -) -(1,7233:7246811,35780969:24720180,404226,82312 -h1,7233:7246811,35780969:0,0,0 -g1,7233:7562957,35780969 -g1,7233:7879103,35780969 -g1,7233:8195249,35780969 -g1,7233:8511395,35780969 -g1,7233:8827541,35780969 -g1,7233:9143687,35780969 -g1,7233:9459833,35780969 -g1,7233:9775979,35780969 -g1,7233:10092125,35780969 -g1,7233:10408271,35780969 -g1,7233:10724417,35780969 -g1,7233:11040563,35780969 -g1,7233:11356709,35780969 -g1,7233:11672855,35780969 -g1,7233:11989001,35780969 -g1,7233:12305147,35780969 -g1,7233:12621293,35780969 -g1,7233:15782750,35780969 -g1,7233:16415042,35780969 -g1,7233:18628063,35780969 -g1,7233:19260355,35780969 -g1,7233:20208793,35780969 -g1,7233:21157230,35780969 -g1,7233:21789522,35780969 -k1,7233:21789522,35780969:0 -h1,7233:22737960,35780969:0,0,0 -k1,7233:31966991,35780969:9229031 -g1,7233:31966991,35780969 -) -(1,7234:7246811,36447147:24720180,404226,76021 -h1,7234:7246811,36447147:0,0,0 -g1,7234:7562957,36447147 -g1,7234:7879103,36447147 -g1,7234:8195249,36447147 -g1,7234:8511395,36447147 -g1,7234:8827541,36447147 -g1,7234:9143687,36447147 -g1,7234:9459833,36447147 -g1,7234:9775979,36447147 -g1,7234:10092125,36447147 -g1,7234:10408271,36447147 -g1,7234:10724417,36447147 -g1,7234:11040563,36447147 -g1,7234:11356709,36447147 -g1,7234:11672855,36447147 -g1,7234:11989001,36447147 -g1,7234:12305147,36447147 -g1,7234:12621293,36447147 -g1,7234:14518167,36447147 -g1,7234:15150459,36447147 -h1,7234:16731188,36447147:0,0,0 -k1,7234:31966991,36447147:15235803 -g1,7234:31966991,36447147 -) -(1,7235:7246811,37113325:24720180,404226,76021 -h1,7235:7246811,37113325:0,0,0 -k1,7235:7246811,37113325:0 -h1,7235:11356704,37113325:0,0,0 -k1,7235:31966992,37113325:20610288 -g1,7235:31966992,37113325 -) -(1,7239:7246811,37845039:24720180,404226,101187 -(1,7237:7246811,37845039:0,0,0 -g1,7237:7246811,37845039 -g1,7237:7246811,37845039 -g1,7237:6919131,37845039 -(1,7237:6919131,37845039:0,0,0 -) -g1,7237:7246811,37845039 -) -g1,7239:8195248,37845039 -g1,7239:9459831,37845039 -g1,7239:12305142,37845039 -h1,7239:14518162,37845039:0,0,0 -k1,7239:31966990,37845039:17448828 -g1,7239:31966990,37845039 -) -(1,7241:7246811,39166577:24720180,404226,6290 -(1,7240:7246811,39166577:0,0,0 -g1,7240:7246811,39166577 -g1,7240:7246811,39166577 -g1,7240:6919131,39166577 -(1,7240:6919131,39166577:0,0,0 -) -g1,7240:7246811,39166577 -) -h1,7241:9143685,39166577:0,0,0 -k1,7241:31966991,39166577:22823306 -g1,7241:31966991,39166577 -) -(1,7247:7246811,39898291:24720180,404226,82312 -(1,7243:7246811,39898291:0,0,0 -g1,7243:7246811,39898291 -g1,7243:7246811,39898291 -g1,7243:6919131,39898291 -(1,7243:6919131,39898291:0,0,0 -) -g1,7243:7246811,39898291 -) -g1,7247:8195248,39898291 -g1,7247:8511394,39898291 -g1,7247:8827540,39898291 -g1,7247:9143686,39898291 -g1,7247:9459832,39898291 -g1,7247:9775978,39898291 -g1,7247:10092124,39898291 -g1,7247:10408270,39898291 -g1,7247:10724416,39898291 -g1,7247:11040562,39898291 -g1,7247:11356708,39898291 -g1,7247:11672854,39898291 -g1,7247:13253583,39898291 -g1,7247:13569729,39898291 -g1,7247:13885875,39898291 -g1,7247:14202021,39898291 -g1,7247:14518167,39898291 -g1,7247:14834313,39898291 -g1,7247:15150459,39898291 -g1,7247:16731188,39898291 -g1,7247:17047334,39898291 -g1,7247:17363480,39898291 -g1,7247:17679626,39898291 -g1,7247:17995772,39898291 -g1,7247:19576501,39898291 -g1,7247:19892647,39898291 -g1,7247:20208793,39898291 -g1,7247:20524939,39898291 -g1,7247:20841085,39898291 -g1,7247:21157231,39898291 -g1,7247:21473377,39898291 -g1,7247:23054106,39898291 -g1,7247:23370252,39898291 -g1,7247:23686398,39898291 -g1,7247:24002544,39898291 -g1,7247:24318690,39898291 -g1,7247:24634836,39898291 -k1,7247:24634836,39898291:0 -h1,7247:25899419,39898291:0,0,0 -k1,7247:31966991,39898291:6067572 -g1,7247:31966991,39898291 -) -(1,7247:7246811,40564469:24720180,388497,9436 -h1,7247:7246811,40564469:0,0,0 -g1,7247:8195248,40564469 -g1,7247:9775977,40564469 -g1,7247:13253580,40564469 -g1,7247:16731183,40564469 -g1,7247:19576494,40564469 -g1,7247:23054097,40564469 -h1,7247:25899408,40564469:0,0,0 -k1,7247:31966991,40564469:6067583 -g1,7247:31966991,40564469 -) -(1,7247:7246811,41230647:24720180,404226,9436 -h1,7247:7246811,41230647:0,0,0 -g1,7247:8195248,41230647 -g1,7247:9143685,41230647 -g1,7247:9459831,41230647 -g1,7247:9775977,41230647 -g1,7247:10092123,41230647 -g1,7247:13253580,41230647 -g1,7247:13569726,41230647 -g1,7247:16731183,41230647 -g1,7247:19576494,41230647 -g1,7247:19892640,41230647 -g1,7247:23054097,41230647 -g1,7247:23370243,41230647 -h1,7247:25899408,41230647:0,0,0 -k1,7247:31966991,41230647:6067583 -g1,7247:31966991,41230647 -) -] -) -g1,7248:31966991,41240083 -g1,7248:7246811,41240083 -g1,7248:7246811,41240083 -g1,7248:31966991,41240083 -g1,7248:31966991,41240083 -) -h1,7248:7246811,41436691:0,0,0 -] -) -] -r1,7254:32583029,42550803:26214,33314937,0 -) -] -) -) -g1,7250:32583029,41960979 -) -h1,7250:6630773,42577017:0,0,0 -v1,7253:6630773,43733077:0,393216,0 -(1,7254:6630773,45116945:25952256,1777084,589824 -g1,7254:6630773,45116945 -(1,7254:6630773,45116945:25952256,1777084,589824 -(1,7254:6630773,45706769:25952256,2366908,0 -[1,7254:6630773,45706769:25952256,2366908,0 -(1,7254:6630773,45706769:25952256,2340694,0 -r1,7254:6656987,45706769:26214,2340694,0 -[1,7254:6656987,45706769:25899828,2340694,0 -(1,7254:6656987,45116945:25899828,1161046,0 -[1,7254:7246811,45116945:24720180,1161046,0 -(1,7254:7246811,45043273:24720180,1087374,134348 -k1,7253:8649716,45043273:193202 -k1,7253:9660808,45043273:193203 -k1,7253:12932236,45043273:193202 -k1,7253:13741477,45043273:193203 -k1,7253:16213366,45043273:193202 -h1,7253:17582413,45043273:0,0,0 -k1,7253:17775615,45043273:193202 -k1,7253:18778188,45043273:193203 -k1,7253:20469543,45043273:193202 -h1,7253:21266461,45043273:0,0,0 -k1,7253:21633333,45043273:193202 -k1,7253:23381705,45043273:193203 -(1,7253:23381705,45043273:0,459977,115847 -r1,7254:26905377,45043273:3523672,575824,115847 -k1,7253:23381705,45043273:-3523672 -) -(1,7253:23381705,45043273:3523672,459977,115847 -k1,7253:23381705,45043273:3277 -h1,7253:26902100,45043273:0,411205,112570 -) -k1,7253:27098579,45043273:193202 -k1,7253:27823279,45043273:193203 -k1,7253:30399370,45043273:193202 -k1,7253:31966991,45043273:0 -) -] -) -] -r1,7254:32583029,45706769:26214,2340694,0 -) -] -) -) -g1,7254:32583029,45116945 -) -] -(1,7254:32583029,45706769:0,0,0 -g1,7254:32583029,45706769 -) -) -] -(1,7254:6630773,47279633:25952256,0,0 -h1,7254:6630773,47279633:25952256,0,0 -) -] -(1,7254:4262630,4025873:0,0,0 -[1,7254:-473656,4025873:0,0,0 -(1,7254:-473656,-710413:0,0,0 -(1,7254:-473656,-710413:0,0,0 -g1,7254:-473656,-710413 -) -g1,7254:-473656,-710413 -) -] -) -] -!26304 -}137 -Input:1128:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1129:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1130:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1131:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1132:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1133:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1134:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1135:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!748 -{138 -[1,7299:4262630,47279633:28320399,43253760,0 -(1,7299:4262630,4025873:0,0,0 -[1,7299:-473656,4025873:0,0,0 -(1,7299:-473656,-710413:0,0,0 -(1,7299:-473656,-644877:0,0,0 -k1,7299:-473656,-644877:-65536 -) -(1,7299:-473656,4736287:0,0,0 -k1,7299:-473656,4736287:5209943 -) -g1,7299:-473656,-710413 -) -] -) -[1,7299:6630773,47279633:25952256,43253760,0 -[1,7299:6630773,4812305:25952256,786432,0 -(1,7299:6630773,4812305:25952256,513147,126483 -(1,7299:6630773,4812305:25952256,513147,126483 -g1,7299:3078558,4812305 -[1,7299:3078558,4812305:0,0,0 -(1,7299:3078558,2439708:0,1703936,0 -k1,7299:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,7299:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,7299:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,7299:3078558,4812305:0,0,0 -(1,7299:3078558,2439708:0,1703936,0 -g1,7299:29030814,2439708 -g1,7299:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,7299:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,7299:37855564,2439708:1179648,16384,0 -) -) -k1,7299:3078556,2439708:-34777008 -) -] -[1,7299:3078558,4812305:0,0,0 -(1,7299:3078558,49800853:0,16384,2228224 -k1,7299:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,7299:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,7299:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,7299:3078558,4812305:0,0,0 -(1,7299:3078558,49800853:0,16384,2228224 -g1,7299:29030814,49800853 -g1,7299:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,7299:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,7299:37855564,49800853:1179648,16384,0 -) -) -k1,7299:3078556,49800853:-34777008 -) -] -g1,7299:6630773,4812305 -g1,7299:6630773,4812305 -g1,7299:8671564,4812305 -g1,7299:11756343,4812305 -k1,7299:31387651,4812305:19631308 -) -) -] -[1,7299:6630773,45706769:25952256,40108032,0 -(1,7299:6630773,45706769:25952256,40108032,0 -(1,7299:6630773,45706769:0,0,0 -g1,7299:6630773,45706769 -) -[1,7299:6630773,45706769:25952256,40108032,0 -v1,7254:6630773,6254097:0,393216,0 -(1,7254:6630773,8654691:25952256,2793810,616038 -g1,7254:6630773,8654691 -(1,7254:6630773,8654691:25952256,2793810,616038 -(1,7254:6630773,9270729:25952256,3409848,0 -[1,7254:6630773,9270729:25952256,3409848,0 -(1,7254:6630773,9244515:25952256,3383634,0 -r1,7299:6656987,9244515:26214,3383634,0 -[1,7254:6656987,9244515:25899828,3383634,0 -(1,7254:6656987,8654691:25899828,2203986,0 -[1,7254:7246811,8654691:24720180,2203986,0 -(1,7254:7246811,6963852:24720180,513147,126483 -k1,7253:8967604,6963852:165624 -(1,7253:8967604,6963852:0,452978,115847 -r1,7299:10381005,6963852:1413401,568825,115847 -k1,7253:8967604,6963852:-1413401 -) -(1,7253:8967604,6963852:1413401,452978,115847 -k1,7253:8967604,6963852:3277 -h1,7253:10377728,6963852:0,411205,112570 -) -k1,7253:10720298,6963852:165623 -k1,7253:12781223,6963852:165624 -k1,7253:15642343,6963852:165624 -(1,7253:15642343,6963852:0,452978,115847 -r1,7299:20221151,6963852:4578808,568825,115847 -k1,7253:15642343,6963852:-4578808 -) -(1,7253:15642343,6963852:4578808,452978,115847 -k1,7253:15642343,6963852:3277 -h1,7253:20217874,6963852:0,411205,112570 -) -k1,7253:20386774,6963852:165623 -k1,7253:22933976,6963852:165624 -k1,7253:24954923,6963852:165623 -k1,7253:25771975,6963852:165624 -k1,7253:26956684,6963852:165624 -k1,7253:28511670,6963852:165623 -k1,7253:30553590,6963852:165624 -(1,7253:30553590,6963852:0,414482,115847 -r1,7299:31966991,6963852:1413401,530329,115847 -k1,7253:30553590,6963852:-1413401 -) -(1,7253:30553590,6963852:1413401,414482,115847 -k1,7253:30553590,6963852:3277 -h1,7253:31963714,6963852:0,411205,112570 -) -k1,7253:31966991,6963852:0 -) -(1,7254:7246811,7805340:24720180,505283,126483 -k1,7253:10265773,7805340:260552 -k1,7253:11212488,7805340:260553 -k1,7253:14134457,7805340:260552 -k1,7253:15784373,7805340:260553 -k1,7253:16660963,7805340:260552 -k1,7253:17510029,7805340:260553 -k1,7253:18967268,7805340:260552 -k1,7253:20404847,7805340:260552 -k1,7253:21196897,7805340:260553 -k1,7253:22108877,7805340:260552 -k1,7253:24393182,7805340:260553 -k1,7253:25672819,7805340:260552 -k1,7253:27671387,7805340:260553 -k1,7253:29123384,7805340:260552 -k1,7253:31966991,7805340:0 -) -(1,7254:7246811,8646828:24720180,513147,7863 -g1,7253:10395815,8646828 -g1,7253:11542695,8646828 -g1,7253:13193546,8646828 -k1,7254:31966991,8646828:16216886 -g1,7254:31966991,8646828 -) -] -) -] -r1,7299:32583029,9244515:26214,3383634,0 -) -] -) -) -g1,7254:32583029,8654691 -) -h1,7254:6630773,9270729:0,0,0 -(1,7256:6630773,11361989:25952256,564462,147783 -(1,7256:6630773,11361989:2450326,534184,12975 -g1,7256:6630773,11361989 -g1,7256:9081099,11361989 -) -g1,7256:12662511,11361989 -g1,7256:16328989,11361989 -g1,7256:17279130,11361989 -g1,7256:20622646,11361989 -g1,7256:22189874,11361989 -k1,7256:32583029,11361989:8076195 -g1,7256:32583029,11361989 -) -(1,7258:6630773,12596693:25952256,513147,126483 -k1,7257:7539069,12596693:280461 -k1,7257:8838615,12596693:280461 -k1,7257:10503196,12596693:280461 -k1,7257:13445073,12596693:280460 -k1,7257:14593886,12596693:280461 -k1,7257:15966832,12596693:280461 -(1,7257:15966832,12596693:0,452978,115847 -r1,7299:18435369,12596693:2468537,568825,115847 -k1,7257:15966832,12596693:-2468537 -) -(1,7257:15966832,12596693:2468537,452978,115847 -k1,7257:15966832,12596693:3277 -h1,7257:18432092,12596693:0,411205,112570 -) -k1,7257:18715830,12596693:280461 -k1,7257:20187736,12596693:280461 -(1,7257:20187736,12596693:0,452978,115847 -r1,7299:22304561,12596693:2116825,568825,115847 -k1,7257:20187736,12596693:-2116825 -) -(1,7257:20187736,12596693:2116825,452978,115847 -k1,7257:20187736,12596693:3277 -h1,7257:22301284,12596693:0,411205,112570 -) -k1,7257:22585022,12596693:280461 -k1,7257:23516911,12596693:280461 -k1,7257:26585273,12596693:280460 -k1,7257:27884819,12596693:280461 -k1,7257:29903295,12596693:280461 -k1,7257:31131407,12596693:280461 -k1,7257:32583029,12596693:0 -) -(1,7258:6630773,13438181:25952256,513147,115847 -k1,7257:9260012,13438181:246350 -k1,7257:10165655,13438181:246351 -k1,7257:12499982,13438181:246350 -(1,7257:12499982,13438181:0,452978,115847 -r1,7299:15320231,13438181:2820249,568825,115847 -k1,7257:12499982,13438181:-2820249 -) -(1,7257:12499982,13438181:2820249,452978,115847 -k1,7257:12499982,13438181:3277 -h1,7257:15316954,13438181:0,411205,112570 -) -k1,7257:15740252,13438181:246351 -k1,7257:16614437,13438181:246350 -k1,7257:17275584,13438181:246304 -k1,7257:18541019,13438181:246350 -k1,7257:22462629,13438181:246351 -k1,7257:23368271,13438181:246350 -k1,7257:23970482,13438181:246351 -k1,7257:26477824,13438181:246350 -k1,7257:28258373,13438181:246351 -k1,7257:29696168,13438181:246350 -k1,7257:32583029,13438181:0 -) -(1,7258:6630773,14279669:25952256,513147,134348 -k1,7257:8246286,14279669:228116 -k1,7257:10359872,14279669:228115 -k1,7257:10943848,14279669:228116 -k1,7257:13867459,14279669:228115 -k1,7257:14627072,14279669:228116 -k1,7257:17226936,14279669:228116 -k1,7257:18446611,14279669:228115 -k1,7257:20542503,14279669:228116 -k1,7257:23555243,14279669:228116 -k1,7257:24980045,14279669:228115 -k1,7257:28280489,14279669:228116 -k1,7257:30713891,14279669:228115 -k1,7257:31593435,14279669:228116 -k1,7258:32583029,14279669:0 -) -(1,7258:6630773,15121157:25952256,513147,134348 -k1,7257:9350953,15121157:216049 -(1,7257:9350953,15121157:0,414482,115847 -r1,7299:11467778,15121157:2116825,530329,115847 -k1,7257:9350953,15121157:-2116825 -) -(1,7257:9350953,15121157:2116825,414482,115847 -k1,7257:9350953,15121157:3277 -h1,7257:11464501,15121157:0,411205,112570 -) -k1,7257:11683827,15121157:216049 -k1,7257:15474211,15121157:216050 -k1,7257:17077657,15121157:216049 -k1,7257:19179177,15121157:216049 -k1,7257:21649665,15121157:216049 -k1,7257:22884799,15121157:216049 -k1,7257:25796344,15121157:216049 -k1,7257:27144856,15121157:216050 -k1,7257:28108671,15121157:216049 -k1,7257:30870138,15121157:216049 -k1,7257:31563944,15121157:216049 -k1,7257:32583029,15121157:0 -) -(1,7258:6630773,15962645:25952256,513147,134348 -k1,7257:9523345,15962645:197076 -k1,7257:10251918,15962645:197076 -k1,7257:12820742,15962645:197076 -k1,7257:13669246,15962645:197076 -k1,7257:17059236,15962645:197076 -k1,7257:18964180,15962645:197076 -k1,7257:20029607,15962645:197075 -k1,7257:21273948,15962645:197076 -k1,7257:22755530,15962645:197076 -k1,7257:23820958,15962645:197076 -k1,7257:26429104,15962645:197076 -k1,7257:27435550,15962645:197076 -k1,7257:28651711,15962645:197076 -k1,7257:30154920,15962645:197076 -k1,7257:32583029,15962645:0 -) -(1,7258:6630773,16804133:25952256,513147,134348 -k1,7257:8043830,16804133:221612 -k1,7257:8731404,16804133:221613 -k1,7257:9972101,16804133:221612 -k1,7257:12889210,16804133:221613 -k1,7257:13642319,16804133:221612 -k1,7257:16235679,16804133:221612 -k1,7257:17108720,16804133:221613 -k1,7257:20523246,16804133:221612 -k1,7257:23631719,16804133:221612 -k1,7257:25240729,16804133:221613 -k1,7257:26481426,16804133:221612 -k1,7257:28944370,16804133:221613 -k1,7257:31594091,16804133:221612 -k1,7258:32583029,16804133:0 -) -(1,7258:6630773,17645621:25952256,513147,134348 -k1,7257:8211229,17645621:244832 -k1,7257:9560342,17645621:244831 -k1,7257:11280389,17645621:244832 -k1,7257:13276997,17645621:244831 -k1,7257:17370758,17645621:244832 -k1,7257:18807034,17645621:244831 -k1,7257:23276972,17645621:244832 -k1,7257:25172000,17645621:244831 -k1,7257:28175242,17645621:244832 -k1,7257:29047908,17645621:244831 -k1,7257:30311825,17645621:244832 -k1,7257:31923737,17645621:244831 -k1,7257:32583029,17645621:0 -) -(1,7258:6630773,18487109:25952256,513147,126483 -k1,7257:8782572,18487109:171956 -k1,7257:10348479,18487109:171956 -k1,7257:12170633,18487109:171957 -k1,7257:13785036,18487109:171956 -k1,7257:15129431,18487109:171956 -k1,7257:19150316,18487109:171956 -k1,7257:19780370,18487109:171957 -k1,7257:20483823,18487109:171956 -k1,7257:23285739,18487109:171956 -k1,7257:24649140,18487109:171956 -k1,7257:26798318,18487109:171957 -k1,7257:27621702,18487109:171956 -k1,7257:29557232,18487109:171956 -k1,7257:32583029,18487109:0 -) -(1,7258:6630773,19328597:25952256,505283,134348 -g1,7257:8217399,19328597 -g1,7257:11087875,19328597 -g1,7257:13871844,19328597 -g1,7257:14683835,19328597 -k1,7258:32583029,19328597:16235235 -g1,7258:32583029,19328597 -) -v1,7260:6630773,20641800:0,393216,0 -(1,7261:6630773,23759617:25952256,3511033,616038 -g1,7261:6630773,23759617 -(1,7261:6630773,23759617:25952256,3511033,616038 -(1,7261:6630773,24375655:25952256,4127071,0 -[1,7261:6630773,24375655:25952256,4127071,0 -(1,7261:6630773,24349441:25952256,4074643,0 -r1,7299:6656987,24349441:26214,4074643,0 -[1,7261:6656987,24349441:25899828,4074643,0 -(1,7261:6656987,23759617:25899828,2894995,0 -[1,7261:7246811,23759617:24720180,2894995,0 -(1,7261:7246811,21950158:24720180,1085536,298548 -(1,7260:7246811,21950158:0,1085536,298548 -r1,7299:8753226,21950158:1506415,1384084,298548 -k1,7260:7246811,21950158:-1506415 -) -(1,7260:7246811,21950158:1506415,1085536,298548 -) -k1,7260:8922415,21950158:169189 -k1,7260:9579163,21950158:169160 -k1,7260:12995661,21950158:169189 -k1,7260:13974220,21950158:169189 -k1,7260:15162494,21950158:169189 -k1,7260:18027180,21950158:169190 -k1,7260:18847797,21950158:169189 -k1,7260:19764752,21950158:169189 -k1,7260:22305689,21950158:169189 -k1,7260:23006376,21950158:169190 -k1,7260:24460071,21950158:169189 -k1,7260:25648345,21950158:169189 -k1,7260:27795411,21950158:169189 -k1,7260:28647486,21950158:169190 -k1,7260:30834529,21950158:169189 -k1,7260:31966991,21950158:0 -) -(1,7261:7246811,22791646:24720180,513147,134348 -k1,7260:9551763,22791646:175687 -k1,7260:10475216,22791646:175687 -k1,7260:12856190,22791646:175687 -k1,7260:13718038,22791646:175686 -k1,7260:14249585,22791646:175687 -k1,7260:17600491,22791646:175687 -k1,7260:20848506,22791646:175687 -k1,7260:21675621,22791646:175687 -k1,7260:22870393,22791646:175687 -k1,7260:24352212,22791646:175686 -k1,7260:26656508,22791646:175687 -k1,7260:30112927,22791646:175687 -k1,7260:30947906,22791646:175687 -k1,7260:31966991,22791646:0 -) -(1,7261:7246811,23633134:24720180,513147,126483 -g1,7260:9817788,23633134 -k1,7261:31966990,23633134:19280036 -g1,7261:31966990,23633134 -) -] -) -] -r1,7299:32583029,24349441:26214,4074643,0 -) -] -) -) -g1,7261:32583029,23759617 -) -h1,7261:6630773,24375655:0,0,0 -v1,7264:6630773,25985264:0,393216,0 -(1,7273:6630773,28339265:25952256,2747217,196608 -g1,7273:6630773,28339265 -g1,7273:6630773,28339265 -g1,7273:6434165,28339265 -(1,7273:6434165,28339265:0,2747217,196608 -r1,7299:32779637,28339265:26345472,2943825,196608 -k1,7273:6434165,28339265:-26345472 -) -(1,7273:6434165,28339265:26345472,2747217,196608 -[1,7273:6630773,28339265:25952256,2550609,0 -(1,7266:6630773,26199174:25952256,410518,82312 -(1,7265:6630773,26199174:0,0,0 -g1,7265:6630773,26199174 -g1,7265:6630773,26199174 -g1,7265:6303093,26199174 -(1,7265:6303093,26199174:0,0,0 -) -g1,7265:6630773,26199174 -) -g1,7266:9476084,26199174 -g1,7266:10424522,26199174 -g1,7266:16431291,26199174 -g1,7266:18012020,26199174 -g1,7266:18644312,26199174 -h1,7266:19592749,26199174:0,0,0 -k1,7266:32583029,26199174:12990280 -g1,7266:32583029,26199174 -) -(1,7267:6630773,26865352:25952256,404226,101187 -h1,7267:6630773,26865352:0,0,0 -g1,7267:7263065,26865352 -g1,7267:8211503,26865352 -g1,7267:13269834,26865352 -g1,7267:15482854,26865352 -g1,7267:16115146,26865352 -g1,7267:17063584,26865352 -g1,7267:18328167,26865352 -g1,7267:18960459,26865352 -h1,7267:20541187,26865352:0,0,0 -k1,7267:32583029,26865352:12041842 -g1,7267:32583029,26865352 -) -(1,7268:6630773,27531530:25952256,404226,76021 -h1,7268:6630773,27531530:0,0,0 -k1,7268:6630773,27531530:0 -h1,7268:8527647,27531530:0,0,0 -k1,7268:32583029,27531530:24055382 -g1,7268:32583029,27531530 -) -(1,7272:6630773,28263244:25952256,404226,76021 -(1,7270:6630773,28263244:0,0,0 -g1,7270:6630773,28263244 -g1,7270:6630773,28263244 -g1,7270:6303093,28263244 -(1,7270:6303093,28263244:0,0,0 -) -g1,7270:6630773,28263244 -) -g1,7272:7579210,28263244 -g1,7272:7895356,28263244 -g1,7272:9159939,28263244 -g1,7272:11372959,28263244 -g1,7272:13269833,28263244 -g1,7272:15166707,28263244 -g1,7272:17063581,28263244 -g1,7272:18328164,28263244 -g1,7272:20225038,28263244 -h1,7272:21173475,28263244:0,0,0 -k1,7272:32583029,28263244:11409554 -g1,7272:32583029,28263244 -) -] -) -g1,7273:32583029,28339265 -g1,7273:6630773,28339265 -g1,7273:6630773,28339265 -g1,7273:32583029,28339265 -g1,7273:32583029,28339265 -) -h1,7273:6630773,28535873:0,0,0 -v1,7277:6630773,30320792:0,393216,0 -(1,7278:6630773,32480339:25952256,2552763,616038 -g1,7278:6630773,32480339 -(1,7278:6630773,32480339:25952256,2552763,616038 -(1,7278:6630773,33096377:25952256,3168801,0 -[1,7278:6630773,33096377:25952256,3168801,0 -(1,7278:6630773,33070163:25952256,3116373,0 -r1,7299:6656987,33070163:26214,3116373,0 -[1,7278:6656987,33070163:25899828,3116373,0 -(1,7278:6656987,32480339:25899828,1936725,0 -[1,7278:7246811,32480339:24720180,1936725,0 -(1,7278:7246811,31630988:24720180,1087374,126483 -k1,7277:8670219,31630988:213705 -k1,7277:11089866,31630988:213705 -k1,7277:12322656,31630988:213705 -k1,7277:15197777,31630988:213704 -k1,7277:17266806,31630988:213705 -k1,7277:18205339,31630988:213705 -k1,7277:19703550,31630988:213705 -k1,7277:20375352,31630988:213705 -k1,7277:23707260,31630988:213705 -k1,7277:25124860,31630988:213704 -k1,7277:27406881,31630988:213705 -k1,7277:29947769,31630988:213705 -k1,7277:30820766,31630988:213705 -k1,7278:31966991,31630988:0 -) -(1,7278:7246811,32472476:24720180,355205,7863 -g1,7277:8895696,32472476 -k1,7278:31966991,32472476:20829308 -g1,7278:31966991,32472476 -) -] -) -] -r1,7299:32583029,33070163:26214,3116373,0 -) -] -) -) -g1,7278:32583029,32480339 -) -h1,7278:6630773,33096377:0,0,0 -v1,7281:6630773,34409580:0,393216,0 -(1,7282:6630773,38378588:25952256,4362224,616038 -g1,7282:6630773,38378588 -(1,7282:6630773,38378588:25952256,4362224,616038 -(1,7282:6630773,38994626:25952256,4978262,0 -[1,7282:6630773,38994626:25952256,4978262,0 -(1,7282:6630773,38968412:25952256,4925834,0 -r1,7299:6656987,38968412:26214,4925834,0 -[1,7282:6656987,38968412:25899828,4925834,0 -(1,7282:6656987,38378588:25899828,3746186,0 -[1,7282:7246811,38378588:24720180,3746186,0 -(1,7282:7246811,35719776:24720180,1087374,134348 -k1,7281:8662973,35719776:206459 -k1,7281:10416081,35719776:206458 -k1,7281:11458124,35719776:206459 -k1,7281:12683667,35719776:206458 -k1,7281:14278179,35719776:206459 -k1,7281:16313091,35719776:206458 -k1,7281:17467201,35719776:206459 -(1,7281:17467201,35719776:0,452978,115847 -r1,7299:19935738,35719776:2468537,568825,115847 -k1,7281:17467201,35719776:-2468537 -) -(1,7281:17467201,35719776:2468537,452978,115847 -k1,7281:17467201,35719776:3277 -h1,7281:19932461,35719776:0,411205,112570 -) -k1,7281:20142197,35719776:206459 -k1,7281:21540100,35719776:206458 -(1,7281:21540100,35719776:0,452978,115847 -r1,7299:23656925,35719776:2116825,568825,115847 -k1,7281:21540100,35719776:-2116825 -) -(1,7281:21540100,35719776:2116825,452978,115847 -k1,7281:21540100,35719776:3277 -h1,7281:23653648,35719776:0,411205,112570 -) -k1,7281:23863384,35719776:206459 -k1,7281:25261287,35719776:206458 -k1,7281:27251636,35719776:206459 -k1,7281:29097149,35719776:206458 -k1,7281:30796518,35719776:206459 -k1,7281:31966991,35719776:0 -) -(1,7282:7246811,36561264:24720180,513147,134348 -k1,7281:11124248,36561264:212664 -k1,7281:12667293,36561264:212664 -k1,7281:16106951,36561264:212665 -k1,7281:19722244,36561264:212664 -k1,7281:21039190,36561264:212664 -k1,7281:21999620,36561264:212664 -k1,7281:24417571,36561264:212664 -k1,7281:25281664,36561264:212665 -k1,7281:26513413,36561264:212664 -k1,7281:29097825,36561264:212664 -k1,7281:31966991,36561264:0 -) -(1,7282:7246811,37402752:24720180,513147,134348 -k1,7281:8735861,37402752:262871 -k1,7281:10169205,37402752:262871 -k1,7281:12229073,37402752:262871 -k1,7281:13788902,37402752:262871 -(1,7281:13788902,37402752:0,452978,115847 -r1,7299:16257439,37402752:2468537,568825,115847 -k1,7281:13788902,37402752:-2468537 -) -(1,7281:13788902,37402752:2468537,452978,115847 -k1,7281:13788902,37402752:3277 -h1,7281:16254162,37402752:0,411205,112570 -) -k1,7281:16520310,37402752:262871 -k1,7281:17990355,37402752:262872 -k1,7281:21109940,37402752:262871 -k1,7281:22024239,37402752:262871 -k1,7281:23762325,37402752:262871 -k1,7281:27305928,37402752:262871 -k1,7281:29637115,37402752:262871 -k1,7281:31350953,37402752:262871 -k1,7281:31966991,37402752:0 -) -(1,7282:7246811,38244240:24720180,513147,134348 -g1,7281:10878816,38244240 -g1,7281:14432178,38244240 -g1,7281:15985381,38244240 -g1,7281:18735271,38244240 -g1,7281:19882151,38244240 -g1,7281:20496223,38244240 -g1,7281:22191639,38244240 -k1,7282:31966991,38244240:7947553 -g1,7282:31966991,38244240 -) -] -) -] -r1,7299:32583029,38968412:26214,4925834,0 -) -] -) -) -g1,7282:32583029,38378588 -) -h1,7282:6630773,38994626:0,0,0 -(1,7285:6630773,40307830:25952256,513147,134348 -h1,7284:6630773,40307830:983040,0,0 -k1,7284:8387880,40307830:296310 -k1,7284:9552542,40307830:296310 -k1,7284:11612426,40307830:296310 -k1,7284:12264597,40307830:296311 -k1,7284:15256403,40307830:296310 -k1,7284:16837219,40307830:296310 -k1,7284:19474475,40307830:296310 -k1,7284:20126645,40307830:296310 -k1,7284:22103298,40307830:296310 -k1,7284:23058900,40307830:296310 -k1,7284:24374296,40307830:296311 -k1,7284:26324079,40307830:296310 -k1,7284:28633655,40307830:296310 -k1,7284:29616127,40307830:296310 -k1,7284:30700835,40307830:296310 -k1,7284:32583029,40307830:0 -) -(1,7285:6630773,41149318:25952256,513147,126483 -k1,7284:8259007,41149318:194306 -k1,7284:9472398,41149318:194306 -k1,7284:13341963,41149318:194306 -k1,7284:14195561,41149318:194306 -k1,7284:15408952,41149318:194306 -k1,7284:17283601,41149318:194306 -k1,7284:20256634,41149318:194306 -k1,7284:21212467,41149318:194305 -(1,7284:21212467,41149318:0,452978,115847 -r1,7299:23681004,41149318:2468537,568825,115847 -k1,7284:21212467,41149318:-2468537 -) -(1,7284:21212467,41149318:2468537,452978,115847 -k1,7284:21212467,41149318:3277 -h1,7284:23677727,41149318:0,411205,112570 -) -k1,7284:23875310,41149318:194306 -k1,7284:25061176,41149318:194306 -k1,7284:26274567,41149318:194306 -k1,7284:28122346,41149318:194306 -k1,7284:29002814,41149318:194306 -k1,7284:30941033,41149318:194306 -k1,7284:31794631,41149318:194306 -k1,7284:32583029,41149318:0 -) -(1,7285:6630773,41990806:25952256,513147,134348 -k1,7284:8719909,41990806:206942 -k1,7284:9880401,41990806:206943 -k1,7284:11353499,41990806:206942 -k1,7284:12176480,41990806:206943 -k1,7284:13402507,41990806:206942 -k1,7284:14993570,41990806:206943 -k1,7284:18365901,41990806:206942 -k1,7284:18928704,41990806:206943 -k1,7284:21573585,41990806:206942 -k1,7284:24476024,41990806:206943 -k1,7284:25967472,41990806:206942 -k1,7284:28515361,41990806:206943 -k1,7284:29510701,41990806:206942 -k1,7284:32583029,41990806:0 -) -(1,7285:6630773,42832294:25952256,505283,134348 -g1,7284:10494775,42832294 -g1,7284:11418832,42832294 -g1,7284:12902567,42832294 -g1,7284:14810320,42832294 -g1,7284:16200994,42832294 -g1,7284:18558979,42832294 -g1,7284:19862490,42832294 -g1,7284:20809485,42832294 -g1,7284:22809643,42832294 -k1,7285:32583029,42832294:6418598 -g1,7285:32583029,42832294 -) -v1,7287:6630773,43970187:0,393216,0 -(1,7299:6630773,45510161:25952256,1933190,196608 -g1,7299:6630773,45510161 -g1,7299:6630773,45510161 -g1,7299:6434165,45510161 -(1,7299:6434165,45510161:0,1933190,196608 -r1,7299:32779637,45510161:26345472,2129798,196608 -k1,7299:6434165,45510161:-26345472 -) -(1,7299:6434165,45510161:26345472,1933190,196608 -[1,7299:6630773,45510161:25952256,1736582,0 -(1,7289:6630773,44177805:25952256,404226,82312 -(1,7288:6630773,44177805:0,0,0 -g1,7288:6630773,44177805 -g1,7288:6630773,44177805 -g1,7288:6303093,44177805 -(1,7288:6303093,44177805:0,0,0 -) -g1,7288:6630773,44177805 -) -g1,7289:11372959,44177805 -g1,7289:12321397,44177805 -g1,7289:17379729,44177805 -g1,7289:18960458,44177805 -g1,7289:19592750,44177805 -g1,7289:20857333,44177805 -g1,7289:21805770,44177805 -g1,7289:22438062,44177805 -g1,7289:23702646,44177805 -g1,7289:25283375,44177805 -g1,7289:25915667,44177805 -h1,7289:26547959,44177805:0,0,0 -k1,7289:32583029,44177805:6035070 -g1,7289:32583029,44177805 -) -(1,7290:6630773,44843983:25952256,404226,107478 -h1,7290:6630773,44843983:0,0,0 -g1,7290:11372959,44843983 -g1,7290:12321397,44843983 -g1,7290:19276602,44843983 -g1,7290:21489622,44843983 -g1,7290:22121914,44843983 -h1,7290:22754206,44843983:0,0,0 -k1,7290:32583029,44843983:9828823 -g1,7290:32583029,44843983 -) -(1,7291:6630773,45510161:25952256,404226,6290 -h1,7291:6630773,45510161:0,0,0 -h1,7291:11056813,45510161:0,0,0 -k1,7291:32583029,45510161:21526216 -g1,7291:32583029,45510161 -) -] -) -g1,7299:32583029,45510161 -g1,7299:6630773,45510161 -g1,7299:6630773,45510161 -g1,7299:32583029,45510161 -g1,7299:32583029,45510161 -) -] -(1,7299:32583029,45706769:0,0,0 -g1,7299:32583029,45706769 -) -) -] -(1,7299:6630773,47279633:25952256,0,0 -h1,7299:6630773,47279633:25952256,0,0 -) -] -(1,7299:4262630,4025873:0,0,0 -[1,7299:-473656,4025873:0,0,0 -(1,7299:-473656,-710413:0,0,0 -(1,7299:-473656,-710413:0,0,0 -g1,7299:-473656,-710413 -) -g1,7299:-473656,-710413 -) -] -) -] -!23640 -}138 -Input:1136:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1137:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1138:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1139:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1140:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1141:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1142:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!656 -{139 -[1,7383:4262630,47279633:28320399,43253760,0 -(1,7383:4262630,4025873:0,0,0 -[1,7383:-473656,4025873:0,0,0 -(1,7383:-473656,-710413:0,0,0 -(1,7383:-473656,-644877:0,0,0 -k1,7383:-473656,-644877:-65536 -) -(1,7383:-473656,4736287:0,0,0 -k1,7383:-473656,4736287:5209943 -) -g1,7383:-473656,-710413 -) -] -) -[1,7383:6630773,47279633:25952256,43253760,0 -[1,7383:6630773,4812305:25952256,786432,0 -(1,7383:6630773,4812305:25952256,505283,134348 -(1,7383:6630773,4812305:25952256,505283,134348 -g1,7383:3078558,4812305 -[1,7383:3078558,4812305:0,0,0 -(1,7383:3078558,2439708:0,1703936,0 -k1,7383:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,7383:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,7383:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,7383:3078558,4812305:0,0,0 -(1,7383:3078558,2439708:0,1703936,0 -g1,7383:29030814,2439708 -g1,7383:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,7383:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,7383:37855564,2439708:1179648,16384,0 -) -) -k1,7383:3078556,2439708:-34777008 -) -] -[1,7383:3078558,4812305:0,0,0 -(1,7383:3078558,49800853:0,16384,2228224 -k1,7383:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,7383:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,7383:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,7383:3078558,4812305:0,0,0 -(1,7383:3078558,49800853:0,16384,2228224 -g1,7383:29030814,49800853 -g1,7383:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,7383:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,7383:37855564,49800853:1179648,16384,0 -) -) -k1,7383:3078556,49800853:-34777008 -) -] -g1,7383:6630773,4812305 -k1,7383:18771974,4812305:10945824 -g1,7383:20158715,4812305 -g1,7383:20807521,4812305 -g1,7383:24121676,4812305 -g1,7383:28605649,4812305 -g1,7383:30015328,4812305 -) -) -] -[1,7383:6630773,45706769:25952256,40108032,0 -(1,7383:6630773,45706769:25952256,40108032,0 -(1,7383:6630773,45706769:0,0,0 -g1,7383:6630773,45706769 -) -[1,7383:6630773,45706769:25952256,40108032,0 -v1,7299:6630773,6254097:0,393216,0 -(1,7299:6630773,8542561:25952256,2681680,196608 -g1,7299:6630773,8542561 -g1,7299:6630773,8542561 -g1,7299:6434165,8542561 -(1,7299:6434165,8542561:0,2681680,196608 -r1,7383:32779637,8542561:26345472,2878288,196608 -k1,7299:6434165,8542561:-26345472 -) -(1,7299:6434165,8542561:26345472,2681680,196608 -[1,7299:6630773,8542561:25952256,2485072,0 -(1,7298:6630773,6461715:25952256,404226,82312 -(1,7293:6630773,6461715:0,0,0 -g1,7293:6630773,6461715 -g1,7293:6630773,6461715 -g1,7293:6303093,6461715 -(1,7293:6303093,6461715:0,0,0 -) -g1,7293:6630773,6461715 -) -g1,7298:7579210,6461715 -g1,7298:7895356,6461715 -g1,7298:8211502,6461715 -g1,7298:8527648,6461715 -g1,7298:8843794,6461715 -g1,7298:9159940,6461715 -g1,7298:10740669,6461715 -k1,7298:10740669,6461715:0 -h1,7298:12005252,6461715:0,0,0 -k1,7298:32583028,6461715:20577776 -g1,7298:32583028,6461715 -) -(1,7298:6630773,7127893:25952256,404226,82312 -h1,7298:6630773,7127893:0,0,0 -g1,7298:7579210,7127893 -g1,7298:9159938,7127893 -g1,7298:10740667,7127893 -h1,7298:12005250,7127893:0,0,0 -k1,7298:32583030,7127893:20577780 -g1,7298:32583030,7127893 -) -(1,7298:6630773,7794071:25952256,404226,82312 -h1,7298:6630773,7794071:0,0,0 -g1,7298:7579210,7794071 -g1,7298:9159938,7794071 -g1,7298:10740667,7794071 -g1,7298:11056813,7794071 -h1,7298:12005250,7794071:0,0,0 -k1,7298:32583030,7794071:20577780 -g1,7298:32583030,7794071 -) -(1,7298:6630773,8460249:25952256,404226,82312 -h1,7298:6630773,8460249:0,0,0 -g1,7298:7579210,8460249 -g1,7298:9159938,8460249 -g1,7298:9476084,8460249 -g1,7298:10740667,8460249 -h1,7298:12005250,8460249:0,0,0 -k1,7298:32583030,8460249:20577780 -g1,7298:32583030,8460249 -) -] -) -g1,7299:32583029,8542561 -g1,7299:6630773,8542561 -g1,7299:6630773,8542561 -g1,7299:32583029,8542561 -g1,7299:32583029,8542561 -) -h1,7299:6630773,8739169:0,0,0 -v1,7303:6630773,10034491:0,393216,0 -(1,7307:6630773,10349588:25952256,708313,196608 -g1,7307:6630773,10349588 -g1,7307:6630773,10349588 -g1,7307:6434165,10349588 -(1,7307:6434165,10349588:0,708313,196608 -r1,7383:32779637,10349588:26345472,904921,196608 -k1,7307:6434165,10349588:-26345472 -) -(1,7307:6434165,10349588:26345472,708313,196608 -[1,7307:6630773,10349588:25952256,511705,0 -(1,7305:6630773,10248401:25952256,410518,101187 -(1,7304:6630773,10248401:0,0,0 -g1,7304:6630773,10248401 -g1,7304:6630773,10248401 -g1,7304:6303093,10248401 -(1,7304:6303093,10248401:0,0,0 -) -g1,7304:6630773,10248401 -) -g1,7305:9792230,10248401 -g1,7305:10740668,10248401 -g1,7305:14534417,10248401 -h1,7305:15482854,10248401:0,0,0 -k1,7305:32583030,10248401:17100176 -g1,7305:32583030,10248401 -) -] -) -g1,7307:32583029,10349588 -g1,7307:6630773,10349588 -g1,7307:6630773,10349588 -g1,7307:32583029,10349588 -g1,7307:32583029,10349588 -) -h1,7307:6630773,10546196:0,0,0 -v1,7311:6630773,11841518:0,393216,0 -(1,7328:6630773,17587418:25952256,6139116,196608 -g1,7328:6630773,17587418 -g1,7328:6630773,17587418 -g1,7328:6434165,17587418 -(1,7328:6434165,17587418:0,6139116,196608 -r1,7383:32779637,17587418:26345472,6335724,196608 -k1,7328:6434165,17587418:-26345472 -) -(1,7328:6434165,17587418:26345472,6139116,196608 -[1,7328:6630773,17587418:25952256,5942508,0 -(1,7313:6630773,12055428:25952256,410518,101187 -(1,7312:6630773,12055428:0,0,0 -g1,7312:6630773,12055428 -g1,7312:6630773,12055428 -g1,7312:6303093,12055428 -(1,7312:6303093,12055428:0,0,0 -) -g1,7312:6630773,12055428 -) -g1,7313:7263065,12055428 -g1,7313:8211503,12055428 -g1,7313:10740669,12055428 -g1,7313:11372961,12055428 -g1,7313:16431293,12055428 -g1,7313:18644313,12055428 -g1,7313:19276605,12055428 -g1,7313:20225043,12055428 -g1,7313:21489626,12055428 -g1,7313:22121918,12055428 -h1,7313:25283375,12055428:0,0,0 -k1,7313:32583029,12055428:7299654 -g1,7313:32583029,12055428 -) -(1,7314:6630773,12721606:25952256,404226,76021 -h1,7314:6630773,12721606:0,0,0 -k1,7314:6630773,12721606:0 -h1,7314:9159938,12721606:0,0,0 -k1,7314:32583030,12721606:23423092 -g1,7314:32583030,12721606 -) -(1,7318:6630773,13453320:25952256,404226,101187 -(1,7316:6630773,13453320:0,0,0 -g1,7316:6630773,13453320 -g1,7316:6630773,13453320 -g1,7316:6303093,13453320 -(1,7316:6303093,13453320:0,0,0 -) -g1,7316:6630773,13453320 -) -g1,7318:7579210,13453320 -g1,7318:8843793,13453320 -g1,7318:11689104,13453320 -h1,7318:13902124,13453320:0,0,0 -k1,7318:32583028,13453320:18680904 -g1,7318:32583028,13453320 -) -(1,7320:6630773,14774858:25952256,277873,0 -(1,7319:6630773,14774858:0,0,0 -g1,7319:6630773,14774858 -g1,7319:6630773,14774858 -g1,7319:6303093,14774858 -(1,7319:6303093,14774858:0,0,0 -) -g1,7319:6630773,14774858 -) -h1,7320:6946919,14774858:0,0,0 -k1,7320:32583029,14774858:25636110 -g1,7320:32583029,14774858 -) -(1,7327:6630773,15506572:25952256,404226,82312 -(1,7322:6630773,15506572:0,0,0 -g1,7322:6630773,15506572 -g1,7322:6630773,15506572 -g1,7322:6303093,15506572 -(1,7322:6303093,15506572:0,0,0 -) -g1,7322:6630773,15506572 -) -g1,7327:7579210,15506572 -g1,7327:7895356,15506572 -g1,7327:8211502,15506572 -g1,7327:8527648,15506572 -g1,7327:8843794,15506572 -g1,7327:9159940,15506572 -g1,7327:10740669,15506572 -k1,7327:10740669,15506572:0 -h1,7327:12005252,15506572:0,0,0 -k1,7327:32583028,15506572:20577776 -g1,7327:32583028,15506572 -) -(1,7327:6630773,16172750:25952256,404226,82312 -h1,7327:6630773,16172750:0,0,0 -g1,7327:7579210,16172750 -g1,7327:9159938,16172750 -g1,7327:10740667,16172750 -h1,7327:12005250,16172750:0,0,0 -k1,7327:32583030,16172750:20577780 -g1,7327:32583030,16172750 -) -(1,7327:6630773,16838928:25952256,404226,82312 -h1,7327:6630773,16838928:0,0,0 -g1,7327:7579210,16838928 -g1,7327:9159938,16838928 -g1,7327:10740667,16838928 -g1,7327:11056813,16838928 -h1,7327:12005250,16838928:0,0,0 -k1,7327:32583030,16838928:20577780 -g1,7327:32583030,16838928 -) -(1,7327:6630773,17505106:25952256,404226,82312 -h1,7327:6630773,17505106:0,0,0 -g1,7327:7579210,17505106 -g1,7327:9159938,17505106 -g1,7327:9476084,17505106 -g1,7327:10740667,17505106 -h1,7327:12005250,17505106:0,0,0 -k1,7327:32583030,17505106:20577780 -g1,7327:32583030,17505106 -) -] -) -g1,7328:32583029,17587418 -g1,7328:6630773,17587418 -g1,7328:6630773,17587418 -g1,7328:32583029,17587418 -g1,7328:32583029,17587418 -) -h1,7328:6630773,17784026:0,0,0 -(1,7332:6630773,18940086:25952256,513147,134348 -h1,7331:6630773,18940086:983040,0,0 -k1,7331:8442216,18940086:200568 -k1,7331:9661870,18940086:200569 -k1,7331:11833106,18940086:200568 -k1,7331:14062669,18940086:200568 -k1,7331:15131589,18940086:200568 -k1,7331:17537445,18940086:200569 -(1,7331:17537445,18940086:0,435480,115847 -r1,7383:21061118,18940086:3523673,551327,115847 -k1,7331:17537445,18940086:-3523673 -) -(1,7331:17537445,18940086:3523673,435480,115847 -g1,7331:20002705,18940086 -g1,7331:20706129,18940086 -h1,7331:21057841,18940086:0,411205,112570 -) -k1,7331:21435356,18940086:200568 -k1,7331:22708093,18940086:200568 -k1,7331:23374623,18940086:200569 -k1,7331:24443543,18940086:200568 -k1,7331:26081316,18940086:200568 -(1,7331:26081316,18940086:0,435480,115847 -r1,7383:29604989,18940086:3523673,551327,115847 -k1,7331:26081316,18940086:-3523673 -) -(1,7331:26081316,18940086:3523673,435480,115847 -g1,7331:28546576,18940086 -g1,7331:29250000,18940086 -h1,7331:29601712,18940086:0,411205,112570 -) -k1,7331:29979227,18940086:200568 -k1,7331:31048148,18940086:200569 -k1,7331:32227169,18940086:200568 -k1,7331:32583029,18940086:0 -) -(1,7332:6630773,19781574:25952256,513147,134348 -k1,7331:8816305,19781574:174887 -k1,7331:10671536,19781574:174888 -k1,7331:12130929,19781574:174887 -k1,7331:12837313,19781574:174887 -k1,7331:16745787,19781574:174888 -k1,7331:17749704,19781574:174887 -k1,7331:20177719,19781574:174887 -k1,7331:21371692,19781574:174888 -k1,7331:23981897,19781574:174887 -k1,7331:26145147,19781574:174888 -k1,7331:26979326,19781574:174887 -k1,7331:28173298,19781574:174887 -k1,7331:30435508,19781574:174888 -k1,7331:31478747,19781574:174887 -k1,7331:32583029,19781574:0 -) -(1,7332:6630773,20623062:25952256,513147,126483 -g1,7331:9969177,20623062 -g1,7331:11187491,20623062 -g1,7331:13229592,20623062 -g1,7331:14822772,20623062 -g1,7331:17717497,20623062 -(1,7331:17717497,20623062:0,452978,115847 -r1,7383:18779186,20623062:1061689,568825,115847 -k1,7331:17717497,20623062:-1061689 -) -(1,7331:17717497,20623062:1061689,452978,115847 -k1,7331:17717497,20623062:3277 -h1,7331:18775909,20623062:0,411205,112570 -) -k1,7332:32583029,20623062:13630173 -g1,7332:32583029,20623062 -) -v1,7334:6630773,21603812:0,393216,0 -(1,7353:6630773,28682068:25952256,7471472,196608 -g1,7353:6630773,28682068 -g1,7353:6630773,28682068 -g1,7353:6434165,28682068 -(1,7353:6434165,28682068:0,7471472,196608 -r1,7383:32779637,28682068:26345472,7668080,196608 -k1,7353:6434165,28682068:-26345472 -) -(1,7353:6434165,28682068:26345472,7471472,196608 -[1,7353:6630773,28682068:25952256,7274864,0 -(1,7336:6630773,21817722:25952256,410518,101187 -(1,7335:6630773,21817722:0,0,0 -g1,7335:6630773,21817722 -g1,7335:6630773,21817722 -g1,7335:6303093,21817722 -(1,7335:6303093,21817722:0,0,0 -) -g1,7335:6630773,21817722 -) -g1,7336:7263065,21817722 -g1,7336:8211503,21817722 -g1,7336:10740669,21817722 -g1,7336:11372961,21817722 -g1,7336:16431293,21817722 -g1,7336:18644313,21817722 -g1,7336:19276605,21817722 -g1,7336:20225043,21817722 -g1,7336:21489626,21817722 -g1,7336:22121918,21817722 -h1,7336:25283375,21817722:0,0,0 -k1,7336:32583029,21817722:7299654 -g1,7336:32583029,21817722 -) -(1,7337:6630773,22483900:25952256,277873,0 -h1,7337:6630773,22483900:0,0,0 -h1,7337:6946919,22483900:0,0,0 -k1,7337:32583029,22483900:25636110 -g1,7337:32583029,22483900 -) -(1,7343:6630773,23215614:25952256,404226,82312 -(1,7339:6630773,23215614:0,0,0 -g1,7339:6630773,23215614 -g1,7339:6630773,23215614 -g1,7339:6303093,23215614 -(1,7339:6303093,23215614:0,0,0 -) -g1,7339:6630773,23215614 -) -g1,7343:7579210,23215614 -g1,7343:7895356,23215614 -g1,7343:8211502,23215614 -g1,7343:8527648,23215614 -g1,7343:8843794,23215614 -g1,7343:9159940,23215614 -g1,7343:10740669,23215614 -g1,7343:12321398,23215614 -k1,7343:12321398,23215614:0 -h1,7343:13585981,23215614:0,0,0 -k1,7343:32583029,23215614:18997048 -g1,7343:32583029,23215614 -) -(1,7343:6630773,23881792:25952256,404226,82312 -h1,7343:6630773,23881792:0,0,0 -g1,7343:7579210,23881792 -g1,7343:9159938,23881792 -g1,7343:10740667,23881792 -g1,7343:12321396,23881792 -g1,7343:12637542,23881792 -h1,7343:13585979,23881792:0,0,0 -k1,7343:32583029,23881792:18997050 -g1,7343:32583029,23881792 -) -(1,7343:6630773,24547970:25952256,404226,82312 -h1,7343:6630773,24547970:0,0,0 -g1,7343:7579210,24547970 -g1,7343:9159938,24547970 -g1,7343:10740667,24547970 -g1,7343:11056813,24547970 -g1,7343:12321396,24547970 -h1,7343:13585979,24547970:0,0,0 -k1,7343:32583029,24547970:18997050 -g1,7343:32583029,24547970 -) -(1,7345:6630773,25869508:25952256,404226,76021 -(1,7344:6630773,25869508:0,0,0 -g1,7344:6630773,25869508 -g1,7344:6630773,25869508 -g1,7344:6303093,25869508 -(1,7344:6303093,25869508:0,0,0 -) -g1,7344:6630773,25869508 -) -k1,7345:6630773,25869508:0 -h1,7345:7895356,25869508:0,0,0 -k1,7345:32583028,25869508:24687672 -g1,7345:32583028,25869508 -) -(1,7352:6630773,26601222:25952256,404226,82312 -(1,7347:6630773,26601222:0,0,0 -g1,7347:6630773,26601222 -g1,7347:6630773,26601222 -g1,7347:6303093,26601222 -(1,7347:6303093,26601222:0,0,0 -) -g1,7347:6630773,26601222 -) -g1,7352:7579210,26601222 -g1,7352:7895356,26601222 -g1,7352:8211502,26601222 -g1,7352:8527648,26601222 -g1,7352:8843794,26601222 -g1,7352:9159940,26601222 -g1,7352:10740669,26601222 -k1,7352:10740669,26601222:0 -h1,7352:12005252,26601222:0,0,0 -k1,7352:32583028,26601222:20577776 -g1,7352:32583028,26601222 -) -(1,7352:6630773,27267400:25952256,404226,82312 -h1,7352:6630773,27267400:0,0,0 -g1,7352:7579210,27267400 -g1,7352:9159938,27267400 -g1,7352:10740667,27267400 -h1,7352:12005250,27267400:0,0,0 -k1,7352:32583030,27267400:20577780 -g1,7352:32583030,27267400 -) -(1,7352:6630773,27933578:25952256,404226,82312 -h1,7352:6630773,27933578:0,0,0 -g1,7352:7579210,27933578 -g1,7352:9159938,27933578 -g1,7352:10740667,27933578 -g1,7352:11056813,27933578 -h1,7352:12005250,27933578:0,0,0 -k1,7352:32583030,27933578:20577780 -g1,7352:32583030,27933578 -) -(1,7352:6630773,28599756:25952256,404226,82312 -h1,7352:6630773,28599756:0,0,0 -g1,7352:7579210,28599756 -g1,7352:9159938,28599756 -g1,7352:9476084,28599756 -g1,7352:10740667,28599756 -h1,7352:12005250,28599756:0,0,0 -k1,7352:32583030,28599756:20577780 -g1,7352:32583030,28599756 -) -] -) -g1,7353:32583029,28682068 -g1,7353:6630773,28682068 -g1,7353:6630773,28682068 -g1,7353:32583029,28682068 -g1,7353:32583029,28682068 -) -h1,7353:6630773,28878676:0,0,0 -(1,7357:6630773,30034736:25952256,513147,134348 -h1,7356:6630773,30034736:983040,0,0 -k1,7356:8358958,30034736:257557 -k1,7356:10266771,30034736:257616 -k1,7356:13044246,30034736:257616 -k1,7356:16136949,30034736:257616 -k1,7356:17466734,30034736:257616 -k1,7356:20208165,30034736:257616 -k1,7356:21117209,30034736:257616 -k1,7356:23144296,30034736:257615 -k1,7356:25862134,30034736:257616 -k1,7356:28134982,30034736:257616 -k1,7356:29411683,30034736:257616 -k1,7356:30681830,30034736:257616 -k1,7357:32583029,30034736:0 -) -(1,7357:6630773,30876224:25952256,513147,126483 -k1,7356:8147101,30876224:212817 -k1,7356:10435443,30876224:212817 -k1,7356:12677256,30876224:212818 -k1,7356:13421570,30876224:212817 -k1,7356:15332425,30876224:212817 -k1,7356:16413594,30876224:212817 -k1,7356:18389985,30876224:212817 -k1,7356:18958663,30876224:212818 -k1,7356:21866976,30876224:212817 -k1,7356:23364299,30876224:212817 -k1,7356:25918062,30876224:212817 -k1,7356:26486739,30876224:212817 -k1,7356:28379900,30876224:212818 -k1,7356:29252009,30876224:212817 -k1,7356:29820686,30876224:212817 -k1,7356:32583029,30876224:0 -) -(1,7357:6630773,31717712:25952256,505283,134348 -k1,7356:8862875,31717712:218836 -k1,7356:10524157,31717712:218835 -k1,7356:11531391,31717712:218836 -k1,7356:13632420,31717712:218835 -k1,7356:14923425,31717712:218836 -k1,7356:17166668,31717712:218836 -k1,7356:18827950,31717712:218835 -k1,7356:20377167,31717712:218836 -k1,7356:22379237,31717712:218835 -k1,7356:23466425,31717712:218836 -k1,7356:26473162,31717712:218835 -k1,7356:29074887,31717712:218836 -k1,7356:32583029,31717712:0 -) -(1,7357:6630773,32559200:25952256,505283,134348 -(1,7356:6837867,32559200:0,435480,115847 -r1,7383:10361540,32559200:3523673,551327,115847 -k1,7356:6837867,32559200:-3523673 -) -(1,7356:6837867,32559200:3523673,435480,115847 -g1,7356:9303127,32559200 -g1,7356:10006551,32559200 -h1,7356:10358263,32559200:0,411205,112570 -) -k1,7356:11021900,32559200:279596 -k1,7356:11657357,32559200:279597 -k1,7356:14024275,32559200:279596 -k1,7356:14835368,32559200:279596 -k1,7356:18067362,32559200:279597 -k1,7356:19740909,32559200:279596 -k1,7356:21472127,32559200:279596 -k1,7356:24134612,32559200:279596 -k1,7356:27776206,32559200:279597 -k1,7356:29074887,32559200:279596 -k1,7356:32583029,32559200:0 -) -(1,7357:6630773,33400688:25952256,513147,134348 -k1,7356:7765439,33400688:187015 -k1,7356:8971539,33400688:187015 -k1,7356:13782119,33400688:187015 -k1,7356:16352023,33400688:187015 -k1,7356:17155075,33400688:187014 -k1,7356:18361175,33400688:187015 -k1,7356:20983508,33400688:187015 -k1,7356:23257845,33400688:187015 -(1,7356:23464939,33400688:0,452978,115847 -r1,7383:28395459,33400688:4930520,568825,115847 -k1,7356:23464939,33400688:-4930520 -) -(1,7356:23464939,33400688:4930520,452978,115847 -k1,7356:23464939,33400688:3277 -h1,7356:28392182,33400688:0,411205,112570 -) -k1,7356:28963238,33400688:187015 -k1,7356:29778088,33400688:187015 -k1,7356:32583029,33400688:0 -) -(1,7357:6630773,34242176:25952256,505283,126483 -k1,7356:8541285,34242176:212474 -k1,7356:9622110,34242176:212473 -k1,7356:12622486,34242176:212474 -k1,7356:14038856,34242176:212474 -k1,7356:17759472,34242176:212474 -(1,7356:17966566,34242176:0,435480,115847 -r1,7383:21490239,34242176:3523673,551327,115847 -k1,7356:17966566,34242176:-3523673 -) -(1,7356:17966566,34242176:3523673,435480,115847 -g1,7356:20431826,34242176 -g1,7356:21135250,34242176 -h1,7356:21486962,34242176:0,411205,112570 -) -k1,7356:22083476,34242176:212473 -k1,7356:23747572,34242176:212474 -k1,7356:26342935,34242176:212474 -k1,7356:27171447,34242176:212474 -k1,7356:28403005,34242176:212473 -k1,7356:31394206,34242176:212474 -k1,7357:32583029,34242176:0 -) -(1,7357:6630773,35083664:25952256,513147,134348 -k1,7356:8014541,35083664:272277 -k1,7356:10988867,35083664:272277 -k1,7356:12280228,35083664:272276 -k1,7356:16060647,35083664:272277 -k1,7356:17280575,35083664:272277 -k1,7356:18709562,35083664:272277 -k1,7356:20185734,35083664:272276 -k1,7356:21074049,35083664:272277 -k1,7356:22365411,35083664:272277 -k1,7356:25073006,35083664:272277 -k1,7356:27168494,35083664:272276 -k1,7356:29074584,35083664:272277 -k1,7356:32051532,35083664:272277 -k1,7356:32583029,35083664:0 -) -(1,7357:6630773,35925152:25952256,513147,134348 -k1,7356:8105535,35925152:190256 -k1,7356:9057319,35925152:190256 -k1,7356:10982968,35925152:190256 -(1,7356:10982968,35925152:0,452978,115847 -r1,7383:13451505,35925152:2468537,568825,115847 -k1,7356:10982968,35925152:-2468537 -) -(1,7356:10982968,35925152:2468537,452978,115847 -k1,7356:10982968,35925152:3277 -h1,7356:13448228,35925152:0,411205,112570 -) -k1,7356:13641762,35925152:190257 -k1,7356:14851103,35925152:190256 -k1,7356:18386317,35925152:190256 -k1,7356:19235865,35925152:190256 -k1,7356:20445206,35925152:190256 -k1,7356:23070780,35925152:190256 -k1,7356:25348358,35925152:190256 -k1,7356:26221500,35925152:190257 -k1,7356:28061297,35925152:190256 -k1,7356:29638950,35925152:190256 -k1,7356:31714677,35925152:190256 -k1,7356:32583029,35925152:0 -) -(1,7357:6630773,36766640:25952256,505283,134348 -k1,7356:9583753,36766640:165078 -k1,7356:13256972,36766640:165077 -k1,7356:17667472,36766640:165078 -k1,7356:22353224,36766640:165078 -k1,7356:24213062,36766640:165077 -k1,7356:25708521,36766640:165078 -k1,7356:28607106,36766640:165078 -k1,7356:29763743,36766640:165077 -k1,7356:31966991,36766640:165078 -k1,7357:32583029,36766640:0 -) -(1,7357:6630773,37608128:25952256,513147,134348 -k1,7356:7381160,37608128:161874 -k1,7356:9241072,37608128:161874 -k1,7356:12116137,37608128:161874 -k1,7356:14870614,37608128:161873 -k1,7356:16299954,37608128:161874 -k1,7356:16817688,37608128:161874 -k1,7356:18852581,37608128:161874 -k1,7356:20868469,37608128:161874 -k1,7356:22049428,37608128:161874 -k1,7356:23745499,37608128:161873 -k1,7356:26350555,37608128:161874 -k1,7356:29399290,37608128:161874 -k1,7356:31206118,37608128:161874 -k1,7356:32583029,37608128:0 -) -(1,7357:6630773,38449616:25952256,513147,126483 -g1,7356:7849087,38449616 -g1,7356:10356494,38449616 -g1,7356:13334450,38449616 -g1,7356:14295207,38449616 -g1,7356:15513521,38449616 -g1,7356:18084498,38449616 -g1,7356:21152893,38449616 -g1,7356:22343682,38449616 -g1,7356:24581081,38449616 -g1,7356:25466472,38449616 -k1,7357:32583029,38449616:5408689 -g1,7357:32583029,38449616 -) -v1,7359:6630773,39430366:0,393216,0 -(1,7365:6630773,41052653:25952256,2015503,196608 -g1,7365:6630773,41052653 -g1,7365:6630773,41052653 -g1,7365:6434165,41052653 -(1,7365:6434165,41052653:0,2015503,196608 -r1,7383:32779637,41052653:26345472,2212111,196608 -k1,7365:6434165,41052653:-26345472 -) -(1,7365:6434165,41052653:26345472,2015503,196608 -[1,7365:6630773,41052653:25952256,1818895,0 -(1,7361:6630773,39644276:25952256,410518,82312 -(1,7360:6630773,39644276:0,0,0 -g1,7360:6630773,39644276 -g1,7360:6630773,39644276 -g1,7360:6303093,39644276 -(1,7360:6303093,39644276:0,0,0 -) -g1,7360:6630773,39644276 -) -g1,7361:10424521,39644276 -g1,7361:11372959,39644276 -g1,7361:15166708,39644276 -g1,7361:17063582,39644276 -g1,7361:17695874,39644276 -g1,7361:19908894,39644276 -h1,7361:20225040,39644276:0,0,0 -k1,7361:32583029,39644276:12357989 -g1,7361:32583029,39644276 -) -(1,7362:6630773,40310454:25952256,404226,82312 -h1,7362:6630773,40310454:0,0,0 -g1,7362:6946919,40310454 -g1,7362:7263065,40310454 -g1,7362:7579211,40310454 -g1,7362:7895357,40310454 -g1,7362:8211503,40310454 -g1,7362:8527649,40310454 -g1,7362:8843795,40310454 -g1,7362:12005253,40310454 -g1,7362:13902127,40310454 -g1,7362:14534419,40310454 -g1,7362:17063585,40310454 -g1,7362:17379731,40310454 -g1,7362:19276605,40310454 -g1,7362:21173479,40310454 -g1,7362:21805771,40310454 -h1,7362:24018791,40310454:0,0,0 -k1,7362:32583029,40310454:8564238 -g1,7362:32583029,40310454 -) -(1,7363:6630773,40976632:25952256,404226,76021 -h1,7363:6630773,40976632:0,0,0 -g1,7363:6946919,40976632 -g1,7363:7263065,40976632 -g1,7363:7579211,40976632 -g1,7363:7895357,40976632 -h1,7363:8211503,40976632:0,0,0 -k1,7363:32583029,40976632:24371526 -g1,7363:32583029,40976632 -) -] -) -g1,7365:32583029,41052653 -g1,7365:6630773,41052653 -g1,7365:6630773,41052653 -g1,7365:32583029,41052653 -g1,7365:32583029,41052653 -) -h1,7365:6630773,41249261:0,0,0 -v1,7369:6630773,42544583:0,393216,0 -(1,7379:6630773,45510161:25952256,3358794,196608 -g1,7379:6630773,45510161 -g1,7379:6630773,45510161 -g1,7379:6434165,45510161 -(1,7379:6434165,45510161:0,3358794,196608 -r1,7383:32779637,45510161:26345472,3555402,196608 -k1,7379:6434165,45510161:-26345472 -) -(1,7379:6434165,45510161:26345472,3358794,196608 -[1,7379:6630773,45510161:25952256,3162186,0 -(1,7371:6630773,42752201:25952256,404226,101187 -(1,7370:6630773,42752201:0,0,0 -g1,7370:6630773,42752201 -g1,7370:6630773,42752201 -g1,7370:6303093,42752201 -(1,7370:6303093,42752201:0,0,0 -) -g1,7370:6630773,42752201 -) -g1,7371:7263065,42752201 -g1,7371:8211503,42752201 -g1,7371:10740669,42752201 -g1,7371:11372961,42752201 -g1,7371:16431293,42752201 -g1,7371:18644313,42752201 -g1,7371:19276605,42752201 -g1,7371:20225043,42752201 -g1,7371:21489626,42752201 -g1,7371:22121918,42752201 -g1,7371:26231812,42752201 -g1,7371:28128686,42752201 -g1,7371:28760978,42752201 -h1,7371:30341707,42752201:0,0,0 -k1,7371:32583029,42752201:2241322 -g1,7371:32583029,42752201 -) -(1,7372:6630773,43418379:25952256,277873,0 -h1,7372:6630773,43418379:0,0,0 -h1,7372:6946919,43418379:0,0,0 -k1,7372:32583029,43418379:25636110 -g1,7372:32583029,43418379 -) -(1,7378:6630773,44095493:25952256,404226,82312 -(1,7374:6630773,44095493:0,0,0 -g1,7374:6630773,44095493 -g1,7374:6630773,44095493 -g1,7374:6303093,44095493 -(1,7374:6303093,44095493:0,0,0 -) -g1,7374:6630773,44095493 -) -g1,7378:7579210,44095493 -g1,7378:7895356,44095493 -g1,7378:8211502,44095493 -g1,7378:8527648,44095493 -g1,7378:8843794,44095493 -g1,7378:9159940,44095493 -g1,7378:9476086,44095493 -g1,7378:9792232,44095493 -g1,7378:10108378,44095493 -g1,7378:10424524,44095493 -g1,7378:10740670,44095493 -g1,7378:12321399,44095493 -g1,7378:12637545,44095493 -g1,7378:12953691,44095493 -k1,7378:12953691,44095493:0 -h1,7378:14218274,44095493:0,0,0 -k1,7378:32583030,44095493:18364756 -g1,7378:32583030,44095493 -) -(1,7378:6630773,44761671:25952256,404226,82312 -h1,7378:6630773,44761671:0,0,0 -g1,7378:7579210,44761671 -g1,7378:9159938,44761671 -g1,7378:12321395,44761671 -h1,7378:14218269,44761671:0,0,0 -k1,7378:32583029,44761671:18364760 -g1,7378:32583029,44761671 -) -(1,7378:6630773,45427849:25952256,404226,82312 -h1,7378:6630773,45427849:0,0,0 -g1,7378:7579210,45427849 -g1,7378:9159938,45427849 -g1,7378:9476084,45427849 -g1,7378:12321395,45427849 -g1,7378:12637541,45427849 -h1,7378:14218269,45427849:0,0,0 -k1,7378:32583029,45427849:18364760 -g1,7378:32583029,45427849 -) -] -) -g1,7379:32583029,45510161 -g1,7379:6630773,45510161 -g1,7379:6630773,45510161 -g1,7379:32583029,45510161 -g1,7379:32583029,45510161 -) -h1,7379:6630773,45706769:0,0,0 -] -(1,7383:32583029,45706769:0,0,0 -g1,7383:32583029,45706769 -) -) -] -(1,7383:6630773,47279633:25952256,0,0 -h1,7383:6630773,47279633:25952256,0,0 -) -] -(1,7383:4262630,4025873:0,0,0 -[1,7383:-473656,4025873:0,0,0 -(1,7383:-473656,-710413:0,0,0 -(1,7383:-473656,-710413:0,0,0 -g1,7383:-473656,-710413 -) -g1,7383:-473656,-710413 -) -] -) -] -!26301 -}139 -Input:1143:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1144:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1145:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1146:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1147:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1148:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1149:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1150:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1151:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1152:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1153:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1154:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1155:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1156:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1157:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1392 -{140 -[1,7435:4262630,47279633:28320399,43253760,0 -(1,7435:4262630,4025873:0,0,0 -[1,7435:-473656,4025873:0,0,0 -(1,7435:-473656,-710413:0,0,0 -(1,7435:-473656,-644877:0,0,0 -k1,7435:-473656,-644877:-65536 -) -(1,7435:-473656,4736287:0,0,0 -k1,7435:-473656,4736287:5209943 -) -g1,7435:-473656,-710413 -) -] -) -[1,7435:6630773,47279633:25952256,43253760,0 -[1,7435:6630773,4812305:25952256,786432,0 -(1,7435:6630773,4812305:25952256,505283,126483 -(1,7435:6630773,4812305:25952256,505283,126483 -g1,7435:3078558,4812305 -[1,7435:3078558,4812305:0,0,0 -(1,7435:3078558,2439708:0,1703936,0 -k1,7435:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,7435:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,7435:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,7435:3078558,4812305:0,0,0 -(1,7435:3078558,2439708:0,1703936,0 -g1,7435:29030814,2439708 -g1,7435:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,7435:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,7435:37855564,2439708:1179648,16384,0 -) -) -k1,7435:3078556,2439708:-34777008 -) -] -[1,7435:3078558,4812305:0,0,0 -(1,7435:3078558,49800853:0,16384,2228224 -k1,7435:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,7435:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,7435:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,7435:3078558,4812305:0,0,0 -(1,7435:3078558,49800853:0,16384,2228224 -g1,7435:29030814,49800853 -g1,7435:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,7435:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,7435:37855564,49800853:1179648,16384,0 -) -) -k1,7435:3078556,49800853:-34777008 -) -] -g1,7435:6630773,4812305 -g1,7435:6630773,4812305 -g1,7435:9827619,4812305 -g1,7435:11304145,4812305 -g1,7435:13795823,4812305 -g1,7435:15605272,4812305 -k1,7435:31387652,4812305:15782380 -) -) -] -[1,7435:6630773,45706769:25952256,40108032,0 -(1,7435:6630773,45706769:25952256,40108032,0 -(1,7435:6630773,45706769:0,0,0 -g1,7435:6630773,45706769 -) -[1,7435:6630773,45706769:25952256,40108032,0 -v1,7383:6630773,6254097:0,393216,0 -(1,7393:6630773,9274275:25952256,3413394,196608 -g1,7393:6630773,9274275 -g1,7393:6630773,9274275 -g1,7393:6434165,9274275 -(1,7393:6434165,9274275:0,3413394,196608 -r1,7435:32779637,9274275:26345472,3610002,196608 -k1,7393:6434165,9274275:-26345472 -) -(1,7393:6434165,9274275:26345472,3413394,196608 -[1,7393:6630773,9274275:25952256,3216786,0 -(1,7385:6630773,6461715:25952256,404226,101187 -(1,7384:6630773,6461715:0,0,0 -g1,7384:6630773,6461715 -g1,7384:6630773,6461715 -g1,7384:6303093,6461715 -(1,7384:6303093,6461715:0,0,0 -) -g1,7384:6630773,6461715 -) -g1,7385:7263065,6461715 -g1,7385:8211503,6461715 -g1,7385:10740669,6461715 -g1,7385:11372961,6461715 -g1,7385:16431293,6461715 -g1,7385:18644313,6461715 -g1,7385:19276605,6461715 -g1,7385:20225043,6461715 -g1,7385:21489626,6461715 -g1,7385:22121918,6461715 -g1,7385:26231812,6461715 -g1,7385:28128686,6461715 -g1,7385:28760978,6461715 -h1,7385:30341707,6461715:0,0,0 -k1,7385:32583029,6461715:2241322 -g1,7385:32583029,6461715 -) -(1,7386:6630773,7127893:25952256,277873,0 -h1,7386:6630773,7127893:0,0,0 -h1,7386:6946919,7127893:0,0,0 -k1,7386:32583029,7127893:25636110 -g1,7386:32583029,7127893 -) -(1,7392:6630773,7859607:25952256,404226,82312 -(1,7388:6630773,7859607:0,0,0 -g1,7388:6630773,7859607 -g1,7388:6630773,7859607 -g1,7388:6303093,7859607 -(1,7388:6303093,7859607:0,0,0 -) -g1,7388:6630773,7859607 -) -g1,7392:7579210,7859607 -g1,7392:7895356,7859607 -g1,7392:8211502,7859607 -g1,7392:8527648,7859607 -g1,7392:8843794,7859607 -g1,7392:9159940,7859607 -g1,7392:9476086,7859607 -g1,7392:9792232,7859607 -g1,7392:10108378,7859607 -g1,7392:10424524,7859607 -g1,7392:10740670,7859607 -g1,7392:11056816,7859607 -g1,7392:12637545,7859607 -g1,7392:12953691,7859607 -g1,7392:13269837,7859607 -g1,7392:13585983,7859607 -g1,7392:13902129,7859607 -g1,7392:15482858,7859607 -g1,7392:15799004,7859607 -g1,7392:16115150,7859607 -g1,7392:16431296,7859607 -g1,7392:16747442,7859607 -k1,7392:16747442,7859607:0 -h1,7392:18012025,7859607:0,0,0 -k1,7392:32583029,7859607:14571004 -g1,7392:32583029,7859607 -) -(1,7392:6630773,8525785:25952256,404226,82312 -h1,7392:6630773,8525785:0,0,0 -g1,7392:7579210,8525785 -g1,7392:9159938,8525785 -g1,7392:12637541,8525785 -g1,7392:15482852,8525785 -h1,7392:18012017,8525785:0,0,0 -k1,7392:32583029,8525785:14571012 -g1,7392:32583029,8525785 -) -(1,7392:6630773,9191963:25952256,404226,82312 -h1,7392:6630773,9191963:0,0,0 -g1,7392:7579210,9191963 -g1,7392:9159938,9191963 -g1,7392:9476084,9191963 -g1,7392:12637541,9191963 -g1,7392:15482852,9191963 -h1,7392:18012017,9191963:0,0,0 -k1,7392:32583029,9191963:14571012 -g1,7392:32583029,9191963 -) -] -) -g1,7393:32583029,9274275 -g1,7393:6630773,9274275 -g1,7393:6630773,9274275 -g1,7393:32583029,9274275 -g1,7393:32583029,9274275 -) -h1,7393:6630773,9470883:0,0,0 -(1,7397:6630773,10836659:25952256,513147,126483 -h1,7396:6630773,10836659:983040,0,0 -k1,7396:8538261,10836659:296613 -k1,7396:9600990,10836659:296613 -k1,7396:12889322,10836659:296613 -k1,7396:15214930,10836659:296613 -k1,7396:16379895,10836659:296613 -k1,7396:18151723,10836659:296613 -k1,7396:19961562,10836659:296613 -k1,7396:22983163,10836659:296614 -k1,7396:26479244,10836659:296613 -k1,7396:29967460,10836659:296613 -k1,7396:30880111,10836659:296613 -k1,7396:31591469,10836659:296515 -k1,7396:32583029,10836659:0 -) -(1,7397:6630773,11678147:25952256,513147,134348 -k1,7396:9870108,11678147:213538 -k1,7396:11477597,11678147:213538 -k1,7396:12863574,11678147:213538 -k1,7396:15205721,11678147:213538 -k1,7396:19030293,11678147:213538 -k1,7396:21129302,11678147:213538 -k1,7396:22447122,11678147:213538 -k1,7396:23408426,11678147:213538 -k1,7396:25489740,11678147:213538 -k1,7396:27438671,11678147:213538 -k1,7396:29063855,11678147:213538 -k1,7396:31966991,11678147:213538 -k1,7396:32583029,11678147:0 -) -(1,7397:6630773,12519635:25952256,505283,134348 -k1,7396:12323269,12519635:197302 -(1,7396:12323269,12519635:0,452978,115847 -r1,7435:14088383,12519635:1765114,568825,115847 -k1,7396:12323269,12519635:-1765114 -) -(1,7396:12323269,12519635:1765114,452978,115847 -g1,7396:13029970,12519635 -g1,7396:13733394,12519635 -h1,7396:14085106,12519635:0,411205,112570 -) -k1,7396:14459355,12519635:197302 -k1,7396:15416875,12519635:197302 -k1,7396:19770470,12519635:197302 -k1,7396:21476411,12519635:197302 -k1,7396:23742029,12519635:197302 -k1,7396:25319519,12519635:197302 -k1,7396:26621103,12519635:197302 -k1,7396:27566171,12519635:197302 -k1,7396:29631249,12519635:197302 -k1,7396:31563944,12519635:197302 -k1,7396:32583029,12519635:0 -) -(1,7397:6630773,13361123:25952256,513147,126483 -k1,7396:8535631,13361123:251385 -k1,7396:10871060,13361123:251384 -k1,7396:11808607,13361123:251385 -k1,7396:13007642,13361123:251384 -k1,7396:15984014,13361123:251385 -k1,7396:19434866,13361123:251384 -k1,7396:20877696,13361123:251385 -k1,7396:25354186,13361123:251384 -k1,7396:26891387,13361123:251385 -k1,7396:29348058,13361123:251384 -k1,7396:30250871,13361123:251385 -k1,7396:31521340,13361123:251384 -(1,7396:31521340,13361123:0,414482,115847 -r1,7435:32583029,13361123:1061689,530329,115847 -k1,7396:31521340,13361123:-1061689 -) -(1,7396:31521340,13361123:1061689,414482,115847 -k1,7396:31521340,13361123:3277 -h1,7396:32579752,13361123:0,411205,112570 -) -k1,7396:32583029,13361123:0 -) -(1,7397:6630773,14202611:25952256,513147,126483 -k1,7396:10160368,14202611:248863 -k1,7396:11068522,14202611:248862 -k1,7396:13080959,14202611:248863 -k1,7396:16529289,14202611:248862 -k1,7396:17265690,14202611:248813 -k1,7396:18527083,14202611:248862 -k1,7396:21611033,14202611:248863 -k1,7396:25164876,14202611:248862 -k1,7396:26065167,14202611:248863 -k1,7396:27333114,14202611:248862 -k1,7396:30919070,14202611:248863 -k1,7397:32583029,14202611:0 -) -(1,7397:6630773,15044099:25952256,513147,126483 -k1,7396:8483709,15044099:229609 -(1,7396:8483709,15044099:0,424981,115847 -r1,7435:12710806,15044099:4227097,540828,115847 -k1,7396:8483709,15044099:-4227097 -) -(1,7396:8483709,15044099:4227097,424981,115847 -g1,7396:11652393,15044099 -g1,7396:12355817,15044099 -h1,7396:12707529,15044099:0,411205,112570 -) -k1,7396:12940415,15044099:229609 -k1,7396:15659081,15044099:229609 -k1,7396:16842238,15044099:229608 -k1,7396:19865647,15044099:229609 -k1,7396:22841870,15044099:229609 -(1,7396:22841870,15044099:0,414482,115847 -r1,7435:23200136,15044099:358266,530329,115847 -k1,7396:22841870,15044099:-358266 -) -(1,7396:22841870,15044099:358266,414482,115847 -k1,7396:22841870,15044099:3277 -h1,7396:23196859,15044099:0,411205,112570 -) -k1,7396:23429745,15044099:229609 -k1,7396:24275392,15044099:229609 -k1,7396:25987425,15044099:229609 -k1,7396:27731570,15044099:229608 -(1,7396:27938664,15044099:0,459977,115847 -r1,7435:28296930,15044099:358266,575824,115847 -k1,7396:27938664,15044099:-358266 -) -(1,7396:27938664,15044099:358266,459977,115847 -k1,7396:27938664,15044099:3277 -h1,7396:28293653,15044099:0,411205,112570 -) -k1,7396:28733633,15044099:229609 -k1,7396:30154687,15044099:229609 -k1,7396:31821501,15044099:229609 -k1,7396:32583029,15044099:0 -) -(1,7397:6630773,15885587:25952256,513147,126483 -g1,7396:8568017,15885587 -g1,7396:9123106,15885587 -g1,7396:12080090,15885587 -g1,7396:12930747,15885587 -g1,7396:13918374,15885587 -g1,7396:16358934,15885587 -g1,7396:18686772,15885587 -g1,7396:22166733,15885587 -(1,7396:22373827,15885587:0,435480,115847 -r1,7435:24490653,15885587:2116826,551327,115847 -k1,7396:22373827,15885587:-2116826 -) -(1,7396:22373827,15885587:2116826,435480,115847 -g1,7396:23432240,15885587 -g1,7396:24135664,15885587 -h1,7396:24487376,15885587:0,411205,112570 -) -k1,7397:32583029,15885587:7711612 -g1,7397:32583029,15885587 -) -v1,7399:6630773,17076053:0,393216,0 -(1,7409:6630773,20089940:25952256,3407103,196608 -g1,7409:6630773,20089940 -g1,7409:6630773,20089940 -g1,7409:6434165,20089940 -(1,7409:6434165,20089940:0,3407103,196608 -r1,7435:32779637,20089940:26345472,3603711,196608 -k1,7409:6434165,20089940:-26345472 -) -(1,7409:6434165,20089940:26345472,3407103,196608 -[1,7409:6630773,20089940:25952256,3210495,0 -(1,7401:6630773,17283671:25952256,404226,107478 -(1,7400:6630773,17283671:0,0,0 -g1,7400:6630773,17283671 -g1,7400:6630773,17283671 -g1,7400:6303093,17283671 -(1,7400:6303093,17283671:0,0,0 -) -g1,7400:6630773,17283671 -) -k1,7401:6630773,17283671:0 -g1,7401:12005250,17283671 -g1,7401:12637542,17283671 -g1,7401:13585979,17283671 -g1,7401:15166708,17283671 -g1,7401:18012019,17283671 -g1,7401:19592748,17283671 -g1,7401:20857331,17283671 -k1,7401:20857331,17283671:1573 -h1,7401:22755778,17283671:0,0,0 -k1,7401:32583029,17283671:9827251 -g1,7401:32583029,17283671 -) -(1,7402:6630773,17949849:25952256,410518,76021 -h1,7402:6630773,17949849:0,0,0 -g1,7402:9476084,17949849 -g1,7402:10424522,17949849 -k1,7402:10424522,17949849:0 -h1,7402:13269833,17949849:0,0,0 -k1,7402:32583029,17949849:19313196 -g1,7402:32583029,17949849 -) -(1,7403:6630773,18616027:25952256,410518,101187 -h1,7403:6630773,18616027:0,0,0 -g1,7403:7263065,18616027 -g1,7403:8211503,18616027 -g1,7403:11056815,18616027 -g1,7403:11689107,18616027 -g1,7403:14850564,18616027 -g1,7403:16115147,18616027 -g1,7403:16747439,18616027 -g1,7403:18328169,18616027 -g1,7403:19276606,18616027 -g1,7403:19908898,18616027 -h1,7403:20541190,18616027:0,0,0 -k1,7403:32583029,18616027:12041839 -g1,7403:32583029,18616027 -) -(1,7404:6630773,19282205:25952256,404226,76021 -h1,7404:6630773,19282205:0,0,0 -k1,7404:6630773,19282205:0 -h1,7404:8527647,19282205:0,0,0 -k1,7404:32583029,19282205:24055382 -g1,7404:32583029,19282205 -) -(1,7408:6630773,20013919:25952256,404226,76021 -(1,7406:6630773,20013919:0,0,0 -g1,7406:6630773,20013919 -g1,7406:6630773,20013919 -g1,7406:6303093,20013919 -(1,7406:6303093,20013919:0,0,0 -) -g1,7406:6630773,20013919 -) -g1,7408:7579210,20013919 -g1,7408:7895356,20013919 -g1,7408:9159939,20013919 -g1,7408:11372959,20013919 -g1,7408:12637542,20013919 -g1,7408:14218271,20013919 -g1,7408:15799000,20013919 -g1,7408:17379729,20013919 -g1,7408:18960458,20013919 -h1,7408:19908895,20013919:0,0,0 -k1,7408:32583029,20013919:12674134 -g1,7408:32583029,20013919 -) -] -) -g1,7409:32583029,20089940 -g1,7409:6630773,20089940 -g1,7409:6630773,20089940 -g1,7409:32583029,20089940 -g1,7409:32583029,20089940 -) -h1,7409:6630773,20286548:0,0,0 -v1,7413:6630773,22176612:0,393216,0 -(1,7414:6630773,30419706:25952256,8636310,616038 -g1,7414:6630773,30419706 -(1,7414:6630773,30419706:25952256,8636310,616038 -(1,7414:6630773,31035744:25952256,9252348,0 -[1,7414:6630773,31035744:25952256,9252348,0 -(1,7414:6630773,31009530:25952256,9199920,0 -r1,7435:6656987,31009530:26214,9199920,0 -[1,7414:6656987,31009530:25899828,9199920,0 -(1,7414:6656987,30419706:25899828,8020272,0 -[1,7414:7246811,30419706:24720180,8020272,0 -(1,7414:7246811,23561319:24720180,1161885,196608 -(1,7413:7246811,23561319:0,1161885,196608 -r1,7435:8794447,23561319:1547636,1358493,196608 -k1,7413:7246811,23561319:-1547636 -) -(1,7413:7246811,23561319:1547636,1161885,196608 -) -k1,7413:9001296,23561319:206849 -k1,7413:11230787,23561319:212293 -k1,7413:14571769,23561319:212293 -k1,7413:15731713,23561319:212293 -k1,7413:17393007,23561319:212293 -k1,7413:21069988,23561319:206850 -k1,7413:23172138,23561319:206849 -k1,7413:26404784,23561319:206849 -k1,7413:28782186,23561319:206850 -k1,7413:31118300,23561319:206849 -k1,7414:31966991,23561319:0 -) -(1,7414:7246811,24402807:24720180,513147,126483 -k1,7413:9198732,24402807:289273 -k1,7413:11819121,24402807:289273 -k1,7413:13853617,24402807:289272 -k1,7413:14829052,24402807:289273 -k1,7413:16498513,24402807:289273 -k1,7413:17779346,24402807:289273 -k1,7413:19281690,24402807:289273 -k1,7413:22045601,24402807:289272 -k1,7413:22822372,24402807:289183 -k1,7413:25236322,24402807:289273 -k1,7413:28187011,24402807:289272 -k1,7413:29007781,24402807:289273 -k1,7413:30316139,24402807:289273 -k1,7414:31966991,24402807:0 -) -(1,7414:7246811,25244295:24720180,505283,134348 -k1,7413:10365252,25244295:255173 -k1,7413:13135042,25244295:255174 -k1,7413:15309109,25244295:255173 -k1,7413:16432634,25244295:255173 -k1,7413:18762678,25244295:255174 -k1,7413:21576377,25244295:255173 -k1,7413:22187411,25244295:255174 -k1,7413:25529330,25244295:255173 -k1,7413:27069009,25244295:255173 -k1,7413:29271913,25244295:255174 -k1,7413:29882946,25244295:255173 -k1,7413:31966991,25244295:0 -) -(1,7414:7246811,26085783:24720180,505283,126483 -k1,7413:9364584,26085783:274901 -k1,7413:12274687,26085783:274900 -k1,7413:15770683,26085783:274901 -k1,7413:16533096,26085783:274825 -k1,7413:19010006,26085783:274900 -k1,7413:20651988,26085783:274901 -k1,7413:21458385,26085783:274900 -k1,7413:22089146,26085783:274901 -k1,7413:24704993,26085783:274901 -k1,7413:26898787,26085783:274900 -k1,7413:30975431,26085783:274901 -k1,7413:31966991,26085783:0 -) -(1,7414:7246811,26927271:24720180,505283,126483 -k1,7413:9000118,26927271:175855 -k1,7413:10563370,26927271:175855 -k1,7413:11095084,26927271:175854 -k1,7413:14344578,26927271:175855 -k1,7413:15804939,26927271:175855 -k1,7413:18030105,26927271:175855 -k1,7413:18818722,26927271:175855 -k1,7413:20446199,26927271:175855 -k1,7413:23512846,26927271:175854 -k1,7413:24885388,26927271:175855 -k1,7413:27773123,26927271:175855 -k1,7413:29140423,26927271:175855 -k1,7413:31966991,26927271:0 -) -(1,7414:7246811,27768759:24720180,513147,126483 -k1,7413:9010623,27768759:162112 -k1,7413:11911485,27768759:162112 -k1,7413:15545040,27768759:162113 -k1,7413:16366444,27768759:162112 -k1,7413:17731797,27768759:162112 -k1,7413:19323249,27768759:162112 -k1,7413:20016858,27768759:162112 -k1,7413:21198055,27768759:162112 -k1,7413:24831610,27768759:162113 -k1,7413:25653014,27768759:162112 -k1,7413:29331788,27768759:162112 -k1,7413:31966991,27768759:0 -) -(1,7414:7246811,28610247:24720180,505283,134348 -k1,7413:10788740,28610247:215977 -k1,7413:14132096,28610247:215978 -k1,7413:16164731,28610247:215977 -k1,7413:19372427,28610247:215977 -k1,7413:20579965,28610247:215978 -k1,7413:23157860,28610247:215977 -k1,7413:25847166,28610247:215977 -k1,7413:29571286,28610247:215978 -k1,7413:31280829,28610247:215977 -k1,7413:31966991,28610247:0 -) -(1,7414:7246811,29451735:24720180,513147,134348 -k1,7413:7879334,29451735:276663 -k1,7413:10517914,29451735:276662 -k1,7413:13154528,29451735:276663 -k1,7413:14663268,29451735:276663 -k1,7413:16438083,29451735:276662 -h1,7413:17633460,29451735:0,0,0 -k1,7413:17910123,29451735:276663 -k1,7413:19134437,29451735:276663 -k1,7413:21113070,29451735:276663 -k1,7413:25106934,29451735:276662 -k1,7413:26035025,29451735:276663 -k1,7413:27330773,29451735:276663 -k1,7413:28699920,29451735:276662 -k1,7413:29635875,29451735:276663 -k1,7413:31966991,29451735:0 -) -(1,7414:7246811,30293223:24720180,505283,126483 -g1,7413:10163163,30293223 -k1,7414:31966991,30293223:19677840 -g1,7414:31966991,30293223 -) -] -) -] -r1,7435:32583029,31009530:26214,9199920,0 -) -] -) -) -g1,7414:32583029,30419706 -) -h1,7414:6630773,31035744:0,0,0 -(1,7416:6630773,33843312:25952256,32768,229376 -(1,7416:6630773,33843312:0,32768,229376 -(1,7416:6630773,33843312:5505024,32768,229376 -r1,7435:12135797,33843312:5505024,262144,229376 -) -k1,7416:6630773,33843312:-5505024 -) -(1,7416:6630773,33843312:25952256,32768,0 -r1,7435:32583029,33843312:25952256,32768,0 -) -) -(1,7416:6630773,35447640:25952256,606339,151780 -(1,7416:6630773,35447640:1974731,582746,14155 -g1,7416:6630773,35447640 -g1,7416:8605504,35447640 -) -g1,7416:12737418,35447640 -g1,7416:14546212,35447640 -g1,7416:17669920,35447640 -k1,7416:32583029,35447640:12762217 -g1,7416:32583029,35447640 -) -(1,7419:6630773,36682344:25952256,513147,134348 -k1,7418:7236271,36682344:190655 -k1,7418:10187311,36682344:190664 -k1,7418:12609475,36682344:190663 -k1,7418:15825936,36682344:190664 -k1,7418:17301105,36682344:190663 -k1,7418:18596051,36682344:190664 -k1,7418:19534480,36682344:190663 -k1,7418:21238370,36682344:190664 -k1,7418:22080461,36682344:190663 -k1,7418:24000620,36682344:190664 -k1,7418:26448998,36682344:190663 -k1,7418:29251927,36682344:190664 -k1,7418:31187814,36682344:190663 -k1,7418:31994516,36682344:190664 -k1,7418:32583029,36682344:0 -) -(1,7419:6630773,37523832:25952256,513147,134348 -k1,7418:8709521,37523832:204418 -k1,7418:11939736,37523832:204418 -k1,7418:13135714,37523832:204418 -k1,7418:15626683,37523832:204418 -k1,7418:16447140,37523832:204419 -k1,7418:17105061,37523832:204412 -k1,7418:18500924,37523832:204418 -k1,7418:21822235,37523832:204419 -k1,7418:22751481,37523832:204418 -k1,7418:24422595,37523832:204418 -k1,7418:26325051,37523832:204418 -k1,7418:29141734,37523832:204418 -k1,7418:32583029,37523832:0 -) -(1,7419:6630773,38365320:25952256,513147,134348 -k1,7418:7863287,38365320:240954 -k1,7418:9791138,38365320:240954 -k1,7418:11412280,38365320:240954 -k1,7418:12644794,38365320:240954 -k1,7418:14267247,38365320:240954 -k1,7418:17606088,38365320:240954 -k1,7418:19343229,38365320:240954 -k1,7418:24007863,38365320:240954 -k1,7418:25019520,38365320:240954 -k1,7418:27872739,38365320:240954 -k1,7418:31224687,38365320:240954 -k1,7418:32227169,38365320:240954 -k1,7418:32583029,38365320:0 -) -(1,7419:6630773,39206808:25952256,513147,134348 -k1,7418:8754290,39206808:250498 -k1,7418:11700285,39206808:250499 -k1,7418:13050477,39206808:250498 -k1,7418:16387722,39206808:250499 -k1,7418:17657305,39206808:250498 -k1,7418:20242852,39206808:250499 -k1,7418:21989537,39206808:250498 -k1,7418:23431481,39206808:250499 -k1,7418:24786261,39206808:250498 -k1,7418:26752493,39206808:250499 -k1,7418:27461088,39206808:250498 -k1,7418:29581985,39206808:250499 -k1,7418:30483911,39206808:250498 -k1,7419:32583029,39206808:0 -) -(1,7419:6630773,40048296:25952256,513147,126483 -k1,7418:8774644,40048296:191553 -k1,7418:9453777,40048296:191545 -k1,7418:11210985,40048296:191553 -k1,7418:12796488,40048296:191552 -k1,7418:15979760,40048296:191553 -k1,7418:16830605,40048296:191553 -k1,7418:18714298,40048296:191553 -k1,7418:20883071,40048296:191552 -k1,7418:24100421,40048296:191553 -k1,7418:25576480,40048296:191553 -k1,7418:26759593,40048296:191553 -k1,7418:29735114,40048296:191552 -k1,7418:30542705,40048296:191553 -k1,7418:32168186,40048296:191553 -k1,7419:32583029,40048296:0 -) -(1,7419:6630773,40889784:25952256,513147,134348 -g1,7418:7361499,40889784 -g1,7418:10411544,40889784 -g1,7418:12182326,40889784 -g1,7418:13279398,40889784 -g1,7418:15175354,40889784 -g1,7418:18400380,40889784 -g1,7418:19952272,40889784 -g1,7418:20507361,40889784 -g1,7418:22684467,40889784 -g1,7418:23569858,40889784 -g1,7418:25277726,40889784 -g1,7418:26783088,40889784 -k1,7419:32583029,40889784:2380273 -g1,7419:32583029,40889784 -) -] -(1,7435:32583029,45706769:0,0,0 -g1,7435:32583029,45706769 -) -) -] -(1,7435:6630773,47279633:25952256,0,0 -h1,7435:6630773,47279633:25952256,0,0 -) -] -(1,7435:4262630,4025873:0,0,0 -[1,7435:-473656,4025873:0,0,0 -(1,7435:-473656,-710413:0,0,0 -(1,7435:-473656,-710413:0,0,0 -g1,7435:-473656,-710413 -) -g1,7435:-473656,-710413 -) -] -) -] -!21504 -}140 -Input:1158:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1159:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1160:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1161:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1162:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1163:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1164:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1165:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1166:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1167:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!932 -{141 -[1,7477:4262630,47279633:28320399,43253760,0 -(1,7477:4262630,4025873:0,0,0 -[1,7477:-473656,4025873:0,0,0 -(1,7477:-473656,-710413:0,0,0 -(1,7477:-473656,-644877:0,0,0 -k1,7477:-473656,-644877:-65536 -) -(1,7477:-473656,4736287:0,0,0 -k1,7477:-473656,4736287:5209943 -) -g1,7477:-473656,-710413 -) -] -) -[1,7477:6630773,47279633:25952256,43253760,0 -[1,7477:6630773,4812305:25952256,786432,0 -(1,7477:6630773,4812305:25952256,505283,134348 -(1,7477:6630773,4812305:25952256,505283,134348 -g1,7477:3078558,4812305 -[1,7477:3078558,4812305:0,0,0 -(1,7477:3078558,2439708:0,1703936,0 -k1,7477:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,7477:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,7477:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,7477:3078558,4812305:0,0,0 -(1,7477:3078558,2439708:0,1703936,0 -g1,7477:29030814,2439708 -g1,7477:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,7477:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,7477:37855564,2439708:1179648,16384,0 -) -) -k1,7477:3078556,2439708:-34777008 -) -] -[1,7477:3078558,4812305:0,0,0 -(1,7477:3078558,49800853:0,16384,2228224 -k1,7477:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,7477:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,7477:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,7477:3078558,4812305:0,0,0 -(1,7477:3078558,49800853:0,16384,2228224 -g1,7477:29030814,49800853 -g1,7477:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,7477:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,7477:37855564,49800853:1179648,16384,0 -) -) -k1,7477:3078556,49800853:-34777008 -) -] -g1,7477:6630773,4812305 -k1,7477:18771974,4812305:10945824 -g1,7477:20158715,4812305 -g1,7477:20807521,4812305 -g1,7477:24121676,4812305 -g1,7477:28605649,4812305 -g1,7477:30015328,4812305 -) -) -] -[1,7477:6630773,45706769:25952256,40108032,0 -(1,7477:6630773,45706769:25952256,40108032,0 -(1,7477:6630773,45706769:0,0,0 -g1,7477:6630773,45706769 -) -[1,7477:6630773,45706769:25952256,40108032,0 -(1,7434:6630773,14821484:25952256,9222747,0 -h1,7420:6630773,14821484:983040,0,0 -k1,7420:10037135,14821484:2423322 -[1,7434:10037135,14821484:20122573,9222747,0 -(1,7434:10037135,5664273:20122573,65536,0 -g1,7434:10037135,5664273 -(1,7434:10037135,5664273:20122573,65536,0 -r1,7477:30159708,5664273:20122573,65536,0 -) -g1,7434:30159708,5664273 -) -(1,7434:10037135,10382493:20122573,4652684,4242383 -g1,7434:10037135,10382493 -(1,7434:10037135,10382493:20122573,4652684,4242383 -g1,7420:10236364,10382493 -$1,7434:10236364,10382493 -[1,7434:10236364,10382493:19923344,4652684,4242383 -(1,7423:10236364,6505791:19923344,539955,231411 -g1,7422:10236364,6505791 -(1,7422:10236364,6505791:3827321,539955,231411 -r1,7477:10236364,6505791:0,771366,231411 -g1,7422:10564044,6505791 -g1,7422:10564045,6505791 -k1,7422:13736005,6505791:382092 -g1,7422:14063685,6505791 -) -g1,7422:14063685,6505791 -(1,7422:14063685,6505791:11273228,539955,231411 -g1,7422:14391365,6505791 -g1,7422:14391366,6505791 -k1,7422:25009233,6505791:6432083 -g1,7422:25336913,6505791 -) -g1,7422:25336913,6505791 -(1,7423:25336913,6505791:4822795,539955,231411 -g1,7422:25664593,6505791 -g1,7422:25664594,6505791 -g1,7422:27818762,6505791 -g1,7423:29832028,6505791 -g1,7423:30159708,6505791 -) -g1,7423:30159708,6505791 -) -(1,7425:10236364,7660573:19923344,594022,231411 -g1,7424:10236364,7660573 -(1,7424:10236364,7660573:3827321,594022,231411 -r1,7477:10236364,7660573:0,771366,231411 -g1,7424:10564044,7660573 -g1,7424:10564045,7660573 -(1,7424:10564045,7660573:0,452978,115847 -r1,7477:12329158,7660573:1765113,568825,115847 -k1,7424:10564045,7660573:-1765113 -) -(1,7424:10564045,7660573:1765113,452978,115847 -k1,7424:10564045,7660573:3277 -h1,7424:12325881,7660573:0,411205,112570 -) -k1,7424:13736005,7660573:1406847 -g1,7424:14063685,7660573 -) -g1,7424:14063685,7660573 -(1,7424:14063685,7660573:11273228,594022,231411 -g1,7424:14391365,7660573 -g1,7424:14391366,7660573 -$1,7424:14391366,7660573 -(1,7424:14391366,7699217:649462,567542,79954 -) -[1,7424:15040828,7802111:909902,735560,5505 -(1,7424:15040828,7315195:393347,248644,5505 -) -(1,7424:15040828,7802111:909902,346358,5505 -) -] -g1,7424:16059966,7660573 -(1,7424:16533137,7758887:233243,346358,5505 -) -$1,7424:16766380,7660573 -k1,7424:25009233,7660573:8242853 -g1,7424:25336913,7660573 -) -g1,7424:25336913,7660573 -(1,7425:25336913,7660573:4822795,594022,231411 -g1,7424:25664593,7660573 -g1,7424:25664594,7660573 -g1,7424:28657623,7660573 -k1,7425:29832028,7660573:775946 -g1,7425:30159708,7660573 -) -g1,7425:30159708,7660573 -) -(1,7426:10236364,8466345:19923344,574361,231411 -g1,7425:10236364,8466345 -(1,7425:10236364,8466345:3827321,574361,231411 -r1,7477:10236364,8466345:0,771366,231411 -g1,7425:10564044,8466345 -g1,7425:10564045,8466345 -(1,7425:10564045,8466345:0,452978,115847 -r1,7477:12680870,8466345:2116825,568825,115847 -k1,7425:10564045,8466345:-2116825 -) -(1,7425:10564045,8466345:2116825,452978,115847 -k1,7425:10564045,8466345:3277 -h1,7425:12677593,8466345:0,411205,112570 -) -k1,7425:13736005,8466345:1055135 -g1,7425:14063685,8466345 -) -g1,7425:14063685,8466345 -(1,7425:14063685,8466345:11273228,574361,231411 -g1,7425:14391365,8466345 -g1,7425:14391366,8466345 -$1,7425:14391366,8466345 -(1,7425:14391366,8485328:692060,528220,79954 -) -[1,7425:15083426,8597349:909902,705365,5505 -(1,7425:15083426,8140628:393347,248644,5505 -) -(1,7425:15083426,8597349:909902,346358,5505 -) -] -g1,7425:16102564,8466345 -(1,7425:16575735,8564659:233243,346358,5505 -) -$1,7425:16808978,8466345 -k1,7425:25009233,8466345:8200255 -g1,7425:25336913,8466345 -) -g1,7425:25336913,8466345 -(1,7426:25336913,8466345:4822795,574361,231411 -g1,7425:25664593,8466345 -g1,7425:25664594,8466345 -g1,7425:28657623,8466345 -k1,7426:29832028,8466345:775946 -g1,7426:30159708,8466345 -) -g1,7426:30159708,8466345 -) -(1,7427:10236364,9237711:19923344,539955,231411 -g1,7426:10236364,9237711 -(1,7426:10236364,9237711:3827321,539955,231411 -r1,7477:10236364,9237711:0,771366,231411 -g1,7426:10564044,9237711 -g1,7426:10564045,9237711 -(1,7426:10564045,9237711:0,452978,115847 -r1,7477:12329158,9237711:1765113,568825,115847 -k1,7426:10564045,9237711:-1765113 -) -(1,7426:10564045,9237711:1765113,452978,115847 -k1,7426:10564045,9237711:3277 -h1,7426:12325881,9237711:0,411205,112570 -) -k1,7426:13736005,9237711:1406847 -g1,7426:14063685,9237711 -) -g1,7426:14063685,9237711 -(1,7426:14063685,9237711:11273228,539955,231411 -g1,7426:14391365,9237711 -g1,7426:14391366,9237711 -$1,7426:14391366,9237711 -(1,7426:14864537,9336025:1212678,248644,5505 -) -$1,7426:16077215,9237711 -k1,7426:25009233,9237711:8932018 -g1,7426:25336913,9237711 -) -g1,7426:25336913,9237711 -(1,7427:25336913,9237711:4822795,539955,231411 -g1,7426:25664593,9237711 -g1,7426:25664594,9237711 -g1,7426:28657623,9237711 -k1,7427:29832028,9237711:775946 -g1,7427:30159708,9237711 -) -g1,7427:30159708,9237711 -) -(1,7428:10236364,10009077:19923344,539955,231411 -g1,7427:10236364,10009077 -(1,7427:10236364,10009077:3827321,539955,231411 -r1,7477:10236364,10009077:0,771366,231411 -g1,7427:10564044,10009077 -g1,7427:10564045,10009077 -(1,7427:10564045,10009077:0,452978,115847 -r1,7477:12329158,10009077:1765113,568825,115847 -k1,7427:10564045,10009077:-1765113 -) -(1,7427:10564045,10009077:1765113,452978,115847 -k1,7427:10564045,10009077:3277 -h1,7427:12325881,10009077:0,411205,112570 -) -k1,7427:13736005,10009077:1406847 -g1,7427:14063685,10009077 -) -g1,7427:14063685,10009077 -(1,7427:14063685,10009077:11273228,539955,231411 -g1,7427:14391365,10009077 -g1,7427:14391366,10009077 -$1,7427:14391366,10009077 -(1,7427:14864537,10107391:1097990,346358,5505 -) -$1,7427:15962527,10009077 -k1,7427:25009233,10009077:9046706 -g1,7427:25336913,10009077 -) -g1,7427:25336913,10009077 -(1,7428:25336913,10009077:4822795,539955,231411 -g1,7427:25664593,10009077 -g1,7427:25664594,10009077 -g1,7427:28657623,10009077 -k1,7428:29832028,10009077:775946 -g1,7428:30159708,10009077 -) -g1,7428:30159708,10009077 -) -(1,7429:10236364,10961516:19923344,721028,231411 -g1,7428:10236364,10961516 -(1,7428:10236364,10961516:3827321,721028,231411 -r1,7477:10236364,10961516:0,771366,231411 -g1,7428:10564044,10961516 -g1,7428:10564045,10961516 -(1,7428:10564045,10961516:0,452978,115847 -r1,7477:13384294,10961516:2820249,568825,115847 -k1,7428:10564045,10961516:-2820249 -) -(1,7428:10564045,10961516:2820249,452978,115847 -k1,7428:10564045,10961516:3277 -h1,7428:13381017,10961516:0,411205,112570 -) -k1,7428:13736005,10961516:351711 -g1,7428:14063685,10961516 -) -g1,7428:14063685,10961516 -(1,7428:14063685,10961516:11273228,721028,231411 -g1,7428:14391365,10961516 -g1,7428:14391366,10961516 -$1,7428:14391366,10961516 -(1,7428:14391366,11000160:649462,567542,79954 -) -[1,7428:15040828,11103054:909902,821346,5505 -(1,7428:15040828,10616138:311689,334430,0 -) -(1,7428:15040828,11103054:909902,346358,5505 -) -] -g1,7428:16059966,10961516 -(1,7428:16533137,11059830:233243,346358,5505 -) -g1,7428:17065015,10961516 -g1,7428:17751623,10961516 -(1,7428:17751623,11000160:649462,567542,79954 -) -[1,7428:18401085,11134859:909902,894371,5505 -(1,7428:18401085,10586846:286917,346358,96797 -) -(1,7428:18401085,11134859:909902,346358,5505 -) -] -g1,7428:19420223,10961516 -(1,7428:19893394,11059830:233243,346358,5505 -) -g1,7428:20425272,10961516 -g1,7428:21111880,10961516 -(1,7428:21111880,11000160:649462,567542,79954 -) -[1,7428:21761342,11103054:909902,735560,5505 -(1,7428:21761342,10616138:393347,248644,5505 -) -(1,7428:21761342,11103054:909902,346358,5505 -) -] -g1,7428:22780480,10961516 -(1,7428:23253651,11059830:233243,346358,5505 -) -$1,7428:23486894,10961516 -k1,7428:25009233,10961516:1522339 -g1,7428:25336913,10961516 -) -g1,7428:25336913,10961516 -(1,7429:25336913,10961516:4822795,721028,231411 -g1,7428:25664593,10961516 -g1,7428:25664594,10961516 -g1,7428:28657623,10961516 -k1,7429:29832028,10961516:759562 -g1,7429:30159708,10961516 -) -g1,7429:30159708,10961516 -) -(1,7430:10236364,11913955:19923344,721028,231411 -g1,7429:10236364,11913955 -(1,7429:10236364,11913955:3827321,721028,231411 -r1,7477:10236364,11913955:0,771366,231411 -g1,7429:10564044,11913955 -g1,7429:10564045,11913955 -(1,7429:10564045,11913955:0,452978,115847 -r1,7477:13736005,11913955:3171960,568825,115847 -k1,7429:10564045,11913955:-3171960 -) -(1,7429:10564045,11913955:3171960,452978,115847 -k1,7429:10564045,11913955:3277 -h1,7429:13732728,11913955:0,411205,112570 -) -g1,7429:13736005,11913955 -g1,7429:14063685,11913955 -) -g1,7429:14063685,11913955 -(1,7429:14063685,11913955:11273228,721028,231411 -g1,7429:14391365,11913955 -g1,7429:14391366,11913955 -$1,7429:14391366,11913955 -(1,7429:14391366,11932938:692060,528220,79954 -) -[1,7429:15083426,12039454:909902,785646,5505 -(1,7429:15083426,11588238:311689,334430,0 -) -(1,7429:15083426,12039454:909902,346358,5505 -) -] -g1,7429:16102564,11913955 -(1,7429:16575735,12012269:233243,346358,5505 -) -g1,7429:17107613,11913955 -g1,7429:17794221,11913955 -(1,7429:17794221,11932938:692060,528220,79954 -) -[1,7429:18486281,12087298:909902,894371,5505 -(1,7429:18486281,11539285:286917,346358,96797 -) -(1,7429:18486281,12087298:909902,346358,5505 -) -] -g1,7429:19505419,11913955 -(1,7429:19978590,12012269:233243,346358,5505 -) -g1,7429:20510468,11913955 -g1,7429:21197076,11913955 -(1,7429:21197076,11932938:692060,528220,79954 -) -[1,7429:21889136,12044959:909902,705365,5505 -(1,7429:21889136,11588238:393347,248644,5505 -) -(1,7429:21889136,12044959:909902,346358,5505 -) -] -g1,7429:22908274,11913955 -(1,7429:23381445,12012269:233243,346358,5505 -) -$1,7429:23614688,11913955 -k1,7429:25009233,11913955:1394545 -g1,7429:25336913,11913955 -) -g1,7429:25336913,11913955 -(1,7430:25336913,11913955:4822795,721028,231411 -g1,7429:25664593,11913955 -g1,7429:25664594,11913955 -g1,7429:28657623,11913955 -k1,7430:29832028,11913955:759562 -g1,7430:30159708,11913955 -) -g1,7430:30159708,11913955 -) -(1,7431:10236364,12685321:19923344,539955,231411 -g1,7430:10236364,12685321 -(1,7430:10236364,12685321:3827321,539955,231411 -r1,7477:10236364,12685321:0,771366,231411 -g1,7430:10564044,12685321 -g1,7430:10564045,12685321 -(1,7430:10564045,12685321:0,452978,115847 -r1,7477:13384294,12685321:2820249,568825,115847 -k1,7430:10564045,12685321:-2820249 -) -(1,7430:10564045,12685321:2820249,452978,115847 -k1,7430:10564045,12685321:3277 -h1,7430:13381017,12685321:0,411205,112570 -) -k1,7430:13736005,12685321:351711 -g1,7430:14063685,12685321 -) -g1,7430:14063685,12685321 -(1,7430:14063685,12685321:11273228,539955,231411 -g1,7430:14391365,12685321 -g1,7430:14391366,12685321 -$1,7430:14391366,12685321 -(1,7430:14864537,12783635:1212678,248644,5505 -) -$1,7430:16077215,12685321 -k1,7430:25009233,12685321:8932018 -g1,7430:25336913,12685321 -) -g1,7430:25336913,12685321 -(1,7431:25336913,12685321:4822795,539955,231411 -g1,7430:25664593,12685321 -g1,7430:25664594,12685321 -g1,7430:28657623,12685321 -k1,7431:29832028,12685321:759562 -g1,7431:30159708,12685321 -) -g1,7431:30159708,12685321 -) -(1,7432:10236364,13456687:19923344,539955,231411 -g1,7431:10236364,13456687 -(1,7431:10236364,13456687:3827321,539955,231411 -r1,7477:10236364,13456687:0,771366,231411 -g1,7431:10564044,13456687 -g1,7431:10564045,13456687 -(1,7431:10564045,13456687:0,452978,115847 -r1,7477:13384294,13456687:2820249,568825,115847 -k1,7431:10564045,13456687:-2820249 -) -(1,7431:10564045,13456687:2820249,452978,115847 -k1,7431:10564045,13456687:3277 -h1,7431:13381017,13456687:0,411205,112570 -) -k1,7431:13736005,13456687:351711 -g1,7431:14063685,13456687 -) -g1,7431:14063685,13456687 -(1,7431:14063685,13456687:11273228,539955,231411 -g1,7431:14391365,13456687 -g1,7431:14391366,13456687 -$1,7431:14391366,13456687 -(1,7431:14864537,13555001:1097990,346358,5505 -) -$1,7431:15962527,13456687 -k1,7431:25009233,13456687:9046706 -g1,7431:25336913,13456687 -) -g1,7431:25336913,13456687 -(1,7432:25336913,13456687:4822795,539955,231411 -g1,7431:25664593,13456687 -g1,7431:25664594,13456687 -g1,7431:28657623,13456687 -k1,7432:29832028,13456687:759562 -g1,7432:30159708,13456687 -) -g1,7432:30159708,13456687 -) -(1,7433:10236364,14228053:19923344,539955,231411 -g1,7432:10236364,14228053 -(1,7432:10236364,14228053:3827321,539955,231411 -r1,7477:10236364,14228053:0,771366,231411 -g1,7432:10564044,14228053 -g1,7432:10564045,14228053 -(1,7432:10564045,14228053:0,459977,115847 -r1,7477:12680870,14228053:2116825,575824,115847 -k1,7432:10564045,14228053:-2116825 -) -(1,7432:10564045,14228053:2116825,459977,115847 -k1,7432:10564045,14228053:3277 -h1,7432:12677593,14228053:0,411205,112570 -) -k1,7432:13736005,14228053:1055135 -g1,7432:14063685,14228053 -) -g1,7432:14063685,14228053 -(1,7432:14063685,14228053:11273228,539955,231411 -g1,7432:14391365,14228053 -g1,7432:14391366,14228053 -$1,7432:14391366,14228053 -(1,7432:14864537,14326367:311689,339935,0 -) -g1,7432:15321874,14228053 -g1,7432:16035719,14228053 -(1,7432:16508890,14326367:311689,334430,0 -) -g1,7432:17119214,14228053 -g1,7432:17805822,14228053 -(1,7432:18278993,14326367:233243,346358,5505 -) -g1,7432:18657884,14228053 -g1,7432:19371729,14228053 -(1,7432:19844900,14326367:909902,346358,5505 -) -g1,7432:21053437,14228053 -g1,7432:21740045,14228053 -(1,7432:22213216,14326367:393347,248644,5505 -) -g1,7432:22752211,14228053 -g1,7432:23466056,14228053 -(1,7432:23939227,14326367:1070006,334430,5505 -) -$1,7432:25009233,14228053 -g1,7432:25009233,14228053 -g1,7432:25336913,14228053 -) -g1,7432:25336913,14228053 -(1,7433:25336913,14228053:4822795,539955,231411 -g1,7432:25664593,14228053 -g1,7432:25664594,14228053 -g1,7432:28657623,14228053 -k1,7433:29832028,14228053:148111 -g1,7433:30159708,14228053 -) -g1,7433:30159708,14228053 -) -] -$1,7434:30159708,10382493 -) -g1,7434:30159708,10382493 -) -(1,7434:10037135,14821484:20122573,65536,0 -g1,7434:10037135,14821484 -(1,7434:10037135,14821484:20122573,65536,0 -r1,7477:30159708,14821484:20122573,65536,0 -) -g1,7434:30159708,14821484 -) -] -k1,7434:32583029,14821484:2423321 -g1,7434:32583029,14821484 -) -v1,7437:6630773,16187260:0,393216,0 -(1,7438:6630773,19306915:25952256,3512871,616038 -g1,7438:6630773,19306915 -(1,7438:6630773,19306915:25952256,3512871,616038 -(1,7438:6630773,19922953:25952256,4128909,0 -[1,7438:6630773,19922953:25952256,4128909,0 -(1,7438:6630773,19896739:25952256,4076481,0 -r1,7477:6656987,19896739:26214,4076481,0 -[1,7438:6656987,19896739:25899828,4076481,0 -(1,7438:6656987,19306915:25899828,2896833,0 -[1,7438:7246811,19306915:24720180,2896833,0 -(1,7438:7246811,17497456:24720180,1087374,134348 -k1,7437:8629495,17497456:172981 -k1,7437:10443498,17497456:172981 -k1,7437:10972340,17497456:172982 -(1,7437:10972340,17497456:0,452978,115847 -r1,7477:13440877,17497456:2468537,568825,115847 -k1,7437:10972340,17497456:-2468537 -) -(1,7437:10972340,17497456:2468537,452978,115847 -k1,7437:10972340,17497456:3277 -h1,7437:13437600,17497456:0,411205,112570 -) -k1,7437:13613858,17497456:172981 -k1,7437:15764716,17497456:172981 -k1,7437:17431263,17497456:172981 -k1,7437:18290407,17497456:172982 -(1,7437:18290407,17497456:0,452978,115847 -r1,7477:25682912,17497456:7392505,568825,115847 -k1,7437:18290407,17497456:-7392505 -) -(1,7437:18290407,17497456:7392505,452978,115847 -g1,7437:18997108,17497456 -g1,7437:20052244,17497456 -g1,7437:21810803,17497456 -g1,7437:22865939,17497456 -g1,7437:23921075,17497456 -g1,7437:24976211,17497456 -h1,7437:25679635,17497456:0,411205,112570 -) -k1,7437:25855893,17497456:172981 -k1,7437:27220319,17497456:172981 -k1,7437:28830505,17497456:172981 -k1,7437:29461584,17497456:172982 -k1,7437:30320727,17497456:172981 -k1,7438:31966991,17497456:0 -) -(1,7438:7246811,18338944:24720180,513147,134348 -k1,7437:9087717,18338944:201851 -k1,7437:9940996,18338944:201851 -k1,7437:11161932,18338944:201851 -k1,7437:14389580,18338944:201851 -k1,7437:15207469,18338944:201851 -k1,7437:16428404,18338944:201850 -k1,7437:18195910,18338944:201851 -k1,7437:20426756,18338944:201851 -k1,7437:21526450,18338944:201851 -k1,7437:22747386,18338944:201851 -k1,7437:27572802,18338944:201851 -k1,7437:31966991,18338944:0 -) -(1,7438:7246811,19180432:24720180,513147,126483 -g1,7437:10378776,19180432 -g1,7437:12070915,19180432 -g1,7437:13440617,19180432 -g1,7437:14631406,19180432 -g1,7437:16211479,19180432 -g1,7437:17062136,19180432 -g1,7437:20926138,19180432 -g1,7437:22673983,19180432 -g1,7437:24324834,19180432 -g1,7437:27219559,19180432 -k1,7438:31966991,19180432:1435242 -g1,7438:31966991,19180432 -) -] -) -] -r1,7477:32583029,19896739:26214,4076481,0 -) -] -) -) -g1,7438:32583029,19306915 -) -h1,7438:6630773,19922953:0,0,0 -(1,7440:6630773,22730521:25952256,32768,229376 -(1,7440:6630773,22730521:0,32768,229376 -(1,7440:6630773,22730521:5505024,32768,229376 -r1,7477:12135797,22730521:5505024,262144,229376 -) -k1,7440:6630773,22730521:-5505024 -) -(1,7440:6630773,22730521:25952256,32768,0 -r1,7477:32583029,22730521:25952256,32768,0 -) -) -(1,7440:6630773,24334849:25952256,606339,161218 -(1,7440:6630773,24334849:1974731,582746,14155 -g1,7440:6630773,24334849 -g1,7440:8605504,24334849 -) -g1,7440:11443737,24334849 -g1,7440:14255232,24334849 -g1,7440:15964935,24334849 -g1,7440:19924620,24334849 -k1,7440:32583029,24334849:9923985 -g1,7440:32583029,24334849 -) -(1,7443:6630773,25569553:25952256,513147,134348 -k1,7442:7551008,25569553:292400 -k1,7442:8609524,25569553:292400 -k1,7442:12547692,25569553:292400 -k1,7442:15831810,25569553:292399 -k1,7442:18166967,25569553:292400 -k1,7442:19662608,25569553:292400 -k1,7442:22407365,25569553:292400 -k1,7442:23568117,25569553:292400 -k1,7442:25335732,25569553:292400 -k1,7442:27141357,25569553:292399 -k1,7442:29393283,25569553:292400 -k1,7442:31753999,25569553:292400 -k1,7443:32583029,25569553:0 -) -(1,7443:6630773,26411041:25952256,505283,134348 -k1,7442:9068166,26411041:295021 -k1,7442:10049349,26411041:295021 -k1,7442:12204283,26411041:295022 -k1,7442:15473983,26411041:295021 -k1,7442:17965115,26411041:295021 -k1,7442:18876174,26411041:295021 -k1,7442:20190280,26411041:295021 -k1,7442:21981488,26411041:295021 -k1,7442:26220467,26411041:295022 -k1,7442:27143323,26411041:295021 -k1,7442:29140314,26411041:295021 -k1,7442:31563944,26411041:295021 -k1,7442:32583029,26411041:0 -) -(1,7443:6630773,27252529:25952256,513147,126483 -k1,7442:8982292,27252529:283203 -k1,7442:10257055,27252529:283203 -k1,7442:13632247,27252529:283203 -k1,7442:14601612,27252529:283203 -k1,7442:16206676,27252529:283203 -k1,7442:17149171,27252529:283203 -k1,7442:18451459,27252529:283203 -k1,7442:20404518,27252529:283202 -k1,7442:22639383,27252529:283203 -k1,7442:24365033,27252529:283203 -k1,7442:25260998,27252529:283203 -k1,7442:26662245,27252529:283203 -k1,7442:28544526,27252529:283203 -k1,7442:29455564,27252529:283203 -k1,7442:31900144,27252529:283203 -k1,7442:32583029,27252529:0 -) -(1,7443:6630773,28094017:25952256,505283,134348 -k1,7442:10005128,28094017:290231 -k1,7442:11314444,28094017:290231 -k1,7442:13564200,28094017:290230 -k1,7442:15592446,28094017:290231 -k1,7442:16534105,28094017:290231 -k1,7442:17572102,28094017:290231 -k1,7442:20637127,28094017:290231 -k1,7442:22264291,28094017:290230 -k1,7442:24084788,28094017:290231 -k1,7442:25026447,28094017:290231 -k1,7442:26064444,28094017:290231 -k1,7442:28846353,28094017:290230 -k1,7442:29749346,28094017:290231 -k1,7442:31157621,28094017:290231 -k1,7442:32583029,28094017:0 -) -(1,7443:6630773,28935505:25952256,505283,134348 -k1,7442:8232473,28935505:236585 -k1,7442:12867835,28935505:236585 -k1,7442:13852186,28935505:236585 -k1,7442:16872740,28935505:236585 -k1,7442:18484926,28935505:236585 -k1,7442:19407673,28935505:236585 -k1,7442:20000117,28935505:236584 -k1,7442:23211381,28935505:236585 -k1,7442:25313776,28935505:236585 -k1,7442:27588531,28935505:236585 -k1,7442:28441154,28935505:236585 -k1,7442:29033599,28935505:236585 -k1,7442:31955194,28935505:236585 -k1,7442:32583029,28935505:0 -) -(1,7443:6630773,29776993:25952256,513147,126483 -k1,7442:8066431,29776993:232417 -k1,7442:9839599,29776993:232417 -k1,7442:12767512,29776993:232417 -(1,7442:12767512,29776993:0,452978,122846 -r1,7477:15587761,29776993:2820249,575824,122846 -k1,7442:12767512,29776993:-2820249 -) -(1,7442:12767512,29776993:2820249,452978,122846 -k1,7442:12767512,29776993:3277 -h1,7442:15584484,29776993:0,411205,112570 -) -k1,7442:15820178,29776993:232417 -k1,7442:17674611,29776993:232417 -k1,7442:18654794,29776993:232417 -k1,7442:20400437,29776993:232417 -k1,7442:22960037,29776993:232417 -k1,7442:23851746,29776993:232417 -k1,7442:25103248,29776993:232417 -k1,7442:28412580,29776993:232417 -(1,7442:28412580,29776993:0,414482,115847 -r1,7477:29122558,29776993:709978,530329,115847 -k1,7442:28412580,29776993:-709978 -) -(1,7442:28412580,29776993:709978,414482,115847 -k1,7442:28412580,29776993:3277 -h1,7442:29119281,29776993:0,411205,112570 -) -k1,7442:29354975,29776993:232417 -k1,7442:30270277,29776993:232417 -(1,7442:30270277,29776993:0,414482,115847 -r1,7477:30980255,29776993:709978,530329,115847 -k1,7442:30270277,29776993:-709978 -) -(1,7442:30270277,29776993:709978,414482,115847 -k1,7442:30270277,29776993:3277 -h1,7442:30976978,29776993:0,411205,112570 -) -k1,7442:31386342,29776993:232417 -k1,7442:32583029,29776993:0 -) -(1,7443:6630773,30618481:25952256,505283,7863 -g1,7442:10346664,30618481 -g1,7442:12414324,30618481 -g1,7442:16646639,30618481 -g1,7442:17634266,30618481 -k1,7443:32583029,30618481:13682607 -g1,7443:32583029,30618481 -) -(1,7445:6630773,31459969:25952256,473825,134348 -h1,7444:6630773,31459969:983040,0,0 -g1,7444:9248936,31459969 -g1,7444:11183558,31459969 -g1,7444:11738647,31459969 -(1,7444:11738647,31459969:0,452978,115847 -r1,7477:14910607,31459969:3171960,568825,115847 -k1,7444:11738647,31459969:-3171960 -) -(1,7444:11738647,31459969:3171960,452978,115847 -k1,7444:11738647,31459969:3277 -h1,7444:14907330,31459969:0,411205,112570 -) -g1,7444:15109836,31459969 -k1,7445:32583029,31459969:14541768 -g1,7445:32583029,31459969 -) -v1,7447:6630773,32650435:0,393216,0 -(1,7455:6630773,34331966:25952256,2074747,196608 -g1,7455:6630773,34331966 -g1,7455:6630773,34331966 -g1,7455:6434165,34331966 -(1,7455:6434165,34331966:0,2074747,196608 -r1,7477:32779637,34331966:26345472,2271355,196608 -k1,7455:6434165,34331966:-26345472 -) -(1,7455:6434165,34331966:26345472,2074747,196608 -[1,7455:6630773,34331966:25952256,1878139,0 -(1,7449:6630773,32858053:25952256,404226,107478 -(1,7448:6630773,32858053:0,0,0 -g1,7448:6630773,32858053 -g1,7448:6630773,32858053 -g1,7448:6303093,32858053 -(1,7448:6303093,32858053:0,0,0 -) -g1,7448:6630773,32858053 -) -k1,7449:6630773,32858053:0 -g1,7449:10424522,32858053 -h1,7449:12005251,32858053:0,0,0 -k1,7449:32583029,32858053:20577778 -g1,7449:32583029,32858053 -) -(1,7450:6630773,33524231:25952256,284164,4718 -h1,7450:6630773,33524231:0,0,0 -h1,7450:6946919,33524231:0,0,0 -k1,7450:32583029,33524231:25636110 -g1,7450:32583029,33524231 -) -(1,7454:6630773,34255945:25952256,404226,76021 -(1,7452:6630773,34255945:0,0,0 -g1,7452:6630773,34255945 -g1,7452:6630773,34255945 -g1,7452:6303093,34255945 -(1,7452:6303093,34255945:0,0,0 -) -g1,7452:6630773,34255945 -) -g1,7454:7579210,34255945 -g1,7454:8843793,34255945 -h1,7454:10108376,34255945:0,0,0 -k1,7454:32583028,34255945:22474652 -g1,7454:32583028,34255945 -) -] -) -g1,7455:32583029,34331966 -g1,7455:6630773,34331966 -g1,7455:6630773,34331966 -g1,7455:32583029,34331966 -g1,7455:32583029,34331966 -) -h1,7455:6630773,34528574:0,0,0 -(1,7458:6630773,35894350:25952256,505283,134348 -h1,7457:6630773,35894350:983040,0,0 -g1,7457:9274495,35894350 -g1,7457:11209117,35894350 -g1,7457:11764206,35894350 -(1,7457:11764206,35894350:0,452978,115847 -r1,7477:14936166,35894350:3171960,568825,115847 -k1,7457:11764206,35894350:-3171960 -) -(1,7457:11764206,35894350:3171960,452978,115847 -k1,7457:11764206,35894350:3277 -h1,7457:14932889,35894350:0,411205,112570 -) -g1,7457:15135395,35894350 -g1,7457:17014967,35894350 -g1,7457:19252366,35894350 -g1,7457:20067633,35894350 -g1,7457:20622722,35894350 -k1,7458:32583029,35894350:9275297 -g1,7458:32583029,35894350 -) -v1,7460:6630773,37084816:0,393216,0 -(1,7469:6630773,39438817:25952256,2747217,196608 -g1,7469:6630773,39438817 -g1,7469:6630773,39438817 -g1,7469:6434165,39438817 -(1,7469:6434165,39438817:0,2747217,196608 -r1,7477:32779637,39438817:26345472,2943825,196608 -k1,7469:6434165,39438817:-26345472 -) -(1,7469:6434165,39438817:26345472,2747217,196608 -[1,7469:6630773,39438817:25952256,2550609,0 -(1,7462:6630773,37298726:25952256,410518,6290 -(1,7461:6630773,37298726:0,0,0 -g1,7461:6630773,37298726 -g1,7461:6630773,37298726 -g1,7461:6303093,37298726 -(1,7461:6303093,37298726:0,0,0 -) -g1,7461:6630773,37298726 -) -g1,7462:10424521,37298726 -g1,7462:11372959,37298726 -h1,7462:12321396,37298726:0,0,0 -k1,7462:32583028,37298726:20261632 -g1,7462:32583028,37298726 -) -(1,7463:6630773,37964904:25952256,410518,107478 -h1,7463:6630773,37964904:0,0,0 -g1,7463:12953687,37964904 -h1,7463:14534416,37964904:0,0,0 -k1,7463:32583028,37964904:18048612 -g1,7463:32583028,37964904 -) -(1,7464:6630773,38631082:25952256,404226,6290 -h1,7464:6630773,38631082:0,0,0 -h1,7464:6946919,38631082:0,0,0 -k1,7464:32583029,38631082:25636110 -g1,7464:32583029,38631082 -) -(1,7468:6630773,39362796:25952256,404226,76021 -(1,7466:6630773,39362796:0,0,0 -g1,7466:6630773,39362796 -g1,7466:6630773,39362796 -g1,7466:6303093,39362796 -(1,7466:6303093,39362796:0,0,0 -) -g1,7466:6630773,39362796 -) -g1,7468:7579210,39362796 -g1,7468:8843793,39362796 -h1,7468:10108376,39362796:0,0,0 -k1,7468:32583028,39362796:22474652 -g1,7468:32583028,39362796 -) -] -) -g1,7469:32583029,39438817 -g1,7469:6630773,39438817 -g1,7469:6630773,39438817 -g1,7469:32583029,39438817 -g1,7469:32583029,39438817 -) -h1,7469:6630773,39635425:0,0,0 -(1,7473:6630773,41001201:25952256,505283,126483 -h1,7472:6630773,41001201:983040,0,0 -k1,7472:9098405,41001201:287905 -k1,7472:10558748,41001201:287904 -k1,7472:11859184,41001201:287905 -k1,7472:15138807,41001201:287904 -k1,7472:17282036,41001201:287905 -k1,7472:18385209,41001201:287905 -k1,7472:19739384,41001201:287904 -k1,7472:24060375,41001201:287905 -k1,7472:25645238,41001201:287905 -k1,7472:27089852,41001201:287904 -k1,7472:28714691,41001201:287905 -k1,7472:30551211,41001201:287904 -k1,7472:31490544,41001201:287905 -k1,7473:32583029,41001201:0 -) -(1,7473:6630773,41842689:25952256,505283,134348 -(1,7472:6630773,41842689:0,452978,122846 -r1,7477:9451022,41842689:2820249,575824,122846 -k1,7472:6630773,41842689:-2820249 -) -(1,7472:6630773,41842689:2820249,452978,122846 -k1,7472:6630773,41842689:3277 -h1,7472:9447745,41842689:0,411205,112570 -) -k1,7472:9795175,41842689:170483 -k1,7472:12864971,41842689:170483 -k1,7472:16192324,41842689:170484 -k1,7472:18281701,41842689:170483 -k1,7472:19320536,41842689:170483 -k1,7472:20827953,41842689:170483 -k1,7472:22547053,41842689:170484 -k1,7472:23368964,41842689:170483 -k1,7472:24631932,41842689:170483 -k1,7472:27777094,41842689:170483 -k1,7472:30143689,41842689:170484 -k1,7472:30965600,41842689:170483 -k1,7472:32583029,41842689:0 -) -(1,7473:6630773,42684177:25952256,513147,134348 -k1,7472:9017453,42684177:192535 -k1,7472:9892874,42684177:192536 -k1,7472:12783526,42684177:192535 -k1,7472:14935587,42684177:192535 -k1,7472:17196439,42684177:192536 -k1,7472:18380534,42684177:192535 -k1,7472:19178622,42684177:192535 -k1,7472:21069196,42684177:192536 -k1,7472:22130083,42684177:192535 -k1,7472:24004273,42684177:192536 -k1,7472:25907953,42684177:192535 -k1,7472:26751916,42684177:192535 -k1,7472:29374527,42684177:192536 -k1,7472:31635378,42684177:192535 -k1,7472:32583029,42684177:0 -) -(1,7473:6630773,43525665:25952256,505283,134348 -k1,7472:9143674,43525665:223073 -k1,7472:11222727,43525665:223073 -k1,7472:15372717,43525665:223073 -k1,7472:16278675,43525665:223073 -k1,7472:17187910,43525665:223073 -(1,7472:17187910,43525665:0,452978,115847 -r1,7477:20359870,43525665:3171960,568825,115847 -k1,7472:17187910,43525665:-3171960 -) -(1,7472:17187910,43525665:3171960,452978,115847 -k1,7472:17187910,43525665:3277 -h1,7472:20356593,43525665:0,411205,112570 -) -k1,7472:20582943,43525665:223073 -k1,7472:22369051,43525665:223074 -k1,7472:23197677,43525665:223073 -k1,7472:25118788,43525665:223073 -k1,7472:25957899,43525665:223073 -k1,7472:26536832,43525665:223073 -k1,7472:28174827,43525665:223073 -k1,7472:29266252,43525665:223073 -k1,7472:32583029,43525665:0 -) -(1,7473:6630773,44367153:25952256,513147,134348 -k1,7472:7196567,44367153:209934 -k1,7472:9384377,44367153:209933 -k1,7472:10277196,44367153:209934 -k1,7472:11480656,44367153:209934 -k1,7472:12349881,44367153:209933 -k1,7472:14519341,44367153:209934 -k1,7472:16971262,44367153:209934 -k1,7472:17864080,44367153:209933 -k1,7472:18679567,44367153:209934 -k1,7472:19757853,44367153:209934 -k1,7472:22991617,44367153:209933 -k1,7472:23814313,44367153:209934 -k1,7472:26567699,44367153:209934 -k1,7472:28737158,44367153:209933 -k1,7472:31015408,44367153:209934 -k1,7472:32583029,44367153:0 -) -(1,7473:6630773,45208641:25952256,505283,134348 -k1,7472:9529583,45208641:227563 -k1,7472:12731826,45208641:227564 -k1,7472:15155500,45208641:227563 -k1,7472:17237732,45208641:227563 -k1,7472:18274666,45208641:227564 -k1,7472:19891592,45208641:227563 -k1,7472:20802040,45208641:227563 -k1,7472:23715269,45208641:227564 -k1,7472:24430392,45208641:227535 -k1,7472:27435371,45208641:227563 -k1,7472:29030015,45208641:227563 -k1,7472:29789076,45208641:227564 -k1,7472:31714677,45208641:227563 -k1,7472:32583029,45208641:0 -) -] -(1,7477:32583029,45706769:0,0,0 -g1,7477:32583029,45706769 -) -) -] -(1,7477:6630773,47279633:25952256,0,0 -h1,7477:6630773,47279633:25952256,0,0 -) -] -(1,7477:4262630,4025873:0,0,0 -[1,7477:-473656,4025873:0,0,0 -(1,7477:-473656,-710413:0,0,0 -(1,7477:-473656,-710413:0,0,0 -g1,7477:-473656,-710413 -) -g1,7477:-473656,-710413 -) -] -) -] -!32014 -}141 -Input:1168:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1169:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1170:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1171:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1172:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1173:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1174:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1175:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!748 -{142 -[1,7536:4262630,47279633:28320399,43253760,0 -(1,7536:4262630,4025873:0,0,0 -[1,7536:-473656,4025873:0,0,0 -(1,7536:-473656,-710413:0,0,0 -(1,7536:-473656,-644877:0,0,0 -k1,7536:-473656,-644877:-65536 -) -(1,7536:-473656,4736287:0,0,0 -k1,7536:-473656,4736287:5209943 -) -g1,7536:-473656,-710413 -) -] -) -[1,7536:6630773,47279633:25952256,43253760,0 -[1,7536:6630773,4812305:25952256,786432,0 -(1,7536:6630773,4812305:25952256,513147,126483 -(1,7536:6630773,4812305:25952256,513147,126483 -g1,7536:3078558,4812305 -[1,7536:3078558,4812305:0,0,0 -(1,7536:3078558,2439708:0,1703936,0 -k1,7536:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,7536:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,7536:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,7536:3078558,4812305:0,0,0 -(1,7536:3078558,2439708:0,1703936,0 -g1,7536:29030814,2439708 -g1,7536:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,7536:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,7536:37855564,2439708:1179648,16384,0 -) -) -k1,7536:3078556,2439708:-34777008 -) -] -[1,7536:3078558,4812305:0,0,0 -(1,7536:3078558,49800853:0,16384,2228224 -k1,7536:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,7536:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,7536:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,7536:3078558,4812305:0,0,0 -(1,7536:3078558,49800853:0,16384,2228224 -g1,7536:29030814,49800853 -g1,7536:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,7536:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,7536:37855564,49800853:1179648,16384,0 -) -) -k1,7536:3078556,49800853:-34777008 -) -] -g1,7536:6630773,4812305 -g1,7536:6630773,4812305 -g1,7536:8017514,4812305 -g1,7536:10787065,4812305 -g1,7536:12580785,4812305 -g1,7536:13396052,4812305 -g1,7536:15205501,4812305 -k1,7536:31387652,4812305:16182151 -) -) -] -[1,7536:6630773,45706769:25952256,40108032,0 -(1,7536:6630773,45706769:25952256,40108032,0 -(1,7536:6630773,45706769:0,0,0 -g1,7536:6630773,45706769 -) -[1,7536:6630773,45706769:25952256,40108032,0 -(1,7473:6630773,6254097:25952256,513147,134348 -k1,7472:8984130,6254097:171663 -k1,7472:10545156,6254097:171663 -k1,7472:12284441,6254097:171664 -k1,7472:12811964,6254097:171663 -k1,7472:14209806,6254097:171663 -k1,7472:15364509,6254097:171663 -k1,7472:16727618,6254097:171664 -k1,7472:17767633,6254097:171663 -k1,7472:19487912,6254097:171663 -k1,7472:20311003,6254097:171663 -k1,7472:22220682,6254097:171664 -k1,7472:23411430,6254097:171663 -k1,7472:25542619,6254097:171663 -k1,7472:28831174,6254097:171663 -k1,7472:29654266,6254097:171664 -k1,7472:30845014,6254097:171663 -k1,7472:32583029,6254097:0 -) -(1,7473:6630773,7095585:25952256,513147,134348 -k1,7472:7477352,7095585:187287 -k1,7472:8683725,7095585:187288 -k1,7472:9854052,7095585:187287 -k1,7472:10850709,7095585:187287 -k1,7472:12556465,7095585:187287 -k1,7472:13426638,7095585:187288 -k1,7472:13969785,7095585:187287 -k1,7472:17131751,7095585:187287 -k1,7472:19184848,7095585:187287 -k1,7472:20784437,7095585:187288 -k1,7472:22539345,7095585:187287 -k1,7472:23745717,7095585:187287 -k1,7472:26107490,7095585:187288 -k1,7472:26907539,7095585:187287 -k1,7472:28113911,7095585:187287 -k1,7472:29373367,7095585:187287 -k1,7472:30219947,7095585:187288 -k1,7472:31426319,7095585:187287 -k1,7473:32583029,7095585:0 -k1,7473:32583029,7095585:0 -) -(1,7475:6630773,7937073:25952256,513147,126483 -h1,7474:6630773,7937073:983040,0,0 -g1,7474:10417443,7937073 -g1,7474:11983753,7937073 -g1,7474:12714479,7937073 -g1,7474:14611746,7937073 -(1,7474:14611746,7937073:0,452978,115847 -r1,7536:17783706,7937073:3171960,568825,115847 -k1,7474:14611746,7937073:-3171960 -) -(1,7474:14611746,7937073:3171960,452978,115847 -k1,7474:14611746,7937073:3277 -h1,7474:17780429,7937073:0,411205,112570 -) -g1,7474:17982935,7937073 -g1,7474:20192809,7937073 -g1,7474:21383598,7937073 -g1,7474:22601912,7937073 -g1,7474:24644013,7937073 -g1,7474:25502534,7937073 -g1,7474:26057623,7937073 -k1,7475:32583029,7937073:2287848 -g1,7475:32583029,7937073 -) -v1,7477:6630773,9063990:0,393216,0 -(1,7487:6630773,12084169:25952256,3413395,196608 -g1,7487:6630773,12084169 -g1,7487:6630773,12084169 -g1,7487:6434165,12084169 -(1,7487:6434165,12084169:0,3413395,196608 -r1,7536:32779637,12084169:26345472,3610003,196608 -k1,7487:6434165,12084169:-26345472 -) -(1,7487:6434165,12084169:26345472,3413395,196608 -[1,7487:6630773,12084169:25952256,3216787,0 -(1,7479:6630773,9277900:25952256,410518,76021 -(1,7478:6630773,9277900:0,0,0 -g1,7478:6630773,9277900 -g1,7478:6630773,9277900 -g1,7478:6303093,9277900 -(1,7478:6303093,9277900:0,0,0 -) -g1,7478:6630773,9277900 -) -k1,7479:6630773,9277900:0 -g1,7479:7895356,9277900 -g1,7479:8843793,9277900 -g1,7479:9792230,9277900 -g1,7479:11372960,9277900 -h1,7479:11689106,9277900:0,0,0 -k1,7479:32583030,9277900:20893924 -g1,7479:32583030,9277900 -) -(1,7480:6630773,9944078:25952256,404226,107478 -h1,7480:6630773,9944078:0,0,0 -g1,7480:6946919,9944078 -g1,7480:7263065,9944078 -g1,7480:7579211,9944078 -g1,7480:13902125,9944078 -g1,7480:14850563,9944078 -g1,7480:16115146,9944078 -g1,7480:16747438,9944078 -g1,7480:18328167,9944078 -h1,7480:19592751,9944078:0,0,0 -k1,7480:32583029,9944078:12990278 -g1,7480:32583029,9944078 -) -(1,7481:6630773,10610256:25952256,404226,76021 -h1,7481:6630773,10610256:0,0,0 -h1,7481:6946919,10610256:0,0,0 -k1,7481:32583029,10610256:25636110 -g1,7481:32583029,10610256 -) -(1,7482:6630773,11276434:25952256,404226,101187 -h1,7482:6630773,11276434:0,0,0 -g1,7482:10108376,11276434 -g1,7482:10740668,11276434 -h1,7482:12953688,11276434:0,0,0 -k1,7482:32583028,11276434:19629340 -g1,7482:32583028,11276434 -) -(1,7486:6630773,12008148:25952256,404226,76021 -(1,7484:6630773,12008148:0,0,0 -g1,7484:6630773,12008148 -g1,7484:6630773,12008148 -g1,7484:6303093,12008148 -(1,7484:6303093,12008148:0,0,0 -) -g1,7484:6630773,12008148 -) -g1,7486:7579210,12008148 -g1,7486:8843793,12008148 -g1,7486:11056813,12008148 -g1,7486:13269833,12008148 -g1,7486:15482853,12008148 -g1,7486:17695873,12008148 -h1,7486:19592747,12008148:0,0,0 -k1,7486:32583029,12008148:12990282 -g1,7486:32583029,12008148 -) -] -) -g1,7487:32583029,12084169 -g1,7487:6630773,12084169 -g1,7487:6630773,12084169 -g1,7487:32583029,12084169 -g1,7487:32583029,12084169 -) -h1,7487:6630773,12280777:0,0,0 -(1,7491:6630773,13583005:25952256,513147,134348 -h1,7490:6630773,13583005:983040,0,0 -k1,7490:9091095,13583005:280595 -k1,7490:14337353,13583005:280595 -k1,7490:17692242,13583005:280595 -k1,7490:18632129,13583005:280595 -k1,7490:21892646,13583005:280595 -k1,7490:22529101,13583005:280595 -k1,7490:24547711,13583005:280595 -k1,7490:25479734,13583005:280595 -k1,7490:26531032,13583005:280595 -k1,7490:28771153,13583005:280595 -k1,7490:29583245,13583005:280595 -k1,7490:30515268,13583005:280595 -k1,7490:31812326,13583005:280595 -k1,7490:32583029,13583005:0 -) -(1,7491:6630773,14424493:25952256,505283,134348 -k1,7490:8820658,14424493:230359 -k1,7490:10749055,14424493:230359 -k1,7490:11847767,14424493:230360 -k1,7490:13553341,14424493:230359 -k1,7490:16567669,14424493:230359 -k1,7490:17586426,14424493:230359 -k1,7490:19554800,14424493:230359 -k1,7490:20471321,14424493:230359 -k1,7490:21057541,14424493:230360 -k1,7490:24262579,14424493:230359 -k1,7490:26532418,14424493:230359 -k1,7490:27959464,14424493:230359 -k1,7490:32583029,14424493:0 -) -(1,7491:6630773,15265981:25952256,513147,122846 -g1,7490:9525498,15265981 -g1,7490:10256224,15265981 -(1,7490:10256224,15265981:0,452978,122846 -r1,7536:12021337,15265981:1765113,575824,122846 -k1,7490:10256224,15265981:-1765113 -) -(1,7490:10256224,15265981:1765113,452978,122846 -k1,7490:10256224,15265981:3277 -h1,7490:12018060,15265981:0,411205,112570 -) -k1,7491:32583029,15265981:20388022 -g1,7491:32583029,15265981 -) -v1,7493:6630773,16392898:0,393216,0 -(1,7506:6630773,19461503:25952256,3461821,196608 -g1,7506:6630773,19461503 -g1,7506:6630773,19461503 -g1,7506:6434165,19461503 -(1,7506:6434165,19461503:0,3461821,196608 -r1,7536:32779637,19461503:26345472,3658429,196608 -k1,7506:6434165,19461503:-26345472 -) -(1,7506:6434165,19461503:26345472,3461821,196608 -[1,7506:6630773,19461503:25952256,3265213,0 -(1,7495:6630773,16600516:25952256,404226,107478 -(1,7494:6630773,16600516:0,0,0 -g1,7494:6630773,16600516 -g1,7494:6630773,16600516 -g1,7494:6303093,16600516 -(1,7494:6303093,16600516:0,0,0 -) -g1,7494:6630773,16600516 -) -k1,7495:6630773,16600516:0 -h1,7495:9159939,16600516:0,0,0 -k1,7495:32583029,16600516:23423090 -g1,7495:32583029,16600516 -) -(1,7499:6630773,17332230:25952256,404226,76021 -(1,7497:6630773,17332230:0,0,0 -g1,7497:6630773,17332230 -g1,7497:6630773,17332230 -g1,7497:6303093,17332230 -(1,7497:6303093,17332230:0,0,0 -) -g1,7497:6630773,17332230 -) -g1,7499:7579210,17332230 -g1,7499:8843793,17332230 -h1,7499:10108376,17332230:0,0,0 -k1,7499:32583028,17332230:22474652 -g1,7499:32583028,17332230 -) -(1,7501:6630773,18653768:25952256,404226,107478 -(1,7500:6630773,18653768:0,0,0 -g1,7500:6630773,18653768 -g1,7500:6630773,18653768 -g1,7500:6303093,18653768 -(1,7500:6303093,18653768:0,0,0 -) -g1,7500:6630773,18653768 -) -k1,7501:6630773,18653768:0 -h1,7501:9159939,18653768:0,0,0 -k1,7501:32583029,18653768:23423090 -g1,7501:32583029,18653768 -) -(1,7505:6630773,19385482:25952256,404226,76021 -(1,7503:6630773,19385482:0,0,0 -g1,7503:6630773,19385482 -g1,7503:6630773,19385482 -g1,7503:6303093,19385482 -(1,7503:6303093,19385482:0,0,0 -) -g1,7503:6630773,19385482 -) -g1,7505:7579210,19385482 -g1,7505:8843793,19385482 -h1,7505:10108376,19385482:0,0,0 -k1,7505:32583028,19385482:22474652 -g1,7505:32583028,19385482 -) -] -) -g1,7506:32583029,19461503 -g1,7506:6630773,19461503 -g1,7506:6630773,19461503 -g1,7506:32583029,19461503 -g1,7506:32583029,19461503 -) -h1,7506:6630773,19658111:0,0,0 -(1,7510:6630773,20960338:25952256,513147,134348 -h1,7509:6630773,20960338:983040,0,0 -k1,7509:8276634,20960338:185064 -k1,7509:9330049,20960338:185063 -k1,7509:10990328,20960338:185064 -k1,7509:13959360,20960338:185063 -k1,7509:14500284,20960338:185064 -k1,7509:17660027,20960338:185064 -k1,7509:19822967,20960338:185063 -k1,7509:23370028,20960338:185064 -k1,7509:25514618,20960338:185064 -k1,7509:27767997,20960338:185063 -k1,7509:29144506,20960338:185064 -k1,7509:30197921,20960338:185063 -k1,7509:31931601,20960338:185064 -k1,7509:32583029,20960338:0 -) -(1,7510:6630773,21801826:25952256,513147,134348 -k1,7509:8788268,21801826:228115 -k1,7509:9372242,21801826:228114 -k1,7509:10593883,21801826:228115 -k1,7509:14183995,21801826:228115 -k1,7509:16108836,21801826:228114 -k1,7509:18626779,21801826:228115 -k1,7509:19723246,21801826:228115 -k1,7509:21055643,21801826:228115 -k1,7509:22376242,21801826:228114 -k1,7509:25299853,21801826:228115 -(1,7509:25299853,21801826:0,452978,122846 -r1,7536:27416678,21801826:2116825,575824,122846 -k1,7509:25299853,21801826:-2116825 -) -(1,7509:25299853,21801826:2116825,452978,122846 -k1,7509:25299853,21801826:3277 -h1,7509:27413401,21801826:0,411205,112570 -) -k1,7509:27818463,21801826:228115 -k1,7509:28674412,21801826:228114 -k1,7509:29921612,21801826:228115 -k1,7509:32583029,21801826:0 -) -(1,7510:6630773,22643314:25952256,513147,134348 -k1,7509:8681662,22643314:182458 -k1,7509:9732473,22643314:182459 -k1,7509:11007416,22643314:182458 -k1,7509:13885371,22643314:182459 -(1,7509:13885371,22643314:0,452978,115847 -r1,7536:15298772,22643314:1413401,568825,115847 -k1,7509:13885371,22643314:-1413401 -) -(1,7509:13885371,22643314:1413401,452978,115847 -k1,7509:13885371,22643314:3277 -h1,7509:15295495,22643314:0,411205,112570 -) -k1,7509:15481230,22643314:182458 -k1,7509:16315116,22643314:182458 -k1,7509:18521327,22643314:182459 -k1,7509:19059645,22643314:182458 -k1,7509:22216782,22643314:182458 -k1,7509:24377118,22643314:182459 -k1,7509:25218868,22643314:182458 -k1,7509:27360853,22643314:182459 -k1,7509:29611627,22643314:182458 -k1,7509:32583029,22643314:0 -) -(1,7510:6630773,23484802:25952256,513147,134348 -g1,7509:7185862,23484802 -g1,7509:9782398,23484802 -g1,7509:12322573,23484802 -g1,7509:13713247,23484802 -g1,7509:15346404,23484802 -g1,7509:17621814,23484802 -g1,7509:18587159,23484802 -g1,7509:20483115,23484802 -g1,7509:22972172,23484802 -g1,7509:24438867,23484802 -g1,7509:24993956,23484802 -k1,7510:32583029,23484802:6421877 -g1,7510:32583029,23484802 -) -v1,7512:6630773,24611719:0,393216,0 -(1,7526:6630773,30264628:25952256,6046125,196608 -g1,7526:6630773,30264628 -g1,7526:6630773,30264628 -g1,7526:6434165,30264628 -(1,7526:6434165,30264628:0,6046125,196608 -r1,7536:32779637,30264628:26345472,6242733,196608 -k1,7526:6434165,30264628:-26345472 -) -(1,7526:6434165,30264628:26345472,6046125,196608 -[1,7526:6630773,30264628:25952256,5849517,0 -(1,7514:6630773,24819337:25952256,404226,107478 -(1,7513:6630773,24819337:0,0,0 -g1,7513:6630773,24819337 -g1,7513:6630773,24819337 -g1,7513:6303093,24819337 -(1,7513:6303093,24819337:0,0,0 -) -g1,7513:6630773,24819337 -) -g1,7514:9792230,24819337 -g1,7514:10740668,24819337 -g1,7514:14218271,24819337 -g1,7514:14850563,24819337 -h1,7514:17063583,24819337:0,0,0 -k1,7514:32583029,24819337:15519446 -g1,7514:32583029,24819337 -) -(1,7515:6630773,25485515:25952256,404226,107478 -h1,7515:6630773,25485515:0,0,0 -g1,7515:9159939,25485515 -g1,7515:10108377,25485515 -k1,7515:10108377,25485515:0 -h1,7515:14850562,25485515:0,0,0 -k1,7515:32583030,25485515:17732468 -g1,7515:32583030,25485515 -) -(1,7516:6630773,26151693:25952256,404226,107478 -h1,7516:6630773,26151693:0,0,0 -k1,7516:6630773,26151693:0 -h1,7516:10424521,26151693:0,0,0 -k1,7516:32583029,26151693:22158508 -g1,7516:32583029,26151693 -) -(1,7525:6630773,26883407:25952256,410518,9436 -(1,7518:6630773,26883407:0,0,0 -g1,7518:6630773,26883407 -g1,7518:6630773,26883407 -g1,7518:6303093,26883407 -(1,7518:6303093,26883407:0,0,0 -) -g1,7518:6630773,26883407 -) -g1,7525:7579210,26883407 -g1,7525:9159939,26883407 -g1,7525:10108376,26883407 -h1,7525:10424522,26883407:0,0,0 -k1,7525:32583030,26883407:22158508 -g1,7525:32583030,26883407 -) -(1,7525:6630773,27549585:25952256,410518,50331 -h1,7525:6630773,27549585:0,0,0 -g1,7525:7579210,27549585 -g1,7525:7895356,27549585 -g1,7525:8527648,27549585 -g1,7525:10424522,27549585 -g1,7525:11689105,27549585 -h1,7525:12005251,27549585:0,0,0 -k1,7525:32583029,27549585:20577778 -g1,7525:32583029,27549585 -) -(1,7525:6630773,28215763:25952256,410518,50331 -h1,7525:6630773,28215763:0,0,0 -g1,7525:7579210,28215763 -g1,7525:7895356,28215763 -g1,7525:8527648,28215763 -g1,7525:10424522,28215763 -g1,7525:11689105,28215763 -h1,7525:12005251,28215763:0,0,0 -k1,7525:32583029,28215763:20577778 -g1,7525:32583029,28215763 -) -(1,7525:6630773,28881941:25952256,410518,50331 -h1,7525:6630773,28881941:0,0,0 -g1,7525:7579210,28881941 -g1,7525:7895356,28881941 -g1,7525:8527648,28881941 -g1,7525:10424522,28881941 -g1,7525:11689105,28881941 -h1,7525:12005251,28881941:0,0,0 -k1,7525:32583029,28881941:20577778 -g1,7525:32583029,28881941 -) -(1,7525:6630773,29548119:25952256,410518,50331 -h1,7525:6630773,29548119:0,0,0 -g1,7525:7579210,29548119 -g1,7525:7895356,29548119 -g1,7525:8527648,29548119 -g1,7525:10424522,29548119 -g1,7525:11689105,29548119 -h1,7525:12321396,29548119:0,0,0 -k1,7525:32583028,29548119:20261632 -g1,7525:32583028,29548119 -) -(1,7525:6630773,30214297:25952256,410518,50331 -h1,7525:6630773,30214297:0,0,0 -g1,7525:7579210,30214297 -g1,7525:7895356,30214297 -g1,7525:8527648,30214297 -g1,7525:10424522,30214297 -g1,7525:11689105,30214297 -h1,7525:12321396,30214297:0,0,0 -k1,7525:32583028,30214297:20261632 -g1,7525:32583028,30214297 -) -] -) -g1,7526:32583029,30264628 -g1,7526:6630773,30264628 -g1,7526:6630773,30264628 -g1,7526:32583029,30264628 -g1,7526:32583029,30264628 -) -h1,7526:6630773,30461236:0,0,0 -v1,7530:6630773,32224203:0,393216,0 -(1,7531:6630773,36381954:25952256,4550967,616038 -g1,7531:6630773,36381954 -(1,7531:6630773,36381954:25952256,4550967,616038 -(1,7531:6630773,36997992:25952256,5167005,0 -[1,7531:6630773,36997992:25952256,5167005,0 -(1,7531:6630773,36971778:25952256,5114577,0 -r1,7536:6656987,36971778:26214,5114577,0 -[1,7531:6656987,36971778:25899828,5114577,0 -(1,7531:6656987,36381954:25899828,3934929,0 -[1,7531:7246811,36381954:24720180,3934929,0 -(1,7531:7246811,33731007:24720180,1283982,196608 -(1,7530:7246811,33731007:0,1283982,196608 -r1,7536:9812056,33731007:2565245,1480590,196608 -k1,7530:7246811,33731007:-2565245 -) -(1,7530:7246811,33731007:2565245,1283982,196608 -) -k1,7530:10104467,33731007:292411 -k1,7530:12254824,33731007:292411 -k1,7530:13206527,33731007:292411 -k1,7530:16128898,33731007:292411 -k1,7530:17844096,33731007:292411 -k1,7530:18795799,33731007:292411 -k1,7530:22114007,33731007:292411 -(1,7530:22114007,33731007:0,452978,122846 -r1,7536:24934256,33731007:2820249,575824,122846 -k1,7530:22114007,33731007:-2820249 -) -(1,7530:22114007,33731007:2820249,452978,122846 -k1,7530:22114007,33731007:3277 -h1,7530:24930979,33731007:0,411205,112570 -) -k1,7530:25400337,33731007:292411 -(1,7530:25400337,33731007:0,452978,122846 -r1,7536:27165450,33731007:1765113,575824,122846 -k1,7530:25400337,33731007:-1765113 -) -(1,7530:25400337,33731007:1765113,452978,122846 -k1,7530:25400337,33731007:3277 -h1,7530:27162173,33731007:0,411205,112570 -) -k1,7530:27457861,33731007:292411 -k1,7530:28941717,33731007:292411 -(1,7530:28941717,33731007:0,452978,122846 -r1,7536:31058542,33731007:2116825,575824,122846 -k1,7530:28941717,33731007:-2116825 -) -(1,7530:28941717,33731007:2116825,452978,122846 -k1,7530:28941717,33731007:3277 -h1,7530:31055265,33731007:0,411205,112570 -) -k1,7530:31350953,33731007:292411 -k1,7530:31966991,33731007:0 -) -(1,7531:7246811,34572495:24720180,513147,126483 -k1,7530:9587616,34572495:179428 -k1,7530:10937518,34572495:179429 -k1,7530:12209431,34572495:179428 -k1,7530:13071744,34572495:179428 -k1,7530:15019989,34572495:179428 -k1,7530:16291903,34572495:179429 -k1,7530:17122759,34572495:179428 -k1,7530:19732262,34572495:179428 -k1,7530:21370522,34572495:179429 -k1,7530:22880331,34572495:179428 -k1,7530:24449122,34572495:179428 -k1,7530:25518529,34572495:179428 -k1,7530:27265579,34572495:179429 -k1,7530:29146977,34572495:179428 -k1,7530:31966991,34572495:0 -) -(1,7531:7246811,35413983:24720180,505283,126483 -k1,7530:9117561,35413983:170746 -k1,7530:9644168,35413983:170747 -k1,7530:11645990,35413983:170746 -k1,7530:12468165,35413983:170747 -k1,7530:16072342,35413983:170746 -k1,7530:17620000,35413983:170747 -k1,7530:18982191,35413983:170746 -k1,7530:22331434,35413983:170747 -k1,7530:23693625,35413983:170746 -k1,7530:25055817,35413983:170747 -k1,7530:27098271,35413983:170746 -k1,7530:28472259,35413983:170747 -k1,7530:30474081,35413983:170746 -k1,7530:31966991,35413983:0 -) -(1,7531:7246811,36255471:24720180,505283,126483 -g1,7530:8465125,36255471 -g1,7530:10507226,36255471 -g1,7530:13747326,36255471 -g1,7530:14708083,36255471 -g1,7530:15926397,36255471 -g1,7530:17956702,36255471 -g1,7530:20814727,36255471 -g1,7530:22472787,36255471 -k1,7531:31966991,36255471:5295968 -g1,7531:31966991,36255471 -) -] -) -] -r1,7536:32583029,36971778:26214,5114577,0 -) -] -) -) -g1,7531:32583029,36381954 -) -h1,7531:6630773,36997992:0,0,0 -(1,7533:6630773,39805560:25952256,32768,229376 -(1,7533:6630773,39805560:0,32768,229376 -(1,7533:6630773,39805560:5505024,32768,229376 -r1,7536:12135797,39805560:5505024,262144,229376 -) -k1,7533:6630773,39805560:-5505024 -) -(1,7533:6630773,39805560:25952256,32768,0 -r1,7536:32583029,39805560:25952256,32768,0 -) -) -(1,7533:6630773,41409888:25952256,615776,151780 -(1,7533:6630773,41409888:1974731,582746,14155 -g1,7533:6630773,41409888 -g1,7533:8605504,41409888 -) -g1,7533:10368685,41409888 -g1,7533:13916280,41409888 -g1,7533:16205584,41409888 -g1,7533:17263335,41409888 -k1,7533:32583029,41409888:13168802 -g1,7533:32583029,41409888 -) -(1,7536:6630773,43182305:25952256,1161885,196608 -(1,7535:6630773,43182305:0,1161885,196608 -r1,7536:8178409,43182305:1547636,1358493,196608 -k1,7535:6630773,43182305:-1547636 -) -(1,7535:6630773,43182305:1547636,1161885,196608 -) -k1,7535:8333150,43182305:154741 -k1,7535:9316921,43182305:154741 -k1,7535:11082538,43182305:154742 -k1,7535:12440520,43182305:154741 -k1,7535:15186555,43182305:154741 -k1,7535:15554244,43182305:154697 -k1,7535:16841447,43182305:154741 -k1,7535:19645809,43182305:154741 -k1,7535:21492690,43182305:154741 -k1,7535:24653567,43182305:154741 -k1,7535:27183334,43182305:154742 -k1,7535:27997367,43182305:154741 -k1,7535:29171193,43182305:154741 -k1,7535:29740733,43182305:154697 -k1,7535:32583029,43182305:0 -) -(1,7536:6630773,44023793:25952256,513147,134348 -k1,7535:8161148,44023793:245869 -k1,7535:9398577,44023793:245869 -k1,7535:11621667,44023793:245869 -k1,7535:13565574,44023793:245869 -k1,7535:16069158,44023793:245869 -k1,7535:19001349,44023793:245870 -k1,7535:22273015,44023793:245869 -k1,7535:23689357,44023793:245869 -k1,7535:24926786,44023793:245869 -k1,7535:26931641,44023793:245869 -k1,7535:29736036,44023793:245869 -k1,7535:31000990,44023793:245869 -k1,7535:32583029,44023793:0 -) -(1,7536:6630773,44865281:25952256,513147,134348 -k1,7535:10824609,44865281:175824 -k1,7535:12170905,44865281:175823 -k1,7535:13479191,44865281:175824 -k1,7535:15203630,44865281:175823 -k1,7535:16030882,44865281:175824 -k1,7535:18217350,44865281:175823 -k1,7535:19044602,44865281:175824 -k1,7535:20423667,44865281:175824 -k1,7535:22878177,44865281:175823 -k1,7535:24567227,44865281:175824 -k1,7535:27145600,44865281:175823 -k1,7535:30069349,44865281:175824 -h1,7535:30467808,44865281:0,0,0 -k1,7535:30643631,44865281:175823 -k1,7535:32010900,44865281:175824 -h1,7535:32409359,44865281:0,0,0 -k1,7535:32583029,44865281:0 -) -(1,7536:6630773,45706769:25952256,513147,134348 -k1,7535:7454966,45706769:196358 -k1,7535:8670410,45706769:196359 -k1,7535:10520241,45706769:196358 -k1,7535:11954574,45706769:196358 -k1,7535:12837094,45706769:196358 -k1,7535:13901805,45706769:196359 -k1,7535:15202445,45706769:196358 -k1,7535:17405515,45706769:196358 -k1,7535:19670189,45706769:196358 -k1,7535:20517976,45706769:196359 -(1,7535:20517976,45706769:0,452978,115847 -r1,7536:22986513,45706769:2468537,568825,115847 -k1,7535:20517976,45706769:-2468537 -) -(1,7535:20517976,45706769:2468537,452978,115847 -k1,7535:20517976,45706769:3277 -h1,7535:22983236,45706769:0,411205,112570 -) -k1,7535:23356541,45706769:196358 -(1,7535:23356541,45706769:0,452978,115847 -r1,7536:26528501,45706769:3171960,568825,115847 -k1,7535:23356541,45706769:-3171960 -) -(1,7535:23356541,45706769:3171960,452978,115847 -k1,7535:23356541,45706769:3277 -h1,7535:26525224,45706769:0,411205,112570 -) -k1,7535:26724859,45706769:196358 -k1,7535:28112662,45706769:196358 -k1,7535:30010991,45706769:196359 -k1,7535:31923737,45706769:196358 -k1,7535:32583029,45706769:0 -) -] -(1,7536:32583029,45706769:0,0,0 -g1,7536:32583029,45706769 -) -) -] -(1,7536:6630773,47279633:25952256,0,0 -h1,7536:6630773,47279633:25952256,0,0 -) -] -(1,7536:4262630,4025873:0,0,0 -[1,7536:-473656,4025873:0,0,0 -(1,7536:-473656,-710413:0,0,0 -(1,7536:-473656,-710413:0,0,0 -g1,7536:-473656,-710413 -) -g1,7536:-473656,-710413 -) -] -) -] -!23513 -}142 -Input:1176:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1177:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1178:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1179:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1180:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1181:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1182:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1183:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1184:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1185:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!932 -{143 -[1,7597:4262630,47279633:28320399,43253760,0 -(1,7597:4262630,4025873:0,0,0 -[1,7597:-473656,4025873:0,0,0 -(1,7597:-473656,-710413:0,0,0 -(1,7597:-473656,-644877:0,0,0 -k1,7597:-473656,-644877:-65536 -) -(1,7597:-473656,4736287:0,0,0 -k1,7597:-473656,4736287:5209943 -) -g1,7597:-473656,-710413 -) -] -) -[1,7597:6630773,47279633:25952256,43253760,0 -[1,7597:6630773,4812305:25952256,786432,0 -(1,7597:6630773,4812305:25952256,505283,134348 -(1,7597:6630773,4812305:25952256,505283,134348 -g1,7597:3078558,4812305 -[1,7597:3078558,4812305:0,0,0 -(1,7597:3078558,2439708:0,1703936,0 -k1,7597:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,7597:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,7597:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,7597:3078558,4812305:0,0,0 -(1,7597:3078558,2439708:0,1703936,0 -g1,7597:29030814,2439708 -g1,7597:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,7597:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,7597:37855564,2439708:1179648,16384,0 -) -) -k1,7597:3078556,2439708:-34777008 -) -] -[1,7597:3078558,4812305:0,0,0 -(1,7597:3078558,49800853:0,16384,2228224 -k1,7597:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,7597:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,7597:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,7597:3078558,4812305:0,0,0 -(1,7597:3078558,49800853:0,16384,2228224 -g1,7597:29030814,49800853 -g1,7597:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,7597:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,7597:37855564,49800853:1179648,16384,0 -) -) -k1,7597:3078556,49800853:-34777008 -) -] -g1,7597:6630773,4812305 -k1,7597:18771974,4812305:10945824 -g1,7597:20158715,4812305 -g1,7597:20807521,4812305 -g1,7597:24121676,4812305 -g1,7597:28605649,4812305 -g1,7597:30015328,4812305 -) -) -] -[1,7597:6630773,45706769:25952256,40108032,0 -(1,7597:6630773,45706769:25952256,40108032,0 -(1,7597:6630773,45706769:0,0,0 -g1,7597:6630773,45706769 -) -[1,7597:6630773,45706769:25952256,40108032,0 -(1,7536:6630773,6254097:25952256,513147,134348 -k1,7535:9250549,6254097:156278 -k1,7535:10275179,6254097:156278 -k1,7535:11535739,6254097:156278 -k1,7535:13698729,6254097:156278 -k1,7535:15923323,6254097:156278 -k1,7535:16731029,6254097:156278 -k1,7535:19913105,6254097:156279 -k1,7535:21260828,6254097:156278 -k1,7535:25361063,6254097:156278 -k1,7535:26470890,6254097:156278 -k1,7535:27731450,6254097:156278 -k1,7535:29173544,6254097:156278 -k1,7535:31259202,6254097:156278 -k1,7535:32583029,6254097:0 -) -(1,7536:6630773,7095585:25952256,513147,134348 -k1,7535:7516584,7095585:226519 -k1,7535:10768900,7095585:226519 -k1,7535:13205292,7095585:226518 -k1,7535:17375768,7095585:226519 -k1,7535:18798974,7095585:226519 -k1,7535:19440308,7095585:226491 -k1,7535:22509123,7095585:226519 -k1,7535:23836647,7095585:226519 -k1,7535:24419025,7095585:226518 -k1,7535:25999518,7095585:226519 -k1,7535:29506769,7095585:226519 -k1,7535:32583029,7095585:0 -) -(1,7536:6630773,7937073:25952256,513147,134348 -k1,7535:8219541,7937073:194817 -k1,7535:9180473,7937073:194816 -k1,7535:10699117,7937073:194817 -k1,7535:12085379,7937073:194817 -k1,7535:14588373,7937073:194816 -k1,7535:17649079,7937073:194817 -k1,7535:18459934,7937073:194817 -k1,7535:19673835,7937073:194816 -k1,7535:21522125,7937073:194817 -k1,7535:23128588,7937073:194817 -k1,7535:24520091,7937073:194816 -k1,7535:28320043,7937073:194817 -k1,7535:29174152,7937073:194817 -k1,7535:30572209,7937073:194816 -k1,7535:31298523,7937073:194817 -k1,7535:32583029,7937073:0 -) -(1,7536:6630773,8778561:25952256,513147,134348 -k1,7535:7640901,8778561:141776 -k1,7535:8886959,8778561:141776 -k1,7535:11035447,8778561:141776 -k1,7535:13939567,8778561:141777 -k1,7535:17107140,8778561:141776 -k1,7535:17931801,8778561:141776 -k1,7535:21843863,8778561:141776 -k1,7535:22637067,8778561:141776 -k1,7535:23134703,8778561:141776 -k1,7535:24971241,8778561:141777 -k1,7535:27024702,8778561:141776 -k1,7535:28357923,8778561:141776 -k1,7535:32583029,8778561:0 -) -(1,7536:6630773,9620049:25952256,513147,126483 -g1,7535:7288099,9620049 -g1,7535:8018825,9620049 -g1,7535:10848014,9620049 -g1,7535:11698671,9620049 -g1,7535:13512707,9620049 -g1,7535:15457160,9620049 -g1,7535:17043786,9620049 -g1,7535:18566842,9620049 -g1,7535:19425363,9620049 -g1,7535:22650389,9620049 -g1,7535:23532503,9620049 -k1,7536:32583029,9620049:5106569 -g1,7536:32583029,9620049 -) -(1,7538:6630773,10461537:25952256,513147,126483 -h1,7537:6630773,10461537:983040,0,0 -k1,7537:8421263,10461537:179615 -k1,7537:9804120,10461537:179616 -k1,7537:11289868,10461537:179615 -k1,7537:14130901,10461537:179616 -k1,7537:15178868,10461537:179615 -k1,7537:16450969,10461537:179616 -k1,7537:16986444,10461537:179615 -k1,7537:20202997,10461537:179615 -k1,7537:22314614,10461537:179616 -k1,7537:23110267,10461537:179615 -k1,7537:25887075,10461537:179616 -k1,7537:28298846,10461537:179615 -k1,7537:29669907,10461537:179616 -k1,7537:30942007,10461537:179615 -k1,7538:32583029,10461537:0 -) -(1,7538:6630773,11303025:25952256,513147,134348 -k1,7537:8108709,11303025:210470 -(1,7537:8108709,11303025:0,452978,115847 -r1,7597:11280669,11303025:3171960,568825,115847 -k1,7537:8108709,11303025:-3171960 -) -(1,7537:8108709,11303025:3171960,452978,115847 -k1,7537:8108709,11303025:3277 -h1,7537:11277392,11303025:0,411205,112570 -) -k1,7537:11491139,11303025:210470 -k1,7537:12387771,11303025:210470 -k1,7537:13056338,11303025:210470 -k1,7537:15645110,11303025:210470 -k1,7537:17711560,11303025:210470 -k1,7537:20896708,11303025:210469 -k1,7537:23303289,11303025:210470 -k1,7537:24196644,11303025:210470 -k1,7537:27102610,11303025:210470 -k1,7537:29381396,11303025:210470 -k1,7537:30278028,11303025:210470 -k1,7537:31276896,11303025:210470 -k1,7537:32583029,11303025:0 -) -(1,7538:6630773,12144513:25952256,505283,134348 -k1,7537:10043590,12144513:166819 -k1,7537:11163958,12144513:166819 -k1,7537:13354528,12144513:166818 -k1,7537:13877207,12144513:166819 -k1,7537:16664155,12144513:166819 -k1,7537:18808851,12144513:166819 -k1,7537:20369621,12144513:166819 -k1,7537:22695196,12144513:166819 -k1,7537:25815722,12144513:166818 -k1,7537:27376492,12144513:166819 -k1,7537:29611627,12144513:166819 -k1,7537:32583029,12144513:0 -) -(1,7538:6630773,12986001:25952256,513147,7863 -g1,7537:7849087,12986001 -g1,7537:10743812,12986001 -k1,7538:32583029,12986001:19597230 -g1,7538:32583029,12986001 -) -v1,7540:6630773,14176467:0,393216,0 -(1,7554:6630773,19788481:25952256,6005230,196608 -g1,7554:6630773,19788481 -g1,7554:6630773,19788481 -g1,7554:6434165,19788481 -(1,7554:6434165,19788481:0,6005230,196608 -r1,7597:32779637,19788481:26345472,6201838,196608 -k1,7554:6434165,19788481:-26345472 -) -(1,7554:6434165,19788481:26345472,6005230,196608 -[1,7554:6630773,19788481:25952256,5808622,0 -(1,7542:6630773,14384085:25952256,404226,76021 -(1,7541:6630773,14384085:0,0,0 -g1,7541:6630773,14384085 -g1,7541:6630773,14384085 -g1,7541:6303093,14384085 -(1,7541:6303093,14384085:0,0,0 -) -g1,7541:6630773,14384085 -) -g1,7542:7263065,14384085 -g1,7542:8211503,14384085 -k1,7542:8211503,14384085:0 -h1,7542:11056814,14384085:0,0,0 -k1,7542:32583030,14384085:21526216 -g1,7542:32583030,14384085 -) -(1,7543:6630773,15050263:25952256,404226,76021 -h1,7543:6630773,15050263:0,0,0 -g1,7543:9159939,15050263 -g1,7543:10108377,15050263 -k1,7543:10108377,15050263:0 -h1,7543:12953688,15050263:0,0,0 -k1,7543:32583028,15050263:19629340 -g1,7543:32583028,15050263 -) -(1,7544:6630773,15716441:25952256,410518,82312 -h1,7544:6630773,15716441:0,0,0 -g1,7544:9792230,15716441 -g1,7544:10740668,15716441 -g1,7544:13902126,15716441 -g1,7544:16115146,15716441 -h1,7544:18012020,15716441:0,0,0 -k1,7544:32583029,15716441:14571009 -g1,7544:32583029,15716441 -) -(1,7545:6630773,16382619:25952256,410518,76021 -h1,7545:6630773,16382619:0,0,0 -g1,7545:7895356,16382619 -g1,7545:10424522,16382619 -g1,7545:11372959,16382619 -g1,7545:14850562,16382619 -h1,7545:15166708,16382619:0,0,0 -k1,7545:32583028,16382619:17416320 -g1,7545:32583028,16382619 -) -(1,7546:6630773,17048797:25952256,410518,82312 -h1,7546:6630773,17048797:0,0,0 -g1,7546:6946919,17048797 -g1,7546:7263065,17048797 -g1,7546:7579211,17048797 -g1,7546:13269834,17048797 -g1,7546:14218272,17048797 -g1,7546:19276604,17048797 -k1,7546:19276604,17048797:0 -h1,7546:21805770,17048797:0,0,0 -k1,7546:32583029,17048797:10777259 -g1,7546:32583029,17048797 -) -(1,7547:6630773,17714975:25952256,404226,76021 -h1,7547:6630773,17714975:0,0,0 -g1,7547:6946919,17714975 -g1,7547:7263065,17714975 -g1,7547:7579211,17714975 -h1,7547:7895357,17714975:0,0,0 -k1,7547:32583029,17714975:24687672 -g1,7547:32583029,17714975 -) -(1,7548:6630773,18381153:25952256,404226,6290 -h1,7548:6630773,18381153:0,0,0 -h1,7548:8843793,18381153:0,0,0 -k1,7548:32583029,18381153:23739236 -g1,7548:32583029,18381153 -) -(1,7553:6630773,19112867:25952256,404226,6290 -(1,7550:6630773,19112867:0,0,0 -g1,7550:6630773,19112867 -g1,7550:6630773,19112867 -g1,7550:6303093,19112867 -(1,7550:6303093,19112867:0,0,0 -) -g1,7550:6630773,19112867 -) -g1,7553:7579210,19112867 -g1,7553:7895356,19112867 -g1,7553:8211502,19112867 -g1,7553:8527648,19112867 -g1,7553:8843794,19112867 -g1,7553:9159940,19112867 -g1,7553:9476086,19112867 -g1,7553:11056815,19112867 -g1,7553:11372961,19112867 -g1,7553:11689107,19112867 -g1,7553:12005253,19112867 -g1,7553:12321399,19112867 -g1,7553:12637545,19112867 -g1,7553:12953691,19112867 -g1,7553:13269837,19112867 -g1,7553:14534420,19112867 -g1,7553:14850566,19112867 -g1,7553:15166712,19112867 -g1,7553:15482858,19112867 -g1,7553:15799004,19112867 -g1,7553:16115150,19112867 -g1,7553:16431296,19112867 -g1,7553:16747442,19112867 -h1,7553:17695879,19112867:0,0,0 -k1,7553:32583029,19112867:14887150 -g1,7553:32583029,19112867 -) -(1,7553:6630773,19779045:25952256,388497,9436 -h1,7553:6630773,19779045:0,0,0 -g1,7553:7579210,19779045 -g1,7553:7895356,19779045 -g1,7553:11056813,19779045 -g1,7553:11372959,19779045 -g1,7553:14534416,19779045 -k1,7553:14534416,19779045:0 -h1,7553:17695873,19779045:0,0,0 -k1,7553:32583029,19779045:14887156 -g1,7553:32583029,19779045 -) -] -) -g1,7554:32583029,19788481 -g1,7554:6630773,19788481 -g1,7554:6630773,19788481 -g1,7554:32583029,19788481 -g1,7554:32583029,19788481 -) -h1,7554:6630773,19985089:0,0,0 -(1,7558:6630773,21350865:25952256,513147,134348 -h1,7557:6630773,21350865:983040,0,0 -k1,7557:9559839,21350865:162791 -k1,7557:12937172,21350865:162792 -k1,7557:13455823,21350865:162791 -k1,7557:14518424,21350865:162792 -k1,7557:15297253,21350865:162791 -k1,7557:18368533,21350865:162792 -k1,7557:19147362,21350865:162791 -k1,7557:19666014,21350865:162792 -k1,7557:21417398,21350865:162791 -k1,7557:22448542,21350865:162792 -k1,7557:23912878,21350865:162791 -k1,7557:25094755,21350865:162792 -k1,7557:27934036,21350865:162791 -k1,7557:29381334,21350865:162792 -k1,7557:30412477,21350865:162791 -k1,7557:32583029,21350865:0 -) -(1,7558:6630773,22192353:25952256,513147,134348 -k1,7557:8945112,22192353:283378 -k1,7557:10247574,22192353:283377 -k1,7557:12966270,22192353:283378 -k1,7557:15317963,22192353:283377 -k1,7557:16260633,22192353:283378 -k1,7557:17563095,22192353:283377 -k1,7557:20872270,22192353:283378 -k1,7557:21841809,22192353:283377 -k1,7557:23673803,22192353:283378 -k1,7557:24488677,22192353:283377 -k1,7557:26810225,22192353:283378 -k1,7557:27709640,22192353:283377 -k1,7557:29012103,22192353:283378 -k1,7557:30289007,22192353:283378 -k1,7557:31563944,22192353:283377 -k1,7557:32583029,22192353:0 -) -(1,7558:6630773,23033841:25952256,513147,102891 -k1,7557:10284708,23033841:241475 -k1,7557:11185475,23033841:241475 -k1,7557:12446035,23033841:241475 -k1,7557:15886977,23033841:241474 -k1,7557:16756287,23033841:241475 -k1,7557:18201003,23033841:241475 -k1,7557:19983229,23033841:241475 -k1,7557:21093056,23033841:241475 -k1,7557:22438813,23033841:241475 -k1,7557:24115525,23033841:241474 -k1,7557:25376085,23033841:241475 -k1,7557:28313056,23033841:241475 -k1,7557:31966991,23033841:241475 -k1,7557:32583029,23033841:0 -) -(1,7558:6630773,23875329:25952256,513147,126483 -k1,7557:7787128,23875329:137270 -k1,7557:9339321,23875329:137271 -k1,7557:11987931,23875329:137270 -(1,7557:12195025,23875329:0,459977,115847 -r1,7597:12553291,23875329:358266,575824,115847 -k1,7557:12195025,23875329:-358266 -) -(1,7557:12195025,23875329:358266,459977,115847 -k1,7557:12195025,23875329:3277 -h1,7557:12550014,23875329:0,411205,112570 -) -k1,7557:12690561,23875329:137270 -k1,7557:13443870,23875329:137271 -k1,7557:14600225,23875329:137270 -k1,7557:16708164,23875329:137271 -k1,7557:18920959,23875329:137270 -k1,7557:20249674,23875329:137270 -k1,7557:21486639,23875329:137271 -k1,7557:22642994,23875329:137270 -k1,7557:25806061,23875329:137270 -k1,7557:26704860,23875329:137271 -k1,7557:27934615,23875329:137270 -k1,7557:28731178,23875329:137271 -k1,7557:29887533,23875329:137270 -k1,7557:32583029,23875329:0 -) -(1,7558:6630773,24716817:25952256,505283,126483 -g1,7557:7929696,24716817 -g1,7557:10818523,24716817 -(1,7557:11025617,24716817:0,459977,115847 -r1,7597:12087306,24716817:1061689,575824,115847 -k1,7557:11025617,24716817:-1061689 -) -(1,7557:11025617,24716817:1061689,459977,115847 -k1,7557:11025617,24716817:3277 -h1,7557:12084029,24716817:0,411205,112570 -) -g1,7557:12667299,24716817 -g1,7557:13820077,24716817 -g1,7557:16043058,24716817 -g1,7557:16598147,24716817 -g1,7557:19417505,24716817 -g1,7557:21594611,24716817 -g1,7557:23187791,24716817 -g1,7557:27087838,24716817 -k1,7558:32583029,24716817:2367813 -g1,7558:32583029,24716817 -) -v1,7560:6630773,25907283:0,393216,0 -(1,7572:6630773,30253526:25952256,4739459,196608 -g1,7572:6630773,30253526 -g1,7572:6630773,30253526 -g1,7572:6434165,30253526 -(1,7572:6434165,30253526:0,4739459,196608 -r1,7597:32779637,30253526:26345472,4936067,196608 -k1,7572:6434165,30253526:-26345472 -) -(1,7572:6434165,30253526:26345472,4739459,196608 -[1,7572:6630773,30253526:25952256,4542851,0 -(1,7562:6630773,26114901:25952256,404226,76021 -(1,7561:6630773,26114901:0,0,0 -g1,7561:6630773,26114901 -g1,7561:6630773,26114901 -g1,7561:6303093,26114901 -(1,7561:6303093,26114901:0,0,0 -) -g1,7561:6630773,26114901 -) -g1,7562:9159939,26114901 -g1,7562:10108377,26114901 -k1,7562:10108377,26114901:0 -h1,7562:12953688,26114901:0,0,0 -k1,7562:32583028,26114901:19629340 -g1,7562:32583028,26114901 -) -(1,7563:6630773,26781079:25952256,410518,82312 -h1,7563:6630773,26781079:0,0,0 -g1,7563:8211502,26781079 -g1,7563:9159940,26781079 -g1,7563:12637543,26781079 -g1,7563:14218272,26781079 -h1,7563:15482855,26781079:0,0,0 -k1,7563:32583029,26781079:17100174 -g1,7563:32583029,26781079 -) -(1,7564:6630773,27447257:25952256,410518,76021 -h1,7564:6630773,27447257:0,0,0 -g1,7564:7895356,27447257 -g1,7564:8843793,27447257 -g1,7564:9792230,27447257 -g1,7564:11689104,27447257 -h1,7564:12005250,27447257:0,0,0 -k1,7564:32583030,27447257:20577780 -g1,7564:32583030,27447257 -) -(1,7565:6630773,28113435:25952256,410518,82312 -h1,7565:6630773,28113435:0,0,0 -g1,7565:6946919,28113435 -g1,7565:7263065,28113435 -g1,7565:7579211,28113435 -g1,7565:10108377,28113435 -g1,7565:11056815,28113435 -g1,7565:14534418,28113435 -k1,7565:14534418,28113435:0 -h1,7565:16115147,28113435:0,0,0 -k1,7565:32583029,28113435:16467882 -g1,7565:32583029,28113435 -) -(1,7566:6630773,28779613:25952256,404226,76021 -h1,7566:6630773,28779613:0,0,0 -g1,7566:6946919,28779613 -g1,7566:7263065,28779613 -g1,7566:7579211,28779613 -h1,7566:7895357,28779613:0,0,0 -k1,7566:32583029,28779613:24687672 -g1,7566:32583029,28779613 -) -(1,7567:6630773,29445791:25952256,404226,6290 -h1,7567:6630773,29445791:0,0,0 -h1,7567:8843793,29445791:0,0,0 -k1,7567:32583029,29445791:23739236 -g1,7567:32583029,29445791 -) -(1,7571:6630773,30177505:25952256,404226,76021 -(1,7569:6630773,30177505:0,0,0 -g1,7569:6630773,30177505 -g1,7569:6630773,30177505 -g1,7569:6303093,30177505 -(1,7569:6303093,30177505:0,0,0 -) -g1,7569:6630773,30177505 -) -g1,7571:7579210,30177505 -g1,7571:8843793,30177505 -g1,7571:9159939,30177505 -g1,7571:12321396,30177505 -g1,7571:12637542,30177505 -g1,7571:15798999,30177505 -k1,7571:15798999,30177505:0 -h1,7571:18960456,30177505:0,0,0 -k1,7571:32583029,30177505:13622573 -g1,7571:32583029,30177505 -) -] -) -g1,7572:32583029,30253526 -g1,7572:6630773,30253526 -g1,7572:6630773,30253526 -g1,7572:32583029,30253526 -g1,7572:32583029,30253526 -) -h1,7572:6630773,30450134:0,0,0 -(1,7576:6630773,31815910:25952256,513147,134348 -h1,7575:6630773,31815910:983040,0,0 -k1,7575:8786908,31815910:219546 -k1,7575:10110735,31815910:219545 -k1,7575:11422766,31815910:219546 -k1,7575:11998171,31815910:219545 -k1,7575:14376473,31815910:219546 -k1,7575:15589544,31815910:219545 -k1,7575:16468382,31815910:219546 -k1,7575:19713724,31815910:219545 -k1,7575:20584698,31815910:219546 -k1,7575:22150353,31815910:219545 -k1,7575:23459763,31815910:219546 -k1,7575:25967170,31815910:219545 -k1,7575:26846008,31815910:219546 -k1,7575:28084638,31815910:219545 -k1,7575:30685107,31815910:219546 -k1,7575:31563944,31815910:219545 -k1,7575:32583029,31815910:0 -) -(1,7576:6630773,32657398:25952256,505283,134348 -k1,7575:9226177,32657398:248560 -k1,7575:10428286,32657398:248560 -k1,7575:12700598,32657398:248560 -k1,7575:13305018,32657398:248560 -k1,7575:16173707,32657398:248560 -k1,7575:18400145,32657398:248561 -k1,7575:20042656,32657398:248560 -k1,7575:22449972,32657398:248560 -k1,7575:25652240,32657398:248560 -k1,7575:27294751,32657398:248560 -k1,7575:29611627,32657398:248560 -k1,7575:32583029,32657398:0 -) -(1,7576:6630773,33498886:25952256,505283,134348 -g1,7575:7849087,33498886 -g1,7575:10116632,33498886 -g1,7575:12010622,33498886 -g1,7575:12861279,33498886 -g1,7575:14079593,33498886 -g1,7575:15272348,33498886 -k1,7576:32583029,33498886:14183303 -g1,7576:32583029,33498886 -) -v1,7578:6630773,34689352:0,393216,0 -(1,7591:6630773,39635188:25952256,5339052,196608 -g1,7591:6630773,39635188 -g1,7591:6630773,39635188 -g1,7591:6434165,39635188 -(1,7591:6434165,39635188:0,5339052,196608 -r1,7597:32779637,39635188:26345472,5535660,196608 -k1,7591:6434165,39635188:-26345472 -) -(1,7591:6434165,39635188:26345472,5339052,196608 -[1,7591:6630773,39635188:25952256,5142444,0 -(1,7580:6630773,34896970:25952256,404226,76021 -(1,7579:6630773,34896970:0,0,0 -g1,7579:6630773,34896970 -g1,7579:6630773,34896970 -g1,7579:6303093,34896970 -(1,7579:6303093,34896970:0,0,0 -) -g1,7579:6630773,34896970 -) -g1,7580:9159939,34896970 -g1,7580:10108377,34896970 -k1,7580:10108377,34896970:0 -h1,7580:12953688,34896970:0,0,0 -k1,7580:32583028,34896970:19629340 -g1,7580:32583028,34896970 -) -(1,7581:6630773,35563148:25952256,410518,107478 -h1,7581:6630773,35563148:0,0,0 -g1,7581:8211502,35563148 -g1,7581:9159940,35563148 -g1,7581:13269835,35563148 -g1,7581:13902127,35563148 -g1,7581:15799002,35563148 -g1,7581:18328168,35563148 -g1,7581:18960460,35563148 -g1,7581:20541189,35563148 -g1,7581:23070355,35563148 -g1,7581:23702647,35563148 -h1,7581:24967230,35563148:0,0,0 -k1,7581:32583029,35563148:7615799 -g1,7581:32583029,35563148 -) -(1,7582:6630773,36229326:25952256,410518,76021 -h1,7582:6630773,36229326:0,0,0 -g1,7582:7895356,36229326 -g1,7582:8843793,36229326 -g1,7582:9792230,36229326 -g1,7582:13902124,36229326 -h1,7582:14218270,36229326:0,0,0 -k1,7582:32583030,36229326:18364760 -g1,7582:32583030,36229326 -) -(1,7583:6630773,36895504:25952256,410518,76021 -h1,7583:6630773,36895504:0,0,0 -g1,7583:6946919,36895504 -g1,7583:7263065,36895504 -g1,7583:7579211,36895504 -g1,7583:11689105,36895504 -g1,7583:12637543,36895504 -h1,7583:16431291,36895504:0,0,0 -k1,7583:32583029,36895504:16151738 -g1,7583:32583029,36895504 -) -(1,7584:6630773,37561682:25952256,404226,76021 -h1,7584:6630773,37561682:0,0,0 -g1,7584:6946919,37561682 -g1,7584:7263065,37561682 -g1,7584:7579211,37561682 -h1,7584:7895357,37561682:0,0,0 -k1,7584:32583029,37561682:24687672 -g1,7584:32583029,37561682 -) -(1,7585:6630773,38227860:25952256,404226,6290 -h1,7585:6630773,38227860:0,0,0 -h1,7585:8843793,38227860:0,0,0 -k1,7585:32583029,38227860:23739236 -g1,7585:32583029,38227860 -) -(1,7590:6630773,38959574:25952256,404226,107478 -(1,7587:6630773,38959574:0,0,0 -g1,7587:6630773,38959574 -g1,7587:6630773,38959574 -g1,7587:6303093,38959574 -(1,7587:6303093,38959574:0,0,0 -) -g1,7587:6630773,38959574 -) -g1,7590:7579210,38959574 -g1,7590:7895356,38959574 -g1,7590:8211502,38959574 -g1,7590:8527648,38959574 -g1,7590:11056814,38959574 -g1,7590:11372960,38959574 -g1,7590:11689106,38959574 -g1,7590:12005252,38959574 -g1,7590:14534418,38959574 -g1,7590:14850564,38959574 -g1,7590:15166710,38959574 -g1,7590:15482856,38959574 -h1,7590:17695876,38959574:0,0,0 -k1,7590:32583029,38959574:14887153 -g1,7590:32583029,38959574 -) -(1,7590:6630773,39625752:25952256,388497,9436 -h1,7590:6630773,39625752:0,0,0 -g1,7590:7579210,39625752 -g1,7590:7895356,39625752 -g1,7590:11056813,39625752 -g1,7590:11372959,39625752 -g1,7590:14534416,39625752 -k1,7590:14534416,39625752:0 -h1,7590:17695873,39625752:0,0,0 -k1,7590:32583029,39625752:14887156 -g1,7590:32583029,39625752 -) -] -) -g1,7591:32583029,39635188 -g1,7591:6630773,39635188 -g1,7591:6630773,39635188 -g1,7591:32583029,39635188 -g1,7591:32583029,39635188 -) -h1,7591:6630773,39831796:0,0,0 -(1,7595:6630773,41197572:25952256,513147,134348 -h1,7594:6630773,41197572:983040,0,0 -k1,7594:9239499,41197572:164233 -k1,7594:9935229,41197572:164233 -k1,7594:10870166,41197572:164234 -k1,7594:13695816,41197572:164233 -k1,7594:15595442,41197572:164233 -k1,7594:17747382,41197572:164233 -k1,7594:20959039,41197572:164233 -k1,7594:22076822,41197572:164234 -k1,7594:23333540,41197572:164233 -k1,7594:23853633,41197572:164233 -k1,7594:25432788,41197572:164233 -k1,7594:26248449,41197572:164233 -k1,7594:27100156,41197572:164234 -k1,7594:28919173,41197572:164233 -k1,7594:31575085,41197572:164233 -k1,7595:32583029,41197572:0 -) -(1,7595:6630773,42039060:25952256,513147,134348 -k1,7594:9035084,42039060:185262 -k1,7594:9576206,42039060:185262 -k1,7594:10754994,42039060:185262 -k1,7594:11599548,42039060:185262 -k1,7594:13497266,42039060:185262 -k1,7594:16174207,42039060:185262 -k1,7594:17313018,42039060:185262 -k1,7594:19668831,42039060:185261 -k1,7594:21291298,42039060:185262 -k1,7594:22127988,42039060:185262 -(1,7594:22127988,42039060:0,452978,115847 -r1,7597:24596525,42039060:2468537,568825,115847 -k1,7594:22127988,42039060:-2468537 -) -(1,7594:22127988,42039060:2468537,452978,115847 -k1,7594:22127988,42039060:3277 -h1,7594:24593248,42039060:0,411205,112570 -) -k1,7594:24781787,42039060:185262 -k1,7594:26170290,42039060:185262 -k1,7594:27349078,42039060:185262 -k1,7594:28193632,42039060:185262 -k1,7594:30091350,42039060:185262 -k1,7594:32583029,42039060:0 -) -(1,7595:6630773,42880548:25952256,513147,134348 -k1,7594:7562289,42880548:245354 -k1,7594:8265740,42880548:245354 -k1,7594:10912333,42880548:245354 -k1,7594:12609309,42880548:245354 -k1,7594:14567119,42880548:245354 -k1,7594:16800180,42880548:245354 -k1,7594:17731697,42880548:245355 -k1,7594:18332911,42880548:245354 -k1,7594:21280970,42880548:245354 -k1,7594:24477410,42880548:245354 -k1,7594:27795092,42880548:245354 -k1,7594:28691874,42880548:245354 -k1,7594:29725626,42880548:245354 -(1,7594:29725626,42880548:0,414482,115847 -r1,7597:30083892,42880548:358266,530329,115847 -k1,7594:29725626,42880548:-358266 -) -(1,7594:29725626,42880548:358266,414482,115847 -k1,7594:29725626,42880548:3277 -h1,7594:30080615,42880548:0,411205,112570 -) -k1,7594:30329246,42880548:245354 -k1,7595:32583029,42880548:0 -) -(1,7595:6630773,43722036:25952256,513147,134348 -k1,7594:8322492,43722036:278107 -k1,7594:9554147,43722036:278106 -k1,7594:10936536,43722036:278107 -k1,7594:12193095,43722036:278106 -k1,7594:14760375,43722036:278107 -k1,7594:16241722,43722036:278106 -k1,7594:19196319,43722036:278107 -k1,7594:21209818,43722036:278106 -k1,7594:24183421,43722036:278107 -(1,7594:24183421,43722036:0,452978,115847 -r1,7597:27355381,43722036:3171960,568825,115847 -k1,7594:24183421,43722036:-3171960 -) -(1,7594:24183421,43722036:3171960,452978,115847 -k1,7594:24183421,43722036:3277 -h1,7594:27352104,43722036:0,411205,112570 -) -k1,7594:27633487,43722036:278106 -k1,7594:28563022,43722036:278107 -k1,7594:29940822,43722036:278106 -(1,7594:29940822,43722036:0,452978,115847 -r1,7597:32409359,43722036:2468537,568825,115847 -k1,7594:29940822,43722036:-2468537 -) -(1,7594:29940822,43722036:2468537,452978,115847 -k1,7594:29940822,43722036:3277 -h1,7594:32406082,43722036:0,411205,112570 -) -k1,7594:32583029,43722036:0 -) -(1,7595:6630773,44563524:25952256,513147,134348 -k1,7594:9607089,44563524:186448 -(1,7594:9607089,44563524:0,452978,115847 -r1,7597:12779049,44563524:3171960,568825,115847 -k1,7594:9607089,44563524:-3171960 -) -(1,7594:9607089,44563524:3171960,452978,115847 -k1,7594:9607089,44563524:3277 -h1,7594:12775772,44563524:0,411205,112570 -) -k1,7594:12965497,44563524:186448 -k1,7594:15266793,44563524:186449 -k1,7594:16472326,44563524:186448 -k1,7594:19612482,44563524:186448 -k1,7594:20458222,44563524:186448 -k1,7594:21663756,44563524:186449 -k1,7594:22843730,44563524:186448 -k1,7594:25235465,44563524:186448 -k1,7594:26108075,44563524:186448 -k1,7594:27082922,44563524:186449 -k1,7594:29510701,44563524:186448 -k1,7594:32583029,44563524:0 -) -(1,7595:6630773,45405012:25952256,513147,134348 -k1,7594:7497541,45405012:180606 -k1,7594:10871061,45405012:180606 -k1,7594:14454297,45405012:180607 -k1,7594:15286331,45405012:180606 -k1,7594:16486022,45405012:180606 -k1,7594:19362124,45405012:180606 -k1,7594:21280746,45405012:180607 -k1,7594:23502798,45405012:180606 -k1,7594:25418797,45405012:180606 -k1,7594:27108042,45405012:180606 -k1,7594:29356965,45405012:180607 -k1,7594:30003532,45405012:180606 -k1,7595:32583029,45405012:0 -) -] -(1,7597:32583029,45706769:0,0,0 -g1,7597:32583029,45706769 -) -) -] -(1,7597:6630773,47279633:25952256,0,0 -h1,7597:6630773,47279633:25952256,0,0 -) -] -(1,7597:4262630,4025873:0,0,0 -[1,7597:-473656,4025873:0,0,0 -(1,7597:-473656,-710413:0,0,0 -(1,7597:-473656,-710413:0,0,0 -g1,7597:-473656,-710413 -) -g1,7597:-473656,-710413 -) -] -) -] -!26379 -}143 -Input:1186:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!104 -{144 -[1,7675:4262630,47279633:28320399,43253760,0 -(1,7675:4262630,4025873:0,0,0 -[1,7675:-473656,4025873:0,0,0 -(1,7675:-473656,-710413:0,0,0 -(1,7675:-473656,-644877:0,0,0 -k1,7675:-473656,-644877:-65536 -) -(1,7675:-473656,4736287:0,0,0 -k1,7675:-473656,4736287:5209943 -) -g1,7675:-473656,-710413 -) -] -) -[1,7675:6630773,47279633:25952256,43253760,0 -[1,7675:6630773,4812305:25952256,786432,0 -(1,7675:6630773,4812305:25952256,513147,126483 -(1,7675:6630773,4812305:25952256,513147,126483 -g1,7675:3078558,4812305 -[1,7675:3078558,4812305:0,0,0 -(1,7675:3078558,2439708:0,1703936,0 -k1,7675:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,7675:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,7675:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,7675:3078558,4812305:0,0,0 -(1,7675:3078558,2439708:0,1703936,0 -g1,7675:29030814,2439708 -g1,7675:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,7675:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,7675:37855564,2439708:1179648,16384,0 -) -) -k1,7675:3078556,2439708:-34777008 -) -] -[1,7675:3078558,4812305:0,0,0 -(1,7675:3078558,49800853:0,16384,2228224 -k1,7675:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,7675:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,7675:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,7675:3078558,4812305:0,0,0 -(1,7675:3078558,49800853:0,16384,2228224 -g1,7675:29030814,49800853 -g1,7675:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,7675:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,7675:37855564,49800853:1179648,16384,0 -) -) -k1,7675:3078556,49800853:-34777008 -) -] -g1,7675:6630773,4812305 -g1,7675:6630773,4812305 -g1,7675:8017514,4812305 -g1,7675:10787065,4812305 -g1,7675:12580785,4812305 -g1,7675:13396052,4812305 -g1,7675:15205501,4812305 -k1,7675:31387652,4812305:16182151 -) -) -] -[1,7675:6630773,45706769:25952256,40108032,0 -(1,7675:6630773,45706769:25952256,40108032,0 -(1,7675:6630773,45706769:0,0,0 -g1,7675:6630773,45706769 -) -[1,7675:6630773,45706769:25952256,40108032,0 -(1,7595:6630773,6254097:25952256,505283,134348 -(1,7594:6630773,6254097:0,452978,115847 -r1,7675:9099310,6254097:2468537,568825,115847 -k1,7594:6630773,6254097:-2468537 -) -(1,7594:6630773,6254097:2468537,452978,115847 -k1,7594:6630773,6254097:3277 -h1,7594:9096033,6254097:0,411205,112570 -) -k1,7594:9306803,6254097:207493 -k1,7594:11915535,6254097:207493 -k1,7594:15074114,6254097:207493 -k1,7594:18684236,6254097:207493 -k1,7594:19616557,6254097:207493 -k1,7594:20692402,6254097:207493 -k1,7594:22430161,6254097:207493 -k1,7594:23289082,6254097:207493 -k1,7594:25851284,6254097:207493 -k1,7594:27077862,6254097:207493 -k1,7594:29353671,6254097:207493 -k1,7594:31966991,6254097:207493 -k1,7595:32583029,6254097:0 -) -(1,7595:6630773,7095585:25952256,452978,115847 -(1,7594:6630773,7095585:0,452978,115847 -r1,7675:9099310,7095585:2468537,568825,115847 -k1,7594:6630773,7095585:-2468537 -) -(1,7594:6630773,7095585:2468537,452978,115847 -k1,7594:6630773,7095585:3277 -h1,7594:9096033,7095585:0,411205,112570 -) -k1,7595:32583028,7095585:23310048 -g1,7595:32583028,7095585 -) -v1,7597:6630773,8076335:0,393216,0 -(1,7632:6630773,25838605:25952256,18155486,196608 -g1,7632:6630773,25838605 -g1,7632:6630773,25838605 -g1,7632:6434165,25838605 -(1,7632:6434165,25838605:0,18155486,196608 -r1,7675:32779637,25838605:26345472,18352094,196608 -k1,7632:6434165,25838605:-26345472 -) -(1,7632:6434165,25838605:26345472,18155486,196608 -[1,7632:6630773,25838605:25952256,17958878,0 -(1,7599:6630773,8290245:25952256,410518,101187 -(1,7598:6630773,8290245:0,0,0 -g1,7598:6630773,8290245 -g1,7598:6630773,8290245 -g1,7598:6303093,8290245 -(1,7598:6303093,8290245:0,0,0 -) -g1,7598:6630773,8290245 -) -g1,7599:9159939,8290245 -g1,7599:10108377,8290245 -g1,7599:14218272,8290245 -g1,7599:14850564,8290245 -g1,7599:16747439,8290245 -g1,7599:17379731,8290245 -g1,7599:18012023,8290245 -g1,7599:19592752,8290245 -g1,7599:20225044,8290245 -g1,7599:23386501,8290245 -g1,7599:24334939,8290245 -h1,7599:25915667,8290245:0,0,0 -k1,7599:32583029,8290245:6667362 -g1,7599:32583029,8290245 -) -(1,7600:6630773,8956423:25952256,404226,76021 -h1,7600:6630773,8956423:0,0,0 -g1,7600:9159939,8956423 -g1,7600:10108377,8956423 -k1,7600:10108377,8956423:0 -h1,7600:12005251,8956423:0,0,0 -k1,7600:32583029,8956423:20577778 -g1,7600:32583029,8956423 -) -(1,7601:6630773,9622601:25952256,404226,107478 -h1,7601:6630773,9622601:0,0,0 -k1,7601:8829401,9622601:301754 -k1,7601:9763446,9622601:301753 -k1,7601:13542803,9622601:301754 -k1,7601:14160702,9622601:301753 -k1,7601:14778602,9622601:301754 -k1,7601:15396502,9622601:301754 -k1,7601:16330547,9622601:301753 -k1,7601:20109903,9622601:301754 -k1,7601:20727802,9622601:301753 -k1,7601:21345702,9622601:301754 -k1,7601:21963602,9622601:301754 -k1,7601:22581501,9622601:301753 -k1,7601:23199401,9622601:301754 -k1,7601:24133446,9622601:301753 -k1,7601:27280511,9622601:301754 -k1,7601:27898411,9622601:301754 -k1,7601:28516310,9622601:301753 -k1,7601:29134210,9622601:301754 -k1,7601:29752109,9622601:301753 -k1,7601:30370009,9622601:301754 -k1,7601:30370009,9622601:0 -h1,7601:32583029,9622601:0,0,0 -k1,7601:32583029,9622601:0 -k1,7601:32583029,9622601:0 -) -(1,7602:6630773,10288779:25952256,410518,76021 -h1,7602:6630773,10288779:0,0,0 -g1,7602:7895356,10288779 -g1,7602:8843793,10288779 -g1,7602:9792230,10288779 -g1,7602:14534415,10288779 -h1,7602:14850561,10288779:0,0,0 -k1,7602:32583029,10288779:17732468 -g1,7602:32583029,10288779 -) -(1,7603:6630773,10954957:25952256,404226,101187 -h1,7603:6630773,10954957:0,0,0 -g1,7603:6946919,10954957 -g1,7603:7263065,10954957 -g1,7603:7579211,10954957 -g1,7603:11689105,10954957 -g1,7603:12637543,10954957 -g1,7603:17695874,10954957 -g1,7603:19276603,10954957 -g1,7603:19908895,10954957 -h1,7603:22438060,10954957:0,0,0 -k1,7603:32583029,10954957:10144969 -g1,7603:32583029,10954957 -) -(1,7604:6630773,11621135:25952256,404226,76021 -h1,7604:6630773,11621135:0,0,0 -g1,7604:6946919,11621135 -g1,7604:7263065,11621135 -g1,7604:7579211,11621135 -h1,7604:7895357,11621135:0,0,0 -k1,7604:32583029,11621135:24687672 -g1,7604:32583029,11621135 -) -(1,7605:6630773,12287313:25952256,404226,82312 -h1,7605:6630773,12287313:0,0,0 -g1,7605:10740667,12287313 -g1,7605:13902124,12287313 -g1,7605:14534416,12287313 -h1,7605:15166708,12287313:0,0,0 -k1,7605:32583028,12287313:17416320 -g1,7605:32583028,12287313 -) -(1,7615:6630773,13019027:25952256,410518,9436 -(1,7607:6630773,13019027:0,0,0 -g1,7607:6630773,13019027 -g1,7607:6630773,13019027 -g1,7607:6303093,13019027 -(1,7607:6303093,13019027:0,0,0 -) -g1,7607:6630773,13019027 -) -g1,7615:7579210,13019027 -g1,7615:9159939,13019027 -g1,7615:10108376,13019027 -h1,7615:10424522,13019027:0,0,0 -k1,7615:32583030,13019027:22158508 -g1,7615:32583030,13019027 -) -(1,7615:6630773,13685205:25952256,410518,31456 -h1,7615:6630773,13685205:0,0,0 -g1,7615:7579210,13685205 -g1,7615:7895356,13685205 -g1,7615:8527648,13685205 -g1,7615:10740668,13685205 -g1,7615:11056814,13685205 -g1,7615:11372960,13685205 -g1,7615:11689106,13685205 -g1,7615:12005252,13685205 -g1,7615:13902126,13685205 -g1,7615:14850563,13685205 -h1,7615:15482854,13685205:0,0,0 -k1,7615:32583030,13685205:17100176 -g1,7615:32583030,13685205 -) -(1,7615:6630773,14351383:25952256,404226,82312 -h1,7615:6630773,14351383:0,0,0 -g1,7615:7579210,14351383 -g1,7615:7895356,14351383 -g1,7615:8211502,14351383 -g1,7615:9476085,14351383 -g1,7615:12005251,14351383 -g1,7615:15166708,14351383 -g1,7615:16431291,14351383 -h1,7615:17695874,14351383:0,0,0 -k1,7615:32583029,14351383:14887155 -g1,7615:32583029,14351383 -) -(1,7615:6630773,15017561:25952256,410518,107478 -h1,7615:6630773,15017561:0,0,0 -g1,7615:7579210,15017561 -g1,7615:7895356,15017561 -g1,7615:8527648,15017561 -g1,7615:13902125,15017561 -g1,7615:14850562,15017561 -h1,7615:15482853,15017561:0,0,0 -k1,7615:32583029,15017561:17100176 -g1,7615:32583029,15017561 -) -(1,7615:6630773,15683739:25952256,404226,82312 -h1,7615:6630773,15683739:0,0,0 -g1,7615:7579210,15683739 -g1,7615:7895356,15683739 -g1,7615:8211502,15683739 -g1,7615:9476085,15683739 -g1,7615:12005251,15683739 -g1,7615:15166708,15683739 -g1,7615:16431291,15683739 -h1,7615:17695874,15683739:0,0,0 -k1,7615:32583029,15683739:14887155 -g1,7615:32583029,15683739 -) -(1,7615:6630773,16349917:25952256,410518,101187 -h1,7615:6630773,16349917:0,0,0 -g1,7615:7579210,16349917 -g1,7615:7895356,16349917 -g1,7615:8527648,16349917 -g1,7615:11689105,16349917 -g1,7615:12005251,16349917 -g1,7615:13902125,16349917 -g1,7615:14850562,16349917 -h1,7615:15482853,16349917:0,0,0 -k1,7615:32583029,16349917:17100176 -g1,7615:32583029,16349917 -) -(1,7615:6630773,17016095:25952256,404226,82312 -h1,7615:6630773,17016095:0,0,0 -g1,7615:7579210,17016095 -g1,7615:7895356,17016095 -g1,7615:8211502,17016095 -g1,7615:9476085,17016095 -g1,7615:12005251,17016095 -g1,7615:15166708,17016095 -g1,7615:16431291,17016095 -h1,7615:17695874,17016095:0,0,0 -k1,7615:32583029,17016095:14887155 -g1,7615:32583029,17016095 -) -(1,7617:6630773,18337633:25952256,404226,82312 -(1,7616:6630773,18337633:0,0,0 -g1,7616:6630773,18337633 -g1,7616:6630773,18337633 -g1,7616:6303093,18337633 -(1,7616:6303093,18337633:0,0,0 -) -g1,7616:6630773,18337633 -) -k1,7617:6630773,18337633:0 -g1,7617:11372959,18337633 -k1,7617:11372959,18337633:0 -h1,7617:16431290,18337633:0,0,0 -k1,7617:32583029,18337633:16151739 -g1,7617:32583029,18337633 -) -(1,7631:6630773,19069347:25952256,410518,101187 -(1,7619:6630773,19069347:0,0,0 -g1,7619:6630773,19069347 -g1,7619:6630773,19069347 -g1,7619:6303093,19069347 -(1,7619:6303093,19069347:0,0,0 -) -g1,7619:6630773,19069347 -) -g1,7631:7579210,19069347 -g1,7631:10424521,19069347 -g1,7631:11372958,19069347 -g1,7631:14218269,19069347 -h1,7631:15798997,19069347:0,0,0 -k1,7631:32583029,19069347:16784032 -g1,7631:32583029,19069347 -) -(1,7631:6630773,19735525:25952256,379060,0 -h1,7631:6630773,19735525:0,0,0 -h1,7631:7263064,19735525:0,0,0 -k1,7631:32583028,19735525:25319964 -g1,7631:32583028,19735525 -) -(1,7631:6630773,20401703:25952256,404226,101187 -h1,7631:6630773,20401703:0,0,0 -g1,7631:7579210,20401703 -g1,7631:9476084,20401703 -g1,7631:10424521,20401703 -g1,7631:11056813,20401703 -g1,7631:11689105,20401703 -h1,7631:12005251,20401703:0,0,0 -k1,7631:32583029,20401703:20577778 -g1,7631:32583029,20401703 -) -(1,7631:6630773,21067881:25952256,404226,101187 -h1,7631:6630773,21067881:0,0,0 -g1,7631:7579210,21067881 -g1,7631:9476084,21067881 -g1,7631:10424521,21067881 -g1,7631:11056813,21067881 -g1,7631:11689105,21067881 -g1,7631:12321397,21067881 -g1,7631:12953689,21067881 -h1,7631:13269835,21067881:0,0,0 -k1,7631:32583029,21067881:19313194 -g1,7631:32583029,21067881 -) -(1,7631:6630773,21734059:25952256,404226,101187 -h1,7631:6630773,21734059:0,0,0 -g1,7631:7579210,21734059 -g1,7631:9476084,21734059 -g1,7631:10424521,21734059 -g1,7631:11056813,21734059 -g1,7631:11689105,21734059 -g1,7631:12321397,21734059 -g1,7631:12953689,21734059 -h1,7631:14850563,21734059:0,0,0 -k1,7631:32583029,21734059:17732466 -g1,7631:32583029,21734059 -) -(1,7631:6630773,22400237:25952256,410518,101187 -h1,7631:6630773,22400237:0,0,0 -g1,7631:7579210,22400237 -g1,7631:7895356,22400237 -g1,7631:8211502,22400237 -g1,7631:10424522,22400237 -g1,7631:10740668,22400237 -g1,7631:11056814,22400237 -g1,7631:11372960,22400237 -g1,7631:11689106,22400237 -g1,7631:12953689,22400237 -g1,7631:13902126,22400237 -g1,7631:15166709,22400237 -g1,7631:16115146,22400237 -g1,7631:17063583,22400237 -g1,7631:17379729,22400237 -g1,7631:17695875,22400237 -g1,7631:18012021,22400237 -g1,7631:18328167,22400237 -g1,7631:18644313,22400237 -g1,7631:19276605,22400237 -g1,7631:19592751,22400237 -g1,7631:19908897,22400237 -g1,7631:20225043,22400237 -k1,7631:20225043,22400237:0 -h1,7631:22121917,22400237:0,0,0 -k1,7631:32583029,22400237:10461112 -g1,7631:32583029,22400237 -) -(1,7631:6630773,23066415:25952256,388497,9436 -h1,7631:6630773,23066415:0,0,0 -g1,7631:7579210,23066415 -g1,7631:8211502,23066415 -g1,7631:8527648,23066415 -g1,7631:8843794,23066415 -g1,7631:9159940,23066415 -g1,7631:9476086,23066415 -g1,7631:9792232,23066415 -g1,7631:10424524,23066415 -h1,7631:12637544,23066415:0,0,0 -k1,7631:32583028,23066415:19945484 -g1,7631:32583028,23066415 -) -(1,7631:6630773,23732593:25952256,388497,9436 -h1,7631:6630773,23732593:0,0,0 -g1,7631:7579210,23732593 -g1,7631:8211502,23732593 -g1,7631:8527648,23732593 -g1,7631:8843794,23732593 -g1,7631:9159940,23732593 -g1,7631:9476086,23732593 -g1,7631:9792232,23732593 -g1,7631:10424524,23732593 -g1,7631:12953690,23732593 -g1,7631:13902127,23732593 -g1,7631:14218273,23732593 -g1,7631:14534419,23732593 -g1,7631:17063585,23732593 -g1,7631:19276605,23732593 -g1,7631:22438062,23732593 -h1,7631:23386499,23732593:0,0,0 -k1,7631:32583029,23732593:9196530 -g1,7631:32583029,23732593 -) -(1,7631:6630773,24398771:25952256,388497,9436 -h1,7631:6630773,24398771:0,0,0 -g1,7631:7579210,24398771 -g1,7631:8211502,24398771 -g1,7631:8527648,24398771 -g1,7631:8843794,24398771 -g1,7631:9159940,24398771 -g1,7631:9476086,24398771 -g1,7631:9792232,24398771 -g1,7631:10424524,24398771 -g1,7631:12953690,24398771 -g1,7631:13269836,24398771 -g1,7631:13902128,24398771 -g1,7631:14218274,24398771 -g1,7631:14534420,24398771 -g1,7631:14850566,24398771 -g1,7631:17063586,24398771 -g1,7631:19276606,24398771 -g1,7631:22438063,24398771 -h1,7631:23386500,24398771:0,0,0 -k1,7631:32583029,24398771:9196529 -g1,7631:32583029,24398771 -) -(1,7631:6630773,25064949:25952256,379060,0 -h1,7631:6630773,25064949:0,0,0 -g1,7631:7579210,25064949 -k1,7631:7579210,25064949:0 -h1,7631:8527648,25064949:0,0,0 -k1,7631:32583028,25064949:24055380 -g1,7631:32583028,25064949 -) -(1,7631:6630773,25731127:25952256,410518,107478 -h1,7631:6630773,25731127:0,0,0 -g1,7631:7579210,25731127 -g1,7631:10108376,25731127 -g1,7631:12321396,25731127 -g1,7631:12637542,25731127 -g1,7631:13269834,25731127 -g1,7631:15166709,25731127 -g1,7631:17063583,25731127 -g1,7631:18644312,25731127 -g1,7631:20225041,25731127 -g1,7631:21489625,25731127 -g1,7631:23070354,25731127 -g1,7631:24334938,25731127 -g1,7631:25599521,25731127 -g1,7631:26231813,25731127 -g1,7631:26864105,25731127 -h1,7631:27180251,25731127:0,0,0 -k1,7631:32583029,25731127:5402778 -g1,7631:32583029,25731127 -) -] -) -g1,7632:32583029,25838605 -g1,7632:6630773,25838605 -g1,7632:6630773,25838605 -g1,7632:32583029,25838605 -g1,7632:32583029,25838605 -) -h1,7632:6630773,26035213:0,0,0 -(1,7636:6630773,27191273:25952256,513147,126483 -h1,7635:6630773,27191273:983040,0,0 -k1,7635:8273293,27191273:181723 -k1,7635:9323368,27191273:181723 -k1,7635:10696536,27191273:181723 -k1,7635:11687629,27191273:181723 -k1,7635:14144762,27191273:181723 -k1,7635:15418970,27191273:181723 -k1,7635:16548344,27191273:181723 -(1,7635:16548344,27191273:0,452978,115847 -r1,7675:19016881,27191273:2468537,568825,115847 -k1,7635:16548344,27191273:-2468537 -) -(1,7635:16548344,27191273:2468537,452978,115847 -k1,7635:16548344,27191273:3277 -h1,7635:19013604,27191273:0,411205,112570 -) -k1,7635:19198604,27191273:181723 -k1,7635:20248679,27191273:181723 -k1,7635:22199219,27191273:181723 -k1,7635:24519382,27191273:181723 -k1,7635:26343437,27191273:181723 -k1,7635:26881020,27191273:181723 -k1,7635:28056269,27191273:181723 -k1,7635:29631943,27191273:181723 -k1,7635:32583029,27191273:0 -) -(1,7636:6630773,28032761:25952256,505283,134348 -g1,7635:9783710,28032761 -g1,7635:10744467,28032761 -g1,7635:12679089,28032761 -g1,7635:16053537,28032761 -k1,7636:32583029,28032761:13616417 -g1,7636:32583029,28032761 -) -v1,7638:6630773,29013511:0,393216,0 -(1,7672:6630773,45510161:25952256,16889866,196608 -g1,7672:6630773,45510161 -g1,7672:6630773,45510161 -g1,7672:6434165,45510161 -(1,7672:6434165,45510161:0,16889866,196608 -r1,7675:32779637,45510161:26345472,17086474,196608 -k1,7672:6434165,45510161:-26345472 -) -(1,7672:6434165,45510161:26345472,16889866,196608 -[1,7672:6630773,45510161:25952256,16693258,0 -(1,7640:6630773,29221129:25952256,404226,76021 -(1,7639:6630773,29221129:0,0,0 -g1,7639:6630773,29221129 -g1,7639:6630773,29221129 -g1,7639:6303093,29221129 -(1,7639:6303093,29221129:0,0,0 -) -g1,7639:6630773,29221129 -) -g1,7640:9159939,29221129 -g1,7640:10108377,29221129 -k1,7640:10108377,29221129:0 -h1,7640:12005251,29221129:0,0,0 -k1,7640:32583029,29221129:20577778 -g1,7640:32583029,29221129 -) -(1,7641:6630773,29887307:25952256,404226,101187 -h1,7641:6630773,29887307:0,0,0 -g1,7641:8843793,29887307 -g1,7641:9792231,29887307 -g1,7641:12005251,29887307 -g1,7641:12637543,29887307 -g1,7641:13585981,29887307 -g1,7641:14218273,29887307 -g1,7641:14850565,29887307 -g1,7641:15482857,29887307 -g1,7641:16115149,29887307 -g1,7641:17063587,29887307 -g1,7641:17695879,29887307 -g1,7641:18328171,29887307 -g1,7641:18960463,29887307 -g1,7641:19592755,29887307 -k1,7641:19592755,29887307:0 -h1,7641:21805775,29887307:0,0,0 -k1,7641:32583029,29887307:10777254 -g1,7641:32583029,29887307 -) -(1,7642:6630773,30553485:25952256,410518,107478 -h1,7642:6630773,30553485:0,0,0 -g1,7642:7895356,30553485 -g1,7642:8843793,30553485 -g1,7642:9792230,30553485 -g1,7642:14534416,30553485 -g1,7642:15166708,30553485 -g1,7642:18012019,30553485 -h1,7642:18328165,30553485:0,0,0 -k1,7642:32583029,30553485:14254864 -g1,7642:32583029,30553485 -) -(1,7643:6630773,31219663:25952256,404226,101187 -h1,7643:6630773,31219663:0,0,0 -g1,7643:6946919,31219663 -g1,7643:7263065,31219663 -g1,7643:7579211,31219663 -g1,7643:11689105,31219663 -g1,7643:12637543,31219663 -g1,7643:17695874,31219663 -g1,7643:19276603,31219663 -g1,7643:19908895,31219663 -h1,7643:22438060,31219663:0,0,0 -k1,7643:32583029,31219663:10144969 -g1,7643:32583029,31219663 -) -(1,7644:6630773,31885841:25952256,404226,76021 -h1,7644:6630773,31885841:0,0,0 -g1,7644:6946919,31885841 -g1,7644:7263065,31885841 -g1,7644:7579211,31885841 -h1,7644:7895357,31885841:0,0,0 -k1,7644:32583029,31885841:24687672 -g1,7644:32583029,31885841 -) -(1,7645:6630773,32552019:25952256,404226,82312 -h1,7645:6630773,32552019:0,0,0 -g1,7645:10740667,32552019 -g1,7645:13902124,32552019 -g1,7645:14534416,32552019 -h1,7645:15166708,32552019:0,0,0 -k1,7645:32583028,32552019:17416320 -g1,7645:32583028,32552019 -) -(1,7655:6630773,33086016:25952256,410518,9436 -(1,7647:6630773,33086016:0,0,0 -g1,7647:6630773,33086016 -g1,7647:6630773,33086016 -g1,7647:6303093,33086016 -(1,7647:6303093,33086016:0,0,0 -) -g1,7647:6630773,33086016 -) -g1,7655:7579210,33086016 -g1,7655:9159939,33086016 -g1,7655:10108376,33086016 -h1,7655:10424522,33086016:0,0,0 -k1,7655:32583030,33086016:22158508 -g1,7655:32583030,33086016 -) -(1,7655:6630773,33752194:25952256,410518,31456 -h1,7655:6630773,33752194:0,0,0 -g1,7655:7579210,33752194 -g1,7655:7895356,33752194 -g1,7655:8527648,33752194 -g1,7655:10424522,33752194 -g1,7655:11372959,33752194 -h1,7655:12005250,33752194:0,0,0 -k1,7655:32583030,33752194:20577780 -g1,7655:32583030,33752194 -) -(1,7655:6630773,34418372:25952256,404226,82312 -h1,7655:6630773,34418372:0,0,0 -g1,7655:7579210,34418372 -g1,7655:7895356,34418372 -g1,7655:8211502,34418372 -g1,7655:9476085,34418372 -g1,7655:12005251,34418372 -g1,7655:15166708,34418372 -g1,7655:16431291,34418372 -h1,7655:17695874,34418372:0,0,0 -k1,7655:32583029,34418372:14887155 -g1,7655:32583029,34418372 -) -(1,7655:6630773,35084550:25952256,410518,31456 -h1,7655:6630773,35084550:0,0,0 -g1,7655:7579210,35084550 -g1,7655:7895356,35084550 -g1,7655:8527648,35084550 -g1,7655:10424522,35084550 -g1,7655:11372959,35084550 -h1,7655:12005250,35084550:0,0,0 -k1,7655:32583030,35084550:20577780 -g1,7655:32583030,35084550 -) -(1,7655:6630773,35750728:25952256,404226,82312 -h1,7655:6630773,35750728:0,0,0 -g1,7655:7579210,35750728 -g1,7655:7895356,35750728 -g1,7655:8211502,35750728 -g1,7655:9476085,35750728 -g1,7655:12005251,35750728 -g1,7655:15166708,35750728 -g1,7655:16431291,35750728 -h1,7655:17695874,35750728:0,0,0 -k1,7655:32583029,35750728:14887155 -g1,7655:32583029,35750728 -) -(1,7655:6630773,36416906:25952256,410518,31456 -h1,7655:6630773,36416906:0,0,0 -g1,7655:7579210,36416906 -g1,7655:7895356,36416906 -g1,7655:8527648,36416906 -g1,7655:10424522,36416906 -g1,7655:11372959,36416906 -h1,7655:12005250,36416906:0,0,0 -k1,7655:32583030,36416906:20577780 -g1,7655:32583030,36416906 -) -(1,7655:6630773,37083084:25952256,404226,82312 -h1,7655:6630773,37083084:0,0,0 -g1,7655:7579210,37083084 -g1,7655:7895356,37083084 -g1,7655:8211502,37083084 -g1,7655:9476085,37083084 -g1,7655:12005251,37083084 -g1,7655:15166708,37083084 -g1,7655:16431291,37083084 -h1,7655:17695874,37083084:0,0,0 -k1,7655:32583029,37083084:14887155 -g1,7655:32583029,37083084 -) -(1,7657:6630773,38206906:25952256,404226,82312 -(1,7656:6630773,38206906:0,0,0 -g1,7656:6630773,38206906 -g1,7656:6630773,38206906 -g1,7656:6303093,38206906 -(1,7656:6303093,38206906:0,0,0 -) -g1,7656:6630773,38206906 -) -k1,7657:6630773,38206906:0 -g1,7657:11372959,38206906 -h1,7657:13902124,38206906:0,0,0 -k1,7657:32583028,38206906:18680904 -g1,7657:32583028,38206906 -) -(1,7671:6630773,38740903:25952256,410518,101187 -(1,7659:6630773,38740903:0,0,0 -g1,7659:6630773,38740903 -g1,7659:6630773,38740903 -g1,7659:6303093,38740903 -(1,7659:6303093,38740903:0,0,0 -) -g1,7659:6630773,38740903 -) -g1,7671:7579210,38740903 -g1,7671:10424521,38740903 -g1,7671:11372958,38740903 -g1,7671:14218269,38740903 -h1,7671:15798997,38740903:0,0,0 -k1,7671:32583029,38740903:16784032 -g1,7671:32583029,38740903 -) -(1,7671:6630773,39407081:25952256,379060,0 -h1,7671:6630773,39407081:0,0,0 -h1,7671:7263064,39407081:0,0,0 -k1,7671:32583028,39407081:25319964 -g1,7671:32583028,39407081 -) -(1,7671:6630773,40073259:25952256,404226,101187 -h1,7671:6630773,40073259:0,0,0 -g1,7671:7579210,40073259 -g1,7671:9476084,40073259 -g1,7671:10424521,40073259 -g1,7671:11056813,40073259 -g1,7671:11689105,40073259 -h1,7671:12005251,40073259:0,0,0 -k1,7671:32583029,40073259:20577778 -g1,7671:32583029,40073259 -) -(1,7671:6630773,40739437:25952256,404226,101187 -h1,7671:6630773,40739437:0,0,0 -g1,7671:7579210,40739437 -g1,7671:9476084,40739437 -g1,7671:10424521,40739437 -g1,7671:11056813,40739437 -g1,7671:11689105,40739437 -g1,7671:12321397,40739437 -g1,7671:12953689,40739437 -h1,7671:13269835,40739437:0,0,0 -k1,7671:32583029,40739437:19313194 -g1,7671:32583029,40739437 -) -(1,7671:6630773,41405615:25952256,404226,101187 -h1,7671:6630773,41405615:0,0,0 -g1,7671:7579210,41405615 -g1,7671:9476084,41405615 -g1,7671:10424521,41405615 -g1,7671:11056813,41405615 -g1,7671:11689105,41405615 -g1,7671:12321397,41405615 -g1,7671:12953689,41405615 -h1,7671:14850563,41405615:0,0,0 -k1,7671:32583029,41405615:17732466 -g1,7671:32583029,41405615 -) -(1,7671:6630773,42071793:25952256,410518,101187 -h1,7671:6630773,42071793:0,0,0 -g1,7671:7579210,42071793 -g1,7671:7895356,42071793 -g1,7671:8211502,42071793 -g1,7671:10424522,42071793 -g1,7671:10740668,42071793 -g1,7671:11056814,42071793 -g1,7671:11372960,42071793 -g1,7671:11689106,42071793 -g1,7671:12953689,42071793 -g1,7671:13902126,42071793 -g1,7671:15166709,42071793 -g1,7671:16115146,42071793 -g1,7671:17063583,42071793 -g1,7671:17379729,42071793 -g1,7671:17695875,42071793 -g1,7671:18012021,42071793 -g1,7671:18328167,42071793 -g1,7671:18644313,42071793 -g1,7671:19276605,42071793 -g1,7671:19592751,42071793 -g1,7671:19908897,42071793 -g1,7671:20225043,42071793 -k1,7671:20225043,42071793:0 -h1,7671:22121917,42071793:0,0,0 -k1,7671:32583029,42071793:10461112 -g1,7671:32583029,42071793 -) -(1,7671:6630773,42737971:25952256,388497,9436 -h1,7671:6630773,42737971:0,0,0 -g1,7671:7579210,42737971 -g1,7671:8211502,42737971 -g1,7671:8527648,42737971 -g1,7671:8843794,42737971 -g1,7671:9159940,42737971 -g1,7671:9476086,42737971 -g1,7671:9792232,42737971 -g1,7671:10424524,42737971 -h1,7671:12637544,42737971:0,0,0 -k1,7671:32583028,42737971:19945484 -g1,7671:32583028,42737971 -) -(1,7671:6630773,43404149:25952256,388497,9436 -h1,7671:6630773,43404149:0,0,0 -g1,7671:7579210,43404149 -g1,7671:8211502,43404149 -g1,7671:8527648,43404149 -g1,7671:8843794,43404149 -g1,7671:9159940,43404149 -g1,7671:9476086,43404149 -g1,7671:9792232,43404149 -g1,7671:10424524,43404149 -g1,7671:12953690,43404149 -g1,7671:13902127,43404149 -g1,7671:14218273,43404149 -g1,7671:14534419,43404149 -g1,7671:17063585,43404149 -g1,7671:19276605,43404149 -g1,7671:22438062,43404149 -h1,7671:23386499,43404149:0,0,0 -k1,7671:32583029,43404149:9196530 -g1,7671:32583029,43404149 -) -(1,7671:6630773,44070327:25952256,388497,9436 -h1,7671:6630773,44070327:0,0,0 -g1,7671:7579210,44070327 -g1,7671:8211502,44070327 -g1,7671:8527648,44070327 -g1,7671:8843794,44070327 -g1,7671:9159940,44070327 -g1,7671:9476086,44070327 -g1,7671:9792232,44070327 -g1,7671:10424524,44070327 -g1,7671:12953690,44070327 -g1,7671:13269836,44070327 -g1,7671:13902128,44070327 -g1,7671:14218274,44070327 -g1,7671:14534420,44070327 -g1,7671:14850566,44070327 -g1,7671:17063586,44070327 -g1,7671:19276606,44070327 -g1,7671:22438063,44070327 -h1,7671:23386500,44070327:0,0,0 -k1,7671:32583029,44070327:9196529 -g1,7671:32583029,44070327 -) -(1,7671:6630773,44736505:25952256,379060,0 -h1,7671:6630773,44736505:0,0,0 -g1,7671:7579210,44736505 -k1,7671:7579210,44736505:0 -h1,7671:8527648,44736505:0,0,0 -k1,7671:32583028,44736505:24055380 -g1,7671:32583028,44736505 -) -(1,7671:6630773,45402683:25952256,410518,107478 -h1,7671:6630773,45402683:0,0,0 -g1,7671:7579210,45402683 -g1,7671:10108376,45402683 -g1,7671:12321396,45402683 -g1,7671:12637542,45402683 -g1,7671:13269834,45402683 -g1,7671:15166709,45402683 -g1,7671:17063583,45402683 -g1,7671:18644312,45402683 -g1,7671:20225041,45402683 -g1,7671:21489625,45402683 -g1,7671:23070354,45402683 -g1,7671:24334938,45402683 -g1,7671:25599521,45402683 -g1,7671:26231813,45402683 -g1,7671:26864105,45402683 -h1,7671:27180251,45402683:0,0,0 -k1,7671:32583029,45402683:5402778 -g1,7671:32583029,45402683 -) -] -) -g1,7672:32583029,45510161 -g1,7672:6630773,45510161 -g1,7672:6630773,45510161 -g1,7672:32583029,45510161 -g1,7672:32583029,45510161 -) -h1,7672:6630773,45706769:0,0,0 -] -(1,7675:32583029,45706769:0,0,0 -g1,7675:32583029,45706769 -) -) -] -(1,7675:6630773,47279633:25952256,0,0 -h1,7675:6630773,47279633:25952256,0,0 -) -] -(1,7675:4262630,4025873:0,0,0 -[1,7675:-473656,4025873:0,0,0 -(1,7675:-473656,-710413:0,0,0 -(1,7675:-473656,-710413:0,0,0 -g1,7675:-473656,-710413 -) -g1,7675:-473656,-710413 -) -] -) -] -!26630 -}144 -!12 -{145 -[1,7682:4262630,47279633:28320399,43253760,0 -(1,7682:4262630,4025873:0,0,0 -[1,7682:-473656,4025873:0,0,0 -(1,7682:-473656,-710413:0,0,0 -(1,7682:-473656,-644877:0,0,0 -k1,7682:-473656,-644877:-65536 -) -(1,7682:-473656,4736287:0,0,0 -k1,7682:-473656,4736287:5209943 -) -g1,7682:-473656,-710413 -) -] -) -[1,7682:6630773,47279633:25952256,43253760,0 -[1,7682:6630773,4812305:25952256,786432,0 -(1,7682:6630773,4812305:25952256,505283,134348 -(1,7682:6630773,4812305:25952256,505283,134348 -g1,7682:3078558,4812305 -[1,7682:3078558,4812305:0,0,0 -(1,7682:3078558,2439708:0,1703936,0 -k1,7682:1358238,2439708:-1720320 -(1,5794:1358238,2439708:1720320,1703936,0 -(1,5794:1358238,2439708:1179648,16384,0 -r1,7682:2537886,2439708:1179648,16384,0 -) -g1,5794:3062174,2439708 -(1,5794:3062174,2439708:16384,1703936,0 -[1,5794:3062174,2439708:25952256,1703936,0 -(1,5794:3062174,1915420:25952256,1179648,0 -(1,5794:3062174,1915420:16384,1179648,0 -r1,7682:3078558,1915420:16384,1179648,0 -) -k1,5794:29014430,1915420:25935872 -g1,5794:29014430,1915420 -) -] -) -) -) -] -[1,7682:3078558,4812305:0,0,0 -(1,7682:3078558,2439708:0,1703936,0 -g1,7682:29030814,2439708 -g1,7682:36135244,2439708 -(1,5794:36135244,2439708:1720320,1703936,0 -(1,5794:36135244,2439708:16384,1703936,0 -[1,5794:36135244,2439708:25952256,1703936,0 -(1,5794:36135244,1915420:25952256,1179648,0 -(1,5794:36135244,1915420:16384,1179648,0 -r1,7682:36151628,1915420:16384,1179648,0 -) -k1,5794:62087500,1915420:25935872 -g1,5794:62087500,1915420 -) -] -) -g1,5794:36675916,2439708 -(1,5794:36675916,2439708:1179648,16384,0 -r1,7682:37855564,2439708:1179648,16384,0 -) -) -k1,7682:3078556,2439708:-34777008 -) -] -[1,7682:3078558,4812305:0,0,0 -(1,7682:3078558,49800853:0,16384,2228224 -k1,7682:1358238,49800853:-1720320 -(1,5794:1358238,49800853:1720320,16384,2228224 -(1,5794:1358238,49800853:1179648,16384,0 -r1,7682:2537886,49800853:1179648,16384,0 -) -g1,5794:3062174,49800853 -(1,5794:3062174,52029077:16384,1703936,0 -[1,5794:3062174,52029077:25952256,1703936,0 -(1,5794:3062174,51504789:25952256,1179648,0 -(1,5794:3062174,51504789:16384,1179648,0 -r1,7682:3078558,51504789:16384,1179648,0 -) -k1,5794:29014430,51504789:25935872 -g1,5794:29014430,51504789 -) -] -) -) -) -] -[1,7682:3078558,4812305:0,0,0 -(1,7682:3078558,49800853:0,16384,2228224 -g1,7682:29030814,49800853 -g1,7682:36135244,49800853 -(1,5794:36135244,49800853:1720320,16384,2228224 -(1,5794:36135244,52029077:16384,1703936,0 -[1,5794:36135244,52029077:25952256,1703936,0 -(1,5794:36135244,51504789:25952256,1179648,0 -(1,5794:36135244,51504789:16384,1179648,0 -r1,7682:36151628,51504789:16384,1179648,0 -) -k1,5794:62087500,51504789:25935872 -g1,5794:62087500,51504789 -) -] -) -g1,5794:36675916,49800853 -(1,5794:36675916,49800853:1179648,16384,0 -r1,7682:37855564,49800853:1179648,16384,0 -) -) -k1,7682:3078556,49800853:-34777008 -) -] -g1,7682:6630773,4812305 -k1,7682:18771974,4812305:10945824 -g1,7682:20158715,4812305 -g1,7682:20807521,4812305 -g1,7682:24121676,4812305 -g1,7682:28605649,4812305 -g1,7682:30015328,4812305 -) -) -] -[1,7682:6630773,45706769:25952256,40108032,0 -(1,7682:6630773,45706769:25952256,40108032,0 -(1,7682:6630773,45706769:0,0,0 -g1,7682:6630773,45706769 -) -[1,7682:6630773,45706769:25952256,40108032,0 -(1,7675:6630773,6254097:25952256,555811,147783 -(1,7675:6630773,6254097:2450326,534184,12975 -g1,7675:6630773,6254097 -g1,7675:9081099,6254097 -) -g1,7675:12021634,6254097 -k1,7675:32583028,6254097:17814780 -g1,7675:32583028,6254097 -) -(1,7677:6630773,7488801:25952256,513147,134348 -k1,7676:7835329,7488801:162534 -k1,7676:10273274,7488801:162535 -k1,7676:13168659,7488801:162534 -k1,7676:14140564,7488801:162535 -k1,7676:15322183,7488801:162534 -k1,7676:17859743,7488801:162535 -k1,7676:18689433,7488801:162534 -k1,7676:19266774,7488801:162498 -k1,7676:22558652,7488801:162534 -k1,7676:23337225,7488801:162535 -k1,7676:24518844,7488801:162534 -k1,7676:27025602,7488801:162535 -k1,7676:29779430,7488801:162534 -k1,7676:30154920,7488801:162498 -k1,7676:32583029,7488801:0 -) -(1,7677:6630773,8330289:25952256,513147,134348 -k1,7676:7798000,8330289:148142 -k1,7676:9858483,8330289:148142 -k1,7676:11194138,8330289:148143 -k1,7676:12372506,8330289:148142 -k1,7676:13136686,8330289:148142 -k1,7676:13734405,8330289:148142 -k1,7676:18446729,8330289:148397 -k1,7676:19084425,8330289:148142 -k1,7676:20754968,8330289:148142 -k1,7676:21519148,8330289:148142 -k1,7676:24697676,8330289:148143 -k1,7676:27627821,8330289:148142 -k1,7676:29907194,8330289:148142 -k1,7676:32583029,8330289:0 -) -(1,7677:6630773,9171777:25952256,505283,95026 -g1,7676:8021447,9171777 -g1,7676:11343467,9171777 -g1,7676:11992273,9171777 -k1,7677:32583028,9171777:17078680 -g1,7677:32583028,9171777 -) -] -(1,7682:32583029,45706769:0,0,0 -g1,7682:32583029,45706769 -) -) -] -(1,7682:6630773,47279633:25952256,0,0 -h1,7682:6630773,47279633:25952256,0,0 -) -] -(1,7682:4262630,4025873:0,0,0 -[1,7682:-473656,4025873:0,0,0 -(1,7682:-473656,-710413:0,0,0 -(1,7682:-473656,-710413:0,0,0 -g1,7682:-473656,-710413 -) -g1,7682:-473656,-710413 -) -] -) -] -!4902 -}145 -Input:1187:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1188:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1189:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1190:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1191:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1192:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1193:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1194:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1195:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1196:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1197:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1198:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1199:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1207 -{146 -[1,7699:4262630,47279633:28320399,43253760,11795 -(1,7699:4262630,4025873:0,0,0 -[1,7699:-473656,4025873:0,0,0 -(1,7699:-473656,-710413:0,0,0 -(1,7699:-473656,-644877:0,0,0 -k1,7699:-473656,-644877:-65536 -) -(1,7699:-473656,4736287:0,0,0 -k1,7699:-473656,4736287:5209943 -) -g1,7699:-473656,-710413 -) -] -) -[1,7699:6630773,47279633:25952256,43253760,11795 -[1,7699:6630773,4812305:25952256,786432,0 -(1,7699:6630773,4812305:25952256,0,0 -(1,7699:6630773,4812305:25952256,0,0 -g1,7699:3078558,4812305 -[1,7699:3078558,4812305:0,0,0 -(1,7699:3078558,2439708:0,1703936,0 -k1,7699:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,7699:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,7699:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,7699:3078558,4812305:0,0,0 -(1,7699:3078558,2439708:0,1703936,0 -g1,7699:29030814,2439708 -g1,7699:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,7699:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,7699:37855564,2439708:1179648,16384,0 -) -) -k1,7699:3078556,2439708:-34777008 -) -] -[1,7699:3078558,4812305:0,0,0 -(1,7699:3078558,49800853:0,16384,2228224 -k1,7699:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,7699:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,7699:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,7699:3078558,4812305:0,0,0 -(1,7699:3078558,49800853:0,16384,2228224 -g1,7699:29030814,49800853 -g1,7699:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,7699:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,7699:37855564,49800853:1179648,16384,0 -) -) -k1,7699:3078556,49800853:-34777008 -) -] -g1,7699:6630773,4812305 -) -) -] -[1,7699:6630773,45706769:25952256,40108032,0 -(1,7699:6630773,45706769:25952256,40108032,0 -(1,7699:6630773,45706769:0,0,0 -g1,7699:6630773,45706769 -) -[1,7699:6630773,45706769:25952256,40108032,0 -[1,7682:6630773,11649578:25952256,6050841,0 -(1,7682:6630773,6619002:25952256,1151337,0 -h1,7682:6630773,6619002:0,0,0 -k1,7682:20096848,6619002:12486181 -k1,7682:32583029,6619002:12486181 -) -(1,7682:6630773,7318938:25952256,32768,229376 -(1,7682:6630773,7318938:0,32768,229376 -(1,7682:6630773,7318938:5505024,32768,229376 -r1,7699:12135797,7318938:5505024,262144,229376 -) -k1,7682:6630773,7318938:-5505024 -) -(1,7682:6630773,7318938:25952256,32768,0 -r1,7699:32583029,7318938:25952256,32768,0 -) -) -(1,7682:6630773,9114634:25952256,909509,241827 -h1,7682:6630773,9114634:0,0,0 -g1,7682:9126908,9114634 -g1,7682:10294760,9114634 -g1,7682:16260240,9114634 -k1,7682:26879431,9114634:5703598 -k1,7682:32583029,9114634:5703598 -) -(1,7682:6630773,9814570:25952256,32768,0 -(1,7682:6630773,9814570:5505024,32768,0 -r1,7699:12135797,9814570:5505024,32768,0 -) -k1,7682:22359413,9814570:10223616 -k1,7682:32583029,9814570:10223616 -) -] -(1,7684:6630773,14542343:25952256,131072,0 -r1,7699:32583029,14542343:25952256,131072,0 -g1,7684:32583029,14542343 -g1,7684:32583029,14542343 -) -(1,7686:6630773,15862244:25952256,513147,134348 -g1,7686:8596853,15862244 -g1,7685:9992769,15862244 -g1,7685:12808851,15862244 -g1,7685:13667372,15862244 -g1,7685:17297411,15862244 -g1,7685:18028137,15862244 -g1,7685:20594526,15862244 -g1,7685:21860026,15862244 -k1,7686:30616949,15862244:5767171 -g1,7686:32583029,15862244 -) -(1,7687:6630773,17490164:25952256,505283,134348 -k1,7687:23887713,17490164:17256940 -h1,7687:23887713,17490164:0,0,0 -g1,7687:26546508,17490164 -g1,7687:27525615,17490164 -g1,7687:30616948,17490164 -g1,7687:32583028,17490164 -) -(1,7688:6630773,18331652:25952256,513147,134348 -k1,7688:13726357,18331652:7095584 -h1,7687:13726357,18331652:0,0,0 -g1,7687:17200420,18331652 -g1,7687:20006016,18331652 -g1,7687:21129303,18331652 -g1,7687:24181314,18331652 -g1,7687:25590993,18331652 -g1,7687:29023113,18331652 -g1,7688:30616949,18331652 -g1,7688:32583029,18331652 -) -(1,7688:6630773,19566356:25952256,131072,0 -r1,7699:32583029,19566356:25952256,131072,0 -g1,7688:32583029,19566356 -g1,7688:34549109,19566356 -) -(1,7690:6630773,22373924:25952256,32768,229376 -(1,7690:6630773,22373924:0,32768,229376 -(1,7690:6630773,22373924:5505024,32768,229376 -r1,7699:12135797,22373924:5505024,262144,229376 -) -k1,7690:6630773,22373924:-5505024 -) -(1,7690:6630773,22373924:25952256,32768,0 -r1,7699:32583029,22373924:25952256,32768,0 -) -) -(1,7690:6630773,23978252:25952256,615776,151780 -(1,7690:6630773,23978252:1974731,575668,0 -g1,7690:6630773,23978252 -g1,7690:8605504,23978252 -) -g1,7690:10904245,23978252 -g1,7690:11961996,23978252 -g1,7690:13695292,23978252 -k1,7690:32583029,23978252:15886712 -g1,7690:32583029,23978252 -) -(1,7693:6630773,25212956:25952256,505283,134348 -k1,7692:8198956,25212956:187339 -k1,7692:10803919,25212956:187340 -k1,7692:12498586,25212956:187339 -k1,7692:13337353,25212956:187339 -k1,7692:14804610,25212956:187339 -k1,7692:16011035,25212956:187340 -k1,7692:18246374,25212956:187339 -k1,7692:19809314,25212956:187339 -k1,7692:20352514,25212956:187340 -k1,7692:22286387,25212956:187339 -k1,7692:26466179,25212956:187339 -k1,7692:27304946,25212956:187339 -k1,7692:30345724,25212956:187340 -k1,7692:31149101,25212956:187339 -k1,7693:32583029,25212956:0 -) -(1,7693:6630773,26054444:25952256,513147,134348 -k1,7692:7464475,26054444:245189 -k1,7692:8395827,26054444:245190 -k1,7692:10295800,26054444:245189 -k1,7692:11532550,26054444:245190 -k1,7692:13529516,26054444:245189 -k1,7692:15358710,26054444:245189 -k1,7692:17160380,26054444:245190 -k1,7692:18214939,26054444:245189 -k1,7692:19479213,26054444:245189 -k1,7692:20816888,26054444:245190 -k1,7692:21729233,26054444:245189 -k1,7692:22389219,26054444:245143 -k1,7692:23582060,26054444:245190 -k1,7692:26589592,26054444:245189 -k1,7692:28594424,26054444:245190 -k1,7692:29498905,26054444:245189 -k1,7692:32583029,26054444:0 -) -(1,7693:6630773,26895932:25952256,513147,134348 -k1,7692:9556956,26895932:225444 -k1,7692:11014476,26895932:225443 -k1,7692:13515330,26895932:225444 -k1,7692:16143324,26895932:225444 -k1,7692:17178137,26895932:225443 -k1,7692:18901734,26895932:225444 -h1,7692:20097111,26895932:0,0,0 -k1,7692:20703319,26895932:225444 -k1,7692:23891645,26895932:225443 -k1,7692:25868866,26895932:225444 -k1,7692:26753602,26895932:225444 -k1,7692:28412973,26895932:225443 -k1,7692:29557232,26895932:225444 -k1,7692:32583029,26895932:0 -) -(1,7693:6630773,27737420:25952256,513147,134348 -k1,7692:7772356,27737420:150023 -k1,7692:10319686,27737420:150023 -k1,7692:11121136,27737420:150022 -k1,7692:12965920,27737420:150023 -k1,7692:16200067,27737420:150023 -k1,7692:20109890,27737420:150023 -k1,7692:21640101,27737420:150023 -k1,7692:22882609,27737420:150023 -k1,7692:23388491,27737420:150022 -k1,7692:26659338,27737420:150023 -k1,7692:29793871,27737420:150023 -k1,7692:30595322,27737420:150023 -k1,7692:32583029,27737420:0 -) -(1,7693:6630773,28578908:25952256,513147,134348 -k1,7692:10838075,28578908:186668 -k1,7692:12216188,28578908:186668 -k1,7692:13350507,28578908:186668 -k1,7692:16538069,28578908:186668 -k1,7692:17743822,28578908:186668 -k1,7692:21139133,28578908:186668 -k1,7692:23336447,28578908:186669 -k1,7692:24807621,28578908:186668 -k1,7692:26098571,28578908:186668 -k1,7692:27033005,28578908:186668 -k1,7692:30718640,28578908:186668 -k1,7692:31261168,28578908:186668 -k1,7692:32583029,28578908:0 -) -(1,7693:6630773,29420396:25952256,513147,134348 -k1,7692:7467408,29420396:177343 -k1,7692:8663836,29420396:177343 -k1,7692:9256001,29420396:177322 -k1,7692:12449311,29420396:177343 -k1,7692:14114977,29420396:177343 -k1,7692:15462794,29420396:177344 -k1,7692:16772599,29420396:177343 -k1,7692:18561472,29420396:177343 -k1,7692:19757900,29420396:177343 -k1,7692:23597396,29420396:177344 -k1,7692:25287965,29420396:177343 -k1,7692:26081346,29420396:177343 -k1,7692:26673511,29420396:177322 -k1,7692:27798505,29420396:177343 -k1,7692:31426974,29420396:177343 -k1,7693:32583029,29420396:0 -) -(1,7693:6630773,30261884:25952256,513147,134348 -k1,7692:8909834,30261884:138000 -k1,7692:12729647,30261884:138000 -k1,7692:16242751,30261884:138000 -k1,7692:21830725,30261884:138000 -k1,7692:24958477,30261884:138000 -k1,7692:28192398,30261884:138000 -k1,7692:30265021,30261884:138000 -k1,7692:32583029,30261884:0 -) -(1,7693:6630773,31103372:25952256,513147,134348 -k1,7692:8044385,31103372:222167 -k1,7692:10884060,31103372:222167 -k1,7692:12172498,31103372:222167 -k1,7692:13916411,31103372:222167 -k1,7692:14797870,31103372:222167 -k1,7692:18931226,31103372:222167 -k1,7692:20106941,31103372:222166 -k1,7692:21461570,31103372:222167 -k1,7692:22776222,31103372:222167 -k1,7692:24811115,31103372:222167 -k1,7692:28687569,31103372:222167 -k1,7692:30770303,31103372:222167 -k1,7692:32583029,31103372:0 -) -(1,7693:6630773,31944860:25952256,505283,134348 -k1,7692:9319570,31944860:197118 -k1,7692:13208985,31944860:197117 -k1,7692:15218829,31944860:197118 -k1,7692:17907626,31944860:197118 -k1,7692:21354673,31944860:197117 -k1,7692:23869799,31944860:197118 -k1,7692:25258362,31944860:197118 -k1,7692:27147619,31944860:197117 -k1,7692:29469414,31944860:197118 -k1,7693:32583029,31944860:0 -) -(1,7693:6630773,32786348:25952256,513147,134348 -k1,7692:7755370,32786348:164495 -k1,7692:10704490,32786348:164495 -k1,7692:11555147,32786348:164495 -k1,7692:14885032,32786348:164496 -k1,7692:15974240,32786348:164495 -k1,7692:17315762,32786348:164495 -k1,7692:18011754,32786348:164495 -k1,7692:20875022,32786348:164495 -k1,7692:22369898,32786348:164495 -k1,7692:23185822,32786348:164496 -k1,7692:25609343,32786348:164495 -k1,7692:28265517,32786348:164495 -k1,7692:31391584,32786348:164495 -k1,7692:32583029,32786348:0 -) -(1,7693:6630773,33627836:25952256,513147,134348 -k1,7692:8208930,33627836:188794 -k1,7692:10084621,33627836:188794 -k1,7692:11464860,33627836:188794 -k1,7692:12984034,33627836:188793 -k1,7692:13824256,33627836:188794 -k1,7692:16044011,33627836:188794 -k1,7692:18995148,33627836:188794 -k1,7692:23111515,33627836:188794 -k1,7692:23959601,33627836:188794 -k1,7692:25167479,33627836:188793 -k1,7692:27646101,33627836:188794 -k1,7692:30613622,33627836:188794 -k1,7692:31563944,33627836:188794 -k1,7692:32583029,33627836:0 -) -(1,7693:6630773,34469324:25952256,513147,134348 -g1,7692:11453567,34469324 -g1,7692:12340269,34469324 -g1,7692:13730943,34469324 -g1,7692:16920580,34469324 -k1,7693:32583029,34469324:12462981 -g1,7693:32583029,34469324 -) -(1,7696:6630773,37276892:25952256,32768,229376 -(1,7696:6630773,37276892:0,32768,229376 -(1,7696:6630773,37276892:5505024,32768,229376 -r1,7699:12135797,37276892:5505024,262144,229376 -) -k1,7696:6630773,37276892:-5505024 -) -(1,7696:6630773,37276892:25952256,32768,0 -r1,7699:32583029,37276892:25952256,32768,0 -) -) -(1,7696:6630773,38881220:25952256,606339,14155 -(1,7696:6630773,38881220:1974731,582746,0 -g1,7696:6630773,38881220 -g1,7696:8605504,38881220 -) -g1,7696:12684727,38881220 -k1,7696:32583029,38881220:15540682 -g1,7696:32583029,38881220 -) -(1,7699:6630773,40115924:25952256,513147,134348 -k1,7698:8683284,40115924:315807 -k1,7698:10018175,40115924:315806 -k1,7698:11925852,40115924:315807 -k1,7698:13979673,40115924:315806 -k1,7698:14954772,40115924:315807 -k1,7698:16289663,40115924:315806 -k1,7698:17020196,40115924:315690 -k1,7698:20178299,40115924:315807 -k1,7698:21110143,40115924:315806 -k1,7698:22815313,40115924:315807 -k1,7698:25685712,40115924:315806 -k1,7698:27192964,40115924:315807 -k1,7698:30535879,40115924:315807 -k1,7698:31266411,40115924:315689 -k1,7699:32583029,40115924:0 -) -(1,7699:6630773,40957412:25952256,513147,134348 -k1,7698:8495808,40957412:208285 -k1,7698:11729890,40957412:208285 -k1,7698:12885827,40957412:208286 -k1,7698:14560808,40957412:208285 -k1,7698:16893770,40957412:208285 -k1,7698:18293500,40957412:208285 -k1,7698:21188106,40957412:208285 -k1,7698:25371805,40957412:208285 -k1,7698:27339077,40957412:208286 -k1,7698:29114983,40957412:208285 -k1,7698:31391584,40957412:208285 -k1,7698:32583029,40957412:0 -) -(1,7699:6630773,41798900:25952256,513147,134348 -k1,7698:9824998,41798900:209715 -k1,7698:10686141,41798900:209715 -k1,7698:12830479,41798900:209715 -k1,7698:14394168,41798900:209715 -k1,7698:17290204,41798900:209715 -k1,7698:19991597,41798900:209714 -k1,7698:22068433,41798900:209715 -k1,7698:23269708,41798900:209715 -k1,7698:26471142,41798900:209715 -k1,7698:27340149,41798900:209715 -k1,7698:30575661,41798900:209715 -k1,7699:32583029,41798900:0 -) -(1,7699:6630773,42640388:25952256,513147,134348 -k1,7698:9495649,42640388:235572 -k1,7698:10750306,42640388:235572 -k1,7698:14457320,42640388:235572 -k1,7698:15352184,42640388:235572 -k1,7698:16606841,42640388:235572 -k1,7698:20147395,42640388:235573 -k1,7698:21896193,42640388:235572 -k1,7698:23521128,42640388:235572 -k1,7698:27264842,42640388:235572 -k1,7698:29238429,42640388:235572 -k1,7698:30156886,42640388:235572 -k1,7698:32583029,42640388:0 -) -(1,7699:6630773,43481876:25952256,505283,115847 -(1,7698:6837867,43481876:0,452978,115847 -r1,7699:8954692,43481876:2116825,568825,115847 -k1,7698:6837867,43481876:-2116825 -) -(1,7698:6837867,43481876:2116825,452978,115847 -k1,7698:6837867,43481876:3277 -h1,7698:8951415,43481876:0,411205,112570 -) -k1,7698:9554390,43481876:218934 -k1,7698:12427531,43481876:218933 -(1,7698:12634625,43481876:0,452978,115847 -r1,7699:14399738,43481876:1765113,568825,115847 -k1,7698:12634625,43481876:-1765113 -) -(1,7698:12634625,43481876:1765113,452978,115847 -k1,7698:12634625,43481876:3277 -h1,7698:14396461,43481876:0,411205,112570 -) -k1,7698:14999436,43481876:218934 -k1,7698:18061977,43481876:218934 -k1,7698:21230685,43481876:218933 -(1,7698:21437779,43481876:0,452978,115847 -r1,7699:22851180,43481876:1413401,568825,115847 -k1,7698:21437779,43481876:-1413401 -) -(1,7698:21437779,43481876:1413401,452978,115847 -k1,7698:21437779,43481876:3277 -h1,7698:22847903,43481876:0,411205,112570 -) -k1,7698:23450878,43481876:218934 -k1,7698:26029763,43481876:218934 -(1,7698:26236857,43481876:0,452978,115847 -r1,7699:29057106,43481876:2820249,568825,115847 -k1,7698:26236857,43481876:-2820249 -) -(1,7698:26236857,43481876:2820249,452978,115847 -k1,7698:26236857,43481876:3277 -h1,7698:29053829,43481876:0,411205,112570 -) -k1,7698:29656803,43481876:218933 -k1,7698:31613752,43481876:218934 -k1,7699:32583029,43481876:0 -) -(1,7699:6630773,44323364:25952256,505283,134348 -k1,7698:8739571,44323364:159757 -k1,7698:11849104,44323364:159758 -(1,7698:12056198,44323364:0,452978,115847 -r1,7699:13821311,44323364:1765113,568825,115847 -k1,7698:12056198,44323364:-1765113 -) -(1,7698:12056198,44323364:1765113,452978,115847 -k1,7698:12056198,44323364:3277 -h1,7698:13818034,44323364:0,411205,112570 -) -k1,7698:14361832,44323364:159757 -k1,7698:16304169,44323364:159758 -(1,7698:16511263,44323364:0,452978,115847 -r1,7699:18628088,44323364:2116825,568825,115847 -k1,7698:16511263,44323364:-2116825 -) -(1,7698:16511263,44323364:2116825,452978,115847 -k1,7698:16511263,44323364:3277 -h1,7698:18624811,44323364:0,411205,112570 -) -k1,7698:19168609,44323364:159757 -k1,7698:22525213,44323364:159758 -(1,7698:22732307,44323364:0,452978,115847 -r1,7699:24497420,44323364:1765113,568825,115847 -k1,7698:22732307,44323364:-1765113 -) -(1,7698:22732307,44323364:1765113,452978,115847 -k1,7698:22732307,44323364:3277 -h1,7698:24494143,44323364:0,411205,112570 -) -k1,7698:25037941,44323364:159757 -k1,7698:28289688,44323364:159758 -(1,7698:28496782,44323364:0,452978,115847 -r1,7699:30261895,44323364:1765113,568825,115847 -k1,7698:28496782,44323364:-1765113 -) -(1,7698:28496782,44323364:1765113,452978,115847 -k1,7698:28496782,44323364:3277 -h1,7698:30258618,44323364:0,411205,112570 -) -k1,7698:30802416,44323364:159757 -k1,7698:32583029,44323364:0 -) -(1,7699:6630773,45164852:25952256,505283,134348 -(1,7698:6837867,45164852:0,452978,122846 -r1,7699:9306404,45164852:2468537,575824,122846 -k1,7698:6837867,45164852:-2468537 -) -(1,7698:6837867,45164852:2468537,452978,122846 -k1,7698:6837867,45164852:3277 -h1,7698:9303127,45164852:0,411205,112570 -) -k1,7698:9993713,45164852:306545 -k1,7698:13231028,45164852:306545 -(1,7698:13438122,45164852:0,452978,115847 -r1,7699:16961794,45164852:3523672,568825,115847 -k1,7698:13438122,45164852:-3523672 -) -(1,7698:13438122,45164852:3523672,452978,115847 -k1,7698:13438122,45164852:3277 -h1,7698:16958517,45164852:0,411205,112570 -) -k1,7698:17649103,45164852:306545 -k1,7698:19968914,45164852:306545 -(1,7698:20176008,45164852:0,452978,122846 -r1,7699:22996257,45164852:2820249,575824,122846 -k1,7698:20176008,45164852:-2820249 -) -(1,7698:20176008,45164852:2820249,452978,122846 -k1,7698:20176008,45164852:3277 -h1,7698:22992980,45164852:0,411205,112570 -) -k1,7698:23683566,45164852:306545 -k1,7698:25181556,45164852:306545 -k1,7698:31004922,45164852:306545 -k1,7699:32583029,45164852:0 -) -] -(1,7699:32583029,45706769:0,0,0 -g1,7699:32583029,45706769 -) -) -] -(1,7699:6630773,47279633:25952256,485622,11795 -(1,7699:6630773,47279633:25952256,485622,11795 -(1,7699:6630773,47279633:0,0,0 -v1,7699:6630773,47279633:0,0,0 -) -g1,7699:6830002,47279633 -k1,7699:31387652,47279633:24557650 -) -) -] -(1,7699:4262630,4025873:0,0,0 -[1,7699:-473656,4025873:0,0,0 -(1,7699:-473656,-710413:0,0,0 -(1,7699:-473656,-710413:0,0,0 -g1,7699:-473656,-710413 -) -g1,7699:-473656,-710413 -) -] -) -] -!17830 -}146 -Input:1200:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1201:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1202:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1203:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1204:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1205:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1206:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1207:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1208:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!840 -{147 -[1,7747:4262630,47279633:28320399,43253760,0 -(1,7747:4262630,4025873:0,0,0 -[1,7747:-473656,4025873:0,0,0 -(1,7747:-473656,-710413:0,0,0 -(1,7747:-473656,-644877:0,0,0 -k1,7747:-473656,-644877:-65536 -) -(1,7747:-473656,4736287:0,0,0 -k1,7747:-473656,4736287:5209943 -) -g1,7747:-473656,-710413 -) -] -) -[1,7747:6630773,47279633:25952256,43253760,0 -[1,7747:6630773,4812305:25952256,786432,0 -(1,7747:6630773,4812305:25952256,505283,134348 -(1,7747:6630773,4812305:25952256,505283,134348 -g1,7747:3078558,4812305 -[1,7747:3078558,4812305:0,0,0 -(1,7747:3078558,2439708:0,1703936,0 -k1,7747:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,7747:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,7747:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,7747:3078558,4812305:0,0,0 -(1,7747:3078558,2439708:0,1703936,0 -g1,7747:29030814,2439708 -g1,7747:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,7747:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,7747:37855564,2439708:1179648,16384,0 -) -) -k1,7747:3078556,2439708:-34777008 -) -] -[1,7747:3078558,4812305:0,0,0 -(1,7747:3078558,49800853:0,16384,2228224 -k1,7747:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,7747:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,7747:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,7747:3078558,4812305:0,0,0 -(1,7747:3078558,49800853:0,16384,2228224 -g1,7747:29030814,49800853 -g1,7747:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,7747:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,7747:37855564,49800853:1179648,16384,0 -) -) -k1,7747:3078556,49800853:-34777008 -) -] -g1,7747:6630773,4812305 -k1,7747:24502442,4812305:16676292 -g1,7747:25889183,4812305 -g1,7747:26537989,4812305 -g1,7747:29852144,4812305 -) -) -] -[1,7747:6630773,45706769:25952256,40108032,0 -(1,7747:6630773,45706769:25952256,40108032,0 -(1,7747:6630773,45706769:0,0,0 -g1,7747:6630773,45706769 -) -[1,7747:6630773,45706769:25952256,40108032,0 -(1,7699:6630773,6254097:25952256,505283,126483 -k1,7698:8983990,6254097:210190 -(1,7698:9191084,6254097:0,452978,115847 -r1,7747:12363044,6254097:3171960,568825,115847 -k1,7698:9191084,6254097:-3171960 -) -(1,7698:9191084,6254097:3171960,452978,115847 -k1,7698:9191084,6254097:3277 -h1,7698:12359767,6254097:0,411205,112570 -) -k1,7698:12953998,6254097:210190 -k1,7698:14062032,6254097:210191 -k1,7698:15968949,6254097:210190 -k1,7698:18963764,6254097:210190 -k1,7698:21221954,6254097:210190 -k1,7698:24052273,6254097:210190 -k1,7698:26570641,6254097:210190 -k1,7698:27972277,6254097:210191 -k1,7698:30915974,6254097:210190 -k1,7698:31812326,6254097:210190 -k1,7698:32583029,6254097:0 -) -(1,7699:6630773,7095585:25952256,513147,134348 -k1,7698:10019791,7095585:143020 -k1,7698:11879853,7095585:143019 -k1,7698:12682165,7095585:143020 -k1,7698:14464240,7095585:143020 -k1,7698:15893075,7095585:143019 -k1,7698:17511310,7095585:143020 -k1,7698:21066790,7095585:143020 -k1,7698:22157461,7095585:143020 -k1,7698:24002450,7095585:143019 -k1,7698:26378282,7095585:143020 -k1,7698:28014868,7095585:143020 -k1,7698:28844049,7095585:143019 -k1,7698:30376432,7095585:143020 -k1,7698:32583029,7095585:0 -) -(1,7699:6630773,7937073:25952256,513147,134348 -k1,7698:7410091,7937073:163280 -k1,7698:8592455,7937073:163279 -k1,7698:10122816,7937073:163280 -k1,7698:10953251,7937073:163279 -(1,7698:10953251,7937073:0,452978,115847 -r1,7747:14125211,7937073:3171960,568825,115847 -k1,7698:10953251,7937073:-3171960 -) -(1,7698:10953251,7937073:3171960,452978,115847 -k1,7698:10953251,7937073:3277 -h1,7698:14121934,7937073:0,411205,112570 -) -k1,7698:14462161,7937073:163280 -k1,7698:16029222,7937073:163280 -k1,7698:16607309,7937073:163244 -k1,7698:19612884,7937073:163279 -k1,7698:21269074,7937073:163280 -k1,7698:22498624,7937073:163279 -k1,7698:24622741,7937073:163280 -k1,7698:25141881,7937073:163280 -k1,7698:28000656,7937073:163279 -k1,7698:29111587,7937073:163280 -k1,7698:32583029,7937073:0 -) -(1,7699:6630773,8778561:25952256,513147,134348 -k1,7698:7521451,8778561:231386 -k1,7698:8771921,8778561:231385 -k1,7698:11846914,8778561:231386 -k1,7698:13685242,8778561:231385 -k1,7698:14575920,8778561:231386 -k1,7698:15826391,8778561:231386 -k1,7698:17969461,8778561:231385 -k1,7698:20336010,8778561:231386 -k1,7698:21592378,8778561:231385 -k1,7698:24102451,8778561:231386 -h1,7698:25645169,8778561:0,0,0 -k1,7698:25876555,8778561:231386 -k1,7698:26917310,8778561:231385 -k1,7698:28646849,8778561:231386 -h1,7698:29842226,8778561:0,0,0 -k1,7698:30073611,8778561:231385 -k1,7698:31252648,8778561:231386 -k1,7698:32583029,8778561:0 -) -(1,7699:6630773,9620049:25952256,513147,126483 -g1,7698:7481430,9620049 -g1,7698:9641496,9620049 -g1,7698:11299556,9620049 -k1,7699:32583029,9620049:19572328 -g1,7699:32583029,9620049 -) -v1,7701:6630773,10810515:0,393216,0 -(1,7717:6630773,19097727:25952256,8680428,196608 -g1,7717:6630773,19097727 -g1,7717:6630773,19097727 -g1,7717:6434165,19097727 -(1,7717:6434165,19097727:0,8680428,196608 -r1,7747:32779637,19097727:26345472,8877036,196608 -k1,7717:6434165,19097727:-26345472 -) -(1,7717:6434165,19097727:26345472,8680428,196608 -[1,7717:6630773,19097727:25952256,8483820,0 -(1,7703:6630773,11002404:25952256,388497,9436 -(1,7702:6630773,11002404:0,0,0 -g1,7702:6630773,11002404 -g1,7702:6630773,11002404 -g1,7702:6303093,11002404 -(1,7702:6303093,11002404:0,0,0 -) -g1,7702:6630773,11002404 -) -g1,7703:7263065,11002404 -g1,7703:8211503,11002404 -h1,7703:9476086,11002404:0,0,0 -k1,7703:32583030,11002404:23106944 -g1,7703:32583030,11002404 -) -(1,7704:6630773,11668582:25952256,404226,76021 -h1,7704:6630773,11668582:0,0,0 -k1,7704:6630773,11668582:0 -h1,7704:8843793,11668582:0,0,0 -k1,7704:32583029,11668582:23739236 -g1,7704:32583029,11668582 -) -(1,7705:6630773,12334760:25952256,404226,76021 -h1,7705:6630773,12334760:0,0,0 -k1,7705:6630773,12334760:0 -h1,7705:8527647,12334760:0,0,0 -k1,7705:32583029,12334760:24055382 -g1,7705:32583029,12334760 -) -(1,7706:6630773,13000938:25952256,404226,76021 -h1,7706:6630773,13000938:0,0,0 -k1,7706:6630773,13000938:0 -h1,7706:8211501,13000938:0,0,0 -k1,7706:32583029,13000938:24371528 -g1,7706:32583029,13000938 -) -(1,7707:6630773,13667116:25952256,404226,76021 -h1,7707:6630773,13667116:0,0,0 -k1,7707:6630773,13667116:0 -h1,7707:9476084,13667116:0,0,0 -k1,7707:32583028,13667116:23106944 -g1,7707:32583028,13667116 -) -(1,7708:6630773,14333294:25952256,404226,76021 -h1,7708:6630773,14333294:0,0,0 -k1,7708:6630773,14333294:0 -h1,7708:8527647,14333294:0,0,0 -k1,7708:32583029,14333294:24055382 -g1,7708:32583029,14333294 -) -(1,7709:6630773,14999472:25952256,404226,76021 -h1,7709:6630773,14999472:0,0,0 -k1,7709:6630773,14999472:0 -h1,7709:8843793,14999472:0,0,0 -k1,7709:32583029,14999472:23739236 -g1,7709:32583029,14999472 -) -(1,7710:6630773,15665650:25952256,404226,76021 -h1,7710:6630773,15665650:0,0,0 -k1,7710:6630773,15665650:0 -h1,7710:8527647,15665650:0,0,0 -k1,7710:32583029,15665650:24055382 -g1,7710:32583029,15665650 -) -(1,7711:6630773,16331828:25952256,404226,76021 -h1,7711:6630773,16331828:0,0,0 -k1,7711:6630773,16331828:0 -h1,7711:8527647,16331828:0,0,0 -k1,7711:32583029,16331828:24055382 -g1,7711:32583029,16331828 -) -(1,7712:6630773,16998006:25952256,404226,107478 -h1,7712:6630773,16998006:0,0,0 -k1,7712:6630773,16998006:0 -h1,7712:9159938,16998006:0,0,0 -k1,7712:32583030,16998006:23423092 -g1,7712:32583030,16998006 -) -(1,7713:6630773,17664184:25952256,404226,101187 -h1,7713:6630773,17664184:0,0,0 -k1,7713:6630773,17664184:0 -h1,7713:10108375,17664184:0,0,0 -k1,7713:32583029,17664184:22474654 -g1,7713:32583029,17664184 -) -(1,7714:6630773,18330362:25952256,404226,107478 -h1,7714:6630773,18330362:0,0,0 -k1,7714:6630773,18330362:0 -h1,7714:9476084,18330362:0,0,0 -k1,7714:32583028,18330362:23106944 -g1,7714:32583028,18330362 -) -(1,7715:6630773,18996540:25952256,404226,101187 -h1,7715:6630773,18996540:0,0,0 -k1,7715:6630773,18996540:0 -h1,7715:9792230,18996540:0,0,0 -k1,7715:32583030,18996540:22790800 -g1,7715:32583030,18996540 -) -] -) -g1,7717:32583029,19097727 -g1,7717:6630773,19097727 -g1,7717:6630773,19097727 -g1,7717:32583029,19097727 -g1,7717:32583029,19097727 -) -h1,7717:6630773,19294335:0,0,0 -v1,7721:6630773,21184399:0,393216,0 -(1,7722:6630773,25153407:25952256,4362224,616038 -g1,7722:6630773,25153407 -(1,7722:6630773,25153407:25952256,4362224,616038 -(1,7722:6630773,25769445:25952256,4978262,0 -[1,7722:6630773,25769445:25952256,4978262,0 -(1,7722:6630773,25743231:25952256,4925834,0 -r1,7747:6656987,25743231:26214,4925834,0 -[1,7722:6656987,25743231:25899828,4925834,0 -(1,7722:6656987,25153407:25899828,3746186,0 -[1,7722:7246811,25153407:24720180,3746186,0 -(1,7722:7246811,22494595:24720180,1087374,126483 -k1,7721:8610149,22494595:153635 -k1,7721:9391619,22494595:153635 -k1,7721:12176524,22494595:153634 -k1,7721:12981587,22494595:153635 -k1,7721:14886999,22494595:153635 -k1,7721:16742604,22494595:153635 -k1,7721:19887958,22494595:153635 -k1,7721:20657631,22494595:153635 -k1,7721:22014506,22494595:153634 -k1,7721:23923851,22494595:153635 -k1,7721:25096571,22494595:153635 -k1,7721:28758348,22494595:153635 -k1,7721:31966991,22494595:0 -) -(1,7722:7246811,23336083:24720180,505283,134348 -k1,7721:8785456,23336083:144694 -k1,7721:9949235,23336083:144694 -k1,7721:11590116,23336083:144694 -k1,7721:12350848,23336083:144694 -k1,7721:13514627,23336083:144694 -k1,7721:16413799,23336083:144694 -k1,7721:18529161,23336083:144694 -k1,7721:19665415,23336083:144694 -k1,7721:20876380,23336083:144694 -k1,7721:23270270,23336083:144694 -k1,7721:24668668,23336083:144694 -k1,7721:26993745,23336083:144694 -k1,7721:28274178,23336083:144694 -k1,7721:30231598,23336083:144694 -k1,7721:31966991,23336083:0 -) -(1,7722:7246811,24177571:24720180,513147,126483 -k1,7721:9441908,24177571:217220 -(1,7721:9441908,24177571:0,414482,115847 -r1,7747:9800174,24177571:358266,530329,115847 -k1,7721:9441908,24177571:-358266 -) -(1,7721:9441908,24177571:358266,414482,115847 -k1,7721:9441908,24177571:3277 -h1,7721:9796897,24177571:0,411205,112570 -) -k1,7721:10017395,24177571:217221 -k1,7721:10920777,24177571:217220 -k1,7721:13519575,24177571:217220 -k1,7721:15765791,24177571:217221 -k1,7721:17174456,24177571:217220 -k1,7721:18825605,24177571:217221 -k1,7721:20385658,24177571:217220 -k1,7721:21996829,24177571:217220 -k1,7721:23916020,24177571:217221 -k1,7721:25329927,24177571:217220 -k1,7721:26230032,24177571:217220 -k1,7721:29075902,24177571:217221 -k1,7721:30682485,24177571:217220 -k1,7721:31966991,24177571:0 -) -(1,7722:7246811,25019059:24720180,513147,134348 -g1,7721:8616513,25019059 -g1,7721:10152676,25019059 -g1,7721:11618061,25019059 -k1,7722:31966991,25019059:16741828 -g1,7722:31966991,25019059 -) -] -) -] -r1,7747:32583029,25743231:26214,4925834,0 -) -] -) -) -g1,7722:32583029,25153407 -) -h1,7722:6630773,25769445:0,0,0 -(1,7725:6630773,27135221:25952256,513147,134348 -h1,7724:6630773,27135221:983040,0,0 -k1,7724:8634572,27135221:260541 -k1,7724:11334363,27135221:260541 -k1,7724:12060865,27135221:260541 -k1,7724:13340491,27135221:260541 -k1,7724:16673360,27135221:260541 -k1,7724:19635951,27135221:260542 -(1,7724:19635951,27135221:0,414482,115847 -r1,7747:20697640,27135221:1061689,530329,115847 -k1,7724:19635951,27135221:-1061689 -) -(1,7724:19635951,27135221:1061689,414482,115847 -k1,7724:19635951,27135221:3277 -h1,7724:20694363,27135221:0,411205,112570 -) -k1,7724:20958181,27135221:260541 -k1,7724:22915449,27135221:260541 -k1,7724:26201787,27135221:260541 -k1,7724:28472973,27135221:260541 -(1,7724:28472973,27135221:0,414482,115847 -r1,7747:29182951,27135221:709978,530329,115847 -k1,7724:28472973,27135221:-709978 -) -(1,7724:28472973,27135221:709978,414482,115847 -k1,7724:28472973,27135221:3277 -h1,7724:29179674,27135221:0,411205,112570 -) -k1,7724:29617162,27135221:260541 -k1,7724:31074390,27135221:260541 -k1,7724:32583029,27135221:0 -) -(1,7725:6630773,27976709:25952256,513147,102891 -k1,7724:9045529,27976709:215368 -k1,7724:10464137,27976709:215367 -k1,7724:11211002,27976709:215368 -k1,7724:12710875,27976709:215367 -k1,7724:13392204,27976709:215368 -k1,7724:14764282,27976709:215368 -k1,7724:16659992,27976709:215367 -k1,7724:18706436,27976709:215368 -k1,7724:19993973,27976709:215368 -k1,7724:20740837,27976709:215367 -k1,7724:24097346,27976709:215368 -k1,7724:25331799,27976709:215368 -k1,7724:26854609,27976709:215367 -k1,7724:28912849,27976709:215368 -k1,7724:29787508,27976709:215367 -k1,7724:31021961,27976709:215368 -k1,7725:32583029,27976709:0 -) -(1,7725:6630773,28818197:25952256,513147,134348 -k1,7724:9570786,28818197:224201 -k1,7724:10326484,28818197:224201 -k1,7724:13518155,28818197:224201 -k1,7724:14974433,28818197:224201 -k1,7724:16696787,28818197:224201 -h1,7724:17493705,28818197:0,0,0 -k1,7724:17717906,28818197:224201 -k1,7724:18889758,28818197:224201 -k1,7724:21231428,28818197:224202 -k1,7724:22264999,28818197:224201 -k1,7724:23508285,28818197:224201 -k1,7724:24967840,28818197:224201 -k1,7724:25859197,28818197:224201 -(1,7724:25859197,28818197:0,414482,115847 -r1,7747:26569175,28818197:709978,530329,115847 -k1,7724:25859197,28818197:-709978 -) -(1,7724:25859197,28818197:709978,414482,115847 -k1,7724:25859197,28818197:3277 -h1,7724:26565898,28818197:0,411205,112570 -) -k1,7724:26793376,28818197:224201 -k1,7724:27633615,28818197:224201 -k1,7724:28653423,28818197:224201 -k1,7724:31812326,28818197:224201 -k1,7724:32583029,28818197:0 -) -(1,7725:6630773,29659685:25952256,513147,126483 -k1,7724:10109403,29659685:251637 -k1,7724:13641773,29659685:251638 -k1,7724:15761186,29659685:251637 -(1,7724:15761186,29659685:0,414482,115847 -r1,7747:17526299,29659685:1765113,530329,115847 -k1,7724:15761186,29659685:-1765113 -) -(1,7724:15761186,29659685:1765113,414482,115847 -k1,7724:15761186,29659685:3277 -h1,7724:17523022,29659685:0,411205,112570 -) -k1,7724:17777937,29659685:251638 -k1,7724:20041529,29659685:251637 -k1,7724:21038311,29659685:251638 -k1,7724:21941376,29659685:251637 -k1,7724:24838047,29659685:251638 -k1,7724:26292925,29659685:251637 -k1,7724:28810143,29659685:251638 -k1,7724:31821501,29659685:251637 -k1,7724:32583029,29659685:0 -) -(1,7725:6630773,30501173:25952256,513147,134348 -g1,7724:10209694,30501173 -g1,7724:11540730,30501173 -(1,7724:11540730,30501173:0,414482,115847 -r1,7747:12250708,30501173:709978,530329,115847 -k1,7724:11540730,30501173:-709978 -) -(1,7724:11540730,30501173:709978,414482,115847 -k1,7724:11540730,30501173:3277 -h1,7724:12247431,30501173:0,411205,112570 -) -g1,7724:12449937,30501173 -g1,7724:13265204,30501173 -g1,7724:14483518,30501173 -g1,7724:16391271,30501173 -g1,7724:17241928,30501173 -g1,7724:18188923,30501173 -g1,7724:21163602,30501173 -g1,7724:22252810,30501173 -g1,7724:25777991,30501173 -g1,7724:28019977,30501173 -k1,7725:32583029,30501173:917940 -g1,7725:32583029,30501173 -) -v1,7727:6630773,31691639:0,393216,0 -(1,7741:6630773,35426422:25952256,4127999,196608 -g1,7741:6630773,35426422 -g1,7741:6630773,35426422 -g1,7741:6434165,35426422 -(1,7741:6434165,35426422:0,4127999,196608 -r1,7747:32779637,35426422:26345472,4324607,196608 -k1,7741:6434165,35426422:-26345472 -) -(1,7741:6434165,35426422:26345472,4127999,196608 -[1,7741:6630773,35426422:25952256,3931391,0 -(1,7729:6630773,31899257:25952256,404226,82312 -(1,7728:6630773,31899257:0,0,0 -g1,7728:6630773,31899257 -g1,7728:6630773,31899257 -g1,7728:6303093,31899257 -(1,7728:6303093,31899257:0,0,0 -) -g1,7728:6630773,31899257 -) -g1,7729:7263065,31899257 -g1,7729:8211503,31899257 -g1,7729:10740670,31899257 -h1,7729:11689107,31899257:0,0,0 -k1,7729:32583029,31899257:20893922 -g1,7729:32583029,31899257 -) -(1,7730:6630773,32565435:25952256,404226,76021 -h1,7730:6630773,32565435:0,0,0 -k1,7730:6630773,32565435:0 -h1,7730:8843793,32565435:0,0,0 -k1,7730:32583029,32565435:23739236 -g1,7730:32583029,32565435 -) -(1,7734:6630773,33297149:25952256,404226,76021 -(1,7732:6630773,33297149:0,0,0 -g1,7732:6630773,33297149 -g1,7732:6630773,33297149 -g1,7732:6303093,33297149 -(1,7732:6303093,33297149:0,0,0 -) -g1,7732:6630773,33297149 -) -g1,7734:7579210,33297149 -g1,7734:8843793,33297149 -h1,7734:9476084,33297149:0,0,0 -k1,7734:32583028,33297149:23106944 -g1,7734:32583028,33297149 -) -(1,7736:6630773,34618687:25952256,404226,82312 -(1,7735:6630773,34618687:0,0,0 -g1,7735:6630773,34618687 -g1,7735:6630773,34618687 -g1,7735:6303093,34618687 -(1,7735:6303093,34618687:0,0,0 -) -g1,7735:6630773,34618687 -) -k1,7736:6630773,34618687:0 -g1,7736:9159939,34618687 -g1,7736:11056813,34618687 -g1,7736:11689105,34618687 -h1,7736:13269834,34618687:0,0,0 -k1,7736:32583030,34618687:19313196 -g1,7736:32583030,34618687 -) -(1,7740:6630773,35350401:25952256,404226,76021 -(1,7738:6630773,35350401:0,0,0 -g1,7738:6630773,35350401 -g1,7738:6630773,35350401 -g1,7738:6303093,35350401 -(1,7738:6303093,35350401:0,0,0 -) -g1,7738:6630773,35350401 -) -g1,7740:7579210,35350401 -g1,7740:8843793,35350401 -h1,7740:10108376,35350401:0,0,0 -k1,7740:32583028,35350401:22474652 -g1,7740:32583028,35350401 -) -] -) -g1,7741:32583029,35426422 -g1,7741:6630773,35426422 -g1,7741:6630773,35426422 -g1,7741:32583029,35426422 -g1,7741:32583029,35426422 -) -h1,7741:6630773,35623030:0,0,0 -(1,7744:6630773,38954886:25952256,32768,229376 -(1,7744:6630773,38954886:0,32768,229376 -(1,7744:6630773,38954886:5505024,32768,229376 -r1,7747:12135797,38954886:5505024,262144,229376 -) -k1,7744:6630773,38954886:-5505024 -) -(1,7744:6630773,38954886:25952256,32768,0 -r1,7747:32583029,38954886:25952256,32768,0 -) -) -(1,7744:6630773,40559214:25952256,606339,14155 -(1,7744:6630773,40559214:1974731,582746,14155 -g1,7744:6630773,40559214 -g1,7744:8605504,40559214 -) -k1,7744:32583029,40559214:18769772 -g1,7744:32583029,40559214 -) -(1,7747:6630773,41793918:25952256,513147,134348 -k1,7746:9590543,41793918:371098 -k1,7746:13743067,41793918:371097 -k1,7746:17313632,41793918:371097 -k1,7746:20285199,41793918:371098 -k1,7746:23682094,41793918:371098 -k1,7746:25244636,41793918:371097 -k1,7746:29011154,41793918:371098 -k1,7746:30041543,41793918:371097 -k1,7747:32583029,41793918:0 -) -(1,7747:6630773,42635406:25952256,513147,134348 -k1,7746:9298418,42635406:173345 -k1,7746:11482407,42635406:173344 -k1,7746:12603403,42635406:173345 -k1,7746:15008249,42635406:173345 -k1,7746:17943936,42635406:173344 -k1,7746:22229010,42635406:173345 -k1,7746:23393914,42635406:173344 -k1,7746:24889120,42635406:173345 -k1,7746:25721757,42635406:173345 -k1,7746:26914186,42635406:173344 -k1,7746:27502348,42635406:173319 -k1,7746:30691660,42635406:173345 -k1,7747:32583029,42635406:0 -) -(1,7747:6630773,43476894:25952256,505283,134348 -k1,7746:7834533,43476894:213511 -(1,7746:7834533,43476894:0,452978,115847 -r1,7747:14523611,43476894:6689078,568825,115847 -k1,7746:7834533,43476894:-6689078 -) -(1,7746:7834533,43476894:6689078,452978,115847 -k1,7746:7834533,43476894:3277 -h1,7746:14520334,43476894:0,411205,112570 -) -k1,7746:14737122,43476894:213511 -k1,7746:15563395,43476894:213511 -k1,7746:16795991,43476894:213511 -k1,7746:17424331,43476894:213497 -k1,7746:20039081,43476894:213511 -k1,7746:21385054,43476894:213511 -k1,7746:23176017,43476894:213511 -k1,7746:23745388,43476894:213511 -k1,7746:25346952,43476894:213511 -k1,7746:27058616,43476894:213511 -k1,7746:30584317,43476894:213511 -k1,7746:31563944,43476894:213511 -k1,7746:32583029,43476894:0 -) -(1,7747:6630773,44318382:25952256,513147,7863 -k1,7746:10976575,44318382:234073 -k1,7746:13994617,44318382:234073 -k1,7746:14844727,44318382:234072 -k1,7746:16512728,44318382:234073 -k1,7746:17335314,44318382:234073 -k1,7746:18197222,44318382:234073 -k1,7746:19979910,44318382:234072 -k1,7746:22529370,44318382:234073 -k1,7746:23631795,44318382:234073 -k1,7746:24958353,44318382:234073 -k1,7746:26211510,44318382:234072 -k1,7746:28801602,44318382:234073 -k1,7746:32583029,44318382:0 -) -(1,7747:6630773,45159870:25952256,513147,134348 -k1,7746:7772301,45159870:193877 -k1,7746:8985263,45159870:193877 -k1,7746:12344529,45159870:193877 -k1,7746:13610576,45159870:193878 -k1,7746:15198404,45159870:193877 -k1,7746:17174860,45159870:193877 -k1,7746:20885399,45159870:193877 -k1,7746:21695314,45159870:193877 -k1,7746:23397830,45159870:193877 -k1,7746:27202742,45159870:193878 -k1,7746:28415704,45159870:193877 -k1,7746:31635378,45159870:193877 -k1,7746:32583029,45159870:0 -) -] -(1,7747:32583029,45706769:0,0,0 -g1,7747:32583029,45706769 -) -) -] -(1,7747:6630773,47279633:25952256,0,0 -h1,7747:6630773,47279633:25952256,0,0 -) -] -(1,7747:4262630,4025873:0,0,0 -[1,7747:-473656,4025873:0,0,0 -(1,7747:-473656,-710413:0,0,0 -(1,7747:-473656,-710413:0,0,0 -g1,7747:-473656,-710413 -) -g1,7747:-473656,-710413 -) -] -) -] -!21144 -}147 -Input:1209:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1210:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1211:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1212:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1213:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!472 -{148 -[1,7789:4262630,47279633:28320399,43253760,0 -(1,7789:4262630,4025873:0,0,0 -[1,7789:-473656,4025873:0,0,0 -(1,7789:-473656,-710413:0,0,0 -(1,7789:-473656,-644877:0,0,0 -k1,7789:-473656,-644877:-65536 -) -(1,7789:-473656,4736287:0,0,0 -k1,7789:-473656,4736287:5209943 -) -g1,7789:-473656,-710413 -) -] -) -[1,7789:6630773,47279633:25952256,43253760,0 -[1,7789:6630773,4812305:25952256,786432,0 -(1,7789:6630773,4812305:25952256,505283,11795 -(1,7789:6630773,4812305:25952256,505283,11795 -g1,7789:3078558,4812305 -[1,7789:3078558,4812305:0,0,0 -(1,7789:3078558,2439708:0,1703936,0 -k1,7789:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,7789:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,7789:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,7789:3078558,4812305:0,0,0 -(1,7789:3078558,2439708:0,1703936,0 -g1,7789:29030814,2439708 -g1,7789:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,7789:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,7789:37855564,2439708:1179648,16384,0 -) -) -k1,7789:3078556,2439708:-34777008 -) -] -[1,7789:3078558,4812305:0,0,0 -(1,7789:3078558,49800853:0,16384,2228224 -k1,7789:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,7789:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,7789:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,7789:3078558,4812305:0,0,0 -(1,7789:3078558,49800853:0,16384,2228224 -g1,7789:29030814,49800853 -g1,7789:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,7789:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,7789:37855564,49800853:1179648,16384,0 -) -) -k1,7789:3078556,49800853:-34777008 -) -] -g1,7789:6630773,4812305 -g1,7789:6630773,4812305 -g1,7789:10836873,4812305 -k1,7789:31387653,4812305:20550780 -) -) -] -[1,7789:6630773,45706769:25952256,40108032,0 -(1,7789:6630773,45706769:25952256,40108032,0 -(1,7789:6630773,45706769:0,0,0 -g1,7789:6630773,45706769 -) -[1,7789:6630773,45706769:25952256,40108032,0 -(1,7747:6630773,6254097:25952256,513147,134348 -k1,7746:8514147,6254097:181404 -k1,7746:12097524,6254097:181403 -k1,7746:16390657,6254097:181404 -k1,7746:18557147,6254097:181404 -k1,7746:19094410,6254097:181403 -k1,7746:22556546,6254097:181404 -k1,7746:25118873,6254097:181404 -k1,7746:27814893,6254097:181404 -k1,7746:29038318,6254097:181403 -k1,7746:30671344,6254097:181404 -k1,7747:32583029,6254097:0 -) -(1,7747:6630773,7095585:25952256,513147,115847 -k1,7746:8893243,7095585:179736 -k1,7746:10092064,7095585:179736 -k1,7746:13034143,7095585:179736 -k1,7746:16239676,7095585:179736 -k1,7746:18791160,7095585:179736 -k1,7746:19989981,7095585:179736 -k1,7746:21823189,7095585:179735 -k1,7746:23937548,7095585:179736 -k1,7746:24733322,7095585:179736 -k1,7746:26421697,7095585:179736 -k1,7746:28843420,7095585:179736 -(1,7746:28843420,7095585:0,414482,115847 -r1,7789:30256821,7095585:1413401,530329,115847 -k1,7746:28843420,7095585:-1413401 -) -(1,7746:28843420,7095585:1413401,414482,115847 -k1,7746:28843420,7095585:3277 -h1,7746:30253544,7095585:0,411205,112570 -) -k1,7746:30436557,7095585:179736 -k1,7746:31563944,7095585:179736 -k1,7746:32583029,7095585:0 -) -(1,7747:6630773,7937073:25952256,513147,115847 -k1,7746:9150322,7937073:240862 -k1,7746:13346282,7937073:240862 -(1,7746:13346282,7937073:0,459977,115847 -r1,7789:14759683,7937073:1413401,575824,115847 -k1,7746:13346282,7937073:-1413401 -) -(1,7746:13346282,7937073:1413401,459977,115847 -k1,7746:13346282,7937073:3277 -h1,7746:14756406,7937073:0,411205,112570 -) -k1,7746:15000546,7937073:240863 -k1,7746:16189059,7937073:240862 -k1,7746:17449006,7937073:240862 -k1,7746:20288371,7937073:240862 -k1,7746:24484331,7937073:240862 -k1,7746:25916638,7937073:240862 -k1,7746:26882329,7937073:240863 -k1,7746:28106231,7937073:240862 -k1,7746:29543780,7937073:240862 -k1,7746:31923737,7937073:240862 -k1,7746:32583029,7937073:0 -) -(1,7747:6630773,8778561:25952256,513147,126483 -k1,7746:7888661,8778561:238803 -k1,7746:9865479,8778561:238803 -k1,7746:12966239,8778561:238803 -k1,7746:14224127,8778561:238803 -k1,7746:15849016,8778561:238803 -k1,7746:16747111,8778561:238803 -k1,7746:18996558,8778561:238802 -k1,7746:22187758,8778561:238803 -k1,7746:23447612,8778561:238803 -k1,7746:24634066,8778561:238803 -k1,7746:27378966,8778561:238803 -k1,7746:28622436,8778561:238803 -k1,7746:29808890,8778561:238803 -k1,7746:32583029,8778561:0 -) -(1,7747:6630773,9620049:25952256,513147,126483 -g1,7746:7718670,9620049 -g1,7746:13367873,9620049 -g1,7746:16556854,9620049 -g1,7746:17947528,9620049 -g1,7746:19167808,9620049 -g1,7746:20314688,9620049 -k1,7747:32583029,9620049:8091076 -g1,7747:32583029,9620049 -) -(1,7748:6630773,11711309:25952256,564462,139132 -(1,7748:6630773,11711309:2450326,534184,12975 -g1,7748:6630773,11711309 -g1,7748:9081099,11711309 -) -g1,7748:12118955,11711309 -g1,7748:14118721,11711309 -k1,7748:32583029,11711309:14360968 -g1,7748:32583029,11711309 -) -(1,7751:6630773,12946013:25952256,513147,126483 -k1,7750:10483124,12946013:272775 -k1,7750:14867629,12946013:272776 -k1,7750:16131964,12946013:272775 -k1,7750:18786317,12946013:272775 -k1,7750:19820621,12946013:272776 -k1,7750:24416806,12946013:272775 -k1,7750:27715378,12946013:272775 -k1,7750:29272660,12946013:272776 -k1,7750:31593435,12946013:272775 -k1,7751:32583029,12946013:0 -) -(1,7751:6630773,13787501:25952256,513147,126483 -k1,7750:9669724,13787501:204519 -k1,7750:11158749,13787501:204519 -k1,7750:13651130,13787501:204519 -k1,7750:14874734,13787501:204519 -k1,7750:16737969,13787501:204519 -k1,7750:18811575,13787501:204519 -k1,7750:20207539,13787501:204519 -k1,7750:23142288,13787501:204519 -k1,7750:23974642,13787501:204519 -k1,7750:25198246,13787501:204519 -k1,7750:26769846,13787501:204519 -k1,7750:27633657,13787501:204519 -k1,7750:28857261,13787501:204519 -k1,7750:31417799,13787501:204519 -k1,7751:32583029,13787501:0 -) -(1,7751:6630773,14628989:25952256,505283,134348 -k1,7750:9830503,14628989:196870 -k1,7750:11724100,14628989:196870 -k1,7750:15532004,14628989:196870 -k1,7750:16720434,14628989:196870 -k1,7750:17936388,14628989:196869 -k1,7750:19904696,14628989:196870 -k1,7750:23584805,14628989:196870 -k1,7750:26338234,14628989:196870 -k1,7750:27726549,14628989:196870 -k1,7750:31043588,14628989:196870 -k1,7751:32583029,14628989:0 -) -(1,7751:6630773,15470477:25952256,513147,134348 -k1,7750:8655785,15470477:194591 -k1,7750:9740356,15470477:194592 -k1,7750:10723345,15470477:194591 -k1,7750:13232668,15470477:194591 -k1,7750:14446345,15470477:194592 -k1,7750:17580226,15470477:194591 -k1,7750:21258056,15470477:194591 -k1,7750:22471732,15470477:194591 -k1,7750:24829667,15470477:194592 -k1,7750:27313431,15470477:194591 -k1,7750:28527107,15470477:194591 -k1,7750:30710061,15470477:194592 -k1,7750:31563944,15470477:194591 -k1,7750:32583029,15470477:0 -) -(1,7751:6630773,16311965:25952256,505283,7863 -k1,7751:32583029,16311965:21997158 -g1,7751:32583029,16311965 -) -(1,7753:6630773,17153453:25952256,513147,134348 -h1,7752:6630773,17153453:983040,0,0 -k1,7752:8641277,17153453:198434 -k1,7752:10863462,17153453:198433 -k1,7752:11417756,17153453:198434 -k1,7752:13489209,17153453:198434 -k1,7752:15375849,17153453:198433 -k1,7752:17141904,17153453:198434 -k1,7752:18359422,17153453:198433 -k1,7752:22339283,17153453:198434 -k1,7752:24279009,17153453:198434 -k1,7752:25345794,17153453:198433 -k1,7752:26981433,17153453:198434 -k1,7752:27535727,17153453:198434 -k1,7752:29712037,17153453:198433 -k1,7752:30569763,17153453:198434 -k1,7752:32583029,17153453:0 -) -(1,7753:6630773,17994941:25952256,513147,134348 -g1,7752:7986712,17994941 -g1,7752:8872103,17994941 -g1,7752:9842035,17994941 -g1,7752:13113592,17994941 -g1,7752:14260472,17994941 -(1,7752:14260472,17994941:0,414482,115847 -r1,7789:14618738,17994941:358266,530329,115847 -k1,7752:14260472,17994941:-358266 -) -(1,7752:14260472,17994941:358266,414482,115847 -k1,7752:14260472,17994941:3277 -h1,7752:14615461,17994941:0,411205,112570 -) -k1,7753:32583028,17994941:17790620 -g1,7753:32583028,17994941 -) -v1,7755:6630773,19185407:0,393216,0 -(1,7762:6630773,20200760:25952256,1408569,196608 -g1,7762:6630773,20200760 -g1,7762:6630773,20200760 -g1,7762:6434165,20200760 -(1,7762:6434165,20200760:0,1408569,196608 -r1,7789:32779637,20200760:26345472,1605177,196608 -k1,7762:6434165,20200760:-26345472 -) -(1,7762:6434165,20200760:26345472,1408569,196608 -[1,7762:6630773,20200760:25952256,1211961,0 -(1,7757:6630773,19393025:25952256,404226,82312 -(1,7756:6630773,19393025:0,0,0 -g1,7756:6630773,19393025 -g1,7756:6630773,19393025 -g1,7756:6303093,19393025 -(1,7756:6303093,19393025:0,0,0 -) -g1,7756:6630773,19393025 -) -k1,7757:6630773,19393025:0 -g1,7757:9159939,19393025 -g1,7757:9792231,19393025 -g1,7757:11372960,19393025 -g1,7757:12953689,19393025 -g1,7757:13585981,19393025 -g1,7757:14534419,19393025 -g1,7757:15482856,19393025 -g1,7757:16115148,19393025 -h1,7757:17379731,19393025:0,0,0 -k1,7757:32583029,19393025:15203298 -g1,7757:32583029,19393025 -) -(1,7761:6630773,20124739:25952256,404226,76021 -(1,7759:6630773,20124739:0,0,0 -g1,7759:6630773,20124739 -g1,7759:6630773,20124739 -g1,7759:6303093,20124739 -(1,7759:6303093,20124739:0,0,0 -) -g1,7759:6630773,20124739 -) -g1,7761:7579210,20124739 -g1,7761:8843793,20124739 -h1,7761:11689104,20124739:0,0,0 -k1,7761:32583028,20124739:20893924 -g1,7761:32583028,20124739 -) -] -) -g1,7762:32583029,20200760 -g1,7762:6630773,20200760 -g1,7762:6630773,20200760 -g1,7762:32583029,20200760 -g1,7762:32583029,20200760 -) -h1,7762:6630773,20397368:0,0,0 -(1,7766:6630773,21763144:25952256,505283,134348 -h1,7765:6630773,21763144:983040,0,0 -k1,7765:8668895,21763144:226052 -k1,7765:10918700,21763144:226053 -k1,7765:13815999,21763144:226052 -k1,7765:16052696,21763144:226052 -k1,7765:17147101,21763144:226053 -k1,7765:18477435,21763144:226052 -k1,7765:20140692,21763144:226052 -k1,7765:20722605,21763144:226053 -k1,7765:22973064,21763144:226052 -k1,7765:25176994,21763144:226053 -k1,7765:26089208,21763144:226052 -k1,7765:27085963,21763144:226052 -k1,7765:30558014,21763144:226053 -k1,7765:31601955,21763144:226052 -k1,7766:32583029,21763144:0 -) -(1,7766:6630773,22604632:25952256,513147,134348 -k1,7765:8853942,22604632:199417 -k1,7765:9409218,22604632:199416 -k1,7765:10997343,22604632:199417 -k1,7765:13174637,22604632:199417 -k1,7765:14033345,22604632:199416 -k1,7765:17048844,22604632:199417 -k1,7765:17779758,22604632:199417 -k1,7765:20636659,22604632:199416 -k1,7765:21704428,22604632:199417 -k1,7765:23181141,22604632:199416 -k1,7765:24399643,22604632:199417 -k1,7765:26441932,22604632:199417 -k1,7765:27300640,22604632:199416 -k1,7765:28519142,22604632:199417 -k1,7765:32583029,22604632:0 -) -(1,7766:6630773,23446120:25952256,505283,134348 -k1,7765:7474142,23446120:157207 -k1,7765:7987209,23446120:157207 -k1,7765:9312923,23446120:157207 -(1,7765:9520017,23446120:0,452978,115847 -r1,7789:13043689,23446120:3523672,568825,115847 -k1,7765:9520017,23446120:-3523672 -) -(1,7765:9520017,23446120:3523672,452978,115847 -g1,7765:11281853,23446120 -g1,7765:11985277,23446120 -h1,7765:13040412,23446120:0,411205,112570 -) -k1,7765:13407989,23446120:157206 -k1,7765:14849702,23446120:157207 -k1,7765:16997893,23446120:157207 -k1,7765:18439606,23446120:157207 -k1,7765:19615898,23446120:157207 -k1,7765:20570023,23446120:157207 -k1,7765:23880167,23446120:157207 -k1,7765:25426736,23446120:157206 -k1,7765:27602452,23446120:157207 -k1,7765:29039577,23446120:157207 -k1,7765:30215869,23446120:157207 -k1,7765:32583029,23446120:0 -) -(1,7766:6630773,24287608:25952256,513147,7863 -g1,7765:7489294,24287608 -g1,7765:8044383,24287608 -g1,7765:11814013,24287608 -k1,7766:32583029,24287608:18854054 -g1,7766:32583029,24287608 -) -v1,7768:6630773,25478074:0,393216,0 -(1,7776:6630773,28457883:25952256,3373025,196608 -g1,7776:6630773,28457883 -g1,7776:6630773,28457883 -g1,7776:6434165,28457883 -(1,7776:6434165,28457883:0,3373025,196608 -r1,7789:32779637,28457883:26345472,3569633,196608 -k1,7776:6434165,28457883:-26345472 -) -(1,7776:6434165,28457883:26345472,3373025,196608 -[1,7776:6630773,28457883:25952256,3176417,0 -(1,7770:6630773,25691984:25952256,410518,107478 -(1,7769:6630773,25691984:0,0,0 -g1,7769:6630773,25691984 -g1,7769:6630773,25691984 -g1,7769:6303093,25691984 -(1,7769:6303093,25691984:0,0,0 -) -g1,7769:6630773,25691984 -) -g1,7770:8211502,25691984 -g1,7770:9159940,25691984 -g1,7770:12005252,25691984 -g1,7770:12637544,25691984 -g1,7770:13902128,25691984 -g1,7770:14850565,25691984 -g1,7770:15482857,25691984 -g1,7770:16431295,25691984 -g1,7770:19908898,25691984 -g1,7770:20541190,25691984 -h1,7770:21489627,25691984:0,0,0 -k1,7770:32583029,25691984:11093402 -g1,7770:32583029,25691984 -) -(1,7771:6630773,26358162:25952256,0,0 -h1,7771:6630773,26358162:0,0,0 -h1,7771:6630773,26358162:0,0,0 -k1,7771:32583029,26358162:25952256 -g1,7771:32583029,26358162 -) -(1,7772:6630773,27024340:25952256,410518,101187 -h1,7772:6630773,27024340:0,0,0 -g1,7772:9159939,27024340 -g1,7772:10108377,27024340 -g1,7772:14218272,27024340 -g1,7772:14850564,27024340 -k1,7772:14850564,27024340:0 -h1,7772:16431293,27024340:0,0,0 -k1,7772:32583029,27024340:16151736 -g1,7772:32583029,27024340 -) -(1,7773:6630773,27690518:25952256,404226,101187 -h1,7773:6630773,27690518:0,0,0 -g1,7773:6946919,27690518 -g1,7773:7263065,27690518 -g1,7773:7579211,27690518 -g1,7773:7895357,27690518 -g1,7773:8211503,27690518 -g1,7773:8527649,27690518 -g1,7773:8843795,27690518 -g1,7773:9159941,27690518 -g1,7773:9476087,27690518 -g1,7773:9792233,27690518 -g1,7773:10108379,27690518 -g1,7773:10424525,27690518 -g1,7773:10740671,27690518 -g1,7773:11056817,27690518 -g1,7773:11372963,27690518 -g1,7773:11689109,27690518 -g1,7773:12005255,27690518 -g1,7773:12321401,27690518 -g1,7773:12637547,27690518 -g1,7773:12953693,27690518 -g1,7773:13269839,27690518 -g1,7773:13585985,27690518 -g1,7773:14218277,27690518 -g1,7773:14850569,27690518 -g1,7773:17379735,27690518 -g1,7773:18012027,27690518 -g1,7773:19908902,27690518 -g1,7773:21489631,27690518 -g1,7773:22121923,27690518 -g1,7773:23070361,27690518 -g1,7773:24018798,27690518 -g1,7773:24651090,27690518 -h1,7773:26231818,27690518:0,0,0 -k1,7773:32583029,27690518:6351211 -g1,7773:32583029,27690518 -) -(1,7774:6630773,28356696:25952256,404226,101187 -h1,7774:6630773,28356696:0,0,0 -g1,7774:9792231,28356696 -g1,7774:11372960,28356696 -g1,7774:12005252,28356696 -g1,7774:14850564,28356696 -g1,7774:16431293,28356696 -g1,7774:17063585,28356696 -h1,7774:18328168,28356696:0,0,0 -k1,7774:32583029,28356696:14254861 -g1,7774:32583029,28356696 -) -] -) -g1,7776:32583029,28457883 -g1,7776:6630773,28457883 -g1,7776:6630773,28457883 -g1,7776:32583029,28457883 -g1,7776:32583029,28457883 -) -h1,7776:6630773,28654491:0,0,0 -(1,7779:6630773,43258299:25952256,14013984,0 -k1,7779:12599879,43258299:5969106 -h1,7778:12599879,43258299:0,0,0 -(1,7778:12599879,43258299:14014044,14013984,0 -(1,7778:12599879,43258299:14014019,14014019,0 -(1,7778:12599879,43258299:14014019,14014019,0 -(1,7778:12599879,43258299:0,14014019,0 -(1,7778:12599879,43258299:0,18945146,0 -(1,7778:12599879,43258299:18945146,18945146,0 -) -k1,7778:12599879,43258299:-18945146 -) -) -g1,7778:26613898,43258299 -) -) -) -g1,7779:26613923,43258299 -k1,7779:32583029,43258299:5969106 -) -] -(1,7789:32583029,45706769:0,0,0 -g1,7789:32583029,45706769 -) -) -] -(1,7789:6630773,47279633:25952256,0,0 -h1,7789:6630773,47279633:25952256,0,0 -) -] -(1,7789:4262630,4025873:0,0,0 -[1,7789:-473656,4025873:0,0,0 -(1,7789:-473656,-710413:0,0,0 -(1,7789:-473656,-710413:0,0,0 -g1,7789:-473656,-710413 -) -g1,7789:-473656,-710413 -) -] -) -] -!16202 -}148 -Input:1214:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1215:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1216:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1217:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!380 -{149 -[1,7858:4262630,47279633:28320399,43253760,0 -(1,7858:4262630,4025873:0,0,0 -[1,7858:-473656,4025873:0,0,0 -(1,7858:-473656,-710413:0,0,0 -(1,7858:-473656,-644877:0,0,0 -k1,7858:-473656,-644877:-65536 -) -(1,7858:-473656,4736287:0,0,0 -k1,7858:-473656,4736287:5209943 -) -g1,7858:-473656,-710413 -) -] -) -[1,7858:6630773,47279633:25952256,43253760,0 -[1,7858:6630773,4812305:25952256,786432,0 -(1,7858:6630773,4812305:25952256,505283,134348 -(1,7858:6630773,4812305:25952256,505283,134348 -g1,7858:3078558,4812305 -[1,7858:3078558,4812305:0,0,0 -(1,7858:3078558,2439708:0,1703936,0 -k1,7858:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,7858:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,7858:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,7858:3078558,4812305:0,0,0 -(1,7858:3078558,2439708:0,1703936,0 -g1,7858:29030814,2439708 -g1,7858:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,7858:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,7858:37855564,2439708:1179648,16384,0 -) -) -k1,7858:3078556,2439708:-34777008 -) -] -[1,7858:3078558,4812305:0,0,0 -(1,7858:3078558,49800853:0,16384,2228224 -k1,7858:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,7858:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,7858:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,7858:3078558,4812305:0,0,0 -(1,7858:3078558,49800853:0,16384,2228224 -g1,7858:29030814,49800853 -g1,7858:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,7858:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,7858:37855564,49800853:1179648,16384,0 -) -) -k1,7858:3078556,49800853:-34777008 -) -] -g1,7858:6630773,4812305 -k1,7858:24502442,4812305:16676292 -g1,7858:25889183,4812305 -g1,7858:26537989,4812305 -g1,7858:29852144,4812305 -) -) -] -[1,7858:6630773,45706769:25952256,40108032,0 -(1,7858:6630773,45706769:25952256,40108032,0 -(1,7858:6630773,45706769:0,0,0 -g1,7858:6630773,45706769 -) -[1,7858:6630773,45706769:25952256,40108032,0 -(1,7785:6630773,6254097:25952256,564462,139132 -(1,7785:6630773,6254097:2450326,534184,12975 -g1,7785:6630773,6254097 -g1,7785:9081099,6254097 -) -g1,7785:13850548,6254097 -g1,7785:15850314,6254097 -g1,7785:20178574,6254097 -g1,7785:21745802,6254097 -k1,7785:32583029,6254097:7500199 -g1,7785:32583029,6254097 -) -(1,7789:6630773,7488801:25952256,513147,138281 -k1,7788:7353080,7488801:244550 -k1,7788:8465982,7488801:244550 -k1,7788:10185747,7488801:244550 -k1,7788:10786157,7488801:244550 -k1,7788:14259666,7488801:244550 -k1,7788:17104685,7488801:244550 -k1,7788:18217588,7488801:244551 -k1,7788:19566420,7488801:244550 -k1,7788:21197712,7488801:244550 -k1,7788:22277846,7488801:244550 -k1,7788:23541481,7488801:244550 -k1,7788:28409596,7488801:244550 -$1,7788:28409596,7488801 -$1,7788:28877523,7488801 -k1,7788:31015408,7488801:244550 -k1,7788:32583029,7488801:0 -) -(1,7789:6630773,8330289:25952256,505283,102891 -k1,7788:7863724,8330289:213866 -k1,7788:10433609,8330289:213866 -k1,7788:14602573,8330289:213866 -k1,7788:16013125,8330289:213865 -k1,7788:17965006,8330289:213866 -k1,7788:19370317,8330289:213866 -k1,7788:22427790,8330289:213866 -k1,7788:25591431,8330289:213866 -k1,7788:27935217,8330289:213866 -k1,7788:28765120,8330289:213865 -k1,7788:30472552,8330289:213866 -k1,7788:31042278,8330289:213866 -k1,7788:32583029,8330289:0 -) -(1,7789:6630773,9171777:25952256,513147,126483 -k1,7788:8163277,9171777:246688 -k1,7788:9157732,9171777:246689 -k1,7788:12613063,9171777:246688 -k1,7788:14427372,9171777:246688 -k1,7788:15693146,9171777:246689 -k1,7788:17593307,9171777:246688 -k1,7788:21911747,9171777:246688 -k1,7788:24044562,9171777:246689 -k1,7788:25310335,9171777:246688 -k1,7788:26796964,9171777:246688 -k1,7788:30689421,9171777:246689 -k1,7788:31563944,9171777:246688 -k1,7788:32583029,9171777:0 -) -(1,7789:6630773,10013265:25952256,513147,126483 -k1,7788:9452836,10013265:160646 -k1,7788:11655585,10013265:160647 -k1,7788:12684583,10013265:160646 -k1,7788:13937714,10013265:160646 -k1,7788:16858737,10013265:160647 -k1,7788:19030028,10013265:160646 -k1,7788:20138325,10013265:160646 -k1,7788:21065087,10013265:160646 -k1,7788:24836768,10013265:160647 -(1,7788:24836768,10013265:0,414482,115847 -r1,7858:25195034,10013265:358266,530329,115847 -k1,7788:24836768,10013265:-358266 -) -(1,7788:24836768,10013265:358266,414482,115847 -k1,7788:24836768,10013265:3277 -h1,7788:25191757,10013265:0,411205,112570 -) -k1,7788:25529350,10013265:160646 -k1,7788:26709081,10013265:160646 -k1,7788:29643867,10013265:160647 -(1,7788:29643867,10013265:0,414482,115847 -r1,7858:31057268,10013265:1413401,530329,115847 -k1,7788:29643867,10013265:-1413401 -) -(1,7788:29643867,10013265:1413401,414482,115847 -k1,7788:29643867,10013265:3277 -h1,7788:31053991,10013265:0,411205,112570 -) -k1,7788:31391584,10013265:160646 -k1,7789:32583029,10013265:0 -) -(1,7789:6630773,10854753:25952256,505283,115847 -(1,7788:6630773,10854753:0,452978,115847 -r1,7858:7340751,10854753:709978,568825,115847 -k1,7788:6630773,10854753:-709978 -) -(1,7788:6630773,10854753:709978,452978,115847 -k1,7788:6630773,10854753:3277 -h1,7788:7337474,10854753:0,411205,112570 -) -g1,7788:7713650,10854753 -g1,7788:8931964,10854753 -g1,7788:11974800,10854753 -g1,7788:15297475,10854753 -k1,7789:32583029,10854753:16136708 -g1,7789:32583029,10854753 -) -v1,7791:6630773,12045219:0,393216,0 -(1,7822:6630773,21273580:25952256,9621577,196608 -g1,7822:6630773,21273580 -g1,7822:6630773,21273580 -g1,7822:6434165,21273580 -(1,7822:6434165,21273580:0,9621577,196608 -r1,7858:32779637,21273580:26345472,9818185,196608 -k1,7822:6434165,21273580:-26345472 -) -(1,7822:6434165,21273580:26345472,9621577,196608 -[1,7822:6630773,21273580:25952256,9424969,0 -(1,7793:6630773,12252837:25952256,404226,101187 -(1,7792:6630773,12252837:0,0,0 -g1,7792:6630773,12252837 -g1,7792:6630773,12252837 -g1,7792:6303093,12252837 -(1,7792:6303093,12252837:0,0,0 -) -g1,7792:6630773,12252837 -) -k1,7793:6630773,12252837:0 -g1,7793:9159939,12252837 -g1,7793:9792231,12252837 -g1,7793:10740669,12252837 -g1,7793:12321398,12252837 -g1,7793:12953690,12252837 -g1,7793:13902128,12252837 -g1,7793:14850565,12252837 -g1,7793:15482857,12252837 -h1,7793:16115149,12252837:0,0,0 -k1,7793:32583029,12252837:16467880 -g1,7793:32583029,12252837 -) -(1,7797:6630773,12984551:25952256,404226,76021 -(1,7795:6630773,12984551:0,0,0 -g1,7795:6630773,12984551 -g1,7795:6630773,12984551 -g1,7795:6303093,12984551 -(1,7795:6303093,12984551:0,0,0 -) -g1,7795:6630773,12984551 -) -g1,7797:7579210,12984551 -g1,7797:8843793,12984551 -h1,7797:11689104,12984551:0,0,0 -k1,7797:32583028,12984551:20893924 -g1,7797:32583028,12984551 -) -(1,7799:6630773,14306089:25952256,404226,101187 -(1,7798:6630773,14306089:0,0,0 -g1,7798:6630773,14306089 -g1,7798:6630773,14306089 -g1,7798:6303093,14306089 -(1,7798:6303093,14306089:0,0,0 -) -g1,7798:6630773,14306089 -) -k1,7799:6630773,14306089:0 -g1,7799:9159939,14306089 -g1,7799:9792231,14306089 -g1,7799:10740669,14306089 -g1,7799:12321398,14306089 -g1,7799:12953690,14306089 -g1,7799:13902128,14306089 -g1,7799:14850565,14306089 -g1,7799:15482857,14306089 -g1,7799:16431295,14306089 -g1,7799:19908898,14306089 -g1,7799:20541190,14306089 -h1,7799:22438064,14306089:0,0,0 -k1,7799:32583029,14306089:10144965 -g1,7799:32583029,14306089 -) -(1,7803:6630773,15037803:25952256,404226,76021 -(1,7801:6630773,15037803:0,0,0 -g1,7801:6630773,15037803 -g1,7801:6630773,15037803 -g1,7801:6303093,15037803 -(1,7801:6303093,15037803:0,0,0 -) -g1,7801:6630773,15037803 -) -g1,7803:7579210,15037803 -g1,7803:8843793,15037803 -k1,7803:8843793,15037803:0 -h1,7803:12637541,15037803:0,0,0 -k1,7803:32583029,15037803:19945488 -g1,7803:32583029,15037803 -) -(1,7805:6630773,16359341:25952256,404226,101187 -(1,7804:6630773,16359341:0,0,0 -g1,7804:6630773,16359341 -g1,7804:6630773,16359341 -g1,7804:6303093,16359341 -(1,7804:6303093,16359341:0,0,0 -) -g1,7804:6630773,16359341 -) -k1,7805:6630773,16359341:0 -g1,7805:9159939,16359341 -g1,7805:9792231,16359341 -g1,7805:10740669,16359341 -g1,7805:12321398,16359341 -g1,7805:12953690,16359341 -g1,7805:13902128,16359341 -g1,7805:14850565,16359341 -g1,7805:15482857,16359341 -g1,7805:16431295,16359341 -g1,7805:19908898,16359341 -g1,7805:20541190,16359341 -h1,7805:22438064,16359341:0,0,0 -k1,7805:32583029,16359341:10144965 -g1,7805:32583029,16359341 -) -(1,7809:6630773,17091055:25952256,404226,76021 -(1,7807:6630773,17091055:0,0,0 -g1,7807:6630773,17091055 -g1,7807:6630773,17091055 -g1,7807:6303093,17091055 -(1,7807:6303093,17091055:0,0,0 -) -g1,7807:6630773,17091055 -) -g1,7809:7579210,17091055 -g1,7809:8843793,17091055 -h1,7809:11689104,17091055:0,0,0 -k1,7809:32583028,17091055:20893924 -g1,7809:32583028,17091055 -) -(1,7811:6630773,18412593:25952256,404226,101187 -(1,7810:6630773,18412593:0,0,0 -g1,7810:6630773,18412593 -g1,7810:6630773,18412593 -g1,7810:6303093,18412593 -(1,7810:6303093,18412593:0,0,0 -) -g1,7810:6630773,18412593 -) -k1,7811:6630773,18412593:0 -g1,7811:9159939,18412593 -g1,7811:9792231,18412593 -g1,7811:11372961,18412593 -g1,7811:12637545,18412593 -g1,7811:14218274,18412593 -g1,7811:14850566,18412593 -g1,7811:15799004,18412593 -g1,7811:16747441,18412593 -g1,7811:17379733,18412593 -g1,7811:18328171,18412593 -g1,7811:21805774,18412593 -g1,7811:22438066,18412593 -h1,7811:24334940,18412593:0,0,0 -k1,7811:32583029,18412593:8248089 -g1,7811:32583029,18412593 -) -(1,7815:6630773,19144307:25952256,404226,76021 -(1,7813:6630773,19144307:0,0,0 -g1,7813:6630773,19144307 -g1,7813:6630773,19144307 -g1,7813:6303093,19144307 -(1,7813:6303093,19144307:0,0,0 -) -g1,7813:6630773,19144307 -) -g1,7815:7579210,19144307 -g1,7815:8843793,19144307 -g1,7815:12953687,19144307 -k1,7815:12953687,19144307:0 -h1,7815:16747435,19144307:0,0,0 -k1,7815:32583029,19144307:15835594 -g1,7815:32583029,19144307 -) -(1,7817:6630773,20465845:25952256,404226,101187 -(1,7816:6630773,20465845:0,0,0 -g1,7816:6630773,20465845 -g1,7816:6630773,20465845 -g1,7816:6303093,20465845 -(1,7816:6303093,20465845:0,0,0 -) -g1,7816:6630773,20465845 -) -k1,7817:6630773,20465845:0 -g1,7817:9159939,20465845 -g1,7817:9792231,20465845 -g1,7817:10740669,20465845 -g1,7817:12321398,20465845 -g1,7817:12953690,20465845 -g1,7817:13902128,20465845 -g1,7817:14850565,20465845 -g1,7817:15482857,20465845 -g1,7817:17063587,20465845 -g1,7817:18328171,20465845 -g1,7817:21805774,20465845 -g1,7817:22438066,20465845 -h1,7817:24334940,20465845:0,0,0 -k1,7817:32583029,20465845:8248089 -g1,7817:32583029,20465845 -) -(1,7821:6630773,21197559:25952256,404226,76021 -(1,7819:6630773,21197559:0,0,0 -g1,7819:6630773,21197559 -g1,7819:6630773,21197559 -g1,7819:6303093,21197559 -(1,7819:6303093,21197559:0,0,0 -) -g1,7819:6630773,21197559 -) -g1,7821:7579210,21197559 -g1,7821:8843793,21197559 -g1,7821:12953687,21197559 -k1,7821:12953687,21197559:0 -h1,7821:16747435,21197559:0,0,0 -k1,7821:32583029,21197559:15835594 -g1,7821:32583029,21197559 -) -] -) -g1,7822:32583029,21273580 -g1,7822:6630773,21273580 -g1,7822:6630773,21273580 -g1,7822:32583029,21273580 -g1,7822:32583029,21273580 -) -h1,7822:6630773,21470188:0,0,0 -v1,7826:6630773,23360252:0,393216,0 -(1,7827:6630773,31484726:25952256,8517690,616038 -g1,7827:6630773,31484726 -(1,7827:6630773,31484726:25952256,8517690,616038 -(1,7827:6630773,32100764:25952256,9133728,0 -[1,7827:6630773,32100764:25952256,9133728,0 -(1,7827:6630773,32074550:25952256,9081300,0 -r1,7858:6656987,32074550:26214,9081300,0 -[1,7827:6656987,32074550:25899828,9081300,0 -(1,7827:6656987,31484726:25899828,7901652,0 -[1,7827:7246811,31484726:24720180,7901652,0 -(1,7827:7246811,24744959:24720180,1161885,196608 -(1,7826:7246811,24744959:0,1161885,196608 -r1,7858:8794447,24744959:1547636,1358493,196608 -k1,7826:7246811,24744959:-1547636 -) -(1,7826:7246811,24744959:1547636,1161885,196608 -) -k1,7826:8988344,24744959:193897 -k1,7826:9810075,24744959:193896 -k1,7826:11525718,24744959:193897 -k1,7826:12378907,24744959:193897 -k1,7826:16483993,24744959:193897 -k1,7826:19651257,24744959:193896 -$1,7826:19651257,24744959 -$1,7826:20076586,24744959 -k1,7826:22494120,24744959:193897 -k1,7826:23879462,24744959:193897 -$1,7826:23879462,24744959 -$1,7826:24199933,24744959 -k1,7826:26617467,24744959:193897 -k1,7826:27802923,24744959:193896 -k1,7826:31205463,24744959:193897 -k1,7826:31966991,24744959:0 -) -(1,7827:7246811,25586447:24720180,513147,134348 -k1,7826:11125723,25586447:251494 -k1,7826:12944839,25586447:251495 -k1,7826:14215418,25586447:251494 -k1,7826:17353118,25586447:251494 -k1,7826:19342628,25586447:251495 -k1,7826:20541773,25586447:251494 -k1,7826:21949977,25586447:251494 -k1,7826:24094152,25586447:251495 -k1,7826:25028531,25586447:251494 -k1,7826:26445255,25586447:251494 -k1,7826:29470889,25586447:251495 -k1,7826:30741468,25586447:251494 -k1,7827:31966991,25586447:0 -) -(1,7827:7246811,26427935:24720180,513147,126483 -k1,7826:9915854,26427935:242245 -k1,7826:11896114,26427935:242245 -k1,7826:14989175,26427935:242245 -k1,7826:15587280,26427935:242245 -k1,7826:20129342,26427935:242245 -k1,7826:23773560,26427935:242244 -k1,7826:25869819,26427935:242245 -k1,7826:27131149,26427935:242245 -k1,7826:29111409,26427935:242245 -k1,7826:30012946,26427935:242245 -k1,7826:30611051,26427935:242245 -k1,7827:31966991,26427935:0 -) -(1,7827:7246811,27269423:24720180,513147,126483 -k1,7826:8656610,27269423:264885 -k1,7826:11953845,27269423:264884 -k1,7826:13731956,27269423:264885 -k1,7826:14683002,27269423:264884 -k1,7826:18100824,27269423:264885 -k1,7826:19048593,27269423:264884 -k1,7826:20332563,27269423:264885 -k1,7826:22335462,27269423:264884 -k1,7826:25808990,27269423:264885 -k1,7826:27461271,27269423:264884 -k1,7826:28492272,27269423:264885 -k1,7826:31966991,27269423:0 -) -(1,7827:7246811,28110911:24720180,513147,134348 -k1,7826:9424408,28110911:291471 -k1,7826:10734965,28110911:291472 -k1,7826:14765920,28110911:291471 -k1,7826:15716683,28110911:291471 -k1,7826:16817524,28110911:291471 -k1,7826:18879779,28110911:291472 -k1,7826:19830542,28110911:291471 -k1,7826:23803826,28110911:291471 -k1,7826:25286742,28110911:291471 -k1,7826:27012142,28110911:291472 -k1,7826:29894907,28110911:291471 -k1,7826:30947906,28110911:291471 -k1,7826:31966991,28110911:0 -) -(1,7827:7246811,28952399:24720180,505283,138281 -k1,7826:10272854,28952399:182436 -k1,7826:13578735,28952399:182435 -k1,7826:18281845,28952399:182436 -k1,7826:19483366,28952399:182436 -$1,7826:19483366,28952399 -$1,7826:19951293,28952399 -k1,7826:22357366,28952399:182436 -k1,7826:27163367,28952399:182436 -k1,7826:27997230,28952399:182435 -k1,7826:29876393,28952399:182436 -k1,7827:31966991,28952399:0 -) -(1,7827:7246811,29793887:24720180,505283,134348 -k1,7826:8630583,29793887:288010 -$1,7826:8630583,29793887 -$1,7826:9055912,29793887 -k1,7826:11567559,29793887:288010 -k1,7826:13047014,29793887:288010 -$1,7826:13047014,29793887 -$1,7826:13367485,29793887 -k1,7826:15879131,29793887:288009 -k1,7826:17697407,29793887:288010 -k1,7826:18636845,29793887:288010 -k1,7826:19672621,29793887:288010 -k1,7826:22115455,29793887:288010 -k1,7826:23239049,29793887:288010 -k1,7826:25262451,29793887:288009 -(1,7826:25262451,29793887:0,435480,115847 -r1,7858:28082700,29793887:2820249,551327,115847 -k1,7826:25262451,29793887:-2820249 -) -(1,7826:25262451,29793887:2820249,435480,115847 -g1,7826:27024287,29793887 -g1,7826:27727711,29793887 -h1,7826:28079423,29793887:0,411205,112570 -) -k1,7826:28370710,29793887:288010 -k1,7826:29850165,29793887:288010 -(1,7826:29850165,29793887:0,452978,115847 -r1,7858:31966991,29793887:2116826,568825,115847 -k1,7826:29850165,29793887:-2116826 -) -(1,7826:29850165,29793887:2116826,452978,115847 -g1,7826:30908578,29793887 -g1,7826:31612002,29793887 -h1,7826:31963714,29793887:0,411205,112570 -) -k1,7826:31966991,29793887:0 -) -(1,7827:7246811,30635375:24720180,513147,134348 -k1,7826:9215095,30635375:270246 -k1,7826:11575285,30635375:270247 -(1,7826:11575285,30635375:0,452978,115847 -r1,7858:14043822,30635375:2468537,568825,115847 -k1,7826:11575285,30635375:-2468537 -) -(1,7826:11575285,30635375:2468537,452978,115847 -k1,7826:11575285,30635375:3277 -h1,7826:14040545,30635375:0,411205,112570 -) -k1,7826:14314068,30635375:270246 -k1,7826:15267199,30635375:270246 -(1,7826:15267199,30635375:0,452978,115847 -r1,7858:16680600,30635375:1413401,568825,115847 -k1,7826:15267199,30635375:-1413401 -) -(1,7826:15267199,30635375:1413401,452978,115847 -k1,7826:15267199,30635375:3277 -h1,7826:16677323,30635375:0,411205,112570 -) -k1,7826:16950847,30635375:270247 -k1,7826:21191264,30635375:270246 -k1,7826:23335840,30635375:270246 -k1,7826:26911067,30635375:270246 -k1,7826:28694540,30635375:270247 -k1,7826:30975431,30635375:270246 -k1,7826:31966991,30635375:0 -) -(1,7827:7246811,31476863:24720180,513147,7863 -g1,7826:8465125,31476863 -k1,7827:31966992,31476863:20732316 -g1,7827:31966992,31476863 -) -] -) -] -r1,7858:32583029,32074550:26214,9081300,0 -) -] -) -) -g1,7827:32583029,31484726 -) -h1,7827:6630773,32100764:0,0,0 -(1,7829:6630773,34192024:25952256,564462,139132 -(1,7829:6630773,34192024:2450326,534184,12975 -g1,7829:6630773,34192024 -g1,7829:9081099,34192024 -) -g1,7829:12765599,34192024 -g1,7829:14765365,34192024 -g1,7829:19093625,34192024 -g1,7829:20660853,34192024 -k1,7829:32583029,34192024:7350253 -g1,7829:32583029,34192024 -) -(1,7833:6630773,35426728:25952256,513147,126483 -k1,7832:7984293,35426728:156833 -k1,7832:10447337,35426728:156832 -k1,7832:14668057,35426728:156833 -k1,7832:16392510,35426728:156832 -k1,7832:17833849,35426728:156833 -k1,7832:18606720,35426728:156833 -k1,7832:19782637,35426728:156832 -k1,7832:22693948,35426728:156833 -k1,7832:25129468,35426728:156833 -k1,7832:25817797,35426728:156832 -k1,7832:26626058,35426728:156833 -k1,7832:28806642,35426728:156832 -k1,7832:29982560,35426728:156833 -k1,7832:32583029,35426728:0 -) -(1,7833:6630773,36268216:25952256,505283,138281 -k1,7832:11441825,36268216:187487 -k1,7832:12280741,36268216:187488 -k1,7832:12824088,36268216:187487 -k1,7832:15149360,36268216:187488 -$1,7832:15149360,36268216 -$1,7832:15617287,36268216 -k1,7832:17871780,36268216:187487 -k1,7832:19933597,36268216:187487 -k1,7832:23051855,36268216:187488 -k1,7832:24230902,36268216:187487 -k1,7832:27723371,36268216:187488 -k1,7832:28562286,36268216:187487 -k1,7832:29768859,36268216:187488 -k1,7832:31966991,36268216:187487 -k1,7832:32583029,36268216:0 -) -(1,7833:6630773,37109704:25952256,513147,134348 -g1,7832:7849087,37109704 -g1,7832:9944273,37109704 -g1,7832:11656728,37109704 -g1,7832:13889539,37109704 -g1,7832:14740196,37109704 -g1,7832:16963832,37109704 -k1,7833:32583029,37109704:11708008 -g1,7833:32583029,37109704 -) -v1,7835:6630773,38300170:0,393216,0 -(1,7854:6630773,43422027:25952256,5515073,196608 -g1,7854:6630773,43422027 -g1,7854:6630773,43422027 -g1,7854:6434165,43422027 -(1,7854:6434165,43422027:0,5515073,196608 -r1,7858:32779637,43422027:26345472,5711681,196608 -k1,7854:6434165,43422027:-26345472 -) -(1,7854:6434165,43422027:26345472,5515073,196608 -[1,7854:6630773,43422027:25952256,5318465,0 -(1,7837:6630773,38507788:25952256,404226,101187 -(1,7836:6630773,38507788:0,0,0 -g1,7836:6630773,38507788 -g1,7836:6630773,38507788 -g1,7836:6303093,38507788 -(1,7836:6303093,38507788:0,0,0 -) -g1,7836:6630773,38507788 -) -k1,7837:6630773,38507788:0 -g1,7837:9159939,38507788 -g1,7837:9792231,38507788 -g1,7837:11689106,38507788 -g1,7837:13269835,38507788 -g1,7837:13902127,38507788 -g1,7837:14850565,38507788 -g1,7837:15799002,38507788 -g1,7837:16431294,38507788 -h1,7837:17063586,38507788:0,0,0 -k1,7837:32583029,38507788:15519443 -g1,7837:32583029,38507788 -) -(1,7841:6630773,39239502:25952256,404226,76021 -(1,7839:6630773,39239502:0,0,0 -g1,7839:6630773,39239502 -g1,7839:6630773,39239502 -g1,7839:6303093,39239502 -(1,7839:6303093,39239502:0,0,0 -) -g1,7839:6630773,39239502 -) -g1,7841:7579210,39239502 -g1,7841:8843793,39239502 -k1,7841:8843793,39239502:0 -h1,7841:11689104,39239502:0,0,0 -k1,7841:32583028,39239502:20893924 -g1,7841:32583028,39239502 -) -(1,7843:6630773,40561040:25952256,404226,101187 -(1,7842:6630773,40561040:0,0,0 -g1,7842:6630773,40561040 -g1,7842:6630773,40561040 -g1,7842:6303093,40561040 -(1,7842:6303093,40561040:0,0,0 -) -g1,7842:6630773,40561040 -) -k1,7843:6630773,40561040:0 -g1,7843:9159939,40561040 -g1,7843:9792231,40561040 -g1,7843:11689106,40561040 -g1,7843:13269835,40561040 -g1,7843:13902127,40561040 -g1,7843:14850565,40561040 -g1,7843:15799002,40561040 -g1,7843:16431294,40561040 -h1,7843:17063586,40561040:0,0,0 -k1,7843:32583029,40561040:15519443 -g1,7843:32583029,40561040 -) -(1,7847:6630773,41292754:25952256,404226,76021 -(1,7845:6630773,41292754:0,0,0 -g1,7845:6630773,41292754 -g1,7845:6630773,41292754 -g1,7845:6303093,41292754 -(1,7845:6303093,41292754:0,0,0 -) -g1,7845:6630773,41292754 -) -g1,7847:7579210,41292754 -g1,7847:8843793,41292754 -k1,7847:8843793,41292754:0 -h1,7847:11689104,41292754:0,0,0 -k1,7847:32583028,41292754:20893924 -g1,7847:32583028,41292754 -) -(1,7849:6630773,42614292:25952256,404226,101187 -(1,7848:6630773,42614292:0,0,0 -g1,7848:6630773,42614292 -g1,7848:6630773,42614292 -g1,7848:6303093,42614292 -(1,7848:6303093,42614292:0,0,0 -) -g1,7848:6630773,42614292 -) -k1,7849:6630773,42614292:0 -g1,7849:9159939,42614292 -g1,7849:9792231,42614292 -g1,7849:11689106,42614292 -g1,7849:13269835,42614292 -g1,7849:13902127,42614292 -g1,7849:14850565,42614292 -g1,7849:15799002,42614292 -g1,7849:16431294,42614292 -g1,7849:17379732,42614292 -g1,7849:20857335,42614292 -g1,7849:21489627,42614292 -h1,7849:23386501,42614292:0,0,0 -k1,7849:32583029,42614292:9196528 -g1,7849:32583029,42614292 -) -(1,7853:6630773,43346006:25952256,404226,76021 -(1,7851:6630773,43346006:0,0,0 -g1,7851:6630773,43346006 -g1,7851:6630773,43346006 -g1,7851:6303093,43346006 -(1,7851:6303093,43346006:0,0,0 -) -g1,7851:6630773,43346006 -) -g1,7853:7579210,43346006 -g1,7853:8843793,43346006 -h1,7853:11372958,43346006:0,0,0 -k1,7853:32583030,43346006:21210072 -g1,7853:32583030,43346006 -) -] -) -g1,7854:32583029,43422027 -g1,7854:6630773,43422027 -g1,7854:6630773,43422027 -g1,7854:32583029,43422027 -g1,7854:32583029,43422027 -) -h1,7854:6630773,43618635:0,0,0 -] -(1,7858:32583029,45706769:0,0,0 -g1,7858:32583029,45706769 -) -) -] -(1,7858:6630773,47279633:25952256,0,0 -h1,7858:6630773,47279633:25952256,0,0 -) -] -(1,7858:4262630,4025873:0,0,0 -[1,7858:-473656,4025873:0,0,0 -(1,7858:-473656,-710413:0,0,0 -(1,7858:-473656,-710413:0,0,0 -g1,7858:-473656,-710413 -) -g1,7858:-473656,-710413 -) -] -) -] -!22856 -}149 -Input:1218:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1219:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1220:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!288 -{150 -[1,7922:4262630,47279633:28320399,43253760,0 -(1,7922:4262630,4025873:0,0,0 -[1,7922:-473656,4025873:0,0,0 -(1,7922:-473656,-710413:0,0,0 -(1,7922:-473656,-644877:0,0,0 -k1,7922:-473656,-644877:-65536 -) -(1,7922:-473656,4736287:0,0,0 -k1,7922:-473656,4736287:5209943 -) -g1,7922:-473656,-710413 -) -] -) -[1,7922:6630773,47279633:25952256,43253760,0 -[1,7922:6630773,4812305:25952256,786432,0 -(1,7922:6630773,4812305:25952256,505283,11795 -(1,7922:6630773,4812305:25952256,505283,11795 -g1,7922:3078558,4812305 -[1,7922:3078558,4812305:0,0,0 -(1,7922:3078558,2439708:0,1703936,0 -k1,7922:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,7922:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,7922:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,7922:3078558,4812305:0,0,0 -(1,7922:3078558,2439708:0,1703936,0 -g1,7922:29030814,2439708 -g1,7922:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,7922:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,7922:37855564,2439708:1179648,16384,0 -) -) -k1,7922:3078556,2439708:-34777008 -) -] -[1,7922:3078558,4812305:0,0,0 -(1,7922:3078558,49800853:0,16384,2228224 -k1,7922:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,7922:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,7922:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,7922:3078558,4812305:0,0,0 -(1,7922:3078558,49800853:0,16384,2228224 -g1,7922:29030814,49800853 -g1,7922:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,7922:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,7922:37855564,49800853:1179648,16384,0 -) -) -k1,7922:3078556,49800853:-34777008 -) -] -g1,7922:6630773,4812305 -g1,7922:6630773,4812305 -g1,7922:10836873,4812305 -k1,7922:31387653,4812305:20550780 -) -) -] -[1,7922:6630773,45706769:25952256,40108032,0 -(1,7922:6630773,45706769:25952256,40108032,0 -(1,7922:6630773,45706769:0,0,0 -g1,7922:6630773,45706769 -) -[1,7922:6630773,45706769:25952256,40108032,0 -v1,7858:6630773,6254097:0,393216,0 -(1,7892:6630773,25566993:25952256,19706112,616038 -g1,7892:6630773,25566993 -(1,7892:6630773,25566993:25952256,19706112,616038 -(1,7892:6630773,26183031:25952256,20322150,0 -[1,7892:6630773,26183031:25952256,20322150,0 -(1,7892:6630773,26156817:25952256,20269722,0 -r1,7922:6656987,26156817:26214,20269722,0 -[1,7892:6656987,26156817:25899828,20269722,0 -(1,7892:6656987,25566993:25899828,19090074,0 -[1,7892:7246811,25566993:24720180,19090074,0 -(1,7859:7246811,7562455:24720180,1085536,298548 -(1,7858:7246811,7562455:0,1085536,298548 -r1,7922:8753226,7562455:1506415,1384084,298548 -k1,7858:7246811,7562455:-1506415 -) -(1,7858:7246811,7562455:1506415,1085536,298548 -) -k1,7858:9036488,7562455:283262 -k1,7858:12025732,7562455:283262 -k1,7858:15334792,7562455:283263 -k1,7858:16764279,7562455:283262 -(1,7858:16764279,7562455:0,452978,115847 -r1,7922:19232816,7562455:2468537,568825,115847 -k1,7858:16764279,7562455:-2468537 -) -(1,7858:16764279,7562455:2468537,452978,115847 -k1,7858:16764279,7562455:3277 -h1,7858:19229539,7562455:0,411205,112570 -) -k1,7858:19516078,7562455:283262 -k1,7858:20990785,7562455:283262 -k1,7858:24759908,7562455:283263 -k1,7858:28068967,7562455:283262 -k1,7858:29498454,7562455:283262 -(1,7858:29498454,7562455:0,452978,115847 -r1,7922:31966991,7562455:2468537,568825,115847 -k1,7858:29498454,7562455:-2468537 -) -(1,7858:29498454,7562455:2468537,452978,115847 -k1,7858:29498454,7562455:3277 -h1,7858:31963714,7562455:0,411205,112570 -) -k1,7858:31966991,7562455:0 -) -(1,7859:7246811,8403943:24720180,513147,134348 -k1,7858:9551002,8403943:174926 -k1,7858:10541197,8403943:174927 -k1,7858:15110312,8403943:174926 -k1,7858:17139908,8403943:174927 -k1,7858:18124204,8403943:174926 -k1,7858:18654990,8403943:174926 -k1,7858:20702936,8403943:174927 -k1,7858:21896947,8403943:174926 -k1,7858:22731166,8403943:174927 -k1,7858:23925177,8403943:174926 -k1,7858:28055202,8403943:174927 -k1,7858:29696824,8403943:174926 -k1,7858:31966991,8403943:0 -) -(1,7859:7246811,9245431:24720180,513147,126483 -k1,7858:7922225,9245431:217317 -k1,7858:8671040,9245431:217318 -k1,7858:11518317,9245431:217317 -k1,7858:12387062,9245431:217317 -k1,7858:14863406,9245431:217318 -k1,7858:16966194,9245431:217317 -k1,7858:18202596,9245431:217317 -k1,7858:19288266,9245431:217318 -k1,7858:20497143,9245431:217317 -k1,7858:23925724,9245431:217317 -k1,7858:24932751,9245431:217318 -k1,7858:25627825,9245431:217317 -k1,7858:26713494,9245431:217317 -k1,7858:27922372,9245431:217318 -k1,7858:31350953,9245431:217317 -k1,7858:31966991,9245431:0 -) -(1,7859:7246811,10086919:24720180,513147,134348 -k1,7858:10476902,10086919:216090 -k1,7858:14979047,10086919:216090 -k1,7858:18125906,10086919:216089 -k1,7858:19289647,10086919:216090 -k1,7858:20972433,10086919:216090 -k1,7858:22711580,10086919:216090 -k1,7858:23796022,10086919:216090 -k1,7858:25542378,10086919:216090 -k1,7858:26409895,10086919:216089 -k1,7858:27441253,10086919:216090 -k1,7858:28860584,10086919:216090 -k1,7858:31966991,10086919:0 -) -(1,7859:7246811,10928407:24720180,513147,134348 -k1,7858:7886590,10928407:162022 -k1,7858:8916964,10928407:162022 -k1,7858:10070547,10928407:162023 -k1,7858:12399845,10928407:162022 -k1,7858:13174629,10928407:162022 -k1,7858:16267421,10928407:162022 -k1,7858:17377094,10928407:162022 -$1,7858:17377094,10928407 -k1,7858:18027081,10928407:182060 -k1,7858:18777338,10928407:182060 -$1,7858:20162114,10928407 -k1,7858:20497807,10928407:162023 -k1,7858:21528181,10928407:162022 -k1,7858:23220469,10928407:162022 -k1,7858:24033919,10928407:162022 -k1,7858:25462097,10928407:162022 -k1,7858:26643205,10928407:162023 -k1,7858:29405696,10928407:162022 -k1,7858:30515369,10928407:162022 -k1,7858:31966991,10928407:0 -) -(1,7859:7246811,11769895:24720180,505283,95027 -g1,7858:8465125,11769895 -g1,7858:10519023,11769895 -g1,7858:11527622,11769895 -$1,7858:11527622,11769895 -g1,7858:12920132,11769895 -g1,7858:13670389,11769895 -$1,7858:15453624,11769895 -k1,7859:31966991,11769895:16339697 -g1,7859:31966991,11769895 -) -v1,7861:7246811,12960361:0,393216,0 -(1,7874:7246811,16028966:24720180,3461821,196608 -g1,7874:7246811,16028966 -g1,7874:7246811,16028966 -g1,7874:7050203,16028966 -(1,7874:7050203,16028966:0,3461821,196608 -r1,7922:32163599,16028966:25113396,3658429,196608 -k1,7874:7050203,16028966:-25113396 -) -(1,7874:7050203,16028966:25113396,3461821,196608 -[1,7874:7246811,16028966:24720180,3265213,0 -(1,7863:7246811,13167979:24720180,404226,101187 -(1,7862:7246811,13167979:0,0,0 -g1,7862:7246811,13167979 -g1,7862:7246811,13167979 -g1,7862:6919131,13167979 -(1,7862:6919131,13167979:0,0,0 -) -g1,7862:7246811,13167979 -) -k1,7863:7246811,13167979:0 -g1,7863:9775977,13167979 -g1,7863:10408269,13167979 -g1,7863:12621289,13167979 -g1,7863:14202018,13167979 -g1,7863:14834310,13167979 -g1,7863:15782748,13167979 -g1,7863:16731185,13167979 -g1,7863:17363477,13167979 -h1,7863:17995769,13167979:0,0,0 -k1,7863:31966991,13167979:13971222 -g1,7863:31966991,13167979 -) -(1,7867:7246811,13899693:24720180,404226,76021 -(1,7865:7246811,13899693:0,0,0 -g1,7865:7246811,13899693 -g1,7865:7246811,13899693 -g1,7865:6919131,13899693 -(1,7865:6919131,13899693:0,0,0 -) -g1,7865:7246811,13899693 -) -g1,7867:8195248,13899693 -g1,7867:9459831,13899693 -k1,7867:9459831,13899693:0 -h1,7867:12305142,13899693:0,0,0 -k1,7867:31966990,13899693:19661848 -g1,7867:31966990,13899693 -) -(1,7869:7246811,15221231:24720180,404226,101187 -(1,7868:7246811,15221231:0,0,0 -g1,7868:7246811,15221231 -g1,7868:7246811,15221231 -g1,7868:6919131,15221231 -(1,7868:6919131,15221231:0,0,0 -) -g1,7868:7246811,15221231 -) -k1,7869:7246811,15221231:0 -g1,7869:9775977,15221231 -g1,7869:10408269,15221231 -g1,7869:12621289,15221231 -g1,7869:14202018,15221231 -g1,7869:14834310,15221231 -g1,7869:15782748,15221231 -g1,7869:16731185,15221231 -g1,7869:17363477,15221231 -g1,7869:18311915,15221231 -g1,7869:21789518,15221231 -g1,7869:22421810,15221231 -h1,7869:24318684,15221231:0,0,0 -k1,7869:31966991,15221231:7648307 -g1,7869:31966991,15221231 -) -(1,7873:7246811,15952945:24720180,404226,76021 -(1,7871:7246811,15952945:0,0,0 -g1,7871:7246811,15952945 -g1,7871:7246811,15952945 -g1,7871:6919131,15952945 -(1,7871:6919131,15952945:0,0,0 -) -g1,7871:7246811,15952945 -) -g1,7873:8195248,15952945 -g1,7873:9459831,15952945 -h1,7873:11988996,15952945:0,0,0 -k1,7873:31966992,15952945:19977996 -g1,7873:31966992,15952945 -) -] -) -g1,7874:31966991,16028966 -g1,7874:7246811,16028966 -g1,7874:7246811,16028966 -g1,7874:31966991,16028966 -g1,7874:31966991,16028966 -) -h1,7874:7246811,16225574:0,0,0 -(1,7878:7246811,17591350:24720180,513147,126483 -h1,7877:7246811,17591350:983040,0,0 -k1,7877:9396190,17591350:212790 -k1,7877:10633964,17591350:212791 -k1,7877:12702078,17591350:212790 -k1,7877:14199375,17591350:212791 -k1,7877:15028203,17591350:212790 -k1,7877:16260078,17591350:212790 -k1,7877:17839950,17591350:212791 -k1,7877:18712032,17591350:212790 -k1,7877:19280682,17591350:212790 -k1,7877:22852193,17591350:212791 -k1,7877:26846410,17591350:212790 -k1,7877:28205426,17591350:212791 -k1,7877:29437301,17591350:212790 -k1,7877:31966991,17591350:0 -) -(1,7878:7246811,18432838:24720180,513147,134348 -k1,7877:8465371,18432838:199475 -k1,7877:11595616,18432838:199475 -k1,7877:12411129,18432838:199475 -k1,7877:13629689,18432838:199475 -k1,7877:15001604,18432838:199476 -k1,7877:16550465,18432838:199475 -k1,7877:18493198,18432838:199475 -k1,7877:20068274,18432838:199475 -k1,7877:20883787,18432838:199475 -k1,7877:22577483,18432838:199475 -k1,7877:24157802,18432838:199475 -k1,7877:24888775,18432838:199476 -k1,7877:26154521,18432838:199475 -k1,7877:27373081,18432838:199475 -k1,7877:28939637,18432838:199475 -k1,7877:30086763,18432838:199475 -k1,7878:31966991,18432838:0 -) -(1,7878:7246811,19274326:24720180,505283,7863 -g1,7877:9493385,19274326 -k1,7878:31966992,19274326:18188208 -g1,7878:31966992,19274326 -) -(1,7880:7246811,20115814:24720180,513147,138281 -h1,7879:7246811,20115814:983040,0,0 -k1,7879:10176876,20115814:163790 -k1,7879:13791791,20115814:163789 -k1,7879:14311441,20115814:163790 -$1,7879:14311441,20115814 -$1,7879:14779368,20115814 -k1,7879:16836492,20115814:163789 -k1,7879:18567903,20115814:163790 -k1,7879:19087553,20115814:163790 -k1,7879:21851811,20115814:163789 -k1,7879:22631639,20115814:163790 -k1,7879:23151289,20115814:163790 -k1,7879:24506523,20115814:163789 -k1,7879:25329605,20115814:163790 -k1,7879:29404583,20115814:163789 -k1,7879:30436725,20115814:163790 -k1,7879:31966991,20115814:0 -) -(1,7880:7246811,20957302:24720180,513147,134348 -k1,7879:8117785,20957302:219546 -k1,7879:9643463,20957302:219545 -k1,7879:11933947,20957302:219546 -k1,7879:14744130,20957302:219545 -k1,7879:15319536,20957302:219546 -k1,7879:18644832,20957302:219545 -k1,7879:19547263,20957302:219546 -k1,7879:23573139,20957302:219545 -k1,7879:24984130,20957302:219546 -k1,7879:25735172,20957302:219545 -k1,7879:28701332,20957302:219546 -k1,7879:30112322,20957302:219545 -k1,7879:30947906,20957302:219546 -k1,7879:31966991,20957302:0 -) -(1,7880:7246811,21798790:24720180,513147,134348 -k1,7879:8774742,21798790:160850 -k1,7879:9594884,21798790:160850 -k1,7879:10111594,21798790:160850 -k1,7879:12145463,21798790:160850 -k1,7879:14026633,21798790:160850 -k1,7879:15552598,21798790:160850 -k1,7879:17598919,21798790:160850 -k1,7879:18778853,21798790:160849 -k1,7879:19471200,21798790:160850 -k1,7879:20291342,21798790:160850 -k1,7879:23069045,21798790:160850 -k1,7879:24271917,21798790:160850 -k1,7879:24788627,21798790:160850 -k1,7879:28055228,21798790:160850 -k1,7879:29407523,21798790:160850 -k1,7879:30436725,21798790:160850 -k1,7879:31966991,21798790:0 -) -(1,7880:7246811,22640278:24720180,505283,126483 -g1,7879:8097468,22640278 -g1,7879:10981707,22640278 -g1,7879:12200021,22640278 -g1,7879:15177977,22640278 -g1,7879:17057549,22640278 -g1,7879:18018306,22640278 -k1,7880:31966991,22640278:13376556 -g1,7880:31966991,22640278 -) -v1,7882:7246811,23830744:0,393216,0 -(1,7889:7246811,24846097:24720180,1408569,196608 -g1,7889:7246811,24846097 -g1,7889:7246811,24846097 -g1,7889:7050203,24846097 -(1,7889:7050203,24846097:0,1408569,196608 -r1,7922:32163599,24846097:25113396,1605177,196608 -k1,7889:7050203,24846097:-25113396 -) -(1,7889:7050203,24846097:25113396,1408569,196608 -[1,7889:7246811,24846097:24720180,1211961,0 -(1,7884:7246811,24038362:24720180,404226,101187 -(1,7883:7246811,24038362:0,0,0 -g1,7883:7246811,24038362 -g1,7883:7246811,24038362 -g1,7883:6919131,24038362 -(1,7883:6919131,24038362:0,0,0 -) -g1,7883:7246811,24038362 -) -k1,7884:7246811,24038362:0 -g1,7884:9775977,24038362 -g1,7884:10408269,24038362 -g1,7884:11356707,24038362 -g1,7884:12937436,24038362 -g1,7884:13569728,24038362 -g1,7884:14518166,24038362 -g1,7884:15466603,24038362 -g1,7884:16098895,24038362 -g1,7884:17047333,24038362 -g1,7884:17679625,24038362 -h1,7884:17995771,24038362:0,0,0 -k1,7884:31966991,24038362:13971220 -g1,7884:31966991,24038362 -) -(1,7888:7246811,24770076:24720180,404226,76021 -(1,7886:7246811,24770076:0,0,0 -g1,7886:7246811,24770076 -g1,7886:7246811,24770076 -g1,7886:6919131,24770076 -(1,7886:6919131,24770076:0,0,0 -) -g1,7886:7246811,24770076 -) -g1,7888:8195248,24770076 -g1,7888:9459831,24770076 -h1,7888:11988996,24770076:0,0,0 -k1,7888:31966992,24770076:19977996 -g1,7888:31966992,24770076 -) -] -) -g1,7889:31966991,24846097 -g1,7889:7246811,24846097 -g1,7889:7246811,24846097 -g1,7889:31966991,24846097 -g1,7889:31966991,24846097 -) -h1,7889:7246811,25042705:0,0,0 -] -) -] -r1,7922:32583029,26156817:26214,20269722,0 -) -] -) -) -g1,7892:32583029,25566993 -) -h1,7892:6630773,26183031:0,0,0 -(1,7894:6630773,28274291:25952256,564462,12975 -(1,7894:6630773,28274291:2450326,534184,12975 -g1,7894:6630773,28274291 -g1,7894:9081099,28274291 -) -g1,7894:12986914,28274291 -g1,7894:15427868,28274291 -g1,7894:17427634,28274291 -g1,7894:18053372,28274291 -k1,7894:32583029,28274291:10236000 -g1,7894:32583029,28274291 -) -(1,7898:6630773,29508995:25952256,505283,134348 -k1,7897:8291992,29508995:176173 -k1,7897:10962464,29508995:176172 -k1,7897:14408884,29508995:176173 -k1,7897:15689338,29508995:176172 -k1,7897:17241112,29508995:176173 -k1,7897:18165050,29508995:176172 -k1,7897:21494160,29508995:176173 -k1,7897:22431860,29508995:176172 -k1,7897:25230784,29508995:176173 -k1,7897:28703417,29508995:176172 -k1,7897:29777433,29508995:176173 -k1,7897:32583029,29508995:0 -) -(1,7898:6630773,30350483:25952256,513147,134348 -k1,7897:9918496,30350483:193113 -k1,7897:13381856,30350483:193113 -k1,7897:14234260,30350483:193112 -k1,7897:17243455,30350483:193113 -k1,7897:20589505,30350483:193113 -k1,7897:21544146,30350483:193113 -k1,7897:25801145,30350483:193112 -k1,7897:26985818,30350483:193113 -k1,7897:28941849,30350483:193113 -k1,7898:32583029,30350483:0 -) -(1,7898:6630773,31191971:25952256,505283,134348 -k1,7897:7612721,31191971:190273 -k1,7897:10634149,31191971:190273 -k1,7897:12204609,31191971:190272 -k1,7897:14131586,31191971:190273 -k1,7897:16013999,31191971:190273 -k1,7897:19500078,31191971:190273 -k1,7897:21084302,31191971:190273 -k1,7897:22582018,31191971:190273 -k1,7897:25266590,31191971:190272 -k1,7897:28727110,31191971:190273 -k1,7897:30367039,31191971:190273 -k1,7897:31173350,31191971:190273 -k1,7898:32583029,31191971:0 -) -(1,7898:6630773,32033459:25952256,505283,126483 -k1,7897:8105988,32033459:207749 -k1,7897:8965165,32033459:207749 -k1,7897:14456427,32033459:207749 -k1,7897:15134069,32033459:207749 -k1,7897:15873315,32033459:207749 -k1,7897:18711023,32033459:207748 -k1,7897:19570200,32033459:207749 -k1,7897:22565851,32033459:207749 -k1,7897:23839871,32033459:207749 -k1,7897:25423221,32033459:207749 -k1,7897:30666756,32033459:207749 -k1,7897:32583029,32033459:0 -) -(1,7898:6630773,32874947:25952256,513147,102891 -k1,7897:8476468,32874947:278074 -k1,7897:9110403,32874947:278075 -k1,7897:11986980,32874947:278074 -k1,7897:16046481,32874947:278074 -k1,7897:17396725,32874947:278075 -k1,7897:18960615,32874947:278074 -k1,7897:20806310,32874947:278074 -k1,7897:22103470,32874947:278075 -k1,7897:24911234,32874947:278074 -$1,7897:24911234,32874947 -$1,7897:25231705,32874947 -k1,7897:25683449,32874947:278074 -$1,7897:25683449,32874947 -$1,7897:26128438,32874947 -k1,7897:26406512,32874947:278074 -k1,7897:27876032,32874947:278075 -k1,7897:29856076,32874947:278074 -k1,7898:32583029,32874947:0 -) -(1,7898:6630773,33716435:25952256,513147,126483 -k1,7897:8635032,33716435:232821 -k1,7897:12103364,33716435:232820 -(1,7897:12103364,33716435:0,414482,115847 -r1,7922:12461630,33716435:358266,530329,115847 -k1,7897:12103364,33716435:-358266 -) -(1,7897:12103364,33716435:358266,414482,115847 -k1,7897:12103364,33716435:3277 -h1,7897:12458353,33716435:0,411205,112570 -) -k1,7897:12694451,33716435:232821 -k1,7897:15789228,33716435:232820 -k1,7897:17041134,33716435:232821 -k1,7897:19759735,33716435:232820 -k1,7897:20651848,33716435:232821 -k1,7897:22895313,33716435:232820 -k1,7897:23779562,33716435:232821 -k1,7897:24760148,33716435:232820 -k1,7897:27167454,33716435:232821 -k1,7897:28083159,33716435:232820 -k1,7897:29104378,33716435:232821 -k1,7897:32583029,33716435:0 -) -(1,7898:6630773,34557923:25952256,513147,134348 -g1,7897:7849087,34557923 -g1,7897:10061582,34557923 -g1,7897:10920103,34557923 -g1,7897:12138417,34557923 -g1,7897:14315523,34557923 -g1,7897:17467149,34557923 -g1,7897:17467149,34557923 -k1,7898:32583029,34557923:15115880 -g1,7898:32583029,34557923 -) -v1,7900:6630773,35748389:0,393216,0 -(1,7914:6630773,39483172:25952256,4127999,196608 -g1,7914:6630773,39483172 -g1,7914:6630773,39483172 -g1,7914:6434165,39483172 -(1,7914:6434165,39483172:0,4127999,196608 -r1,7922:32779637,39483172:26345472,4324607,196608 -k1,7914:6434165,39483172:-26345472 -) -(1,7914:6434165,39483172:26345472,4127999,196608 -[1,7914:6630773,39483172:25952256,3931391,0 -(1,7902:6630773,35956007:25952256,404226,76021 -(1,7901:6630773,35956007:0,0,0 -g1,7901:6630773,35956007 -g1,7901:6630773,35956007 -g1,7901:6303093,35956007 -(1,7901:6303093,35956007:0,0,0 -) -g1,7901:6630773,35956007 -) -k1,7902:6630773,35956007:0 -h1,7902:9159939,35956007:0,0,0 -k1,7902:32583029,35956007:23423090 -g1,7902:32583029,35956007 -) -(1,7906:6630773,36687721:25952256,404226,76021 -(1,7904:6630773,36687721:0,0,0 -g1,7904:6630773,36687721 -g1,7904:6630773,36687721 -g1,7904:6303093,36687721 -(1,7904:6303093,36687721:0,0,0 -) -g1,7904:6630773,36687721 -) -g1,7906:7579210,36687721 -g1,7906:8843793,36687721 -g1,7906:12321396,36687721 -g1,7906:12637542,36687721 -g1,7906:15798999,36687721 -g1,7906:19276602,36687721 -g1,7906:22754205,36687721 -g1,7906:23070351,36687721 -h1,7906:25915662,36687721:0,0,0 -k1,7906:32583029,36687721:6667367 -g1,7906:32583029,36687721 -) -(1,7908:6630773,38009259:25952256,404226,82312 -(1,7907:6630773,38009259:0,0,0 -g1,7907:6630773,38009259 -g1,7907:6630773,38009259 -g1,7907:6303093,38009259 -(1,7907:6303093,38009259:0,0,0 -) -g1,7907:6630773,38009259 -) -k1,7908:6630773,38009259:0 -g1,7908:9159939,38009259 -g1,7908:9792231,38009259 -g1,7908:11056814,38009259 -g1,7908:12637543,38009259 -g1,7908:13269835,38009259 -g1,7908:14534418,38009259 -g1,7908:15482855,38009259 -g1,7908:16115147,38009259 -h1,7908:16747439,38009259:0,0,0 -k1,7908:32583029,38009259:15835590 -g1,7908:32583029,38009259 -) -(1,7913:6630773,38740973:25952256,404226,76021 -(1,7910:6630773,38740973:0,0,0 -g1,7910:6630773,38740973 -g1,7910:6630773,38740973 -g1,7910:6303093,38740973 -(1,7910:6303093,38740973:0,0,0 -) -g1,7910:6630773,38740973 -) -g1,7913:7579210,38740973 -g1,7913:7895356,38740973 -g1,7913:9159939,38740973 -g1,7913:12321396,38740973 -g1,7913:12637542,38740973 -g1,7913:15482853,38740973 -g1,7913:15798999,38740973 -g1,7913:18644310,38740973 -g1,7913:21805767,38740973 -g1,7913:24967224,38740973 -g1,7913:28128681,38740973 -h1,7913:30973992,38740973:0,0,0 -k1,7913:32583029,38740973:1609037 -g1,7913:32583029,38740973 -) -(1,7913:6630773,39407151:25952256,404226,76021 -h1,7913:6630773,39407151:0,0,0 -g1,7913:7579210,39407151 -g1,7913:7895356,39407151 -g1,7913:9159939,39407151 -g1,7913:12321396,39407151 -g1,7913:15482853,39407151 -g1,7913:15798999,39407151 -h1,7913:18328164,39407151:0,0,0 -k1,7913:32583029,39407151:14254865 -g1,7913:32583029,39407151 -) -] -) -g1,7914:32583029,39483172 -g1,7914:6630773,39483172 -g1,7914:6630773,39483172 -g1,7914:32583029,39483172 -g1,7914:32583029,39483172 -) -h1,7914:6630773,39679780:0,0,0 -v1,7918:6630773,41569844:0,393216,0 -(1,7919:6630773,43824419:25952256,2647791,616038 -g1,7919:6630773,43824419 -(1,7919:6630773,43824419:25952256,2647791,616038 -(1,7919:6630773,44440457:25952256,3263829,0 -[1,7919:6630773,44440457:25952256,3263829,0 -(1,7919:6630773,44414243:25952256,3211401,0 -r1,7922:6656987,44414243:26214,3211401,0 -[1,7919:6656987,44414243:25899828,3211401,0 -(1,7919:6656987,43824419:25899828,2031753,0 -[1,7919:7246811,43824419:24720180,2031753,0 -(1,7919:7246811,42880040:24720180,1087374,126483 -k1,7918:8720741,42880040:264227 -k1,7918:10234740,42880040:264227 -k1,7918:11518051,42880040:264226 -k1,7918:14773997,42880040:264227 -k1,7918:15654262,42880040:264227 -k1,7918:18527477,42880040:264227 -h1,7918:20070195,42880040:0,0,0 -k1,7918:20508091,42880040:264226 -h1,7918:22050809,42880040:0,0,0 -k1,7918:22315036,42880040:264227 -k1,7918:23770708,42880040:264227 -h1,7918:25313426,42880040:0,0,0 -k1,7918:25577653,42880040:264227 -k1,7918:26493307,42880040:264226 -k1,7918:27572802,42880040:264227 -k1,7918:31966991,42880040:0 -) -(1,7919:7246811,43721528:24720180,513147,102891 -g1,7918:9300709,43721528 -g1,7918:10309308,43721528 -g1,7918:13270880,43721528 -g1,7918:17755508,43721528 -g1,7918:19448303,43721528 -g1,7918:20333694,43721528 -g1,7918:23503670,43721528 -g1,7918:24109222,43721528 -g1,7918:24741644,43721528 -g1,7918:25623758,43721528 -k1,7919:31966991,43721528:3571060 -g1,7919:31966991,43721528 -) -] -) -] -r1,7922:32583029,44414243:26214,3211401,0 -) -] -) -) -g1,7919:32583029,43824419 -) -h1,7919:6630773,44440457:0,0,0 -] -(1,7922:32583029,45706769:0,0,0 -g1,7922:32583029,45706769 -) -) -] -(1,7922:6630773,47279633:25952256,0,0 -h1,7922:6630773,47279633:25952256,0,0 -) -] -(1,7922:4262630,4025873:0,0,0 -[1,7922:-473656,4025873:0,0,0 -(1,7922:-473656,-710413:0,0,0 -(1,7922:-473656,-710413:0,0,0 -g1,7922:-473656,-710413 -) -g1,7922:-473656,-710413 -) -] -) -] -!22714 -}150 -Input:1221:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1222:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1223:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1224:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1225:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1226:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1227:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1228:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1229:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1230:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!932 -{151 -[1,7962:4262630,47279633:28320399,43253760,0 -(1,7962:4262630,4025873:0,0,0 -[1,7962:-473656,4025873:0,0,0 -(1,7962:-473656,-710413:0,0,0 -(1,7962:-473656,-644877:0,0,0 -k1,7962:-473656,-644877:-65536 -) -(1,7962:-473656,4736287:0,0,0 -k1,7962:-473656,4736287:5209943 -) -g1,7962:-473656,-710413 -) -] -) -[1,7962:6630773,47279633:25952256,43253760,0 -[1,7962:6630773,4812305:25952256,786432,0 -(1,7962:6630773,4812305:25952256,505283,134348 -(1,7962:6630773,4812305:25952256,505283,134348 -g1,7962:3078558,4812305 -[1,7962:3078558,4812305:0,0,0 -(1,7962:3078558,2439708:0,1703936,0 -k1,7962:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,7962:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,7962:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,7962:3078558,4812305:0,0,0 -(1,7962:3078558,2439708:0,1703936,0 -g1,7962:29030814,2439708 -g1,7962:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,7962:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,7962:37855564,2439708:1179648,16384,0 -) -) -k1,7962:3078556,2439708:-34777008 -) -] -[1,7962:3078558,4812305:0,0,0 -(1,7962:3078558,49800853:0,16384,2228224 -k1,7962:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,7962:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,7962:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,7962:3078558,4812305:0,0,0 -(1,7962:3078558,49800853:0,16384,2228224 -g1,7962:29030814,49800853 -g1,7962:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,7962:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,7962:37855564,49800853:1179648,16384,0 -) -) -k1,7962:3078556,49800853:-34777008 -) -] -g1,7962:6630773,4812305 -k1,7962:24502442,4812305:16676292 -g1,7962:25889183,4812305 -g1,7962:26537989,4812305 -g1,7962:29852144,4812305 -) -) -] -[1,7962:6630773,45706769:25952256,40108032,0 -(1,7962:6630773,45706769:25952256,40108032,0 -(1,7962:6630773,45706769:0,0,0 -g1,7962:6630773,45706769 -) -[1,7962:6630773,45706769:25952256,40108032,0 -v1,7922:6630773,6254097:0,393216,0 -(1,7924:6630773,16188032:25952256,10327151,616038 -g1,7924:6630773,16188032 -(1,7924:6630773,16188032:25952256,10327151,616038 -(1,7924:6630773,16804070:25952256,10943189,0 -[1,7924:6630773,16804070:25952256,10943189,0 -(1,7924:6630773,16777856:25952256,10890761,0 -r1,7962:6656987,16777856:26214,10890761,0 -[1,7924:6656987,16777856:25899828,10890761,0 -(1,7924:6656987,16188032:25899828,9711113,0 -[1,7924:7246811,16188032:24720180,9711113,0 -(1,7924:7246811,7638804:24720180,1161885,196608 -(1,7922:7246811,7638804:0,1161885,196608 -r1,7962:8794447,7638804:1547636,1358493,196608 -k1,7922:7246811,7638804:-1547636 -) -(1,7922:7246811,7638804:1547636,1161885,196608 -) -k1,7922:9111832,7638804:317385 -k1,7922:9111832,7638804:0 -k1,7922:9429217,7638804:317385 -k1,7923:10216495,7638804:317385 -k1,7923:11065377,7638804:317385 -k1,7923:14833888,7638804:317385 -k1,7923:15802702,7638804:317386 -k1,7923:18852283,7638804:317385 -k1,7923:20696002,7638804:317385 -k1,7923:23507687,7638804:317385 -k1,7923:27095319,7638804:317385 -k1,7923:28071996,7638804:317385 -k1,7923:31205463,7638804:317385 -k1,7923:31966991,7638804:0 -) -(1,7924:7246811,8480292:24720180,513147,126483 -k1,7923:9529757,8480292:214630 -k1,7923:10403680,8480292:214631 -k1,7923:10974171,8480292:214631 -k1,7923:15408664,8480292:214630 -k1,7923:18068443,8480292:214631 -k1,7923:19776639,8480292:214630 -k1,7923:20677432,8480292:214631 -k1,7923:21247922,8480292:214630 -k1,7923:25785963,8480292:214631 -k1,7923:30238151,8480292:214630 -k1,7924:31966991,8480292:0 -) -(1,7924:7246811,9321780:24720180,505283,134348 -k1,7923:8947059,9321780:265010 -k1,7923:12328305,9321780:265009 -k1,7923:13279477,9321780:265010 -k1,7923:16697424,9321780:265010 -k1,7923:17723962,9321780:265010 -k1,7923:18403748,9321780:264943 -k1,7923:19860203,9321780:265010 -k1,7923:21827183,9321780:265010 -k1,7923:25168453,9321780:265010 -k1,7923:28505790,9321780:265009 -k1,7923:29762360,9321780:265010 -k1,7923:31966991,9321780:0 -) -(1,7924:7246811,10163268:24720180,513147,134348 -k1,7923:9937283,10163268:186341 -k1,7923:13068811,10163268:186340 -k1,7923:14643860,10163268:186341 -k1,7923:19050064,10163268:186341 -k1,7923:21081242,10163268:186340 -k1,7923:21926875,10163268:186341 -k1,7923:24929298,10163268:186341 -k1,7923:26400144,10163268:186340 -k1,7923:29472691,10163268:186341 -k1,7923:31966991,10163268:0 -) -(1,7924:7246811,11004756:24720180,505283,134348 -k1,7923:9582776,11004756:246022 -k1,7923:12479729,11004756:246022 -k1,7923:15211533,11004756:246023 -k1,7923:18852975,11004756:246022 -k1,7923:20521784,11004756:246022 -k1,7923:21123666,11004756:246022 -k1,7923:22770847,11004756:246022 -k1,7923:24697213,11004756:246023 -k1,7923:26227741,11004756:246022 -k1,7923:30048097,11004756:246022 -k1,7923:31966991,11004756:0 -) -(1,7924:7246811,11846244:24720180,513147,134348 -k1,7923:8078463,11846244:215614 -k1,7923:9313161,11846244:215613 -k1,7923:11373613,11846244:215614 -k1,7923:12457578,11846244:215613 -k1,7923:14335185,11846244:215614 -k1,7923:15747485,11846244:215613 -k1,7923:17684074,11846244:215614 -k1,7923:19137662,11846244:215613 -k1,7923:20012568,11846244:215614 -k1,7923:24545038,11846244:215613 -k1,7923:26942346,11846244:215614 -k1,7923:28177044,11846244:215613 -k1,7923:30073001,11846244:215614 -k1,7923:30947906,11846244:215613 -k1,7923:31966991,11846244:0 -) -(1,7924:7246811,12687732:24720180,513147,134348 -k1,7923:8903914,12687732:211379 -k1,7923:9646790,12687732:211379 -k1,7923:10509597,12687732:211379 -k1,7923:12073638,12687732:211378 -k1,7923:13304102,12687732:211379 -k1,7923:17519731,12687732:211379 -k1,7923:18413995,12687732:211379 -k1,7923:20827384,12687732:211379 -k1,7923:23291891,12687732:211379 -k1,7923:26386853,12687732:211378 -k1,7923:27532775,12687732:211379 -k1,7923:28403446,12687732:211379 -k1,7923:30399370,12687732:211379 -k1,7923:31966991,12687732:0 -) -(1,7924:7246811,13529220:24720180,513147,126483 -k1,7923:8530849,13529220:264953 -k1,7923:9992489,13529220:264953 -k1,7923:11682849,13529220:264952 -k1,7923:13607174,13529220:264953 -k1,7923:14531419,13529220:264953 -k1,7923:15815457,13529220:264953 -k1,7923:19330340,13529220:264953 -k1,7923:22529994,13529220:264952 -k1,7923:23410985,13529220:264953 -k1,7923:25373320,13529220:264953 -k1,7923:27336311,13529220:264953 -k1,7923:28469615,13529220:264952 -k1,7923:30201919,13529220:264953 -k1,7923:31118300,13529220:264953 -k1,7924:31966991,13529220:0 -) -(1,7924:7246811,14370708:24720180,513147,134348 -k1,7923:8820549,14370708:192894 -k1,7923:9369304,14370708:192895 -k1,7923:13033640,14370708:192894 -k1,7923:14961928,14370708:192895 -k1,7923:16173907,14370708:192894 -k1,7923:18020274,14370708:192894 -k1,7923:20058007,14370708:192895 -k1,7923:20910193,14370708:192894 -k1,7923:26138874,14370708:192895 -k1,7923:28516083,14370708:192894 -k1,7923:29577330,14370708:192895 -k1,7923:30874506,14370708:192894 -k1,7924:31966991,14370708:0 -) -(1,7924:7246811,15212196:24720180,505283,134348 -(1,7923:7246811,15212196:0,452978,115847 -r1,7962:10770483,15212196:3523672,568825,115847 -k1,7923:7246811,15212196:-3523672 -) -(1,7923:7246811,15212196:3523672,452978,115847 -k1,7923:7246811,15212196:3277 -h1,7923:10767206,15212196:0,411205,112570 -) -k1,7923:10980160,15212196:209677 -k1,7923:12583788,15212196:209677 -k1,7923:13564169,15212196:209678 -k1,7923:16570267,15212196:209677 -k1,7923:19010134,15212196:209677 -k1,7923:19905973,15212196:209677 -k1,7923:20886353,15212196:209677 -k1,7923:24168358,15212196:209677 -k1,7923:25029464,15212196:209678 -k1,7923:26809384,15212196:209677 -k1,7923:28038146,15212196:209677 -k1,7923:31315563,15212196:209677 -k1,7923:31966991,15212196:0 -) -(1,7924:7246811,16053684:24720180,505283,134348 -g1,7923:8465125,16053684 -g1,7923:10317827,16053684 -g1,7923:12205263,16053684 -g1,7923:13020530,16053684 -g1,7923:14238844,16053684 -g1,7923:17880679,16053684 -g1,7923:22713959,16053684 -k1,7924:31966991,16053684:6139417 -g1,7924:31966991,16053684 -) -] -) -] -r1,7962:32583029,16777856:26214,10890761,0 -) -] -) -) -g1,7924:32583029,16188032 -) -h1,7924:6630773,16804070:0,0,0 -v1,7927:6630773,17938221:0,393216,0 -(1,7928:6630773,25469789:25952256,7924784,616038 -g1,7928:6630773,25469789 -(1,7928:6630773,25469789:25952256,7924784,616038 -(1,7928:6630773,26085827:25952256,8540822,0 -[1,7928:6630773,26085827:25952256,8540822,0 -(1,7928:6630773,26059613:25952256,8488394,0 -r1,7962:6656987,26059613:26214,8488394,0 -[1,7928:6656987,26059613:25899828,8488394,0 -(1,7928:6656987,25469789:25899828,7308746,0 -[1,7928:7246811,25469789:24720180,7308746,0 -(1,7928:7246811,19445025:24720180,1283982,196608 -(1,7927:7246811,19445025:0,1283982,196608 -r1,7962:9812056,19445025:2565245,1480590,196608 -k1,7927:7246811,19445025:-2565245 -) -(1,7927:7246811,19445025:2565245,1283982,196608 -) -k1,7927:10133208,19445025:321152 -k1,7927:12890333,19445025:321152 -k1,7927:14230570,19445025:321152 -k1,7927:17738082,19445025:321152 -(1,7927:17738082,19445025:0,452978,115847 -r1,7962:20558331,19445025:2820249,568825,115847 -k1,7927:17738082,19445025:-2820249 -) -(1,7927:17738082,19445025:2820249,452978,115847 -k1,7927:17738082,19445025:3277 -h1,7927:20555054,19445025:0,411205,112570 -) -k1,7927:20879483,19445025:321152 -k1,7927:21962162,19445025:321151 -k1,7927:23888946,19445025:321152 -k1,7927:26441599,19445025:321152 -k1,7927:28692131,19445025:321152 -k1,7927:31141237,19445025:321152 -k1,7928:31966991,19445025:0 -) -(1,7928:7246811,20286513:24720180,505283,134348 -k1,7927:9973633,20286513:440271 -k1,7927:11065332,20286513:440271 -k1,7927:12524687,20286513:440270 -k1,7927:14975603,20286513:440271 -k1,7927:18381378,20286513:440271 -k1,7927:20994823,20286513:440271 -k1,7927:22454179,20286513:440271 -k1,7927:25628612,20286513:440271 -k1,7927:27141051,20286513:440270 -k1,7927:28911703,20286513:440271 -k1,7928:31966991,20286513:0 -) -(1,7928:7246811,21128001:24720180,513147,134348 -(1,7927:7246811,21128001:0,452978,115847 -r1,7962:12529042,21128001:5282231,568825,115847 -k1,7927:7246811,21128001:-5282231 -) -(1,7927:7246811,21128001:5282231,452978,115847 -k1,7927:7246811,21128001:3277 -h1,7927:12525765,21128001:0,411205,112570 -) -k1,7927:12958024,21128001:428982 -k1,7927:17323754,21128001:428982 -k1,7927:19795493,21128001:428982 -k1,7927:21676098,21128001:428983 -k1,7927:23204774,21128001:428982 -k1,7927:24285184,21128001:428982 -(1,7927:24285184,21128001:0,452978,115847 -r1,7962:27105433,21128001:2820249,568825,115847 -k1,7927:24285184,21128001:-2820249 -) -(1,7927:24285184,21128001:2820249,452978,115847 -k1,7927:24285184,21128001:3277 -h1,7927:27102156,21128001:0,411205,112570 -) -k1,7927:27708085,21128001:428982 -k1,7927:29839037,21128001:428982 -k1,7927:31966991,21128001:0 -) -(1,7928:7246811,21969489:24720180,513147,115847 -k1,7927:10532537,21969489:386413 -k1,7927:11570378,21969489:386413 -k1,7927:12975876,21969489:386413 -k1,7927:15372934,21969489:386413 -k1,7927:18724851,21969489:386413 -k1,7927:20572717,21969489:386413 -k1,7927:23371510,21969489:386413 -(1,7927:23371510,21969489:0,452978,115847 -r1,7962:28653741,21969489:5282231,568825,115847 -k1,7927:23371510,21969489:-5282231 -) -(1,7927:23371510,21969489:5282231,452978,115847 -k1,7927:23371510,21969489:3277 -h1,7927:28650464,21969489:0,411205,112570 -) -k1,7927:29213824,21969489:386413 -k1,7927:31966991,21969489:0 -) -(1,7928:7246811,22810977:24720180,513147,126483 -k1,7927:8348929,22810977:340590 -(1,7927:8348929,22810977:0,452978,115847 -r1,7962:15741431,22810977:7392502,568825,115847 -k1,7927:8348929,22810977:-7392502 -) -(1,7927:8348929,22810977:7392502,452978,115847 -g1,7927:12572748,22810977 -h1,7927:15738154,22810977:0,411205,112570 -) -k1,7927:16255691,22810977:340590 -k1,7927:17787726,22810977:340590 -k1,7927:19562245,22810977:340591 -k1,7927:22315215,22810977:340590 -(1,7927:22315215,22810977:0,452978,115847 -r1,7962:27597446,22810977:5282231,568825,115847 -k1,7927:22315215,22810977:-5282231 -) -(1,7927:22315215,22810977:5282231,452978,115847 -k1,7927:22315215,22810977:3277 -h1,7927:27594169,22810977:0,411205,112570 -) -k1,7927:28111706,22810977:340590 -k1,7927:31205463,22810977:340590 -k1,7928:31966991,22810977:0 -) -(1,7928:7246811,23652465:24720180,513147,134348 -(1,7927:7246811,23652465:0,452978,115847 -r1,7962:10067060,23652465:2820249,568825,115847 -k1,7927:7246811,23652465:-2820249 -) -(1,7927:7246811,23652465:2820249,452978,115847 -k1,7927:7246811,23652465:3277 -h1,7927:10063783,23652465:0,411205,112570 -) -k1,7927:10280150,23652465:213090 -k1,7927:11684685,23652465:213090 -k1,7927:14658150,23652465:213089 -k1,7927:15890325,23652465:213090 -k1,7927:18435841,23652465:213090 -k1,7927:20822105,23652465:213090 -k1,7927:22054280,23652465:213090 -k1,7927:24827862,23652465:213090 -k1,7927:26776344,23652465:213089 -k1,7927:27345294,23652465:213090 -k1,7927:30320727,23652465:213090 -k1,7928:31966991,23652465:0 -) -(1,7928:7246811,24493953:24720180,505283,126483 -k1,7927:9083472,24493953:197606 -k1,7927:9897116,24493953:197606 -k1,7927:11113807,24493953:197606 -k1,7927:12411108,24493953:197607 -k1,7927:13260142,24493953:197606 -(1,7927:13260142,24493953:0,452978,115847 -r1,7962:16783814,24493953:3523672,568825,115847 -k1,7927:13260142,24493953:-3523672 -) -(1,7927:13260142,24493953:3523672,452978,115847 -k1,7927:13260142,24493953:3277 -h1,7927:16780537,24493953:0,411205,112570 -) -k1,7927:17155090,24493953:197606 -k1,7927:19782771,24493953:197606 -k1,7927:20999462,24493953:197606 -k1,7927:23370242,24493953:197606 -k1,7927:24759294,24493953:197607 -k1,7927:27267044,24493953:197606 -k1,7927:28795031,24493953:197606 -(1,7927:28795031,24493953:0,452978,115847 -r1,7962:31966991,24493953:3171960,568825,115847 -k1,7927:28795031,24493953:-3171960 -) -(1,7927:28795031,24493953:3171960,452978,115847 -k1,7927:28795031,24493953:3277 -h1,7927:31963714,24493953:0,411205,112570 -) -k1,7927:31966991,24493953:0 -) -(1,7928:7246811,25335441:24720180,513147,134348 -g1,7927:9555644,25335441 -g1,7927:10773958,25335441 -g1,7927:14368607,25335441 -g1,7927:15227128,25335441 -g1,7927:20462143,25335441 -g1,7927:23477454,25335441 -g1,7927:24292721,25335441 -k1,7928:31966991,25335441:7085757 -g1,7928:31966991,25335441 -) -] -) -] -r1,7962:32583029,26059613:26214,8488394,0 -) -] -) -) -g1,7928:32583029,25469789 -) -h1,7928:6630773,26085827:0,0,0 -(1,7930:6630773,28893395:25952256,32768,229376 -(1,7930:6630773,28893395:0,32768,229376 -(1,7930:6630773,28893395:5505024,32768,229376 -r1,7962:12135797,28893395:5505024,262144,229376 -) -k1,7930:6630773,28893395:-5505024 -) -(1,7930:6630773,28893395:25952256,32768,0 -r1,7962:32583029,28893395:25952256,32768,0 -) -) -(1,7930:6630773,30497723:25952256,606339,161218 -(1,7930:6630773,30497723:1974731,575668,0 -g1,7930:6630773,30497723 -g1,7930:8605504,30497723 -) -g1,7930:12866393,30497723 -k1,7930:32583029,30497723:16097476 -g1,7930:32583029,30497723 -) -(1,7935:6630773,31732427:25952256,513147,134348 -k1,7934:7472801,31732427:214193 -k1,7934:10353000,31732427:214194 -k1,7934:11218621,31732427:214193 -k1,7934:14009034,31732427:214193 -k1,7934:16233873,31732427:214194 -k1,7934:18015687,31732427:214193 -k1,7934:18585740,31732427:214193 -k1,7934:22201908,31732427:214194 -k1,7934:26371199,31732427:214193 -k1,7934:27453744,31732427:214193 -k1,7934:28772220,31732427:214194 -k1,7934:30572384,31732427:214193 -k1,7934:32583029,31732427:0 -) -(1,7935:6630773,32573915:25952256,513147,134348 -k1,7934:8347925,32573915:149531 -k1,7934:9268160,32573915:149532 -k1,7934:11908714,32573915:149531 -k1,7934:12992788,32573915:149531 -k1,7934:13825205,32573915:149532 -k1,7934:17061482,32573915:149531 -k1,7934:17870305,32573915:149531 -k1,7934:20204152,32573915:149532 -k1,7934:21307232,32573915:149531 -k1,7934:22556457,32573915:149531 -k1,7934:23909230,32573915:149532 -k1,7934:27133055,32573915:149531 -k1,7934:32583029,32573915:0 -) -(1,7935:6630773,33415403:25952256,505283,134348 -k1,7934:9896909,33415403:170215 -k1,7934:11263810,33415403:170214 -k1,7934:13350298,33415403:170215 -k1,7934:14624795,33415403:170215 -k1,7934:15542775,33415403:170214 -k1,7934:17290442,33415403:170215 -k1,7934:19316636,33415403:170214 -k1,7934:20880802,33415403:170215 -k1,7934:24988420,33415403:170215 -k1,7934:25841519,33415403:170214 -k1,7934:28471956,33415403:170215 -k1,7934:32583029,33415403:0 -) -(1,7935:6630773,34256891:25952256,513147,134348 -k1,7934:7526432,34256891:267824 -k1,7934:8813340,34256891:267823 -k1,7934:11322495,34256891:267824 -k1,7934:13131070,34256891:267824 -k1,7934:14165010,34256891:267824 -k1,7934:16349106,34256891:267823 -k1,7934:17608490,34256891:267824 -k1,7934:19643820,34256891:267824 -k1,7934:21479265,34256891:267824 -k1,7934:22766173,34256891:267823 -k1,7934:24916846,34256891:267824 -k1,7934:26119213,34256891:267824 -k1,7934:27046329,34256891:267824 -k1,7934:29498467,34256891:267823 -k1,7934:32124932,34256891:267824 -k1,7934:32583029,34256891:0 -) -(1,7935:6630773,35098379:25952256,513147,134348 -k1,7934:9478353,35098379:217620 -k1,7934:10643625,35098379:217621 -k1,7934:11217105,35098379:217620 -k1,7934:13129487,35098379:217621 -k1,7934:15027450,35098379:217620 -k1,7934:15896498,35098379:217620 -k1,7934:16861885,35098379:217621 -k1,7934:19080319,35098379:217620 -k1,7934:20948136,35098379:217620 -k1,7934:22608204,35098379:217621 -k1,7934:24489783,35098379:217620 -k1,7934:25335239,35098379:217621 -k1,7934:26571944,35098379:217620 -k1,7934:29055144,35098379:217620 -k1,7934:30639846,35098379:217621 -k1,7934:31516758,35098379:217620 -k1,7934:32583029,35098379:0 -) -(1,7935:6630773,35939867:25952256,513147,134348 -k1,7934:8610222,35939867:244056 -k1,7934:12965351,35939867:244056 -k1,7934:16870903,35939867:244056 -k1,7934:19031232,35939867:244056 -k1,7934:20266848,35939867:244056 -k1,7934:22278410,35939867:244056 -k1,7934:24090087,35939867:244056 -k1,7934:25353228,35939867:244056 -k1,7934:27607929,35939867:244056 -k1,7934:31069803,35939867:244056 -k1,7934:32583029,35939867:0 -) -(1,7935:6630773,36781355:25952256,505283,134348 -g1,7934:9827619,36781355 -g1,7934:11045933,36781355 -g1,7934:13255807,36781355 -g1,7934:15690469,36781355 -g1,7934:16505736,36781355 -g1,7934:18738547,36781355 -k1,7935:32583029,36781355:11754539 -g1,7935:32583029,36781355 -) -v1,7937:6630773,37740196:0,393216,0 -(1,7957:6630773,43534522:25952256,6187542,196608 -g1,7957:6630773,43534522 -g1,7957:6630773,43534522 -g1,7957:6434165,43534522 -(1,7957:6434165,43534522:0,6187542,196608 -r1,7962:32779637,43534522:26345472,6384150,196608 -k1,7957:6434165,43534522:-26345472 -) -(1,7957:6434165,43534522:26345472,6187542,196608 -[1,7957:6630773,43534522:25952256,5990934,0 -(1,7939:6630773,37947814:25952256,404226,101187 -(1,7938:6630773,37947814:0,0,0 -g1,7938:6630773,37947814 -g1,7938:6630773,37947814 -g1,7938:6303093,37947814 -(1,7938:6303093,37947814:0,0,0 -) -g1,7938:6630773,37947814 -) -k1,7939:6630773,37947814:0 -g1,7939:9476085,37947814 -g1,7939:10108377,37947814 -h1,7939:12637542,37947814:0,0,0 -k1,7939:32583030,37947814:19945488 -g1,7939:32583030,37947814 -) -(1,7944:6630773,38679528:25952256,404226,76021 -(1,7941:6630773,38679528:0,0,0 -g1,7941:6630773,38679528 -g1,7941:6630773,38679528 -g1,7941:6303093,38679528 -(1,7941:6303093,38679528:0,0,0 -) -g1,7941:6630773,38679528 -) -k1,7944:7565503,38679528:302439 -k1,7944:7867943,38679528:302440 -k1,7944:9118819,38679528:302439 -k1,7944:10369695,38679528:302439 -k1,7944:11620571,38679528:302439 -k1,7944:12871448,38679528:302440 -k1,7944:14122324,38679528:302439 -k1,7944:15373200,38679528:302439 -k1,7944:16624077,38679528:302440 -k1,7944:17874953,38679528:302439 -k1,7944:19125829,38679528:302439 -k1,7944:20376705,38679528:302439 -k1,7944:21627582,38679528:302440 -k1,7944:22878458,38679528:302439 -k1,7944:24129334,38679528:302439 -k1,7944:25380211,38679528:302440 -k1,7944:26631087,38679528:302439 -k1,7944:27881963,38679528:302439 -k1,7944:29132839,38679528:302439 -k1,7944:30383716,38679528:302440 -k1,7944:31634592,38679528:302439 -h1,7944:32583029,38679528:0,0,0 -k1,7944:32583029,38679528:0 -k1,7944:32583029,38679528:0 -) -(1,7944:6630773,39345706:25952256,404226,82312 -h1,7944:6630773,39345706:0,0,0 -g1,7944:7579210,39345706 -g1,7944:9159939,39345706 -g1,7944:10424522,39345706 -g1,7944:11689105,39345706 -g1,7944:12953688,39345706 -g1,7944:14218271,39345706 -g1,7944:15482854,39345706 -g1,7944:16747437,39345706 -h1,7944:17695874,39345706:0,0,0 -k1,7944:32583029,39345706:14887155 -g1,7944:32583029,39345706 -) -(1,7946:6630773,40667244:25952256,404226,101187 -(1,7945:6630773,40667244:0,0,0 -g1,7945:6630773,40667244 -g1,7945:6630773,40667244 -g1,7945:6303093,40667244 -(1,7945:6303093,40667244:0,0,0 -) -g1,7945:6630773,40667244 -) -k1,7946:6630773,40667244:0 -g1,7946:9476085,40667244 -g1,7946:10108377,40667244 -g1,7946:12953689,40667244 -g1,7946:14534418,40667244 -g1,7946:15166710,40667244 -h1,7946:16115147,40667244:0,0,0 -k1,7946:32583029,40667244:16467882 -g1,7946:32583029,40667244 -) -(1,7950:6630773,41398958:25952256,404226,82312 -(1,7948:6630773,41398958:0,0,0 -g1,7948:6630773,41398958 -g1,7948:6630773,41398958 -g1,7948:6303093,41398958 -(1,7948:6303093,41398958:0,0,0 -) -g1,7948:6630773,41398958 -) -g1,7950:7579210,41398958 -g1,7950:7895356,41398958 -g1,7950:9159939,41398958 -g1,7950:10424522,41398958 -g1,7950:11689105,41398958 -g1,7950:12953688,41398958 -g1,7950:14218271,41398958 -g1,7950:15482854,41398958 -g1,7950:16747437,41398958 -g1,7950:18012020,41398958 -g1,7950:19276603,41398958 -g1,7950:20541186,41398958 -g1,7950:21805769,41398958 -g1,7950:23070352,41398958 -h1,7950:24018789,41398958:0,0,0 -k1,7950:32583029,41398958:8564240 -g1,7950:32583029,41398958 -) -(1,7952:6630773,42720496:25952256,404226,101187 -(1,7951:6630773,42720496:0,0,0 -g1,7951:6630773,42720496 -g1,7951:6630773,42720496 -g1,7951:6303093,42720496 -(1,7951:6303093,42720496:0,0,0 -) -g1,7951:6630773,42720496 -) -k1,7952:6630773,42720496:0 -g1,7952:9476085,42720496 -g1,7952:10108377,42720496 -g1,7952:12953689,42720496 -g1,7952:14534418,42720496 -g1,7952:15166710,42720496 -g1,7952:16431293,42720496 -g1,7952:18960459,42720496 -g1,7952:19592751,42720496 -h1,7952:21173480,42720496:0,0,0 -k1,7952:32583029,42720496:11409549 -g1,7952:32583029,42720496 -) -(1,7956:6630773,43452210:25952256,404226,82312 -(1,7954:6630773,43452210:0,0,0 -g1,7954:6630773,43452210 -g1,7954:6630773,43452210 -g1,7954:6303093,43452210 -(1,7954:6303093,43452210:0,0,0 -) -g1,7954:6630773,43452210 -) -g1,7956:7579210,43452210 -g1,7956:7895356,43452210 -g1,7956:9159939,43452210 -g1,7956:10424522,43452210 -g1,7956:11689105,43452210 -g1,7956:12953688,43452210 -g1,7956:14218271,43452210 -g1,7956:15482854,43452210 -g1,7956:16747437,43452210 -g1,7956:18012020,43452210 -g1,7956:19276603,43452210 -g1,7956:20541186,43452210 -g1,7956:21805769,43452210 -g1,7956:23070352,43452210 -h1,7956:24018789,43452210:0,0,0 -k1,7956:32583029,43452210:8564240 -g1,7956:32583029,43452210 -) -] -) -g1,7957:32583029,43534522 -g1,7957:6630773,43534522 -g1,7957:6630773,43534522 -g1,7957:32583029,43534522 -g1,7957:32583029,43534522 -) -h1,7957:6630773,43731130:0,0,0 -(1,7962:6630773,44865281:25952256,513147,134348 -h1,7960:6630773,44865281:983040,0,0 -k1,7960:8535845,44865281:294197 -k1,7960:11541266,44865281:294197 -k1,7960:16871249,44865281:294197 -k1,7960:20087696,44865281:294197 -k1,7960:20913390,44865281:294197 -k1,7960:23184809,44865281:294198 -k1,7960:25177044,44865281:294197 -k1,7960:26339593,44865281:294197 -k1,7960:28164056,44865281:294197 -k1,7960:29109681,44865281:294197 -k1,7960:31224468,44865281:294197 -k1,7962:32583029,44865281:0 -) -(1,7962:6630773,45706769:25952256,513147,134348 -k1,7960:8096337,45706769:200719 -k1,7960:8956348,45706769:200719 -k1,7960:13402488,45706769:200718 -k1,7960:14874605,45706769:200719 -k1,7960:16568890,45706769:200719 -k1,7960:18136690,45706769:200719 -k1,7960:18868906,45706769:200719 -k1,7960:22066586,45706769:200719 -k1,7960:25742023,45706769:200718 -k1,7960:26594170,45706769:200719 -k1,7960:30964945,45706769:200719 -k1,7960:32583029,45706769:0 -) -] -(1,7962:32583029,45706769:0,0,0 -g1,7962:32583029,45706769 -) -) -] -(1,7962:6630773,47279633:25952256,0,0 -h1,7962:6630773,47279633:25952256,0,0 -) -] -(1,7962:4262630,4025873:0,0,0 -[1,7962:-473656,4025873:0,0,0 -(1,7962:-473656,-710413:0,0,0 -(1,7962:-473656,-710413:0,0,0 -g1,7962:-473656,-710413 -) -g1,7962:-473656,-710413 -) -] -) -] -!24680 -}151 -Input:1231:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1232:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1233:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!288 -{152 -[1,8005:4262630,47279633:28320399,43253760,0 -(1,8005:4262630,4025873:0,0,0 -[1,8005:-473656,4025873:0,0,0 -(1,8005:-473656,-710413:0,0,0 -(1,8005:-473656,-644877:0,0,0 -k1,8005:-473656,-644877:-65536 -) -(1,8005:-473656,4736287:0,0,0 -k1,8005:-473656,4736287:5209943 -) -g1,8005:-473656,-710413 -) -] -) -[1,8005:6630773,47279633:25952256,43253760,0 -[1,8005:6630773,4812305:25952256,786432,0 -(1,8005:6630773,4812305:25952256,505283,11795 -(1,8005:6630773,4812305:25952256,505283,11795 -g1,8005:3078558,4812305 -[1,8005:3078558,4812305:0,0,0 -(1,8005:3078558,2439708:0,1703936,0 -k1,8005:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,8005:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,8005:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,8005:3078558,4812305:0,0,0 -(1,8005:3078558,2439708:0,1703936,0 -g1,8005:29030814,2439708 -g1,8005:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,8005:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,8005:37855564,2439708:1179648,16384,0 -) -) -k1,8005:3078556,2439708:-34777008 -) -] -[1,8005:3078558,4812305:0,0,0 -(1,8005:3078558,49800853:0,16384,2228224 -k1,8005:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,8005:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,8005:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,8005:3078558,4812305:0,0,0 -(1,8005:3078558,49800853:0,16384,2228224 -g1,8005:29030814,49800853 -g1,8005:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,8005:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,8005:37855564,49800853:1179648,16384,0 -) -) -k1,8005:3078556,49800853:-34777008 -) -] -g1,8005:6630773,4812305 -g1,8005:6630773,4812305 -g1,8005:10410889,4812305 -k1,8005:31387653,4812305:20976764 -) -) -] -[1,8005:6630773,45706769:25952256,40108032,0 -(1,8005:6630773,45706769:25952256,40108032,0 -(1,8005:6630773,45706769:0,0,0 -g1,8005:6630773,45706769 -) -[1,8005:6630773,45706769:25952256,40108032,0 -(1,7962:6630773,6254097:25952256,505283,134348 -k1,7960:7479698,6254097:232887 -k1,7960:8483288,6254097:232887 -k1,7960:12325243,6254097:232887 -k1,7960:13241014,6254097:232886 -k1,7960:16284740,6254097:232887 -k1,7960:19044040,6254097:232887 -k1,7960:19928355,6254097:232887 -k1,7960:23096600,6254097:232887 -k1,7960:23945525,6254097:232887 -k1,7960:24534272,6254097:232887 -k1,7960:27039947,6254097:232886 -k1,7960:29877235,6254097:232887 -k1,7960:31202607,6254097:232887 -k1,7960:31966991,6254097:232887 -k1,7960:32583029,6254097:0 -) -(1,7962:6630773,7095585:25952256,505283,134348 -k1,7960:11327665,7095585:187360 -k1,7960:12166454,7095585:187361 -k1,7960:15069626,7095585:187360 -k1,7960:18082898,7095585:187360 -k1,7960:18886297,7095585:187361 -k1,7960:22354389,7095585:187360 -k1,7960:25587862,7095585:187360 -k1,7960:27510616,7095585:187361 -k1,7960:30671344,7095585:187360 -k1,7962:32583029,7095585:0 -) -(1,7962:6630773,7937073:25952256,505283,7863 -g1,7960:9416708,7937073 -k1,7962:32583028,7937073:23166320 -g1,7962:32583028,7937073 -) -(1,7963:6630773,10744641:25952256,32768,229376 -(1,7963:6630773,10744641:0,32768,229376 -(1,7963:6630773,10744641:5505024,32768,229376 -r1,8005:12135797,10744641:5505024,262144,229376 -) -k1,7963:6630773,10744641:-5505024 -) -(1,7963:6630773,10744641:25952256,32768,0 -r1,8005:32583029,10744641:25952256,32768,0 -) -) -(1,7963:6630773,12348969:25952256,606339,14155 -(1,7963:6630773,12348969:1974731,575668,14155 -g1,7963:6630773,12348969 -g1,7963:8605504,12348969 -) -k1,7963:32583030,12348969:19510592 -g1,7963:32583030,12348969 -) -(1,7966:6630773,13583673:25952256,505283,126483 -k1,7965:8249512,13583673:153354 -k1,7965:11871031,13583673:153354 -k1,7965:15449296,13583673:153354 -k1,7965:16794095,13583673:153354 -k1,7965:21852819,13583673:153354 -k1,7965:24091529,13583673:153354 -k1,7965:28114129,13583673:153354 -k1,7965:29458928,13583673:153354 -k1,7965:32583029,13583673:0 -) -(1,7966:6630773,14425161:25952256,513147,126483 -k1,7965:9661158,14425161:245760 -k1,7965:10854569,14425161:245760 -k1,7965:12119414,14425161:245760 -k1,7965:15744210,14425161:245760 -k1,7965:16649262,14425161:245760 -k1,7965:17914106,14425161:245759 -k1,7965:20386779,14425161:245760 -k1,7965:24113156,14425161:245760 -k1,7965:26994119,14425161:245760 -k1,7965:28836336,14425161:245760 -k1,7965:29741388,14425161:245760 -k1,7965:32583029,14425161:0 -) -(1,7966:6630773,15266649:25952256,513147,134348 -k1,7965:7840896,15266649:218563 -k1,7965:10843427,15266649:218562 -k1,7965:11678028,15266649:218563 -k1,7965:13330518,15266649:218562 -k1,7965:14137594,15266649:218563 -k1,7965:15552843,15266649:218562 -k1,7965:18533749,15266649:218563 -k1,7965:21536936,15266649:218562 -k1,7965:22747059,15266649:218563 -k1,7965:25554293,15266649:218562 -k1,7965:26534384,15266649:218563 -k1,7965:29180400,15266649:218562 -k1,7965:32583029,15266649:0 -) -(1,7966:6630773,16108137:25952256,513147,134348 -k1,7965:7506287,16108137:224086 -k1,7965:8086233,16108137:224086 -k1,7965:10183339,16108137:224087 -k1,7965:13276591,16108137:224086 -k1,7965:15275392,16108137:224086 -k1,7965:18510202,16108137:224086 -k1,7965:21188612,16108137:224087 -k1,7965:21944195,16108137:224086 -k1,7965:24022950,16108137:224086 -k1,7965:25056406,16108137:224086 -k1,7965:26299577,16108137:224086 -k1,7965:28445835,16108137:224087 -k1,7965:30680566,16108137:224086 -k1,7965:31563944,16108137:224086 -k1,7965:32583029,16108137:0 -) -(1,7966:6630773,16949625:25952256,513147,134348 -k1,7965:11130713,16949625:254518 -k1,7965:16290601,16949625:254518 -k1,7965:19329743,16949625:254517 -k1,7965:20575821,16949625:254518 -k1,7965:22685008,16949625:254518 -k1,7965:23748896,16949625:254518 -k1,7965:25022499,16949625:254518 -k1,7965:28006592,16949625:254518 -k1,7965:28943994,16949625:254517 -k1,7965:30650134,16949625:254518 -k1,7965:31563944,16949625:254518 -k1,7965:32583029,16949625:0 -) -(1,7966:6630773,17791113:25952256,513147,126483 -k1,7965:11047972,17791113:171777 -k1,7965:12411194,17791113:171777 -k1,7965:16808077,17791113:171777 -k1,7965:18192925,17791113:171777 -k1,7965:20912087,17791113:171778 -k1,7965:21845392,17791113:171777 -k1,7965:26088921,17791113:171777 -k1,7965:27654649,17791113:171777 -k1,7965:30398714,17791113:171777 -k1,7966:32583029,17791113:0 -k1,7966:32583029,17791113:0 -) -(1,7968:6630773,18632601:25952256,513147,126483 -h1,7967:6630773,18632601:983040,0,0 -k1,7967:8843655,18632601:276293 -k1,7967:10426081,18632601:276293 -k1,7967:12078630,18632601:276293 -k1,7967:13546369,18632601:276294 -k1,7967:16191133,18632601:276293 -k1,7967:17486511,18632601:276293 -k1,7967:19152167,18632601:276293 -k1,7967:20363003,18632601:276293 -(1,7967:20363003,18632601:0,414482,115847 -r1,8005:21776404,18632601:1413401,530329,115847 -k1,7967:20363003,18632601:-1413401 -) -(1,7967:20363003,18632601:1413401,414482,115847 -k1,7967:20363003,18632601:3277 -h1,7967:21773127,18632601:0,411205,112570 -) -k1,7967:22052697,18632601:276293 -k1,7967:23896612,18632601:276294 -k1,7967:24587670,18632601:276215 -k1,7967:26749434,18632601:276293 -k1,7967:27894080,18632601:276294 -k1,7967:29302835,18632601:276293 -k1,7967:30671613,18632601:276293 -k1,7967:31563944,18632601:276293 -k1,7967:32583029,18632601:0 -) -(1,7968:6630773,19474089:25952256,513147,134348 -k1,7967:9750882,19474089:285022 -k1,7967:11910234,19474089:285022 -k1,7967:13584618,19474089:285021 -k1,7967:16131287,19474089:285022 -k1,7967:17075601,19474089:285022 -k1,7967:20174084,19474089:285022 -k1,7967:23450169,19474089:285022 -k1,7967:24682842,19474089:285022 -k1,7967:26275962,19474089:285021 -k1,7967:28922902,19474089:285022 -k1,7967:29820686,19474089:285022 -k1,7967:32583029,19474089:0 -) -(1,7968:6630773,20315577:25952256,505283,134348 -g1,7967:9026769,20315577 -g1,7967:9912160,20315577 -g1,7967:13201412,20315577 -g1,7967:14016679,20315577 -g1,7967:15234993,20315577 -g1,7967:20260293,20315577 -g1,7967:23243491,20315577 -g1,7967:24204248,20315577 -g1,7967:27048510,20315577 -(1,7967:27048510,20315577:0,452978,115847 -r1,8005:30572182,20315577:3523672,568825,115847 -k1,7967:27048510,20315577:-3523672 -) -(1,7967:27048510,20315577:3523672,452978,115847 -k1,7967:27048510,20315577:3277 -h1,7967:30568905,20315577:0,411205,112570 -) -k1,7968:32583029,20315577:1630083 -g1,7968:32583029,20315577 -) -v1,7970:6630773,21416516:0,393216,0 -(1,7975:6630773,22391499:25952256,1368199,196608 -g1,7975:6630773,22391499 -g1,7975:6630773,22391499 -g1,7975:6434165,22391499 -(1,7975:6434165,22391499:0,1368199,196608 -r1,8005:32779637,22391499:26345472,1564807,196608 -k1,7975:6434165,22391499:-26345472 -) -(1,7975:6434165,22391499:26345472,1368199,196608 -[1,7975:6630773,22391499:25952256,1171591,0 -(1,7972:6630773,21624134:25952256,404226,76021 -(1,7971:6630773,21624134:0,0,0 -g1,7971:6630773,21624134 -g1,7971:6630773,21624134 -g1,7971:6303093,21624134 -(1,7971:6303093,21624134:0,0,0 -) -g1,7971:6630773,21624134 -) -k1,7972:6630773,21624134:0 -h1,7972:9792230,21624134:0,0,0 -k1,7972:32583030,21624134:22790800 -g1,7972:32583030,21624134 -) -(1,7973:6630773,22290312:25952256,404226,101187 -h1,7973:6630773,22290312:0,0,0 -k1,7973:6630773,22290312:0 -h1,7973:9792230,22290312:0,0,0 -k1,7973:32583030,22290312:22790800 -g1,7973:32583030,22290312 -) -] -) -g1,7975:32583029,22391499 -g1,7975:6630773,22391499 -g1,7975:6630773,22391499 -g1,7975:32583029,22391499 -g1,7975:32583029,22391499 -) -h1,7975:6630773,22588107:0,0,0 -(1,7978:6630773,37102388:25952256,14013984,0 -k1,7978:12599879,37102388:5969106 -h1,7977:12599879,37102388:0,0,0 -(1,7977:12599879,37102388:14014044,14013984,0 -(1,7977:12599879,37102388:14014019,14014019,0 -(1,7977:12599879,37102388:14014019,14014019,0 -(1,7977:12599879,37102388:0,14014019,0 -(1,7977:12599879,37102388:0,18945146,0 -(1,7977:12599879,37102388:18945146,18945146,0 -) -k1,7977:12599879,37102388:-18945146 -) -) -g1,7977:26613898,37102388 -) -) -) -g1,7978:26613923,37102388 -k1,7978:32583029,37102388:5969106 -) -(1,7985:6630773,39193648:25952256,555811,12975 -(1,7985:6630773,39193648:2450326,527696,12975 -g1,7985:6630773,39193648 -g1,7985:9081099,39193648 -) -g1,7985:12750460,39193648 -$1,7985:12750460,39193648 -$1,7985:13239948,39193648 -k1,7985:32583028,39193648:19343080 -g1,7985:32583028,39193648 -) -(1,7990:6630773,40428352:25952256,513147,134348 -k1,7989:9666434,40428352:245793 -(1,7989:9666434,40428352:0,452978,115847 -r1,8005:11431547,40428352:1765113,568825,115847 -k1,7989:9666434,40428352:-1765113 -) -(1,7989:9666434,40428352:1765113,452978,115847 -k1,7989:9666434,40428352:3277 -h1,7989:11428270,40428352:0,411205,112570 -) -k1,7989:11677339,40428352:245792 -k1,7989:13027414,40428352:245793 -k1,7989:14020973,40428352:245793 -k1,7989:16134541,40428352:245792 -k1,7989:17774285,40428352:245793 -k1,7989:19192517,40428352:245793 -k1,7989:21746488,40428352:245793 -k1,7989:22651572,40428352:245792 -k1,7989:23916450,40428352:245793 -k1,7989:25815716,40428352:245793 -k1,7989:28074774,40428352:245792 -k1,7989:29006729,40428352:245793 -k1,7989:32583029,40428352:0 -) -(1,7990:6630773,41269840:25952256,513147,126483 -k1,7989:7474315,41269840:215707 -k1,7989:8709107,41269840:215707 -k1,7989:10291895,41269840:215707 -k1,7989:11166894,41269840:215707 -k1,7989:12401686,41269840:215707 -k1,7989:16085558,41269840:215707 -k1,7989:18808017,41269840:215707 -k1,7989:21651717,41269840:215706 -k1,7989:22735776,41269840:215707 -k1,7989:23766751,41269840:215707 -k1,7989:25048729,41269840:215707 -k1,7989:26794702,41269840:215707 -k1,7989:27661837,41269840:215707 -k1,7989:30307619,41269840:215707 -k1,7989:32583029,41269840:0 -) -(1,7990:6630773,42111328:25952256,513147,134348 -g1,7989:10232631,42111328 -g1,7989:11118022,42111328 -g1,7989:12520492,42111328 -g1,7989:15174044,42111328 -g1,7989:15904770,42111328 -g1,7989:17123084,42111328 -g1,7989:19587893,42111328 -k1,7990:32583029,42111328:11664755 -g1,7990:32583029,42111328 -) -v1,7992:6630773,43212267:0,393216,0 -(1,7999:6630773,44233912:25952256,1414861,196608 -g1,7999:6630773,44233912 -g1,7999:6630773,44233912 -g1,7999:6434165,44233912 -(1,7999:6434165,44233912:0,1414861,196608 -r1,8005:32779637,44233912:26345472,1611469,196608 -k1,7999:6434165,44233912:-26345472 -) -(1,7999:6434165,44233912:26345472,1414861,196608 -[1,7999:6630773,44233912:25952256,1218253,0 -(1,7994:6630773,43426177:25952256,410518,101187 -(1,7993:6630773,43426177:0,0,0 -g1,7993:6630773,43426177 -g1,7993:6630773,43426177 -g1,7993:6303093,43426177 -(1,7993:6303093,43426177:0,0,0 -) -g1,7993:6630773,43426177 -) -k1,7994:6630773,43426177:0 -g1,7994:8527648,43426177 -g1,7994:9159940,43426177 -g1,7994:12953689,43426177 -g1,7994:13585981,43426177 -g1,7994:14218273,43426177 -h1,7994:17379730,43426177:0,0,0 -k1,7994:32583029,43426177:15203299 -g1,7994:32583029,43426177 -) -(1,7998:6630773,44157891:25952256,404226,76021 -(1,7996:6630773,44157891:0,0,0 -g1,7996:6630773,44157891 -g1,7996:6630773,44157891 -g1,7996:6303093,44157891 -(1,7996:6303093,44157891:0,0,0 -) -g1,7996:6630773,44157891 -) -g1,7998:7579210,44157891 -g1,7998:8843793,44157891 -h1,7998:11689104,44157891:0,0,0 -k1,7998:32583028,44157891:20893924 -g1,7998:32583028,44157891 -) -] -) -g1,7999:32583029,44233912 -g1,7999:6630773,44233912 -g1,7999:6630773,44233912 -g1,7999:32583029,44233912 -g1,7999:32583029,44233912 -) -h1,7999:6630773,44430520:0,0,0 -(1,8003:6630773,45706769:25952256,513147,134348 -h1,8002:6630773,45706769:983040,0,0 -k1,8002:8382026,45706769:298320 -k1,8002:9211843,45706769:298320 -k1,8002:10795979,45706769:298320 -k1,8002:13724258,45706769:298319 -k1,8002:14674006,45706769:298320 -k1,8002:16409531,45706769:298320 -k1,8002:17063711,45706769:298320 -k1,8002:18751394,45706769:298320 -k1,8002:20926010,45706769:298320 -k1,8002:22114309,45706769:298320 -k1,8002:22768489,45706769:298320 -k1,8002:25361223,45706769:298319 -k1,8002:26345705,45706769:298320 -k1,8002:27663110,45706769:298320 -k1,8002:29337031,45706769:298320 -k1,8002:32583029,45706769:0 -) -] -(1,8005:32583029,45706769:0,0,0 -g1,8005:32583029,45706769 -) -) -] -(1,8005:6630773,47279633:25952256,0,0 -h1,8005:6630773,47279633:25952256,0,0 -) -] -(1,8005:4262630,4025873:0,0,0 -[1,8005:-473656,4025873:0,0,0 -(1,8005:-473656,-710413:0,0,0 -(1,8005:-473656,-710413:0,0,0 -g1,8005:-473656,-710413 -) -g1,8005:-473656,-710413 -) -] -) -] -!14929 -}152 -Input:1234:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1235:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1236:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1237:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1238:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1239:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1240:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1241:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1242:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1243:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1244:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1245:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1246:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1247:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1248:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1249:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1250:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1576 -{153 -[1,8079:4262630,47279633:28320399,43253760,0 -(1,8079:4262630,4025873:0,0,0 -[1,8079:-473656,4025873:0,0,0 -(1,8079:-473656,-710413:0,0,0 -(1,8079:-473656,-644877:0,0,0 -k1,8079:-473656,-644877:-65536 -) -(1,8079:-473656,4736287:0,0,0 -k1,8079:-473656,4736287:5209943 -) -g1,8079:-473656,-710413 -) -] -) -[1,8079:6630773,47279633:25952256,43253760,0 -[1,8079:6630773,4812305:25952256,786432,0 -(1,8079:6630773,4812305:25952256,505283,134348 -(1,8079:6630773,4812305:25952256,505283,134348 -g1,8079:3078558,4812305 -[1,8079:3078558,4812305:0,0,0 -(1,8079:3078558,2439708:0,1703936,0 -k1,8079:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,8079:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,8079:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,8079:3078558,4812305:0,0,0 -(1,8079:3078558,2439708:0,1703936,0 -g1,8079:29030814,2439708 -g1,8079:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,8079:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,8079:37855564,2439708:1179648,16384,0 -) -) -k1,8079:3078556,2439708:-34777008 -) -] -[1,8079:3078558,4812305:0,0,0 -(1,8079:3078558,49800853:0,16384,2228224 -k1,8079:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,8079:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,8079:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,8079:3078558,4812305:0,0,0 -(1,8079:3078558,49800853:0,16384,2228224 -g1,8079:29030814,49800853 -g1,8079:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,8079:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,8079:37855564,49800853:1179648,16384,0 -) -) -k1,8079:3078556,49800853:-34777008 -) -] -g1,8079:6630773,4812305 -k1,8079:24502442,4812305:16676292 -g1,8079:25889183,4812305 -g1,8079:26537989,4812305 -g1,8079:29852144,4812305 -) -) -] -[1,8079:6630773,45706769:25952256,40108032,0 -(1,8079:6630773,45706769:25952256,40108032,0 -(1,8079:6630773,45706769:0,0,0 -g1,8079:6630773,45706769 -) -[1,8079:6630773,45706769:25952256,40108032,0 -(1,8003:6630773,6254097:25952256,513147,126483 -k1,8002:8610414,6254097:196406 -k1,8002:9825905,6254097:196406 -k1,8002:11411675,6254097:196407 -k1,8002:13484377,6254097:196406 -k1,8002:14570762,6254097:196406 -k1,8002:17061583,6254097:196406 -k1,8002:19960039,6254097:196407 -k1,8002:21532046,6254097:196406 -k1,8002:22900891,6254097:196406 -k1,8002:25984158,6254097:196406 -k1,8002:27199650,6254097:196407 -k1,8002:30174783,6254097:196406 -k1,8002:32051532,6254097:196406 -k1,8002:32583029,6254097:0 -) -(1,8003:6630773,7095585:25952256,513147,134348 -g1,8002:10134983,7095585 -g1,8002:10985640,7095585 -g1,8002:12469375,7095585 -g1,8002:13327896,7095585 -g1,8002:15954579,7095585 -g1,8002:17172893,7095585 -g1,8002:18544561,7095585 -g1,8002:21456981,7095585 -g1,8002:25415355,7095585 -g1,8002:26300746,7095585 -k1,8003:32583029,7095585:3800435 -g1,8003:32583029,7095585 -) -v1,8005:6630773,8238035:0,393216,0 -(1,8014:6630773,10519159:25952256,2674340,196608 -g1,8014:6630773,10519159 -g1,8014:6630773,10519159 -g1,8014:6434165,10519159 -(1,8014:6434165,10519159:0,2674340,196608 -r1,8079:32779637,10519159:26345472,2870948,196608 -k1,8014:6434165,10519159:-26345472 -) -(1,8014:6434165,10519159:26345472,2674340,196608 -[1,8014:6630773,10519159:25952256,2477732,0 -(1,8007:6630773,8445653:25952256,404226,76021 -(1,8006:6630773,8445653:0,0,0 -g1,8006:6630773,8445653 -g1,8006:6630773,8445653 -g1,8006:6303093,8445653 -(1,8006:6303093,8445653:0,0,0 -) -g1,8006:6630773,8445653 -) -k1,8007:6630773,8445653:0 -h1,8007:9476084,8445653:0,0,0 -k1,8007:32583028,8445653:23106944 -g1,8007:32583028,8445653 -) -(1,8013:6630773,9177367:25952256,404226,101187 -(1,8009:6630773,9177367:0,0,0 -g1,8009:6630773,9177367 -g1,8009:6630773,9177367 -g1,8009:6303093,9177367 -(1,8009:6303093,9177367:0,0,0 -) -g1,8009:6630773,9177367 -) -g1,8013:7579210,9177367 -g1,8013:7895356,9177367 -g1,8013:8211502,9177367 -g1,8013:8527648,9177367 -g1,8013:8843794,9177367 -g1,8013:9159940,9177367 -g1,8013:9476086,9177367 -g1,8013:9792232,9177367 -g1,8013:10108378,9177367 -g1,8013:10424524,9177367 -g1,8013:10740670,9177367 -g1,8013:12637544,9177367 -g1,8013:12953690,9177367 -g1,8013:13269836,9177367 -g1,8013:13585982,9177367 -g1,8013:13902128,9177367 -g1,8013:14218274,9177367 -h1,8013:15482857,9177367:0,0,0 -k1,8013:32583029,9177367:17100172 -g1,8013:32583029,9177367 -) -(1,8013:6630773,9843545:25952256,404226,101187 -h1,8013:6630773,9843545:0,0,0 -g1,8013:7579210,9843545 -g1,8013:9476084,9843545 -g1,8013:12637541,9843545 -h1,8013:15482852,9843545:0,0,0 -k1,8013:32583028,9843545:17100176 -g1,8013:32583028,9843545 -) -(1,8013:6630773,10509723:25952256,404226,9436 -h1,8013:6630773,10509723:0,0,0 -g1,8013:7579210,10509723 -g1,8013:9159939,10509723 -g1,8013:9476085,10509723 -g1,8013:12637542,10509723 -h1,8013:15482853,10509723:0,0,0 -k1,8013:32583029,10509723:17100176 -g1,8013:32583029,10509723 -) -] -) -g1,8014:32583029,10519159 -g1,8014:6630773,10519159 -g1,8014:6630773,10519159 -g1,8014:32583029,10519159 -g1,8014:32583029,10519159 -) -h1,8014:6630773,10715767:0,0,0 -(1,8018:6630773,12033527:25952256,513147,102891 -h1,8017:6630773,12033527:983040,0,0 -k1,8017:9650618,12033527:253570 -k1,8017:10923272,12033527:253569 -k1,8017:12566205,12033527:253570 -k1,8017:14696071,12033527:253570 -k1,8017:15632525,12033527:253569 -k1,8017:17973417,12033527:253570 -k1,8017:20929036,12033527:253570 -k1,8017:22832802,12033527:253569 -k1,8017:24528819,12033527:253570 -k1,8017:25954828,12033527:253570 -k1,8017:28828526,12033527:253569 -k1,8017:31563944,12033527:253570 -k1,8017:32583029,12033527:0 -) -(1,8018:6630773,12875015:25952256,513147,126483 -k1,8017:9605393,12875015:195893 -k1,8017:11481629,12875015:195893 -k1,8017:12209019,12875015:195893 -k1,8017:12760772,12875015:195893 -k1,8017:15043987,12875015:195893 -k1,8017:15899171,12875015:195892 -k1,8017:19141177,12875015:195893 -k1,8017:19996362,12875015:195893 -k1,8017:22858260,12875015:195893 -k1,8017:26865072,12875015:195893 -k1,8017:29696168,12875015:195893 -k1,8017:32583029,12875015:0 -) -(1,8018:6630773,13716503:25952256,513147,134348 -k1,8017:7842332,13716503:258010 -k1,8017:9498226,13716503:258011 -k1,8017:10848721,13716503:258010 -(1,8017:10848721,13716503:0,452978,115847 -r1,8079:13317258,13716503:2468537,568825,115847 -k1,8017:10848721,13716503:-2468537 -) -(1,8017:10848721,13716503:2468537,452978,115847 -k1,8017:10848721,13716503:3277 -h1,8017:13313981,13716503:0,411205,112570 -) -k1,8017:13575268,13716503:258010 -k1,8017:16923302,13716503:258011 -k1,8017:19036636,13716503:258010 -k1,8017:19946074,13716503:258010 -k1,8017:22133465,13716503:258011 -k1,8017:22747335,13716503:258010 -k1,8017:24394053,13716503:258010 -k1,8017:26629941,13716503:258011 -k1,8017:27547243,13716503:258010 -k1,8017:32583029,13716503:0 -) -(1,8018:6630773,14557991:25952256,513147,115847 -k1,8017:8794653,14557991:153235 -k1,8017:10948703,14557991:153236 -k1,8017:12669559,14557991:153235 -k1,8017:13841879,14557991:153235 -k1,8017:16351134,14557991:153236 -k1,8017:20285796,14557991:153235 -k1,8017:21630476,14557991:153235 -(1,8017:21630476,14557991:0,452978,115847 -r1,8079:24450725,14557991:2820249,568825,115847 -k1,8017:21630476,14557991:-2820249 -) -(1,8017:21630476,14557991:2820249,452978,115847 -k1,8017:21630476,14557991:3277 -h1,8017:24447448,14557991:0,411205,112570 -) -k1,8017:24603960,14557991:153235 -k1,8017:25408624,14557991:153236 -k1,8017:27954578,14557991:153235 -k1,8017:28565910,14557991:153235 -k1,8017:29986612,14557991:153236 -k1,8017:30495707,14557991:153235 -k1,8017:32583029,14557991:0 -) -(1,8018:6630773,15399479:25952256,513147,134348 -g1,8017:8223953,15399479 -g1,8017:10077966,15399479 -g1,8017:12990386,15399479 -g1,8017:14421692,15399479 -g1,8017:16119074,15399479 -h1,8017:16915992,15399479:0,0,0 -g1,8017:17115221,15399479 -g1,8017:18262101,15399479 -g1,8017:20578798,15399479 -g1,8017:22600583,15399479 -g1,8017:23214655,15399479 -k1,8018:32583029,15399479:6254103 -g1,8018:32583029,15399479 -) -v1,8020:6630773,16541928:0,393216,0 -(1,8032:6630773,20821586:25952256,4672874,196608 -g1,8032:6630773,20821586 -g1,8032:6630773,20821586 -g1,8032:6434165,20821586 -(1,8032:6434165,20821586:0,4672874,196608 -r1,8079:32779637,20821586:26345472,4869482,196608 -k1,8032:6434165,20821586:-26345472 -) -(1,8032:6434165,20821586:26345472,4672874,196608 -[1,8032:6630773,20821586:25952256,4476266,0 -(1,8022:6630773,16749546:25952256,404226,101187 -(1,8021:6630773,16749546:0,0,0 -g1,8021:6630773,16749546 -g1,8021:6630773,16749546 -g1,8021:6303093,16749546 -(1,8021:6303093,16749546:0,0,0 -) -g1,8021:6630773,16749546 -) -g1,8022:8843793,16749546 -g1,8022:9792231,16749546 -g1,8022:15482854,16749546 -g1,8022:17063583,16749546 -g1,8022:17695875,16749546 -k1,8022:17695875,16749546:0 -h1,8022:18328167,16749546:0,0,0 -k1,8022:32583029,16749546:14254862 -g1,8022:32583029,16749546 -) -(1,8023:6630773,17415724:25952256,404226,82312 -h1,8023:6630773,17415724:0,0,0 -g1,8023:6946919,17415724 -g1,8023:7263065,17415724 -g1,8023:7579211,17415724 -g1,8023:7895357,17415724 -g1,8023:8211503,17415724 -g1,8023:8527649,17415724 -g1,8023:8843795,17415724 -g1,8023:9159941,17415724 -g1,8023:9476087,17415724 -g1,8023:9792233,17415724 -g1,8023:10108379,17415724 -g1,8023:10424525,17415724 -g1,8023:10740671,17415724 -g1,8023:11056817,17415724 -g1,8023:11372963,17415724 -g1,8023:11689109,17415724 -g1,8023:12005255,17415724 -g1,8023:14850566,17415724 -g1,8023:15482858,17415724 -g1,8023:18644316,17415724 -g1,8023:19276608,17415724 -g1,8023:21173483,17415724 -g1,8023:22754212,17415724 -g1,8023:23386504,17415724 -g1,8023:25599525,17415724 -g1,8023:27180254,17415724 -h1,8023:29077128,17415724:0,0,0 -k1,8023:32583029,17415724:3505901 -g1,8023:32583029,17415724 -) -(1,8024:6630773,18081902:25952256,404226,101187 -h1,8024:6630773,18081902:0,0,0 -k1,8024:6630773,18081902:0 -h1,8024:10108375,18081902:0,0,0 -k1,8024:32583029,18081902:22474654 -g1,8024:32583029,18081902 -) -(1,8031:6630773,18813616:25952256,379060,7863 -(1,8026:6630773,18813616:0,0,0 -g1,8026:6630773,18813616 -g1,8026:6630773,18813616 -g1,8026:6303093,18813616 -(1,8026:6303093,18813616:0,0,0 -) -g1,8026:6630773,18813616 -) -g1,8031:7579210,18813616 -g1,8031:7895356,18813616 -g1,8031:8211502,18813616 -g1,8031:8527648,18813616 -g1,8031:8843794,18813616 -g1,8031:9159940,18813616 -g1,8031:9476086,18813616 -g1,8031:9792232,18813616 -g1,8031:10108378,18813616 -g1,8031:10424524,18813616 -g1,8031:10740670,18813616 -g1,8031:11056816,18813616 -g1,8031:11689108,18813616 -g1,8031:12005254,18813616 -g1,8031:12321400,18813616 -g1,8031:12637546,18813616 -g1,8031:12953692,18813616 -g1,8031:13269838,18813616 -g1,8031:13585984,18813616 -g1,8031:13902130,18813616 -g1,8031:14218276,18813616 -g1,8031:14850568,18813616 -g1,8031:15166714,18813616 -g1,8031:15482860,18813616 -g1,8031:15799006,18813616 -g1,8031:16115152,18813616 -g1,8031:16431298,18813616 -g1,8031:16747444,18813616 -g1,8031:17063590,18813616 -g1,8031:17379736,18813616 -g1,8031:17695882,18813616 -h1,8031:18012028,18813616:0,0,0 -k1,8031:32583029,18813616:14571001 -g1,8031:32583029,18813616 -) -(1,8031:6630773,19479794:25952256,388497,9436 -h1,8031:6630773,19479794:0,0,0 -g1,8031:7579210,19479794 -g1,8031:8211502,19479794 -g1,8031:11689105,19479794 -g1,8031:14850562,19479794 -h1,8031:18012019,19479794:0,0,0 -k1,8031:32583029,19479794:14571010 -g1,8031:32583029,19479794 -) -(1,8031:6630773,20145972:25952256,388497,9436 -h1,8031:6630773,20145972:0,0,0 -g1,8031:7579210,20145972 -g1,8031:8211502,20145972 -g1,8031:11689105,20145972 -g1,8031:14850562,20145972 -h1,8031:18012019,20145972:0,0,0 -k1,8031:32583029,20145972:14571010 -g1,8031:32583029,20145972 -) -(1,8031:6630773,20812150:25952256,388497,9436 -h1,8031:6630773,20812150:0,0,0 -g1,8031:7579210,20812150 -g1,8031:8211502,20812150 -g1,8031:11689105,20812150 -g1,8031:14850562,20812150 -h1,8031:18012019,20812150:0,0,0 -k1,8031:32583029,20812150:14571010 -g1,8031:32583029,20812150 -) -] -) -g1,8032:32583029,20821586 -g1,8032:6630773,20821586 -g1,8032:6630773,20821586 -g1,8032:32583029,20821586 -g1,8032:32583029,20821586 -) -h1,8032:6630773,21018194:0,0,0 -v1,8036:6630773,22812226:0,393216,0 -(1,8037:6630773,25098258:25952256,2679248,616038 -g1,8037:6630773,25098258 -(1,8037:6630773,25098258:25952256,2679248,616038 -(1,8037:6630773,25714296:25952256,3295286,0 -[1,8037:6630773,25714296:25952256,3295286,0 -(1,8037:6630773,25688082:25952256,3242858,0 -r1,8079:6656987,25688082:26214,3242858,0 -[1,8037:6656987,25688082:25899828,3242858,0 -(1,8037:6656987,25098258:25899828,2063210,0 -[1,8037:7246811,25098258:24720180,2063210,0 -(1,8037:7246811,24122422:24720180,1087374,134348 -k1,8036:8723254,24122422:266740 -k1,8036:11195936,24122422:266740 -k1,8036:12481760,24122422:266739 -k1,8036:14244687,24122422:266740 -k1,8036:15127465,24122422:266740 -k1,8036:16413290,24122422:266740 -k1,8036:18650698,24122422:266740 -k1,8036:22854186,24122422:266740 -k1,8036:24976249,24122422:266739 -k1,8036:29257069,24122422:266740 -k1,8036:29879669,24122422:266740 -k1,8036:31966991,24122422:0 -) -(1,8037:7246811,24963910:24720180,505283,134348 -g1,8036:8839991,24963910 -g1,8036:9935753,24963910 -g1,8036:12848173,24963910 -g1,8036:14238847,24963910 -g1,8036:15872004,24963910 -g1,8036:19502043,24963910 -g1,8036:20720357,24963910 -k1,8037:31966991,24963910:7262045 -g1,8037:31966991,24963910 -) -] -) -] -r1,8079:32583029,25688082:26214,3242858,0 -) -] -) -) -g1,8037:32583029,25098258 -) -h1,8037:6630773,25714296:0,0,0 -(1,8040:6630773,27032056:25952256,513147,115847 -h1,8039:6630773,27032056:983040,0,0 -k1,8039:9619605,27032056:231077 -(1,8039:9619605,27032056:0,452978,115847 -r1,8079:11384718,27032056:1765113,568825,115847 -k1,8039:9619605,27032056:-1765113 -) -(1,8039:9619605,27032056:1765113,452978,115847 -k1,8039:9619605,27032056:3277 -h1,8039:11381441,27032056:0,411205,112570 -) -k1,8039:11615795,27032056:231077 -k1,8039:14187817,27032056:231076 -k1,8039:15610339,27032056:231077 -k1,8039:18557228,27032056:231077 -k1,8039:19735956,27032056:231077 -$1,8039:19735956,27032056 -$1,8039:20180945,27032056 -k1,8039:20412022,27032056:231077 -k1,8039:21662183,27032056:231076 -k1,8039:25373877,27032056:231077 -k1,8039:29059357,27032056:231077 -(1,8039:29059357,27032056:0,452978,115847 -r1,8079:32583029,27032056:3523672,568825,115847 -k1,8039:29059357,27032056:-3523672 -) -(1,8039:29059357,27032056:3523672,452978,115847 -k1,8039:29059357,27032056:3277 -h1,8039:32579752,27032056:0,411205,112570 -) -k1,8039:32583029,27032056:0 -) -(1,8040:6630773,27873544:25952256,513147,138281 -g1,8039:8115818,27873544 -g1,8039:11433250,27873544 -g1,8039:12651564,27873544 -$1,8039:12651564,27873544 -$1,8039:12972035,27873544 -g1,8039:15238270,27873544 -$1,8039:15238270,27873544 -$1,8039:15706197,27873544 -g1,8039:17972432,27873544 -g1,8039:19363106,27873544 -g1,8039:22999698,27873544 -g1,8039:25625725,27873544 -g1,8039:26772605,27873544 -g1,8039:27990919,27873544 -k1,8040:32583029,27873544:1702628 -g1,8040:32583029,27873544 -) -v1,8042:6630773,29015993:0,393216,0 -(1,8059:6630773,36632833:25952256,8010056,196608 -g1,8059:6630773,36632833 -g1,8059:6630773,36632833 -g1,8059:6434165,36632833 -(1,8059:6434165,36632833:0,8010056,196608 -r1,8079:32779637,36632833:26345472,8206664,196608 -k1,8059:6434165,36632833:-26345472 -) -(1,8059:6434165,36632833:26345472,8010056,196608 -[1,8059:6630773,36632833:25952256,7813448,0 -(1,8044:6630773,29229903:25952256,410518,101187 -(1,8043:6630773,29229903:0,0,0 -g1,8043:6630773,29229903 -g1,8043:6630773,29229903 -g1,8043:6303093,29229903 -(1,8043:6303093,29229903:0,0,0 -) -g1,8043:6630773,29229903 -) -k1,8044:6630773,29229903:0 -g1,8044:10108376,29229903 -g1,8044:10740668,29229903 -g1,8044:14534417,29229903 -g1,8044:15166709,29229903 -g1,8044:15799001,29229903 -h1,8044:18960458,29229903:0,0,0 -k1,8044:32583029,29229903:13622571 -g1,8044:32583029,29229903 -) -(1,8058:6630773,29961617:25952256,379060,0 -(1,8046:6630773,29961617:0,0,0 -g1,8046:6630773,29961617 -g1,8046:6630773,29961617 -g1,8046:6303093,29961617 -(1,8046:6303093,29961617:0,0,0 -) -g1,8046:6630773,29961617 -) -h1,8058:7263064,29961617:0,0,0 -k1,8058:32583028,29961617:25319964 -g1,8058:32583028,29961617 -) -(1,8058:6630773,30627795:25952256,404226,101187 -h1,8058:6630773,30627795:0,0,0 -g1,8058:7579210,30627795 -g1,8058:7895356,30627795 -g1,8058:11056814,30627795 -g1,8058:15799000,30627795 -h1,8058:19276602,30627795:0,0,0 -k1,8058:32583029,30627795:13306427 -g1,8058:32583029,30627795 -) -(1,8058:6630773,31293973:25952256,379060,0 -h1,8058:6630773,31293973:0,0,0 -h1,8058:7263064,31293973:0,0,0 -k1,8058:32583028,31293973:25319964 -g1,8058:32583028,31293973 -) -(1,8058:6630773,31960151:25952256,410518,101187 -h1,8058:6630773,31960151:0,0,0 -g1,8058:7579210,31960151 -g1,8058:9476084,31960151 -g1,8058:9792230,31960151 -g1,8058:13269833,31960151 -g1,8058:14534416,31960151 -h1,8058:17379727,31960151:0,0,0 -k1,8058:32583029,31960151:15203302 -g1,8058:32583029,31960151 -) -(1,8058:6630773,32626329:25952256,410518,101187 -h1,8058:6630773,32626329:0,0,0 -g1,8058:7579210,32626329 -g1,8058:8211502,32626329 -g1,8058:8843794,32626329 -g1,8058:11056814,32626329 -g1,8058:12005251,32626329 -g1,8058:12637543,32626329 -g1,8058:13902126,32626329 -g1,8058:16431292,32626329 -g1,8058:17063584,32626329 -k1,8058:17063584,32626329:0 -h1,8058:19592749,32626329:0,0,0 -k1,8058:32583029,32626329:12990280 -g1,8058:32583029,32626329 -) -(1,8058:6630773,33292507:25952256,404226,101187 -h1,8058:6630773,33292507:0,0,0 -g1,8058:7579210,33292507 -g1,8058:11372958,33292507 -g1,8058:15166706,33292507 -g1,8058:16747435,33292507 -g1,8058:20541183,33292507 -g1,8058:21489620,33292507 -g1,8058:22754203,33292507 -g1,8058:24651077,33292507 -g1,8058:25599514,33292507 -h1,8058:25915660,33292507:0,0,0 -k1,8058:32583029,33292507:6667369 -g1,8058:32583029,33292507 -) -(1,8058:6630773,33958685:25952256,410518,101187 -h1,8058:6630773,33958685:0,0,0 -g1,8058:7579210,33958685 -g1,8058:8527647,33958685 -g1,8058:11056813,33958685 -g1,8058:14534416,33958685 -h1,8058:17379727,33958685:0,0,0 -k1,8058:32583029,33958685:15203302 -g1,8058:32583029,33958685 -) -(1,8058:6630773,34624863:25952256,388497,9436 -h1,8058:6630773,34624863:0,0,0 -g1,8058:7579210,34624863 -g1,8058:7895356,34624863 -g1,8058:11056813,34624863 -h1,8058:13902124,34624863:0,0,0 -k1,8058:32583028,34624863:18680904 -g1,8058:32583028,34624863 -) -(1,8058:6630773,35291041:25952256,404226,101187 -h1,8058:6630773,35291041:0,0,0 -g1,8058:7579210,35291041 -g1,8058:9792230,35291041 -h1,8058:12953687,35291041:0,0,0 -k1,8058:32583029,35291041:19629342 -g1,8058:32583029,35291041 -) -(1,8058:6630773,35957219:25952256,379060,6290 -h1,8058:6630773,35957219:0,0,0 -g1,8058:7579210,35957219 -g1,8058:7895356,35957219 -g1,8058:8211502,35957219 -g1,8058:8527648,35957219 -g1,8058:8843794,35957219 -g1,8058:9159940,35957219 -g1,8058:9476086,35957219 -h1,8058:10424523,35957219:0,0,0 -k1,8058:32583029,35957219:22158506 -g1,8058:32583029,35957219 -) -(1,8058:6630773,36623397:25952256,388497,9436 -h1,8058:6630773,36623397:0,0,0 -g1,8058:7579210,36623397 -h1,8058:10424521,36623397:0,0,0 -k1,8058:32583029,36623397:22158508 -g1,8058:32583029,36623397 -) -] -) -g1,8059:32583029,36632833 -g1,8059:6630773,36632833 -g1,8059:6630773,36632833 -g1,8059:32583029,36632833 -g1,8059:32583029,36632833 -) -h1,8059:6630773,36829441:0,0,0 -(1,8063:6630773,38147201:25952256,513147,134348 -h1,8062:6630773,38147201:983040,0,0 -k1,8062:8767086,38147201:335384 -k1,8062:12192492,38147201:335383 -k1,8062:14396307,38147201:335384 -k1,8062:15679341,38147201:335383 -k1,8062:18002432,38147201:335384 -k1,8062:20272438,38147201:335383 -k1,8062:21799267,38147201:335384 -$1,8062:21799267,38147201 -$1,8062:22119738,38147201 -k1,8062:24033228,38147201:335383 -(1,8062:24033228,38147201:0,452978,115847 -r1,8079:27556900,38147201:3523672,568825,115847 -k1,8062:24033228,38147201:-3523672 -) -(1,8062:24033228,38147201:3523672,452978,115847 -k1,8062:24033228,38147201:3277 -h1,8062:27553623,38147201:0,411205,112570 -) -k1,8062:27892284,38147201:335384 -k1,8062:29513484,38147201:335384 -k1,8062:32227169,38147201:335383 -k1,8063:32583029,38147201:0 -) -(1,8063:6630773,38988689:25952256,505283,134348 -(1,8062:6630773,38988689:0,459977,115847 -r1,8079:9099310,38988689:2468537,575824,115847 -k1,8062:6630773,38988689:-2468537 -) -(1,8062:6630773,38988689:2468537,459977,115847 -k1,8062:6630773,38988689:3277 -h1,8062:9096033,38988689:0,411205,112570 -) -g1,8062:9298539,38988689 -g1,8062:10868781,38988689 -(1,8062:10868781,38988689:0,452978,115847 -r1,8079:12282182,38988689:1413401,568825,115847 -k1,8062:10868781,38988689:-1413401 -) -(1,8062:10868781,38988689:1413401,452978,115847 -k1,8062:10868781,38988689:3277 -h1,8062:12278905,38988689:0,411205,112570 -) -g1,8062:12481411,38988689 -g1,8062:13366802,38988689 -k1,8063:32583029,38988689:15639927 -g1,8063:32583029,38988689 -) -v1,8065:6630773,40306449:0,393216,0 -(1,8079:6630773,45116945:25952256,5203712,589824 -g1,8079:6630773,45116945 -(1,8079:6630773,45116945:25952256,5203712,589824 -(1,8079:6630773,45706769:25952256,5793536,0 -[1,8079:6630773,45706769:25952256,5793536,0 -(1,8079:6630773,45706769:25952256,5767322,0 -r1,8079:6656987,45706769:26214,5767322,0 -[1,8079:6656987,45706769:25899828,5767322,0 -(1,8079:6656987,45116945:25899828,4587674,0 -[1,8079:7246811,45116945:24720180,4587674,0 -(1,8066:7246811,41616645:24720180,1087374,134348 -k1,8065:8637074,41616645:180560 -k1,8065:11937803,41616645:180560 -(1,8065:11937803,41616645:0,452978,115847 -r1,8079:13702916,41616645:1765113,568825,115847 -k1,8065:11937803,41616645:-1765113 -) -(1,8065:11937803,41616645:1765113,452978,115847 -k1,8065:11937803,41616645:3277 -h1,8065:13699639,41616645:0,411205,112570 -) -k1,8065:13883476,41616645:180560 -k1,8065:15255480,41616645:180559 -(1,8065:15255480,41616645:0,452978,115847 -r1,8079:18779152,41616645:3523672,568825,115847 -k1,8065:15255480,41616645:-3523672 -) -(1,8065:15255480,41616645:3523672,452978,115847 -k1,8065:15255480,41616645:3277 -h1,8065:18775875,41616645:0,411205,112570 -) -k1,8065:18959712,41616645:180560 -k1,8065:21150917,41616645:180560 -k1,8065:21746301,41616645:180541 -k1,8065:24390359,41616645:180560 -k1,8065:25855425,41616645:180560 -k1,8065:27734023,41616645:180560 -k1,8065:29649976,41616645:180560 -k1,8065:30245360,41616645:180541 -k1,8066:31966991,41616645:0 -) -(1,8066:7246811,42458133:24720180,505283,134348 -k1,8065:9905071,42458133:239981 -k1,8065:11123504,42458133:239980 -k1,8065:15680342,42458133:239981 -k1,8065:18870754,42458133:239981 -k1,8065:19920105,42458133:239981 -k1,8065:21179170,42458133:239980 -k1,8065:23654584,42458133:239981 -k1,8065:25165963,42458133:239981 -k1,8065:27586327,42458133:239981 -k1,8065:28574073,42458133:239980 -k1,8065:30682485,42458133:239981 -k1,8066:31966991,42458133:0 -) -(1,8066:7246811,43299621:24720180,513147,126483 -(1,8065:7246811,43299621:0,452978,115847 -r1,8079:9715348,43299621:2468537,568825,115847 -k1,8065:7246811,43299621:-2468537 -) -(1,8065:7246811,43299621:2468537,452978,115847 -k1,8065:7246811,43299621:3277 -h1,8065:9712071,43299621:0,411205,112570 -) -k1,8065:9865921,43299621:150573 -k1,8065:12801118,43299621:150572 -k1,8065:13766959,43299621:150573 -k1,8065:14983803,43299621:150573 -k1,8065:18649726,43299621:150572 -k1,8065:21095370,43299621:150573 -k1,8065:22012058,43299621:150572 -k1,8065:23181716,43299621:150573 -k1,8065:27139275,43299621:150573 -k1,8065:30429677,43299621:150572 -k1,8065:31196288,43299621:150573 -k1,8066:31966991,43299621:0 -) -(1,8066:7246811,44141109:24720180,513147,134348 -k1,8065:7814613,44141109:152959 -k1,8065:10100814,44141109:153004 -k1,8065:11634663,44141109:153005 -k1,8065:12319165,44141109:153005 -k1,8065:14634857,44141109:153004 -k1,8065:16917127,44141109:153005 -k1,8065:18089217,44141109:153005 -k1,8065:19609303,44141109:153005 -k1,8065:20709958,44141109:153004 -k1,8065:23549284,44141109:153005 -k1,8065:25992117,44141109:153005 -k1,8065:27291346,44141109:153004 -k1,8065:29188264,44141109:153005 -k1,8065:31966991,44141109:0 -) -(1,8066:7246811,44982597:24720180,513147,134348 -k1,8065:8180148,44982597:171809 -k1,8065:8766774,44982597:171783 -k1,8065:11964380,44982597:171809 -k1,8065:16559869,44982597:171809 -k1,8065:19815803,44982597:171810 -k1,8065:21683028,44982597:171809 -k1,8065:22672727,44982597:171810 -k1,8065:24238487,44982597:171809 -k1,8065:25542104,44982597:171810 -k1,8065:26128729,44982597:171782 -k1,8065:28260064,44982597:171809 -k1,8065:29300226,44982597:171810 -k1,8065:30576317,44982597:171809 -k1,8065:31966991,44982597:0 -) -] -) -] -r1,8079:32583029,45706769:26214,5767322,0 -) -] -) -) -g1,8079:32583029,45116945 -) -] -(1,8079:32583029,45706769:0,0,0 -g1,8079:32583029,45706769 -) -) -] -(1,8079:6630773,47279633:25952256,0,0 -h1,8079:6630773,47279633:25952256,0,0 -) -] -(1,8079:4262630,4025873:0,0,0 -[1,8079:-473656,4025873:0,0,0 -(1,8079:-473656,-710413:0,0,0 -(1,8079:-473656,-710413:0,0,0 -g1,8079:-473656,-710413 -) -g1,8079:-473656,-710413 -) -] -) -] -!25294 -}153 -Input:1251:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1252:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1253:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1254:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1255:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1256:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!564 -{154 -[1,8116:4262630,47279633:28320399,43253760,0 -(1,8116:4262630,4025873:0,0,0 -[1,8116:-473656,4025873:0,0,0 -(1,8116:-473656,-710413:0,0,0 -(1,8116:-473656,-644877:0,0,0 -k1,8116:-473656,-644877:-65536 -) -(1,8116:-473656,4736287:0,0,0 -k1,8116:-473656,4736287:5209943 -) -g1,8116:-473656,-710413 -) -] -) -[1,8116:6630773,47279633:25952256,43253760,0 -[1,8116:6630773,4812305:25952256,786432,0 -(1,8116:6630773,4812305:25952256,513147,134348 -(1,8116:6630773,4812305:25952256,513147,134348 -g1,8116:3078558,4812305 -[1,8116:3078558,4812305:0,0,0 -(1,8116:3078558,2439708:0,1703936,0 -k1,8116:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,8116:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,8116:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,8116:3078558,4812305:0,0,0 -(1,8116:3078558,2439708:0,1703936,0 -g1,8116:29030814,2439708 -g1,8116:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,8116:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,8116:37855564,2439708:1179648,16384,0 -) -) -k1,8116:3078556,2439708:-34777008 -) -] -[1,8116:3078558,4812305:0,0,0 -(1,8116:3078558,49800853:0,16384,2228224 -k1,8116:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,8116:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,8116:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,8116:3078558,4812305:0,0,0 -(1,8116:3078558,49800853:0,16384,2228224 -g1,8116:29030814,49800853 -g1,8116:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,8116:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,8116:37855564,49800853:1179648,16384,0 -) -) -k1,8116:3078556,49800853:-34777008 -) -] -g1,8116:6630773,4812305 -g1,8116:6630773,4812305 -g1,8116:8691224,4812305 -g1,8116:10768059,4812305 -g1,8116:11570219,4812305 -g1,8116:12219025,4812305 -k1,8116:31387653,4812305:19168628 -) -) -] -[1,8116:6630773,45706769:25952256,40108032,0 -(1,8116:6630773,45706769:25952256,40108032,0 -(1,8116:6630773,45706769:0,0,0 -g1,8116:6630773,45706769 -) -[1,8116:6630773,45706769:25952256,40108032,0 -v1,8079:6630773,6254097:0,393216,0 -(1,8079:6630773,17182151:25952256,11321270,616038 -g1,8079:6630773,17182151 -(1,8079:6630773,17182151:25952256,11321270,616038 -(1,8079:6630773,17798189:25952256,11937308,0 -[1,8079:6630773,17798189:25952256,11937308,0 -(1,8079:6630773,17771975:25952256,11911094,0 -r1,8116:6656987,17771975:26214,11911094,0 -[1,8079:6656987,17771975:25899828,11911094,0 -(1,8079:6656987,17182151:25899828,10731446,0 -[1,8079:7246811,17182151:24720180,10731446,0 -(1,8066:7246811,6963852:24720180,513147,134348 -k1,8065:8486331,6963852:220435 -k1,8065:10549638,6963852:220435 -k1,8065:11429365,6963852:220435 -k1,8065:12420504,6963852:220436 -k1,8065:15195532,6963852:220435 -k1,8065:16683433,6963852:220435 -k1,8065:17259728,6963852:220435 -k1,8065:20165173,6963852:220435 -k1,8065:21203497,6963852:220435 -k1,8065:24513955,6963852:220435 -k1,8065:25350429,6963852:220436 -k1,8065:27849551,6963852:220435 -h1,8065:29218598,6963852:0,0,0 -k1,8065:29439033,6963852:220435 -k1,8065:30468838,6963852:220435 -k1,8065:31966991,6963852:0 -) -(1,8066:7246811,7805340:24720180,513147,134348 -h1,8065:8043729,7805340:0,0,0 -k1,8065:8301082,7805340:257353 -k1,8065:9506086,7805340:257353 -k1,8065:11260937,7805340:257353 -k1,8065:12386642,7805340:257353 -k1,8065:13748277,7805340:257353 -k1,8065:15513613,7805340:257353 -k1,8065:17038432,7805340:257353 -k1,8065:18314870,7805340:257353 -k1,8065:21503648,7805340:257353 -k1,8065:22420293,7805340:257353 -k1,8065:23448349,7805340:257353 -k1,8065:25665228,7805340:257353 -k1,8065:27316532,7805340:257353 -k1,8065:30028208,7805340:257353 -(1,8065:30028208,7805340:0,452978,115847 -r1,8116:31793321,7805340:1765113,568825,115847 -k1,8065:30028208,7805340:-1765113 -) -(1,8065:30028208,7805340:1765113,452978,115847 -k1,8065:30028208,7805340:3277 -h1,8065:31790044,7805340:0,411205,112570 -) -k1,8065:31966991,7805340:0 -) -(1,8066:7246811,8646828:24720180,513147,115847 -k1,8065:8407410,8646828:207050 -k1,8065:9718743,8646828:207051 -k1,8065:11018278,8646828:207050 -(1,8065:11018278,8646828:0,452978,115847 -r1,8116:13486815,8646828:2468537,568825,115847 -k1,8065:11018278,8646828:-2468537 -) -(1,8065:11018278,8646828:2468537,452978,115847 -k1,8065:11018278,8646828:3277 -h1,8065:13483538,8646828:0,411205,112570 -) -k1,8065:13693866,8646828:207051 -k1,8065:15092361,8646828:207050 -(1,8065:15092361,8646828:0,452978,115847 -r1,8116:19319457,8646828:4227096,568825,115847 -k1,8065:15092361,8646828:-4227096 -) -(1,8065:15092361,8646828:4227096,452978,115847 -k1,8065:15092361,8646828:3277 -h1,8065:19316180,8646828:0,411205,112570 -) -k1,8065:19526508,8646828:207051 -k1,8065:20384986,8646828:207050 -k1,8065:22796013,8646828:207051 -k1,8065:25278473,8646828:207050 -k1,8065:29466181,8646828:207051 -k1,8065:30947906,8646828:207050 -k1,8065:31966991,8646828:0 -) -(1,8066:7246811,9488316:24720180,505283,126483 -g1,8065:8942227,9488316 -g1,8065:9757494,9488316 -g1,8065:10975808,9488316 -g1,8065:13145705,9488316 -g1,8065:15213365,9488316 -g1,8065:16064022,9488316 -g1,8065:18936465,9488316 -g1,8065:20684310,9488316 -g1,8065:21415036,9488316 -g1,8065:24102667,9488316 -g1,8065:27080623,9488316 -g1,8065:28041380,9488316 -(1,8065:28041380,9488316:0,452978,115847 -r1,8116:29806493,9488316:1765113,568825,115847 -k1,8065:28041380,9488316:-1765113 -) -(1,8065:28041380,9488316:1765113,452978,115847 -k1,8065:28041380,9488316:3277 -h1,8065:29803216,9488316:0,411205,112570 -) -k1,8066:31966991,9488316:1986828 -g1,8066:31966991,9488316 -) -v1,8068:7246811,10678782:0,393216,0 -(1,8075:7246811,12960955:24720180,2675389,196608 -g1,8075:7246811,12960955 -g1,8075:7246811,12960955 -g1,8075:7050203,12960955 -(1,8075:7050203,12960955:0,2675389,196608 -r1,8116:32163599,12960955:25113396,2871997,196608 -k1,8075:7050203,12960955:-25113396 -) -(1,8075:7050203,12960955:25113396,2675389,196608 -[1,8075:7246811,12960955:24720180,2478781,0 -(1,8070:7246811,10886400:24720180,404226,76021 -(1,8069:7246811,10886400:0,0,0 -g1,8069:7246811,10886400 -g1,8069:7246811,10886400 -g1,8069:6919131,10886400 -(1,8069:6919131,10886400:0,0,0 -) -g1,8069:7246811,10886400 -) -g1,8070:7879103,10886400 -g1,8070:8827541,10886400 -k1,8070:8827541,10886400:0 -h1,8070:11672852,10886400:0,0,0 -k1,8070:31966992,10886400:20294140 -g1,8070:31966992,10886400 -) -(1,8071:7246811,11552578:24720180,404226,76021 -h1,8071:7246811,11552578:0,0,0 -k1,8071:7246811,11552578:0 -h1,8071:9775976,11552578:0,0,0 -k1,8071:31966992,11552578:22191016 -g1,8071:31966992,11552578 -) -(1,8072:7246811,12218756:24720180,404226,76021 -h1,8072:7246811,12218756:0,0,0 -k1,8072:7246811,12218756:0 -h1,8072:11356705,12218756:0,0,0 -k1,8072:31966991,12218756:20610286 -g1,8072:31966991,12218756 -) -(1,8073:7246811,12884934:24720180,404226,76021 -h1,8073:7246811,12884934:0,0,0 -k1,8073:7246811,12884934:0 -h1,8073:9143685,12884934:0,0,0 -k1,8073:31966991,12884934:22823306 -g1,8073:31966991,12884934 -) -] -) -g1,8075:31966991,12960955 -g1,8075:7246811,12960955 -g1,8075:7246811,12960955 -g1,8075:31966991,12960955 -g1,8075:31966991,12960955 -) -h1,8075:7246811,13157563:0,0,0 -(1,8079:7246811,14523339:24720180,513147,126483 -h1,8078:7246811,14523339:983040,0,0 -k1,8078:11159175,14523339:201060 -(1,8078:11159175,14523339:0,452978,115847 -r1,8116:13627712,14523339:2468537,568825,115847 -k1,8078:11159175,14523339:-2468537 -) -(1,8078:11159175,14523339:2468537,452978,115847 -k1,8078:11159175,14523339:3277 -h1,8078:13624435,14523339:0,411205,112570 -) -k1,8078:14002441,14523339:201059 -(1,8078:14002441,14523339:0,452978,115847 -r1,8116:18229537,14523339:4227096,568825,115847 -k1,8078:14002441,14523339:-4227096 -) -(1,8078:14002441,14523339:4227096,452978,115847 -k1,8078:14002441,14523339:3277 -h1,8078:18226260,14523339:0,411205,112570 -) -k1,8078:18430597,14523339:201060 -k1,8078:19823101,14523339:201059 -(1,8078:19823101,14523339:0,452978,115847 -r1,8116:21588214,14523339:1765113,568825,115847 -k1,8078:19823101,14523339:-1765113 -) -(1,8078:19823101,14523339:1765113,452978,115847 -k1,8078:19823101,14523339:3277 -h1,8078:21584937,14523339:0,411205,112570 -) -k1,8078:21789274,14523339:201060 -k1,8078:22981893,14523339:201059 -k1,8078:24536927,14523339:201060 -k1,8078:27594700,14523339:201059 -k1,8078:29377144,14523339:201060 -k1,8078:30862709,14523339:201059 -k1,8078:31966991,14523339:0 -) -(1,8079:7246811,15364827:24720180,505283,134348 -k1,8078:8137271,15364827:142694 -k1,8078:9793191,15364827:142694 -k1,8078:11633922,15364827:142693 -k1,8078:12644968,15364827:142694 -k1,8078:13779222,15364827:142694 -k1,8078:14537954,15364827:142694 -k1,8078:16568085,15364827:142694 -k1,8078:18533334,15364827:142693 -k1,8078:19695113,15364827:142694 -k1,8078:21227170,15364827:142694 -k1,8078:24509694,15364827:142694 -k1,8078:25268426,15364827:142694 -k1,8078:26181822,15364827:142693 -k1,8078:28284042,15364827:142694 -k1,8078:30636610,15364827:142694 -k1,8078:31966991,15364827:0 -) -(1,8079:7246811,16206315:24720180,505283,134348 -k1,8078:7893652,16206315:188744 -k1,8078:8613892,16206315:188743 -k1,8078:12328473,16206315:188744 -k1,8078:15301842,16206315:188744 -k1,8078:16509670,16206315:188743 -k1,8078:19629839,16206315:188744 -k1,8078:21830538,16206315:188744 -k1,8078:22764425,16206315:188743 -k1,8078:23604597,16206315:188744 -k1,8078:26227348,16206315:188744 -k1,8078:27435176,16206315:188743 -k1,8078:29013283,16206315:188744 -k1,8078:31966991,16206315:0 -) -(1,8079:7246811,17047803:24720180,513147,134348 -k1,8078:9854816,17047803:193659 -k1,8078:11616096,17047803:193659 -k1,8078:12828839,17047803:193658 -k1,8078:14982024,17047803:193659 -k1,8078:16873721,17047803:193659 -k1,8078:20505399,17047803:193659 -k1,8078:23585919,17047803:193659 -k1,8078:26564202,17047803:193658 -k1,8078:27749421,17047803:193659 -k1,8078:29009351,17047803:193659 -k1,8079:31966991,17047803:0 -k1,8079:31966991,17047803:0 -) -] -) -] -r1,8116:32583029,17771975:26214,11911094,0 -) -] -) -) -g1,8079:32583029,17182151 -) -h1,8079:6630773,17798189:0,0,0 -(1,8081:6630773,19889449:25952256,555811,139133 -(1,8081:6630773,19889449:2450326,534184,12975 -g1,8081:6630773,19889449 -g1,8081:9081099,19889449 -) -g1,8081:12629350,19889449 -$1,8081:12629350,19889449 -$1,8081:13144791,19889449 -g1,8081:13369711,19889449 -g1,8081:14936939,19889449 -g1,8081:19309895,19889449 -$1,8081:19309895,19889449 -$1,8081:19813801,19889449 -k1,8081:32583029,19889449:12769228 -g1,8081:32583029,19889449 -) -(1,8087:6630773,21124153:25952256,513147,126483 -k1,8086:7773109,21124153:188787 -k1,8086:9054382,21124153:188788 -k1,8086:10262254,21124153:188787 -k1,8086:12104514,21124153:188787 -k1,8086:15319099,21124153:188788 -k1,8086:16194048,21124153:188787 -k1,8086:17330486,21124153:188787 -k1,8086:20529998,21124153:188788 -$1,8086:20529998,21124153 -$1,8086:20974987,21124153 -k1,8086:21163774,21124153:188787 -k1,8086:22424730,21124153:188787 -k1,8086:25510865,21124153:188788 -k1,8086:28089095,21124153:188787 -k1,8086:29296967,21124153:188787 -k1,8086:30578240,21124153:188788 -k1,8086:31426319,21124153:188787 -k1,8086:32583029,21124153:0 -) -(1,8087:6630773,21965641:25952256,513147,134348 -g1,8086:7489294,21965641 -g1,8086:9385250,21965641 -g1,8086:12369104,21965641 -g1,8086:13329861,21965641 -g1,8086:15956544,21965641 -g1,8086:17347218,21965641 -k1,8087:32583029,21965641:11989813 -g1,8087:32583029,21965641 -) -v1,8089:6630773,23131421:0,393216,0 -(1,8102:6630773,26206318:25952256,3468113,196608 -g1,8102:6630773,26206318 -g1,8102:6630773,26206318 -g1,8102:6434165,26206318 -(1,8102:6434165,26206318:0,3468113,196608 -r1,8116:32779637,26206318:26345472,3664721,196608 -k1,8102:6434165,26206318:-26345472 -) -(1,8102:6434165,26206318:26345472,3468113,196608 -[1,8102:6630773,26206318:25952256,3271505,0 -(1,8091:6630773,23345331:25952256,410518,101187 -(1,8090:6630773,23345331:0,0,0 -g1,8090:6630773,23345331 -g1,8090:6630773,23345331 -g1,8090:6303093,23345331 -(1,8090:6303093,23345331:0,0,0 -) -g1,8090:6630773,23345331 -) -k1,8091:6630773,23345331:0 -g1,8091:8527648,23345331 -g1,8091:9159940,23345331 -g1,8091:12953689,23345331 -g1,8091:13585981,23345331 -g1,8091:14218273,23345331 -g1,8091:17695877,23345331 -g1,8091:19908897,23345331 -g1,8091:20541189,23345331 -h1,8091:23702646,23345331:0,0,0 -k1,8091:32583029,23345331:8880383 -g1,8091:32583029,23345331 -) -(1,8095:6630773,24077045:25952256,404226,76021 -(1,8093:6630773,24077045:0,0,0 -g1,8093:6630773,24077045 -g1,8093:6630773,24077045 -g1,8093:6303093,24077045 -(1,8093:6303093,24077045:0,0,0 -) -g1,8093:6630773,24077045 -) -g1,8095:7579210,24077045 -g1,8095:8843793,24077045 -h1,8095:11689104,24077045:0,0,0 -k1,8095:32583028,24077045:20893924 -g1,8095:32583028,24077045 -) -(1,8097:6630773,25398583:25952256,410518,101187 -(1,8096:6630773,25398583:0,0,0 -g1,8096:6630773,25398583 -g1,8096:6630773,25398583 -g1,8096:6303093,25398583 -(1,8096:6303093,25398583:0,0,0 -) -g1,8096:6630773,25398583 -) -k1,8097:6630773,25398583:0 -g1,8097:8527648,25398583 -g1,8097:9159940,25398583 -g1,8097:12953689,25398583 -g1,8097:13585981,25398583 -g1,8097:14218273,25398583 -g1,8097:17695877,25398583 -g1,8097:19908897,25398583 -g1,8097:20541189,25398583 -h1,8097:24018792,25398583:0,0,0 -k1,8097:32583029,25398583:8564237 -g1,8097:32583029,25398583 -) -(1,8101:6630773,26130297:25952256,404226,76021 -(1,8099:6630773,26130297:0,0,0 -g1,8099:6630773,26130297 -g1,8099:6630773,26130297 -g1,8099:6303093,26130297 -(1,8099:6303093,26130297:0,0,0 -) -g1,8099:6630773,26130297 -) -g1,8101:7579210,26130297 -g1,8101:8843793,26130297 -h1,8101:11689104,26130297:0,0,0 -k1,8101:32583028,26130297:20893924 -g1,8101:32583028,26130297 -) -] -) -g1,8102:32583029,26206318 -g1,8102:6630773,26206318 -g1,8102:6630773,26206318 -g1,8102:32583029,26206318 -g1,8102:32583029,26206318 -) -h1,8102:6630773,26402926:0,0,0 -(1,8106:6630773,27744015:25952256,513147,115847 -h1,8105:6630773,27744015:983040,0,0 -k1,8105:10655031,27744015:251350 -(1,8105:10655031,27744015:0,452978,115847 -r1,8116:14178703,27744015:3523672,568825,115847 -k1,8105:10655031,27744015:-3523672 -) -(1,8105:10655031,27744015:3523672,452978,115847 -k1,8105:10655031,27744015:3277 -h1,8105:14175426,27744015:0,411205,112570 -) -k1,8105:14603724,27744015:251351 -k1,8105:17945097,27744015:251350 -k1,8105:20225443,27744015:251351 -k1,8105:21762609,27744015:251350 -k1,8105:24025914,27744015:251350 -k1,8105:25296350,27744015:251351 -k1,8105:27572762,27744015:251350 -k1,8105:28483405,27744015:251351 -k1,8105:31189078,27744015:251350 -k1,8105:32583029,27744015:0 -) -(1,8106:6630773,28585503:25952256,513147,126483 -g1,8105:7849087,28585503 -g1,8105:9701789,28585503 -g1,8105:11985063,28585503 -g1,8105:12870454,28585503 -g1,8105:15145208,28585503 -g1,8105:16292088,28585503 -(1,8105:16292088,28585503:0,452978,115847 -r1,8116:18057201,28585503:1765113,568825,115847 -k1,8105:16292088,28585503:-1765113 -) -(1,8105:16292088,28585503:1765113,452978,115847 -k1,8105:16292088,28585503:3277 -h1,8105:18053924,28585503:0,411205,112570 -) -k1,8106:32583029,28585503:14352158 -g1,8106:32583029,28585503 -) -v1,8108:6630773,29926593:0,393216,0 -(1,8109:6630773,34737089:25952256,5203712,616038 -g1,8109:6630773,34737089 -(1,8109:6630773,34737089:25952256,5203712,616038 -(1,8109:6630773,35353127:25952256,5819750,0 -[1,8109:6630773,35353127:25952256,5819750,0 -(1,8109:6630773,35326913:25952256,5767322,0 -r1,8116:6656987,35326913:26214,5767322,0 -[1,8109:6656987,35326913:25899828,5767322,0 -(1,8109:6656987,34737089:25899828,4587674,0 -[1,8109:7246811,34737089:24720180,4587674,0 -(1,8109:7246811,31236789:24720180,1087374,134348 -k1,8108:8671838,31236789:215324 -k1,8108:11060336,31236789:215324 -k1,8108:12294744,31236789:215323 -k1,8108:15070560,31236789:215324 -k1,8108:15901922,31236789:215324 -k1,8108:17136331,31236789:215324 -k1,8108:21002010,31236789:215324 -k1,8108:25154082,31236789:215324 -k1,8108:27398400,31236789:215323 -k1,8108:28685893,31236789:215324 -k1,8108:30231598,31236789:215324 -k1,8108:31966991,31236789:0 -) -(1,8109:7246811,32078277:24720180,513147,126483 -k1,8108:12448258,32078277:296077 -k1,8108:15702630,32078277:296077 -k1,8108:17419528,32078277:296077 -k1,8108:19208515,32078277:296077 -k1,8108:20523677,32078277:296077 -k1,8108:24626740,32078277:296077 -k1,8108:26960987,32078277:296077 -k1,8108:27873102,32078277:296077 -k1,8108:29188264,32078277:296077 -k1,8109:31966991,32078277:0 -) -(1,8109:7246811,32919765:24720180,513147,134348 -(1,8108:7246811,32919765:0,452978,115847 -r1,8116:9363636,32919765:2116825,568825,115847 -k1,8108:7246811,32919765:-2116825 -) -(1,8108:7246811,32919765:2116825,452978,115847 -k1,8108:7246811,32919765:3277 -h1,8108:9360359,32919765:0,411205,112570 -) -k1,8108:9594202,32919765:230566 -k1,8108:11568027,32919765:230567 -k1,8108:15160590,32919765:230566 -k1,8108:16200526,32919765:230566 -k1,8108:17450177,32919765:230566 -k1,8108:20308738,32919765:230567 -k1,8108:21730749,32919765:230566 -k1,8108:23291696,32919765:230566 -k1,8108:24626544,32919765:230566 -k1,8108:25725463,32919765:230567 -k1,8108:28160005,32919765:230566 -k1,8108:31966991,32919765:0 -) -(1,8109:7246811,33761253:24720180,513147,7863 -k1,8108:9339137,33761253:269770 -k1,8108:10627992,33761253:269770 -k1,8108:13352085,33761253:269770 -k1,8108:15135081,33761253:269770 -k1,8108:16352502,33761253:269770 -k1,8108:20093714,33761253:269770 -k1,8108:21022776,33761253:269770 -k1,8108:22311631,33761253:269770 -k1,8108:26062018,33761253:269770 -k1,8108:27899409,33761253:269770 -k1,8108:29188264,33761253:269770 -k1,8108:31966991,33761253:0 -) -(1,8109:7246811,34602741:24720180,505283,134348 -k1,8109:31966992,34602741:22586984 -g1,8109:31966992,34602741 -) -] -) -] -r1,8116:32583029,35326913:26214,5767322,0 -) -] -) -) -g1,8109:32583029,34737089 -) -h1,8109:6630773,35353127:0,0,0 -(1,8112:6630773,38660297:25952256,32768,229376 -(1,8112:6630773,38660297:0,32768,229376 -(1,8112:6630773,38660297:5505024,32768,229376 -r1,8116:12135797,38660297:5505024,262144,229376 -) -k1,8112:6630773,38660297:-5505024 -) -(1,8112:6630773,38660297:25952256,32768,0 -r1,8116:32583029,38660297:25952256,32768,0 -) -) -(1,8112:6630773,40264625:25952256,615776,161218 -(1,8112:6630773,40264625:1974731,582746,14155 -g1,8112:6630773,40264625 -g1,8112:8605504,40264625 -) -g1,8112:11257353,40264625 -g1,8112:13884036,40264625 -g1,8112:14899320,40264625 -k1,8112:32583030,40264625:17141072 -g1,8112:32583030,40264625 -) -(1,8115:6630773,41499329:25952256,513147,134348 -k1,8114:8097910,41499329:270450 -k1,8114:10701442,41499329:270450 -k1,8114:13956402,41499329:270450 -k1,8114:14878280,41499329:270450 -k1,8114:17136437,41499329:270450 -k1,8114:19341509,41499329:270449 -k1,8114:20227997,41499329:270450 -k1,8114:20913219,41499329:270379 -k1,8114:21715166,41499329:270450 -k1,8114:22637044,41499329:270450 -k1,8114:25610198,41499329:270449 -k1,8114:26899733,41499329:270450 -k1,8114:29092354,41499329:270450 -k1,8114:31297427,41499329:270450 -k1,8114:32227169,41499329:270450 -k1,8114:32583029,41499329:0 -) -(1,8115:6630773,42340817:25952256,513147,134348 -k1,8114:8803511,42340817:185031 -k1,8114:10556163,42340817:185031 -k1,8114:11760279,42340817:185031 -k1,8114:15260776,42340817:185031 -k1,8114:16105099,42340817:185031 -k1,8114:17309216,42340817:185032 -k1,8114:19206703,42340817:185031 -k1,8114:21553111,42340817:185031 -k1,8114:22225716,42340817:185017 -k1,8114:24398454,42340817:185031 -k1,8114:26518108,42340817:185031 -k1,8114:29398635,42340817:185031 -k1,8114:32583029,42340817:0 -) -(1,8115:6630773,43182305:25952256,513147,126483 -k1,8114:9452356,43182305:199488 -k1,8114:10007704,43182305:199488 -k1,8114:13816915,43182305:199488 -k1,8114:14675695,43182305:199488 -k1,8114:15894268,43182305:199488 -k1,8114:18081463,43182305:199488 -k1,8114:18932379,43182305:199488 -k1,8114:19993010,43182305:199488 -k1,8114:20878660,43182305:199488 -k1,8114:21434008,43182305:199488 -k1,8114:23621203,43182305:199488 -(1,8114:23621203,43182305:0,459977,115847 -r1,8116:26089740,43182305:2468537,575824,115847 -k1,8114:23621203,43182305:-2468537 -) -(1,8114:23621203,43182305:2468537,459977,115847 -k1,8114:23621203,43182305:3277 -h1,8114:26086463,43182305:0,411205,112570 -) -k1,8114:26289228,43182305:199488 -k1,8114:27680161,43182305:199488 -k1,8114:28235509,43182305:199488 -k1,8114:29824360,43182305:199488 -k1,8114:31900144,43182305:199488 -k1,8114:32583029,43182305:0 -) -(1,8115:6630773,44023793:25952256,513147,7863 -k1,8114:9179770,44023793:240819 -k1,8114:10814541,44023793:240820 -k1,8114:12074445,44023793:240819 -k1,8114:13704628,44023793:240820 -k1,8114:14628332,44023793:240819 -k1,8114:18940904,44023793:240820 -k1,8114:19833151,44023793:240819 -k1,8114:21959442,44023793:240820 -k1,8114:22851689,44023793:240819 -k1,8114:23779982,44023793:240820 -k1,8114:25039886,44023793:240819 -k1,8114:27442083,44023793:240820 -k1,8114:29557232,44023793:240819 -k1,8114:32583029,44023793:0 -) -(1,8115:6630773,44865281:25952256,513147,134348 -k1,8114:7489531,44865281:242720 -k1,8114:8147051,44865281:242677 -k1,8114:10400416,44865281:242720 -k1,8114:10998996,44865281:242720 -k1,8114:13229424,44865281:242721 -k1,8114:14159617,44865281:242720 -k1,8114:16535534,44865281:242720 -k1,8114:18159098,44865281:242720 -k1,8114:20361345,44865281:242721 -k1,8114:23306114,44865281:242720 -k1,8114:24567919,44865281:242720 -k1,8114:26373673,44865281:242720 -k1,8114:27635479,44865281:242721 -k1,8114:29865906,44865281:242720 -k1,8114:32583029,44865281:0 -) -(1,8115:6630773,45706769:25952256,513147,134348 -k1,8114:7922768,45706769:192301 -k1,8114:9306515,45706769:192302 -k1,8114:10517901,45706769:192301 -k1,8114:12553074,45706769:192301 -k1,8114:13404667,45706769:192301 -k1,8114:15531592,45706769:192302 -k1,8114:16742978,45706769:192301 -k1,8114:19096656,45706769:192301 -k1,8114:20117988,45706769:192302 -k1,8114:22615190,45706769:192301 -k1,8114:24010732,45706769:192301 -k1,8114:26190740,45706769:192301 -k1,8114:28614543,45706769:192302 -k1,8114:31591469,45706769:192301 -k1,8114:32583029,45706769:0 -) -] -(1,8116:32583029,45706769:0,0,0 -g1,8116:32583029,45706769 -) -) -] -(1,8116:6630773,47279633:25952256,0,0 -h1,8116:6630773,47279633:25952256,0,0 -) -] -(1,8116:4262630,4025873:0,0,0 -[1,8116:-473656,4025873:0,0,0 -(1,8116:-473656,-710413:0,0,0 -(1,8116:-473656,-710413:0,0,0 -g1,8116:-473656,-710413 -) -g1,8116:-473656,-710413 -) -] -) -] -!22744 -}154 -Input:1257:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1258:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1259:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1260:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1261:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1262:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1263:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1264:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1265:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1266:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1267:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1268:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1269:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1270:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1271:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1272:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1484 -{155 -[1,8158:4262630,47279633:28320399,43253760,0 -(1,8158:4262630,4025873:0,0,0 -[1,8158:-473656,4025873:0,0,0 -(1,8158:-473656,-710413:0,0,0 -(1,8158:-473656,-644877:0,0,0 -k1,8158:-473656,-644877:-65536 -) -(1,8158:-473656,4736287:0,0,0 -k1,8158:-473656,4736287:5209943 -) -g1,8158:-473656,-710413 -) -] -) -[1,8158:6630773,47279633:25952256,43253760,0 -[1,8158:6630773,4812305:25952256,786432,0 -(1,8158:6630773,4812305:25952256,505283,134348 -(1,8158:6630773,4812305:25952256,505283,134348 -g1,8158:3078558,4812305 -[1,8158:3078558,4812305:0,0,0 -(1,8158:3078558,2439708:0,1703936,0 -k1,8158:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,8158:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,8158:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,8158:3078558,4812305:0,0,0 -(1,8158:3078558,2439708:0,1703936,0 -g1,8158:29030814,2439708 -g1,8158:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,8158:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,8158:37855564,2439708:1179648,16384,0 -) -) -k1,8158:3078556,2439708:-34777008 -) -] -[1,8158:3078558,4812305:0,0,0 -(1,8158:3078558,49800853:0,16384,2228224 -k1,8158:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,8158:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,8158:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,8158:3078558,4812305:0,0,0 -(1,8158:3078558,49800853:0,16384,2228224 -g1,8158:29030814,49800853 -g1,8158:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,8158:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,8158:37855564,49800853:1179648,16384,0 -) -) -k1,8158:3078556,49800853:-34777008 -) -] -g1,8158:6630773,4812305 -k1,8158:24502442,4812305:16676292 -g1,8158:25889183,4812305 -g1,8158:26537989,4812305 -g1,8158:29852144,4812305 -) -) -] -[1,8158:6630773,45706769:25952256,40108032,0 -(1,8158:6630773,45706769:25952256,40108032,0 -(1,8158:6630773,45706769:0,0,0 -g1,8158:6630773,45706769 -) -[1,8158:6630773,45706769:25952256,40108032,0 -(1,8115:6630773,6254097:25952256,513147,134348 -k1,8114:9744544,6254097:156131 -k1,8114:10528510,6254097:156131 -k1,8114:11703726,6254097:156131 -k1,8114:14476054,6254097:156131 -k1,8114:15500537,6254097:156131 -k1,8114:17317350,6254097:156131 -k1,8114:17829341,6254097:156131 -k1,8114:19798199,6254097:156132 -k1,8114:21942037,6254097:156131 -k1,8114:22959311,6254097:156131 -k1,8114:24692894,6254097:156131 -k1,8114:26242976,6254097:156131 -k1,8114:29094603,6254097:156131 -(1,8114:29094603,6254097:0,452978,115847 -r1,8158:30508004,6254097:1413401,568825,115847 -k1,8114:29094603,6254097:-1413401 -) -(1,8114:29094603,6254097:1413401,452978,115847 -k1,8114:29094603,6254097:3277 -h1,8114:30504727,6254097:0,411205,112570 -) -k1,8114:30664135,6254097:156131 -k1,8114:32583029,6254097:0 -) -(1,8115:6630773,7095585:25952256,513147,134348 -k1,8114:7824839,7095585:174981 -k1,8114:11045933,7095585:174981 -k1,8114:13058544,7095585:174981 -k1,8114:16275051,7095585:174981 -k1,8114:17998648,7095585:174981 -k1,8114:18705126,7095585:174981 -k1,8114:19496145,7095585:174981 -k1,8114:22448542,7095585:174981 -k1,8114:24017474,7095585:174981 -k1,8114:25211540,7095585:174981 -k1,8114:27321144,7095585:174981 -k1,8114:28155417,7095585:174981 -k1,8114:30032368,7095585:174981 -k1,8114:31923737,7095585:174981 -k1,8114:32583029,7095585:0 -) -(1,8115:6630773,7937073:25952256,513147,126483 -g1,8114:9321681,7937073 -g1,8114:10712355,7937073 -g1,8114:11930669,7937073 -g1,8114:13738807,7937073 -g1,8114:15425048,7937073 -g1,8114:17172893,7937073 -g1,8114:17903619,7937073 -g1,8114:20500155,7937073 -g1,8114:21350812,7937073 -(1,8114:21350812,7937073:0,452978,115847 -r1,8158:22764213,7937073:1413401,568825,115847 -k1,8114:21350812,7937073:-1413401 -) -(1,8114:21350812,7937073:1413401,452978,115847 -k1,8114:21350812,7937073:3277 -h1,8114:22760936,7937073:0,411205,112570 -) -k1,8115:32583029,7937073:9645146 -g1,8115:32583029,7937073 -) -(1,8134:6630773,15262440:25952256,6477988,0 -k1,8134:7884883,15262440:1254110 -(1,8116:7884883,15262440:0,0,0 -g1,8116:7884883,15262440 -g1,8116:7884883,15262440 -g1,8116:7557203,15262440 -(1,8116:7557203,15262440:0,0,0 -) -g1,8116:7884883,15262440 -) -(1,8132:7884883,15262440:23444037,6477988,0 -g1,8132:10990847,15262440 -(1,8132:10990847,10718176:0,0,0 -(1,8132:10990847,10718176:0,0,0 -g1,8118:10990847,10718176 -(1,8119:10990847,10718176:0,0,0 -(1,8119:10990847,10718176:0,0,0 -g1,8119:10990847,10718176 -g1,8119:10990847,10718176 -g1,8119:10990847,10718176 -g1,8119:10990847,10718176 -g1,8119:10990847,10718176 -(1,8119:10990847,10718176:0,0,0 -(1,8119:10990847,10718176:4910168,454754,104590 -(1,8119:10990847,10718176:4910168,454754,104590 -g1,8119:12891850,10718176 -$1,8119:12891850,10718176 -$1,8119:13499369,10718176 -g1,8119:13678676,10718176 -(1,8119:13678676,10718176:0,414307,104590 -r1,8158:15901015,10718176:2222339,518897,104590 -k1,8119:13678676,10718176:-2222339 -) -(1,8119:13678676,10718176:2222339,414307,104590 -k1,8119:13678676,10718176:3277 -h1,8119:15897738,10718176:0,370085,101313 -) -) -g1,8119:15901015,10718176 -) -) -g1,8119:10990847,10718176 -g1,8119:10990847,10718176 -) -) -g1,8119:10990847,10718176 -g1,8120:10990847,10718176 -(1,8120:10990847,10718176:0,0,0 -(1,8120:10990847,10718176:0,0,0 -g1,8120:10990847,10718176 -g1,8120:10990847,10718176 -g1,8120:10990847,10718176 -g1,8120:10990847,10718176 -g1,8120:10990847,10718176 -(1,8120:10990847,10718176:0,0,0 -(1,8120:10990847,10718176:5792540,454754,104590 -(1,8120:10990847,10718176:5792540,454754,104590 -g1,8120:14723844,10718176 -$1,8120:14723844,10718176 -$1,8120:15331363,10718176 -g1,8120:15510670,10718176 -(1,8120:15510670,10718176:0,408008,104590 -r1,8158:16783387,10718176:1272717,512598,104590 -k1,8120:15510670,10718176:-1272717 -) -(1,8120:15510670,10718176:1272717,408008,104590 -k1,8120:15510670,10718176:3277 -h1,8120:16780110,10718176:0,370085,101313 -) -) -g1,8120:16783387,10718176 -) -) -g1,8120:10990847,10718176 -g1,8120:10990847,10718176 -) -) -(1,8121:10990847,10718176:0,0,0 -(1,8121:10990847,10718176:0,0,0 -g1,8121:10990847,10718176 -g1,8121:10990847,10718176 -g1,8121:10990847,10718176 -g1,8121:10990847,10718176 -g1,8121:10990847,10718176 -(1,8121:10990847,10718176:0,0,0 -(1,8121:10990847,10718176:1272717,408008,104590 -(1,8121:10990847,10718176:1272717,408008,104590 -(1,8121:10990847,10718176:0,408008,104590 -r1,8158:12263564,10718176:1272717,512598,104590 -k1,8121:10990847,10718176:-1272717 -) -(1,8121:10990847,10718176:1272717,408008,104590 -k1,8121:10990847,10718176:3277 -h1,8121:12260287,10718176:0,370085,101313 -) -) -g1,8121:12263564,10718176 -) -) -g1,8121:10990847,10718176 -g1,8121:10990847,10718176 -) -) -g1,8121:10990847,10718176 -(1,8122:10990847,10718176:0,0,0 -(1,8122:10990847,10718176:0,0,0 -g1,8122:10990847,10718176 -g1,8122:10990847,10718176 -g1,8122:10990847,10718176 -g1,8122:10990847,10718176 -g1,8122:10990847,10718176 -(1,8122:10990847,10718176:0,0,0 -(1,8122:10990847,10718176:2550076,454754,120913 -(1,8122:10990847,10718176:2550076,454754,120913 -(1,8122:10990847,10718176:0,408008,104590 -r1,8158:11630482,10718176:639635,512598,104590 -k1,8122:10990847,10718176:-639635 -) -(1,8122:10990847,10718176:639635,408008,104590 -k1,8122:10990847,10718176:3277 -h1,8122:11627205,10718176:0,370085,101313 -) -g1,8122:11809789,10718176 -) -g1,8122:13540923,10718176 -) -) -g1,8122:10990847,10718176 -g1,8122:10990847,10718176 -) -) -g1,8122:10990847,10718176 -(1,8123:10990847,10718176:0,0,0 -(1,8123:10990847,10718176:0,0,0 -g1,8123:10990847,10718176 -g1,8123:10990847,10718176 -g1,8123:10990847,10718176 -g1,8123:10990847,10718176 -g1,8123:10990847,10718176 -(1,8123:10990847,10718176:0,0,0 -(1,8123:10990847,10718176:2855420,408008,104590 -(1,8123:10990847,10718176:2855420,408008,104590 -(1,8123:10990847,10718176:0,408008,104590 -r1,8158:13846267,10718176:2855420,512598,104590 -k1,8123:10990847,10718176:-2855420 -) -(1,8123:10990847,10718176:2855420,408008,104590 -k1,8123:10990847,10718176:3277 -h1,8123:13842990,10718176:0,370085,101313 -) -) -g1,8123:13846267,10718176 -) -) -g1,8123:10990847,10718176 -g1,8123:10990847,10718176 -) -) -g1,8123:10990847,10718176 -g1,8124:10990847,10718176 -(1,8124:10990847,10718176:0,0,0 -(1,8124:10990847,10718176:0,0,0 -g1,8124:10990847,10718176 -g1,8124:10990847,10718176 -g1,8124:10990847,10718176 -g1,8124:10990847,10718176 -g1,8124:10990847,10718176 -(1,8124:10990847,10718176:0,0,0 -(1,8124:10990847,10718176:2222339,408008,104590 -(1,8124:10990847,10718176:2222339,408008,104590 -(1,8124:10990847,10718176:0,408008,104590 -r1,8158:13213186,10718176:2222339,512598,104590 -k1,8124:10990847,10718176:-2222339 -) -(1,8124:10990847,10718176:2222339,408008,104590 -k1,8124:10990847,10718176:3277 -h1,8124:13209909,10718176:0,370085,101313 -) -) -g1,8124:13213186,10718176 -) -) -g1,8124:10990847,10718176 -g1,8124:10990847,10718176 -) -) -g1,8124:10990847,10718176 -g1,8125:10990847,10718176 -(1,8125:10990847,10718176:0,0,0 -(1,8125:10990847,10718176:0,0,0 -g1,8125:10990847,10718176 -g1,8125:10990847,10718176 -g1,8125:10990847,10718176 -g1,8125:10990847,10718176 -g1,8125:10990847,10718176 -(1,8125:10990847,10718176:0,0,0 -(1,8125:10990847,10718176:1905798,408008,104590 -(1,8125:10990847,10718176:1905798,408008,104590 -(1,8125:10990847,10718176:0,408008,104590 -r1,8158:12896645,10718176:1905798,512598,104590 -k1,8125:10990847,10718176:-1905798 -) -(1,8125:10990847,10718176:1905798,408008,104590 -k1,8125:10990847,10718176:3277 -h1,8125:12893368,10718176:0,370085,101313 -) -) -g1,8125:12896645,10718176 -) -) -g1,8125:10990847,10718176 -g1,8125:10990847,10718176 -) -) -g1,8125:10990847,10718176 -g1,8126:10990847,10718176 -g1,8126:10990847,10718176 -g1,8126:10990847,10718176 -g1,8126:10990847,10718176 -g1,8126:10990847,10718176 -g1,8126:10990847,10718176 -g1,8127:10990847,10718176 -g1,8127:10990847,10718176 -g1,8127:10990847,10718176 -g1,8127:10990847,10718176 -g1,8127:10990847,10718176 -g1,8127:10990847,10718176 -g1,8128:10990847,10718176 -g1,8128:10990847,10718176 -g1,8128:10990847,10718176 -g1,8128:10990847,10718176 -g1,8128:10990847,10718176 -g1,8128:10990847,10718176 -g1,8129:10990847,10718176 -g1,8129:10990847,10718176 -g1,8129:10990847,10718176 -g1,8129:10990847,10718176 -g1,8129:10990847,10718176 -g1,8129:10990847,10718176 -g1,8130:10990847,10718176 -g1,8130:10990847,10718176 -g1,8130:10990847,10718176 -g1,8130:10990847,10718176 -g1,8130:10990847,10718176 -g1,8130:10990847,10718176 -g1,8131:10990847,10718176 -g1,8131:10990847,10718176 -g1,8131:10990847,10718176 -g1,8131:10990847,10718176 -g1,8131:10990847,10718176 -g1,8131:10990847,10718176 -g1,8132:10990847,10718176 -g1,8132:10990847,10718176 -) -g1,8132:10990847,10718176 -) -) -g1,8134:31328920,15262440 -k1,8134:32583029,15262440:1254109 -) -(1,8137:6630773,16759288:25952256,513147,138281 -h1,8136:6630773,16759288:983040,0,0 -k1,8136:10067582,16759288:192122 -k1,8136:11251264,16759288:192122 -k1,8136:14533410,16759288:192123 -k1,8136:16460925,16759288:192122 -k1,8136:18640754,16759288:192122 -k1,8136:21706630,16759288:192122 -k1,8136:23392318,16759288:192122 -k1,8136:24270603,16759288:192123 -h1,8136:24270603,16759288:0,0,0 -k1,8136:25046870,16759288:381085 -k1,8136:25823137,16759288:381085 -k1,8136:26410441,16759288:192122 -k1,8136:28488034,16759288:192122 -k1,8136:29548509,16759288:192123 -k1,8136:31152932,16759288:192122 -k1,8136:32031216,16759288:192122 -$1,8136:32031216,16759288 -$1,8136:32583029,16759288 -k1,8137:32583029,16759288:0 -) -(1,8137:6630773,17600776:25952256,513147,134348 -k1,8136:7394158,17600776:231888 -k1,8136:10704272,17600776:231888 -k1,8136:11697689,17600776:231889 -$1,8136:11697689,17600776 -$1,8136:12200350,17600776 -k1,8136:12605908,17600776:231888 -k1,8136:13791345,17600776:231888 -k1,8136:15115718,17600776:231888 -k1,8136:16297878,17600776:231888 -k1,8136:21349939,17600776:231888 -k1,8136:22773273,17600776:231889 -k1,8136:24038664,17600776:231888 -k1,8136:29552098,17600776:231888 -k1,8136:30435414,17600776:231888 -k1,8136:32583029,17600776:0 -) -(1,8137:6630773,18442264:25952256,513147,134348 -k1,8136:7580552,18442264:183663 -k1,8136:9607088,18442264:183664 -k1,8136:10442179,18442264:183663 -k1,8136:11644927,18442264:183663 -k1,8136:12902726,18442264:183664 -k1,8136:14277834,18442264:183663 -k1,8136:15997006,18442264:183663 -k1,8136:16839962,18442264:183664 -k1,8136:18042710,18442264:183663 -k1,8136:19657679,18442264:183663 -h1,8136:19864773,18442264:0,0,0 -k1,8136:20824383,18442264:183664 -k1,8136:24804547,18442264:183663 -h1,8136:25011641,18442264:0,0,0 -k1,8136:27351857,18442264:364306 -k1,8136:28111346,18442264:364307 -k1,8136:30651683,18442264:183663 -k1,8136:32583029,18442264:0 -) -(1,8137:6630773,19283752:25952256,513147,134348 -k1,8136:9727786,19283752:223259 -k1,8136:10942605,19283752:223259 -k1,8136:12679091,19283752:223260 -k1,8136:13518388,19283752:223259 -k1,8136:16503990,19283752:223259 -k1,8136:19600347,19283752:223259 -k1,8136:21758229,19283752:223259 -k1,8136:22640780,19283752:223259 -k1,8136:25355719,19283752:223260 -k1,8136:28277095,19283752:223259 -k1,8136:29691799,19283752:223259 -k1,8136:31436804,19283752:223259 -k1,8136:32583029,19283752:0 -) -(1,8137:6630773,20125240:25952256,513147,134348 -$1,8136:6951244,20125240 -k1,8136:8735735,20125240:206384 -k1,8136:10138807,20125240:206385 -k1,8136:12429236,20125240:206384 -k1,8136:13294912,20125240:206384 -k1,8136:15489003,20125240:206384 -k1,8136:18569142,20125240:206385 -k1,8136:19307023,20125240:206384 -k1,8136:22794139,20125240:206384 -k1,8136:26625319,20125240:206384 -k1,8136:28265632,20125240:206385 -k1,8136:28886852,20125240:206377 -k1,8136:30284681,20125240:206384 -k1,8137:32583029,20125240:0 -) -(1,8137:6630773,20966728:25952256,505283,134348 -k1,8136:8018498,20966728:248054 -k1,8136:12839653,20966728:248053 -k1,8136:16348778,20966728:248054 -k1,8136:19680956,20966728:248054 -k1,8136:22863712,20966728:248054 -k1,8136:24620404,20966728:248053 -k1,8136:25960943,20966728:248054 -k1,8136:26740494,20966728:248054 -k1,8136:28054818,20966728:248053 -k1,8136:31391584,20966728:248054 -k1,8136:32583029,20966728:0 -) -(1,8137:6630773,21808216:25952256,513147,134348 -k1,8136:9045502,21808216:183228 -k1,8136:12139183,21808216:183227 -k1,8136:14474613,21808216:183228 -k1,8136:15676925,21808216:183227 -k1,8136:17481514,21808216:183228 -k1,8136:19748786,21808216:183227 -k1,8136:20583442,21808216:183228 -k1,8136:22448324,21808216:183228 -k1,8136:23650636,21808216:183227 -k1,8136:27443587,21808216:183228 -k1,8136:28286106,21808216:183227 -k1,8136:30866641,21808216:183228 -k1,8136:32583029,21808216:0 -) -(1,8137:6630773,22649704:25952256,513147,134348 -k1,8136:7513018,22649704:222953 -k1,8136:10227651,22649704:222954 -k1,8136:11268493,22649704:222953 -k1,8136:13093147,22649704:222954 -k1,8136:15308394,22649704:222953 -k1,8136:16147385,22649704:222953 -k1,8136:16958852,22649704:222954 -k1,8136:19169512,22649704:222953 -k1,8136:22266220,22649704:222954 -k1,8136:23480733,22649704:222953 -k1,8136:25993514,22649704:222953 -k1,8136:27407913,22649704:222954 -k1,8136:28735148,22649704:222953 -k1,8136:29705868,22649704:222954 -k1,8136:31966991,22649704:222953 -k1,8136:32583029,22649704:0 -) -(1,8137:6630773,23491192:25952256,513147,134348 -k1,8136:9825552,23491192:179468 -k1,8136:11054907,23491192:179468 -k1,8136:13513061,23491192:179467 -h1,8136:14882108,23491192:0,0,0 -k1,8136:15061576,23491192:179468 -k1,8136:16050414,23491192:179468 -k1,8136:17728035,23491192:179468 -h1,8136:18923412,23491192:0,0,0 -k1,8136:19102879,23491192:179467 -k1,8136:20229998,23491192:179468 -k1,8136:20765326,23491192:179468 -k1,8136:23500043,23491192:179468 -k1,8136:27051337,23491192:179467 -k1,8136:27890097,23491192:179468 -k1,8136:30387573,23491192:179468 -k1,8137:32583029,23491192:0 -) -(1,8137:6630773,24332680:25952256,505283,7863 -k1,8137:32583029,24332680:24887296 -g1,8137:32583029,24332680 -) -(1,8139:6630773,25174168:25952256,505283,134348 -h1,8138:6630773,25174168:983040,0,0 -k1,8138:8498221,25174168:256573 -k1,8138:11420800,25174168:256574 -k1,8138:12328801,25174168:256573 -k1,8138:13604459,25174168:256573 -k1,8138:16645658,25174168:256574 -k1,8138:18977756,25174168:256573 -k1,8138:19850367,25174168:256573 -k1,8138:21126026,25174168:256574 -k1,8138:23998796,25174168:256573 -k1,8138:26284364,25174168:256573 -k1,8138:28772439,25174168:256574 -k1,8138:30730982,25174168:256573 -k1,8139:32583029,25174168:0 -) -(1,8139:6630773,26015656:25952256,505283,115847 -k1,8138:8023186,26015656:246844 -k1,8138:9763595,26015656:246843 -k1,8138:10696601,26015656:246844 -(1,8138:10696601,26015656:0,459977,115847 -r1,8158:12813426,26015656:2116825,575824,115847 -k1,8138:10696601,26015656:-2116825 -) -(1,8138:10696601,26015656:2116825,459977,115847 -k1,8138:10696601,26015656:3277 -h1,8138:12810149,26015656:0,411205,112570 -) -k1,8138:13233939,26015656:246843 -(1,8138:13233939,26015656:0,452978,115847 -r1,8158:17109323,26015656:3875384,568825,115847 -k1,8138:13233939,26015656:-3875384 -) -(1,8138:13233939,26015656:3875384,452978,115847 -k1,8138:13233939,26015656:3277 -h1,8138:17106046,26015656:0,411205,112570 -) -k1,8138:17529837,26015656:246844 -(1,8138:17529837,26015656:0,459977,115847 -r1,8158:20350086,26015656:2820249,575824,115847 -k1,8138:17529837,26015656:-2820249 -) -(1,8138:17529837,26015656:2820249,459977,115847 -k1,8138:17529837,26015656:3277 -h1,8138:20346809,26015656:0,411205,112570 -) -k1,8138:20770600,26015656:246844 -(1,8138:20770600,26015656:0,452978,115847 -r1,8158:23942560,26015656:3171960,568825,115847 -k1,8138:20770600,26015656:-3171960 -) -(1,8138:20770600,26015656:3171960,452978,115847 -k1,8138:20770600,26015656:3277 -h1,8138:23939283,26015656:0,411205,112570 -) -k1,8138:24363073,26015656:246843 -(1,8138:24363073,26015656:0,452978,115847 -r1,8158:26128186,26015656:1765113,568825,115847 -k1,8138:24363073,26015656:-1765113 -) -(1,8138:24363073,26015656:1765113,452978,115847 -k1,8138:24363073,26015656:3277 -h1,8138:26124909,26015656:0,411205,112570 -) -k1,8138:26548700,26015656:246844 -(1,8138:26548700,26015656:0,452978,115847 -r1,8158:28313813,26015656:1765113,568825,115847 -k1,8138:26548700,26015656:-1765113 -) -(1,8138:26548700,26015656:1765113,452978,115847 -k1,8138:26548700,26015656:3277 -h1,8138:28310536,26015656:0,411205,112570 -) -k1,8138:28560656,26015656:246843 -k1,8138:29799060,26015656:246844 -k1,8138:32583029,26015656:0 -) -(1,8139:6630773,26857144:25952256,513147,134348 -k1,8138:7822621,26857144:244197 -k1,8138:10054525,26857144:244197 -k1,8138:10986195,26857144:244197 -k1,8138:13693890,26857144:244197 -k1,8138:15483426,26857144:244197 -k1,8138:16386915,26857144:244197 -k1,8138:17650198,26857144:244198 -k1,8138:20679020,26857144:244197 -k1,8138:21870868,26857144:244197 -k1,8138:25410215,26857144:244197 -k1,8138:27642119,26857144:244197 -k1,8138:28573789,26857144:244197 -k1,8138:31107814,26857144:244197 -k1,8138:32583029,26857144:0 -) -(1,8139:6630773,27698632:25952256,513147,126483 -k1,8138:12273713,27698632:255881 -k1,8138:13477246,27698632:255882 -k1,8138:16495470,27698632:255881 -k1,8138:18467740,27698632:255882 -k1,8138:19382913,27698632:255881 -k1,8138:22722919,27698632:255882 -k1,8138:25470479,27698632:255881 -k1,8138:30247035,27698632:255882 -k1,8138:32051532,27698632:255881 -k1,8138:32583029,27698632:0 -) -(1,8139:6630773,28540120:25952256,513147,134348 -k1,8138:9950921,28540120:230125 -k1,8138:10797084,28540120:230125 -k1,8138:12230450,28540120:230125 -k1,8138:15051869,28540120:230125 -k1,8138:16567810,28540120:230125 -k1,8138:19079243,28540120:230125 -k1,8138:19925406,28540120:230125 -k1,8138:21907308,28540120:230125 -k1,8138:24792296,28540120:230125 -k1,8138:25673849,28540120:230125 -k1,8138:26923059,28540120:230125 -k1,8138:29087807,28540120:230125 -k1,8138:29977224,28540120:230125 -k1,8138:31923737,28540120:230125 -k1,8138:32583029,28540120:0 -) -(1,8139:6630773,29381608:25952256,505283,7863 -g1,8138:9148010,29381608 -g1,8138:10413510,29381608 -g1,8138:13702762,29381608 -k1,8139:32583029,29381608:17308714 -g1,8139:32583029,29381608 -) -(1,8142:6630773,32189176:25952256,32768,229376 -(1,8142:6630773,32189176:0,32768,229376 -(1,8142:6630773,32189176:5505024,32768,229376 -r1,8158:12135797,32189176:5505024,262144,229376 -) -k1,8142:6630773,32189176:-5505024 -) -(1,8142:6630773,32189176:25952256,32768,0 -r1,8158:32583029,32189176:25952256,32768,0 -) -) -(1,8142:6630773,33793504:25952256,606339,161218 -(1,8142:6630773,33793504:1974731,575668,0 -g1,8142:6630773,33793504 -g1,8142:8605504,33793504 -) -g1,8142:11418572,33793504 -g1,8142:13932009,33793504 -k1,8142:32583029,33793504:15782902 -g1,8142:32583029,33793504 -) -(1,8148:6630773,35028208:25952256,513147,126483 -k1,8147:8019626,35028208:192166 -k1,8147:8626628,35028208:192159 -k1,8147:11514290,35028208:192166 -(1,8147:11514290,35028208:0,452978,115847 -r1,8158:12927691,35028208:1413401,568825,115847 -k1,8147:11514290,35028208:-1413401 -) -(1,8147:11514290,35028208:1413401,452978,115847 -k1,8147:11514290,35028208:3277 -h1,8147:12924414,35028208:0,411205,112570 -) -k1,8147:13119857,35028208:192166 -k1,8147:13843520,35028208:192166 -k1,8147:15548912,35028208:192166 -k1,8147:16392506,35028208:192166 -k1,8147:17272144,35028208:192165 -k1,8147:19277036,35028208:192166 -k1,8147:21960881,35028208:192166 -k1,8147:22630804,35028208:192166 -k1,8147:23842055,35028208:192166 -k1,8147:27799920,35028208:192166 -k1,8147:30503426,35028208:192166 -k1,8147:31227089,35028208:192166 -k1,8148:32583029,35028208:0 -) -(1,8148:6630773,35869696:25952256,513147,134348 -k1,8147:9518551,35869696:286654 -k1,8147:10824291,35869696:286655 -k1,8147:11798418,35869696:286654 -k1,8147:12616570,35869696:286655 -k1,8147:13259084,35869696:286654 -k1,8147:17036185,35869696:286654 -k1,8147:17800597,35869696:286655 -k1,8147:19106336,35869696:286654 -k1,8147:23158690,35869696:286655 -k1,8147:25956684,35869696:286654 -k1,8147:26774835,35869696:286654 -k1,8147:27417350,35869696:286655 -k1,8147:29771665,35869696:286654 -k1,8147:31077405,35869696:286655 -k1,8147:32051532,35869696:286654 -k1,8147:32583029,35869696:0 -) -(1,8148:6630773,36711184:25952256,513147,126483 -k1,8147:7603764,36711184:202288 -k1,8147:10360645,36711184:202288 -k1,8147:11222225,36711184:202288 -k1,8147:14078721,36711184:202288 -k1,8147:17129856,36711184:202285 -k1,8147:17948182,36711184:202288 -k1,8147:20010383,36711184:202289 -k1,8147:22229214,36711184:202288 -k1,8147:25366204,36711184:202288 -k1,8147:27223276,36711184:202288 -k1,8147:27957061,36711184:202288 -k1,8147:30632022,36711184:202288 -k1,8148:32583029,36711184:0 -) -(1,8148:6630773,37552672:25952256,513147,134348 -k1,8147:7828537,37552672:207515 -k1,8147:8695344,37552672:207515 -k1,8147:11511192,37552672:207515 -k1,8147:14533478,37552672:207515 -k1,8147:16116594,37552672:207515 -k1,8147:16975537,37552672:207515 -k1,8147:18202137,37552672:207515 -k1,8147:19931398,37552672:207515 -k1,8147:20798205,37552672:207515 -k1,8147:24743238,37552672:207515 -k1,8147:26902415,37552672:207515 -k1,8147:27761358,37552672:207515 -k1,8147:28739576,37552672:207515 -k1,8147:31931601,37552672:207515 -k1,8147:32583029,37552672:0 -) -(1,8148:6630773,38394160:25952256,513147,134348 -k1,8147:8891983,38394160:273503 -k1,8147:11273780,38394160:273504 -k1,8147:16067957,38394160:273503 -k1,8147:18293123,38394160:273504 -k1,8147:22449634,38394160:273503 -k1,8147:24896312,38394160:273504 -k1,8147:26117466,38394160:273503 -k1,8147:27912716,38394160:273504 -k1,8147:28845511,38394160:273503 -k1,8147:32583029,38394160:0 -) -(1,8148:6630773,39235648:25952256,513147,134348 -k1,8147:7799079,39235648:220655 -k1,8147:9732189,39235648:220654 -k1,8147:13233576,39235648:220655 -k1,8147:16500343,39235648:220654 -k1,8147:17825280,39235648:220655 -k1,8147:19512630,39235648:220654 -k1,8147:20349323,39235648:220655 -k1,8147:21589062,39235648:220654 -k1,8147:23176798,39235648:220655 -k1,8147:24056744,39235648:220654 -k1,8147:27594176,39235648:220655 -k1,8147:29006275,39235648:220654 -k1,8147:31835263,39235648:220655 -k1,8147:32583029,39235648:0 -) -(1,8148:6630773,40077136:25952256,505283,134348 -k1,8147:10047008,40077136:242326 -k1,8147:10905373,40077136:242327 -k1,8147:11918402,40077136:242326 -k1,8147:14595349,40077136:242284 -k1,8147:16577001,40077136:242326 -k1,8147:17447163,40077136:242327 -k1,8147:18892730,40077136:242326 -k1,8147:21550058,40077136:242326 -k1,8147:24095320,40077136:242327 -k1,8147:27239580,40077136:242326 -k1,8147:29916527,40077136:242284 -k1,8147:32227169,40077136:242326 -k1,8147:32583029,40077136:0 -) -(1,8148:6630773,40918624:25952256,513147,134348 -g1,8147:8021447,40918624 -g1,8147:8879968,40918624 -g1,8147:12816715,40918624 -g1,8147:14870613,40918624 -g1,8147:15879212,40918624 -g1,8147:17097526,40918624 -g1,8147:19123899,40918624 -g1,8147:21958331,40918624 -g1,8147:23754017,40918624 -g1,8147:24612538,40918624 -k1,8148:32583029,40918624:4812311 -g1,8148:32583029,40918624 -) -v1,8150:6630773,42284400:0,393216,0 -(1,8151:6630773,44568594:25952256,2677410,616038 -g1,8151:6630773,44568594 -(1,8151:6630773,44568594:25952256,2677410,616038 -(1,8151:6630773,45184632:25952256,3293448,0 -[1,8151:6630773,45184632:25952256,3293448,0 -(1,8151:6630773,45158418:25952256,3241020,0 -r1,8158:6656987,45158418:26214,3241020,0 -[1,8151:6656987,45158418:25899828,3241020,0 -(1,8151:6656987,44568594:25899828,2061372,0 -[1,8151:7246811,44568594:24720180,2061372,0 -(1,8151:7246811,43592758:24720180,1085536,298548 -(1,8150:7246811,43592758:0,1085536,298548 -r1,8158:8753226,43592758:1506415,1384084,298548 -k1,8150:7246811,43592758:-1506415 -) -(1,8150:7246811,43592758:1506415,1085536,298548 -) -k1,8150:8985902,43592758:232676 -k1,8150:9696336,43592758:232677 -k1,8150:11099485,43592758:232676 -k1,8150:12147429,43592758:232676 -k1,8150:13446376,43592758:232676 -k1,8150:15775550,43592758:232677 -k1,8150:19267331,43592758:232676 -k1,8150:20519092,43592758:232676 -k1,8150:23938128,43592758:232676 -k1,8150:26806008,43592758:232677 -k1,8150:29658813,43592758:232676 -k1,8150:31966991,43592758:0 -) -(1,8151:7246811,44434246:24720180,513147,134348 -g1,8150:8637485,44434246 -g1,8150:11234676,44434246 -g1,8150:12116790,44434246 -g1,8150:13646400,44434246 -g1,8150:15225817,44434246 -g1,8150:16529328,44434246 -g1,8150:17476323,44434246 -g1,8150:20199343,44434246 -g1,8150:22578955,44434246 -g1,8150:24760648,44434246 -g1,8150:27377500,44434246 -h1,8150:27775959,44434246:0,0,0 -g1,8150:27975188,44434246 -g1,8150:28983787,44434246 -g1,8150:30681169,44434246 -h1,8150:31478087,44434246:0,0,0 -k1,8151:31966991,44434246:315234 -g1,8151:31966991,44434246 -) -] -) -] -r1,8158:32583029,45158418:26214,3241020,0 -) -] -) -) -g1,8151:32583029,44568594 -) -h1,8151:6630773,45184632:0,0,0 -] -(1,8158:32583029,45706769:0,0,0 -g1,8158:32583029,45706769 -) -) -] -(1,8158:6630773,47279633:25952256,0,0 -h1,8158:6630773,47279633:25952256,0,0 -) -] -(1,8158:4262630,4025873:0,0,0 -[1,8158:-473656,4025873:0,0,0 -(1,8158:-473656,-710413:0,0,0 -(1,8158:-473656,-710413:0,0,0 -g1,8158:-473656,-710413 -) -g1,8158:-473656,-710413 -) -] -) -] -!27264 -}155 -Input:1273:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1274:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1275:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1276:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1277:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1278:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!564 -{156 -[1,8212:4262630,47279633:28320399,43253760,0 -(1,8212:4262630,4025873:0,0,0 -[1,8212:-473656,4025873:0,0,0 -(1,8212:-473656,-710413:0,0,0 -(1,8212:-473656,-644877:0,0,0 -k1,8212:-473656,-644877:-65536 -) -(1,8212:-473656,4736287:0,0,0 -k1,8212:-473656,4736287:5209943 -) -g1,8212:-473656,-710413 -) -] -) -[1,8212:6630773,47279633:25952256,43253760,0 -[1,8212:6630773,4812305:25952256,786432,0 -(1,8212:6630773,4812305:25952256,505283,134348 -(1,8212:6630773,4812305:25952256,505283,134348 -g1,8212:3078558,4812305 -[1,8212:3078558,4812305:0,0,0 -(1,8212:3078558,2439708:0,1703936,0 -k1,8212:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,8212:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,8212:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,8212:3078558,4812305:0,0,0 -(1,8212:3078558,2439708:0,1703936,0 -g1,8212:29030814,2439708 -g1,8212:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,8212:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,8212:37855564,2439708:1179648,16384,0 -) -) -k1,8212:3078556,2439708:-34777008 -) -] -[1,8212:3078558,4812305:0,0,0 -(1,8212:3078558,49800853:0,16384,2228224 -k1,8212:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,8212:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,8212:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,8212:3078558,4812305:0,0,0 -(1,8212:3078558,49800853:0,16384,2228224 -g1,8212:29030814,49800853 -g1,8212:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,8212:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,8212:37855564,49800853:1179648,16384,0 -) -) -k1,8212:3078556,49800853:-34777008 -) -] -g1,8212:6630773,4812305 -g1,8212:6630773,4812305 -g1,8212:8843268,4812305 -g1,8212:10880782,4812305 -g1,8212:13281365,4812305 -k1,8212:31387653,4812305:18106288 -) -) -] -[1,8212:6630773,45706769:25952256,40108032,0 -(1,8212:6630773,45706769:25952256,40108032,0 -(1,8212:6630773,45706769:0,0,0 -g1,8212:6630773,45706769 -) -[1,8212:6630773,45706769:25952256,40108032,0 -(1,8153:6630773,6254097:25952256,555811,147783 -(1,8153:6630773,6254097:2450326,527696,0 -g1,8153:6630773,6254097 -g1,8153:9081099,6254097 -) -k1,8153:32583029,6254097:19501678 -g1,8153:32583029,6254097 -) -(1,8157:6630773,7488801:25952256,505283,126483 -k1,8156:7466120,7488801:207512 -k1,8156:7466120,7488801:0 -k1,8156:8692716,7488801:207511 -k1,8156:11561645,7488801:207512 -k1,8156:15705904,7488801:207511 -k1,8156:17955518,7488801:207512 -(1,8156:17955518,7488801:0,452978,115847 -r1,8212:19720631,7488801:1765113,568825,115847 -k1,8156:17955518,7488801:-1765113 -) -(1,8156:17955518,7488801:1765113,452978,115847 -k1,8156:17955518,7488801:3277 -h1,8156:19717354,7488801:0,411205,112570 -) -k1,8156:19928143,7488801:207512 -k1,8156:20667151,7488801:207511 -k1,8156:21230523,7488801:207512 -k1,8156:25008435,7488801:207511 -k1,8156:27836076,7488801:207512 -k1,8156:30728597,7488801:207511 -k1,8156:31563944,7488801:207512 -k1,8156:32583029,7488801:0 -) -(1,8157:6630773,8330289:25952256,513147,134348 -k1,8156:9286085,8330289:220649 -k1,8156:11072411,8330289:220671 -k1,8156:14522040,8330289:220670 -k1,8156:15690362,8330289:220671 -k1,8156:16930117,8330289:220670 -k1,8156:19138495,8330289:220671 -k1,8156:20220308,8330289:220670 -k1,8156:21057017,8330289:220671 -k1,8156:22480928,8330289:220670 -k1,8156:24068680,8330289:220671 -k1,8156:24645210,8330289:220670 -k1,8156:26678607,8330289:220671 -k1,8156:30389724,8330289:220670 -k1,8156:31478747,8330289:220671 -k1,8156:32583029,8330289:0 -) -(1,8157:6630773,9171777:25952256,513147,134348 -g1,8156:7854985,9171777 -g1,8156:9338720,9171777 -g1,8156:10557034,9171777 -g1,8156:12268834,9171777 -g1,8156:13415714,9171777 -(1,8156:13415714,9171777:0,452978,115847 -r1,8212:15180827,9171777:1765113,568825,115847 -k1,8156:13415714,9171777:-1765113 -) -(1,8156:13415714,9171777:1765113,452978,115847 -k1,8156:13415714,9171777:3277 -h1,8156:15177550,9171777:0,411205,112570 -) -g1,8156:15380056,9171777 -g1,8156:16680290,9171777 -g1,8156:18255120,9171777 -g1,8156:19611059,9171777 -g1,8156:21935621,9171777 -g1,8156:22794142,9171777 -g1,8156:25676415,9171777 -k1,8157:32583029,9171777:5633249 -g1,8157:32583029,9171777 -) -(1,8160:6630773,10013265:25952256,513147,134348 -h1,8158:6630773,10013265:983040,0,0 -k1,8158:8450623,10013265:208975 -k1,8158:9678683,10013265:208975 -k1,8158:11271778,10013265:208975 -k1,8158:14142171,10013265:208976 -k1,8158:15219498,10013265:208975 -k1,8158:18206544,10013265:208975 -k1,8158:20150912,10013265:208975 -k1,8158:21378972,10013265:208975 -k1,8158:24401408,10013265:208975 -k1,8158:27271146,10013265:208976 -k1,8158:28427772,10013265:208975 -(1,8158:28427772,10013265:0,414482,115847 -r1,8212:29841173,10013265:1413401,530329,115847 -k1,8158:28427772,10013265:-1413401 -) -(1,8158:28427772,10013265:1413401,414482,115847 -k1,8158:28427772,10013265:3277 -h1,8158:29837896,10013265:0,411205,112570 -) -k1,8158:30050148,10013265:208975 -k1,8158:31648486,10013265:208975 -k1,8158:32583029,10013265:0 -) -(1,8160:6630773,10854753:25952256,505283,134348 -g1,8158:9588412,10854753 -g1,8158:10403679,10854753 -g1,8158:11191421,10854753 -g1,8158:13352143,10854753 -g1,8158:14576355,10854753 -g1,8158:15794669,10854753 -g1,8158:17271195,10854753 -g1,8158:18279794,10854753 -g1,8158:19977176,10854753 -h1,8158:21172553,10854753:0,0,0 -g1,8158:21545452,10854753 -k1,8160:32583029,10854753:11037577 -g1,8160:32583029,10854753 -) -v1,8162:6630773,12045219:0,393216,0 -(1,8176:6630773,15780002:25952256,4127999,196608 -g1,8176:6630773,15780002 -g1,8176:6630773,15780002 -g1,8176:6434165,15780002 -(1,8176:6434165,15780002:0,4127999,196608 -r1,8212:32779637,15780002:26345472,4324607,196608 -k1,8176:6434165,15780002:-26345472 -) -(1,8176:6434165,15780002:26345472,4127999,196608 -[1,8176:6630773,15780002:25952256,3931391,0 -(1,8164:6630773,12252837:25952256,404226,76021 -(1,8163:6630773,12252837:0,0,0 -g1,8163:6630773,12252837 -g1,8163:6630773,12252837 -g1,8163:6303093,12252837 -(1,8163:6303093,12252837:0,0,0 -) -g1,8163:6630773,12252837 -) -k1,8164:6630773,12252837:0 -h1,8164:9792230,12252837:0,0,0 -k1,8164:32583030,12252837:22790800 -g1,8164:32583030,12252837 -) -(1,8165:6630773,12919015:25952256,410518,101187 -h1,8165:6630773,12919015:0,0,0 -k1,8165:6630773,12919015:0 -h1,8165:13269832,12919015:0,0,0 -k1,8165:32583028,12919015:19313196 -g1,8165:32583028,12919015 -) -(1,8169:6630773,13650729:25952256,404226,76021 -(1,8167:6630773,13650729:0,0,0 -g1,8167:6630773,13650729 -g1,8167:6630773,13650729 -g1,8167:6303093,13650729 -(1,8167:6303093,13650729:0,0,0 -) -g1,8167:6630773,13650729 -) -g1,8169:7579210,13650729 -g1,8169:8843793,13650729 -h1,8169:10424521,13650729:0,0,0 -k1,8169:32583029,13650729:22158508 -g1,8169:32583029,13650729 -) -(1,8171:6630773,14972267:25952256,410518,101187 -(1,8170:6630773,14972267:0,0,0 -g1,8170:6630773,14972267 -g1,8170:6630773,14972267 -g1,8170:6303093,14972267 -(1,8170:6303093,14972267:0,0,0 -) -g1,8170:6630773,14972267 -) -k1,8171:6630773,14972267:0 -h1,8171:13585978,14972267:0,0,0 -k1,8171:32583030,14972267:18997052 -g1,8171:32583030,14972267 -) -(1,8175:6630773,15703981:25952256,404226,76021 -(1,8173:6630773,15703981:0,0,0 -g1,8173:6630773,15703981 -g1,8173:6630773,15703981 -g1,8173:6303093,15703981 -(1,8173:6303093,15703981:0,0,0 -) -g1,8173:6630773,15703981 -) -g1,8175:7579210,15703981 -g1,8175:8843793,15703981 -h1,8175:10108376,15703981:0,0,0 -k1,8175:32583028,15703981:22474652 -g1,8175:32583028,15703981 -) -] -) -g1,8176:32583029,15780002 -g1,8176:6630773,15780002 -g1,8176:6630773,15780002 -g1,8176:32583029,15780002 -g1,8176:32583029,15780002 -) -h1,8176:6630773,15976610:0,0,0 -(1,8180:6630773,17342386:25952256,513147,138281 -h1,8179:6630773,17342386:983040,0,0 -k1,8179:8785278,17342386:217916 -k1,8179:10437122,17342386:217916 -k1,8179:11342511,17342386:217916 -k1,8179:12579512,17342386:217916 -k1,8179:14922105,17342386:217916 -k1,8179:16952747,17342386:217916 -k1,8179:19158370,17342386:217916 -$1,8179:19158370,17342386 -k1,8179:19926396,17342386:216213 -k1,8179:20710806,17342386:216213 -k1,8179:21378020,17342386:159310 -k1,8179:21806027,17342386:159309 -k1,8179:22363795,17342386:159309 -k1,8179:23091302,17342386:159310 -k1,8179:23694945,17342386:159309 -k1,8179:24122952,17342386:159309 -$1,8179:24625613,17342386 -k1,8179:24843529,17342386:217916 -k1,8179:26980339,17342386:217916 -$1,8179:26980339,17342386 -$1,8179:27532152,17342386 -k1,8179:27750068,17342386:217916 -k1,8179:31931601,17342386:217916 -k1,8179:32583029,17342386:0 -) -(1,8180:6630773,18183874:25952256,513147,134348 -k1,8179:9620171,18183874:175937 -k1,8179:12456871,18183874:175938 -(1,8179:12663965,18183874:0,452978,115847 -r1,8212:14077366,18183874:1413401,568825,115847 -k1,8179:12663965,18183874:-1413401 -) -(1,8179:12663965,18183874:1413401,452978,115847 -k1,8179:12663965,18183874:3277 -h1,8179:14074089,18183874:0,411205,112570 -) -k1,8179:14460397,18183874:175937 -k1,8179:15827780,18183874:175938 -$1,8179:15827780,18183874 -$1,8179:16330441,18183874 -k1,8179:16506378,18183874:175937 -k1,8179:17333744,18183874:175938 -k1,8179:19346000,18183874:175937 -k1,8179:21388403,18183874:175938 -(1,8179:21595497,18183874:0,452978,115847 -r1,8212:23360610,18183874:1765113,568825,115847 -k1,8179:21595497,18183874:-1765113 -) -(1,8179:21595497,18183874:1765113,452978,115847 -k1,8179:21595497,18183874:3277 -h1,8179:23357333,18183874:0,411205,112570 -) -k1,8179:23917311,18183874:175937 -k1,8179:25611718,18183874:175938 -k1,8179:26143515,18183874:175937 -k1,8179:28307160,18183874:175938 -k1,8179:29014594,18183874:175937 -k1,8179:32583029,18183874:0 -) -(1,8180:6630773,19025362:25952256,513147,126483 -k1,8179:7516763,19025362:269952 -k1,8179:8201487,19025362:269881 -k1,8179:9157600,19025362:269951 -h1,8179:9157600,19025362:0,0,0 -k1,8179:11273794,19025362:535466 -k1,8179:12204441,19025362:535465 -k1,8179:13135089,19025362:535466 -k1,8179:14065736,19025362:535465 -k1,8179:16485268,19025362:269952 -k1,8179:17708769,19025362:269952 -k1,8179:19369394,19025362:269951 -k1,8179:20658431,19025362:269952 -k1,8179:22640839,19025362:269952 -k1,8179:24898498,19025362:269952 -k1,8179:25854612,19025362:269952 -(1,8179:25854612,19025362:0,459977,115847 -r1,8212:26916301,19025362:1061689,575824,115847 -k1,8179:25854612,19025362:-1061689 -) -(1,8179:25854612,19025362:1061689,459977,115847 -k1,8179:25854612,19025362:3277 -h1,8179:26913024,19025362:0,411205,112570 -) -k1,8179:27186252,19025362:269951 -k1,8179:28019158,19025362:269952 -k1,8179:31635378,19025362:269952 -k1,8179:32583029,19025362:0 -) -(1,8180:6630773,19866850:25952256,513147,95026 -g1,8179:10743157,19866850 -k1,8180:32583028,19866850:20302396 -g1,8180:32583028,19866850 -) -v1,8182:6630773,21057316:0,393216,0 -(1,8190:6630773,22745139:25952256,2081039,196608 -g1,8190:6630773,22745139 -g1,8190:6630773,22745139 -g1,8190:6434165,22745139 -(1,8190:6434165,22745139:0,2081039,196608 -r1,8212:32779637,22745139:26345472,2277647,196608 -k1,8190:6434165,22745139:-26345472 -) -(1,8190:6434165,22745139:26345472,2081039,196608 -[1,8190:6630773,22745139:25952256,1884431,0 -(1,8184:6630773,21271226:25952256,410518,101187 -(1,8183:6630773,21271226:0,0,0 -g1,8183:6630773,21271226 -g1,8183:6630773,21271226 -g1,8183:6303093,21271226 -(1,8183:6303093,21271226:0,0,0 -) -g1,8183:6630773,21271226 -) -g1,8184:7895356,21271226 -g1,8184:8843794,21271226 -g1,8184:11372959,21271226 -g1,8184:12005251,21271226 -g1,8184:12637543,21271226 -g1,8184:13269835,21271226 -g1,8184:15482855,21271226 -h1,8184:18644312,21271226:0,0,0 -k1,8184:32583029,21271226:13938717 -g1,8184:32583029,21271226 -) -(1,8185:6630773,21937404:25952256,410518,76021 -h1,8185:6630773,21937404:0,0,0 -k1,8185:6630773,21937404:0 -h1,8185:9792229,21937404:0,0,0 -k1,8185:32583029,21937404:22790800 -g1,8185:32583029,21937404 -) -(1,8189:6630773,22669118:25952256,404226,76021 -(1,8187:6630773,22669118:0,0,0 -g1,8187:6630773,22669118 -g1,8187:6630773,22669118 -g1,8187:6303093,22669118 -(1,8187:6303093,22669118:0,0,0 -) -g1,8187:6630773,22669118 -) -g1,8189:7579210,22669118 -g1,8189:8843793,22669118 -h1,8189:10108376,22669118:0,0,0 -k1,8189:32583028,22669118:22474652 -g1,8189:32583028,22669118 -) -] -) -g1,8190:32583029,22745139 -g1,8190:6630773,22745139 -g1,8190:6630773,22745139 -g1,8190:32583029,22745139 -g1,8190:32583029,22745139 -) -h1,8190:6630773,22941747:0,0,0 -(1,8194:6630773,24307523:25952256,513147,134348 -h1,8193:6630773,24307523:983040,0,0 -k1,8193:9021245,24307523:210745 -k1,8193:10616110,24307523:210745 -k1,8193:12182140,24307523:210745 -k1,8193:12924382,24307523:210745 -k1,8193:16158303,24307523:210745 -k1,8193:17028340,24307523:210745 -k1,8193:18258170,24307523:210745 -k1,8193:19330058,24307523:210745 -k1,8193:20664090,24307523:210745 -k1,8193:24944621,24307523:210745 -k1,8193:25814658,24307523:210745 -k1,8193:27044488,24307523:210745 -k1,8193:29067959,24307523:210745 -k1,8193:31266411,24307523:210745 -k1,8194:32583029,24307523:0 -) -(1,8194:6630773,25149011:25952256,513147,134348 -k1,8193:9058466,25149011:275491 -k1,8193:10847182,25149011:275490 -k1,8193:14576420,25149011:275491 -k1,8193:16462785,25149011:275490 -k1,8193:17389704,25149011:275491 -k1,8193:19403210,25149011:275491 -k1,8193:22499370,25149011:275490 -k1,8193:23402696,25149011:275491 -k1,8193:24092953,25149011:275414 -k1,8193:24826541,25149011:275491 -k1,8193:25633528,25149011:275490 -k1,8193:27510719,25149011:275491 -k1,8193:30563625,25149011:275490 -k1,8193:31490544,25149011:275491 -k1,8193:32583029,25149011:0 -) -(1,8194:6630773,25990499:25952256,513147,126483 -k1,8193:8405051,25990499:166680 -k1,8193:9223159,25990499:166680 -k1,8193:10593079,25990499:166679 -k1,8193:12116354,25990499:166680 -k1,8193:13236583,25990499:166680 -k1,8193:15063945,25990499:166680 -k1,8193:16628508,25990499:166680 -k1,8193:18170788,25990499:166679 -k1,8193:19494178,25990499:166680 -k1,8193:20320150,25990499:166680 -k1,8193:21505915,25990499:166680 -k1,8193:23035089,25990499:166680 -k1,8193:24809366,25990499:166679 -k1,8193:27820964,25990499:166680 -k1,8193:31202185,25990499:166680 -k1,8193:32583029,25990499:0 -) -(1,8194:6630773,26831987:25952256,513147,126483 -k1,8193:9408088,26831987:176846 -k1,8193:10446077,26831987:176846 -k1,8193:13223393,26831987:176847 -k1,8193:14677536,26831987:176846 -k1,8193:16866337,26831987:176846 -k1,8193:17788327,26831987:176846 -k1,8193:18616602,26831987:176847 -k1,8193:20817855,26831987:176846 -k1,8193:22325082,26831987:176846 -k1,8193:24285163,26831987:176846 -k1,8193:25481095,26831987:176847 -k1,8193:28552011,26831987:176846 -k1,8193:31015408,26831987:176846 -k1,8193:32583029,26831987:0 -) -(1,8194:6630773,27673475:25952256,505283,134348 -g1,8193:8568017,27673475 -g1,8193:11612164,27673475 -k1,8194:32583029,27673475:17258250 -g1,8194:32583029,27673475 -) -v1,8196:6630773,28863941:0,393216,0 -(1,8200:6630773,29179038:25952256,708313,196608 -g1,8200:6630773,29179038 -g1,8200:6630773,29179038 -g1,8200:6434165,29179038 -(1,8200:6434165,29179038:0,708313,196608 -r1,8212:32779637,29179038:26345472,904921,196608 -k1,8200:6434165,29179038:-26345472 -) -(1,8200:6434165,29179038:26345472,708313,196608 -[1,8200:6630773,29179038:25952256,511705,0 -(1,8198:6630773,29077851:25952256,410518,101187 -(1,8197:6630773,29077851:0,0,0 -g1,8197:6630773,29077851 -g1,8197:6630773,29077851 -g1,8197:6303093,29077851 -(1,8197:6303093,29077851:0,0,0 -) -g1,8197:6630773,29077851 -) -k1,8198:6630773,29077851:0 -g1,8198:9792231,29077851 -g1,8198:11689105,29077851 -g1,8198:12321397,29077851 -h1,8198:12953689,29077851:0,0,0 -k1,8198:32583029,29077851:19629340 -g1,8198:32583029,29077851 -) -] -) -g1,8200:32583029,29179038 -g1,8200:6630773,29179038 -g1,8200:6630773,29179038 -g1,8200:32583029,29179038 -g1,8200:32583029,29179038 -) -h1,8200:6630773,29375646:0,0,0 -(1,8203:6630773,43979454:25952256,14013984,0 -k1,8203:12599879,43979454:5969106 -h1,8202:12599879,43979454:0,0,0 -(1,8202:12599879,43979454:14014044,14013984,0 -(1,8202:12599879,43979454:14014019,14014019,0 -(1,8202:12599879,43979454:14014019,14014019,0 -(1,8202:12599879,43979454:0,14014019,0 -(1,8202:12599879,43979454:0,18945146,0 -(1,8202:12599879,43979454:18945146,18945146,0 -) -k1,8202:12599879,43979454:-18945146 -) -) -g1,8202:26613898,43979454 -) -) -) -g1,8203:26613923,43979454 -k1,8203:32583029,43979454:5969106 -) -(1,8210:6630773,44820942:25952256,513147,134348 -h1,8209:6630773,44820942:983040,0,0 -k1,8209:8505404,44820942:263756 -k1,8209:9788245,44820942:263756 -k1,8209:11419082,44820942:263756 -k1,8209:12342129,44820942:263755 -k1,8209:12961745,44820942:263756 -k1,8209:16715948,44820942:263756 -k1,8209:19069647,44820942:263756 -(1,8209:19069647,44820942:0,452978,115847 -r1,8212:22241607,44820942:3171960,568825,115847 -k1,8209:19069647,44820942:-3171960 -) -(1,8209:19069647,44820942:3171960,452978,115847 -k1,8209:19069647,44820942:3277 -h1,8209:22238330,44820942:0,411205,112570 -) -k1,8209:22505363,44820942:263756 -k1,8209:24163070,44820942:263756 -k1,8209:25445910,44820942:263755 -k1,8209:27422122,44820942:263756 -k1,8209:29673585,44820942:263756 -k1,8209:31896867,44820942:263756 -k1,8209:32583029,44820942:0 -) -(1,8210:6630773,45662430:25952256,513147,134348 -k1,8209:9953650,45662430:250549 -k1,8209:10735696,45662430:250549 -k1,8209:12587945,45662430:250549 -k1,8209:14815716,45662430:250550 -k1,8209:15752427,45662430:250549 -k1,8209:16461073,45662430:250549 -k1,8209:19471998,45662430:250549 -k1,8209:20078407,45662430:250549 -k1,8209:21894611,45662430:250549 -k1,8209:22804453,45662430:250550 -k1,8209:26335734,45662430:250549 -k1,8209:29632396,45662430:250549 -k1,8209:31074390,45662430:250549 -k1,8209:32583029,45662430:0 -) -] -(1,8212:32583029,45706769:0,0,0 -g1,8212:32583029,45706769 -) -) -] -(1,8212:6630773,47279633:25952256,0,0 -h1,8212:6630773,47279633:25952256,0,0 -) -] -(1,8212:4262630,4025873:0,0,0 -[1,8212:-473656,4025873:0,0,0 -(1,8212:-473656,-710413:0,0,0 -(1,8212:-473656,-710413:0,0,0 -g1,8212:-473656,-710413 -) -g1,8212:-473656,-710413 -) -] -) -] -!18542 -}156 -Input:1279:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!104 -{157 -[1,8270:4262630,47279633:28320399,43253760,0 -(1,8270:4262630,4025873:0,0,0 -[1,8270:-473656,4025873:0,0,0 -(1,8270:-473656,-710413:0,0,0 -(1,8270:-473656,-644877:0,0,0 -k1,8270:-473656,-644877:-65536 -) -(1,8270:-473656,4736287:0,0,0 -k1,8270:-473656,4736287:5209943 -) -g1,8270:-473656,-710413 -) -] -) -[1,8270:6630773,47279633:25952256,43253760,0 -[1,8270:6630773,4812305:25952256,786432,0 -(1,8270:6630773,4812305:25952256,505283,134348 -(1,8270:6630773,4812305:25952256,505283,134348 -g1,8270:3078558,4812305 -[1,8270:3078558,4812305:0,0,0 -(1,8270:3078558,2439708:0,1703936,0 -k1,8270:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,8270:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,8270:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,8270:3078558,4812305:0,0,0 -(1,8270:3078558,2439708:0,1703936,0 -g1,8270:29030814,2439708 -g1,8270:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,8270:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,8270:37855564,2439708:1179648,16384,0 -) -) -k1,8270:3078556,2439708:-34777008 -) -] -[1,8270:3078558,4812305:0,0,0 -(1,8270:3078558,49800853:0,16384,2228224 -k1,8270:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,8270:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,8270:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,8270:3078558,4812305:0,0,0 -(1,8270:3078558,49800853:0,16384,2228224 -g1,8270:29030814,49800853 -g1,8270:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,8270:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,8270:37855564,49800853:1179648,16384,0 -) -) -k1,8270:3078556,49800853:-34777008 -) -] -g1,8270:6630773,4812305 -k1,8270:24502442,4812305:16676292 -g1,8270:25889183,4812305 -g1,8270:26537989,4812305 -g1,8270:29852144,4812305 -) -) -] -[1,8270:6630773,45706769:25952256,40108032,0 -(1,8270:6630773,45706769:25952256,40108032,0 -(1,8270:6630773,45706769:0,0,0 -g1,8270:6630773,45706769 -) -[1,8270:6630773,45706769:25952256,40108032,0 -(1,8210:6630773,6254097:25952256,513147,126483 -k1,8209:8965542,6254097:223854 -k1,8209:12605132,6254097:223854 -k1,8209:14113492,6254097:223854 -k1,8209:15023507,6254097:223853 -k1,8209:15778858,6254097:223854 -k1,8209:17021797,6254097:223854 -k1,8209:18612732,6254097:223854 -k1,8209:19784237,6254097:223854 -k1,8209:21609791,6254097:223854 -k1,8209:22248463,6254097:223829 -k1,8209:25671785,6254097:223854 -k1,8209:26914723,6254097:223853 -k1,8209:28818920,6254097:223854 -k1,8209:31821501,6254097:223854 -k1,8210:32583029,6254097:0 -) -(1,8210:6630773,7095585:25952256,505283,126483 -(1,8209:6630773,7095585:0,452978,115847 -r1,8270:9802733,7095585:3171960,568825,115847 -k1,8209:6630773,7095585:-3171960 -) -(1,8209:6630773,7095585:3171960,452978,115847 -k1,8209:6630773,7095585:3277 -h1,8209:9799456,7095585:0,411205,112570 -) -g1,8209:10001962,7095585 -g1,8209:10732688,7095585 -g1,8209:13282038,7095585 -g1,8209:15179305,7095585 -g1,8209:16246886,7095585 -g1,8209:17545809,7095585 -g1,8209:18948279,7095585 -g1,8209:21601831,7095585 -g1,8209:22413822,7095585 -g1,8209:23632136,7095585 -g1,8209:24246208,7095585 -k1,8210:32583029,7095585:5761911 -g1,8210:32583029,7095585 -) -v1,8212:6630773,8184669:0,393216,0 -(1,8236:6630773,20556506:25952256,12765053,196608 -g1,8236:6630773,20556506 -g1,8236:6630773,20556506 -g1,8236:6434165,20556506 -(1,8236:6434165,20556506:0,12765053,196608 -r1,8270:32779637,20556506:26345472,12961661,196608 -k1,8236:6434165,20556506:-26345472 -) -(1,8236:6434165,20556506:26345472,12765053,196608 -[1,8236:6630773,20556506:25952256,12568445,0 -(1,8214:6630773,8398579:25952256,410518,101187 -(1,8213:6630773,8398579:0,0,0 -g1,8213:6630773,8398579 -g1,8213:6630773,8398579 -g1,8213:6303093,8398579 -(1,8213:6303093,8398579:0,0,0 -) -g1,8213:6630773,8398579 -) -k1,8214:6630773,8398579:0 -h1,8214:10424521,8398579:0,0,0 -k1,8214:32583029,8398579:22158508 -g1,8214:32583029,8398579 -) -(1,8235:6630773,9130293:25952256,379060,0 -(1,8216:6630773,9130293:0,0,0 -g1,8216:6630773,9130293 -g1,8216:6630773,9130293 -g1,8216:6303093,9130293 -(1,8216:6303093,9130293:0,0,0 -) -g1,8216:6630773,9130293 -) -h1,8235:7263064,9130293:0,0,0 -k1,8235:32583028,9130293:25319964 -g1,8235:32583028,9130293 -) -(1,8235:6630773,9796471:25952256,404226,7863 -h1,8235:6630773,9796471:0,0,0 -g1,8235:7579210,9796471 -h1,8235:9159938,9796471:0,0,0 -k1,8235:32583030,9796471:23423092 -g1,8235:32583030,9796471 -) -(1,8235:6630773,10462649:25952256,410518,101187 -h1,8235:6630773,10462649:0,0,0 -g1,8235:7579210,10462649 -g1,8235:11056813,10462649 -g1,8235:11689105,10462649 -g1,8235:13269834,10462649 -g1,8235:13902126,10462649 -g1,8235:14534418,10462649 -g1,8235:15166710,10462649 -g1,8235:17379730,10462649 -g1,8235:18960459,10462649 -g1,8235:19592751,10462649 -h1,8235:21173479,10462649:0,0,0 -k1,8235:32583029,10462649:11409550 -g1,8235:32583029,10462649 -) -(1,8235:6630773,11128827:25952256,379060,0 -h1,8235:6630773,11128827:0,0,0 -h1,8235:7263064,11128827:0,0,0 -k1,8235:32583028,11128827:25319964 -g1,8235:32583028,11128827 -) -(1,8235:6630773,11795005:25952256,404226,6290 -h1,8235:6630773,11795005:0,0,0 -g1,8235:7579210,11795005 -h1,8235:10740667,11795005:0,0,0 -k1,8235:32583029,11795005:21842362 -g1,8235:32583029,11795005 -) -(1,8235:6630773,12461183:25952256,404226,82312 -h1,8235:6630773,12461183:0,0,0 -g1,8235:7579210,12461183 -g1,8235:7895356,12461183 -g1,8235:8211502,12461183 -g1,8235:8527648,12461183 -g1,8235:8843794,12461183 -g1,8235:10108377,12461183 -g1,8235:10424523,12461183 -g1,8235:10740669,12461183 -g1,8235:11056815,12461183 -g1,8235:11372961,12461183 -g1,8235:11689107,12461183 -g1,8235:12637544,12461183 -g1,8235:12953690,12461183 -g1,8235:15166710,12461183 -g1,8235:15482856,12461183 -g1,8235:15799002,12461183 -g1,8235:16115148,12461183 -g1,8235:16431294,12461183 -g1,8235:16747440,12461183 -g1,8235:17695877,12461183 -g1,8235:18012023,12461183 -g1,8235:18328169,12461183 -g1,8235:18644315,12461183 -g1,8235:18960461,12461183 -h1,8235:19908898,12461183:0,0,0 -k1,8235:32583029,12461183:12674131 -g1,8235:32583029,12461183 -) -(1,8235:6630773,13127361:25952256,388497,9436 -h1,8235:6630773,13127361:0,0,0 -g1,8235:7579210,13127361 -g1,8235:10108376,13127361 -g1,8235:10424522,13127361 -g1,8235:12637542,13127361 -g1,8235:12953688,13127361 -g1,8235:15166708,13127361 -g1,8235:15482854,13127361 -g1,8235:15799000,13127361 -g1,8235:17695874,13127361 -g1,8235:18012020,13127361 -h1,8235:19908894,13127361:0,0,0 -k1,8235:32583029,13127361:12674135 -g1,8235:32583029,13127361 -) -(1,8235:6630773,13793539:25952256,379060,0 -h1,8235:6630773,13793539:0,0,0 -h1,8235:7263064,13793539:0,0,0 -k1,8235:32583028,13793539:25319964 -g1,8235:32583028,13793539 -) -(1,8235:6630773,14459717:25952256,410518,7863 -h1,8235:6630773,14459717:0,0,0 -g1,8235:7579210,14459717 -h1,8235:11689104,14459717:0,0,0 -k1,8235:32583028,14459717:20893924 -g1,8235:32583028,14459717 -) -(1,8235:6630773,15125895:25952256,404226,76021 -h1,8235:6630773,15125895:0,0,0 -g1,8235:7579210,15125895 -g1,8235:7895356,15125895 -g1,8235:8211502,15125895 -g1,8235:8527648,15125895 -g1,8235:8843794,15125895 -g1,8235:9159940,15125895 -g1,8235:9476086,15125895 -g1,8235:9792232,15125895 -g1,8235:10108378,15125895 -g1,8235:10424524,15125895 -g1,8235:10740670,15125895 -g1,8235:11056816,15125895 -g1,8235:11372962,15125895 -g1,8235:14218273,15125895 -g1,8235:15799002,15125895 -g1,8235:17695876,15125895 -g1,8235:18328168,15125895 -g1,8235:20225042,15125895 -k1,8235:20225042,15125895:0 -h1,8235:22754207,15125895:0,0,0 -k1,8235:32583029,15125895:9828822 -g1,8235:32583029,15125895 -) -(1,8235:6630773,15792073:25952256,404226,101187 -h1,8235:6630773,15792073:0,0,0 -g1,8235:7579210,15792073 -g1,8235:11372958,15792073 -g1,8235:14218269,15792073 -g1,8235:14534415,15792073 -g1,8235:14850561,15792073 -g1,8235:15166707,15792073 -g1,8235:15482853,15792073 -g1,8235:17695873,15792073 -g1,8235:18012019,15792073 -g1,8235:20225039,15792073 -g1,8235:20541185,15792073 -g1,8235:20857331,15792073 -g1,8235:23070351,15792073 -h1,8235:23386497,15792073:0,0,0 -k1,8235:32583029,15792073:9196532 -g1,8235:32583029,15792073 -) -(1,8235:6630773,16458251:25952256,404226,101187 -h1,8235:6630773,16458251:0,0,0 -g1,8235:7579210,16458251 -g1,8235:9476084,16458251 -g1,8235:9792230,16458251 -g1,8235:10108376,16458251 -g1,8235:10424522,16458251 -g1,8235:10740668,16458251 -g1,8235:11056814,16458251 -g1,8235:11372960,16458251 -g1,8235:11689106,16458251 -g1,8235:12005252,16458251 -g1,8235:14218272,16458251 -g1,8235:14534418,16458251 -g1,8235:14850564,16458251 -g1,8235:15166710,16458251 -g1,8235:15482856,16458251 -g1,8235:17695876,16458251 -g1,8235:18012022,16458251 -g1,8235:18328168,16458251 -g1,8235:20225042,16458251 -g1,8235:23070353,16458251 -h1,8235:24018790,16458251:0,0,0 -k1,8235:32583029,16458251:8564239 -g1,8235:32583029,16458251 -) -(1,8235:6630773,17124429:25952256,379060,0 -h1,8235:6630773,17124429:0,0,0 -g1,8235:7579210,17124429 -k1,8235:7579210,17124429:0 -h1,8235:8527648,17124429:0,0,0 -k1,8235:32583028,17124429:24055380 -g1,8235:32583028,17124429 -) -(1,8235:6630773,17790607:25952256,410518,107478 -h1,8235:6630773,17790607:0,0,0 -g1,8235:7579210,17790607 -g1,8235:10108376,17790607 -g1,8235:12321396,17790607 -g1,8235:12637542,17790607 -g1,8235:13269834,17790607 -g1,8235:15166709,17790607 -g1,8235:17063583,17790607 -g1,8235:18644312,17790607 -g1,8235:20225041,17790607 -g1,8235:21489625,17790607 -g1,8235:23070354,17790607 -g1,8235:24334938,17790607 -g1,8235:25599521,17790607 -g1,8235:26231813,17790607 -g1,8235:26864105,17790607 -h1,8235:27180251,17790607:0,0,0 -k1,8235:32583029,17790607:5402778 -g1,8235:32583029,17790607 -) -(1,8235:6630773,18456785:25952256,379060,0 -h1,8235:6630773,18456785:0,0,0 -h1,8235:7263064,18456785:0,0,0 -k1,8235:32583028,18456785:25319964 -g1,8235:32583028,18456785 -) -(1,8235:6630773,19122963:25952256,410518,107478 -h1,8235:6630773,19122963:0,0,0 -g1,8235:7579210,19122963 -g1,8235:10424521,19122963 -g1,8235:13269832,19122963 -g1,8235:15482852,19122963 -g1,8235:17379726,19122963 -g1,8235:18328163,19122963 -g1,8235:19276600,19122963 -g1,8235:21805766,19122963 -g1,8235:22754203,19122963 -h1,8235:24967223,19122963:0,0,0 -k1,8235:32583029,19122963:7615806 -g1,8235:32583029,19122963 -) -(1,8235:6630773,19789141:25952256,404226,107478 -h1,8235:6630773,19789141:0,0,0 -g1,8235:7579210,19789141 -g1,8235:10424521,19789141 -g1,8235:13902124,19789141 -g1,8235:14218270,19789141 -g1,8235:19276601,19789141 -g1,8235:22754204,19789141 -g1,8235:23070350,19789141 -h1,8235:24967224,19789141:0,0,0 -k1,8235:32583029,19789141:7615805 -g1,8235:32583029,19789141 -) -(1,8235:6630773,20455319:25952256,404226,101187 -h1,8235:6630773,20455319:0,0,0 -g1,8235:7579210,20455319 -g1,8235:11689104,20455319 -g1,8235:13585978,20455319 -g1,8235:14534415,20455319 -g1,8235:15166707,20455319 -g1,8235:16431290,20455319 -g1,8235:17379727,20455319 -g1,8235:18644310,20455319 -g1,8235:18960456,20455319 -g1,8235:21805768,20455319 -k1,8235:21805768,20455319:0 -h1,8235:24334933,20455319:0,0,0 -k1,8235:32583029,20455319:8248096 -g1,8235:32583029,20455319 -) -] -) -g1,8236:32583029,20556506 -g1,8236:6630773,20556506 -g1,8236:6630773,20556506 -g1,8236:32583029,20556506 -g1,8236:32583029,20556506 -) -h1,8236:6630773,20753114:0,0,0 -(1,8240:6630773,22017509:25952256,513147,126483 -h1,8239:6630773,22017509:983040,0,0 -k1,8239:9293803,22017509:206741 -k1,8239:10887286,22017509:206741 -k1,8239:11706789,22017509:206741 -k1,8239:12932614,22017509:206740 -k1,8239:15787665,22017509:206741 -k1,8239:16653698,22017509:206741 -k1,8239:17879524,22017509:206741 -k1,8239:21250343,22017509:206741 -k1,8239:23735771,22017509:206741 -k1,8239:24704039,22017509:206740 -k1,8239:27363137,22017509:206741 -k1,8239:29512365,22017509:206741 -k1,8239:31714677,22017509:206741 -k1,8239:32583029,22017509:0 -) -(1,8240:6630773,22858997:25952256,513147,126483 -k1,8239:8222553,22858997:151954 -h1,8239:8222553,22858997:0,0,0 -k1,8239:10104688,22858997:301407 -k1,8239:10801278,22858997:301408 -k1,8239:11497868,22858997:301408 -k1,8239:12194458,22858997:301408 -k1,8239:14322321,22858997:151953 -k1,8239:15157160,22858997:151954 -k1,8239:16328198,22858997:151953 -k1,8239:20500786,22858997:151954 -k1,8239:21312032,22858997:151954 -k1,8239:22483070,22858997:151953 -k1,8239:24622731,22858997:151954 -k1,8239:26660810,22858997:151953 -k1,8239:28183777,22858997:151954 -k1,8239:29354815,22858997:151953 -k1,8239:30896132,22858997:151954 -k1,8239:32583029,22858997:0 -) -(1,8240:6630773,23700485:25952256,513147,126483 -k1,8239:8754139,23700485:180879 -k1,8239:12759699,23700485:180879 -k1,8239:13808931,23700485:180880 -k1,8239:15255966,23700485:180879 -k1,8239:16455930,23700485:180879 -k1,8239:19713069,23700485:180879 -k1,8239:22698235,23700485:180880 -k1,8239:24070559,23700485:180879 -k1,8239:26611389,23700485:180879 -k1,8239:27451560,23700485:180879 -k1,8239:28651525,23700485:180880 -k1,8239:31900144,23700485:180879 -k1,8239:32583029,23700485:0 -) -(1,8240:6630773,24541973:25952256,513147,11795 -k1,8239:10122466,24541973:211616 -k1,8239:12969284,24541973:211615 -k1,8239:17252652,24541973:211616 -k1,8239:18655712,24541973:211615 -k1,8239:19886413,24541973:211616 -k1,8239:21810484,24541973:211615 -k1,8239:23364277,24541973:211616 -k1,8239:25518379,24541973:211615 -k1,8239:30236906,24541973:211616 -k1,8239:31316873,24541973:211615 -k1,8239:32583029,24541973:0 -) -(1,8240:6630773,25383461:25952256,513147,134348 -k1,8239:7882213,25383461:232355 -k1,8239:11160681,25383461:232355 -k1,8239:12052327,25383461:232354 -k1,8239:13303767,25383461:232355 -k1,8239:15523829,25383461:232355 -k1,8239:19367218,25383461:232355 -k1,8239:20791018,25383461:232355 -k1,8239:22532012,25383461:232355 -k1,8239:25590278,25383461:232354 -k1,8239:27193646,25383461:232355 -k1,8239:32049566,25383461:232355 -$1,8239:32049566,25383461 -$1,8239:32370037,25383461 -k1,8240:32583029,25383461:0 -) -(1,8240:6630773,26224949:25952256,513147,134348 -k1,8239:8529725,26224949:203536 -k1,8239:9477750,26224949:203536 -k1,8239:10700371,26224949:203536 -k1,8239:12086832,26224949:203536 -k1,8239:12949660,26224949:203536 -k1,8239:14172281,26224949:203536 -k1,8239:17366225,26224949:203536 -k1,8239:19224545,26224949:203536 -k1,8239:19959578,26224949:203536 -k1,8239:23970100,26224949:203536 -k1,8239:24983006,26224949:203536 -k1,8239:27642176,26224949:203536 -k1,8239:28505004,26224949:203536 -k1,8239:31391584,26224949:203536 -k1,8239:32583029,26224949:0 -) -(1,8240:6630773,27066437:25952256,615216,95026 -g1,8239:8983515,27066437 -g1,8239:12463476,27066437 -g1,8239:13321997,27066437 -g1,8239:18041244,27066437 -$1,8239:18248338,27066437 -(1,8239:18742479,26791156:311689,339935,0 -) -$1,8239:19054168,27066437 -k1,8240:32583029,27066437:13148097 -g1,8240:32583029,27066437 -) -(1,8242:6630773,27907925:25952256,513147,126484 -h1,8241:6630773,27907925:983040,0,0 -k1,8241:8387836,27907925:296266 -k1,8241:9552455,27907925:296267 -k1,8241:11859366,27907925:296266 -k1,8241:12807060,27907925:296266 -k1,8241:14122411,27907925:296266 -k1,8241:16406385,27907925:296267 -k1,8241:20687240,27907925:296266 -k1,8241:21851858,27907925:296266 -k1,8241:23252406,27907925:296266 -k1,8241:24879054,27907925:296267 -k1,8241:27473668,27907925:296266 -$1,8241:27473668,27907925 -$1,8241:27981572,27907925 -k1,8241:28277838,27907925:296266 -k1,8241:29765550,27907925:296267 -$1,8241:29765550,27907925 -$1,8241:30209884,27907925 -k1,8241:30506150,27907925:296266 -k1,8241:31563944,27907925:296266 -k1,8241:32583029,27907925:0 -) -(1,8242:6630773,28749413:25952256,513147,138281 -k1,8241:9846410,28749413:169524 -k1,8241:13029935,28749413:169524 -$1,8241:13029935,28749413 -k1,8241:13763808,28749413:182060 -k1,8241:14514065,28749413:182060 -k1,8241:16547537,28749413:80499 -k1,8241:17196234,28749413:80500 -$1,8241:19083671,28749413 -k1,8241:19426865,28749413:169524 -k1,8241:21396663,28749413:169524 -k1,8241:22585272,28749413:169524 -k1,8241:24832943,28749413:169524 -k1,8241:25661759,28749413:169524 -k1,8241:26850368,28749413:169524 -k1,8241:29870053,28749413:169524 -k1,8241:30907929,28749413:169524 -k1,8241:32583029,28749413:0 -) -(1,8242:6630773,29590901:25952256,513147,134348 -k1,8241:8662842,29590901:216722 -k1,8241:9660099,29590901:216723 -k1,8241:11120694,29590901:216722 -k1,8241:14394016,29590901:216722 -k1,8241:15895245,29590901:216723 -k1,8241:18925428,29590901:216722 -k1,8241:21802912,29590901:216722 -k1,8241:23641650,29590901:216722 -k1,8241:24606139,29590901:216723 -k1,8241:26243026,29590901:216722 -k1,8241:28157786,29590901:216722 -k1,8241:30240974,29590901:216723 -k1,8241:30989193,29590901:216722 -k1,8241:32583029,29590901:0 -) -(1,8242:6630773,30432389:25952256,513147,134348 -k1,8241:8198412,30432389:186795 -k1,8241:11143617,30432389:186795 -k1,8241:12614918,30432389:186795 -k1,8241:13670065,30432389:186795 -k1,8241:16037243,30432389:186795 -k1,8241:17290309,30432389:186795 -k1,8241:20192916,30432389:186795 -k1,8241:21398795,30432389:186794 -k1,8241:23265933,30432389:186795 -k1,8241:24112020,30432389:186795 -$1,8241:24112020,30432389 -$1,8241:24619924,30432389 -k1,8241:24806719,30432389:186795 -k1,8241:26065683,30432389:186795 -k1,8241:28579661,30432389:186795 -k1,8241:29700999,30432389:186795 -$1,8241:29700999,30432389 -k1,8241:30390963,30432389:182060 -k1,8241:31141220,30432389:182060 -$1,8241:31539679,30432389 -k1,8241:31900144,30432389:186795 -k1,8241:32583029,30432389:0 -) -(1,8242:6630773,31273877:25952256,513147,138281 -g1,8241:7446040,31273877 -g1,8241:9347239,31273877 -g1,8241:11675077,31273877 -g1,8241:12561779,31273877 -g1,8241:13780093,31273877 -g1,8241:15967029,31273877 -$1,8241:15967029,31273877 -g1,8241:16700902,31273877 -g1,8241:17451159,31273877 -g1,8241:18041141,31273877 -g1,8241:18455487,31273877 -$1,8241:18958148,31273877 -k1,8242:32583029,31273877:13451211 -g1,8242:32583029,31273877 -) -(1,8244:6630773,32115365:25952256,505283,126483 -h1,8243:6630773,32115365:983040,0,0 -k1,8243:10739771,32115365:191256 -k1,8243:11547066,32115365:191257 -k1,8243:12153158,32115365:191249 -k1,8243:14836093,32115365:191256 -k1,8243:16046435,32115365:191257 -k1,8243:19104891,32115365:191256 -k1,8243:19827645,32115365:191257 -k1,8243:22148166,32115365:191256 -k1,8243:25345559,32115365:191257 -k1,8243:28468896,32115365:191256 -k1,8243:29384981,32115365:191257 -k1,8243:30595322,32115365:191256 -k1,8243:32583029,32115365:0 -) -(1,8244:6630773,32956853:25952256,513147,134348 -k1,8243:8620661,32956853:277432 -k1,8243:10753417,32956853:277432 -k1,8243:12135130,32956853:277431 -k1,8243:13160328,32956853:277432 -k1,8243:17006195,32956853:277432 -k1,8243:17969789,32956853:277432 -h1,8243:17969789,32956853:0,0,0 -k1,8243:20100819,32956853:550302 -k1,8243:21046303,32956853:550302 -k1,8243:25024553,32956853:277432 -k1,8243:25657845,32956853:277432 -k1,8243:28407295,32956853:277432 -(1,8243:28407295,32956853:0,435480,115847 -r1,8270:29468985,32956853:1061690,551327,115847 -k1,8243:28407295,32956853:-1061690 -) -(1,8243:28407295,32956853:1061690,435480,115847 -g1,8243:29113996,32956853 -h1,8243:29465708,32956853:0,411205,112570 -) -k1,8243:29746416,32956853:277431 -k1,8243:31516758,32956853:277432 -k1,8243:32583029,32956853:0 -) -(1,8244:6630773,33798341:25952256,513147,134348 -k1,8243:9089079,33798341:217630 -k1,8243:10325794,33798341:217630 -k1,8243:12704801,33798341:217630 -k1,8243:13751461,33798341:217630 -k1,8243:16403098,33798341:217630 -k1,8243:17639813,33798341:217630 -k1,8243:20724642,33798341:217629 -k1,8243:22509893,33798341:217630 -k1,8243:23746608,33798341:217630 -k1,8243:26718716,33798341:217630 -k1,8243:29097723,33798341:217630 -k1,8243:30183705,33798341:217630 -k1,8243:31931601,33798341:217630 -k1,8243:32583029,33798341:0 -) -(1,8244:6630773,34639829:25952256,513147,134348 -k1,8243:9093723,34639829:203924 -k1,8243:9755745,34639829:203925 -k1,8243:10645831,34639829:203924 -h1,8243:10645831,34639829:0,0,0 -k1,8243:12631055,34639829:404496 -k1,8243:13430732,34639829:404495 -k1,8243:15811138,34639829:404496 -k1,8243:16610816,34639829:404496 -k1,8243:17209922,34639829:203924 -k1,8243:18303825,34639829:203924 -k1,8243:19296148,34639829:203925 -k1,8243:22805053,34639829:203924 -h1,8243:22805053,34639829:0,0,0 -k1,8243:24790277,34639829:404496 -k1,8243:25589954,34639829:404495 -k1,8243:27970360,34639829:404496 -k1,8243:28770038,34639829:404496 -k1,8243:29749908,34639829:203924 -k1,8243:32583029,34639829:0 -) -(1,8244:6630773,35481317:25952256,513147,138281 -g1,8243:7446040,35481317 -g1,8243:8664354,35481317 -g1,8243:10798206,35481317 -g1,8243:11656727,35481317 -g1,8243:12211816,35481317 -g1,8243:14889617,35481317 -g1,8243:16257353,35481317 -g1,8243:18884036,35481317 -g1,8243:21641791,35481317 -g1,8243:22860105,35481317 -g1,8243:24933664,35481317 -$1,8243:25140758,35481317 -g1,8243:25825479,35481317 -g1,8243:26575736,35481317 -$1,8243:26974195,35481317 -g1,8243:27347094,35481317 -$1,8243:27347094,35481317 -g1,8243:28080967,35481317 -g1,8243:28831224,35481317 -$1,8243:29229683,35481317 -k1,8244:32583029,35481317:2972582 -g1,8244:32583029,35481317 -) -v1,8246:6630773,36570401:0,393216,0 -(1,8270:6630773,45510161:25952256,9332976,196608 -g1,8270:6630773,45510161 -g1,8270:6630773,45510161 -g1,8270:6434165,45510161 -(1,8270:6434165,45510161:0,9332976,196608 -r1,8270:32779637,45510161:26345472,9529584,196608 -k1,8270:6434165,45510161:-26345472 -) -(1,8270:6434165,45510161:26345472,9332976,196608 -[1,8270:6630773,45510161:25952256,9136368,0 -(1,8248:6630773,36784311:25952256,410518,101187 -(1,8247:6630773,36784311:0,0,0 -g1,8247:6630773,36784311 -g1,8247:6630773,36784311 -g1,8247:6303093,36784311 -(1,8247:6303093,36784311:0,0,0 -) -g1,8247:6630773,36784311 -) -g1,8248:7895356,36784311 -g1,8248:8843794,36784311 -g1,8248:11372959,36784311 -g1,8248:12005251,36784311 -g1,8248:13902125,36784311 -g1,8248:14534417,36784311 -g1,8248:15482855,36784311 -g1,8248:17063584,36784311 -g1,8248:17695876,36784311 -h1,8248:19276604,36784311:0,0,0 -k1,8248:32583029,36784311:13306425 -g1,8248:32583029,36784311 -) -(1,8249:6630773,37450489:25952256,410518,101187 -h1,8249:6630773,37450489:0,0,0 -k1,8249:6630773,37450489:0 -h1,8249:10424521,37450489:0,0,0 -k1,8249:32583029,37450489:22158508 -g1,8249:32583029,37450489 -) -(1,8269:6630773,38182203:25952256,379060,0 -(1,8251:6630773,38182203:0,0,0 -g1,8251:6630773,38182203 -g1,8251:6630773,38182203 -g1,8251:6303093,38182203 -(1,8251:6303093,38182203:0,0,0 -) -g1,8251:6630773,38182203 -) -h1,8269:7263064,38182203:0,0,0 -k1,8269:32583028,38182203:25319964 -g1,8269:32583028,38182203 -) -(1,8269:6630773,38848381:25952256,404226,7863 -h1,8269:6630773,38848381:0,0,0 -g1,8269:7579210,38848381 -h1,8269:9159938,38848381:0,0,0 -k1,8269:32583030,38848381:23423092 -g1,8269:32583030,38848381 -) -(1,8269:6630773,39514559:25952256,410518,101187 -h1,8269:6630773,39514559:0,0,0 -g1,8269:7579210,39514559 -g1,8269:11056813,39514559 -g1,8269:11689105,39514559 -g1,8269:13269834,39514559 -g1,8269:13902126,39514559 -g1,8269:15799000,39514559 -g1,8269:16431292,39514559 -g1,8269:17379730,39514559 -g1,8269:18960459,39514559 -g1,8269:19592751,39514559 -h1,8269:21173479,39514559:0,0,0 -k1,8269:32583029,39514559:11409550 -g1,8269:32583029,39514559 -) -(1,8269:6630773,40180737:25952256,379060,0 -h1,8269:6630773,40180737:0,0,0 -h1,8269:7263064,40180737:0,0,0 -k1,8269:32583028,40180737:25319964 -g1,8269:32583028,40180737 -) -(1,8269:6630773,40846915:25952256,404226,6290 -h1,8269:6630773,40846915:0,0,0 -g1,8269:7579210,40846915 -h1,8269:10740667,40846915:0,0,0 -k1,8269:32583029,40846915:21842362 -g1,8269:32583029,40846915 -) -(1,8269:6630773,41513093:25952256,404226,82312 -h1,8269:6630773,41513093:0,0,0 -g1,8269:7579210,41513093 -g1,8269:7895356,41513093 -g1,8269:8211502,41513093 -g1,8269:8527648,41513093 -g1,8269:8843794,41513093 -g1,8269:10108377,41513093 -g1,8269:10424523,41513093 -g1,8269:10740669,41513093 -g1,8269:11056815,41513093 -g1,8269:11372961,41513093 -g1,8269:11689107,41513093 -g1,8269:12637544,41513093 -g1,8269:12953690,41513093 -g1,8269:15166710,41513093 -g1,8269:15482856,41513093 -g1,8269:15799002,41513093 -g1,8269:16115148,41513093 -g1,8269:16431294,41513093 -g1,8269:16747440,41513093 -g1,8269:17695877,41513093 -g1,8269:18012023,41513093 -g1,8269:18328169,41513093 -g1,8269:18644315,41513093 -g1,8269:18960461,41513093 -h1,8269:19908898,41513093:0,0,0 -k1,8269:32583029,41513093:12674131 -g1,8269:32583029,41513093 -) -(1,8269:6630773,42179271:25952256,388497,9436 -h1,8269:6630773,42179271:0,0,0 -g1,8269:7579210,42179271 -g1,8269:10108376,42179271 -g1,8269:12637542,42179271 -g1,8269:12953688,42179271 -g1,8269:15166708,42179271 -g1,8269:15482854,42179271 -g1,8269:15799000,42179271 -g1,8269:17695874,42179271 -g1,8269:18012020,42179271 -h1,8269:19908894,42179271:0,0,0 -k1,8269:32583029,42179271:12674135 -g1,8269:32583029,42179271 -) -(1,8269:6630773,42845449:25952256,379060,0 -h1,8269:6630773,42845449:0,0,0 -h1,8269:7263064,42845449:0,0,0 -k1,8269:32583028,42845449:25319964 -g1,8269:32583028,42845449 -) -(1,8269:6630773,43511627:25952256,410518,7863 -h1,8269:6630773,43511627:0,0,0 -g1,8269:7579210,43511627 -h1,8269:11689104,43511627:0,0,0 -k1,8269:32583028,43511627:20893924 -g1,8269:32583028,43511627 -) -(1,8269:6630773,44177805:25952256,404226,76021 -h1,8269:6630773,44177805:0,0,0 -g1,8269:7579210,44177805 -g1,8269:7895356,44177805 -g1,8269:8211502,44177805 -g1,8269:8527648,44177805 -g1,8269:8843794,44177805 -g1,8269:9159940,44177805 -g1,8269:9476086,44177805 -g1,8269:12321397,44177805 -g1,8269:13902126,44177805 -g1,8269:15799000,44177805 -g1,8269:16431292,44177805 -g1,8269:18328166,44177805 -k1,8269:18328166,44177805:0 -h1,8269:20857331,44177805:0,0,0 -k1,8269:32583029,44177805:11725698 -g1,8269:32583029,44177805 -) -(1,8269:6630773,44843983:25952256,404226,101187 -h1,8269:6630773,44843983:0,0,0 -g1,8269:7579210,44843983 -g1,8269:9476084,44843983 -g1,8269:9792230,44843983 -g1,8269:10108376,44843983 -g1,8269:12321396,44843983 -g1,8269:12637542,44843983 -g1,8269:12953688,44843983 -g1,8269:13269834,44843983 -g1,8269:13585980,44843983 -g1,8269:15799000,44843983 -g1,8269:16115146,44843983 -g1,8269:16431292,44843983 -g1,8269:18328166,44843983 -g1,8269:18644312,44843983 -g1,8269:18960458,44843983 -g1,8269:21173478,44843983 -h1,8269:22121915,44843983:0,0,0 -k1,8269:32583029,44843983:10461114 -g1,8269:32583029,44843983 -) -(1,8269:6630773,45510161:25952256,379060,0 -h1,8269:6630773,45510161:0,0,0 -g1,8269:7579210,45510161 -k1,8269:7579210,45510161:0 -h1,8269:8527648,45510161:0,0,0 -k1,8269:32583028,45510161:24055380 -g1,8269:32583028,45510161 -) -] -) -g1,8270:32583029,45510161 -g1,8270:6630773,45510161 -g1,8270:6630773,45510161 -g1,8270:32583029,45510161 -g1,8270:32583029,45510161 -) -] -(1,8270:32583029,45706769:0,0,0 -g1,8270:32583029,45706769 -) -) -] -(1,8270:6630773,47279633:25952256,0,0 -h1,8270:6630773,47279633:25952256,0,0 -) -] -(1,8270:4262630,4025873:0,0,0 -[1,8270:-473656,4025873:0,0,0 -(1,8270:-473656,-710413:0,0,0 -(1,8270:-473656,-710413:0,0,0 -g1,8270:-473656,-710413 -) -g1,8270:-473656,-710413 -) -] -) -] -!27239 -}157 -Input:1280:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1281:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1282:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1283:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1284:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1285:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1286:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1287:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1288:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1289:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1290:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1024 -{158 -[1,8351:4262630,47279633:28320399,43253760,0 -(1,8351:4262630,4025873:0,0,0 -[1,8351:-473656,4025873:0,0,0 -(1,8351:-473656,-710413:0,0,0 -(1,8351:-473656,-644877:0,0,0 -k1,8351:-473656,-644877:-65536 -) -(1,8351:-473656,4736287:0,0,0 -k1,8351:-473656,4736287:5209943 -) -g1,8351:-473656,-710413 -) -] -) -[1,8351:6630773,47279633:25952256,43253760,0 -[1,8351:6630773,4812305:25952256,786432,0 -(1,8351:6630773,4812305:25952256,505283,134348 -(1,8351:6630773,4812305:25952256,505283,134348 -g1,8351:3078558,4812305 -[1,8351:3078558,4812305:0,0,0 -(1,8351:3078558,2439708:0,1703936,0 -k1,8351:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,8351:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,8351:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,8351:3078558,4812305:0,0,0 -(1,8351:3078558,2439708:0,1703936,0 -g1,8351:29030814,2439708 -g1,8351:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,8351:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,8351:37855564,2439708:1179648,16384,0 -) -) -k1,8351:3078556,2439708:-34777008 -) -] -[1,8351:3078558,4812305:0,0,0 -(1,8351:3078558,49800853:0,16384,2228224 -k1,8351:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,8351:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,8351:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,8351:3078558,4812305:0,0,0 -(1,8351:3078558,49800853:0,16384,2228224 -g1,8351:29030814,49800853 -g1,8351:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,8351:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,8351:37855564,49800853:1179648,16384,0 -) -) -k1,8351:3078556,49800853:-34777008 -) -] -g1,8351:6630773,4812305 -g1,8351:6630773,4812305 -g1,8351:8843268,4812305 -g1,8351:10880782,4812305 -g1,8351:13281365,4812305 -k1,8351:31387653,4812305:18106288 -) -) -] -[1,8351:6630773,45706769:25952256,40108032,0 -(1,8351:6630773,45706769:25952256,40108032,0 -(1,8351:6630773,45706769:0,0,0 -g1,8351:6630773,45706769 -) -[1,8351:6630773,45706769:25952256,40108032,0 -v1,8270:6630773,6254097:0,393216,0 -(1,8270:6630773,9233906:25952256,3373025,196608 -g1,8270:6630773,9233906 -g1,8270:6630773,9233906 -g1,8270:6434165,9233906 -(1,8270:6434165,9233906:0,3373025,196608 -r1,8351:32779637,9233906:26345472,3569633,196608 -k1,8270:6434165,9233906:-26345472 -) -(1,8270:6434165,9233906:26345472,3373025,196608 -[1,8270:6630773,9233906:25952256,3176417,0 -(1,8269:6630773,6468007:25952256,410518,107478 -h1,8269:6630773,6468007:0,0,0 -g1,8269:7579210,6468007 -g1,8269:10108376,6468007 -g1,8269:12321396,6468007 -g1,8269:12637542,6468007 -g1,8269:13269834,6468007 -g1,8269:15166709,6468007 -g1,8269:17063583,6468007 -g1,8269:18644312,6468007 -g1,8269:20225041,6468007 -g1,8269:21489625,6468007 -g1,8269:23070354,6468007 -g1,8269:24334938,6468007 -g1,8269:25599521,6468007 -g1,8269:26231813,6468007 -g1,8269:26864105,6468007 -h1,8269:27180251,6468007:0,0,0 -k1,8269:32583029,6468007:5402778 -g1,8269:32583029,6468007 -) -(1,8269:6630773,7134185:25952256,379060,0 -h1,8269:6630773,7134185:0,0,0 -h1,8269:7263064,7134185:0,0,0 -k1,8269:32583028,7134185:25319964 -g1,8269:32583028,7134185 -) -(1,8269:6630773,7800363:25952256,410518,107478 -h1,8269:6630773,7800363:0,0,0 -g1,8269:7579210,7800363 -g1,8269:10424521,7800363 -g1,8269:13269832,7800363 -g1,8269:15482852,7800363 -g1,8269:17379726,7800363 -g1,8269:18328163,7800363 -g1,8269:19276600,7800363 -g1,8269:21805766,7800363 -g1,8269:22754203,7800363 -h1,8269:24967223,7800363:0,0,0 -k1,8269:32583029,7800363:7615806 -g1,8269:32583029,7800363 -) -(1,8269:6630773,8466541:25952256,404226,107478 -h1,8269:6630773,8466541:0,0,0 -g1,8269:7579210,8466541 -g1,8269:10424521,8466541 -g1,8269:13902124,8466541 -g1,8269:14218270,8466541 -g1,8269:19276601,8466541 -g1,8269:22754204,8466541 -g1,8269:23070350,8466541 -h1,8269:24967224,8466541:0,0,0 -k1,8269:32583029,8466541:7615805 -g1,8269:32583029,8466541 -) -(1,8269:6630773,9132719:25952256,404226,101187 -h1,8269:6630773,9132719:0,0,0 -g1,8269:7579210,9132719 -g1,8269:11689104,9132719 -g1,8269:13585978,9132719 -g1,8269:14534415,9132719 -g1,8269:15166707,9132719 -g1,8269:16431290,9132719 -g1,8269:17379727,9132719 -g1,8269:18644310,9132719 -g1,8269:18960456,9132719 -g1,8269:21805768,9132719 -g1,8269:22438060,9132719 -k1,8269:22438060,9132719:0 -h1,8269:24651080,9132719:0,0,0 -k1,8269:32583029,9132719:7931949 -g1,8269:32583029,9132719 -) -] -) -g1,8270:32583029,9233906 -g1,8270:6630773,9233906 -g1,8270:6630773,9233906 -g1,8270:32583029,9233906 -g1,8270:32583029,9233906 -) -h1,8270:6630773,9430514:0,0,0 -(1,8274:6630773,10604180:25952256,513147,126483 -h1,8273:6630773,10604180:983040,0,0 -k1,8273:9193464,10604180:171938 -k1,8273:11020187,10604180:171939 -k1,8273:11723622,10604180:171938 -k1,8273:12704930,10604180:171938 -k1,8273:15592680,10604180:171938 -k1,8273:16712270,10604180:171939 -k1,8273:17903293,10604180:171938 -k1,8273:20942431,10604180:171938 -k1,8273:21730408,10604180:171939 -k1,8273:22921431,10604180:171938 -k1,8273:26257447,10604180:171938 -k1,8273:27804986,10604180:171938 -k1,8273:28747628,10604180:171939 -k1,8273:31635378,10604180:171938 -k1,8273:32583029,10604180:0 -) -(1,8274:6630773,11445668:25952256,505283,126483 -g1,8273:7849087,11445668 -k1,8274:32583029,11445668:22862234 -g1,8274:32583029,11445668 -) -v1,8276:6630773,12444025:0,393216,0 -(1,8280:6630773,12759122:25952256,708313,196608 -g1,8280:6630773,12759122 -g1,8280:6630773,12759122 -g1,8280:6434165,12759122 -(1,8280:6434165,12759122:0,708313,196608 -r1,8351:32779637,12759122:26345472,904921,196608 -k1,8280:6434165,12759122:-26345472 -) -(1,8280:6434165,12759122:26345472,708313,196608 -[1,8280:6630773,12759122:25952256,511705,0 -(1,8278:6630773,12657935:25952256,410518,101187 -(1,8277:6630773,12657935:0,0,0 -g1,8277:6630773,12657935 -g1,8277:6630773,12657935 -g1,8277:6303093,12657935 -(1,8277:6303093,12657935:0,0,0 -) -g1,8277:6630773,12657935 -) -k1,8278:6630773,12657935:0 -g1,8278:9792231,12657935 -g1,8278:11689105,12657935 -g1,8278:12321397,12657935 -h1,8278:12953689,12657935:0,0,0 -k1,8278:32583029,12657935:19629340 -g1,8278:32583029,12657935 -) -] -) -g1,8280:32583029,12759122 -g1,8280:6630773,12759122 -g1,8280:6630773,12759122 -g1,8280:32583029,12759122 -g1,8280:32583029,12759122 -) -h1,8280:6630773,12955730:0,0,0 -(1,8283:6630773,27367428:25952256,14013984,0 -k1,8283:12599879,27367428:5969106 -h1,8282:12599879,27367428:0,0,0 -(1,8282:12599879,27367428:14014044,14013984,0 -(1,8282:12599879,27367428:14014019,14014019,0 -(1,8282:12599879,27367428:14014019,14014019,0 -(1,8282:12599879,27367428:0,14014019,0 -(1,8282:12599879,27367428:0,18945146,0 -(1,8282:12599879,27367428:18945146,18945146,0 -) -k1,8282:12599879,27367428:-18945146 -) -) -g1,8282:26613898,27367428 -) -) -) -g1,8283:26613923,27367428 -k1,8283:32583029,27367428:5969106 -) -(1,8290:6630773,28208916:25952256,513147,138281 -h1,8289:6630773,28208916:983040,0,0 -k1,8289:8962967,28208916:152467 -k1,8289:11905302,28208916:152467 -k1,8289:12717060,28208916:152466 -k1,8289:13888612,28208916:152467 -k1,8289:16282410,28208916:152467 -k1,8289:18147333,28208916:152467 -k1,8289:20287506,28208916:152466 -k1,8289:20971470,28208916:152467 -$1,8289:20971470,28208916 -k1,8289:21705343,28208916:182060 -k1,8289:22455600,28208916:182060 -$1,8289:24343037,28208916 -k1,8289:24669174,28208916:152467 -k1,8289:26013086,28208916:152467 -k1,8289:27733173,28208916:152466 -k1,8289:28904725,28208916:152467 -k1,8289:32124932,28208916:152467 -k1,8289:32583029,28208916:0 -) -(1,8290:6630773,29050404:25952256,513147,134348 -k1,8289:7916415,29050404:181360 -k1,8289:8845540,29050404:181359 -k1,8289:10466726,29050404:181360 -k1,8289:11932592,29050404:181360 -k1,8289:12572048,29050404:181359 -k1,8289:13284905,29050404:181360 -k1,8289:17159219,29050404:181360 -k1,8289:18026740,29050404:181359 -k1,8289:19227185,29050404:181360 -k1,8289:21887117,29050404:181360 -k1,8289:23236983,29050404:181359 -k1,8289:24911253,29050404:181360 -k1,8289:26158884,29050404:181360 -k1,8289:28325329,29050404:181359 -k1,8289:29525774,29050404:181360 -k1,8289:32583029,29050404:0 -) -(1,8290:6630773,29891892:25952256,513147,126483 -g1,8289:7489294,29891892 -g1,8289:8707608,29891892 -g1,8289:12738072,29891892 -g1,8289:15572504,29891892 -(1,8289:15572504,29891892:0,452978,115847 -r1,8351:16985905,29891892:1413401,568825,115847 -k1,8289:15572504,29891892:-1413401 -) -(1,8289:15572504,29891892:1413401,452978,115847 -k1,8289:15572504,29891892:3277 -h1,8289:16982628,29891892:0,411205,112570 -) -g1,8289:17185134,29891892 -g1,8289:18575808,29891892 -(1,8289:18575808,29891892:0,452978,115847 -r1,8351:20340921,29891892:1765113,568825,115847 -k1,8289:18575808,29891892:-1765113 -) -(1,8289:18575808,29891892:1765113,452978,115847 -k1,8289:18575808,29891892:3277 -h1,8289:20337644,29891892:0,411205,112570 -) -k1,8290:32583029,29891892:12068438 -g1,8290:32583029,29891892 -) -v1,8292:6630773,31065559:0,393216,0 -(1,8351:6630773,45116945:25952256,14444602,589824 -g1,8351:6630773,45116945 -(1,8351:6630773,45116945:25952256,14444602,589824 -(1,8351:6630773,45706769:25952256,15034426,0 -[1,8351:6630773,45706769:25952256,15034426,0 -(1,8351:6630773,45706769:25952256,15008212,0 -r1,8351:6656987,45706769:26214,15008212,0 -[1,8351:6656987,45706769:25899828,15008212,0 -(1,8351:6656987,45116945:25899828,13828564,0 -[1,8351:7246811,45116945:24720180,13828564,0 -(1,8293:7246811,32375755:24720180,1087374,138281 -k1,8292:8625670,32375755:169156 -k1,8292:10048530,32375755:169156 -k1,8292:11350148,32375755:169156 -k1,8292:12849685,32375755:169156 -k1,8292:13706314,32375755:169156 -k1,8292:14231330,32375755:169156 -k1,8292:18980142,32375755:169156 -k1,8292:22895991,32375755:169156 -k1,8292:23421007,32375755:169156 -k1,8292:26352506,32375755:169156 -k1,8292:28334388,32375755:169156 -k1,8292:30664921,32375755:169156 -$1,8292:30664921,32375755 -k1,8292:31398794,32375755:182060 -k1,8293:31966991,32375755:0 -) -(1,8293:7246811,33217243:24720180,615216,134348 -k1,8292:7891666,33217243:136951 -k1,8292:8297316,33217243:136952 -k1,8292:8832726,33217243:136951 -k1,8292:9537875,33217243:136952 -(1,8292:9982209,33315557:311689,334430,0 -) -k1,8292:10430849,33217243:136951 -k1,8292:10836499,33217243:136952 -k1,8292:11476111,33217243:136951 -k1,8292:12181260,33217243:136952 -(1,8292:12625594,33315557:311689,339935,0 -) -k1,8292:13074234,33217243:136951 -k1,8292:13479883,33217243:136951 -(1,8292:13982544,32941962:311689,339935,0 -) -$1,8292:14294233,33217243 -k1,8292:14663167,33217243:195264 -k1,8292:16055118,33217243:195264 -k1,8292:18945878,33217243:195264 -k1,8292:20654367,33217243:195263 -k1,8292:21381128,33217243:195264 -k1,8292:22595477,33217243:195264 -k1,8292:24444214,33217243:195264 -k1,8292:25325639,33217243:195263 -k1,8292:26468554,33217243:195264 -k1,8292:28476544,33217243:195264 -k1,8293:31966991,33217243:0 -) -(1,8293:7246811,34058731:24720180,513147,126483 -(1,8292:7246811,34058731:0,452978,115847 -r1,8351:8660212,34058731:1413401,568825,115847 -k1,8292:7246811,34058731:-1413401 -) -(1,8292:7246811,34058731:1413401,452978,115847 -k1,8292:7246811,34058731:3277 -h1,8292:8656935,34058731:0,411205,112570 -) -k1,8292:8998998,34058731:165116 -k1,8292:10117664,34058731:165117 -k1,8292:11658381,34058731:165116 -k1,8292:13353764,34058731:165117 -k1,8292:14170308,34058731:165116 -k1,8292:15789013,34058731:165116 -k1,8292:16973215,34058731:165117 -k1,8292:20949250,34058731:165116 -k1,8292:21773658,34058731:165116 -k1,8292:22957860,34058731:165117 -k1,8292:25284353,34058731:165116 -k1,8292:26646157,34058731:165117 -k1,8292:29271495,34058731:165116 -k1,8293:31966991,34058731:0 -) -(1,8293:7246811,34900219:24720180,513147,134348 -(1,8292:7246811,34900219:0,452978,115847 -r1,8351:8308500,34900219:1061689,568825,115847 -k1,8292:7246811,34900219:-1061689 -) -(1,8292:7246811,34900219:1061689,452978,115847 -k1,8292:7246811,34900219:3277 -h1,8292:8305223,34900219:0,411205,112570 -) -k1,8292:8468033,34900219:159533 -k1,8292:9159063,34900219:159533 -k1,8292:10831822,34900219:159533 -k1,8292:11642783,34900219:159533 -k1,8292:14100664,34900219:159533 -k1,8292:15048595,34900219:159533 -k1,8292:18280455,34900219:159532 -k1,8292:20007609,34900219:159533 -k1,8292:21905157,34900219:159533 -k1,8292:25654752,34900219:159533 -k1,8292:26500447,34900219:159533 -k1,8292:27981841,34900219:159533 -k1,8292:28800666,34900219:159533 -k1,8292:29979284,34900219:159533 -k1,8292:31966991,34900219:0 -) -(1,8293:7246811,35741707:24720180,513147,134348 -k1,8292:10172100,35741707:208166 -k1,8292:12892916,35741707:208166 -k1,8292:13889480,35741707:208166 -k1,8292:17169974,35741707:208166 -k1,8292:17909637,35741707:208166 -k1,8292:21178991,35741707:208167 -k1,8292:25036202,35741707:208166 -k1,8292:26435813,35741707:208166 -k1,8292:27663064,35741707:208166 -k1,8292:29714102,35741707:208166 -k1,8292:30453765,35741707:208166 -k1,8292:31966991,35741707:0 -) -(1,8293:7246811,36583195:24720180,505283,126483 -g1,8292:8132202,36583195 -g1,8292:9524186,36583195 -g1,8292:10339453,36583195 -g1,8292:11741923,36583195 -g1,8292:13308233,36583195 -g1,8292:15922464,36583195 -g1,8292:19887392,36583195 -k1,8293:31966991,36583195:9394589 -g1,8293:31966991,36583195 -) -v1,8295:7246811,37773661:0,393216,0 -(1,8302:7246811,40062126:24720180,2681681,196608 -g1,8302:7246811,40062126 -g1,8302:7246811,40062126 -g1,8302:7050203,40062126 -(1,8302:7050203,40062126:0,2681681,196608 -r1,8351:32163599,40062126:25113396,2878289,196608 -k1,8302:7050203,40062126:-25113396 -) -(1,8302:7050203,40062126:25113396,2681681,196608 -[1,8302:7246811,40062126:24720180,2485073,0 -(1,8297:7246811,37987571:24720180,410518,101187 -(1,8296:7246811,37987571:0,0,0 -g1,8296:7246811,37987571 -g1,8296:7246811,37987571 -g1,8296:6919131,37987571 -(1,8296:6919131,37987571:0,0,0 -) -g1,8296:7246811,37987571 -) -g1,8297:8511394,37987571 -g1,8297:9459832,37987571 -g1,8297:11988997,37987571 -g1,8297:12621289,37987571 -g1,8297:14518163,37987571 -g1,8297:15150455,37987571 -g1,8297:18944205,37987571 -g1,8297:20524934,37987571 -g1,8297:21157226,37987571 -h1,8297:22737954,37987571:0,0,0 -k1,8297:31966991,37987571:9229037 -g1,8297:31966991,37987571 -) -(1,8298:7246811,38653749:24720180,410518,101187 -h1,8298:7246811,38653749:0,0,0 -g1,8298:10408269,38653749 -g1,8298:12305143,38653749 -g1,8298:12937435,38653749 -h1,8298:13569727,38653749:0,0,0 -k1,8298:31966991,38653749:18397264 -g1,8298:31966991,38653749 -) -(1,8299:7246811,39319927:24720180,410518,101187 -h1,8299:7246811,39319927:0,0,0 -k1,8299:7246811,39319927:0 -h1,8299:11040559,39319927:0,0,0 -k1,8299:31966991,39319927:20926432 -g1,8299:31966991,39319927 -) -(1,8300:7246811,39986105:24720180,410518,76021 -h1,8300:7246811,39986105:0,0,0 -k1,8300:7246811,39986105:0 -h1,8300:10408267,39986105:0,0,0 -k1,8300:31966991,39986105:21558724 -g1,8300:31966991,39986105 -) -] -) -g1,8302:31966991,40062126 -g1,8302:7246811,40062126 -g1,8302:7246811,40062126 -g1,8302:31966991,40062126 -g1,8302:31966991,40062126 -) -h1,8302:7246811,40258734:0,0,0 -(1,8306:7246811,41624510:24720180,513147,134348 -h1,8305:7246811,41624510:983040,0,0 -k1,8305:9605273,41624510:178735 -k1,8305:12037790,41624510:178734 -k1,8305:12903998,41624510:178735 -k1,8305:14818125,41624510:178734 -k1,8305:15767563,41624510:178735 -k1,8305:19440021,41624510:178734 -k1,8305:23191779,41624510:178735 -k1,8305:24474795,41624510:178734 -k1,8305:25401296,41624510:178735 -k1,8305:28411841,41624510:178734 -k1,8305:30325969,41624510:178735 -k1,8306:31966991,41624510:0 -) -(1,8306:7246811,42465998:24720180,513147,134348 -k1,8305:8802110,42465998:287833 -(1,8305:8802110,42465998:0,452978,115847 -r1,8351:10918935,42465998:2116825,568825,115847 -k1,8305:8802110,42465998:-2116825 -) -(1,8305:8802110,42465998:2116825,452978,115847 -k1,8305:8802110,42465998:3277 -h1,8305:10915658,42465998:0,411205,112570 -) -k1,8305:11380438,42465998:287833 -k1,8305:15526375,42465998:287833 -k1,8305:16473500,42465998:287833 -k1,8305:19523676,42465998:287833 -k1,8305:22267142,42465998:287832 -k1,8305:23659257,42465998:287833 -k1,8305:24694856,42465998:287833 -k1,8305:27774523,42465998:287833 -k1,8305:28823884,42465998:287833 -k1,8305:31966991,42465998:0 -) -(1,8306:7246811,43307486:24720180,505283,134348 -k1,8305:8202652,43307486:269679 -k1,8305:9491417,43307486:269680 -k1,8305:12002427,43307486:269679 -k1,8305:15344434,43307486:269679 -k1,8305:16265542,43307486:269680 -(1,8305:16265542,43307486:0,452978,115847 -r1,8351:18382367,43307486:2116825,568825,115847 -k1,8305:16265542,43307486:-2116825 -) -(1,8305:16265542,43307486:2116825,452978,115847 -k1,8305:16265542,43307486:3277 -h1,8305:18379090,43307486:0,411205,112570 -) -k1,8305:18652046,43307486:269679 -k1,8305:19940810,43307486:269679 -k1,8305:24834054,43307486:269679 -k1,8305:27613108,43307486:269680 -k1,8305:30112977,43307486:269679 -k1,8305:31966991,43307486:0 -) -(1,8306:7246811,44148974:24720180,513147,134348 -k1,8305:8104224,44148974:229578 -k1,8305:9537042,44148974:229577 -k1,8305:11307371,44148974:229578 -k1,8305:12556033,44148974:229577 -k1,8305:15547954,44148974:229578 -k1,8305:17620404,44148974:229578 -k1,8305:18509273,44148974:229577 -k1,8305:19757936,44148974:229578 -k1,8305:23560537,44148974:229578 -k1,8305:24781674,44148974:229577 -k1,8305:27192290,44148974:229578 -k1,8305:30102290,44148974:229577 -k1,8305:30947906,44148974:229578 -k1,8305:31966991,44148974:0 -) -(1,8306:7246811,44990462:24720180,355205,126483 -k1,8306:31966991,44990462:21556102 -g1,8306:31966991,44990462 -) -] -) -] -r1,8351:32583029,45706769:26214,15008212,0 -) -] -) -) -g1,8351:32583029,45116945 -) -] -(1,8351:32583029,45706769:0,0,0 -g1,8351:32583029,45706769 -) -) -] -(1,8351:6630773,47279633:25952256,0,0 -h1,8351:6630773,47279633:25952256,0,0 -) -] -(1,8351:4262630,4025873:0,0,0 -[1,8351:-473656,4025873:0,0,0 -(1,8351:-473656,-710413:0,0,0 -(1,8351:-473656,-710413:0,0,0 -g1,8351:-473656,-710413 -) -g1,8351:-473656,-710413 -) -] -) -] -!18451 -}158 -Input:1291:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1292:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1293:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1294:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1295:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1296:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1297:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1298:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1299:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1300:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1301:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1302:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1116 -{159 -[1,8357:4262630,47279633:28320399,43253760,0 -(1,8357:4262630,4025873:0,0,0 -[1,8357:-473656,4025873:0,0,0 -(1,8357:-473656,-710413:0,0,0 -(1,8357:-473656,-644877:0,0,0 -k1,8357:-473656,-644877:-65536 -) -(1,8357:-473656,4736287:0,0,0 -k1,8357:-473656,4736287:5209943 -) -g1,8357:-473656,-710413 -) -] -) -[1,8357:6630773,47279633:25952256,43253760,0 -[1,8357:6630773,4812305:25952256,786432,0 -(1,8357:6630773,4812305:25952256,505283,134348 -(1,8357:6630773,4812305:25952256,505283,134348 -g1,8357:3078558,4812305 -[1,8357:3078558,4812305:0,0,0 -(1,8357:3078558,2439708:0,1703936,0 -k1,8357:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,8357:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,8357:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,8357:3078558,4812305:0,0,0 -(1,8357:3078558,2439708:0,1703936,0 -g1,8357:29030814,2439708 -g1,8357:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,8357:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,8357:37855564,2439708:1179648,16384,0 -) -) -k1,8357:3078556,2439708:-34777008 -) -] -[1,8357:3078558,4812305:0,0,0 -(1,8357:3078558,49800853:0,16384,2228224 -k1,8357:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,8357:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,8357:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,8357:3078558,4812305:0,0,0 -(1,8357:3078558,49800853:0,16384,2228224 -g1,8357:29030814,49800853 -g1,8357:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,8357:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,8357:37855564,49800853:1179648,16384,0 -) -) -k1,8357:3078556,49800853:-34777008 -) -] -g1,8357:6630773,4812305 -k1,8357:24502442,4812305:16676292 -g1,8357:25889183,4812305 -g1,8357:26537989,4812305 -g1,8357:29852144,4812305 -) -) -] -[1,8357:6630773,45706769:25952256,40108032,0 -(1,8357:6630773,45706769:25952256,40108032,0 -(1,8357:6630773,45706769:0,0,0 -g1,8357:6630773,45706769 -) -[1,8357:6630773,45706769:25952256,40108032,0 -v1,8351:6630773,6254097:0,393216,0 -(1,8351:6630773,34939943:25952256,29079062,616038 -g1,8351:6630773,34939943 -(1,8351:6630773,34939943:25952256,29079062,616038 -(1,8351:6630773,35555981:25952256,29695100,0 -[1,8351:6630773,35555981:25952256,29695100,0 -(1,8351:6630773,35529767:25952256,29668886,0 -r1,8357:6656987,35529767:26214,29668886,0 -[1,8351:6656987,35529767:25899828,29668886,0 -(1,8351:6656987,34939943:25899828,28489238,0 -[1,8351:7246811,34939943:24720180,28489238,0 -v1,8308:7246811,6843921:0,393216,0 -(1,8314:7246811,8466208:24720180,2015503,196608 -g1,8314:7246811,8466208 -g1,8314:7246811,8466208 -g1,8314:7050203,8466208 -(1,8314:7050203,8466208:0,2015503,196608 -r1,8357:32163599,8466208:25113396,2212111,196608 -k1,8314:7050203,8466208:-25113396 -) -(1,8314:7050203,8466208:25113396,2015503,196608 -[1,8314:7246811,8466208:24720180,1818895,0 -(1,8310:7246811,7057831:24720180,410518,101187 -(1,8309:7246811,7057831:0,0,0 -g1,8309:7246811,7057831 -g1,8309:7246811,7057831 -g1,8309:6919131,7057831 -(1,8309:6919131,7057831:0,0,0 -) -g1,8309:7246811,7057831 -) -g1,8310:8827540,7057831 -g1,8310:9775978,7057831 -g1,8310:12305143,7057831 -g1,8310:12937435,7057831 -g1,8310:16731184,7057831 -g1,8310:17995768,7057831 -g1,8310:19576497,7057831 -g1,8310:20208789,7057831 -h1,8310:21789517,7057831:0,0,0 -k1,8310:31966991,7057831:10177474 -g1,8310:31966991,7057831 -) -(1,8311:7246811,7724009:24720180,410518,101187 -h1,8311:7246811,7724009:0,0,0 -k1,8311:7246811,7724009:0 -h1,8311:11356705,7724009:0,0,0 -k1,8311:31966991,7724009:20610286 -g1,8311:31966991,7724009 -) -(1,8312:7246811,8390187:24720180,410518,76021 -h1,8312:7246811,8390187:0,0,0 -k1,8312:7246811,8390187:0 -h1,8312:10724413,8390187:0,0,0 -k1,8312:31966991,8390187:21242578 -g1,8312:31966991,8390187 -) -] -) -g1,8314:31966991,8466208 -g1,8314:7246811,8466208 -g1,8314:7246811,8466208 -g1,8314:31966991,8466208 -g1,8314:31966991,8466208 -) -h1,8314:7246811,8662816:0,0,0 -(1,8318:7246811,10028592:24720180,513147,134348 -h1,8317:7246811,10028592:983040,0,0 -k1,8317:9400945,10028592:217545 -k1,8317:10722772,10028592:217545 -k1,8317:12226133,10028592:217545 -k1,8317:15204054,10028592:217545 -k1,8317:16594038,10028592:217545 -k1,8317:18799290,10028592:217545 -k1,8317:20034608,10028592:217544 -k1,8317:21987546,10028592:217545 -(1,8317:21987546,10028592:0,452978,115847 -r1,8357:24456083,10028592:2468537,568825,115847 -k1,8317:21987546,10028592:-2468537 -) -(1,8317:21987546,10028592:2468537,452978,115847 -k1,8317:21987546,10028592:3277 -h1,8317:24452806,10028592:0,411205,112570 -) -k1,8317:24847298,10028592:217545 -k1,8317:25716271,10028592:217545 -k1,8317:27125261,10028592:217545 -k1,8317:29933444,10028592:217545 -k1,8317:31307699,10028592:217545 -k1,8317:31966991,10028592:0 -) -(1,8318:7246811,10870080:24720180,505283,126483 -k1,8317:8433294,10870080:167398 -k1,8317:10918700,10870080:167398 -k1,8317:14085680,10870080:167397 -k1,8317:15272163,10870080:167398 -k1,8317:16828924,10870080:167398 -k1,8317:18893589,10870080:167398 -k1,8317:20503433,10870080:167397 -k1,8317:21689916,10870080:167398 -k1,8317:23732954,10870080:167398 -k1,8317:24370245,10870080:167398 -k1,8317:25069140,10870080:167398 -k1,8317:28445835,10870080:167397 -k1,8317:29229271,10870080:167398 -k1,8317:30599910,10870080:167398 -k1,8317:31966991,10870080:0 -) -(1,8318:7246811,11711568:24720180,513147,7863 -k1,8317:8092389,11711568:194150 -k1,8317:9639203,11711568:194151 -k1,8317:11100819,11711568:194150 -k1,8317:15649181,11711568:194150 -k1,8317:16862417,11711568:194151 -k1,8317:19134714,11711568:194150 -k1,8317:19988156,11711568:194150 -k1,8317:21201392,11711568:194151 -k1,8317:24581902,11711568:194150 -k1,8317:27411255,11711568:194150 -k1,8317:28624491,11711568:194151 -k1,8317:30806348,11711568:194150 -k1,8318:31966991,11711568:0 -) -(1,8318:7246811,12553056:24720180,513147,126483 -k1,8317:9530217,12553056:183632 -k1,8317:11315549,12553056:183632 -k1,8317:15274709,12553056:183631 -k1,8317:15924302,12553056:183632 -k1,8317:17488122,12553056:183632 -k1,8317:18776036,12553056:183632 -k1,8317:19707434,12553056:183632 -k1,8317:23481127,12553056:183631 -k1,8317:24350921,12553056:183632 -k1,8317:28376929,12553056:183632 -k1,8317:31966991,12553056:0 -) -(1,8318:7246811,13394544:24720180,505283,7863 -g1,8317:8132202,13394544 -g1,8317:8687291,13394544 -g1,8317:10320448,13394544 -g1,8317:12507384,13394544 -g1,8317:13567756,13394544 -g1,8317:14786070,13394544 -g1,8317:16638772,13394544 -g1,8317:18825708,13394544 -g1,8317:20418888,13394544 -g1,8317:23845110,13394544 -k1,8318:31966991,13394544:6105338 -g1,8318:31966991,13394544 -) -v1,8320:7246811,14585010:0,393216,0 -(1,8324:7246811,14881232:24720180,689438,196608 -g1,8324:7246811,14881232 -g1,8324:7246811,14881232 -g1,8324:7050203,14881232 -(1,8324:7050203,14881232:0,689438,196608 -r1,8357:32163599,14881232:25113396,886046,196608 -k1,8324:7050203,14881232:-25113396 -) -(1,8324:7050203,14881232:25113396,689438,196608 -[1,8324:7246811,14881232:24720180,492830,0 -(1,8322:7246811,14798920:24720180,410518,82312 -(1,8321:7246811,14798920:0,0,0 -g1,8321:7246811,14798920 -g1,8321:7246811,14798920 -g1,8321:6919131,14798920 -(1,8321:6919131,14798920:0,0,0 -) -g1,8321:7246811,14798920 -) -k1,8322:7246811,14798920:0 -g1,8322:10724414,14798920 -h1,8322:11988997,14798920:0,0,0 -k1,8322:31966991,14798920:19977994 -g1,8322:31966991,14798920 -) -] -) -g1,8324:31966991,14881232 -g1,8324:7246811,14881232 -g1,8324:7246811,14881232 -g1,8324:31966991,14881232 -g1,8324:31966991,14881232 -) -h1,8324:7246811,15077840:0,0,0 -(1,8328:7246811,16443616:24720180,505283,134348 -h1,8327:7246811,16443616:983040,0,0 -k1,8327:10346579,16443616:284341 -k1,8327:11313805,16443616:284341 -k1,8327:13248343,16443616:284341 -k1,8327:15850693,16443616:284342 -k1,8327:17239316,16443616:284341 -k1,8327:18809473,16443616:284341 -k1,8327:19841580,16443616:284341 -k1,8327:23307039,16443616:284341 -k1,8327:24207418,16443616:284341 -k1,8327:24847620,16443616:284342 -k1,8327:27004980,16443616:284341 -k1,8327:28389015,16443616:284341 -k1,8327:29324784,16443616:284341 -(1,8327:29324784,16443616:0,452978,115847 -r1,8357:31793321,16443616:2468537,568825,115847 -k1,8327:29324784,16443616:-2468537 -) -(1,8327:29324784,16443616:2468537,452978,115847 -k1,8327:29324784,16443616:3277 -h1,8327:31790044,16443616:0,411205,112570 -) -k1,8327:31966991,16443616:0 -) -(1,8328:7246811,17285104:24720180,513147,134348 -g1,8327:10380742,17285104 -g1,8327:11327737,17285104 -g1,8327:13910510,17285104 -g1,8327:14795901,17285104 -g1,8327:16014215,17285104 -g1,8327:17952770,17285104 -g1,8327:18811291,17285104 -g1,8327:20029605,17285104 -g1,8327:23631463,17285104 -k1,8328:31966991,17285104:5706224 -g1,8328:31966991,17285104 -) -v1,8330:7246811,18475570:0,393216,0 -(1,8335:7246811,19437970:24720180,1355616,196608 -g1,8335:7246811,19437970 -g1,8335:7246811,19437970 -g1,8335:7050203,19437970 -(1,8335:7050203,19437970:0,1355616,196608 -r1,8357:32163599,19437970:25113396,1552224,196608 -k1,8335:7050203,19437970:-25113396 -) -(1,8335:7050203,19437970:25113396,1355616,196608 -[1,8335:7246811,19437970:24720180,1159008,0 -(1,8332:7246811,18689480:24720180,410518,82312 -(1,8331:7246811,18689480:0,0,0 -g1,8331:7246811,18689480 -g1,8331:7246811,18689480 -g1,8331:6919131,18689480 -(1,8331:6919131,18689480:0,0,0 -) -g1,8331:7246811,18689480 -) -k1,8332:7246811,18689480:0 -g1,8332:10724414,18689480 -g1,8332:12305143,18689480 -h1,8332:13885871,18689480:0,0,0 -k1,8332:31966991,18689480:18081120 -g1,8332:31966991,18689480 -) -(1,8333:7246811,19355658:24720180,410518,82312 -h1,8333:7246811,19355658:0,0,0 -g1,8333:10724414,19355658 -g1,8333:12621289,19355658 -h1,8333:13885872,19355658:0,0,0 -k1,8333:31966992,19355658:18081120 -g1,8333:31966992,19355658 -) -] -) -g1,8335:31966991,19437970 -g1,8335:7246811,19437970 -g1,8335:7246811,19437970 -g1,8335:31966991,19437970 -g1,8335:31966991,19437970 -) -h1,8335:7246811,19634578:0,0,0 -(1,8339:7246811,21000354:24720180,513147,134348 -h1,8338:7246811,21000354:983040,0,0 -k1,8338:9363147,21000354:179747 -k1,8338:10647177,21000354:179748 -k1,8338:11919409,21000354:179747 -k1,8338:14861499,21000354:179747 -k1,8338:17314035,21000354:179747 -k1,8338:18145211,21000354:179748 -k1,8338:20540075,21000354:179747 -k1,8338:21738907,21000354:179747 -k1,8338:23853932,21000354:179747 -k1,8338:26195057,21000354:179748 -k1,8338:30112322,21000354:179747 -k1,8338:31966991,21000354:0 -) -(1,8339:7246811,21841842:24720180,513147,138281 -k1,8338:8402226,21841842:346045 -$1,8338:8402226,21841842 -$1,8338:8870153,21841842 -k1,8338:11439834,21841842:346044 -k1,8338:12468764,21841842:346045 -k1,8338:16621795,21841842:346045 -k1,8338:19240628,21841842:346044 -k1,8338:21123492,21841842:346045 -k1,8338:22917883,21841842:346045 -k1,8338:24419835,21841842:345897 -k1,8338:27654051,21841842:346044 -k1,8338:29202682,21841842:346045 -k1,8339:31966991,21841842:0 -) -(1,8339:7246811,22683330:24720180,513147,126483 -k1,8338:8756911,22683330:242634 -k1,8338:12354987,22683330:242633 -k1,8338:13789066,22683330:242634 -k1,8338:15099238,22683330:242590 -k1,8338:18614740,22683330:242634 -k1,8338:22676156,22683330:242633 -k1,8338:26067140,22683330:242634 -k1,8338:26877970,22683330:242633 -k1,8338:28504069,22683330:242634 -k1,8338:31966991,22683330:0 -) -(1,8339:7246811,23524818:24720180,505283,134348 -k1,8338:10207334,23524818:194904 -k1,8338:13635784,23524818:194904 -k1,8338:15115194,23524818:194904 -k1,8338:17992487,23524818:194904 -k1,8338:19206476,23524818:194904 -k1,8338:22234501,23524818:194904 -k1,8338:26036507,23524818:194904 -k1,8338:28086080,23524818:194904 -k1,8338:29090354,23524818:194904 -k1,8338:30304343,23524818:194904 -k1,8339:31966991,23524818:0 -) -(1,8339:7246811,24366306:24720180,513147,126483 -k1,8338:8545258,24366306:262323 -k1,8338:9466873,24366306:262323 -k1,8338:13340230,24366306:262323 -k1,8338:14218591,24366306:262323 -k1,8338:15499999,24366306:262323 -k1,8338:17474778,24366306:262323 -k1,8338:19898478,24366306:262323 -k1,8338:20788636,24366306:262323 -k1,8338:22070044,24366306:262323 -k1,8338:23699448,24366306:262323 -k1,8338:24621063,24366306:262323 -k1,8338:26039378,24366306:262260 -k1,8338:27493146,24366306:262323 -k1,8338:28996721,24366306:262323 -k1,8338:29614904,24366306:262323 -k1,8338:31966991,24366306:0 -) -(1,8339:7246811,25207794:24720180,505283,134348 -k1,8338:9098404,25207794:171250 -k1,8338:9801152,25207794:171251 -k1,8338:12043340,25207794:171250 -k1,8338:13406036,25207794:171251 -k1,8338:15587931,25207794:171250 -k1,8338:18537908,25207794:171250 -k1,8338:19813441,25207794:171251 -k1,8338:20732457,25207794:171250 -k1,8338:22759687,25207794:171250 -k1,8338:25440312,25207794:171251 -k1,8338:26294447,25207794:171250 -k1,8338:29294232,25207794:171251 -k1,8338:30081520,25207794:171250 -k1,8338:31966991,25207794:0 -) -(1,8339:7246811,26049282:24720180,513147,134348 -k1,8338:8845794,26049282:231902 -k1,8338:10727892,26049282:231901 -k1,8338:13614657,26049282:231902 -k1,8338:14378055,26049282:231901 -k1,8338:16680895,26049282:231902 -k1,8338:19982502,26049282:231901 -k1,8338:21162055,26049282:231902 -k1,8338:22860652,26049282:231901 -k1,8338:24160103,26049282:231869 -k1,8338:25583449,26049282:231901 -k1,8338:26971373,26049282:231869 -k1,8338:28194835,26049282:231902 -k1,8338:31205463,26049282:231901 -k1,8339:31966991,26049282:0 -) -(1,8339:7246811,26890770:24720180,505283,126483 -(1,8338:7246811,26890770:0,452978,115847 -r1,8357:9715348,26890770:2468537,568825,115847 -k1,8338:7246811,26890770:-2468537 -) -(1,8338:7246811,26890770:2468537,452978,115847 -k1,8338:7246811,26890770:3277 -h1,8338:9712071,26890770:0,411205,112570 -) -g1,8338:10088247,26890770 -g1,8338:11478921,26890770 -g1,8338:12487520,26890770 -g1,8338:14195388,26890770 -g1,8338:15724998,26890770 -g1,8338:16685755,26890770 -(1,8338:16685755,26890770:0,452978,115847 -r1,8357:18450868,26890770:1765113,568825,115847 -k1,8338:16685755,26890770:-1765113 -) -(1,8338:16685755,26890770:1765113,452978,115847 -k1,8338:16685755,26890770:3277 -h1,8338:18447591,26890770:0,411205,112570 -) -g1,8338:18650097,26890770 -g1,8338:20040771,26890770 -(1,8338:20040771,26890770:0,452978,115847 -r1,8357:21805884,26890770:1765113,568825,115847 -k1,8338:20040771,26890770:-1765113 -) -(1,8338:20040771,26890770:1765113,452978,115847 -k1,8338:20040771,26890770:3277 -h1,8338:21802607,26890770:0,411205,112570 -) -k1,8339:31966991,26890770:10161107 -g1,8339:31966991,26890770 -) -v1,8341:7246811,28081236:0,393216,0 -(1,8346:7246811,29043636:24720180,1355616,196608 -g1,8346:7246811,29043636 -g1,8346:7246811,29043636 -g1,8346:7050203,29043636 -(1,8346:7050203,29043636:0,1355616,196608 -r1,8357:32163599,29043636:25113396,1552224,196608 -k1,8346:7050203,29043636:-25113396 -) -(1,8346:7050203,29043636:25113396,1355616,196608 -[1,8346:7246811,29043636:24720180,1159008,0 -(1,8343:7246811,28295146:24720180,410518,82312 -(1,8342:7246811,28295146:0,0,0 -g1,8342:7246811,28295146 -g1,8342:7246811,28295146 -g1,8342:6919131,28295146 -(1,8342:6919131,28295146:0,0,0 -) -g1,8342:7246811,28295146 -) -k1,8343:7246811,28295146:0 -g1,8343:10092123,28295146 -g1,8343:11672852,28295146 -g1,8343:13253581,28295146 -h1,8343:14834309,28295146:0,0,0 -k1,8343:31966991,28295146:17132682 -g1,8343:31966991,28295146 -) -(1,8344:7246811,28961324:24720180,410518,82312 -h1,8344:7246811,28961324:0,0,0 -g1,8344:10092123,28961324 -g1,8344:11672852,28961324 -g1,8344:13253581,28961324 -h1,8344:14834309,28961324:0,0,0 -k1,8344:31966991,28961324:17132682 -g1,8344:31966991,28961324 -) -] -) -g1,8346:31966991,29043636 -g1,8346:7246811,29043636 -g1,8346:7246811,29043636 -g1,8346:31966991,29043636 -g1,8346:31966991,29043636 -) -h1,8346:7246811,29240244:0,0,0 -(1,8350:7246811,30606020:24720180,505283,126483 -h1,8349:7246811,30606020:983040,0,0 -k1,8349:10049437,30606020:214609 -k1,8349:11434518,30606020:214608 -k1,8349:13124342,30606020:214609 -k1,8349:14456994,30606020:214608 -k1,8349:15690688,30606020:214609 -k1,8349:17401483,30606020:214608 -k1,8349:18232130,30606020:214609 -k1,8349:19465823,30606020:214608 -k1,8349:21981401,30606020:214609 -k1,8349:24225004,30606020:214608 -k1,8349:25610086,30606020:214609 -k1,8349:26957156,30606020:214608 -k1,8349:27919531,30606020:214609 -k1,8349:29442893,30606020:214608 -k1,8349:30682485,30606020:214609 -k1,8349:31966991,30606020:0 -) -(1,8350:7246811,31447508:24720180,505283,134348 -k1,8349:9116452,31447508:172914 -k1,8349:10944150,31447508:172914 -k1,8349:13389853,31447508:172914 -k1,8349:14378036,31447508:172915 -k1,8349:15617221,31447508:172914 -k1,8349:19305486,31447508:172914 -k1,8349:21191511,31447508:172914 -k1,8349:22173795,31447508:172914 -k1,8349:24232180,31447508:172914 -k1,8349:24936592,31447508:172915 -k1,8349:26128591,31447508:172914 -k1,8349:28236783,31447508:172914 -k1,8349:30571074,31447508:172914 -k1,8349:31966991,31447508:0 -) -(1,8350:7246811,32288996:24720180,513147,138281 -k1,8349:8156029,32288996:293180 -k1,8349:9468294,32288996:293180 -k1,8349:11920230,32288996:293180 -$1,8349:11920230,32288996 -$1,8349:12388157,32288996 -k1,8349:14748343,32288996:293180 -k1,8349:16109010,32288996:293085 -k1,8349:17593635,32288996:293180 -k1,8349:19042776,32288996:293086 -k1,8349:22555739,32288996:293179 -k1,8349:23796570,32288996:293180 -k1,8349:25108835,32288996:293180 -k1,8349:28164358,32288996:293180 -k1,8349:30775546,32288996:293180 -k1,8349:31966991,32288996:0 -) -(1,8350:7246811,33130484:24720180,513147,126483 -k1,8349:10308704,33130484:197314 -k1,8349:12391489,33130484:197314 -k1,8349:14576509,33130484:197313 -k1,8349:15305320,33130484:197314 -k1,8349:17931398,33130484:197314 -k1,8349:18890240,33130484:197314 -k1,8349:20539175,33130484:197313 -k1,8349:21395781,33130484:197314 -k1,8349:22612180,33130484:197314 -k1,8349:24464278,33130484:197314 -k1,8349:27108050,33130484:197313 -k1,8349:27933199,33130484:197314 -k1,8349:30796518,33130484:197314 -k1,8349:31966991,33130484:0 -) -(1,8350:7246811,33971972:24720180,513147,126483 -k1,8349:8559735,33971972:180462 -k1,8349:10688583,33971972:180463 -k1,8349:12153551,33971972:180462 -k1,8349:13353098,33971972:180462 -k1,8349:14705999,33971972:180462 -k1,8349:17648805,33971972:180463 -k1,8349:21970487,33971972:180462 -k1,8349:22810241,33971972:180462 -k1,8349:24009788,33971972:180462 -k1,8349:27221946,33971972:180463 -k1,8349:30975431,33971972:180462 -k1,8349:31966991,33971972:0 -) -(1,8350:7246811,34813460:24720180,505283,126483 -k1,8350:31966990,34813460:21241528 -g1,8350:31966990,34813460 -) -] -) -] -r1,8357:32583029,35529767:26214,29668886,0 -) -] -) -) -g1,8351:32583029,34939943 -) -h1,8351:6630773,35555981:0,0,0 -(1,8354:6630773,36921757:25952256,513147,134348 -h1,8353:6630773,36921757:983040,0,0 -k1,8353:11164094,36921757:191561 -k1,8353:14140281,36921757:191562 -k1,8353:15611760,36921757:191561 -k1,8353:17197928,36921757:191562 -k1,8353:19420450,36921757:191561 -k1,8353:20263440,36921757:191562 -k1,8353:23217344,36921757:191561 -k1,8353:27336479,36921757:191562 -k1,8353:28187332,36921757:191561 -k1,8353:30091350,36921757:191562 -k1,8354:32583029,36921757:0 -) -(1,8354:6630773,37763245:25952256,505283,115847 -(1,8353:6630773,37763245:0,452978,115847 -r1,8357:8747598,37763245:2116825,568825,115847 -k1,8353:6630773,37763245:-2116825 -) -(1,8353:6630773,37763245:2116825,452978,115847 -k1,8353:6630773,37763245:3277 -h1,8353:8744321,37763245:0,411205,112570 -) -k1,8353:8913083,37763245:165485 -k1,8353:11419513,37763245:165484 -k1,8353:12604083,37763245:165485 -k1,8353:19019080,37763245:165484 -k1,8353:21445557,37763245:165485 -(1,8353:21445557,37763245:0,459977,115847 -r1,8357:23562382,37763245:2116825,575824,115847 -k1,8353:21445557,37763245:-2116825 -) -(1,8353:21445557,37763245:2116825,459977,115847 -k1,8353:21445557,37763245:3277 -h1,8353:23559105,37763245:0,411205,112570 -) -k1,8353:23727866,37763245:165484 -k1,8353:25084796,37763245:165485 -k1,8353:26038678,37763245:165484 -k1,8353:27652509,37763245:165485 -(1,8353:27652509,37763245:0,459977,115847 -r1,8357:32583029,37763245:4930520,575824,115847 -k1,8353:27652509,37763245:-4930520 -) -(1,8353:27652509,37763245:4930520,459977,115847 -k1,8353:27652509,37763245:3277 -h1,8353:32579752,37763245:0,411205,112570 -) -k1,8353:32583029,37763245:0 -) -(1,8354:6630773,38604733:25952256,513147,115847 -k1,8353:9021088,38604733:379670 -k1,8353:10419843,38604733:379670 -k1,8353:13845627,38604733:379671 -k1,8353:15172948,38604733:379670 -k1,8353:16571703,38604733:379670 -k1,8353:18663829,38604733:379670 -k1,8353:21031206,38604733:379670 -k1,8353:25195581,38604733:379671 -(1,8353:25195581,38604733:0,459977,115847 -r1,8357:28015830,38604733:2820249,575824,115847 -k1,8353:25195581,38604733:-2820249 -) -(1,8353:25195581,38604733:2820249,459977,115847 -k1,8353:25195581,38604733:3277 -h1,8353:28012553,38604733:0,411205,112570 -) -k1,8353:28395500,38604733:379670 -k1,8353:29966615,38604733:379670 -k1,8353:31134683,38604733:379670 -k1,8354:32583029,38604733:0 -) -(1,8354:6630773,39446221:25952256,513147,115847 -(1,8353:6630773,39446221:0,459977,115847 -r1,8357:11913004,39446221:5282231,575824,115847 -k1,8353:6630773,39446221:-5282231 -) -(1,8353:6630773,39446221:5282231,459977,115847 -k1,8353:6630773,39446221:3277 -h1,8353:11909727,39446221:0,411205,112570 -) -k1,8353:12171668,39446221:258664 -k1,8353:14634308,39446221:258664 -k1,8353:15912056,39446221:258663 -k1,8353:17883176,39446221:258664 -k1,8353:20326155,39446221:258664 -k1,8353:21776264,39446221:258664 -(1,8353:21776264,39446221:0,452978,115847 -r1,8357:24244801,39446221:2468537,568825,115847 -k1,8353:21776264,39446221:-2468537 -) -(1,8353:21776264,39446221:2468537,452978,115847 -k1,8353:21776264,39446221:3277 -h1,8353:24241524,39446221:0,411205,112570 -) -k1,8353:24503465,39446221:258664 -k1,8353:25953573,39446221:258663 -k1,8353:27000635,39446221:258664 -k1,8353:28707645,39446221:258664 -(1,8353:28707645,39446221:0,452978,115847 -r1,8357:32583029,39446221:3875384,568825,115847 -k1,8353:28707645,39446221:-3875384 -) -(1,8353:28707645,39446221:3875384,452978,115847 -k1,8353:28707645,39446221:3277 -h1,8353:32579752,39446221:0,411205,112570 -) -k1,8353:32583029,39446221:0 -) -(1,8354:6630773,40287709:25952256,513147,134348 -k1,8353:7942949,40287709:293091 -k1,8353:12859606,40287709:293092 -k1,8353:16046767,40287709:293091 -k1,8353:17229838,40287709:293092 -k1,8353:21183770,40287709:293091 -k1,8353:22849841,40287709:293092 -k1,8353:26447913,40287709:293091 -k1,8353:28254231,40287709:293092 -k1,8353:31591469,40287709:293091 -k1,8354:32583029,40287709:0 -) -(1,8354:6630773,41129197:25952256,505283,115847 -(1,8353:6630773,41129197:0,459977,115847 -r1,8357:9802733,41129197:3171960,575824,115847 -k1,8353:6630773,41129197:-3171960 -) -(1,8353:6630773,41129197:3171960,459977,115847 -k1,8353:6630773,41129197:3277 -h1,8353:9799456,41129197:0,411205,112570 -) -g1,8353:10175632,41129197 -(1,8353:10175632,41129197:0,452978,115847 -r1,8357:12644169,41129197:2468537,568825,115847 -k1,8353:10175632,41129197:-2468537 -) -(1,8353:10175632,41129197:2468537,452978,115847 -k1,8353:10175632,41129197:3277 -h1,8353:12640892,41129197:0,411205,112570 -) -g1,8353:13017068,41129197 -(1,8353:13017068,41129197:0,459977,115847 -r1,8357:17595876,41129197:4578808,575824,115847 -k1,8353:13017068,41129197:-4578808 -) -(1,8353:13017068,41129197:4578808,459977,115847 -k1,8353:13017068,41129197:3277 -h1,8353:17592599,41129197:0,411205,112570 -) -g1,8353:17795105,41129197 -g1,8353:19185779,41129197 -(1,8353:19185779,41129197:0,452978,115847 -r1,8357:24116299,41129197:4930520,568825,115847 -k1,8353:19185779,41129197:-4930520 -) -(1,8353:19185779,41129197:4930520,452978,115847 -k1,8353:19185779,41129197:3277 -h1,8353:24113022,41129197:0,411205,112570 -) -k1,8354:32583029,41129197:8293060 -g1,8354:32583029,41129197 -) -v1,8356:6630773,42494973:0,393216,0 -(1,8357:6630773,43931652:25952256,1829895,589824 -g1,8357:6630773,43931652 -(1,8357:6630773,43931652:25952256,1829895,589824 -(1,8357:6630773,44521476:25952256,2419719,0 -[1,8357:6630773,44521476:25952256,2419719,0 -(1,8357:6630773,44521476:25952256,2393505,0 -r1,8357:6656987,44521476:26214,2393505,0 -[1,8357:6656987,44521476:25899828,2393505,0 -(1,8357:6656987,43931652:25899828,1213857,0 -[1,8357:7246811,43931652:24720180,1213857,0 -(1,8357:7246811,43805169:24720180,1087374,126483 -k1,8356:8628555,43805169:172041 -k1,8356:12325778,43805169:172041 -k1,8356:15104186,43805169:172041 -k1,8356:16670178,43805169:172041 -k1,8356:18538946,43805169:172041 -k1,8356:21925528,43805169:172041 -k1,8356:23289014,43805169:172041 -k1,8356:26451463,43805169:172041 -k1,8356:29408129,43805169:172041 -k1,8356:30341698,43805169:172041 -k1,8357:31966991,43805169:0 -) -] -) -] -r1,8357:32583029,44521476:26214,2393505,0 -) -] -) -) -g1,8357:32583029,43931652 -) -] -(1,8357:32583029,45706769:0,0,0 -g1,8357:32583029,45706769 -) -) -] -(1,8357:6630773,47279633:25952256,0,0 -h1,8357:6630773,47279633:25952256,0,0 -) -] -(1,8357:4262630,4025873:0,0,0 -[1,8357:-473656,4025873:0,0,0 -(1,8357:-473656,-710413:0,0,0 -(1,8357:-473656,-710413:0,0,0 -g1,8357:-473656,-710413 -) -g1,8357:-473656,-710413 -) -] -) -] -!25422 -}159 -Input:1303:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1304:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1305:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1306:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1307:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1308:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1309:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!656 -{160 -[1,8487:4262630,47279633:28320399,43253760,0 -(1,8487:4262630,4025873:0,0,0 -[1,8487:-473656,4025873:0,0,0 -(1,8487:-473656,-710413:0,0,0 -(1,8487:-473656,-644877:0,0,0 -k1,8487:-473656,-644877:-65536 -) -(1,8487:-473656,4736287:0,0,0 -k1,8487:-473656,4736287:5209943 -) -g1,8487:-473656,-710413 -) -] -) -[1,8487:6630773,47279633:25952256,43253760,0 -[1,8487:6630773,4812305:25952256,786432,0 -(1,8487:6630773,4812305:25952256,505283,134348 -(1,8487:6630773,4812305:25952256,505283,134348 -g1,8487:3078558,4812305 -[1,8487:3078558,4812305:0,0,0 -(1,8487:3078558,2439708:0,1703936,0 -k1,8487:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,8487:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,8487:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,8487:3078558,4812305:0,0,0 -(1,8487:3078558,2439708:0,1703936,0 -g1,8487:29030814,2439708 -g1,8487:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,8487:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,8487:37855564,2439708:1179648,16384,0 -) -) -k1,8487:3078556,2439708:-34777008 -) -] -[1,8487:3078558,4812305:0,0,0 -(1,8487:3078558,49800853:0,16384,2228224 -k1,8487:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,8487:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,8487:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,8487:3078558,4812305:0,0,0 -(1,8487:3078558,49800853:0,16384,2228224 -g1,8487:29030814,49800853 -g1,8487:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,8487:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,8487:37855564,49800853:1179648,16384,0 -) -) -k1,8487:3078556,49800853:-34777008 -) -] -g1,8487:6630773,4812305 -g1,8487:6630773,4812305 -g1,8487:8843268,4812305 -g1,8487:10880782,4812305 -g1,8487:13281365,4812305 -k1,8487:31387653,4812305:18106288 -) -) -] -[1,8487:6630773,45706769:25952256,40108032,0 -(1,8487:6630773,45706769:25952256,40108032,0 -(1,8487:6630773,45706769:0,0,0 -g1,8487:6630773,45706769 -) -[1,8487:6630773,45706769:25952256,40108032,0 -v1,8357:6630773,6254097:0,393216,0 -(1,8357:6630773,7931823:25952256,2070942,616038 -g1,8357:6630773,7931823 -(1,8357:6630773,7931823:25952256,2070942,616038 -(1,8357:6630773,8547861:25952256,2686980,0 -[1,8357:6630773,8547861:25952256,2686980,0 -(1,8357:6630773,8521647:25952256,2660766,0 -r1,8487:6656987,8521647:26214,2660766,0 -[1,8357:6656987,8521647:25899828,2660766,0 -(1,8357:6656987,7931823:25899828,1481118,0 -[1,8357:7246811,7931823:24720180,1481118,0 -(1,8357:7246811,6963852:24720180,513147,134348 -k1,8356:8401252,6963852:164192 -k1,8356:10074084,6963852:164193 -k1,8356:15064347,6963852:164192 -k1,8356:16419985,6963852:164193 -k1,8356:17676662,6963852:164192 -k1,8356:19479910,6963852:164193 -k1,8356:20295530,6963852:164192 -k1,8356:22828194,6963852:164193 -(1,8356:22828194,6963852:0,459977,115847 -r1,8487:23889883,6963852:1061689,575824,115847 -k1,8356:22828194,6963852:-1061689 -) -(1,8356:22828194,6963852:1061689,459977,115847 -k1,8356:22828194,6963852:3277 -h1,8356:23886606,6963852:0,411205,112570 -) -k1,8356:24054075,6963852:164192 -k1,8356:25930724,6963852:164193 -k1,8356:27950240,6963852:164192 -k1,8356:28797318,6963852:164193 -k1,8356:30949217,6963852:164192 -k1,8356:31966991,6963852:0 -) -(1,8357:7246811,7805340:24720180,513147,126483 -g1,8356:8097468,7805340 -g1,8356:9998667,7805340 -g1,8356:11587259,7805340 -g1,8356:12445780,7805340 -g1,8356:14103840,7805340 -k1,8357:31966991,7805340:15246298 -g1,8357:31966991,7805340 -) -] -) -] -r1,8487:32583029,8521647:26214,2660766,0 -) -] -) -) -g1,8357:32583029,7931823 -) -h1,8357:6630773,8547861:0,0,0 -v1,8360:6630773,9913637:0,393216,0 -(1,8487:6630773,37388563:25952256,27868142,589824 -g1,8487:6630773,37388563 -(1,8487:6630773,37388563:25952256,27868142,589824 -(1,8487:6630773,37978387:25952256,28457966,0 -[1,8487:6630773,37978387:25952256,28457966,0 -(1,8487:6630773,37978387:25952256,28431752,0 -r1,8487:6656987,37978387:26214,28431752,0 -[1,8487:6656987,37978387:25899828,28431752,0 -(1,8487:6656987,37388563:25899828,27252104,0 -[1,8487:7246811,37388563:24720180,27252104,0 -(1,8361:7246811,11298344:24720180,1161885,196608 -(1,8360:7246811,11298344:0,1161885,196608 -r1,8487:8794447,11298344:1547636,1358493,196608 -k1,8360:7246811,11298344:-1547636 -) -(1,8360:7246811,11298344:1547636,1161885,196608 -) -k1,8360:9010507,11298344:216060 -k1,8360:10423254,11298344:216060 -k1,8360:12929142,11298344:216060 -k1,8360:15923929,11298344:216060 -k1,8360:16901517,11298344:216060 -k1,8360:19105283,11298344:216059 -k1,8360:21255966,11298344:216060 -k1,8360:24497823,11298344:216060 -k1,8360:25705443,11298344:216060 -k1,8360:27873165,11298344:216060 -k1,8360:30775546,11298344:216060 -k1,8360:31966991,11298344:0 -) -(1,8361:7246811,12139832:24720180,513147,134348 -k1,8360:9819049,12139832:200490 -k1,8360:11038623,12139832:200489 -k1,8360:12328977,12139832:200490 -k1,8360:16510124,12139832:200490 -k1,8360:19691190,12139832:200489 -k1,8360:20910765,12139832:200490 -k1,8360:22500618,12139832:200490 -k1,8360:23352536,12139832:200490 -k1,8360:25438496,12139832:200489 -k1,8360:26658071,12139832:200490 -k1,8360:28846268,12139832:200490 -k1,8360:30253930,12139832:200489 -k1,8360:31141893,12139832:200490 -k1,8360:31966991,12139832:0 -) -(1,8361:7246811,12981320:24720180,513147,134348 -k1,8360:8678355,12981320:234857 -k1,8360:11675555,12981320:234857 -k1,8360:14936209,12981320:234857 -k1,8360:18261089,12981320:234857 -k1,8360:20524941,12981320:234857 -k1,8360:22615779,12981320:234858 -k1,8360:25054612,12981320:234857 -k1,8360:26941632,12981320:234857 -k1,8360:27835781,12981320:234857 -k1,8360:29089723,12981320:234857 -k1,8360:31284106,12981320:234857 -k1,8360:31966991,12981320:0 -) -(1,8361:7246811,13822808:24720180,513147,134348 -k1,8360:8281493,13822808:219414 -k1,8360:11727901,13822808:219415 -k1,8360:15749058,13822808:219414 -k1,8360:17159917,13822808:219414 -k1,8360:20806865,13822808:219415 -k1,8360:22880948,13822808:219414 -k1,8360:23909732,13822808:219414 -k1,8360:25941872,13822808:219414 -k1,8360:27993674,13822808:219415 -k1,8360:29204648,13822808:219414 -k1,8360:31966991,13822808:0 -) -(1,8361:7246811,14664296:24720180,513147,134348 -k1,8360:12230347,14664296:244628 -k1,8360:13134267,14664296:244628 -k1,8360:15075622,14664296:244628 -k1,8360:18104875,14664296:244628 -k1,8360:20234974,14664296:244628 -k1,8360:21471162,14664296:244628 -k1,8360:23583566,14664296:244628 -k1,8360:27190191,14664296:244628 -k1,8360:28244189,14664296:244628 -k1,8360:29507902,14664296:244628 -k1,8360:31307699,14664296:244628 -k1,8360:31966991,14664296:0 -) -(1,8361:7246811,15505784:24720180,513147,134348 -g1,8360:8465125,15505784 -g1,8360:11552526,15505784 -g1,8360:13884952,15505784 -g1,8360:15341162,15505784 -g1,8360:17819078,15505784 -h1,8360:18789666,15505784:0,0,0 -g1,8360:18988895,15505784 -g1,8360:19997494,15505784 -g1,8360:21694876,15505784 -h1,8360:22890253,15505784:0,0,0 -k1,8361:31966991,15505784:8695974 -g1,8361:31966991,15505784 -) -v1,8363:7246811,16696250:0,393216,0 -(1,8370:7246811,17717895:24720180,1414861,196608 -g1,8370:7246811,17717895 -g1,8370:7246811,17717895 -g1,8370:7050203,17717895 -(1,8370:7050203,17717895:0,1414861,196608 -r1,8487:32163599,17717895:25113396,1611469,196608 -k1,8370:7050203,17717895:-25113396 -) -(1,8370:7050203,17717895:25113396,1414861,196608 -[1,8370:7246811,17717895:24720180,1218253,0 -(1,8365:7246811,16910160:24720180,410518,76021 -(1,8364:7246811,16910160:0,0,0 -g1,8364:7246811,16910160 -g1,8364:7246811,16910160 -g1,8364:6919131,16910160 -(1,8364:6919131,16910160:0,0,0 -) -g1,8364:7246811,16910160 -) -k1,8365:7246811,16910160:0 -h1,8365:10408267,16910160:0,0,0 -k1,8365:31966991,16910160:21558724 -g1,8365:31966991,16910160 -) -(1,8369:7246811,17641874:24720180,404226,76021 -(1,8367:7246811,17641874:0,0,0 -g1,8367:7246811,17641874 -g1,8367:7246811,17641874 -g1,8367:6919131,17641874 -(1,8367:6919131,17641874:0,0,0 -) -g1,8367:7246811,17641874 -) -g1,8369:8195248,17641874 -g1,8369:9459831,17641874 -h1,8369:10724414,17641874:0,0,0 -k1,8369:31966990,17641874:21242576 -g1,8369:31966990,17641874 -) -] -) -g1,8370:31966991,17717895 -g1,8370:7246811,17717895 -g1,8370:7246811,17717895 -g1,8370:31966991,17717895 -g1,8370:31966991,17717895 -) -h1,8370:7246811,17914503:0,0,0 -(1,8374:7246811,19280279:24720180,513147,134348 -h1,8373:7246811,19280279:983040,0,0 -k1,8373:9362492,19280279:179092 -k1,8373:11387733,19280279:179092 -k1,8373:13097091,19280279:179092 -k1,8373:13927611,19280279:179092 -k1,8373:17039439,19280279:179092 -k1,8373:19587002,19280279:179092 -k1,8373:20785179,19280279:179092 -k1,8373:23895696,19280279:179092 -k1,8373:24734080,19280279:179092 -k1,8373:26609899,19280279:179092 -k1,8373:29677163,19280279:179092 -k1,8373:31966991,19280279:0 -) -(1,8374:7246811,20121767:24720180,513147,134348 -k1,8373:9123049,20121767:178200 -k1,8373:11036643,20121767:178201 -k1,8373:11629665,20121767:178179 -k1,8373:15908453,20121767:178200 -k1,8373:16714488,20121767:178200 -k1,8373:19697630,20121767:178201 -k1,8373:21573868,20121767:178200 -k1,8373:24732645,20121767:178200 -k1,8373:26898552,20121767:178200 -k1,8373:29011376,20121767:178201 -k1,8373:29805614,20121767:178200 -k1,8373:31966991,20121767:0 -) -(1,8374:7246811,20963255:24720180,513147,134348 -k1,8373:8175694,20963255:245998 -k1,8373:11001845,20963255:245999 -k1,8373:12917700,20963255:245998 -k1,8373:14182783,20963255:245998 -k1,8373:15959048,20963255:245999 -k1,8373:16856474,20963255:245998 -k1,8373:20221331,20963255:245999 -k1,8373:22671305,20963255:245998 -k1,8373:25314610,20963255:245998 -k1,8373:28514317,20963255:245999 -k1,8373:30327936,20963255:245998 -k1,8373:31966991,20963255:0 -) -(1,8374:7246811,21804743:24720180,513147,134348 -k1,8373:10170030,21804743:218548 -k1,8373:12038774,21804743:218547 -k1,8373:15735973,21804743:218548 -k1,8373:16772409,21804743:218547 -k1,8373:18384908,21804743:218548 -k1,8373:19735263,21804743:218548 -k1,8373:21655780,21804743:218547 -k1,8373:22289151,21804743:218528 -k1,8373:24467225,21804743:218548 -k1,8373:25554125,21804743:218548 -k1,8373:26876954,21804743:218547 -k1,8373:28187987,21804743:218548 -(1,8373:28187987,21804743:0,452978,115847 -r1,8487:29953100,21804743:1765113,568825,115847 -k1,8373:28187987,21804743:-1765113 -) -(1,8373:28187987,21804743:1765113,452978,115847 -k1,8373:28187987,21804743:3277 -h1,8373:29949823,21804743:0,411205,112570 -) -k1,8373:30171647,21804743:218547 -k1,8373:31041623,21804743:218548 -k1,8374:31966991,21804743:0 -) -(1,8374:7246811,22646231:24720180,505283,126483 -g1,8373:9102135,22646231 -k1,8374:31966991,22646231:21052130 -g1,8374:31966991,22646231 -) -v1,8376:7246811,23836697:0,393216,0 -(1,8380:7246811,24132919:24720180,689438,196608 -g1,8380:7246811,24132919 -g1,8380:7246811,24132919 -g1,8380:7050203,24132919 -(1,8380:7050203,24132919:0,689438,196608 -r1,8487:32163599,24132919:25113396,886046,196608 -k1,8380:7050203,24132919:-25113396 -) -(1,8380:7050203,24132919:25113396,689438,196608 -[1,8380:7246811,24132919:24720180,492830,0 -(1,8378:7246811,24050607:24720180,410518,82312 -(1,8377:7246811,24050607:0,0,0 -g1,8377:7246811,24050607 -g1,8377:7246811,24050607 -g1,8377:6919131,24050607 -(1,8377:6919131,24050607:0,0,0 -) -g1,8377:7246811,24050607 -) -k1,8378:7246811,24050607:0 -g1,8378:10092123,24050607 -g1,8378:13253580,24050607 -g1,8378:13885872,24050607 -g1,8378:14834310,24050607 -g1,8378:15466602,24050607 -g1,8378:16731185,24050607 -k1,8378:16731185,24050607:39846 -h1,8378:19616342,24050607:0,0,0 -k1,8378:31966991,24050607:12350649 -g1,8378:31966991,24050607 -) -] -) -g1,8380:31966991,24132919 -g1,8380:7246811,24132919 -g1,8380:7246811,24132919 -g1,8380:31966991,24132919 -g1,8380:31966991,24132919 -) -h1,8380:7246811,24329527:0,0,0 -(1,8384:7246811,25695303:24720180,513147,126483 -h1,8383:7246811,25695303:983040,0,0 -k1,8383:9459265,25695303:275865 -k1,8383:13040112,25695303:275866 -k1,8383:14691578,25695303:275865 -k1,8383:16354186,25695303:275866 -k1,8383:17242813,25695303:275865 -k1,8383:18537764,25695303:275866 -k1,8383:20972385,25695303:275865 -k1,8383:21915407,25695303:275866 -(1,8383:21915407,25695303:0,452978,115847 -r1,8487:24383944,25695303:2468537,568825,115847 -k1,8383:21915407,25695303:-2468537 -) -(1,8383:21915407,25695303:2468537,452978,115847 -k1,8383:21915407,25695303:3277 -h1,8383:24380667,25695303:0,411205,112570 -) -k1,8383:24659809,25695303:275865 -k1,8383:25621837,25695303:275866 -k1,8383:28903838,25695303:275865 -k1,8383:31966991,25695303:0 -) -(1,8384:7246811,26536791:24720180,505283,134348 -k1,8383:8182376,26536791:174037 -(1,8383:8182376,26536791:0,452978,115847 -r1,8487:10650913,26536791:2468537,568825,115847 -k1,8383:8182376,26536791:-2468537 -) -(1,8383:8182376,26536791:2468537,452978,115847 -k1,8383:8182376,26536791:3277 -h1,8383:10647636,26536791:0,411205,112570 -) -k1,8383:10998620,26536791:174037 -k1,8383:14107359,26536791:174037 -k1,8383:15748092,26536791:174037 -(1,8383:15748092,26536791:0,452978,115847 -r1,8487:18216629,26536791:2468537,568825,115847 -k1,8383:15748092,26536791:-2468537 -) -(1,8383:15748092,26536791:2468537,452978,115847 -k1,8383:15748092,26536791:3277 -h1,8383:18213352,26536791:0,411205,112570 -) -k1,8383:18390666,26536791:174037 -k1,8383:19756149,26536791:174038 -(1,8383:19756149,26536791:0,452978,115847 -r1,8487:22928109,26536791:3171960,568825,115847 -k1,8383:19756149,26536791:-3171960 -) -(1,8383:19756149,26536791:3171960,452978,115847 -k1,8383:19756149,26536791:3277 -h1,8383:22924832,26536791:0,411205,112570 -) -k1,8383:23102146,26536791:174037 -k1,8383:25286828,26536791:174037 -k1,8383:28147186,26536791:174037 -k1,8383:30611051,26536791:174037 -k1,8384:31966991,26536791:0 -) -(1,8384:7246811,27378279:24720180,505283,134348 -k1,8383:9711444,27378279:245584 -k1,8383:12910736,27378279:245584 -k1,8383:14550270,27378279:245583 -k1,8383:16185217,27378279:245584 -k1,8383:17497072,27378279:245584 -k1,8383:20805809,27378279:245584 -k1,8383:21812921,27378279:245584 -k1,8383:23077589,27378279:245583 -k1,8383:26294575,27378279:245584 -(1,8383:26294575,27378279:0,452978,115847 -r1,8487:28763112,27378279:2468537,568825,115847 -k1,8383:26294575,27378279:-2468537 -) -(1,8383:26294575,27378279:2468537,452978,115847 -k1,8383:26294575,27378279:3277 -h1,8383:28759835,27378279:0,411205,112570 -) -k1,8383:29008696,27378279:245584 -k1,8383:31966991,27378279:0 -) -(1,8384:7246811,28219767:24720180,513147,134348 -k1,8383:12127604,28219767:169410 -k1,8383:13500256,28219767:169411 -k1,8383:14201163,28219767:169410 -k1,8383:17675555,28219767:169411 -k1,8383:19995857,28219767:169410 -k1,8383:21863305,28219767:169410 -k1,8383:22901068,28219767:169411 -k1,8383:24619094,28219767:169410 -k1,8383:25439933,28219767:169411 -k1,8383:27465323,28219767:169410 -k1,8383:29929805,28219767:169411 -k1,8383:31118300,28219767:169410 -k1,8384:31966991,28219767:0 -) -(1,8384:7246811,29061255:24720180,513147,126483 -k1,8383:8988009,29061255:203723 -k1,8383:9807771,29061255:203724 -k1,8383:10367354,29061255:203723 -k1,8383:13333420,29061255:203723 -k1,8383:15891197,29061255:203724 -k1,8383:16777805,29061255:203723 -k1,8383:19185505,29061255:203724 -k1,8383:21041391,29061255:203723 -k1,8383:21904406,29061255:203723 -k1,8383:23747185,29061255:203724 -k1,8383:24898559,29061255:203723 -k1,8383:26194767,29061255:203723 -k1,8383:27014529,29061255:203724 -k1,8383:30445245,29061255:203723 -k1,8383:31966991,29061255:0 -) -(1,8384:7246811,29902743:24720180,505283,134348 -g1,8383:8128925,29902743 -g1,8383:12896013,29902743 -g1,8383:14700219,29902743 -g1,8383:16601418,29902743 -g1,8383:17668999,29902743 -g1,8383:18960713,29902743 -(1,8383:18960713,29902743:0,452978,115847 -r1,8487:20725826,29902743:1765113,568825,115847 -k1,8383:18960713,29902743:-1765113 -) -(1,8383:18960713,29902743:1765113,452978,115847 -k1,8383:18960713,29902743:3277 -h1,8383:20722549,29902743:0,411205,112570 -) -g1,8383:20925055,29902743 -g1,8383:21775712,29902743 -g1,8383:23361683,29902743 -g1,8383:24173674,29902743 -g1,8383:25391988,29902743 -k1,8384:31966991,29902743:3469907 -g1,8384:31966991,29902743 -) -v1,8386:7246811,31093209:0,393216,0 -(1,8399:7246811,36143379:24720180,5443386,196608 -g1,8399:7246811,36143379 -g1,8399:7246811,36143379 -g1,8399:7050203,36143379 -(1,8399:7050203,36143379:0,5443386,196608 -r1,8487:32163599,36143379:25113396,5639994,196608 -k1,8399:7050203,36143379:-25113396 -) -(1,8399:7050203,36143379:25113396,5443386,196608 -[1,8399:7246811,36143379:24720180,5246778,0 -(1,8388:7246811,31307119:24720180,410518,76021 -(1,8387:7246811,31307119:0,0,0 -g1,8387:7246811,31307119 -g1,8387:7246811,31307119 -g1,8387:6919131,31307119 -(1,8387:6919131,31307119:0,0,0 -) -g1,8387:7246811,31307119 -) -k1,8388:7246811,31307119:0 -k1,8388:7246811,31307119:0 -h1,8388:11988996,31307119:0,0,0 -k1,8388:31966992,31307119:19977996 -g1,8388:31966992,31307119 -) -(1,8398:7246811,32038833:24720180,410518,9436 -(1,8390:7246811,32038833:0,0,0 -g1,8390:7246811,32038833 -g1,8390:7246811,32038833 -g1,8390:6919131,32038833 -(1,8390:6919131,32038833:0,0,0 -) -g1,8390:7246811,32038833 -) -g1,8398:8195248,32038833 -g1,8398:10724414,32038833 -g1,8398:13253580,32038833 -g1,8398:14518163,32038833 -g1,8398:18944204,32038833 -g1,8398:19576496,32038833 -g1,8398:21157225,32038833 -g1,8398:22105662,32038833 -g1,8398:22421808,32038833 -g1,8398:23054100,32038833 -h1,8398:26215557,32038833:0,0,0 -k1,8398:31966991,32038833:5751434 -g1,8398:31966991,32038833 -) -(1,8398:7246811,32705011:24720180,410518,31456 -h1,8398:7246811,32705011:0,0,0 -g1,8398:8195248,32705011 -g1,8398:8511394,32705011 -g1,8398:9143686,32705011 -g1,8398:10092123,32705011 -g1,8398:10408269,32705011 -g1,8398:10724415,32705011 -g1,8398:11040561,32705011 -g1,8398:11356707,32705011 -g1,8398:11988999,32705011 -g1,8398:13253582,32705011 -g1,8398:13569728,32705011 -g1,8398:14202020,32705011 -h1,8398:14834311,32705011:0,0,0 -k1,8398:31966991,32705011:17132680 -g1,8398:31966991,32705011 -) -(1,8398:7246811,33371189:24720180,410518,101187 -h1,8398:7246811,33371189:0,0,0 -g1,8398:8195248,33371189 -g1,8398:8511394,33371189 -g1,8398:9143686,33371189 -g1,8398:10408269,33371189 -g1,8398:11356706,33371189 -g1,8398:11988998,33371189 -g1,8398:13253581,33371189 -g1,8398:13569727,33371189 -g1,8398:15466601,33371189 -h1,8398:17047329,33371189:0,0,0 -k1,8398:31966991,33371189:14919662 -g1,8398:31966991,33371189 -) -(1,8398:7246811,34037367:24720180,410518,101187 -h1,8398:7246811,34037367:0,0,0 -g1,8398:8195248,34037367 -g1,8398:8511394,34037367 -g1,8398:9143686,34037367 -g1,8398:10724415,34037367 -g1,8398:11988998,34037367 -g1,8398:13253581,34037367 -g1,8398:13569727,34037367 -g1,8398:15466601,34037367 -h1,8398:16415038,34037367:0,0,0 -k1,8398:31966991,34037367:15551953 -g1,8398:31966991,34037367 -) -(1,8398:7246811,34703545:24720180,410518,31456 -h1,8398:7246811,34703545:0,0,0 -g1,8398:8195248,34703545 -g1,8398:8511394,34703545 -g1,8398:9143686,34703545 -g1,8398:9775978,34703545 -g1,8398:11988998,34703545 -g1,8398:13253581,34703545 -g1,8398:13569727,34703545 -g1,8398:15150456,34703545 -h1,8398:15782747,34703545:0,0,0 -k1,8398:31966991,34703545:16184244 -g1,8398:31966991,34703545 -) -(1,8398:7246811,35369723:24720180,410518,76021 -h1,8398:7246811,35369723:0,0,0 -g1,8398:8195248,35369723 -g1,8398:8511394,35369723 -g1,8398:9143686,35369723 -g1,8398:11356706,35369723 -g1,8398:11988998,35369723 -g1,8398:13253581,35369723 -g1,8398:13569727,35369723 -g1,8398:16415038,35369723 -h1,8398:17047329,35369723:0,0,0 -k1,8398:31966991,35369723:14919662 -g1,8398:31966991,35369723 -) -(1,8398:7246811,36035901:24720180,410518,107478 -h1,8398:7246811,36035901:0,0,0 -k1,8398:8089866,36035901:210764 -k1,8398:8300630,36035901:210764 -k1,8398:8827540,36035901:210764 -k1,8398:11251324,36035901:210764 -k1,8398:14939690,36035901:210764 -k1,8398:16098891,36035901:210764 -k1,8398:17890383,36035901:210764 -k1,8398:20946458,36035901:210764 -k1,8398:21789513,36035901:210764 -k1,8398:24529442,36035901:210764 -k1,8398:27269371,36035901:210764 -k1,8398:30641592,36035901:210764 -h1,8398:32222320,36035901:0,0,0 -k1,8398:32222320,36035901:0 -k1,8398:32222320,36035901:0 -) -] -) -g1,8399:31966991,36143379 -g1,8399:7246811,36143379 -g1,8399:7246811,36143379 -g1,8399:31966991,36143379 -g1,8399:31966991,36143379 -) -h1,8399:7246811,36339987:0,0,0 -] -) -] -r1,8487:32583029,37978387:26214,28431752,0 -) -] -) -) -g1,8487:32583029,37388563 -) -] -(1,8487:32583029,45706769:0,0,0 -g1,8487:32583029,45706769 -) -) -] -(1,8487:6630773,47279633:25952256,0,0 -h1,8487:6630773,47279633:25952256,0,0 -) -] -(1,8487:4262630,4025873:0,0,0 -[1,8487:-473656,4025873:0,0,0 -(1,8487:-473656,-710413:0,0,0 -(1,8487:-473656,-710413:0,0,0 -g1,8487:-473656,-710413 -) -g1,8487:-473656,-710413 -) -] -) -] -!21171 -}160 -!12 -{161 -[1,8487:4262630,47279633:28320399,43253760,0 -(1,8487:4262630,4025873:0,0,0 -[1,8487:-473656,4025873:0,0,0 -(1,8487:-473656,-710413:0,0,0 -(1,8487:-473656,-644877:0,0,0 -k1,8487:-473656,-644877:-65536 -) -(1,8487:-473656,4736287:0,0,0 -k1,8487:-473656,4736287:5209943 -) -g1,8487:-473656,-710413 -) -] -) -[1,8487:6630773,47279633:25952256,43253760,0 -[1,8487:6630773,4812305:25952256,786432,0 -(1,8487:6630773,4812305:25952256,505283,134348 -(1,8487:6630773,4812305:25952256,505283,134348 -g1,8487:3078558,4812305 -[1,8487:3078558,4812305:0,0,0 -(1,8487:3078558,2439708:0,1703936,0 -k1,8487:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,8487:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,8487:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,8487:3078558,4812305:0,0,0 -(1,8487:3078558,2439708:0,1703936,0 -g1,8487:29030814,2439708 -g1,8487:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,8487:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,8487:37855564,2439708:1179648,16384,0 -) -) -k1,8487:3078556,2439708:-34777008 -) -] -[1,8487:3078558,4812305:0,0,0 -(1,8487:3078558,49800853:0,16384,2228224 -k1,8487:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,8487:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,8487:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,8487:3078558,4812305:0,0,0 -(1,8487:3078558,49800853:0,16384,2228224 -g1,8487:29030814,49800853 -g1,8487:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,8487:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,8487:37855564,49800853:1179648,16384,0 -) -) -k1,8487:3078556,49800853:-34777008 -) -] -g1,8487:6630773,4812305 -k1,8487:24502442,4812305:16676292 -g1,8487:25889183,4812305 -g1,8487:26537989,4812305 -g1,8487:29852144,4812305 -) -) -] -[1,8487:6630773,45706769:25952256,40108032,0 -(1,8487:6630773,45706769:25952256,40108032,0 -(1,8487:6630773,45706769:0,0,0 -g1,8487:6630773,45706769 -) -[1,8487:6630773,45706769:25952256,40108032,0 -v1,8487:6630773,6254097:0,393216,0 -(1,8487:6630773,45116945:25952256,39256064,589824 -g1,8487:6630773,45116945 -(1,8487:6630773,45116945:25952256,39256064,589824 -(1,8487:6630773,45706769:25952256,39845888,0 -[1,8487:6630773,45706769:25952256,39845888,0 -(1,8487:6630773,45706769:25952256,39845888,0 -r1,8487:6656987,45706769:26214,39845888,0 -[1,8487:6656987,45706769:25899828,39845888,0 -(1,8487:6656987,45116945:25899828,38666240,0 -[1,8487:7246811,45116945:24720180,38666240,0 -v1,8403:7246811,6843921:0,393216,0 -(1,8444:7246811,30540784:24720180,24090079,196608 -g1,8444:7246811,30540784 -g1,8444:7246811,30540784 -g1,8444:7050203,30540784 -(1,8444:7050203,30540784:0,24090079,196608 -r1,8487:32163599,30540784:25113396,24286687,196608 -k1,8444:7050203,30540784:-25113396 -) -(1,8444:7050203,30540784:25113396,24090079,196608 -[1,8444:7246811,30540784:24720180,23893471,0 -(1,8405:7246811,7057831:24720180,410518,101187 -(1,8404:7246811,7057831:0,0,0 -g1,8404:7246811,7057831 -g1,8404:7246811,7057831 -g1,8404:6919131,7057831 -(1,8404:6919131,7057831:0,0,0 -) -g1,8404:7246811,7057831 -) -k1,8405:7246811,7057831:0 -k1,8405:7246811,7057831:0 -h1,8405:12621288,7057831:0,0,0 -k1,8405:31966992,7057831:19345704 -g1,8405:31966992,7057831 -) -(1,8443:7246811,7789545:24720180,410518,6290 -(1,8407:7246811,7789545:0,0,0 -g1,8407:7246811,7789545 -g1,8407:7246811,7789545 -g1,8407:6919131,7789545 -(1,8407:6919131,7789545:0,0,0 -) -g1,8407:7246811,7789545 -) -g1,8443:8195248,7789545 -g1,8443:9775977,7789545 -g1,8443:10724414,7789545 -h1,8443:11356705,7789545:0,0,0 -k1,8443:31966991,7789545:20610286 -g1,8443:31966991,7789545 -) -(1,8443:7246811,8455723:24720180,410518,107478 -h1,8443:7246811,8455723:0,0,0 -g1,8443:8195248,8455723 -g1,8443:8511394,8455723 -g1,8443:9143686,8455723 -g1,8443:10724415,8455723 -g1,8443:11040561,8455723 -g1,8443:11356707,8455723 -g1,8443:11672853,8455723 -g1,8443:11988999,8455723 -g1,8443:12305145,8455723 -g1,8443:12621291,8455723 -g1,8443:12937437,8455723 -g1,8443:13253583,8455723 -g1,8443:13885875,8455723 -g1,8443:16731186,8455723 -g1,8443:20208789,8455723 -g1,8443:20841081,8455723 -g1,8443:22421810,8455723 -g1,8443:23054102,8455723 -g1,8443:23686394,8455723 -g1,8443:24318686,8455723 -g1,8443:26531706,8455723 -g1,8443:28112435,8455723 -g1,8443:28744727,8455723 -h1,8443:30325455,8455723:0,0,0 -k1,8443:31966991,8455723:1641536 -g1,8443:31966991,8455723 -) -(1,8443:7246811,9121901:24720180,410518,107478 -h1,8443:7246811,9121901:0,0,0 -g1,8443:8195248,9121901 -g1,8443:8511394,9121901 -g1,8443:9143686,9121901 -g1,8443:11040560,9121901 -g1,8443:11356706,9121901 -g1,8443:11672852,9121901 -g1,8443:11988998,9121901 -g1,8443:12305144,9121901 -g1,8443:12621290,9121901 -g1,8443:12937436,9121901 -g1,8443:13253582,9121901 -g1,8443:16098893,9121901 -g1,8443:18944205,9121901 -g1,8443:22105663,9121901 -g1,8443:22421809,9121901 -g1,8443:25267120,9121901 -g1,8443:26847849,9121901 -g1,8443:27480141,9121901 -g1,8443:28112433,9121901 -g1,8443:28744725,9121901 -h1,8443:30325453,9121901:0,0,0 -k1,8443:31966991,9121901:1641538 -g1,8443:31966991,9121901 -) -(1,8443:7246811,9788079:24720180,404226,107478 -h1,8443:7246811,9788079:0,0,0 -g1,8443:8195248,9788079 -g1,8443:8511394,9788079 -g1,8443:8827540,9788079 -g1,8443:9775977,9788079 -g1,8443:11040560,9788079 -g1,8443:13569726,9788079 -g1,8443:17995766,9788079 -g1,8443:20841077,9788079 -g1,8443:24318680,9788079 -h1,8443:26215554,9788079:0,0,0 -k1,8443:31966991,9788079:5751437 -g1,8443:31966991,9788079 -) -(1,8443:7246811,10454257:24720180,410518,82312 -h1,8443:7246811,10454257:0,0,0 -g1,8443:8195248,10454257 -g1,8443:8511394,10454257 -g1,8443:8827540,10454257 -g1,8443:9775977,10454257 -g1,8443:11040560,10454257 -g1,8443:13569726,10454257 -g1,8443:17363474,10454257 -g1,8443:18628057,10454257 -g1,8443:20524932,10454257 -g1,8443:21473369,10454257 -g1,8443:22105661,10454257 -h1,8443:22421807,10454257:0,0,0 -k1,8443:31966991,10454257:9545184 -g1,8443:31966991,10454257 -) -(1,8443:7246811,11120435:24720180,410518,82312 -h1,8443:7246811,11120435:0,0,0 -g1,8443:8195248,11120435 -g1,8443:8511394,11120435 -g1,8443:8827540,11120435 -g1,8443:9775977,11120435 -g1,8443:10724414,11120435 -g1,8443:11988997,11120435 -g1,8443:14518163,11120435 -g1,8443:19892640,11120435 -g1,8443:20841077,11120435 -h1,8443:21157223,11120435:0,0,0 -k1,8443:31966991,11120435:10809768 -g1,8443:31966991,11120435 -) -(1,8443:7246811,11786613:24720180,410518,101187 -h1,8443:7246811,11786613:0,0,0 -g1,8443:8195248,11786613 -g1,8443:8511394,11786613 -g1,8443:8827540,11786613 -g1,8443:9775977,11786613 -g1,8443:10724414,11786613 -g1,8443:11672851,11786613 -g1,8443:12937434,11786613 -g1,8443:13569726,11786613 -g1,8443:14834309,11786613 -g1,8443:16731183,11786613 -g1,8443:18944203,11786613 -h1,8443:21157223,11786613:0,0,0 -k1,8443:31966991,11786613:10809768 -g1,8443:31966991,11786613 -) -(1,8443:7246811,12452791:24720180,410518,101187 -h1,8443:7246811,12452791:0,0,0 -g1,8443:8195248,12452791 -g1,8443:8511394,12452791 -g1,8443:8827540,12452791 -g1,8443:9775977,12452791 -g1,8443:10724414,12452791 -g1,8443:11672851,12452791 -g1,8443:12937434,12452791 -g1,8443:13569726,12452791 -g1,8443:14834309,12452791 -h1,8443:17047329,12452791:0,0,0 -k1,8443:31966991,12452791:14919662 -g1,8443:31966991,12452791 -) -(1,8443:7246811,13118969:24720180,404226,101187 -h1,8443:7246811,13118969:0,0,0 -g1,8443:8195248,13118969 -g1,8443:8511394,13118969 -g1,8443:8827540,13118969 -g1,8443:9775977,13118969 -g1,8443:11040560,13118969 -g1,8443:13569726,13118969 -g1,8443:18628057,13118969 -g1,8443:19892640,13118969 -h1,8443:22105660,13118969:0,0,0 -k1,8443:31966991,13118969:9861331 -g1,8443:31966991,13118969 -) -(1,8443:7246811,13785147:24720180,404226,82312 -h1,8443:7246811,13785147:0,0,0 -g1,8443:8195248,13785147 -g1,8443:8511394,13785147 -g1,8443:8827540,13785147 -g1,8443:9775977,13785147 -g1,8443:11040560,13785147 -g1,8443:13569726,13785147 -g1,8443:16731183,13785147 -g1,8443:17995766,13785147 -h1,8443:18311912,13785147:0,0,0 -k1,8443:31966991,13785147:13655079 -g1,8443:31966991,13785147 -) -(1,8443:7246811,14451325:24720180,404226,101187 -h1,8443:7246811,14451325:0,0,0 -g1,8443:8195248,14451325 -g1,8443:8511394,14451325 -g1,8443:8827540,14451325 -g1,8443:9775977,14451325 -g1,8443:11040560,14451325 -g1,8443:13569726,14451325 -g1,8443:17995766,14451325 -g1,8443:19260349,14451325 -h1,8443:19576495,14451325:0,0,0 -k1,8443:31966991,14451325:12390496 -g1,8443:31966991,14451325 -) -(1,8443:7246811,15117503:24720180,404226,101187 -h1,8443:7246811,15117503:0,0,0 -g1,8443:8195248,15117503 -g1,8443:8511394,15117503 -g1,8443:8827540,15117503 -g1,8443:9775977,15117503 -g1,8443:11040560,15117503 -g1,8443:13569726,15117503 -g1,8443:17679620,15117503 -g1,8443:18944203,15117503 -h1,8443:19260349,15117503:0,0,0 -k1,8443:31966991,15117503:12706642 -g1,8443:31966991,15117503 -) -(1,8443:7246811,15783681:24720180,404226,82312 -h1,8443:7246811,15783681:0,0,0 -g1,8443:8195248,15783681 -g1,8443:8511394,15783681 -g1,8443:8827540,15783681 -g1,8443:9775977,15783681 -g1,8443:11040560,15783681 -g1,8443:13569726,15783681 -g1,8443:23054097,15783681 -k1,8443:23054097,15783681:0 -h1,8443:26847845,15783681:0,0,0 -k1,8443:31966991,15783681:5119146 -g1,8443:31966991,15783681 -) -(1,8443:7246811,16449859:24720180,404226,107478 -h1,8443:7246811,16449859:0,0,0 -g1,8443:8195248,16449859 -g1,8443:8511394,16449859 -g1,8443:8827540,16449859 -g1,8443:9775977,16449859 -g1,8443:11040560,16449859 -g1,8443:13569726,16449859 -g1,8443:17679620,16449859 -g1,8443:20524931,16449859 -g1,8443:24002534,16449859 -h1,8443:25899408,16449859:0,0,0 -k1,8443:31966991,16449859:6067583 -g1,8443:31966991,16449859 -) -(1,8443:7246811,17116037:24720180,404226,82312 -h1,8443:7246811,17116037:0,0,0 -g1,8443:8195248,17116037 -g1,8443:8511394,17116037 -g1,8443:8827540,17116037 -g1,8443:9775977,17116037 -g1,8443:11040560,17116037 -g1,8443:13569726,17116037 -g1,8443:18628057,17116037 -g1,8443:20524931,17116037 -g1,8443:21789514,17116037 -g1,8443:23686388,17116037 -g1,8443:26847845,17116037 -h1,8443:29693156,17116037:0,0,0 -k1,8443:31966991,17116037:2273835 -g1,8443:31966991,17116037 -) -(1,8443:7246811,17782215:24720180,404226,101187 -h1,8443:7246811,17782215:0,0,0 -g1,8443:8195248,17782215 -g1,8443:8511394,17782215 -g1,8443:8827540,17782215 -g1,8443:9775977,17782215 -g1,8443:10724414,17782215 -g1,8443:11988997,17782215 -g1,8443:14518163,17782215 -g1,8443:17679620,17782215 -g1,8443:18944203,17782215 -g1,8443:20841077,17782215 -g1,8443:23054097,17782215 -h1,8443:25267117,17782215:0,0,0 -k1,8443:31966991,17782215:6699874 -g1,8443:31966991,17782215 -) -(1,8443:7246811,18448393:24720180,410518,76021 -h1,8443:7246811,18448393:0,0,0 -g1,8443:8195248,18448393 -g1,8443:8511394,18448393 -g1,8443:9143686,18448393 -g1,8443:12305143,18448393 -g1,8443:12621289,18448393 -g1,8443:12937435,18448393 -g1,8443:13253581,18448393 -g1,8443:13885873,18448393 -g1,8443:15782747,18448393 -g1,8443:17047330,18448393 -g1,8443:19260350,18448393 -g1,8443:20841079,18448393 -g1,8443:22737953,18448393 -g1,8443:24634827,18448393 -g1,8443:26531701,18448393 -g1,8443:28112430,18448393 -h1,8443:29060867,18448393:0,0,0 -k1,8443:31966991,18448393:2906124 -g1,8443:31966991,18448393 -) -(1,8443:7246811,19114571:24720180,404226,82312 -h1,8443:7246811,19114571:0,0,0 -g1,8443:8195248,19114571 -g1,8443:8511394,19114571 -g1,8443:8827540,19114571 -g1,8443:10092123,19114571 -g1,8443:12621289,19114571 -g1,8443:15782746,19114571 -g1,8443:17047329,19114571 -g1,8443:19260349,19114571 -g1,8443:20524932,19114571 -g1,8443:21789515,19114571 -g1,8443:23054098,19114571 -g1,8443:24318681,19114571 -h1,8443:25267118,19114571:0,0,0 -k1,8443:31966991,19114571:6699873 -g1,8443:31966991,19114571 -) -(1,8443:7246811,19780749:24720180,410518,82312 -h1,8443:7246811,19780749:0,0,0 -g1,8443:8195248,19780749 -g1,8443:8511394,19780749 -g1,8443:9143686,19780749 -g1,8443:13253580,19780749 -g1,8443:13885872,19780749 -g1,8443:15150455,19780749 -g1,8443:17047330,19780749 -g1,8443:18628059,19780749 -g1,8443:21157225,19780749 -g1,8443:23054099,19780749 -g1,8443:24950973,19780749 -g1,8443:26847847,19780749 -g1,8443:29060867,19780749 -h1,8443:30009304,19780749:0,0,0 -k1,8443:31966991,19780749:1957687 -g1,8443:31966991,19780749 -) -(1,8443:7246811,20446927:24720180,410518,82312 -h1,8443:7246811,20446927:0,0,0 -g1,8443:8195248,20446927 -g1,8443:8511394,20446927 -g1,8443:8827540,20446927 -g1,8443:10092123,20446927 -g1,8443:12621289,20446927 -g1,8443:17995766,20446927 -g1,8443:18944203,20446927 -h1,8443:19260349,20446927:0,0,0 -k1,8443:31966991,20446927:12706642 -g1,8443:31966991,20446927 -) -(1,8443:7246811,21113105:24720180,410518,101187 -h1,8443:7246811,21113105:0,0,0 -g1,8443:8195248,21113105 -g1,8443:8511394,21113105 -g1,8443:8827540,21113105 -g1,8443:9775977,21113105 -g1,8443:11040560,21113105 -g1,8443:11672852,21113105 -g1,8443:12937435,21113105 -g1,8443:14834309,21113105 -g1,8443:19260349,21113105 -h1,8443:21473369,21113105:0,0,0 -k1,8443:31966991,21113105:10493622 -g1,8443:31966991,21113105 -) -(1,8443:7246811,21779283:24720180,410518,76021 -h1,8443:7246811,21779283:0,0,0 -g1,8443:8195248,21779283 -g1,8443:8511394,21779283 -g1,8443:8827540,21779283 -g1,8443:9775977,21779283 -g1,8443:11040560,21779283 -g1,8443:11672852,21779283 -g1,8443:12937435,21779283 -g1,8443:14834309,21779283 -g1,8443:18311912,21779283 -g1,8443:20208786,21779283 -g1,8443:22421806,21779283 -g1,8443:23370243,21779283 -g1,8443:25583263,21779283 -k1,8443:25583263,21779283:0 -h1,8443:28744720,21779283:0,0,0 -k1,8443:31966991,21779283:3222271 -g1,8443:31966991,21779283 -) -(1,8443:7246811,22445461:24720180,410518,107478 -h1,8443:7246811,22445461:0,0,0 -g1,8443:8195248,22445461 -g1,8443:8511394,22445461 -g1,8443:9143686,22445461 -g1,8443:11672852,22445461 -g1,8443:11988998,22445461 -g1,8443:12305144,22445461 -g1,8443:12621290,22445461 -g1,8443:12937436,22445461 -g1,8443:13253582,22445461 -g1,8443:13885874,22445461 -g1,8443:15782748,22445461 -g1,8443:17363477,22445461 -g1,8443:19260351,22445461 -g1,8443:21157225,22445461 -h1,8443:22737953,22445461:0,0,0 -k1,8443:31966991,22445461:9229038 -g1,8443:31966991,22445461 -) -(1,8443:7246811,23111639:24720180,404226,101187 -h1,8443:7246811,23111639:0,0,0 -g1,8443:8195248,23111639 -g1,8443:8511394,23111639 -g1,8443:8827540,23111639 -g1,8443:10092123,23111639 -g1,8443:12621289,23111639 -g1,8443:15782746,23111639 -g1,8443:17047329,23111639 -g1,8443:18944203,23111639 -g1,8443:23370243,23111639 -h1,8443:25583263,23111639:0,0,0 -k1,8443:31966991,23111639:6383728 -g1,8443:31966991,23111639 -) -(1,8443:7246811,23777817:24720180,410518,107478 -h1,8443:7246811,23777817:0,0,0 -g1,8443:8195248,23777817 -g1,8443:8511394,23777817 -g1,8443:9143686,23777817 -g1,8443:11040560,23777817 -g1,8443:11356706,23777817 -g1,8443:11672852,23777817 -g1,8443:11988998,23777817 -g1,8443:12305144,23777817 -g1,8443:12621290,23777817 -g1,8443:12937436,23777817 -g1,8443:13253582,23777817 -g1,8443:13885874,23777817 -g1,8443:15150457,23777817 -h1,8443:16415040,23777817:0,0,0 -k1,8443:31966991,23777817:15551951 -g1,8443:31966991,23777817 -) -(1,8443:7246811,24443995:24720180,410518,76021 -h1,8443:7246811,24443995:0,0,0 -g1,8443:8195248,24443995 -g1,8443:8511394,24443995 -g1,8443:9143686,24443995 -g1,8443:10092123,24443995 -g1,8443:10408269,24443995 -g1,8443:10724415,24443995 -g1,8443:11040561,24443995 -g1,8443:11356707,24443995 -g1,8443:11672853,24443995 -g1,8443:11988999,24443995 -g1,8443:12305145,24443995 -g1,8443:12621291,24443995 -g1,8443:12937437,24443995 -g1,8443:13253583,24443995 -g1,8443:13885875,24443995 -g1,8443:15150458,24443995 -g1,8443:17047332,24443995 -g1,8443:17679624,24443995 -g1,8443:18628061,24443995 -h1,8443:18944207,24443995:0,0,0 -k1,8443:31966991,24443995:13022784 -g1,8443:31966991,24443995 -) -(1,8443:7246811,25110173:24720180,410518,101187 -h1,8443:7246811,25110173:0,0,0 -g1,8443:8195248,25110173 -g1,8443:8511394,25110173 -g1,8443:9143686,25110173 -g1,8443:12305143,25110173 -g1,8443:12621289,25110173 -g1,8443:12937435,25110173 -g1,8443:13253581,25110173 -g1,8443:13885873,25110173 -g1,8443:15150456,25110173 -h1,8443:16731184,25110173:0,0,0 -k1,8443:31966991,25110173:15235807 -g1,8443:31966991,25110173 -) -(1,8443:7246811,25776351:24720180,410518,107478 -h1,8443:7246811,25776351:0,0,0 -g1,8443:8195248,25776351 -g1,8443:8511394,25776351 -g1,8443:9143686,25776351 -g1,8443:13885872,25776351 -g1,8443:15150455,25776351 -h1,8443:16731183,25776351:0,0,0 -k1,8443:31966991,25776351:15235808 -g1,8443:31966991,25776351 -) -(1,8443:7246811,26442529:24720180,410518,76021 -h1,8443:7246811,26442529:0,0,0 -g1,8443:8195248,26442529 -g1,8443:8511394,26442529 -g1,8443:9143686,26442529 -g1,8443:12621289,26442529 -g1,8443:12937435,26442529 -g1,8443:13253581,26442529 -g1,8443:13885873,26442529 -g1,8443:15782747,26442529 -g1,8443:17047330,26442529 -g1,8443:18944204,26442529 -g1,8443:20524933,26442529 -g1,8443:21157225,26442529 -h1,8443:21789516,26442529:0,0,0 -k1,8443:31966991,26442529:10177475 -g1,8443:31966991,26442529 -) -(1,8443:7246811,27108707:24720180,410518,82312 -h1,8443:7246811,27108707:0,0,0 -g1,8443:8195248,27108707 -g1,8443:8511394,27108707 -g1,8443:8827540,27108707 -g1,8443:10092123,27108707 -g1,8443:12621289,27108707 -g1,8443:15782746,27108707 -g1,8443:17047329,27108707 -g1,8443:18944203,27108707 -g1,8443:21473369,27108707 -g1,8443:24002535,27108707 -h1,8443:26215555,27108707:0,0,0 -k1,8443:31966991,27108707:5751436 -g1,8443:31966991,27108707 -) -(1,8443:7246811,27774885:24720180,410518,82312 -h1,8443:7246811,27774885:0,0,0 -g1,8443:8195248,27774885 -g1,8443:8511394,27774885 -g1,8443:9143686,27774885 -g1,8443:13253580,27774885 -g1,8443:13885872,27774885 -g1,8443:15150455,27774885 -g1,8443:17047330,27774885 -g1,8443:18628059,27774885 -g1,8443:21157225,27774885 -g1,8443:24002536,27774885 -g1,8443:26847847,27774885 -h1,8443:29060867,27774885:0,0,0 -k1,8443:31966991,27774885:2906124 -g1,8443:31966991,27774885 -) -(1,8443:7246811,28441063:24720180,410518,82312 -h1,8443:7246811,28441063:0,0,0 -g1,8443:8195248,28441063 -g1,8443:8511394,28441063 -g1,8443:8827540,28441063 -g1,8443:10092123,28441063 -g1,8443:12621289,28441063 -g1,8443:17995766,28441063 -g1,8443:18944203,28441063 -h1,8443:19260349,28441063:0,0,0 -k1,8443:31966991,28441063:12706642 -g1,8443:31966991,28441063 -) -(1,8443:7246811,29107241:24720180,410518,101187 -h1,8443:7246811,29107241:0,0,0 -g1,8443:8195248,29107241 -g1,8443:8511394,29107241 -g1,8443:8827540,29107241 -g1,8443:9775977,29107241 -g1,8443:11040560,29107241 -g1,8443:11672852,29107241 -g1,8443:12937435,29107241 -g1,8443:14834309,29107241 -g1,8443:19260349,29107241 -h1,8443:21473369,29107241:0,0,0 -k1,8443:31966991,29107241:10493622 -g1,8443:31966991,29107241 -) -(1,8443:7246811,29773419:24720180,410518,101187 -h1,8443:7246811,29773419:0,0,0 -g1,8443:8195248,29773419 -g1,8443:8511394,29773419 -g1,8443:8827540,29773419 -g1,8443:9775977,29773419 -g1,8443:11040560,29773419 -g1,8443:11672852,29773419 -g1,8443:12937435,29773419 -g1,8443:14834309,29773419 -g1,8443:19260349,29773419 -h1,8443:21473369,29773419:0,0,0 -k1,8443:31966991,29773419:10493622 -g1,8443:31966991,29773419 -) -(1,8443:7246811,30439597:24720180,404226,101187 -h1,8443:7246811,30439597:0,0,0 -g1,8443:8195248,30439597 -g1,8443:8511394,30439597 -g1,8443:9143686,30439597 -g1,8443:11672852,30439597 -g1,8443:14834309,30439597 -g1,8443:16098892,30439597 -h1,8443:19892640,30439597:0,0,0 -k1,8443:31966991,30439597:12074351 -g1,8443:31966991,30439597 -) -] -) -g1,8444:31966991,30540784 -g1,8444:7246811,30540784 -g1,8444:7246811,30540784 -g1,8444:31966991,30540784 -g1,8444:31966991,30540784 -) -h1,8444:7246811,30737392:0,0,0 -(1,8448:7246811,32335808:24720180,513147,134348 -h1,8447:7246811,32335808:983040,0,0 -k1,8447:10067027,32335808:232199 -k1,8447:11167578,32335808:232199 -k1,8447:13122719,32335808:232199 -k1,8447:14374003,32335808:232199 -k1,8447:17537627,32335808:232199 -k1,8447:18429118,32335808:232199 -k1,8447:19680403,32335808:232200 -k1,8447:21872128,32335808:232199 -k1,8447:23295772,32335808:232199 -k1,8447:24547056,32335808:232199 -k1,8447:26847571,32335808:232199 -k1,8447:27739062,32335808:232199 -k1,8447:31098639,32335808:232199 -k1,8447:31966991,32335808:0 -) -(1,8448:7246811,33177296:24720180,513147,134348 -g1,8447:8550322,33177296 -g1,8447:10887991,33177296 -g1,8447:13291196,33177296 -g1,8447:15129480,33177296 -g1,8447:17064102,33177296 -g1,8447:18282416,33177296 -g1,8447:20202620,33177296 -g1,8447:20816692,33177296 -g1,8447:22601892,33177296 -g1,8447:23748772,33177296 -g1,8447:26571407,33177296 -k1,8448:31966991,33177296:2007373 -g1,8448:31966991,33177296 -) -v1,8450:7246811,34522855:0,393216,0 -(1,8457:7246811,35544500:24720180,1414861,196608 -g1,8457:7246811,35544500 -g1,8457:7246811,35544500 -g1,8457:7050203,35544500 -(1,8457:7050203,35544500:0,1414861,196608 -r1,8487:32163599,35544500:25113396,1611469,196608 -k1,8457:7050203,35544500:-25113396 -) -(1,8457:7050203,35544500:25113396,1414861,196608 -[1,8457:7246811,35544500:24720180,1218253,0 -(1,8452:7246811,34736765:24720180,410518,107478 -(1,8451:7246811,34736765:0,0,0 -g1,8451:7246811,34736765 -g1,8451:7246811,34736765 -g1,8451:6919131,34736765 -(1,8451:6919131,34736765:0,0,0 -) -g1,8451:7246811,34736765 -) -k1,8452:7246811,34736765:0 -h1,8452:15466599,34736765:0,0,0 -k1,8452:31966991,34736765:16500392 -g1,8452:31966991,34736765 -) -(1,8456:7246811,35468479:24720180,404226,76021 -(1,8454:7246811,35468479:0,0,0 -g1,8454:7246811,35468479 -g1,8454:7246811,35468479 -g1,8454:6919131,35468479 -(1,8454:6919131,35468479:0,0,0 -) -g1,8454:7246811,35468479 -) -g1,8456:8195248,35468479 -g1,8456:9459831,35468479 -h1,8456:12305142,35468479:0,0,0 -k1,8456:31966990,35468479:19661848 -g1,8456:31966990,35468479 -) -] -) -g1,8457:31966991,35544500 -g1,8457:7246811,35544500 -g1,8457:7246811,35544500 -g1,8457:31966991,35544500 -g1,8457:31966991,35544500 -) -h1,8457:7246811,35741108:0,0,0 -(1,8461:7246811,37339523:24720180,513147,134348 -h1,8460:7246811,37339523:983040,0,0 -k1,8460:9346735,37339523:298995 -k1,8460:10416434,37339523:298996 -k1,8460:13376846,37339523:298995 -k1,8460:14544194,37339523:298996 -k1,8460:16034634,37339523:298995 -k1,8460:16799590,37339523:298995 -k1,8460:18117671,37339523:298996 -k1,8460:20114704,37339523:298995 -k1,8460:21981320,37339523:298995 -k1,8460:22636176,37339523:298996 -k1,8460:24747897,37339523:298995 -k1,8460:28363670,37339523:298996 -k1,8460:29350138,37339523:298995 -k1,8460:31966991,37339523:0 -) -(1,8461:7246811,38181011:24720180,513147,134348 -g1,8460:11325771,38181011 -g1,8460:13092621,38181011 -g1,8460:13647710,38181011 -g1,8460:16604694,38181011 -g1,8460:18484266,38181011 -g1,8460:21445838,38181011 -g1,8460:23212688,38181011 -g1,8460:24431002,38181011 -g1,8460:26351206,38181011 -k1,8461:31966991,38181011:4021949 -g1,8461:31966991,38181011 -) -(1,8463:7246811,39100046:24720180,513147,126483 -h1,8462:7246811,39100046:983040,0,0 -k1,8462:9706424,39100046:279886 -k1,8462:12978028,39100046:279885 -k1,8462:15113238,39100046:279886 -k1,8462:16384683,39100046:279885 -k1,8462:17612220,39100046:279886 -k1,8462:18247965,39100046:279885 -k1,8462:19767792,39100046:279886 -k1,8462:23519775,39100046:279886 -k1,8462:24458952,39100046:279885 -k1,8462:26436876,39100046:279886 -k1,8462:27284958,39100046:279885 -k1,8462:27963303,39100046:279886 -k1,8462:29434633,39100046:279885 -k1,8462:31098639,39100046:279886 -k1,8462:31966991,39100046:0 -) -(1,8463:7246811,39941534:24720180,513147,126483 -k1,8462:9146874,39941534:239381 -k1,8462:10716636,39941534:239381 -k1,8462:11607446,39941534:239382 -k1,8462:12662095,39941534:239381 -k1,8462:13920561,39941534:239381 -k1,8462:17464923,39941534:239381 -k1,8462:18895749,39941534:239381 -k1,8462:20529082,39941534:239382 -k1,8462:21124323,39941534:239381 -k1,8462:22603645,39941534:239381 -k1,8462:26315123,39941534:239381 -k1,8462:27213796,39941534:239381 -k1,8462:29151216,39941534:239382 -k1,8462:29958794,39941534:239381 -k1,8462:30770304,39941534:239381 -k1,8462:31966991,39941534:0 -) -(1,8463:7246811,40783022:24720180,513147,126483 -k1,8462:10731310,40783022:228670 -k1,8462:11491477,40783022:228670 -k1,8462:14966146,40783022:228671 -k1,8462:15846244,40783022:228670 -k1,8462:17206721,40783022:228670 -k1,8462:20193146,40783022:228670 -k1,8462:22102160,40783022:228671 -k1,8462:23016992,40783022:228670 -k1,8462:23601522,40783022:228670 -k1,8462:25070133,40783022:228670 -k1,8462:28770901,40783022:228671 -k1,8462:29947222,40783022:228670 -k1,8462:31307699,40783022:228670 -k1,8462:31966991,40783022:0 -) -(1,8463:7246811,41624510:24720180,513147,126483 -k1,8462:8497536,41624510:231640 -k1,8462:10441632,41624510:231640 -k1,8462:13954004,41624510:231640 -k1,8462:17231757,41624510:231640 -k1,8462:18411048,41624510:231640 -k1,8462:22260931,41624510:231640 -k1,8462:23427114,41624510:231640 -k1,8462:24057213,41624510:231640 -k1,8462:26222820,41624510:231640 -k1,8462:27651147,41624510:231640 -k1,8462:30874506,41624510:231640 -k1,8462:31966991,41624510:0 -) -(1,8463:7246811,42465998:24720180,513147,134348 -k1,8462:7831485,42465998:228814 -k1,8462:11166051,42465998:228815 -k1,8462:12759980,42465998:228814 -k1,8462:13616629,42465998:228814 -k1,8462:15537583,42465998:228814 -k1,8462:17637451,42465998:228815 -k1,8462:18222125,42465998:228814 -k1,8462:22257270,42465998:228814 -k1,8462:23677530,42465998:228815 -k1,8462:26086727,42465998:228814 -k1,8462:27063307,42465998:228814 -k1,8462:28805347,42465998:228814 -k1,8462:30483818,42465998:228815 -k1,8462:31178593,42465998:228814 -k1,8462:31966991,42465998:0 -) -(1,8463:7246811,43307486:24720180,513147,126483 -k1,8462:9615555,43307486:230960 -k1,8462:10202375,43307486:230960 -k1,8462:12227711,43307486:230960 -k1,8462:13743176,43307486:230959 -k1,8462:16923911,43307486:230960 -k1,8462:17686368,43307486:230960 -k1,8462:20447018,43307486:230960 -k1,8462:21337270,43307486:230960 -k1,8462:24190981,43307486:230960 -k1,8462:26883472,43307486:230959 -k1,8462:29744392,43307486:230960 -k1,8462:31350953,43307486:230960 -k1,8462:31966991,43307486:0 -) -(1,8463:7246811,44148974:24720180,513147,126483 -k1,8462:8601494,44148974:197973 -k1,8462:11658148,44148974:197974 -k1,8462:13449957,44148974:197973 -k1,8462:15215552,44148974:197974 -k1,8462:16432610,44148974:197973 -k1,8462:17870524,44148974:197973 -k1,8462:21714266,44148974:197974 -k1,8462:22595124,44148974:197973 -k1,8462:25322788,44148974:197974 -k1,8462:26896362,44148974:197973 -k1,8462:28251046,44148974:197974 -k1,8462:31307699,44148974:197973 -k1,8462:31966991,44148974:0 -) -(1,8463:7246811,44990462:24720180,513147,126483 -g1,8462:10319794,44990462 -g1,8462:11050520,44990462 -g1,8462:11909041,44990462 -k1,8463:31966991,44990462:17234004 -g1,8463:31966991,44990462 -) -] -) -] -r1,8487:32583029,45706769:26214,39845888,0 -) -] -) -) -g1,8487:32583029,45116945 -) -] -(1,8487:32583029,45706769:0,0,0 -g1,8487:32583029,45706769 -) -) -] -(1,8487:6630773,47279633:25952256,0,0 -h1,8487:6630773,47279633:25952256,0,0 -) -] -(1,8487:4262630,4025873:0,0,0 -[1,8487:-473656,4025873:0,0,0 -(1,8487:-473656,-710413:0,0,0 -(1,8487:-473656,-710413:0,0,0 -g1,8487:-473656,-710413 -) -g1,8487:-473656,-710413 -) -] -) -] -!27336 -}161 -Input:1310:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1311:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1312:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1313:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1314:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1315:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1316:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1317:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1318:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1319:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1320:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1321:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1322:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1323:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1324:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1392 -{162 -[1,8511:4262630,47279633:28320399,43253760,0 -(1,8511:4262630,4025873:0,0,0 -[1,8511:-473656,4025873:0,0,0 -(1,8511:-473656,-710413:0,0,0 -(1,8511:-473656,-644877:0,0,0 -k1,8511:-473656,-644877:-65536 -) -(1,8511:-473656,4736287:0,0,0 -k1,8511:-473656,4736287:5209943 -) -g1,8511:-473656,-710413 -) -] -) -[1,8511:6630773,47279633:25952256,43253760,0 -[1,8511:6630773,4812305:25952256,786432,0 -(1,8511:6630773,4812305:25952256,505283,134348 -(1,8511:6630773,4812305:25952256,505283,134348 -g1,8511:3078558,4812305 -[1,8511:3078558,4812305:0,0,0 -(1,8511:3078558,2439708:0,1703936,0 -k1,8511:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,8511:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,8511:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,8511:3078558,4812305:0,0,0 -(1,8511:3078558,2439708:0,1703936,0 -g1,8511:29030814,2439708 -g1,8511:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,8511:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,8511:37855564,2439708:1179648,16384,0 -) -) -k1,8511:3078556,2439708:-34777008 -) -] -[1,8511:3078558,4812305:0,0,0 -(1,8511:3078558,49800853:0,16384,2228224 -k1,8511:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,8511:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,8511:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,8511:3078558,4812305:0,0,0 -(1,8511:3078558,49800853:0,16384,2228224 -g1,8511:29030814,49800853 -g1,8511:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,8511:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,8511:37855564,49800853:1179648,16384,0 -) -) -k1,8511:3078556,49800853:-34777008 -) -] -g1,8511:6630773,4812305 -g1,8511:6630773,4812305 -g1,8511:8843268,4812305 -g1,8511:10880782,4812305 -g1,8511:13281365,4812305 -k1,8511:31387653,4812305:18106288 -) -) -] -[1,8511:6630773,45706769:25952256,40108032,0 -(1,8511:6630773,45706769:25952256,40108032,0 -(1,8511:6630773,45706769:0,0,0 -g1,8511:6630773,45706769 -) -[1,8511:6630773,45706769:25952256,40108032,0 -v1,8487:6630773,6254097:0,393216,0 -(1,8487:6630773,16612236:25952256,10751355,616038 -g1,8487:6630773,16612236 -(1,8487:6630773,16612236:25952256,10751355,616038 -(1,8487:6630773,17228274:25952256,11367393,0 -[1,8487:6630773,17228274:25952256,11367393,0 -(1,8487:6630773,17202060:25952256,11341179,0 -r1,8511:6656987,17202060:26214,11341179,0 -[1,8487:6656987,17202060:25899828,11341179,0 -(1,8487:6656987,16612236:25899828,10161531,0 -[1,8487:7246811,16612236:24720180,10161531,0 -(1,8465:7246811,6963852:24720180,513147,126483 -h1,8464:7246811,6963852:983040,0,0 -k1,8464:9255338,6963852:196457 -k1,8464:12167607,6963852:196457 -k1,8464:13383148,6963852:196456 -k1,8464:15755400,6963852:196457 -k1,8464:16820209,6963852:196457 -k1,8464:18546932,6963852:196457 -k1,8464:19514091,6963852:196456 -k1,8464:22426360,6963852:196457 -k1,8464:23570468,6963852:196457 -k1,8464:24786010,6963852:196457 -k1,8464:28263198,6963852:196456 -k1,8464:29651100,6963852:196457 -k1,8464:30618260,6963852:196457 -k1,8465:31966991,6963852:0 -) -(1,8465:7246811,7805340:24720180,513147,134348 -g1,8464:9026113,7805340 -g1,8464:9884634,7805340 -g1,8464:11102948,7805340 -g1,8464:14145784,7805340 -g1,8464:15951956,7805340 -g1,8464:17098836,7805340 -g1,8464:18501306,7805340 -g1,8464:21416347,7805340 -g1,8464:22807021,7805340 -g1,8464:23794648,7805340 -g1,8464:26449511,7805340 -g1,8464:27308032,7805340 -k1,8465:31966991,7805340:1802245 -g1,8465:31966991,7805340 -) -v1,8467:7246811,8995806:0,393216,0 -(1,8473:7246811,10649550:24720180,2046960,196608 -g1,8473:7246811,10649550 -g1,8473:7246811,10649550 -g1,8473:7050203,10649550 -(1,8473:7050203,10649550:0,2046960,196608 -r1,8511:32163599,10649550:25113396,2243568,196608 -k1,8473:7050203,10649550:-25113396 -) -(1,8473:7050203,10649550:25113396,2046960,196608 -[1,8473:7246811,10649550:24720180,1850352,0 -(1,8469:7246811,9209716:24720180,410518,101187 -(1,8468:7246811,9209716:0,0,0 -g1,8468:7246811,9209716 -g1,8468:7246811,9209716 -g1,8468:6919131,9209716 -(1,8468:6919131,9209716:0,0,0 -) -g1,8468:7246811,9209716 -) -g1,8469:12305142,9209716 -g1,8469:13253580,9209716 -g1,8469:21789514,9209716 -h1,8469:25267117,9209716:0,0,0 -k1,8469:31966991,9209716:6699874 -g1,8469:31966991,9209716 -) -(1,8470:7246811,9875894:24720180,410518,101187 -h1,8470:7246811,9875894:0,0,0 -g1,8470:11356705,9875894 -g1,8470:12305143,9875894 -g1,8470:20841077,9875894 -g1,8470:22737951,9875894 -h1,8470:24950971,9875894:0,0,0 -k1,8470:31966991,9875894:7016020 -g1,8470:31966991,9875894 -) -(1,8471:7246811,10542072:24720180,410518,107478 -h1,8471:7246811,10542072:0,0,0 -g1,8471:13253579,10542072 -g1,8471:14202017,10542072 -k1,8471:14202017,10542072:0 -h1,8471:19892640,10542072:0,0,0 -k1,8471:31966991,10542072:12074351 -g1,8471:31966991,10542072 -) -] -) -g1,8473:31966991,10649550 -g1,8473:7246811,10649550 -g1,8473:7246811,10649550 -g1,8473:31966991,10649550 -g1,8473:31966991,10649550 -) -h1,8473:7246811,10846158:0,0,0 -(1,8477:7246811,12211934:24720180,513147,126483 -h1,8476:7246811,12211934:983040,0,0 -k1,8476:9559425,12211934:132887 -k1,8476:11379209,12211934:132887 -k1,8476:12043593,12211934:132887 -k1,8476:14031148,12211934:132886 -k1,8476:14973405,12211934:132887 -k1,8476:16125377,12211934:132887 -k1,8476:19444624,12211934:132887 -k1,8476:22212714,12211934:132887 -k1,8476:23364686,12211934:132887 -k1,8476:25177915,12211934:132886 -k1,8476:25970094,12211934:132887 -k1,8476:27122066,12211934:132887 -k1,8476:28494894,12211934:132887 -k1,8476:31966991,12211934:0 -) -(1,8477:7246811,13053422:24720180,505283,7863 -g1,8476:8637485,13053422 -g1,8476:9855799,13053422 -k1,8477:31966991,13053422:19221710 -g1,8477:31966991,13053422 -) -v1,8479:7246811,14243888:0,393216,0 -(1,8485:7246811,15891340:24720180,2040668,196608 -g1,8485:7246811,15891340 -g1,8485:7246811,15891340 -g1,8485:7050203,15891340 -(1,8485:7050203,15891340:0,2040668,196608 -r1,8511:32163599,15891340:25113396,2237276,196608 -k1,8485:7050203,15891340:-25113396 -) -(1,8485:7050203,15891340:25113396,2040668,196608 -[1,8485:7246811,15891340:24720180,1844060,0 -(1,8481:7246811,14451506:24720180,404226,101187 -(1,8480:7246811,14451506:0,0,0 -g1,8480:7246811,14451506 -g1,8480:7246811,14451506 -g1,8480:6919131,14451506 -(1,8480:6919131,14451506:0,0,0 -) -g1,8480:7246811,14451506 -) -g1,8481:10092122,14451506 -g1,8481:11040560,14451506 -h1,8481:11356706,14451506:0,0,0 -k1,8481:31966990,14451506:20610284 -g1,8481:31966990,14451506 -) -(1,8482:7246811,15117684:24720180,404226,101187 -h1,8482:7246811,15117684:0,0,0 -g1,8482:9775977,15117684 -g1,8482:10724415,15117684 -g1,8482:16098892,15117684 -g1,8482:16731184,15117684 -g1,8482:19892641,15117684 -g1,8482:20524933,15117684 -h1,8482:24318681,15117684:0,0,0 -k1,8482:31966991,15117684:7648310 -g1,8482:31966991,15117684 -) -(1,8483:7246811,15783862:24720180,410518,107478 -h1,8483:7246811,15783862:0,0,0 -g1,8483:9775977,15783862 -g1,8483:10724415,15783862 -g1,8483:14518163,15783862 -g1,8483:15466600,15783862 -g1,8483:16098892,15783862 -h1,8483:22105660,15783862:0,0,0 -k1,8483:31966991,15783862:9861331 -g1,8483:31966991,15783862 -) -] -) -g1,8485:31966991,15891340 -g1,8485:7246811,15891340 -g1,8485:7246811,15891340 -g1,8485:31966991,15891340 -g1,8485:31966991,15891340 -) -h1,8485:7246811,16087948:0,0,0 -] -) -] -r1,8511:32583029,17202060:26214,11341179,0 -) -] -) -) -g1,8487:32583029,16612236 -) -h1,8487:6630773,17228274:0,0,0 -v1,8490:6630773,18594050:0,393216,0 -(1,8493:6630773,22759666:25952256,4558832,616038 -g1,8493:6630773,22759666 -(1,8493:6630773,22759666:25952256,4558832,616038 -(1,8493:6630773,23375704:25952256,5174870,0 -[1,8493:6630773,23375704:25952256,5174870,0 -(1,8493:6630773,23349490:25952256,5122442,0 -r1,8511:6656987,23349490:26214,5122442,0 -[1,8493:6656987,23349490:25899828,5122442,0 -(1,8493:6656987,22759666:25899828,3942794,0 -[1,8493:7246811,22759666:24720180,3942794,0 -(1,8491:7246811,20100854:24720180,1283982,196608 -(1,8490:7246811,20100854:0,1283982,196608 -r1,8511:9812056,20100854:2565245,1480590,196608 -k1,8490:7246811,20100854:-2565245 -) -(1,8490:7246811,20100854:2565245,1283982,196608 -) -k1,8490:10024972,20100854:212916 -k1,8490:12181685,20100854:212915 -k1,8490:13679107,20100854:212916 -k1,8490:14911108,20100854:212916 -k1,8490:18379852,20100854:212915 -k1,8490:20448092,20100854:212916 -k1,8490:22704420,20100854:212915 -k1,8490:24311287,20100854:212916 -k1,8490:25543288,20100854:212916 -k1,8490:27914959,20100854:212915 -k1,8490:28795031,20100854:212916 -(1,8490:28795031,20100854:0,452978,115847 -r1,8511:31966991,20100854:3171960,568825,115847 -k1,8490:28795031,20100854:-3171960 -) -(1,8490:28795031,20100854:3171960,452978,115847 -k1,8490:28795031,20100854:3277 -h1,8490:31963714,20100854:0,411205,112570 -) -k1,8490:31966991,20100854:0 -) -(1,8491:7246811,20942342:24720180,513147,115847 -g1,8490:9144078,20942342 -g1,8490:10211659,20942342 -g1,8490:11345431,20942342 -(1,8490:11345431,20942342:0,452978,115847 -r1,8511:15924240,20942342:4578809,568825,115847 -k1,8490:11345431,20942342:-4578809 -) -(1,8490:11345431,20942342:4578809,452978,115847 -g1,8490:14514115,20942342 -g1,8490:15569251,20942342 -h1,8490:15920963,20942342:0,411205,112570 -) -g1,8490:16123469,20942342 -g1,8490:18649881,20942342 -g1,8490:19516266,20942342 -(1,8490:19516266,20942342:0,452978,115847 -r1,8511:24095075,20942342:4578809,568825,115847 -k1,8490:19516266,20942342:-4578809 -) -(1,8490:19516266,20942342:4578809,452978,115847 -g1,8490:22684950,20942342 -g1,8490:23740086,20942342 -h1,8490:24091798,20942342:0,411205,112570 -) -k1,8491:31966991,20942342:7698246 -g1,8491:31966991,20942342 -) -(1,8493:7246811,21783830:24720180,513147,134348 -h1,8492:7246811,21783830:983040,0,0 -k1,8492:10589912,21783830:154119 -k1,8492:11763116,21783830:154119 -k1,8492:14578651,21783830:154118 -k1,8492:15457598,21783830:154119 -k1,8492:16297879,21783830:154119 -k1,8492:17103426,21783830:154119 -k1,8492:18448990,21783830:154119 -k1,8492:21193747,21783830:154119 -k1,8492:22366950,21783830:154118 -k1,8492:25388269,21783830:154119 -k1,8492:26073885,21783830:154119 -k1,8492:30107735,21783830:154119 -k1,8492:31966991,21783830:0 -) -(1,8493:7246811,22625318:24720180,513147,134348 -g1,8492:8888487,22625318 -g1,8492:9486175,22625318 -g1,8492:11075423,22625318 -g1,8492:13080169,22625318 -g1,8492:13635258,22625318 -g1,8492:16924510,22625318 -k1,8493:31966991,22625318:13677366 -g1,8493:31966991,22625318 -) -] -) -] -r1,8511:32583029,23349490:26214,5122442,0 -) -] -) -) -g1,8493:32583029,22759666 -) -h1,8493:6630773,23375704:0,0,0 -(1,8496:6630773,24741480:25952256,513147,134348 -h1,8495:6630773,24741480:983040,0,0 -k1,8495:10158738,24741480:146963 -(1,8495:10158738,24741480:0,452978,115847 -r1,8511:13330698,24741480:3171960,568825,115847 -k1,8495:10158738,24741480:-3171960 -) -(1,8495:10158738,24741480:3171960,452978,115847 -k1,8495:10158738,24741480:3277 -h1,8495:13327421,24741480:0,411205,112570 -) -k1,8495:13477661,24741480:146963 -k1,8495:15047410,24741480:146962 -k1,8495:16213458,24741480:146963 -k1,8495:18072877,24741480:146963 -k1,8495:20207547,24741480:146963 -k1,8495:23034933,24741480:146963 -k1,8495:24575847,24741480:146963 -k1,8495:26006004,24741480:146962 -k1,8495:27542330,24741480:146963 -k1,8495:28636944,24741480:146963 -k1,8495:29802992,24741480:146963 -k1,8496:32583029,24741480:0 -) -(1,8496:6630773,25582968:25952256,505283,126483 -k1,8495:8269008,25582968:198409 -k1,8495:11309057,25582968:198408 -k1,8495:12158894,25582968:198409 -k1,8495:15145205,25582968:198409 -k1,8495:19127006,25582968:198408 -k1,8495:20143304,25582968:198409 -(1,8495:20143304,25582968:0,452978,115847 -r1,8511:23315264,25582968:3171960,568825,115847 -k1,8495:20143304,25582968:-3171960 -) -(1,8495:20143304,25582968:3171960,452978,115847 -k1,8495:20143304,25582968:3277 -h1,8495:23311987,25582968:0,411205,112570 -) -k1,8495:23513673,25582968:198409 -k1,8495:26090383,25582968:198408 -k1,8495:27571987,25582968:198409 -k1,8495:29159759,25582968:198409 -k1,8495:30044329,25582968:198408 -k1,8495:32124932,25582968:198409 -k1,8495:32583029,25582968:0 -) -(1,8496:6630773,26424456:25952256,513147,126483 -k1,8495:8851132,26424456:208404 -k1,8495:13211898,26424456:208405 -k1,8495:14611747,26424456:208404 -k1,8495:19077370,26424456:208404 -k1,8495:19937203,26424456:208405 -k1,8495:22156252,26424456:208404 -k1,8495:23023948,26424456:208404 -k1,8495:24251437,26424456:208404 -k1,8495:28466713,26424456:208405 -k1,8495:31516758,26424456:208404 -k1,8495:32583029,26424456:0 -) -(1,8496:6630773,27265944:25952256,513147,134348 -k1,8495:9267243,27265944:230643 -k1,8495:10113924,27265944:230643 -k1,8495:11363652,27265944:230643 -k1,8495:14029612,27265944:230642 -k1,8495:15823289,27265944:230643 -k1,8495:16681767,27265944:230643 -k1,8495:17931495,27265944:230643 -k1,8495:19529219,27265944:230643 -k1,8495:20419154,27265944:230643 -k1,8495:21667571,27265944:230643 -k1,8495:22557506,27265944:230643 -k1,8495:24813866,27265944:230642 -k1,8495:26235954,27265944:230643 -k1,8495:28158737,27265944:230643 -k1,8495:30091350,27265944:230643 -k1,8495:32583029,27265944:0 -) -(1,8496:6630773,28107432:25952256,513147,126483 -k1,8495:9348251,28107432:263155 -(1,8495:9348251,28107432:0,452978,115847 -r1,8511:12520211,28107432:3171960,568825,115847 -k1,8495:9348251,28107432:-3171960 -) -(1,8495:9348251,28107432:3171960,452978,115847 -k1,8495:9348251,28107432:3277 -h1,8495:12516934,28107432:0,411205,112570 -) -k1,8495:12783367,28107432:263156 -k1,8495:15561138,28107432:263155 -k1,8495:16440331,28107432:263155 -k1,8495:19369491,28107432:263155 -k1,8495:20284075,28107432:263156 -k1,8495:21566315,28107432:263155 -k1,8495:25282562,28107432:263155 -k1,8495:28591830,28107432:263155 -k1,8495:29514278,28107432:263156 -k1,8495:30796518,28107432:263155 -k1,8496:32583029,28107432:0 -) -(1,8496:6630773,28948920:25952256,513147,126483 -k1,8495:8737201,28948920:242584 -k1,8495:11189659,28948920:242584 -k1,8495:14711665,28948920:242584 -k1,8495:17885019,28948920:242584 -k1,8495:19324290,28948920:242584 -k1,8495:20850069,28948920:242584 -k1,8495:22482016,28948920:242584 -k1,8495:24346616,28948920:242584 -k1,8495:25336966,28948920:242584 -k1,8495:27617720,28948920:242584 -k1,8495:28476342,28948920:242584 -k1,8495:29074786,28948920:242584 -k1,8495:30706733,28948920:242584 -k1,8495:32583029,28948920:0 -) -(1,8496:6630773,29790408:25952256,513147,134348 -k1,8495:8261964,29790408:237240 -k1,8495:11212395,29790408:237240 -k1,8495:13185029,29790408:237241 -k1,8495:14441354,29790408:237240 -k1,8495:16332067,29790408:237240 -k1,8495:18637623,29790408:237240 -k1,8495:19822515,29790408:237241 -k1,8495:21078840,29790408:237240 -k1,8495:25081779,29790408:237240 -k1,8495:28160660,29790408:237240 -k1,8495:29084063,29790408:237241 -k1,8495:29937341,29790408:237240 -k1,8495:31193666,29790408:237240 -k1,8495:32583029,29790408:0 -) -(1,8496:6630773,30631896:25952256,513147,126483 -k1,8495:8440221,30631896:296222 -k1,8495:9684095,30631896:296223 -k1,8495:10999402,30631896:296222 -k1,8495:12156768,30631896:296223 -k1,8495:12808850,30631896:296222 -k1,8495:15978827,30631896:296223 -k1,8495:18786389,30631896:296222 -k1,8495:19614109,30631896:296223 -k1,8495:20976602,30631896:296222 -k1,8495:23571173,30631896:296223 -k1,8495:25058840,30631896:296222 -k1,8495:28582056,30631896:296223 -k1,8495:31591469,30631896:296222 -k1,8495:32583029,30631896:0 -) -(1,8496:6630773,31473384:25952256,505283,134348 -k1,8495:9500431,31473384:254771 -k1,8495:11158983,31473384:254771 -k1,8495:15179453,31473384:254771 -k1,8495:18275865,31473384:254771 -k1,8495:19146674,31473384:254771 -k1,8495:20420531,31473384:254772 -k1,8495:21958497,31473384:254771 -k1,8495:23602631,31473384:254771 -k1,8495:24961684,31473384:254771 -k1,8495:25964221,31473384:254771 -k1,8495:28074972,31473384:254771 -k1,8495:31900144,31473384:254771 -k1,8495:32583029,31473384:0 -) -(1,8496:6630773,32314872:25952256,513147,134348 -g1,8495:9227964,32314872 -g1,8495:10499362,32314872 -g1,8495:12078779,32314872 -g1,8495:13900024,32314872 -g1,8495:16080406,32314872 -g1,8495:16895673,32314872 -g1,8495:18298143,32314872 -g1,8495:20821934,32314872 -g1,8495:22765076,32314872 -g1,8495:23580343,32314872 -g1,8495:24798657,32314872 -g1,8495:27433204,32314872 -k1,8496:32583029,32314872:3379698 -g1,8496:32583029,32314872 -) -v1,8498:6630773,33680648:0,393216,0 -(1,8499:6630773,37838399:25952256,4550967,616038 -g1,8499:6630773,37838399 -(1,8499:6630773,37838399:25952256,4550967,616038 -(1,8499:6630773,38454437:25952256,5167005,0 -[1,8499:6630773,38454437:25952256,5167005,0 -(1,8499:6630773,38428223:25952256,5114577,0 -r1,8511:6656987,38428223:26214,5114577,0 -[1,8499:6656987,38428223:25899828,5114577,0 -(1,8499:6656987,37838399:25899828,3934929,0 -[1,8499:7246811,37838399:24720180,3934929,0 -(1,8499:7246811,35187452:24720180,1283982,196608 -(1,8498:7246811,35187452:0,1283982,196608 -r1,8511:9812056,35187452:2565245,1480590,196608 -k1,8498:7246811,35187452:-2565245 -) -(1,8498:7246811,35187452:2565245,1283982,196608 -) -k1,8498:10117057,35187452:305001 -k1,8498:12645694,35187452:305000 -k1,8498:14686088,35187452:305001 -k1,8498:16457784,35187452:305000 -(1,8498:16457784,35187452:0,459977,115847 -r1,8511:17519473,35187452:1061689,575824,115847 -k1,8498:16457784,35187452:-1061689 -) -(1,8498:16457784,35187452:1061689,459977,115847 -k1,8498:16457784,35187452:3277 -h1,8498:17516196,35187452:0,411205,112570 -) -k1,8498:17824474,35187452:305001 -k1,8498:19320920,35187452:305001 -(1,8498:19320920,35187452:0,459977,115847 -r1,8511:20382609,35187452:1061689,575824,115847 -k1,8498:19320920,35187452:-1061689 -) -(1,8498:19320920,35187452:1061689,459977,115847 -k1,8498:19320920,35187452:3277 -h1,8498:20379332,35187452:0,411205,112570 -) -k1,8498:20687609,35187452:305000 -k1,8498:22011695,35187452:305001 -k1,8498:24977457,35187452:305000 -k1,8498:27994993,35187452:305001 -k1,8498:28951421,35187452:305000 -k1,8498:30658892,35187452:305001 -k1,8498:31966991,35187452:0 -) -(1,8499:7246811,36028940:24720180,513147,134348 -k1,8498:9866367,36028940:257638 -k1,8498:10736768,36028940:257639 -k1,8498:11566535,36028940:257638 -k1,8498:12396302,36028940:257638 -k1,8498:13624529,36028940:257639 -k1,8498:14852755,36028940:257638 -k1,8498:16080981,36028940:257638 -k1,8498:17530065,36028940:257639 -k1,8498:18584621,36028940:257638 -k1,8498:20471484,36028940:257638 -k1,8498:22537916,36028940:257638 -k1,8498:23814640,36028940:257639 -k1,8498:25460331,36028940:257638 -k1,8498:27216122,36028940:257638 -k1,8498:28421412,36028940:257639 -k1,8498:29698135,36028940:257638 -k1,8498:31966991,36028940:0 -) -(1,8499:7246811,36870428:24720180,513147,134348 -k1,8498:9886913,36870428:185779 -k1,8498:11020343,36870428:185779 -k1,8498:13018848,36870428:185779 -k1,8498:15522635,36870428:185779 -k1,8498:17650901,36870428:185779 -(1,8498:17650901,36870428:0,452978,115847 -r1,8511:23284844,36870428:5633943,568825,115847 -k1,8498:17650901,36870428:-5633943 -) -(1,8498:17650901,36870428:5633943,452978,115847 -k1,8498:17650901,36870428:3277 -h1,8498:23281567,36870428:0,411205,112570 -) -k1,8498:23851387,36870428:185779 -k1,8498:26429230,36870428:185779 -k1,8498:27634094,36870428:185779 -k1,8498:31006233,36870428:185779 -k1,8499:31966991,36870428:0 -) -(1,8499:7246811,37711916:24720180,513147,126483 -g1,8498:9333477,37711916 -(1,8498:9333477,37711916:0,452978,115847 -r1,8511:13560573,37711916:4227096,568825,115847 -k1,8498:9333477,37711916:-4227096 -) -(1,8498:9333477,37711916:4227096,452978,115847 -k1,8498:9333477,37711916:3277 -h1,8498:13557296,37711916:0,411205,112570 -) -g1,8498:13759802,37711916 -g1,8498:15150476,37711916 -(1,8498:15150476,37711916:0,459977,115847 -r1,8511:19377572,37711916:4227096,575824,115847 -k1,8498:15150476,37711916:-4227096 -) -(1,8498:15150476,37711916:4227096,459977,115847 -k1,8498:15150476,37711916:3277 -h1,8498:19374295,37711916:0,411205,112570 -) -g1,8498:19576801,37711916 -g1,8498:21871871,37711916 -g1,8498:23368058,37711916 -g1,8498:24558847,37711916 -g1,8498:26138264,37711916 -g1,8498:27062321,37711916 -k1,8499:31966991,37711916:1815303 -g1,8499:31966991,37711916 -) -] -) -] -r1,8511:32583029,38428223:26214,5114577,0 -) -] -) -) -g1,8499:32583029,37838399 -) -h1,8499:6630773,38454437:0,0,0 -(1,8501:6630773,40545697:25952256,564462,139132 -(1,8501:6630773,40545697:2450326,534184,0 -g1,8501:6630773,40545697 -g1,8501:9081099,40545697 -) -g1,8501:12446963,40545697 -g1,8501:13416569,40545697 -g1,8501:16941751,40545697 -k1,8501:32583029,40545697:12800227 -g1,8501:32583029,40545697 -) -(1,8507:6630773,41780401:25952256,505283,134348 -k1,8505:7789750,41780401:205428 -k1,8505:9087664,41780401:205429 -k1,8505:10690975,41780401:205428 -k1,8505:11915488,41780401:205428 -(1,8505:11915488,41780401:0,414482,115847 -r1,8511:16142584,41780401:4227096,530329,115847 -k1,8505:11915488,41780401:-4227096 -) -(1,8505:11915488,41780401:4227096,414482,115847 -k1,8505:11915488,41780401:3277 -h1,8505:16139307,41780401:0,411205,112570 -) -k1,8505:16348013,41780401:205429 -k1,8505:17942804,41780401:205428 -k1,8505:19256446,41780401:205428 -k1,8505:21384700,41780401:205428 -k1,8505:23474289,41780401:205429 -k1,8505:25824710,41780401:205428 -k1,8505:26646176,41780401:205428 -k1,8505:28459203,41780401:205429 -k1,8505:31189078,41780401:205428 -k1,8505:32583029,41780401:0 -) -(1,8507:6630773,42621889:25952256,513147,115847 -g1,8505:9592345,42621889 -g1,8505:13683757,42621889 -g1,8505:14510821,42621889 -g1,8505:16406777,42621889 -g1,8505:18169040,42621889 -(1,8505:18169040,42621889:0,414482,115847 -r1,8511:19934153,42621889:1765113,530329,115847 -k1,8505:18169040,42621889:-1765113 -) -(1,8505:18169040,42621889:1765113,414482,115847 -k1,8505:18169040,42621889:3277 -h1,8505:19930876,42621889:0,411205,112570 -) -g1,8505:20133382,42621889 -g1,8505:20864108,42621889 -g1,8505:21419197,42621889 -g1,8505:23512416,42621889 -g1,8505:25105596,42621889 -g1,8505:26201358,42621889 -k1,8507:32583029,42621889:4415591 -g1,8507:32583029,42621889 -) -(1,8509:6630773,43463377:25952256,513147,134348 -h1,8508:6630773,43463377:983040,0,0 -k1,8508:9011084,43463377:200584 -k1,8508:10311362,43463377:200584 -k1,8508:11043443,43463377:200584 -k1,8508:13468973,43463377:200583 -k1,8508:14688642,43463377:200584 -k1,8508:16542699,43463377:200584 -k1,8508:17429445,43463377:200584 -k1,8508:18649114,43463377:200584 -k1,8508:20006408,43463377:200584 -k1,8508:21154643,43463377:200584 -k1,8508:23167953,43463377:200584 -k1,8508:26858983,43463377:200583 -k1,8508:28435168,43463377:200584 -k1,8508:29654837,43463377:200584 -k1,8508:31923737,43463377:200584 -k1,8508:32583029,43463377:0 -) -(1,8509:6630773,44304865:25952256,513147,11795 -k1,8508:7824788,44304865:174930 -k1,8508:10841360,44304865:174931 -k1,8508:12207735,44304865:174930 -k1,8508:13772029,44304865:174931 -k1,8508:15823255,44304865:174930 -k1,8508:16989746,44304865:174931 -k1,8508:20100689,44304865:174930 -k1,8508:21909433,44304865:174931 -k1,8508:25658697,44304865:174930 -k1,8508:27118134,44304865:174931 -k1,8508:28496305,44304865:174930 -k1,8508:29202733,44304865:174931 -k1,8508:30148366,44304865:174930 -k1,8508:32583029,44304865:0 -) -(1,8509:6630773,45146353:25952256,505283,126483 -g1,8508:7361499,45146353 -g1,8508:8845234,45146353 -(1,8508:8845234,45146353:0,414482,115847 -r1,8511:10610347,45146353:1765113,530329,115847 -k1,8508:8845234,45146353:-1765113 -) -(1,8508:8845234,45146353:1765113,414482,115847 -k1,8508:8845234,45146353:3277 -h1,8508:10607070,45146353:0,411205,112570 -) -g1,8508:10983246,45146353 -g1,8508:12201560,45146353 -g1,8508:16166488,45146353 -g1,8508:19050727,45146353 -g1,8508:19781453,45146353 -g1,8508:20336542,45146353 -(1,8508:20336542,45146353:0,459977,115847 -r1,8511:22453367,45146353:2116825,575824,115847 -k1,8508:20336542,45146353:-2116825 -) -(1,8508:20336542,45146353:2116825,459977,115847 -k1,8508:20336542,45146353:3277 -h1,8508:22450090,45146353:0,411205,112570 -) -k1,8509:32583029,45146353:9955992 -g1,8509:32583029,45146353 -) -] -(1,8511:32583029,45706769:0,0,0 -g1,8511:32583029,45706769 -) -) -] -(1,8511:6630773,47279633:25952256,0,0 -h1,8511:6630773,47279633:25952256,0,0 -) -] -(1,8511:4262630,4025873:0,0,0 -[1,8511:-473656,4025873:0,0,0 -(1,8511:-473656,-710413:0,0,0 -(1,8511:-473656,-710413:0,0,0 -g1,8511:-473656,-710413 -) -g1,8511:-473656,-710413 -) -] -) -] -!24648 -}162 -Input:1325:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1326:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1327:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1328:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1329:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1330:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!564 -{163 -[1,8581:4262630,47279633:28320399,43253760,0 -(1,8581:4262630,4025873:0,0,0 -[1,8581:-473656,4025873:0,0,0 -(1,8581:-473656,-710413:0,0,0 -(1,8581:-473656,-644877:0,0,0 -k1,8581:-473656,-644877:-65536 -) -(1,8581:-473656,4736287:0,0,0 -k1,8581:-473656,4736287:5209943 -) -g1,8581:-473656,-710413 -) -] -) -[1,8581:6630773,47279633:25952256,43253760,0 -[1,8581:6630773,4812305:25952256,786432,0 -(1,8581:6630773,4812305:25952256,505283,134348 -(1,8581:6630773,4812305:25952256,505283,134348 -g1,8581:3078558,4812305 -[1,8581:3078558,4812305:0,0,0 -(1,8581:3078558,2439708:0,1703936,0 -k1,8581:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,8581:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,8581:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,8581:3078558,4812305:0,0,0 -(1,8581:3078558,2439708:0,1703936,0 -g1,8581:29030814,2439708 -g1,8581:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,8581:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,8581:37855564,2439708:1179648,16384,0 -) -) -k1,8581:3078556,2439708:-34777008 -) -] -[1,8581:3078558,4812305:0,0,0 -(1,8581:3078558,49800853:0,16384,2228224 -k1,8581:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,8581:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,8581:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,8581:3078558,4812305:0,0,0 -(1,8581:3078558,49800853:0,16384,2228224 -g1,8581:29030814,49800853 -g1,8581:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,8581:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,8581:37855564,49800853:1179648,16384,0 -) -) -k1,8581:3078556,49800853:-34777008 -) -] -g1,8581:6630773,4812305 -k1,8581:24502442,4812305:16676292 -g1,8581:25889183,4812305 -g1,8581:26537989,4812305 -g1,8581:29852144,4812305 -) -) -] -[1,8581:6630773,45706769:25952256,40108032,0 -(1,8581:6630773,45706769:25952256,40108032,0 -(1,8581:6630773,45706769:0,0,0 -g1,8581:6630773,45706769 -) -[1,8581:6630773,45706769:25952256,40108032,0 -v1,8511:6630773,6254097:0,393216,0 -(1,8531:6630773,12042132:25952256,6181251,196608 -g1,8531:6630773,12042132 -g1,8531:6630773,12042132 -g1,8531:6434165,12042132 -(1,8531:6434165,12042132:0,6181251,196608 -r1,8581:32779637,12042132:26345472,6377859,196608 -k1,8531:6434165,12042132:-26345472 -) -(1,8531:6434165,12042132:26345472,6181251,196608 -[1,8531:6630773,12042132:25952256,5984643,0 -(1,8513:6630773,6461715:25952256,404226,101187 -(1,8512:6630773,6461715:0,0,0 -g1,8512:6630773,6461715 -g1,8512:6630773,6461715 -g1,8512:6303093,6461715 -(1,8512:6303093,6461715:0,0,0 -) -g1,8512:6630773,6461715 -) -k1,8513:6630773,6461715:0 -h1,8513:12321396,6461715:0,0,0 -k1,8513:32583028,6461715:20261632 -g1,8513:32583028,6461715 -) -(1,8514:6630773,7127893:25952256,410518,101187 -h1,8514:6630773,7127893:0,0,0 -k1,8514:6630773,7127893:0 -h1,8514:16115144,7127893:0,0,0 -k1,8514:32583029,7127893:16467885 -g1,8514:32583029,7127893 -) -(1,8518:6630773,7859607:25952256,404226,76021 -(1,8516:6630773,7859607:0,0,0 -g1,8516:6630773,7859607 -g1,8516:6630773,7859607 -g1,8516:6303093,7859607 -(1,8516:6303093,7859607:0,0,0 -) -g1,8516:6630773,7859607 -) -g1,8518:7579210,7859607 -g1,8518:8843793,7859607 -h1,8518:10424521,7859607:0,0,0 -k1,8518:32583029,7859607:22158508 -g1,8518:32583029,7859607 -) -(1,8520:6630773,9181145:25952256,410518,101187 -(1,8519:6630773,9181145:0,0,0 -g1,8519:6630773,9181145 -g1,8519:6630773,9181145 -g1,8519:6303093,9181145 -(1,8519:6303093,9181145:0,0,0 -) -g1,8519:6630773,9181145 -) -k1,8520:6630773,9181145:0 -h1,8520:15798998,9181145:0,0,0 -k1,8520:32583030,9181145:16784032 -g1,8520:32583030,9181145 -) -(1,8524:6630773,9912859:25952256,404226,76021 -(1,8522:6630773,9912859:0,0,0 -g1,8522:6630773,9912859 -g1,8522:6630773,9912859 -g1,8522:6303093,9912859 -(1,8522:6303093,9912859:0,0,0 -) -g1,8522:6630773,9912859 -) -g1,8524:7579210,9912859 -g1,8524:8843793,9912859 -h1,8524:10108376,9912859:0,0,0 -k1,8524:32583028,9912859:22474652 -g1,8524:32583028,9912859 -) -(1,8526:6630773,11234397:25952256,410518,101187 -(1,8525:6630773,11234397:0,0,0 -g1,8525:6630773,11234397 -g1,8525:6630773,11234397 -g1,8525:6303093,11234397 -(1,8525:6303093,11234397:0,0,0 -) -g1,8525:6630773,11234397 -) -k1,8526:6630773,11234397:0 -h1,8526:14850561,11234397:0,0,0 -k1,8526:32583029,11234397:17732468 -g1,8526:32583029,11234397 -) -(1,8530:6630773,11966111:25952256,404226,76021 -(1,8528:6630773,11966111:0,0,0 -g1,8528:6630773,11966111 -g1,8528:6630773,11966111 -g1,8528:6303093,11966111 -(1,8528:6303093,11966111:0,0,0 -) -g1,8528:6630773,11966111 -) -g1,8530:7579210,11966111 -g1,8530:8843793,11966111 -g1,8530:10108376,11966111 -g1,8530:11372959,11966111 -g1,8530:12637542,11966111 -g1,8530:13902125,11966111 -g1,8530:15166708,11966111 -h1,8530:16115145,11966111:0,0,0 -k1,8530:32583029,11966111:16467884 -g1,8530:32583029,11966111 -) -] -) -g1,8531:32583029,12042132 -g1,8531:6630773,12042132 -g1,8531:6630773,12042132 -g1,8531:32583029,12042132 -g1,8531:32583029,12042132 -) -h1,8531:6630773,12238740:0,0,0 -(1,8535:6630773,13420016:25952256,513147,134348 -h1,8534:6630773,13420016:983040,0,0 -k1,8534:8740751,13420016:173389 -k1,8534:9601614,13420016:173390 -k1,8534:10794088,13420016:173389 -k1,8534:12955185,13420016:173390 -k1,8534:13744612,13420016:173389 -k1,8534:16142949,13420016:173390 -k1,8534:17335423,13420016:173389 -k1,8534:19162286,13420016:173390 -k1,8534:20573650,13420016:173389 -k1,8534:21433202,13420016:173390 -k1,8534:22554242,13420016:173389 -k1,8534:24540358,13420016:173390 -k1,8534:28204194,13420016:173389 -k1,8534:29396669,13420016:173390 -k1,8534:32583029,13420016:0 -) -(1,8535:6630773,14261504:25952256,513147,134348 -k1,8534:7392383,14261504:230113 -k1,8534:8907003,14261504:230114 -k1,8534:10005468,14261504:230113 -k1,8534:11328067,14261504:230114 -k1,8534:11914040,14261504:230113 -k1,8534:14038143,14261504:230113 -k1,8534:14954419,14261504:230114 -k1,8534:16203617,14261504:230113 -k1,8534:20199429,14261504:230113 -k1,8534:23114553,14261504:230114 -k1,8534:24104884,14261504:230113 -k1,8534:26070391,14261504:230114 -k1,8534:26656364,14261504:230113 -k1,8534:28780467,14261504:230113 -k1,8534:31337764,14261504:230114 -k1,8534:32227169,14261504:230113 -k1,8534:32583029,14261504:0 -) -(1,8535:6630773,15102992:25952256,513147,126483 -g1,8534:9450131,15102992 -g1,8534:11800907,15102992 -g1,8534:12355996,15102992 -g1,8534:15317568,15102992 -g1,8534:17504504,15102992 -g1,8534:19791055,15102992 -g1,8534:20521781,15102992 -g1,8534:22199502,15102992 -g1,8534:23966352,15102992 -g1,8534:24936284,15102992 -g1,8534:28440494,15102992 -k1,8535:32583029,15102992:1425412 -g1,8535:32583029,15102992 -) -v1,8537:6630773,16108958:0,393216,0 -(1,8541:6630773,16424055:25952256,708313,196608 -g1,8541:6630773,16424055 -g1,8541:6630773,16424055 -g1,8541:6434165,16424055 -(1,8541:6434165,16424055:0,708313,196608 -r1,8581:32779637,16424055:26345472,904921,196608 -k1,8541:6434165,16424055:-26345472 -) -(1,8541:6434165,16424055:26345472,708313,196608 -[1,8541:6630773,16424055:25952256,511705,0 -(1,8539:6630773,16322868:25952256,410518,101187 -(1,8538:6630773,16322868:0,0,0 -g1,8538:6630773,16322868 -g1,8538:6630773,16322868 -g1,8538:6303093,16322868 -(1,8538:6303093,16322868:0,0,0 -) -g1,8538:6630773,16322868 -) -g1,8539:7895356,16322868 -g1,8539:8843794,16322868 -g1,8539:11689105,16322868 -g1,8539:12321397,16322868 -g1,8539:14534417,16322868 -g1,8539:16115146,16322868 -g1,8539:16747438,16322868 -h1,8539:20857332,16322868:0,0,0 -k1,8539:32583029,16322868:11725697 -g1,8539:32583029,16322868 -) -] -) -g1,8541:32583029,16424055 -g1,8541:6630773,16424055 -g1,8541:6630773,16424055 -g1,8541:32583029,16424055 -g1,8541:32583029,16424055 -) -h1,8541:6630773,16620663:0,0,0 -(1,8545:6630773,17801939:25952256,513147,134348 -h1,8544:6630773,17801939:983040,0,0 -g1,8544:11178971,17801939 -g1,8544:12985798,17801939 -g1,8544:14176587,17801939 -g1,8544:17167650,17801939 -g1,8544:17982917,17801939 -g1,8544:19201231,17801939 -g1,8544:21053933,17801939 -g1,8544:22491137,17801939 -g1,8544:23376528,17801939 -g1,8544:24523408,17801939 -g1,8544:26535363,17801939 -k1,8545:32583029,17801939:2557219 -g1,8545:32583029,17801939 -) -v1,8547:6630773,18807906:0,393216,0 -(1,8551:6630773,19123003:25952256,708313,196608 -g1,8551:6630773,19123003 -g1,8551:6630773,19123003 -g1,8551:6434165,19123003 -(1,8551:6434165,19123003:0,708313,196608 -r1,8581:32779637,19123003:26345472,904921,196608 -k1,8551:6434165,19123003:-26345472 -) -(1,8551:6434165,19123003:26345472,708313,196608 -[1,8551:6630773,19123003:25952256,511705,0 -(1,8549:6630773,19021816:25952256,410518,101187 -(1,8548:6630773,19021816:0,0,0 -g1,8548:6630773,19021816 -g1,8548:6630773,19021816 -g1,8548:6303093,19021816 -(1,8548:6303093,19021816:0,0,0 -) -g1,8548:6630773,19021816 -) -k1,8549:6630773,19021816:0 -g1,8549:9792231,19021816 -g1,8549:11689105,19021816 -g1,8549:12321397,19021816 -h1,8549:12953689,19021816:0,0,0 -k1,8549:32583029,19021816:19629340 -g1,8549:32583029,19021816 -) -] -) -g1,8551:32583029,19123003 -g1,8551:6630773,19123003 -g1,8551:6630773,19123003 -g1,8551:32583029,19123003 -g1,8551:32583029,19123003 -) -h1,8551:6630773,19319611:0,0,0 -(1,8554:6630773,33738919:25952256,14013984,0 -k1,8554:12599879,33738919:5969106 -h1,8553:12599879,33738919:0,0,0 -(1,8553:12599879,33738919:14014044,14013984,0 -(1,8553:12599879,33738919:14014019,14014019,0 -(1,8553:12599879,33738919:14014019,14014019,0 -(1,8553:12599879,33738919:0,14014019,0 -(1,8553:12599879,33738919:0,18945146,0 -(1,8553:12599879,33738919:18945146,18945146,0 -) -k1,8553:12599879,33738919:-18945146 -) -) -g1,8553:26613898,33738919 -) -) -) -g1,8554:26613923,33738919 -k1,8554:32583029,33738919:5969106 -) -(1,8561:6630773,34580407:25952256,505283,134348 -h1,8560:6630773,34580407:983040,0,0 -k1,8560:8524492,34580407:282844 -k1,8560:11241914,34580407:282759 -k1,8560:12393110,34580407:282844 -k1,8560:13667514,34580407:282844 -k1,8560:16108458,34580407:282843 -k1,8560:19602566,34580407:282844 -k1,8560:20501448,34580407:282844 -k1,8560:22965985,34580407:282843 -k1,8560:27040742,34580407:282844 -k1,8560:28515030,34580407:282843 -(1,8560:28515030,34580407:0,452978,115847 -r1,8581:30983567,34580407:2468537,568825,115847 -k1,8560:28515030,34580407:-2468537 -) -(1,8560:28515030,34580407:2468537,452978,115847 -k1,8560:28515030,34580407:3277 -h1,8560:30980290,34580407:0,411205,112570 -) -k1,8560:31266411,34580407:282844 -k1,8561:32583029,34580407:0 -) -(1,8561:6630773,35421895:25952256,505283,134348 -k1,8560:8515587,35421895:228064 -k1,8560:9762735,35421895:228063 -k1,8560:11592499,35421895:228064 -k1,8560:15253994,35421895:228064 -k1,8560:17814483,35421895:228063 -k1,8560:20832415,35421895:228064 -(1,8560:20832415,35421895:0,452978,115847 -r1,8581:24004375,35421895:3171960,568825,115847 -k1,8560:20832415,35421895:-3171960 -) -(1,8560:20832415,35421895:3171960,452978,115847 -k1,8560:20832415,35421895:3277 -h1,8560:24001098,35421895:0,411205,112570 -) -k1,8560:24232439,35421895:228064 -k1,8560:25564784,35421895:228063 -k1,8560:26540614,35421895:228064 -k1,8560:28281904,35421895:228064 -k1,8560:29161395,35421895:228063 -k1,8560:31593435,35421895:228064 -k1,8561:32583029,35421895:0 -) -(1,8561:6630773,36263383:25952256,513147,138281 -k1,8560:9330201,36263383:195297 -k1,8560:12745282,36263383:195297 -k1,8560:14137266,36263383:195297 -k1,8560:16598143,36263383:195297 -k1,8560:19755012,36263383:195297 -k1,8560:21141754,36263383:195297 -k1,8560:25960616,36263383:195297 -$1,8560:25960616,36263383 -$1,8560:26428543,36263383 -k1,8560:28847477,36263383:195297 -k1,8560:31821501,36263383:195297 -k1,8561:32583029,36263383:0 -) -(1,8561:6630773,37104871:25952256,513147,126483 -(1,8560:6630773,37104871:0,452978,115847 -r1,8581:9802733,37104871:3171960,568825,115847 -k1,8560:6630773,37104871:-3171960 -) -(1,8560:6630773,37104871:3171960,452978,115847 -k1,8560:6630773,37104871:3277 -h1,8560:9799456,37104871:0,411205,112570 -) -k1,8560:10060742,37104871:258009 -k1,8560:11510196,37104871:258009 -k1,8560:15386448,37104871:258009 -k1,8560:16928962,37104871:258008 -k1,8560:18662186,37104871:258009 -k1,8560:20392789,37104871:258009 -k1,8560:21333683,37104871:258009 -k1,8560:22401062,37104871:258009 -k1,8560:24507186,37104871:258009 -k1,8560:27208376,37104871:258008 -k1,8560:28082423,37104871:258009 -k1,8560:29111135,37104871:258009 -k1,8560:31923737,37104871:258009 -k1,8560:32583029,37104871:0 -) -(1,8561:6630773,37946359:25952256,505283,134348 -k1,8560:9703943,37946359:245291 -k1,8560:12739101,37946359:245290 -(1,8560:12739101,37946359:0,452978,115847 -r1,8581:14504214,37946359:1765113,568825,115847 -k1,8560:12739101,37946359:-1765113 -) -(1,8560:12739101,37946359:1765113,452978,115847 -k1,8560:12739101,37946359:3277 -h1,8560:14500937,37946359:0,411205,112570 -) -k1,8560:14749505,37946359:245291 -k1,8560:15526292,37946359:245290 -k1,8560:16127443,37946359:245291 -k1,8560:19015145,37946359:245290 -k1,8560:20069806,37946359:245291 -(1,8560:20069806,37946359:0,452978,115847 -r1,8581:21483207,37946359:1413401,568825,115847 -k1,8560:20069806,37946359:-1413401 -) -(1,8560:20069806,37946359:1413401,452978,115847 -k1,8560:20069806,37946359:3277 -h1,8560:21479930,37946359:0,411205,112570 -) -k1,8560:21728497,37946359:245290 -k1,8560:23258294,37946359:245291 -k1,8560:25844530,37946359:245290 -k1,8560:26860524,37946359:245291 -k1,8560:29065340,37946359:245290 -k1,8560:30595137,37946359:245291 -k1,8560:31601955,37946359:245290 -k1,8561:32583029,37946359:0 -) -(1,8561:6630773,38787847:25952256,513147,126483 -g1,8560:8327500,38787847 -g1,8560:10224767,38787847 -g1,8560:12774117,38787847 -g1,8560:15598718,38787847 -g1,8560:16817032,38787847 -g1,8560:19175017,38787847 -g1,8560:20041402,38787847 -(1,8560:20041402,38787847:0,452978,115847 -r1,8581:22509939,38787847:2468537,568825,115847 -k1,8560:20041402,38787847:-2468537 -) -(1,8560:20041402,38787847:2468537,452978,115847 -k1,8560:20041402,38787847:3277 -h1,8560:22506662,38787847:0,411205,112570 -) -k1,8561:32583029,38787847:9899420 -g1,8561:32583029,38787847 -) -v1,8563:6630773,39793813:0,393216,0 -(1,8577:6630773,45510161:25952256,6109564,196608 -g1,8577:6630773,45510161 -g1,8577:6630773,45510161 -g1,8577:6434165,45510161 -(1,8577:6434165,45510161:0,6109564,196608 -r1,8581:32779637,45510161:26345472,6306172,196608 -k1,8577:6434165,45510161:-26345472 -) -(1,8577:6434165,45510161:26345472,6109564,196608 -[1,8577:6630773,45510161:25952256,5912956,0 -(1,8565:6630773,40007723:25952256,410518,76021 -(1,8564:6630773,40007723:0,0,0 -g1,8564:6630773,40007723 -g1,8564:6630773,40007723 -g1,8564:6303093,40007723 -(1,8564:6303093,40007723:0,0,0 -) -g1,8564:6630773,40007723 -) -k1,8565:6630773,40007723:0 -h1,8565:9792229,40007723:0,0,0 -k1,8565:32583029,40007723:22790800 -g1,8565:32583029,40007723 -) -(1,8576:6630773,40739437:25952256,410518,101187 -(1,8567:6630773,40739437:0,0,0 -g1,8567:6630773,40739437 -g1,8567:6630773,40739437 -g1,8567:6303093,40739437 -(1,8567:6303093,40739437:0,0,0 -) -g1,8567:6630773,40739437 -) -g1,8576:7579210,40739437 -g1,8576:10424521,40739437 -g1,8576:11372958,40739437 -g1,8576:14218269,40739437 -h1,8576:15798997,40739437:0,0,0 -k1,8576:32583029,40739437:16784032 -g1,8576:32583029,40739437 -) -(1,8576:6630773,41405615:25952256,379060,0 -h1,8576:6630773,41405615:0,0,0 -h1,8576:7263064,41405615:0,0,0 -k1,8576:32583028,41405615:25319964 -g1,8576:32583028,41405615 -) -(1,8576:6630773,42071793:25952256,379060,101187 -h1,8576:6630773,42071793:0,0,0 -g1,8576:7579210,42071793 -g1,8576:10740667,42071793 -h1,8576:12321395,42071793:0,0,0 -k1,8576:32583029,42071793:20261634 -g1,8576:32583029,42071793 -) -(1,8576:6630773,42737971:25952256,410518,101187 -h1,8576:6630773,42737971:0,0,0 -g1,8576:7579210,42737971 -g1,8576:7895356,42737971 -g1,8576:8211502,42737971 -g1,8576:8527648,42737971 -g1,8576:8843794,42737971 -g1,8576:9159940,42737971 -g1,8576:9476086,42737971 -g1,8576:9792232,42737971 -g1,8576:10108378,42737971 -g1,8576:10424524,42737971 -g1,8576:10740670,42737971 -g1,8576:11689107,42737971 -g1,8576:12953690,42737971 -g1,8576:13902127,42737971 -g1,8576:15482856,42737971 -g1,8576:16431293,42737971 -g1,8576:17063585,42737971 -g1,8576:18960459,42737971 -g1,8576:19276605,42737971 -g1,8576:19592751,42737971 -g1,8576:19908897,42737971 -k1,8576:19908897,42737971:0 -h1,8576:21805771,42737971:0,0,0 -k1,8576:32583029,42737971:10777258 -g1,8576:32583029,42737971 -) -(1,8576:6630773,43404149:25952256,388497,101187 -h1,8576:6630773,43404149:0,0,0 -g1,8576:7579210,43404149 -g1,8576:9476084,43404149 -g1,8576:9792230,43404149 -g1,8576:10108376,43404149 -g1,8576:10424522,43404149 -g1,8576:10740668,43404149 -g1,8576:11056814,43404149 -g1,8576:11689106,43404149 -g1,8576:13902126,43404149 -g1,8576:14218272,43404149 -g1,8576:16431292,43404149 -g1,8576:16747438,43404149 -g1,8576:18960458,43404149 -g1,8576:19592750,43404149 -g1,8576:22121916,43404149 -h1,8576:23070353,43404149:0,0,0 -k1,8576:32583029,43404149:9512676 -g1,8576:32583029,43404149 -) -(1,8576:6630773,44070327:25952256,404226,9436 -h1,8576:6630773,44070327:0,0,0 -g1,8576:7579210,44070327 -g1,8576:10740667,44070327 -g1,8576:11689104,44070327 -g1,8576:13902124,44070327 -g1,8576:14218270,44070327 -g1,8576:14534416,44070327 -h1,8576:16115144,44070327:0,0,0 -k1,8576:32583029,44070327:16467885 -g1,8576:32583029,44070327 -) -(1,8576:6630773,44736505:25952256,379060,0 -h1,8576:6630773,44736505:0,0,0 -g1,8576:7579210,44736505 -k1,8576:7579210,44736505:0 -h1,8576:8527648,44736505:0,0,0 -k1,8576:32583028,44736505:24055380 -g1,8576:32583028,44736505 -) -(1,8576:6630773,45402683:25952256,410518,107478 -h1,8576:6630773,45402683:0,0,0 -g1,8576:7579210,45402683 -g1,8576:10108376,45402683 -g1,8576:12321396,45402683 -g1,8576:12637542,45402683 -g1,8576:13269834,45402683 -g1,8576:15166709,45402683 -g1,8576:17063583,45402683 -g1,8576:18644312,45402683 -g1,8576:20225041,45402683 -g1,8576:21489625,45402683 -g1,8576:23070354,45402683 -g1,8576:24334938,45402683 -g1,8576:25599521,45402683 -g1,8576:26231813,45402683 -g1,8576:26864105,45402683 -h1,8576:27180251,45402683:0,0,0 -k1,8576:32583029,45402683:5402778 -g1,8576:32583029,45402683 -) -] -) -g1,8577:32583029,45510161 -g1,8577:6630773,45510161 -g1,8577:6630773,45510161 -g1,8577:32583029,45510161 -g1,8577:32583029,45510161 -) -h1,8577:6630773,45706769:0,0,0 -] -(1,8581:32583029,45706769:0,0,0 -g1,8581:32583029,45706769 -) -) -] -(1,8581:6630773,47279633:25952256,0,0 -h1,8581:6630773,47279633:25952256,0,0 -) -] -(1,8581:4262630,4025873:0,0,0 -[1,8581:-473656,4025873:0,0,0 -(1,8581:-473656,-710413:0,0,0 -(1,8581:-473656,-710413:0,0,0 -g1,8581:-473656,-710413 -) -g1,8581:-473656,-710413 -) -] -) -] -!19138 -}163 -Input:1331:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1332:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1333:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1334:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1335:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1336:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1337:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1338:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!748 -{164 -[1,8678:4262630,47279633:28320399,43253760,0 -(1,8678:4262630,4025873:0,0,0 -[1,8678:-473656,4025873:0,0,0 -(1,8678:-473656,-710413:0,0,0 -(1,8678:-473656,-644877:0,0,0 -k1,8678:-473656,-644877:-65536 -) -(1,8678:-473656,4736287:0,0,0 -k1,8678:-473656,4736287:5209943 -) -g1,8678:-473656,-710413 -) -] -) -[1,8678:6630773,47279633:25952256,43253760,0 -[1,8678:6630773,4812305:25952256,786432,0 -(1,8678:6630773,4812305:25952256,505283,134348 -(1,8678:6630773,4812305:25952256,505283,134348 -g1,8678:3078558,4812305 -[1,8678:3078558,4812305:0,0,0 -(1,8678:3078558,2439708:0,1703936,0 -k1,8678:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,8678:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,8678:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,8678:3078558,4812305:0,0,0 -(1,8678:3078558,2439708:0,1703936,0 -g1,8678:29030814,2439708 -g1,8678:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,8678:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,8678:37855564,2439708:1179648,16384,0 -) -) -k1,8678:3078556,2439708:-34777008 -) -] -[1,8678:3078558,4812305:0,0,0 -(1,8678:3078558,49800853:0,16384,2228224 -k1,8678:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,8678:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,8678:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,8678:3078558,4812305:0,0,0 -(1,8678:3078558,49800853:0,16384,2228224 -g1,8678:29030814,49800853 -g1,8678:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,8678:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,8678:37855564,49800853:1179648,16384,0 -) -) -k1,8678:3078556,49800853:-34777008 -) -] -g1,8678:6630773,4812305 -g1,8678:6630773,4812305 -g1,8678:8843268,4812305 -g1,8678:10880782,4812305 -g1,8678:13281365,4812305 -k1,8678:31387653,4812305:18106288 -) -) -] -[1,8678:6630773,45706769:25952256,40108032,0 -(1,8678:6630773,45706769:25952256,40108032,0 -(1,8678:6630773,45706769:0,0,0 -g1,8678:6630773,45706769 -) -[1,8678:6630773,45706769:25952256,40108032,0 -v1,8581:6630773,6254097:0,393216,0 -(1,8678:6630773,45116945:25952256,39256064,589824 -g1,8678:6630773,45116945 -(1,8678:6630773,45116945:25952256,39256064,589824 -(1,8678:6630773,45706769:25952256,39845888,0 -[1,8678:6630773,45706769:25952256,39845888,0 -(1,8678:6630773,45706769:25952256,39819674,0 -r1,8678:6656987,45706769:26214,39819674,0 -[1,8678:6656987,45706769:25899828,39819674,0 -(1,8678:6656987,45116945:25899828,38640026,0 -[1,8678:7246811,45116945:24720180,38640026,0 -(1,8582:7246811,7562455:24720180,1085536,298548 -(1,8581:7246811,7562455:0,1085536,298548 -r1,8678:8753226,7562455:1506415,1384084,298548 -k1,8581:7246811,7562455:-1506415 -) -(1,8581:7246811,7562455:1506415,1085536,298548 -) -k1,8581:9026422,7562455:273196 -k1,8581:10496305,7562455:273196 -k1,8581:13365382,7562455:273196 -k1,8581:15151804,7562455:273196 -k1,8581:16372652,7562455:273197 -k1,8581:18633555,7562455:273196 -k1,8581:19924525,7562455:273196 -k1,8581:21389166,7562455:273196 -k1,8581:24096951,7562455:273122 -k1,8581:28171890,7562455:273196 -k1,8581:29807580,7562455:273196 -k1,8581:31966991,7562455:0 -) -(1,8582:7246811,8403943:24720180,513147,134348 -k1,8581:10723823,8403943:231014 -k1,8581:12787225,8403943:231015 -k1,8581:14519013,8403943:231014 -k1,8581:17512371,8403943:231015 -k1,8581:20548981,8403943:231014 -k1,8581:23096693,8403943:231014 -k1,8581:23987000,8403943:231015 -k1,8581:25913430,8403943:231014 -k1,8581:26803737,8403943:231015 -k1,8581:29679784,8403943:231014 -k1,8581:31966991,8403943:0 -) -(1,8582:7246811,9245431:24720180,505283,134348 -k1,8581:9322891,9245431:208304 -k1,8581:9917856,9245431:208303 -k1,8581:10725814,9245431:208304 -k1,8581:12125563,9245431:208304 -k1,8581:13146512,9245431:208303 -k1,8581:13982651,9245431:208304 -k1,8581:17684679,9245431:208304 -k1,8581:20311917,9245431:208304 -k1,8581:21539305,9245431:208303 -k1,8581:23772671,9245431:208304 -k1,8581:25081980,9245431:208304 -k1,8581:26099653,9245431:208303 -k1,8581:30894822,9245431:208304 -k1,8581:31966991,9245431:0 -) -(1,8582:7246811,10086919:24720180,513147,134348 -k1,8581:10937340,10086919:173867 -k1,8581:12215489,10086919:173867 -k1,8581:13137121,10086919:173866 -k1,8581:16520286,10086919:173867 -k1,8581:17641804,10086919:173867 -k1,8581:21479134,10086919:173867 -k1,8581:24245605,10086919:173867 -k1,8581:25886167,10086919:173866 -k1,8581:28379353,10086919:173867 -k1,8581:29204648,10086919:173867 -k1,8581:31966991,10086919:0 -) -(1,8582:7246811,10928407:24720180,513147,126483 -k1,8581:11344777,10928407:156631 -k1,8581:12420223,10928407:156631 -k1,8581:15016104,10928407:156631 -k1,8581:16558821,10928407:156631 -k1,8581:17102114,10928407:156631 -k1,8581:17790243,10928407:156632 -k1,8581:20234081,10928407:156631 -k1,8581:23889679,10928407:156631 -k1,8581:24697738,10928407:156631 -k1,8581:26720834,10928407:156631 -k1,8581:28960199,10928407:156631 -k1,8581:31966991,10928407:0 -) -(1,8582:7246811,11769895:24720180,513147,126483 -g1,8581:8888487,11769895 -g1,8581:10473802,11769895 -g1,8581:11485677,11769895 -g1,8581:12703991,11769895 -g1,8581:15168800,11769895 -g1,8581:16881255,11769895 -g1,8581:17842012,11769895 -g1,8581:19463372,11769895 -g1,8581:20854046,11769895 -k1,8582:31966991,11769895:9780598 -g1,8582:31966991,11769895 -) -(1,8584:7246811,13380642:24720180,513147,126483 -h1,8583:7246811,13380642:983040,0,0 -k1,8583:9646605,13380642:220067 -k1,8583:12828244,13380642:220067 -k1,8583:14561537,13380642:220067 -k1,8583:16560906,13380642:220067 -k1,8583:17800058,13380642:220067 -k1,8583:21066238,13380642:220067 -k1,8583:24065032,13380642:220067 -k1,8583:25046627,13380642:220067 -(1,8583:25046627,13380642:0,459977,115847 -r1,8678:27163452,13380642:2116825,575824,115847 -k1,8583:25046627,13380642:-2116825 -) -(1,8583:25046627,13380642:2116825,459977,115847 -k1,8583:25046627,13380642:3277 -h1,8583:27160175,13380642:0,411205,112570 -) -k1,8583:27383519,13380642:220067 -k1,8583:28795031,13380642:220067 -(1,8583:28795031,13380642:0,452978,115847 -r1,8678:31966991,13380642:3171960,568825,115847 -k1,8583:28795031,13380642:-3171960 -) -(1,8583:28795031,13380642:3171960,452978,115847 -k1,8583:28795031,13380642:3277 -h1,8583:31963714,13380642:0,411205,112570 -) -k1,8583:31966991,13380642:0 -) -(1,8584:7246811,14222130:24720180,513147,126483 -k1,8583:9811454,14222130:192895 -k1,8583:10655777,14222130:192895 -k1,8583:11619375,14222130:192895 -k1,8583:14246927,14222130:192889 -k1,8583:16427529,14222130:192895 -k1,8583:17481567,14222130:192895 -k1,8583:18871149,14222130:192895 -k1,8583:21329625,14222130:192896 -k1,8583:23035746,14222130:192895 -k1,8583:23844679,14222130:192895 -k1,8583:24452411,14222130:192889 -k1,8583:25176803,14222130:192895 -k1,8583:28132041,14222130:192895 -k1,8583:28976364,14222130:192895 -k1,8583:30453765,14222130:192895 -k1,8583:31966991,14222130:0 -) -(1,8584:7246811,15063618:24720180,513147,134348 -k1,8583:8099076,15063618:236227 -k1,8583:10027444,15063618:236228 -k1,8583:11965641,15063618:236227 -k1,8583:15274197,15063618:236228 -k1,8583:17184214,15063618:236227 -k1,8583:20182785,15063618:236228 -k1,8583:21861459,15063618:236227 -k1,8583:22713725,15063618:236228 -k1,8583:23683955,15063618:236227 -k1,8583:25116870,15063618:236228 -k1,8583:26954797,15063618:236227 -k1,8583:31966991,15063618:0 -) -(1,8584:7246811,15905106:24720180,513147,134348 -k1,8583:8690569,15905106:205783 -k1,8583:9555644,15905106:205783 -k1,8583:11943121,15905106:205783 -k1,8583:12504764,15905106:205783 -k1,8583:15472890,15905106:205783 -k1,8583:17944253,15905106:205783 -k1,8583:19097687,15905106:205783 -k1,8583:19659331,15905106:205784 -k1,8583:21747963,15905106:205783 -k1,8583:23798584,15905106:205783 -k1,8583:24663659,15905106:205783 -k1,8583:26857149,15905106:205783 -k1,8583:28080706,15905106:205783 -k1,8583:28817986,15905106:205783 -k1,8583:29785297,15905106:205783 -k1,8584:31966991,15905106:0 -) -(1,8584:7246811,16746594:24720180,505283,126483 -g1,8583:7860883,16746594 -g1,8583:10142846,16746594 -(1,8583:10142846,16746594:0,414482,115847 -r1,8678:13314806,16746594:3171960,530329,115847 -k1,8583:10142846,16746594:-3171960 -) -(1,8583:10142846,16746594:3171960,414482,115847 -k1,8583:10142846,16746594:3277 -h1,8583:13311529,16746594:0,411205,112570 -) -g1,8583:13687705,16746594 -g1,8583:15772405,16746594 -g1,8583:16839986,16746594 -g1,8583:18437098,16746594 -g1,8583:20011928,16746594 -k1,8584:31966991,16746594:10199353 -g1,8584:31966991,16746594 -) -v1,8586:7246811,19475579:0,393216,0 -(1,8595:7246811,21848454:24720180,2766091,196608 -g1,8595:7246811,21848454 -g1,8595:7246811,21848454 -g1,8595:7050203,21848454 -(1,8595:7050203,21848454:0,2766091,196608 -r1,8678:32163599,21848454:25113396,2962699,196608 -k1,8595:7050203,21848454:-25113396 -) -(1,8595:7050203,21848454:25113396,2766091,196608 -[1,8595:7246811,21848454:24720180,2569483,0 -(1,8588:7246811,19683197:24720180,404226,101187 -(1,8587:7246811,19683197:0,0,0 -g1,8587:7246811,19683197 -g1,8587:7246811,19683197 -g1,8587:6919131,19683197 -(1,8587:6919131,19683197:0,0,0 -) -g1,8587:7246811,19683197 -) -k1,8588:7246811,19683197:0 -h1,8588:13569725,19683197:0,0,0 -k1,8588:31966991,19683197:18397266 -g1,8588:31966991,19683197 -) -(1,8594:7246811,20414911:24720180,410518,31456 -(1,8590:7246811,20414911:0,0,0 -g1,8590:7246811,20414911 -g1,8590:7246811,20414911 -g1,8590:6919131,20414911 -(1,8590:6919131,20414911:0,0,0 -) -g1,8590:7246811,20414911 -) -g1,8594:8195248,20414911 -h1,8594:11356705,20414911:0,0,0 -k1,8594:31966991,20414911:20610286 -g1,8594:31966991,20414911 -) -(1,8594:7246811,21081089:24720180,404226,6290 -h1,8594:7246811,21081089:0,0,0 -g1,8594:8195248,21081089 -g1,8594:8511394,21081089 -g1,8594:8827540,21081089 -g1,8594:9143686,21081089 -g1,8594:9459832,21081089 -g1,8594:9775978,21081089 -g1,8594:10092124,21081089 -g1,8594:10408270,21081089 -g1,8594:10724416,21081089 -g1,8594:13885873,21081089 -g1,8594:14202019,21081089 -g1,8594:14518165,21081089 -g1,8594:14834311,21081089 -g1,8594:15150457,21081089 -g1,8594:15466603,21081089 -g1,8594:15782749,21081089 -g1,8594:16098895,21081089 -g1,8594:16415041,21081089 -g1,8594:16731187,21081089 -g1,8594:17047333,21081089 -h1,8594:19260353,21081089:0,0,0 -k1,8594:31966991,21081089:12706638 -g1,8594:31966991,21081089 -) -(1,8594:7246811,21747267:24720180,404226,101187 -h1,8594:7246811,21747267:0,0,0 -g1,8594:8195248,21747267 -g1,8594:13885871,21747267 -g1,8594:14202017,21747267 -g1,8594:14518163,21747267 -g1,8594:14834309,21747267 -g1,8594:15150455,21747267 -g1,8594:15466601,21747267 -h1,8594:19260349,21747267:0,0,0 -k1,8594:31966991,21747267:12706642 -g1,8594:31966991,21747267 -) -] -) -g1,8595:31966991,21848454 -g1,8595:7246811,21848454 -g1,8595:7246811,21848454 -g1,8595:31966991,21848454 -g1,8595:31966991,21848454 -) -h1,8595:7246811,22045062:0,0,0 -(1,8599:7246811,25718617:24720180,505283,126483 -h1,8598:7246811,25718617:983040,0,0 -k1,8598:8838795,25718617:139051 -k1,8598:9509343,25718617:139051 -k1,8598:10934210,25718617:139051 -k1,8598:13703221,25718617:139051 -k1,8598:14493700,25718617:139051 -k1,8598:16453341,25718617:139051 -k1,8598:17611477,25718617:139051 -k1,8598:20381799,25718617:139051 -k1,8598:21172277,25718617:139050 -k1,8598:22059094,25718617:139051 -k1,8598:23711371,25718617:139051 -k1,8598:24466460,25718617:139051 -k1,8598:25624596,25718617:139051 -k1,8598:26863341,25718617:139051 -k1,8598:27653820,25718617:139051 -(1,8598:27653820,25718617:0,452978,115847 -r1,8678:29418933,25718617:1765113,568825,115847 -k1,8598:27653820,25718617:-1765113 -) -(1,8598:27653820,25718617:1765113,452978,115847 -k1,8598:27653820,25718617:3277 -h1,8598:29415656,25718617:0,411205,112570 -) -k1,8598:29557984,25718617:139051 -k1,8598:30379920,25718617:139051 -(1,8598:30379920,25718617:0,452978,115847 -r1,8678:31793321,25718617:1413401,568825,115847 -k1,8598:30379920,25718617:-1413401 -) -(1,8598:30379920,25718617:1413401,452978,115847 -k1,8598:30379920,25718617:3277 -h1,8598:31790044,25718617:0,411205,112570 -) -k1,8598:31966991,25718617:0 -) -(1,8599:7246811,26560105:24720180,513147,115847 -k1,8598:8615654,26560105:172156 -k1,8598:11227060,26560105:172156 -(1,8598:11227060,26560105:0,414482,115847 -r1,8678:16509291,26560105:5282231,530329,115847 -k1,8598:11227060,26560105:-5282231 -) -(1,8598:11227060,26560105:5282231,414482,115847 -k1,8598:11227060,26560105:3277 -h1,8598:16506014,26560105:0,411205,112570 -) -k1,8598:16681446,26560105:172155 -k1,8598:18276389,26560105:172156 -k1,8598:19467630,26560105:172156 -k1,8598:20945919,26560105:172156 -k1,8598:22580182,26560105:172155 -k1,8598:23411630,26560105:172156 -k1,8598:24602871,26560105:172156 -k1,8598:26669017,26560105:172156 -k1,8598:29867625,26560105:172155 -k1,8598:30691209,26560105:172156 -k1,8598:31611131,26560105:172156 -k1,8598:31966991,26560105:0 -) -(1,8599:7246811,27401593:24720180,513147,134348 -k1,8598:9907966,27401593:166199 -k1,8598:10760327,27401593:166199 -k1,8598:13905793,27401593:166199 -k1,8598:15019643,27401593:166199 -k1,8598:18564878,27401593:166199 -k1,8598:19390370,27401593:166200 -k1,8598:23167603,27401593:166199 -k1,8598:24525247,27401593:166199 -k1,8598:26200085,27401593:166199 -k1,8598:30277473,27401593:166199 -k1,8599:31966991,27401593:0 -) -(1,8599:7246811,28243081:24720180,513147,134348 -(1,8598:7246811,28243081:0,414482,115847 -r1,8678:10418771,28243081:3171960,530329,115847 -k1,8598:7246811,28243081:-3171960 -) -(1,8598:7246811,28243081:3171960,414482,115847 -k1,8598:7246811,28243081:3277 -h1,8598:10415494,28243081:0,411205,112570 -) -k1,8598:10635038,28243081:216267 -k1,8598:12274093,28243081:216268 -k1,8598:13176522,28243081:216267 -k1,8598:16372057,28243081:216268 -k1,8598:17607409,28243081:216267 -k1,8598:19561691,28243081:216267 -k1,8598:20437251,28243081:216268 -k1,8598:21419634,28243081:216267 -k1,8598:23601981,28243081:216267 -k1,8598:24579777,28243081:216268 -k1,8598:26531437,28243081:216267 -k1,8598:27433867,28243081:216268 -k1,8598:30682485,28243081:216267 -k1,8598:31966991,28243081:0 -) -(1,8599:7246811,29084569:24720180,513147,134348 -k1,8598:8505758,29084569:239862 -k1,8598:10110735,29084569:239862 -k1,8598:11009888,29084569:239861 -k1,8598:12268835,29084569:239862 -k1,8598:15789429,29084569:239862 -k1,8598:19075404,29084569:239862 -k1,8598:19846762,29084569:239861 -k1,8598:21814153,29084569:239862 -k1,8598:22705443,29084569:239862 -k1,8598:24539141,29084569:239862 -k1,8598:27952911,29084569:239861 -k1,8598:29396014,29084569:239862 -k1,8598:31966991,29084569:0 -) -(1,8599:7246811,29926057:24720180,513147,138281 -g1,8598:8994656,29926057 -g1,8598:10212970,29926057 -g1,8598:14023233,29926057 -g1,8598:17065414,29926057 -g1,8598:18456088,29926057 -g1,8598:22880423,29926057 -g1,8598:24365468,29926057 -g1,8598:25583782,29926057 -g1,8598:28919564,29926057 -$1,8598:28919564,29926057 -$1,8598:29387491,29926057 -k1,8599:31966991,29926057:182193 -g1,8599:31966991,29926057 -) -v1,8601:7246811,32655042:0,393216,0 -(1,8608:7246811,34968673:24720180,2706847,196608 -g1,8608:7246811,34968673 -g1,8608:7246811,34968673 -g1,8608:7050203,34968673 -(1,8608:7050203,34968673:0,2706847,196608 -r1,8678:32163599,34968673:25113396,2903455,196608 -k1,8608:7050203,34968673:-25113396 -) -(1,8608:7050203,34968673:25113396,2706847,196608 -[1,8608:7246811,34968673:24720180,2510239,0 -(1,8603:7246811,32868952:24720180,410518,101187 -(1,8602:7246811,32868952:0,0,0 -g1,8602:7246811,32868952 -g1,8602:7246811,32868952 -g1,8602:6919131,32868952 -(1,8602:6919131,32868952:0,0,0 -) -g1,8602:7246811,32868952 -) -g1,8603:9775977,32868952 -g1,8603:10724415,32868952 -g1,8603:13569726,32868952 -g1,8603:14202018,32868952 -g1,8603:16415038,32868952 -g1,8603:17995767,32868952 -g1,8603:18628059,32868952 -k1,8603:18628059,32868952:0 -h1,8603:22737953,32868952:0,0,0 -k1,8603:31966991,32868952:9229038 -g1,8603:31966991,32868952 -) -(1,8604:7246811,33535130:24720180,404226,101187 -h1,8604:7246811,33535130:0,0,0 -g1,8604:7562957,33535130 -g1,8604:7879103,33535130 -g1,8604:8195249,33535130 -g1,8604:8511395,33535130 -g1,8604:8827541,33535130 -g1,8604:9143687,33535130 -g1,8604:9459833,33535130 -g1,8604:9775979,33535130 -g1,8604:10092125,33535130 -g1,8604:10408271,33535130 -g1,8604:10724417,33535130 -g1,8604:11040563,33535130 -g1,8604:11356709,33535130 -g1,8604:11672855,33535130 -g1,8604:14834312,33535130 -g1,8604:15466604,33535130 -g1,8604:18944207,33535130 -g1,8604:19576499,33535130 -h1,8604:24950976,33535130:0,0,0 -k1,8604:31966991,33535130:7016015 -g1,8604:31966991,33535130 -) -(1,8605:7246811,34201308:24720180,410518,101187 -h1,8605:7246811,34201308:0,0,0 -g1,8605:9459831,34201308 -g1,8605:9775977,34201308 -g1,8605:10724415,34201308 -g1,8605:13569726,34201308 -g1,8605:14202018,34201308 -g1,8605:16415038,34201308 -g1,8605:17995767,34201308 -g1,8605:18628059,34201308 -k1,8605:18628059,34201308:0 -h1,8605:22737953,34201308:0,0,0 -k1,8605:31966991,34201308:9229038 -g1,8605:31966991,34201308 -) -(1,8606:7246811,34867486:24720180,404226,101187 -h1,8606:7246811,34867486:0,0,0 -g1,8606:7562957,34867486 -g1,8606:7879103,34867486 -g1,8606:8195249,34867486 -g1,8606:8511395,34867486 -g1,8606:8827541,34867486 -g1,8606:9143687,34867486 -g1,8606:9459833,34867486 -g1,8606:9775979,34867486 -g1,8606:10092125,34867486 -g1,8606:10408271,34867486 -g1,8606:10724417,34867486 -g1,8606:11040563,34867486 -g1,8606:11356709,34867486 -g1,8606:11672855,34867486 -g1,8606:14834312,34867486 -g1,8606:15466604,34867486 -g1,8606:18944207,34867486 -g1,8606:19576499,34867486 -h1,8606:23054101,34867486:0,0,0 -k1,8606:31966991,34867486:8912890 -g1,8606:31966991,34867486 -) -] -) -g1,8608:31966991,34968673 -g1,8608:7246811,34968673 -g1,8608:7246811,34968673 -g1,8608:31966991,34968673 -g1,8608:31966991,34968673 -) -h1,8608:7246811,35165281:0,0,0 -(1,8612:7246811,38838835:24720180,513147,126483 -h1,8611:7246811,38838835:983040,0,0 -k1,8611:12837211,38838835:150256 -k1,8611:13646759,38838835:150256 -k1,8611:14928822,38838835:150256 -k1,8611:17633671,38838835:150256 -k1,8611:18884932,38838835:150256 -k1,8611:19686617,38838835:150257 -k1,8611:21189536,38838835:150256 -k1,8611:22607258,38838835:150256 -k1,8611:25261645,38838835:150256 -k1,8611:27108628,38838835:150256 -k1,8611:30775546,38838835:150256 -k1,8611:31966991,38838835:0 -) -(1,8612:7246811,39680323:24720180,513147,126483 -k1,8611:9159051,39680323:201095 -k1,8611:11540529,39680323:201095 -k1,8611:12807894,39680323:201094 -k1,8611:13756755,39680323:201095 -k1,8611:17000031,39680323:201095 -k1,8611:17667087,39680323:201095 -k1,8611:20302843,39680323:201093 -k1,8611:22369748,39680323:201095 -k1,8611:25333186,39680323:201095 -k1,8611:27707454,39680323:201094 -k1,8611:28524587,39680323:201095 -k1,8611:30159610,39680323:201095 -k1,8611:30775546,39680323:201093 -k1,8612:31966991,39680323:0 -) -(1,8612:7246811,40521811:24720180,513147,134348 -k1,8611:8861562,40521811:192620 -k1,8611:9737073,40521811:192626 -k1,8611:11088370,40521811:192620 -k1,8611:12975757,40521811:192626 -k1,8611:14187469,40521811:192627 -k1,8611:17142438,40521811:192626 -k1,8611:19051453,40521811:192627 -k1,8611:19903371,40521811:192626 -k1,8611:21791413,40521811:192626 -k1,8611:22643332,40521811:192627 -k1,8611:25307321,40521811:192626 -k1,8611:27186845,40521811:192627 -k1,8611:28576158,40521811:192626 -k1,8612:31966991,40521811:0 -) -(1,8612:7246811,41363299:24720180,513147,134348 -k1,8611:8722682,41363299:208405 -k1,8611:9590379,41363299:208405 -k1,8611:12233438,41363299:208396 -k1,8611:13251213,41363299:208405 -k1,8611:15878552,41363299:208405 -k1,8611:17371463,41363299:208405 -k1,8611:18571428,41363299:208405 -k1,8611:19846105,41363299:208406 -k1,8611:23548234,41363299:208405 -k1,8611:24889101,41363299:208405 -k1,8611:27469254,41363299:208405 -k1,8611:28487029,41363299:208405 -k1,8611:30580905,41363299:208405 -k1,8611:31966991,41363299:0 -) -(1,8612:7246811,42204787:24720180,513147,126483 -k1,8611:8031396,42204787:253088 -k1,8611:9971381,42204787:253088 -k1,8611:10949297,42204787:253088 -k1,8611:12221470,42204787:253088 -k1,8611:15236901,42204787:253088 -k1,8611:17663162,42204787:253087 -k1,8611:18907810,42204787:253088 -k1,8611:20227169,42204787:253088 -k1,8611:23995608,42204787:253088 -k1,8611:28549169,42204787:253088 -k1,8611:30268953,42204787:253088 -k1,8611:31966991,42204787:0 -) -(1,8612:7246811,43046275:24720180,513147,7863 -k1,8612:31966992,43046275:21784168 -g1,8612:31966992,43046275 -) -] -) -] -r1,8678:32583029,45706769:26214,39819674,0 -) -] -) -) -g1,8678:32583029,45116945 -) -] -(1,8678:32583029,45706769:0,0,0 -g1,8678:32583029,45706769 -) -) -] -(1,8678:6630773,47279633:25952256,0,0 -h1,8678:6630773,47279633:25952256,0,0 -) -] -(1,8678:4262630,4025873:0,0,0 -[1,8678:-473656,4025873:0,0,0 -(1,8678:-473656,-710413:0,0,0 -(1,8678:-473656,-710413:0,0,0 -g1,8678:-473656,-710413 -) -g1,8678:-473656,-710413 -) -] -) -] -!21248 -}164 -!12 -{165 -[1,8688:4262630,47279633:28320399,43253760,0 -(1,8688:4262630,4025873:0,0,0 -[1,8688:-473656,4025873:0,0,0 -(1,8688:-473656,-710413:0,0,0 -(1,8688:-473656,-644877:0,0,0 -k1,8688:-473656,-644877:-65536 -) -(1,8688:-473656,4736287:0,0,0 -k1,8688:-473656,4736287:5209943 -) -g1,8688:-473656,-710413 -) -] -) -[1,8688:6630773,47279633:25952256,43253760,0 -[1,8688:6630773,4812305:25952256,786432,0 -(1,8688:6630773,4812305:25952256,505283,134348 -(1,8688:6630773,4812305:25952256,505283,134348 -g1,8688:3078558,4812305 -[1,8688:3078558,4812305:0,0,0 -(1,8688:3078558,2439708:0,1703936,0 -k1,8688:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,8688:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,8688:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,8688:3078558,4812305:0,0,0 -(1,8688:3078558,2439708:0,1703936,0 -g1,8688:29030814,2439708 -g1,8688:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,8688:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,8688:37855564,2439708:1179648,16384,0 -) -) -k1,8688:3078556,2439708:-34777008 -) -] -[1,8688:3078558,4812305:0,0,0 -(1,8688:3078558,49800853:0,16384,2228224 -k1,8688:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,8688:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,8688:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,8688:3078558,4812305:0,0,0 -(1,8688:3078558,49800853:0,16384,2228224 -g1,8688:29030814,49800853 -g1,8688:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,8688:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,8688:37855564,49800853:1179648,16384,0 -) -) -k1,8688:3078556,49800853:-34777008 -) -] -g1,8688:6630773,4812305 -k1,8688:24502442,4812305:16676292 -g1,8688:25889183,4812305 -g1,8688:26537989,4812305 -g1,8688:29852144,4812305 -) -) -] -[1,8688:6630773,45706769:25952256,40108032,0 -(1,8688:6630773,45706769:25952256,40108032,0 -(1,8688:6630773,45706769:0,0,0 -g1,8688:6630773,45706769 -) -[1,8688:6630773,45706769:25952256,40108032,0 -v1,8678:6630773,6254097:0,393216,0 -(1,8678:6630773,43764580:25952256,37903699,616038 -g1,8678:6630773,43764580 -(1,8678:6630773,43764580:25952256,37903699,616038 -(1,8678:6630773,44380618:25952256,38519737,0 -[1,8678:6630773,44380618:25952256,38519737,0 -(1,8678:6630773,44354404:25952256,38493523,0 -r1,8688:6656987,44354404:26214,38493523,0 -[1,8678:6656987,44354404:25899828,38493523,0 -(1,8678:6656987,43764580:25899828,37313875,0 -[1,8678:7246811,43764580:24720180,37313875,0 -v1,8614:7246811,6843921:0,393216,0 -(1,8642:7246811,21880470:24720180,15429765,196608 -g1,8642:7246811,21880470 -g1,8642:7246811,21880470 -g1,8642:7050203,21880470 -(1,8642:7050203,21880470:0,15429765,196608 -r1,8688:32163599,21880470:25113396,15626373,196608 -k1,8642:7050203,21880470:-25113396 -) -(1,8642:7050203,21880470:25113396,15429765,196608 -[1,8642:7246811,21880470:24720180,15233157,0 -(1,8616:7246811,7057831:24720180,410518,101187 -(1,8615:7246811,7057831:0,0,0 -g1,8615:7246811,7057831 -g1,8615:7246811,7057831 -g1,8615:6919131,7057831 -(1,8615:6919131,7057831:0,0,0 -) -g1,8615:7246811,7057831 -) -k1,8616:7246811,7057831:0 -h1,8616:12305142,7057831:0,0,0 -k1,8616:31966990,7057831:19661848 -g1,8616:31966990,7057831 -) -(1,8641:7246811,7789545:24720180,379060,0 -(1,8618:7246811,7789545:0,0,0 -g1,8618:7246811,7789545 -g1,8618:7246811,7789545 -g1,8618:6919131,7789545 -(1,8618:6919131,7789545:0,0,0 -) -g1,8618:7246811,7789545 -) -h1,8641:7879102,7789545:0,0,0 -k1,8641:31966990,7789545:24087888 -g1,8641:31966990,7789545 -) -(1,8641:7246811,8455723:24720180,404226,7863 -h1,8641:7246811,8455723:0,0,0 -g1,8641:8195248,8455723 -h1,8641:9775976,8455723:0,0,0 -k1,8641:31966992,8455723:22191016 -g1,8641:31966992,8455723 -) -(1,8641:7246811,9121901:24720180,410518,101187 -h1,8641:7246811,9121901:0,0,0 -k1,8641:8089866,9121901:210764 -k1,8641:11462087,9121901:210764 -k1,8641:11988997,9121901:210764 -k1,8641:13780489,9121901:210764 -k1,8641:14307399,9121901:210764 -k1,8641:16415037,9121901:210764 -k1,8641:17890384,9121901:210764 -k1,8641:18417294,9121901:210764 -k1,8641:22737952,9121901:210764 -k1,8641:25794027,9121901:210764 -k1,8641:26320937,9121901:210764 -k1,8641:29693158,9121901:210764 -k1,8641:30220068,9121901:210764 -h1,8641:35594545,9121901:0,0,0 -k1,8641:35594545,9121901:0 -k1,8641:35594545,9121901:0 -) -(1,8641:7246811,9788079:24720180,379060,0 -h1,8641:7246811,9788079:0,0,0 -h1,8641:7879102,9788079:0,0,0 -k1,8641:31966990,9788079:24087888 -g1,8641:31966990,9788079 -) -(1,8641:7246811,10454257:24720180,404226,6290 -h1,8641:7246811,10454257:0,0,0 -g1,8641:8195248,10454257 -h1,8641:11356705,10454257:0,0,0 -k1,8641:31966991,10454257:20610286 -g1,8641:31966991,10454257 -) -(1,8641:7246811,11120435:24720180,404226,82312 -h1,8641:7246811,11120435:0,0,0 -g1,8641:8195248,11120435 -g1,8641:8511394,11120435 -g1,8641:8827540,11120435 -g1,8641:9143686,11120435 -g1,8641:10408269,11120435 -g1,8641:10724415,11120435 -g1,8641:11040561,11120435 -g1,8641:11356707,11120435 -g1,8641:11672853,11120435 -g1,8641:12621290,11120435 -g1,8641:14834310,11120435 -g1,8641:15150456,11120435 -g1,8641:15466602,11120435 -g1,8641:15782748,11120435 -g1,8641:16098894,11120435 -g1,8641:17047331,11120435 -g1,8641:17363477,11120435 -g1,8641:17679623,11120435 -g1,8641:17995769,11120435 -h1,8641:18944206,11120435:0,0,0 -k1,8641:31966991,11120435:13022785 -g1,8641:31966991,11120435 -) -(1,8641:7246811,11786613:24720180,388497,9436 -h1,8641:7246811,11786613:0,0,0 -g1,8641:8195248,11786613 -g1,8641:10408268,11786613 -g1,8641:12621288,11786613 -g1,8641:14834308,11786613 -g1,8641:15150454,11786613 -g1,8641:17047328,11786613 -g1,8641:17363474,11786613 -h1,8641:18944202,11786613:0,0,0 -k1,8641:31966991,11786613:13022789 -g1,8641:31966991,11786613 -) -(1,8641:7246811,12452791:24720180,379060,0 -h1,8641:7246811,12452791:0,0,0 -h1,8641:7879102,12452791:0,0,0 -k1,8641:31966990,12452791:24087888 -g1,8641:31966990,12452791 -) -(1,8641:7246811,13118969:24720180,410518,7863 -h1,8641:7246811,13118969:0,0,0 -g1,8641:8195248,13118969 -h1,8641:12305142,13118969:0,0,0 -k1,8641:31966990,13118969:19661848 -g1,8641:31966990,13118969 -) -(1,8641:7246811,13785147:24720180,404226,76021 -h1,8641:7246811,13785147:0,0,0 -g1,8641:8195248,13785147 -g1,8641:8511394,13785147 -g1,8641:8827540,13785147 -g1,8641:9143686,13785147 -g1,8641:9459832,13785147 -g1,8641:9775978,13785147 -g1,8641:10092124,13785147 -g1,8641:10408270,13785147 -g1,8641:10724416,13785147 -g1,8641:11040562,13785147 -g1,8641:11356708,13785147 -g1,8641:11672854,13785147 -g1,8641:11989000,13785147 -g1,8641:14834311,13785147 -g1,8641:16415040,13785147 -g1,8641:18311914,13785147 -g1,8641:18944206,13785147 -g1,8641:20841080,13785147 -k1,8641:20841080,13785147:0 -h1,8641:23370245,13785147:0,0,0 -k1,8641:31966991,13785147:8596746 -g1,8641:31966991,13785147 -) -(1,8641:7246811,14451325:24720180,404226,101187 -h1,8641:7246811,14451325:0,0,0 -g1,8641:8195248,14451325 -g1,8641:11988996,14451325 -g1,8641:12305142,14451325 -g1,8641:14834308,14451325 -g1,8641:15150454,14451325 -g1,8641:15466600,14451325 -g1,8641:15782746,14451325 -g1,8641:16098892,14451325 -g1,8641:18311912,14451325 -g1,8641:18628058,14451325 -g1,8641:20841078,14451325 -g1,8641:21157224,14451325 -g1,8641:21789516,14451325 -g1,8641:23686390,14451325 -h1,8641:24634827,14451325:0,0,0 -k1,8641:31966991,14451325:7332164 -g1,8641:31966991,14451325 -) -(1,8641:7246811,15117503:24720180,388497,101187 -h1,8641:7246811,15117503:0,0,0 -g1,8641:8195248,15117503 -g1,8641:10408268,15117503 -g1,8641:10724414,15117503 -g1,8641:11040560,15117503 -g1,8641:11356706,15117503 -g1,8641:11672852,15117503 -g1,8641:11988998,15117503 -g1,8641:12305144,15117503 -g1,8641:12621290,15117503 -g1,8641:14834310,15117503 -g1,8641:15150456,15117503 -g1,8641:15466602,15117503 -g1,8641:15782748,15117503 -g1,8641:16098894,15117503 -g1,8641:18311914,15117503 -g1,8641:18628060,15117503 -g1,8641:18944206,15117503 -g1,8641:20841080,15117503 -g1,8641:21157226,15117503 -g1,8641:21473372,15117503 -g1,8641:21789518,15117503 -h1,8641:23370246,15117503:0,0,0 -k1,8641:31966991,15117503:8596745 -g1,8641:31966991,15117503 -) -(1,8641:7246811,15783681:24720180,388497,101187 -h1,8641:7246811,15783681:0,0,0 -g1,8641:8195248,15783681 -g1,8641:10408268,15783681 -g1,8641:10724414,15783681 -g1,8641:11040560,15783681 -g1,8641:11356706,15783681 -g1,8641:11672852,15783681 -g1,8641:11988998,15783681 -g1,8641:14834309,15783681 -g1,8641:15150455,15783681 -g1,8641:15466601,15783681 -g1,8641:15782747,15783681 -g1,8641:16098893,15783681 -g1,8641:18311913,15783681 -g1,8641:18628059,15783681 -g1,8641:20841079,15783681 -g1,8641:23686390,15783681 -h1,8641:24634827,15783681:0,0,0 -k1,8641:31966991,15783681:7332164 -g1,8641:31966991,15783681 -) -(1,8641:7246811,16449859:24720180,388497,101187 -h1,8641:7246811,16449859:0,0,0 -g1,8641:8195248,16449859 -g1,8641:10408268,16449859 -g1,8641:10724414,16449859 -g1,8641:11040560,16449859 -g1,8641:11356706,16449859 -g1,8641:11672852,16449859 -g1,8641:11988998,16449859 -g1,8641:12305144,16449859 -g1,8641:14834310,16449859 -g1,8641:15150456,16449859 -g1,8641:15466602,16449859 -g1,8641:15782748,16449859 -g1,8641:16098894,16449859 -g1,8641:18311914,16449859 -g1,8641:18628060,16449859 -g1,8641:20841080,16449859 -g1,8641:23686391,16449859 -h1,8641:24634828,16449859:0,0,0 -k1,8641:31966991,16449859:7332163 -g1,8641:31966991,16449859 -) -(1,8641:7246811,17116037:24720180,388497,101187 -h1,8641:7246811,17116037:0,0,0 -g1,8641:8195248,17116037 -g1,8641:10408268,17116037 -g1,8641:10724414,17116037 -g1,8641:11040560,17116037 -g1,8641:11356706,17116037 -g1,8641:11672852,17116037 -g1,8641:11988998,17116037 -g1,8641:14834309,17116037 -g1,8641:15150455,17116037 -g1,8641:15466601,17116037 -g1,8641:15782747,17116037 -g1,8641:16098893,17116037 -g1,8641:18311913,17116037 -g1,8641:18628059,17116037 -g1,8641:20841079,17116037 -g1,8641:23686390,17116037 -h1,8641:24634827,17116037:0,0,0 -k1,8641:31966991,17116037:7332164 -g1,8641:31966991,17116037 -) -(1,8641:7246811,17782215:24720180,388497,101187 -h1,8641:7246811,17782215:0,0,0 -g1,8641:8195248,17782215 -g1,8641:10408268,17782215 -g1,8641:10724414,17782215 -g1,8641:11040560,17782215 -g1,8641:11356706,17782215 -g1,8641:11672852,17782215 -g1,8641:11988998,17782215 -g1,8641:12305144,17782215 -g1,8641:12621290,17782215 -g1,8641:14834310,17782215 -g1,8641:15150456,17782215 -g1,8641:15466602,17782215 -g1,8641:15782748,17782215 -g1,8641:16098894,17782215 -g1,8641:18311914,17782215 -g1,8641:18628060,17782215 -g1,8641:18944206,17782215 -g1,8641:20841080,17782215 -g1,8641:21157226,17782215 -g1,8641:21473372,17782215 -g1,8641:21789518,17782215 -h1,8641:23370246,17782215:0,0,0 -k1,8641:31966991,17782215:8596745 -g1,8641:31966991,17782215 -) -(1,8641:7246811,18448393:24720180,379060,0 -h1,8641:7246811,18448393:0,0,0 -g1,8641:8195248,18448393 -k1,8641:8195248,18448393:0 -h1,8641:9143686,18448393:0,0,0 -k1,8641:31966990,18448393:22823304 -g1,8641:31966990,18448393 -) -(1,8641:7246811,19114571:24720180,410518,107478 -h1,8641:7246811,19114571:0,0,0 -g1,8641:8195248,19114571 -g1,8641:10724414,19114571 -g1,8641:12937434,19114571 -g1,8641:13253580,19114571 -g1,8641:13885872,19114571 -g1,8641:15782747,19114571 -g1,8641:17679621,19114571 -g1,8641:19260350,19114571 -g1,8641:20841079,19114571 -g1,8641:22105663,19114571 -g1,8641:23686392,19114571 -g1,8641:24950976,19114571 -g1,8641:26215559,19114571 -g1,8641:26847851,19114571 -g1,8641:27480143,19114571 -h1,8641:27796289,19114571:0,0,0 -k1,8641:31966991,19114571:4170702 -g1,8641:31966991,19114571 -) -(1,8641:7246811,19780749:24720180,379060,0 -h1,8641:7246811,19780749:0,0,0 -h1,8641:7879102,19780749:0,0,0 -k1,8641:31966990,19780749:24087888 -g1,8641:31966990,19780749 -) -(1,8641:7246811,20446927:24720180,410518,107478 -h1,8641:7246811,20446927:0,0,0 -g1,8641:8195248,20446927 -g1,8641:11040559,20446927 -g1,8641:13885870,20446927 -g1,8641:16098890,20446927 -g1,8641:17995764,20446927 -g1,8641:18944201,20446927 -g1,8641:19892638,20446927 -g1,8641:22421804,20446927 -g1,8641:23370241,20446927 -h1,8641:25583261,20446927:0,0,0 -k1,8641:31966991,20446927:6383730 -g1,8641:31966991,20446927 -) -(1,8641:7246811,21113105:24720180,404226,107478 -h1,8641:7246811,21113105:0,0,0 -g1,8641:8195248,21113105 -g1,8641:11040559,21113105 -g1,8641:14518162,21113105 -g1,8641:14834308,21113105 -g1,8641:19892639,21113105 -g1,8641:23370242,21113105 -g1,8641:23686388,21113105 -h1,8641:25583262,21113105:0,0,0 -k1,8641:31966991,21113105:6383729 -g1,8641:31966991,21113105 -) -(1,8641:7246811,21779283:24720180,404226,101187 -h1,8641:7246811,21779283:0,0,0 -g1,8641:8195248,21779283 -g1,8641:12305142,21779283 -g1,8641:12621288,21779283 -g1,8641:14202017,21779283 -g1,8641:15150454,21779283 -g1,8641:15782746,21779283 -g1,8641:17047329,21779283 -g1,8641:17995766,21779283 -g1,8641:19260349,21779283 -g1,8641:19576495,21779283 -g1,8641:22421807,21779283 -g1,8641:23054099,21779283 -k1,8641:23054099,21779283:0 -h1,8641:25267119,21779283:0,0,0 -k1,8641:31966991,21779283:6699872 -g1,8641:31966991,21779283 -) -] -) -g1,8642:31966991,21880470 -g1,8642:7246811,21880470 -g1,8642:7246811,21880470 -g1,8642:31966991,21880470 -g1,8642:31966991,21880470 -) -h1,8642:7246811,22077078:0,0,0 -v1,8646:7246811,23791832:0,393216,0 -(1,8674:7246811,38828381:24720180,15429765,196608 -g1,8674:7246811,38828381 -g1,8674:7246811,38828381 -g1,8674:7050203,38828381 -(1,8674:7050203,38828381:0,15429765,196608 -r1,8688:32163599,38828381:25113396,15626373,196608 -k1,8674:7050203,38828381:-25113396 -) -(1,8674:7050203,38828381:25113396,15429765,196608 -[1,8674:7246811,38828381:24720180,15233157,0 -(1,8648:7246811,24005742:24720180,410518,101187 -(1,8647:7246811,24005742:0,0,0 -g1,8647:7246811,24005742 -g1,8647:7246811,24005742 -g1,8647:6919131,24005742 -(1,8647:6919131,24005742:0,0,0 -) -g1,8647:7246811,24005742 -) -k1,8648:7246811,24005742:0 -h1,8648:11988996,24005742:0,0,0 -k1,8648:31966992,24005742:19977996 -g1,8648:31966992,24005742 -) -(1,8673:7246811,24737456:24720180,379060,0 -(1,8650:7246811,24737456:0,0,0 -g1,8650:7246811,24737456 -g1,8650:7246811,24737456 -g1,8650:6919131,24737456 -(1,8650:6919131,24737456:0,0,0 -) -g1,8650:7246811,24737456 -) -h1,8673:7879102,24737456:0,0,0 -k1,8673:31966990,24737456:24087888 -g1,8673:31966990,24737456 -) -(1,8673:7246811,25403634:24720180,404226,7863 -h1,8673:7246811,25403634:0,0,0 -g1,8673:8195248,25403634 -h1,8673:9775976,25403634:0,0,0 -k1,8673:31966992,25403634:22191016 -g1,8673:31966992,25403634 -) -(1,8673:7246811,26069812:24720180,410518,101187 -h1,8673:7246811,26069812:0,0,0 -k1,8673:8089866,26069812:210764 -k1,8673:11462087,26069812:210764 -k1,8673:11988997,26069812:210764 -k1,8673:13780489,26069812:210764 -k1,8673:14307399,26069812:210764 -k1,8673:16415037,26069812:210764 -k1,8673:17890384,26069812:210764 -k1,8673:18417294,26069812:210764 -k1,8673:22737952,26069812:210764 -k1,8673:25794027,26069812:210764 -k1,8673:26320937,26069812:210764 -k1,8673:29693158,26069812:210764 -k1,8673:30220068,26069812:210764 -h1,8673:33697670,26069812:0,0,0 -k1,8673:33697670,26069812:0 -k1,8673:33697670,26069812:0 -) -(1,8673:7246811,26735990:24720180,379060,0 -h1,8673:7246811,26735990:0,0,0 -h1,8673:7879102,26735990:0,0,0 -k1,8673:31966990,26735990:24087888 -g1,8673:31966990,26735990 -) -(1,8673:7246811,27402168:24720180,404226,6290 -h1,8673:7246811,27402168:0,0,0 -g1,8673:8195248,27402168 -h1,8673:11356705,27402168:0,0,0 -k1,8673:31966991,27402168:20610286 -g1,8673:31966991,27402168 -) -(1,8673:7246811,28068346:24720180,404226,82312 -h1,8673:7246811,28068346:0,0,0 -g1,8673:8195248,28068346 -g1,8673:8511394,28068346 -g1,8673:8827540,28068346 -g1,8673:9143686,28068346 -g1,8673:10408269,28068346 -g1,8673:10724415,28068346 -g1,8673:11040561,28068346 -g1,8673:11356707,28068346 -g1,8673:11672853,28068346 -g1,8673:12621290,28068346 -g1,8673:14834310,28068346 -g1,8673:15150456,28068346 -g1,8673:15466602,28068346 -g1,8673:15782748,28068346 -g1,8673:16098894,28068346 -g1,8673:17047331,28068346 -g1,8673:17363477,28068346 -g1,8673:17679623,28068346 -g1,8673:17995769,28068346 -h1,8673:18944206,28068346:0,0,0 -k1,8673:31966991,28068346:13022785 -g1,8673:31966991,28068346 -) -(1,8673:7246811,28734524:24720180,388497,9436 -h1,8673:7246811,28734524:0,0,0 -g1,8673:8195248,28734524 -g1,8673:10408268,28734524 -g1,8673:12621288,28734524 -g1,8673:14834308,28734524 -g1,8673:15150454,28734524 -g1,8673:17047328,28734524 -g1,8673:17363474,28734524 -h1,8673:18944202,28734524:0,0,0 -k1,8673:31966991,28734524:13022789 -g1,8673:31966991,28734524 -) -(1,8673:7246811,29400702:24720180,379060,0 -h1,8673:7246811,29400702:0,0,0 -h1,8673:7879102,29400702:0,0,0 -k1,8673:31966990,29400702:24087888 -g1,8673:31966990,29400702 -) -(1,8673:7246811,30066880:24720180,410518,7863 -h1,8673:7246811,30066880:0,0,0 -g1,8673:8195248,30066880 -h1,8673:12305142,30066880:0,0,0 -k1,8673:31966990,30066880:19661848 -g1,8673:31966990,30066880 -) -(1,8673:7246811,30733058:24720180,404226,76021 -h1,8673:7246811,30733058:0,0,0 -g1,8673:8195248,30733058 -g1,8673:8511394,30733058 -g1,8673:8827540,30733058 -g1,8673:9143686,30733058 -g1,8673:9459832,30733058 -g1,8673:9775978,30733058 -g1,8673:10092124,30733058 -g1,8673:10408270,30733058 -g1,8673:10724416,30733058 -g1,8673:11040562,30733058 -g1,8673:11356708,30733058 -g1,8673:11672854,30733058 -g1,8673:11989000,30733058 -g1,8673:14834311,30733058 -g1,8673:16415040,30733058 -g1,8673:18311914,30733058 -g1,8673:18944206,30733058 -g1,8673:20841080,30733058 -k1,8673:20841080,30733058:0 -h1,8673:23370245,30733058:0,0,0 -k1,8673:31966991,30733058:8596746 -g1,8673:31966991,30733058 -) -(1,8673:7246811,31399236:24720180,404226,101187 -h1,8673:7246811,31399236:0,0,0 -g1,8673:8195248,31399236 -g1,8673:11988996,31399236 -g1,8673:12305142,31399236 -g1,8673:12621288,31399236 -g1,8673:14834308,31399236 -g1,8673:15150454,31399236 -g1,8673:15466600,31399236 -g1,8673:15782746,31399236 -g1,8673:16098892,31399236 -g1,8673:18311912,31399236 -g1,8673:18628058,31399236 -g1,8673:20841078,31399236 -g1,8673:21157224,31399236 -g1,8673:21789516,31399236 -g1,8673:23686390,31399236 -h1,8673:24634827,31399236:0,0,0 -k1,8673:31966991,31399236:7332164 -g1,8673:31966991,31399236 -) -(1,8673:7246811,32065414:24720180,388497,101187 -h1,8673:7246811,32065414:0,0,0 -g1,8673:8195248,32065414 -g1,8673:10408268,32065414 -g1,8673:10724414,32065414 -g1,8673:11040560,32065414 -g1,8673:11356706,32065414 -g1,8673:11672852,32065414 -g1,8673:11988998,32065414 -g1,8673:12305144,32065414 -g1,8673:12621290,32065414 -g1,8673:14834310,32065414 -g1,8673:15150456,32065414 -g1,8673:15466602,32065414 -g1,8673:15782748,32065414 -g1,8673:16098894,32065414 -g1,8673:18311914,32065414 -g1,8673:18628060,32065414 -g1,8673:18944206,32065414 -g1,8673:20841080,32065414 -g1,8673:23686391,32065414 -h1,8673:24634828,32065414:0,0,0 -k1,8673:31966991,32065414:7332163 -g1,8673:31966991,32065414 -) -(1,8673:7246811,32731592:24720180,388497,101187 -h1,8673:7246811,32731592:0,0,0 -g1,8673:8195248,32731592 -g1,8673:10408268,32731592 -g1,8673:10724414,32731592 -g1,8673:11040560,32731592 -g1,8673:11356706,32731592 -g1,8673:11672852,32731592 -g1,8673:11988998,32731592 -g1,8673:12305144,32731592 -g1,8673:12621290,32731592 -g1,8673:14834310,32731592 -g1,8673:15150456,32731592 -g1,8673:15466602,32731592 -g1,8673:15782748,32731592 -g1,8673:16098894,32731592 -g1,8673:18311914,32731592 -g1,8673:18628060,32731592 -g1,8673:18944206,32731592 -g1,8673:20841080,32731592 -g1,8673:23686391,32731592 -h1,8673:24634828,32731592:0,0,0 -k1,8673:31966991,32731592:7332163 -g1,8673:31966991,32731592 -) -(1,8673:7246811,33397770:24720180,388497,101187 -h1,8673:7246811,33397770:0,0,0 -g1,8673:8195248,33397770 -g1,8673:10408268,33397770 -g1,8673:10724414,33397770 -g1,8673:11040560,33397770 -g1,8673:11356706,33397770 -g1,8673:11672852,33397770 -g1,8673:11988998,33397770 -g1,8673:12305144,33397770 -g1,8673:14834310,33397770 -g1,8673:15150456,33397770 -g1,8673:15466602,33397770 -g1,8673:15782748,33397770 -g1,8673:16098894,33397770 -g1,8673:18311914,33397770 -g1,8673:18628060,33397770 -g1,8673:20841080,33397770 -g1,8673:23686391,33397770 -h1,8673:24634828,33397770:0,0,0 -k1,8673:31966991,33397770:7332163 -g1,8673:31966991,33397770 -) -(1,8673:7246811,34063948:24720180,388497,101187 -h1,8673:7246811,34063948:0,0,0 -g1,8673:8195248,34063948 -g1,8673:10408268,34063948 -g1,8673:10724414,34063948 -g1,8673:11040560,34063948 -g1,8673:11356706,34063948 -g1,8673:11672852,34063948 -g1,8673:11988998,34063948 -g1,8673:12305144,34063948 -g1,8673:14834310,34063948 -g1,8673:15150456,34063948 -g1,8673:15466602,34063948 -g1,8673:15782748,34063948 -g1,8673:16098894,34063948 -g1,8673:18311914,34063948 -g1,8673:18628060,34063948 -g1,8673:20841080,34063948 -g1,8673:23686391,34063948 -h1,8673:24634828,34063948:0,0,0 -k1,8673:31966991,34063948:7332163 -g1,8673:31966991,34063948 -) -(1,8673:7246811,34730126:24720180,388497,101187 -h1,8673:7246811,34730126:0,0,0 -g1,8673:8195248,34730126 -g1,8673:10408268,34730126 -g1,8673:10724414,34730126 -g1,8673:11040560,34730126 -g1,8673:11356706,34730126 -g1,8673:11672852,34730126 -g1,8673:11988998,34730126 -g1,8673:12305144,34730126 -g1,8673:14834310,34730126 -g1,8673:15150456,34730126 -g1,8673:15466602,34730126 -g1,8673:15782748,34730126 -g1,8673:16098894,34730126 -g1,8673:18311914,34730126 -g1,8673:18628060,34730126 -g1,8673:20841080,34730126 -g1,8673:23686391,34730126 -h1,8673:24634828,34730126:0,0,0 -k1,8673:31966991,34730126:7332163 -g1,8673:31966991,34730126 -) -(1,8673:7246811,35396304:24720180,379060,0 -h1,8673:7246811,35396304:0,0,0 -g1,8673:8195248,35396304 -k1,8673:8195248,35396304:0 -h1,8673:9143686,35396304:0,0,0 -k1,8673:31966990,35396304:22823304 -g1,8673:31966990,35396304 -) -(1,8673:7246811,36062482:24720180,410518,107478 -h1,8673:7246811,36062482:0,0,0 -g1,8673:8195248,36062482 -g1,8673:10724414,36062482 -g1,8673:12937434,36062482 -g1,8673:13253580,36062482 -g1,8673:13885872,36062482 -g1,8673:15782747,36062482 -g1,8673:17679621,36062482 -g1,8673:19260350,36062482 -g1,8673:20841079,36062482 -g1,8673:22105663,36062482 -g1,8673:23686392,36062482 -g1,8673:24950976,36062482 -g1,8673:26215559,36062482 -g1,8673:26847851,36062482 -g1,8673:27480143,36062482 -h1,8673:27796289,36062482:0,0,0 -k1,8673:31966991,36062482:4170702 -g1,8673:31966991,36062482 -) -(1,8673:7246811,36728660:24720180,379060,0 -h1,8673:7246811,36728660:0,0,0 -h1,8673:7879102,36728660:0,0,0 -k1,8673:31966990,36728660:24087888 -g1,8673:31966990,36728660 -) -(1,8673:7246811,37394838:24720180,410518,107478 -h1,8673:7246811,37394838:0,0,0 -g1,8673:8195248,37394838 -g1,8673:11040559,37394838 -g1,8673:13885870,37394838 -g1,8673:16098890,37394838 -g1,8673:17995764,37394838 -g1,8673:18944201,37394838 -g1,8673:19892638,37394838 -g1,8673:22421804,37394838 -g1,8673:23370241,37394838 -h1,8673:25583261,37394838:0,0,0 -k1,8673:31966991,37394838:6383730 -g1,8673:31966991,37394838 -) -(1,8673:7246811,38061016:24720180,404226,107478 -h1,8673:7246811,38061016:0,0,0 -g1,8673:8195248,38061016 -g1,8673:11040559,38061016 -g1,8673:14518162,38061016 -g1,8673:14834308,38061016 -g1,8673:19892639,38061016 -g1,8673:23370242,38061016 -g1,8673:23686388,38061016 -h1,8673:25583262,38061016:0,0,0 -k1,8673:31966991,38061016:6383729 -g1,8673:31966991,38061016 -) -(1,8673:7246811,38727194:24720180,404226,101187 -h1,8673:7246811,38727194:0,0,0 -g1,8673:8195248,38727194 -g1,8673:12305142,38727194 -g1,8673:12621288,38727194 -g1,8673:14202017,38727194 -g1,8673:15150454,38727194 -g1,8673:15782746,38727194 -g1,8673:17047329,38727194 -g1,8673:17995766,38727194 -g1,8673:19260349,38727194 -g1,8673:19576495,38727194 -g1,8673:22421807,38727194 -g1,8673:23054099,38727194 -k1,8673:23054099,38727194:0 -h1,8673:25267119,38727194:0,0,0 -k1,8673:31966991,38727194:6699872 -g1,8673:31966991,38727194 -) -] -) -g1,8674:31966991,38828381 -g1,8674:7246811,38828381 -g1,8674:7246811,38828381 -g1,8674:31966991,38828381 -g1,8674:31966991,38828381 -) -h1,8674:7246811,39024989:0,0,0 -(1,8678:7246811,40390765:24720180,513147,126483 -h1,8677:7246811,40390765:983040,0,0 -k1,8677:9102850,40390765:245164 -k1,8677:10367100,40390765:245165 -k1,8677:11979345,40390765:245164 -k1,8677:12883801,40390765:245164 -k1,8677:16264208,40390765:245165 -k1,8677:17889560,40390765:245164 -k1,8677:20263990,40390765:245165 -k1,8677:22288456,40390765:245164 -k1,8677:23552705,40390765:245164 -k1,8677:27078602,40390765:245165 -k1,8677:30369879,40390765:245164 -k1,8678:31966991,40390765:0 -) -(1,8678:7246811,41232253:24720180,513147,134348 -k1,8677:10650931,41232253:215138 -k1,8677:11525362,41232253:215139 -k1,8677:14331138,41232253:215138 -k1,8677:15565361,41232253:215138 -k1,8677:19389567,41232253:215138 -k1,8677:21693338,41232253:215139 -k1,8677:22439973,41232253:215138 -k1,8677:26148835,41232253:215138 -k1,8677:27046858,41232253:215138 -k1,8677:28501938,41232253:215139 -k1,8677:29204648,41232253:215122 -k1,8677:31966991,41232253:0 -) -(1,8678:7246811,42073741:24720180,513147,126483 -k1,8677:8370152,42073741:188798 -k1,8677:9218243,42073741:188799 -k1,8677:12368613,42073741:188798 -k1,8677:14695851,42073741:188798 -k1,8677:16406396,42073741:188799 -k1,8677:16951054,42073741:188798 -k1,8677:19902195,42073741:188798 -k1,8677:21025537,42073741:188799 -k1,8677:21873627,42073741:188798 -k1,8677:24692385,42073741:188798 -k1,8677:28025601,42073741:188799 -k1,8677:30489154,42073741:188798 -k1,8678:31966991,42073741:0 -) -(1,8678:7246811,42915229:24720180,513147,126483 -k1,8677:9472943,42915229:233838 -k1,8677:10516150,42915229:233837 -k1,8677:11769073,42915229:233838 -k1,8677:13704881,42915229:233838 -k1,8677:15718676,42915229:233837 -k1,8677:16767782,42915229:233838 -k1,8677:18067890,42915229:233837 -k1,8677:20081030,42915229:233838 -k1,8677:21333953,42915229:233838 -k1,8677:23133445,42915229:233837 -k1,8677:26146010,42915229:233838 -k1,8677:27141376,42915229:233838 -(1,8677:27141376,42915229:0,452978,115847 -r1,8688:29609913,42915229:2468537,568825,115847 -k1,8677:27141376,42915229:-2468537 -) -(1,8677:27141376,42915229:2468537,452978,115847 -k1,8677:27141376,42915229:3277 -h1,8677:29606636,42915229:0,411205,112570 -) -k1,8677:29843750,42915229:233837 -k1,8677:30763750,42915229:233838 -k1,8677:31966991,42915229:0 -) -(1,8678:7246811,43756717:24720180,513147,7863 -g1,8677:9011695,43756717 -g1,8677:10703834,43756717 -g1,8677:11969334,43756717 -g1,8677:13497633,43756717 -g1,8677:15090813,43756717 -g1,8677:16309127,43756717 -g1,8677:18609440,43756717 -g1,8677:19467961,43756717 -g1,8677:22860104,43756717 -g1,8677:24953323,43756717 -k1,8678:31966991,43756717:5047588 -g1,8678:31966991,43756717 -) -] -) -] -r1,8688:32583029,44354404:26214,38493523,0 -) -] -) -) -g1,8678:32583029,43764580 -) -h1,8678:6630773,44380618:0,0,0 -] -(1,8688:32583029,45706769:0,0,0 -g1,8688:32583029,45706769 -) -) -] -(1,8688:6630773,47279633:25952256,0,0 -h1,8688:6630773,47279633:25952256,0,0 -) -] -(1,8688:4262630,4025873:0,0,0 -[1,8688:-473656,4025873:0,0,0 -(1,8688:-473656,-710413:0,0,0 -(1,8688:-473656,-710413:0,0,0 -g1,8688:-473656,-710413 -) -g1,8688:-473656,-710413 -) -] -) -] -!27238 -}165 -Input:1339:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1340:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1341:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1342:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1343:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1344:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1345:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1346:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1347:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1348:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1349:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1350:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1351:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1352:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1353:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1392 -{166 -[1,8745:4262630,47279633:28320399,43253760,0 -(1,8745:4262630,4025873:0,0,0 -[1,8745:-473656,4025873:0,0,0 -(1,8745:-473656,-710413:0,0,0 -(1,8745:-473656,-644877:0,0,0 -k1,8745:-473656,-644877:-65536 -) -(1,8745:-473656,4736287:0,0,0 -k1,8745:-473656,4736287:5209943 -) -g1,8745:-473656,-710413 -) -] -) -[1,8745:6630773,47279633:25952256,43253760,0 -[1,8745:6630773,4812305:25952256,786432,0 -(1,8745:6630773,4812305:25952256,505283,11795 -(1,8745:6630773,4812305:25952256,505283,11795 -g1,8745:3078558,4812305 -[1,8745:3078558,4812305:0,0,0 -(1,8745:3078558,2439708:0,1703936,0 -k1,8745:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,8745:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,8745:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,8745:3078558,4812305:0,0,0 -(1,8745:3078558,2439708:0,1703936,0 -g1,8745:29030814,2439708 -g1,8745:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,8745:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,8745:37855564,2439708:1179648,16384,0 -) -) -k1,8745:3078556,2439708:-34777008 -) -] -[1,8745:3078558,4812305:0,0,0 -(1,8745:3078558,49800853:0,16384,2228224 -k1,8745:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,8745:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,8745:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,8745:3078558,4812305:0,0,0 -(1,8745:3078558,49800853:0,16384,2228224 -g1,8745:29030814,49800853 -g1,8745:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,8745:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,8745:37855564,49800853:1179648,16384,0 -) -) -k1,8745:3078556,49800853:-34777008 -) -] -g1,8745:6630773,4812305 -g1,8745:6630773,4812305 -g1,8745:10592424,4812305 -g1,8745:12629938,4812305 -g1,8745:15030521,4812305 -k1,8745:31387652,4812305:16357131 -) -) -] -[1,8745:6630773,45706769:25952256,40108032,0 -(1,8745:6630773,45706769:25952256,40108032,0 -(1,8745:6630773,45706769:0,0,0 -g1,8745:6630773,45706769 -) -[1,8745:6630773,45706769:25952256,40108032,0 -(1,8680:6630773,6254097:25952256,564462,139132 -(1,8680:6630773,6254097:2450326,534184,12975 -g1,8680:6630773,6254097 -g1,8680:9081099,6254097 -) -g1,8680:12446963,6254097 -g1,8680:13416569,6254097 -g1,8680:17776549,6254097 -k1,8680:32583029,6254097:11452872 -g1,8680:32583029,6254097 -) -(1,8688:6630773,7488801:25952256,513147,126483 -k1,8686:8550060,7488801:136052 -k1,8686:9041973,7488801:136053 -k1,8686:10990751,7488801:136052 -k1,8686:13114511,7488801:136053 -k1,8686:15918534,7488801:136052 -k1,8686:17521283,7488801:136053 -k1,8686:21423034,7488801:136052 -k1,8686:23783379,7488801:136053 -k1,8686:25110876,7488801:136052 -k1,8686:28817330,7488801:136053 -k1,8686:32583029,7488801:0 -) -(1,8688:6630773,8330289:25952256,513147,126483 -k1,8686:9781088,8330289:135004 -k1,8686:10784444,8330289:135004 -k1,8686:12256382,8330289:135004 -k1,8686:13491081,8330289:135005 -k1,8686:14084182,8330289:135004 -k1,8686:16750842,8330289:135004 -k1,8686:17501884,8330289:135004 -k1,8686:21055246,8330289:135004 -k1,8686:24668246,8330289:135004 -k1,8686:25999938,8330289:135005 -k1,8686:28678394,8330289:135004 -k1,8686:30897443,8330289:135004 -k1,8686:31563944,8330289:135004 -k1,8686:32583029,8330289:0 -) -(1,8688:6630773,9171777:25952256,513147,126483 -k1,8686:8426677,9171777:142431 -k1,8686:9516760,9171777:142432 -k1,8686:10425307,9171777:142431 -k1,8686:12380465,9171777:142432 -k1,8686:14840904,9171777:142431 -k1,8686:16348450,9171777:142431 -k1,8686:17177044,9171777:142432 -k1,8686:20737178,9171777:142431 -k1,8686:21495648,9171777:142432 -k1,8686:24392557,9171777:142431 -k1,8686:27317648,9171777:142432 -k1,8686:29008695,9171777:142431 -k1,8686:32583029,9171777:0 -) -(1,8688:6630773,10013265:25952256,513147,126483 -k1,8686:7817781,10013265:167923 -k1,8686:9371791,10013265:167924 -k1,8686:10199006,10013265:167923 -k1,8686:12921522,10013265:167923 -k1,8686:13620943,10013265:167924 -k1,8686:14807951,10013265:167923 -k1,8686:17054021,10013265:167923 -k1,8686:17881236,10013265:167923 -k1,8686:19068245,10013265:167924 -k1,8686:23001867,10013265:167923 -k1,8686:26599289,10013265:167923 -k1,8686:27585102,10013265:167924 -k1,8686:28772110,10013265:167923 -k1,8686:32583029,10013265:0 -) -(1,8688:6630773,10854753:25952256,513147,134348 -k1,8686:9386007,10854753:197364 -k1,8686:10602456,10854753:197364 -k1,8686:12626965,10854753:197365 -k1,8686:13633699,10854753:197364 -k1,8686:16228370,10854753:197364 -k1,8686:19087151,10854753:197364 -k1,8686:19816013,10854753:197365 -k1,8686:21881808,10854753:197364 -k1,8686:23275859,10854753:197364 -k1,8686:25065093,10854753:197364 -k1,8686:28107375,10854753:197364 -k1,8686:28964032,10854753:197365 -k1,8686:32051532,10854753:197362 -k1,8686:32583029,10854753:0 -) -(1,8688:6630773,11696241:25952256,513147,126483 -k1,8686:7402272,11696241:155461 -k1,8686:8576817,11696241:155460 -k1,8686:11563433,11696241:155461 -k1,8686:12378186,11696241:155461 -k1,8686:13552732,11696241:155461 -k1,8686:16598985,11696241:155460 -k1,8686:17945891,11696241:155461 -k1,8686:19120437,11696241:155461 -k1,8686:23721204,11696241:155460 -k1,8686:24535957,11696241:155461 -k1,8686:25710503,11696241:155461 -k1,8686:28039138,11696241:155461 -k1,8686:28853890,11696241:155460 -k1,8686:30028436,11696241:155461 -k1,8686:32583029,11696241:0 -) -(1,8688:6630773,12537729:25952256,505283,134348 -g1,8686:8105988,12537729 -g1,8686:10153332,12537729 -g1,8686:12327161,12537729 -k1,8688:32583029,12537729:20255868 -g1,8688:32583029,12537729 -) -(1,8689:6630773,15345297:25952256,32768,229376 -(1,8689:6630773,15345297:0,32768,229376 -(1,8689:6630773,15345297:5505024,32768,229376 -r1,8745:12135797,15345297:5505024,262144,229376 -) -k1,8689:6630773,15345297:-5505024 -) -(1,8689:6630773,15345297:25952256,32768,0 -r1,8745:32583029,15345297:25952256,32768,0 -) -) -(1,8689:6630773,16949625:25952256,606339,14155 -(1,8689:6630773,16949625:1974731,582746,14155 -g1,8689:6630773,16949625 -g1,8689:8605504,16949625 -) -g1,8689:13567104,16949625 -g1,8689:16080541,16949625 -k1,8689:32583029,16949625:13634370 -g1,8689:32583029,16949625 -) -(1,8694:6630773,18184329:25952256,513147,126483 -k1,8693:8745474,18184329:142067 -k1,8693:11205550,18184329:142068 -k1,8693:13063350,18184329:142067 -k1,8693:14224503,18184329:142068 -k1,8693:18106054,18184329:142067 -k1,8693:18907414,18184329:142068 -k1,8693:21894399,18184329:142067 -k1,8693:25575411,18184329:142068 -k1,8693:28785218,18184329:142067 -k1,8693:32583029,18184329:0 -) -(1,8694:6630773,19025817:25952256,513147,122846 -k1,8693:8631240,19025817:187741 -k1,8693:11310661,19025817:187742 -k1,8693:13210858,19025817:187741 -k1,8693:14792550,19025817:187741 -k1,8693:17675788,19025817:187742 -(1,8693:17675788,19025817:0,452978,122846 -r1,8745:19440901,19025817:1765113,575824,122846 -k1,8693:17675788,19025817:-1765113 -) -(1,8693:17675788,19025817:1765113,452978,122846 -k1,8693:17675788,19025817:3277 -h1,8693:19437624,19025817:0,411205,112570 -) -k1,8693:19628642,19025817:187741 -k1,8693:20807943,19025817:187741 -k1,8693:22645882,19025817:187742 -k1,8693:25308262,19025817:187741 -k1,8693:26687448,19025817:187741 -k1,8693:28556844,19025817:187742 -k1,8693:29763670,19025817:187741 -k1,8693:32583029,19025817:0 -) -(1,8694:6630773,19867305:25952256,513147,7863 -g1,8693:10611429,19867305 -g1,8693:11462086,19867305 -g1,8693:12409081,19867305 -g1,8693:15196982,19867305 -g1,8693:16082373,19867305 -g1,8693:17560209,19867305 -g1,8693:18445600,19867305 -g1,8693:19663914,19867305 -g1,8693:21076870,19867305 -k1,8694:32583029,19867305:8636993 -g1,8694:32583029,19867305 -) -(1,8715:6630773,27074052:25952256,6477988,0 -k1,8715:7802258,27074052:1171485 -(1,8695:7802258,27074052:0,0,0 -g1,8695:7802258,27074052 -g1,8695:7802258,27074052 -g1,8695:7474578,27074052 -(1,8695:7474578,27074052:0,0,0 -) -g1,8695:7802258,27074052 -) -(1,8713:7802258,27074052:23609287,6477988,0 -g1,8713:11073472,27074052 -(1,8713:11073472,21224518:0,0,0 -(1,8713:11073472,21224518:0,0,0 -g1,8697:11073472,21224518 -(1,8698:11073472,21224518:0,0,0 -(1,8698:11073472,21224518:0,0,0 -g1,8698:11073472,21224518 -g1,8698:11073472,21224518 -g1,8698:11073472,21224518 -g1,8698:11073472,21224518 -g1,8698:11073472,21224518 -(1,8698:11073472,21224518:0,0,0 -(1,8698:11073472,21224518:4910168,454754,104590 -(1,8698:11073472,21224518:4910168,454754,104590 -g1,8698:12974475,21224518 -$1,8698:12974475,21224518 -$1,8698:13581994,21224518 -g1,8698:13761301,21224518 -(1,8698:13761301,21224518:0,414307,104590 -r1,8745:15983640,21224518:2222339,518897,104590 -k1,8698:13761301,21224518:-2222339 -) -(1,8698:13761301,21224518:2222339,414307,104590 -k1,8698:13761301,21224518:3277 -h1,8698:15980363,21224518:0,370085,101313 -) -) -g1,8698:15983640,21224518 -) -) -g1,8698:11073472,21224518 -g1,8698:11073472,21224518 -) -) -g1,8698:11073472,21224518 -g1,8699:11073472,21224518 -(1,8699:11073472,21224518:0,0,0 -(1,8699:11073472,21224518:0,0,0 -g1,8699:11073472,21224518 -g1,8699:11073472,21224518 -g1,8699:11073472,21224518 -g1,8699:11073472,21224518 -g1,8699:11073472,21224518 -(1,8699:11073472,21224518:0,0,0 -(1,8699:11073472,21224518:5792540,454754,104590 -(1,8699:11073472,21224518:5792540,454754,104590 -g1,8699:14806469,21224518 -$1,8699:14806469,21224518 -$1,8699:15413988,21224518 -g1,8699:15593295,21224518 -(1,8699:15593295,21224518:0,408008,104590 -r1,8745:16866012,21224518:1272717,512598,104590 -k1,8699:15593295,21224518:-1272717 -) -(1,8699:15593295,21224518:1272717,408008,104590 -k1,8699:15593295,21224518:3277 -h1,8699:16862735,21224518:0,370085,101313 -) -) -g1,8699:16866012,21224518 -) -) -g1,8699:11073472,21224518 -g1,8699:11073472,21224518 -) -) -g1,8699:11073472,21224518 -g1,8700:11073472,21224518 -(1,8700:11073472,21224518:0,0,0 -(1,8700:11073472,21224518:0,0,0 -g1,8700:11073472,21224518 -g1,8700:11073472,21224518 -g1,8700:11073472,21224518 -g1,8700:11073472,21224518 -g1,8700:11073472,21224518 -(1,8700:11073472,21224518:0,0,0 -(1,8700:11073472,21224518:6123041,454754,104590 -(1,8700:11073472,21224518:6123041,454754,104590 -g1,8700:14503889,21224518 -$1,8700:14503889,21224518 -$1,8700:15111408,21224518 -g1,8700:15290715,21224518 -(1,8700:15290715,21224518:0,414307,104590 -r1,8745:17196513,21224518:1905798,518897,104590 -k1,8700:15290715,21224518:-1905798 -) -(1,8700:15290715,21224518:1905798,414307,104590 -k1,8700:15290715,21224518:3277 -h1,8700:17193236,21224518:0,370085,101313 -) -) -g1,8700:17196513,21224518 -) -) -g1,8700:11073472,21224518 -g1,8700:11073472,21224518 -) -) -g1,8700:11073472,21224518 -(1,8701:11073472,21224518:0,0,0 -(1,8701:11073472,21224518:0,0,0 -g1,8701:11073472,21224518 -g1,8701:11073472,21224518 -g1,8701:11073472,21224518 -g1,8701:11073472,21224518 -g1,8701:11073472,21224518 -(1,8701:11073472,21224518:0,0,0 -(1,8701:11073472,21224518:1589257,408008,110889 -(1,8701:11073472,21224518:1589257,408008,110889 -(1,8701:11073472,21224518:0,408008,110889 -r1,8745:12662729,21224518:1589257,518897,110889 -k1,8701:11073472,21224518:-1589257 -) -(1,8701:11073472,21224518:1589257,408008,110889 -k1,8701:11073472,21224518:3277 -h1,8701:12659452,21224518:0,370085,101313 -) -) -g1,8701:12662729,21224518 -) -) -g1,8701:11073472,21224518 -g1,8701:11073472,21224518 -) -) -g1,8701:11073472,21224518 -(1,8702:11073472,21224518:0,0,0 -(1,8702:11073472,21224518:0,0,0 -g1,8702:11073472,21224518 -g1,8702:11073472,21224518 -g1,8702:11073472,21224518 -g1,8702:11073472,21224518 -g1,8702:11073472,21224518 -(1,8702:11073472,21224518:0,0,0 -(1,8702:11073472,21224518:2866617,454754,120913 -(1,8702:11073472,21224518:2866617,454754,120913 -(1,8702:11073472,21224518:0,408008,110889 -r1,8745:12029648,21224518:956176,518897,110889 -k1,8702:11073472,21224518:-956176 -) -(1,8702:11073472,21224518:956176,408008,110889 -k1,8702:11073472,21224518:3277 -h1,8702:12026371,21224518:0,370085,101313 -) -g1,8702:12208955,21224518 -) -g1,8702:13940089,21224518 -) -) -g1,8702:11073472,21224518 -g1,8702:11073472,21224518 -) -) -g1,8702:11073472,21224518 -(1,8703:11073472,21224518:0,0,0 -(1,8703:11073472,21224518:0,0,0 -g1,8703:11073472,21224518 -g1,8703:11073472,21224518 -g1,8703:11073472,21224518 -g1,8703:11073472,21224518 -g1,8703:11073472,21224518 -(1,8703:11073472,21224518:0,0,0 -(1,8703:11073472,21224518:2855420,408008,104590 -(1,8703:11073472,21224518:2855420,408008,104590 -(1,8703:11073472,21224518:0,408008,104590 -r1,8745:13928892,21224518:2855420,512598,104590 -k1,8703:11073472,21224518:-2855420 -) -(1,8703:11073472,21224518:2855420,408008,104590 -k1,8703:11073472,21224518:3277 -h1,8703:13925615,21224518:0,370085,101313 -) -) -g1,8703:13928892,21224518 -) -) -g1,8703:11073472,21224518 -g1,8703:11073472,21224518 -) -) -g1,8703:11073472,21224518 -g1,8704:11073472,21224518 -(1,8704:11073472,21224518:0,0,0 -(1,8704:11073472,21224518:0,0,0 -g1,8704:11073472,21224518 -g1,8704:11073472,21224518 -g1,8704:11073472,21224518 -g1,8704:11073472,21224518 -g1,8704:11073472,21224518 -(1,8704:11073472,21224518:0,0,0 -(1,8704:11073472,21224518:2222339,408008,104590 -(1,8704:11073472,21224518:2222339,408008,104590 -(1,8704:11073472,21224518:0,408008,104590 -r1,8745:13295811,21224518:2222339,512598,104590 -k1,8704:11073472,21224518:-2222339 -) -(1,8704:11073472,21224518:2222339,408008,104590 -k1,8704:11073472,21224518:3277 -h1,8704:13292534,21224518:0,370085,101313 -) -) -g1,8704:13295811,21224518 -) -) -g1,8704:11073472,21224518 -g1,8704:11073472,21224518 -) -) -g1,8704:11073472,21224518 -g1,8705:11073472,21224518 -(1,8705:11073472,21224518:0,0,0 -(1,8705:11073472,21224518:0,0,0 -g1,8705:11073472,21224518 -g1,8705:11073472,21224518 -g1,8705:11073472,21224518 -g1,8705:11073472,21224518 -g1,8705:11073472,21224518 -(1,8705:11073472,21224518:0,0,0 -(1,8705:11073472,21224518:1905798,408008,104590 -(1,8705:11073472,21224518:1905798,408008,104590 -(1,8705:11073472,21224518:0,408008,104590 -r1,8745:12979270,21224518:1905798,512598,104590 -k1,8705:11073472,21224518:-1905798 -) -(1,8705:11073472,21224518:1905798,408008,104590 -k1,8705:11073472,21224518:3277 -h1,8705:12975993,21224518:0,370085,101313 -) -) -g1,8705:12979270,21224518 -) -) -g1,8705:11073472,21224518 -g1,8705:11073472,21224518 -) -) -g1,8705:11073472,21224518 -g1,8706:11073472,21224518 -g1,8706:11073472,21224518 -g1,8706:11073472,21224518 -g1,8706:11073472,21224518 -g1,8706:11073472,21224518 -g1,8706:11073472,21224518 -g1,8707:11073472,21224518 -g1,8707:11073472,21224518 -g1,8707:11073472,21224518 -g1,8707:11073472,21224518 -g1,8707:11073472,21224518 -g1,8707:11073472,21224518 -g1,8708:11073472,21224518 -g1,8708:11073472,21224518 -g1,8708:11073472,21224518 -g1,8708:11073472,21224518 -g1,8708:11073472,21224518 -g1,8708:11073472,21224518 -g1,8709:11073472,21224518 -g1,8709:11073472,21224518 -g1,8709:11073472,21224518 -g1,8709:11073472,21224518 -g1,8709:11073472,21224518 -g1,8709:11073472,21224518 -g1,8710:11073472,21224518 -g1,8710:11073472,21224518 -g1,8710:11073472,21224518 -g1,8710:11073472,21224518 -g1,8710:11073472,21224518 -g1,8710:11073472,21224518 -g1,8711:11073472,21224518 -g1,8711:11073472,21224518 -g1,8711:11073472,21224518 -g1,8711:11073472,21224518 -g1,8711:11073472,21224518 -g1,8711:11073472,21224518 -g1,8712:11073472,21224518 -g1,8712:11073472,21224518 -g1,8712:11073472,21224518 -g1,8712:11073472,21224518 -g1,8712:11073472,21224518 -g1,8712:11073472,21224518 -g1,8713:11073472,21224518 -g1,8713:11073472,21224518 -) -g1,8713:11073472,21224518 -) -) -g1,8715:31411545,27074052 -k1,8715:32583029,27074052:1171484 -) -(1,8718:6630773,28570900:25952256,513147,134348 -h1,8717:6630773,28570900:983040,0,0 -k1,8717:8864171,28570900:208336 -k1,8717:10091591,28570900:208335 -k1,8717:12854520,28570900:208336 -k1,8717:13722147,28570900:208335 -k1,8717:14949568,28570900:208336 -(1,8717:14949568,28570900:0,414482,115847 -r1,8745:18824952,28570900:3875384,530329,115847 -k1,8717:14949568,28570900:-3875384 -) -(1,8717:14949568,28570900:3875384,414482,115847 -k1,8717:14949568,28570900:3277 -h1,8717:18821675,28570900:0,411205,112570 -) -k1,8717:19033287,28570900:208335 -k1,8717:20630986,28570900:208336 -k1,8717:21773864,28570900:208335 -k1,8717:23837524,28570900:208336 -k1,8717:26531640,28570900:208335 -h1,8717:28074358,28570900:0,0,0 -k1,8717:28282694,28570900:208336 -k1,8717:29300399,28570900:208335 -k1,8717:31006888,28570900:208336 -h1,8717:32202265,28570900:0,0,0 -k1,8717:32583029,28570900:0 -) -(1,8718:6630773,29412388:25952256,513147,134348 -k1,8717:7857662,29412388:207804 -k1,8717:10421485,29412388:207804 -k1,8717:14410715,29412388:207803 -k1,8717:15150016,29412388:207804 -k1,8717:16424091,29412388:207804 -k1,8717:16987755,29412388:207804 -k1,8717:18779563,29412388:207803 -k1,8717:23677123,29412388:207804 -k1,8717:24571089,29412388:207804 -k1,8717:26593585,29412388:207804 -k1,8717:28190751,29412388:207803 -k1,8717:31015408,29412388:207804 -k1,8717:32583029,29412388:0 -) -(1,8718:6630773,30253876:25952256,505283,126483 -g1,8717:7461769,30253876 -g1,8717:9041842,30253876 -g1,8717:10448244,30253876 -g1,8717:12690230,30253876 -g1,8717:13505497,30253876 -g1,8717:14723811,30253876 -g1,8717:20451657,30253876 -g1,8717:21928183,30253876 -k1,8718:32583029,30253876:8625851 -g1,8718:32583029,30253876 -) -(1,8720:6630773,31095364:25952256,505283,126483 -h1,8719:6630773,31095364:983040,0,0 -k1,8719:8949327,31095364:293492 -k1,8719:11057511,31095364:293492 -k1,8719:12914037,31095364:293492 -k1,8719:14946199,31095364:293492 -k1,8719:17669766,31095364:293492 -k1,8719:18319119,31095364:293493 -k1,8719:20509878,31095364:293492 -k1,8719:24363941,31095364:293492 -k1,8719:25285268,31095364:293492 -k1,8719:26597845,31095364:293492 -k1,8719:29552754,31095364:293492 -k1,8719:31714677,31095364:293492 -k1,8719:32583029,31095364:0 -) -(1,8720:6630773,31936852:25952256,513147,126483 -k1,8719:7545328,31936852:227082 -k1,8719:8791495,31936852:227082 -k1,8719:10672051,31936852:227083 -k1,8719:12886840,31936852:227082 -k1,8719:13800084,31936852:227082 -k1,8719:16056161,31936852:227082 -k1,8719:17355412,31936852:227082 -k1,8719:18450846,31936852:227082 -k1,8719:21076547,31936852:227083 -k1,8719:21659489,31936852:227082 -k1,8719:26247337,31936852:227082 -k1,8719:30255846,31936852:227082 -k1,8719:32583029,31936852:0 -) -(1,8720:6630773,32778340:25952256,513147,134348 -k1,8719:7569950,32778340:279885 -k1,8719:8868921,32778340:279886 -k1,8719:11678496,32778340:279885 -k1,8719:12586216,32778340:279885 -k1,8719:15532107,32778340:279886 -k1,8719:16463420,32778340:279885 -k1,8719:17762391,32778340:279886 -k1,8719:20029983,32778340:279885 -k1,8719:22853320,32778340:279885 -k1,8719:24001558,32778340:279886 -k1,8719:25811709,32778340:279885 -k1,8719:26743022,32778340:279885 -k1,8719:28460113,32778340:279886 -k1,8719:29510701,32778340:279885 -k1,8719:32583029,32778340:0 -) -(1,8720:6630773,33619828:25952256,513147,134348 -k1,8719:9345987,33619828:156688 -(1,8719:9345987,33619828:0,459977,115847 -r1,8745:11462812,33619828:2116825,575824,115847 -k1,8719:9345987,33619828:-2116825 -) -(1,8719:9345987,33619828:2116825,459977,115847 -k1,8719:9345987,33619828:3277 -h1,8719:11459535,33619828:0,411205,112570 -) -k1,8719:11619500,33619828:156688 -k1,8719:13699015,33619828:156689 -k1,8719:14874788,33619828:156688 -k1,8719:16638419,33619828:156688 -k1,8719:20576534,33619828:156688 -k1,8719:21384650,33619828:156688 -k1,8719:22289104,33619828:156688 -k1,8719:26939597,33619828:156689 -k1,8719:29361865,33619828:156688 -k1,8719:30466204,33619828:156688 -(1,8719:30466204,33619828:0,459977,115847 -r1,8745:32583029,33619828:2116825,575824,115847 -k1,8719:30466204,33619828:-2116825 -) -(1,8719:30466204,33619828:2116825,459977,115847 -k1,8719:30466204,33619828:3277 -h1,8719:32579752,33619828:0,411205,112570 -) -k1,8719:32583029,33619828:0 -) -(1,8720:6630773,34461316:25952256,505283,122846 -g1,8719:7361499,34461316 -(1,8719:7361499,34461316:0,452978,122846 -r1,8745:10181748,34461316:2820249,575824,122846 -k1,8719:7361499,34461316:-2820249 -) -(1,8719:7361499,34461316:2820249,452978,122846 -k1,8719:7361499,34461316:3277 -h1,8719:10178471,34461316:0,411205,112570 -) -g1,8719:10380977,34461316 -g1,8719:11263091,34461316 -g1,8719:13818339,34461316 -k1,8720:32583029,34461316:14809592 -g1,8720:32583029,34461316 -) -v1,8722:6630773,35651782:0,393216,0 -(1,8741:6630773,44692729:25952256,9434163,196608 -g1,8741:6630773,44692729 -g1,8741:6630773,44692729 -g1,8741:6434165,44692729 -(1,8741:6434165,44692729:0,9434163,196608 -r1,8745:32779637,44692729:26345472,9630771,196608 -k1,8741:6434165,44692729:-26345472 -) -(1,8741:6434165,44692729:26345472,9434163,196608 -[1,8741:6630773,44692729:25952256,9237555,0 -(1,8724:6630773,35865692:25952256,410518,107478 -(1,8723:6630773,35865692:0,0,0 -g1,8723:6630773,35865692 -g1,8723:6630773,35865692 -g1,8723:6303093,35865692 -(1,8723:6303093,35865692:0,0,0 -) -g1,8723:6630773,35865692 -) -g1,8724:8211502,35865692 -g1,8724:9159940,35865692 -g1,8724:12321397,35865692 -g1,8724:12953689,35865692 -g1,8724:15166709,35865692 -g1,8724:16747438,35865692 -g1,8724:17379730,35865692 -g1,8724:21805770,35865692 -g1,8724:24018790,35865692 -g1,8724:24651082,35865692 -h1,8724:28760976,35865692:0,0,0 -k1,8724:32583029,35865692:3822053 -g1,8724:32583029,35865692 -) -(1,8725:6630773,36531870:25952256,410518,76021 -h1,8725:6630773,36531870:0,0,0 -k1,8725:6630773,36531870:0 -h1,8725:10108375,36531870:0,0,0 -k1,8725:32583029,36531870:22474654 -g1,8725:32583029,36531870 -) -(1,8740:6630773,37263584:25952256,410518,101187 -(1,8727:6630773,37263584:0,0,0 -g1,8727:6630773,37263584 -g1,8727:6630773,37263584 -g1,8727:6303093,37263584 -(1,8727:6303093,37263584:0,0,0 -) -g1,8727:6630773,37263584 -) -g1,8740:7579210,37263584 -g1,8740:10424521,37263584 -g1,8740:11372958,37263584 -g1,8740:14218269,37263584 -h1,8740:15798997,37263584:0,0,0 -k1,8740:32583029,37263584:16784032 -g1,8740:32583029,37263584 -) -(1,8740:6630773,37929762:25952256,379060,0 -h1,8740:6630773,37929762:0,0,0 -h1,8740:7263064,37929762:0,0,0 -k1,8740:32583028,37929762:25319964 -g1,8740:32583028,37929762 -) -(1,8740:6630773,38595940:25952256,404226,107478 -h1,8740:6630773,38595940:0,0,0 -g1,8740:7579210,38595940 -g1,8740:9792230,38595940 -g1,8740:14218270,38595940 -g1,8740:16115144,38595940 -h1,8740:17063581,38595940:0,0,0 -k1,8740:32583029,38595940:15519448 -g1,8740:32583029,38595940 -) -(1,8740:6630773,39262118:25952256,379060,0 -h1,8740:6630773,39262118:0,0,0 -h1,8740:7263064,39262118:0,0,0 -k1,8740:32583028,39262118:25319964 -g1,8740:32583028,39262118 -) -(1,8740:6630773,39928296:25952256,379060,101187 -h1,8740:6630773,39928296:0,0,0 -g1,8740:7579210,39928296 -g1,8740:10740667,39928296 -h1,8740:12321395,39928296:0,0,0 -k1,8740:32583029,39928296:20261634 -g1,8740:32583029,39928296 -) -(1,8740:6630773,40594474:25952256,379060,0 -h1,8740:6630773,40594474:0,0,0 -h1,8740:7263064,40594474:0,0,0 -k1,8740:32583028,40594474:25319964 -g1,8740:32583028,40594474 -) -(1,8740:6630773,41260652:25952256,410518,101187 -h1,8740:6630773,41260652:0,0,0 -g1,8740:7579210,41260652 -g1,8740:9476084,41260652 -g1,8740:11372958,41260652 -g1,8740:15482852,41260652 -g1,8740:17695872,41260652 -g1,8740:18644309,41260652 -h1,8740:20225037,41260652:0,0,0 -k1,8740:32583029,41260652:12357992 -g1,8740:32583029,41260652 -) -(1,8740:6630773,41926830:25952256,379060,0 -h1,8740:6630773,41926830:0,0,0 -h1,8740:7263064,41926830:0,0,0 -k1,8740:32583028,41926830:25319964 -g1,8740:32583028,41926830 -) -(1,8740:6630773,42593008:25952256,379060,0 -h1,8740:6630773,42593008:0,0,0 -h1,8740:7263064,42593008:0,0,0 -k1,8740:32583028,42593008:25319964 -g1,8740:32583028,42593008 -) -(1,8740:6630773,43259186:25952256,410518,6290 -h1,8740:6630773,43259186:0,0,0 -g1,8740:7579210,43259186 -g1,8740:7895356,43259186 -g1,8740:8211502,43259186 -g1,8740:8527648,43259186 -g1,8740:8843794,43259186 -g1,8740:9159940,43259186 -g1,8740:9476086,43259186 -g1,8740:10424523,43259186 -g1,8740:13269834,43259186 -g1,8740:15482854,43259186 -g1,8740:16431291,43259186 -g1,8740:18644311,43259186 -h1,8740:19592748,43259186:0,0,0 -k1,8740:32583029,43259186:12990281 -g1,8740:32583029,43259186 -) -(1,8740:6630773,43925364:25952256,388497,9436 -h1,8740:6630773,43925364:0,0,0 -g1,8740:7579210,43925364 -g1,8740:9159939,43925364 -g1,8740:9476085,43925364 -g1,8740:9792231,43925364 -g1,8740:10108377,43925364 -g1,8740:10424523,43925364 -g1,8740:10740669,43925364 -g1,8740:11056815,43925364 -g1,8740:11372961,43925364 -g1,8740:11689107,43925364 -g1,8740:12005253,43925364 -g1,8740:12321399,43925364 -g1,8740:12637545,43925364 -g1,8740:12953691,43925364 -g1,8740:13269837,43925364 -g1,8740:13585983,43925364 -g1,8740:13902129,43925364 -g1,8740:14218275,43925364 -g1,8740:14534421,43925364 -g1,8740:14850567,43925364 -g1,8740:15166713,43925364 -g1,8740:15482859,43925364 -g1,8740:16431296,43925364 -g1,8740:16747442,43925364 -g1,8740:17063588,43925364 -g1,8740:17379734,43925364 -g1,8740:17695880,43925364 -h1,8740:19592754,43925364:0,0,0 -k1,8740:32583029,43925364:12990275 -g1,8740:32583029,43925364 -) -(1,8740:6630773,44591542:25952256,388497,101187 -h1,8740:6630773,44591542:0,0,0 -g1,8740:7579210,44591542 -g1,8740:9476084,44591542 -g1,8740:9792230,44591542 -g1,8740:10424522,44591542 -g1,8740:10740668,44591542 -g1,8740:11056814,44591542 -g1,8740:13269834,44591542 -g1,8740:13585980,44591542 -g1,8740:13902126,44591542 -g1,8740:14218272,44591542 -g1,8740:14534418,44591542 -g1,8740:14850564,44591542 -g1,8740:15166710,44591542 -g1,8740:15482856,44591542 -g1,8740:16431293,44591542 -g1,8740:16747439,44591542 -g1,8740:17063585,44591542 -g1,8740:17379731,44591542 -g1,8740:17695877,44591542 -g1,8740:18012023,44591542 -h1,8740:19592751,44591542:0,0,0 -k1,8740:32583029,44591542:12990278 -g1,8740:32583029,44591542 -) -] -) -g1,8741:32583029,44692729 -g1,8741:6630773,44692729 -g1,8741:6630773,44692729 -g1,8741:32583029,44692729 -g1,8741:32583029,44692729 -) -h1,8741:6630773,44889337:0,0,0 -] -(1,8745:32583029,45706769:0,0,0 -g1,8745:32583029,45706769 -) -) -] -(1,8745:6630773,47279633:25952256,0,0 -h1,8745:6630773,47279633:25952256,0,0 -) -] -(1,8745:4262630,4025873:0,0,0 -[1,8745:-473656,4025873:0,0,0 -(1,8745:-473656,-710413:0,0,0 -(1,8745:-473656,-710413:0,0,0 -g1,8745:-473656,-710413 -) -g1,8745:-473656,-710413 -) -] -) -] -!26379 -}166 -Input:1354:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!104 -{167 -[1,8841:4262630,47279633:28320399,43253760,0 -(1,8841:4262630,4025873:0,0,0 -[1,8841:-473656,4025873:0,0,0 -(1,8841:-473656,-710413:0,0,0 -(1,8841:-473656,-644877:0,0,0 -k1,8841:-473656,-644877:-65536 -) -(1,8841:-473656,4736287:0,0,0 -k1,8841:-473656,4736287:5209943 -) -g1,8841:-473656,-710413 -) -] -) -[1,8841:6630773,47279633:25952256,43253760,0 -[1,8841:6630773,4812305:25952256,786432,0 -(1,8841:6630773,4812305:25952256,505283,134348 -(1,8841:6630773,4812305:25952256,505283,134348 -g1,8841:3078558,4812305 -[1,8841:3078558,4812305:0,0,0 -(1,8841:3078558,2439708:0,1703936,0 -k1,8841:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,8841:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,8841:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,8841:3078558,4812305:0,0,0 -(1,8841:3078558,2439708:0,1703936,0 -g1,8841:29030814,2439708 -g1,8841:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,8841:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,8841:37855564,2439708:1179648,16384,0 -) -) -k1,8841:3078556,2439708:-34777008 -) -] -[1,8841:3078558,4812305:0,0,0 -(1,8841:3078558,49800853:0,16384,2228224 -k1,8841:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,8841:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,8841:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,8841:3078558,4812305:0,0,0 -(1,8841:3078558,49800853:0,16384,2228224 -g1,8841:29030814,49800853 -g1,8841:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,8841:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,8841:37855564,49800853:1179648,16384,0 -) -) -k1,8841:3078556,49800853:-34777008 -) -] -g1,8841:6630773,4812305 -k1,8841:24502442,4812305:16676292 -g1,8841:25889183,4812305 -g1,8841:26537989,4812305 -g1,8841:29852144,4812305 -) -) -] -[1,8841:6630773,45706769:25952256,40108032,0 -(1,8841:6630773,45706769:25952256,40108032,0 -(1,8841:6630773,45706769:0,0,0 -g1,8841:6630773,45706769 -) -[1,8841:6630773,45706769:25952256,40108032,0 -(1,8745:6630773,6254097:25952256,513147,126483 -h1,8744:6630773,6254097:983040,0,0 -k1,8744:8963974,6254097:153474 -k1,8744:11765758,6254097:153474 -k1,8744:13486853,6254097:153474 -k1,8744:14659412,6254097:153474 -(1,8744:14659412,6254097:0,452978,115847 -r1,8841:17127949,6254097:2468537,568825,115847 -k1,8744:14659412,6254097:-2468537 -) -(1,8744:14659412,6254097:2468537,452978,115847 -k1,8744:14659412,6254097:3277 -h1,8744:17124672,6254097:0,411205,112570 -) -k1,8744:17281424,6254097:153475 -k1,8744:19889221,6254097:153474 -k1,8744:20990346,6254097:153474 -k1,8744:22552143,6254097:153428 -k1,8744:23723392,6254097:153475 -k1,8744:24977871,6254097:153474 -k1,8744:26823485,6254097:153474 -k1,8744:30493621,6254097:153474 -k1,8744:31298523,6254097:153474 -k1,8744:32583029,6254097:0 -) -(1,8745:6630773,7095585:25952256,513147,134348 -k1,8744:7750685,7095585:172261 -k1,8744:8851564,7095585:172234 -k1,8744:10215269,7095585:172260 -k1,8744:11147748,7095585:172261 -k1,8744:13759259,7095585:172261 -k1,8744:14740890,7095585:172261 -k1,8744:18650668,7095585:172260 -k1,8744:20014374,7095585:172261 -k1,8744:20718132,7095585:172261 -k1,8744:24272706,7095585:172261 -k1,8744:25131128,7095585:172260 -k1,8744:25659249,7095585:172261 -k1,8744:30557967,7095585:172261 -k1,8744:32583029,7095585:0 -) -(1,8745:6630773,7937073:25952256,513147,134348 -k1,8744:7394973,7937073:232703 -k1,8744:10340211,7937073:232703 -k1,8744:13934911,7937073:232703 -k1,8744:14976984,7937073:232703 -k1,8744:16228772,7937073:232703 -k1,8744:21089628,7937073:232703 -k1,8744:21981623,7937073:232703 -k1,8744:23233411,7937073:232703 -k1,8744:25453821,7937073:232703 -k1,8744:26877969,7937073:232703 -k1,8744:28673706,7937073:232703 -k1,8744:29859958,7937073:232703 -k1,8744:31490544,7937073:232703 -k1,8745:32583029,7937073:0 -) -(1,8745:6630773,8778561:25952256,473825,134348 -(1,8744:6630773,8778561:0,452978,115847 -r1,8841:7692462,8778561:1061689,568825,115847 -k1,8744:6630773,8778561:-1061689 -) -(1,8744:6630773,8778561:1061689,452978,115847 -k1,8744:6630773,8778561:3277 -h1,8744:7689185,8778561:0,411205,112570 -) -g1,8744:7891691,8778561 -g1,8744:8777082,8778561 -g1,8744:9747014,8778561 -g1,8744:13018571,8778561 -g1,8744:13869228,8778561 -g1,8744:16457900,8778561 -g1,8744:17427832,8778561 -$1,8744:17427832,8778561 -$1,8744:17872821,8778561 -k1,8745:32583029,8778561:13132101 -g1,8745:32583029,8778561 -) -v1,8747:6630773,9930170:0,393216,0 -(1,8767:6630773,19643586:25952256,10106632,196608 -g1,8767:6630773,19643586 -g1,8767:6630773,19643586 -g1,8767:6434165,19643586 -(1,8767:6434165,19643586:0,10106632,196608 -r1,8841:32779637,19643586:26345472,10303240,196608 -k1,8767:6434165,19643586:-26345472 -) -(1,8767:6434165,19643586:26345472,10106632,196608 -[1,8767:6630773,19643586:25952256,9910024,0 -(1,8749:6630773,10144080:25952256,410518,82312 -(1,8748:6630773,10144080:0,0,0 -g1,8748:6630773,10144080 -g1,8748:6630773,10144080 -g1,8748:6303093,10144080 -(1,8748:6303093,10144080:0,0,0 -) -g1,8748:6630773,10144080 -) -k1,8749:6630773,10144080:0 -g1,8749:10424521,10144080 -g1,8749:12005250,10144080 -g1,8749:12637542,10144080 -h1,8749:13902125,10144080:0,0,0 -k1,8749:32583029,10144080:18680904 -g1,8749:32583029,10144080 -) -(1,8766:6630773,10875794:25952256,410518,101187 -(1,8751:6630773,10875794:0,0,0 -g1,8751:6630773,10875794 -g1,8751:6630773,10875794 -g1,8751:6303093,10875794 -(1,8751:6303093,10875794:0,0,0 -) -g1,8751:6630773,10875794 -) -g1,8766:7579210,10875794 -g1,8766:10424521,10875794 -g1,8766:11372958,10875794 -g1,8766:14218269,10875794 -h1,8766:15798997,10875794:0,0,0 -k1,8766:32583029,10875794:16784032 -g1,8766:32583029,10875794 -) -(1,8766:6630773,11541972:25952256,379060,0 -h1,8766:6630773,11541972:0,0,0 -h1,8766:7263064,11541972:0,0,0 -k1,8766:32583028,11541972:25319964 -g1,8766:32583028,11541972 -) -(1,8766:6630773,12208150:25952256,404226,107478 -h1,8766:6630773,12208150:0,0,0 -g1,8766:7579210,12208150 -g1,8766:9792230,12208150 -g1,8766:14218270,12208150 -g1,8766:16115144,12208150 -h1,8766:17063581,12208150:0,0,0 -k1,8766:32583029,12208150:15519448 -g1,8766:32583029,12208150 -) -(1,8766:6630773,12874328:25952256,379060,0 -h1,8766:6630773,12874328:0,0,0 -h1,8766:7263064,12874328:0,0,0 -k1,8766:32583028,12874328:25319964 -g1,8766:32583028,12874328 -) -(1,8766:6630773,13540506:25952256,379060,101187 -h1,8766:6630773,13540506:0,0,0 -g1,8766:7579210,13540506 -g1,8766:10740667,13540506 -h1,8766:12321395,13540506:0,0,0 -k1,8766:32583029,13540506:20261634 -g1,8766:32583029,13540506 -) -(1,8766:6630773,14206684:25952256,379060,0 -h1,8766:6630773,14206684:0,0,0 -h1,8766:7263064,14206684:0,0,0 -k1,8766:32583028,14206684:25319964 -g1,8766:32583028,14206684 -) -(1,8766:6630773,14872862:25952256,410518,101187 -h1,8766:6630773,14872862:0,0,0 -g1,8766:7579210,14872862 -g1,8766:9476084,14872862 -g1,8766:11372958,14872862 -g1,8766:15482852,14872862 -g1,8766:17695872,14872862 -g1,8766:18644309,14872862 -h1,8766:20225037,14872862:0,0,0 -k1,8766:32583029,14872862:12357992 -g1,8766:32583029,14872862 -) -(1,8766:6630773,15539040:25952256,379060,0 -h1,8766:6630773,15539040:0,0,0 -h1,8766:7263064,15539040:0,0,0 -k1,8766:32583028,15539040:25319964 -g1,8766:32583028,15539040 -) -(1,8766:6630773,16205218:25952256,379060,0 -h1,8766:6630773,16205218:0,0,0 -h1,8766:7263064,16205218:0,0,0 -k1,8766:32583028,16205218:25319964 -g1,8766:32583028,16205218 -) -(1,8766:6630773,16871396:25952256,410518,76021 -h1,8766:6630773,16871396:0,0,0 -g1,8766:7579210,16871396 -g1,8766:7895356,16871396 -g1,8766:8211502,16871396 -g1,8766:8527648,16871396 -g1,8766:8843794,16871396 -g1,8766:9159940,16871396 -g1,8766:9476086,16871396 -g1,8766:10424523,16871396 -g1,8766:13269834,16871396 -g1,8766:15482854,16871396 -g1,8766:16431291,16871396 -g1,8766:18644311,16871396 -g1,8766:19908894,16871396 -g1,8766:20225040,16871396 -g1,8766:20541186,16871396 -g1,8766:20857332,16871396 -g1,8766:21173478,16871396 -g1,8766:21489624,16871396 -g1,8766:22121916,16871396 -g1,8766:22438062,16871396 -g1,8766:22754208,16871396 -g1,8766:23070354,16871396 -k1,8766:23070354,16871396:0 -h1,8766:24967228,16871396:0,0,0 -k1,8766:32583029,16871396:7615801 -g1,8766:32583029,16871396 -) -(1,8766:6630773,17537574:25952256,388497,9436 -h1,8766:6630773,17537574:0,0,0 -g1,8766:7579210,17537574 -g1,8766:9159939,17537574 -g1,8766:9476085,17537574 -g1,8766:9792231,17537574 -g1,8766:10108377,17537574 -g1,8766:10424523,17537574 -g1,8766:10740669,17537574 -g1,8766:11056815,17537574 -g1,8766:11372961,17537574 -g1,8766:11689107,17537574 -g1,8766:12005253,17537574 -g1,8766:12321399,17537574 -g1,8766:12637545,17537574 -g1,8766:12953691,17537574 -g1,8766:13269837,17537574 -g1,8766:13585983,17537574 -g1,8766:13902129,17537574 -g1,8766:14218275,17537574 -g1,8766:14534421,17537574 -g1,8766:14850567,17537574 -g1,8766:15166713,17537574 -g1,8766:15482859,17537574 -g1,8766:16431296,17537574 -g1,8766:16747442,17537574 -g1,8766:17063588,17537574 -g1,8766:17379734,17537574 -g1,8766:17695880,17537574 -h1,8766:19592754,17537574:0,0,0 -k1,8766:32583029,17537574:12990275 -g1,8766:32583029,17537574 -) -(1,8766:6630773,18203752:25952256,388497,101187 -h1,8766:6630773,18203752:0,0,0 -g1,8766:7579210,18203752 -g1,8766:9476084,18203752 -g1,8766:9792230,18203752 -g1,8766:10424522,18203752 -g1,8766:10740668,18203752 -g1,8766:11056814,18203752 -g1,8766:13269834,18203752 -g1,8766:13585980,18203752 -g1,8766:13902126,18203752 -g1,8766:14218272,18203752 -g1,8766:14534418,18203752 -g1,8766:14850564,18203752 -g1,8766:15166710,18203752 -g1,8766:15482856,18203752 -g1,8766:16431293,18203752 -g1,8766:16747439,18203752 -g1,8766:17063585,18203752 -g1,8766:17379731,18203752 -g1,8766:17695877,18203752 -g1,8766:18012023,18203752 -g1,8766:19908897,18203752 -g1,8766:22121917,18203752 -g1,8766:22754209,18203752 -g1,8766:25283375,18203752 -h1,8766:26231812,18203752:0,0,0 -k1,8766:32583029,18203752:6351217 -g1,8766:32583029,18203752 -) -(1,8766:6630773,18869930:25952256,379060,0 -h1,8766:6630773,18869930:0,0,0 -g1,8766:7579210,18869930 -k1,8766:7579210,18869930:0 -h1,8766:8527648,18869930:0,0,0 -k1,8766:32583028,18869930:24055380 -g1,8766:32583028,18869930 -) -(1,8766:6630773,19536108:25952256,410518,107478 -h1,8766:6630773,19536108:0,0,0 -g1,8766:7579210,19536108 -g1,8766:10108376,19536108 -g1,8766:12321396,19536108 -g1,8766:12637542,19536108 -g1,8766:13269834,19536108 -g1,8766:15166709,19536108 -g1,8766:17063583,19536108 -g1,8766:18644312,19536108 -g1,8766:20225041,19536108 -g1,8766:21489625,19536108 -g1,8766:23070354,19536108 -g1,8766:24334938,19536108 -g1,8766:25599521,19536108 -g1,8766:26231813,19536108 -g1,8766:26864105,19536108 -h1,8766:27180251,19536108:0,0,0 -k1,8766:32583029,19536108:5402778 -g1,8766:32583029,19536108 -) -] -) -g1,8767:32583029,19643586 -g1,8767:6630773,19643586 -g1,8767:6630773,19643586 -g1,8767:32583029,19643586 -g1,8767:32583029,19643586 -) -h1,8767:6630773,19840194:0,0,0 -(1,8771:6630773,21167113:25952256,513147,134348 -h1,8770:6630773,21167113:983040,0,0 -k1,8770:10244546,21167113:232771 -(1,8770:10244546,21167113:0,452978,115847 -r1,8841:12361371,21167113:2116825,568825,115847 -k1,8770:10244546,21167113:-2116825 -) -(1,8770:10244546,21167113:2116825,452978,115847 -k1,8770:10244546,21167113:3277 -h1,8770:12358094,21167113:0,411205,112570 -) -k1,8770:12594141,21167113:232770 -k1,8770:13513074,21167113:232771 -k1,8770:14693496,21167113:232771 -k1,8770:18939691,21167113:232770 -k1,8770:20363907,21167113:232771 -k1,8770:23547108,21167113:232770 -k1,8770:26803055,21167113:232771 -k1,8770:28817095,21167113:232771 -k1,8770:30003414,21167113:232770 -k1,8770:31896867,21167113:232771 -k1,8770:32583029,21167113:0 -) -(1,8771:6630773,22008601:25952256,513147,126483 -g1,8770:8685326,22008601 -g1,8770:9903640,22008601 -g1,8770:12614864,22008601 -g1,8770:13473385,22008601 -k1,8771:32583029,22008601:16041904 -g1,8771:32583029,22008601 -) -v1,8773:6630773,23160210:0,393216,0 -(1,8777:6630773,23475307:25952256,708313,196608 -g1,8777:6630773,23475307 -g1,8777:6630773,23475307 -g1,8777:6434165,23475307 -(1,8777:6434165,23475307:0,708313,196608 -r1,8841:32779637,23475307:26345472,904921,196608 -k1,8777:6434165,23475307:-26345472 -) -(1,8777:6434165,23475307:26345472,708313,196608 -[1,8777:6630773,23475307:25952256,511705,0 -(1,8775:6630773,23374120:25952256,410518,101187 -(1,8774:6630773,23374120:0,0,0 -g1,8774:6630773,23374120 -g1,8774:6630773,23374120 -g1,8774:6303093,23374120 -(1,8774:6303093,23374120:0,0,0 -) -g1,8774:6630773,23374120 -) -k1,8775:6630773,23374120:0 -g1,8775:10108376,23374120 -g1,8775:12005250,23374120 -g1,8775:12637542,23374120 -h1,8775:13269834,23374120:0,0,0 -k1,8775:32583030,23374120:19313196 -g1,8775:32583030,23374120 -) -] -) -g1,8777:32583029,23475307 -g1,8777:6630773,23475307 -g1,8777:6630773,23475307 -g1,8777:32583029,23475307 -g1,8777:32583029,23475307 -) -h1,8777:6630773,23671915:0,0,0 -(1,8780:6630773,38236866:25952256,14013984,0 -k1,8780:12599879,38236866:5969106 -h1,8779:12599879,38236866:0,0,0 -(1,8779:12599879,38236866:14014044,14013984,0 -(1,8779:12599879,38236866:14014019,14014019,0 -(1,8779:12599879,38236866:14014019,14014019,0 -(1,8779:12599879,38236866:0,14014019,0 -(1,8779:12599879,38236866:0,18945146,0 -(1,8779:12599879,38236866:18945146,18945146,0 -) -k1,8779:12599879,38236866:-18945146 -) -) -g1,8779:26613898,38236866 -) -) -) -g1,8780:26613923,38236866 -k1,8780:32583029,38236866:5969106 -) -(1,8787:6630773,39078354:25952256,513147,126483 -h1,8786:6630773,39078354:983040,0,0 -k1,8786:8806830,39078354:239468 -k1,8786:10150580,39078354:239468 -k1,8786:12594025,39078354:239469 -k1,8786:15595836,39078354:239468 -k1,8786:19762877,39078354:239468 -k1,8786:22770586,39078354:239468 -k1,8786:23696216,39078354:239468 -k1,8786:27025708,39078354:239469 -k1,8786:28212827,39078354:239468 -k1,8786:30265021,39078354:239468 -k1,8786:32583029,39078354:0 -) -(1,8787:6630773,39919842:25952256,505283,134348 -g1,8786:8062079,39919842 -g1,8786:10539995,39919842 -h1,8786:11510583,39919842:0,0,0 -g1,8786:11709812,39919842 -g1,8786:12718411,39919842 -g1,8786:14415793,39919842 -h1,8786:15611170,39919842:0,0,0 -k1,8787:32583029,39919842:16591095 -g1,8787:32583029,39919842 -) -v1,8789:6630773,41071451:0,393216,0 -(1,8841:6630773,45510161:25952256,4831926,196608 -g1,8841:6630773,45510161 -g1,8841:6630773,45510161 -g1,8841:6434165,45510161 -(1,8841:6434165,45510161:0,4831926,196608 -r1,8841:32779637,45510161:26345472,5028534,196608 -k1,8841:6434165,45510161:-26345472 -) -(1,8841:6434165,45510161:26345472,4831926,196608 -[1,8841:6630773,45510161:25952256,4635318,0 -(1,8791:6630773,41285361:25952256,410518,76021 -(1,8790:6630773,41285361:0,0,0 -g1,8790:6630773,41285361 -g1,8790:6630773,41285361 -g1,8790:6303093,41285361 -(1,8790:6303093,41285361:0,0,0 -) -g1,8790:6630773,41285361 -) -k1,8791:6630773,41285361:0 -h1,8791:10108375,41285361:0,0,0 -k1,8791:32583029,41285361:22474654 -g1,8791:32583029,41285361 -) -(1,8795:6630773,42017075:25952256,404226,107478 -(1,8793:6630773,42017075:0,0,0 -g1,8793:6630773,42017075 -g1,8793:6630773,42017075 -g1,8793:6303093,42017075 -(1,8793:6303093,42017075:0,0,0 -) -g1,8793:6630773,42017075 -) -g1,8795:7579210,42017075 -g1,8795:8843793,42017075 -g1,8795:10740667,42017075 -h1,8795:12005250,42017075:0,0,0 -k1,8795:32583030,42017075:20577780 -g1,8795:32583030,42017075 -) -(1,8797:6630773,43338613:25952256,410518,101187 -(1,8796:6630773,43338613:0,0,0 -g1,8796:6630773,43338613 -g1,8796:6630773,43338613 -g1,8796:6303093,43338613 -(1,8796:6303093,43338613:0,0,0 -) -g1,8796:6630773,43338613 -) -k1,8797:6630773,43338613:0 -h1,8797:10740667,43338613:0,0,0 -k1,8797:32583029,43338613:21842362 -g1,8797:32583029,43338613 -) -(1,8826:6630773,44070327:25952256,379060,0 -(1,8799:6630773,44070327:0,0,0 -g1,8799:6630773,44070327 -g1,8799:6630773,44070327 -g1,8799:6303093,44070327 -(1,8799:6303093,44070327:0,0,0 -) -g1,8799:6630773,44070327 -) -h1,8826:7263064,44070327:0,0,0 -k1,8826:32583028,44070327:25319964 -g1,8826:32583028,44070327 -) -(1,8826:6630773,44736505:25952256,404226,7863 -h1,8826:6630773,44736505:0,0,0 -g1,8826:7579210,44736505 -h1,8826:9159938,44736505:0,0,0 -k1,8826:32583030,44736505:23423092 -g1,8826:32583030,44736505 -) -(1,8826:6630773,45402683:25952256,410518,107478 -h1,8826:6630773,45402683:0,0,0 -g1,8826:7579210,45402683 -g1,8826:11372958,45402683 -g1,8826:12005250,45402683 -g1,8826:13902124,45402683 -g1,8826:14534416,45402683 -g1,8826:16747436,45402683 -g1,8826:18960456,45402683 -g1,8826:19592748,45402683 -g1,8826:24018788,45402683 -g1,8826:25599517,45402683 -g1,8826:26231809,45402683 -h1,8826:30341703,45402683:0,0,0 -k1,8826:32583029,45402683:2241326 -g1,8826:32583029,45402683 -) -] -) -g1,8841:32583029,45510161 -g1,8841:6630773,45510161 -g1,8841:6630773,45510161 -g1,8841:32583029,45510161 -g1,8841:32583029,45510161 -) -] -(1,8841:32583029,45706769:0,0,0 -g1,8841:32583029,45706769 -) -) -] -(1,8841:6630773,47279633:25952256,0,0 -h1,8841:6630773,47279633:25952256,0,0 -) -] -(1,8841:4262630,4025873:0,0,0 -[1,8841:-473656,4025873:0,0,0 -(1,8841:-473656,-710413:0,0,0 -(1,8841:-473656,-710413:0,0,0 -g1,8841:-473656,-710413 -) -g1,8841:-473656,-710413 -) -] -) -] -!17686 -}167 -Input:1355:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1356:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1357:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1358:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!380 -{168 -[1,8878:4262630,47279633:28320399,43253760,0 -(1,8878:4262630,4025873:0,0,0 -[1,8878:-473656,4025873:0,0,0 -(1,8878:-473656,-710413:0,0,0 -(1,8878:-473656,-644877:0,0,0 -k1,8878:-473656,-644877:-65536 -) -(1,8878:-473656,4736287:0,0,0 -k1,8878:-473656,4736287:5209943 -) -g1,8878:-473656,-710413 -) -] -) -[1,8878:6630773,47279633:25952256,43253760,0 -[1,8878:6630773,4812305:25952256,786432,0 -(1,8878:6630773,4812305:25952256,505283,11795 -(1,8878:6630773,4812305:25952256,505283,11795 -g1,8878:3078558,4812305 -[1,8878:3078558,4812305:0,0,0 -(1,8878:3078558,2439708:0,1703936,0 -k1,8878:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,8878:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,8878:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,8878:3078558,4812305:0,0,0 -(1,8878:3078558,2439708:0,1703936,0 -g1,8878:29030814,2439708 -g1,8878:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,8878:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,8878:37855564,2439708:1179648,16384,0 -) -) -k1,8878:3078556,2439708:-34777008 -) -] -[1,8878:3078558,4812305:0,0,0 -(1,8878:3078558,49800853:0,16384,2228224 -k1,8878:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,8878:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,8878:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,8878:3078558,4812305:0,0,0 -(1,8878:3078558,49800853:0,16384,2228224 -g1,8878:29030814,49800853 -g1,8878:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,8878:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,8878:37855564,49800853:1179648,16384,0 -) -) -k1,8878:3078556,49800853:-34777008 -) -] -g1,8878:6630773,4812305 -g1,8878:6630773,4812305 -g1,8878:10592424,4812305 -g1,8878:12629938,4812305 -g1,8878:15030521,4812305 -k1,8878:31387652,4812305:16357131 -) -) -] -[1,8878:6630773,45706769:25952256,40108032,0 -(1,8878:6630773,45706769:25952256,40108032,0 -(1,8878:6630773,45706769:0,0,0 -g1,8878:6630773,45706769 -) -[1,8878:6630773,45706769:25952256,40108032,0 -v1,8841:6630773,6254097:0,393216,0 -(1,8841:6630773,26540761:25952256,20679880,196608 -g1,8841:6630773,26540761 -g1,8841:6630773,26540761 -g1,8841:6434165,26540761 -(1,8841:6434165,26540761:0,20679880,196608 -r1,8878:32779637,26540761:26345472,20876488,196608 -k1,8841:6434165,26540761:-26345472 -) -(1,8841:6434165,26540761:26345472,20679880,196608 -[1,8841:6630773,26540761:25952256,20483272,0 -(1,8826:6630773,6436549:25952256,379060,0 -h1,8826:6630773,6436549:0,0,0 -h1,8826:7263064,6436549:0,0,0 -k1,8826:32583028,6436549:25319964 -g1,8826:32583028,6436549 -) -(1,8826:6630773,7102727:25952256,404226,6290 -h1,8826:6630773,7102727:0,0,0 -g1,8826:7579210,7102727 -g1,8826:10424521,7102727 -h1,8826:13585978,7102727:0,0,0 -k1,8826:32583030,7102727:18997052 -g1,8826:32583030,7102727 -) -(1,8826:6630773,7768905:25952256,404226,82312 -h1,8826:6630773,7768905:0,0,0 -g1,8826:7579210,7768905 -g1,8826:7895356,7768905 -g1,8826:8211502,7768905 -g1,8826:8527648,7768905 -g1,8826:8843794,7768905 -g1,8826:10108377,7768905 -g1,8826:10424523,7768905 -g1,8826:10740669,7768905 -g1,8826:11056815,7768905 -g1,8826:11372961,7768905 -g1,8826:11689107,7768905 -g1,8826:12005253,7768905 -g1,8826:12953690,7768905 -g1,8826:13269836,7768905 -g1,8826:13585982,7768905 -g1,8826:15799002,7768905 -g1,8826:16115148,7768905 -g1,8826:16431294,7768905 -g1,8826:16747440,7768905 -g1,8826:17063586,7768905 -g1,8826:17379732,7768905 -g1,8826:17695878,7768905 -g1,8826:18644315,7768905 -g1,8826:18960461,7768905 -g1,8826:19276607,7768905 -g1,8826:19592753,7768905 -g1,8826:19908899,7768905 -g1,8826:20225045,7768905 -h1,8826:21173482,7768905:0,0,0 -k1,8826:32583029,7768905:11409547 -g1,8826:32583029,7768905 -) -(1,8826:6630773,8435083:25952256,388497,9436 -h1,8826:6630773,8435083:0,0,0 -g1,8826:7579210,8435083 -g1,8826:10108376,8435083 -g1,8826:10424522,8435083 -g1,8826:12953688,8435083 -g1,8826:13269834,8435083 -g1,8826:15799000,8435083 -g1,8826:16115146,8435083 -g1,8826:16431292,8435083 -g1,8826:18644312,8435083 -g1,8826:18960458,8435083 -g1,8826:19276604,8435083 -h1,8826:21173478,8435083:0,0,0 -k1,8826:32583029,8435083:11409551 -g1,8826:32583029,8435083 -) -(1,8826:6630773,9101261:25952256,379060,0 -h1,8826:6630773,9101261:0,0,0 -h1,8826:7263064,9101261:0,0,0 -k1,8826:32583028,9101261:25319964 -g1,8826:32583028,9101261 -) -(1,8826:6630773,9767439:25952256,410518,7863 -h1,8826:6630773,9767439:0,0,0 -g1,8826:7579210,9767439 -h1,8826:11689104,9767439:0,0,0 -k1,8826:32583028,9767439:20893924 -g1,8826:32583028,9767439 -) -(1,8826:6630773,10433617:25952256,404226,76021 -h1,8826:6630773,10433617:0,0,0 -g1,8826:7579210,10433617 -g1,8826:7895356,10433617 -g1,8826:8211502,10433617 -g1,8826:8527648,10433617 -g1,8826:8843794,10433617 -g1,8826:9159940,10433617 -g1,8826:9476086,10433617 -g1,8826:9792232,10433617 -g1,8826:10108378,10433617 -g1,8826:10424524,10433617 -g1,8826:10740670,10433617 -g1,8826:11056816,10433617 -g1,8826:11372962,10433617 -g1,8826:14218273,10433617 -g1,8826:15799002,10433617 -g1,8826:17695876,10433617 -g1,8826:18328168,10433617 -g1,8826:20225042,10433617 -k1,8826:20225042,10433617:0 -h1,8826:22754207,10433617:0,0,0 -k1,8826:32583029,10433617:9828822 -g1,8826:32583029,10433617 -) -(1,8826:6630773,11099795:25952256,404226,101187 -h1,8826:6630773,11099795:0,0,0 -g1,8826:7579210,11099795 -g1,8826:11372958,11099795 -g1,8826:11689104,11099795 -g1,8826:14218270,11099795 -g1,8826:14534416,11099795 -g1,8826:14850562,11099795 -g1,8826:15166708,11099795 -g1,8826:17695874,11099795 -g1,8826:18012020,11099795 -g1,8826:20225040,11099795 -g1,8826:20541186,11099795 -g1,8826:21173478,11099795 -g1,8826:23070352,11099795 -h1,8826:24018789,11099795:0,0,0 -k1,8826:32583029,11099795:8564240 -g1,8826:32583029,11099795 -) -(1,8826:6630773,11765973:25952256,388497,101187 -h1,8826:6630773,11765973:0,0,0 -g1,8826:7579210,11765973 -g1,8826:9792230,11765973 -g1,8826:10108376,11765973 -g1,8826:10424522,11765973 -g1,8826:10740668,11765973 -g1,8826:11056814,11765973 -g1,8826:11372960,11765973 -g1,8826:11689106,11765973 -g1,8826:14218272,11765973 -g1,8826:14534418,11765973 -g1,8826:14850564,11765973 -g1,8826:15166710,11765973 -g1,8826:17695876,11765973 -g1,8826:18012022,11765973 -g1,8826:18328168,11765973 -g1,8826:20225042,11765973 -g1,8826:20541188,11765973 -g1,8826:20857334,11765973 -g1,8826:21173480,11765973 -h1,8826:22754208,11765973:0,0,0 -k1,8826:32583029,11765973:9828821 -g1,8826:32583029,11765973 -) -(1,8826:6630773,12432151:25952256,388497,101187 -h1,8826:6630773,12432151:0,0,0 -g1,8826:7579210,12432151 -g1,8826:9792230,12432151 -g1,8826:10108376,12432151 -g1,8826:10424522,12432151 -g1,8826:10740668,12432151 -g1,8826:11056814,12432151 -g1,8826:11372960,12432151 -g1,8826:14218271,12432151 -g1,8826:14534417,12432151 -g1,8826:14850563,12432151 -g1,8826:15166709,12432151 -g1,8826:17695875,12432151 -g1,8826:18012021,12432151 -g1,8826:20225041,12432151 -g1,8826:23070352,12432151 -h1,8826:24018789,12432151:0,0,0 -k1,8826:32583029,12432151:8564240 -g1,8826:32583029,12432151 -) -(1,8826:6630773,13098329:25952256,388497,101187 -h1,8826:6630773,13098329:0,0,0 -g1,8826:7579210,13098329 -g1,8826:9792230,13098329 -g1,8826:10108376,13098329 -g1,8826:10424522,13098329 -g1,8826:10740668,13098329 -g1,8826:11056814,13098329 -g1,8826:11372960,13098329 -g1,8826:14218271,13098329 -g1,8826:14534417,13098329 -g1,8826:14850563,13098329 -g1,8826:15166709,13098329 -g1,8826:17695875,13098329 -g1,8826:18012021,13098329 -g1,8826:20225041,13098329 -g1,8826:23070352,13098329 -h1,8826:24018789,13098329:0,0,0 -k1,8826:32583029,13098329:8564240 -g1,8826:32583029,13098329 -) -(1,8826:6630773,13764507:25952256,388497,101187 -h1,8826:6630773,13764507:0,0,0 -g1,8826:7579210,13764507 -g1,8826:9792230,13764507 -g1,8826:10108376,13764507 -g1,8826:10424522,13764507 -g1,8826:10740668,13764507 -g1,8826:11056814,13764507 -g1,8826:11372960,13764507 -g1,8826:14218271,13764507 -g1,8826:14534417,13764507 -g1,8826:14850563,13764507 -g1,8826:15166709,13764507 -g1,8826:17695875,13764507 -g1,8826:18012021,13764507 -g1,8826:20225041,13764507 -g1,8826:23070352,13764507 -h1,8826:24018789,13764507:0,0,0 -k1,8826:32583029,13764507:8564240 -g1,8826:32583029,13764507 -) -(1,8826:6630773,14430685:25952256,388497,101187 -h1,8826:6630773,14430685:0,0,0 -g1,8826:7579210,14430685 -g1,8826:9792230,14430685 -g1,8826:10108376,14430685 -g1,8826:10424522,14430685 -g1,8826:10740668,14430685 -g1,8826:11056814,14430685 -g1,8826:11372960,14430685 -g1,8826:11689106,14430685 -g1,8826:14218272,14430685 -g1,8826:14534418,14430685 -g1,8826:14850564,14430685 -g1,8826:15166710,14430685 -g1,8826:17695876,14430685 -g1,8826:18012022,14430685 -g1,8826:18328168,14430685 -g1,8826:20225042,14430685 -g1,8826:20541188,14430685 -g1,8826:20857334,14430685 -g1,8826:21173480,14430685 -h1,8826:22754208,14430685:0,0,0 -k1,8826:32583029,14430685:9828821 -g1,8826:32583029,14430685 -) -(1,8826:6630773,15096863:25952256,379060,0 -h1,8826:6630773,15096863:0,0,0 -g1,8826:7579210,15096863 -k1,8826:7579210,15096863:0 -h1,8826:8527648,15096863:0,0,0 -k1,8826:32583028,15096863:24055380 -g1,8826:32583028,15096863 -) -(1,8826:6630773,15763041:25952256,410518,107478 -h1,8826:6630773,15763041:0,0,0 -g1,8826:7579210,15763041 -g1,8826:10108376,15763041 -g1,8826:12321396,15763041 -g1,8826:12637542,15763041 -g1,8826:13269834,15763041 -g1,8826:15166709,15763041 -g1,8826:17063583,15763041 -g1,8826:18644312,15763041 -g1,8826:20225041,15763041 -g1,8826:21489625,15763041 -g1,8826:23070354,15763041 -g1,8826:24334938,15763041 -g1,8826:25599521,15763041 -g1,8826:26231813,15763041 -g1,8826:26864105,15763041 -h1,8826:27180251,15763041:0,0,0 -k1,8826:32583029,15763041:5402778 -g1,8826:32583029,15763041 -) -(1,8826:6630773,16429219:25952256,379060,0 -h1,8826:6630773,16429219:0,0,0 -h1,8826:7263064,16429219:0,0,0 -k1,8826:32583028,16429219:25319964 -g1,8826:32583028,16429219 -) -(1,8826:6630773,17095397:25952256,410518,101187 -h1,8826:6630773,17095397:0,0,0 -g1,8826:7579210,17095397 -g1,8826:11372958,17095397 -g1,8826:14534415,17095397 -g1,8826:15798998,17095397 -g1,8826:19908892,17095397 -g1,8826:22121912,17095397 -g1,8826:24018786,17095397 -g1,8826:24967223,17095397 -g1,8826:25915660,17095397 -h1,8826:28760971,17095397:0,0,0 -k1,8826:32583029,17095397:3822058 -g1,8826:32583029,17095397 -) -(1,8826:6630773,17761575:25952256,379060,0 -h1,8826:6630773,17761575:0,0,0 -h1,8826:7263064,17761575:0,0,0 -k1,8826:32583028,17761575:25319964 -g1,8826:32583028,17761575 -) -(1,8826:6630773,18427753:25952256,410518,107478 -h1,8826:6630773,18427753:0,0,0 -g1,8826:7579210,18427753 -g1,8826:7895356,18427753 -g1,8826:8211502,18427753 -g1,8826:8527648,18427753 -g1,8826:8843794,18427753 -g1,8826:10424523,18427753 -g1,8826:13585980,18427753 -g1,8826:16115146,18427753 -g1,8826:16431292,18427753 -g1,8826:17379729,18427753 -g1,8826:18328166,18427753 -g1,8826:18644312,18427753 -g1,8826:21173478,18427753 -g1,8826:22121915,18427753 -h1,8826:24334935,18427753:0,0,0 -k1,8826:32583029,18427753:8248094 -g1,8826:32583029,18427753 -) -(1,8826:6630773,19093931:25952256,410518,107478 -h1,8826:6630773,19093931:0,0,0 -g1,8826:7579210,19093931 -g1,8826:10424521,19093931 -g1,8826:13585978,19093931 -g1,8826:13902124,19093931 -g1,8826:16115144,19093931 -g1,8826:16431290,19093931 -g1,8826:17379727,19093931 -g1,8826:18328164,19093931 -g1,8826:18644310,19093931 -g1,8826:21173476,19093931 -g1,8826:22121913,19093931 -h1,8826:24334933,19093931:0,0,0 -k1,8826:32583029,19093931:8248096 -g1,8826:32583029,19093931 -) -(1,8826:6630773,19760109:25952256,379060,7863 -h1,8826:6630773,19760109:0,0,0 -g1,8826:7579210,19760109 -g1,8826:9159939,19760109 -h1,8826:9792230,19760109:0,0,0 -k1,8826:32583030,19760109:22790800 -g1,8826:32583030,19760109 -) -(1,8826:6630773,20426287:25952256,379060,0 -h1,8826:6630773,20426287:0,0,0 -h1,8826:7263064,20426287:0,0,0 -k1,8826:32583028,20426287:25319964 -g1,8826:32583028,20426287 -) -(1,8826:6630773,21092465:25952256,410518,107478 -h1,8826:6630773,21092465:0,0,0 -g1,8826:7579210,21092465 -g1,8826:9792230,21092465 -g1,8826:10740667,21092465 -g1,8826:12953687,21092465 -g1,8826:15482853,21092465 -g1,8826:19276601,21092465 -h1,8826:19592747,21092465:0,0,0 -k1,8826:32583029,21092465:12990282 -g1,8826:32583029,21092465 -) -(1,8828:6630773,22414003:25952256,410518,76021 -(1,8827:6630773,22414003:0,0,0 -g1,8827:6630773,22414003 -g1,8827:6630773,22414003 -g1,8827:6303093,22414003 -(1,8827:6303093,22414003:0,0,0 -) -g1,8827:6630773,22414003 -) -k1,8828:6630773,22414003:0 -k1,8828:6630773,22414003:0 -h1,8828:13269833,22414003:0,0,0 -k1,8828:32583029,22414003:19313196 -g1,8828:32583029,22414003 -) -(1,8833:6630773,23145717:25952256,388497,9436 -(1,8830:6630773,23145717:0,0,0 -g1,8830:6630773,23145717 -g1,8830:6630773,23145717 -g1,8830:6303093,23145717 -(1,8830:6303093,23145717:0,0,0 -) -g1,8830:6630773,23145717 -) -g1,8833:7579210,23145717 -g1,8833:7895356,23145717 -g1,8833:8211502,23145717 -g1,8833:8527648,23145717 -g1,8833:8843794,23145717 -g1,8833:9159940,23145717 -g1,8833:9476086,23145717 -g1,8833:9792232,23145717 -g1,8833:10108378,23145717 -g1,8833:10424524,23145717 -g1,8833:11056816,23145717 -g1,8833:11372962,23145717 -g1,8833:11689108,23145717 -g1,8833:12005254,23145717 -g1,8833:12321400,23145717 -g1,8833:12637546,23145717 -g1,8833:12953692,23145717 -g1,8833:13269838,23145717 -g1,8833:13585984,23145717 -g1,8833:13902130,23145717 -g1,8833:14534422,23145717 -g1,8833:14850568,23145717 -g1,8833:15166714,23145717 -g1,8833:15482860,23145717 -g1,8833:15799006,23145717 -g1,8833:16115152,23145717 -g1,8833:16431298,23145717 -g1,8833:16747444,23145717 -g1,8833:17063590,23145717 -g1,8833:17379736,23145717 -g1,8833:18012028,23145717 -g1,8833:18328174,23145717 -g1,8833:18644320,23145717 -g1,8833:18960466,23145717 -g1,8833:19276612,23145717 -g1,8833:19592758,23145717 -g1,8833:19908904,23145717 -g1,8833:20225050,23145717 -g1,8833:20541196,23145717 -g1,8833:20857342,23145717 -g1,8833:21489634,23145717 -g1,8833:21805780,23145717 -g1,8833:22121926,23145717 -g1,8833:22438072,23145717 -g1,8833:22754218,23145717 -g1,8833:23070364,23145717 -g1,8833:23386510,23145717 -g1,8833:23702656,23145717 -g1,8833:24018802,23145717 -g1,8833:24334948,23145717 -g1,8833:24967240,23145717 -g1,8833:25283386,23145717 -g1,8833:25599532,23145717 -g1,8833:25915678,23145717 -g1,8833:26231824,23145717 -g1,8833:26547970,23145717 -g1,8833:26864116,23145717 -g1,8833:27180262,23145717 -g1,8833:27496408,23145717 -g1,8833:27812554,23145717 -h1,8833:28128700,23145717:0,0,0 -k1,8833:32583029,23145717:4454329 -g1,8833:32583029,23145717 -) -(1,8833:6630773,23811895:25952256,388497,9436 -h1,8833:6630773,23811895:0,0,0 -g1,8833:7579210,23811895 -g1,8833:11056813,23811895 -g1,8833:14534416,23811895 -g1,8833:14850562,23811895 -g1,8833:18012019,23811895 -g1,8833:21489622,23811895 -g1,8833:24967225,23811895 -k1,8833:24967225,23811895:0 -h1,8833:28128682,23811895:0,0,0 -k1,8833:32583029,23811895:4454347 -g1,8833:32583029,23811895 -) -(1,8835:6630773,25133433:25952256,410518,76021 -(1,8834:6630773,25133433:0,0,0 -g1,8834:6630773,25133433 -g1,8834:6630773,25133433 -g1,8834:6303093,25133433 -(1,8834:6303093,25133433:0,0,0 -) -g1,8834:6630773,25133433 -) -k1,8835:6630773,25133433:0 -k1,8835:6630773,25133433:0 -h1,8835:12321396,25133433:0,0,0 -k1,8835:32583028,25133433:20261632 -g1,8835:32583028,25133433 -) -(1,8840:6630773,25865147:25952256,388497,9436 -(1,8837:6630773,25865147:0,0,0 -g1,8837:6630773,25865147 -g1,8837:6630773,25865147 -g1,8837:6303093,25865147 -(1,8837:6303093,25865147:0,0,0 -) -g1,8837:6630773,25865147 -) -g1,8840:7579210,25865147 -g1,8840:7895356,25865147 -g1,8840:8211502,25865147 -g1,8840:8527648,25865147 -g1,8840:9159940,25865147 -g1,8840:9476086,25865147 -g1,8840:9792232,25865147 -g1,8840:10108378,25865147 -g1,8840:10740670,25865147 -g1,8840:11056816,25865147 -g1,8840:11372962,25865147 -g1,8840:11689108,25865147 -g1,8840:12321400,25865147 -g1,8840:12637546,25865147 -g1,8840:12953692,25865147 -g1,8840:13269838,25865147 -g1,8840:13902130,25865147 -g1,8840:14218276,25865147 -g1,8840:14534422,25865147 -g1,8840:14850568,25865147 -g1,8840:15482860,25865147 -g1,8840:15799006,25865147 -g1,8840:16115152,25865147 -g1,8840:16431298,25865147 -h1,8840:16747444,25865147:0,0,0 -k1,8840:32583029,25865147:15835585 -g1,8840:32583029,25865147 -) -(1,8840:6630773,26531325:25952256,388497,9436 -h1,8840:6630773,26531325:0,0,0 -g1,8840:7579210,26531325 -g1,8840:9159939,26531325 -g1,8840:10740668,26531325 -g1,8840:12321397,26531325 -g1,8840:13902126,26531325 -g1,8840:15482855,26531325 -h1,8840:16747438,26531325:0,0,0 -k1,8840:32583029,26531325:15835591 -g1,8840:32583029,26531325 -) -] -) -g1,8841:32583029,26540761 -g1,8841:6630773,26540761 -g1,8841:6630773,26540761 -g1,8841:32583029,26540761 -g1,8841:32583029,26540761 -) -h1,8841:6630773,26737369:0,0,0 -v1,8845:6630773,28627433:0,393216,0 -(1,8878:6630773,34036728:25952256,5802511,589824 -g1,8878:6630773,34036728 -(1,8878:6630773,34036728:25952256,5802511,589824 -(1,8878:6630773,34626552:25952256,6392335,0 -[1,8878:6630773,34626552:25952256,6392335,0 -(1,8878:6630773,34626552:25952256,6366121,0 -r1,8878:6656987,34626552:26214,6366121,0 -[1,8878:6656987,34626552:25899828,6366121,0 -(1,8878:6656987,34036728:25899828,5186473,0 -[1,8878:7246811,34036728:24720180,5186473,0 -(1,8846:7246811,30012140:24720180,1161885,196608 -(1,8845:7246811,30012140:0,1161885,196608 -r1,8878:8794447,30012140:1547636,1358493,196608 -k1,8845:7246811,30012140:-1547636 -) -(1,8845:7246811,30012140:1547636,1161885,196608 -) -k1,8845:9057315,30012140:262868 -k1,8845:9797939,30012140:262867 -k1,8845:10929159,30012140:262868 -k1,8845:12284511,30012140:262867 -(1,8845:12284511,30012140:0,452978,115847 -r1,8878:14049624,30012140:1765113,568825,115847 -k1,8845:12284511,30012140:-1765113 -) -(1,8845:12284511,30012140:1765113,452978,115847 -k1,8845:12284511,30012140:3277 -h1,8845:14046347,30012140:0,411205,112570 -) -k1,8845:14312492,30012140:262868 -k1,8845:15258244,30012140:262867 -(1,8845:15258244,30012140:0,452978,115847 -r1,8878:17726781,30012140:2468537,568825,115847 -k1,8845:15258244,30012140:-2468537 -) -(1,8845:15258244,30012140:2468537,452978,115847 -k1,8845:15258244,30012140:3277 -h1,8845:17723504,30012140:0,411205,112570 -) -k1,8845:17989649,30012140:262868 -k1,8845:19120869,30012140:262868 -k1,8845:20488018,30012140:262867 -k1,8845:21775869,30012140:262868 -k1,8845:23323242,30012140:262867 -k1,8845:25240894,30012140:262868 -k1,8845:26495321,30012140:262867 -k1,8845:28450329,30012140:262868 -k1,8845:31966991,30012140:0 -) -(1,8846:7246811,30853628:24720180,513147,134348 -k1,8845:8809892,30853628:169130 -k1,8845:11303583,30853628:169129 -k1,8845:12124141,30853628:169130 -k1,8845:14105997,30853628:169130 -k1,8845:16262833,30853628:169129 -k1,8845:17623408,30853628:169130 -k1,8845:18989224,30853628:169129 -k1,8845:21937081,30853628:169130 -k1,8845:24065737,30853628:169130 -k1,8845:24766363,30853628:169129 -k1,8845:25594785,30853628:169130 -k1,8845:26119775,30853628:169130 -k1,8845:29051247,30853628:169129 -k1,8845:30775546,30853628:169130 -k1,8845:31966991,30853628:0 -) -(1,8846:7246811,31695116:24720180,513147,126483 -k1,8845:10128227,31695116:179367 -k1,8845:11999734,31695116:179367 -k1,8845:15132809,31695116:179367 -k1,8845:16378447,31695116:179367 -k1,8845:18963641,31695116:179367 -k1,8845:19759046,31695116:179367 -k1,8845:21751138,31695116:179366 -k1,8845:24422184,31695116:179367 -k1,8845:25951593,31695116:179367 -k1,8845:26790252,31695116:179367 -k1,8845:28666346,31695116:179367 -k1,8845:30320928,31695116:179367 -k1,8845:31151723,31695116:179367 -k1,8845:31966991,31695116:0 -) -(1,8846:7246811,32536604:24720180,513147,126483 -k1,8845:8899192,32536604:258430 -k1,8845:10176706,32536604:258429 -k1,8845:13047401,32536604:258430 -k1,8845:17995586,32536604:258429 -k1,8845:20708339,32536604:258430 -k1,8845:22653665,32536604:258429 -(1,8845:22653665,32536604:0,452978,115847 -r1,8878:24067066,32536604:1413401,568825,115847 -k1,8845:22653665,32536604:-1413401 -) -(1,8845:22653665,32536604:1413401,452978,115847 -k1,8845:22653665,32536604:3277 -h1,8845:24063789,32536604:0,411205,112570 -) -k1,8845:24325496,32536604:258430 -k1,8845:27285974,32536604:258429 -k1,8845:28563489,32536604:258430 -k1,8845:31307699,32536604:258429 -k1,8845:31966991,32536604:0 -) -(1,8846:7246811,33378092:24720180,513147,134348 -g1,8845:10493464,33378092 -g1,8845:12205919,33378092 -g1,8845:13596593,33378092 -(1,8845:13596593,33378092:0,452978,122846 -r1,8878:16768553,33378092:3171960,575824,122846 -k1,8845:13596593,33378092:-3171960 -) -(1,8845:13596593,33378092:3171960,452978,122846 -k1,8845:13596593,33378092:3277 -h1,8845:16765276,33378092:0,411205,112570 -) -g1,8845:16967782,33378092 -g1,8845:18186096,33378092 -g1,8845:20805570,33378092 -g1,8845:21687684,33378092 -g1,8845:22953184,33378092 -g1,8845:23768451,33378092 -g1,8845:26224085,33378092 -g1,8845:26779174,33378092 -k1,8846:31966991,33378092:2401882 -g1,8846:31966991,33378092 -) -] -) -] -r1,8878:32583029,34626552:26214,6366121,0 -) -] -) -) -g1,8878:32583029,34036728 -) -] -(1,8878:32583029,45706769:0,0,0 -g1,8878:32583029,45706769 -) -) -] -(1,8878:6630773,47279633:25952256,0,0 -h1,8878:6630773,47279633:25952256,0,0 -) -] -(1,8878:4262630,4025873:0,0,0 -[1,8878:-473656,4025873:0,0,0 -(1,8878:-473656,-710413:0,0,0 -(1,8878:-473656,-710413:0,0,0 -g1,8878:-473656,-710413 -) -g1,8878:-473656,-710413 -) -] -) -] -!21779 -}168 -Input:1359:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!104 -{169 -[1,8891:4262630,47279633:28320399,43253760,0 -(1,8891:4262630,4025873:0,0,0 -[1,8891:-473656,4025873:0,0,0 -(1,8891:-473656,-710413:0,0,0 -(1,8891:-473656,-644877:0,0,0 -k1,8891:-473656,-644877:-65536 -) -(1,8891:-473656,4736287:0,0,0 -k1,8891:-473656,4736287:5209943 -) -g1,8891:-473656,-710413 -) -] -) -[1,8891:6630773,47279633:25952256,43253760,0 -[1,8891:6630773,4812305:25952256,786432,0 -(1,8891:6630773,4812305:25952256,505283,134348 -(1,8891:6630773,4812305:25952256,505283,134348 -g1,8891:3078558,4812305 -[1,8891:3078558,4812305:0,0,0 -(1,8891:3078558,2439708:0,1703936,0 -k1,8891:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,8891:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,8891:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,8891:3078558,4812305:0,0,0 -(1,8891:3078558,2439708:0,1703936,0 -g1,8891:29030814,2439708 -g1,8891:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,8891:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,8891:37855564,2439708:1179648,16384,0 -) -) -k1,8891:3078556,2439708:-34777008 -) -] -[1,8891:3078558,4812305:0,0,0 -(1,8891:3078558,49800853:0,16384,2228224 -k1,8891:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,8891:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,8891:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,8891:3078558,4812305:0,0,0 -(1,8891:3078558,49800853:0,16384,2228224 -g1,8891:29030814,49800853 -g1,8891:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,8891:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,8891:37855564,49800853:1179648,16384,0 -) -) -k1,8891:3078556,49800853:-34777008 -) -] -g1,8891:6630773,4812305 -k1,8891:24502442,4812305:16676292 -g1,8891:25889183,4812305 -g1,8891:26537989,4812305 -g1,8891:29852144,4812305 -) -) -] -[1,8891:6630773,45706769:25952256,40108032,0 -(1,8891:6630773,45706769:25952256,40108032,0 -(1,8891:6630773,45706769:0,0,0 -g1,8891:6630773,45706769 -) -[1,8891:6630773,45706769:25952256,40108032,0 -v1,8878:6630773,6254097:0,393216,0 -(1,8878:6630773,18688568:25952256,12827687,616038 -g1,8878:6630773,18688568 -(1,8878:6630773,18688568:25952256,12827687,616038 -(1,8878:6630773,19304606:25952256,13443725,0 -[1,8878:6630773,19304606:25952256,13443725,0 -(1,8878:6630773,19278392:25952256,13417511,0 -r1,8891:6656987,19278392:26214,13417511,0 -[1,8878:6656987,19278392:25899828,13417511,0 -(1,8878:6656987,18688568:25899828,12237863,0 -[1,8878:7246811,18688568:24720180,12237863,0 -v1,8848:7246811,6843921:0,393216,0 -(1,8876:7246811,17967672:24720180,11516967,196608 -g1,8876:7246811,17967672 -g1,8876:7246811,17967672 -g1,8876:7050203,17967672 -(1,8876:7050203,17967672:0,11516967,196608 -r1,8891:32163599,17967672:25113396,11713575,196608 -k1,8876:7050203,17967672:-25113396 -) -(1,8876:7050203,17967672:25113396,11516967,196608 -[1,8876:7246811,17967672:24720180,11320359,0 -(1,8850:7246811,7057831:24720180,410518,76021 -(1,8849:7246811,7057831:0,0,0 -g1,8849:7246811,7057831 -g1,8849:7246811,7057831 -g1,8849:6919131,7057831 -(1,8849:6919131,7057831:0,0,0 -) -g1,8849:7246811,7057831 -) -k1,8850:7246811,7057831:0 -h1,8850:10724413,7057831:0,0,0 -k1,8850:31966991,7057831:21242578 -g1,8850:31966991,7057831 -) -(1,8863:7246811,7789545:24720180,410518,76021 -(1,8852:7246811,7789545:0,0,0 -g1,8852:7246811,7789545 -g1,8852:7246811,7789545 -g1,8852:6919131,7789545 -(1,8852:6919131,7789545:0,0,0 -) -g1,8852:7246811,7789545 -) -g1,8863:8195248,7789545 -g1,8863:8511394,7789545 -g1,8863:9775977,7789545 -g1,8863:14518163,7789545 -g1,8863:14834309,7789545 -g1,8863:15150455,7789545 -g1,8863:15466601,7789545 -g1,8863:15782747,7789545 -g1,8863:16098893,7789545 -g1,8863:19892641,7789545 -g1,8863:20208787,7789545 -g1,8863:20524933,7789545 -g1,8863:20841079,7789545 -g1,8863:21157225,7789545 -g1,8863:21473371,7789545 -g1,8863:21789517,7789545 -g1,8863:22105663,7789545 -g1,8863:22421809,7789545 -h1,8863:27163994,7789545:0,0,0 -k1,8863:31966991,7789545:4802997 -g1,8863:31966991,7789545 -) -(1,8863:7246811,8455723:24720180,410518,76021 -h1,8863:7246811,8455723:0,0,0 -g1,8863:8195248,8455723 -g1,8863:8511394,8455723 -g1,8863:9775977,8455723 -g1,8863:12937434,8455723 -g1,8863:13253580,8455723 -g1,8863:13569726,8455723 -g1,8863:13885872,8455723 -g1,8863:14202018,8455723 -g1,8863:14518164,8455723 -g1,8863:14834310,8455723 -g1,8863:15150456,8455723 -g1,8863:15466602,8455723 -g1,8863:15782748,8455723 -g1,8863:16098894,8455723 -g1,8863:17363477,8455723 -g1,8863:17679623,8455723 -g1,8863:17995769,8455723 -g1,8863:18311915,8455723 -g1,8863:18628061,8455723 -g1,8863:18944207,8455723 -g1,8863:19260353,8455723 -g1,8863:19576499,8455723 -g1,8863:19892645,8455723 -g1,8863:20208791,8455723 -g1,8863:20524937,8455723 -g1,8863:20841083,8455723 -g1,8863:21157229,8455723 -g1,8863:21473375,8455723 -g1,8863:21789521,8455723 -g1,8863:22105667,8455723 -g1,8863:22421813,8455723 -h1,8863:24318687,8455723:0,0,0 -k1,8863:31966991,8455723:7648304 -g1,8863:31966991,8455723 -) -(1,8863:7246811,9121901:24720180,410518,101187 -h1,8863:7246811,9121901:0,0,0 -g1,8863:8195248,9121901 -g1,8863:8511394,9121901 -g1,8863:9775977,9121901 -g1,8863:11356706,9121901 -g1,8863:11672852,9121901 -g1,8863:11988998,9121901 -g1,8863:12305144,9121901 -g1,8863:12621290,9121901 -g1,8863:12937436,9121901 -g1,8863:13253582,9121901 -g1,8863:13569728,9121901 -g1,8863:13885874,9121901 -g1,8863:14202020,9121901 -g1,8863:14518166,9121901 -g1,8863:14834312,9121901 -g1,8863:15150458,9121901 -g1,8863:15466604,9121901 -g1,8863:15782750,9121901 -g1,8863:16098896,9121901 -g1,8863:18944207,9121901 -g1,8863:19260353,9121901 -g1,8863:19576499,9121901 -g1,8863:19892645,9121901 -g1,8863:20208791,9121901 -g1,8863:20524937,9121901 -g1,8863:20841083,9121901 -g1,8863:21157229,9121901 -g1,8863:21473375,9121901 -g1,8863:21789521,9121901 -g1,8863:22105667,9121901 -g1,8863:22421813,9121901 -h1,8863:28428581,9121901:0,0,0 -k1,8863:31966991,9121901:3538410 -g1,8863:31966991,9121901 -) -(1,8863:7246811,9788079:24720180,404226,76021 -h1,8863:7246811,9788079:0,0,0 -g1,8863:8195248,9788079 -g1,8863:9775977,9788079 -g1,8863:13253580,9788079 -g1,8863:13569726,9788079 -g1,8863:13885872,9788079 -g1,8863:14202018,9788079 -g1,8863:14518164,9788079 -g1,8863:14834310,9788079 -g1,8863:15150456,9788079 -g1,8863:15466602,9788079 -g1,8863:15782748,9788079 -g1,8863:16098894,9788079 -g1,8863:17995768,9788079 -g1,8863:18311914,9788079 -g1,8863:18628060,9788079 -g1,8863:18944206,9788079 -g1,8863:19260352,9788079 -g1,8863:19576498,9788079 -g1,8863:19892644,9788079 -g1,8863:20208790,9788079 -g1,8863:20524936,9788079 -g1,8863:20841082,9788079 -g1,8863:21157228,9788079 -g1,8863:21473374,9788079 -g1,8863:21789520,9788079 -g1,8863:22105666,9788079 -g1,8863:22421812,9788079 -h1,8863:27163997,9788079:0,0,0 -k1,8863:31966991,9788079:4802994 -g1,8863:31966991,9788079 -) -(1,8863:7246811,10454257:24720180,404226,107478 -h1,8863:7246811,10454257:0,0,0 -g1,8863:8195248,10454257 -g1,8863:9775977,10454257 -g1,8863:11988997,10454257 -g1,8863:12305143,10454257 -g1,8863:12621289,10454257 -g1,8863:12937435,10454257 -g1,8863:13253581,10454257 -g1,8863:13569727,10454257 -g1,8863:13885873,10454257 -g1,8863:14202019,10454257 -g1,8863:14518165,10454257 -g1,8863:14834311,10454257 -g1,8863:15150457,10454257 -g1,8863:15466603,10454257 -g1,8863:15782749,10454257 -g1,8863:16098895,10454257 -g1,8863:19260352,10454257 -g1,8863:19576498,10454257 -g1,8863:19892644,10454257 -g1,8863:20208790,10454257 -g1,8863:20524936,10454257 -g1,8863:20841082,10454257 -g1,8863:21157228,10454257 -g1,8863:21473374,10454257 -g1,8863:21789520,10454257 -g1,8863:22105666,10454257 -g1,8863:22421812,10454257 -h1,8863:27163997,10454257:0,0,0 -k1,8863:31966991,10454257:4802994 -g1,8863:31966991,10454257 -) -(1,8863:7246811,11120435:24720180,410518,101187 -h1,8863:7246811,11120435:0,0,0 -g1,8863:8195248,11120435 -g1,8863:9775977,11120435 -g1,8863:14202017,11120435 -g1,8863:14518163,11120435 -g1,8863:14834309,11120435 -g1,8863:15150455,11120435 -g1,8863:15466601,11120435 -g1,8863:15782747,11120435 -g1,8863:16098893,11120435 -g1,8863:19260350,11120435 -g1,8863:19576496,11120435 -g1,8863:19892642,11120435 -g1,8863:20208788,11120435 -g1,8863:20524934,11120435 -g1,8863:20841080,11120435 -g1,8863:21157226,11120435 -g1,8863:21473372,11120435 -g1,8863:21789518,11120435 -g1,8863:22105664,11120435 -g1,8863:22421810,11120435 -h1,8863:23370247,11120435:0,0,0 -k1,8863:31966991,11120435:8596744 -g1,8863:31966991,11120435 -) -(1,8863:7246811,11786613:24720180,404226,107478 -h1,8863:7246811,11786613:0,0,0 -g1,8863:8195248,11786613 -g1,8863:9775977,11786613 -g1,8863:13569725,11786613 -g1,8863:13885871,11786613 -g1,8863:14202017,11786613 -g1,8863:14518163,11786613 -g1,8863:14834309,11786613 -g1,8863:15150455,11786613 -g1,8863:15466601,11786613 -g1,8863:15782747,11786613 -g1,8863:16098893,11786613 -g1,8863:19576496,11786613 -g1,8863:19892642,11786613 -g1,8863:20208788,11786613 -g1,8863:20524934,11786613 -g1,8863:20841080,11786613 -g1,8863:21157226,11786613 -g1,8863:21473372,11786613 -g1,8863:21789518,11786613 -g1,8863:22105664,11786613 -g1,8863:22421810,11786613 -h1,8863:24634830,11786613:0,0,0 -k1,8863:31966991,11786613:7332161 -g1,8863:31966991,11786613 -) -(1,8863:7246811,12452791:24720180,410518,76021 -h1,8863:7246811,12452791:0,0,0 -g1,8863:8195248,12452791 -g1,8863:9775977,12452791 -g1,8863:11988997,12452791 -g1,8863:12305143,12452791 -g1,8863:12621289,12452791 -g1,8863:12937435,12452791 -g1,8863:13253581,12452791 -g1,8863:13569727,12452791 -g1,8863:13885873,12452791 -g1,8863:14202019,12452791 -g1,8863:14518165,12452791 -g1,8863:14834311,12452791 -g1,8863:15150457,12452791 -g1,8863:15466603,12452791 -g1,8863:15782749,12452791 -g1,8863:16098895,12452791 -g1,8863:19260352,12452791 -g1,8863:19576498,12452791 -g1,8863:19892644,12452791 -g1,8863:20208790,12452791 -g1,8863:20524936,12452791 -g1,8863:20841082,12452791 -g1,8863:21157228,12452791 -g1,8863:21473374,12452791 -g1,8863:21789520,12452791 -g1,8863:22105666,12452791 -g1,8863:22421812,12452791 -h1,8863:24634832,12452791:0,0,0 -k1,8863:31966991,12452791:7332159 -g1,8863:31966991,12452791 -) -(1,8863:7246811,13118969:24720180,410518,76021 -h1,8863:7246811,13118969:0,0,0 -g1,8863:8195248,13118969 -g1,8863:9775977,13118969 -g1,8863:11988997,13118969 -g1,8863:12305143,13118969 -g1,8863:12621289,13118969 -g1,8863:12937435,13118969 -g1,8863:13253581,13118969 -g1,8863:13569727,13118969 -g1,8863:13885873,13118969 -g1,8863:14202019,13118969 -g1,8863:14518165,13118969 -g1,8863:14834311,13118969 -g1,8863:15150457,13118969 -g1,8863:15466603,13118969 -g1,8863:15782749,13118969 -g1,8863:16098895,13118969 -g1,8863:18944206,13118969 -g1,8863:19260352,13118969 -g1,8863:19576498,13118969 -g1,8863:19892644,13118969 -g1,8863:20208790,13118969 -g1,8863:20524936,13118969 -g1,8863:20841082,13118969 -g1,8863:21157228,13118969 -g1,8863:21473374,13118969 -g1,8863:21789520,13118969 -g1,8863:22105666,13118969 -g1,8863:22421812,13118969 -h1,8863:25267123,13118969:0,0,0 -k1,8863:31966991,13118969:6699868 -g1,8863:31966991,13118969 -) -(1,8863:7246811,13785147:24720180,404226,76021 -h1,8863:7246811,13785147:0,0,0 -g1,8863:8195248,13785147 -g1,8863:9775977,13785147 -g1,8863:12621288,13785147 -g1,8863:12937434,13785147 -g1,8863:13253580,13785147 -g1,8863:13569726,13785147 -g1,8863:13885872,13785147 -g1,8863:14202018,13785147 -g1,8863:14518164,13785147 -g1,8863:14834310,13785147 -g1,8863:15150456,13785147 -g1,8863:15466602,13785147 -g1,8863:15782748,13785147 -g1,8863:16098894,13785147 -g1,8863:19892642,13785147 -g1,8863:20208788,13785147 -g1,8863:20524934,13785147 -g1,8863:20841080,13785147 -g1,8863:21157226,13785147 -g1,8863:21473372,13785147 -g1,8863:21789518,13785147 -g1,8863:22105664,13785147 -g1,8863:22421810,13785147 -h1,8863:25267121,13785147:0,0,0 -k1,8863:31966991,13785147:6699870 -g1,8863:31966991,13785147 -) -(1,8865:7246811,15106685:24720180,410518,107478 -(1,8864:7246811,15106685:0,0,0 -g1,8864:7246811,15106685 -g1,8864:7246811,15106685 -g1,8864:6919131,15106685 -(1,8864:6919131,15106685:0,0,0 -) -g1,8864:7246811,15106685 -) -h1,8865:11672851,15106685:0,0,0 -k1,8865:31966991,15106685:20294140 -g1,8865:31966991,15106685 -) -(1,8869:7246811,15838399:24720180,404226,76021 -(1,8867:7246811,15838399:0,0,0 -g1,8867:7246811,15838399 -g1,8867:7246811,15838399 -g1,8867:6919131,15838399 -(1,8867:6919131,15838399:0,0,0 -) -g1,8867:7246811,15838399 -) -g1,8869:8195248,15838399 -g1,8869:9459831,15838399 -h1,8869:10724414,15838399:0,0,0 -k1,8869:31966990,15838399:21242576 -g1,8869:31966990,15838399 -) -(1,8871:7246811,17159937:24720180,410518,31456 -(1,8870:7246811,17159937:0,0,0 -g1,8870:7246811,17159937 -g1,8870:7246811,17159937 -g1,8870:6919131,17159937 -(1,8870:6919131,17159937:0,0,0 -) -g1,8870:7246811,17159937 -) -h1,8871:10092123,17159937:0,0,0 -k1,8871:31966991,17159937:21874868 -g1,8871:31966991,17159937 -) -(1,8875:7246811,17891651:24720180,404226,76021 -(1,8873:7246811,17891651:0,0,0 -g1,8873:7246811,17891651 -g1,8873:7246811,17891651 -g1,8873:6919131,17891651 -(1,8873:6919131,17891651:0,0,0 -) -g1,8873:7246811,17891651 -) -g1,8875:8195248,17891651 -g1,8875:9459831,17891651 -h1,8875:9775977,17891651:0,0,0 -k1,8875:31966991,17891651:22191014 -g1,8875:31966991,17891651 -) -] -) -g1,8876:31966991,17967672 -g1,8876:7246811,17967672 -g1,8876:7246811,17967672 -g1,8876:31966991,17967672 -g1,8876:31966991,17967672 -) -h1,8876:7246811,18164280:0,0,0 -] -) -] -r1,8891:32583029,19278392:26214,13417511,0 -) -] -) -) -g1,8878:32583029,18688568 -) -h1,8878:6630773,19304606:0,0,0 -(1,8882:6630773,22636462:25952256,32768,229376 -(1,8882:6630773,22636462:0,32768,229376 -(1,8882:6630773,22636462:5505024,32768,229376 -r1,8891:12135797,22636462:5505024,262144,229376 -) -k1,8882:6630773,22636462:-5505024 -) -(1,8882:6630773,22636462:25952256,32768,0 -r1,8891:32583029,22636462:25952256,32768,0 -) -) -(1,8882:6630773,24240790:25952256,606339,161218 -(1,8882:6630773,24240790:1974731,582746,14155 -g1,8882:6630773,24240790 -g1,8882:8605504,24240790 -) -g1,8882:12965483,24240790 -k1,8882:32583029,24240790:15456534 -g1,8882:32583029,24240790 -) -(1,8888:6630773,25475494:25952256,513147,134348 -k1,8887:9662941,25475494:242300 -(1,8887:9662941,25475494:0,452978,115847 -r1,8891:11428054,25475494:1765113,568825,115847 -k1,8887:9662941,25475494:-1765113 -) -(1,8887:9662941,25475494:1765113,452978,115847 -k1,8887:9662941,25475494:3277 -h1,8887:11424777,25475494:0,411205,112570 -) -k1,8887:11670354,25475494:242300 -k1,8887:12444151,25475494:242300 -k1,8887:13605266,25475494:242300 -k1,8887:17219393,25475494:242300 -k1,8887:18409345,25475494:242301 -k1,8887:20586268,25475494:242300 -k1,8887:24078498,25475494:242300 -k1,8887:26812477,25475494:242300 -k1,8887:27814995,25475494:242300 -k1,8887:31351135,25475494:242300 -k1,8887:32051532,25475494:242300 -k1,8887:32583029,25475494:0 -) -(1,8888:6630773,26316982:25952256,505283,134348 -k1,8887:8927941,26316982:302252 -k1,8887:12480123,26316982:302252 -k1,8887:13385306,26316982:302252 -k1,8887:14673219,26316982:302252 -k1,8887:18628447,26316982:302251 -k1,8887:20938722,26316982:302252 -k1,8887:23251619,26316982:302252 -k1,8887:24545431,26316982:302252 -k1,8887:26585698,26316982:302252 -k1,8887:30024503,26316982:302252 -k1,8887:32583029,26316982:0 -) -(1,8888:6630773,27158470:25952256,513147,134348 -k1,8887:8972475,27158470:407079 -k1,8887:10398639,27158470:407079 -k1,8887:12793426,27158470:407080 -k1,8887:13851933,27158470:407079 -k1,8887:15822046,27158470:407079 -k1,8887:17609969,27158470:407079 -k1,8887:18548545,27158470:407079 -k1,8887:21717967,27158470:407079 -k1,8887:23692668,27158470:407080 -k1,8887:25118832,27158470:407079 -k1,8887:27394998,27158470:407079 -k1,8887:28461369,27158470:407079 -k1,8887:29887533,27158470:407079 -k1,8887:32583029,27158470:0 -) -(1,8888:6630773,27999958:25952256,513147,134348 -k1,8887:8570579,27999958:241768 -k1,8887:12839534,27999958:241768 -k1,8887:16984626,27999958:241768 -k1,8887:17885686,27999958:241768 -k1,8887:19259261,27999958:241768 -k1,8887:21626363,27999958:241769 -k1,8887:22859691,27999958:241768 -k1,8887:24914185,27999958:241768 -k1,8887:27647632,27999958:241768 -k1,8887:28517235,27999958:241768 -k1,8887:31563944,27999958:241768 -k1,8887:32583029,27999958:0 -) -(1,8888:6630773,28841446:25952256,505283,126483 -k1,8887:12342301,28841446:200606 -k1,8887:15332774,28841446:200605 -k1,8887:17046606,28841446:200606 -k1,8887:17863249,28841446:200605 -k1,8887:21217447,28841446:200606 -k1,8887:22609498,28841446:200606 -k1,8887:23829188,28841446:200605 -k1,8887:27227296,28841446:200606 -k1,8887:30217769,28841446:200605 -k1,8887:31931601,28841446:200606 -k1,8887:32583029,28841446:0 -) -(1,8888:6630773,29682934:25952256,505283,134348 -g1,8887:9499283,29682934 -g1,8887:11948363,29682934 -g1,8887:13139152,29682934 -g1,8887:16588311,29682934 -g1,8887:19105548,29682934 -g1,8887:19920815,29682934 -g1,8887:21628683,29682934 -k1,8888:32583029,29682934:7169642 -g1,8888:32583029,29682934 -) -(1,8890:6630773,30524422:25952256,513147,134348 -h1,8889:6630773,30524422:983040,0,0 -k1,8889:9660502,30524422:271974 -k1,8889:12977935,30524422:271975 -k1,8889:16691204,30524422:271974 -k1,8889:18463952,30524422:271974 -k1,8889:19683578,30524422:271975 -k1,8889:22211957,30524422:271974 -k1,8889:25530044,30524422:271974 -k1,8889:26749669,30524422:271974 -k1,8889:28040729,30524422:271975 -k1,8889:31923737,30524422:271974 -k1,8889:32583029,30524422:0 -) -(1,8890:6630773,31365910:25952256,513147,126483 -k1,8889:8646963,31365910:203464 -k1,8889:11342106,31365910:203464 -k1,8889:12161608,31365910:203464 -k1,8889:13384157,31365910:203464 -k1,8889:14954702,31365910:203464 -k1,8889:15817458,31365910:203464 -k1,8889:19270852,31365910:203464 -k1,8889:21965995,31365910:203464 -k1,8889:23188544,31365910:203464 -k1,8889:26438121,31365910:203464 -k1,8889:27633145,31365910:203464 -k1,8889:30628443,31365910:203464 -k1,8889:31593435,31365910:203464 -k1,8890:32583029,31365910:0 -) -(1,8890:6630773,32207398:25952256,505283,126483 -k1,8889:10915779,32207398:198181 -k1,8889:12155982,32207398:198181 -k1,8889:15399620,32207398:198180 -k1,8889:18714038,32207398:198181 -k1,8889:21958332,32207398:198181 -k1,8889:23260795,32207398:198181 -k1,8889:25588241,32207398:198181 -k1,8889:26534187,32207398:198180 -k1,8889:29697872,32207398:198181 -k1,8889:31966991,32207398:198181 -k1,8889:32583029,32207398:0 -) -(1,8890:6630773,33048886:25952256,513147,134348 -k1,8889:10205172,33048886:219611 -k1,8889:14337282,33048886:219611 -k1,8889:16254275,33048886:219611 -k1,8889:18392780,33048886:219611 -k1,8889:21106037,33048886:219612 -k1,8889:22135018,33048886:219611 -k1,8889:24786670,33048886:219611 -k1,8889:26694488,33048886:219611 -k1,8889:29730181,33048886:219611 -k1,8889:31343743,33048886:219611 -k1,8890:32583029,33048886:0 -) -(1,8890:6630773,33890374:25952256,505283,134348 -k1,8889:8079529,33890374:222577 -k1,8889:11550069,33890374:222576 -k1,8889:15175275,33890374:222577 -k1,8889:18321413,33890374:222577 -k1,8889:20481233,33890374:222576 -k1,8889:21988316,33890374:222577 -k1,8889:24595747,33890374:222576 -k1,8889:29141734,33890374:222577 -k1,8889:32583029,33890374:0 -) -(1,8890:6630773,34731862:25952256,513147,134348 -k1,8889:8185156,34731862:269877 -k1,8889:9446593,34731862:269877 -k1,8889:11256566,34731862:269877 -k1,8889:12474094,34731862:269877 -k1,8889:13940659,34731862:269878 -k1,8889:17200288,34731862:269877 -k1,8889:18512187,34731862:269877 -k1,8889:23802122,34731862:269877 -k1,8889:26863833,34731862:269877 -k1,8889:29692236,34731862:269877 -k1,8889:32583029,34731862:0 -) -(1,8890:6630773,35573350:25952256,513147,134348 -k1,8889:8512639,35573350:184484 -k1,8889:10395160,35573350:184483 -k1,8889:11598729,35573350:184484 -k1,8889:14894207,35573350:184484 -k1,8889:16435942,35573350:184484 -k1,8889:17271853,35573350:184483 -k1,8889:20303221,35573350:184484 -k1,8889:21948503,35573350:184484 -k1,8889:22903690,35573350:184484 -k1,8889:25345888,35573350:184483 -k1,8889:26521932,35573350:184484 -k1,8889:29631943,35573350:184484 -k1,8889:32583029,35573350:0 -) -(1,8890:6630773,36414838:25952256,513147,134348 -k1,8889:9488849,36414838:234014 -k1,8889:13164158,36414838:234014 -k1,8889:15912788,36414838:234014 -k1,8889:16798229,36414838:234013 -k1,8889:19661547,36414838:234014 -k1,8889:20666264,36414838:234014 -k1,8889:22736597,36414838:234014 -k1,8889:24767608,36414838:234014 -k1,8889:25949273,36414838:234014 -k1,8889:27202371,36414838:234013 -k1,8889:29447030,36414838:234014 -k1,8889:30340336,36414838:234014 -k1,8889:31593435,36414838:234014 -k1,8890:32583029,36414838:0 -) -(1,8890:6630773,37256326:25952256,513147,134348 -k1,8889:9623500,37256326:158295 -k1,8889:10433222,37256326:158294 -k1,8889:11339283,37256326:158295 -k1,8889:14807800,37256326:158294 -k1,8889:15321955,37256326:158295 -k1,8889:17277247,37256326:158295 -k1,8889:20740522,37256326:158294 -k1,8889:23659849,37256326:158295 -k1,8889:24579672,37256326:158295 -k1,8889:25757051,37256326:158294 -k1,8889:27469860,37256326:158295 -k1,8889:28255989,37256326:158294 -k1,8889:29865906,37256326:158295 -k1,8889:32583029,37256326:0 -) -(1,8890:6630773,38097814:25952256,505283,134348 -k1,8889:7884073,38097814:234215 -k1,8889:10834101,38097814:234216 -k1,8889:13860150,38097814:234215 -k1,8889:14710404,38097814:234216 -k1,8889:15963704,38097814:234215 -k1,8889:18952397,38097814:234215 -k1,8889:21903736,38097814:234216 -k1,8889:22669448,38097814:234215 -k1,8889:24416889,38097814:234215 -k1,8889:25337267,38097814:234216 -k1,8889:26590567,38097814:234215 -k1,8889:29303355,38097814:234216 -k1,8889:31391584,38097814:234215 -k1,8889:32583029,38097814:0 -) -(1,8890:6630773,38939302:25952256,513147,126483 -k1,8889:8050189,38939302:216175 -k1,8889:10711512,38939302:216175 -k1,8889:11459185,38939302:216176 -k1,8889:14459985,38939302:216175 -k1,8889:15832870,38939302:216175 -k1,8889:17474453,38939302:216175 -k1,8889:19203855,38939302:216176 -k1,8889:22066374,38939302:216175 -k1,8889:23479236,38939302:216175 -k1,8889:27389675,38939302:216175 -k1,8889:28137347,38939302:216175 -k1,8889:29638029,38939302:216176 -k1,8889:31367430,38939302:216175 -k1,8889:31939465,38939302:216175 -k1,8890:32583029,38939302:0 -) -(1,8890:6630773,39780790:25952256,513147,134348 -k1,8889:8028437,39780790:177384 -k1,8889:10691602,39780790:177384 -k1,8889:11528278,39780790:177384 -k1,8889:14753086,39780790:177384 -k1,8889:15949555,39780790:177384 -k1,8889:19237933,39780790:177384 -k1,8889:20547780,39780790:177385 -k1,8889:23582534,39780790:177384 -k1,8889:25027384,39780790:177384 -k1,8889:25560628,39780790:177384 -k1,8889:28350277,39780790:177384 -k1,8889:29812167,39780790:177384 -k1,8889:32583029,39780790:0 -) -(1,8890:6630773,40622278:25952256,513147,126483 -k1,8889:7628836,40622278:250297 -k1,8889:10929179,40622278:250297 -k1,8889:13628556,40622278:250297 -k1,8889:14506688,40622278:250297 -k1,8889:15953672,40622278:250297 -k1,8889:17222398,40622278:250297 -k1,8889:18341048,40622278:250298 -k1,8889:19993815,40622278:250297 -k1,8889:22961235,40622278:250297 -k1,8889:24909570,40622278:250297 -k1,8889:26178952,40622278:250297 -k1,8889:30697609,40622278:250297 -k1,8889:31563944,40622278:250297 -k1,8889:32583029,40622278:0 -) -(1,8890:6630773,41463766:25952256,513147,134348 -k1,8889:7518685,41463766:200439 -k1,8889:8250621,41463766:200439 -k1,8889:10803147,41463766:200439 -k1,8889:12446034,41463766:200440 -k1,8889:13002333,41463766:200439 -k1,8889:15400850,41463766:200439 -k1,8889:18847943,41463766:200439 -k1,8889:19731267,41463766:200439 -k1,8889:21629744,41463766:200439 -k1,8889:22639554,41463766:200440 -k1,8889:26793125,41463766:200439 -k1,8889:28094569,41463766:200439 -k1,8889:29804958,41463766:200439 -k1,8889:32583029,41463766:0 -) -(1,8890:6630773,42305254:25952256,513147,126483 -k1,8889:8347765,42305254:203766 -k1,8889:8907392,42305254:203767 -k1,8889:11309236,42305254:203766 -k1,8889:14709849,42305254:203767 -k1,8889:17399396,42305254:203766 -k1,8889:18262454,42305254:203766 -k1,8889:21687316,42305254:203767 -k1,8889:22518917,42305254:203766 -k1,8889:23741768,42305254:203766 -k1,8889:25251668,42305254:203767 -k1,8889:26996185,42305254:203766 -k1,8889:28068304,42305254:203767 -k1,8889:30559277,42305254:203766 -k1,8889:32583029,42305254:0 -) -(1,8890:6630773,43146742:25952256,505283,134348 -k1,8889:8392240,43146742:177462 -k1,8889:11789486,43146742:177462 -k1,8889:12582986,43146742:177462 -k1,8889:13779533,43146742:177462 -k1,8889:16198326,43146742:177462 -k1,8889:17916539,43146742:177462 -k1,8889:18962353,43146742:177462 -k1,8889:19955084,43146742:177463 -k1,8889:21198817,43146742:177462 -k1,8889:23400031,43146742:177462 -k1,8889:25631391,43146742:177462 -k1,8889:28854966,43146742:177462 -k1,8889:30223873,43146742:177462 -k1,8889:31931601,43146742:177462 -k1,8889:32583029,43146742:0 -) -(1,8890:6630773,43988230:25952256,513147,134348 -k1,8889:8229742,43988230:212227 -k1,8889:9389620,43988230:212227 -k1,8889:12364190,43988230:212227 -k1,8889:14144694,43988230:212227 -k1,8889:15016213,43988230:212227 -k1,8889:18242442,43988230:212228 -k1,8889:20267395,43988230:212227 -k1,8889:22262857,43988230:212227 -k1,8889:26428216,43988230:212227 -k1,8889:28171364,43988230:212227 -k1,8889:29402676,43988230:212227 -k1,8889:30921036,43988230:212227 -k1,8889:32583029,43988230:0 -) -(1,8890:6630773,44829718:25952256,513147,134348 -k1,8889:7509693,44829718:227492 -k1,8889:8552452,44829718:227491 -k1,8889:9311441,44829718:227492 -k1,8889:10190361,44829718:227492 -k1,8889:11324215,44829718:227491 -k1,8889:14314050,44829718:227492 -k1,8889:17020114,44829718:227492 -k1,8889:19258251,44829718:227492 -k1,8889:20677187,44829718:227491 -k1,8889:21370640,44829718:227492 -k1,8889:22801373,44829718:227492 -k1,8889:24314680,44829718:227491 -k1,8889:26073093,44829718:227492 -k1,8889:28358415,44829718:227492 -k1,8889:29237334,44829718:227491 -k1,8889:29820686,44829718:227492 -k1,8889:32583029,44829718:0 -) -(1,8890:6630773,45671206:25952256,505283,134348 -k1,8889:11458090,45671206:202441 -k1,8889:14945194,45671206:202440 -k1,8889:17021965,45671206:202441 -k1,8889:18909991,45671206:202440 -k1,8889:21399639,45671206:202441 -k1,8889:23163802,45671206:202440 -k1,8889:24438412,45671206:202441 -k1,8889:25707123,45671206:202440 -k1,8889:28212499,45671206:202441 -k1,8889:30104457,45671206:202440 -k1,8889:32583029,45671206:0 -) -] -(1,8891:32583029,45706769:0,0,0 -g1,8891:32583029,45706769 -) -) -] -(1,8891:6630773,47279633:25952256,0,0 -h1,8891:6630773,47279633:25952256,0,0 -) -] -(1,8891:4262630,4025873:0,0,0 -[1,8891:-473656,4025873:0,0,0 -(1,8891:-473656,-710413:0,0,0 -(1,8891:-473656,-710413:0,0,0 -g1,8891:-473656,-710413 -) -g1,8891:-473656,-710413 -) -] -) -] -!26875 -}169 -Input:1360:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1361:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1362:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1363:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1364:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1365:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1366:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1367:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1368:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1369:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1370:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1371:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1372:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1373:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1374:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1375:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1376:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1377:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1378:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1379:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1380:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1381:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1382:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1383:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!2220 -{170 -[1,8991:4262630,47279633:28320399,43253760,0 -(1,8991:4262630,4025873:0,0,0 -[1,8991:-473656,4025873:0,0,0 -(1,8991:-473656,-710413:0,0,0 -(1,8991:-473656,-644877:0,0,0 -k1,8991:-473656,-644877:-65536 -) -(1,8991:-473656,4736287:0,0,0 -k1,8991:-473656,4736287:5209943 -) -g1,8991:-473656,-710413 -) -] -) -[1,8991:6630773,47279633:25952256,43253760,0 -[1,8991:6630773,4812305:25952256,786432,0 -(1,8991:6630773,4812305:25952256,505283,134348 -(1,8991:6630773,4812305:25952256,505283,134348 -g1,8991:3078558,4812305 -[1,8991:3078558,4812305:0,0,0 -(1,8991:3078558,2439708:0,1703936,0 -k1,8991:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,8991:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,8991:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,8991:3078558,4812305:0,0,0 -(1,8991:3078558,2439708:0,1703936,0 -g1,8991:29030814,2439708 -g1,8991:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,8991:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,8991:37855564,2439708:1179648,16384,0 -) -) -k1,8991:3078556,2439708:-34777008 -) -] -[1,8991:3078558,4812305:0,0,0 -(1,8991:3078558,49800853:0,16384,2228224 -k1,8991:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,8991:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,8991:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,8991:3078558,4812305:0,0,0 -(1,8991:3078558,49800853:0,16384,2228224 -g1,8991:29030814,49800853 -g1,8991:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,8991:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,8991:37855564,49800853:1179648,16384,0 -) -) -k1,8991:3078556,49800853:-34777008 -) -] -g1,8991:6630773,4812305 -g1,8991:6630773,4812305 -g1,8991:10153333,4812305 -g1,8991:13588730,4812305 -k1,8991:31387652,4812305:17798922 -) -) -] -[1,8991:6630773,45706769:25952256,40108032,0 -(1,8991:6630773,45706769:25952256,40108032,0 -(1,8991:6630773,45706769:0,0,0 -g1,8991:6630773,45706769 -) -[1,8991:6630773,45706769:25952256,40108032,0 -(1,8890:6630773,6254097:25952256,505283,134348 -k1,8889:8791495,6254097:150077 -k1,8889:9933133,6254097:150078 -k1,8889:10699248,6254097:150077 -k1,8889:12601102,6254097:150077 -k1,8889:14448562,6254097:150078 -k1,8889:16731181,6254097:150077 -k1,8889:18072703,6254097:150077 -k1,8889:18838819,6254097:150078 -k1,8889:20681036,6254097:150077 -k1,8889:22528496,6254097:150078 -k1,8889:25753522,6254097:150077 -k1,8889:27007881,6254097:150077 -k1,8889:27905725,6254097:150078 -k1,8889:30847636,6254097:150077 -k1,8889:32583029,6254097:0 -) -(1,8890:6630773,7095585:25952256,505283,134348 -g1,8889:8685982,7095585 -g1,8889:11834986,7095585 -g1,8889:12717100,7095585 -g1,8889:15961787,7095585 -k1,8890:32583029,7095585:11427514 -g1,8890:32583029,7095585 -) -(1,8911:6630773,14428817:25952256,6477988,0 -k1,8911:7884883,14428817:1254110 -(1,8891:7884883,14428817:0,0,0 -g1,8891:7884883,14428817 -g1,8891:7884883,14428817 -g1,8891:7557203,14428817 -(1,8891:7557203,14428817:0,0,0 -) -g1,8891:7884883,14428817 -) -(1,8909:7884883,14428817:23444037,6477988,0 -g1,8909:10990847,14428817 -(1,8909:10990847,8579283:0,0,0 -(1,8909:10990847,8579283:0,0,0 -g1,8893:10990847,8579283 -(1,8894:10990847,8579283:0,0,0 -(1,8894:10990847,8579283:0,0,0 -g1,8894:10990847,8579283 -g1,8894:10990847,8579283 -g1,8894:10990847,8579283 -g1,8894:10990847,8579283 -g1,8894:10990847,8579283 -(1,8894:10990847,8579283:0,0,0 -(1,8894:10990847,8579283:4910168,454754,104590 -(1,8894:10990847,8579283:4910168,454754,104590 -g1,8894:12891850,8579283 -$1,8894:12891850,8579283 -$1,8894:13499369,8579283 -g1,8894:13678676,8579283 -(1,8894:13678676,8579283:0,414307,104590 -r1,8991:15901015,8579283:2222339,518897,104590 -k1,8894:13678676,8579283:-2222339 -) -(1,8894:13678676,8579283:2222339,414307,104590 -k1,8894:13678676,8579283:3277 -h1,8894:15897738,8579283:0,370085,101313 -) -) -g1,8894:15901015,8579283 -) -) -g1,8894:10990847,8579283 -g1,8894:10990847,8579283 -) -) -g1,8894:10990847,8579283 -g1,8895:10990847,8579283 -(1,8895:10990847,8579283:0,0,0 -(1,8895:10990847,8579283:0,0,0 -g1,8895:10990847,8579283 -g1,8895:10990847,8579283 -g1,8895:10990847,8579283 -g1,8895:10990847,8579283 -g1,8895:10990847,8579283 -(1,8895:10990847,8579283:0,0,0 -(1,8895:10990847,8579283:5792540,454754,104590 -(1,8895:10990847,8579283:5792540,454754,104590 -g1,8895:14723844,8579283 -$1,8895:14723844,8579283 -$1,8895:15331363,8579283 -g1,8895:15510670,8579283 -(1,8895:15510670,8579283:0,408008,104590 -r1,8991:16783387,8579283:1272717,512598,104590 -k1,8895:15510670,8579283:-1272717 -) -(1,8895:15510670,8579283:1272717,408008,104590 -k1,8895:15510670,8579283:3277 -h1,8895:16780110,8579283:0,370085,101313 -) -) -g1,8895:16783387,8579283 -) -) -g1,8895:10990847,8579283 -g1,8895:10990847,8579283 -) -) -g1,8895:10990847,8579283 -g1,8896:10990847,8579283 -(1,8896:10990847,8579283:0,0,0 -(1,8896:10990847,8579283:0,0,0 -g1,8896:10990847,8579283 -g1,8896:10990847,8579283 -g1,8896:10990847,8579283 -g1,8896:10990847,8579283 -g1,8896:10990847,8579283 -(1,8896:10990847,8579283:0,0,0 -(1,8896:10990847,8579283:4671679,373362,120913 -(1,8896:10990847,8579283:4671679,373362,120913 -g1,8896:13286443,8579283 -$1,8896:13286443,8579283 -$1,8896:13893962,8579283 -g1,8896:14073269,8579283 -(1,8896:14073269,8579283:0,373362,104590 -r1,8991:15662526,8579283:1589257,477952,104590 -k1,8896:14073269,8579283:-1589257 -) -(1,8896:14073269,8579283:1589257,373362,104590 -k1,8896:14073269,8579283:3277 -h1,8896:15659249,8579283:0,370085,101313 -) -) -g1,8896:15662526,8579283 -) -) -g1,8896:10990847,8579283 -g1,8896:10990847,8579283 -) -) -g1,8896:10990847,8579283 -(1,8897:10990847,8579283:0,0,0 -(1,8897:10990847,8579283:0,0,0 -g1,8897:10990847,8579283 -g1,8897:10990847,8579283 -g1,8897:10990847,8579283 -g1,8897:10990847,8579283 -g1,8897:10990847,8579283 -(1,8897:10990847,8579283:0,0,0 -(1,8897:10990847,8579283:1589257,408008,104590 -(1,8897:10990847,8579283:1589257,408008,104590 -(1,8897:10990847,8579283:0,408008,104590 -r1,8991:12580104,8579283:1589257,512598,104590 -k1,8897:10990847,8579283:-1589257 -) -(1,8897:10990847,8579283:1589257,408008,104590 -k1,8897:10990847,8579283:3277 -h1,8897:12576827,8579283:0,370085,101313 -) -) -g1,8897:12580104,8579283 -) -) -g1,8897:10990847,8579283 -g1,8897:10990847,8579283 -) -) -g1,8897:10990847,8579283 -(1,8898:10990847,8579283:0,0,0 -(1,8898:10990847,8579283:0,0,0 -g1,8898:10990847,8579283 -g1,8898:10990847,8579283 -g1,8898:10990847,8579283 -g1,8898:10990847,8579283 -g1,8898:10990847,8579283 -(1,8898:10990847,8579283:0,0,0 -(1,8898:10990847,8579283:2866617,454754,120913 -(1,8898:10990847,8579283:2866617,454754,120913 -(1,8898:10990847,8579283:0,408008,104590 -r1,8991:11947023,8579283:956176,512598,104590 -k1,8898:10990847,8579283:-956176 -) -(1,8898:10990847,8579283:956176,408008,104590 -k1,8898:10990847,8579283:3277 -h1,8898:11943746,8579283:0,370085,101313 -) -g1,8898:12126330,8579283 -) -g1,8898:13857464,8579283 -) -) -g1,8898:10990847,8579283 -g1,8898:10990847,8579283 -) -) -g1,8898:10990847,8579283 -(1,8899:10990847,8579283:0,0,0 -(1,8899:10990847,8579283:0,0,0 -g1,8899:10990847,8579283 -g1,8899:10990847,8579283 -g1,8899:10990847,8579283 -g1,8899:10990847,8579283 -g1,8899:10990847,8579283 -(1,8899:10990847,8579283:0,0,0 -(1,8899:10990847,8579283:2855420,408008,104590 -(1,8899:10990847,8579283:2855420,408008,104590 -(1,8899:10990847,8579283:0,408008,104590 -r1,8991:13846267,8579283:2855420,512598,104590 -k1,8899:10990847,8579283:-2855420 -) -(1,8899:10990847,8579283:2855420,408008,104590 -k1,8899:10990847,8579283:3277 -h1,8899:13842990,8579283:0,370085,101313 -) -) -g1,8899:13846267,8579283 -) -) -g1,8899:10990847,8579283 -g1,8899:10990847,8579283 -) -) -g1,8899:10990847,8579283 -g1,8900:10990847,8579283 -(1,8900:10990847,8579283:0,0,0 -(1,8900:10990847,8579283:0,0,0 -g1,8900:10990847,8579283 -g1,8900:10990847,8579283 -g1,8900:10990847,8579283 -g1,8900:10990847,8579283 -g1,8900:10990847,8579283 -(1,8900:10990847,8579283:0,0,0 -(1,8900:10990847,8579283:2222339,408008,104590 -(1,8900:10990847,8579283:2222339,408008,104590 -(1,8900:10990847,8579283:0,408008,104590 -r1,8991:13213186,8579283:2222339,512598,104590 -k1,8900:10990847,8579283:-2222339 -) -(1,8900:10990847,8579283:2222339,408008,104590 -k1,8900:10990847,8579283:3277 -h1,8900:13209909,8579283:0,370085,101313 -) -) -g1,8900:13213186,8579283 -) -) -g1,8900:10990847,8579283 -g1,8900:10990847,8579283 -) -) -g1,8900:10990847,8579283 -g1,8901:10990847,8579283 -(1,8901:10990847,8579283:0,0,0 -(1,8901:10990847,8579283:0,0,0 -g1,8901:10990847,8579283 -g1,8901:10990847,8579283 -g1,8901:10990847,8579283 -g1,8901:10990847,8579283 -g1,8901:10990847,8579283 -(1,8901:10990847,8579283:0,0,0 -(1,8901:10990847,8579283:1905798,408008,104590 -(1,8901:10990847,8579283:1905798,408008,104590 -(1,8901:10990847,8579283:0,408008,104590 -r1,8991:12896645,8579283:1905798,512598,104590 -k1,8901:10990847,8579283:-1905798 -) -(1,8901:10990847,8579283:1905798,408008,104590 -k1,8901:10990847,8579283:3277 -h1,8901:12893368,8579283:0,370085,101313 -) -) -g1,8901:12896645,8579283 -) -) -g1,8901:10990847,8579283 -g1,8901:10990847,8579283 -) -) -g1,8901:10990847,8579283 -g1,8902:10990847,8579283 -g1,8902:10990847,8579283 -g1,8902:10990847,8579283 -g1,8902:10990847,8579283 -g1,8902:10990847,8579283 -g1,8902:10990847,8579283 -g1,8903:10990847,8579283 -g1,8903:10990847,8579283 -g1,8903:10990847,8579283 -g1,8903:10990847,8579283 -g1,8903:10990847,8579283 -g1,8903:10990847,8579283 -g1,8904:10990847,8579283 -g1,8904:10990847,8579283 -g1,8904:10990847,8579283 -g1,8904:10990847,8579283 -g1,8904:10990847,8579283 -g1,8904:10990847,8579283 -g1,8905:10990847,8579283 -g1,8905:10990847,8579283 -g1,8905:10990847,8579283 -g1,8905:10990847,8579283 -g1,8905:10990847,8579283 -g1,8905:10990847,8579283 -g1,8906:10990847,8579283 -g1,8906:10990847,8579283 -g1,8906:10990847,8579283 -g1,8906:10990847,8579283 -g1,8906:10990847,8579283 -g1,8906:10990847,8579283 -g1,8907:10990847,8579283 -g1,8907:10990847,8579283 -g1,8907:10990847,8579283 -g1,8907:10990847,8579283 -g1,8907:10990847,8579283 -g1,8907:10990847,8579283 -g1,8908:10990847,8579283 -g1,8908:10990847,8579283 -g1,8908:10990847,8579283 -g1,8908:10990847,8579283 -g1,8908:10990847,8579283 -g1,8908:10990847,8579283 -g1,8909:10990847,8579283 -g1,8909:10990847,8579283 -) -g1,8909:10990847,8579283 -) -) -g1,8911:31328920,14428817 -k1,8911:32583029,14428817:1254109 -) -(1,8914:6630773,15925665:25952256,513147,134348 -h1,8913:6630773,15925665:983040,0,0 -k1,8913:8961378,15925665:305543 -k1,8913:12292719,15925665:305544 -k1,8913:13545913,15925665:305543 -k1,8913:15736927,15925665:305543 -k1,8913:20667347,15925665:305544 -k1,8913:24414185,15925665:305543 -k1,8913:26220502,15925665:305543 -k1,8913:27473697,15925665:305544 -k1,8913:31166796,15925665:305543 -k1,8914:32583029,15925665:0 -) -(1,8914:6630773,16767153:25952256,513147,134348 -k1,8913:8233464,16767153:293937 -k1,8913:11005973,16767153:293937 -k1,8913:13484224,16767153:293936 -k1,8913:14192909,16767153:293842 -k1,8913:17247222,16767153:293937 -k1,8913:17897018,16767153:293936 -k1,8913:21828858,16767153:293937 -k1,8913:23070446,16767153:293937 -k1,8913:26587444,16767153:293937 -k1,8913:27900466,16767153:293937 -k1,8913:30889898,16767153:293936 -k1,8913:31835263,16767153:293937 -k1,8913:32583029,16767153:0 -) -(1,8914:6630773,17608641:25952256,513147,134348 -k1,8913:8592593,17608641:249364 -k1,8913:11522380,17608641:249364 -k1,8913:13165696,17608641:249365 -k1,8913:14434145,17608641:249364 -k1,8913:17379005,17608641:249364 -k1,8913:21003473,17608641:249364 -k1,8913:22271922,17608641:249364 -k1,8913:24999859,17608641:249365 -k1,8913:27433538,17608641:249364 -k1,8913:29557232,17608641:249364 -k1,8913:32583029,17608641:0 -) -(1,8914:6630773,18450129:25952256,513147,134348 -k1,8913:7624532,18450129:225022 -k1,8913:8611083,18450129:225023 -k1,8913:9855190,18450129:225022 -k1,8913:11818228,18450129:225023 -k1,8913:12702542,18450129:225022 -k1,8913:16656564,18450129:225023 -k1,8913:19790074,18450129:225022 -k1,8913:21206541,18450129:225022 -k1,8913:23525439,18450129:225023 -k1,8913:24769546,18450129:225022 -k1,8913:26375413,18450129:225023 -k1,8913:28168056,18450129:225022 -k1,8913:29412164,18450129:225023 -k1,8913:31923737,18450129:225022 -k1,8913:32583029,18450129:0 -) -(1,8914:6630773,19291617:25952256,513147,134348 -k1,8913:9629773,19291617:211754 -k1,8913:11032972,19291617:211754 -k1,8913:14387833,19291617:211754 -k1,8913:17111582,19291617:211754 -k1,8913:19801908,19291617:211754 -k1,8913:22197977,19291617:211754 -k1,8913:23606418,19291617:211754 -k1,8913:27657271,19291617:211754 -k1,8913:30894822,19291617:211754 -k1,8914:32583029,19291617:0 -) -(1,8914:6630773,20133105:25952256,505283,122846 -k1,8913:8105324,20133105:165797 -k1,8913:8887160,20133105:165798 -k1,8913:9467767,20133105:165764 -k1,8913:10625124,20133105:165797 -(1,8913:10625124,20133105:0,452978,115847 -r1,8991:13797084,20133105:3171960,568825,115847 -k1,8913:10625124,20133105:-3171960 -) -(1,8913:10625124,20133105:3171960,452978,115847 -k1,8913:10625124,20133105:3277 -h1,8913:13793807,20133105:0,411205,112570 -) -k1,8913:14136552,20133105:165798 -(1,8913:14136552,20133105:0,459977,115847 -r1,8991:18363648,20133105:4227096,575824,115847 -k1,8913:14136552,20133105:-4227096 -) -(1,8913:14136552,20133105:4227096,459977,115847 -k1,8913:14136552,20133105:3277 -h1,8913:18360371,20133105:0,411205,112570 -) -k1,8913:18703115,20133105:165797 -(1,8913:18703115,20133105:0,452978,122846 -r1,8991:23281923,20133105:4578808,575824,122846 -k1,8913:18703115,20133105:-4578808 -) -(1,8913:18703115,20133105:4578808,452978,122846 -k1,8913:18703115,20133105:3277 -h1,8913:23278646,20133105:0,411205,112570 -) -k1,8913:23621390,20133105:165797 -(1,8913:23621390,20133105:0,452978,115847 -r1,8991:26793350,20133105:3171960,568825,115847 -k1,8913:23621390,20133105:-3171960 -) -(1,8913:23621390,20133105:3171960,452978,115847 -k1,8913:23621390,20133105:3277 -h1,8913:26790073,20133105:0,411205,112570 -) -k1,8913:27132818,20133105:165798 -(1,8913:27132818,20133105:0,459977,115847 -r1,8991:29601355,20133105:2468537,575824,115847 -k1,8913:27132818,20133105:-2468537 -) -(1,8913:27132818,20133105:2468537,459977,115847 -k1,8913:27132818,20133105:3277 -h1,8913:29598078,20133105:0,411205,112570 -) -k1,8913:29940822,20133105:165797 -(1,8913:29940822,20133105:0,459977,115847 -r1,8991:32409359,20133105:2468537,575824,115847 -k1,8913:29940822,20133105:-2468537 -) -(1,8913:29940822,20133105:2468537,459977,115847 -k1,8913:29940822,20133105:3277 -h1,8913:32406082,20133105:0,411205,112570 -) -k1,8914:32583029,20133105:0 -) -(1,8914:6630773,20974593:25952256,505283,122846 -(1,8913:6630773,20974593:0,452978,122846 -r1,8991:10857869,20974593:4227096,575824,122846 -k1,8913:6630773,20974593:-4227096 -) -(1,8913:6630773,20974593:4227096,452978,122846 -k1,8913:6630773,20974593:3277 -h1,8913:10854592,20974593:0,411205,112570 -) -k1,8913:11245608,20974593:214069 -(1,8913:11245608,20974593:0,452978,122846 -r1,8991:14417568,20974593:3171960,575824,122846 -k1,8913:11245608,20974593:-3171960 -) -(1,8913:11245608,20974593:3171960,452978,122846 -k1,8913:11245608,20974593:3277 -h1,8913:14414291,20974593:0,411205,112570 -) -k1,8913:14805308,20974593:214070 -(1,8913:14805308,20974593:0,452978,115847 -r1,8991:18328980,20974593:3523672,568825,115847 -k1,8913:14805308,20974593:-3523672 -) -(1,8913:14805308,20974593:3523672,452978,115847 -k1,8913:14805308,20974593:3277 -h1,8913:18325703,20974593:0,411205,112570 -) -k1,8913:18716719,20974593:214069 -k1,8913:20122233,20974593:214069 -(1,8913:20122233,20974593:0,452978,115847 -r1,8991:23997617,20974593:3875384,568825,115847 -k1,8913:20122233,20974593:-3875384 -) -(1,8913:20122233,20974593:3875384,452978,115847 -k1,8913:20122233,20974593:3277 -h1,8913:23994340,20974593:0,411205,112570 -) -k1,8913:24385356,20974593:214069 -k1,8913:27389294,20974593:214070 -(1,8913:27389294,20974593:0,459977,115847 -r1,8991:31264678,20974593:3875384,575824,115847 -k1,8913:27389294,20974593:-3875384 -) -(1,8913:27389294,20974593:3875384,459977,115847 -k1,8913:27389294,20974593:3277 -h1,8913:31261401,20974593:0,411205,112570 -) -k1,8913:31478747,20974593:214069 -k1,8913:32583029,20974593:0 -) -(1,8914:6630773,21816081:25952256,513147,134348 -k1,8913:7607026,21816081:228487 -k1,8913:9348738,21816081:228486 -k1,8913:10228653,21816081:228487 -k1,8913:12417976,21816081:228486 -k1,8913:13929658,21816081:228487 -k1,8913:15818826,21816081:228486 -k1,8913:16945156,21816081:228487 -k1,8913:18870370,21816081:228487 -k1,8913:22124653,21816081:228486 -k1,8913:23457422,21816081:228487 -k1,8913:24433674,21816081:228486 -k1,8913:26175387,21816081:228487 -k1,8913:28101911,21816081:228486 -k1,8913:30265021,21816081:228487 -k1,8913:32583029,21816081:0 -) -(1,8914:6630773,22657569:25952256,513147,134348 -g1,8913:8223953,22657569 -(1,8913:8223953,22657569:0,452978,115847 -r1,8991:9285642,22657569:1061689,568825,115847 -k1,8913:8223953,22657569:-1061689 -) -(1,8913:8223953,22657569:1061689,452978,115847 -k1,8913:8223953,22657569:3277 -h1,8913:9282365,22657569:0,411205,112570 -) -g1,8913:9484871,22657569 -g1,8913:10366985,22657569 -(1,8913:10366985,22657569:0,452978,115847 -r1,8991:11780386,22657569:1413401,568825,115847 -k1,8913:10366985,22657569:-1413401 -) -(1,8913:10366985,22657569:1413401,452978,115847 -k1,8913:10366985,22657569:3277 -h1,8913:11777109,22657569:0,411205,112570 -) -g1,8913:12153285,22657569 -g1,8913:14487677,22657569 -g1,8913:16508807,22657569 -g1,8913:17727121,22657569 -g1,8913:21156620,22657569 -g1,8913:22743902,22657569 -g1,8913:24771585,22657569 -g1,8913:25918465,22657569 -k1,8914:32583029,22657569:4373425 -g1,8914:32583029,22657569 -) -(1,8916:6630773,23499057:25952256,513147,126483 -h1,8915:6630773,23499057:983040,0,0 -k1,8915:8426968,23499057:185320 -k1,8915:9631374,23499057:185321 -k1,8915:11183775,23499057:185320 -k1,8915:12036252,23499057:185321 -(1,8915:12036252,23499057:0,452978,115847 -r1,8991:13801365,23499057:1765113,568825,115847 -k1,8915:12036252,23499057:-1765113 -) -(1,8915:12036252,23499057:1765113,452978,115847 -k1,8915:12036252,23499057:3277 -h1,8915:13798088,23499057:0,411205,112570 -) -k1,8915:13986685,23499057:185320 -k1,8915:15191091,23499057:185321 -k1,8915:19397045,23499057:185320 -k1,8915:20241658,23499057:185321 -k1,8915:21446063,23499057:185320 -k1,8915:23619091,23499057:185321 -k1,8915:24455839,23499057:185320 -k1,8915:25388926,23499057:185321 -k1,8915:27286702,23499057:185320 -k1,8915:29545582,23499057:185321 -k1,8915:31298523,23499057:185320 -k1,8915:32583029,23499057:0 -) -(1,8916:6630773,24340545:25952256,513147,134348 -k1,8915:8429463,24340545:285464 -k1,8915:9662578,24340545:285464 -k1,8915:11760768,24340545:285464 -k1,8915:14537910,24340545:285463 -k1,8915:15776923,24340545:285464 -k1,8915:17194849,24340545:285464 -k1,8915:18572798,24340545:285464 -k1,8915:19544424,24340545:285464 -k1,8915:20600591,24340545:285464 -k1,8915:23547471,24340545:285463 -k1,8915:25767558,24340545:285464 -k1,8915:27072107,24340545:285464 -k1,8915:32583029,24340545:0 -) -(1,8916:6630773,25182033:25952256,505283,134348 -k1,8915:9652930,25182033:232289 -k1,8915:13197408,25182033:232288 -k1,8915:16022301,25182033:232289 -k1,8915:18732505,25182033:232288 -k1,8915:19580832,25182033:232289 -k1,8915:23962860,25182033:232288 -k1,8915:25386594,25182033:232289 -k1,8915:28946145,25182033:232288 -k1,8915:30375121,25182033:232289 -k1,8916:32583029,25182033:0 -) -(1,8916:6630773,26023521:25952256,513147,134348 -g1,8915:9158496,26023521 -g1,8915:13168644,26023521 -g1,8915:13899370,26023521 -g1,8915:15793360,26023521 -k1,8916:32583029,26023521:15854470 -g1,8916:32583029,26023521 -) -(1,8917:6630773,26865009:25952256,0,0 -h1,8917:6630773,26865009:983040,0,0 -k1,8917:32583029,26865009:24969216 -g1,8917:32583029,26865009 -) -(1,8919:16125732,27894629:16457297,964084,570224 -(1,8919:16125732,27894629:6962339,964084,570224 -h1,8919:16125732,27894629:0,0,0 -g1,8919:16759335,27894629 -g1,8919:17509592,27894629 -(1,8919:17509592,27894629:1646264,964084,479774 -(1,8919:17509592,27894629:1646264,964084,479774 -h1,8919:17509592,27894629:78643,0,0 -[1,8919:17588235,27894629:1488978,964084,479774 -(1,8919:17588235,27435828:1488978,505283,95027 -) -(1,8919:17588235,28366539:1488978,505283,7864 -k1,8919:17962118,28366539:373883 -k1,8919:19077213,28366539:373883 -) -] -h1,8919:19077213,27894629:78643,0,0 -) -) -g1,8919:19337916,27894629 -g1,8919:20088173,27894629 -(1,8919:20088173,27894629:2999898,964084,570224 -(1,8919:20088173,27894629:2999898,964084,570224 -h1,8919:20088173,27894629:78643,0,0 -[1,8919:20166816,27894629:2842612,964084,570224 -(1,8919:20166816,27435828:2842612,505283,103819 -k1,8919:20324523,27435828:157707 -(1,8919:20851432,27534142:971374,248644,5505 -) -k1,8919:23009428,27435828:157707 -) -(1,8919:20166816,28366539:2842612,505283,98314 -(1,8919:20693725,28464853:427295,331678,0 -) -g1,8919:21266668,28366539 -g1,8919:21980513,28366539 -) -] -h1,8919:23009428,27894629:78643,0,0 -) -) -) -(1,8919:31198253,27894629:1384776,505283,95026 -(1,8919:31198253,27894629:1384776,505283,95026 -) -) -) -(1,8922:6630773,29436752:25952256,513147,126483 -h1,8921:6630773,29436752:983040,0,0 -k1,8921:9111608,29436752:301108 -k1,8921:12108212,29436752:301108 -k1,8921:14092285,29436752:301108 -k1,8921:15181791,29436752:301108 -k1,8921:17220914,29436752:301108 -k1,8921:19089643,29436752:301108 -k1,8921:22343803,29436752:301108 -k1,8921:23836356,29436752:301108 -k1,8921:26986314,29436752:301108 -k1,8921:29120464,29436752:301108 -k1,8921:30989193,29436752:301108 -k1,8921:32583029,29436752:0 -) -(1,8922:6630773,30278240:25952256,513147,134348 -k1,8921:9729069,30278240:250756 -k1,8921:11171269,30278240:250755 -k1,8921:13472647,30278240:250756 -k1,8921:15698311,30278240:251064 -k1,8921:16436603,30278240:250704 -k1,8921:20526457,30278240:250755 -k1,8921:23472709,30278240:250756 -k1,8921:28147144,30278240:250755 -k1,8921:29416985,30278240:250756 -k1,8922:32583029,30278240:0 -) -(1,8922:6630773,31119728:25952256,505283,126483 -k1,8921:9256586,31119728:280935 -k1,8921:12327390,31119728:280936 -k1,8921:13139822,31119728:280935 -k1,8921:16204727,31119728:280936 -k1,8921:17101700,31119728:280935 -k1,8921:17797397,31119728:280854 -k1,8921:19964458,31119728:280935 -k1,8921:21264478,31119728:280935 -k1,8921:23283429,31119728:280936 -(1,8921:23283429,31119728:0,452978,115847 -r1,8991:26807101,31119728:3523672,568825,115847 -k1,8921:23283429,31119728:-3523672 -) -(1,8921:23283429,31119728:3523672,452978,115847 -k1,8921:23283429,31119728:3277 -h1,8921:26803824,31119728:0,411205,112570 -) -k1,8921:27088036,31119728:280935 -k1,8921:27088036,31119728:0 -k1,8921:27542642,31119728:280936 -k1,8921:28777126,31119728:280935 -k1,8921:30190524,31119728:280936 -k1,8921:31563944,31119728:280935 -k1,8922:32583029,31119728:0 -) -(1,8922:6630773,31961216:25952256,505283,115847 -(1,8921:6630773,31961216:0,452978,115847 -r1,8991:9802733,31961216:3171960,568825,115847 -k1,8921:6630773,31961216:-3171960 -) -(1,8921:6630773,31961216:3171960,452978,115847 -k1,8921:6630773,31961216:3277 -h1,8921:9799456,31961216:0,411205,112570 -) -g1,8921:10001962,31961216 -g1,8921:11590554,31961216 -k1,8922:32583028,31961216:19884260 -g1,8922:32583028,31961216 -) -v1,8924:6630773,33151682:0,393216,0 -(1,8932:6630773,34833213:25952256,2074747,196608 -g1,8932:6630773,34833213 -g1,8932:6630773,34833213 -g1,8932:6434165,34833213 -(1,8932:6434165,34833213:0,2074747,196608 -r1,8991:32779637,34833213:26345472,2271355,196608 -k1,8932:6434165,34833213:-26345472 -) -(1,8932:6434165,34833213:26345472,2074747,196608 -[1,8932:6630773,34833213:25952256,1878139,0 -(1,8926:6630773,33359300:25952256,404226,101187 -(1,8925:6630773,33359300:0,0,0 -g1,8925:6630773,33359300 -g1,8925:6630773,33359300 -g1,8925:6303093,33359300 -(1,8925:6303093,33359300:0,0,0 -) -g1,8925:6630773,33359300 -) -k1,8926:6630773,33359300:0 -h1,8926:11372958,33359300:0,0,0 -k1,8926:32583030,33359300:21210072 -g1,8926:32583030,33359300 -) -(1,8927:6630773,34025478:25952256,404226,101187 -h1,8927:6630773,34025478:0,0,0 -k1,8927:6630773,34025478:0 -h1,8927:11689103,34025478:0,0,0 -k1,8927:32583029,34025478:20893926 -g1,8927:32583029,34025478 -) -(1,8931:6630773,34757192:25952256,404226,76021 -(1,8929:6630773,34757192:0,0,0 -g1,8929:6630773,34757192 -g1,8929:6630773,34757192 -g1,8929:6303093,34757192 -(1,8929:6303093,34757192:0,0,0 -) -g1,8929:6630773,34757192 -) -g1,8931:7579210,34757192 -g1,8931:8843793,34757192 -g1,8931:11056813,34757192 -g1,8931:11372959,34757192 -g1,8931:13585979,34757192 -g1,8931:13902125,34757192 -h1,8931:16115145,34757192:0,0,0 -k1,8931:32583029,34757192:16467884 -g1,8931:32583029,34757192 -) -] -) -g1,8932:32583029,34833213 -g1,8932:6630773,34833213 -g1,8932:6630773,34833213 -g1,8932:32583029,34833213 -g1,8932:32583029,34833213 -) -h1,8932:6630773,35029821:0,0,0 -v1,8936:6630773,36744575:0,393216,0 -(1,8941:6630773,37700684:25952256,1349325,196608 -g1,8941:6630773,37700684 -g1,8941:6630773,37700684 -g1,8941:6434165,37700684 -(1,8941:6434165,37700684:0,1349325,196608 -r1,8991:32779637,37700684:26345472,1545933,196608 -k1,8941:6434165,37700684:-26345472 -) -(1,8941:6434165,37700684:26345472,1349325,196608 -[1,8941:6630773,37700684:25952256,1152717,0 -(1,8938:6630773,36958485:25952256,410518,101187 -(1,8937:6630773,36958485:0,0,0 -g1,8937:6630773,36958485 -g1,8937:6630773,36958485 -g1,8937:6303093,36958485 -(1,8937:6303093,36958485:0,0,0 -) -g1,8937:6630773,36958485 -) -g1,8938:8211502,36958485 -g1,8938:9159940,36958485 -g1,8938:12005251,36958485 -g1,8938:12637543,36958485 -g1,8938:17379728,36958485 -g1,8938:18644311,36958485 -g1,8938:19908894,36958485 -g1,8938:21489623,36958485 -g1,8938:22121915,36958485 -k1,8938:22121915,36958485:0 -h1,8938:25283372,36958485:0,0,0 -k1,8938:32583029,36958485:7299657 -g1,8938:32583029,36958485 -) -(1,8939:6630773,37624663:25952256,404226,76021 -h1,8939:6630773,37624663:0,0,0 -g1,8939:6946919,37624663 -g1,8939:7263065,37624663 -g1,8939:7579211,37624663 -g1,8939:7895357,37624663 -g1,8939:8211503,37624663 -g1,8939:8527649,37624663 -g1,8939:8843795,37624663 -g1,8939:9159941,37624663 -g1,8939:9476087,37624663 -g1,8939:9792233,37624663 -g1,8939:10108379,37624663 -g1,8939:10424525,37624663 -g1,8939:12637545,37624663 -g1,8939:13269837,37624663 -g1,8939:15166711,37624663 -g1,8939:16115148,37624663 -h1,8939:19276605,37624663:0,0,0 -k1,8939:32583029,37624663:13306424 -g1,8939:32583029,37624663 -) -] -) -g1,8941:32583029,37700684 -g1,8941:6630773,37700684 -g1,8941:6630773,37700684 -g1,8941:32583029,37700684 -g1,8941:32583029,37700684 -) -h1,8941:6630773,37897292:0,0,0 -(1,8945:6630773,39263068:25952256,513147,126483 -h1,8944:6630773,39263068:983040,0,0 -k1,8944:8806830,39263068:239468 -k1,8944:10150580,39263068:239468 -k1,8944:12594025,39263068:239469 -k1,8944:15595836,39263068:239468 -k1,8944:19762877,39263068:239468 -k1,8944:22770586,39263068:239468 -k1,8944:23696216,39263068:239468 -k1,8944:27025708,39263068:239469 -k1,8944:28212827,39263068:239468 -k1,8944:30265021,39263068:239468 -k1,8944:32583029,39263068:0 -) -(1,8945:6630773,40104556:25952256,505283,134348 -g1,8944:8062079,40104556 -g1,8944:10539995,40104556 -h1,8944:11510583,40104556:0,0,0 -g1,8944:11709812,40104556 -g1,8944:12718411,40104556 -g1,8944:14415793,40104556 -h1,8944:15611170,40104556:0,0,0 -k1,8945:32583029,40104556:16591095 -g1,8945:32583029,40104556 -) -v1,8947:6630773,41295022:0,393216,0 -(1,8991:6630773,43562184:25952256,2660378,196608 -g1,8991:6630773,43562184 -g1,8991:6630773,43562184 -g1,8991:6434165,43562184 -(1,8991:6434165,43562184:0,2660378,196608 -r1,8991:32779637,43562184:26345472,2856986,196608 -k1,8991:6434165,43562184:-26345472 -) -(1,8991:6434165,43562184:26345472,2660378,196608 -[1,8991:6630773,43562184:25952256,2463770,0 -(1,8949:6630773,41508932:25952256,410518,76021 -(1,8948:6630773,41508932:0,0,0 -g1,8948:6630773,41508932 -g1,8948:6630773,41508932 -g1,8948:6303093,41508932 -(1,8948:6303093,41508932:0,0,0 -) -g1,8948:6630773,41508932 -) -k1,8949:6630773,41508932:0 -h1,8949:10108375,41508932:0,0,0 -k1,8949:32583029,41508932:22474654 -g1,8949:32583029,41508932 -) -(1,8953:6630773,42240646:25952256,404226,76021 -(1,8951:6630773,42240646:0,0,0 -g1,8951:6630773,42240646 -g1,8951:6630773,42240646 -g1,8951:6303093,42240646 -(1,8951:6303093,42240646:0,0,0 -) -g1,8951:6630773,42240646 -) -g1,8953:7579210,42240646 -g1,8953:8843793,42240646 -h1,8953:10424521,42240646:0,0,0 -k1,8953:32583029,42240646:22158508 -g1,8953:32583029,42240646 -) -(1,8955:6630773,43562184:25952256,410518,101187 -(1,8954:6630773,43562184:0,0,0 -g1,8954:6630773,43562184 -g1,8954:6630773,43562184 -g1,8954:6303093,43562184 -(1,8954:6303093,43562184:0,0,0 -) -g1,8954:6630773,43562184 -) -k1,8955:6630773,43562184:0 -h1,8955:10740667,43562184:0,0,0 -k1,8955:32583029,43562184:21842362 -g1,8955:32583029,43562184 -) -] -) -g1,8991:32583029,43562184 -g1,8991:6630773,43562184 -g1,8991:6630773,43562184 -g1,8991:32583029,43562184 -g1,8991:32583029,43562184 -) -] -(1,8991:32583029,45706769:0,0,0 -g1,8991:32583029,45706769 -) -) -] -(1,8991:6630773,47279633:25952256,0,0 -h1,8991:6630773,47279633:25952256,0,0 -) -] -(1,8991:4262630,4025873:0,0,0 -[1,8991:-473656,4025873:0,0,0 -(1,8991:-473656,-710413:0,0,0 -(1,8991:-473656,-710413:0,0,0 -g1,8991:-473656,-710413 -) -g1,8991:-473656,-710413 -) -] -) -] -!29467 -}170 -Input:1384:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1385:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1386:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1387:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1388:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!472 -{171 -[1,9040:4262630,47279633:28320399,43253760,0 -(1,9040:4262630,4025873:0,0,0 -[1,9040:-473656,4025873:0,0,0 -(1,9040:-473656,-710413:0,0,0 -(1,9040:-473656,-644877:0,0,0 -k1,9040:-473656,-644877:-65536 -) -(1,9040:-473656,4736287:0,0,0 -k1,9040:-473656,4736287:5209943 -) -g1,9040:-473656,-710413 -) -] -) -[1,9040:6630773,47279633:25952256,43253760,0 -[1,9040:6630773,4812305:25952256,786432,0 -(1,9040:6630773,4812305:25952256,505283,134348 -(1,9040:6630773,4812305:25952256,505283,134348 -g1,9040:3078558,4812305 -[1,9040:3078558,4812305:0,0,0 -(1,9040:3078558,2439708:0,1703936,0 -k1,9040:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,9040:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,9040:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,9040:3078558,4812305:0,0,0 -(1,9040:3078558,2439708:0,1703936,0 -g1,9040:29030814,2439708 -g1,9040:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,9040:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,9040:37855564,2439708:1179648,16384,0 -) -) -k1,9040:3078556,2439708:-34777008 -) -] -[1,9040:3078558,4812305:0,0,0 -(1,9040:3078558,49800853:0,16384,2228224 -k1,9040:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,9040:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,9040:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,9040:3078558,4812305:0,0,0 -(1,9040:3078558,49800853:0,16384,2228224 -g1,9040:29030814,49800853 -g1,9040:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,9040:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,9040:37855564,49800853:1179648,16384,0 -) -) -k1,9040:3078556,49800853:-34777008 -) -] -g1,9040:6630773,4812305 -k1,9040:24502442,4812305:16676292 -g1,9040:25889183,4812305 -g1,9040:26537989,4812305 -g1,9040:29852144,4812305 -) -) -] -[1,9040:6630773,45706769:25952256,40108032,0 -(1,9040:6630773,45706769:25952256,40108032,0 -(1,9040:6630773,45706769:0,0,0 -g1,9040:6630773,45706769 -) -[1,9040:6630773,45706769:25952256,40108032,0 -v1,8991:6630773,6254097:0,393216,0 -(1,8991:6630773,23276456:25952256,17415575,196608 -g1,8991:6630773,23276456 -g1,8991:6630773,23276456 -g1,8991:6434165,23276456 -(1,8991:6434165,23276456:0,17415575,196608 -r1,9040:32779637,23276456:26345472,17612183,196608 -k1,8991:6434165,23276456:-26345472 -) -(1,8991:6434165,23276456:26345472,17415575,196608 -[1,8991:6630773,23276456:25952256,17218967,0 -(1,8972:6630773,6436549:25952256,379060,0 -(1,8957:6630773,6436549:0,0,0 -g1,8957:6630773,6436549 -g1,8957:6630773,6436549 -g1,8957:6303093,6436549 -(1,8957:6303093,6436549:0,0,0 -) -g1,8957:6630773,6436549 -) -h1,8972:7263064,6436549:0,0,0 -k1,8972:32583028,6436549:25319964 -g1,8972:32583028,6436549 -) -(1,8972:6630773,7102727:25952256,404226,82312 -h1,8972:6630773,7102727:0,0,0 -g1,8972:7579210,7102727 -g1,8972:10424521,7102727 -g1,8972:12005250,7102727 -g1,8972:12637542,7102727 -g1,8972:17379728,7102727 -g1,8972:18644311,7102727 -h1,8972:19276602,7102727:0,0,0 -k1,8972:32583029,7102727:13306427 -g1,8972:32583029,7102727 -) -(1,8972:6630773,7768905:25952256,379060,0 -h1,8972:6630773,7768905:0,0,0 -h1,8972:7263064,7768905:0,0,0 -k1,8972:32583028,7768905:25319964 -g1,8972:32583028,7768905 -) -(1,8972:6630773,8435083:25952256,379060,6290 -h1,8972:6630773,8435083:0,0,0 -g1,8972:7579210,8435083 -h1,8972:11056812,8435083:0,0,0 -k1,8972:32583028,8435083:21526216 -g1,8972:32583028,8435083 -) -(1,8972:6630773,9101261:25952256,404226,76021 -h1,8972:6630773,9101261:0,0,0 -g1,8972:7579210,9101261 -g1,8972:7895356,9101261 -g1,8972:8211502,9101261 -g1,8972:8527648,9101261 -g1,8972:8843794,9101261 -g1,8972:11689105,9101261 -g1,8972:13269834,9101261 -g1,8972:15166708,9101261 -g1,8972:15799000,9101261 -g1,8972:17695874,9101261 -k1,8972:17695874,9101261:0 -h1,8972:20225039,9101261:0,0,0 -k1,8972:32583029,9101261:12357990 -g1,8972:32583029,9101261 -) -(1,8972:6630773,9767439:25952256,388497,9436 -h1,8972:6630773,9767439:0,0,0 -g1,8972:7579210,9767439 -g1,8972:8527647,9767439 -g1,8972:11689104,9767439 -g1,8972:12005250,9767439 -g1,8972:15166707,9767439 -g1,8972:15482853,9767439 -g1,8972:17695873,9767439 -g1,8972:20541184,9767439 -h1,8972:21489621,9767439:0,0,0 -k1,8972:32583029,9767439:11093408 -g1,8972:32583029,9767439 -) -(1,8972:6630773,10433617:25952256,388497,9436 -h1,8972:6630773,10433617:0,0,0 -g1,8972:7579210,10433617 -g1,8972:8211502,10433617 -g1,8972:8527648,10433617 -g1,8972:11689105,10433617 -g1,8972:12005251,10433617 -g1,8972:15166708,10433617 -g1,8972:15482854,10433617 -g1,8972:15799000,10433617 -g1,8972:17695874,10433617 -g1,8972:20541185,10433617 -h1,8972:21489622,10433617:0,0,0 -k1,8972:32583029,10433617:11093407 -g1,8972:32583029,10433617 -) -(1,8972:6630773,11099795:25952256,379060,0 -h1,8972:6630773,11099795:0,0,0 -g1,8972:7579210,11099795 -k1,8972:7579210,11099795:0 -h1,8972:8527648,11099795:0,0,0 -k1,8972:32583028,11099795:24055380 -g1,8972:32583028,11099795 -) -(1,8972:6630773,11765973:25952256,410518,107478 -h1,8972:6630773,11765973:0,0,0 -g1,8972:7579210,11765973 -g1,8972:10108376,11765973 -g1,8972:12321396,11765973 -g1,8972:12637542,11765973 -g1,8972:13269834,11765973 -g1,8972:15166709,11765973 -g1,8972:17063583,11765973 -g1,8972:18644312,11765973 -g1,8972:20225041,11765973 -g1,8972:21489625,11765973 -g1,8972:23070354,11765973 -g1,8972:24334938,11765973 -g1,8972:25599521,11765973 -g1,8972:26231813,11765973 -g1,8972:26864105,11765973 -h1,8972:27180251,11765973:0,0,0 -k1,8972:32583029,11765973:5402778 -g1,8972:32583029,11765973 -) -(1,8972:6630773,12432151:25952256,379060,0 -h1,8972:6630773,12432151:0,0,0 -h1,8972:7263064,12432151:0,0,0 -k1,8972:32583028,12432151:25319964 -g1,8972:32583028,12432151 -) -(1,8972:6630773,13098329:25952256,410518,107478 -h1,8972:6630773,13098329:0,0,0 -g1,8972:7579210,13098329 -g1,8972:10424521,13098329 -g1,8972:13269832,13098329 -g1,8972:15482852,13098329 -g1,8972:17379726,13098329 -g1,8972:18328163,13098329 -g1,8972:19276600,13098329 -g1,8972:21805766,13098329 -g1,8972:22754203,13098329 -h1,8972:24967223,13098329:0,0,0 -k1,8972:32583029,13098329:7615806 -g1,8972:32583029,13098329 -) -(1,8972:6630773,13764507:25952256,379060,0 -h1,8972:6630773,13764507:0,0,0 -h1,8972:7263064,13764507:0,0,0 -k1,8972:32583028,13764507:25319964 -g1,8972:32583028,13764507 -) -(1,8972:6630773,14430685:25952256,410518,107478 -h1,8972:6630773,14430685:0,0,0 -g1,8972:7579210,14430685 -g1,8972:9792230,14430685 -g1,8972:10740667,14430685 -g1,8972:14218270,14430685 -g1,8972:15166707,14430685 -g1,8972:19276601,14430685 -h1,8972:19592747,14430685:0,0,0 -k1,8972:32583029,14430685:12990282 -g1,8972:32583029,14430685 -) -(1,8972:6630773,15096863:25952256,404226,107478 -h1,8972:6630773,15096863:0,0,0 -g1,8972:7579210,15096863 -g1,8972:10424521,15096863 -g1,8972:14218269,15096863 -g1,8972:17695872,15096863 -k1,8972:17695872,15096863:0 -h1,8972:20541183,15096863:0,0,0 -k1,8972:32583029,15096863:12041846 -g1,8972:32583029,15096863 -) -(1,8974:6630773,16418401:25952256,410518,76021 -(1,8973:6630773,16418401:0,0,0 -g1,8973:6630773,16418401 -g1,8973:6630773,16418401 -g1,8973:6303093,16418401 -(1,8973:6303093,16418401:0,0,0 -) -g1,8973:6630773,16418401 -) -k1,8974:6630773,16418401:0 -h1,8974:11372958,16418401:0,0,0 -k1,8974:32583030,16418401:21210072 -g1,8974:32583030,16418401 -) -(1,8981:6630773,17150115:25952256,404226,76021 -(1,8976:6630773,17150115:0,0,0 -g1,8976:6630773,17150115 -g1,8976:6630773,17150115 -g1,8976:6303093,17150115 -(1,8976:6303093,17150115:0,0,0 -) -g1,8976:6630773,17150115 -) -g1,8981:7579210,17150115 -g1,8981:7895356,17150115 -g1,8981:9159939,17150115 -g1,8981:9476085,17150115 -g1,8981:12953688,17150115 -g1,8981:13269834,17150115 -g1,8981:16747437,17150115 -g1,8981:17063583,17150115 -g1,8981:20541186,17150115 -g1,8981:20857332,17150115 -g1,8981:21173478,17150115 -g1,8981:24334935,17150115 -g1,8981:28128683,17150115 -g1,8981:28444829,17150115 -g1,8981:28760975,17150115 -h1,8981:31606286,17150115:0,0,0 -k1,8981:32583029,17150115:976743 -g1,8981:32583029,17150115 -) -(1,8981:6630773,17816293:25952256,404226,76021 -h1,8981:6630773,17816293:0,0,0 -g1,8981:7579210,17816293 -g1,8981:7895356,17816293 -g1,8981:9159939,17816293 -g1,8981:9476085,17816293 -g1,8981:12953688,17816293 -g1,8981:16747436,17816293 -g1,8981:17063582,17816293 -g1,8981:17379728,17816293 -g1,8981:20541185,17816293 -g1,8981:20857331,17816293 -g1,8981:24334934,17816293 -g1,8981:24651080,17816293 -g1,8981:24967226,17816293 -g1,8981:28128683,17816293 -g1,8981:28444829,17816293 -k1,8981:28444829,17816293:0 -h1,8981:31606286,17816293:0,0,0 -k1,8981:32583029,17816293:976743 -g1,8981:32583029,17816293 -) -(1,8981:6630773,18482471:25952256,404226,82312 -h1,8981:6630773,18482471:0,0,0 -g1,8981:7579210,18482471 -k1,8981:7579210,18482471:0 -h1,8981:12005249,18482471:0,0,0 -k1,8981:32583029,18482471:20577780 -g1,8981:32583029,18482471 -) -(1,8981:6630773,19148649:25952256,404226,76021 -h1,8981:6630773,19148649:0,0,0 -g1,8981:7579210,19148649 -g1,8981:8843793,19148649 -h1,8981:12321395,19148649:0,0,0 -k1,8981:32583029,19148649:20261634 -g1,8981:32583029,19148649 -) -(1,8983:6630773,20470187:25952256,410518,76021 -(1,8982:6630773,20470187:0,0,0 -g1,8982:6630773,20470187 -g1,8982:6630773,20470187 -g1,8982:6303093,20470187 -(1,8982:6303093,20470187:0,0,0 -) -g1,8982:6630773,20470187 -) -k1,8983:6630773,20470187:0 -h1,8983:10424521,20470187:0,0,0 -k1,8983:32583029,20470187:22158508 -g1,8983:32583029,20470187 -) -(1,8990:6630773,21201901:25952256,404226,76021 -(1,8985:6630773,21201901:0,0,0 -g1,8985:6630773,21201901 -g1,8985:6630773,21201901 -g1,8985:6303093,21201901 -(1,8985:6303093,21201901:0,0,0 -) -g1,8985:6630773,21201901 -) -g1,8990:7579210,21201901 -g1,8990:7895356,21201901 -g1,8990:9159939,21201901 -g1,8990:9476085,21201901 -g1,8990:12005251,21201901 -g1,8990:12321397,21201901 -g1,8990:14850563,21201901 -g1,8990:17695874,21201901 -g1,8990:20541185,21201901 -g1,8990:23386496,21201901 -g1,8990:26231807,21201901 -g1,8990:29077118,21201901 -h1,8990:31606283,21201901:0,0,0 -k1,8990:32583029,21201901:976746 -g1,8990:32583029,21201901 -) -(1,8990:6630773,21868079:25952256,404226,76021 -h1,8990:6630773,21868079:0,0,0 -g1,8990:7579210,21868079 -g1,8990:7895356,21868079 -g1,8990:9159939,21868079 -g1,8990:12005250,21868079 -g1,8990:14850561,21868079 -g1,8990:17695872,21868079 -h1,8990:20225037,21868079:0,0,0 -k1,8990:32583029,21868079:12357992 -g1,8990:32583029,21868079 -) -(1,8990:6630773,22534257:25952256,404226,82312 -h1,8990:6630773,22534257:0,0,0 -g1,8990:7579210,22534257 -k1,8990:7579210,22534257:0 -h1,8990:12005249,22534257:0,0,0 -k1,8990:32583029,22534257:20577780 -g1,8990:32583029,22534257 -) -(1,8990:6630773,23200435:25952256,404226,76021 -h1,8990:6630773,23200435:0,0,0 -g1,8990:7579210,23200435 -g1,8990:8843793,23200435 -g1,8990:11372959,23200435 -h1,8990:13585979,23200435:0,0,0 -k1,8990:32583029,23200435:18997050 -g1,8990:32583029,23200435 -) -] -) -g1,8991:32583029,23276456 -g1,8991:6630773,23276456 -g1,8991:6630773,23276456 -g1,8991:32583029,23276456 -g1,8991:32583029,23276456 -) -h1,8991:6630773,23473064:0,0,0 -v1,8995:6630773,25363128:0,393216,0 -(1,9040:6630773,40731663:25952256,15761751,589824 -g1,9040:6630773,40731663 -(1,9040:6630773,40731663:25952256,15761751,589824 -(1,9040:6630773,41321487:25952256,16351575,0 -[1,9040:6630773,41321487:25952256,16351575,0 -(1,9040:6630773,41321487:25952256,16325361,0 -r1,9040:6656987,41321487:26214,16325361,0 -[1,9040:6656987,41321487:25899828,16325361,0 -(1,9040:6656987,40731663:25899828,15145713,0 -[1,9040:7246811,40731663:24720180,15145713,0 -(1,8996:7246811,26747835:24720180,1161885,196608 -(1,8995:7246811,26747835:0,1161885,196608 -r1,9040:8794447,26747835:1547636,1358493,196608 -k1,8995:7246811,26747835:-1547636 -) -(1,8995:7246811,26747835:1547636,1161885,196608 -) -k1,8995:9078614,26747835:284167 -k1,8995:9840538,26747835:284167 -k1,8995:10993056,26747835:284166 -k1,8995:12369708,26747835:284167 -(1,8995:12369708,26747835:0,452978,115847 -r1,9040:14134821,26747835:1765113,568825,115847 -k1,8995:12369708,26747835:-1765113 -) -(1,8995:12369708,26747835:1765113,452978,115847 -k1,8995:12369708,26747835:3277 -h1,8995:14131544,26747835:0,411205,112570 -) -k1,8995:14418988,26747835:284167 -k1,8995:15386040,26747835:284167 -(1,8995:15386040,26747835:0,452978,115847 -r1,9040:17854577,26747835:2468537,568825,115847 -k1,8995:15386040,26747835:-2468537 -) -(1,8995:15386040,26747835:2468537,452978,115847 -k1,8995:15386040,26747835:3277 -h1,8995:17851300,26747835:0,411205,112570 -) -k1,8995:18138744,26747835:284167 -k1,8995:19291262,26747835:284166 -k1,8995:20679711,26747835:284167 -k1,8995:21988861,26747835:284167 -k1,8995:23557534,26747835:284167 -k1,8995:25496484,26747835:284166 -k1,8995:26772211,26747835:284167 -k1,8995:30573040,26747835:284167 -k1,8995:31966991,26747835:0 -) -(1,8996:7246811,27589323:24720180,513147,134348 -k1,8995:9800967,27589323:229594 -k1,8995:10681990,27589323:229595 -k1,8995:12724310,27589323:229594 -k1,8995:14941612,27589323:229595 -k1,8995:16362651,27589323:229594 -k1,8995:20284544,27589323:229595 -k1,8995:22501845,27589323:229594 -k1,8995:23922884,27589323:229594 -k1,8995:25349166,27589323:229595 -k1,8995:28357487,27589323:229594 -k1,8995:30546608,27589323:229595 -k1,8995:31307699,27589323:229594 -k1,8995:31966991,27589323:0 -) -(1,8996:7246811,28430811:24720180,505283,115847 -k1,8995:9071273,28430811:269293 -(1,8995:9071273,28430811:0,452978,115847 -r1,9040:10132962,28430811:1061689,568825,115847 -k1,8995:9071273,28430811:-1061689 -) -(1,8995:9071273,28430811:1061689,452978,115847 -k1,8995:9071273,28430811:3277 -h1,8995:10129685,28430811:0,411205,112570 -) -k1,8995:10402254,28430811:269292 -k1,8995:11862992,28430811:269293 -k1,8995:14834334,28430811:269293 -k1,8995:16795766,28430811:269292 -k1,8995:18348254,28430811:269293 -k1,8995:21571254,28430811:269292 -k1,8995:23031992,28430811:269293 -k1,8995:24918714,28430811:269293 -k1,8995:27393948,28430811:269292 -k1,8995:29013283,28430811:269293 -k1,8995:31966991,28430811:0 -) -(1,8996:7246811,29272299:24720180,505283,134348 -k1,8995:8523111,29272299:284740 -k1,8995:11029522,29272299:284740 -k1,8995:11965690,29272299:284740 -k1,8995:13269515,29272299:284740 -k1,8995:16166521,29272299:284741 -k1,8995:21141017,29272299:284740 -k1,8995:23880080,29272299:284740 -k1,8995:25851717,29272299:284740 -(1,8995:25851717,29272299:0,452978,115847 -r1,9040:28320254,29272299:2468537,568825,115847 -k1,8995:25851717,29272299:-2468537 -) -(1,8995:25851717,29272299:2468537,452978,115847 -k1,8995:25851717,29272299:3277 -h1,8995:28316977,29272299:0,411205,112570 -) -k1,8995:28604994,29272299:284740 -k1,8995:31966991,29272299:0 -) -(1,8996:7246811,30113787:24720180,513147,134348 -k1,8995:9598295,30113787:234016 -k1,8995:12786019,30113787:234016 -k1,8995:15445522,30113787:234016 -k1,8995:18396662,30113787:234017 -k1,8995:21316343,30113787:234016 -k1,8995:22741804,30113787:234016 -(1,8995:22741804,30113787:0,459977,115847 -r1,9040:25562053,30113787:2820249,575824,115847 -k1,8995:22741804,30113787:-2820249 -) -(1,8995:22741804,30113787:2820249,459977,115847 -k1,8995:22741804,30113787:3277 -h1,8995:25558776,30113787:0,411205,112570 -) -k1,8995:25796069,30113787:234016 -k1,8995:30190310,30113787:234016 -k1,8996:31966991,30113787:0 -) -(1,8996:7246811,30955275:24720180,513147,95026 -k1,8995:9853833,30955275:156631 -k1,8995:11404415,30955275:156631 -k1,8995:13678514,30955275:156631 -k1,8995:16788853,30955275:156631 -k1,8995:18339435,30955275:156631 -k1,8995:22303052,30955275:156631 -k1,8995:23269053,30955275:156631 -k1,8995:24444769,30955275:156631 -k1,8995:27363087,30955275:156631 -k1,8995:28179010,30955275:156631 -k1,8995:29354726,30955275:156631 -k1,8995:31966991,30955275:0 -) -(1,8996:7246811,31796763:24720180,505283,134348 -k1,8996:31966991,31796763:21435516 -g1,8996:31966991,31796763 -) -v1,8998:7246811,32987229:0,393216,0 -(1,9014:7246811,40010767:24720180,7416754,196608 -g1,9014:7246811,40010767 -g1,9014:7246811,40010767 -g1,9014:7050203,40010767 -(1,9014:7050203,40010767:0,7416754,196608 -r1,9040:32163599,40010767:25113396,7613362,196608 -k1,9014:7050203,40010767:-25113396 -) -(1,9014:7050203,40010767:25113396,7416754,196608 -[1,9014:7246811,40010767:24720180,7220146,0 -(1,9000:7246811,33201139:24720180,410518,82312 -(1,8999:7246811,33201139:0,0,0 -g1,8999:7246811,33201139 -g1,8999:7246811,33201139 -g1,8999:6919131,33201139 -(1,8999:6919131,33201139:0,0,0 -) -g1,8999:7246811,33201139 -) -k1,9000:7246811,33201139:0 -g1,9000:10408268,33201139 -g1,9000:13569725,33201139 -g1,9000:14202017,33201139 -h1,9000:14834309,33201139:0,0,0 -k1,9000:31966991,33201139:17132682 -g1,9000:31966991,33201139 -) -(1,9013:7246811,33932853:24720180,410518,9436 -(1,9002:7246811,33932853:0,0,0 -g1,9002:7246811,33932853 -g1,9002:7246811,33932853 -g1,9002:6919131,33932853 -(1,9002:6919131,33932853:0,0,0 -) -g1,9002:7246811,33932853 -) -g1,9013:8195248,33932853 -g1,9013:9775977,33932853 -g1,9013:10724414,33932853 -h1,9013:11040560,33932853:0,0,0 -k1,9013:31966992,33932853:20926432 -g1,9013:31966992,33932853 -) -(1,9013:7246811,34599031:24720180,410518,31456 -h1,9013:7246811,34599031:0,0,0 -g1,9013:8195248,34599031 -g1,9013:8511394,34599031 -g1,9013:9143686,34599031 -g1,9013:9775978,34599031 -g1,9013:10092124,34599031 -g1,9013:10408270,34599031 -g1,9013:10724416,34599031 -g1,9013:11040562,34599031 -g1,9013:11356708,34599031 -g1,9013:11672854,34599031 -g1,9013:11989000,34599031 -g1,9013:12305146,34599031 -g1,9013:12621292,34599031 -g1,9013:14518166,34599031 -g1,9013:15466603,34599031 -h1,9013:16098894,34599031:0,0,0 -k1,9013:31966991,34599031:15868097 -g1,9013:31966991,34599031 -) -(1,9013:7246811,35265209:24720180,404226,82312 -h1,9013:7246811,35265209:0,0,0 -g1,9013:8195248,35265209 -g1,9013:8511394,35265209 -g1,9013:8827540,35265209 -g1,9013:10092123,35265209 -g1,9013:12621289,35265209 -g1,9013:15782746,35265209 -g1,9013:17047329,35265209 -h1,9013:20208786,35265209:0,0,0 -k1,9013:31966991,35265209:11758205 -g1,9013:31966991,35265209 -) -(1,9013:7246811,35931387:24720180,410518,31456 -h1,9013:7246811,35931387:0,0,0 -g1,9013:8195248,35931387 -g1,9013:8511394,35931387 -g1,9013:9143686,35931387 -g1,9013:11988997,35931387 -g1,9013:12305143,35931387 -g1,9013:12621289,35931387 -g1,9013:14518163,35931387 -g1,9013:15466600,35931387 -h1,9013:15782746,35931387:0,0,0 -k1,9013:31966991,35931387:16184245 -g1,9013:31966991,35931387 -) -(1,9013:7246811,36597565:24720180,410518,101187 -h1,9013:7246811,36597565:0,0,0 -g1,9013:8195248,36597565 -g1,9013:8511394,36597565 -g1,9013:9143686,36597565 -g1,9013:10724415,36597565 -g1,9013:11040561,36597565 -g1,9013:11356707,36597565 -g1,9013:11672853,36597565 -g1,9013:11988999,36597565 -g1,9013:12305145,36597565 -g1,9013:12621291,36597565 -g1,9013:13253583,36597565 -g1,9013:15466603,36597565 -h1,9013:18311914,36597565:0,0,0 -k1,9013:31966991,36597565:13655077 -g1,9013:31966991,36597565 -) -(1,9013:7246811,37263743:24720180,410518,107478 -h1,9013:7246811,37263743:0,0,0 -k1,9013:8089866,37263743:210764 -k1,9013:8300630,37263743:210764 -k1,9013:8827540,37263743:210764 -k1,9013:10302887,37263743:210764 -k1,9013:10513651,37263743:210764 -k1,9013:10724415,37263743:210764 -k1,9013:10935179,37263743:210764 -k1,9013:11145943,37263743:210764 -k1,9013:11356707,37263743:210764 -k1,9013:11567471,37263743:210764 -k1,9013:12094381,37263743:210764 -k1,9013:14834310,37263743:210764 -k1,9013:18522676,37263743:210764 -k1,9013:19049586,37263743:210764 -k1,9013:20524933,37263743:210764 -k1,9013:21051843,37263743:210764 -k1,9013:25688647,37263743:210764 -k1,9013:26847848,37263743:210764 -k1,9013:28007049,37263743:210764 -k1,9013:29482396,37263743:210764 -k1,9013:30009306,37263743:210764 -k1,9013:33381527,37263743:210764 -k1,9013:35489165,37263743:210764 -k1,9013:36016075,37263743:210764 -k1,9013:37807567,37263743:210764 -k1,9013:38650622,37263743:210764 -k1,9013:38861386,37263743:210764 -k1,9013:39072150,37263743:210764 -k1,9013:39282914,37263743:210764 -k1,9013:39493678,37263743:210764 -k1,9013:39704442,37263743:210764 -k1,9013:43076663,37263743:210764 -k1,9013:46132738,37263743:210764 -k1,9013:46659648,37263743:210764 -k1,9013:48767286,37263743:210764 -k1,9013:53087944,37263743:210764 -h1,9013:54036381,37263743:0,0,0 -k1,9013:54036381,37263743:0 -k1,9013:54036381,37263743:0 -) -(1,9013:7246811,37929921:24720180,410518,31456 -h1,9013:7246811,37929921:0,0,0 -g1,9013:8195248,37929921 -g1,9013:8511394,37929921 -g1,9013:9143686,37929921 -g1,9013:13253580,37929921 -g1,9013:15150454,37929921 -g1,9013:16415037,37929921 -h1,9013:19260348,37929921:0,0,0 -k1,9013:31966991,37929921:12706643 -g1,9013:31966991,37929921 -) -(1,9013:7246811,38596099:24720180,404226,82312 -h1,9013:7246811,38596099:0,0,0 -g1,9013:8195248,38596099 -g1,9013:8511394,38596099 -g1,9013:8827540,38596099 -g1,9013:10092123,38596099 -g1,9013:12621289,38596099 -g1,9013:15782746,38596099 -g1,9013:17047329,38596099 -h1,9013:18944203,38596099:0,0,0 -k1,9013:31966991,38596099:13022788 -g1,9013:31966991,38596099 -) -(1,9013:7246811,39262277:24720180,410518,31456 -h1,9013:7246811,39262277:0,0,0 -g1,9013:8195248,39262277 -g1,9013:8511394,39262277 -g1,9013:9143686,39262277 -g1,9013:11672852,39262277 -g1,9013:11988998,39262277 -g1,9013:12305144,39262277 -g1,9013:12621290,39262277 -g1,9013:14518164,39262277 -g1,9013:15466601,39262277 -h1,9013:15782747,39262277:0,0,0 -k1,9013:31966991,39262277:16184244 -g1,9013:31966991,39262277 -) -(1,9013:7246811,39928455:24720180,404226,82312 -h1,9013:7246811,39928455:0,0,0 -g1,9013:8195248,39928455 -g1,9013:8511394,39928455 -g1,9013:9143686,39928455 -g1,9013:11672852,39928455 -g1,9013:14834309,39928455 -g1,9013:16098892,39928455 -h1,9013:17679620,39928455:0,0,0 -k1,9013:31966991,39928455:14287371 -g1,9013:31966991,39928455 -) -] -) -g1,9014:31966991,40010767 -g1,9014:7246811,40010767 -g1,9014:7246811,40010767 -g1,9014:31966991,40010767 -g1,9014:31966991,40010767 -) -h1,9014:7246811,40207375:0,0,0 -] -) -] -r1,9040:32583029,41321487:26214,16325361,0 -) -] -) -) -g1,9040:32583029,40731663 -) -] -(1,9040:32583029,45706769:0,0,0 -g1,9040:32583029,45706769 -) -) -] -(1,9040:6630773,47279633:25952256,0,0 -h1,9040:6630773,47279633:25952256,0,0 -) -] -(1,9040:4262630,4025873:0,0,0 -[1,9040:-473656,4025873:0,0,0 -(1,9040:-473656,-710413:0,0,0 -(1,9040:-473656,-710413:0,0,0 -g1,9040:-473656,-710413 -) -g1,9040:-473656,-710413 -) -] -) -] -!22720 -}171 -Input:1389:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1390:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!196 -{172 -[1,9101:4262630,47279633:28320399,43253760,0 -(1,9101:4262630,4025873:0,0,0 -[1,9101:-473656,4025873:0,0,0 -(1,9101:-473656,-710413:0,0,0 -(1,9101:-473656,-644877:0,0,0 -k1,9101:-473656,-644877:-65536 -) -(1,9101:-473656,4736287:0,0,0 -k1,9101:-473656,4736287:5209943 -) -g1,9101:-473656,-710413 -) -] -) -[1,9101:6630773,47279633:25952256,43253760,0 -[1,9101:6630773,4812305:25952256,786432,0 -(1,9101:6630773,4812305:25952256,513147,126483 -(1,9101:6630773,4812305:25952256,513147,126483 -g1,9101:3078558,4812305 -[1,9101:3078558,4812305:0,0,0 -(1,9101:3078558,2439708:0,1703936,0 -k1,9101:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,9101:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,9101:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,9101:3078558,4812305:0,0,0 -(1,9101:3078558,2439708:0,1703936,0 -g1,9101:29030814,2439708 -g1,9101:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,9101:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,9101:37855564,2439708:1179648,16384,0 -) -) -k1,9101:3078556,2439708:-34777008 -) -] -[1,9101:3078558,4812305:0,0,0 -(1,9101:3078558,49800853:0,16384,2228224 -k1,9101:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,9101:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,9101:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,9101:3078558,4812305:0,0,0 -(1,9101:3078558,49800853:0,16384,2228224 -g1,9101:29030814,49800853 -g1,9101:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,9101:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,9101:37855564,49800853:1179648,16384,0 -) -) -k1,9101:3078556,49800853:-34777008 -) -] -g1,9101:6630773,4812305 -g1,9101:6630773,4812305 -g1,9101:8691224,4812305 -g1,9101:11722264,4812305 -k1,9101:31387652,4812305:19665388 -) -) -] -[1,9101:6630773,45706769:25952256,40108032,0 -(1,9101:6630773,45706769:25952256,40108032,0 -(1,9101:6630773,45706769:0,0,0 -g1,9101:6630773,45706769 -) -[1,9101:6630773,45706769:25952256,40108032,0 -v1,9040:6630773,6254097:0,393216,0 -(1,9040:6630773,17278233:25952256,11417352,616038 -g1,9040:6630773,17278233 -(1,9040:6630773,17278233:25952256,11417352,616038 -(1,9040:6630773,17894271:25952256,12033390,0 -[1,9040:6630773,17894271:25952256,12033390,0 -(1,9040:6630773,17868057:25952256,12007176,0 -r1,9101:6656987,17868057:26214,12007176,0 -[1,9040:6656987,17868057:25899828,12007176,0 -(1,9040:6656987,17278233:25899828,10827528,0 -[1,9040:7246811,17278233:24720180,10827528,0 -v1,9018:7246811,6843921:0,393216,0 -(1,9038:7246811,16557337:24720180,10106632,196608 -g1,9038:7246811,16557337 -g1,9038:7246811,16557337 -g1,9038:7050203,16557337 -(1,9038:7050203,16557337:0,10106632,196608 -r1,9101:32163599,16557337:25113396,10303240,196608 -k1,9038:7050203,16557337:-25113396 -) -(1,9038:7050203,16557337:25113396,10106632,196608 -[1,9038:7246811,16557337:24720180,9910024,0 -(1,9020:7246811,7057831:24720180,410518,31456 -(1,9019:7246811,7057831:0,0,0 -g1,9019:7246811,7057831 -g1,9019:7246811,7057831 -g1,9019:6919131,7057831 -(1,9019:6919131,7057831:0,0,0 -) -g1,9019:7246811,7057831 -) -h1,9020:11356705,7057831:0,0,0 -k1,9020:31966991,7057831:20610286 -g1,9020:31966991,7057831 -) -(1,9037:7246811,7789545:24720180,410518,31456 -(1,9022:7246811,7789545:0,0,0 -g1,9022:7246811,7789545 -g1,9022:7246811,7789545 -g1,9022:6919131,7789545 -(1,9022:6919131,7789545:0,0,0 -) -g1,9022:7246811,7789545 -) -g1,9037:8195248,7789545 -h1,9037:10408268,7789545:0,0,0 -k1,9037:31966992,7789545:21558724 -g1,9037:31966992,7789545 -) -(1,9037:7246811,8455723:24720180,404226,76021 -h1,9037:7246811,8455723:0,0,0 -g1,9037:8195248,8455723 -g1,9037:9459831,8455723 -h1,9037:10724414,8455723:0,0,0 -k1,9037:31966990,8455723:21242576 -g1,9037:31966990,8455723 -) -(1,9037:7246811,9121901:24720180,379060,0 -h1,9037:7246811,9121901:0,0,0 -h1,9037:7879102,9121901:0,0,0 -k1,9037:31966990,9121901:24087888 -g1,9037:31966990,9121901 -) -(1,9037:7246811,9788079:24720180,410518,31456 -h1,9037:7246811,9788079:0,0,0 -g1,9037:8195248,9788079 -h1,9037:10724413,9788079:0,0,0 -k1,9037:31966991,9788079:21242578 -g1,9037:31966991,9788079 -) -(1,9037:7246811,10454257:24720180,404226,76021 -h1,9037:7246811,10454257:0,0,0 -g1,9037:8195248,10454257 -g1,9037:9459831,10454257 -h1,9037:9775977,10454257:0,0,0 -k1,9037:31966991,10454257:22191014 -g1,9037:31966991,10454257 -) -(1,9037:7246811,11120435:24720180,379060,0 -h1,9037:7246811,11120435:0,0,0 -h1,9037:7879102,11120435:0,0,0 -k1,9037:31966990,11120435:24087888 -g1,9037:31966990,11120435 -) -(1,9037:7246811,11786613:24720180,410518,31456 -h1,9037:7246811,11786613:0,0,0 -g1,9037:8195248,11786613 -h1,9037:10408268,11786613:0,0,0 -k1,9037:31966992,11786613:21558724 -g1,9037:31966992,11786613 -) -(1,9037:7246811,12452791:24720180,404226,76021 -h1,9037:7246811,12452791:0,0,0 -g1,9037:8195248,12452791 -g1,9037:9459831,12452791 -k1,9037:9459831,12452791:0 -h1,9037:13253579,12452791:0,0,0 -k1,9037:31966991,12452791:18713412 -g1,9037:31966991,12452791 -) -(1,9037:7246811,13118969:24720180,379060,0 -h1,9037:7246811,13118969:0,0,0 -h1,9037:7879102,13118969:0,0,0 -k1,9037:31966990,13118969:24087888 -g1,9037:31966990,13118969 -) -(1,9037:7246811,13785147:24720180,410518,101187 -h1,9037:7246811,13785147:0,0,0 -g1,9037:8195248,13785147 -h1,9037:11040559,13785147:0,0,0 -k1,9037:31966991,13785147:20926432 -g1,9037:31966991,13785147 -) -(1,9037:7246811,14451325:24720180,404226,76021 -h1,9037:7246811,14451325:0,0,0 -g1,9037:8195248,14451325 -g1,9037:9459831,14451325 -h1,9037:9775977,14451325:0,0,0 -k1,9037:31966991,14451325:22191014 -g1,9037:31966991,14451325 -) -(1,9037:7246811,15117503:24720180,379060,0 -h1,9037:7246811,15117503:0,0,0 -h1,9037:7879102,15117503:0,0,0 -k1,9037:31966990,15117503:24087888 -g1,9037:31966990,15117503 -) -(1,9037:7246811,15783681:24720180,410518,107478 -h1,9037:7246811,15783681:0,0,0 -g1,9037:8195248,15783681 -h1,9037:11988996,15783681:0,0,0 -k1,9037:31966992,15783681:19977996 -g1,9037:31966992,15783681 -) -(1,9037:7246811,16449859:24720180,404226,107478 -h1,9037:7246811,16449859:0,0,0 -g1,9037:8195248,16449859 -g1,9037:9459831,16449859 -h1,9037:12937433,16449859:0,0,0 -k1,9037:31966991,16449859:19029558 -g1,9037:31966991,16449859 -) -] -) -g1,9038:31966991,16557337 -g1,9038:7246811,16557337 -g1,9038:7246811,16557337 -g1,9038:31966991,16557337 -g1,9038:31966991,16557337 -) -h1,9038:7246811,16753945:0,0,0 -] -) -] -r1,9101:32583029,17868057:26214,12007176,0 -) -] -) -) -g1,9040:32583029,17278233 -) -h1,9040:6630773,17894271:0,0,0 -(1,9044:6630773,21226127:25952256,32768,229376 -(1,9044:6630773,21226127:0,32768,229376 -(1,9044:6630773,21226127:5505024,32768,229376 -r1,9101:12135797,21226127:5505024,262144,229376 -) -k1,9044:6630773,21226127:-5505024 -) -(1,9044:6630773,21226127:25952256,32768,0 -r1,9101:32583029,21226127:25952256,32768,0 -) -) -(1,9044:6630773,22830455:25952256,615776,14155 -(1,9044:6630773,22830455:2464678,582746,14155 -g1,9044:6630773,22830455 -g1,9044:9095451,22830455 -) -g1,9044:11747300,22830455 -k1,9044:32583029,22830455:17280270 -g1,9044:32583029,22830455 -) -(1,9047:6630773,24065159:25952256,505283,134348 -k1,9046:7210038,24065159:164422 -k1,9046:7905992,24065159:164457 -k1,9046:11351180,24065159:164456 -k1,9046:12131675,24065159:164457 -k1,9046:13626512,24065159:164456 -k1,9046:14249066,24065159:164457 -k1,9046:16249185,24065159:164456 -k1,9046:18755899,24065159:164457 -k1,9046:21383853,24065159:164456 -k1,9046:22199738,24065159:164457 -k1,9046:22720054,24065159:164456 -k1,9046:24872873,24065159:164457 -k1,9046:26321835,24065159:164456 -k1,9046:27590574,24065159:164457 -k1,9046:28502796,24065159:164456 -k1,9046:31931601,24065159:164457 -k1,9046:32583029,24065159:0 -) -(1,9047:6630773,24906647:25952256,513147,134348 -k1,9046:8547105,24906647:172419 -k1,9046:11211858,24906647:172419 -k1,9046:12778229,24906647:172420 -k1,9046:14652618,24906647:172419 -k1,9046:17901297,24906647:172419 -k1,9046:21419984,24906647:172419 -k1,9046:23523749,24906647:172419 -k1,9046:26569922,24906647:172419 -k1,9046:27733902,24906647:172420 -k1,9046:30196149,24906647:172419 -k1,9046:31027860,24906647:172419 -k1,9047:32583029,24906647:0 -) -(1,9047:6630773,25748135:25952256,513147,134348 -(1,9046:6630773,25748135:0,459977,115847 -r1,9101:9099310,25748135:2468537,575824,115847 -k1,9046:6630773,25748135:-2468537 -) -(1,9046:6630773,25748135:2468537,459977,115847 -k1,9046:6630773,25748135:3277 -h1,9046:9096033,25748135:0,411205,112570 -) -k1,9046:9287077,25748135:187767 -k1,9046:10666289,25748135:187767 -k1,9046:12636635,25748135:187767 -(1,9046:12636635,25748135:0,452978,115847 -r1,9101:14050036,25748135:1413401,568825,115847 -k1,9046:12636635,25748135:-1413401 -) -(1,9046:12636635,25748135:1413401,452978,115847 -k1,9046:12636635,25748135:3277 -h1,9046:14046759,25748135:0,411205,112570 -) -k1,9046:14237803,25748135:187767 -k1,9046:15617015,25748135:187767 -k1,9046:16909064,25748135:187767 -k1,9046:17844598,25748135:187768 -k1,9046:22045790,25748135:187767 -k1,9046:23425002,25748135:187767 -k1,9046:25650939,25748135:187767 -k1,9046:28606947,25748135:187767 -k1,9046:29446142,25748135:187767 -k1,9046:31923737,25748135:187767 -k1,9046:32583029,25748135:0 -) -(1,9047:6630773,26589623:25952256,505283,7863 -g1,9046:8531972,26589623 -k1,9047:32583030,26589623:21644576 -g1,9047:32583030,26589623 -) -v1,9049:6630773,27780089:0,393216,0 -(1,9062:6630773,30848694:25952256,3461821,196608 -g1,9062:6630773,30848694 -g1,9062:6630773,30848694 -g1,9062:6434165,30848694 -(1,9062:6434165,30848694:0,3461821,196608 -r1,9101:32779637,30848694:26345472,3658429,196608 -k1,9062:6434165,30848694:-26345472 -) -(1,9062:6434165,30848694:26345472,3461821,196608 -[1,9062:6630773,30848694:25952256,3265213,0 -(1,9051:6630773,27987707:25952256,404226,101187 -(1,9050:6630773,27987707:0,0,0 -g1,9050:6630773,27987707 -g1,9050:6630773,27987707 -g1,9050:6303093,27987707 -(1,9050:6303093,27987707:0,0,0 -) -g1,9050:6630773,27987707 -) -k1,9051:6630773,27987707:0 -g1,9051:9159938,27987707 -g1,9051:9792230,27987707 -h1,9051:10424521,27987707:0,0,0 -k1,9051:32583029,27987707:22158508 -g1,9051:32583029,27987707 -) -(1,9055:6630773,28719421:25952256,410518,76021 -(1,9053:6630773,28719421:0,0,0 -g1,9053:6630773,28719421 -g1,9053:6630773,28719421 -g1,9053:6303093,28719421 -(1,9053:6303093,28719421:0,0,0 -) -g1,9053:6630773,28719421 -) -g1,9055:7579210,28719421 -g1,9055:8843793,28719421 -h1,9055:11689104,28719421:0,0,0 -k1,9055:32583028,28719421:20893924 -g1,9055:32583028,28719421 -) -(1,9057:6630773,30040959:25952256,404226,101187 -(1,9056:6630773,30040959:0,0,0 -g1,9056:6630773,30040959 -g1,9056:6630773,30040959 -g1,9056:6303093,30040959 -(1,9056:6303093,30040959:0,0,0 -) -g1,9056:6630773,30040959 -) -k1,9057:6630773,30040959:0 -g1,9057:8843793,30040959 -g1,9057:9476085,30040959 -h1,9057:10108376,30040959:0,0,0 -k1,9057:32583028,30040959:22474652 -g1,9057:32583028,30040959 -) -(1,9061:6630773,30772673:25952256,404226,76021 -(1,9059:6630773,30772673:0,0,0 -g1,9059:6630773,30772673 -g1,9059:6630773,30772673 -g1,9059:6303093,30772673 -(1,9059:6303093,30772673:0,0,0 -) -g1,9059:6630773,30772673 -) -g1,9061:7579210,30772673 -g1,9061:8843793,30772673 -h1,9061:10740667,30772673:0,0,0 -k1,9061:32583029,30772673:21842362 -g1,9061:32583029,30772673 -) -] -) -g1,9062:32583029,30848694 -g1,9062:6630773,30848694 -g1,9062:6630773,30848694 -g1,9062:32583029,30848694 -g1,9062:32583029,30848694 -) -h1,9062:6630773,31045302:0,0,0 -(1,9066:6630773,32411078:25952256,513147,134348 -h1,9065:6630773,32411078:983040,0,0 -k1,9065:9117512,32411078:197566 -k1,9065:10446884,32411078:197565 -k1,9065:12346420,32411078:197566 -k1,9065:12958827,32411078:197564 -k1,9065:15115919,32411078:197566 -k1,9065:18187239,32411078:197566 -k1,9065:19489087,32411078:197566 -k1,9065:20434418,32411078:197565 -k1,9065:23406778,32411078:197566 -k1,9065:24255772,32411078:197566 -k1,9065:27294979,32411078:197566 -k1,9065:28683989,32411078:197565 -k1,9065:29629321,32411078:197566 -k1,9065:32583029,32411078:0 -) -(1,9066:6630773,33252566:25952256,513147,134348 -k1,9065:7446948,33252566:156883 -k1,9065:8927658,33252566:156883 -k1,9065:10275986,33252566:156883 -k1,9065:12914717,33252566:156883 -k1,9065:17592274,33252566:156883 -k1,9065:18768242,33252566:156883 -k1,9065:20231257,33252566:156882 -k1,9065:22200866,33252566:156883 -k1,9065:24345456,33252566:156883 -k1,9065:25189812,33252566:156883 -k1,9065:28008112,33252566:156883 -k1,9065:29732616,33252566:156883 -k1,9065:31387652,33252566:156883 -h1,9065:32583029,33252566:0,0,0 -k1,9065:32583029,33252566:0 -) -(1,9066:6630773,34094054:25952256,513147,7863 -g1,9065:7934284,34094054 -g1,9065:8881279,34094054 -g1,9065:12002758,34094054 -g1,9065:12888149,34094054 -k1,9066:32583030,34094054:17205824 -g1,9066:32583030,34094054 -) -v1,9068:6630773,35284520:0,393216,0 -(1,9073:6630773,36265795:25952256,1374491,196608 -g1,9073:6630773,36265795 -g1,9073:6630773,36265795 -g1,9073:6434165,36265795 -(1,9073:6434165,36265795:0,1374491,196608 -r1,9101:32779637,36265795:26345472,1571099,196608 -k1,9073:6434165,36265795:-26345472 -) -(1,9073:6434165,36265795:26345472,1374491,196608 -[1,9073:6630773,36265795:25952256,1177883,0 -(1,9070:6630773,35498430:25952256,410518,101187 -(1,9069:6630773,35498430:0,0,0 -g1,9069:6630773,35498430 -g1,9069:6630773,35498430 -g1,9069:6303093,35498430 -(1,9069:6303093,35498430:0,0,0 -) -g1,9069:6630773,35498430 -) -g1,9070:10108376,35498430 -g1,9070:11056814,35498430 -g1,9070:12637543,35498430 -g1,9070:13269835,35498430 -g1,9070:13902127,35498430 -g1,9070:14534419,35498430 -h1,9070:16115147,35498430:0,0,0 -k1,9070:32583029,35498430:16467882 -g1,9070:32583029,35498430 -) -(1,9071:6630773,36164608:25952256,410518,101187 -h1,9071:6630773,36164608:0,0,0 -g1,9071:7895356,36164608 -g1,9071:8843794,36164608 -g1,9071:13585979,36164608 -h1,9071:16747436,36164608:0,0,0 -k1,9071:32583029,36164608:15835593 -g1,9071:32583029,36164608 -) -] -) -g1,9073:32583029,36265795 -g1,9073:6630773,36265795 -g1,9073:6630773,36265795 -g1,9073:32583029,36265795 -g1,9073:32583029,36265795 -) -h1,9073:6630773,36462403:0,0,0 -(1,9078:6630773,37652869:25952256,513147,134348 -h1,9076:6630773,37652869:983040,0,0 -k1,9076:8424944,37652869:183296 -k1,9076:10300380,37652869:183296 -k1,9076:13640545,37652869:183296 -k1,9076:16141849,37652869:183296 -k1,9076:18602521,37652869:183296 -k1,9076:19141677,37652869:183296 -k1,9076:20275245,37652869:183296 -k1,9076:21971112,37652869:183296 -k1,9076:22717362,37652869:183296 -k1,9076:24413229,37652869:183296 -k1,9076:25405895,37652869:183296 -k1,9076:26608276,37652869:183296 -k1,9076:27865707,37652869:183296 -k1,9076:29655290,37652869:183296 -k1,9076:31138165,37652869:183296 -k1,9076:31980753,37652869:183296 -h1,9076:31980753,37652869:0,0,0 -k1,9076:32583029,37652869:0 -) -(1,9078:6630773,38319047:25952256,505283,126483 -g1,9076:7821562,38319047 -g1,9076:9534017,38319047 -g1,9076:10805415,38319047 -g1,9076:11617406,38319047 -g1,9076:13312167,38319047 -g1,9076:14668106,38319047 -g1,9076:16379906,38319047 -g1,9076:17388505,38319047 -g1,9076:18606819,38319047 -g1,9076:20428064,38319047 -g1,9076:21375059,38319047 -g1,9076:23980115,38319047 -g1,9076:24795382,38319047 -g1,9076:26013696,38319047 -g1,9076:27420098,38319047 -k1,9078:32583029,38319047:5162931 -g1,9078:32583029,38319047 -) -v1,9078:6630773,39509513:0,393216,0 -(1,9097:6630773,44631370:25952256,5515073,196608 -g1,9097:6630773,44631370 -g1,9097:6630773,44631370 -g1,9097:6434165,44631370 -(1,9097:6434165,44631370:0,5515073,196608 -r1,9101:32779637,44631370:26345472,5711681,196608 -k1,9097:6434165,44631370:-26345472 -) -(1,9097:6434165,44631370:26345472,5515073,196608 -[1,9097:6630773,44631370:25952256,5318465,0 -(1,9080:6630773,39717131:25952256,404226,101187 -(1,9079:6630773,39717131:0,0,0 -g1,9079:6630773,39717131 -g1,9079:6630773,39717131 -g1,9079:6303093,39717131 -(1,9079:6303093,39717131:0,0,0 -) -g1,9079:6630773,39717131 -) -k1,9080:6630773,39717131:0 -g1,9080:9159939,39717131 -g1,9080:9792231,39717131 -g1,9080:10424523,39717131 -h1,9080:11056814,39717131:0,0,0 -k1,9080:32583030,39717131:21526216 -g1,9080:32583030,39717131 -) -(1,9084:6630773,40448845:25952256,410518,76021 -(1,9082:6630773,40448845:0,0,0 -g1,9082:6630773,40448845 -g1,9082:6630773,40448845 -g1,9082:6303093,40448845 -(1,9082:6303093,40448845:0,0,0 -) -g1,9082:6630773,40448845 -) -g1,9084:7579210,40448845 -g1,9084:8843793,40448845 -h1,9084:11689104,40448845:0,0,0 -k1,9084:32583028,40448845:20893924 -g1,9084:32583028,40448845 -) -(1,9086:6630773,41770383:25952256,404226,101187 -(1,9085:6630773,41770383:0,0,0 -g1,9085:6630773,41770383 -g1,9085:6630773,41770383 -g1,9085:6303093,41770383 -(1,9085:6303093,41770383:0,0,0 -) -g1,9085:6630773,41770383 -) -k1,9086:6630773,41770383:0 -g1,9086:8843794,41770383 -g1,9086:9476086,41770383 -g1,9086:10108378,41770383 -h1,9086:10740669,41770383:0,0,0 -k1,9086:32583029,41770383:21842360 -g1,9086:32583029,41770383 -) -(1,9090:6630773,42502097:25952256,404226,76021 -(1,9088:6630773,42502097:0,0,0 -g1,9088:6630773,42502097 -g1,9088:6630773,42502097 -g1,9088:6303093,42502097 -(1,9088:6303093,42502097:0,0,0 -) -g1,9088:6630773,42502097 -) -g1,9090:7579210,42502097 -g1,9090:8843793,42502097 -h1,9090:10740667,42502097:0,0,0 -k1,9090:32583029,42502097:21842362 -g1,9090:32583029,42502097 -) -(1,9092:6630773,43823635:25952256,404226,101187 -(1,9091:6630773,43823635:0,0,0 -g1,9091:6630773,43823635 -g1,9091:6630773,43823635 -g1,9091:6303093,43823635 -(1,9091:6303093,43823635:0,0,0 -) -g1,9091:6630773,43823635 -) -k1,9092:6630773,43823635:0 -g1,9092:12005251,43823635 -g1,9092:12637543,43823635 -g1,9092:13269835,43823635 -h1,9092:13902126,43823635:0,0,0 -k1,9092:32583030,43823635:18680904 -g1,9092:32583030,43823635 -) -(1,9096:6630773,44555349:25952256,404226,76021 -(1,9094:6630773,44555349:0,0,0 -g1,9094:6630773,44555349 -g1,9094:6630773,44555349 -g1,9094:6303093,44555349 -(1,9094:6303093,44555349:0,0,0 -) -g1,9094:6630773,44555349 -) -g1,9096:7579210,44555349 -g1,9096:8843793,44555349 -h1,9096:10424521,44555349:0,0,0 -k1,9096:32583029,44555349:22158508 -g1,9096:32583029,44555349 -) -] -) -g1,9097:32583029,44631370 -g1,9097:6630773,44631370 -g1,9097:6630773,44631370 -g1,9097:32583029,44631370 -g1,9097:32583029,44631370 -) -h1,9097:6630773,44827978:0,0,0 -] -(1,9101:32583029,45706769:0,0,0 -g1,9101:32583029,45706769 -) -) -] -(1,9101:6630773,47279633:25952256,0,0 -h1,9101:6630773,47279633:25952256,0,0 -) -] -(1,9101:4262630,4025873:0,0,0 -[1,9101:-473656,4025873:0,0,0 -(1,9101:-473656,-710413:0,0,0 -(1,9101:-473656,-710413:0,0,0 -g1,9101:-473656,-710413 -) -g1,9101:-473656,-710413 -) -] -) -] -!19113 -}172 -Input:1391:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1392:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1393:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1394:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1395:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1396:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!564 -{173 -[1,9211:4262630,47279633:28320399,43253760,0 -(1,9211:4262630,4025873:0,0,0 -[1,9211:-473656,4025873:0,0,0 -(1,9211:-473656,-710413:0,0,0 -(1,9211:-473656,-644877:0,0,0 -k1,9211:-473656,-644877:-65536 -) -(1,9211:-473656,4736287:0,0,0 -k1,9211:-473656,4736287:5209943 -) -g1,9211:-473656,-710413 -) -] -) -[1,9211:6630773,47279633:25952256,43253760,0 -[1,9211:6630773,4812305:25952256,786432,0 -(1,9211:6630773,4812305:25952256,505283,134348 -(1,9211:6630773,4812305:25952256,505283,134348 -g1,9211:3078558,4812305 -[1,9211:3078558,4812305:0,0,0 -(1,9211:3078558,2439708:0,1703936,0 -k1,9211:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,9211:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,9211:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,9211:3078558,4812305:0,0,0 -(1,9211:3078558,2439708:0,1703936,0 -g1,9211:29030814,2439708 -g1,9211:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,9211:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,9211:37855564,2439708:1179648,16384,0 -) -) -k1,9211:3078556,2439708:-34777008 -) -] -[1,9211:3078558,4812305:0,0,0 -(1,9211:3078558,49800853:0,16384,2228224 -k1,9211:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,9211:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,9211:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,9211:3078558,4812305:0,0,0 -(1,9211:3078558,49800853:0,16384,2228224 -g1,9211:29030814,49800853 -g1,9211:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,9211:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,9211:37855564,49800853:1179648,16384,0 -) -) -k1,9211:3078556,49800853:-34777008 -) -] -g1,9211:6630773,4812305 -k1,9211:24502442,4812305:16676292 -g1,9211:25889183,4812305 -g1,9211:26537989,4812305 -g1,9211:29852144,4812305 -) -) -] -[1,9211:6630773,45706769:25952256,40108032,0 -(1,9211:6630773,45706769:25952256,40108032,0 -(1,9211:6630773,45706769:0,0,0 -g1,9211:6630773,45706769 -) -[1,9211:6630773,45706769:25952256,40108032,0 -v1,9101:6630773,6254097:0,393216,0 -(1,9211:6630773,45116945:25952256,39256064,589824 -g1,9211:6630773,45116945 -(1,9211:6630773,45116945:25952256,39256064,589824 -(1,9211:6630773,45706769:25952256,39845888,0 -[1,9211:6630773,45706769:25952256,39845888,0 -(1,9211:6630773,45706769:25952256,39819674,0 -r1,9211:6656987,45706769:26214,39819674,0 -[1,9211:6656987,45706769:25899828,39819674,0 -(1,9211:6656987,45116945:25899828,38640026,0 -[1,9211:7246811,45116945:24720180,38640026,0 -(1,9102:7246811,7638804:24720180,1161885,196608 -(1,9101:7246811,7638804:0,1161885,196608 -r1,9211:8794447,7638804:1547636,1358493,196608 -k1,9101:7246811,7638804:-1547636 -) -(1,9101:7246811,7638804:1547636,1161885,196608 -) -k1,9101:8991410,7638804:196963 -k1,9101:9816208,7638804:196963 -k1,9101:11216412,7638804:196963 -k1,9101:12573361,7638804:196962 -k1,9101:13638676,7638804:196963 -k1,9101:16866679,7638804:196963 -k1,9101:18011293,7638804:196963 -k1,9101:22730240,7638804:196963 -k1,9101:24619343,7638804:196963 -k1,9101:29330426,7638804:196963 -k1,9101:30194544,7638804:196962 -k1,9101:30806348,7638804:196961 -k1,9102:31966991,7638804:0 -) -(1,9102:7246811,8480292:24720180,505283,126483 -k1,9101:9380915,8480292:208001 -k1,9101:10873422,8480292:208001 -k1,9101:12072983,8480292:208001 -k1,9101:14598993,8480292:208002 -k1,9101:18016292,8480292:208001 -k1,9101:18840331,8480292:208001 -k1,9101:21887352,8480292:208001 -k1,9101:23187838,8480292:208001 -k1,9101:24468008,8480292:208001 -k1,9101:25780292,8480292:208002 -k1,9101:26736059,8480292:208001 -k1,9101:30153358,8480292:208001 -k1,9101:30977397,8480292:208001 -k1,9102:31966991,8480292:0 -) -(1,9102:7246811,9321780:24720180,513147,134348 -k1,9101:9680982,9321780:204636 -k1,9101:12220666,9321780:204636 -k1,9101:13243192,9321780:204637 -k1,9101:14841779,9321780:204636 -k1,9101:16748385,9321780:204636 -k1,9101:19359503,9321780:204636 -k1,9101:21570196,9321780:204636 -k1,9101:24064660,9321780:204636 -k1,9101:24952182,9321780:204637 -k1,9101:27464996,9321780:204636 -k1,9101:28328924,9321780:204636 -k1,9101:30546826,9321780:204636 -k1,9101:31966991,9321780:0 -) -(1,9102:7246811,10163268:24720180,513147,126483 -k1,9101:8480995,10163268:242624 -k1,9101:10437384,10163268:242623 -k1,9101:11307843,10163268:242624 -k1,9101:12569552,10163268:242624 -k1,9101:14179257,10163268:242624 -k1,9101:15081172,10163268:242623 -k1,9101:18197550,10163268:242624 -k1,9101:20094958,10163268:242624 -k1,9101:20869078,10163268:242623 -k1,9101:21882405,10163268:242624 -k1,9101:25352022,10163268:242624 -k1,9101:27023986,10163268:242624 -k1,9101:27925901,10163268:242623 -k1,9101:31611131,10163268:242624 -k1,9101:31966991,10163268:0 -) -(1,9102:7246811,11004756:24720180,513147,134348 -g1,9101:9989492,11004756 -g1,9101:13500911,11004756 -g1,9101:14056000,11004756 -g1,9101:16242936,11004756 -g1,9101:17836116,11004756 -g1,9101:18844715,11004756 -g1,9101:22809643,11004756 -g1,9101:24851744,11004756 -g1,9101:25860343,11004756 -g1,9101:26847970,11004756 -k1,9102:31966991,11004756:3911848 -g1,9102:31966991,11004756 -) -(1,9104:7246811,12299388:24720180,513147,134348 -h1,9103:7246811,12299388:983040,0,0 -k1,9103:9373907,12299388:241625 -k1,9103:11621589,12299388:241625 -k1,9103:13822740,12299388:241625 -k1,9103:14723657,12299388:241625 -k1,9103:16520451,12299388:241625 -(1,9103:16520451,12299388:0,459977,115847 -r1,9211:18988988,12299388:2468537,575824,115847 -k1,9103:16520451,12299388:-2468537 -) -(1,9103:16520451,12299388:2468537,459977,115847 -k1,9103:16520451,12299388:3277 -h1,9103:18985711,12299388:0,411205,112570 -) -k1,9103:19230613,12299388:241625 -k1,9103:20576520,12299388:241625 -k1,9103:21565911,12299388:241625 -k1,9103:24157657,12299388:241625 -k1,9103:25793233,12299388:241625 -(1,9103:25793233,12299388:0,459977,115847 -r1,9211:28965193,12299388:3171960,575824,115847 -k1,9103:25793233,12299388:-3171960 -) -(1,9103:25793233,12299388:3171960,459977,115847 -k1,9103:25793233,12299388:3277 -h1,9103:28961916,12299388:0,411205,112570 -) -k1,9103:29380488,12299388:241625 -k1,9103:30818800,12299388:241625 -k1,9103:31966991,12299388:0 -) -(1,9104:7246811,13140876:24720180,513147,134348 -g1,9103:10632400,13140876 -g1,9103:13292506,13140876 -g1,9103:14262438,13140876 -g1,9103:16068610,13140876 -g1,9103:16954001,13140876 -g1,9103:18808014,13140876 -g1,9103:19538740,13140876 -g1,9103:20547339,13140876 -g1,9103:22734275,13140876 -k1,9104:31966991,13140876:6515593 -g1,9104:31966991,13140876 -) -v1,9106:7246811,15237631:0,393216,0 -(1,9122:7246811,19659232:24720180,4814817,196608 -g1,9122:7246811,19659232 -g1,9122:7246811,19659232 -g1,9122:7050203,19659232 -(1,9122:7050203,19659232:0,4814817,196608 -r1,9211:32163599,19659232:25113396,5011425,196608 -k1,9122:7050203,19659232:-25113396 -) -(1,9122:7050203,19659232:25113396,4814817,196608 -[1,9122:7246811,19659232:24720180,4618209,0 -(1,9108:7246811,15451541:24720180,410518,76021 -(1,9107:7246811,15451541:0,0,0 -g1,9107:7246811,15451541 -g1,9107:7246811,15451541 -g1,9107:6919131,15451541 -(1,9107:6919131,15451541:0,0,0 -) -g1,9107:7246811,15451541 -) -k1,9108:7246811,15451541:0 -k1,9108:7246811,15451541:0 -h1,9108:12305142,15451541:0,0,0 -k1,9108:31966990,15451541:19661848 -g1,9108:31966990,15451541 -) -(1,9112:7246811,16183255:24720180,410518,76021 -(1,9110:7246811,16183255:0,0,0 -g1,9110:7246811,16183255 -g1,9110:7246811,16183255 -g1,9110:6919131,16183255 -(1,9110:6919131,16183255:0,0,0 -) -g1,9110:7246811,16183255 -) -g1,9112:8195248,16183255 -g1,9112:9459831,16183255 -h1,9112:12305142,16183255:0,0,0 -k1,9112:31966990,16183255:19661848 -g1,9112:31966990,16183255 -) -(1,9114:7246811,17504793:24720180,410518,76021 -(1,9113:7246811,17504793:0,0,0 -g1,9113:7246811,17504793 -g1,9113:7246811,17504793 -g1,9113:6919131,17504793 -(1,9113:6919131,17504793:0,0,0 -) -g1,9113:7246811,17504793 -) -k1,9114:7246811,17504793:0 -k1,9114:7246811,17504793:0 -h1,9114:11988997,17504793:0,0,0 -k1,9114:31966991,17504793:19977994 -g1,9114:31966991,17504793 -) -(1,9118:7246811,18236507:24720180,404226,76021 -(1,9116:7246811,18236507:0,0,0 -g1,9116:7246811,18236507 -g1,9116:7246811,18236507 -g1,9116:6919131,18236507 -(1,9116:6919131,18236507:0,0,0 -) -g1,9116:7246811,18236507 -) -g1,9118:8195248,18236507 -g1,9118:9459831,18236507 -h1,9118:11356705,18236507:0,0,0 -k1,9118:31966991,18236507:20610286 -g1,9118:31966991,18236507 -) -(1,9120:7246811,19558045:24720180,410518,101187 -(1,9119:7246811,19558045:0,0,0 -g1,9119:7246811,19558045 -g1,9119:7246811,19558045 -g1,9119:6919131,19558045 -(1,9119:6919131,19558045:0,0,0 -) -g1,9119:7246811,19558045 -) -g1,9120:7879103,19558045 -k1,9120:7879103,19558045:0 -h1,9120:15782745,19558045:0,0,0 -k1,9120:31966991,19558045:16184246 -g1,9120:31966991,19558045 -) -] -) -g1,9122:31966991,19659232 -g1,9122:7246811,19659232 -g1,9122:7246811,19659232 -g1,9122:31966991,19659232 -g1,9122:31966991,19659232 -) -h1,9122:7246811,19855840:0,0,0 -(1,9126:7246811,22581049:24720180,513147,134348 -h1,9125:7246811,22581049:983040,0,0 -k1,9125:9303409,22581049:171127 -k1,9125:11434063,22581049:171128 -k1,9125:12264482,22581049:171127 -k1,9125:13990778,22581049:171127 -(1,9125:13990778,22581049:0,459977,115847 -r1,9211:16459315,22581049:2468537,575824,115847 -k1,9125:13990778,22581049:-2468537 -) -(1,9125:13990778,22581049:2468537,459977,115847 -k1,9125:13990778,22581049:3277 -h1,9125:16456038,22581049:0,411205,112570 -) -k1,9125:16630442,22581049:171127 -k1,9125:20163567,22581049:171128 -k1,9125:20690554,22581049:171127 -k1,9125:23405133,22581049:171127 -k1,9125:25535786,22581049:171127 -k1,9125:29019104,22581049:171128 -k1,9125:29960934,22581049:171127 -k1,9125:31966991,22581049:0 -) -(1,9126:7246811,23422537:24720180,505283,134348 -k1,9125:9542061,23422537:133873 -k1,9125:11450650,23422537:133874 -h1,9125:11450650,23422537:0,0,0 -k1,9125:12111376,23422537:265544 -k1,9125:12772103,23422537:265545 -k1,9125:13301158,23422537:133873 -k1,9125:16434615,23422537:133874 -k1,9125:16924348,23422537:133873 -k1,9125:19045929,23422537:133874 -k1,9125:20573753,23422537:133873 -k1,9125:22083228,23422537:133874 -k1,9125:22987804,23422537:133873 -k1,9125:25988878,23422537:133874 -k1,9125:29688565,23422537:133873 -$1,9125:29688565,23422537 -k1,9125:30333309,23422537:182060 -k1,9125:31083566,23422537:182060 -[1,9125:31083566,23422537:502661,458096,7864 -(1,9125:31554113,23414673:0,450232,0 -) -(1,9125:31083566,23422537:502661,355205,7864 -) -] -$1,9125:31586227,23422537 -k1,9125:31966991,23422537:0 -) -(1,9126:7246811,24264025:24720180,513147,126483 -h1,9125:7246811,24264025:0,0,0 -k1,9125:7972811,24264025:330818 -k1,9125:8698812,24264025:330819 -k1,9125:9260775,24264025:166781 -k1,9125:10110440,24264025:166780 -k1,9125:11065619,24264025:166781 -k1,9125:14537381,24264025:166781 -h1,9125:14537381,24264025:0,0,0 -k1,9125:15263381,24264025:330818 -k1,9125:15989382,24264025:330819 -k1,9125:17120196,24264025:166780 -k1,9125:20286560,24264025:166781 -k1,9125:21224044,24264025:166781 -k1,9125:23396881,24264025:166780 -k1,9125:25551369,24264025:166781 -k1,9125:27002656,24264025:166781 -k1,9125:29339988,24264025:166780 -k1,9125:30254535,24264025:166781 -k1,9125:31966991,24264025:0 -) -(1,9126:7246811,25105513:24720180,505283,7863 -g1,9125:8097468,25105513 -k1,9126:31966990,25105513:22306488 -g1,9126:31966990,25105513 -) -v1,9128:7246811,27202268:0,393216,0 -(1,9159:7246811,36430629:24720180,9621577,196608 -g1,9159:7246811,36430629 -g1,9159:7246811,36430629 -g1,9159:7050203,36430629 -(1,9159:7050203,36430629:0,9621577,196608 -r1,9211:32163599,36430629:25113396,9818185,196608 -k1,9159:7050203,36430629:-25113396 -) -(1,9159:7050203,36430629:25113396,9621577,196608 -[1,9159:7246811,36430629:24720180,9424969,0 -(1,9130:7246811,27409886:24720180,404226,101187 -(1,9129:7246811,27409886:0,0,0 -g1,9129:7246811,27409886 -g1,9129:7246811,27409886 -g1,9129:6919131,27409886 -(1,9129:6919131,27409886:0,0,0 -) -g1,9129:7246811,27409886 -) -k1,9130:7246811,27409886:0 -g1,9130:9775976,27409886 -g1,9130:10408268,27409886 -h1,9130:11040560,27409886:0,0,0 -k1,9130:31966992,27409886:20926432 -g1,9130:31966992,27409886 -) -(1,9134:7246811,28141600:24720180,410518,76021 -(1,9132:7246811,28141600:0,0,0 -g1,9132:7246811,28141600 -g1,9132:7246811,28141600 -g1,9132:6919131,28141600 -(1,9132:6919131,28141600:0,0,0 -) -g1,9132:7246811,28141600 -) -g1,9134:8195248,28141600 -g1,9134:9459831,28141600 -h1,9134:12305142,28141600:0,0,0 -k1,9134:31966990,28141600:19661848 -g1,9134:31966990,28141600 -) -(1,9136:7246811,29463138:24720180,404226,101187 -(1,9135:7246811,29463138:0,0,0 -g1,9135:7246811,29463138 -g1,9135:7246811,29463138 -g1,9135:6919131,29463138 -(1,9135:6919131,29463138:0,0,0 -) -g1,9135:7246811,29463138 -) -k1,9136:7246811,29463138:0 -g1,9136:9459831,29463138 -g1,9136:10092123,29463138 -h1,9136:10724415,29463138:0,0,0 -k1,9136:31966991,29463138:21242576 -g1,9136:31966991,29463138 -) -(1,9140:7246811,30194852:24720180,404226,76021 -(1,9138:7246811,30194852:0,0,0 -g1,9138:7246811,30194852 -g1,9138:7246811,30194852 -g1,9138:6919131,30194852 -(1,9138:6919131,30194852:0,0,0 -) -g1,9138:7246811,30194852 -) -g1,9140:8195248,30194852 -g1,9140:9459831,30194852 -h1,9140:11356705,30194852:0,0,0 -k1,9140:31966991,30194852:20610286 -g1,9140:31966991,30194852 -) -(1,9142:7246811,31516390:24720180,404226,101187 -(1,9141:7246811,31516390:0,0,0 -g1,9141:7246811,31516390 -g1,9141:7246811,31516390 -g1,9141:6919131,31516390 -(1,9141:6919131,31516390:0,0,0 -) -g1,9141:7246811,31516390 -) -k1,9142:7246811,31516390:0 -g1,9142:12621288,31516390 -g1,9142:13253580,31516390 -h1,9142:13885872,31516390:0,0,0 -k1,9142:31966992,31516390:18081120 -g1,9142:31966992,31516390 -) -(1,9146:7246811,32248104:24720180,404226,76021 -(1,9144:7246811,32248104:0,0,0 -g1,9144:7246811,32248104 -g1,9144:7246811,32248104 -g1,9144:6919131,32248104 -(1,9144:6919131,32248104:0,0,0 -) -g1,9144:7246811,32248104 -) -g1,9146:8195248,32248104 -g1,9146:9459831,32248104 -h1,9146:10724414,32248104:0,0,0 -k1,9146:31966990,32248104:21242576 -g1,9146:31966990,32248104 -) -(1,9148:7246811,33569642:24720180,404226,101187 -(1,9147:7246811,33569642:0,0,0 -g1,9147:7246811,33569642 -g1,9147:7246811,33569642 -g1,9147:6919131,33569642 -(1,9147:6919131,33569642:0,0,0 -) -g1,9147:7246811,33569642 -) -k1,9148:7246811,33569642:0 -g1,9148:12621288,33569642 -g1,9148:13253580,33569642 -h1,9148:13885872,33569642:0,0,0 -k1,9148:31966992,33569642:18081120 -g1,9148:31966992,33569642 -) -(1,9152:7246811,34301356:24720180,404226,76021 -(1,9150:7246811,34301356:0,0,0 -g1,9150:7246811,34301356 -g1,9150:7246811,34301356 -g1,9150:6919131,34301356 -(1,9150:6919131,34301356:0,0,0 -) -g1,9150:7246811,34301356 -) -g1,9152:8195248,34301356 -g1,9152:9459831,34301356 -h1,9152:11040559,34301356:0,0,0 -k1,9152:31966991,34301356:20926432 -g1,9152:31966991,34301356 -) -(1,9154:7246811,35622894:24720180,404226,101187 -(1,9153:7246811,35622894:0,0,0 -g1,9153:7246811,35622894 -g1,9153:7246811,35622894 -g1,9153:6919131,35622894 -(1,9153:6919131,35622894:0,0,0 -) -g1,9153:7246811,35622894 -) -k1,9154:7246811,35622894:0 -g1,9154:12621288,35622894 -g1,9154:13253580,35622894 -h1,9154:13885871,35622894:0,0,0 -k1,9154:31966991,35622894:18081120 -g1,9154:31966991,35622894 -) -(1,9158:7246811,36354608:24720180,404226,76021 -(1,9156:7246811,36354608:0,0,0 -g1,9156:7246811,36354608 -g1,9156:7246811,36354608 -g1,9156:6919131,36354608 -(1,9156:6919131,36354608:0,0,0 -) -g1,9156:7246811,36354608 -) -g1,9158:8195248,36354608 -g1,9158:9459831,36354608 -h1,9158:11040559,36354608:0,0,0 -k1,9158:31966991,36354608:20926432 -g1,9158:31966991,36354608 -) -] -) -g1,9159:31966991,36430629 -g1,9159:7246811,36430629 -g1,9159:7246811,36430629 -g1,9159:31966991,36430629 -g1,9159:31966991,36430629 -) -h1,9159:7246811,36627237:0,0,0 -(1,9163:7246811,39352446:24720180,513147,134348 -h1,9162:7246811,39352446:983040,0,0 -k1,9162:9703435,39352446:276897 -k1,9162:11660675,39352446:276897 -k1,9162:14716298,39352446:276896 -k1,9162:15754723,39352446:276897 -(1,9162:15754723,39352446:0,452978,122846 -r1,9211:18574972,39352446:2820249,575824,122846 -k1,9162:15754723,39352446:-2820249 -) -(1,9162:15754723,39352446:2820249,452978,122846 -k1,9162:15754723,39352446:3277 -h1,9162:18571695,39352446:0,411205,112570 -) -k1,9162:18851869,39352446:276897 -k1,9162:19938136,39352446:276897 -k1,9162:20570892,39352446:276896 -k1,9162:22720808,39352446:276897 -k1,9162:25541157,39352446:276897 -k1,9162:26349551,39352446:276897 -k1,9162:27692718,39352446:276896 -k1,9162:30098880,39352446:276897 -k1,9162:30947906,39352446:276897 -k1,9162:31966991,39352446:0 -) -(1,9163:7246811,40193934:24720180,513147,102891 -k1,9162:9906212,40193934:173620 -k1,9162:10739124,40193934:173620 -k1,9162:13786498,40193934:173620 -k1,9162:14576156,40193934:173620 -k1,9162:15768861,40193934:173620 -k1,9162:17920358,40193934:173620 -k1,9162:18753269,40193934:173619 -k1,9162:21974313,40193934:173620 -k1,9162:23220102,40193934:173620 -k1,9162:25720905,40193934:173620 -k1,9162:26913610,40193934:173620 -k1,9162:29573011,40193934:173620 -k1,9162:30405923,40193934:173620 -k1,9163:31966991,40193934:0 -) -(1,9163:7246811,41035422:24720180,513147,134348 -k1,9162:9986670,41035422:160362 -k1,9162:10763069,41035422:160361 -k1,9162:11942516,41035422:160362 -k1,9162:14820000,41035422:160361 -k1,9162:16022384,41035422:160362 -k1,9162:18207152,41035422:160361 -k1,9162:19558959,41035422:160362 -k1,9162:22039950,41035422:160361 -k1,9162:24682160,41035422:160362 -k1,9162:25300618,41035422:160361 -k1,9162:26953890,41035422:160362 -k1,9162:29124896,41035422:160361 -k1,9162:30304343,41035422:160362 -k1,9163:31966991,41035422:0 -) -(1,9163:7246811,41876910:24720180,513147,102891 -k1,9162:8494868,41876910:211933 -k1,9162:9366094,41876910:211934 -k1,9162:12201433,41876910:211933 -k1,9162:15477830,41876910:211934 -k1,9162:18218142,41876910:211933 -k1,9162:19089367,41876910:211933 -k1,9162:20678212,41876910:211934 -k1,9162:21348242,41876910:211933 -k1,9162:22091672,41876910:211933 -k1,9162:24200873,41876910:211934 -k1,9162:25064234,41876910:211933 -k1,9162:26893597,41876910:211934 -k1,9162:29093237,41876910:211933 -k1,9162:31966991,41876910:0 -) -(1,9163:7246811,42718398:24720180,513147,134348 -k1,9162:8107242,42718398:244393 -k1,9162:10641463,42718398:244393 -k1,9162:11545148,42718398:244393 -k1,9162:13344709,42718398:244392 -(1,9162:13344709,42718398:0,452978,115847 -r1,9211:14758110,42718398:1413401,568825,115847 -k1,9162:13344709,42718398:-1413401 -) -(1,9162:13344709,42718398:1413401,452978,115847 -k1,9162:13344709,42718398:3277 -h1,9162:14754833,42718398:0,411205,112570 -) -k1,9162:15002503,42718398:244393 -k1,9162:16689343,42718398:244393 -k1,9162:17549774,42718398:244393 -k1,9162:20276015,42718398:244393 -k1,9162:21206570,42718398:244393 -(1,9162:21206570,42718398:0,452978,122846 -r1,9211:24026819,42718398:2820249,575824,122846 -k1,9162:21206570,42718398:-2820249 -) -(1,9162:21206570,42718398:2820249,452978,122846 -k1,9162:21206570,42718398:3277 -h1,9162:24023542,42718398:0,411205,112570 -) -k1,9162:24271211,42718398:244392 -k1,9162:28362567,42718398:244393 -k1,9162:30947906,42718398:244393 -k1,9162:31966991,42718398:0 -) -(1,9163:7246811,43559886:24720180,505283,126483 -g1,9162:10285060,43559886 -g1,9162:12164632,43559886 -g1,9162:13173231,43559886 -k1,9163:31966991,43559886:17296262 -g1,9163:31966991,43559886 -) -] -) -] -r1,9211:32583029,45706769:26214,39819674,0 -) -] -) -) -g1,9211:32583029,45116945 -) -] -(1,9211:32583029,45706769:0,0,0 -g1,9211:32583029,45706769 -) -) -] -(1,9211:6630773,47279633:25952256,0,0 -h1,9211:6630773,47279633:25952256,0,0 -) -] -(1,9211:4262630,4025873:0,0,0 -[1,9211:-473656,4025873:0,0,0 -(1,9211:-473656,-710413:0,0,0 -(1,9211:-473656,-710413:0,0,0 -g1,9211:-473656,-710413 -) -g1,9211:-473656,-710413 -) -] -) -] -!20239 -}173 -Input:1397:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1398:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1399:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1400:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1401:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1402:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1403:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!656 -{174 -[1,9239:4262630,47279633:28320399,43253760,0 -(1,9239:4262630,4025873:0,0,0 -[1,9239:-473656,4025873:0,0,0 -(1,9239:-473656,-710413:0,0,0 -(1,9239:-473656,-644877:0,0,0 -k1,9239:-473656,-644877:-65536 -) -(1,9239:-473656,4736287:0,0,0 -k1,9239:-473656,4736287:5209943 -) -g1,9239:-473656,-710413 -) -] -) -[1,9239:6630773,47279633:25952256,43253760,0 -[1,9239:6630773,4812305:25952256,786432,0 -(1,9239:6630773,4812305:25952256,513147,126483 -(1,9239:6630773,4812305:25952256,513147,126483 -g1,9239:3078558,4812305 -[1,9239:3078558,4812305:0,0,0 -(1,9239:3078558,2439708:0,1703936,0 -k1,9239:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,9239:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,9239:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,9239:3078558,4812305:0,0,0 -(1,9239:3078558,2439708:0,1703936,0 -g1,9239:29030814,2439708 -g1,9239:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,9239:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,9239:37855564,2439708:1179648,16384,0 -) -) -k1,9239:3078556,2439708:-34777008 -) -] -[1,9239:3078558,4812305:0,0,0 -(1,9239:3078558,49800853:0,16384,2228224 -k1,9239:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,9239:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,9239:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,9239:3078558,4812305:0,0,0 -(1,9239:3078558,49800853:0,16384,2228224 -g1,9239:29030814,49800853 -g1,9239:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,9239:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,9239:37855564,49800853:1179648,16384,0 -) -) -k1,9239:3078556,49800853:-34777008 -) -] -g1,9239:6630773,4812305 -g1,9239:6630773,4812305 -g1,9239:8691224,4812305 -g1,9239:11722264,4812305 -k1,9239:31387652,4812305:19665388 -) -) -] -[1,9239:6630773,45706769:25952256,40108032,0 -(1,9239:6630773,45706769:25952256,40108032,0 -(1,9239:6630773,45706769:0,0,0 -g1,9239:6630773,45706769 -) -[1,9239:6630773,45706769:25952256,40108032,0 -v1,9211:6630773,6254097:0,393216,0 -(1,9211:6630773,20905974:25952256,15045093,616038 -g1,9211:6630773,20905974 -(1,9211:6630773,20905974:25952256,15045093,616038 -(1,9211:6630773,21522012:25952256,15661131,0 -[1,9211:6630773,21522012:25952256,15661131,0 -(1,9211:6630773,21495798:25952256,15634917,0 -r1,9239:6656987,21495798:26214,15634917,0 -[1,9211:6656987,21495798:25899828,15634917,0 -(1,9211:6656987,20905974:25899828,14455269,0 -[1,9211:7246811,20905974:24720180,14455269,0 -v1,9165:7246811,6843921:0,393216,0 -(1,9208:7246811,20185078:24720180,13734373,196608 -g1,9208:7246811,20185078 -g1,9208:7246811,20185078 -g1,9208:7050203,20185078 -(1,9208:7050203,20185078:0,13734373,196608 -r1,9239:32163599,20185078:25113396,13930981,196608 -k1,9208:7050203,20185078:-25113396 -) -(1,9208:7050203,20185078:25113396,13734373,196608 -[1,9208:7246811,20185078:24720180,13537765,0 -(1,9167:7246811,7057831:24720180,410518,107478 -(1,9166:7246811,7057831:0,0,0 -g1,9166:7246811,7057831 -g1,9166:7246811,7057831 -g1,9166:6919131,7057831 -(1,9166:6919131,7057831:0,0,0 -) -g1,9166:7246811,7057831 -) -k1,9167:7246811,7057831:0 -k1,9167:7246811,7057831:0 -h1,9167:12621288,7057831:0,0,0 -k1,9167:31966992,7057831:19345704 -g1,9167:31966992,7057831 -) -(1,9171:7246811,7789545:24720180,404226,76021 -(1,9169:7246811,7789545:0,0,0 -g1,9169:7246811,7789545 -g1,9169:7246811,7789545 -g1,9169:6919131,7789545 -(1,9169:6919131,7789545:0,0,0 -) -g1,9169:7246811,7789545 -) -g1,9171:8195248,7789545 -g1,9171:9459831,7789545 -h1,9171:9775977,7789545:0,0,0 -k1,9171:31966991,7789545:22191014 -g1,9171:31966991,7789545 -) -(1,9173:7246811,9111083:24720180,404226,107478 -(1,9172:7246811,9111083:0,0,0 -g1,9172:7246811,9111083 -g1,9172:7246811,9111083 -g1,9172:6919131,9111083 -(1,9172:6919131,9111083:0,0,0 -) -g1,9172:7246811,9111083 -) -k1,9173:7246811,9111083:0 -g1,9173:10092122,9111083 -g1,9173:10724414,9111083 -h1,9173:11356706,9111083:0,0,0 -k1,9173:31966990,9111083:20610284 -g1,9173:31966990,9111083 -) -(1,9177:7246811,9842797:24720180,404226,76021 -(1,9175:7246811,9842797:0,0,0 -g1,9175:7246811,9842797 -g1,9175:7246811,9842797 -g1,9175:6919131,9842797 -(1,9175:6919131,9842797:0,0,0 -) -g1,9175:7246811,9842797 -) -g1,9177:8195248,9842797 -g1,9177:9459831,9842797 -h1,9177:9775977,9842797:0,0,0 -k1,9177:31966991,9842797:22191014 -g1,9177:31966991,9842797 -) -(1,9179:7246811,11164335:24720180,404226,107478 -(1,9178:7246811,11164335:0,0,0 -g1,9178:7246811,11164335 -g1,9178:7246811,11164335 -g1,9178:6919131,11164335 -(1,9178:6919131,11164335:0,0,0 -) -g1,9178:7246811,11164335 -) -k1,9179:7246811,11164335:0 -g1,9179:10092122,11164335 -g1,9179:10724414,11164335 -h1,9179:11356706,11164335:0,0,0 -k1,9179:31966990,11164335:20610284 -g1,9179:31966990,11164335 -) -(1,9183:7246811,11896049:24720180,404226,76021 -(1,9181:7246811,11896049:0,0,0 -g1,9181:7246811,11896049 -g1,9181:7246811,11896049 -g1,9181:6919131,11896049 -(1,9181:6919131,11896049:0,0,0 -) -g1,9181:7246811,11896049 -) -g1,9183:8195248,11896049 -g1,9183:9459831,11896049 -h1,9183:9775977,11896049:0,0,0 -k1,9183:31966991,11896049:22191014 -g1,9183:31966991,11896049 -) -(1,9185:7246811,13217587:24720180,404226,107478 -(1,9184:7246811,13217587:0,0,0 -g1,9184:7246811,13217587 -g1,9184:7246811,13217587 -g1,9184:6919131,13217587 -(1,9184:6919131,13217587:0,0,0 -) -g1,9184:7246811,13217587 -) -k1,9185:7246811,13217587:0 -g1,9185:10092122,13217587 -g1,9185:10724414,13217587 -h1,9185:11356705,13217587:0,0,0 -k1,9185:31966991,13217587:20610286 -g1,9185:31966991,13217587 -) -(1,9189:7246811,13949301:24720180,404226,76021 -(1,9187:7246811,13949301:0,0,0 -g1,9187:7246811,13949301 -g1,9187:7246811,13949301 -g1,9187:6919131,13949301 -(1,9187:6919131,13949301:0,0,0 -) -g1,9187:7246811,13949301 -) -g1,9189:8195248,13949301 -g1,9189:9459831,13949301 -h1,9189:9775977,13949301:0,0,0 -k1,9189:31966991,13949301:22191014 -g1,9189:31966991,13949301 -) -(1,9191:7246811,15270839:24720180,404226,107478 -(1,9190:7246811,15270839:0,0,0 -g1,9190:7246811,15270839 -g1,9190:7246811,15270839 -g1,9190:6919131,15270839 -(1,9190:6919131,15270839:0,0,0 -) -g1,9190:7246811,15270839 -) -k1,9191:7246811,15270839:0 -g1,9191:10724414,15270839 -g1,9191:11356706,15270839 -g1,9191:12305144,15270839 -g1,9191:12937436,15270839 -g1,9191:13569728,15270839 -h1,9191:14518165,15270839:0,0,0 -k1,9191:31966991,15270839:17448826 -g1,9191:31966991,15270839 -) -(1,9195:7246811,16002553:24720180,404226,76021 -(1,9193:7246811,16002553:0,0,0 -g1,9193:7246811,16002553 -g1,9193:7246811,16002553 -g1,9193:6919131,16002553 -(1,9193:6919131,16002553:0,0,0 -) -g1,9193:7246811,16002553 -) -g1,9195:8195248,16002553 -g1,9195:9459831,16002553 -h1,9195:9775977,16002553:0,0,0 -k1,9195:31966991,16002553:22191014 -g1,9195:31966991,16002553 -) -(1,9197:7246811,17324091:24720180,404226,107478 -(1,9196:7246811,17324091:0,0,0 -g1,9196:7246811,17324091 -g1,9196:7246811,17324091 -g1,9196:6919131,17324091 -(1,9196:6919131,17324091:0,0,0 -) -g1,9196:7246811,17324091 -) -k1,9197:7246811,17324091:0 -g1,9197:11672851,17324091 -g1,9197:12305143,17324091 -h1,9197:13253580,17324091:0,0,0 -k1,9197:31966992,17324091:18713412 -g1,9197:31966992,17324091 -) -(1,9201:7246811,18055805:24720180,404226,76021 -(1,9199:7246811,18055805:0,0,0 -g1,9199:7246811,18055805 -g1,9199:7246811,18055805 -g1,9199:6919131,18055805 -(1,9199:6919131,18055805:0,0,0 -) -g1,9199:7246811,18055805 -) -g1,9201:8195248,18055805 -g1,9201:9459831,18055805 -h1,9201:9775977,18055805:0,0,0 -k1,9201:31966991,18055805:22191014 -g1,9201:31966991,18055805 -) -(1,9203:7246811,19377343:24720180,404226,107478 -(1,9202:7246811,19377343:0,0,0 -g1,9202:7246811,19377343 -g1,9202:7246811,19377343 -g1,9202:6919131,19377343 -(1,9202:6919131,19377343:0,0,0 -) -g1,9202:7246811,19377343 -) -k1,9203:7246811,19377343:0 -g1,9203:11672851,19377343 -g1,9203:12305143,19377343 -g1,9203:13253581,19377343 -g1,9203:13885873,19377343 -g1,9203:14518165,19377343 -h1,9203:15466602,19377343:0,0,0 -k1,9203:31966991,19377343:16500389 -g1,9203:31966991,19377343 -) -(1,9207:7246811,20109057:24720180,404226,76021 -(1,9205:7246811,20109057:0,0,0 -g1,9205:7246811,20109057 -g1,9205:7246811,20109057 -g1,9205:6919131,20109057 -(1,9205:6919131,20109057:0,0,0 -) -g1,9205:7246811,20109057 -) -g1,9207:8195248,20109057 -g1,9207:9459831,20109057 -h1,9207:9775977,20109057:0,0,0 -k1,9207:31966991,20109057:22191014 -g1,9207:31966991,20109057 -) -] -) -g1,9208:31966991,20185078 -g1,9208:7246811,20185078 -g1,9208:7246811,20185078 -g1,9208:31966991,20185078 -g1,9208:31966991,20185078 -) -h1,9208:7246811,20381686:0,0,0 -] -) -] -r1,9239:32583029,21495798:26214,15634917,0 -) -] -) -) -g1,9211:32583029,20905974 -) -h1,9211:6630773,21522012:0,0,0 -(1,9214:6630773,22887788:25952256,513147,126483 -h1,9213:6630773,22887788:983040,0,0 -k1,9213:8502898,22887788:261250 -k1,9213:9783233,22887788:261250 -k1,9213:13036203,22887788:261251 -k1,9213:13913491,22887788:261250 -k1,9213:16929219,22887788:261250 -k1,9213:19799457,22887788:261250 -k1,9213:20929059,22887788:261250 -k1,9213:22902765,22887788:261250 -k1,9213:25288693,22887788:261251 -k1,9213:28041622,22887788:261250 -k1,9213:29896708,22887788:261250 -k1,9213:32583029,22887788:0 -) -(1,9214:6630773,23729276:25952256,513147,134348 -k1,9213:8281800,23729276:164015 -k1,9213:9550097,23729276:164015 -k1,9213:10461877,23729276:164014 -k1,9213:12426821,23729276:164015 -k1,9213:16159271,23729276:164015 -k1,9213:18058679,23729276:164015 -k1,9213:19241779,23729276:164015 -k1,9213:21059266,23729276:164014 -k1,9213:23480996,23729276:164015 -k1,9213:25080905,23729276:164015 -k1,9213:25904212,23729276:164015 -k1,9213:27008013,23729276:164015 -k1,9213:28328737,23729276:164014 -k1,9213:29597034,23729276:164015 -k1,9213:31490544,23729276:164015 -k1,9213:32583029,23729276:0 -) -(1,9214:6630773,24570764:25952256,513147,134348 -k1,9213:7437047,24570764:146982 -k1,9213:10330644,24570764:146983 -(1,9213:10330644,24570764:0,414482,115847 -r1,9239:10688910,24570764:358266,530329,115847 -k1,9213:10330644,24570764:-358266 -) -(1,9213:10330644,24570764:358266,414482,115847 -k1,9213:10330644,24570764:3277 -h1,9213:10685633,24570764:0,411205,112570 -) -k1,9213:10835892,24570764:146982 -k1,9213:12174319,24570764:146982 -k1,9213:15218649,24570764:146983 -k1,9213:17326468,24570764:146982 -k1,9213:18239566,24570764:146982 -k1,9213:21579463,24570764:146983 -k1,9213:23318315,24570764:146982 -k1,9213:25566381,24570764:146982 -k1,9213:26904809,24570764:146983 -k1,9213:30847636,24570764:146982 -k1,9213:32583029,24570764:0 -) -(1,9214:6630773,25412252:25952256,513147,134348 -k1,9213:9883591,25412252:175903 -(1,9213:9883591,25412252:0,414482,115847 -r1,9239:10241857,25412252:358266,530329,115847 -k1,9213:9883591,25412252:-358266 -) -(1,9213:9883591,25412252:358266,414482,115847 -k1,9213:9883591,25412252:3277 -h1,9213:10238580,25412252:0,411205,112570 -) -k1,9213:10417760,25412252:175903 -k1,9213:11785108,25412252:175903 -(1,9213:11785108,25412252:0,414482,115847 -r1,9239:12143374,25412252:358266,530329,115847 -k1,9213:11785108,25412252:-358266 -) -(1,9213:11785108,25412252:358266,414482,115847 -k1,9213:11785108,25412252:3277 -h1,9213:12140097,25412252:0,411205,112570 -) -k1,9213:12492947,25412252:175903 -k1,9213:13865537,25412252:175903 -k1,9213:16125486,25412252:175904 -k1,9213:20502902,25412252:175903 -k1,9213:21294843,25412252:175903 -k1,9213:22904674,25412252:175903 -k1,9213:23495397,25412252:175880 -k1,9213:25683255,25412252:175903 -k1,9213:28742087,25412252:175903 -k1,9213:29679518,25412252:175903 -k1,9213:31923737,25412252:175903 -k1,9213:32583029,25412252:0 -) -(1,9214:6630773,26253740:25952256,505283,134348 -k1,9213:10874066,26253740:215450 -k1,9213:11814343,26253740:215449 -k1,9213:12487890,26253740:215450 -k1,9213:13234836,26253740:215449 -k1,9213:14736102,26253740:215450 -k1,9213:17581511,26253740:215449 -k1,9213:18448389,26253740:215450 -k1,9213:21097845,26253740:215449 -k1,9213:23005435,26253740:215450 -k1,9213:27016729,26253740:215449 -k1,9213:27993707,26253740:215450 -k1,9213:31563944,26253740:215449 -k1,9213:32583029,26253740:0 -) -(1,9214:6630773,27095228:25952256,513147,126483 -g1,9213:7922487,27095228 -g1,9213:8788872,27095228 -(1,9213:8788872,27095228:0,414482,115847 -r1,9239:9147138,27095228:358266,530329,115847 -k1,9213:8788872,27095228:-358266 -) -(1,9213:8788872,27095228:358266,414482,115847 -k1,9213:8788872,27095228:3277 -h1,9213:9143861,27095228:0,411205,112570 -) -g1,9213:9346367,27095228 -g1,9213:10737041,27095228 -k1,9214:32583028,27095228:17818144 -g1,9214:32583028,27095228 -) -(1,9216:6630773,27936716:25952256,513147,126483 -h1,9215:6630773,27936716:983040,0,0 -k1,9215:9083487,27936716:272987 -k1,9215:11009947,27936716:272987 -k1,9215:13924691,27936716:272988 -k1,9215:14883840,27936716:272987 -k1,9215:16104478,27936716:272987 -k1,9215:19653610,27936716:272987 -k1,9215:23003512,27936716:272987 -k1,9215:24268059,27936716:272987 -k1,9215:26054273,27936716:272988 -k1,9215:27274911,27936716:272987 -k1,9215:29535605,27936716:272987 -k1,9215:32583029,27936716:0 -) -(1,9216:6630773,28778204:25952256,513147,134348 -k1,9215:8938653,28778204:212694 -k1,9215:9507207,28778204:212694 -k1,9215:12437024,28778204:212694 -k1,9215:15291474,28778204:212694 -k1,9215:16495728,28778204:212694 -k1,9215:20298485,28778204:212695 -k1,9215:23628071,28778204:212694 -k1,9215:24492193,28778204:212694 -k1,9215:27248339,28778204:212694 -k1,9215:29718748,28778204:212694 -k1,9215:31714677,28778204:212694 -k1,9215:32583029,28778204:0 -) -(1,9216:6630773,29619692:25952256,513147,134348 -k1,9215:8544928,29619692:176140 -k1,9215:9491772,29619692:176141 -k1,9215:12944057,29619692:176140 -k1,9215:16194492,29619692:176141 -k1,9215:17655138,29619692:176140 -k1,9215:19600096,29619692:176141 -k1,9215:20524002,29619692:176140 -k1,9215:24290205,29619692:176141 -k1,9215:25152507,29619692:176140 -k1,9215:27066663,29619692:176141 -k1,9215:28564664,29619692:176140 -k1,9215:29400097,29619692:176141 -k1,9215:30595322,29619692:176140 -k1,9215:32583029,29619692:0 -) -(1,9216:6630773,30461180:25952256,513147,126483 -k1,9215:9330856,30461180:156631 -k1,9215:10355838,30461180:156630 -k1,9215:12042735,30461180:156631 -k1,9215:12850794,30461180:156631 -k1,9215:15906081,30461180:156630 -k1,9215:16520809,30461180:156631 -k1,9215:17438968,30461180:156631 -k1,9215:19663914,30461180:156630 -k1,9215:20479837,30461180:156631 -k1,9215:21655553,30461180:156631 -k1,9215:24272405,30461180:156630 -k1,9215:27124532,30461180:156631 -(1,9215:27124532,30461180:0,452978,115847 -r1,9239:28186221,30461180:1061689,568825,115847 -k1,9215:27124532,30461180:-1061689 -) -(1,9215:27124532,30461180:1061689,452978,115847 -k1,9215:27124532,30461180:3277 -h1,9215:28182944,30461180:0,411205,112570 -) -k1,9215:28516522,30461180:156631 -k1,9215:29869839,30461180:156630 -k1,9215:31410590,30461180:156631 -k1,9215:32583029,30461180:0 -) -(1,9216:6630773,31302668:25952256,513147,126483 -k1,9215:9790085,31302668:167593 -k1,9215:11918515,31302668:167593 -k1,9215:14959863,31302668:167594 -k1,9215:16075107,31302668:167593 -k1,9215:18560708,31302668:167593 -k1,9215:20122252,31302668:167593 -k1,9215:21665446,31302668:167593 -k1,9215:22989749,31302668:167593 -k1,9215:26923042,31302668:167594 -k1,9215:29775645,31302668:167593 -k1,9215:31422386,31302668:167593 -k1,9216:32583029,31302668:0 -) -(1,9216:6630773,32144156:25952256,513147,134348 -k1,9215:8739015,32144156:182139 -k1,9215:10067380,32144156:182140 -k1,9215:12119917,32144156:182139 -k1,9215:13321142,32144156:182140 -k1,9215:17268980,32144156:182139 -k1,9215:19962459,32144156:182139 -k1,9215:21277061,32144156:182140 -k1,9215:22206966,32144156:182139 -k1,9215:25597748,32144156:182139 -k1,9215:26589258,32144156:182140 -k1,9215:27790482,32144156:182139 -k1,9215:28768229,32144156:182140 -k1,9215:30648406,32144156:182139 -k1,9215:32583029,32144156:0 -) -(1,9216:6630773,32985644:25952256,513147,126483 -k1,9215:7823965,32985644:174107 -k1,9215:9985779,32985644:174107 -k1,9215:10811314,32985644:174107 -k1,9215:12548455,32985644:174107 -k1,9215:13350397,32985644:174107 -k1,9215:14543589,32985644:174107 -k1,9215:16023829,32985644:174107 -k1,9215:17565018,32985644:174108 -k1,9215:19607556,32985644:174107 -k1,9215:20650015,32985644:174107 -k1,9215:22354388,32985644:174107 -k1,9215:23179923,32985644:174107 -k1,9215:26251377,32985644:174107 -k1,9215:28723832,32985644:174107 -k1,9215:29917024,32985644:174107 -k1,9215:32583029,32985644:0 -) -(1,9216:6630773,33827132:25952256,513147,126483 -k1,9215:7440294,33827132:150229 -k1,9215:8609607,33827132:150228 -k1,9215:9932275,33827132:150229 -k1,9215:12924144,33827132:150228 -k1,9215:14341839,33827132:150229 -k1,9215:16000707,33827132:150229 -k1,9215:17689720,33827132:150228 -k1,9215:20369639,33827132:150229 -k1,9215:23621687,33827132:150229 -k1,9215:25152103,33827132:150228 -k1,9215:27258582,33827132:150229 -k1,9215:28156576,33827132:150228 -k1,9215:31896867,33827132:150229 -k1,9215:32583029,33827132:0 -) -(1,9216:6630773,34668620:25952256,505283,126483 -k1,9215:7995596,34668620:192384 -k1,9215:10890684,34668620:192383 -k1,9215:14848767,34668620:192384 -k1,9215:17882792,34668620:192384 -k1,9215:18691214,34668620:192384 -k1,9215:19902682,34668620:192383 -k1,9215:22256443,34668620:192384 -k1,9215:23076662,34668620:192384 -k1,9215:24288131,34668620:192384 -k1,9215:26721845,34668620:192383 -k1,9215:28454980,34668620:192384 -(1,9215:28454980,34668620:0,452978,122846 -r1,9239:30220093,34668620:1765113,575824,122846 -k1,9215:28454980,34668620:-1765113 -) -(1,9215:28454980,34668620:1765113,452978,122846 -k1,9215:28454980,34668620:3277 -h1,9215:30216816,34668620:0,411205,112570 -) -k1,9215:30412477,34668620:192384 -k1,9215:32583029,34668620:0 -) -(1,9216:6630773,35510108:25952256,513147,126483 -k1,9215:7624845,35510108:246306 -k1,9215:11461213,35510108:246306 -k1,9215:12393681,35510108:246306 -k1,9215:13961848,35510108:246306 -k1,9215:14867446,35510108:246306 -k1,9215:16132837,35510108:246306 -k1,9215:18366850,35510108:246306 -k1,9215:21330279,35510108:246306 -k1,9215:22768030,35510108:246306 -k1,9215:27239442,35510108:246306 -k1,9215:28978658,35510108:246306 -k1,9215:30291235,35510108:246306 -k1,9215:32583029,35510108:0 -) -(1,9216:6630773,36351596:25952256,505283,134348 -g1,9215:10056995,36351596 -g1,9215:13738807,36351596 -g1,9215:16208859,36351596 -g1,9215:17900998,36351596 -g1,9215:19119312,36351596 -g1,9215:22758526,36351596 -g1,9215:25163042,36351596 -g1,9215:26048433,36351596 -g1,9215:27036060,36351596 -k1,9216:32583029,36351596:2300971 -g1,9216:32583029,36351596 -) -v1,9218:6630773,37542062:0,393216,0 -(1,9223:6630773,38523336:25952256,1374490,196608 -g1,9223:6630773,38523336 -g1,9223:6630773,38523336 -g1,9223:6434165,38523336 -(1,9223:6434165,38523336:0,1374490,196608 -r1,9239:32779637,38523336:26345472,1571098,196608 -k1,9223:6434165,38523336:-26345472 -) -(1,9223:6434165,38523336:26345472,1374490,196608 -[1,9223:6630773,38523336:25952256,1177882,0 -(1,9220:6630773,37749680:25952256,404226,101187 -(1,9219:6630773,37749680:0,0,0 -g1,9219:6630773,37749680 -g1,9219:6630773,37749680 -g1,9219:6303093,37749680 -(1,9219:6303093,37749680:0,0,0 -) -g1,9219:6630773,37749680 -) -g1,9220:7263065,37749680 -g1,9220:7895357,37749680 -g1,9220:9476086,37749680 -g1,9220:10108378,37749680 -h1,9220:11056815,37749680:0,0,0 -k1,9220:32583029,37749680:21526214 -g1,9220:32583029,37749680 -) -(1,9221:6630773,38415858:25952256,404226,107478 -h1,9221:6630773,38415858:0,0,0 -g1,9221:7263065,38415858 -g1,9221:7895357,38415858 -g1,9221:10108377,38415858 -g1,9221:10740669,38415858 -h1,9221:11689106,38415858:0,0,0 -k1,9221:32583030,38415858:20893924 -g1,9221:32583030,38415858 -) -] -) -g1,9223:32583029,38523336 -g1,9223:6630773,38523336 -g1,9223:6630773,38523336 -g1,9223:32583029,38523336 -g1,9223:32583029,38523336 -) -h1,9223:6630773,38719944:0,0,0 -(1,9227:6630773,40085720:25952256,513147,134348 -h1,9226:6630773,40085720:983040,0,0 -k1,9226:8200926,40085720:172270 -k1,9226:10916674,40085720:172296 -k1,9226:13173016,40085720:172297 -k1,9226:15357268,40085720:172297 -k1,9226:18916465,40085720:172296 -k1,9226:20657039,40085720:172297 -k1,9226:21776986,40085720:172296 -k1,9226:25198558,40085720:172297 -k1,9226:28836398,40085720:172296 -k1,9226:31025238,40085720:172297 -k1,9226:32583029,40085720:0 -) -(1,9227:6630773,40927208:25952256,513147,134348 -k1,9226:8571221,40927208:258794 -k1,9226:13161945,40927208:258794 -k1,9226:14989016,40927208:258794 -k1,9226:15907102,40927208:258794 -k1,9226:18810930,40927208:258795 -k1,9226:22117148,40927208:258794 -k1,9226:24261413,40927208:258794 -k1,9226:25467858,40927208:258794 -k1,9226:28412973,40927208:258794 -k1,9226:32583029,40927208:0 -) -(1,9227:6630773,41768696:25952256,505283,134348 -k1,9226:9267001,41768696:217294 -k1,9226:11205269,41768696:217293 -k1,9226:13451558,41768696:217294 -k1,9226:14860296,41768696:217293 -k1,9226:16181872,41768696:217294 -k1,9226:19028470,41768696:217294 -k1,9226:21421558,41768696:217293 -k1,9226:22456741,41768696:217294 -k1,9226:24113861,41768696:217294 -k1,9226:26360149,41768696:217293 -k1,9226:29324057,41768696:217294 -(1,9226:29324057,41768696:0,414482,115847 -r1,9239:29682323,41768696:358266,530329,115847 -k1,9226:29324057,41768696:-358266 -) -(1,9226:29324057,41768696:358266,414482,115847 -k1,9226:29324057,41768696:3277 -h1,9226:29679046,41768696:0,411205,112570 -) -k1,9226:29899616,41768696:217293 -k1,9226:31837885,41768696:217294 -k1,9226:32583029,41768696:0 -) -(1,9227:6630773,42610184:25952256,513147,134348 -k1,9226:8368636,42610184:170242 -k1,9226:10657003,42610184:170243 -k1,9226:11478673,42610184:170242 -k1,9226:14546262,42610184:170242 -k1,9226:17248161,42610184:170243 -k1,9226:18184519,42610184:170242 -k1,9226:19373846,42610184:170242 -k1,9226:23009632,42610184:170242 -k1,9226:25022747,42610184:170243 -k1,9226:25809027,42610184:170242 -k1,9226:26335129,42610184:170242 -k1,9226:27595236,42610184:170243 -k1,9226:30421652,42610184:170242 -k1,9227:32583029,42610184:0 -k1,9227:32583029,42610184:0 -) -v1,9229:6630773,43800650:0,393216,0 -(1,9233:6630773,44093726:25952256,686292,196608 -g1,9233:6630773,44093726 -g1,9233:6630773,44093726 -g1,9233:6434165,44093726 -(1,9233:6434165,44093726:0,686292,196608 -r1,9239:32779637,44093726:26345472,882900,196608 -k1,9233:6434165,44093726:-26345472 -) -(1,9233:6434165,44093726:26345472,686292,196608 -[1,9233:6630773,44093726:25952256,489684,0 -(1,9231:6630773,43992539:25952256,388497,101187 -(1,9230:6630773,43992539:0,0,0 -g1,9230:6630773,43992539 -g1,9230:6630773,43992539 -g1,9230:6303093,43992539 -(1,9230:6303093,43992539:0,0,0 -) -g1,9230:6630773,43992539 -) -g1,9231:7263065,43992539 -g1,9231:7895357,43992539 -g1,9231:8843794,43992539 -g1,9231:9476086,43992539 -g1,9231:10424523,43992539 -g1,9231:11056815,43992539 -g1,9231:12005252,43992539 -g1,9231:12637544,43992539 -g1,9231:14534418,43992539 -g1,9231:15166710,43992539 -g1,9231:17063584,43992539 -g1,9231:17695876,43992539 -g1,9231:19592750,43992539 -g1,9231:20225042,43992539 -h1,9231:22754207,43992539:0,0,0 -k1,9231:32583029,43992539:9828822 -g1,9231:32583029,43992539 -) -] -) -g1,9233:32583029,44093726 -g1,9233:6630773,44093726 -g1,9233:6630773,44093726 -g1,9233:32583029,44093726 -g1,9233:32583029,44093726 -) -h1,9233:6630773,44290334:0,0,0 -(1,9237:6630773,45656110:25952256,505283,126483 -h1,9236:6630773,45656110:983040,0,0 -g1,9236:9039221,45656110 -g1,9236:9986216,45656110 -g1,9236:12904534,45656110 -g1,9236:13865291,45656110 -g1,9236:14420380,45656110 -g1,9236:16974973,45656110 -k1,9237:32583029,45656110:12129405 -g1,9237:32583029,45656110 -) -] -(1,9239:32583029,45706769:0,0,0 -g1,9239:32583029,45706769 -) -) -] -(1,9239:6630773,47279633:25952256,0,0 -h1,9239:6630773,47279633:25952256,0,0 -) -] -(1,9239:4262630,4025873:0,0,0 -[1,9239:-473656,4025873:0,0,0 -(1,9239:-473656,-710413:0,0,0 -(1,9239:-473656,-710413:0,0,0 -g1,9239:-473656,-710413 -) -g1,9239:-473656,-710413 -) -] -) -] -!24238 -}174 -Input:1404:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1405:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!196 -{175 -[1,9329:4262630,47279633:28320399,43253760,0 -(1,9329:4262630,4025873:0,0,0 -[1,9329:-473656,4025873:0,0,0 -(1,9329:-473656,-710413:0,0,0 -(1,9329:-473656,-644877:0,0,0 -k1,9329:-473656,-644877:-65536 -) -(1,9329:-473656,4736287:0,0,0 -k1,9329:-473656,4736287:5209943 -) -g1,9329:-473656,-710413 -) -] -) -[1,9329:6630773,47279633:25952256,43253760,0 -[1,9329:6630773,4812305:25952256,786432,0 -(1,9329:6630773,4812305:25952256,505283,134348 -(1,9329:6630773,4812305:25952256,505283,134348 -g1,9329:3078558,4812305 -[1,9329:3078558,4812305:0,0,0 -(1,9329:3078558,2439708:0,1703936,0 -k1,9329:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,9329:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,9329:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,9329:3078558,4812305:0,0,0 -(1,9329:3078558,2439708:0,1703936,0 -g1,9329:29030814,2439708 -g1,9329:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,9329:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,9329:37855564,2439708:1179648,16384,0 -) -) -k1,9329:3078556,2439708:-34777008 -) -] -[1,9329:3078558,4812305:0,0,0 -(1,9329:3078558,49800853:0,16384,2228224 -k1,9329:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,9329:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,9329:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,9329:3078558,4812305:0,0,0 -(1,9329:3078558,49800853:0,16384,2228224 -g1,9329:29030814,49800853 -g1,9329:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,9329:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,9329:37855564,49800853:1179648,16384,0 -) -) -k1,9329:3078556,49800853:-34777008 -) -] -g1,9329:6630773,4812305 -k1,9329:24502442,4812305:16676292 -g1,9329:25889183,4812305 -g1,9329:26537989,4812305 -g1,9329:29852144,4812305 -) -) -] -[1,9329:6630773,45706769:25952256,40108032,0 -(1,9329:6630773,45706769:25952256,40108032,0 -(1,9329:6630773,45706769:0,0,0 -g1,9329:6630773,45706769 -) -[1,9329:6630773,45706769:25952256,40108032,0 -v1,9239:6630773,6254097:0,393216,0 -(1,9243:6630773,6547173:25952256,686292,196608 -g1,9243:6630773,6547173 -g1,9243:6630773,6547173 -g1,9243:6434165,6547173 -(1,9243:6434165,6547173:0,686292,196608 -r1,9329:32779637,6547173:26345472,882900,196608 -k1,9243:6434165,6547173:-26345472 -) -(1,9243:6434165,6547173:26345472,686292,196608 -[1,9243:6630773,6547173:25952256,489684,0 -(1,9241:6630773,6445986:25952256,388497,101187 -(1,9240:6630773,6445986:0,0,0 -g1,9240:6630773,6445986 -g1,9240:6630773,6445986 -g1,9240:6303093,6445986 -(1,9240:6303093,6445986:0,0,0 -) -g1,9240:6630773,6445986 -) -g1,9241:7263065,6445986 -g1,9241:7895357,6445986 -g1,9241:8843794,6445986 -g1,9241:9476086,6445986 -g1,9241:10424523,6445986 -g1,9241:11056815,6445986 -h1,9241:11689106,6445986:0,0,0 -k1,9241:32583030,6445986:20893924 -g1,9241:32583030,6445986 -) -] -) -g1,9243:32583029,6547173 -g1,9243:6630773,6547173 -g1,9243:6630773,6547173 -g1,9243:32583029,6547173 -g1,9243:32583029,6547173 -) -h1,9243:6630773,6743781:0,0,0 -(1,9247:6630773,7962236:25952256,513147,126483 -h1,9246:6630773,7962236:983040,0,0 -k1,9246:9578146,7962236:181098 -k1,9246:10778328,7962236:181097 -k1,9246:12947133,7962236:181098 -k1,9246:13779658,7962236:181097 -k1,9246:14708522,7962236:181098 -k1,9246:17721430,7962236:181097 -k1,9246:19395438,7962236:181098 -k1,9246:20642807,7962236:181098 -k1,9246:23161573,7962236:181097 -k1,9246:24108787,7962236:181098 -k1,9246:26919844,7962236:181097 -k1,9246:30566486,7962236:181098 -k1,9246:32583029,7962236:0 -) -(1,9247:6630773,8803724:25952256,505283,126483 -g1,9246:7698354,8803724 -g1,9246:9001865,8803724 -g1,9246:11912974,8803724 -g1,9246:13131288,8803724 -g1,9246:15685881,8803724 -g1,9246:18574708,8803724 -g1,9246:20167888,8803724 -k1,9247:32583029,8803724:8387298 -g1,9247:32583029,8803724 -) -v1,9249:6630773,9846869:0,393216,0 -(1,9254:6630773,10821852:25952256,1368199,196608 -g1,9254:6630773,10821852 -g1,9254:6630773,10821852 -g1,9254:6434165,10821852 -(1,9254:6434165,10821852:0,1368199,196608 -r1,9329:32779637,10821852:26345472,1564807,196608 -k1,9254:6434165,10821852:-26345472 -) -(1,9254:6434165,10821852:26345472,1368199,196608 -[1,9254:6630773,10821852:25952256,1171591,0 -(1,9251:6630773,10054487:25952256,404226,101187 -(1,9250:6630773,10054487:0,0,0 -g1,9250:6630773,10054487 -g1,9250:6630773,10054487 -g1,9250:6303093,10054487 -(1,9250:6303093,10054487:0,0,0 -) -g1,9250:6630773,10054487 -) -g1,9251:7263065,10054487 -g1,9251:7895357,10054487 -g1,9251:8843794,10054487 -g1,9251:9476086,10054487 -g1,9251:10740669,10054487 -g1,9251:11372961,10054487 -h1,9251:12321398,10054487:0,0,0 -k1,9251:32583030,10054487:20261632 -g1,9251:32583030,10054487 -) -(1,9252:6630773,10720665:25952256,388497,101187 -h1,9252:6630773,10720665:0,0,0 -g1,9252:7263065,10720665 -g1,9252:7895357,10720665 -g1,9252:8843794,10720665 -g1,9252:9476086,10720665 -g1,9252:10424523,10720665 -g1,9252:11056815,10720665 -g1,9252:12005252,10720665 -g1,9252:12637544,10720665 -h1,9252:14218272,10720665:0,0,0 -k1,9252:32583028,10720665:18364756 -g1,9252:32583028,10720665 -) -] -) -g1,9254:32583029,10821852 -g1,9254:6630773,10821852 -g1,9254:6630773,10821852 -g1,9254:32583029,10821852 -g1,9254:32583029,10821852 -) -h1,9254:6630773,11018460:0,0,0 -(1,9258:6630773,12236915:25952256,513147,134348 -h1,9257:6630773,12236915:983040,0,0 -g1,9257:9275150,12236915 -g1,9257:10493464,12236915 -g1,9257:11865132,12236915 -g1,9257:14052068,12236915 -g1,9257:17125051,12236915 -g1,9257:19179604,12236915 -g1,9257:20370393,12236915 -g1,9257:24048273,12236915 -g1,9257:25351784,12236915 -g1,9257:26298779,12236915 -g1,9257:27937834,12236915 -g1,9257:29872456,12236915 -(1,9257:29872456,12236915:0,452978,115847 -r1,9329:32340993,12236915:2468537,568825,115847 -k1,9257:29872456,12236915:-2468537 -) -(1,9257:29872456,12236915:2468537,452978,115847 -k1,9257:29872456,12236915:3277 -h1,9257:32337716,12236915:0,411205,112570 -) -k1,9258:32583029,12236915:242036 -g1,9258:32583029,12236915 -) -v1,9260:6630773,13280060:0,393216,0 -(1,9285:6630773,26260927:25952256,13374083,196608 -g1,9285:6630773,26260927 -g1,9285:6630773,26260927 -g1,9285:6434165,26260927 -(1,9285:6434165,26260927:0,13374083,196608 -r1,9329:32779637,26260927:26345472,13570691,196608 -k1,9285:6434165,26260927:-26345472 -) -(1,9285:6434165,26260927:26345472,13374083,196608 -[1,9285:6630773,26260927:25952256,13177475,0 -(1,9262:6630773,13487678:25952256,404226,101187 -(1,9261:6630773,13487678:0,0,0 -g1,9261:6630773,13487678 -g1,9261:6630773,13487678 -g1,9261:6303093,13487678 -(1,9261:6303093,13487678:0,0,0 -) -g1,9261:6630773,13487678 -) -k1,9262:6630773,13487678:0 -g1,9262:9159938,13487678 -g1,9262:9792230,13487678 -g1,9262:10740667,13487678 -g1,9262:11372959,13487678 -g1,9262:12637542,13487678 -g1,9262:13269834,13487678 -h1,9262:14534417,13487678:0,0,0 -k1,9262:32583029,13487678:18048612 -g1,9262:32583029,13487678 -) -(1,9284:6630773,14219392:25952256,404226,101187 -(1,9264:6630773,14219392:0,0,0 -g1,9264:6630773,14219392 -g1,9264:6630773,14219392 -g1,9264:6303093,14219392 -(1,9264:6303093,14219392:0,0,0 -) -g1,9264:6630773,14219392 -) -g1,9284:7579210,14219392 -g1,9284:8211502,14219392 -g1,9284:8843794,14219392 -g1,9284:9792231,14219392 -g1,9284:10424523,14219392 -g1,9284:11689106,14219392 -g1,9284:12321398,14219392 -h1,9284:13269835,14219392:0,0,0 -k1,9284:32583029,14219392:19313194 -g1,9284:32583029,14219392 -) -(1,9284:6630773,14885570:25952256,404226,82312 -h1,9284:6630773,14885570:0,0,0 -g1,9284:7579210,14885570 -k1,9284:7579210,14885570:0 -h1,9284:13269832,14885570:0,0,0 -k1,9284:32583028,14885570:19313196 -g1,9284:32583028,14885570 -) -(1,9284:6630773,15551748:25952256,404226,101187 -h1,9284:6630773,15551748:0,0,0 -g1,9284:7579210,15551748 -g1,9284:10108376,15551748 -g1,9284:11372959,15551748 -g1,9284:12637542,15551748 -h1,9284:13585979,15551748:0,0,0 -k1,9284:32583029,15551748:18997050 -g1,9284:32583029,15551748 -) -(1,9284:6630773,16217926:25952256,410518,82312 -h1,9284:6630773,16217926:0,0,0 -g1,9284:7579210,16217926 -k1,9284:7579210,16217926:0 -h1,9284:12637540,16217926:0,0,0 -k1,9284:32583028,16217926:19945488 -g1,9284:32583028,16217926 -) -(1,9284:6630773,16884104:25952256,388497,9436 -h1,9284:6630773,16884104:0,0,0 -g1,9284:7579210,16884104 -g1,9284:7895356,16884104 -g1,9284:8211502,16884104 -g1,9284:8527648,16884104 -g1,9284:9476085,16884104 -g1,9284:10424522,16884104 -g1,9284:11372959,16884104 -h1,9284:12953687,16884104:0,0,0 -k1,9284:32583029,16884104:19629342 -g1,9284:32583029,16884104 -) -(1,9284:6630773,17550282:25952256,388497,101187 -h1,9284:6630773,17550282:0,0,0 -g1,9284:7579210,17550282 -g1,9284:8211502,17550282 -g1,9284:8527648,17550282 -g1,9284:8843794,17550282 -g1,9284:9476086,17550282 -g1,9284:9792232,17550282 -g1,9284:10424524,17550282 -g1,9284:10740670,17550282 -g1,9284:11372962,17550282 -g1,9284:11689108,17550282 -g1,9284:12005254,17550282 -g1,9284:12321400,17550282 -g1,9284:12637546,17550282 -h1,9284:12953692,17550282:0,0,0 -k1,9284:32583028,17550282:19629336 -g1,9284:32583028,17550282 -) -(1,9284:6630773,18216460:25952256,388497,9436 -h1,9284:6630773,18216460:0,0,0 -g1,9284:7579210,18216460 -g1,9284:8527647,18216460 -g1,9284:8843793,18216460 -g1,9284:9476085,18216460 -g1,9284:9792231,18216460 -g1,9284:10424523,18216460 -g1,9284:10740669,18216460 -g1,9284:11372961,18216460 -g1,9284:11689107,18216460 -g1,9284:12005253,18216460 -g1,9284:12321399,18216460 -g1,9284:12637545,18216460 -h1,9284:12953691,18216460:0,0,0 -k1,9284:32583029,18216460:19629338 -g1,9284:32583029,18216460 -) -(1,9284:6630773,18882638:25952256,388497,9436 -h1,9284:6630773,18882638:0,0,0 -g1,9284:7579210,18882638 -g1,9284:8527647,18882638 -g1,9284:8843793,18882638 -g1,9284:9476085,18882638 -g1,9284:9792231,18882638 -g1,9284:10424523,18882638 -g1,9284:10740669,18882638 -g1,9284:11372961,18882638 -g1,9284:11689107,18882638 -g1,9284:12005253,18882638 -g1,9284:12321399,18882638 -g1,9284:12637545,18882638 -h1,9284:12953691,18882638:0,0,0 -k1,9284:32583029,18882638:19629338 -g1,9284:32583029,18882638 -) -(1,9284:6630773,19548816:25952256,388497,9436 -h1,9284:6630773,19548816:0,0,0 -g1,9284:7579210,19548816 -g1,9284:8527647,19548816 -g1,9284:8843793,19548816 -g1,9284:9476085,19548816 -g1,9284:9792231,19548816 -g1,9284:10424523,19548816 -g1,9284:10740669,19548816 -g1,9284:11372961,19548816 -g1,9284:11689107,19548816 -g1,9284:12005253,19548816 -g1,9284:12321399,19548816 -g1,9284:12637545,19548816 -h1,9284:12953691,19548816:0,0,0 -k1,9284:32583029,19548816:19629338 -g1,9284:32583029,19548816 -) -(1,9284:6630773,20214994:25952256,404226,82312 -h1,9284:6630773,20214994:0,0,0 -g1,9284:7579210,20214994 -k1,9284:7579210,20214994:0 -h1,9284:13902123,20214994:0,0,0 -k1,9284:32583029,20214994:18680906 -g1,9284:32583029,20214994 -) -(1,9284:6630773,20881172:25952256,404226,76021 -h1,9284:6630773,20881172:0,0,0 -g1,9284:7579210,20881172 -g1,9284:8843793,20881172 -g1,9284:10424522,20881172 -g1,9284:10740668,20881172 -g1,9284:11056814,20881172 -g1,9284:11372960,20881172 -g1,9284:12953689,20881172 -g1,9284:13269835,20881172 -g1,9284:13585981,20881172 -g1,9284:13902127,20881172 -g1,9284:15482856,20881172 -g1,9284:15799002,20881172 -g1,9284:16115148,20881172 -g1,9284:16431294,20881172 -h1,9284:18644314,20881172:0,0,0 -k1,9284:32583029,20881172:13938715 -g1,9284:32583029,20881172 -) -(1,9284:6630773,21547350:25952256,404226,82312 -h1,9284:6630773,21547350:0,0,0 -g1,9284:7579210,21547350 -k1,9284:7579210,21547350:0 -h1,9284:12005249,21547350:0,0,0 -k1,9284:32583029,21547350:20577780 -g1,9284:32583029,21547350 -) -(1,9284:6630773,22213528:25952256,404226,76021 -h1,9284:6630773,22213528:0,0,0 -g1,9284:7579210,22213528 -g1,9284:8843793,22213528 -g1,9284:9476085,22213528 -g1,9284:10108377,22213528 -g1,9284:10740669,22213528 -h1,9284:11056815,22213528:0,0,0 -k1,9284:32583029,22213528:21526214 -g1,9284:32583029,22213528 -) -(1,9284:6630773,22879706:25952256,404226,101187 -h1,9284:6630773,22879706:0,0,0 -g1,9284:7579210,22879706 -k1,9284:7579210,22879706:0 -h1,9284:13269832,22879706:0,0,0 -k1,9284:32583028,22879706:19313196 -g1,9284:32583028,22879706 -) -(1,9284:6630773,23545884:25952256,404226,76021 -h1,9284:6630773,23545884:0,0,0 -g1,9284:7579210,23545884 -g1,9284:8843793,23545884 -h1,9284:9159939,23545884:0,0,0 -k1,9284:32583029,23545884:23423090 -g1,9284:32583029,23545884 -) -(1,9284:6630773,24212062:25952256,404226,101187 -h1,9284:6630773,24212062:0,0,0 -g1,9284:7579210,24212062 -k1,9284:7579210,24212062:0 -h1,9284:12953686,24212062:0,0,0 -k1,9284:32583030,24212062:19629344 -g1,9284:32583030,24212062 -) -(1,9284:6630773,24878240:25952256,404226,76021 -h1,9284:6630773,24878240:0,0,0 -g1,9284:7579210,24878240 -g1,9284:8843793,24878240 -h1,9284:9159939,24878240:0,0,0 -k1,9284:32583029,24878240:23423090 -g1,9284:32583029,24878240 -) -(1,9284:6630773,25544418:25952256,404226,82312 -h1,9284:6630773,25544418:0,0,0 -g1,9284:7579210,25544418 -k1,9284:7579210,25544418:0 -h1,9284:14218269,25544418:0,0,0 -k1,9284:32583029,25544418:18364760 -g1,9284:32583029,25544418 -) -(1,9284:6630773,26210596:25952256,404226,50331 -h1,9284:6630773,26210596:0,0,0 -g1,9284:7579210,26210596 -g1,9284:12005250,26210596 -k1,9284:12005250,26210596:0 -h1,9284:15798998,26210596:0,0,0 -k1,9284:32583030,26210596:16784032 -g1,9284:32583030,26210596 -) -] -) -g1,9285:32583029,26260927 -g1,9285:6630773,26260927 -g1,9285:6630773,26260927 -g1,9285:32583029,26260927 -g1,9285:32583029,26260927 -) -h1,9285:6630773,26457535:0,0,0 -v1,9289:6630773,27877648:0,393216,0 -(1,9294:6630773,28852631:25952256,1368199,196608 -g1,9294:6630773,28852631 -g1,9294:6630773,28852631 -g1,9294:6434165,28852631 -(1,9294:6434165,28852631:0,1368199,196608 -r1,9329:32779637,28852631:26345472,1564807,196608 -k1,9294:6434165,28852631:-26345472 -) -(1,9294:6434165,28852631:26345472,1368199,196608 -[1,9294:6630773,28852631:25952256,1171591,0 -(1,9291:6630773,28085266:25952256,404226,101187 -(1,9290:6630773,28085266:0,0,0 -g1,9290:6630773,28085266 -g1,9290:6630773,28085266 -g1,9290:6303093,28085266 -(1,9290:6303093,28085266:0,0,0 -) -g1,9290:6630773,28085266 -) -g1,9291:7263065,28085266 -g1,9291:7895357,28085266 -g1,9291:8843794,28085266 -g1,9291:9476086,28085266 -g1,9291:10740669,28085266 -g1,9291:11372961,28085266 -h1,9291:12321398,28085266:0,0,0 -k1,9291:32583030,28085266:20261632 -g1,9291:32583030,28085266 -) -(1,9292:6630773,28751444:25952256,388497,101187 -h1,9292:6630773,28751444:0,0,0 -g1,9292:7263065,28751444 -g1,9292:7895357,28751444 -g1,9292:8843794,28751444 -g1,9292:9476086,28751444 -g1,9292:10424523,28751444 -g1,9292:11056815,28751444 -g1,9292:12005252,28751444 -g1,9292:12637544,28751444 -g1,9292:14534418,28751444 -g1,9292:15166710,28751444 -h1,9292:16747438,28751444:0,0,0 -k1,9292:32583029,28751444:15835591 -g1,9292:32583029,28751444 -) -] -) -g1,9294:32583029,28852631 -g1,9294:6630773,28852631 -g1,9294:6630773,28852631 -g1,9294:32583029,28852631 -g1,9294:32583029,28852631 -) -h1,9294:6630773,29049239:0,0,0 -v1,9298:6630773,30469351:0,393216,0 -(1,9323:6630773,43450218:25952256,13374083,196608 -g1,9323:6630773,43450218 -g1,9323:6630773,43450218 -g1,9323:6434165,43450218 -(1,9323:6434165,43450218:0,13374083,196608 -r1,9329:32779637,43450218:26345472,13570691,196608 -k1,9323:6434165,43450218:-26345472 -) -(1,9323:6434165,43450218:26345472,13374083,196608 -[1,9323:6630773,43450218:25952256,13177475,0 -(1,9300:6630773,30676969:25952256,404226,101187 -(1,9299:6630773,30676969:0,0,0 -g1,9299:6630773,30676969 -g1,9299:6630773,30676969 -g1,9299:6303093,30676969 -(1,9299:6303093,30676969:0,0,0 -) -g1,9299:6630773,30676969 -) -k1,9300:6630773,30676969:0 -g1,9300:9159938,30676969 -g1,9300:9792230,30676969 -g1,9300:10740667,30676969 -g1,9300:11372959,30676969 -g1,9300:12637542,30676969 -g1,9300:13269834,30676969 -h1,9300:14534417,30676969:0,0,0 -k1,9300:32583029,30676969:18048612 -g1,9300:32583029,30676969 -) -(1,9322:6630773,31408683:25952256,404226,101187 -(1,9302:6630773,31408683:0,0,0 -g1,9302:6630773,31408683 -g1,9302:6630773,31408683 -g1,9302:6303093,31408683 -(1,9302:6303093,31408683:0,0,0 -) -g1,9302:6630773,31408683 -) -g1,9322:7579210,31408683 -g1,9322:8211502,31408683 -g1,9322:8843794,31408683 -g1,9322:9792231,31408683 -g1,9322:10424523,31408683 -g1,9322:11689106,31408683 -g1,9322:12321398,31408683 -h1,9322:13269835,31408683:0,0,0 -k1,9322:32583029,31408683:19313194 -g1,9322:32583029,31408683 -) -(1,9322:6630773,32074861:25952256,404226,82312 -h1,9322:6630773,32074861:0,0,0 -g1,9322:7579210,32074861 -k1,9322:7579210,32074861:0 -h1,9322:13269832,32074861:0,0,0 -k1,9322:32583028,32074861:19313196 -g1,9322:32583028,32074861 -) -(1,9322:6630773,32741039:25952256,404226,101187 -h1,9322:6630773,32741039:0,0,0 -g1,9322:7579210,32741039 -g1,9322:10108376,32741039 -g1,9322:11372959,32741039 -g1,9322:12637542,32741039 -h1,9322:13585979,32741039:0,0,0 -k1,9322:32583029,32741039:18997050 -g1,9322:32583029,32741039 -) -(1,9322:6630773,33407217:25952256,410518,82312 -h1,9322:6630773,33407217:0,0,0 -g1,9322:7579210,33407217 -k1,9322:7579210,33407217:0 -h1,9322:12637540,33407217:0,0,0 -k1,9322:32583028,33407217:19945488 -g1,9322:32583028,33407217 -) -(1,9322:6630773,34073395:25952256,388497,9436 -h1,9322:6630773,34073395:0,0,0 -g1,9322:7579210,34073395 -g1,9322:7895356,34073395 -g1,9322:8211502,34073395 -g1,9322:8527648,34073395 -g1,9322:9476085,34073395 -g1,9322:10424522,34073395 -g1,9322:11372959,34073395 -g1,9322:13269833,34073395 -h1,9322:14850561,34073395:0,0,0 -k1,9322:32583029,34073395:17732468 -g1,9322:32583029,34073395 -) -(1,9322:6630773,34739573:25952256,388497,101187 -h1,9322:6630773,34739573:0,0,0 -g1,9322:7579210,34739573 -g1,9322:8211502,34739573 -g1,9322:8527648,34739573 -g1,9322:8843794,34739573 -g1,9322:9476086,34739573 -g1,9322:9792232,34739573 -g1,9322:10424524,34739573 -g1,9322:10740670,34739573 -g1,9322:11372962,34739573 -g1,9322:11689108,34739573 -g1,9322:12005254,34739573 -g1,9322:12321400,34739573 -g1,9322:12637546,34739573 -g1,9322:13269838,34739573 -g1,9322:13585984,34739573 -g1,9322:13902130,34739573 -g1,9322:14218276,34739573 -g1,9322:14534422,34739573 -h1,9322:14850568,34739573:0,0,0 -k1,9322:32583028,34739573:17732460 -g1,9322:32583028,34739573 -) -(1,9322:6630773,35405751:25952256,388497,9436 -h1,9322:6630773,35405751:0,0,0 -g1,9322:7579210,35405751 -g1,9322:8527647,35405751 -g1,9322:8843793,35405751 -g1,9322:9476085,35405751 -g1,9322:9792231,35405751 -g1,9322:10424523,35405751 -g1,9322:10740669,35405751 -g1,9322:11372961,35405751 -g1,9322:11689107,35405751 -g1,9322:12005253,35405751 -g1,9322:12321399,35405751 -g1,9322:12637545,35405751 -g1,9322:13269837,35405751 -g1,9322:13585983,35405751 -g1,9322:13902129,35405751 -g1,9322:14218275,35405751 -g1,9322:14534421,35405751 -h1,9322:14850567,35405751:0,0,0 -k1,9322:32583029,35405751:17732462 -g1,9322:32583029,35405751 -) -(1,9322:6630773,36071929:25952256,388497,9436 -h1,9322:6630773,36071929:0,0,0 -g1,9322:7579210,36071929 -g1,9322:8527647,36071929 -g1,9322:8843793,36071929 -g1,9322:9476085,36071929 -g1,9322:9792231,36071929 -g1,9322:10424523,36071929 -g1,9322:10740669,36071929 -g1,9322:11372961,36071929 -g1,9322:11689107,36071929 -g1,9322:12005253,36071929 -g1,9322:12321399,36071929 -g1,9322:12637545,36071929 -g1,9322:13269837,36071929 -g1,9322:13585983,36071929 -g1,9322:13902129,36071929 -g1,9322:14218275,36071929 -g1,9322:14534421,36071929 -h1,9322:14850567,36071929:0,0,0 -k1,9322:32583029,36071929:17732462 -g1,9322:32583029,36071929 -) -(1,9322:6630773,36738107:25952256,388497,9436 -h1,9322:6630773,36738107:0,0,0 -g1,9322:7579210,36738107 -g1,9322:8527647,36738107 -g1,9322:8843793,36738107 -g1,9322:9476085,36738107 -g1,9322:9792231,36738107 -g1,9322:10424523,36738107 -g1,9322:10740669,36738107 -g1,9322:11372961,36738107 -g1,9322:11689107,36738107 -g1,9322:12005253,36738107 -g1,9322:12321399,36738107 -g1,9322:12637545,36738107 -g1,9322:13269837,36738107 -g1,9322:13585983,36738107 -g1,9322:13902129,36738107 -g1,9322:14218275,36738107 -g1,9322:14534421,36738107 -h1,9322:14850567,36738107:0,0,0 -k1,9322:32583029,36738107:17732462 -g1,9322:32583029,36738107 -) -(1,9322:6630773,37404285:25952256,404226,82312 -h1,9322:6630773,37404285:0,0,0 -g1,9322:7579210,37404285 -k1,9322:7579210,37404285:0 -h1,9322:13902123,37404285:0,0,0 -k1,9322:32583029,37404285:18680906 -g1,9322:32583029,37404285 -) -(1,9322:6630773,38070463:25952256,404226,76021 -h1,9322:6630773,38070463:0,0,0 -g1,9322:7579210,38070463 -g1,9322:8843793,38070463 -g1,9322:10424522,38070463 -g1,9322:10740668,38070463 -g1,9322:11056814,38070463 -g1,9322:11372960,38070463 -g1,9322:12953689,38070463 -g1,9322:13269835,38070463 -g1,9322:13585981,38070463 -g1,9322:13902127,38070463 -g1,9322:15482856,38070463 -g1,9322:15799002,38070463 -g1,9322:16115148,38070463 -g1,9322:16431294,38070463 -g1,9322:18960460,38070463 -h1,9322:21173480,38070463:0,0,0 -k1,9322:32583029,38070463:11409549 -g1,9322:32583029,38070463 -) -(1,9322:6630773,38736641:25952256,404226,82312 -h1,9322:6630773,38736641:0,0,0 -g1,9322:7579210,38736641 -k1,9322:7579210,38736641:0 -h1,9322:12005249,38736641:0,0,0 -k1,9322:32583029,38736641:20577780 -g1,9322:32583029,38736641 -) -(1,9322:6630773,39402819:25952256,404226,76021 -h1,9322:6630773,39402819:0,0,0 -g1,9322:7579210,39402819 -g1,9322:8843793,39402819 -g1,9322:9476085,39402819 -g1,9322:10108377,39402819 -g1,9322:10740669,39402819 -g1,9322:11372961,39402819 -h1,9322:11689107,39402819:0,0,0 -k1,9322:32583029,39402819:20893922 -g1,9322:32583029,39402819 -) -(1,9322:6630773,40068997:25952256,404226,101187 -h1,9322:6630773,40068997:0,0,0 -g1,9322:7579210,40068997 -k1,9322:7579210,40068997:0 -h1,9322:13269832,40068997:0,0,0 -k1,9322:32583028,40068997:19313196 -g1,9322:32583028,40068997 -) -(1,9322:6630773,40735175:25952256,404226,76021 -h1,9322:6630773,40735175:0,0,0 -g1,9322:7579210,40735175 -g1,9322:8843793,40735175 -h1,9322:9159939,40735175:0,0,0 -k1,9322:32583029,40735175:23423090 -g1,9322:32583029,40735175 -) -(1,9322:6630773,41401353:25952256,404226,101187 -h1,9322:6630773,41401353:0,0,0 -g1,9322:7579210,41401353 -k1,9322:7579210,41401353:0 -h1,9322:12953686,41401353:0,0,0 -k1,9322:32583030,41401353:19629344 -g1,9322:32583030,41401353 -) -(1,9322:6630773,42067531:25952256,404226,76021 -h1,9322:6630773,42067531:0,0,0 -g1,9322:7579210,42067531 -g1,9322:8843793,42067531 -h1,9322:9159939,42067531:0,0,0 -k1,9322:32583029,42067531:23423090 -g1,9322:32583029,42067531 -) -(1,9322:6630773,42733709:25952256,404226,82312 -h1,9322:6630773,42733709:0,0,0 -g1,9322:7579210,42733709 -k1,9322:7579210,42733709:0 -h1,9322:14218269,42733709:0,0,0 -k1,9322:32583029,42733709:18364760 -g1,9322:32583029,42733709 -) -(1,9322:6630773,43399887:25952256,404226,50331 -h1,9322:6630773,43399887:0,0,0 -g1,9322:7579210,43399887 -g1,9322:12005250,43399887 -k1,9322:12005250,43399887:0 -h1,9322:15798998,43399887:0,0,0 -k1,9322:32583030,43399887:16784032 -g1,9322:32583030,43399887 -) -] -) -g1,9323:32583029,43450218 -g1,9323:6630773,43450218 -g1,9323:6630773,43450218 -g1,9323:32583029,43450218 -g1,9323:32583029,43450218 -) -h1,9323:6630773,43646826:0,0,0 -(1,9327:6630773,44865281:25952256,513147,126483 -h1,9326:6630773,44865281:983040,0,0 -k1,9326:9000369,44865281:189869 -(1,9326:9000369,44865281:0,424981,115847 -r1,9329:9358635,44865281:358266,540828,115847 -k1,9326:9000369,44865281:-358266 -) -(1,9326:9000369,44865281:358266,424981,115847 -k1,9326:9000369,44865281:3277 -h1,9326:9355358,44865281:0,411205,112570 -) -k1,9326:9548505,44865281:189870 -k1,9326:12484988,44865281:189869 -k1,9326:15435233,44865281:189869 -k1,9326:15980963,44865281:189870 -k1,9326:18526196,44865281:189869 -k1,9326:21405663,44865281:189869 -k1,9326:22246960,44865281:189869 -k1,9326:23921220,44865281:189870 -k1,9326:25130174,44865281:189869 -k1,9326:27059369,44865281:189869 -k1,9326:27908531,44865281:189870 -k1,9326:29117485,44865281:189869 -k1,9326:32583029,44865281:0 -) -(1,9327:6630773,45706769:25952256,513147,7863 -g1,9326:8672874,45706769 -g1,9326:11630513,45706769 -g1,9326:12445780,45706769 -g1,9326:13000869,45706769 -k1,9327:32583028,45706769:16865036 -g1,9327:32583028,45706769 -) -] -(1,9329:32583029,45706769:0,0,0 -g1,9329:32583029,45706769 -) -) -] -(1,9329:6630773,47279633:25952256,0,0 -h1,9329:6630773,47279633:25952256,0,0 -) -] -(1,9329:4262630,4025873:0,0,0 -[1,9329:-473656,4025873:0,0,0 -(1,9329:-473656,-710413:0,0,0 -(1,9329:-473656,-710413:0,0,0 -g1,9329:-473656,-710413 -) -g1,9329:-473656,-710413 -) -] -) -] -!24709 -}175 -Input:1406:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1407:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1408:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!288 -{176 -[1,9415:4262630,47279633:28320399,43253760,0 -(1,9415:4262630,4025873:0,0,0 -[1,9415:-473656,4025873:0,0,0 -(1,9415:-473656,-710413:0,0,0 -(1,9415:-473656,-644877:0,0,0 -k1,9415:-473656,-644877:-65536 -) -(1,9415:-473656,4736287:0,0,0 -k1,9415:-473656,4736287:5209943 -) -g1,9415:-473656,-710413 -) -] -) -[1,9415:6630773,47279633:25952256,43253760,0 -[1,9415:6630773,4812305:25952256,786432,0 -(1,9415:6630773,4812305:25952256,513147,126483 -(1,9415:6630773,4812305:25952256,513147,126483 -g1,9415:3078558,4812305 -[1,9415:3078558,4812305:0,0,0 -(1,9415:3078558,2439708:0,1703936,0 -k1,9415:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,9415:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,9415:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,9415:3078558,4812305:0,0,0 -(1,9415:3078558,2439708:0,1703936,0 -g1,9415:29030814,2439708 -g1,9415:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,9415:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,9415:37855564,2439708:1179648,16384,0 -) -) -k1,9415:3078556,2439708:-34777008 -) -] -[1,9415:3078558,4812305:0,0,0 -(1,9415:3078558,49800853:0,16384,2228224 -k1,9415:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,9415:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,9415:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,9415:3078558,4812305:0,0,0 -(1,9415:3078558,49800853:0,16384,2228224 -g1,9415:29030814,49800853 -g1,9415:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,9415:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,9415:37855564,49800853:1179648,16384,0 -) -) -k1,9415:3078556,49800853:-34777008 -) -] -g1,9415:6630773,4812305 -g1,9415:6630773,4812305 -g1,9415:8691224,4812305 -g1,9415:11722264,4812305 -k1,9415:31387652,4812305:19665388 -) -) -] -[1,9415:6630773,45706769:25952256,40108032,0 -(1,9415:6630773,45706769:25952256,40108032,0 -(1,9415:6630773,45706769:0,0,0 -g1,9415:6630773,45706769 -) -[1,9415:6630773,45706769:25952256,40108032,0 -v1,9329:6630773,6254097:0,393216,0 -(1,9334:6630773,7229080:25952256,1368199,196608 -g1,9334:6630773,7229080 -g1,9334:6630773,7229080 -g1,9334:6434165,7229080 -(1,9334:6434165,7229080:0,1368199,196608 -r1,9415:32779637,7229080:26345472,1564807,196608 -k1,9334:6434165,7229080:-26345472 -) -(1,9334:6434165,7229080:26345472,1368199,196608 -[1,9334:6630773,7229080:25952256,1171591,0 -(1,9331:6630773,6461715:25952256,404226,101187 -(1,9330:6630773,6461715:0,0,0 -g1,9330:6630773,6461715 -g1,9330:6630773,6461715 -g1,9330:6303093,6461715 -(1,9330:6303093,6461715:0,0,0 -) -g1,9330:6630773,6461715 -) -g1,9331:7263065,6461715 -g1,9331:7895357,6461715 -g1,9331:9159940,6461715 -g1,9331:9792232,6461715 -g1,9331:10740669,6461715 -g1,9331:11372961,6461715 -h1,9331:12953690,6461715:0,0,0 -k1,9331:32583030,6461715:19629340 -g1,9331:32583030,6461715 -) -(1,9332:6630773,7127893:25952256,388497,101187 -h1,9332:6630773,7127893:0,0,0 -g1,9332:7263065,7127893 -g1,9332:7895357,7127893 -g1,9332:8843794,7127893 -g1,9332:9476086,7127893 -g1,9332:10424523,7127893 -g1,9332:11056815,7127893 -g1,9332:12005252,7127893 -g1,9332:12637544,7127893 -g1,9332:14534418,7127893 -g1,9332:15166710,7127893 -g1,9332:17063584,7127893 -g1,9332:17695876,7127893 -h1,9332:19276604,7127893:0,0,0 -k1,9332:32583029,7127893:13306425 -g1,9332:32583029,7127893 -) -] -) -g1,9334:32583029,7229080 -g1,9334:6630773,7229080 -g1,9334:6630773,7229080 -g1,9334:32583029,7229080 -g1,9334:32583029,7229080 -) -h1,9334:6630773,7425688:0,0,0 -v1,9338:6630773,9129808:0,393216,0 -(1,9363:6630773,22110675:25952256,13374083,196608 -g1,9363:6630773,22110675 -g1,9363:6630773,22110675 -g1,9363:6434165,22110675 -(1,9363:6434165,22110675:0,13374083,196608 -r1,9415:32779637,22110675:26345472,13570691,196608 -k1,9363:6434165,22110675:-26345472 -) -(1,9363:6434165,22110675:26345472,13374083,196608 -[1,9363:6630773,22110675:25952256,13177475,0 -(1,9340:6630773,9337426:25952256,404226,101187 -(1,9339:6630773,9337426:0,0,0 -g1,9339:6630773,9337426 -g1,9339:6630773,9337426 -g1,9339:6303093,9337426 -(1,9339:6303093,9337426:0,0,0 -) -g1,9339:6630773,9337426 -) -k1,9340:6630773,9337426:0 -g1,9340:9159938,9337426 -g1,9340:9792230,9337426 -g1,9340:11056813,9337426 -g1,9340:11689105,9337426 -g1,9340:12637542,9337426 -g1,9340:13269834,9337426 -h1,9340:15166709,9337426:0,0,0 -k1,9340:32583029,9337426:17416320 -g1,9340:32583029,9337426 -) -(1,9362:6630773,10069140:25952256,404226,101187 -(1,9342:6630773,10069140:0,0,0 -g1,9342:6630773,10069140 -g1,9342:6630773,10069140 -g1,9342:6303093,10069140 -(1,9342:6303093,10069140:0,0,0 -) -g1,9342:6630773,10069140 -) -g1,9362:7579210,10069140 -g1,9362:8211502,10069140 -g1,9362:8843794,10069140 -g1,9362:10108377,10069140 -g1,9362:10740669,10069140 -g1,9362:11689106,10069140 -g1,9362:12321398,10069140 -h1,9362:13902126,10069140:0,0,0 -k1,9362:32583030,10069140:18680904 -g1,9362:32583030,10069140 -) -(1,9362:6630773,10735318:25952256,404226,82312 -h1,9362:6630773,10735318:0,0,0 -g1,9362:7579210,10735318 -k1,9362:7579210,10735318:0 -h1,9362:13269832,10735318:0,0,0 -k1,9362:32583028,10735318:19313196 -g1,9362:32583028,10735318 -) -(1,9362:6630773,11401496:25952256,404226,101187 -h1,9362:6630773,11401496:0,0,0 -g1,9362:7579210,11401496 -g1,9362:10108376,11401496 -g1,9362:11372959,11401496 -g1,9362:12637542,11401496 -h1,9362:13585979,11401496:0,0,0 -k1,9362:32583029,11401496:18997050 -g1,9362:32583029,11401496 -) -(1,9362:6630773,12067674:25952256,410518,82312 -h1,9362:6630773,12067674:0,0,0 -g1,9362:7579210,12067674 -k1,9362:7579210,12067674:0 -h1,9362:12637540,12067674:0,0,0 -k1,9362:32583028,12067674:19945488 -g1,9362:32583028,12067674 -) -(1,9362:6630773,12733852:25952256,388497,9436 -h1,9362:6630773,12733852:0,0,0 -g1,9362:7579210,12733852 -g1,9362:7895356,12733852 -g1,9362:8211502,12733852 -g1,9362:8527648,12733852 -g1,9362:9476085,12733852 -g1,9362:10424522,12733852 -g1,9362:11372959,12733852 -g1,9362:13269833,12733852 -g1,9362:15166707,12733852 -h1,9362:16747435,12733852:0,0,0 -k1,9362:32583029,12733852:15835594 -g1,9362:32583029,12733852 -) -(1,9362:6630773,13400030:25952256,388497,101187 -h1,9362:6630773,13400030:0,0,0 -g1,9362:7579210,13400030 -g1,9362:8211502,13400030 -g1,9362:8527648,13400030 -g1,9362:8843794,13400030 -g1,9362:9476086,13400030 -g1,9362:9792232,13400030 -g1,9362:10424524,13400030 -g1,9362:10740670,13400030 -g1,9362:11372962,13400030 -g1,9362:11689108,13400030 -g1,9362:12005254,13400030 -g1,9362:12321400,13400030 -g1,9362:12637546,13400030 -g1,9362:13269838,13400030 -g1,9362:13585984,13400030 -g1,9362:13902130,13400030 -g1,9362:14218276,13400030 -g1,9362:14534422,13400030 -g1,9362:15166714,13400030 -g1,9362:15482860,13400030 -g1,9362:15799006,13400030 -g1,9362:16115152,13400030 -g1,9362:16431298,13400030 -h1,9362:16747444,13400030:0,0,0 -k1,9362:32583029,13400030:15835585 -g1,9362:32583029,13400030 -) -(1,9362:6630773,14066208:25952256,388497,9436 -h1,9362:6630773,14066208:0,0,0 -g1,9362:7579210,14066208 -g1,9362:8527647,14066208 -g1,9362:8843793,14066208 -g1,9362:9476085,14066208 -g1,9362:9792231,14066208 -g1,9362:10424523,14066208 -g1,9362:10740669,14066208 -g1,9362:11372961,14066208 -g1,9362:11689107,14066208 -g1,9362:12005253,14066208 -g1,9362:12321399,14066208 -g1,9362:12637545,14066208 -g1,9362:13269837,14066208 -g1,9362:13585983,14066208 -g1,9362:13902129,14066208 -g1,9362:14218275,14066208 -g1,9362:14534421,14066208 -g1,9362:15166713,14066208 -g1,9362:15482859,14066208 -g1,9362:15799005,14066208 -g1,9362:16115151,14066208 -g1,9362:16431297,14066208 -h1,9362:16747443,14066208:0,0,0 -k1,9362:32583029,14066208:15835586 -g1,9362:32583029,14066208 -) -(1,9362:6630773,14732386:25952256,388497,9436 -h1,9362:6630773,14732386:0,0,0 -g1,9362:7579210,14732386 -g1,9362:8527647,14732386 -g1,9362:8843793,14732386 -g1,9362:9476085,14732386 -g1,9362:9792231,14732386 -g1,9362:10424523,14732386 -g1,9362:10740669,14732386 -g1,9362:11372961,14732386 -g1,9362:11689107,14732386 -g1,9362:12005253,14732386 -g1,9362:12321399,14732386 -g1,9362:12637545,14732386 -g1,9362:13269837,14732386 -g1,9362:13585983,14732386 -g1,9362:13902129,14732386 -g1,9362:14218275,14732386 -g1,9362:14534421,14732386 -g1,9362:15166713,14732386 -g1,9362:15482859,14732386 -g1,9362:15799005,14732386 -g1,9362:16115151,14732386 -g1,9362:16431297,14732386 -h1,9362:16747443,14732386:0,0,0 -k1,9362:32583029,14732386:15835586 -g1,9362:32583029,14732386 -) -(1,9362:6630773,15398564:25952256,388497,9436 -h1,9362:6630773,15398564:0,0,0 -g1,9362:7579210,15398564 -g1,9362:8527647,15398564 -g1,9362:8843793,15398564 -g1,9362:9476085,15398564 -g1,9362:9792231,15398564 -g1,9362:10424523,15398564 -g1,9362:10740669,15398564 -g1,9362:11372961,15398564 -g1,9362:11689107,15398564 -g1,9362:12005253,15398564 -g1,9362:12321399,15398564 -g1,9362:12637545,15398564 -g1,9362:13269837,15398564 -g1,9362:13585983,15398564 -g1,9362:13902129,15398564 -g1,9362:14218275,15398564 -g1,9362:14534421,15398564 -g1,9362:15166713,15398564 -g1,9362:15482859,15398564 -g1,9362:15799005,15398564 -g1,9362:16115151,15398564 -g1,9362:16431297,15398564 -h1,9362:16747443,15398564:0,0,0 -k1,9362:32583029,15398564:15835586 -g1,9362:32583029,15398564 -) -(1,9362:6630773,16064742:25952256,404226,82312 -h1,9362:6630773,16064742:0,0,0 -g1,9362:7579210,16064742 -k1,9362:7579210,16064742:0 -h1,9362:13902123,16064742:0,0,0 -k1,9362:32583029,16064742:18680906 -g1,9362:32583029,16064742 -) -(1,9362:6630773,16730920:25952256,404226,76021 -h1,9362:6630773,16730920:0,0,0 -g1,9362:7579210,16730920 -g1,9362:8843793,16730920 -g1,9362:10424522,16730920 -g1,9362:10740668,16730920 -g1,9362:11056814,16730920 -g1,9362:11372960,16730920 -g1,9362:12953689,16730920 -g1,9362:13269835,16730920 -g1,9362:13585981,16730920 -g1,9362:13902127,16730920 -g1,9362:15482856,16730920 -g1,9362:15799002,16730920 -g1,9362:16115148,16730920 -g1,9362:16431294,16730920 -g1,9362:18960460,16730920 -g1,9362:21489626,16730920 -h1,9362:23702646,16730920:0,0,0 -k1,9362:32583029,16730920:8880383 -g1,9362:32583029,16730920 -) -(1,9362:6630773,17397098:25952256,404226,82312 -h1,9362:6630773,17397098:0,0,0 -g1,9362:7579210,17397098 -k1,9362:7579210,17397098:0 -h1,9362:12005249,17397098:0,0,0 -k1,9362:32583029,17397098:20577780 -g1,9362:32583029,17397098 -) -(1,9362:6630773,18063276:25952256,404226,76021 -h1,9362:6630773,18063276:0,0,0 -g1,9362:7579210,18063276 -g1,9362:8843793,18063276 -g1,9362:9476085,18063276 -g1,9362:10108377,18063276 -g1,9362:10740669,18063276 -g1,9362:11372961,18063276 -g1,9362:12005253,18063276 -h1,9362:12321399,18063276:0,0,0 -k1,9362:32583029,18063276:20261630 -g1,9362:32583029,18063276 -) -(1,9362:6630773,18729454:25952256,404226,101187 -h1,9362:6630773,18729454:0,0,0 -g1,9362:7579210,18729454 -k1,9362:7579210,18729454:0 -h1,9362:13269832,18729454:0,0,0 -k1,9362:32583028,18729454:19313196 -g1,9362:32583028,18729454 -) -(1,9362:6630773,19395632:25952256,404226,76021 -h1,9362:6630773,19395632:0,0,0 -g1,9362:7579210,19395632 -g1,9362:8843793,19395632 -h1,9362:9159939,19395632:0,0,0 -k1,9362:32583029,19395632:23423090 -g1,9362:32583029,19395632 -) -(1,9362:6630773,20061810:25952256,404226,101187 -h1,9362:6630773,20061810:0,0,0 -g1,9362:7579210,20061810 -k1,9362:7579210,20061810:0 -h1,9362:12953686,20061810:0,0,0 -k1,9362:32583030,20061810:19629344 -g1,9362:32583030,20061810 -) -(1,9362:6630773,20727988:25952256,404226,76021 -h1,9362:6630773,20727988:0,0,0 -g1,9362:7579210,20727988 -g1,9362:8843793,20727988 -h1,9362:9159939,20727988:0,0,0 -k1,9362:32583029,20727988:23423090 -g1,9362:32583029,20727988 -) -(1,9362:6630773,21394166:25952256,404226,82312 -h1,9362:6630773,21394166:0,0,0 -g1,9362:7579210,21394166 -k1,9362:7579210,21394166:0 -h1,9362:14218269,21394166:0,0,0 -k1,9362:32583029,21394166:18364760 -g1,9362:32583029,21394166 -) -(1,9362:6630773,22060344:25952256,404226,50331 -h1,9362:6630773,22060344:0,0,0 -g1,9362:7579210,22060344 -g1,9362:12005250,22060344 -k1,9362:12005250,22060344:0 -h1,9362:15798998,22060344:0,0,0 -k1,9362:32583030,22060344:16784032 -g1,9362:32583030,22060344 -) -] -) -g1,9363:32583029,22110675 -g1,9363:6630773,22110675 -g1,9363:6630773,22110675 -g1,9363:32583029,22110675 -g1,9363:32583029,22110675 -) -h1,9363:6630773,22307283:0,0,0 -v1,9367:6630773,24186713:0,393216,0 -(1,9378:6630773,30262838:25952256,6469341,616038 -g1,9378:6630773,30262838 -(1,9378:6630773,30262838:25952256,6469341,616038 -(1,9378:6630773,30878876:25952256,7085379,0 -[1,9378:6630773,30878876:25952256,7085379,0 -(1,9378:6630773,30852662:25952256,7032951,0 -r1,9415:6656987,30852662:26214,7032951,0 -[1,9378:6656987,30852662:25899828,7032951,0 -(1,9378:6656987,30262838:25899828,5853303,0 -[1,9378:7246811,30262838:24720180,5853303,0 -(1,9368:7246811,25693517:24720180,1283982,196608 -(1,9367:7246811,25693517:0,1283982,196608 -r1,9415:9812056,25693517:2565245,1480590,196608 -k1,9367:7246811,25693517:-2565245 -) -(1,9367:7246811,25693517:2565245,1283982,196608 -) -k1,9367:10074658,25693517:262602 -k1,9367:11379281,25693517:262601 -k1,9367:14388497,25693517:262602 -(1,9367:14388497,25693517:0,424981,115847 -r1,9415:14746763,25693517:358266,540828,115847 -k1,9367:14388497,25693517:-358266 -) -(1,9367:14388497,25693517:358266,424981,115847 -k1,9367:14388497,25693517:3277 -h1,9367:14743486,25693517:0,411205,112570 -) -k1,9367:15009364,25693517:262601 -k1,9367:15923394,25693517:262602 -k1,9367:18408976,25693517:262601 -k1,9367:19357740,25693517:262602 -k1,9367:22633031,25693517:262601 -k1,9367:23684031,25693517:262602 -k1,9367:25252765,25693517:262601 -k1,9367:28157779,25693517:262602 -k1,9367:30600764,25693517:262602 -k1,9367:31611131,25693517:262601 -k1,9367:31966991,25693517:0 -) -(1,9368:7246811,26535005:24720180,513147,134348 -k1,9367:9995331,26535005:205068 -k1,9367:11594350,26535005:205068 -k1,9367:12608788,26535005:205068 -k1,9367:16783372,26535005:205068 -k1,9367:19870713,26535005:205068 -k1,9367:21094867,26535005:205069 -k1,9367:23142807,26535005:205068 -k1,9367:24007167,26535005:205068 -k1,9367:27527046,26535005:205068 -k1,9367:29428841,26535005:205068 -k1,9367:30806348,26535005:205068 -k1,9368:31966991,26535005:0 -) -(1,9368:7246811,27376493:24720180,505283,115847 -g1,9367:9372143,27376493 -g1,9367:10965323,27376493 -(1,9367:10965323,27376493:0,452978,115847 -r1,9415:13433860,27376493:2468537,568825,115847 -k1,9367:10965323,27376493:-2468537 -) -(1,9367:10965323,27376493:2468537,452978,115847 -k1,9367:10965323,27376493:3277 -h1,9367:13430583,27376493:0,411205,112570 -) -k1,9368:31966990,27376493:18359460 -g1,9368:31966990,27376493 -) -v1,9370:7246811,28566959:0,393216,0 -(1,9375:7246811,29541942:24720180,1368199,196608 -g1,9375:7246811,29541942 -g1,9375:7246811,29541942 -g1,9375:7050203,29541942 -(1,9375:7050203,29541942:0,1368199,196608 -r1,9415:32163599,29541942:25113396,1564807,196608 -k1,9375:7050203,29541942:-25113396 -) -(1,9375:7050203,29541942:25113396,1368199,196608 -[1,9375:7246811,29541942:24720180,1171591,0 -(1,9372:7246811,28774577:24720180,404226,101187 -(1,9371:7246811,28774577:0,0,0 -g1,9371:7246811,28774577 -g1,9371:7246811,28774577 -g1,9371:6919131,28774577 -(1,9371:6919131,28774577:0,0,0 -) -g1,9371:7246811,28774577 -) -g1,9372:7879103,28774577 -g1,9372:8511395,28774577 -g1,9372:9775978,28774577 -g1,9372:10408270,28774577 -g1,9372:11356707,28774577 -g1,9372:11988999,28774577 -h1,9372:13569728,28774577:0,0,0 -k1,9372:31966992,28774577:18397264 -g1,9372:31966992,28774577 -) -(1,9373:7246811,29440755:24720180,404226,101187 -h1,9373:7246811,29440755:0,0,0 -g1,9373:7879103,29440755 -g1,9373:8511395,29440755 -g1,9373:9775978,29440755 -g1,9373:10408270,29440755 -g1,9373:11356707,29440755 -g1,9373:11988999,29440755 -h1,9373:13569728,29440755:0,0,0 -k1,9373:31966992,29440755:18397264 -g1,9373:31966992,29440755 -) -] -) -g1,9375:31966991,29541942 -g1,9375:7246811,29541942 -g1,9375:7246811,29541942 -g1,9375:31966991,29541942 -g1,9375:31966991,29541942 -) -h1,9375:7246811,29738550:0,0,0 -] -) -] -r1,9415:32583029,30852662:26214,7032951,0 -) -] -) -) -g1,9378:32583029,30262838 -) -h1,9378:6630773,30878876:0,0,0 -(1,9381:6630773,32239336:25952256,513147,134348 -h1,9380:6630773,32239336:983040,0,0 -k1,9380:10666494,32239336:191379 -(1,9380:10666494,32239336:0,452978,115847 -r1,9415:12079895,32239336:1413401,568825,115847 -k1,9380:10666494,32239336:-1413401 -) -(1,9380:10666494,32239336:1413401,452978,115847 -k1,9380:10666494,32239336:3277 -h1,9380:12076618,32239336:0,411205,112570 -) -k1,9380:12271274,32239336:191379 -k1,9380:13566935,32239336:191379 -k1,9380:15044130,32239336:191379 -k1,9380:15983275,32239336:191379 -k1,9380:17687880,32239336:191379 -k1,9380:18565421,32239336:191379 -k1,9380:19112661,32239336:191380 -k1,9380:21994293,32239336:191379 -k1,9380:23133323,32239336:191379 -k1,9380:26305279,32239336:191379 -k1,9380:27872259,32239336:191379 -k1,9380:29755778,32239336:191379 -k1,9380:30606449,32239336:191379 -k1,9380:31563944,32239336:191379 -k1,9380:32583029,32239336:0 -) -(1,9381:6630773,33080824:25952256,513147,126483 -g1,9380:9459962,33080824 -g1,9380:13124735,33080824 -g1,9380:15166836,33080824 -g1,9380:15982103,33080824 -g1,9380:16537192,33080824 -k1,9381:32583029,33080824:13328714 -g1,9381:32583029,33080824 -) -v1,9383:6630773,34265973:0,393216,0 -(1,9387:6630773,34574778:25952256,702021,196608 -g1,9387:6630773,34574778 -g1,9387:6630773,34574778 -g1,9387:6434165,34574778 -(1,9387:6434165,34574778:0,702021,196608 -r1,9415:32779637,34574778:26345472,898629,196608 -k1,9387:6434165,34574778:-26345472 -) -(1,9387:6434165,34574778:26345472,702021,196608 -[1,9387:6630773,34574778:25952256,505413,0 -(1,9385:6630773,34473591:25952256,404226,101187 -(1,9384:6630773,34473591:0,0,0 -g1,9384:6630773,34473591 -g1,9384:6630773,34473591 -g1,9384:6303093,34473591 -(1,9384:6303093,34473591:0,0,0 -) -g1,9384:6630773,34473591 -) -g1,9385:7263065,34473591 -g1,9385:7895357,34473591 -g1,9385:8843794,34473591 -g1,9385:9476086,34473591 -g1,9385:10424523,34473591 -g1,9385:11056815,34473591 -g1,9385:12005252,34473591 -g1,9385:13585981,34473591 -h1,9385:14218272,34473591:0,0,0 -k1,9385:32583028,34473591:18364756 -g1,9385:32583028,34473591 -) -] -) -g1,9387:32583029,34574778 -g1,9387:6630773,34574778 -g1,9387:6630773,34574778 -g1,9387:32583029,34574778 -g1,9387:32583029,34574778 -) -h1,9387:6630773,34771386:0,0,0 -v1,9391:6630773,36475506:0,393216,0 -(1,9415:6630773,45510161:25952256,9427871,196608 -g1,9415:6630773,45510161 -g1,9415:6630773,45510161 -g1,9415:6434165,45510161 -(1,9415:6434165,45510161:0,9427871,196608 -r1,9415:32779637,45510161:26345472,9624479,196608 -k1,9415:6434165,45510161:-26345472 -) -(1,9415:6434165,45510161:26345472,9427871,196608 -[1,9415:6630773,45510161:25952256,9231263,0 -(1,9393:6630773,36683124:25952256,404226,101187 -(1,9392:6630773,36683124:0,0,0 -g1,9392:6630773,36683124 -g1,9392:6630773,36683124 -g1,9392:6303093,36683124 -(1,9392:6303093,36683124:0,0,0 -) -g1,9392:6630773,36683124 -) -k1,9393:6630773,36683124:0 -g1,9393:9159938,36683124 -g1,9393:9792230,36683124 -g1,9393:10740667,36683124 -g1,9393:11372959,36683124 -g1,9393:12321396,36683124 -g1,9393:12953688,36683124 -g1,9393:13902125,36683124 -g1,9393:15482854,36683124 -h1,9393:16431291,36683124:0,0,0 -k1,9393:32583029,36683124:16151738 -g1,9393:32583029,36683124 -) -(1,9414:6630773,37414838:25952256,404226,101187 -(1,9395:6630773,37414838:0,0,0 -g1,9395:6630773,37414838 -g1,9395:6630773,37414838 -g1,9395:6303093,37414838 -(1,9395:6303093,37414838:0,0,0 -) -g1,9395:6630773,37414838 -) -g1,9414:7579210,37414838 -g1,9414:8211502,37414838 -g1,9414:8843794,37414838 -g1,9414:9792231,37414838 -g1,9414:10424523,37414838 -g1,9414:11372960,37414838 -g1,9414:12005252,37414838 -g1,9414:12953689,37414838 -g1,9414:14534418,37414838 -h1,9414:15166709,37414838:0,0,0 -k1,9414:32583029,37414838:17416320 -g1,9414:32583029,37414838 -) -(1,9414:6630773,38081016:25952256,404226,82312 -h1,9414:6630773,38081016:0,0,0 -g1,9414:7579210,38081016 -k1,9414:7579210,38081016:0 -h1,9414:13269832,38081016:0,0,0 -k1,9414:32583028,38081016:19313196 -g1,9414:32583028,38081016 -) -(1,9414:6630773,38747194:25952256,404226,101187 -h1,9414:6630773,38747194:0,0,0 -g1,9414:7579210,38747194 -g1,9414:10108376,38747194 -g1,9414:11372959,38747194 -h1,9414:12321396,38747194:0,0,0 -k1,9414:32583028,38747194:20261632 -g1,9414:32583028,38747194 -) -(1,9414:6630773,39413372:25952256,410518,82312 -h1,9414:6630773,39413372:0,0,0 -g1,9414:7579210,39413372 -k1,9414:7579210,39413372:0 -h1,9414:12637540,39413372:0,0,0 -k1,9414:32583028,39413372:19945488 -g1,9414:32583028,39413372 -) -(1,9414:6630773,40079550:25952256,388497,0 -h1,9414:6630773,40079550:0,0,0 -g1,9414:7579210,40079550 -g1,9414:7895356,40079550 -g1,9414:8211502,40079550 -g1,9414:8527648,40079550 -g1,9414:9476085,40079550 -g1,9414:10424522,40079550 -h1,9414:12005250,40079550:0,0,0 -k1,9414:32583030,40079550:20577780 -g1,9414:32583030,40079550 -) -(1,9414:6630773,40745728:25952256,388497,101187 -h1,9414:6630773,40745728:0,0,0 -g1,9414:7579210,40745728 -g1,9414:8211502,40745728 -g1,9414:8527648,40745728 -g1,9414:8843794,40745728 -g1,9414:9476086,40745728 -g1,9414:9792232,40745728 -g1,9414:10424524,40745728 -g1,9414:10740670,40745728 -g1,9414:11056816,40745728 -g1,9414:11372962,40745728 -g1,9414:11689108,40745728 -h1,9414:12005254,40745728:0,0,0 -k1,9414:32583030,40745728:20577776 -g1,9414:32583030,40745728 -) -(1,9414:6630773,41411906:25952256,388497,9436 -h1,9414:6630773,41411906:0,0,0 -g1,9414:7579210,41411906 -g1,9414:8527647,41411906 -g1,9414:8843793,41411906 -g1,9414:9476085,41411906 -g1,9414:9792231,41411906 -g1,9414:10424523,41411906 -g1,9414:10740669,41411906 -g1,9414:11056815,41411906 -g1,9414:11372961,41411906 -g1,9414:11689107,41411906 -h1,9414:12005253,41411906:0,0,0 -k1,9414:32583029,41411906:20577776 -g1,9414:32583029,41411906 -) -(1,9414:6630773,42078084:25952256,388497,9436 -h1,9414:6630773,42078084:0,0,0 -g1,9414:7579210,42078084 -g1,9414:8527647,42078084 -g1,9414:8843793,42078084 -g1,9414:9476085,42078084 -g1,9414:9792231,42078084 -g1,9414:10424523,42078084 -g1,9414:10740669,42078084 -g1,9414:11056815,42078084 -g1,9414:11372961,42078084 -g1,9414:11689107,42078084 -h1,9414:12005253,42078084:0,0,0 -k1,9414:32583029,42078084:20577776 -g1,9414:32583029,42078084 -) -(1,9414:6630773,42744262:25952256,404226,82312 -h1,9414:6630773,42744262:0,0,0 -g1,9414:7579210,42744262 -k1,9414:7579210,42744262:0 -h1,9414:13902123,42744262:0,0,0 -k1,9414:32583029,42744262:18680906 -g1,9414:32583029,42744262 -) -(1,9414:6630773,43410440:25952256,404226,76021 -h1,9414:6630773,43410440:0,0,0 -g1,9414:7579210,43410440 -g1,9414:8843793,43410440 -g1,9414:10424522,43410440 -g1,9414:10740668,43410440 -g1,9414:11056814,43410440 -g1,9414:11372960,43410440 -g1,9414:12953689,43410440 -g1,9414:13269835,43410440 -g1,9414:13585981,43410440 -g1,9414:13902127,43410440 -h1,9414:16115147,43410440:0,0,0 -k1,9414:32583029,43410440:16467882 -g1,9414:32583029,43410440 -) -(1,9414:6630773,44076618:25952256,404226,82312 -h1,9414:6630773,44076618:0,0,0 -g1,9414:7579210,44076618 -k1,9414:7579210,44076618:0 -h1,9414:12005249,44076618:0,0,0 -k1,9414:32583029,44076618:20577780 -g1,9414:32583029,44076618 -) -(1,9414:6630773,44742796:25952256,404226,76021 -h1,9414:6630773,44742796:0,0,0 -g1,9414:7579210,44742796 -g1,9414:8843793,44742796 -g1,9414:9476085,44742796 -g1,9414:10108377,44742796 -h1,9414:10424523,44742796:0,0,0 -k1,9414:32583029,44742796:22158506 -g1,9414:32583029,44742796 -) -(1,9414:6630773,45408974:25952256,404226,101187 -h1,9414:6630773,45408974:0,0,0 -g1,9414:7579210,45408974 -k1,9414:7579210,45408974:0 -h1,9414:13269832,45408974:0,0,0 -k1,9414:32583028,45408974:19313196 -g1,9414:32583028,45408974 -) -] -) -g1,9415:32583029,45510161 -g1,9415:6630773,45510161 -g1,9415:6630773,45510161 -g1,9415:32583029,45510161 -g1,9415:32583029,45510161 -) -] -(1,9415:32583029,45706769:0,0,0 -g1,9415:32583029,45706769 -) -) -] -(1,9415:6630773,47279633:25952256,0,0 -h1,9415:6630773,47279633:25952256,0,0 -) -] -(1,9415:4262630,4025873:0,0,0 -[1,9415:-473656,4025873:0,0,0 -(1,9415:-473656,-710413:0,0,0 -(1,9415:-473656,-710413:0,0,0 -g1,9415:-473656,-710413 -) -g1,9415:-473656,-710413 -) -] -) -] -!24413 -}176 -Input:1409:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1410:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!196 -{177 -[1,9465:4262630,47279633:28320399,43253760,0 -(1,9465:4262630,4025873:0,0,0 -[1,9465:-473656,4025873:0,0,0 -(1,9465:-473656,-710413:0,0,0 -(1,9465:-473656,-644877:0,0,0 -k1,9465:-473656,-644877:-65536 -) -(1,9465:-473656,4736287:0,0,0 -k1,9465:-473656,4736287:5209943 -) -g1,9465:-473656,-710413 -) -] -) -[1,9465:6630773,47279633:25952256,43253760,0 -[1,9465:6630773,4812305:25952256,786432,0 -(1,9465:6630773,4812305:25952256,505283,134348 -(1,9465:6630773,4812305:25952256,505283,134348 -g1,9465:3078558,4812305 -[1,9465:3078558,4812305:0,0,0 -(1,9465:3078558,2439708:0,1703936,0 -k1,9465:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,9465:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,9465:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,9465:3078558,4812305:0,0,0 -(1,9465:3078558,2439708:0,1703936,0 -g1,9465:29030814,2439708 -g1,9465:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,9465:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,9465:37855564,2439708:1179648,16384,0 -) -) -k1,9465:3078556,2439708:-34777008 -) -] -[1,9465:3078558,4812305:0,0,0 -(1,9465:3078558,49800853:0,16384,2228224 -k1,9465:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,9465:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,9465:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,9465:3078558,4812305:0,0,0 -(1,9465:3078558,49800853:0,16384,2228224 -g1,9465:29030814,49800853 -g1,9465:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,9465:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,9465:37855564,49800853:1179648,16384,0 -) -) -k1,9465:3078556,49800853:-34777008 -) -] -g1,9465:6630773,4812305 -k1,9465:24502442,4812305:16676292 -g1,9465:25889183,4812305 -g1,9465:26537989,4812305 -g1,9465:29852144,4812305 -) -) -] -[1,9465:6630773,45706769:25952256,40108032,0 -(1,9465:6630773,45706769:25952256,40108032,0 -(1,9465:6630773,45706769:0,0,0 -g1,9465:6630773,45706769 -) -[1,9465:6630773,45706769:25952256,40108032,0 -v1,9415:6630773,6254097:0,393216,0 -(1,9415:6630773,9176758:25952256,3315877,196608 -g1,9415:6630773,9176758 -g1,9415:6630773,9176758 -g1,9415:6434165,9176758 -(1,9415:6434165,9176758:0,3315877,196608 -r1,9465:32779637,9176758:26345472,3512485,196608 -k1,9415:6434165,9176758:-26345472 -) -(1,9415:6434165,9176758:26345472,3315877,196608 -[1,9415:6630773,9176758:25952256,3119269,0 -(1,9414:6630773,6461715:25952256,404226,76021 -h1,9414:6630773,6461715:0,0,0 -g1,9414:7579210,6461715 -g1,9414:8843793,6461715 -h1,9414:9159939,6461715:0,0,0 -k1,9414:32583029,6461715:23423090 -g1,9414:32583029,6461715 -) -(1,9414:6630773,7127893:25952256,404226,101187 -h1,9414:6630773,7127893:0,0,0 -g1,9414:7579210,7127893 -k1,9414:7579210,7127893:0 -h1,9414:12953686,7127893:0,0,0 -k1,9414:32583030,7127893:19629344 -g1,9414:32583030,7127893 -) -(1,9414:6630773,7794071:25952256,404226,76021 -h1,9414:6630773,7794071:0,0,0 -g1,9414:7579210,7794071 -g1,9414:8843793,7794071 -h1,9414:9159939,7794071:0,0,0 -k1,9414:32583029,7794071:23423090 -g1,9414:32583029,7794071 -) -(1,9414:6630773,8460249:25952256,404226,82312 -h1,9414:6630773,8460249:0,0,0 -g1,9414:7579210,8460249 -k1,9414:7579210,8460249:0 -h1,9414:14218269,8460249:0,0,0 -k1,9414:32583029,8460249:18364760 -g1,9414:32583029,8460249 -) -(1,9414:6630773,9126427:25952256,404226,50331 -h1,9414:6630773,9126427:0,0,0 -g1,9414:7579210,9126427 -g1,9414:12005250,9126427 -k1,9414:12005250,9126427:0 -h1,9414:15798998,9126427:0,0,0 -k1,9414:32583030,9126427:16784032 -g1,9414:32583030,9126427 -) -] -) -g1,9415:32583029,9176758 -g1,9415:6630773,9176758 -g1,9415:6630773,9176758 -g1,9415:32583029,9176758 -g1,9415:32583029,9176758 -) -h1,9415:6630773,9373366:0,0,0 -v1,9419:6630773,11263430:0,393216,0 -(1,9434:6630773,22507433:25952256,11637219,616038 -g1,9434:6630773,22507433 -(1,9434:6630773,22507433:25952256,11637219,616038 -(1,9434:6630773,23123471:25952256,12253257,0 -[1,9434:6630773,23123471:25952256,12253257,0 -(1,9434:6630773,23097257:25952256,12200829,0 -r1,9465:6656987,23097257:26214,12200829,0 -[1,9434:6656987,23097257:25899828,12200829,0 -(1,9434:6656987,22507433:25899828,11021181,0 -[1,9434:7246811,22507433:24720180,11021181,0 -(1,9420:7246811,12573626:24720180,1087374,134348 -k1,9419:8681965,12573626:225451 -k1,9419:11343388,12573626:225450 -k1,9419:12587924,12573626:225451 -k1,9419:15805093,12573626:225450 -k1,9419:17898975,12573626:225451 -k1,9419:19859818,12573626:225450 -k1,9419:21104354,12573626:225451 -(1,9419:21104354,12573626:0,452978,115847 -r1,9465:22166043,12573626:1061689,568825,115847 -k1,9419:21104354,12573626:-1061689 -) -(1,9419:21104354,12573626:1061689,452978,115847 -k1,9419:21104354,12573626:3277 -h1,9419:22162766,12573626:0,411205,112570 -) -k1,9419:22391493,12573626:225450 -k1,9419:24006307,12573626:225451 -k1,9419:25166300,12573626:225450 -k1,9419:26959372,12573626:225451 -k1,9419:27773335,12573626:225450 -k1,9419:29556577,12573626:225451 -k1,9420:31966991,12573626:0 -) -(1,9420:7246811,13415114:24720180,513147,126483 -k1,9419:9253905,13415114:171431 -k1,9419:10444421,13415114:171431 -k1,9419:11708338,13415114:171432 -k1,9419:12539061,13415114:171431 -k1,9419:15472835,13415114:171431 -k1,9419:17631973,13415114:171431 -k1,9419:20677159,13415114:171432 -k1,9419:21464628,13415114:171431 -k1,9419:24244392,13415114:171431 -k1,9419:25564669,13415114:171431 -k1,9419:27432828,13415114:171432 -k1,9419:30595978,13415114:171431 -k1,9419:31966991,13415114:0 -) -(1,9420:7246811,14256602:24720180,513147,134348 -k1,9419:8974012,14256602:268370 -k1,9419:10572763,14256602:268370 -k1,9419:13997347,14256602:268370 -k1,9419:15075087,14256602:268370 -k1,9419:16362542,14256602:268370 -k1,9419:18284385,14256602:268370 -k1,9419:20539151,14256602:268370 -k1,9419:21458949,14256602:268370 -k1,9419:23369651,14256602:268370 -k1,9419:25096852,14256602:268370 -k1,9419:30020244,14256602:268370 -k1,9419:30947906,14256602:268370 -k1,9419:31966991,14256602:0 -) -(1,9420:7246811,15098090:24720180,513147,126483 -k1,9419:9515396,15098090:184540 -k1,9419:10359227,15098090:184539 -k1,9419:12531474,15098090:184540 -k1,9419:15763438,15098090:184540 -k1,9419:17801335,15098090:184539 -k1,9419:18795245,15098090:184540 -k1,9419:19998869,15098090:184539 -k1,9419:22026281,15098090:184540 -k1,9419:25273974,15098090:184540 -k1,9419:26074551,15098090:184539 -k1,9419:27278176,15098090:184540 -k1,9419:29897364,15098090:184525 -k1,9419:31966991,15098090:0 -) -(1,9420:7246811,15939578:24720180,513147,134348 -k1,9419:8717308,15939578:164364 -k1,9419:10478130,15939578:164365 -k1,9419:11708765,15939578:164364 -k1,9419:13421745,15939578:164364 -k1,9419:15904118,15939578:164365 -k1,9419:17060042,15939578:164364 -k1,9419:18962421,15939578:164364 -k1,9419:20839242,15939578:164365 -k1,9419:21619644,15939578:164364 -k1,9419:23235630,15939578:164364 -k1,9419:24940746,15939578:164365 -k1,9419:25732945,15939578:164364 -k1,9419:26253169,15939578:164364 -k1,9419:28658865,15939578:164365 -k1,9419:30352184,15939578:164364 -k1,9419:31966991,15939578:0 -) -(1,9420:7246811,16781066:24720180,513147,134348 -k1,9419:8843744,16781066:145311 -k1,9419:9648348,16781066:145312 -k1,9419:10812744,16781066:145311 -k1,9419:13276063,16781066:145311 -k1,9419:15156768,16781066:145312 -k1,9419:15657939,16781066:145311 -k1,9419:20126661,16781066:145312 -k1,9419:24256561,16781066:145311 -k1,9419:26677937,16781066:145311 -k1,9419:28503592,16781066:145312 -k1,9419:29979284,16781066:145311 -k1,9419:31966991,16781066:0 -) -(1,9420:7246811,17622554:24720180,513147,126483 -g1,9419:9471102,17622554 -g1,9419:11007265,17622554 -g1,9419:12985796,17622554 -g1,9419:14204110,17622554 -g1,9419:18171004,17622554 -g1,9419:19937854,17622554 -g1,9419:20907786,17622554 -g1,9419:23661608,17622554 -g1,9419:24520129,17622554 -k1,9420:31966991,17622554:4618983 -g1,9420:31966991,17622554 -) -v1,9423:7246811,18813020:0,393216,0 -(1,9431:7246811,21786537:24720180,3366733,196608 -g1,9431:7246811,21786537 -g1,9431:7246811,21786537 -g1,9431:7050203,21786537 -(1,9431:7050203,21786537:0,3366733,196608 -r1,9465:32163599,21786537:25113396,3563341,196608 -k1,9431:7050203,21786537:-25113396 -) -(1,9431:7050203,21786537:25113396,3366733,196608 -[1,9431:7246811,21786537:24720180,3170125,0 -(1,9425:7246811,19020638:24720180,404226,101187 -(1,9424:7246811,19020638:0,0,0 -g1,9424:7246811,19020638 -g1,9424:7246811,19020638 -g1,9424:6919131,19020638 -(1,9424:6919131,19020638:0,0,0 -) -g1,9424:7246811,19020638 -) -k1,9425:7246811,19020638:0 -h1,9425:10092122,19020638:0,0,0 -k1,9425:31966990,19020638:21874868 -g1,9425:31966990,19020638 -) -(1,9426:7246811,19686816:24720180,404226,101187 -h1,9426:7246811,19686816:0,0,0 -g1,9426:11988996,19686816 -g1,9426:12621288,19686816 -g1,9426:13253580,19686816 -g1,9426:13885872,19686816 -g1,9426:14518164,19686816 -g1,9426:15150456,19686816 -g1,9426:16098894,19686816 -g1,9426:17679623,19686816 -g1,9426:18311915,19686816 -h1,9426:19892643,19686816:0,0,0 -k1,9426:31966991,19686816:12074348 -g1,9426:31966991,19686816 -) -(1,9427:7246811,20352994:24720180,404226,101187 -h1,9427:7246811,20352994:0,0,0 -g1,9427:11988996,20352994 -g1,9427:12621288,20352994 -g1,9427:13569725,20352994 -g1,9427:14202017,20352994 -g1,9427:14834309,20352994 -g1,9427:15466601,20352994 -g1,9427:17363476,20352994 -g1,9427:18944205,20352994 -g1,9427:19576497,20352994 -h1,9427:21157225,20352994:0,0,0 -k1,9427:31966991,20352994:10809766 -g1,9427:31966991,20352994 -) -(1,9428:7246811,21019172:24720180,404226,101187 -h1,9428:7246811,21019172:0,0,0 -g1,9428:11988996,21019172 -g1,9428:12621288,21019172 -g1,9428:13253580,21019172 -g1,9428:13885872,21019172 -g1,9428:14518164,21019172 -g1,9428:15150456,21019172 -g1,9428:15782748,21019172 -g1,9428:16415040,21019172 -g1,9428:17047332,21019172 -g1,9428:18628061,21019172 -g1,9428:19260353,21019172 -g1,9428:19892645,21019172 -g1,9428:20524937,21019172 -g1,9428:22105666,21019172 -g1,9428:23054104,21019172 -g1,9428:24634833,21019172 -g1,9428:25267125,21019172 -h1,9428:26847853,21019172:0,0,0 -k1,9428:31966991,21019172:5119138 -g1,9428:31966991,21019172 -) -(1,9429:7246811,21685350:24720180,404226,101187 -h1,9429:7246811,21685350:0,0,0 -g1,9429:11988996,21685350 -g1,9429:12621288,21685350 -g1,9429:13253580,21685350 -g1,9429:13885872,21685350 -g1,9429:14518164,21685350 -g1,9429:15150456,21685350 -g1,9429:15782748,21685350 -g1,9429:16415040,21685350 -g1,9429:17047332,21685350 -g1,9429:18628061,21685350 -g1,9429:19260353,21685350 -g1,9429:19892645,21685350 -g1,9429:20524937,21685350 -g1,9429:22105666,21685350 -g1,9429:23054104,21685350 -g1,9429:24634833,21685350 -g1,9429:25267125,21685350 -h1,9429:26847853,21685350:0,0,0 -k1,9429:31966991,21685350:5119138 -g1,9429:31966991,21685350 -) -] -) -g1,9431:31966991,21786537 -g1,9431:7246811,21786537 -g1,9431:7246811,21786537 -g1,9431:31966991,21786537 -g1,9431:31966991,21786537 -) -h1,9431:7246811,21983145:0,0,0 -] -) -] -r1,9465:32583029,23097257:26214,12200829,0 -) -] -) -) -g1,9434:32583029,22507433 -) -h1,9434:6630773,23123471:0,0,0 -(1,9437:6630773,24489247:25952256,513147,134348 -h1,9436:6630773,24489247:983040,0,0 -k1,9436:10211202,24489247:180421 -k1,9436:11050914,24489247:180420 -k1,9436:13455627,24489247:180421 -k1,9436:14252085,24489247:180420 -k1,9436:18371875,24489247:180421 -k1,9436:20287688,24489247:180420 -k1,9436:24208248,24489247:180420 -k1,9436:26807603,24489247:180421 -k1,9436:28481590,24489247:180421 -k1,9436:29348172,24489247:180420 -k1,9436:32583029,24489247:0 -) -(1,9437:6630773,25330735:25952256,513147,126483 -k1,9436:7454669,25330735:141011 -k1,9436:10380306,25330735:141012 -k1,9436:13729304,25330735:141011 -k1,9436:16043490,25330735:141012 -k1,9436:16800539,25330735:141011 -k1,9436:17960635,25330735:141011 -k1,9436:19631913,25330735:141012 -k1,9436:20424352,25330735:141011 -k1,9436:23353266,25330735:141012 -k1,9436:26721270,25330735:141011 -k1,9436:28469225,25330735:141012 -k1,9436:30626779,25330735:141011 -k1,9437:32583029,25330735:0 -) -(1,9437:6630773,26172223:25952256,513147,134348 -k1,9436:7796518,26172223:175496 -k1,9436:8588052,26172223:175496 -k1,9436:10272187,26172223:175496 -k1,9436:12903317,26172223:175496 -k1,9436:13738105,26172223:175496 -k1,9436:16770315,26172223:175496 -k1,9436:17573646,26172223:175496 -k1,9436:19242708,26172223:175496 -k1,9436:19774064,26172223:175496 -k1,9436:22211863,26172223:175496 -k1,9436:25149702,26172223:175496 -k1,9436:27426282,26172223:175496 -k1,9436:28593338,26172223:175496 -k1,9436:30728360,26172223:175496 -k1,9436:32583029,26172223:0 -) -(1,9437:6630773,27013711:25952256,513147,134348 -k1,9436:7646066,27013711:205923 -k1,9436:10614333,27013711:205924 -k1,9436:12427199,27013711:205923 -k1,9436:14649666,27013711:205924 -k1,9436:17531424,27013711:205923 -k1,9436:20076983,27013711:205924 -k1,9436:22113982,27013711:205923 -k1,9436:23002790,27013711:205923 -k1,9436:24274985,27013711:205924 -k1,9436:25012405,27013711:205923 -k1,9436:25574189,27013711:205924 -k1,9436:28558183,27013711:205923 -k1,9436:29423399,27013711:205924 -k1,9436:30400025,27013711:205923 -k1,9437:32583029,27013711:0 -) -(1,9437:6630773,27855199:25952256,513147,134348 -k1,9436:8613456,27855199:169957 -k1,9436:9253305,27855199:169956 -k1,9436:9954759,27855199:169957 -k1,9436:12616394,27855199:169956 -k1,9436:13472513,27855199:169957 -k1,9436:14964331,27855199:169957 -k1,9436:15793579,27855199:169956 -k1,9436:16982621,27855199:169957 -k1,9436:19241209,27855199:169956 -k1,9436:20070458,27855199:169957 -k1,9436:21259500,27855199:169957 -k1,9436:25038524,27855199:169956 -k1,9436:27063150,27855199:169957 -k1,9436:28042476,27855199:169956 -k1,9436:29231518,27855199:169957 -k1,9436:32583029,27855199:0 -) -(1,9437:6630773,28696687:25952256,513147,134348 -k1,9436:7469199,28696687:179134 -k1,9436:10792750,28696687:179134 -k1,9436:14617652,28696687:179134 -k1,9436:15448214,28696687:179134 -k1,9436:19797403,28696687:179133 -k1,9436:21768291,28696687:179134 -k1,9436:22575260,28696687:179134 -k1,9436:24816137,28696687:179114 -k1,9436:30243394,28696687:179134 -k1,9436:32583029,28696687:0 -) -(1,9437:6630773,29538175:25952256,513147,126483 -k1,9436:8749265,29538175:257925 -k1,9436:9658618,29538175:257925 -k1,9436:10664309,29538175:257925 -k1,9436:14012257,29538175:257925 -k1,9436:15031710,29538175:257925 -k1,9436:17620751,29538175:257925 -k1,9436:20960835,29538175:257926 -k1,9436:21878052,29538175:257925 -k1,9436:23742920,29538175:257925 -k1,9436:25843717,29538175:257925 -k1,9436:26863170,29538175:257925 -k1,9436:29189411,29538175:257925 -k1,9436:30114492,29538175:257925 -(1,9436:30114492,29538175:0,452978,115847 -r1,9465:32583029,29538175:2468537,568825,115847 -k1,9436:30114492,29538175:-2468537 -) -(1,9436:30114492,29538175:2468537,452978,115847 -k1,9436:30114492,29538175:3277 -h1,9436:32579752,29538175:0,411205,112570 -) -k1,9436:32583029,29538175:0 -) -(1,9437:6630773,30379663:25952256,513147,126483 -k1,9436:8938895,30379663:298133 -k1,9436:10256113,30379663:298133 -k1,9436:13271369,30379663:298133 -k1,9436:16974753,30379663:298133 -k1,9436:19085612,30379663:298133 -k1,9436:23652105,30379663:298133 -k1,9436:25663905,30379663:298034 -k1,9436:28280046,30379663:298133 -k1,9436:29569739,30379663:298133 -k1,9436:31469572,30379663:298133 -k1,9437:32583029,30379663:0 -) -(1,9437:6630773,31221151:25952256,513147,134348 -k1,9436:9240810,31221151:205521 -k1,9436:10959557,31221151:205521 -k1,9436:12559028,31221151:205520 -k1,9436:14153912,31221151:205521 -k1,9436:15927054,31221151:205521 -k1,9436:20071944,31221151:205521 -k1,9436:21468910,31221151:205521 -k1,9436:24103850,31221151:205520 -k1,9436:26044764,31221151:205521 -k1,9436:29990425,31221151:205521 -k1,9436:32583029,31221151:0 -) -(1,9437:6630773,32062639:25952256,505283,134348 -k1,9436:7519878,32062639:202943 -k1,9436:11924334,32062639:202943 -k1,9436:12743316,32062639:202944 -k1,9436:15856713,32062639:202943 -k1,9436:17979860,32062639:202943 -k1,9436:19374248,32062639:202943 -k1,9436:21679585,32062639:202943 -k1,9436:23756858,32062639:202943 -k1,9436:25132241,32062639:202944 -k1,9436:28245638,32062639:202943 -k1,9436:29541066,32062639:202943 -k1,9436:31252648,32062639:202943 -k1,9436:32583029,32062639:0 -) -(1,9437:6630773,32904127:25952256,513147,134348 -k1,9436:10319532,32904127:286130 -k1,9436:11257090,32904127:286130 -k1,9436:12562305,32904127:286130 -k1,9436:14836142,32904127:286130 -k1,9436:17665725,32904127:286131 -k1,9436:20035900,32904127:286130 -k1,9436:20973458,32904127:286130 -k1,9436:23928869,32904127:286130 -k1,9436:26554634,32904127:286130 -k1,9436:28032209,32904127:286130 -k1,9436:32583029,32904127:0 -) -(1,9437:6630773,33745615:25952256,513147,126483 -k1,9436:8429409,33745615:234947 -k1,9436:9855800,33745615:234946 -k1,9436:12585047,33745615:234947 -k1,9436:15094748,33745615:234946 -k1,9436:18022569,33745615:234947 -k1,9436:20575523,33745615:234946 -k1,9436:22285685,33745615:234947 -k1,9436:25233166,33745615:234946 -k1,9436:27170083,33745615:234947 -k1,9436:30981329,33745615:234946 -k1,9436:32583029,33745615:0 -) -(1,9437:6630773,34587103:25952256,513147,134348 -k1,9436:7469197,34587103:179132 -k1,9436:9287383,34587103:179131 -k1,9436:11863822,34587103:179132 -k1,9436:12694382,34587103:179132 -k1,9436:16066428,34587103:179132 -k1,9436:19329684,34587103:179132 -k1,9436:21383145,34587103:179131 -k1,9436:24964906,34587103:179132 -k1,9436:26174919,34587103:179132 -k1,9436:28719900,34587103:179131 -k1,9436:29918117,34587103:179132 -k1,9436:31923737,34587103:179132 -k1,9436:32583029,34587103:0 -) -(1,9437:6630773,35428591:25952256,505283,7863 -g1,9436:8033243,35428591 -k1,9437:32583029,35428591:22794076 -g1,9437:32583029,35428591 -) -v1,9439:6630773,36794367:0,393216,0 -(1,9465:6630773,44961112:25952256,8559961,589824 -g1,9465:6630773,44961112 -(1,9465:6630773,44961112:25952256,8559961,589824 -(1,9465:6630773,45550936:25952256,9149785,0 -[1,9465:6630773,45550936:25952256,9149785,0 -(1,9465:6630773,45550936:25952256,9123571,0 -r1,9465:6656987,45550936:26214,9123571,0 -[1,9465:6656987,45550936:25899828,9123571,0 -(1,9465:6656987,44961112:25899828,7943923,0 -[1,9465:7246811,44961112:24720180,7943923,0 -(1,9440:7246811,38102725:24720180,1085536,298548 -(1,9439:7246811,38102725:0,1085536,298548 -r1,9465:8753226,38102725:1506415,1384084,298548 -k1,9439:7246811,38102725:-1506415 -) -(1,9439:7246811,38102725:1506415,1085536,298548 -) -k1,9439:8964493,38102725:211267 -k1,9439:9590590,38102725:211254 -k1,9439:10934319,38102725:211267 -k1,9439:13193586,38102725:211267 -k1,9439:14536660,38102725:211267 -k1,9439:18719408,38102725:211266 -k1,9439:21173317,38102725:211267 -k1,9439:23372291,38102725:211267 -k1,9439:26300681,38102725:211267 -k1,9439:27978643,38102725:211266 -k1,9439:29887948,38102725:211267 -k1,9439:31118300,38102725:211267 -k1,9440:31966991,38102725:0 -) -(1,9440:7246811,38944213:24720180,513147,126483 -k1,9439:8962020,38944213:177734 -k1,9439:9799045,38944213:177733 -k1,9439:10995864,38944213:177734 -k1,9439:11861070,38944213:177733 -k1,9439:13030364,38944213:177734 -k1,9439:14274369,38944213:177734 -k1,9439:18756507,38944213:177733 -k1,9439:19404134,38944213:177734 -k1,9439:20113364,38944213:177733 -k1,9439:21276759,38944213:177734 -k1,9439:25604233,38944213:177734 -k1,9439:26398004,38944213:177733 -k1,9439:27561399,38944213:177734 -k1,9439:29087863,38944213:177733 -k1,9439:29865251,38944213:177734 -k1,9439:31966991,38944213:0 -) -(1,9440:7246811,39785701:24720180,513147,134348 -k1,9439:8815284,39785701:291176 -k1,9439:11307815,39785701:291177 -k1,9439:12644946,39785701:291176 -k1,9439:16728691,39785701:291177 -k1,9439:18216554,39785701:291176 -k1,9439:20109430,39785701:291176 -k1,9439:23351693,39785701:291177 -k1,9439:24834314,39785701:291176 -k1,9439:28640187,39785701:291177 -k1,9439:31435494,39785701:291176 -k1,9439:31966991,39785701:0 -) -(1,9440:7246811,40627189:24720180,513147,134348 -k1,9439:10675363,40627189:179277 -k1,9439:11802292,40627189:179278 -k1,9439:14637743,40627189:179277 -k1,9439:18930060,40627189:179278 -k1,9439:21427345,40627189:179277 -k1,9439:22535268,40627189:179278 -k1,9439:23706105,40627189:179277 -k1,9439:26357401,40627189:179278 -k1,9439:30245360,40627189:179277 -k1,9440:31966991,40627189:0 -) -(1,9440:7246811,41468677:24720180,473825,7863 -k1,9440:31966992,41468677:22259304 -g1,9440:31966992,41468677 -) -(1,9442:7246811,42310165:24720180,513147,134348 -h1,9441:7246811,42310165:983040,0,0 -k1,9441:10593243,42310165:299008 -k1,9441:13210259,42310165:299008 -k1,9441:14655492,42310165:299008 -k1,9441:16698413,42310165:299008 -k1,9441:18865852,42310165:299008 -k1,9441:19816289,42310165:299009 -k1,9441:21504660,42310165:299008 -k1,9441:23371289,42310165:299008 -k1,9441:24441000,42310165:299008 -k1,9441:28349076,42310165:299008 -k1,9441:30502753,42310165:299008 -k1,9441:31611131,42310165:299008 -k1,9441:31966991,42310165:0 -) -(1,9442:7246811,43151653:24720180,513147,134348 -k1,9441:10555366,43151653:202804 -k1,9441:13414344,43151653:202804 -k1,9441:15705781,43151653:202805 -k1,9441:18088968,43151653:202804 -k1,9441:19039538,43151653:202804 -k1,9441:21913589,43151653:202804 -k1,9441:22744228,43151653:202804 -k1,9441:24413728,43151653:202804 -k1,9441:26313915,43151653:202805 -k1,9441:28929755,43151653:202804 -k1,9441:30975431,43151653:202804 -k1,9441:31966991,43151653:0 -) -(1,9442:7246811,43993141:24720180,505283,134348 -k1,9441:10066038,43993141:173539 -k1,9441:11929096,43993141:173540 -k1,9441:16095744,43993141:173539 -k1,9441:20479316,43993141:173539 -k1,9441:21937361,43993141:173539 -k1,9441:24448570,43993141:173540 -k1,9441:25641194,43993141:173539 -k1,9441:28286751,43993141:173539 -k1,9441:29972862,43993141:173540 -k1,9441:31137961,43993141:173539 -k1,9442:31966991,43993141:0 -) -(1,9442:7246811,44834629:24720180,513147,126483 -k1,9441:9596168,44834629:206985 -k1,9441:10419190,44834629:206984 -k1,9441:11645260,44834629:206985 -k1,9441:14013621,44834629:206984 -k1,9441:15739075,44834629:206985 -k1,9441:18264068,44834629:206985 -k1,9441:19462612,44834629:206984 -k1,9441:20735868,44834629:206985 -k1,9441:25247257,44834629:206984 -k1,9441:26140404,44834629:206985 -k1,9441:27366473,44834629:206984 -k1,9441:30399370,44834629:206985 -k1,9441:31966991,44834629:0 -) -] -) -] -r1,9465:32583029,45550936:26214,9123571,0 -) -] -) -) -g1,9465:32583029,44961112 -) -] -(1,9465:32583029,45706769:0,0,0 -g1,9465:32583029,45706769 -) -) -] -(1,9465:6630773,47279633:25952256,0,0 -h1,9465:6630773,47279633:25952256,0,0 -) -] -(1,9465:4262630,4025873:0,0,0 -[1,9465:-473656,4025873:0,0,0 -(1,9465:-473656,-710413:0,0,0 -(1,9465:-473656,-710413:0,0,0 -g1,9465:-473656,-710413 -) -g1,9465:-473656,-710413 -) -] -) -] -!23012 -}177 -Input:1411:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1412:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1413:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1414:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1415:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1416:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1417:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1418:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1419:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1420:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1421:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1422:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1423:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1424:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1425:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1392 -{178 -[1,9729:4262630,47279633:28320399,43253760,0 -(1,9729:4262630,4025873:0,0,0 -[1,9729:-473656,4025873:0,0,0 -(1,9729:-473656,-710413:0,0,0 -(1,9729:-473656,-644877:0,0,0 -k1,9729:-473656,-644877:-65536 -) -(1,9729:-473656,4736287:0,0,0 -k1,9729:-473656,4736287:5209943 -) -g1,9729:-473656,-710413 -) -] -) -[1,9729:6630773,47279633:25952256,43253760,0 -[1,9729:6630773,4812305:25952256,786432,0 -(1,9729:6630773,4812305:25952256,513147,126483 -(1,9729:6630773,4812305:25952256,513147,126483 -g1,9729:3078558,4812305 -[1,9729:3078558,4812305:0,0,0 -(1,9729:3078558,2439708:0,1703936,0 -k1,9729:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,9729:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,9729:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,9729:3078558,4812305:0,0,0 -(1,9729:3078558,2439708:0,1703936,0 -g1,9729:29030814,2439708 -g1,9729:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,9729:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,9729:37855564,2439708:1179648,16384,0 -) -) -k1,9729:3078556,2439708:-34777008 -) -] -[1,9729:3078558,4812305:0,0,0 -(1,9729:3078558,49800853:0,16384,2228224 -k1,9729:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,9729:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,9729:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,9729:3078558,4812305:0,0,0 -(1,9729:3078558,49800853:0,16384,2228224 -g1,9729:29030814,49800853 -g1,9729:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,9729:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,9729:37855564,49800853:1179648,16384,0 -) -) -k1,9729:3078556,49800853:-34777008 -) -] -g1,9729:6630773,4812305 -g1,9729:6630773,4812305 -g1,9729:8691224,4812305 -g1,9729:11722264,4812305 -k1,9729:31387652,4812305:19665388 -) -) -] -[1,9729:6630773,45706769:25952256,40108032,0 -(1,9729:6630773,45706769:25952256,40108032,0 -(1,9729:6630773,45706769:0,0,0 -g1,9729:6630773,45706769 -) -[1,9729:6630773,45706769:25952256,40108032,0 -v1,9465:6630773,6254097:0,393216,0 -(1,9465:6630773,16450232:25952256,10589351,616038 -g1,9465:6630773,16450232 -(1,9465:6630773,16450232:25952256,10589351,616038 -(1,9465:6630773,17066270:25952256,11205389,0 -[1,9465:6630773,17066270:25952256,11205389,0 -(1,9465:6630773,17040056:25952256,11179175,0 -r1,9729:6656987,17040056:26214,11179175,0 -[1,9465:6656987,17040056:25899828,11179175,0 -(1,9465:6656987,16450232:25899828,9999527,0 -[1,9465:7246811,16450232:24720180,9999527,0 -(1,9442:7246811,6955988:24720180,505283,134348 -k1,9441:8530989,6955988:265093 -k1,9441:11268100,6955988:265093 -k1,9441:13790253,6955988:265093 -k1,9441:15568572,6955988:265093 -k1,9441:17571681,6955988:265094 -k1,9441:21477954,6955988:265093 -k1,9441:23753036,6955988:265093 -k1,9441:25037214,6955988:265093 -k1,9441:28520125,6955988:265093 -k1,9441:30801761,6955988:265093 -k1,9442:31966991,6955988:0 -) -(1,9442:7246811,7797476:24720180,513147,134348 -g1,9441:9632976,7797476 -g1,9441:11340844,7797476 -g1,9441:14400720,7797476 -g1,9441:18337467,7797476 -g1,9441:19728141,7797476 -g1,9441:23208102,7797476 -k1,9442:31966991,7797476:5539105 -g1,9442:31966991,7797476 -) -v1,9444:7246811,8987942:0,393216,0 -(1,9449:7246811,9895292:24720180,1300566,196608 -g1,9449:7246811,9895292 -g1,9449:7246811,9895292 -g1,9449:7050203,9895292 -(1,9449:7050203,9895292:0,1300566,196608 -r1,9729:32163599,9895292:25113396,1497174,196608 -k1,9449:7050203,9895292:-25113396 -) -(1,9449:7050203,9895292:25113396,1300566,196608 -[1,9449:7246811,9895292:24720180,1103958,0 -(1,9446:7246811,9127927:24720180,336593,101187 -(1,9445:7246811,9127927:0,0,0 -g1,9445:7246811,9127927 -g1,9445:7246811,9127927 -g1,9445:6919131,9127927 -(1,9445:6919131,9127927:0,0,0 -) -g1,9445:7246811,9127927 -) -g1,9446:7879103,9127927 -g1,9446:8511395,9127927 -g1,9446:9143687,9127927 -g1,9446:9775979,9127927 -g1,9446:10408271,9127927 -g1,9446:11040563,9127927 -g1,9446:12305147,9127927 -g1,9446:12937439,9127927 -g1,9446:14202023,9127927 -g1,9446:14834315,9127927 -h1,9446:15782753,9127927:0,0,0 -k1,9446:31966991,9127927:16184238 -g1,9446:31966991,9127927 -) -(1,9447:7246811,9794105:24720180,336593,101187 -h1,9447:7246811,9794105:0,0,0 -g1,9447:7879103,9794105 -g1,9447:8511395,9794105 -g1,9447:9143687,9794105 -g1,9447:9775979,9794105 -g1,9447:10408271,9794105 -g1,9447:11040563,9794105 -g1,9447:11672855,9794105 -g1,9447:12305147,9794105 -g1,9447:13569731,9794105 -g1,9447:14202023,9794105 -g1,9447:15466607,9794105 -g1,9447:16098899,9794105 -h1,9447:17679629,9794105:0,0,0 -k1,9447:31966991,9794105:14287362 -g1,9447:31966991,9794105 -) -] -) -g1,9449:31966991,9895292 -g1,9449:7246811,9895292 -g1,9449:7246811,9895292 -g1,9449:31966991,9895292 -g1,9449:31966991,9895292 -) -h1,9449:7246811,10091900:0,0,0 -(1,9453:7246811,11457676:24720180,513147,126483 -h1,9452:7246811,11457676:983040,0,0 -k1,9452:9070459,11457676:212773 -k1,9452:11914504,11457676:212774 -k1,9452:12778705,11457676:212773 -k1,9452:14735392,11457676:212774 -k1,9452:16977160,11457676:212773 -k1,9452:18209019,11457676:212774 -k1,9452:20739800,11457676:212773 -k1,9452:22821004,11457676:212773 -k1,9452:24025338,11457676:212774 -k1,9452:28542516,11457676:212773 -k1,9452:30221986,11457676:212774 -k1,9452:30900720,11457676:212773 -k1,9452:31966991,11457676:0 -) -(1,9453:7246811,12299164:24720180,513147,134348 -g1,9452:9136214,12299164 -g1,9452:11653451,12299164 -g1,9452:13126045,12299164 -g1,9452:16305851,12299164 -g1,9452:17271196,12299164 -g1,9452:20100385,12299164 -k1,9453:31966991,12299164:7689997 -g1,9453:31966991,12299164 -) -v1,9455:7246811,13489630:0,393216,0 -(1,9462:7246811,15729336:24720180,2632922,196608 -g1,9462:7246811,15729336 -g1,9462:7246811,15729336 -g1,9462:7050203,15729336 -(1,9462:7050203,15729336:0,2632922,196608 -r1,9729:32163599,15729336:25113396,2829530,196608 -k1,9462:7050203,15729336:-25113396 -) -(1,9462:7050203,15729336:25113396,2632922,196608 -[1,9462:7246811,15729336:24720180,2436314,0 -(1,9457:7246811,13629615:24720180,336593,101187 -(1,9456:7246811,13629615:0,0,0 -g1,9456:7246811,13629615 -g1,9456:7246811,13629615 -g1,9456:6919131,13629615 -(1,9456:6919131,13629615:0,0,0 -) -g1,9456:7246811,13629615 -) -g1,9457:7879103,13629615 -g1,9457:8511395,13629615 -g1,9457:9143687,13629615 -g1,9457:9775979,13629615 -g1,9457:10408271,13629615 -g1,9457:11040563,13629615 -g1,9457:11672855,13629615 -g1,9457:12305147,13629615 -g1,9457:13569731,13629615 -g1,9457:14202023,13629615 -g1,9457:15466607,13629615 -g1,9457:16098899,13629615 -h1,9457:17047337,13629615:0,0,0 -k1,9457:31966991,13629615:14919654 -g1,9457:31966991,13629615 -) -(1,9458:7246811,14295793:24720180,404226,101187 -h1,9458:7246811,14295793:0,0,0 -g1,9458:7879103,14295793 -g1,9458:8511395,14295793 -g1,9458:9459832,14295793 -g1,9458:10092124,14295793 -g1,9458:10724416,14295793 -g1,9458:11356708,14295793 -h1,9458:12621291,14295793:0,0,0 -k1,9458:31966991,14295793:19345700 -g1,9458:31966991,14295793 -) -(1,9459:7246811,14961971:24720180,336593,101187 -h1,9459:7246811,14961971:0,0,0 -g1,9459:7879103,14961971 -g1,9459:8511395,14961971 -g1,9459:9143687,14961971 -g1,9459:9775979,14961971 -g1,9459:10408271,14961971 -g1,9459:11040563,14961971 -g1,9459:11672855,14961971 -g1,9459:12305147,14961971 -h1,9459:13253585,14961971:0,0,0 -k1,9459:31966991,14961971:18713406 -g1,9459:31966991,14961971 -) -(1,9460:7246811,15628149:24720180,336593,101187 -h1,9460:7246811,15628149:0,0,0 -g1,9460:7879103,15628149 -g1,9460:8511395,15628149 -g1,9460:9143687,15628149 -g1,9460:9775979,15628149 -g1,9460:10408271,15628149 -g1,9460:11040563,15628149 -h1,9460:11356709,15628149:0,0,0 -k1,9460:31966991,15628149:20610282 -g1,9460:31966991,15628149 -) -] -) -g1,9462:31966991,15729336 -g1,9462:7246811,15729336 -g1,9462:7246811,15729336 -g1,9462:31966991,15729336 -g1,9462:31966991,15729336 -) -h1,9462:7246811,15925944:0,0,0 -] -) -] -r1,9729:32583029,17040056:26214,11179175,0 -) -] -) -) -g1,9465:32583029,16450232 -) -h1,9465:6630773,17066270:0,0,0 -(1,9468:6630773,18432046:25952256,505283,134348 -h1,9467:6630773,18432046:983040,0,0 -k1,9467:8727510,18432046:295808 -k1,9467:10463145,18432046:295809 -k1,9467:11374991,18432046:295808 -k1,9467:14088423,18432046:295809 -h1,9467:14486882,18432046:0,0,0 -k1,9467:14956360,18432046:295808 -k1,9467:17414857,18432046:295809 -k1,9467:21073973,18432046:295808 -k1,9467:21985819,18432046:295808 -k1,9467:23300713,18432046:295809 -k1,9467:24011267,18432046:295711 -k1,9467:27149372,18432046:295809 -k1,9467:27976677,18432046:295808 -k1,9467:29043189,18432046:295809 -k1,9467:31298523,18432046:295808 -k1,9467:32583029,18432046:0 -) -(1,9468:6630773,19273534:25952256,513147,134348 -k1,9467:7954491,19273534:219436 -k1,9467:8921694,19273534:219437 -k1,9467:11179300,19273534:219436 -k1,9467:12590181,19273534:219436 -k1,9467:16996712,19273534:219436 -k1,9467:19147495,19273534:219437 -k1,9467:22240685,19273534:219436 -k1,9467:23451681,19273534:219436 -k1,9467:24956933,19273534:219436 -k1,9467:27639868,19273534:219437 -k1,9467:30149132,19273534:219436 -k1,9467:31027860,19273534:219436 -k1,9468:32583029,19273534:0 -) -(1,9468:6630773,20115022:25952256,459977,115847 -(1,9467:6630773,20115022:0,459977,115847 -r1,9729:9802733,20115022:3171960,575824,115847 -k1,9467:6630773,20115022:-3171960 -) -(1,9467:6630773,20115022:3171960,459977,115847 -k1,9467:6630773,20115022:3277 -h1,9467:9799456,20115022:0,411205,112570 -) -k1,9468:32583029,20115022:22606626 -g1,9468:32583029,20115022 -) -v1,9470:6630773,21305488:0,393216,0 -(1,9477:6630773,22320841:25952256,1408569,196608 -g1,9477:6630773,22320841 -g1,9477:6630773,22320841 -g1,9477:6434165,22320841 -(1,9477:6434165,22320841:0,1408569,196608 -r1,9729:32779637,22320841:26345472,1605177,196608 -k1,9477:6434165,22320841:-26345472 -) -(1,9477:6434165,22320841:26345472,1408569,196608 -[1,9477:6630773,22320841:25952256,1211961,0 -(1,9472:6630773,21513106:25952256,404226,101187 -(1,9471:6630773,21513106:0,0,0 -g1,9471:6630773,21513106 -g1,9471:6630773,21513106 -g1,9471:6303093,21513106 -(1,9471:6303093,21513106:0,0,0 -) -g1,9471:6630773,21513106 -) -k1,9472:6630773,21513106:0 -g1,9472:9159938,21513106 -g1,9472:9792230,21513106 -h1,9472:10424521,21513106:0,0,0 -k1,9472:32583029,21513106:22158508 -g1,9472:32583029,21513106 -) -(1,9476:6630773,22244820:25952256,410518,76021 -(1,9474:6630773,22244820:0,0,0 -g1,9474:6630773,22244820 -g1,9474:6630773,22244820 -g1,9474:6303093,22244820 -(1,9474:6303093,22244820:0,0,0 -) -g1,9474:6630773,22244820 -) -g1,9476:7579210,22244820 -g1,9476:8843793,22244820 -h1,9476:11689104,22244820:0,0,0 -k1,9476:32583028,22244820:20893924 -g1,9476:32583028,22244820 -) -] -) -g1,9477:32583029,22320841 -g1,9477:6630773,22320841 -g1,9477:6630773,22320841 -g1,9477:32583029,22320841 -g1,9477:32583029,22320841 -) -h1,9477:6630773,22517449:0,0,0 -v1,9481:6630773,24232203:0,393216,0 -(1,9489:6630773,25803109:25952256,1964122,196608 -g1,9489:6630773,25803109 -g1,9489:6630773,25803109 -g1,9489:6434165,25803109 -(1,9489:6434165,25803109:0,1964122,196608 -r1,9729:32779637,25803109:26345472,2160730,196608 -k1,9489:6434165,25803109:-26345472 -) -(1,9489:6434165,25803109:26345472,1964122,196608 -[1,9489:6630773,25803109:25952256,1767514,0 -(1,9483:6630773,24329196:25952256,293601,101187 -(1,9482:6630773,24329196:0,0,0 -g1,9482:6630773,24329196 -g1,9482:6630773,24329196 -g1,9482:6303093,24329196 -(1,9482:6303093,24329196:0,0,0 -) -g1,9482:6630773,24329196 -) -g1,9483:7263065,24329196 -g1,9483:8211503,24329196 -g1,9483:8843795,24329196 -g1,9483:9476087,24329196 -h1,9483:9792233,24329196:0,0,0 -k1,9483:32583029,24329196:22790796 -g1,9483:32583029,24329196 -) -(1,9484:6630773,24995374:25952256,404226,76021 -h1,9484:6630773,24995374:0,0,0 -k1,9484:6630773,24995374:0 -h1,9484:9159938,24995374:0,0,0 -k1,9484:32583030,24995374:23423092 -g1,9484:32583030,24995374 -) -(1,9488:6630773,25727088:25952256,410518,76021 -(1,9486:6630773,25727088:0,0,0 -g1,9486:6630773,25727088 -g1,9486:6630773,25727088 -g1,9486:6303093,25727088 -(1,9486:6303093,25727088:0,0,0 -) -g1,9486:6630773,25727088 -) -g1,9488:7579210,25727088 -g1,9488:8843793,25727088 -h1,9488:11689104,25727088:0,0,0 -k1,9488:32583028,25727088:20893924 -g1,9488:32583028,25727088 -) -] -) -g1,9489:32583029,25803109 -g1,9489:6630773,25803109 -g1,9489:6630773,25803109 -g1,9489:32583029,25803109 -g1,9489:32583029,25803109 -) -h1,9489:6630773,25999717:0,0,0 -(1,9493:6630773,27365493:25952256,513147,126483 -h1,9492:6630773,27365493:983040,0,0 -k1,9492:9659889,27365493:213689 -k1,9492:10405076,27365493:213690 -k1,9492:11428135,27365493:213689 -k1,9492:14096148,27365493:213690 -(1,9492:14096148,27365493:0,459977,115847 -r1,9729:18323244,27365493:4227096,575824,115847 -k1,9492:14096148,27365493:-4227096 -) -(1,9492:14096148,27365493:4227096,459977,115847 -k1,9492:14096148,27365493:3277 -h1,9492:18319967,27365493:0,411205,112570 -) -k1,9492:18536933,27365493:213689 -k1,9492:19366660,27365493:213689 -k1,9492:21014278,27365493:213690 -k1,9492:21816480,27365493:213689 -k1,9492:23102339,27365493:213690 -k1,9492:24184380,27365493:213689 -k1,9492:25502351,27365493:213689 -k1,9492:27516970,27365493:213690 -k1,9492:28922104,27365493:213689 -k1,9492:30154879,27365493:213690 -k1,9492:31923737,27365493:213689 -k1,9492:32583029,27365493:0 -) -(1,9493:6630773,28206981:25952256,505283,134348 -g1,9492:7600705,28206981 -g1,9492:9759460,28206981 -g1,9492:11352640,28206981 -(1,9492:11352640,28206981:0,452978,115847 -r1,9729:14876312,28206981:3523672,568825,115847 -k1,9492:11352640,28206981:-3523672 -) -(1,9492:11352640,28206981:3523672,452978,115847 -k1,9492:11352640,28206981:3277 -h1,9492:14873035,28206981:0,411205,112570 -) -k1,9493:32583030,28206981:17533048 -g1,9493:32583030,28206981 -) -v1,9495:6630773,29397447:0,393216,0 -(1,9502:6630773,30419092:25952256,1414861,196608 -g1,9502:6630773,30419092 -g1,9502:6630773,30419092 -g1,9502:6434165,30419092 -(1,9502:6434165,30419092:0,1414861,196608 -r1,9729:32779637,30419092:26345472,1611469,196608 -k1,9502:6434165,30419092:-26345472 -) -(1,9502:6434165,30419092:26345472,1414861,196608 -[1,9502:6630773,30419092:25952256,1218253,0 -(1,9497:6630773,29611357:25952256,410518,82312 -(1,9496:6630773,29611357:0,0,0 -g1,9496:6630773,29611357 -g1,9496:6630773,29611357 -g1,9496:6303093,29611357 -(1,9496:6303093,29611357:0,0,0 -) -g1,9496:6630773,29611357 -) -k1,9497:6630773,29611357:0 -g1,9497:10424521,29611357 -h1,9497:13585978,29611357:0,0,0 -k1,9497:32583030,29611357:18997052 -g1,9497:32583030,29611357 -) -(1,9501:6630773,30343071:25952256,404226,76021 -(1,9499:6630773,30343071:0,0,0 -g1,9499:6630773,30343071 -g1,9499:6630773,30343071 -g1,9499:6303093,30343071 -(1,9499:6303093,30343071:0,0,0 -) -g1,9499:6630773,30343071 -) -g1,9501:7579210,30343071 -g1,9501:8843793,30343071 -h1,9501:10108376,30343071:0,0,0 -k1,9501:32583028,30343071:22474652 -g1,9501:32583028,30343071 -) -] -) -g1,9502:32583029,30419092 -g1,9502:6630773,30419092 -g1,9502:6630773,30419092 -g1,9502:32583029,30419092 -g1,9502:32583029,30419092 -) -h1,9502:6630773,30615700:0,0,0 -v1,9506:6630773,32505764:0,393216,0 -(1,9729:6630773,39915235:25952256,7802687,589824 -g1,9729:6630773,39915235 -(1,9729:6630773,39915235:25952256,7802687,589824 -(1,9729:6630773,40505059:25952256,8392511,0 -[1,9729:6630773,40505059:25952256,8392511,0 -(1,9729:6630773,40505059:25952256,8366297,0 -r1,9729:6656987,40505059:26214,8366297,0 -[1,9729:6656987,40505059:25899828,8366297,0 -(1,9729:6656987,39915235:25899828,7186649,0 -[1,9729:7246811,39915235:24720180,7186649,0 -(1,9507:7246811,33890471:24720180,1161885,196608 -(1,9506:7246811,33890471:0,1161885,196608 -r1,9729:8794447,33890471:1547636,1358493,196608 -k1,9506:7246811,33890471:-1547636 -) -(1,9506:7246811,33890471:1547636,1161885,196608 -) -k1,9506:8972858,33890471:178411 -k1,9506:8972858,33890471:0 -k1,9506:13488549,33890471:183106 -k1,9506:14348642,33890471:183106 -k1,9506:16578437,33890471:183106 -k1,9506:19893401,33890471:178411 -k1,9506:22600191,33890471:178411 -k1,9506:23981843,33890471:178411 -k1,9506:24691751,33890471:178411 -k1,9506:25226022,33890471:178411 -k1,9506:26986472,33890471:178411 -k1,9506:28987439,33890471:178411 -k1,9506:30184935,33890471:178411 -k1,9506:30778168,33890471:178390 -k1,9507:31966991,33890471:0 -) -(1,9507:7246811,34731959:24720180,513147,134348 -k1,9506:9472056,34731959:185109 -k1,9506:10115263,34731959:185110 -k1,9506:10831869,34731959:185109 -k1,9506:13965443,34731959:185109 -k1,9506:14801980,34731959:185109 -k1,9506:17656371,34731959:185110 -k1,9506:19171861,34731959:185109 -k1,9506:22230724,34731959:185109 -k1,9506:23520115,34731959:185109 -k1,9506:24452991,34731959:185110 -k1,9506:28825195,34731959:185109 -k1,9506:31966991,34731959:0 -) -(1,9507:7246811,35573447:24720180,505283,134348 -k1,9506:8086330,35573447:153357 -k1,9506:9371495,35573447:153358 -k1,9506:11226822,35573447:153357 -k1,9506:11794977,35573447:153312 -k1,9506:14411832,35573447:153357 -k1,9506:15669471,35573447:153357 -k1,9506:16570595,35573447:153358 -k1,9506:18535367,35573447:153357 -k1,9506:19304762,35573447:153357 -k1,9506:22299760,35573447:153357 -k1,9506:25433695,35573447:153358 -k1,9506:27084550,35573447:153357 -k1,9506:28620061,35573447:153357 -k1,9506:29304916,35573447:153358 -k1,9506:30661514,35573447:153357 -k1,9507:31966991,35573447:0 -) -(1,9507:7246811,36414935:24720180,513147,126483 -k1,9506:8687901,36414935:229329 -k1,9506:9959252,36414935:229329 -k1,9506:13023668,36414935:229329 -k1,9506:13718959,36414935:229330 -k1,9506:14816640,36414935:229329 -k1,9506:16594585,36414935:229329 -k1,9506:17475342,36414935:229329 -k1,9506:18392144,36414935:229329 -k1,9506:20852974,36414935:229329 -k1,9506:23844646,36414935:229329 -k1,9506:26391984,36414935:229330 -k1,9506:27272741,36414935:229329 -k1,9506:28521155,36414935:229329 -k1,9506:30403957,36414935:229329 -k1,9506:31966991,36414935:0 -) -(1,9507:7246811,37256423:24720180,513147,134348 -k1,9506:8292560,37256423:177397 -k1,9506:9574240,37256423:177398 -k1,9506:11366444,37256423:177397 -k1,9506:11899701,37256423:177397 -(1,9506:11899701,37256423:0,459977,115847 -r1,9729:12961390,37256423:1061689,575824,115847 -k1,9506:11899701,37256423:-1061689 -) -(1,9506:11899701,37256423:1061689,459977,115847 -k1,9506:11899701,37256423:3277 -h1,9506:12958113,37256423:0,411205,112570 -) -k1,9506:13138788,37256423:177398 -k1,9506:14731107,37256423:177397 -k1,9506:16193011,37256423:177398 -k1,9506:18175270,37256423:177397 -k1,9506:20911193,37256423:177397 -k1,9506:21444451,37256423:177398 -k1,9506:22615374,37256423:177397 -k1,9506:23452063,37256423:177397 -k1,9506:25617168,37256423:177398 -k1,9506:28841989,37256423:177397 -k1,9506:29816960,37256423:177398 -k1,9506:30862709,37256423:177397 -k1,9506:31966991,37256423:0 -) -(1,9507:7246811,38097911:24720180,513147,134348 -g1,9506:9060847,38097911 -g1,9506:9615936,38097911 -g1,9506:12510661,38097911 -g1,9506:13994396,38097911 -g1,9506:16571927,38097911 -g1,9506:17927866,38097911 -g1,9506:18809980,38097911 -g1,9506:20659406,38097911 -g1,9506:23732389,38097911 -g1,9506:24617780,38097911 -k1,9507:31966991,38097911:3772911 -g1,9507:31966991,38097911 -) -(1,9509:7246811,38939399:24720180,513147,126483 -h1,9508:7246811,38939399:983040,0,0 -k1,9508:9608119,38939399:181581 -k1,9508:10882185,38939399:181581 -k1,9508:11730922,38939399:181581 -(1,9508:11730922,38939399:0,459977,115847 -r1,9729:12792611,38939399:1061689,575824,115847 -k1,9508:11730922,38939399:-1061689 -) -(1,9508:11730922,38939399:1061689,459977,115847 -k1,9508:11730922,38939399:3277 -h1,9508:12789334,38939399:0,411205,112570 -) -k1,9508:12974192,38939399:181581 -k1,9508:14788931,38939399:181581 -k1,9508:15918163,38939399:181581 -k1,9508:18816868,38939399:181582 -k1,9508:20385846,38939399:181581 -k1,9508:20923287,38939399:181581 -k1,9508:22098394,38939399:181581 -k1,9508:22939267,38939399:181581 -k1,9508:25108555,38939399:181581 -k1,9508:28163890,38939399:181581 -k1,9508:28876968,38939399:181581 -k1,9508:31966991,38939399:0 -) -(1,9509:7246811,39780887:24720180,485622,134348 -g1,9508:8062078,39780887 -g1,9508:10539994,39780887 -h1,9508:11510582,39780887:0,0,0 -g1,9508:11709811,39780887 -g1,9508:12718410,39780887 -g1,9508:14415792,39780887 -h1,9508:15611169,39780887:0,0,0 -k1,9509:31966991,39780887:16182152 -g1,9509:31966991,39780887 -) -] -) -] -r1,9729:32583029,40505059:26214,8366297,0 -) -] -) -) -g1,9729:32583029,39915235 -) -] -(1,9729:32583029,45706769:0,0,0 -g1,9729:32583029,45706769 -) -) -] -(1,9729:6630773,47279633:25952256,0,0 -h1,9729:6630773,47279633:25952256,0,0 -) -] -(1,9729:4262630,4025873:0,0,0 -[1,9729:-473656,4025873:0,0,0 -(1,9729:-473656,-710413:0,0,0 -(1,9729:-473656,-710413:0,0,0 -g1,9729:-473656,-710413 -) -g1,9729:-473656,-710413 -) -] -) -] -!21134 -}178 -!12 -{179 -[1,9729:4262630,47279633:28320399,43253760,0 -(1,9729:4262630,4025873:0,0,0 -[1,9729:-473656,4025873:0,0,0 -(1,9729:-473656,-710413:0,0,0 -(1,9729:-473656,-644877:0,0,0 -k1,9729:-473656,-644877:-65536 -) -(1,9729:-473656,4736287:0,0,0 -k1,9729:-473656,4736287:5209943 -) -g1,9729:-473656,-710413 -) -] -) -[1,9729:6630773,47279633:25952256,43253760,0 -[1,9729:6630773,4812305:25952256,786432,0 -(1,9729:6630773,4812305:25952256,505283,134348 -(1,9729:6630773,4812305:25952256,505283,134348 -g1,9729:3078558,4812305 -[1,9729:3078558,4812305:0,0,0 -(1,9729:3078558,2439708:0,1703936,0 -k1,9729:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,9729:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,9729:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,9729:3078558,4812305:0,0,0 -(1,9729:3078558,2439708:0,1703936,0 -g1,9729:29030814,2439708 -g1,9729:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,9729:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,9729:37855564,2439708:1179648,16384,0 -) -) -k1,9729:3078556,2439708:-34777008 -) -] -[1,9729:3078558,4812305:0,0,0 -(1,9729:3078558,49800853:0,16384,2228224 -k1,9729:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,9729:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,9729:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,9729:3078558,4812305:0,0,0 -(1,9729:3078558,49800853:0,16384,2228224 -g1,9729:29030814,49800853 -g1,9729:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,9729:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,9729:37855564,49800853:1179648,16384,0 -) -) -k1,9729:3078556,49800853:-34777008 -) -] -g1,9729:6630773,4812305 -k1,9729:24502442,4812305:16676292 -g1,9729:25889183,4812305 -g1,9729:26537989,4812305 -g1,9729:29852144,4812305 -) -) -] -[1,9729:6630773,45706769:25952256,40108032,0 -(1,9729:6630773,45706769:25952256,40108032,0 -(1,9729:6630773,45706769:0,0,0 -g1,9729:6630773,45706769 -) -[1,9729:6630773,45706769:25952256,40108032,0 -v1,9729:6630773,6254097:0,393216,0 -(1,9729:6630773,45116945:25952256,39256064,589824 -g1,9729:6630773,45116945 -(1,9729:6630773,45116945:25952256,39256064,589824 -(1,9729:6630773,45706769:25952256,39845888,0 -[1,9729:6630773,45706769:25952256,39845888,0 -(1,9729:6630773,45706769:25952256,39845888,0 -r1,9729:6656987,45706769:26214,39845888,0 -[1,9729:6656987,45706769:25899828,39845888,0 -(1,9729:6656987,45116945:25899828,38666240,0 -[1,9729:7246811,45116945:24720180,38666240,0 -v1,9511:7246811,6843921:0,393216,0 -(1,9530:7246811,15865993:24720180,9415288,196608 -g1,9530:7246811,15865993 -g1,9530:7246811,15865993 -g1,9530:7050203,15865993 -(1,9530:7050203,15865993:0,9415288,196608 -r1,9729:32163599,15865993:25113396,9611896,196608 -k1,9530:7050203,15865993:-25113396 -) -(1,9530:7050203,15865993:25113396,9415288,196608 -[1,9530:7246811,15865993:24720180,9218680,0 -(1,9513:7246811,7057831:24720180,410518,101187 -(1,9512:7246811,7057831:0,0,0 -g1,9512:7246811,7057831 -g1,9512:7246811,7057831 -g1,9512:6919131,7057831 -(1,9512:6919131,7057831:0,0,0 -) -g1,9512:7246811,7057831 -) -g1,9513:9775977,7057831 -g1,9513:10724415,7057831 -g1,9513:14834310,7057831 -g1,9513:15466602,7057831 -g1,9513:17363477,7057831 -g1,9513:17995769,7057831 -g1,9513:18628061,7057831 -g1,9513:20841082,7057831 -g1,9513:21473374,7057831 -g1,9513:22105666,7057831 -g1,9513:22737958,7057831 -k1,9513:22737958,7057831:0 -h1,9513:25899414,7057831:0,0,0 -k1,9513:31966991,7057831:6067577 -g1,9513:31966991,7057831 -) -(1,9514:7246811,7724009:24720180,404226,76021 -h1,9514:7246811,7724009:0,0,0 -g1,9514:9459831,7724009 -g1,9514:10408269,7724009 -k1,9514:10408269,7724009:0 -h1,9514:12305143,7724009:0,0,0 -k1,9514:31966991,7724009:19661848 -g1,9514:31966991,7724009 -) -(1,9515:7246811,8390187:24720180,410518,101187 -h1,9515:7246811,8390187:0,0,0 -g1,9515:10092122,8390187 -g1,9515:11040560,8390187 -g1,9515:13253581,8390187 -g1,9515:13885873,8390187 -g1,9515:14518165,8390187 -g1,9515:15150457,8390187 -g1,9515:15782749,8390187 -g1,9515:16415041,8390187 -g1,9515:17363479,8390187 -g1,9515:17995771,8390187 -g1,9515:18628063,8390187 -g1,9515:19260355,8390187 -g1,9515:19892647,8390187 -g1,9515:20841085,8390187 -g1,9515:21473377,8390187 -g1,9515:22105669,8390187 -g1,9515:22737961,8390187 -g1,9515:23370253,8390187 -g1,9515:24002545,8390187 -g1,9515:24634837,8390187 -h1,9515:25899421,8390187:0,0,0 -k1,9515:31966991,8390187:6067570 -g1,9515:31966991,8390187 -) -(1,9516:7246811,9056365:24720180,410518,76021 -h1,9516:7246811,9056365:0,0,0 -g1,9516:8511394,9056365 -g1,9516:11356705,9056365 -g1,9516:12305142,9056365 -g1,9516:15466599,9056365 -h1,9516:15782745,9056365:0,0,0 -k1,9516:31966991,9056365:16184246 -g1,9516:31966991,9056365 -) -(1,9517:7246811,9722543:24720180,410518,101187 -h1,9517:7246811,9722543:0,0,0 -g1,9517:7562957,9722543 -g1,9517:9775977,9722543 -g1,9517:10724415,9722543 -g1,9517:13885873,9722543 -g1,9517:19260350,9722543 -g1,9517:20841079,9722543 -g1,9517:21473371,9722543 -h1,9517:24634828,9722543:0,0,0 -k1,9517:31966991,9722543:7332163 -g1,9517:31966991,9722543 -) -(1,9518:7246811,10388721:24720180,404226,76021 -h1,9518:7246811,10388721:0,0,0 -g1,9518:7562957,10388721 -h1,9518:7879103,10388721:0,0,0 -k1,9518:31966991,10388721:24087888 -g1,9518:31966991,10388721 -) -(1,9519:7246811,11054899:24720180,404226,82312 -h1,9519:7246811,11054899:0,0,0 -g1,9519:11040560,11054899 -g1,9519:14202017,11054899 -g1,9519:14834309,11054899 -h1,9519:15466601,11054899:0,0,0 -k1,9519:31966991,11054899:16500390 -g1,9519:31966991,11054899 -) -(1,9529:7246811,11786613:24720180,410518,9436 -(1,9521:7246811,11786613:0,0,0 -g1,9521:7246811,11786613 -g1,9521:7246811,11786613 -g1,9521:6919131,11786613 -(1,9521:6919131,11786613:0,0,0 -) -g1,9521:7246811,11786613 -) -g1,9529:8195248,11786613 -g1,9529:9775977,11786613 -g1,9529:10724414,11786613 -h1,9529:11040560,11786613:0,0,0 -k1,9529:31966992,11786613:20926432 -g1,9529:31966992,11786613 -) -(1,9529:7246811,12452791:24720180,410518,31456 -h1,9529:7246811,12452791:0,0,0 -g1,9529:8195248,12452791 -g1,9529:8511394,12452791 -g1,9529:9143686,12452791 -g1,9529:11040560,12452791 -g1,9529:11988997,12452791 -h1,9529:12621288,12452791:0,0,0 -k1,9529:31966992,12452791:19345704 -g1,9529:31966992,12452791 -) -(1,9529:7246811,13118969:24720180,404226,82312 -h1,9529:7246811,13118969:0,0,0 -g1,9529:8195248,13118969 -g1,9529:8511394,13118969 -g1,9529:8827540,13118969 -g1,9529:10092123,13118969 -g1,9529:12621289,13118969 -g1,9529:15782746,13118969 -g1,9529:17047329,13118969 -h1,9529:18311912,13118969:0,0,0 -k1,9529:31966991,13118969:13655079 -g1,9529:31966991,13118969 -) -(1,9529:7246811,13785147:24720180,410518,31456 -h1,9529:7246811,13785147:0,0,0 -g1,9529:8195248,13785147 -g1,9529:8511394,13785147 -g1,9529:9143686,13785147 -g1,9529:11040560,13785147 -g1,9529:11988997,13785147 -h1,9529:12621288,13785147:0,0,0 -k1,9529:31966992,13785147:19345704 -g1,9529:31966992,13785147 -) -(1,9529:7246811,14451325:24720180,404226,82312 -h1,9529:7246811,14451325:0,0,0 -g1,9529:8195248,14451325 -g1,9529:8511394,14451325 -g1,9529:8827540,14451325 -g1,9529:10092123,14451325 -g1,9529:12621289,14451325 -g1,9529:15782746,14451325 -g1,9529:17047329,14451325 -h1,9529:18311912,14451325:0,0,0 -k1,9529:31966991,14451325:13655079 -g1,9529:31966991,14451325 -) -(1,9529:7246811,15117503:24720180,410518,31456 -h1,9529:7246811,15117503:0,0,0 -g1,9529:8195248,15117503 -g1,9529:8511394,15117503 -g1,9529:9143686,15117503 -g1,9529:11040560,15117503 -g1,9529:11988997,15117503 -h1,9529:12621288,15117503:0,0,0 -k1,9529:31966992,15117503:19345704 -g1,9529:31966992,15117503 -) -(1,9529:7246811,15783681:24720180,404226,82312 -h1,9529:7246811,15783681:0,0,0 -g1,9529:8195248,15783681 -g1,9529:8511394,15783681 -g1,9529:8827540,15783681 -g1,9529:10092123,15783681 -g1,9529:12621289,15783681 -g1,9529:15782746,15783681 -g1,9529:17047329,15783681 -h1,9529:18311912,15783681:0,0,0 -k1,9529:31966991,15783681:13655079 -g1,9529:31966991,15783681 -) -] -) -g1,9530:31966991,15865993 -g1,9530:7246811,15865993 -g1,9530:7246811,15865993 -g1,9530:31966991,15865993 -g1,9530:31966991,15865993 -) -h1,9530:7246811,16062601:0,0,0 -(1,9534:7246811,17790252:24720180,505283,126483 -h1,9533:7246811,17790252:983040,0,0 -k1,9533:9388069,17790252:340329 -k1,9533:11497214,17790252:340328 -k1,9533:12585309,17790252:340329 -k1,9533:15938327,17790252:340328 -k1,9533:16634516,17790252:340329 -k1,9533:20451529,17790252:340328 -k1,9533:24498574,17790252:340329 -k1,9533:25370399,17790252:340328 -k1,9533:28494697,17790252:340329 -k1,9533:30228976,17790252:340328 -k1,9534:31966991,17790252:0 -) -(1,9534:7246811,18631740:24720180,513147,126483 -(1,9533:7246811,18631740:0,459977,115847 -r1,9729:11473907,18631740:4227096,575824,115847 -k1,9533:7246811,18631740:-4227096 -) -(1,9533:7246811,18631740:4227096,459977,115847 -k1,9533:7246811,18631740:3277 -h1,9533:11470630,18631740:0,411205,112570 -) -k1,9533:11918536,18631740:270959 -k1,9533:12659389,18631740:270960 -k1,9533:13461845,18631740:270959 -k1,9533:15710025,18631740:270959 -k1,9533:17679023,18631740:270960 -k1,9533:20823736,18631740:270959 -k1,9533:22086256,18631740:270960 -k1,9533:24065739,18631740:270959 -k1,9533:28263615,18631740:270959 -k1,9533:29296103,18631740:270960 -k1,9533:30586147,18631740:270959 -k1,9533:31966991,18631740:0 -) -(1,9534:7246811,19473228:24720180,513147,134348 -k1,9533:8186049,19473228:256353 -k1,9533:9854703,19473228:256353 -k1,9533:11678677,19473228:256353 -k1,9533:13161209,19473228:256353 -k1,9533:14904574,19473228:256353 -k1,9533:16640075,19473228:256353 -(1,9533:16640075,19473228:0,459977,115847 -r1,9729:20867171,19473228:4227096,575824,115847 -k1,9533:16640075,19473228:-4227096 -) -(1,9533:16640075,19473228:4227096,459977,115847 -k1,9533:16640075,19473228:3277 -h1,9533:20863894,19473228:0,411205,112570 -) -k1,9533:21123524,19473228:256353 -k1,9533:22248229,19473228:256353 -k1,9533:23608864,19473228:256353 -k1,9533:26257936,19473228:256353 -k1,9533:26870149,19473228:256353 -k1,9533:30101181,19473228:256353 -k1,9533:31966991,19473228:0 -) -(1,9534:7246811,20314716:24720180,513147,7863 -g1,9533:8713506,20314716 -g1,9533:9268595,20314716 -k1,9534:31966990,20314716:19981272 -g1,9534:31966990,20314716 -) -v1,9536:7246811,21746432:0,393216,0 -(1,9550:7246811,27358446:24720180,6005230,196608 -g1,9550:7246811,27358446 -g1,9550:7246811,27358446 -g1,9550:7050203,27358446 -(1,9550:7050203,27358446:0,6005230,196608 -r1,9729:32163599,27358446:25113396,6201838,196608 -k1,9550:7050203,27358446:-25113396 -) -(1,9550:7050203,27358446:25113396,6005230,196608 -[1,9550:7246811,27358446:24720180,5808622,0 -(1,9538:7246811,21954050:24720180,404226,107478 -(1,9537:7246811,21954050:0,0,0 -g1,9537:7246811,21954050 -g1,9537:7246811,21954050 -g1,9537:6919131,21954050 -(1,9537:6919131,21954050:0,0,0 -) -g1,9537:7246811,21954050 -) -g1,9538:10408268,21954050 -g1,9538:11356706,21954050 -g1,9538:12305143,21954050 -g1,9538:12937435,21954050 -h1,9538:13569726,21954050:0,0,0 -k1,9538:31966990,21954050:18397264 -g1,9538:31966990,21954050 -) -(1,9539:7246811,22620228:24720180,410518,107478 -h1,9539:7246811,22620228:0,0,0 -g1,9539:15466599,22620228 -g1,9539:17047328,22620228 -g1,9539:17679620,22620228 -h1,9539:20208785,22620228:0,0,0 -k1,9539:31966991,22620228:11758206 -g1,9539:31966991,22620228 -) -(1,9549:7246811,23351942:24720180,379060,0 -(1,9541:7246811,23351942:0,0,0 -g1,9541:7246811,23351942 -g1,9541:7246811,23351942 -g1,9541:6919131,23351942 -(1,9541:6919131,23351942:0,0,0 -) -g1,9541:7246811,23351942 -) -h1,9549:7879102,23351942:0,0,0 -k1,9549:31966990,23351942:24087888 -g1,9549:31966990,23351942 -) -(1,9549:7246811,24018120:24720180,404226,7863 -h1,9549:7246811,24018120:0,0,0 -g1,9549:8195248,24018120 -h1,9549:9775976,24018120:0,0,0 -k1,9549:31966992,24018120:22191016 -g1,9549:31966992,24018120 -) -(1,9549:7246811,24684298:24720180,410518,107478 -h1,9549:7246811,24684298:0,0,0 -g1,9549:8195248,24684298 -g1,9549:11672851,24684298 -g1,9549:12305143,24684298 -g1,9549:19576494,24684298 -g1,9549:21157223,24684298 -g1,9549:21789515,24684298 -h1,9549:24318680,24684298:0,0,0 -k1,9549:31966991,24684298:7648311 -g1,9549:31966991,24684298 -) -(1,9549:7246811,25350476:24720180,379060,0 -h1,9549:7246811,25350476:0,0,0 -h1,9549:7879102,25350476:0,0,0 -k1,9549:31966990,25350476:24087888 -g1,9549:31966990,25350476 -) -(1,9549:7246811,26016654:24720180,410518,7863 -h1,9549:7246811,26016654:0,0,0 -g1,9549:8195248,26016654 -h1,9549:12305142,26016654:0,0,0 -k1,9549:31966990,26016654:19661848 -g1,9549:31966990,26016654 -) -(1,9549:7246811,26682832:24720180,404226,101187 -h1,9549:7246811,26682832:0,0,0 -g1,9549:8195248,26682832 -g1,9549:11988996,26682832 -g1,9549:12305142,26682832 -g1,9549:12621288,26682832 -g1,9549:12937434,26682832 -g1,9549:13253580,26682832 -g1,9549:13569726,26682832 -g1,9549:13885872,26682832 -g1,9549:14202018,26682832 -g1,9549:14518164,26682832 -g1,9549:14834310,26682832 -g1,9549:15150456,26682832 -g1,9549:15466602,26682832 -h1,9549:15782748,26682832:0,0,0 -k1,9549:31966991,26682832:16184243 -g1,9549:31966991,26682832 -) -(1,9549:7246811,27349010:24720180,388497,9436 -h1,9549:7246811,27349010:0,0,0 -g1,9549:8195248,27349010 -g1,9549:8511394,27349010 -g1,9549:8827540,27349010 -g1,9549:9143686,27349010 -g1,9549:9459832,27349010 -g1,9549:9775978,27349010 -g1,9549:11988998,27349010 -g1,9549:12305144,27349010 -g1,9549:12621290,27349010 -g1,9549:12937436,27349010 -g1,9549:13253582,27349010 -g1,9549:13569728,27349010 -g1,9549:13885874,27349010 -h1,9549:15782748,27349010:0,0,0 -k1,9549:31966991,27349010:16184243 -g1,9549:31966991,27349010 -) -] -) -g1,9550:31966991,27358446 -g1,9550:7246811,27358446 -g1,9550:7246811,27358446 -g1,9550:31966991,27358446 -g1,9550:31966991,27358446 -) -h1,9550:7246811,27555054:0,0,0 -(1,9554:7246811,29282704:24720180,513147,134348 -h1,9553:7246811,29282704:983040,0,0 -k1,9553:9207231,29282704:159491 -k1,9553:11021506,29282704:159491 -k1,9553:12172557,29282704:159491 -k1,9553:14083825,29282704:159491 -k1,9553:17269113,29282704:159491 -k1,9553:18376254,29282704:159490 -k1,9553:19554830,29282704:159491 -k1,9553:23970229,29282704:159491 -k1,9553:24789012,29282704:159491 -k1,9553:27923182,29282704:159491 -k1,9553:30278784,29282704:159491 -k1,9554:31966991,29282704:0 -) -(1,9554:7246811,30124192:24720180,513147,134348 -k1,9553:8784288,30124192:228723 -k1,9553:9629049,30124192:228723 -k1,9553:11291700,30124192:228723 -k1,9553:11935236,30124192:228693 -k1,9553:13355404,30124192:228723 -k1,9553:16142653,30124192:228723 -k1,9553:19443704,30124192:228723 -k1,9553:22756551,30124192:228723 -k1,9553:23443371,30124192:228723 -k1,9553:24203591,30124192:228723 -k1,9553:29444508,30124192:228723 -k1,9553:30324659,30124192:228723 -k1,9553:31966991,30124192:0 -) -(1,9554:7246811,30965680:24720180,513147,134348 -k1,9553:9372033,30965680:137515 -k1,9553:12383302,30965680:137515 -k1,9553:18157568,30965680:137514 -k1,9553:18981245,30965680:137515 -k1,9553:21488542,30965680:137515 -k1,9553:22579606,30965680:137515 -k1,9553:23821403,30965680:137515 -k1,9553:25051402,30965680:137514 -k1,9553:28214714,30965680:137515 -k1,9553:29498454,30965680:137515 -(1,9553:29498454,30965680:0,452978,115847 -r1,9729:31966991,30965680:2468537,568825,115847 -k1,9553:29498454,30965680:-2468537 -) -(1,9553:29498454,30965680:2468537,452978,115847 -k1,9553:29498454,30965680:3277 -h1,9553:31963714,30965680:0,411205,112570 -) -k1,9553:31966991,30965680:0 -) -(1,9554:7246811,31807168:24720180,513147,115847 -k1,9553:8132341,31807168:234102 -k1,9553:11303112,31807168:234103 -k1,9553:11893074,31807168:234102 -k1,9553:14670628,31807168:234102 -k1,9553:15590892,31807168:234102 -k1,9553:17224844,31807168:234103 -k1,9553:18650391,31807168:234102 -k1,9553:20318421,31807168:234102 -k1,9553:21645009,31807168:234103 -(1,9553:21645009,31807168:0,459977,115847 -r1,9729:25872105,31807168:4227096,575824,115847 -k1,9553:21645009,31807168:-4227096 -) -(1,9553:21645009,31807168:4227096,459977,115847 -k1,9553:21645009,31807168:3277 -h1,9553:25868828,31807168:0,411205,112570 -) -k1,9553:26106207,31807168:234102 -k1,9553:26991737,31807168:234102 -k1,9553:29618558,31807168:234102 -k1,9553:30310758,31807168:234103 -k1,9553:31196288,31807168:234102 -k1,9553:31966991,31807168:0 -) -(1,9554:7246811,32648656:24720180,513147,134348 -g1,9553:9405566,32648656 -g1,9553:10264087,32648656 -g1,9553:12018485,32648656 -(1,9553:12018485,32648656:0,459977,115847 -r1,9729:14487022,32648656:2468537,575824,115847 -k1,9553:12018485,32648656:-2468537 -) -(1,9553:12018485,32648656:2468537,459977,115847 -k1,9553:12018485,32648656:3277 -h1,9553:14483745,32648656:0,411205,112570 -) -g1,9553:14859921,32648656 -g1,9553:17113048,32648656 -g1,9553:18259928,32648656 -g1,9553:20393780,32648656 -g1,9553:20948869,32648656 -k1,9554:31966991,32648656:8856745 -g1,9554:31966991,32648656 -) -v1,9556:7246811,34080372:0,393216,0 -(1,9570:7246811,39692386:24720180,6005230,196608 -g1,9570:7246811,39692386 -g1,9570:7246811,39692386 -g1,9570:7050203,39692386 -(1,9570:7050203,39692386:0,6005230,196608 -r1,9729:32163599,39692386:25113396,6201838,196608 -k1,9570:7050203,39692386:-25113396 -) -(1,9570:7050203,39692386:25113396,6005230,196608 -[1,9570:7246811,39692386:24720180,5808622,0 -(1,9558:7246811,34287990:24720180,404226,107478 -(1,9557:7246811,34287990:0,0,0 -g1,9557:7246811,34287990 -g1,9557:7246811,34287990 -g1,9557:6919131,34287990 -(1,9557:6919131,34287990:0,0,0 -) -g1,9557:7246811,34287990 -) -g1,9558:10408268,34287990 -g1,9558:11356706,34287990 -g1,9558:14834309,34287990 -g1,9558:16415038,34287990 -g1,9558:17679621,34287990 -g1,9558:18311913,34287990 -h1,9558:19576496,34287990:0,0,0 -k1,9558:31966991,34287990:12390495 -g1,9558:31966991,34287990 -) -(1,9559:7246811,34954168:24720180,410518,107478 -h1,9559:7246811,34954168:0,0,0 -g1,9559:15466599,34954168 -g1,9559:17047328,34954168 -g1,9559:17679620,34954168 -h1,9559:20208785,34954168:0,0,0 -k1,9559:31966991,34954168:11758206 -g1,9559:31966991,34954168 -) -(1,9569:7246811,35685882:24720180,379060,0 -(1,9561:7246811,35685882:0,0,0 -g1,9561:7246811,35685882 -g1,9561:7246811,35685882 -g1,9561:6919131,35685882 -(1,9561:6919131,35685882:0,0,0 -) -g1,9561:7246811,35685882 -) -h1,9569:7879102,35685882:0,0,0 -k1,9569:31966990,35685882:24087888 -g1,9569:31966990,35685882 -) -(1,9569:7246811,36352060:24720180,404226,7863 -h1,9569:7246811,36352060:0,0,0 -g1,9569:8195248,36352060 -h1,9569:9775976,36352060:0,0,0 -k1,9569:31966992,36352060:22191016 -g1,9569:31966992,36352060 -) -(1,9569:7246811,37018238:24720180,410518,107478 -h1,9569:7246811,37018238:0,0,0 -g1,9569:8195248,37018238 -g1,9569:11672851,37018238 -g1,9569:12305143,37018238 -g1,9569:19576494,37018238 -g1,9569:21157223,37018238 -g1,9569:21789515,37018238 -h1,9569:24318680,37018238:0,0,0 -k1,9569:31966991,37018238:7648311 -g1,9569:31966991,37018238 -) -(1,9569:7246811,37684416:24720180,379060,0 -h1,9569:7246811,37684416:0,0,0 -h1,9569:7879102,37684416:0,0,0 -k1,9569:31966990,37684416:24087888 -g1,9569:31966990,37684416 -) -(1,9569:7246811,38350594:24720180,410518,7863 -h1,9569:7246811,38350594:0,0,0 -g1,9569:8195248,38350594 -h1,9569:12305142,38350594:0,0,0 -k1,9569:31966990,38350594:19661848 -g1,9569:31966990,38350594 -) -(1,9569:7246811,39016772:24720180,404226,101187 -h1,9569:7246811,39016772:0,0,0 -g1,9569:8195248,39016772 -g1,9569:11988996,39016772 -g1,9569:12305142,39016772 -g1,9569:12621288,39016772 -g1,9569:12937434,39016772 -g1,9569:13253580,39016772 -g1,9569:13569726,39016772 -g1,9569:13885872,39016772 -g1,9569:14202018,39016772 -g1,9569:14518164,39016772 -g1,9569:14834310,39016772 -g1,9569:15150456,39016772 -g1,9569:15466602,39016772 -h1,9569:15782748,39016772:0,0,0 -k1,9569:31966991,39016772:16184243 -g1,9569:31966991,39016772 -) -(1,9569:7246811,39682950:24720180,388497,9436 -h1,9569:7246811,39682950:0,0,0 -g1,9569:8195248,39682950 -g1,9569:8511394,39682950 -g1,9569:8827540,39682950 -g1,9569:9143686,39682950 -g1,9569:9459832,39682950 -g1,9569:9775978,39682950 -g1,9569:11988998,39682950 -g1,9569:12305144,39682950 -g1,9569:12621290,39682950 -g1,9569:12937436,39682950 -g1,9569:13253582,39682950 -g1,9569:13569728,39682950 -g1,9569:13885874,39682950 -h1,9569:15782748,39682950:0,0,0 -k1,9569:31966991,39682950:16184243 -g1,9569:31966991,39682950 -) -] -) -g1,9570:31966991,39692386 -g1,9570:7246811,39692386 -g1,9570:7246811,39692386 -g1,9570:31966991,39692386 -g1,9570:31966991,39692386 -) -h1,9570:7246811,39888994:0,0,0 -(1,9574:7246811,41616645:24720180,513147,134348 -h1,9573:7246811,41616645:983040,0,0 -k1,9573:9550838,41616645:278965 -k1,9573:10848888,41616645:278965 -k1,9573:13434066,41616645:278966 -k1,9573:16787325,41616645:278965 -k1,9573:17725582,41616645:278965 -k1,9573:21387515,41616645:278965 -k1,9573:22022340,41616645:278965 -k1,9573:24844757,41616645:278965 -k1,9573:26391189,41616645:278966 -k1,9573:27026014,41616645:278965 -k1,9573:29344459,41616645:278965 -k1,9573:30491776,41616645:278965 -k1,9573:31966991,41616645:0 -) -(1,9574:7246811,42458133:24720180,513147,115847 -k1,9573:10296584,42458133:265804 -k1,9573:13347013,42458133:265804 -(1,9573:13347013,42458133:0,452978,115847 -r1,9729:18277533,42458133:4930520,568825,115847 -k1,9573:13347013,42458133:-4930520 -) -(1,9573:13347013,42458133:4930520,452978,115847 -k1,9573:13347013,42458133:3277 -h1,9573:18274256,42458133:0,411205,112570 -) -k1,9573:18543338,42458133:265805 -k1,9573:20000587,42458133:265804 -(1,9573:20000587,42458133:0,459977,115847 -r1,9729:22820836,42458133:2820249,575824,115847 -k1,9573:20000587,42458133:-2820249 -) -(1,9573:20000587,42458133:2820249,459977,115847 -k1,9573:20000587,42458133:3277 -h1,9573:22817559,42458133:0,411205,112570 -) -k1,9573:23260310,42458133:265804 -k1,9573:24722801,42458133:265804 -k1,9573:26294739,42458133:265805 -k1,9573:27219835,42458133:265804 -k1,9573:29182366,42458133:265804 -k1,9573:31966991,42458133:0 -) -(1,9574:7246811,43299621:24720180,513147,134348 -k1,9573:9806230,43299621:218473 -k1,9573:10380563,43299621:218473 -k1,9573:13573716,43299621:218474 -k1,9573:15770066,43299621:218473 -k1,9573:19350536,43299621:218473 -k1,9573:20588094,43299621:218473 -k1,9573:24734140,43299621:218473 -k1,9573:25611905,43299621:218473 -k1,9573:26849464,43299621:218474 -k1,9573:29611389,43299621:218473 -k1,9573:30516024,43299621:218473 -k1,9574:31966991,43299621:0 -) -(1,9574:7246811,44141109:24720180,513147,134348 -k1,9573:9339831,44141109:138081 -k1,9573:11847694,44141109:138081 -k1,9573:13675293,44141109:138081 -(1,9573:13675293,44141109:0,459977,115847 -r1,9729:16495542,44141109:2820249,575824,115847 -k1,9573:13675293,44141109:-2820249 -) -(1,9573:13675293,44141109:2820249,459977,115847 -k1,9573:13675293,44141109:3277 -h1,9573:16492265,44141109:0,411205,112570 -) -k1,9573:16633623,44141109:138081 -k1,9573:19112650,44141109:138081 -k1,9573:19606590,44141109:138080 -k1,9573:21617690,44141109:138081 -k1,9573:24730450,44141109:138081 -k1,9573:26734341,44141109:138081 -k1,9573:28266373,44141109:138081 -k1,9573:29423539,44141109:138081 -k1,9573:31966991,44141109:0 -) -(1,9574:7246811,44982597:24720180,513147,134348 -g1,9573:10651406,44982597 -g1,9573:11798286,44982597 -k1,9574:31966991,44982597:17422746 -g1,9574:31966991,44982597 -) -] -) -] -r1,9729:32583029,45706769:26214,39845888,0 -) -] -) -) -g1,9729:32583029,45116945 -) -] -(1,9729:32583029,45706769:0,0,0 -g1,9729:32583029,45706769 -) -) -] -(1,9729:6630773,47279633:25952256,0,0 -h1,9729:6630773,47279633:25952256,0,0 -) -] -(1,9729:4262630,4025873:0,0,0 -[1,9729:-473656,4025873:0,0,0 -(1,9729:-473656,-710413:0,0,0 -(1,9729:-473656,-710413:0,0,0 -g1,9729:-473656,-710413 -) -g1,9729:-473656,-710413 -) -] -) -] -!23978 -}179 -!12 -{180 -[1,9729:4262630,47279633:28320399,43253760,0 -(1,9729:4262630,4025873:0,0,0 -[1,9729:-473656,4025873:0,0,0 -(1,9729:-473656,-710413:0,0,0 -(1,9729:-473656,-644877:0,0,0 -k1,9729:-473656,-644877:-65536 -) -(1,9729:-473656,4736287:0,0,0 -k1,9729:-473656,4736287:5209943 -) -g1,9729:-473656,-710413 -) -] -) -[1,9729:6630773,47279633:25952256,43253760,0 -[1,9729:6630773,4812305:25952256,786432,0 -(1,9729:6630773,4812305:25952256,513147,126483 -(1,9729:6630773,4812305:25952256,513147,126483 -g1,9729:3078558,4812305 -[1,9729:3078558,4812305:0,0,0 -(1,9729:3078558,2439708:0,1703936,0 -k1,9729:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,9729:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,9729:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,9729:3078558,4812305:0,0,0 -(1,9729:3078558,2439708:0,1703936,0 -g1,9729:29030814,2439708 -g1,9729:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,9729:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,9729:37855564,2439708:1179648,16384,0 -) -) -k1,9729:3078556,2439708:-34777008 -) -] -[1,9729:3078558,4812305:0,0,0 -(1,9729:3078558,49800853:0,16384,2228224 -k1,9729:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,9729:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,9729:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,9729:3078558,4812305:0,0,0 -(1,9729:3078558,49800853:0,16384,2228224 -g1,9729:29030814,49800853 -g1,9729:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,9729:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,9729:37855564,49800853:1179648,16384,0 -) -) -k1,9729:3078556,49800853:-34777008 -) -] -g1,9729:6630773,4812305 -g1,9729:6630773,4812305 -g1,9729:8691224,4812305 -g1,9729:11722264,4812305 -k1,9729:31387652,4812305:19665388 -) -) -] -[1,9729:6630773,45706769:25952256,40108032,0 -(1,9729:6630773,45706769:25952256,40108032,0 -(1,9729:6630773,45706769:0,0,0 -g1,9729:6630773,45706769 -) -[1,9729:6630773,45706769:25952256,40108032,0 -v1,9729:6630773,6254097:0,393216,0 -(1,9729:6630773,45116945:25952256,39256064,589824 -g1,9729:6630773,45116945 -(1,9729:6630773,45116945:25952256,39256064,589824 -(1,9729:6630773,45706769:25952256,39845888,0 -[1,9729:6630773,45706769:25952256,39845888,0 -(1,9729:6630773,45706769:25952256,39845888,0 -r1,9729:6656987,45706769:26214,39845888,0 -[1,9729:6656987,45706769:25899828,39845888,0 -(1,9729:6656987,45116945:25899828,38666240,0 -[1,9729:7246811,45116945:24720180,38666240,0 -v1,9576:7246811,6843921:0,393216,0 -(1,9590:7246811,10610162:24720180,4159457,196608 -g1,9590:7246811,10610162 -g1,9590:7246811,10610162 -g1,9590:7050203,10610162 -(1,9590:7050203,10610162:0,4159457,196608 -r1,9729:32163599,10610162:25113396,4356065,196608 -k1,9590:7050203,10610162:-25113396 -) -(1,9590:7050203,10610162:25113396,4159457,196608 -[1,9590:7246811,10610162:24720180,3962849,0 -(1,9578:7246811,7057831:24720180,410518,107478 -(1,9577:7246811,7057831:0,0,0 -g1,9577:7246811,7057831 -g1,9577:7246811,7057831 -g1,9577:6919131,7057831 -(1,9577:6919131,7057831:0,0,0 -) -g1,9577:7246811,7057831 -) -g1,9578:12621288,7057831 -g1,9578:13569726,7057831 -g1,9578:16415037,7057831 -g1,9578:17047329,7057831 -h1,9578:17679620,7057831:0,0,0 -k1,9578:31966991,7057831:14287371 -g1,9578:31966991,7057831 -) -(1,9579:7246811,7724009:24720180,410518,107478 -h1,9579:7246811,7724009:0,0,0 -h1,9579:12305142,7724009:0,0,0 -k1,9579:31966990,7724009:19661848 -g1,9579:31966990,7724009 -) -(1,9583:7246811,8455723:24720180,404226,101187 -(1,9581:7246811,8455723:0,0,0 -g1,9581:7246811,8455723 -g1,9581:7246811,8455723 -g1,9581:6919131,8455723 -(1,9581:6919131,8455723:0,0,0 -) -g1,9581:7246811,8455723 -) -g1,9583:8195248,8455723 -g1,9583:9459831,8455723 -g1,9583:10408268,8455723 -g1,9583:11040560,8455723 -h1,9583:11672851,8455723:0,0,0 -k1,9583:31966991,8455723:20294140 -g1,9583:31966991,8455723 -) -(1,9585:7246811,9777261:24720180,410518,107478 -(1,9584:7246811,9777261:0,0,0 -g1,9584:7246811,9777261 -g1,9584:7246811,9777261 -g1,9584:6919131,9777261 -(1,9584:6919131,9777261:0,0,0 -) -g1,9584:7246811,9777261 -) -k1,9585:7246811,9777261:0 -h1,9585:16098890,9777261:0,0,0 -k1,9585:31966991,9777261:15868101 -g1,9585:31966991,9777261 -) -(1,9589:7246811,10508975:24720180,379060,101187 -(1,9587:7246811,10508975:0,0,0 -g1,9587:7246811,10508975 -g1,9587:7246811,10508975 -g1,9587:6919131,10508975 -(1,9587:6919131,10508975:0,0,0 -) -g1,9587:7246811,10508975 -) -g1,9589:8195248,10508975 -g1,9589:8827540,10508975 -g1,9589:9459832,10508975 -h1,9589:9775978,10508975:0,0,0 -k1,9589:31966990,10508975:22191012 -g1,9589:31966990,10508975 -) -] -) -g1,9590:31966991,10610162 -g1,9590:7246811,10610162 -g1,9590:7246811,10610162 -g1,9590:31966991,10610162 -g1,9590:31966991,10610162 -) -h1,9590:7246811,10806770:0,0,0 -(1,9594:7246811,12073214:24720180,513147,134348 -h1,9593:7246811,12073214:983040,0,0 -k1,9593:8914180,12073214:214436 -k1,9593:9660113,12073214:214436 -k1,9593:11160365,12073214:214436 -k1,9593:14004761,12073214:214436 -k1,9593:14870625,12073214:214436 -k1,9593:16294855,12073214:214436 -k1,9593:19052743,12073214:214436 -k1,9593:21557007,12073214:214436 -k1,9593:23165394,12073214:214436 -k1,9593:25834153,12073214:214436 -(1,9593:25834153,12073214:0,452978,115847 -r1,9729:28654402,12073214:2820249,568825,115847 -k1,9593:25834153,12073214:-2820249 -) -(1,9593:25834153,12073214:2820249,452978,115847 -k1,9593:25834153,12073214:3277 -h1,9593:28651125,12073214:0,411205,112570 -) -k1,9593:29042508,12073214:214436 -k1,9593:29884779,12073214:214436 -k1,9593:31118300,12073214:214436 -k1,9594:31966991,12073214:0 -) -(1,9594:7246811,12914702:24720180,513147,134348 -k1,9593:10701415,12914702:152900 -k1,9593:13571439,12914702:152901 -k1,9593:14080199,12914702:152900 -k1,9593:15305268,12914702:152900 -k1,9593:16562451,12914702:152901 -k1,9593:19013699,12914702:152900 -k1,9593:21022579,12914702:152900 -k1,9593:22194564,12914702:152900 -k1,9593:25240880,12914702:152901 -k1,9593:26693359,12914702:152900 -k1,9593:28210719,12914702:152900 -k1,9593:29046505,12914702:152901 -k1,9593:30218490,12914702:152900 -k1,9594:31966991,12914702:0 -) -(1,9594:7246811,13756190:24720180,513147,134348 -k1,9593:9008519,13756190:155421 -k1,9593:10463519,13756190:155421 -k1,9593:12066631,13756190:155422 -k1,9593:12881344,13756190:155421 -k1,9593:14055850,13756190:155421 -k1,9593:16702294,13756190:155421 -k1,9593:19401168,13756190:155422 -k1,9593:20172627,13756190:155421 -k1,9593:21347133,13756190:155421 -k1,9593:25439957,13756190:155421 -k1,9593:28312502,13756190:155422 -k1,9593:29421472,13756190:155421 -k1,9593:30681175,13756190:155421 -k1,9593:31966991,13756190:0 -) -(1,9594:7246811,14597678:24720180,505283,134348 -k1,9593:9841432,14597678:239912 -k1,9593:11924216,14597678:239912 -k1,9593:12850290,14597678:239912 -k1,9593:14194484,14597678:239912 -k1,9593:15182162,14597678:239912 -k1,9593:16861900,14597678:239912 -k1,9593:19143915,14597678:239913 -k1,9593:20011662,14597678:239912 -k1,9593:21943714,14597678:239912 -k1,9593:23881008,14597678:239912 -k1,9593:25140005,14597678:239912 -k1,9593:26452086,14597678:239912 -k1,9593:31315563,14597678:239912 -k1,9593:31966991,14597678:0 -) -(1,9594:7246811,15439166:24720180,505283,134348 -g1,9593:8465125,15439166 -g1,9593:9614626,15439166 -g1,9593:10918137,15439166 -g1,9593:11865132,15439166 -g1,9593:14735608,15439166 -g1,9593:16007006,15439166 -g1,9593:19186812,15439166 -g1,9593:19844138,15439166 -g1,9593:22089401,15439166 -g1,9593:23307715,15439166 -g1,9593:25590989,15439166 -k1,9594:31966991,15439166:4036367 -g1,9594:31966991,15439166 -) -v1,9596:7246811,16530300:0,393216,0 -(1,9628:7246811,26456297:24720180,10319213,196608 -g1,9628:7246811,26456297 -g1,9628:7246811,26456297 -g1,9628:7050203,26456297 -(1,9628:7050203,26456297:0,10319213,196608 -r1,9729:32163599,26456297:25113396,10515821,196608 -k1,9628:7050203,26456297:-25113396 -) -(1,9628:7050203,26456297:25113396,10319213,196608 -[1,9628:7246811,26456297:24720180,10122605,0 -(1,9598:7246811,16744210:24720180,410518,101187 -(1,9597:7246811,16744210:0,0,0 -g1,9597:7246811,16744210 -g1,9597:7246811,16744210 -g1,9597:6919131,16744210 -(1,9597:6919131,16744210:0,0,0 -) -g1,9597:7246811,16744210 -) -g1,9598:10724414,16744210 -g1,9598:11672852,16744210 -g1,9598:12305144,16744210 -g1,9598:12937436,16744210 -g1,9598:13885873,16744210 -g1,9598:14518165,16744210 -h1,9598:15150456,16744210:0,0,0 -k1,9598:31966992,16744210:16816536 -g1,9598:31966992,16744210 -) -(1,9599:7246811,17410388:24720180,410518,101187 -h1,9599:7246811,17410388:0,0,0 -g1,9599:13253579,17410388 -g1,9599:13885871,17410388 -g1,9599:14518163,17410388 -g1,9599:15150455,17410388 -g1,9599:15782747,17410388 -h1,9599:16731184,17410388:0,0,0 -k1,9599:31966991,17410388:15235807 -g1,9599:31966991,17410388 -) -(1,9603:7246811,18142102:24720180,388497,101187 -(1,9601:7246811,18142102:0,0,0 -g1,9601:7246811,18142102 -g1,9601:7246811,18142102 -g1,9601:6919131,18142102 -(1,9601:6919131,18142102:0,0,0 -) -g1,9601:7246811,18142102 -) -g1,9603:8195248,18142102 -g1,9603:8827540,18142102 -g1,9603:9459832,18142102 -g1,9603:10408269,18142102 -g1,9603:11040561,18142102 -g1,9603:11988998,18142102 -g1,9603:12621290,18142102 -h1,9603:13253581,18142102:0,0,0 -k1,9603:31966991,18142102:18713410 -g1,9603:31966991,18142102 -) -(1,9605:7246811,19463640:24720180,410518,101187 -(1,9604:7246811,19463640:0,0,0 -g1,9604:7246811,19463640 -g1,9604:7246811,19463640 -g1,9604:6919131,19463640 -(1,9604:6919131,19463640:0,0,0 -) -g1,9604:7246811,19463640 -) -k1,9605:7246811,19463640:0 -g1,9605:13253579,19463640 -g1,9605:13885871,19463640 -g1,9605:14518163,19463640 -g1,9605:15150455,19463640 -g1,9605:15782747,19463640 -h1,9605:16731184,19463640:0,0,0 -k1,9605:31966991,19463640:15235807 -g1,9605:31966991,19463640 -) -(1,9609:7246811,20195354:24720180,388497,101187 -(1,9607:7246811,20195354:0,0,0 -g1,9607:7246811,20195354 -g1,9607:7246811,20195354 -g1,9607:6919131,20195354 -(1,9607:6919131,20195354:0,0,0 -) -g1,9607:7246811,20195354 -) -g1,9609:8195248,20195354 -g1,9609:8827540,20195354 -g1,9609:9459832,20195354 -h1,9609:10092123,20195354:0,0,0 -k1,9609:31966991,20195354:21874868 -g1,9609:31966991,20195354 -) -(1,9611:7246811,21516892:24720180,410518,101187 -(1,9610:7246811,21516892:0,0,0 -g1,9610:7246811,21516892 -g1,9610:7246811,21516892 -g1,9610:6919131,21516892 -(1,9610:6919131,21516892:0,0,0 -) -g1,9610:7246811,21516892 -) -k1,9611:7246811,21516892:0 -g1,9611:13253579,21516892 -g1,9611:13885871,21516892 -g1,9611:14518163,21516892 -h1,9611:15466600,21516892:0,0,0 -k1,9611:31966991,21516892:16500391 -g1,9611:31966991,21516892 -) -(1,9615:7246811,22248606:24720180,388497,101187 -(1,9613:7246811,22248606:0,0,0 -g1,9613:7246811,22248606 -g1,9613:7246811,22248606 -g1,9613:6919131,22248606 -(1,9613:6919131,22248606:0,0,0 -) -g1,9613:7246811,22248606 -) -g1,9615:8195248,22248606 -g1,9615:8827540,22248606 -g1,9615:9459832,22248606 -h1,9615:10092123,22248606:0,0,0 -k1,9615:31966991,22248606:21874868 -g1,9615:31966991,22248606 -) -(1,9617:7246811,23570144:24720180,410518,101187 -(1,9616:7246811,23570144:0,0,0 -g1,9616:7246811,23570144 -g1,9616:7246811,23570144 -g1,9616:6919131,23570144 -(1,9616:6919131,23570144:0,0,0 -) -g1,9616:7246811,23570144 -) -k1,9617:7246811,23570144:0 -g1,9617:13253579,23570144 -g1,9617:13885871,23570144 -g1,9617:14518163,23570144 -h1,9617:15150454,23570144:0,0,0 -k1,9617:31966990,23570144:16816536 -g1,9617:31966990,23570144 -) -(1,9621:7246811,24301858:24720180,388497,0 -(1,9619:7246811,24301858:0,0,0 -g1,9619:7246811,24301858 -g1,9619:7246811,24301858 -g1,9619:6919131,24301858 -(1,9619:6919131,24301858:0,0,0 -) -g1,9619:7246811,24301858 -) -g1,9621:8195248,24301858 -g1,9621:8827540,24301858 -g1,9621:9459832,24301858 -g1,9621:10408269,24301858 -g1,9621:11040561,24301858 -h1,9621:11672852,24301858:0,0,0 -k1,9621:31966992,24301858:20294140 -g1,9621:31966992,24301858 -) -(1,9623:7246811,25623396:24720180,410518,101187 -(1,9622:7246811,25623396:0,0,0 -g1,9622:7246811,25623396 -g1,9622:7246811,25623396 -g1,9622:6919131,25623396 -(1,9622:6919131,25623396:0,0,0 -) -g1,9622:7246811,25623396 -) -k1,9623:7246811,25623396:0 -g1,9623:13253579,25623396 -g1,9623:13885871,25623396 -g1,9623:14518163,25623396 -g1,9623:15150455,25623396 -g1,9623:15782747,25623396 -h1,9623:16415038,25623396:0,0,0 -k1,9623:31966991,25623396:15551953 -g1,9623:31966991,25623396 -) -(1,9627:7246811,26355110:24720180,388497,101187 -(1,9625:7246811,26355110:0,0,0 -g1,9625:7246811,26355110 -g1,9625:7246811,26355110 -g1,9625:6919131,26355110 -(1,9625:6919131,26355110:0,0,0 -) -g1,9625:7246811,26355110 -) -g1,9627:8195248,26355110 -g1,9627:8827540,26355110 -g1,9627:9459832,26355110 -g1,9627:10092124,26355110 -g1,9627:10724416,26355110 -g1,9627:11672853,26355110 -g1,9627:12305145,26355110 -h1,9627:12937436,26355110:0,0,0 -k1,9627:31966992,26355110:19029556 -g1,9627:31966992,26355110 -) -] -) -g1,9628:31966991,26456297 -g1,9628:7246811,26456297 -g1,9628:7246811,26456297 -g1,9628:31966991,26456297 -g1,9628:31966991,26456297 -) -h1,9628:7246811,26652905:0,0,0 -(1,9632:7246811,27919349:24720180,513147,134348 -h1,9631:7246811,27919349:983040,0,0 -k1,9631:8893931,27919349:219091 -k1,9631:11873418,27919349:219111 -k1,9631:15172721,27919349:219111 -k1,9631:18417629,27919349:219111 -k1,9631:19584391,27919349:219111 -k1,9631:21791209,27919349:219111 -k1,9631:25015146,27919349:219111 -k1,9631:29581260,27919349:219111 -k1,9631:31552148,27919349:219111 -k1,9632:31966991,27919349:0 -) -(1,9632:7246811,28760837:24720180,513147,126483 -k1,9631:9243311,28760837:285355 -k1,9631:10661127,28760837:285354 -k1,9631:12792631,28760837:285355 -k1,9631:14608252,28760837:285355 -k1,9631:15545034,28760837:285354 -k1,9631:17056568,28760837:285355 -k1,9631:19329630,28760837:285355 -k1,9631:22488738,28760837:285354 -k1,9631:23390131,28760837:285355 -k1,9631:25184125,28760837:285355 -k1,9631:27804527,28760837:285354 -k1,9631:29131904,28760837:285355 -k1,9631:31966991,28760837:0 -) -(1,9632:7246811,29602325:24720180,505283,126483 -g1,9631:10414166,29602325 -g1,9631:12601102,29602325 -g1,9631:15631486,29602325 -g1,9631:16362212,29602325 -g1,9631:19191401,29602325 -g1,9631:20784581,29602325 -g1,9631:21398653,29602325 -g1,9631:24052205,29602325 -(1,9631:24052205,29602325:0,452978,115847 -r1,9729:26169030,29602325:2116825,568825,115847 -k1,9631:24052205,29602325:-2116825 -) -(1,9631:24052205,29602325:2116825,452978,115847 -k1,9631:24052205,29602325:3277 -h1,9631:26165753,29602325:0,411205,112570 -) -k1,9632:31966991,29602325:5624291 -g1,9632:31966991,29602325 -) -(1,9634:7246811,30443813:24720180,513147,126483 -h1,9633:7246811,30443813:983040,0,0 -k1,9633:8987055,30443813:269616 -k1,9633:11344063,30443813:269686 -k1,9633:12273042,30443813:269687 -k1,9633:14979357,30443813:269686 -k1,9633:18860078,30443813:269687 -k1,9633:20234046,30443813:269686 -k1,9633:21251499,30443813:269687 -k1,9633:23904074,30443813:269686 -k1,9633:25741382,30443813:269687 -k1,9633:26366928,30443813:269686 -k1,9633:28624322,30443813:269687 -k1,9633:31611131,30443813:269686 -k1,9633:31966991,30443813:0 -) -(1,9634:7246811,31285301:24720180,513147,126483 -g1,9633:8832126,31285301 -g1,9633:9690647,31285301 -g1,9633:12694817,31285301 -g1,9633:14085491,31285301 -g1,9633:15303805,31285301 -g1,9633:16892397,31285301 -g1,9633:18039277,31285301 -g1,9633:19257591,31285301 -g1,9633:23222519,31285301 -k1,9634:31966991,31285301:5729161 -g1,9634:31966991,31285301 -) -v1,9636:7246811,32376436:0,393216,0 -(1,9653:7246811,39993276:24720180,8010056,196608 -g1,9653:7246811,39993276 -g1,9653:7246811,39993276 -g1,9653:7050203,39993276 -(1,9653:7050203,39993276:0,8010056,196608 -r1,9729:32163599,39993276:25113396,8206664,196608 -k1,9653:7050203,39993276:-25113396 -) -(1,9653:7050203,39993276:25113396,8010056,196608 -[1,9653:7246811,39993276:24720180,7813448,0 -(1,9638:7246811,32590346:24720180,410518,101187 -(1,9637:7246811,32590346:0,0,0 -g1,9637:7246811,32590346 -g1,9637:7246811,32590346 -g1,9637:6919131,32590346 -(1,9637:6919131,32590346:0,0,0 -) -g1,9637:7246811,32590346 -) -g1,9638:10408268,32590346 -g1,9638:11356706,32590346 -g1,9638:15466601,32590346 -g1,9638:16098893,32590346 -g1,9638:20208788,32590346 -g1,9638:22421809,32590346 -g1,9638:24002539,32590346 -k1,9638:24002539,32590346:0 -h1,9638:25267122,32590346:0,0,0 -k1,9638:31966991,32590346:6699869 -g1,9638:31966991,32590346 -) -(1,9639:7246811,33256524:24720180,404226,101187 -h1,9639:7246811,33256524:0,0,0 -g1,9639:7562957,33256524 -g1,9639:7879103,33256524 -g1,9639:8195249,33256524 -g1,9639:8511395,33256524 -g1,9639:8827541,33256524 -g1,9639:9143687,33256524 -g1,9639:9459833,33256524 -g1,9639:9775979,33256524 -g1,9639:10092125,33256524 -g1,9639:10408271,33256524 -g1,9639:10724417,33256524 -g1,9639:11040563,33256524 -g1,9639:11356709,33256524 -g1,9639:11672855,33256524 -g1,9639:11989001,33256524 -g1,9639:12305147,33256524 -g1,9639:12621293,33256524 -g1,9639:12937439,33256524 -g1,9639:13253585,33256524 -g1,9639:13569731,33256524 -g1,9639:13885877,33256524 -g1,9639:14202023,33256524 -g1,9639:14518169,33256524 -g1,9639:14834315,33256524 -g1,9639:15466607,33256524 -g1,9639:16098899,33256524 -g1,9639:20841086,33256524 -g1,9639:24002544,33256524 -h1,9639:24950981,33256524:0,0,0 -k1,9639:31966991,33256524:7016010 -g1,9639:31966991,33256524 -) -(1,9640:7246811,33922702:24720180,410518,6290 -h1,9640:7246811,33922702:0,0,0 -h1,9640:10092122,33922702:0,0,0 -k1,9640:31966990,33922702:21874868 -g1,9640:31966990,33922702 -) -(1,9652:7246811,34654416:24720180,379060,0 -(1,9642:7246811,34654416:0,0,0 -g1,9642:7246811,34654416 -g1,9642:7246811,34654416 -g1,9642:6919131,34654416 -(1,9642:6919131,34654416:0,0,0 -) -g1,9642:7246811,34654416 -) -g1,9652:8195248,34654416 -g1,9652:8511394,34654416 -g1,9652:8827540,34654416 -g1,9652:9143686,34654416 -g1,9652:9459832,34654416 -g1,9652:10092124,34654416 -g1,9652:10408270,34654416 -g1,9652:10724416,34654416 -g1,9652:11040562,34654416 -g1,9652:11356708,34654416 -h1,9652:11672854,34654416:0,0,0 -k1,9652:31966990,34654416:20294136 -g1,9652:31966990,34654416 -) -(1,9652:7246811,35320594:24720180,404226,101187 -h1,9652:7246811,35320594:0,0,0 -g1,9652:8195248,35320594 -g1,9652:8827540,35320594 -g1,9652:10092123,35320594 -h1,9652:11672851,35320594:0,0,0 -k1,9652:31966991,35320594:20294140 -g1,9652:31966991,35320594 -) -(1,9652:7246811,35986772:24720180,404226,101187 -h1,9652:7246811,35986772:0,0,0 -g1,9652:8195248,35986772 -g1,9652:8827540,35986772 -g1,9652:10092123,35986772 -h1,9652:11672851,35986772:0,0,0 -k1,9652:31966991,35986772:20294140 -g1,9652:31966991,35986772 -) -(1,9652:7246811,36652950:24720180,404226,101187 -h1,9652:7246811,36652950:0,0,0 -g1,9652:8195248,36652950 -g1,9652:8827540,36652950 -g1,9652:10092123,36652950 -h1,9652:11672851,36652950:0,0,0 -k1,9652:31966991,36652950:20294140 -g1,9652:31966991,36652950 -) -(1,9652:7246811,37319128:24720180,404226,101187 -h1,9652:7246811,37319128:0,0,0 -g1,9652:8195248,37319128 -g1,9652:8827540,37319128 -g1,9652:10092123,37319128 -h1,9652:11672851,37319128:0,0,0 -k1,9652:31966991,37319128:20294140 -g1,9652:31966991,37319128 -) -(1,9652:7246811,37985306:24720180,404226,9436 -h1,9652:7246811,37985306:0,0,0 -g1,9652:8195248,37985306 -g1,9652:8827540,37985306 -g1,9652:9143686,37985306 -g1,9652:10092123,37985306 -h1,9652:11672851,37985306:0,0,0 -k1,9652:31966991,37985306:20294140 -g1,9652:31966991,37985306 -) -(1,9652:7246811,38651484:24720180,404226,9436 -h1,9652:7246811,38651484:0,0,0 -g1,9652:8195248,38651484 -g1,9652:8827540,38651484 -g1,9652:9143686,38651484 -g1,9652:10092123,38651484 -h1,9652:11672851,38651484:0,0,0 -k1,9652:31966991,38651484:20294140 -g1,9652:31966991,38651484 -) -(1,9652:7246811,39317662:24720180,404226,6290 -h1,9652:7246811,39317662:0,0,0 -g1,9652:8195248,39317662 -g1,9652:8827540,39317662 -g1,9652:9143686,39317662 -g1,9652:10092123,39317662 -h1,9652:11672851,39317662:0,0,0 -k1,9652:31966991,39317662:20294140 -g1,9652:31966991,39317662 -) -(1,9652:7246811,39983840:24720180,404226,9436 -h1,9652:7246811,39983840:0,0,0 -g1,9652:8195248,39983840 -g1,9652:8827540,39983840 -g1,9652:9143686,39983840 -g1,9652:10092123,39983840 -h1,9652:11672851,39983840:0,0,0 -k1,9652:31966991,39983840:20294140 -g1,9652:31966991,39983840 -) -] -) -g1,9653:31966991,39993276 -g1,9653:7246811,39993276 -g1,9653:7246811,39993276 -g1,9653:31966991,39993276 -g1,9653:31966991,39993276 -) -h1,9653:7246811,40189884:0,0,0 -(1,9657:7246811,41456328:24720180,513147,126483 -h1,9656:7246811,41456328:983040,0,0 -g1,9656:9625767,41456328 -g1,9656:12090576,41456328 -g1,9656:15251377,41456328 -g1,9656:17166994,41456328 -g1,9656:20276677,41456328 -g1,9656:21091944,41456328 -k1,9657:31966991,41456328:9608891 -g1,9657:31966991,41456328 -) -v1,9659:7246811,42547462:0,393216,0 -(1,9668:7246811,44920337:24720180,2766091,196608 -g1,9668:7246811,44920337 -g1,9668:7246811,44920337 -g1,9668:7050203,44920337 -(1,9668:7050203,44920337:0,2766091,196608 -r1,9729:32163599,44920337:25113396,2962699,196608 -k1,9668:7050203,44920337:-25113396 -) -(1,9668:7050203,44920337:25113396,2766091,196608 -[1,9668:7246811,44920337:24720180,2569483,0 -(1,9661:7246811,42755080:24720180,404226,101187 -(1,9660:7246811,42755080:0,0,0 -g1,9660:7246811,42755080 -g1,9660:7246811,42755080 -g1,9660:6919131,42755080 -(1,9660:6919131,42755080:0,0,0 -) -g1,9660:7246811,42755080 -) -k1,9661:7246811,42755080:0 -h1,9661:13569725,42755080:0,0,0 -k1,9661:31966991,42755080:18397266 -g1,9661:31966991,42755080 -) -(1,9667:7246811,43486794:24720180,410518,31456 -(1,9663:7246811,43486794:0,0,0 -g1,9663:7246811,43486794 -g1,9663:7246811,43486794 -g1,9663:6919131,43486794 -(1,9663:6919131,43486794:0,0,0 -) -g1,9663:7246811,43486794 -) -g1,9667:8195248,43486794 -h1,9667:11356705,43486794:0,0,0 -k1,9667:31966991,43486794:20610286 -g1,9667:31966991,43486794 -) -(1,9667:7246811,44152972:24720180,404226,6290 -h1,9667:7246811,44152972:0,0,0 -g1,9667:8195248,44152972 -g1,9667:8511394,44152972 -g1,9667:8827540,44152972 -g1,9667:9143686,44152972 -g1,9667:9459832,44152972 -g1,9667:9775978,44152972 -g1,9667:10092124,44152972 -g1,9667:10408270,44152972 -g1,9667:10724416,44152972 -g1,9667:13885873,44152972 -g1,9667:14202019,44152972 -g1,9667:14518165,44152972 -g1,9667:14834311,44152972 -g1,9667:15150457,44152972 -g1,9667:15466603,44152972 -g1,9667:15782749,44152972 -g1,9667:16098895,44152972 -g1,9667:16415041,44152972 -g1,9667:16731187,44152972 -g1,9667:17047333,44152972 -h1,9667:19260353,44152972:0,0,0 -k1,9667:31966991,44152972:12706638 -g1,9667:31966991,44152972 -) -(1,9667:7246811,44819150:24720180,404226,101187 -h1,9667:7246811,44819150:0,0,0 -g1,9667:8195248,44819150 -g1,9667:13885871,44819150 -g1,9667:14202017,44819150 -g1,9667:14518163,44819150 -g1,9667:14834309,44819150 -g1,9667:15150455,44819150 -g1,9667:15466601,44819150 -h1,9667:19260349,44819150:0,0,0 -k1,9667:31966991,44819150:12706642 -g1,9667:31966991,44819150 -) -] -) -g1,9668:31966991,44920337 -g1,9668:7246811,44920337 -g1,9668:7246811,44920337 -g1,9668:31966991,44920337 -g1,9668:31966991,44920337 -) -h1,9668:7246811,45116945:0,0,0 -] -) -] -r1,9729:32583029,45706769:26214,39845888,0 -) -] -) -) -g1,9729:32583029,45116945 -) -] -(1,9729:32583029,45706769:0,0,0 -g1,9729:32583029,45706769 -) -) -] -(1,9729:6630773,47279633:25952256,0,0 -h1,9729:6630773,47279633:25952256,0,0 -) -] -(1,9729:4262630,4025873:0,0,0 -[1,9729:-473656,4025873:0,0,0 -(1,9729:-473656,-710413:0,0,0 -(1,9729:-473656,-710413:0,0,0 -g1,9729:-473656,-710413 -) -g1,9729:-473656,-710413 -) -] -) -] -!23805 -}180 -!12 -{181 -[1,9735:4262630,47279633:28320399,43253760,0 -(1,9735:4262630,4025873:0,0,0 -[1,9735:-473656,4025873:0,0,0 -(1,9735:-473656,-710413:0,0,0 -(1,9735:-473656,-644877:0,0,0 -k1,9735:-473656,-644877:-65536 -) -(1,9735:-473656,4736287:0,0,0 -k1,9735:-473656,4736287:5209943 -) -g1,9735:-473656,-710413 -) -] -) -[1,9735:6630773,47279633:25952256,43253760,0 -[1,9735:6630773,4812305:25952256,786432,0 -(1,9735:6630773,4812305:25952256,505283,134348 -(1,9735:6630773,4812305:25952256,505283,134348 -g1,9735:3078558,4812305 -[1,9735:3078558,4812305:0,0,0 -(1,9735:3078558,2439708:0,1703936,0 -k1,9735:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,9735:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,9735:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,9735:3078558,4812305:0,0,0 -(1,9735:3078558,2439708:0,1703936,0 -g1,9735:29030814,2439708 -g1,9735:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,9735:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,9735:37855564,2439708:1179648,16384,0 -) -) -k1,9735:3078556,2439708:-34777008 -) -] -[1,9735:3078558,4812305:0,0,0 -(1,9735:3078558,49800853:0,16384,2228224 -k1,9735:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,9735:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,9735:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,9735:3078558,4812305:0,0,0 -(1,9735:3078558,49800853:0,16384,2228224 -g1,9735:29030814,49800853 -g1,9735:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,9735:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,9735:37855564,49800853:1179648,16384,0 -) -) -k1,9735:3078556,49800853:-34777008 -) -] -g1,9735:6630773,4812305 -k1,9735:24502442,4812305:16676292 -g1,9735:25889183,4812305 -g1,9735:26537989,4812305 -g1,9735:29852144,4812305 -) -) -] -[1,9735:6630773,45706769:25952256,40108032,0 -(1,9735:6630773,45706769:25952256,40108032,0 -(1,9735:6630773,45706769:0,0,0 -g1,9735:6630773,45706769 -) -[1,9735:6630773,45706769:25952256,40108032,0 -v1,9729:6630773,6254097:0,393216,0 -(1,9729:6630773,36672026:25952256,30811145,616038 -g1,9729:6630773,36672026 -(1,9729:6630773,36672026:25952256,30811145,616038 -(1,9729:6630773,37288064:25952256,31427183,0 -[1,9729:6630773,37288064:25952256,31427183,0 -(1,9729:6630773,37261850:25952256,31400969,0 -r1,9735:6656987,37261850:26214,31400969,0 -[1,9729:6656987,37261850:25899828,31400969,0 -(1,9729:6656987,36672026:25899828,30221321,0 -[1,9729:7246811,36672026:24720180,30221321,0 -(1,9672:7246811,6963852:24720180,513147,134348 -h1,9671:7246811,6963852:983040,0,0 -k1,9671:8917222,6963852:199783 -k1,9671:11104713,6963852:199784 -k1,9671:13391819,6963852:199784 -k1,9671:14539254,6963852:199784 -k1,9671:15094898,6963852:199784 -k1,9671:17282389,6963852:199784 -k1,9671:18429824,6963852:199784 -k1,9671:18985468,6963852:199784 -k1,9671:21808658,6963852:199784 -k1,9671:24664616,6963852:199784 -k1,9671:26953032,6963852:199784 -k1,9671:28546767,6963852:199784 -k1,9671:29555921,6963852:199784 -k1,9672:31966991,6963852:0 -) -(1,9672:7246811,7805340:24720180,473825,7863 -g1,9671:8713506,7805340 -k1,9672:31966991,7805340:21567244 -g1,9672:31966991,7805340 -) -v1,9674:7246811,8995806:0,393216,0 -(1,9697:7246811,20676299:24720180,12073709,196608 -g1,9697:7246811,20676299 -g1,9697:7246811,20676299 -g1,9697:7050203,20676299 -(1,9697:7050203,20676299:0,12073709,196608 -r1,9735:32163599,20676299:25113396,12270317,196608 -k1,9697:7050203,20676299:-25113396 -) -(1,9697:7050203,20676299:25113396,12073709,196608 -[1,9697:7246811,20676299:24720180,11877101,0 -(1,9676:7246811,9209716:24720180,410518,82312 -(1,9675:7246811,9209716:0,0,0 -g1,9675:7246811,9209716 -g1,9675:7246811,9209716 -g1,9675:6919131,9209716 -(1,9675:6919131,9209716:0,0,0 -) -g1,9675:7246811,9209716 -) -k1,9676:7246811,9209716:0 -g1,9676:11988997,9209716 -g1,9676:12621289,9209716 -g1,9676:13253581,9209716 -g1,9676:14202019,9209716 -h1,9676:17363476,9209716:0,0,0 -k1,9676:31966991,9209716:14603515 -g1,9676:31966991,9209716 -) -(1,9696:7246811,9941430:24720180,404226,101187 -(1,9678:7246811,9941430:0,0,0 -g1,9678:7246811,9941430 -g1,9678:7246811,9941430 -g1,9678:6919131,9941430 -(1,9678:6919131,9941430:0,0,0 -) -g1,9678:7246811,9941430 -) -g1,9696:8195248,9941430 -g1,9696:8511394,9941430 -g1,9696:8827540,9941430 -g1,9696:12621288,9941430 -g1,9696:14202017,9941430 -h1,9696:16098891,9941430:0,0,0 -k1,9696:31966991,9941430:15868100 -g1,9696:31966991,9941430 -) -(1,9696:7246811,10607608:24720180,388497,0 -h1,9696:7246811,10607608:0,0,0 -g1,9696:8195248,10607608 -g1,9696:8827540,10607608 -g1,9696:9143686,10607608 -g1,9696:9459832,10607608 -g1,9696:9775978,10607608 -g1,9696:10092124,10607608 -g1,9696:10408270,10607608 -g1,9696:10724416,10607608 -g1,9696:11040562,10607608 -g1,9696:11356708,10607608 -g1,9696:11672854,10607608 -g1,9696:11989000,10607608 -g1,9696:12621292,10607608 -g1,9696:12937438,10607608 -g1,9696:13253584,10607608 -g1,9696:13569730,10607608 -g1,9696:14202022,10607608 -g1,9696:14518168,10607608 -g1,9696:14834314,10607608 -g1,9696:15150460,10607608 -g1,9696:15466606,10607608 -g1,9696:15782752,10607608 -h1,9696:16098898,10607608:0,0,0 -k1,9696:31966991,10607608:15868093 -g1,9696:31966991,10607608 -) -(1,9696:7246811,11273786:24720180,388497,9436 -h1,9696:7246811,11273786:0,0,0 -g1,9696:8195248,11273786 -g1,9696:8827540,11273786 -g1,9696:9143686,11273786 -g1,9696:9459832,11273786 -g1,9696:9775978,11273786 -g1,9696:10092124,11273786 -g1,9696:10408270,11273786 -g1,9696:10724416,11273786 -g1,9696:11040562,11273786 -g1,9696:11356708,11273786 -g1,9696:11672854,11273786 -g1,9696:11989000,11273786 -g1,9696:12621292,11273786 -g1,9696:12937438,11273786 -g1,9696:13253584,11273786 -g1,9696:13569730,11273786 -g1,9696:14202022,11273786 -g1,9696:14518168,11273786 -g1,9696:14834314,11273786 -g1,9696:15150460,11273786 -g1,9696:15466606,11273786 -g1,9696:15782752,11273786 -h1,9696:16098898,11273786:0,0,0 -k1,9696:31966991,11273786:15868093 -g1,9696:31966991,11273786 -) -(1,9696:7246811,11939964:24720180,388497,9436 -h1,9696:7246811,11939964:0,0,0 -g1,9696:8195248,11939964 -g1,9696:8827540,11939964 -g1,9696:9143686,11939964 -g1,9696:9459832,11939964 -g1,9696:9775978,11939964 -g1,9696:10092124,11939964 -g1,9696:10408270,11939964 -g1,9696:10724416,11939964 -g1,9696:11040562,11939964 -g1,9696:11356708,11939964 -g1,9696:11672854,11939964 -g1,9696:11989000,11939964 -g1,9696:12621292,11939964 -g1,9696:12937438,11939964 -g1,9696:13253584,11939964 -g1,9696:13569730,11939964 -g1,9696:14202022,11939964 -g1,9696:14518168,11939964 -g1,9696:14834314,11939964 -g1,9696:15150460,11939964 -g1,9696:15466606,11939964 -g1,9696:15782752,11939964 -h1,9696:16098898,11939964:0,0,0 -k1,9696:31966991,11939964:15868093 -g1,9696:31966991,11939964 -) -(1,9696:7246811,12606142:24720180,388497,9436 -h1,9696:7246811,12606142:0,0,0 -g1,9696:8195248,12606142 -g1,9696:8827540,12606142 -g1,9696:9143686,12606142 -g1,9696:9459832,12606142 -g1,9696:9775978,12606142 -g1,9696:10092124,12606142 -g1,9696:10408270,12606142 -g1,9696:10724416,12606142 -g1,9696:11040562,12606142 -g1,9696:11356708,12606142 -g1,9696:11672854,12606142 -g1,9696:11989000,12606142 -g1,9696:12621292,12606142 -g1,9696:12937438,12606142 -g1,9696:13253584,12606142 -g1,9696:13569730,12606142 -g1,9696:14202022,12606142 -g1,9696:14518168,12606142 -g1,9696:14834314,12606142 -g1,9696:15150460,12606142 -g1,9696:15466606,12606142 -g1,9696:15782752,12606142 -h1,9696:16098898,12606142:0,0,0 -k1,9696:31966991,12606142:15868093 -g1,9696:31966991,12606142 -) -(1,9696:7246811,13272320:24720180,388497,9436 -h1,9696:7246811,13272320:0,0,0 -g1,9696:8195248,13272320 -g1,9696:8827540,13272320 -g1,9696:9143686,13272320 -g1,9696:9459832,13272320 -g1,9696:9775978,13272320 -g1,9696:10092124,13272320 -g1,9696:10408270,13272320 -g1,9696:10724416,13272320 -g1,9696:11040562,13272320 -g1,9696:11356708,13272320 -g1,9696:11672854,13272320 -g1,9696:11989000,13272320 -g1,9696:12621292,13272320 -g1,9696:12937438,13272320 -g1,9696:13253584,13272320 -g1,9696:13569730,13272320 -g1,9696:14202022,13272320 -g1,9696:14518168,13272320 -g1,9696:14834314,13272320 -g1,9696:15150460,13272320 -g1,9696:15466606,13272320 -g1,9696:15782752,13272320 -h1,9696:16098898,13272320:0,0,0 -k1,9696:31966991,13272320:15868093 -g1,9696:31966991,13272320 -) -(1,9696:7246811,13938498:24720180,388497,9436 -h1,9696:7246811,13938498:0,0,0 -g1,9696:8195248,13938498 -g1,9696:8827540,13938498 -g1,9696:9143686,13938498 -g1,9696:9459832,13938498 -g1,9696:9775978,13938498 -g1,9696:10092124,13938498 -g1,9696:10408270,13938498 -g1,9696:10724416,13938498 -g1,9696:11040562,13938498 -g1,9696:11356708,13938498 -g1,9696:11672854,13938498 -g1,9696:11989000,13938498 -g1,9696:12621292,13938498 -g1,9696:12937438,13938498 -g1,9696:13253584,13938498 -g1,9696:13569730,13938498 -g1,9696:14202022,13938498 -g1,9696:14518168,13938498 -g1,9696:14834314,13938498 -g1,9696:15150460,13938498 -g1,9696:15466606,13938498 -g1,9696:15782752,13938498 -h1,9696:16098898,13938498:0,0,0 -k1,9696:31966991,13938498:15868093 -g1,9696:31966991,13938498 -) -(1,9696:7246811,14604676:24720180,388497,9436 -h1,9696:7246811,14604676:0,0,0 -g1,9696:8195248,14604676 -g1,9696:8827540,14604676 -g1,9696:9143686,14604676 -g1,9696:9459832,14604676 -g1,9696:9775978,14604676 -g1,9696:10092124,14604676 -g1,9696:10408270,14604676 -g1,9696:10724416,14604676 -g1,9696:11040562,14604676 -g1,9696:11356708,14604676 -g1,9696:11672854,14604676 -g1,9696:11989000,14604676 -g1,9696:12621292,14604676 -g1,9696:12937438,14604676 -g1,9696:13253584,14604676 -g1,9696:13569730,14604676 -g1,9696:14202022,14604676 -g1,9696:14518168,14604676 -g1,9696:14834314,14604676 -g1,9696:15150460,14604676 -g1,9696:15466606,14604676 -g1,9696:15782752,14604676 -h1,9696:16098898,14604676:0,0,0 -k1,9696:31966991,14604676:15868093 -g1,9696:31966991,14604676 -) -(1,9696:7246811,15270854:24720180,388497,9436 -h1,9696:7246811,15270854:0,0,0 -g1,9696:8195248,15270854 -g1,9696:8827540,15270854 -g1,9696:9143686,15270854 -g1,9696:9459832,15270854 -g1,9696:9775978,15270854 -g1,9696:10092124,15270854 -g1,9696:10408270,15270854 -g1,9696:10724416,15270854 -g1,9696:11040562,15270854 -g1,9696:11356708,15270854 -g1,9696:11672854,15270854 -g1,9696:11989000,15270854 -g1,9696:12621292,15270854 -g1,9696:12937438,15270854 -g1,9696:13253584,15270854 -g1,9696:13569730,15270854 -g1,9696:14202022,15270854 -g1,9696:14518168,15270854 -g1,9696:14834314,15270854 -g1,9696:15150460,15270854 -g1,9696:15466606,15270854 -g1,9696:15782752,15270854 -h1,9696:16098898,15270854:0,0,0 -k1,9696:31966991,15270854:15868093 -g1,9696:31966991,15270854 -) -(1,9696:7246811,15937032:24720180,404226,107478 -h1,9696:7246811,15937032:0,0,0 -g1,9696:8195248,15937032 -k1,9696:8195248,15937032:0 -h1,9696:12937433,15937032:0,0,0 -k1,9696:31966991,15937032:19029558 -g1,9696:31966991,15937032 -) -(1,9696:7246811,16603210:24720180,404226,76021 -h1,9696:7246811,16603210:0,0,0 -g1,9696:8195248,16603210 -g1,9696:9459831,16603210 -g1,9696:10092123,16603210 -g1,9696:10724415,16603210 -h1,9696:11040561,16603210:0,0,0 -k1,9696:31966991,16603210:20926430 -g1,9696:31966991,16603210 -) -(1,9696:7246811,17269388:24720180,404226,82312 -h1,9696:7246811,17269388:0,0,0 -g1,9696:8195248,17269388 -k1,9696:8195248,17269388:0 -h1,9696:13885870,17269388:0,0,0 -k1,9696:31966990,17269388:18081120 -g1,9696:31966990,17269388 -) -(1,9696:7246811,17935566:24720180,410518,82312 -h1,9696:7246811,17935566:0,0,0 -g1,9696:8195248,17935566 -k1,9696:8195248,17935566:0 -h1,9696:14518161,17935566:0,0,0 -k1,9696:31966991,17935566:17448830 -g1,9696:31966991,17935566 -) -(1,9696:7246811,18601744:24720180,404226,76021 -h1,9696:7246811,18601744:0,0,0 -g1,9696:8195248,18601744 -g1,9696:9459831,18601744 -h1,9696:14834308,18601744:0,0,0 -k1,9696:31966992,18601744:17132684 -g1,9696:31966992,18601744 -) -(1,9696:7246811,19267922:24720180,379060,0 -h1,9696:7246811,19267922:0,0,0 -h1,9696:7879102,19267922:0,0,0 -k1,9696:31966990,19267922:24087888 -g1,9696:31966990,19267922 -) -(1,9696:7246811,19934100:24720180,410518,82312 -h1,9696:7246811,19934100:0,0,0 -g1,9696:8195248,19934100 -k1,9696:8195248,19934100:0 -h1,9696:14518161,19934100:0,0,0 -k1,9696:31966991,19934100:17448830 -g1,9696:31966991,19934100 -) -(1,9696:7246811,20600278:24720180,404226,76021 -h1,9696:7246811,20600278:0,0,0 -g1,9696:8195248,20600278 -g1,9696:9459831,20600278 -h1,9696:14834308,20600278:0,0,0 -k1,9696:31966992,20600278:17132684 -g1,9696:31966992,20600278 -) -] -) -g1,9697:31966991,20676299 -g1,9697:7246811,20676299 -g1,9697:7246811,20676299 -g1,9697:31966991,20676299 -g1,9697:31966991,20676299 -) -h1,9697:7246811,20872907:0,0,0 -(1,9701:7246811,22238683:24720180,513147,134348 -h1,9700:7246811,22238683:983040,0,0 -k1,9700:8913443,22238683:196004 -k1,9700:11097158,22238683:196008 -k1,9700:13380487,22238683:196007 -k1,9700:14524146,22238683:196008 -k1,9700:15076013,22238683:196007 -k1,9700:17259728,22238683:196008 -k1,9700:18403386,22238683:196007 -k1,9700:18955254,22238683:196008 -k1,9700:21774667,22238683:196007 -k1,9700:24626849,22238683:196008 -k1,9700:26911488,22238683:196007 -k1,9700:28501447,22238683:196008 -k1,9700:31966991,22238683:0 -) -(1,9701:7246811,23080171:24720180,426639,7863 -k1,9701:31966992,23080171:23033940 -g1,9701:31966992,23080171 -) -v1,9703:7246811,24270637:0,393216,0 -(1,9726:7246811,35951130:24720180,12073709,196608 -g1,9726:7246811,35951130 -g1,9726:7246811,35951130 -g1,9726:7050203,35951130 -(1,9726:7050203,35951130:0,12073709,196608 -r1,9735:32163599,35951130:25113396,12270317,196608 -k1,9726:7050203,35951130:-25113396 -) -(1,9726:7050203,35951130:25113396,12073709,196608 -[1,9726:7246811,35951130:24720180,11877101,0 -(1,9705:7246811,24484547:24720180,410518,82312 -(1,9704:7246811,24484547:0,0,0 -g1,9704:7246811,24484547 -g1,9704:7246811,24484547 -g1,9704:6919131,24484547 -(1,9704:6919131,24484547:0,0,0 -) -g1,9704:7246811,24484547 -) -k1,9705:7246811,24484547:0 -g1,9705:11988997,24484547 -g1,9705:12621289,24484547 -g1,9705:13253581,24484547 -g1,9705:14202019,24484547 -h1,9705:17363476,24484547:0,0,0 -k1,9705:31966991,24484547:14603515 -g1,9705:31966991,24484547 -) -(1,9725:7246811,25216261:24720180,404226,101187 -(1,9707:7246811,25216261:0,0,0 -g1,9707:7246811,25216261 -g1,9707:7246811,25216261 -g1,9707:6919131,25216261 -(1,9707:6919131,25216261:0,0,0 -) -g1,9707:7246811,25216261 -) -g1,9725:8195248,25216261 -g1,9725:8511394,25216261 -g1,9725:8827540,25216261 -g1,9725:12621288,25216261 -g1,9725:14202017,25216261 -g1,9725:16415037,25216261 -h1,9725:19892639,25216261:0,0,0 -k1,9725:31966991,25216261:12074352 -g1,9725:31966991,25216261 -) -(1,9725:7246811,25882439:24720180,388497,0 -h1,9725:7246811,25882439:0,0,0 -g1,9725:8195248,25882439 -g1,9725:8827540,25882439 -g1,9725:9143686,25882439 -g1,9725:9459832,25882439 -g1,9725:9775978,25882439 -g1,9725:10092124,25882439 -g1,9725:10408270,25882439 -g1,9725:10724416,25882439 -g1,9725:11040562,25882439 -g1,9725:11356708,25882439 -g1,9725:11672854,25882439 -g1,9725:11989000,25882439 -g1,9725:12621292,25882439 -g1,9725:12937438,25882439 -g1,9725:13253584,25882439 -g1,9725:13569730,25882439 -g1,9725:14202022,25882439 -g1,9725:14518168,25882439 -g1,9725:14834314,25882439 -g1,9725:15150460,25882439 -g1,9725:15466606,25882439 -g1,9725:15782752,25882439 -g1,9725:16415044,25882439 -g1,9725:16731190,25882439 -g1,9725:17047336,25882439 -g1,9725:17363482,25882439 -g1,9725:17679628,25882439 -g1,9725:17995774,25882439 -g1,9725:18311920,25882439 -g1,9725:18628066,25882439 -g1,9725:18944212,25882439 -g1,9725:19260358,25882439 -g1,9725:19576504,25882439 -h1,9725:19892650,25882439:0,0,0 -k1,9725:31966991,25882439:12074341 -g1,9725:31966991,25882439 -) -(1,9725:7246811,26548617:24720180,388497,9436 -h1,9725:7246811,26548617:0,0,0 -g1,9725:8195248,26548617 -g1,9725:8827540,26548617 -g1,9725:9143686,26548617 -g1,9725:9459832,26548617 -g1,9725:9775978,26548617 -g1,9725:10092124,26548617 -g1,9725:10408270,26548617 -g1,9725:10724416,26548617 -g1,9725:11040562,26548617 -g1,9725:11356708,26548617 -g1,9725:11672854,26548617 -g1,9725:11989000,26548617 -g1,9725:12621292,26548617 -g1,9725:12937438,26548617 -g1,9725:13253584,26548617 -g1,9725:13569730,26548617 -g1,9725:14202022,26548617 -g1,9725:14518168,26548617 -g1,9725:14834314,26548617 -g1,9725:15150460,26548617 -g1,9725:15466606,26548617 -g1,9725:15782752,26548617 -g1,9725:16415044,26548617 -g1,9725:16731190,26548617 -g1,9725:17047336,26548617 -g1,9725:17363482,26548617 -g1,9725:17679628,26548617 -g1,9725:17995774,26548617 -g1,9725:18311920,26548617 -g1,9725:18628066,26548617 -g1,9725:18944212,26548617 -g1,9725:19260358,26548617 -g1,9725:19576504,26548617 -h1,9725:19892650,26548617:0,0,0 -k1,9725:31966991,26548617:12074341 -g1,9725:31966991,26548617 -) -(1,9725:7246811,27214795:24720180,388497,9436 -h1,9725:7246811,27214795:0,0,0 -g1,9725:8195248,27214795 -g1,9725:8827540,27214795 -g1,9725:9143686,27214795 -g1,9725:9459832,27214795 -g1,9725:9775978,27214795 -g1,9725:10092124,27214795 -g1,9725:10408270,27214795 -g1,9725:10724416,27214795 -g1,9725:11040562,27214795 -g1,9725:11356708,27214795 -g1,9725:11672854,27214795 -g1,9725:11989000,27214795 -g1,9725:12621292,27214795 -g1,9725:12937438,27214795 -g1,9725:13253584,27214795 -g1,9725:13569730,27214795 -g1,9725:14202022,27214795 -g1,9725:14518168,27214795 -g1,9725:14834314,27214795 -g1,9725:15150460,27214795 -g1,9725:15466606,27214795 -g1,9725:15782752,27214795 -g1,9725:16415044,27214795 -g1,9725:16731190,27214795 -g1,9725:17047336,27214795 -g1,9725:17363482,27214795 -g1,9725:17679628,27214795 -g1,9725:17995774,27214795 -g1,9725:18311920,27214795 -g1,9725:18628066,27214795 -g1,9725:18944212,27214795 -g1,9725:19260358,27214795 -g1,9725:19576504,27214795 -h1,9725:19892650,27214795:0,0,0 -k1,9725:31966991,27214795:12074341 -g1,9725:31966991,27214795 -) -(1,9725:7246811,27880973:24720180,388497,9436 -h1,9725:7246811,27880973:0,0,0 -g1,9725:8195248,27880973 -g1,9725:8827540,27880973 -g1,9725:9143686,27880973 -g1,9725:9459832,27880973 -g1,9725:9775978,27880973 -g1,9725:10092124,27880973 -g1,9725:10408270,27880973 -g1,9725:10724416,27880973 -g1,9725:11040562,27880973 -g1,9725:11356708,27880973 -g1,9725:11672854,27880973 -g1,9725:11989000,27880973 -g1,9725:12621292,27880973 -g1,9725:12937438,27880973 -g1,9725:13253584,27880973 -g1,9725:13569730,27880973 -g1,9725:14202022,27880973 -g1,9725:14518168,27880973 -g1,9725:14834314,27880973 -g1,9725:15150460,27880973 -g1,9725:15466606,27880973 -g1,9725:15782752,27880973 -g1,9725:16415044,27880973 -g1,9725:16731190,27880973 -g1,9725:17047336,27880973 -g1,9725:17363482,27880973 -g1,9725:17679628,27880973 -g1,9725:17995774,27880973 -g1,9725:18311920,27880973 -g1,9725:18628066,27880973 -g1,9725:18944212,27880973 -g1,9725:19260358,27880973 -g1,9725:19576504,27880973 -h1,9725:19892650,27880973:0,0,0 -k1,9725:31966991,27880973:12074341 -g1,9725:31966991,27880973 -) -(1,9725:7246811,28547151:24720180,388497,9436 -h1,9725:7246811,28547151:0,0,0 -g1,9725:8195248,28547151 -g1,9725:8827540,28547151 -g1,9725:9143686,28547151 -g1,9725:9459832,28547151 -g1,9725:9775978,28547151 -g1,9725:10092124,28547151 -g1,9725:10408270,28547151 -g1,9725:10724416,28547151 -g1,9725:11040562,28547151 -g1,9725:11356708,28547151 -g1,9725:11672854,28547151 -g1,9725:11989000,28547151 -g1,9725:12621292,28547151 -g1,9725:12937438,28547151 -g1,9725:13253584,28547151 -g1,9725:13569730,28547151 -g1,9725:14202022,28547151 -g1,9725:14518168,28547151 -g1,9725:14834314,28547151 -g1,9725:15150460,28547151 -g1,9725:15466606,28547151 -g1,9725:15782752,28547151 -g1,9725:16415044,28547151 -g1,9725:16731190,28547151 -g1,9725:17047336,28547151 -g1,9725:17363482,28547151 -g1,9725:17679628,28547151 -g1,9725:17995774,28547151 -g1,9725:18311920,28547151 -g1,9725:18628066,28547151 -g1,9725:18944212,28547151 -g1,9725:19260358,28547151 -g1,9725:19576504,28547151 -h1,9725:19892650,28547151:0,0,0 -k1,9725:31966991,28547151:12074341 -g1,9725:31966991,28547151 -) -(1,9725:7246811,29213329:24720180,388497,9436 -h1,9725:7246811,29213329:0,0,0 -g1,9725:8195248,29213329 -g1,9725:8827540,29213329 -g1,9725:9143686,29213329 -g1,9725:9459832,29213329 -g1,9725:9775978,29213329 -g1,9725:10092124,29213329 -g1,9725:10408270,29213329 -g1,9725:10724416,29213329 -g1,9725:11040562,29213329 -g1,9725:11356708,29213329 -g1,9725:11672854,29213329 -g1,9725:11989000,29213329 -g1,9725:12621292,29213329 -g1,9725:12937438,29213329 -g1,9725:13253584,29213329 -g1,9725:13569730,29213329 -g1,9725:14202022,29213329 -g1,9725:14518168,29213329 -g1,9725:14834314,29213329 -g1,9725:15150460,29213329 -g1,9725:15466606,29213329 -g1,9725:15782752,29213329 -g1,9725:16415044,29213329 -g1,9725:16731190,29213329 -g1,9725:17047336,29213329 -g1,9725:17363482,29213329 -g1,9725:17679628,29213329 -g1,9725:17995774,29213329 -g1,9725:18311920,29213329 -g1,9725:18628066,29213329 -g1,9725:18944212,29213329 -g1,9725:19260358,29213329 -g1,9725:19576504,29213329 -h1,9725:19892650,29213329:0,0,0 -k1,9725:31966991,29213329:12074341 -g1,9725:31966991,29213329 -) -(1,9725:7246811,29879507:24720180,388497,9436 -h1,9725:7246811,29879507:0,0,0 -g1,9725:8195248,29879507 -g1,9725:8827540,29879507 -g1,9725:9143686,29879507 -g1,9725:9459832,29879507 -g1,9725:9775978,29879507 -g1,9725:10092124,29879507 -g1,9725:10408270,29879507 -g1,9725:10724416,29879507 -g1,9725:11040562,29879507 -g1,9725:11356708,29879507 -g1,9725:11672854,29879507 -g1,9725:11989000,29879507 -g1,9725:12621292,29879507 -g1,9725:12937438,29879507 -g1,9725:13253584,29879507 -g1,9725:13569730,29879507 -g1,9725:14202022,29879507 -g1,9725:14518168,29879507 -g1,9725:14834314,29879507 -g1,9725:15150460,29879507 -g1,9725:15466606,29879507 -g1,9725:15782752,29879507 -g1,9725:16415044,29879507 -g1,9725:16731190,29879507 -g1,9725:17047336,29879507 -g1,9725:17363482,29879507 -g1,9725:17679628,29879507 -g1,9725:17995774,29879507 -g1,9725:18311920,29879507 -g1,9725:18628066,29879507 -g1,9725:18944212,29879507 -g1,9725:19260358,29879507 -g1,9725:19576504,29879507 -h1,9725:19892650,29879507:0,0,0 -k1,9725:31966991,29879507:12074341 -g1,9725:31966991,29879507 -) -(1,9725:7246811,30545685:24720180,388497,9436 -h1,9725:7246811,30545685:0,0,0 -g1,9725:8195248,30545685 -g1,9725:8827540,30545685 -g1,9725:9143686,30545685 -g1,9725:9459832,30545685 -g1,9725:9775978,30545685 -g1,9725:10092124,30545685 -g1,9725:10408270,30545685 -g1,9725:10724416,30545685 -g1,9725:11040562,30545685 -g1,9725:11356708,30545685 -g1,9725:11672854,30545685 -g1,9725:11989000,30545685 -g1,9725:12621292,30545685 -g1,9725:12937438,30545685 -g1,9725:13253584,30545685 -g1,9725:13569730,30545685 -g1,9725:14202022,30545685 -g1,9725:14518168,30545685 -g1,9725:14834314,30545685 -g1,9725:15150460,30545685 -g1,9725:15466606,30545685 -g1,9725:15782752,30545685 -g1,9725:16415044,30545685 -g1,9725:16731190,30545685 -g1,9725:17047336,30545685 -g1,9725:17363482,30545685 -g1,9725:17679628,30545685 -g1,9725:17995774,30545685 -g1,9725:18311920,30545685 -g1,9725:18628066,30545685 -g1,9725:18944212,30545685 -g1,9725:19260358,30545685 -g1,9725:19576504,30545685 -h1,9725:19892650,30545685:0,0,0 -k1,9725:31966991,30545685:12074341 -g1,9725:31966991,30545685 -) -(1,9725:7246811,31211863:24720180,404226,107478 -h1,9725:7246811,31211863:0,0,0 -g1,9725:8195248,31211863 -k1,9725:8195248,31211863:0 -h1,9725:12937433,31211863:0,0,0 -k1,9725:31966991,31211863:19029558 -g1,9725:31966991,31211863 -) -(1,9725:7246811,31878041:24720180,404226,76021 -h1,9725:7246811,31878041:0,0,0 -g1,9725:8195248,31878041 -g1,9725:9459831,31878041 -g1,9725:10092123,31878041 -g1,9725:10724415,31878041 -g1,9725:11356707,31878041 -h1,9725:11672853,31878041:0,0,0 -k1,9725:31966991,31878041:20294138 -g1,9725:31966991,31878041 -) -(1,9725:7246811,32544219:24720180,404226,82312 -h1,9725:7246811,32544219:0,0,0 -g1,9725:8195248,32544219 -k1,9725:8195248,32544219:0 -h1,9725:13885870,32544219:0,0,0 -k1,9725:31966990,32544219:18081120 -g1,9725:31966990,32544219 -) -(1,9725:7246811,33210397:24720180,410518,82312 -h1,9725:7246811,33210397:0,0,0 -g1,9725:8195248,33210397 -k1,9725:8195248,33210397:0 -h1,9725:14518161,33210397:0,0,0 -k1,9725:31966991,33210397:17448830 -g1,9725:31966991,33210397 -) -(1,9725:7246811,33876575:24720180,404226,76021 -h1,9725:7246811,33876575:0,0,0 -g1,9725:8195248,33876575 -g1,9725:9459831,33876575 -h1,9725:14834308,33876575:0,0,0 -k1,9725:31966992,33876575:17132684 -g1,9725:31966992,33876575 -) -(1,9725:7246811,34542753:24720180,379060,0 -h1,9725:7246811,34542753:0,0,0 -h1,9725:7879102,34542753:0,0,0 -k1,9725:31966990,34542753:24087888 -g1,9725:31966990,34542753 -) -(1,9725:7246811,35208931:24720180,410518,82312 -h1,9725:7246811,35208931:0,0,0 -g1,9725:8195248,35208931 -k1,9725:8195248,35208931:0 -h1,9725:14518161,35208931:0,0,0 -k1,9725:31966991,35208931:17448830 -g1,9725:31966991,35208931 -) -(1,9725:7246811,35875109:24720180,404226,76021 -h1,9725:7246811,35875109:0,0,0 -g1,9725:8195248,35875109 -g1,9725:9459831,35875109 -h1,9725:14834308,35875109:0,0,0 -k1,9725:31966992,35875109:17132684 -g1,9725:31966992,35875109 -) -] -) -g1,9726:31966991,35951130 -g1,9726:7246811,35951130 -g1,9726:7246811,35951130 -g1,9726:31966991,35951130 -g1,9726:31966991,35951130 -) -h1,9726:7246811,36147738:0,0,0 -] -) -] -r1,9735:32583029,37261850:26214,31400969,0 -) -] -) -) -g1,9729:32583029,36672026 -) -h1,9729:6630773,37288064:0,0,0 -(1,9732:6630773,40619920:25952256,32768,229376 -(1,9732:6630773,40619920:0,32768,229376 -(1,9732:6630773,40619920:5505024,32768,229376 -r1,9735:12135797,40619920:5505024,262144,229376 -) -k1,9732:6630773,40619920:-5505024 -) -(1,9732:6630773,40619920:25952256,32768,0 -r1,9735:32583029,40619920:25952256,32768,0 -) -) -(1,9732:6630773,42224248:25952256,606339,9436 -(1,9732:6630773,42224248:2464678,575668,0 -g1,9732:6630773,42224248 -g1,9732:9095451,42224248 -) -g1,9732:11360375,42224248 -k1,9732:32583029,42224248:18895602 -g1,9732:32583029,42224248 -) -(1,9735:6630773,43458952:25952256,513147,134348 -k1,9734:10883142,43458952:233046 -k1,9734:12505551,43458952:233046 -k1,9734:15000244,43458952:233046 -k1,9734:15892582,43458952:233046 -k1,9734:18910253,43458952:233046 -k1,9734:23990341,43458952:233045 -k1,9734:26510594,43458952:233046 -k1,9734:28321092,43458952:233046 -k1,9734:29941535,43458952:233046 -k1,9734:31773659,43458952:233046 -k1,9734:32583029,43458952:0 -) -(1,9735:6630773,44300440:25952256,505283,134348 -k1,9734:7833621,44300440:183763 -k1,9734:9670857,44300440:183763 -k1,9734:14024675,44300440:183762 -k1,9734:16000192,44300440:183763 -k1,9734:20203278,44300440:183763 -k1,9734:21950075,44300440:183763 -k1,9734:23831876,44300440:183763 -k1,9734:27192823,44300440:183762 -k1,9734:28185956,44300440:183763 -k1,9734:30601220,44300440:183763 -k1,9735:32583029,44300440:0 -) -(1,9735:6630773,45141928:25952256,505283,126483 -k1,9734:9277712,45141928:245700 -k1,9734:11141497,45141928:245701 -k1,9734:11999959,45141928:245700 -k1,9734:13697281,45141928:245700 -k1,9734:15368389,45141928:245700 -k1,9734:17475968,45141928:245701 -k1,9734:18713228,45141928:245700 -k1,9734:20826704,45141928:245700 -k1,9734:23857029,45141928:245700 -k1,9734:28949773,45141928:245701 -k1,9734:30884991,45141928:245700 -k1,9734:32583029,45141928:0 -) -] -(1,9735:32583029,45706769:0,0,0 -g1,9735:32583029,45706769 -) -) -] -(1,9735:6630773,47279633:25952256,0,0 -h1,9735:6630773,47279633:25952256,0,0 -) -] -(1,9735:4262630,4025873:0,0,0 -[1,9735:-473656,4025873:0,0,0 -(1,9735:-473656,-710413:0,0,0 -(1,9735:-473656,-710413:0,0,0 -g1,9735:-473656,-710413 -) -g1,9735:-473656,-710413 -) -] -) -] -!27644 -}181 -Input:1426:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1427:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1428:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1429:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1430:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1431:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1432:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!656 -{182 -[1,9800:4262630,47279633:28320399,43253760,0 -(1,9800:4262630,4025873:0,0,0 -[1,9800:-473656,4025873:0,0,0 -(1,9800:-473656,-710413:0,0,0 -(1,9800:-473656,-644877:0,0,0 -k1,9800:-473656,-644877:-65536 -) -(1,9800:-473656,4736287:0,0,0 -k1,9800:-473656,4736287:5209943 -) -g1,9800:-473656,-710413 -) -] -) -[1,9800:6630773,47279633:25952256,43253760,0 -[1,9800:6630773,4812305:25952256,786432,0 -(1,9800:6630773,4812305:25952256,485622,11795 -(1,9800:6630773,4812305:25952256,485622,11795 -g1,9800:3078558,4812305 -[1,9800:3078558,4812305:0,0,0 -(1,9800:3078558,2439708:0,1703936,0 -k1,9800:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,9800:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,9800:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,9800:3078558,4812305:0,0,0 -(1,9800:3078558,2439708:0,1703936,0 -g1,9800:29030814,2439708 -g1,9800:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,9800:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,9800:37855564,2439708:1179648,16384,0 -) -) -k1,9800:3078556,2439708:-34777008 -) -] -[1,9800:3078558,4812305:0,0,0 -(1,9800:3078558,49800853:0,16384,2228224 -k1,9800:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,9800:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,9800:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,9800:3078558,4812305:0,0,0 -(1,9800:3078558,49800853:0,16384,2228224 -g1,9800:29030814,49800853 -g1,9800:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,9800:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,9800:37855564,49800853:1179648,16384,0 -) -) -k1,9800:3078556,49800853:-34777008 -) -] -g1,9800:6630773,4812305 -g1,9800:6630773,4812305 -g1,9800:8412041,4812305 -g1,9800:10364358,4812305 -k1,9800:31387652,4812305:21023294 -) -) -] -[1,9800:6630773,45706769:25952256,40108032,0 -(1,9800:6630773,45706769:25952256,40108032,0 -(1,9800:6630773,45706769:0,0,0 -g1,9800:6630773,45706769 -) -[1,9800:6630773,45706769:25952256,40108032,0 -(1,9735:6630773,6254097:25952256,513147,126483 -k1,9734:7893703,6254097:196659 -k1,9734:11441217,6254097:196658 -k1,9734:13018064,6254097:196659 -k1,9734:14206282,6254097:196658 -k1,9734:16270717,6254097:196659 -k1,9734:17892783,6254097:196658 -k1,9734:20107951,6254097:196659 -k1,9734:21737226,6254097:196658 -k1,9734:22348725,6254097:196656 -k1,9734:25305759,6254097:196658 -k1,9734:27696563,6254097:196659 -k1,9734:30419634,6254097:196658 -k1,9734:31563944,6254097:196659 -k1,9734:32583029,6254097:0 -) -(1,9735:6630773,7095585:25952256,513147,126483 -k1,9734:9427253,7095585:241887 -k1,9734:10328433,7095585:241888 -k1,9734:11995728,7095585:241887 -k1,9734:14082453,7095585:241887 -k1,9734:15887375,7095585:241888 -k1,9734:17818780,7095585:241887 -k1,9734:20845293,7095585:241888 -k1,9734:25760552,7095585:241887 -k1,9734:27106721,7095585:241887 -k1,9734:28096375,7095585:241888 -k1,9734:31189078,7095585:241887 -k1,9734:32583029,7095585:0 -) -(1,9735:6630773,7937073:25952256,513147,102891 -g1,9734:8947470,7937073 -g1,9734:10959425,7937073 -g1,9734:13650333,7937073 -g1,9734:18117922,7937073 -g1,9734:20808830,7937073 -g1,9734:22199504,7937073 -g1,9734:24959880,7937073 -k1,9735:32583029,7937073:5131470 -g1,9735:32583029,7937073 -) -(1,9737:6630773,8778561:25952256,505283,126483 -h1,9736:6630773,8778561:983040,0,0 -k1,9736:9384378,8778561:167554 -k1,9736:11396769,8778561:167553 -k1,9736:12953686,8778561:167554 -k1,9736:14112800,8778561:167554 -k1,9736:15669716,8778561:167553 -k1,9736:18681533,8778561:167554 -k1,9736:19465125,8778561:167554 -k1,9736:21126244,8778561:167553 -k1,9736:21649658,8778561:167554 -k1,9736:23055187,8778561:167554 -k1,9736:24507246,8778561:167553 -k1,9736:26329584,8778561:167554 -k1,9736:27028635,8778561:167554 -k1,9736:28571789,8778561:167553 -k1,9736:29896053,8778561:167554 -k1,9737:32583029,8778561:0 -) -(1,9737:6630773,9620049:25952256,513147,126483 -k1,9736:8276735,9620049:204825 -k1,9736:11125283,9620049:204826 -k1,9736:11989400,9620049:204825 -k1,9736:14865472,9620049:204825 -k1,9736:18085609,9620049:204826 -k1,9736:21074403,9620049:204825 -k1,9736:21891990,9620049:204825 -k1,9736:23548437,9620049:204825 -k1,9736:25441470,9620049:204826 -k1,9736:26262333,9620049:204825 -k1,9736:28066236,9620049:204825 -k1,9736:29651906,9620049:204826 -k1,9736:31358816,9620049:204825 -k1,9737:32583029,9620049:0 -) -(1,9737:6630773,10461537:25952256,513147,126483 -k1,9736:8105879,10461537:207640 -k1,9736:11716148,10461537:207640 -k1,9736:13299388,10461537:207639 -k1,9736:14526113,10461537:207640 -k1,9736:16335453,10461537:207640 -k1,9736:18164454,10461537:207640 -k1,9736:20747118,10461537:207639 -k1,9736:21614050,10461537:207640 -k1,9736:25304929,10461537:207640 -k1,9736:28240833,10461537:207640 -k1,9736:29076307,10461537:207639 -k1,9736:30885647,10461537:207640 -k1,9736:32583029,10461537:0 -) -(1,9737:6630773,11303025:25952256,513147,134348 -k1,9736:8232363,11303025:176182 -k1,9736:10094132,11303025:176183 -k1,9736:11261874,11303025:176182 -k1,9736:12097349,11303025:176183 -k1,9736:14872034,11303025:176182 -k1,9736:17795485,11303025:176182 -k1,9736:19163113,11303025:176183 -k1,9736:21104180,11303025:176182 -k1,9736:24294364,11303025:176183 -k1,9736:26356017,11303025:176182 -k1,9736:29618946,11303025:176183 -k1,9736:31184491,11303025:176182 -k1,9737:32583029,11303025:0 -) -(1,9737:6630773,12144513:25952256,513147,134348 -k1,9736:8434652,12144513:187761 -k1,9736:9813859,12144513:187762 -k1,9736:12522790,12144513:187761 -k1,9736:13125383,12144513:187750 -k1,9736:14379415,12144513:187761 -k1,9736:15942778,12144513:187762 -k1,9736:18890915,12144513:187761 -k1,9736:21863302,12144513:187762 -k1,9736:22998714,12144513:187761 -k1,9736:24205560,12144513:187761 -k1,9736:26947915,12144513:187762 -k1,9736:28327121,12144513:187761 -k1,9736:32583029,12144513:0 -) -(1,9737:6630773,12986001:25952256,513147,134348 -k1,9736:7572816,12986001:282751 -k1,9736:11512476,12986001:282751 -k1,9736:12867396,12986001:282751 -k1,9736:14435962,12986001:282750 -k1,9736:15074573,12986001:282751 -k1,9736:18910686,12986001:282751 -k1,9736:20748606,12986001:282751 -k1,9736:21979008,12986001:282751 -k1,9736:23770398,12986001:282751 -k1,9736:26574318,12986001:282750 -(1,9736:26574318,12986001:0,452978,115847 -r1,9800:27987719,12986001:1413401,568825,115847 -k1,9736:26574318,12986001:-1413401 -) -(1,9736:26574318,12986001:1413401,452978,115847 -k1,9736:26574318,12986001:3277 -h1,9736:27984442,12986001:0,411205,112570 -) -k1,9736:28444140,12986001:282751 -k1,9736:31157621,12986001:282751 -k1,9736:32583029,12986001:0 -) -(1,9737:6630773,13827489:25952256,505283,134348 -k1,9736:8559833,13827489:243474 -k1,9736:10484961,13827489:243474 -k1,9736:12378632,13827489:243474 -k1,9736:15337264,13827489:243475 -k1,9736:19826160,13827489:243474 -k1,9736:20425494,13827489:243474 -(1,9736:20425494,13827489:0,414482,115847 -r1,9800:21135472,13827489:709978,530329,115847 -k1,9736:20425494,13827489:-709978 -) -(1,9736:20425494,13827489:709978,414482,115847 -k1,9736:20425494,13827489:3277 -h1,9736:21132195,13827489:0,411205,112570 -) -k1,9736:21378946,13827489:243474 -k1,9736:23581946,13827489:243474 -k1,9736:25318330,13827489:243474 -k1,9736:26628076,13827489:243475 -k1,9736:28401816,13827489:243474 -k1,9736:29296718,13827489:243474 -k1,9736:31157621,13827489:243474 -k1,9736:32583029,13827489:0 -) -(1,9737:6630773,14668977:25952256,513147,126483 -k1,9736:8881733,14668977:240315 -k1,9736:10069700,14668977:240316 -k1,9736:11761637,14668977:240315 -k1,9736:15743403,14668977:240316 -k1,9736:17055887,14668977:240315 -k1,9736:19623386,14668977:240316 -k1,9736:20219561,14668977:240315 -k1,9736:24447743,14668977:240316 -k1,9736:25347350,14668977:240315 -k1,9736:26760105,14668977:240316 -k1,9736:27659712,14668977:240315 -k1,9736:29388351,14668977:240316 -k1,9736:31227744,14668977:240315 -k1,9736:32583029,14668977:0 -) -(1,9737:6630773,15510465:25952256,505283,7863 -g1,9736:8098779,15510465 -g1,9736:9489453,15510465 -g1,9736:10871607,15510465 -k1,9737:32583029,15510465:20112344 -g1,9737:32583029,15510465 -) -(1,9739:6630773,16351953:25952256,513147,134348 -h1,9738:6630773,16351953:983040,0,0 -k1,9738:8816680,16351953:249318 -k1,9738:10554320,16351953:249317 -k1,9738:11565166,16351953:249318 -k1,9738:14386772,16351953:249318 -k1,9738:14991950,16351953:249318 -k1,9738:16666675,16351953:249317 -k1,9738:18760831,16351953:249318 -k1,9738:20577770,16351953:249318 -k1,9738:21182947,16351953:249317 -k1,9738:24052394,16351953:249318 -k1,9738:26453259,16351953:249318 -k1,9738:27462795,16351953:249318 -k1,9738:29216163,16351953:249317 -k1,9738:30635954,16351953:249318 -k1,9738:32583029,16351953:0 -) -(1,9739:6630773,17193441:25952256,505283,134348 -k1,9738:9356784,17193441:160932 -k1,9738:10802223,17193441:160933 -k1,9738:12133628,17193441:160932 -k1,9738:13824826,17193441:160932 -k1,9738:14637187,17193441:160933 -k1,9738:15890604,17193441:160932 -k1,9738:16407396,17193441:160932 -k1,9738:20275044,17193441:160932 -k1,9738:22303753,17193441:160933 -(1,9738:22303753,17193441:0,452978,115847 -r1,9800:23717154,17193441:1413401,568825,115847 -k1,9738:22303753,17193441:-1413401 -) -(1,9738:22303753,17193441:1413401,452978,115847 -k1,9738:22303753,17193441:3277 -h1,9738:23713877,17193441:0,411205,112570 -) -k1,9738:23878086,17193441:160932 -k1,9738:24721903,17193441:160932 -k1,9738:25238696,17193441:160933 -k1,9738:28876313,17193441:160932 -k1,9738:32583029,17193441:0 -) -(1,9739:6630773,18034929:25952256,505283,134348 -k1,9738:8684967,18034929:186418 -(1,9738:8684967,18034929:0,452978,115847 -r1,9800:11153504,18034929:2468537,568825,115847 -k1,9738:8684967,18034929:-2468537 -) -(1,9738:8684967,18034929:2468537,452978,115847 -k1,9738:8684967,18034929:3277 -h1,9738:11150227,18034929:0,411205,112570 -) -k1,9738:11339921,18034929:186417 -k1,9738:12717784,18034929:186418 -k1,9738:14188707,18034929:186417 -k1,9738:15545598,18034929:186418 -k1,9738:16836297,18034929:186417 -k1,9738:18409457,18034929:186418 -k1,9738:19431459,18034929:186418 -k1,9738:20636961,18034929:186417 -k1,9738:24226008,18034929:186418 -k1,9738:25792613,18034929:186417 -k1,9738:28027031,18034929:186418 -k1,9738:28974976,18034929:186417 -k1,9738:31563944,18034929:186418 -k1,9738:32583029,18034929:0 -) -(1,9739:6630773,18876417:25952256,505283,134348 -g1,9738:11453567,18876417 -g1,9738:13040849,18876417 -k1,9739:32583030,18876417:17540056 -g1,9739:32583030,18876417 -) -(1,9741:6630773,19717905:25952256,513147,126483 -h1,9740:6630773,19717905:983040,0,0 -g1,9740:8855064,19717905 -g1,9740:11715710,19717905 -g1,9740:12862590,19717905 -g1,9740:13417679,19717905 -g1,9740:15042316,19717905 -g1,9740:17086383,19717905 -g1,9740:17944904,19717905 -g1,9740:20811448,19717905 -g1,9740:23021322,19717905 -g1,9740:24088903,19717905 -g1,9740:26056949,19717905 -k1,9741:32583029,19717905:5259924 -g1,9741:32583029,19717905 -) -v1,9743:6630773,20732447:0,393216,0 -(1,9757:6630773,24467230:25952256,4127999,196608 -g1,9757:6630773,24467230 -g1,9757:6630773,24467230 -g1,9757:6434165,24467230 -(1,9757:6434165,24467230:0,4127999,196608 -r1,9800:32779637,24467230:26345472,4324607,196608 -k1,9757:6434165,24467230:-26345472 -) -(1,9757:6434165,24467230:26345472,4127999,196608 -[1,9757:6630773,24467230:25952256,3931391,0 -(1,9745:6630773,20940065:25952256,404226,101187 -(1,9744:6630773,20940065:0,0,0 -g1,9744:6630773,20940065 -g1,9744:6630773,20940065 -g1,9744:6303093,20940065 -(1,9744:6303093,20940065:0,0,0 -) -g1,9744:6630773,20940065 -) -g1,9745:8527647,20940065 -g1,9745:9476085,20940065 -g1,9745:12321397,20940065 -g1,9745:14218271,20940065 -g1,9745:14850563,20940065 -g1,9745:16747438,20940065 -g1,9745:18960458,20940065 -g1,9745:19592750,20940065 -h1,9745:21173479,20940065:0,0,0 -k1,9745:32583029,20940065:11409550 -g1,9745:32583029,20940065 -) -(1,9746:6630773,21606243:25952256,404226,101187 -h1,9746:6630773,21606243:0,0,0 -k1,9746:6630773,21606243:0 -h1,9746:10424521,21606243:0,0,0 -k1,9746:32583029,21606243:22158508 -g1,9746:32583029,21606243 -) -(1,9750:6630773,22337957:25952256,404226,76021 -(1,9748:6630773,22337957:0,0,0 -g1,9748:6630773,22337957 -g1,9748:6630773,22337957 -g1,9748:6303093,22337957 -(1,9748:6303093,22337957:0,0,0 -) -g1,9748:6630773,22337957 -) -g1,9750:7579210,22337957 -g1,9750:8843793,22337957 -h1,9750:10108376,22337957:0,0,0 -k1,9750:32583028,22337957:22474652 -g1,9750:32583028,22337957 -) -(1,9752:6630773,23659495:25952256,404226,101187 -(1,9751:6630773,23659495:0,0,0 -g1,9751:6630773,23659495 -g1,9751:6630773,23659495 -g1,9751:6303093,23659495 -(1,9751:6303093,23659495:0,0,0 -) -g1,9751:6630773,23659495 -) -k1,9752:6630773,23659495:0 -h1,9752:9792230,23659495:0,0,0 -k1,9752:32583030,23659495:22790800 -g1,9752:32583030,23659495 -) -(1,9756:6630773,24391209:25952256,410518,76021 -(1,9754:6630773,24391209:0,0,0 -g1,9754:6630773,24391209 -g1,9754:6630773,24391209 -g1,9754:6303093,24391209 -(1,9754:6303093,24391209:0,0,0 -) -g1,9754:6630773,24391209 -) -g1,9756:7579210,24391209 -g1,9756:7895356,24391209 -g1,9756:11689105,24391209 -g1,9756:13902125,24391209 -g1,9756:15482854,24391209 -g1,9756:17063583,24391209 -g1,9756:18012020,24391209 -g1,9756:19908894,24391209 -g1,9756:20541186,24391209 -g1,9756:21173478,24391209 -g1,9756:21805770,24391209 -g1,9756:22438062,24391209 -g1,9756:23070354,24391209 -g1,9756:23702646,24391209 -g1,9756:24334938,24391209 -g1,9756:24967230,24391209 -g1,9756:25599522,24391209 -h1,9756:26231813,24391209:0,0,0 -k1,9756:32583029,24391209:6351216 -g1,9756:32583029,24391209 -) -] -) -g1,9757:32583029,24467230 -g1,9757:6630773,24467230 -g1,9757:6630773,24467230 -g1,9757:32583029,24467230 -g1,9757:32583029,24467230 -) -h1,9757:6630773,24663838:0,0,0 -(1,9761:6630773,25853690:25952256,513147,115847 -h1,9760:6630773,25853690:983040,0,0 -k1,9760:8801621,25853690:234259 -k1,9760:10420000,25853690:234259 -k1,9760:11746744,25853690:234259 -k1,9760:13000088,25853690:234259 -k1,9760:14623710,25853690:234259 -k1,9760:15792512,25853690:234259 -(1,9760:15792512,25853690:0,414482,115847 -r1,9800:18261049,25853690:2468537,530329,115847 -k1,9760:15792512,25853690:-2468537 -) -(1,9760:15792512,25853690:2468537,414482,115847 -k1,9760:15792512,25853690:3277 -h1,9760:18257772,25853690:0,411205,112570 -) -k1,9760:18495308,25853690:234259 -k1,9760:20123517,25853690:234258 -k1,9760:21747139,25853690:234259 -k1,9760:22790768,25853690:234259 -k1,9760:24044112,25853690:234259 -k1,9760:26764152,25853690:234259 -k1,9760:27657703,25853690:234259 -k1,9760:31202841,25853690:234259 -k1,9761:32583029,25853690:0 -) -(1,9761:6630773,26695178:25952256,505283,7863 -g1,9760:8600129,26695178 -g1,9760:9990803,26695178 -g1,9760:12948442,26695178 -g1,9760:13763709,26695178 -k1,9761:32583030,26695178:18230808 -g1,9761:32583030,26695178 -) -v1,9763:6630773,27709719:0,393216,0 -(1,9776:6630773,30778324:25952256,3461821,196608 -g1,9776:6630773,30778324 -g1,9776:6630773,30778324 -g1,9776:6434165,30778324 -(1,9776:6434165,30778324:0,3461821,196608 -r1,9800:32779637,30778324:26345472,3658429,196608 -k1,9776:6434165,30778324:-26345472 -) -(1,9776:6434165,30778324:26345472,3461821,196608 -[1,9776:6630773,30778324:25952256,3265213,0 -(1,9765:6630773,27917337:25952256,404226,76021 -(1,9764:6630773,27917337:0,0,0 -g1,9764:6630773,27917337 -g1,9764:6630773,27917337 -g1,9764:6303093,27917337 -(1,9764:6303093,27917337:0,0,0 -) -g1,9764:6630773,27917337 -) -k1,9765:6630773,27917337:0 -h1,9765:11056812,27917337:0,0,0 -k1,9765:32583028,27917337:21526216 -g1,9765:32583028,27917337 -) -(1,9769:6630773,28649051:25952256,404226,76021 -(1,9767:6630773,28649051:0,0,0 -g1,9767:6630773,28649051 -g1,9767:6630773,28649051 -g1,9767:6303093,28649051 -(1,9767:6303093,28649051:0,0,0 -) -g1,9767:6630773,28649051 -) -g1,9769:7579210,28649051 -g1,9769:8843793,28649051 -h1,9769:10108376,28649051:0,0,0 -k1,9769:32583028,28649051:22474652 -g1,9769:32583028,28649051 -) -(1,9771:6630773,29970589:25952256,404226,76021 -(1,9770:6630773,29970589:0,0,0 -g1,9770:6630773,29970589 -g1,9770:6630773,29970589 -g1,9770:6303093,29970589 -(1,9770:6303093,29970589:0,0,0 -) -g1,9770:6630773,29970589 -) -k1,9771:6630773,29970589:0 -h1,9771:11056812,29970589:0,0,0 -k1,9771:32583028,29970589:21526216 -g1,9771:32583028,29970589 -) -(1,9775:6630773,30702303:25952256,404226,76021 -(1,9773:6630773,30702303:0,0,0 -g1,9773:6630773,30702303 -g1,9773:6630773,30702303 -g1,9773:6303093,30702303 -(1,9773:6303093,30702303:0,0,0 -) -g1,9773:6630773,30702303 -) -g1,9775:7579210,30702303 -g1,9775:8843793,30702303 -h1,9775:10108376,30702303:0,0,0 -k1,9775:32583028,30702303:22474652 -g1,9775:32583028,30702303 -) -] -) -g1,9776:32583029,30778324 -g1,9776:6630773,30778324 -g1,9776:6630773,30778324 -g1,9776:32583029,30778324 -g1,9776:32583029,30778324 -) -h1,9776:6630773,30974932:0,0,0 -(1,9782:6630773,32164784:25952256,505283,134348 -h1,9781:6630773,32164784:983040,0,0 -g1,9781:9416053,32164784 -g1,9781:11460120,32164784 -(1,9781:11460120,32164784:0,414482,115847 -r1,9800:13928657,32164784:2468537,530329,115847 -k1,9781:11460120,32164784:-2468537 -) -(1,9781:11460120,32164784:2468537,414482,115847 -k1,9781:11460120,32164784:3277 -h1,9781:13925380,32164784:0,411205,112570 -) -g1,9781:14127886,32164784 -g1,9781:14858612,32164784 -g1,9781:18489961,32164784 -g1,9781:19450718,32164784 -g1,9781:20669032,32164784 -g1,9781:24129988,32164784 -k1,9782:32583029,32164784:6551186 -g1,9782:32583029,32164784 -) -v1,9784:6630773,33179326:0,393216,0 -(1,9788:6630773,33488131:25952256,702021,196608 -g1,9788:6630773,33488131 -g1,9788:6630773,33488131 -g1,9788:6434165,33488131 -(1,9788:6434165,33488131:0,702021,196608 -r1,9800:32779637,33488131:26345472,898629,196608 -k1,9788:6434165,33488131:-26345472 -) -(1,9788:6434165,33488131:26345472,702021,196608 -[1,9788:6630773,33488131:25952256,505413,0 -(1,9786:6630773,33386944:25952256,404226,101187 -(1,9785:6630773,33386944:0,0,0 -g1,9785:6630773,33386944 -g1,9785:6630773,33386944 -g1,9785:6303093,33386944 -(1,9785:6303093,33386944:0,0,0 -) -g1,9785:6630773,33386944 -) -k1,9786:6630773,33386944:0 -h1,9786:10740667,33386944:0,0,0 -k1,9786:32583029,33386944:21842362 -g1,9786:32583029,33386944 -) -] -) -g1,9788:32583029,33488131 -g1,9788:6630773,33488131 -g1,9788:6630773,33488131 -g1,9788:32583029,33488131 -g1,9788:32583029,33488131 -) -h1,9788:6630773,33684739:0,0,0 -(1,9791:6630773,43182305:25952256,9083666,0 -k1,9791:10523651,43182305:3892878 -h1,9790:10523651,43182305:0,0,0 -(1,9790:10523651,43182305:18166500,9083666,0 -(1,9790:10523651,43182305:18167376,9083688,0 -(1,9790:10523651,43182305:18167376,9083688,0 -(1,9790:10523651,43182305:0,9083688,0 -(1,9790:10523651,43182305:0,14208860,0 -(1,9790:10523651,43182305:28417720,14208860,0 -) -k1,9790:10523651,43182305:-28417720 -) -) -g1,9790:28691027,43182305 -) -) -) -g1,9791:28690151,43182305 -k1,9791:32583029,43182305:3892878 -) -(1,9798:6630773,44023793:25952256,513147,134348 -h1,9797:6630773,44023793:983040,0,0 -k1,9797:8330421,44023793:229020 -k1,9797:11321814,44023793:229050 -k1,9797:14385951,44023793:229050 -k1,9797:16350394,44023793:229050 -k1,9797:17968808,44023793:229051 -k1,9797:19132401,44023793:229050 -(1,9797:19132401,44023793:0,414482,115847 -r1,9800:21249226,44023793:2116825,530329,115847 -k1,9797:19132401,44023793:-2116825 -) -(1,9797:19132401,44023793:2116825,414482,115847 -k1,9797:19132401,44023793:3277 -h1,9797:21245949,44023793:0,411205,112570 -) -k1,9797:21478276,44023793:229050 -k1,9797:25069323,44023793:229050 -k1,9797:30016965,44023793:229050 -k1,9797:31635378,44023793:229050 -k1,9797:32583029,44023793:0 -) -(1,9798:6630773,44865281:25952256,513147,134348 -k1,9797:10832723,44865281:246852 -k1,9797:13070560,44865281:246853 -k1,9797:13673272,44865281:246852 -k1,9797:15450390,44865281:246852 -k1,9797:17465403,44865281:246852 -k1,9797:21483198,44865281:246853 -k1,9797:22926737,44865281:246852 -k1,9797:25334966,44865281:246852 -k1,9797:27162546,44865281:246852 -k1,9797:28068691,44865281:246853 -k1,9797:30053558,44865281:246852 -k1,9797:31145824,44865281:246852 -k1,9798:32583029,44865281:0 -) -(1,9798:6630773,45706769:25952256,505283,134348 -g1,9797:9880048,45706769 -g1,9797:10902409,45706769 -g1,9797:13557272,45706769 -g1,9797:17364258,45706769 -g1,9797:18094984,45706769 -g1,9797:19824479,45706769 -g1,9797:21721746,45706769 -g1,9797:23310338,45706769 -g1,9797:24501127,45706769 -k1,9798:32583029,45706769:5605952 -g1,9798:32583029,45706769 -) -] -(1,9800:32583029,45706769:0,0,0 -g1,9800:32583029,45706769 -) -) -] -(1,9800:6630773,47279633:25952256,0,0 -h1,9800:6630773,47279633:25952256,0,0 -) -] -(1,9800:4262630,4025873:0,0,0 -[1,9800:-473656,4025873:0,0,0 -(1,9800:-473656,-710413:0,0,0 -(1,9800:-473656,-710413:0,0,0 -g1,9800:-473656,-710413 -) -g1,9800:-473656,-710413 -) -] -) -] -!21169 -}182 -!12 -{183 -[1,9849:4262630,47279633:28320399,43253760,0 -(1,9849:4262630,4025873:0,0,0 -[1,9849:-473656,4025873:0,0,0 -(1,9849:-473656,-710413:0,0,0 -(1,9849:-473656,-644877:0,0,0 -k1,9849:-473656,-644877:-65536 -) -(1,9849:-473656,4736287:0,0,0 -k1,9849:-473656,4736287:5209943 -) -g1,9849:-473656,-710413 -) -] -) -[1,9849:6630773,47279633:25952256,43253760,0 -[1,9849:6630773,4812305:25952256,786432,0 -(1,9849:6630773,4812305:25952256,505283,134348 -(1,9849:6630773,4812305:25952256,505283,134348 -g1,9849:3078558,4812305 -[1,9849:3078558,4812305:0,0,0 -(1,9849:3078558,2439708:0,1703936,0 -k1,9849:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,9849:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,9849:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,9849:3078558,4812305:0,0,0 -(1,9849:3078558,2439708:0,1703936,0 -g1,9849:29030814,2439708 -g1,9849:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,9849:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,9849:37855564,2439708:1179648,16384,0 -) -) -k1,9849:3078556,2439708:-34777008 -) -] -[1,9849:3078558,4812305:0,0,0 -(1,9849:3078558,49800853:0,16384,2228224 -k1,9849:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,9849:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,9849:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,9849:3078558,4812305:0,0,0 -(1,9849:3078558,49800853:0,16384,2228224 -g1,9849:29030814,49800853 -g1,9849:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,9849:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,9849:37855564,49800853:1179648,16384,0 -) -) -k1,9849:3078556,49800853:-34777008 -) -] -g1,9849:6630773,4812305 -k1,9849:24502442,4812305:16676292 -g1,9849:25889183,4812305 -g1,9849:26537989,4812305 -g1,9849:29852144,4812305 -) -) -] -[1,9849:6630773,45706769:25952256,40108032,0 -(1,9849:6630773,45706769:25952256,40108032,0 -(1,9849:6630773,45706769:0,0,0 -g1,9849:6630773,45706769 -) -[1,9849:6630773,45706769:25952256,40108032,0 -v1,9800:6630773,6254097:0,393216,0 -(1,9811:6630773,9282332:25952256,3421451,196608 -g1,9811:6630773,9282332 -g1,9811:6630773,9282332 -g1,9811:6434165,9282332 -(1,9811:6434165,9282332:0,3421451,196608 -r1,9849:32779637,9282332:26345472,3618059,196608 -k1,9811:6434165,9282332:-26345472 -) -(1,9811:6434165,9282332:26345472,3421451,196608 -[1,9811:6630773,9282332:25952256,3224843,0 -(1,9802:6630773,6461715:25952256,404226,76021 -(1,9801:6630773,6461715:0,0,0 -g1,9801:6630773,6461715 -g1,9801:6630773,6461715 -g1,9801:6303093,6461715 -(1,9801:6303093,6461715:0,0,0 -) -g1,9801:6630773,6461715 -) -k1,9802:6630773,6461715:0 -h1,9802:10424521,6461715:0,0,0 -k1,9802:32583029,6461715:22158508 -g1,9802:32583029,6461715 -) -(1,9803:6630773,7127893:25952256,404226,76021 -h1,9803:6630773,7127893:0,0,0 -k1,9803:6630773,7127893:0 -h1,9803:10740666,7127893:0,0,0 -k1,9803:32583030,7127893:21842364 -g1,9803:32583030,7127893 -) -(1,9807:6630773,7859607:25952256,404226,76021 -(1,9805:6630773,7859607:0,0,0 -g1,9805:6630773,7859607 -g1,9805:6630773,7859607 -g1,9805:6303093,7859607 -(1,9805:6303093,7859607:0,0,0 -) -g1,9805:6630773,7859607 -) -g1,9807:7579210,7859607 -g1,9807:8843793,7859607 -h1,9807:10108376,7859607:0,0,0 -k1,9807:32583028,7859607:22474652 -g1,9807:32583028,7859607 -) -(1,9809:6630773,9181145:25952256,404226,101187 -(1,9808:6630773,9181145:0,0,0 -g1,9808:6630773,9181145 -g1,9808:6630773,9181145 -g1,9808:6303093,9181145 -(1,9808:6303093,9181145:0,0,0 -) -g1,9808:6630773,9181145 -) -k1,9809:6630773,9181145:0 -h1,9809:10424521,9181145:0,0,0 -k1,9809:32583029,9181145:22158508 -g1,9809:32583029,9181145 -) -] -) -g1,9811:32583029,9282332 -g1,9811:6630773,9282332 -g1,9811:6630773,9282332 -g1,9811:32583029,9282332 -g1,9811:32583029,9282332 -) -h1,9811:6630773,9478940:0,0,0 -(1,9814:6630773,19152430:25952256,9083666,0 -k1,9814:10523651,19152430:3892878 -h1,9813:10523651,19152430:0,0,0 -(1,9813:10523651,19152430:18166500,9083666,0 -(1,9813:10523651,19152430:18167376,9083688,0 -(1,9813:10523651,19152430:18167376,9083688,0 -(1,9813:10523651,19152430:0,9083688,0 -(1,9813:10523651,19152430:0,14208860,0 -(1,9813:10523651,19152430:28417720,14208860,0 -) -k1,9813:10523651,19152430:-28417720 -) -) -g1,9813:28691027,19152430 -) -) -) -g1,9814:28690151,19152430 -k1,9814:32583029,19152430:3892878 -) -(1,9821:6630773,19993918:25952256,513147,126483 -h1,9820:6630773,19993918:983040,0,0 -k1,9820:8487244,19993918:245596 -k1,9820:9751925,19993918:245596 -k1,9820:11381641,19993918:245596 -k1,9820:12799676,19993918:245596 -k1,9820:14541459,19993918:245596 -k1,9820:17261695,19993918:245597 -k1,9820:18679730,19993918:245596 -k1,9820:21687669,19993918:245596 -k1,9820:25595417,19993918:245596 -k1,9820:26492441,19993918:245596 -k1,9820:28163445,19993918:245596 -k1,9820:30253879,19993918:245596 -k1,9821:32583029,19993918:0 -) -(1,9821:6630773,20835406:25952256,513147,134348 -k1,9820:9475341,20835406:230337 -k1,9820:10697238,20835406:230337 -k1,9820:12614472,20835406:230337 -k1,9820:13472644,20835406:230337 -k1,9820:14722066,20835406:230337 -k1,9820:16258536,20835406:230337 -k1,9820:17645583,20835406:230337 -k1,9820:18744273,20835406:230338 -k1,9820:20067095,20835406:230337 -k1,9820:20653292,20835406:230337 -k1,9820:23245547,20835406:230337 -k1,9820:25902027,20835406:230337 -k1,9820:26783792,20835406:230337 -k1,9820:29431752,20835406:230337 -k1,9820:30681174,20835406:230337 -k1,9820:32583029,20835406:0 -) -(1,9821:6630773,21676894:25952256,513147,134348 -k1,9820:8470743,21676894:150452 -k1,9820:9237233,21676894:150452 -k1,9820:10406770,21676894:150452 -k1,9820:12798552,21676894:150451 -k1,9820:15933514,21676894:150452 -k1,9820:16952318,21676894:150452 -k1,9820:18195255,21676894:150452 -k1,9820:20113213,21676894:150452 -k1,9820:20826619,21676894:150452 -k1,9820:23388141,21676894:150452 -k1,9820:25279884,21676894:150451 -k1,9820:27142792,21676894:150452 -k1,9820:28054772,21676894:150452 -k1,9820:29699445,21676894:150452 -k1,9820:32583029,21676894:0 -) -(1,9821:6630773,22518382:25952256,513147,134348 -k1,9820:10337014,22518382:182370 -k1,9820:11467036,22518382:182371 -k1,9820:12668491,22518382:182370 -k1,9820:17754920,22518382:182370 -k1,9820:18293150,22518382:182370 -k1,9820:20929844,22518382:182371 -k1,9820:22059865,22518382:182370 -k1,9820:24127706,22518382:182370 -k1,9820:25329161,22518382:182370 -k1,9820:28279773,22518382:182371 -k1,9820:29616870,22518382:182353 -k1,9820:32583029,22518382:0 -) -(1,9821:6630773,23359870:25952256,513147,134348 -k1,9820:8117249,23359870:295031 -k1,9820:10318067,23359870:295031 -k1,9820:15343487,23359870:295031 -k1,9820:17373911,23359870:295031 -k1,9820:19643542,23359870:295031 -k1,9820:20470070,23359870:295031 -k1,9820:22451998,23359870:295031 -k1,9820:22451998,23359870:0 -k1,9820:22747029,23359870:295031 -k1,9820:25083506,23359870:295031 -k1,9820:29630513,23359870:295031 -k1,9820:30944629,23359870:295031 -k1,9821:32583029,23359870:0 -) -(1,9821:6630773,24201358:25952256,505283,134348 -g1,9820:8674840,24201358 -g1,9820:9742421,24201358 -g1,9820:13006769,24201358 -g1,9820:14225083,24201358 -g1,9820:18698570,24201358 -g1,9820:19513837,24201358 -g1,9820:22168700,24201358 -k1,9821:32583029,24201358:7956074 -g1,9821:32583029,24201358 -) -v1,9823:6630773,25391824:0,393216,0 -(1,9827:6630773,25675463:25952256,676855,196608 -g1,9827:6630773,25675463 -g1,9827:6630773,25675463 -g1,9827:6434165,25675463 -(1,9827:6434165,25675463:0,676855,196608 -r1,9849:32779637,25675463:26345472,873463,196608 -k1,9827:6434165,25675463:-26345472 -) -(1,9827:6434165,25675463:26345472,676855,196608 -[1,9827:6630773,25675463:25952256,480247,0 -(1,9825:6630773,25599442:25952256,404226,76021 -(1,9824:6630773,25599442:0,0,0 -g1,9824:6630773,25599442 -g1,9824:6630773,25599442 -g1,9824:6303093,25599442 -(1,9824:6303093,25599442:0,0,0 -) -g1,9824:6630773,25599442 -) -g1,9825:11372959,25599442 -g1,9825:12321397,25599442 -g1,9825:14850563,25599442 -g1,9825:15482855,25599442 -g1,9825:16747438,25599442 -g1,9825:17379730,25599442 -h1,9825:18328168,25599442:0,0,0 -k1,9825:32583029,25599442:14254861 -g1,9825:32583029,25599442 -) -] -) -g1,9827:32583029,25675463 -g1,9827:6630773,25675463 -g1,9827:6630773,25675463 -g1,9827:32583029,25675463 -g1,9827:32583029,25675463 -) -h1,9827:6630773,25872071:0,0,0 -(1,9831:6630773,27237847:25952256,505283,126483 -h1,9830:6630773,27237847:983040,0,0 -g1,9830:8766591,27237847 -g1,9830:9900363,27237847 -g1,9830:11118677,27237847 -g1,9830:14052068,27237847 -g1,9830:16724626,27237847 -g1,9830:17575283,27237847 -g1,9830:18172971,27237847 -g1,9830:20977256,27237847 -g1,9830:22195570,27237847 -g1,9830:25486788,27237847 -k1,9831:32583029,27237847:4106489 -g1,9831:32583029,27237847 -) -v1,9834:6630773,28428313:0,393216,0 -(1,9839:6630773,29403296:25952256,1368199,196608 -g1,9839:6630773,29403296 -g1,9839:6630773,29403296 -g1,9839:6434165,29403296 -(1,9839:6434165,29403296:0,1368199,196608 -r1,9849:32779637,29403296:26345472,1564807,196608 -k1,9839:6434165,29403296:-26345472 -) -(1,9839:6434165,29403296:26345472,1368199,196608 -[1,9839:6630773,29403296:25952256,1171591,0 -(1,9836:6630773,28635931:25952256,404226,82312 -(1,9835:6630773,28635931:0,0,0 -g1,9835:6630773,28635931 -g1,9835:6630773,28635931 -g1,9835:6303093,28635931 -(1,9835:6303093,28635931:0,0,0 -) -g1,9835:6630773,28635931 -) -g1,9836:10108376,28635931 -g1,9836:11056814,28635931 -g1,9836:17379728,28635931 -g1,9836:20225039,28635931 -g1,9836:20857331,28635931 -h1,9836:21489623,28635931:0,0,0 -k1,9836:32583029,28635931:11093406 -g1,9836:32583029,28635931 -) -(1,9837:6630773,29302109:25952256,404226,101187 -h1,9837:6630773,29302109:0,0,0 -k1,9837:6630773,29302109:0 -h1,9837:11689104,29302109:0,0,0 -k1,9837:32583028,29302109:20893924 -g1,9837:32583028,29302109 -) -] -) -g1,9839:32583029,29403296 -g1,9839:6630773,29403296 -g1,9839:6630773,29403296 -g1,9839:32583029,29403296 -g1,9839:32583029,29403296 -) -h1,9839:6630773,29599904:0,0,0 -(1,9842:6630773,45329172:25952256,15139444,0 -k1,9842:10523651,45329172:3892878 -h1,9841:10523651,45329172:0,0,0 -(1,9841:10523651,45329172:18166500,15139444,0 -(1,9841:10523651,45329172:18167376,15139481,0 -(1,9841:10523651,45329172:18167376,15139481,0 -(1,9841:10523651,45329172:0,15139481,0 -(1,9841:10523651,45329172:0,23681434,0 -(1,9841:10523651,45329172:28417720,23681434,0 -) -k1,9841:10523651,45329172:-28417720 -) -) -g1,9841:28691027,45329172 -) -) -) -g1,9842:28690151,45329172 -k1,9842:32583029,45329172:3892878 -) -] -(1,9849:32583029,45706769:0,0,0 -g1,9849:32583029,45706769 -) -) -] -(1,9849:6630773,47279633:25952256,0,0 -h1,9849:6630773,47279633:25952256,0,0 -) -] -(1,9849:4262630,4025873:0,0,0 -[1,9849:-473656,4025873:0,0,0 -(1,9849:-473656,-710413:0,0,0 -(1,9849:-473656,-710413:0,0,0 -g1,9849:-473656,-710413 -) -g1,9849:-473656,-710413 -) -] -) -] -!11576 -}183 -Input:1433:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1434:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1435:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1436:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1437:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1438:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1439:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!656 -{184 -[1,9937:4262630,47279633:28320399,43253760,0 -(1,9937:4262630,4025873:0,0,0 -[1,9937:-473656,4025873:0,0,0 -(1,9937:-473656,-710413:0,0,0 -(1,9937:-473656,-644877:0,0,0 -k1,9937:-473656,-644877:-65536 -) -(1,9937:-473656,4736287:0,0,0 -k1,9937:-473656,4736287:5209943 -) -g1,9937:-473656,-710413 -) -] -) -[1,9937:6630773,47279633:25952256,43253760,0 -[1,9937:6630773,4812305:25952256,786432,0 -(1,9937:6630773,4812305:25952256,505283,7863 -(1,9937:6630773,4812305:25952256,505283,7863 -g1,9937:3078558,4812305 -[1,9937:3078558,4812305:0,0,0 -(1,9937:3078558,2439708:0,1703936,0 -k1,9937:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,9937:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,9937:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,9937:3078558,4812305:0,0,0 -(1,9937:3078558,2439708:0,1703936,0 -g1,9937:29030814,2439708 -g1,9937:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,9937:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,9937:37855564,2439708:1179648,16384,0 -) -) -k1,9937:3078556,2439708:-34777008 -) -] -[1,9937:3078558,4812305:0,0,0 -(1,9937:3078558,49800853:0,16384,2228224 -k1,9937:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,9937:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,9937:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,9937:3078558,4812305:0,0,0 -(1,9937:3078558,49800853:0,16384,2228224 -g1,9937:29030814,49800853 -g1,9937:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,9937:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,9937:37855564,49800853:1179648,16384,0 -) -) -k1,9937:3078556,49800853:-34777008 -) -] -g1,9937:6630773,4812305 -g1,9937:6630773,4812305 -g1,9937:10653372,4812305 -g1,9937:13512052,4812305 -k1,9937:31387652,4812305:17875600 -) -) -] -[1,9937:6630773,45706769:25952256,40108032,0 -(1,9937:6630773,45706769:25952256,40108032,0 -(1,9937:6630773,45706769:0,0,0 -g1,9937:6630773,45706769 -) -[1,9937:6630773,45706769:25952256,40108032,0 -v1,9849:6630773,6254097:0,393216,0 -(1,9859:6630773,13146544:25952256,7285663,616038 -g1,9859:6630773,13146544 -(1,9859:6630773,13146544:25952256,7285663,616038 -(1,9859:6630773,13762582:25952256,7901701,0 -[1,9859:6630773,13762582:25952256,7901701,0 -(1,9859:6630773,13736368:25952256,7849273,0 -r1,9937:6656987,13736368:26214,7849273,0 -[1,9859:6656987,13736368:25899828,7849273,0 -(1,9859:6656987,13146544:25899828,6669625,0 -[1,9859:7246811,13146544:24720180,6669625,0 -(1,9850:7246811,7760901:24720180,1283982,196608 -(1,9849:7246811,7760901:0,1283982,196608 -r1,9937:9812056,7760901:2565245,1480590,196608 -k1,9849:7246811,7760901:-2565245 -) -(1,9849:7246811,7760901:2565245,1283982,196608 -) -k1,9849:10082556,7760901:270500 -k1,9849:10822949,7760901:270500 -k1,9849:11624945,7760901:270499 -k1,9849:15328876,7760901:270500 -k1,9849:16250804,7760901:270500 -k1,9849:18889775,7760901:270500 -k1,9849:20179359,7760901:270499 -k1,9849:22005028,7760901:270500 -k1,9849:23466973,7760901:270500 -k1,9849:26668898,7760901:270500 -k1,9849:27598690,7760901:270500 -k1,9849:28888274,7760901:270499 -k1,9849:31118300,7760901:270500 -k1,9850:31966991,7760901:0 -) -(1,9850:7246811,8602389:24720180,505283,126483 -k1,9849:9612314,8602389:222476 -k1,9849:10596318,8602389:222476 -(1,9849:10596318,8602389:0,452978,115847 -r1,9937:12361431,8602389:1765113,568825,115847 -k1,9849:10596318,8602389:-1765113 -) -(1,9849:10596318,8602389:1765113,452978,115847 -k1,9849:10596318,8602389:3277 -h1,9849:12358154,8602389:0,411205,112570 -) -k1,9849:12757576,8602389:222475 -k1,9849:13666214,8602389:222476 -k1,9849:14757042,8602389:222476 -k1,9849:16316452,8602389:222476 -k1,9849:18087543,8602389:222475 -k1,9849:18961447,8602389:222476 -k1,9849:21387899,8602389:222476 -k1,9849:25711618,8602389:222476 -k1,9849:27208768,8602389:222475 -k1,9849:28450329,8602389:222476 -k1,9849:31966991,8602389:0 -) -(1,9850:7246811,9443877:24720180,513147,126483 -k1,9849:9349752,9443877:234510 -k1,9849:10235689,9443877:234509 -k1,9849:11736355,9443877:234510 -k1,9849:13210805,9443877:234509 -k1,9849:14636760,9443877:234510 -k1,9849:16305198,9443877:234510 -k1,9849:17817004,9443877:234509 -k1,9849:21244428,9443877:234510 -k1,9849:25406510,9443877:234509 -k1,9849:27208641,9443877:234510 -k1,9849:28462235,9443877:234509 -k1,9849:30122153,9443877:234510 -k1,9849:31966991,9443877:0 -) -(1,9850:7246811,10285365:24720180,505283,126483 -k1,9850:31966990,10285365:19816120 -g1,9850:31966990,10285365 -) -v1,9852:7246811,11475831:0,393216,0 -(1,9857:7246811,12425648:24720180,1343033,196608 -g1,9857:7246811,12425648 -g1,9857:7246811,12425648 -g1,9857:7050203,12425648 -(1,9857:7050203,12425648:0,1343033,196608 -r1,9937:32163599,12425648:25113396,1539641,196608 -k1,9857:7050203,12425648:-25113396 -) -(1,9857:7050203,12425648:25113396,1343033,196608 -[1,9857:7246811,12425648:24720180,1146425,0 -(1,9854:7246811,11683449:24720180,404226,76021 -(1,9853:7246811,11683449:0,0,0 -g1,9853:7246811,11683449 -g1,9853:7246811,11683449 -g1,9853:6919131,11683449 -(1,9853:6919131,11683449:0,0,0 -) -g1,9853:7246811,11683449 -) -k1,9854:7246811,11683449:0 -h1,9854:12621287,11683449:0,0,0 -k1,9854:31966991,11683449:19345704 -g1,9854:31966991,11683449 -) -(1,9855:7246811,12349627:24720180,404226,76021 -h1,9855:7246811,12349627:0,0,0 -k1,9855:7246811,12349627:0 -h1,9855:11988996,12349627:0,0,0 -k1,9855:31966992,12349627:19977996 -g1,9855:31966992,12349627 -) -] -) -g1,9857:31966991,12425648 -g1,9857:7246811,12425648 -g1,9857:7246811,12425648 -g1,9857:31966991,12425648 -g1,9857:31966991,12425648 -) -h1,9857:7246811,12622256:0,0,0 -] -) -] -r1,9937:32583029,13736368:26214,7849273,0 -) -] -) -) -g1,9859:32583029,13146544 -) -h1,9859:6630773,13762582:0,0,0 -(1,9863:6630773,17060519:25952256,32768,229376 -(1,9863:6630773,17060519:0,32768,229376 -(1,9863:6630773,17060519:5505024,32768,229376 -r1,9937:12135797,17060519:5505024,262144,229376 -) -k1,9863:6630773,17060519:-5505024 -) -(1,9863:6630773,17060519:25952256,32768,0 -r1,9937:32583029,17060519:25952256,32768,0 -) -) -(1,9863:6630773,18664847:25952256,606339,9436 -(1,9863:6630773,18664847:2464678,582746,0 -g1,9863:6630773,18664847 -g1,9863:9095451,18664847 -) -g1,9863:14141199,18664847 -k1,9863:32583029,18664847:14913896 -g1,9863:32583029,18664847 -) -(1,9866:6630773,19969675:25952256,564462,139132 -(1,9866:6630773,19969675:2899444,534184,0 -g1,9866:6630773,19969675 -g1,9866:9530217,19969675 -) -g1,9866:14155486,19969675 -g1,9866:17349056,19969675 -g1,9866:18318662,19969675 -k1,9866:32583029,19969675:11155142 -g1,9866:32583029,19969675 -) -(1,9870:6630773,21204379:25952256,505283,126483 -k1,9869:10593407,21204379:158269 -k1,9869:13536301,21204379:158269 -k1,9869:15047234,21204379:158270 -k1,9869:16472969,21204379:158269 -k1,9869:19135369,21204379:158269 -k1,9869:21525139,21204379:158269 -k1,9869:24557163,21204379:158270 -k1,9869:27557073,21204379:158269 -k1,9869:32583029,21204379:0 -) -(1,9870:6630773,22045867:25952256,513147,134348 -k1,9869:7607494,22045867:290559 -k1,9869:9219913,22045867:290558 -k1,9869:10169764,22045867:290559 -k1,9869:10816182,22045867:290558 -k1,9869:12979760,22045867:290559 -k1,9869:15998582,22045867:290558 -k1,9869:16916976,22045867:290559 -k1,9869:19745088,22045867:290558 -k1,9869:20493744,22045867:290559 -k1,9869:21315799,22045867:290558 -k1,9869:23327333,22045867:290559 -k1,9869:24269319,22045867:290558 -k1,9869:25652363,22045867:290559 -k1,9869:29672575,22045867:290558 -k1,9869:32583029,22045867:0 -) -(1,9870:6630773,22887355:25952256,513147,126483 -k1,9869:7834810,22887355:256386 -k1,9869:11951922,22887355:256386 -k1,9869:13597671,22887355:256386 -k1,9869:16408650,22887355:256386 -k1,9869:17281074,22887355:256386 -k1,9869:18125973,22887355:256386 -k1,9869:20453298,22887355:256387 -k1,9869:21657335,22887355:256386 -k1,9869:24038398,22887355:256386 -k1,9869:26165837,22887355:256386 -k1,9869:27375772,22887355:256386 -k1,9869:28764620,22887355:256386 -k1,9869:30407748,22887355:256386 -k1,9869:31970267,22887355:256386 -k1,9869:32583029,22887355:0 -) -(1,9870:6630773,23728843:25952256,505283,126483 -k1,9869:10688841,23728843:182924 -k1,9869:13306411,23728843:182907 -k1,9869:14172220,23728843:182924 -k1,9869:17527087,23728843:182924 -k1,9869:18337845,23728843:182923 -k1,9869:19539854,23728843:182924 -k1,9869:21376251,23728843:182924 -k1,9869:22797150,23728843:182924 -k1,9869:23666235,23728843:182923 -(1,9869:23666235,23728843:0,452978,115847 -r1,9937:25431348,23728843:1765113,568825,115847 -k1,9869:23666235,23728843:-1765113 -) -(1,9869:23666235,23728843:1765113,452978,115847 -k1,9869:23666235,23728843:3277 -h1,9869:25428071,23728843:0,411205,112570 -) -k1,9869:25614272,23728843:182924 -k1,9869:26328693,23728843:182924 -k1,9869:26867477,23728843:182924 -k1,9869:29692812,23728843:182923 -k1,9869:31160242,23728843:182924 -k1,9869:32583029,23728843:0 -) -(1,9870:6630773,24570331:25952256,505283,126483 -g1,9869:9880703,24570331 -(1,9869:9880703,24570331:0,452978,115847 -r1,9937:11294104,24570331:1413401,568825,115847 -k1,9869:9880703,24570331:-1413401 -) -(1,9869:9880703,24570331:1413401,452978,115847 -k1,9869:9880703,24570331:3277 -h1,9869:11290827,24570331:0,411205,112570 -) -g1,9869:11667003,24570331 -(1,9869:11667003,24570331:0,452978,115847 -r1,9937:14487252,24570331:2820249,568825,115847 -k1,9869:11667003,24570331:-2820249 -) -(1,9869:11667003,24570331:2820249,452978,115847 -k1,9869:11667003,24570331:3277 -h1,9869:14483975,24570331:0,411205,112570 -) -g1,9869:14686481,24570331 -g1,9869:15417207,24570331 -g1,9869:15972296,24570331 -g1,9869:18813937,24570331 -g1,9869:20297672,24570331 -g1,9869:21919688,24570331 -g1,9869:25169618,24570331 -(1,9869:25169618,24570331:0,452978,115847 -r1,9937:26934731,24570331:1765113,568825,115847 -k1,9869:25169618,24570331:-1765113 -) -(1,9869:25169618,24570331:1765113,452978,115847 -k1,9869:25169618,24570331:3277 -h1,9869:26931454,24570331:0,411205,112570 -) -k1,9870:32583029,24570331:5474628 -g1,9870:32583029,24570331 -) -(1,9872:6630773,25411819:25952256,513147,134348 -h1,9871:6630773,25411819:983040,0,0 -k1,9871:11778700,25411819:360522 -k1,9871:14126929,25411819:360522 -k1,9871:17361206,25411819:360523 -k1,9871:18337766,25411819:360522 -k1,9871:20132216,25411819:360522 -k1,9871:20907419,25411819:360360 -k1,9871:23559735,25411819:360522 -k1,9871:24939343,25411819:360523 -k1,9871:26392350,25411819:360522 -k1,9871:27412164,25411819:360522 -k1,9871:30155575,25411819:360522 -k1,9871:32583029,25411819:0 -) -(1,9872:6630773,26253307:25952256,513147,126483 -(1,9871:6837867,26253307:0,452978,115847 -r1,9937:9306404,26253307:2468537,568825,115847 -k1,9871:6837867,26253307:-2468537 -) -(1,9871:6837867,26253307:2468537,452978,115847 -k1,9871:6837867,26253307:3277 -h1,9871:9303127,26253307:0,411205,112570 -) -k1,9871:9733765,26253307:220267 -k1,9871:10763402,26253307:220267 -k1,9871:12002754,26253307:220267 -k1,9871:15116435,26253307:220266 -k1,9871:16636281,26253307:220267 -k1,9871:18221008,26253307:220267 -k1,9871:19100567,26253307:220267 -k1,9871:20339919,26253307:220267 -k1,9871:22547893,26253307:220267 -k1,9871:25485282,26253307:220266 -k1,9871:26747571,26253307:220267 -k1,9871:27986923,26253307:220267 -k1,9871:29591310,26253307:220267 -k1,9871:32583029,26253307:0 -) -(1,9872:6630773,27094795:25952256,513147,134348 -k1,9871:7682862,27094795:183737 -k1,9871:8959083,27094795:183736 -k1,9871:10161905,27094795:183737 -k1,9871:13975026,27094795:183737 -(1,9871:13975026,27094795:0,452978,115847 -r1,9937:15388427,27094795:1413401,568825,115847 -k1,9871:13975026,27094795:-1413401 -) -(1,9871:13975026,27094795:1413401,452978,115847 -k1,9871:13975026,27094795:3277 -h1,9871:15385150,27094795:0,411205,112570 -) -k1,9871:15572164,27094795:183737 -k1,9871:17145263,27094795:183736 -k1,9871:18437214,27094795:183737 -k1,9871:21982948,27094795:183737 -k1,9871:23435462,27094795:183737 -k1,9871:28292570,27094795:183736 -k1,9871:29423958,27094795:183737 -k1,9871:31923737,27094795:183737 -k1,9871:32583029,27094795:0 -) -(1,9872:6630773,27936283:25952256,513147,126483 -g1,9871:8002441,27936283 -g1,9871:10512469,27936283 -g1,9871:11370990,27936283 -k1,9872:32583029,27936283:20039600 -g1,9872:32583029,27936283 -) -v1,9874:6630773,29092830:0,393216,0 -(1,9937:6630773,45510161:25952256,16810547,196608 -g1,9937:6630773,45510161 -g1,9937:6630773,45510161 -g1,9937:6434165,45510161 -(1,9937:6434165,45510161:0,16810547,196608 -r1,9937:32779637,45510161:26345472,17007155,196608 -k1,9937:6434165,45510161:-26345472 -) -(1,9937:6434165,45510161:26345472,16810547,196608 -[1,9937:6630773,45510161:25952256,16613939,0 -(1,9876:6630773,29300448:25952256,404226,76021 -(1,9875:6630773,29300448:0,0,0 -g1,9875:6630773,29300448 -g1,9875:6630773,29300448 -g1,9875:6303093,29300448 -(1,9875:6303093,29300448:0,0,0 -) -g1,9875:6630773,29300448 -) -k1,9876:6630773,29300448:0 -h1,9876:9792230,29300448:0,0,0 -k1,9876:32583030,29300448:22790800 -g1,9876:32583030,29300448 -) -(1,9877:6630773,29966626:25952256,410518,107478 -h1,9877:6630773,29966626:0,0,0 -g1,9877:8211502,29966626 -g1,9877:9159940,29966626 -g1,9877:16431291,29966626 -g1,9877:20541185,29966626 -g1,9877:21173477,29966626 -g1,9877:21489623,29966626 -g1,9877:24334935,29966626 -g1,9877:25915664,29966626 -g1,9877:26547956,29966626 -h1,9877:28128684,29966626:0,0,0 -k1,9877:32583029,29966626:4454345 -g1,9877:32583029,29966626 -) -(1,9878:6630773,30632804:25952256,410518,76021 -h1,9878:6630773,30632804:0,0,0 -k1,9878:6630773,30632804:0 -h1,9878:10108375,30632804:0,0,0 -k1,9878:32583029,30632804:22474654 -g1,9878:32583029,30632804 -) -(1,9889:6630773,31364518:25952256,410518,101187 -(1,9880:6630773,31364518:0,0,0 -g1,9880:6630773,31364518 -g1,9880:6630773,31364518 -g1,9880:6303093,31364518 -(1,9880:6303093,31364518:0,0,0 -) -g1,9880:6630773,31364518 -) -g1,9889:7579210,31364518 -g1,9889:10424521,31364518 -g1,9889:11372958,31364518 -g1,9889:14218269,31364518 -h1,9889:15798997,31364518:0,0,0 -k1,9889:32583029,31364518:16784032 -g1,9889:32583029,31364518 -) -(1,9889:6630773,32030696:25952256,379060,0 -h1,9889:6630773,32030696:0,0,0 -h1,9889:7263064,32030696:0,0,0 -k1,9889:32583028,32030696:25319964 -g1,9889:32583028,32030696 -) -(1,9889:6630773,32696874:25952256,410518,101187 -h1,9889:6630773,32696874:0,0,0 -g1,9889:7579210,32696874 -g1,9889:7895356,32696874 -g1,9889:8211502,32696874 -g1,9889:8527648,32696874 -g1,9889:8843794,32696874 -g1,9889:9159940,32696874 -g1,9889:9476086,32696874 -g1,9889:9792232,32696874 -g1,9889:10108378,32696874 -g1,9889:10424524,32696874 -g1,9889:10740670,32696874 -g1,9889:11056816,32696874 -g1,9889:11372962,32696874 -g1,9889:11689108,32696874 -g1,9889:12637545,32696874 -g1,9889:12953691,32696874 -g1,9889:15166711,32696874 -g1,9889:17379731,32696874 -g1,9889:18012023,32696874 -g1,9889:19276606,32696874 -g1,9889:20225043,32696874 -g1,9889:21489626,32696874 -g1,9889:22438063,32696874 -g1,9889:22754209,32696874 -g1,9889:23070355,32696874 -g1,9889:23386501,32696874 -k1,9889:23386501,32696874:0 -h1,9889:25283375,32696874:0,0,0 -k1,9889:32583029,32696874:7299654 -g1,9889:32583029,32696874 -) -(1,9889:6630773,33363052:25952256,404226,101187 -h1,9889:6630773,33363052:0,0,0 -g1,9889:7579210,33363052 -g1,9889:11372958,33363052 -g1,9889:11689104,33363052 -g1,9889:12005250,33363052 -g1,9889:12637542,33363052 -g1,9889:15166708,33363052 -g1,9889:15482854,33363052 -g1,9889:15799000,33363052 -g1,9889:18012020,33363052 -g1,9889:18328166,33363052 -g1,9889:18644312,33363052 -g1,9889:18960458,33363052 -g1,9889:19276604,33363052 -g1,9889:19592750,33363052 -g1,9889:20225042,33363052 -g1,9889:20541188,33363052 -g1,9889:20857334,33363052 -g1,9889:21173480,33363052 -g1,9889:22438063,33363052 -g1,9889:23070355,33363052 -g1,9889:25599521,33363052 -h1,9889:26547958,33363052:0,0,0 -k1,9889:32583029,33363052:6035071 -g1,9889:32583029,33363052 -) -(1,9889:6630773,34029230:25952256,404226,101187 -h1,9889:6630773,34029230:0,0,0 -g1,9889:7579210,34029230 -g1,9889:10108376,34029230 -g1,9889:10424522,34029230 -g1,9889:10740668,34029230 -g1,9889:11056814,34029230 -g1,9889:11372960,34029230 -g1,9889:11689106,34029230 -g1,9889:12005252,34029230 -g1,9889:12637544,34029230 -g1,9889:15166710,34029230 -g1,9889:15482856,34029230 -g1,9889:15799002,34029230 -g1,9889:16115148,34029230 -g1,9889:16431294,34029230 -g1,9889:18012023,34029230 -g1,9889:18328169,34029230 -g1,9889:18644315,34029230 -g1,9889:18960461,34029230 -g1,9889:19276607,34029230 -g1,9889:19592753,34029230 -g1,9889:20225045,34029230 -g1,9889:20541191,34029230 -g1,9889:20857337,34029230 -g1,9889:21173483,34029230 -g1,9889:22438066,34029230 -g1,9889:23070358,34029230 -g1,9889:25599524,34029230 -h1,9889:26547961,34029230:0,0,0 -k1,9889:32583029,34029230:6035068 -g1,9889:32583029,34029230 -) -(1,9889:6630773,34695408:25952256,404226,6290 -h1,9889:6630773,34695408:0,0,0 -g1,9889:7579210,34695408 -g1,9889:10740667,34695408 -g1,9889:11056813,34695408 -g1,9889:11372959,34695408 -h1,9889:12321396,34695408:0,0,0 -k1,9889:32583028,34695408:20261632 -g1,9889:32583028,34695408 -) -(1,9889:6630773,35361586:25952256,379060,0 -h1,9889:6630773,35361586:0,0,0 -g1,9889:7579210,35361586 -k1,9889:7579210,35361586:0 -h1,9889:8527648,35361586:0,0,0 -k1,9889:32583028,35361586:24055380 -g1,9889:32583028,35361586 -) -(1,9889:6630773,36027764:25952256,410518,107478 -h1,9889:6630773,36027764:0,0,0 -g1,9889:7579210,36027764 -g1,9889:10108376,36027764 -g1,9889:12321396,36027764 -g1,9889:12637542,36027764 -g1,9889:13269834,36027764 -g1,9889:15166709,36027764 -g1,9889:17063583,36027764 -g1,9889:18644312,36027764 -g1,9889:20225041,36027764 -g1,9889:21489625,36027764 -g1,9889:23070354,36027764 -g1,9889:24334938,36027764 -g1,9889:25599521,36027764 -g1,9889:26231813,36027764 -g1,9889:26864105,36027764 -h1,9889:27180251,36027764:0,0,0 -k1,9889:32583029,36027764:5402778 -g1,9889:32583029,36027764 -) -(1,9891:6630773,37349302:25952256,410518,101187 -(1,9890:6630773,37349302:0,0,0 -g1,9890:6630773,37349302 -g1,9890:6630773,37349302 -g1,9890:6303093,37349302 -(1,9890:6303093,37349302:0,0,0 -) -g1,9890:6630773,37349302 -) -k1,9891:6630773,37349302:0 -h1,9891:10740667,37349302:0,0,0 -k1,9891:32583029,37349302:21842362 -g1,9891:32583029,37349302 -) -(1,9936:6630773,38081016:25952256,404226,107478 -(1,9893:6630773,38081016:0,0,0 -g1,9893:6630773,38081016 -g1,9893:6630773,38081016 -g1,9893:6303093,38081016 -(1,9893:6303093,38081016:0,0,0 -) -g1,9893:6630773,38081016 -) -g1,9936:7579210,38081016 -g1,9936:10424521,38081016 -g1,9936:14534415,38081016 -h1,9936:14850561,38081016:0,0,0 -k1,9936:32583029,38081016:17732468 -g1,9936:32583029,38081016 -) -(1,9936:6630773,38747194:25952256,379060,0 -h1,9936:6630773,38747194:0,0,0 -h1,9936:7263064,38747194:0,0,0 -k1,9936:32583028,38747194:25319964 -g1,9936:32583028,38747194 -) -(1,9936:6630773,39413372:25952256,404226,7863 -h1,9936:6630773,39413372:0,0,0 -g1,9936:7579210,39413372 -h1,9936:9159938,39413372:0,0,0 -k1,9936:32583030,39413372:23423092 -g1,9936:32583030,39413372 -) -(1,9936:6630773,40079550:25952256,410518,107478 -h1,9936:6630773,40079550:0,0,0 -g1,9936:7579210,40079550 -g1,9936:11056813,40079550 -g1,9936:11689105,40079550 -g1,9936:15798999,40079550 -g1,9936:16431291,40079550 -g1,9936:19276603,40079550 -g1,9936:20857332,40079550 -g1,9936:21489624,40079550 -h1,9936:23070352,40079550:0,0,0 -k1,9936:32583029,40079550:9512677 -g1,9936:32583029,40079550 -) -(1,9936:6630773,40745728:25952256,379060,0 -h1,9936:6630773,40745728:0,0,0 -h1,9936:7263064,40745728:0,0,0 -k1,9936:32583028,40745728:25319964 -g1,9936:32583028,40745728 -) -(1,9936:6630773,41411906:25952256,404226,6290 -h1,9936:6630773,41411906:0,0,0 -g1,9936:7579210,41411906 -h1,9936:10740667,41411906:0,0,0 -k1,9936:32583029,41411906:21842362 -g1,9936:32583029,41411906 -) -(1,9936:6630773,42078084:25952256,404226,82312 -h1,9936:6630773,42078084:0,0,0 -g1,9936:7579210,42078084 -g1,9936:7895356,42078084 -g1,9936:8211502,42078084 -g1,9936:8527648,42078084 -g1,9936:9792231,42078084 -g1,9936:10108377,42078084 -g1,9936:10424523,42078084 -g1,9936:10740669,42078084 -g1,9936:11056815,42078084 -g1,9936:12005252,42078084 -g1,9936:14218272,42078084 -g1,9936:14534418,42078084 -g1,9936:14850564,42078084 -g1,9936:15166710,42078084 -g1,9936:15482856,42078084 -g1,9936:16431293,42078084 -g1,9936:16747439,42078084 -g1,9936:17063585,42078084 -g1,9936:17379731,42078084 -h1,9936:18328168,42078084:0,0,0 -k1,9936:32583029,42078084:14254861 -g1,9936:32583029,42078084 -) -(1,9936:6630773,42744262:25952256,388497,9436 -h1,9936:6630773,42744262:0,0,0 -g1,9936:7579210,42744262 -g1,9936:9792230,42744262 -g1,9936:12005250,42744262 -g1,9936:12321396,42744262 -g1,9936:14218270,42744262 -g1,9936:14534416,42744262 -g1,9936:16431290,42744262 -g1,9936:16747436,42744262 -h1,9936:18328164,42744262:0,0,0 -k1,9936:32583029,42744262:14254865 -g1,9936:32583029,42744262 -) -(1,9936:6630773,43410440:25952256,379060,0 -h1,9936:6630773,43410440:0,0,0 -h1,9936:7263064,43410440:0,0,0 -k1,9936:32583028,43410440:25319964 -g1,9936:32583028,43410440 -) -(1,9936:6630773,44076618:25952256,410518,7863 -h1,9936:6630773,44076618:0,0,0 -g1,9936:7579210,44076618 -h1,9936:11689104,44076618:0,0,0 -k1,9936:32583028,44076618:20893924 -g1,9936:32583028,44076618 -) -(1,9936:6630773,44742796:25952256,404226,76021 -h1,9936:6630773,44742796:0,0,0 -g1,9936:7579210,44742796 -g1,9936:7895356,44742796 -g1,9936:8211502,44742796 -g1,9936:8527648,44742796 -g1,9936:8843794,44742796 -g1,9936:9159940,44742796 -g1,9936:9476086,44742796 -g1,9936:9792232,44742796 -g1,9936:10108378,44742796 -g1,9936:10424524,44742796 -g1,9936:10740670,44742796 -g1,9936:11056816,44742796 -g1,9936:11372962,44742796 -g1,9936:11689108,44742796 -g1,9936:12005254,44742796 -g1,9936:12321400,44742796 -g1,9936:12637546,44742796 -g1,9936:12953692,44742796 -g1,9936:13269838,44742796 -g1,9936:16115149,44742796 -g1,9936:17695878,44742796 -g1,9936:19592752,44742796 -g1,9936:20225044,44742796 -g1,9936:22121918,44742796 -k1,9936:22121918,44742796:0 -h1,9936:24651083,44742796:0,0,0 -k1,9936:32583029,44742796:7931946 -g1,9936:32583029,44742796 -) -(1,9936:6630773,45408974:25952256,404226,101187 -h1,9936:6630773,45408974:0,0,0 -g1,9936:7579210,45408974 -g1,9936:11372958,45408974 -g1,9936:11689104,45408974 -g1,9936:12005250,45408974 -g1,9936:12321396,45408974 -g1,9936:12637542,45408974 -g1,9936:12953688,45408974 -g1,9936:13269834,45408974 -g1,9936:13585980,45408974 -g1,9936:16115146,45408974 -g1,9936:16431292,45408974 -g1,9936:16747438,45408974 -g1,9936:17063584,45408974 -g1,9936:19592750,45408974 -g1,9936:19908896,45408974 -g1,9936:20225042,45408974 -g1,9936:22121916,45408974 -g1,9936:22438062,45408974 -g1,9936:22754208,45408974 -g1,9936:24967228,45408974 -h1,9936:25915665,45408974:0,0,0 -k1,9936:32583029,45408974:6667364 -g1,9936:32583029,45408974 -) -] -) -g1,9937:32583029,45510161 -g1,9937:6630773,45510161 -g1,9937:6630773,45510161 -g1,9937:32583029,45510161 -g1,9937:32583029,45510161 -) -] -(1,9937:32583029,45706769:0,0,0 -g1,9937:32583029,45706769 -) -) -] -(1,9937:6630773,47279633:25952256,0,0 -h1,9937:6630773,47279633:25952256,0,0 -) -] -(1,9937:4262630,4025873:0,0,0 -[1,9937:-473656,4025873:0,0,0 -(1,9937:-473656,-710413:0,0,0 -(1,9937:-473656,-710413:0,0,0 -g1,9937:-473656,-710413 -) -g1,9937:-473656,-710413 -) -] -) -] -!23581 -}184 -Input:1440:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1441:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1442:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1443:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1444:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1445:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1446:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1447:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1448:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1449:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1450:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1024 -{185 -[1,9980:4262630,47279633:28320399,43253760,0 -(1,9980:4262630,4025873:0,0,0 -[1,9980:-473656,4025873:0,0,0 -(1,9980:-473656,-710413:0,0,0 -(1,9980:-473656,-644877:0,0,0 -k1,9980:-473656,-644877:-65536 -) -(1,9980:-473656,4736287:0,0,0 -k1,9980:-473656,4736287:5209943 -) -g1,9980:-473656,-710413 -) -] -) -[1,9980:6630773,47279633:25952256,43253760,0 -[1,9980:6630773,4812305:25952256,786432,0 -(1,9980:6630773,4812305:25952256,505283,134348 -(1,9980:6630773,4812305:25952256,505283,134348 -g1,9980:3078558,4812305 -[1,9980:3078558,4812305:0,0,0 -(1,9980:3078558,2439708:0,1703936,0 -k1,9980:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,9980:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,9980:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,9980:3078558,4812305:0,0,0 -(1,9980:3078558,2439708:0,1703936,0 -g1,9980:29030814,2439708 -g1,9980:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,9980:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,9980:37855564,2439708:1179648,16384,0 -) -) -k1,9980:3078556,2439708:-34777008 -) -] -[1,9980:3078558,4812305:0,0,0 -(1,9980:3078558,49800853:0,16384,2228224 -k1,9980:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,9980:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,9980:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,9980:3078558,4812305:0,0,0 -(1,9980:3078558,49800853:0,16384,2228224 -g1,9980:29030814,49800853 -g1,9980:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,9980:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,9980:37855564,49800853:1179648,16384,0 -) -) -k1,9980:3078556,49800853:-34777008 -) -] -g1,9980:6630773,4812305 -k1,9980:24502442,4812305:16676292 -g1,9980:25889183,4812305 -g1,9980:26537989,4812305 -g1,9980:29852144,4812305 -) -) -] -[1,9980:6630773,45706769:25952256,40108032,0 -(1,9980:6630773,45706769:25952256,40108032,0 -(1,9980:6630773,45706769:0,0,0 -g1,9980:6630773,45706769 -) -[1,9980:6630773,45706769:25952256,40108032,0 -v1,9937:6630773,6254097:0,393216,0 -(1,9937:6630773,25882064:25952256,20021183,196608 -g1,9937:6630773,25882064 -g1,9937:6630773,25882064 -g1,9937:6434165,25882064 -(1,9937:6434165,25882064:0,20021183,196608 -r1,9980:32779637,25882064:26345472,20217791,196608 -k1,9937:6434165,25882064:-26345472 -) -(1,9937:6434165,25882064:26345472,20021183,196608 -[1,9937:6630773,25882064:25952256,19824575,0 -(1,9936:6630773,6461715:25952256,404226,101187 -h1,9936:6630773,6461715:0,0,0 -g1,9936:7579210,6461715 -g1,9936:13269833,6461715 -g1,9936:13585979,6461715 -g1,9936:16115145,6461715 -g1,9936:16431291,6461715 -g1,9936:16747437,6461715 -g1,9936:17063583,6461715 -g1,9936:19592749,6461715 -g1,9936:19908895,6461715 -g1,9936:20225041,6461715 -g1,9936:22121915,6461715 -g1,9936:22438061,6461715 -g1,9936:22754207,6461715 -g1,9936:24967227,6461715 -h1,9936:25915664,6461715:0,0,0 -k1,9936:32583029,6461715:6667365 -g1,9936:32583029,6461715 -) -(1,9936:6630773,7127893:25952256,404226,107478 -h1,9936:6630773,7127893:0,0,0 -g1,9936:7579210,7127893 -g1,9936:12953687,7127893 -g1,9936:13269833,7127893 -g1,9936:13585979,7127893 -g1,9936:16115145,7127893 -g1,9936:16431291,7127893 -g1,9936:16747437,7127893 -g1,9936:17063583,7127893 -g1,9936:19592749,7127893 -g1,9936:19908895,7127893 -g1,9936:20225041,7127893 -g1,9936:22121915,7127893 -g1,9936:22438061,7127893 -g1,9936:22754207,7127893 -g1,9936:24967227,7127893 -h1,9936:25915664,7127893:0,0,0 -k1,9936:32583029,7127893:6667365 -g1,9936:32583029,7127893 -) -(1,9936:6630773,7794071:25952256,379060,0 -h1,9936:6630773,7794071:0,0,0 -g1,9936:7579210,7794071 -k1,9936:7579210,7794071:0 -h1,9936:8527648,7794071:0,0,0 -k1,9936:32583028,7794071:24055380 -g1,9936:32583028,7794071 -) -(1,9936:6630773,8460249:25952256,410518,107478 -h1,9936:6630773,8460249:0,0,0 -g1,9936:7579210,8460249 -g1,9936:10108376,8460249 -g1,9936:12321396,8460249 -g1,9936:12637542,8460249 -g1,9936:13269834,8460249 -g1,9936:15166709,8460249 -g1,9936:17063583,8460249 -g1,9936:18644312,8460249 -g1,9936:20225041,8460249 -g1,9936:21489625,8460249 -g1,9936:23070354,8460249 -g1,9936:24334938,8460249 -g1,9936:25599521,8460249 -g1,9936:26231813,8460249 -g1,9936:26864105,8460249 -h1,9936:27180251,8460249:0,0,0 -k1,9936:32583029,8460249:5402778 -g1,9936:32583029,8460249 -) -(1,9936:6630773,9126427:25952256,379060,0 -h1,9936:6630773,9126427:0,0,0 -h1,9936:7263064,9126427:0,0,0 -k1,9936:32583028,9126427:25319964 -g1,9936:32583028,9126427 -) -(1,9936:6630773,9792605:25952256,410518,107478 -h1,9936:6630773,9792605:0,0,0 -g1,9936:7579210,9792605 -g1,9936:10424521,9792605 -g1,9936:13269832,9792605 -g1,9936:15482852,9792605 -g1,9936:17695872,9792605 -g1,9936:18644309,9792605 -g1,9936:19908892,9792605 -g1,9936:22438058,9792605 -g1,9936:23386495,9792605 -h1,9936:25599515,9792605:0,0,0 -k1,9936:32583029,9792605:6983514 -g1,9936:32583029,9792605 -) -(1,9936:6630773,10458783:25952256,404226,107478 -h1,9936:6630773,10458783:0,0,0 -g1,9936:7579210,10458783 -g1,9936:10424521,10458783 -g1,9936:13902124,10458783 -g1,9936:14218270,10458783 -g1,9936:19276601,10458783 -g1,9936:22754204,10458783 -g1,9936:23070350,10458783 -h1,9936:24967224,10458783:0,0,0 -k1,9936:32583029,10458783:7615805 -g1,9936:32583029,10458783 -) -(1,9936:6630773,11124961:25952256,404226,101187 -h1,9936:6630773,11124961:0,0,0 -g1,9936:7579210,11124961 -g1,9936:11689104,11124961 -g1,9936:12005250,11124961 -g1,9936:13585979,11124961 -g1,9936:14534416,11124961 -g1,9936:15166708,11124961 -g1,9936:16431291,11124961 -g1,9936:17695874,11124961 -g1,9936:18960457,11124961 -g1,9936:19276603,11124961 -g1,9936:22121915,11124961 -g1,9936:22754207,11124961 -k1,9936:22754207,11124961:0 -h1,9936:24967227,11124961:0,0,0 -k1,9936:32583029,11124961:7615802 -g1,9936:32583029,11124961 -) -(1,9936:6630773,11791139:25952256,379060,0 -h1,9936:6630773,11791139:0,0,0 -h1,9936:7263064,11791139:0,0,0 -k1,9936:32583028,11791139:25319964 -g1,9936:32583028,11791139 -) -(1,9936:6630773,12457317:25952256,379060,0 -h1,9936:6630773,12457317:0,0,0 -h1,9936:7263064,12457317:0,0,0 -k1,9936:32583028,12457317:25319964 -g1,9936:32583028,12457317 -) -(1,9936:6630773,13123495:25952256,404226,101187 -h1,9936:6630773,13123495:0,0,0 -g1,9936:7579210,13123495 -g1,9936:10424521,13123495 -g1,9936:14218269,13123495 -h1,9936:14534415,13123495:0,0,0 -k1,9936:32583029,13123495:18048614 -g1,9936:32583029,13123495 -) -(1,9936:6630773,13789673:25952256,379060,0 -h1,9936:6630773,13789673:0,0,0 -h1,9936:7263064,13789673:0,0,0 -k1,9936:32583028,13789673:25319964 -g1,9936:32583028,13789673 -) -(1,9936:6630773,14455851:25952256,404226,7863 -h1,9936:6630773,14455851:0,0,0 -g1,9936:7579210,14455851 -h1,9936:9159938,14455851:0,0,0 -k1,9936:32583030,14455851:23423092 -g1,9936:32583030,14455851 -) -(1,9936:6630773,15122029:25952256,410518,101187 -h1,9936:6630773,15122029:0,0,0 -g1,9936:7579210,15122029 -g1,9936:11056813,15122029 -g1,9936:11689105,15122029 -g1,9936:15482853,15122029 -g1,9936:16115145,15122029 -g1,9936:18960457,15122029 -g1,9936:20541186,15122029 -g1,9936:21173478,15122029 -h1,9936:22754206,15122029:0,0,0 -k1,9936:32583029,15122029:9828823 -g1,9936:32583029,15122029 -) -(1,9936:6630773,15788207:25952256,379060,0 -h1,9936:6630773,15788207:0,0,0 -h1,9936:7263064,15788207:0,0,0 -k1,9936:32583028,15788207:25319964 -g1,9936:32583028,15788207 -) -(1,9936:6630773,16454385:25952256,404226,6290 -h1,9936:6630773,16454385:0,0,0 -g1,9936:7579210,16454385 -h1,9936:10740667,16454385:0,0,0 -k1,9936:32583029,16454385:21842362 -g1,9936:32583029,16454385 -) -(1,9936:6630773,17120563:25952256,404226,82312 -h1,9936:6630773,17120563:0,0,0 -g1,9936:7579210,17120563 -g1,9936:7895356,17120563 -g1,9936:8211502,17120563 -g1,9936:8527648,17120563 -g1,9936:9792231,17120563 -g1,9936:10108377,17120563 -g1,9936:10424523,17120563 -g1,9936:10740669,17120563 -g1,9936:11056815,17120563 -g1,9936:12005252,17120563 -g1,9936:14218272,17120563 -g1,9936:14534418,17120563 -g1,9936:14850564,17120563 -g1,9936:15166710,17120563 -g1,9936:15482856,17120563 -g1,9936:16431293,17120563 -g1,9936:16747439,17120563 -g1,9936:17063585,17120563 -g1,9936:17379731,17120563 -h1,9936:18328168,17120563:0,0,0 -k1,9936:32583029,17120563:14254861 -g1,9936:32583029,17120563 -) -(1,9936:6630773,17786741:25952256,388497,9436 -h1,9936:6630773,17786741:0,0,0 -g1,9936:7579210,17786741 -g1,9936:9792230,17786741 -g1,9936:12005250,17786741 -g1,9936:14218270,17786741 -g1,9936:14534416,17786741 -g1,9936:16431290,17786741 -g1,9936:16747436,17786741 -h1,9936:18328164,17786741:0,0,0 -k1,9936:32583029,17786741:14254865 -g1,9936:32583029,17786741 -) -(1,9936:6630773,18452919:25952256,379060,0 -h1,9936:6630773,18452919:0,0,0 -h1,9936:7263064,18452919:0,0,0 -k1,9936:32583028,18452919:25319964 -g1,9936:32583028,18452919 -) -(1,9936:6630773,19119097:25952256,410518,7863 -h1,9936:6630773,19119097:0,0,0 -g1,9936:7579210,19119097 -h1,9936:11689104,19119097:0,0,0 -k1,9936:32583028,19119097:20893924 -g1,9936:32583028,19119097 -) -(1,9936:6630773,19785275:25952256,404226,76021 -h1,9936:6630773,19785275:0,0,0 -g1,9936:7579210,19785275 -g1,9936:7895356,19785275 -g1,9936:8211502,19785275 -g1,9936:8527648,19785275 -g1,9936:8843794,19785275 -g1,9936:9159940,19785275 -g1,9936:9476086,19785275 -g1,9936:9792232,19785275 -g1,9936:10108378,19785275 -g1,9936:10424524,19785275 -g1,9936:10740670,19785275 -g1,9936:11056816,19785275 -g1,9936:11372962,19785275 -g1,9936:11689108,19785275 -g1,9936:12005254,19785275 -g1,9936:12321400,19785275 -g1,9936:12637546,19785275 -g1,9936:12953692,19785275 -g1,9936:13269838,19785275 -g1,9936:16115149,19785275 -g1,9936:17695878,19785275 -g1,9936:19592752,19785275 -g1,9936:20225044,19785275 -g1,9936:22121918,19785275 -k1,9936:22121918,19785275:0 -h1,9936:24651083,19785275:0,0,0 -k1,9936:32583029,19785275:7931946 -g1,9936:32583029,19785275 -) -(1,9936:6630773,20451453:25952256,404226,101187 -h1,9936:6630773,20451453:0,0,0 -g1,9936:7579210,20451453 -g1,9936:11372958,20451453 -g1,9936:11689104,20451453 -g1,9936:12005250,20451453 -g1,9936:12321396,20451453 -g1,9936:12637542,20451453 -g1,9936:12953688,20451453 -g1,9936:13269834,20451453 -g1,9936:13585980,20451453 -g1,9936:16115146,20451453 -g1,9936:16431292,20451453 -g1,9936:16747438,20451453 -g1,9936:17063584,20451453 -g1,9936:19592750,20451453 -g1,9936:19908896,20451453 -g1,9936:20225042,20451453 -g1,9936:20541188,20451453 -g1,9936:22121917,20451453 -g1,9936:24967228,20451453 -h1,9936:25915665,20451453:0,0,0 -k1,9936:32583029,20451453:6667364 -g1,9936:32583029,20451453 -) -(1,9936:6630773,21117631:25952256,404226,101187 -h1,9936:6630773,21117631:0,0,0 -g1,9936:7579210,21117631 -g1,9936:13269833,21117631 -g1,9936:13585979,21117631 -g1,9936:16115145,21117631 -g1,9936:16431291,21117631 -g1,9936:16747437,21117631 -g1,9936:17063583,21117631 -g1,9936:19592749,21117631 -g1,9936:19908895,21117631 -g1,9936:20225041,21117631 -g1,9936:22121915,21117631 -g1,9936:22438061,21117631 -g1,9936:23070353,21117631 -g1,9936:24967227,21117631 -h1,9936:25915664,21117631:0,0,0 -k1,9936:32583029,21117631:6667365 -g1,9936:32583029,21117631 -) -(1,9936:6630773,21783809:25952256,404226,107478 -h1,9936:6630773,21783809:0,0,0 -g1,9936:7579210,21783809 -g1,9936:12953687,21783809 -g1,9936:13269833,21783809 -g1,9936:13585979,21783809 -g1,9936:16115145,21783809 -g1,9936:16431291,21783809 -g1,9936:16747437,21783809 -g1,9936:17063583,21783809 -g1,9936:19592749,21783809 -g1,9936:19908895,21783809 -g1,9936:20225041,21783809 -g1,9936:22121915,21783809 -g1,9936:22438061,21783809 -g1,9936:23070353,21783809 -g1,9936:24967227,21783809 -h1,9936:25915664,21783809:0,0,0 -k1,9936:32583029,21783809:6667365 -g1,9936:32583029,21783809 -) -(1,9936:6630773,22449987:25952256,379060,0 -h1,9936:6630773,22449987:0,0,0 -g1,9936:7579210,22449987 -k1,9936:7579210,22449987:0 -h1,9936:8527648,22449987:0,0,0 -k1,9936:32583028,22449987:24055380 -g1,9936:32583028,22449987 -) -(1,9936:6630773,23116165:25952256,410518,107478 -h1,9936:6630773,23116165:0,0,0 -g1,9936:7579210,23116165 -g1,9936:10108376,23116165 -g1,9936:12321396,23116165 -g1,9936:12637542,23116165 -g1,9936:13269834,23116165 -g1,9936:15166709,23116165 -g1,9936:17063583,23116165 -g1,9936:18644312,23116165 -g1,9936:20225041,23116165 -g1,9936:21489625,23116165 -g1,9936:23070354,23116165 -g1,9936:24334938,23116165 -g1,9936:25599521,23116165 -g1,9936:26231813,23116165 -g1,9936:26864105,23116165 -h1,9936:27180251,23116165:0,0,0 -k1,9936:32583029,23116165:5402778 -g1,9936:32583029,23116165 -) -(1,9936:6630773,23782343:25952256,379060,0 -h1,9936:6630773,23782343:0,0,0 -h1,9936:7263064,23782343:0,0,0 -k1,9936:32583028,23782343:25319964 -g1,9936:32583028,23782343 -) -(1,9936:6630773,24448521:25952256,410518,107478 -h1,9936:6630773,24448521:0,0,0 -g1,9936:7579210,24448521 -g1,9936:10424521,24448521 -g1,9936:13269832,24448521 -g1,9936:15482852,24448521 -g1,9936:17695872,24448521 -g1,9936:18644309,24448521 -g1,9936:19908892,24448521 -g1,9936:22438058,24448521 -g1,9936:23386495,24448521 -h1,9936:25599515,24448521:0,0,0 -k1,9936:32583029,24448521:6983514 -g1,9936:32583029,24448521 -) -(1,9936:6630773,25114699:25952256,404226,107478 -h1,9936:6630773,25114699:0,0,0 -g1,9936:7579210,25114699 -g1,9936:10424521,25114699 -g1,9936:13902124,25114699 -g1,9936:14218270,25114699 -g1,9936:19276601,25114699 -g1,9936:22754204,25114699 -g1,9936:23070350,25114699 -h1,9936:24967224,25114699:0,0,0 -k1,9936:32583029,25114699:7615805 -g1,9936:32583029,25114699 -) -(1,9936:6630773,25780877:25952256,404226,101187 -h1,9936:6630773,25780877:0,0,0 -g1,9936:7579210,25780877 -g1,9936:11689104,25780877 -g1,9936:12005250,25780877 -g1,9936:12321396,25780877 -g1,9936:13585979,25780877 -g1,9936:14534416,25780877 -g1,9936:15166708,25780877 -g1,9936:16431291,25780877 -g1,9936:17695874,25780877 -g1,9936:18960457,25780877 -g1,9936:19276603,25780877 -g1,9936:22121915,25780877 -g1,9936:22754207,25780877 -k1,9936:22754207,25780877:0 -h1,9936:24967227,25780877:0,0,0 -k1,9936:32583029,25780877:7615802 -g1,9936:32583029,25780877 -) -] -) -g1,9937:32583029,25882064 -g1,9937:6630773,25882064 -g1,9937:6630773,25882064 -g1,9937:32583029,25882064 -g1,9937:32583029,25882064 -) -h1,9937:6630773,26078672:0,0,0 -v1,9941:6630773,27612116:0,393216,0 -(1,9966:6630773,38712606:25952256,11493706,196608 -g1,9966:6630773,38712606 -g1,9966:6630773,38712606 -g1,9966:6434165,38712606 -(1,9966:6434165,38712606:0,11493706,196608 -r1,9980:32779637,38712606:26345472,11690314,196608 -k1,9966:6434165,38712606:-26345472 -) -(1,9966:6434165,38712606:26345472,11493706,196608 -[1,9966:6630773,38712606:25952256,11297098,0 -(1,9943:6630773,27826026:25952256,410518,107478 -(1,9942:6630773,27826026:0,0,0 -g1,9942:6630773,27826026 -g1,9942:6630773,27826026 -g1,9942:6303093,27826026 -(1,9942:6303093,27826026:0,0,0 -) -g1,9942:6630773,27826026 -) -g1,9943:8211502,27826026 -g1,9943:9159940,27826026 -g1,9943:17695874,27826026 -g1,9943:21805768,27826026 -g1,9943:22438060,27826026 -g1,9943:22754206,27826026 -g1,9943:25599518,27826026 -g1,9943:27180247,27826026 -g1,9943:27812539,27826026 -h1,9943:29393267,27826026:0,0,0 -k1,9943:32583029,27826026:3189762 -g1,9943:32583029,27826026 -) -(1,9944:6630773,28492204:25952256,410518,76021 -h1,9944:6630773,28492204:0,0,0 -k1,9944:6630773,28492204:0 -h1,9944:10108375,28492204:0,0,0 -k1,9944:32583029,28492204:22474654 -g1,9944:32583029,28492204 -) -(1,9955:6630773,29223918:25952256,410518,101187 -(1,9946:6630773,29223918:0,0,0 -g1,9946:6630773,29223918 -g1,9946:6630773,29223918 -g1,9946:6303093,29223918 -(1,9946:6303093,29223918:0,0,0 -) -g1,9946:6630773,29223918 -) -g1,9955:7579210,29223918 -g1,9955:10424521,29223918 -g1,9955:11372958,29223918 -g1,9955:14218269,29223918 -h1,9955:15798997,29223918:0,0,0 -k1,9955:32583029,29223918:16784032 -g1,9955:32583029,29223918 -) -(1,9955:6630773,29890096:25952256,379060,0 -h1,9955:6630773,29890096:0,0,0 -h1,9955:7263064,29890096:0,0,0 -k1,9955:32583028,29890096:25319964 -g1,9955:32583028,29890096 -) -(1,9955:6630773,30556274:25952256,410518,101187 -h1,9955:6630773,30556274:0,0,0 -g1,9955:7579210,30556274 -g1,9955:7895356,30556274 -g1,9955:8211502,30556274 -g1,9955:8527648,30556274 -g1,9955:8843794,30556274 -g1,9955:9159940,30556274 -g1,9955:9476086,30556274 -g1,9955:9792232,30556274 -g1,9955:10108378,30556274 -g1,9955:10424524,30556274 -g1,9955:10740670,30556274 -g1,9955:11056816,30556274 -g1,9955:11372962,30556274 -g1,9955:11689108,30556274 -g1,9955:12637545,30556274 -g1,9955:12953691,30556274 -g1,9955:15166711,30556274 -g1,9955:17379731,30556274 -g1,9955:18012023,30556274 -g1,9955:19276606,30556274 -g1,9955:20225043,30556274 -g1,9955:21489626,30556274 -g1,9955:22438063,30556274 -g1,9955:22754209,30556274 -g1,9955:23070355,30556274 -g1,9955:23386501,30556274 -k1,9955:23386501,30556274:0 -h1,9955:25283375,30556274:0,0,0 -k1,9955:32583029,30556274:7299654 -g1,9955:32583029,30556274 -) -(1,9955:6630773,31222452:25952256,404226,101187 -h1,9955:6630773,31222452:0,0,0 -g1,9955:7579210,31222452 -g1,9955:11372958,31222452 -g1,9955:11689104,31222452 -g1,9955:12005250,31222452 -g1,9955:12637542,31222452 -g1,9955:15166708,31222452 -g1,9955:15482854,31222452 -g1,9955:15799000,31222452 -g1,9955:18012020,31222452 -g1,9955:18328166,31222452 -g1,9955:18644312,31222452 -g1,9955:18960458,31222452 -g1,9955:19276604,31222452 -g1,9955:19592750,31222452 -g1,9955:20225042,31222452 -g1,9955:20541188,31222452 -g1,9955:20857334,31222452 -g1,9955:21173480,31222452 -g1,9955:22438063,31222452 -g1,9955:23070355,31222452 -g1,9955:25599521,31222452 -h1,9955:26547958,31222452:0,0,0 -k1,9955:32583029,31222452:6035071 -g1,9955:32583029,31222452 -) -(1,9955:6630773,31888630:25952256,404226,101187 -h1,9955:6630773,31888630:0,0,0 -g1,9955:7579210,31888630 -g1,9955:10108376,31888630 -g1,9955:10424522,31888630 -g1,9955:10740668,31888630 -g1,9955:11056814,31888630 -g1,9955:11372960,31888630 -g1,9955:11689106,31888630 -g1,9955:12005252,31888630 -g1,9955:12637544,31888630 -g1,9955:15166710,31888630 -g1,9955:15482856,31888630 -g1,9955:15799002,31888630 -g1,9955:16115148,31888630 -g1,9955:16431294,31888630 -g1,9955:18012023,31888630 -g1,9955:18328169,31888630 -g1,9955:18644315,31888630 -g1,9955:18960461,31888630 -g1,9955:19276607,31888630 -g1,9955:19592753,31888630 -g1,9955:20225045,31888630 -g1,9955:20541191,31888630 -g1,9955:20857337,31888630 -g1,9955:21173483,31888630 -g1,9955:22438066,31888630 -g1,9955:23070358,31888630 -g1,9955:25599524,31888630 -h1,9955:26547961,31888630:0,0,0 -k1,9955:32583029,31888630:6035068 -g1,9955:32583029,31888630 -) -(1,9955:6630773,32554808:25952256,404226,6290 -h1,9955:6630773,32554808:0,0,0 -g1,9955:7579210,32554808 -g1,9955:10740667,32554808 -g1,9955:11056813,32554808 -g1,9955:11372959,32554808 -h1,9955:12321396,32554808:0,0,0 -k1,9955:32583028,32554808:20261632 -g1,9955:32583028,32554808 -) -(1,9955:6630773,33220986:25952256,379060,0 -h1,9955:6630773,33220986:0,0,0 -g1,9955:7579210,33220986 -k1,9955:7579210,33220986:0 -h1,9955:8527648,33220986:0,0,0 -k1,9955:32583028,33220986:24055380 -g1,9955:32583028,33220986 -) -(1,9955:6630773,33887164:25952256,410518,107478 -h1,9955:6630773,33887164:0,0,0 -g1,9955:7579210,33887164 -g1,9955:10108376,33887164 -g1,9955:12321396,33887164 -g1,9955:12637542,33887164 -g1,9955:13269834,33887164 -g1,9955:15166709,33887164 -g1,9955:17063583,33887164 -g1,9955:18644312,33887164 -g1,9955:20225041,33887164 -g1,9955:21489625,33887164 -g1,9955:23070354,33887164 -g1,9955:24334938,33887164 -g1,9955:25599521,33887164 -g1,9955:26231813,33887164 -g1,9955:26864105,33887164 -h1,9955:27180251,33887164:0,0,0 -k1,9955:32583029,33887164:5402778 -g1,9955:32583029,33887164 -) -(1,9957:6630773,35208702:25952256,410518,101187 -(1,9956:6630773,35208702:0,0,0 -g1,9956:6630773,35208702 -g1,9956:6630773,35208702 -g1,9956:6303093,35208702 -(1,9956:6303093,35208702:0,0,0 -) -g1,9956:6630773,35208702 -) -k1,9957:6630773,35208702:0 -h1,9957:10740667,35208702:0,0,0 -k1,9957:32583029,35208702:21842362 -g1,9957:32583029,35208702 -) -(1,9965:6630773,35940416:25952256,410518,101187 -(1,9959:6630773,35940416:0,0,0 -g1,9959:6630773,35940416 -g1,9959:6630773,35940416 -g1,9959:6303093,35940416 -(1,9959:6303093,35940416:0,0,0 -) -g1,9959:6630773,35940416 -) -g1,9965:7579210,35940416 -g1,9965:7895356,35940416 -g1,9965:8211502,35940416 -g1,9965:8527648,35940416 -g1,9965:8843794,35940416 -g1,9965:9159940,35940416 -g1,9965:9476086,35940416 -g1,9965:9792232,35940416 -g1,9965:10108378,35940416 -g1,9965:10424524,35940416 -g1,9965:10740670,35940416 -g1,9965:11056816,35940416 -g1,9965:12005253,35940416 -g1,9965:14218273,35940416 -g1,9965:16431293,35940416 -g1,9965:17063585,35940416 -g1,9965:18328168,35940416 -g1,9965:19276605,35940416 -g1,9965:20541188,35940416 -g1,9965:21489625,35940416 -g1,9965:21805771,35940416 -g1,9965:22121917,35940416 -g1,9965:22438063,35940416 -k1,9965:22438063,35940416:0 -h1,9965:24334937,35940416:0,0,0 -k1,9965:32583029,35940416:8248092 -g1,9965:32583029,35940416 -) -(1,9965:6630773,36606594:25952256,404226,101187 -h1,9965:6630773,36606594:0,0,0 -g1,9965:7579210,36606594 -g1,9965:10108376,36606594 -g1,9965:10424522,36606594 -g1,9965:10740668,36606594 -g1,9965:11056814,36606594 -g1,9965:11372960,36606594 -g1,9965:12005252,36606594 -g1,9965:14218272,36606594 -g1,9965:14534418,36606594 -g1,9965:14850564,36606594 -g1,9965:17063584,36606594 -g1,9965:17379730,36606594 -g1,9965:17695876,36606594 -g1,9965:18012022,36606594 -g1,9965:18328168,36606594 -g1,9965:18644314,36606594 -g1,9965:19276606,36606594 -g1,9965:19592752,36606594 -g1,9965:19908898,36606594 -g1,9965:20225044,36606594 -g1,9965:21489627,36606594 -g1,9965:22121919,36606594 -g1,9965:24651085,36606594 -h1,9965:25599522,36606594:0,0,0 -k1,9965:32583029,36606594:6983507 -g1,9965:32583029,36606594 -) -(1,9965:6630773,37272772:25952256,404226,6290 -h1,9965:6630773,37272772:0,0,0 -g1,9965:7579210,37272772 -g1,9965:10740667,37272772 -h1,9965:11689104,37272772:0,0,0 -k1,9965:32583028,37272772:20893924 -g1,9965:32583028,37272772 -) -(1,9965:6630773,37938950:25952256,379060,0 -h1,9965:6630773,37938950:0,0,0 -g1,9965:7579210,37938950 -k1,9965:7579210,37938950:0 -h1,9965:8527648,37938950:0,0,0 -k1,9965:32583028,37938950:24055380 -g1,9965:32583028,37938950 -) -(1,9965:6630773,38605128:25952256,410518,107478 -h1,9965:6630773,38605128:0,0,0 -g1,9965:7579210,38605128 -g1,9965:10108376,38605128 -g1,9965:12321396,38605128 -g1,9965:12637542,38605128 -g1,9965:13269834,38605128 -g1,9965:15166709,38605128 -g1,9965:17063583,38605128 -g1,9965:18644312,38605128 -g1,9965:20225041,38605128 -g1,9965:21489625,38605128 -g1,9965:23070354,38605128 -g1,9965:24334938,38605128 -g1,9965:25599521,38605128 -g1,9965:26231813,38605128 -g1,9965:26864105,38605128 -h1,9965:27180251,38605128:0,0,0 -k1,9965:32583029,38605128:5402778 -g1,9965:32583029,38605128 -) -] -) -g1,9966:32583029,38712606 -g1,9966:6630773,38712606 -g1,9966:6630773,38712606 -g1,9966:32583029,38712606 -g1,9966:32583029,38712606 -) -h1,9966:6630773,38909214:0,0,0 -v1,9970:6630773,40617967:0,393216,0 -(1,9972:6630773,44657098:25952256,4432347,616038 -g1,9972:6630773,44657098 -(1,9972:6630773,44657098:25952256,4432347,616038 -(1,9972:6630773,45273136:25952256,5048385,0 -[1,9972:6630773,45273136:25952256,5048385,0 -(1,9972:6630773,45246922:25952256,4995957,0 -r1,9980:6656987,45246922:26214,4995957,0 -[1,9972:6656987,45246922:25899828,4995957,0 -(1,9972:6656987,44657098:25899828,3816309,0 -[1,9972:7246811,44657098:24720180,3816309,0 -(1,9972:7246811,42124771:24720180,1283982,196608 -(1,9970:7246811,42124771:0,1283982,196608 -r1,9980:9812056,42124771:2565245,1480590,196608 -k1,9970:7246811,42124771:-2565245 -) -(1,9970:7246811,42124771:2565245,1283982,196608 -) -k1,9970:10021009,42124771:208953 -k1,9970:12435904,42124771:208953 -k1,9970:13663942,42124771:208953 -k1,9970:16534311,42124771:208952 -k1,9970:18598588,42124771:208953 -k1,9970:19458969,42124771:208953 -k1,9970:20760407,42124771:208953 -(1,9970:20760407,42124771:0,452978,115847 -r1,9980:22525520,42124771:1765113,568825,115847 -k1,9970:20760407,42124771:-1765113 -) -(1,9970:20760407,42124771:1765113,452978,115847 -k1,9970:20760407,42124771:3277 -h1,9970:22522243,42124771:0,411205,112570 -) -k1,9970:22734473,42124771:208953 -k1,9970:25270609,42124771:208953 -k1,9970:26146717,42124771:208952 -(1,9970:26146717,42124771:0,452978,115847 -r1,9980:28966966,42124771:2820249,568825,115847 -k1,9970:26146717,42124771:-2820249 -) -(1,9970:26146717,42124771:2820249,452978,115847 -k1,9970:26146717,42124771:3277 -h1,9970:28963689,42124771:0,411205,112570 -) -k1,9970:29175919,42124771:208953 -k1,9970:30576317,42124771:208953 -k1,9970:31966991,42124771:0 -) -(1,9972:7246811,42966259:24720180,505283,115847 -k1,9970:8447226,42966259:181330 -k1,9970:10471428,42966259:181330 -k1,9970:11304186,42966259:181330 -k1,9970:11841376,42966259:181330 -k1,9970:14534046,42966259:181330 -k1,9970:16874131,42966259:181329 -(1,9970:16874131,42966259:0,459977,115847 -r1,9980:18287532,42966259:1413401,575824,115847 -k1,9970:16874131,42966259:-1413401 -) -(1,9970:16874131,42966259:1413401,459977,115847 -k1,9970:16874131,42966259:3277 -h1,9970:18284255,42966259:0,411205,112570 -) -k1,9970:18642532,42966259:181330 -k1,9971:18642532,42966259:0 -k1,9971:19972708,42966259:181330 -(1,9971:19972708,42966259:0,452978,115847 -r1,9980:22441245,42966259:2468537,568825,115847 -k1,9971:19972708,42966259:-2468537 -) -(1,9971:19972708,42966259:2468537,452978,115847 -k1,9971:19972708,42966259:3277 -h1,9971:22437968,42966259:0,411205,112570 -) -k1,9971:22796245,42966259:181330 -(1,9971:22796245,42966259:0,452978,115847 -r1,9980:27023341,42966259:4227096,568825,115847 -k1,9971:22796245,42966259:-4227096 -) -(1,9971:22796245,42966259:4227096,452978,115847 -k1,9971:22796245,42966259:3277 -h1,9971:27020064,42966259:0,411205,112570 -) -k1,9971:27378341,42966259:181330 -(1,9971:27378341,42966259:0,452978,115847 -r1,9980:29846878,42966259:2468537,568825,115847 -k1,9971:27378341,42966259:-2468537 -) -(1,9971:27378341,42966259:2468537,452978,115847 -k1,9971:27378341,42966259:3277 -h1,9971:29843601,42966259:0,411205,112570 -) -k1,9971:30201878,42966259:181330 -(1,9971:30201878,42966259:0,452978,115847 -r1,9980:31966991,42966259:1765113,568825,115847 -k1,9971:30201878,42966259:-1765113 -) -(1,9971:30201878,42966259:1765113,452978,115847 -k1,9971:30201878,42966259:3277 -h1,9971:31963714,42966259:0,411205,112570 -) -k1,9971:31966991,42966259:0 -) -(1,9972:7246811,43807747:24720180,513147,134348 -k1,9971:8697340,43807747:259084 -k1,9971:12170964,43807747:259083 -k1,9971:13089340,43807747:259084 -k1,9971:16302132,43807747:259084 -k1,9971:17212643,43807747:259083 -k1,9971:19840198,43807747:259084 -k1,9971:22389110,43807747:259084 -(1,9971:22389110,43807747:0,459977,115847 -r1,9980:23802511,43807747:1413401,575824,115847 -k1,9971:22389110,43807747:-1413401 -) -(1,9971:22389110,43807747:1413401,459977,115847 -k1,9971:22389110,43807747:3277 -h1,9971:23799234,43807747:0,411205,112570 -) -k1,9971:24235264,43807747:259083 -(1,9971:24235264,43807747:0,459977,115847 -r1,9980:25648665,43807747:1413401,575824,115847 -k1,9971:24235264,43807747:-1413401 -) -(1,9971:24235264,43807747:1413401,459977,115847 -k1,9971:24235264,43807747:3277 -h1,9971:25645388,43807747:0,411205,112570 -) -k1,9971:25907749,43807747:259084 -k1,9971:27358278,43807747:259084 -(1,9971:27358278,43807747:0,459977,115847 -r1,9980:28771679,43807747:1413401,575824,115847 -k1,9971:27358278,43807747:-1413401 -) -(1,9971:27358278,43807747:1413401,459977,115847 -k1,9971:27358278,43807747:3277 -h1,9971:28768402,43807747:0,411205,112570 -) -k1,9971:29204432,43807747:259083 -k1,9971:30586803,43807747:259084 -k1,9971:31966991,43807747:0 -) -(1,9972:7246811,44649235:24720180,513147,7863 -k1,9972:31966990,44649235:21630812 -g1,9972:31966990,44649235 -) -] -) -] -r1,9980:32583029,45246922:26214,4995957,0 -) -] -) -) -g1,9972:32583029,44657098 -) -h1,9972:6630773,45273136:0,0,0 -] -(1,9980:32583029,45706769:0,0,0 -g1,9980:32583029,45706769 -) -) -] -(1,9980:6630773,47279633:25952256,0,0 -h1,9980:6630773,47279633:25952256,0,0 -) -] -(1,9980:4262630,4025873:0,0,0 -[1,9980:-473656,4025873:0,0,0 -(1,9980:-473656,-710413:0,0,0 -(1,9980:-473656,-710413:0,0,0 -g1,9980:-473656,-710413 -) -g1,9980:-473656,-710413 -) -] -) -] -!28328 -}185 -Input:1451:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1452:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1453:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!288 -{186 -[1,10055:4262630,47279633:28320399,43253760,0 -(1,10055:4262630,4025873:0,0,0 -[1,10055:-473656,4025873:0,0,0 -(1,10055:-473656,-710413:0,0,0 -(1,10055:-473656,-644877:0,0,0 -k1,10055:-473656,-644877:-65536 -) -(1,10055:-473656,4736287:0,0,0 -k1,10055:-473656,4736287:5209943 -) -g1,10055:-473656,-710413 -) -] -) -[1,10055:6630773,47279633:25952256,43253760,0 -[1,10055:6630773,4812305:25952256,786432,0 -(1,10055:6630773,4812305:25952256,505283,11795 -(1,10055:6630773,4812305:25952256,505283,11795 -g1,10055:3078558,4812305 -[1,10055:3078558,4812305:0,0,0 -(1,10055:3078558,2439708:0,1703936,0 -k1,10055:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,10055:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,10055:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,10055:3078558,4812305:0,0,0 -(1,10055:3078558,2439708:0,1703936,0 -g1,10055:29030814,2439708 -g1,10055:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,10055:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,10055:37855564,2439708:1179648,16384,0 -) -) -k1,10055:3078556,2439708:-34777008 -) -] -[1,10055:3078558,4812305:0,0,0 -(1,10055:3078558,49800853:0,16384,2228224 -k1,10055:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,10055:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,10055:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,10055:3078558,4812305:0,0,0 -(1,10055:3078558,49800853:0,16384,2228224 -g1,10055:29030814,49800853 -g1,10055:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,10055:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,10055:37855564,49800853:1179648,16384,0 -) -) -k1,10055:3078556,49800853:-34777008 -) -] -g1,10055:6630773,4812305 -g1,10055:6630773,4812305 -g1,10055:10653372,4812305 -g1,10055:13512052,4812305 -k1,10055:31387652,4812305:17875600 -) -) -] -[1,10055:6630773,45706769:25952256,40108032,0 -(1,10055:6630773,45706769:25952256,40108032,0 -(1,10055:6630773,45706769:0,0,0 -g1,10055:6630773,45706769 -) -[1,10055:6630773,45706769:25952256,40108032,0 -(1,9976:6630773,6254097:25952256,555811,139132 -(1,9976:6630773,6254097:2899444,534184,0 -g1,9976:6630773,6254097 -g1,9976:9530217,6254097 -) -g1,9976:12966008,6254097 -g1,9976:17643903,6254097 -k1,9976:32583029,6254097:11970476 -g1,9976:32583029,6254097 -) -(1,9980:6630773,7488801:25952256,513147,134348 -k1,9979:9664219,7488801:237025 -k1,9979:13828817,7488801:237025 -k1,9979:16620435,7488801:237025 -k1,9979:18590194,7488801:236987 -k1,9979:19358716,7488801:237025 -k1,9979:21108968,7488801:237026 -k1,9979:21997421,7488801:237025 -k1,9979:24838847,7488801:237025 -k1,9979:25431732,7488801:237025 -k1,9979:27058120,7488801:237025 -k1,9979:28229688,7488801:237025 -k1,9979:29228241,7488801:237025 -k1,9979:32583029,7488801:0 -) -(1,9980:6630773,8330289:25952256,505283,126483 -k1,9979:9664971,8330289:192557 -k1,9979:11251478,8330289:192556 -k1,9979:13646045,8330289:192557 -k1,9979:15030046,8330289:192556 -k1,9979:17903681,8330289:192557 -k1,9979:20855958,8330289:192556 -k1,9979:22315981,8330289:192557 -k1,9979:25350178,8330289:192556 -k1,9979:29643978,8330289:192557 -k1,9979:30581023,8330289:192556 -k1,9979:31129440,8330289:192557 -k1,9979:32583029,8330289:0 -) -(1,9980:6630773,9171777:25952256,513147,134348 -k1,9979:8623832,9171777:154774 -k1,9979:9646958,9171777:154774 -k1,9979:13106713,9171777:154774 -k1,9979:14167850,9171777:154774 -k1,9979:14974052,9171777:154774 -k1,9979:17950806,9171777:154774 -k1,9979:19802308,9171777:154775 -k1,9979:23884655,9171777:154774 -k1,9979:24655467,9171777:154774 -k1,9979:27274395,9171777:154774 -k1,9979:28080597,9171777:154774 -k1,9979:30373155,9171777:154774 -k1,9979:32583029,9171777:0 -) -(1,9980:6630773,10013265:25952256,513147,126483 -k1,9979:9590644,10013265:140512 -k1,9979:13738027,10013265:140512 -k1,9979:16893850,10013265:140512 -k1,9979:18466979,10013265:140512 -k1,9979:19526307,10013265:140513 -k1,9979:22362315,10013265:140512 -(1,9979:22362315,10013265:0,452978,115847 -r1,10055:25182564,10013265:2820249,568825,115847 -k1,9979:22362315,10013265:-2820249 -) -(1,9979:22362315,10013265:2820249,452978,115847 -k1,9979:22362315,10013265:3277 -h1,9979:25179287,10013265:0,411205,112570 -) -k1,9979:25323076,10013265:140512 -k1,9979:28581791,10013265:140512 -k1,9979:29741388,10013265:140512 -k1,9979:32583029,10013265:0 -) -(1,9980:6630773,10854753:25952256,513147,134348 -g1,9979:10757575,10854753 -g1,9979:12148249,10854753 -g1,9979:14725780,10854753 -g1,9979:18152002,10854753 -g1,9979:21753860,10854753 -g1,9979:22900740,10854753 -g1,9979:26078580,10854753 -g1,9979:27469254,10854753 -k1,9980:32583029,10854753:2724988 -g1,9980:32583029,10854753 -) -v1,9982:6630773,12045219:0,393216,0 -(1,9989:6630773,14327392:25952256,2675389,196608 -g1,9989:6630773,14327392 -g1,9989:6630773,14327392 -g1,9989:6434165,14327392 -(1,9989:6434165,14327392:0,2675389,196608 -r1,10055:32779637,14327392:26345472,2871997,196608 -k1,9989:6434165,14327392:-26345472 -) -(1,9989:6434165,14327392:26345472,2675389,196608 -[1,9989:6630773,14327392:25952256,2478781,0 -(1,9984:6630773,12252837:25952256,404226,107478 -(1,9983:6630773,12252837:0,0,0 -g1,9983:6630773,12252837 -g1,9983:6630773,12252837 -g1,9983:6303093,12252837 -(1,9983:6303093,12252837:0,0,0 -) -g1,9983:6630773,12252837 -) -g1,9984:7579210,12252837 -g1,9984:8527648,12252837 -g1,9984:18012020,12252837 -k1,9984:18012020,12252837:0 -h1,9984:22438060,12252837:0,0,0 -k1,9984:32583029,12252837:10144969 -g1,9984:32583029,12252837 -) -(1,9985:6630773,12919015:25952256,404226,107478 -h1,9985:6630773,12919015:0,0,0 -g1,9985:6946919,12919015 -g1,9985:7263065,12919015 -g1,9985:7579211,12919015 -g1,9985:7895357,12919015 -g1,9985:8211503,12919015 -g1,9985:8527649,12919015 -g1,9985:8843795,12919015 -g1,9985:9159941,12919015 -g1,9985:9476087,12919015 -g1,9985:9792233,12919015 -g1,9985:10108379,12919015 -g1,9985:10424525,12919015 -g1,9985:10740671,12919015 -g1,9985:11056817,12919015 -g1,9985:11372963,12919015 -g1,9985:11689109,12919015 -g1,9985:12005255,12919015 -g1,9985:12321401,12919015 -g1,9985:12637547,12919015 -g1,9985:12953693,12919015 -g1,9985:18012025,12919015 -k1,9985:18012025,12919015:0 -h1,9985:23070356,12919015:0,0,0 -k1,9985:32583029,12919015:9512673 -g1,9985:32583029,12919015 -) -(1,9986:6630773,13585193:25952256,369623,82312 -h1,9986:6630773,13585193:0,0,0 -g1,9986:6946919,13585193 -g1,9986:7263065,13585193 -g1,9986:7579211,13585193 -g1,9986:7895357,13585193 -g1,9986:8211503,13585193 -g1,9986:8527649,13585193 -g1,9986:8843795,13585193 -g1,9986:9159941,13585193 -g1,9986:9476087,13585193 -g1,9986:9792233,13585193 -g1,9986:10108379,13585193 -g1,9986:10424525,13585193 -g1,9986:10740671,13585193 -g1,9986:12953691,13585193 -g1,9986:13585983,13585193 -k1,9986:13585983,13585193:0 -h1,9986:15166712,13585193:0,0,0 -k1,9986:32583028,13585193:17416316 -g1,9986:32583028,13585193 -) -(1,9987:6630773,14251371:25952256,404226,76021 -h1,9987:6630773,14251371:0,0,0 -g1,9987:6946919,14251371 -g1,9987:7263065,14251371 -g1,9987:7579211,14251371 -g1,9987:7895357,14251371 -g1,9987:8211503,14251371 -g1,9987:8527649,14251371 -g1,9987:8843795,14251371 -g1,9987:9159941,14251371 -g1,9987:9476087,14251371 -g1,9987:9792233,14251371 -g1,9987:10108379,14251371 -g1,9987:10424525,14251371 -g1,9987:10740671,14251371 -g1,9987:12637545,14251371 -g1,9987:13269837,14251371 -h1,9987:14850566,14251371:0,0,0 -k1,9987:32583030,14251371:17732464 -g1,9987:32583030,14251371 -) -] -) -g1,9989:32583029,14327392 -g1,9989:6630773,14327392 -g1,9989:6630773,14327392 -g1,9989:32583029,14327392 -g1,9989:32583029,14327392 -) -h1,9989:6630773,14524000:0,0,0 -(1,9994:6630773,15714466:25952256,513147,134348 -h1,9992:6630773,15714466:983040,0,0 -k1,9992:8581780,15714466:207749 -k1,9992:11361817,15714466:207749 -k1,9992:12588651,15714466:207749 -k1,9992:15575127,15714466:207749 -k1,9992:17742402,15714466:207749 -k1,9992:18818503,15714466:207749 -k1,9992:20130534,15714466:207749 -k1,9992:21363266,15714466:207749 -k1,9992:22590100,15714466:207749 -k1,9992:25494656,15714466:207749 -k1,9992:26361697,15714466:207749 -k1,9992:28021068,15714466:207749 -k1,9992:30740157,15714466:207749 -k1,9992:31563944,15714466:207749 -k1,9992:32583029,15714466:0 -) -(1,9994:6630773,16380644:25952256,505283,126483 -g1,9992:9671643,16380644 -g1,9992:13798445,16380644 -(1,9992:13798445,16380644:0,435480,115847 -r1,10055:14508423,16380644:709978,551327,115847 -k1,9992:13798445,16380644:-709978 -) -(1,9992:13798445,16380644:709978,435480,115847 -k1,9992:13798445,16380644:3277 -h1,9992:14505146,16380644:0,411205,112570 -) -g1,9992:14707652,16380644 -g1,9992:15558309,16380644 -(1,9992:15558309,16380644:0,424981,115847 -r1,10055:16268287,16380644:709978,540828,115847 -k1,9992:15558309,16380644:-709978 -) -(1,9992:15558309,16380644:709978,424981,115847 -k1,9992:15558309,16380644:3277 -h1,9992:16265010,16380644:0,411205,112570 -) -g1,9992:16641186,16380644 -k1,9994:32583029,16380644:15941843 -g1,9994:32583029,16380644 -) -v1,9994:6630773,17571110:0,393216,0 -(1,10015:6630773,25902554:25952256,8724660,196608 -g1,10015:6630773,25902554 -g1,10015:6630773,25902554 -g1,10015:6434165,25902554 -(1,10015:6434165,25902554:0,8724660,196608 -r1,10055:32779637,25902554:26345472,8921268,196608 -k1,10015:6434165,25902554:-26345472 -) -(1,10015:6434165,25902554:26345472,8724660,196608 -[1,10015:6630773,25902554:25952256,8528052,0 -(1,9996:6630773,17778728:25952256,404226,101187 -(1,9995:6630773,17778728:0,0,0 -g1,9995:6630773,17778728 -g1,9995:6630773,17778728 -g1,9995:6303093,17778728 -(1,9995:6303093,17778728:0,0,0 -) -g1,9995:6630773,17778728 -) -k1,9996:6630773,17778728:0 -h1,9996:9476084,17778728:0,0,0 -k1,9996:32583028,17778728:23106944 -g1,9996:32583028,17778728 -) -(1,10000:6630773,18510442:25952256,404226,101187 -(1,9998:6630773,18510442:0,0,0 -g1,9998:6630773,18510442 -g1,9998:6630773,18510442 -g1,9998:6303093,18510442 -(1,9998:6303093,18510442:0,0,0 -) -g1,9998:6630773,18510442 -) -g1,10000:7579210,18510442 -g1,10000:8843793,18510442 -h1,10000:11372958,18510442:0,0,0 -k1,10000:32583030,18510442:21210072 -g1,10000:32583030,18510442 -) -(1,10002:6630773,19831980:25952256,284164,101187 -(1,10001:6630773,19831980:0,0,0 -g1,10001:6630773,19831980 -g1,10001:6630773,19831980 -g1,10001:6303093,19831980 -(1,10001:6303093,19831980:0,0,0 -) -g1,10001:6630773,19831980 -) -h1,10002:7263064,19831980:0,0,0 -k1,10002:32583028,19831980:25319964 -g1,10002:32583028,19831980 -) -(1,10014:6630773,20563694:25952256,404226,101187 -(1,10004:6630773,20563694:0,0,0 -g1,10004:6630773,20563694 -g1,10004:6630773,20563694 -g1,10004:6303093,20563694 -(1,10004:6303093,20563694:0,0,0 -) -g1,10004:6630773,20563694 -) -g1,10014:7579210,20563694 -g1,10014:10424521,20563694 -g1,10014:13902124,20563694 -g1,10014:15166707,20563694 -g1,10014:16431290,20563694 -h1,10014:18012018,20563694:0,0,0 -k1,10014:32583029,20563694:14571011 -g1,10014:32583029,20563694 -) -(1,10014:6630773,21229872:25952256,404226,76021 -h1,10014:6630773,21229872:0,0,0 -g1,10014:7579210,21229872 -g1,10014:8843793,21229872 -g1,10014:12005250,21229872 -g1,10014:15166707,21229872 -g1,10014:18328164,21229872 -h1,10014:21173475,21229872:0,0,0 -k1,10014:32583029,21229872:11409554 -g1,10014:32583029,21229872 -) -(1,10014:6630773,21896050:25952256,379060,0 -h1,10014:6630773,21896050:0,0,0 -h1,10014:7263064,21896050:0,0,0 -k1,10014:32583028,21896050:25319964 -g1,10014:32583028,21896050 -) -(1,10014:6630773,22562228:25952256,404226,76021 -h1,10014:6630773,22562228:0,0,0 -g1,10014:7579210,22562228 -g1,10014:10424521,22562228 -g1,10014:11372958,22562228 -g1,10014:12005250,22562228 -g1,10014:12953687,22562228 -g1,10014:13585979,22562228 -g1,10014:14534416,22562228 -g1,10014:15166708,22562228 -h1,10014:16115145,22562228:0,0,0 -k1,10014:32583029,22562228:16467884 -g1,10014:32583029,22562228 -) -(1,10014:6630773,23228406:25952256,388497,9436 -h1,10014:6630773,23228406:0,0,0 -g1,10014:7579210,23228406 -g1,10014:7895356,23228406 -g1,10014:8211502,23228406 -g1,10014:8527648,23228406 -g1,10014:8843794,23228406 -g1,10014:9159940,23228406 -g1,10014:9476086,23228406 -g1,10014:9792232,23228406 -g1,10014:10108378,23228406 -g1,10014:10424524,23228406 -g1,10014:10740670,23228406 -g1,10014:11056816,23228406 -g1,10014:11372962,23228406 -g1,10014:11689108,23228406 -g1,10014:12005254,23228406 -g1,10014:12321400,23228406 -g1,10014:12637546,23228406 -g1,10014:12953692,23228406 -g1,10014:13269838,23228406 -g1,10014:13585984,23228406 -g1,10014:13902130,23228406 -g1,10014:15166713,23228406 -g1,10014:15482859,23228406 -g1,10014:15799005,23228406 -g1,10014:16115151,23228406 -g1,10014:16431297,23228406 -g1,10014:16747443,23228406 -g1,10014:17063589,23228406 -g1,10014:17379735,23228406 -g1,10014:17695881,23228406 -g1,10014:18960464,23228406 -g1,10014:19276610,23228406 -g1,10014:19592756,23228406 -g1,10014:19908902,23228406 -g1,10014:20225048,23228406 -g1,10014:20541194,23228406 -g1,10014:20857340,23228406 -g1,10014:21173486,23228406 -g1,10014:22438069,23228406 -g1,10014:22754215,23228406 -g1,10014:23070361,23228406 -g1,10014:23386507,23228406 -g1,10014:23702653,23228406 -g1,10014:24018799,23228406 -g1,10014:24334945,23228406 -g1,10014:24651091,23228406 -h1,10014:25599528,23228406:0,0,0 -k1,10014:32583029,23228406:6983501 -g1,10014:32583029,23228406 -) -(1,10014:6630773,23894584:25952256,404226,107478 -h1,10014:6630773,23894584:0,0,0 -g1,10014:7579210,23894584 -g1,10014:11689104,23894584 -g1,10014:12005250,23894584 -g1,10014:15166707,23894584 -g1,10014:18960455,23894584 -g1,10014:19276601,23894584 -g1,10014:22438058,23894584 -g1,10014:22754204,23894584 -h1,10014:25599515,23894584:0,0,0 -k1,10014:32583029,23894584:6983514 -g1,10014:32583029,23894584 -) -(1,10014:6630773,24560762:25952256,404226,101187 -h1,10014:6630773,24560762:0,0,0 -g1,10014:7579210,24560762 -g1,10014:11372958,24560762 -g1,10014:11689104,24560762 -g1,10014:15166707,24560762 -g1,10014:18960455,24560762 -g1,10014:22438058,24560762 -k1,10014:22438058,24560762:0 -h1,10014:25599515,24560762:0,0,0 -k1,10014:32583029,24560762:6983514 -g1,10014:32583029,24560762 -) -(1,10014:6630773,25226940:25952256,404226,107478 -h1,10014:6630773,25226940:0,0,0 -g1,10014:7579210,25226940 -g1,10014:11689104,25226940 -g1,10014:12005250,25226940 -g1,10014:15166707,25226940 -g1,10014:18960455,25226940 -g1,10014:22438058,25226940 -k1,10014:22438058,25226940:0 -h1,10014:25599515,25226940:0,0,0 -k1,10014:32583029,25226940:6983514 -g1,10014:32583029,25226940 -) -(1,10014:6630773,25893118:25952256,404226,9436 -h1,10014:6630773,25893118:0,0,0 -g1,10014:7579210,25893118 -g1,10014:11372958,25893118 -g1,10014:11689104,25893118 -g1,10014:12005250,25893118 -g1,10014:15166707,25893118 -g1,10014:18960455,25893118 -g1,10014:22438058,25893118 -g1,10014:22754204,25893118 -h1,10014:25599515,25893118:0,0,0 -k1,10014:32583029,25893118:6983514 -g1,10014:32583029,25893118 -) -] -) -g1,10015:32583029,25902554 -g1,10015:6630773,25902554 -g1,10015:6630773,25902554 -g1,10015:32583029,25902554 -g1,10015:32583029,25902554 -) -h1,10015:6630773,26099162:0,0,0 -(1,10019:6630773,27464938:25952256,513147,126483 -h1,10018:6630773,27464938:983040,0,0 -k1,10018:8508183,27464938:266535 -k1,10018:9793803,27464938:266535 -k1,10018:13224415,27464938:266534 -k1,10018:14510035,27464938:266535 -k1,10018:16310768,27464938:266535 -k1,10018:20306957,27464938:266535 -k1,10018:21232784,27464938:266535 -k1,10018:24554606,27464938:266534 -k1,10018:26012586,27464938:266535 -k1,10018:30208004,27464938:266535 -k1,10019:32583029,27464938:0 -) -(1,10019:6630773,28306426:25952256,513147,126483 -k1,10018:8438732,28306426:240338 -k1,10018:9670631,28306426:240339 -k1,10018:11512669,28306426:240338 -k1,10018:15455136,28306426:240338 -k1,10018:16354767,28306426:240339 -k1,10018:17614190,28306426:240338 -k1,10018:21826666,28306426:240339 -k1,10018:22726296,28306426:240338 -k1,10018:24418256,28306426:240338 -k1,10018:27500236,28306426:240339 -k1,10018:31337845,28306426:240338 -k1,10018:32583029,28306426:0 -) -(1,10019:6630773,29147914:25952256,505283,134348 -g1,10018:7481430,29147914 -g1,10018:10981052,29147914 -g1,10018:12199366,29147914 -g1,10018:15224507,29147914 -g1,10018:17583147,29147914 -k1,10019:32583029,29147914:10754460 -g1,10019:32583029,29147914 -) -v1,10021:6630773,30338380:0,393216,0 -(1,10032:6630773,34043611:25952256,4098447,196608 -g1,10032:6630773,34043611 -g1,10032:6630773,34043611 -g1,10032:6434165,34043611 -(1,10032:6434165,34043611:0,4098447,196608 -r1,10055:32779637,34043611:26345472,4295055,196608 -k1,10032:6434165,34043611:-26345472 -) -(1,10032:6434165,34043611:26345472,4098447,196608 -[1,10032:6630773,34043611:25952256,3901839,0 -(1,10023:6630773,30545998:25952256,404226,101187 -(1,10022:6630773,30545998:0,0,0 -g1,10022:6630773,30545998 -g1,10022:6630773,30545998 -g1,10022:6303093,30545998 -(1,10022:6303093,30545998:0,0,0 -) -g1,10022:6630773,30545998 -) -k1,10023:6630773,30545998:0 -h1,10023:10108376,30545998:0,0,0 -k1,10023:32583028,30545998:22474652 -g1,10023:32583028,30545998 -) -(1,10031:6630773,31277712:25952256,410518,101187 -(1,10025:6630773,31277712:0,0,0 -g1,10025:6630773,31277712 -g1,10025:6630773,31277712 -g1,10025:6303093,31277712 -(1,10025:6303093,31277712:0,0,0 -) -g1,10025:6630773,31277712 -) -g1,10031:7579210,31277712 -g1,10031:11056813,31277712 -g1,10031:12005250,31277712 -h1,10031:15482852,31277712:0,0,0 -k1,10031:32583028,31277712:17100176 -g1,10031:32583028,31277712 -) -(1,10031:6630773,31943890:25952256,388497,9436 -h1,10031:6630773,31943890:0,0,0 -g1,10031:7579210,31943890 -g1,10031:7895356,31943890 -g1,10031:8211502,31943890 -g1,10031:8527648,31943890 -g1,10031:8843794,31943890 -g1,10031:9159940,31943890 -g1,10031:9476086,31943890 -g1,10031:9792232,31943890 -g1,10031:10108378,31943890 -g1,10031:10424524,31943890 -g1,10031:10740670,31943890 -g1,10031:11056816,31943890 -g1,10031:11372962,31943890 -g1,10031:11689108,31943890 -g1,10031:12005254,31943890 -g1,10031:12321400,31943890 -g1,10031:12637546,31943890 -g1,10031:12953692,31943890 -g1,10031:13269838,31943890 -g1,10031:13585984,31943890 -g1,10031:13902130,31943890 -g1,10031:14218276,31943890 -g1,10031:14534422,31943890 -g1,10031:14850568,31943890 -g1,10031:15166714,31943890 -g1,10031:15482860,31943890 -g1,10031:15799006,31943890 -g1,10031:17063589,31943890 -g1,10031:17379735,31943890 -g1,10031:17695881,31943890 -g1,10031:18012027,31943890 -g1,10031:19276610,31943890 -g1,10031:19592756,31943890 -g1,10031:19908902,31943890 -g1,10031:20225048,31943890 -g1,10031:20541194,31943890 -g1,10031:21805777,31943890 -g1,10031:22121923,31943890 -g1,10031:22438069,31943890 -g1,10031:22754215,31943890 -g1,10031:23070361,31943890 -h1,10031:24018798,31943890:0,0,0 -k1,10031:32583029,31943890:8564231 -g1,10031:32583029,31943890 -) -(1,10031:6630773,32610068:25952256,404226,9436 -h1,10031:6630773,32610068:0,0,0 -g1,10031:7579210,32610068 -g1,10031:10424521,32610068 -g1,10031:13585978,32610068 -g1,10031:13902124,32610068 -g1,10031:14218270,32610068 -g1,10031:14534416,32610068 -g1,10031:14850562,32610068 -g1,10031:17063582,32610068 -g1,10031:19276602,32610068 -g1,10031:21805768,32610068 -h1,10031:24018788,32610068:0,0,0 -k1,10031:32583029,32610068:8564241 -g1,10031:32583029,32610068 -) -(1,10031:6630773,33276246:25952256,410518,101187 -h1,10031:6630773,33276246:0,0,0 -g1,10031:7579210,33276246 -g1,10031:11056813,33276246 -g1,10031:12005250,33276246 -g1,10031:14850561,33276246 -g1,10031:17063581,33276246 -g1,10031:19276601,33276246 -g1,10031:21805767,33276246 -h1,10031:24018787,33276246:0,0,0 -k1,10031:32583029,33276246:8564242 -g1,10031:32583029,33276246 -) -(1,10031:6630773,33942424:25952256,404226,101187 -h1,10031:6630773,33942424:0,0,0 -g1,10031:7579210,33942424 -g1,10031:11056813,33942424 -g1,10031:14534416,33942424 -g1,10031:14850562,33942424 -g1,10031:17063582,33942424 -g1,10031:19276602,33942424 -g1,10031:21805768,33942424 -h1,10031:24018788,33942424:0,0,0 -k1,10031:32583029,33942424:8564241 -g1,10031:32583029,33942424 -) -] -) -g1,10032:32583029,34043611 -g1,10032:6630773,34043611 -g1,10032:6630773,34043611 -g1,10032:32583029,34043611 -g1,10032:32583029,34043611 -) -h1,10032:6630773,34240219:0,0,0 -(1,10038:6630773,35605995:25952256,505283,126483 -h1,10037:6630773,35605995:983040,0,0 -k1,10037:10254658,35605995:242883 -(1,10037:10254658,35605995:0,452978,115847 -r1,10055:13074907,35605995:2820249,568825,115847 -k1,10037:10254658,35605995:-2820249 -) -(1,10037:10254658,35605995:2820249,452978,115847 -k1,10037:10254658,35605995:3277 -h1,10037:13071630,35605995:0,411205,112570 -) -k1,10037:13317790,35605995:242883 -k1,10037:16511104,35605995:242883 -k1,10037:17109847,35605995:242883 -k1,10037:18630026,35605995:242882 -k1,10037:20266860,35605995:242883 -k1,10037:21666453,35605995:242883 -k1,10037:24750977,35605995:242883 -k1,10037:28591131,35605995:242883 -k1,10037:30079154,35605995:242839 -k1,10037:31131407,35605995:242883 -k1,10037:32583029,35605995:0 -) -(1,10038:6630773,36447483:25952256,513147,134348 -g1,10037:8256065,36447483 -g1,10037:9826307,36447483 -g1,10037:12203953,36447483 -g1,10037:13350833,36447483 -g1,10037:14569147,36447483 -k1,10038:32583029,36447483:15143405 -g1,10038:32583029,36447483 -) -v1,10040:6630773,37637949:0,393216,0 -(1,10044:6630773,37946754:25952256,702021,196608 -g1,10044:6630773,37946754 -g1,10044:6630773,37946754 -g1,10044:6434165,37946754 -(1,10044:6434165,37946754:0,702021,196608 -r1,10055:32779637,37946754:26345472,898629,196608 -k1,10044:6434165,37946754:-26345472 -) -(1,10044:6434165,37946754:26345472,702021,196608 -[1,10044:6630773,37946754:25952256,505413,0 -(1,10042:6630773,37845567:25952256,404226,101187 -(1,10041:6630773,37845567:0,0,0 -g1,10041:6630773,37845567 -g1,10041:6630773,37845567 -g1,10041:6303093,37845567 -(1,10041:6303093,37845567:0,0,0 -) -g1,10041:6630773,37845567 -) -k1,10042:6630773,37845567:0 -h1,10042:9792230,37845567:0,0,0 -k1,10042:32583030,37845567:22790800 -g1,10042:32583030,37845567 -) -] -) -g1,10044:32583029,37946754 -g1,10044:6630773,37946754 -g1,10044:6630773,37946754 -g1,10044:32583029,37946754 -g1,10044:32583029,37946754 -) -h1,10044:6630773,38143362:0,0,0 -] -(1,10055:32583029,45706769:0,0,0 -g1,10055:32583029,45706769 -) -) -] -(1,10055:6630773,47279633:25952256,0,0 -h1,10055:6630773,47279633:25952256,0,0 -) -] -(1,10055:4262630,4025873:0,0,0 -[1,10055:-473656,4025873:0,0,0 -(1,10055:-473656,-710413:0,0,0 -(1,10055:-473656,-710413:0,0,0 -g1,10055:-473656,-710413 -) -g1,10055:-473656,-710413 -) -] -) -] -!22819 -}186 -Input:1454:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!104 -{187 -[1,10075:4262630,47279633:28320399,43253760,0 -(1,10075:4262630,4025873:0,0,0 -[1,10075:-473656,4025873:0,0,0 -(1,10075:-473656,-710413:0,0,0 -(1,10075:-473656,-644877:0,0,0 -k1,10075:-473656,-644877:-65536 -) -(1,10075:-473656,4736287:0,0,0 -k1,10075:-473656,4736287:5209943 -) -g1,10075:-473656,-710413 -) -] -) -[1,10075:6630773,47279633:25952256,43253760,0 -[1,10075:6630773,4812305:25952256,786432,0 -(1,10075:6630773,4812305:25952256,505283,134348 -(1,10075:6630773,4812305:25952256,505283,134348 -g1,10075:3078558,4812305 -[1,10075:3078558,4812305:0,0,0 -(1,10075:3078558,2439708:0,1703936,0 -k1,10075:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,10075:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,10075:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,10075:3078558,4812305:0,0,0 -(1,10075:3078558,2439708:0,1703936,0 -g1,10075:29030814,2439708 -g1,10075:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,10075:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,10075:37855564,2439708:1179648,16384,0 -) -) -k1,10075:3078556,2439708:-34777008 -) -] -[1,10075:3078558,4812305:0,0,0 -(1,10075:3078558,49800853:0,16384,2228224 -k1,10075:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,10075:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,10075:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,10075:3078558,4812305:0,0,0 -(1,10075:3078558,49800853:0,16384,2228224 -g1,10075:29030814,49800853 -g1,10075:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,10075:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,10075:37855564,49800853:1179648,16384,0 -) -) -k1,10075:3078556,49800853:-34777008 -) -] -g1,10075:6630773,4812305 -k1,10075:24502442,4812305:16676292 -g1,10075:25889183,4812305 -g1,10075:26537989,4812305 -g1,10075:29852144,4812305 -) -) -] -[1,10075:6630773,45706769:25952256,40108032,0 -(1,10075:6630773,45706769:25952256,40108032,0 -(1,10075:6630773,45706769:0,0,0 -g1,10075:6630773,45706769 -) -[1,10075:6630773,45706769:25952256,40108032,0 -(1,10047:6630773,23766069:25952256,18167332,0 -k1,10047:10523651,23766069:3892878 -h1,10046:10523651,23766069:0,0,0 -(1,10046:10523651,23766069:18166500,18167332,0 -(1,10046:10523651,23766069:18167376,18167376,0 -(1,10046:10523651,23766069:18167376,18167376,0 -(1,10046:10523651,23766069:0,18167376,0 -(1,10046:10523651,23766069:0,28417720,0 -(1,10046:10523651,23766069:28417720,28417720,0 -) -k1,10046:10523651,23766069:-28417720 -) -) -g1,10046:28691027,23766069 -) -) -) -g1,10047:28690151,23766069 -k1,10047:32583029,23766069:3892878 -) -(1,10056:6630773,24607557:25952256,513147,134348 -h1,10055:6630773,24607557:983040,0,0 -k1,10055:10194858,24607557:183083 -(1,10055:10194858,24607557:0,452978,115847 -r1,10075:12311683,24607557:2116825,568825,115847 -k1,10055:10194858,24607557:-2116825 -) -(1,10055:10194858,24607557:2116825,452978,115847 -k1,10055:10194858,24607557:3277 -h1,10055:12308406,24607557:0,411205,112570 -) -k1,10055:12494765,24607557:183082 -k1,10055:15740345,24607557:183083 -k1,10055:16279287,24607557:183082 -k1,10055:17507014,24607557:183083 -k1,10055:18967393,24607557:183082 -k1,10055:19809768,24607557:183083 -k1,10055:22977360,24607557:183082 -k1,10055:27784008,24607557:183083 -k1,10055:28618518,24607557:183082 -k1,10055:29820686,24607557:183083 -k1,10055:32583029,24607557:0 -) -(1,10056:6630773,25449045:25952256,426639,126483 -k1,10056:32583028,25449045:21851012 -g1,10056:32583028,25449045 -) -v1,10058:6630773,26590827:0,393216,0 -(1,10062:6630773,26899632:25952256,702021,196608 -g1,10062:6630773,26899632 -g1,10062:6630773,26899632 -g1,10062:6434165,26899632 -(1,10062:6434165,26899632:0,702021,196608 -r1,10075:32779637,26899632:26345472,898629,196608 -k1,10062:6434165,26899632:-26345472 -) -(1,10062:6434165,26899632:26345472,702021,196608 -[1,10062:6630773,26899632:25952256,505413,0 -(1,10060:6630773,26798445:25952256,404226,101187 -(1,10059:6630773,26798445:0,0,0 -g1,10059:6630773,26798445 -g1,10059:6630773,26798445 -g1,10059:6303093,26798445 -(1,10059:6303093,26798445:0,0,0 -) -g1,10059:6630773,26798445 -) -k1,10060:6630773,26798445:0 -h1,10060:9159939,26798445:0,0,0 -k1,10060:32583029,26798445:23423090 -g1,10060:32583029,26798445 -) -] -) -g1,10062:32583029,26899632 -g1,10062:6630773,26899632 -g1,10062:6630773,26899632 -g1,10062:32583029,26899632 -g1,10062:32583029,26899632 -) -h1,10062:6630773,27096240:0,0,0 -(1,10065:6630773,38147869:25952256,10510489,0 -k1,10065:12599879,38147869:5969106 -h1,10064:12599879,38147869:0,0,0 -(1,10064:12599879,38147869:14014044,10510489,0 -(1,10064:12599879,38147869:14014019,10510515,0 -(1,10064:12599879,38147869:14014019,10510515,0 -(1,10064:12599879,38147869:0,10510515,0 -(1,10064:12599879,38147869:0,14208860,0 -(1,10064:12599879,38147869:18945146,14208860,0 -) -k1,10064:12599879,38147869:-18945146 -) -) -g1,10064:26613898,38147869 -) -) -) -g1,10065:26613923,38147869 -k1,10065:32583029,38147869:5969106 -) -(1,10072:6630773,38989357:25952256,513147,134348 -h1,10071:6630773,38989357:983040,0,0 -k1,10071:10383823,38989357:238354 -k1,10071:12272374,38989357:238354 -k1,10071:15462470,38989357:238354 -k1,10071:17308422,38989357:238354 -k1,10071:18206069,38989357:238355 -k1,10071:19463508,38989357:238354 -k1,10071:22543503,38989357:238354 -k1,10071:26709430,38989357:238354 -k1,10071:28139229,38989357:238354 -k1,10071:29886222,38989357:238354 -k1,10071:32583029,38989357:0 -) -(1,10072:6630773,39830845:25952256,505283,134348 -k1,10071:8007630,39830845:272575 -k1,10071:9027971,39830845:272575 -k1,10071:12092380,39830845:272575 -k1,10071:14100348,39830845:272575 -k1,10071:16953075,39830845:272575 -k1,10071:19639341,39830845:272576 -k1,10071:23001939,39830845:272575 -k1,10071:23890552,39830845:272575 -k1,10071:26580750,39830845:272575 -h1,10071:26979209,39830845:0,0,0 -k1,10071:27251784,39830845:272575 -k1,10071:30002931,39830845:272575 -k1,10071:31084876,39830845:272575 -k1,10071:32583029,39830845:0 -) -(1,10072:6630773,40672333:25952256,513147,134348 -h1,10071:7826150,40672333:0,0,0 -k1,10071:8281272,40672333:281452 -k1,10071:11097657,40672333:281452 -k1,10071:14471097,40672333:281452 -k1,10071:17235052,40672333:281451 -k1,10071:19930194,40672333:281452 -k1,10071:20936474,40672333:281452 -k1,10071:21904088,40672333:281452 -k1,10071:22836968,40672333:281452 -k1,10071:24834153,40672333:281452 -k1,10071:25573701,40672333:281451 -k1,10071:27249759,40672333:281452 -k1,10071:28182639,40672333:281452 -k1,10071:29741388,40672333:281452 -k1,10071:32583029,40672333:0 -) -(1,10072:6630773,41513821:25952256,505283,134348 -g1,10071:10757575,41513821 -g1,10071:12148249,41513821 -g1,10071:13856117,41513821 -k1,10072:32583029,41513821:15856435 -g1,10072:32583029,41513821 -) -v1,10074:6630773,42830913:0,393216,0 -(1,10075:6630773,45116945:25952256,2679248,589824 -g1,10075:6630773,45116945 -(1,10075:6630773,45116945:25952256,2679248,589824 -(1,10075:6630773,45706769:25952256,3269072,0 -[1,10075:6630773,45706769:25952256,3269072,0 -(1,10075:6630773,45706769:25952256,3242858,0 -r1,10075:6656987,45706769:26214,3242858,0 -[1,10075:6656987,45706769:25899828,3242858,0 -(1,10075:6656987,45116945:25899828,2063210,0 -[1,10075:7246811,45116945:24720180,2063210,0 -(1,10075:7246811,44141109:24720180,1087374,134348 -k1,10074:8668270,44141109:211756 -k1,10074:9922048,44141109:211756 -k1,10074:12383655,44141109:211756 -k1,10074:13786856,44141109:211756 -k1,10074:18601206,44141109:211756 -k1,10074:20375995,44141109:211755 -k1,10074:20943611,44141109:211756 -k1,10074:27179436,44141109:211756 -k1,10074:28495474,44141109:211756 -k1,10074:29454996,44141109:211756 -k1,10074:31966991,44141109:0 -) -(1,10075:7246811,44982597:24720180,513147,134348 -k1,10074:9164216,44982597:222644 -k1,10074:10671365,44982597:222643 -k1,10074:13548217,44982597:222644 -k1,10074:14302357,44982597:222643 -k1,10074:17829982,44982597:222644 -k1,10074:22088332,44982597:222643 -k1,10074:22962404,44982597:222644 -k1,10074:24204132,44982597:222643 -k1,10074:27832682,44982597:222644 -k1,10074:28714617,44982597:222643 -k1,10074:29956346,44982597:222644 -k1,10074:31966991,44982597:0 -) -] -) -] -r1,10075:32583029,45706769:26214,3242858,0 -) -] -) -) -g1,10075:32583029,45116945 -) -] -(1,10075:32583029,45706769:0,0,0 -g1,10075:32583029,45706769 -) -) -] -(1,10075:6630773,47279633:25952256,0,0 -h1,10075:6630773,47279633:25952256,0,0 -) -] -(1,10075:4262630,4025873:0,0,0 -[1,10075:-473656,4025873:0,0,0 -(1,10075:-473656,-710413:0,0,0 -(1,10075:-473656,-710413:0,0,0 -g1,10075:-473656,-710413 -) -g1,10075:-473656,-710413 -) -] -) -] -!9455 -}187 -Input:1455:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1456:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1457:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1458:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1459:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1460:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!563 -{188 -[1,10152:4262630,47279633:28320399,43253760,0 -(1,10152:4262630,4025873:0,0,0 -[1,10152:-473656,4025873:0,0,0 -(1,10152:-473656,-710413:0,0,0 -(1,10152:-473656,-644877:0,0,0 -k1,10152:-473656,-644877:-65536 -) -(1,10152:-473656,4736287:0,0,0 -k1,10152:-473656,4736287:5209943 -) -g1,10152:-473656,-710413 -) -] -) -[1,10152:6630773,47279633:25952256,43253760,0 -[1,10152:6630773,4812305:25952256,786432,0 -(1,10152:6630773,4812305:25952256,505283,11795 -(1,10152:6630773,4812305:25952256,505283,11795 -g1,10152:3078558,4812305 -[1,10152:3078558,4812305:0,0,0 -(1,10152:3078558,2439708:0,1703936,0 -k1,10152:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,10152:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,10152:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,10152:3078558,4812305:0,0,0 -(1,10152:3078558,2439708:0,1703936,0 -g1,10152:29030814,2439708 -g1,10152:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,10152:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,10152:37855564,2439708:1179648,16384,0 -) -) -k1,10152:3078556,2439708:-34777008 -) -] -[1,10152:3078558,4812305:0,0,0 -(1,10152:3078558,49800853:0,16384,2228224 -k1,10152:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,10152:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,10152:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,10152:3078558,4812305:0,0,0 -(1,10152:3078558,49800853:0,16384,2228224 -g1,10152:29030814,49800853 -g1,10152:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,10152:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,10152:37855564,49800853:1179648,16384,0 -) -) -k1,10152:3078556,49800853:-34777008 -) -] -g1,10152:6630773,4812305 -g1,10152:6630773,4812305 -g1,10152:10653372,4812305 -g1,10152:13512052,4812305 -k1,10152:31387652,4812305:17875600 -) -) -] -[1,10152:6630773,45706769:25952256,40108032,0 -(1,10152:6630773,45706769:25952256,40108032,0 -(1,10152:6630773,45706769:0,0,0 -g1,10152:6630773,45706769 -) -[1,10152:6630773,45706769:25952256,40108032,0 -v1,10075:6630773,6254097:0,393216,0 -(1,10075:6630773,8773312:25952256,2912431,616038 -g1,10075:6630773,8773312 -(1,10075:6630773,8773312:25952256,2912431,616038 -(1,10075:6630773,9389350:25952256,3528469,0 -[1,10075:6630773,9389350:25952256,3528469,0 -(1,10075:6630773,9363136:25952256,3502255,0 -r1,10152:6656987,9363136:26214,3502255,0 -[1,10075:6656987,9363136:25899828,3502255,0 -(1,10075:6656987,8773312:25899828,2322607,0 -[1,10075:7246811,8773312:24720180,2322607,0 -(1,10075:7246811,6955988:24720180,505283,134348 -k1,10074:10807437,6955988:262199 -k1,10074:12023184,6955988:262198 -k1,10074:13898224,6955988:262199 -k1,10074:14846585,6955988:262199 -k1,10074:15879486,6955988:262198 -k1,10074:18702177,6955988:262199 -k1,10074:19615804,6955988:262199 -k1,10074:21894545,6955988:262198 -k1,10074:23175829,6955988:262199 -k1,10074:25293352,6955988:262199 -k1,10074:28110143,6955988:262198 -k1,10074:30107735,6955988:262199 -k1,10075:31966991,6955988:0 -) -(1,10075:7246811,7797476:24720180,513147,126483 -k1,10074:9839633,7797476:257119 -k1,10074:12107398,7797476:257120 -k1,10074:13312168,7797476:257119 -k1,10074:14588373,7797476:257120 -k1,10074:18520751,7797476:257119 -k1,10074:19437163,7797476:257120 -k1,10074:21610555,7797476:257119 -k1,10074:23059119,7797476:257119 -k1,10074:25479582,7797476:257120 -k1,10074:27157522,7797476:257119 -k1,10074:29197877,7797476:257120 -k1,10074:30947906,7797476:257119 -k1,10074:31966991,7797476:0 -) -(1,10075:7246811,8638964:24720180,513147,134348 -g1,10074:8538525,8638964 -g1,10074:9397046,8638964 -g1,10074:14763789,8638964 -g1,10074:17203694,8638964 -g1,10074:18422008,8638964 -g1,10074:21382924,8638964 -g1,10074:22241445,8638964 -g1,10074:23459759,8638964 -k1,10075:31966991,8638964:5625614 -g1,10075:31966991,8638964 -) -] -) -] -r1,10152:32583029,9363136:26214,3502255,0 -) -] -) -) -g1,10075:32583029,8773312 -) -h1,10075:6630773,9389350:0,0,0 -v1,10078:6630773,10604159:0,393216,0 -(1,10087:6630773,15172618:25952256,4961675,616038 -g1,10087:6630773,15172618 -(1,10087:6630773,15172618:25952256,4961675,616038 -(1,10087:6630773,15788656:25952256,5577713,0 -[1,10087:6630773,15788656:25952256,5577713,0 -(1,10087:6630773,15762442:25952256,5525285,0 -r1,10152:6656987,15762442:26214,5525285,0 -[1,10087:6656987,15762442:25899828,5525285,0 -(1,10087:6656987,15172618:25899828,4345637,0 -[1,10087:7246811,15172618:24720180,4345637,0 -(1,10079:7246811,12110963:24720180,1283982,196608 -(1,10078:7246811,12110963:0,1283982,196608 -r1,10152:9812056,12110963:2565245,1480590,196608 -k1,10078:7246811,12110963:-2565245 -) -(1,10078:7246811,12110963:2565245,1283982,196608 -) -k1,10078:10034663,12110963:222607 -k1,10078:11075159,12110963:222607 -k1,10078:12245418,12110963:222608 -k1,10078:14169995,12110963:222607 -k1,10078:16105058,12110963:222607 -k1,10078:18819344,12110963:222607 -k1,10078:20061036,12110963:222607 -k1,10078:22243169,12110963:222607 -k1,10078:25244504,12110963:222608 -k1,10078:26228639,12110963:222607 -k1,10078:29146742,12110963:222607 -(1,10078:29146742,12110963:0,452978,115847 -r1,10152:31966991,12110963:2820249,568825,115847 -k1,10078:29146742,12110963:-2820249 -) -(1,10078:29146742,12110963:2820249,452978,115847 -k1,10078:29146742,12110963:3277 -h1,10078:31963714,12110963:0,411205,112570 -) -k1,10078:31966991,12110963:0 -) -(1,10079:7246811,12952451:24720180,505283,126483 -g1,10078:7977537,12952451 -g1,10078:8532626,12952451 -g1,10078:9725381,12952451 -g1,10078:11318561,12952451 -g1,10078:14189037,12952451 -k1,10079:31966991,12952451:13676711 -g1,10079:31966991,12952451 -) -v1,10081:7246811,14142917:0,393216,0 -(1,10085:7246811,14451722:24720180,702021,196608 -g1,10085:7246811,14451722 -g1,10085:7246811,14451722 -g1,10085:7050203,14451722 -(1,10085:7050203,14451722:0,702021,196608 -r1,10152:32163599,14451722:25113396,898629,196608 -k1,10085:7050203,14451722:-25113396 -) -(1,10085:7050203,14451722:25113396,702021,196608 -[1,10085:7246811,14451722:24720180,505413,0 -(1,10083:7246811,14350535:24720180,404226,101187 -(1,10082:7246811,14350535:0,0,0 -g1,10082:7246811,14350535 -g1,10082:7246811,14350535 -g1,10082:6919131,14350535 -(1,10082:6919131,14350535:0,0,0 -) -g1,10082:7246811,14350535 -) -k1,10083:7246811,14350535:0 -g1,10083:9775977,14350535 -g1,10083:12937434,14350535 -g1,10083:13569726,14350535 -h1,10083:14202018,14350535:0,0,0 -k1,10083:31966990,14350535:17764972 -g1,10083:31966990,14350535 -) -] -) -g1,10085:31966991,14451722 -g1,10085:7246811,14451722 -g1,10085:7246811,14451722 -g1,10085:31966991,14451722 -g1,10085:31966991,14451722 -) -h1,10085:7246811,14648330:0,0,0 -] -) -] -r1,10152:32583029,15762442:26214,5525285,0 -) -] -) -) -g1,10087:32583029,15172618 -) -h1,10087:6630773,15788656:0,0,0 -(1,10091:6630773,18253238:25952256,555811,147783 -(1,10091:6630773,18253238:2899444,534184,12975 -g1,10091:6630773,18253238 -g1,10091:9530217,18253238 -) -g1,10091:16068744,18253238 -k1,10091:32583029,18253238:13973847 -g1,10091:32583029,18253238 -) -(1,10096:6630773,19487942:25952256,513147,134348 -k1,10094:7976083,19487942:148623 -k1,10094:9301733,19487942:148623 -k1,10094:10109648,19487942:148623 -k1,10094:15862255,19487942:148623 -k1,10094:18225996,19487942:148624 -k1,10094:20210887,19487942:148572 -k1,10094:20891008,19487942:148624 -k1,10094:21691059,19487942:148623 -k1,10094:24642657,19487942:148623 -k1,10094:25407318,19487942:148623 -k1,10094:26457666,19487942:148573 -k1,10094:28394111,19487942:148623 -k1,10094:29561819,19487942:148623 -k1,10094:32583029,19487942:0 -) -(1,10096:6630773,20329430:25952256,513147,126483 -k1,10094:9461273,20329430:195297 -k1,10094:11253027,20329430:195297 -k1,10094:12107616,20329430:195297 -k1,10094:16548335,20329430:195297 -k1,10094:17940319,20329430:195297 -k1,10094:20146261,20329430:195297 -k1,10094:21289210,20329430:195298 -k1,10094:22503592,20329430:195297 -k1,10094:25585095,20329430:195297 -k1,10094:29036221,20329430:195297 -k1,10094:30223078,20329430:195297 -k1,10094:31931601,20329430:195297 -k1,10094:32583029,20329430:0 -) -(1,10096:6630773,21170918:25952256,513147,134348 -k1,10094:9555696,21170918:137021 -k1,10094:10048576,21170918:137020 -k1,10094:12889612,21170918:137021 -k1,10094:13685925,21170918:137021 -k1,10094:16483707,21170918:137020 -k1,10094:18780139,21170918:137021 -k1,10094:20513617,21170918:137021 -k1,10094:21309930,21170918:137021 -k1,10094:25692372,21170918:137020 -k1,10094:27026080,21170918:137021 -k1,10094:29241248,21170918:137021 -k1,10094:30037560,21170918:137020 -k1,10094:31193666,21170918:137021 -k1,10094:32583029,21170918:0 -) -(1,10096:6630773,22012406:25952256,513147,11795 -k1,10094:7999772,22012406:236537 -k1,10094:11144798,22012406:236538 -k1,10094:12929951,22012406:236537 -k1,10094:15827250,22012406:236537 -k1,10094:18111133,22012406:236538 -k1,10094:18879167,22012406:236537 -k1,10094:20717404,22012406:236537 -k1,10094:24829741,22012406:236538 -k1,10095:26108300,22012406:236537 -k1,10095:27766931,22012406:236500 -k1,10095:28871820,22012406:236537 -k1,10095:30596681,22012406:236538 -k1,10095:32227169,22012406:236537 -k1,10095:32583029,22012406:0 -) -(1,10096:6630773,22853894:25952256,513147,134348 -k1,10095:8888816,22853894:170721 -k1,10095:9718829,22853894:170721 -k1,10095:12880614,22853894:170722 -k1,10095:15210746,22853894:170721 -k1,10095:19626889,22853894:170721 -k1,10095:20751159,22853894:170721 -k1,10095:22054343,22853894:170722 -k1,10095:23491220,22853894:170721 -k1,10095:24609592,22853894:170721 -k1,10095:25799398,22853894:170721 -k1,10095:28805207,22853894:170722 -k1,10095:31966991,22853894:170721 -k1,10095:32583029,22853894:0 -) -(1,10096:6630773,23695382:25952256,513147,134348 -g1,10095:10213626,23695382 -g1,10095:13048058,23695382 -g1,10095:16752152,23695382 -g1,10095:19838242,23695382 -g1,10095:20653509,23695382 -g1,10095:23089482,23695382 -g1,10095:24856332,23695382 -g1,10095:26444924,23695382 -g1,10095:27578696,23695382 -(1,10095:27578696,23695382:0,452978,115847 -r1,10152:30398945,23695382:2820249,568825,115847 -k1,10095:27578696,23695382:-2820249 -) -(1,10095:27578696,23695382:2820249,452978,115847 -k1,10095:27578696,23695382:3277 -h1,10095:30395668,23695382:0,411205,112570 -) -k1,10096:32583029,23695382:2010414 -g1,10096:32583029,23695382 -) -v1,10098:6630773,24734881:0,393216,0 -(1,10102:6630773,25018520:25952256,676855,196608 -g1,10102:6630773,25018520 -g1,10102:6630773,25018520 -g1,10102:6434165,25018520 -(1,10102:6434165,25018520:0,676855,196608 -r1,10152:32779637,25018520:26345472,873463,196608 -k1,10102:6434165,25018520:-26345472 -) -(1,10102:6434165,25018520:26345472,676855,196608 -[1,10102:6630773,25018520:25952256,480247,0 -(1,10100:6630773,24942499:25952256,404226,76021 -(1,10099:6630773,24942499:0,0,0 -g1,10099:6630773,24942499 -g1,10099:6630773,24942499 -g1,10099:6303093,24942499 -(1,10099:6303093,24942499:0,0,0 -) -g1,10099:6630773,24942499 -) -g1,10100:7895356,24942499 -g1,10100:8843794,24942499 -k1,10100:8843794,24942499:0 -h1,10100:14534416,24942499:0,0,0 -k1,10100:32583028,24942499:18048612 -g1,10100:32583028,24942499 -) -] -) -g1,10102:32583029,25018520 -g1,10102:6630773,25018520 -g1,10102:6630773,25018520 -g1,10102:32583029,25018520 -g1,10102:32583029,25018520 -) -h1,10102:6630773,25215128:0,0,0 -(1,10106:6630773,26429938:25952256,513147,134348 -h1,10105:6630773,26429938:983040,0,0 -k1,10105:8777363,26429938:210001 -k1,10105:10091646,26429938:210001 -k1,10105:11326629,26429938:210000 -k1,10105:12821136,26429938:210001 -k1,10105:14050222,26429938:210001 -k1,10105:17038950,26429938:210001 -k1,10105:19208476,26429938:210000 -(1,10105:19208476,26429938:0,452978,115847 -r1,10152:20270165,26429938:1061689,568825,115847 -k1,10105:19208476,26429938:-1061689 -) -(1,10105:19208476,26429938:1061689,452978,115847 -k1,10105:19208476,26429938:3277 -h1,10105:20266888,26429938:0,411205,112570 -) -k1,10105:20480166,26429938:210001 -k1,10105:21221664,26429938:210001 -k1,10105:21787525,26429938:210001 -(1,10105:21787525,26429938:0,452978,115847 -r1,10152:23904350,26429938:2116825,568825,115847 -k1,10105:21787525,26429938:-2116825 -) -(1,10105:21787525,26429938:2116825,452978,115847 -k1,10105:21787525,26429938:3277 -h1,10105:23901073,26429938:0,411205,112570 -) -k1,10105:24288020,26429938:210000 -k1,10105:25891972,26429938:210001 -k1,10105:28170289,26429938:210001 -k1,10105:29327941,26429938:210001 -k1,10105:30694651,26429938:210000 -k1,10105:31563944,26429938:210001 -k1,10105:32583029,26429938:0 -) -(1,10106:6630773,27271426:25952256,505283,7863 -k1,10106:32583030,27271426:22103328 -g1,10106:32583030,27271426 -) -v1,10108:6630773,28310925:0,393216,0 -(1,10148:6630773,45510161:25952256,17592452,196608 -g1,10148:6630773,45510161 -g1,10148:6630773,45510161 -g1,10148:6434165,45510161 -(1,10148:6434165,45510161:0,17592452,196608 -r1,10152:32779637,45510161:26345472,17789060,196608 -k1,10148:6434165,45510161:-26345472 -) -(1,10148:6434165,45510161:26345472,17592452,196608 -[1,10148:6630773,45510161:25952256,17395844,0 -(1,10110:6630773,28518543:25952256,404226,76021 -(1,10109:6630773,28518543:0,0,0 -g1,10109:6630773,28518543 -g1,10109:6630773,28518543 -g1,10109:6303093,28518543 -(1,10109:6303093,28518543:0,0,0 -) -g1,10109:6630773,28518543 -) -k1,10110:6630773,28518543:0 -h1,10110:9792229,28518543:0,0,0 -k1,10110:32583029,28518543:22790800 -g1,10110:32583029,28518543 -) -(1,10114:6630773,29250257:25952256,404226,101187 -(1,10112:6630773,29250257:0,0,0 -g1,10112:6630773,29250257 -g1,10112:6630773,29250257 -g1,10112:6303093,29250257 -(1,10112:6303093,29250257:0,0,0 -) -g1,10112:6630773,29250257 -) -g1,10114:7579210,29250257 -g1,10114:8843793,29250257 -g1,10114:11689104,29250257 -h1,10114:13902124,29250257:0,0,0 -k1,10114:32583028,29250257:18680904 -g1,10114:32583028,29250257 -) -(1,10116:6630773,30571795:25952256,404226,76021 -(1,10115:6630773,30571795:0,0,0 -g1,10115:6630773,30571795 -g1,10115:6630773,30571795 -g1,10115:6303093,30571795 -(1,10115:6303093,30571795:0,0,0 -) -g1,10115:6630773,30571795 -) -k1,10116:6630773,30571795:0 -h1,10116:9159938,30571795:0,0,0 -k1,10116:32583030,30571795:23423092 -g1,10116:32583030,30571795 -) -(1,10120:6630773,31303509:25952256,404226,76021 -(1,10118:6630773,31303509:0,0,0 -g1,10118:6630773,31303509 -g1,10118:6630773,31303509 -g1,10118:6303093,31303509 -(1,10118:6303093,31303509:0,0,0 -) -g1,10118:6630773,31303509 -) -g1,10120:7579210,31303509 -g1,10120:8843793,31303509 -g1,10120:9792230,31303509 -g1,10120:10108376,31303509 -h1,10120:10424522,31303509:0,0,0 -k1,10120:32583030,31303509:22158508 -g1,10120:32583030,31303509 -) -(1,10122:6630773,32625047:25952256,404226,76021 -(1,10121:6630773,32625047:0,0,0 -g1,10121:6630773,32625047 -g1,10121:6630773,32625047 -g1,10121:6303093,32625047 -(1,10121:6303093,32625047:0,0,0 -) -g1,10121:6630773,32625047 -) -k1,10122:6630773,32625047:0 -h1,10122:10740666,32625047:0,0,0 -k1,10122:32583030,32625047:21842364 -g1,10122:32583030,32625047 -) -(1,10135:6630773,33356761:25952256,404226,76021 -(1,10124:6630773,33356761:0,0,0 -g1,10124:6630773,33356761 -g1,10124:6630773,33356761 -g1,10124:6303093,33356761 -(1,10124:6303093,33356761:0,0,0 -) -g1,10124:6630773,33356761 -) -g1,10135:7579210,33356761 -h1,10135:9159938,33356761:0,0,0 -k1,10135:32583030,33356761:23423092 -g1,10135:32583030,33356761 -) -(1,10135:6630773,34022939:25952256,404226,76021 -h1,10135:6630773,34022939:0,0,0 -g1,10135:7579210,34022939 -g1,10135:7895356,34022939 -g1,10135:9159939,34022939 -g1,10135:12005250,34022939 -g1,10135:12321396,34022939 -g1,10135:12637542,34022939 -g1,10135:12953688,34022939 -g1,10135:13269834,34022939 -g1,10135:13585980,34022939 -g1,10135:13902126,34022939 -g1,10135:14218272,34022939 -g1,10135:14534418,34022939 -g1,10135:14850564,34022939 -g1,10135:18644312,34022939 -g1,10135:18960458,34022939 -g1,10135:19276604,34022939 -g1,10135:19592750,34022939 -g1,10135:19908896,34022939 -g1,10135:20225042,34022939 -g1,10135:20541188,34022939 -g1,10135:24018791,34022939 -g1,10135:24334937,34022939 -g1,10135:24651083,34022939 -g1,10135:24967229,34022939 -g1,10135:25283375,34022939 -g1,10135:25599521,34022939 -g1,10135:25915667,34022939 -g1,10135:26231813,34022939 -h1,10135:28760978,34022939:0,0,0 -k1,10135:32583029,34022939:3822051 -g1,10135:32583029,34022939 -) -(1,10135:6630773,34689117:25952256,404226,107478 -h1,10135:6630773,34689117:0,0,0 -g1,10135:7579210,34689117 -g1,10135:7895356,34689117 -g1,10135:9159939,34689117 -g1,10135:12953687,34689117 -g1,10135:13269833,34689117 -g1,10135:13585979,34689117 -g1,10135:13902125,34689117 -g1,10135:14218271,34689117 -g1,10135:14534417,34689117 -g1,10135:14850563,34689117 -g1,10135:18012020,34689117 -g1,10135:18328166,34689117 -g1,10135:18644312,34689117 -g1,10135:18960458,34689117 -g1,10135:19276604,34689117 -g1,10135:19592750,34689117 -g1,10135:19908896,34689117 -g1,10135:20225042,34689117 -g1,10135:20541188,34689117 -g1,10135:24651082,34689117 -g1,10135:24967228,34689117 -g1,10135:25283374,34689117 -g1,10135:25599520,34689117 -g1,10135:25915666,34689117 -g1,10135:26231812,34689117 -h1,10135:28760977,34689117:0,0,0 -k1,10135:32583029,34689117:3822052 -g1,10135:32583029,34689117 -) -(1,10135:6630773,35355295:25952256,410518,107478 -h1,10135:6630773,35355295:0,0,0 -g1,10135:7579210,35355295 -g1,10135:7895356,35355295 -g1,10135:9159939,35355295 -g1,10135:12953687,35355295 -g1,10135:13269833,35355295 -g1,10135:13585979,35355295 -g1,10135:13902125,35355295 -g1,10135:14218271,35355295 -g1,10135:14534417,35355295 -g1,10135:14850563,35355295 -g1,10135:18012020,35355295 -g1,10135:18328166,35355295 -g1,10135:18644312,35355295 -g1,10135:18960458,35355295 -g1,10135:19276604,35355295 -g1,10135:19592750,35355295 -g1,10135:19908896,35355295 -g1,10135:20225042,35355295 -g1,10135:20541188,35355295 -g1,10135:22438062,35355295 -g1,10135:23386499,35355295 -g1,10135:26231810,35355295 -h1,10135:28760975,35355295:0,0,0 -k1,10135:32583029,35355295:3822054 -g1,10135:32583029,35355295 -) -(1,10135:6630773,36021473:25952256,404226,101187 -h1,10135:6630773,36021473:0,0,0 -g1,10135:7579210,36021473 -g1,10135:9159939,36021473 -g1,10135:11689105,36021473 -g1,10135:12005251,36021473 -g1,10135:12321397,36021473 -g1,10135:12637543,36021473 -g1,10135:12953689,36021473 -g1,10135:13269835,36021473 -g1,10135:13585981,36021473 -g1,10135:13902127,36021473 -g1,10135:14218273,36021473 -g1,10135:14534419,36021473 -g1,10135:14850565,36021473 -g1,10135:17695876,36021473 -g1,10135:18012022,36021473 -g1,10135:18328168,36021473 -g1,10135:18644314,36021473 -g1,10135:18960460,36021473 -g1,10135:19276606,36021473 -g1,10135:19592752,36021473 -g1,10135:19908898,36021473 -g1,10135:20225044,36021473 -g1,10135:20541190,36021473 -g1,10135:24651084,36021473 -g1,10135:24967230,36021473 -g1,10135:25283376,36021473 -g1,10135:25599522,36021473 -g1,10135:25915668,36021473 -g1,10135:26231814,36021473 -h1,10135:28444834,36021473:0,0,0 -k1,10135:32583029,36021473:4138195 -g1,10135:32583029,36021473 -) -(1,10135:6630773,36687651:25952256,404226,76021 -h1,10135:6630773,36687651:0,0,0 -g1,10135:7579210,36687651 -g1,10135:9159939,36687651 -g1,10135:12005250,36687651 -g1,10135:12321396,36687651 -g1,10135:12637542,36687651 -g1,10135:12953688,36687651 -g1,10135:13269834,36687651 -g1,10135:13585980,36687651 -g1,10135:13902126,36687651 -g1,10135:14218272,36687651 -g1,10135:14534418,36687651 -g1,10135:14850564,36687651 -g1,10135:17379730,36687651 -g1,10135:17695876,36687651 -g1,10135:18012022,36687651 -g1,10135:18328168,36687651 -g1,10135:18644314,36687651 -g1,10135:18960460,36687651 -g1,10135:19276606,36687651 -g1,10135:19592752,36687651 -g1,10135:19908898,36687651 -g1,10135:20225044,36687651 -g1,10135:20541190,36687651 -g1,10135:22754210,36687651 -g1,10135:23070356,36687651 -g1,10135:23386502,36687651 -g1,10135:23702648,36687651 -g1,10135:24018794,36687651 -g1,10135:24334940,36687651 -g1,10135:24651086,36687651 -g1,10135:24967232,36687651 -g1,10135:25283378,36687651 -g1,10135:25599524,36687651 -g1,10135:25915670,36687651 -g1,10135:26231816,36687651 -h1,10135:29709418,36687651:0,0,0 -k1,10135:32583029,36687651:2873611 -g1,10135:32583029,36687651 -) -(1,10135:6630773,37353829:25952256,404226,76021 -h1,10135:6630773,37353829:0,0,0 -g1,10135:7579210,37353829 -g1,10135:9159939,37353829 -h1,10135:11689104,37353829:0,0,0 -k1,10135:32583028,37353829:20893924 -g1,10135:32583028,37353829 -) -(1,10135:6630773,38020007:25952256,379060,0 -h1,10135:6630773,38020007:0,0,0 -h1,10135:7263064,38020007:0,0,0 -k1,10135:32583028,38020007:25319964 -g1,10135:32583028,38020007 -) -(1,10135:6630773,38686185:25952256,404226,76021 -h1,10135:6630773,38686185:0,0,0 -g1,10135:7579210,38686185 -h1,10135:9159938,38686185:0,0,0 -k1,10135:32583030,38686185:23423092 -g1,10135:32583030,38686185 -) -(1,10135:6630773,39352363:25952256,379060,7863 -h1,10135:6630773,39352363:0,0,0 -g1,10135:7579210,39352363 -h1,10135:8843793,39352363:0,0,0 -k1,10135:32583029,39352363:23739236 -g1,10135:32583029,39352363 -) -(1,10137:6630773,40673901:25952256,404226,76021 -(1,10136:6630773,40673901:0,0,0 -g1,10136:6630773,40673901 -g1,10136:6630773,40673901 -g1,10136:6303093,40673901 -(1,10136:6303093,40673901:0,0,0 -) -g1,10136:6630773,40673901 -) -k1,10137:6630773,40673901:0 -h1,10137:9476084,40673901:0,0,0 -k1,10137:32583028,40673901:23106944 -g1,10137:32583028,40673901 -) -(1,10147:6630773,41405615:25952256,404226,82312 -(1,10139:6630773,41405615:0,0,0 -g1,10139:6630773,41405615 -g1,10139:6630773,41405615 -g1,10139:6303093,41405615 -(1,10139:6303093,41405615:0,0,0 -) -g1,10139:6630773,41405615 -) -g1,10147:7579210,41405615 -g1,10147:7895356,41405615 -g1,10147:8211502,41405615 -g1,10147:8527648,41405615 -g1,10147:8843794,41405615 -g1,10147:9159940,41405615 -g1,10147:9476086,41405615 -g1,10147:9792232,41405615 -g1,10147:10108378,41405615 -g1,10147:10424524,41405615 -g1,10147:10740670,41405615 -g1,10147:11056816,41405615 -g1,10147:11372962,41405615 -g1,10147:11689108,41405615 -g1,10147:12005254,41405615 -g1,10147:12321400,41405615 -g1,10147:12637546,41405615 -g1,10147:14218275,41405615 -g1,10147:14534421,41405615 -g1,10147:14850567,41405615 -g1,10147:15166713,41405615 -g1,10147:15482859,41405615 -g1,10147:15799005,41405615 -k1,10147:15799005,41405615:0 -h1,10147:17063588,41405615:0,0,0 -k1,10147:32583029,41405615:15519441 -g1,10147:32583029,41405615 -) -(1,10147:6630773,42071793:25952256,404226,9436 -h1,10147:6630773,42071793:0,0,0 -g1,10147:7579210,42071793 -g1,10147:9792230,42071793 -g1,10147:10108376,42071793 -g1,10147:10424522,42071793 -g1,10147:10740668,42071793 -g1,10147:14218271,42071793 -h1,10147:17063582,42071793:0,0,0 -k1,10147:32583029,42071793:15519447 -g1,10147:32583029,42071793 -) -(1,10147:6630773,42737971:25952256,404226,9436 -h1,10147:6630773,42737971:0,0,0 -g1,10147:7579210,42737971 -g1,10147:10740667,42737971 -g1,10147:14218270,42737971 -g1,10147:14534416,42737971 -h1,10147:17063581,42737971:0,0,0 -k1,10147:32583029,42737971:15519448 -g1,10147:32583029,42737971 -) -(1,10147:6630773,43404149:25952256,404226,9436 -h1,10147:6630773,43404149:0,0,0 -g1,10147:7579210,43404149 -g1,10147:10424521,43404149 -g1,10147:10740667,43404149 -g1,10147:11056813,43404149 -g1,10147:11372959,43404149 -g1,10147:14218270,43404149 -k1,10147:14218270,43404149:0 -h1,10147:17063581,43404149:0,0,0 -k1,10147:32583029,43404149:15519448 -g1,10147:32583029,43404149 -) -(1,10147:6630773,44070327:25952256,404226,9436 -h1,10147:6630773,44070327:0,0,0 -g1,10147:7579210,44070327 -g1,10147:9792230,44070327 -g1,10147:10108376,44070327 -g1,10147:10424522,44070327 -g1,10147:10740668,44070327 -g1,10147:11056814,44070327 -g1,10147:14218271,44070327 -k1,10147:14218271,44070327:0 -h1,10147:17063582,44070327:0,0,0 -k1,10147:32583029,44070327:15519447 -g1,10147:32583029,44070327 -) -(1,10147:6630773,44736505:25952256,404226,107478 -h1,10147:6630773,44736505:0,0,0 -g1,10147:7579210,44736505 -g1,10147:10740667,44736505 -g1,10147:14218270,44736505 -k1,10147:14218270,44736505:0 -h1,10147:17063581,44736505:0,0,0 -k1,10147:32583029,44736505:15519448 -g1,10147:32583029,44736505 -) -(1,10147:6630773,45402683:25952256,404226,107478 -h1,10147:6630773,45402683:0,0,0 -g1,10147:7579210,45402683 -g1,10147:10108376,45402683 -g1,10147:10424522,45402683 -g1,10147:10740668,45402683 -g1,10147:11056814,45402683 -g1,10147:14218271,45402683 -k1,10147:14218271,45402683:0 -h1,10147:17063582,45402683:0,0,0 -k1,10147:32583029,45402683:15519447 -g1,10147:32583029,45402683 -) -] -) -g1,10148:32583029,45510161 -g1,10148:6630773,45510161 -g1,10148:6630773,45510161 -g1,10148:32583029,45510161 -g1,10148:32583029,45510161 -) -h1,10148:6630773,45706769:0,0,0 -] -(1,10152:32583029,45706769:0,0,0 -g1,10152:32583029,45706769 -) -) -] -(1,10152:6630773,47279633:25952256,0,0 -h1,10152:6630773,47279633:25952256,0,0 -) -] -(1,10152:4262630,4025873:0,0,0 -[1,10152:-473656,4025873:0,0,0 -(1,10152:-473656,-710413:0,0,0 -(1,10152:-473656,-710413:0,0,0 -g1,10152:-473656,-710413 -) -g1,10152:-473656,-710413 -) -] -) -] -!25218 -}188 -Input:1461:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1462:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1463:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1464:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1465:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!472 -{189 -[1,10185:4262630,47279633:28320399,43253760,0 -(1,10185:4262630,4025873:0,0,0 -[1,10185:-473656,4025873:0,0,0 -(1,10185:-473656,-710413:0,0,0 -(1,10185:-473656,-644877:0,0,0 -k1,10185:-473656,-644877:-65536 -) -(1,10185:-473656,4736287:0,0,0 -k1,10185:-473656,4736287:5209943 -) -g1,10185:-473656,-710413 -) -] -) -[1,10185:6630773,47279633:25952256,43253760,0 -[1,10185:6630773,4812305:25952256,786432,0 -(1,10185:6630773,4812305:25952256,505283,134348 -(1,10185:6630773,4812305:25952256,505283,134348 -g1,10185:3078558,4812305 -[1,10185:3078558,4812305:0,0,0 -(1,10185:3078558,2439708:0,1703936,0 -k1,10185:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,10185:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,10185:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,10185:3078558,4812305:0,0,0 -(1,10185:3078558,2439708:0,1703936,0 -g1,10185:29030814,2439708 -g1,10185:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,10185:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,10185:37855564,2439708:1179648,16384,0 -) -) -k1,10185:3078556,2439708:-34777008 -) -] -[1,10185:3078558,4812305:0,0,0 -(1,10185:3078558,49800853:0,16384,2228224 -k1,10185:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,10185:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,10185:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,10185:3078558,4812305:0,0,0 -(1,10185:3078558,49800853:0,16384,2228224 -g1,10185:29030814,49800853 -g1,10185:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,10185:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,10185:37855564,49800853:1179648,16384,0 -) -) -k1,10185:3078556,49800853:-34777008 -) -] -g1,10185:6630773,4812305 -k1,10185:24502442,4812305:16676292 -g1,10185:25889183,4812305 -g1,10185:26537989,4812305 -g1,10185:29852144,4812305 -) -) -] -[1,10185:6630773,45706769:25952256,40108032,0 -(1,10185:6630773,45706769:25952256,40108032,0 -(1,10185:6630773,45706769:0,0,0 -g1,10185:6630773,45706769 -) -[1,10185:6630773,45706769:25952256,40108032,0 -(1,10152:6630773,6254097:25952256,513147,102891 -h1,10151:6630773,6254097:983040,0,0 -k1,10151:8612628,6254097:169785 -k1,10151:10498146,6254097:169785 -k1,10151:11687016,6254097:169785 -k1,10151:13352987,6254097:169784 -k1,10151:15393170,6254097:169785 -k1,10151:16214383,6254097:169785 -k1,10151:17970139,6254097:169785 -k1,10151:19312363,6254097:169785 -k1,10151:21790326,6254097:169785 -k1,10151:22951671,6254097:169785 -k1,10151:24427588,6254097:169784 -k1,10151:27569431,6254097:169785 -k1,10151:29306837,6254097:169785 -k1,10151:30495707,6254097:169785 -k1,10151:32583029,6254097:0 -) -(1,10152:6630773,7095585:25952256,513147,126483 -k1,10151:8011521,7095585:189303 -k1,10151:10359580,7095585:189303 -(1,10151:10359580,7095585:0,414482,115847 -r1,10185:10717846,7095585:358266,530329,115847 -k1,10151:10359580,7095585:-358266 -) -(1,10151:10359580,7095585:358266,414482,115847 -k1,10151:10359580,7095585:3277 -h1,10151:10714569,7095585:0,411205,112570 -) -k1,10151:10907149,7095585:189303 -k1,10151:12287897,7095585:189303 -(1,10151:12287897,7095585:0,414482,115847 -r1,10185:12646163,7095585:358266,530329,115847 -k1,10151:12287897,7095585:-358266 -) -(1,10151:12287897,7095585:358266,414482,115847 -k1,10151:12287897,7095585:3277 -h1,10151:12642886,7095585:0,411205,112570 -) -k1,10151:13009136,7095585:189303 -k1,10151:14151988,7095585:189303 -k1,10151:15969861,7095585:189303 -k1,10151:18203887,7095585:189303 -k1,10151:19044618,7095585:189303 -k1,10151:21780650,7095585:189303 -k1,10151:22694781,7095585:189303 -k1,10151:24168590,7095585:189303 -k1,10151:27348956,7095585:189303 -k1,10151:28347629,7095585:189303 -k1,10151:30003628,7095585:189303 -k1,10151:31591469,7095585:189303 -k1,10151:32583029,7095585:0 -) -(1,10152:6630773,7937073:25952256,505283,126483 -k1,10152:32583029,7937073:22056796 -g1,10152:32583029,7937073 -) -v1,10156:6630773,9127539:0,393216,0 -(1,10164:6630773,12101056:25952256,3366733,196608 -g1,10164:6630773,12101056 -g1,10164:6630773,12101056 -g1,10164:6434165,12101056 -(1,10164:6434165,12101056:0,3366733,196608 -r1,10185:32779637,12101056:26345472,3563341,196608 -k1,10164:6434165,12101056:-26345472 -) -(1,10164:6434165,12101056:26345472,3366733,196608 -[1,10164:6630773,12101056:25952256,3170125,0 -(1,10158:6630773,9335157:25952256,404226,82312 -(1,10157:6630773,9335157:0,0,0 -g1,10157:6630773,9335157 -g1,10157:6630773,9335157 -g1,10157:6303093,9335157 -(1,10157:6303093,9335157:0,0,0 -) -g1,10157:6630773,9335157 -) -g1,10158:7263065,9335157 -g1,10158:8211503,9335157 -g1,10158:10108378,9335157 -h1,10158:10740670,9335157:0,0,0 -k1,10158:32583030,9335157:21842360 -g1,10158:32583030,9335157 -) -(1,10159:6630773,10001335:25952256,404226,107478 -h1,10159:6630773,10001335:0,0,0 -g1,10159:7263065,10001335 -g1,10159:8211503,10001335 -g1,10159:10424524,10001335 -g1,10159:11372962,10001335 -g1,10159:12005254,10001335 -g1,10159:14218274,10001335 -g1,10159:15799003,10001335 -g1,10159:16747440,10001335 -g1,10159:18644314,10001335 -g1,10159:19592751,10001335 -g1,10159:20541188,10001335 -g1,10159:21805771,10001335 -k1,10159:21805771,10001335:9437 -h1,10159:22763645,10001335:0,0,0 -k1,10159:32583029,10001335:9819384 -g1,10159:32583029,10001335 -) -(1,10160:6630773,10667513:25952256,404226,101187 -h1,10160:6630773,10667513:0,0,0 -g1,10160:9159939,10667513 -g1,10160:10108377,10667513 -g1,10160:11689106,10667513 -g1,10160:12321398,10667513 -g1,10160:13902127,10667513 -g1,10160:15166710,10667513 -g1,10160:15799002,10667513 -k1,10160:15799002,10667513:0 -h1,10160:16431294,10667513:0,0,0 -k1,10160:32583029,10667513:16151735 -g1,10160:32583029,10667513 -) -(1,10161:6630773,11333691:25952256,404226,76021 -h1,10161:6630773,11333691:0,0,0 -g1,10161:6946919,11333691 -g1,10161:7263065,11333691 -g1,10161:7579211,11333691 -g1,10161:7895357,11333691 -g1,10161:8211503,11333691 -g1,10161:9792232,11333691 -g1,10161:10424524,11333691 -h1,10161:17063584,11333691:0,0,0 -k1,10161:32583029,11333691:15519445 -g1,10161:32583029,11333691 -) -(1,10162:6630773,11999869:25952256,404226,101187 -h1,10162:6630773,11999869:0,0,0 -g1,10162:9159939,11999869 -g1,10162:10108377,11999869 -g1,10162:14850562,11999869 -g1,10162:16115145,11999869 -g1,10162:16747437,11999869 -h1,10162:18012020,11999869:0,0,0 -k1,10162:32583029,11999869:14571009 -g1,10162:32583029,11999869 -) -] -) -g1,10164:32583029,12101056 -g1,10164:6630773,12101056 -g1,10164:6630773,12101056 -g1,10164:32583029,12101056 -g1,10164:32583029,12101056 -) -h1,10164:6630773,12297664:0,0,0 -(1,10167:6630773,31054820:25952256,18167332,0 -k1,10167:10523651,31054820:3892878 -h1,10166:10523651,31054820:0,0,0 -(1,10166:10523651,31054820:18166500,18167332,0 -(1,10166:10523651,31054820:18167376,18167376,0 -(1,10166:10523651,31054820:18167376,18167376,0 -(1,10166:10523651,31054820:0,18167376,0 -(1,10166:10523651,31054820:0,28417720,0 -(1,10166:10523651,31054820:28417720,28417720,0 -) -k1,10166:10523651,31054820:-28417720 -) -) -g1,10166:28691027,31054820 -) -) -) -g1,10167:28690151,31054820 -k1,10167:32583029,31054820:3892878 -) -v1,10174:6630773,32420596:0,393216,0 -(1,10175:6630773,38984191:25952256,6956811,616038 -g1,10175:6630773,38984191 -(1,10175:6630773,38984191:25952256,6956811,616038 -(1,10175:6630773,39600229:25952256,7572849,0 -[1,10175:6630773,39600229:25952256,7572849,0 -(1,10175:6630773,39574015:25952256,7520421,0 -r1,10185:6656987,39574015:26214,7520421,0 -[1,10175:6656987,39574015:25899828,7520421,0 -(1,10175:6656987,38984191:25899828,6340773,0 -[1,10175:7246811,38984191:24720180,6340773,0 -(1,10175:7246811,33927400:24720180,1283982,196608 -(1,10174:7246811,33927400:0,1283982,196608 -r1,10185:9812056,33927400:2565245,1480590,196608 -k1,10174:7246811,33927400:-2565245 -) -(1,10174:7246811,33927400:2565245,1283982,196608 -) -k1,10174:10006802,33927400:194746 -k1,10174:11597465,33927400:194746 -k1,10174:13181574,33927400:194746 -k1,10174:14185690,33927400:194746 -k1,10174:15399521,33927400:194746 -k1,10174:17332281,33927400:194745 -k1,10174:19688404,33927400:194746 -k1,10174:24000777,33927400:194746 -k1,10174:25933538,33927400:194746 -k1,10174:28289661,33927400:194746 -k1,10174:30775546,33927400:194746 -k1,10174:31966991,33927400:0 -) -(1,10175:7246811,34768888:24720180,513147,126483 -k1,10174:9188439,34768888:203613 -k1,10174:11877833,34768888:203613 -k1,10174:12740738,34768888:203613 -k1,10174:14880285,34768888:203613 -k1,10174:16551904,34768888:203613 -k1,10174:17368279,34768888:203613 -k1,10174:19023514,34768888:203613 -k1,10174:19886418,34768888:203612 -k1,10174:21109116,34768888:203613 -k1,10174:24199590,34768888:203613 -k1,10174:25019241,34768888:203613 -k1,10174:26241939,34768888:203613 -(1,10174:26241939,34768888:0,452978,115847 -r1,10185:29062188,34768888:2820249,568825,115847 -k1,10174:26241939,34768888:-2820249 -) -(1,10174:26241939,34768888:2820249,452978,115847 -k1,10174:26241939,34768888:3277 -h1,10174:29058911,34768888:0,411205,112570 -) -k1,10174:29265801,34768888:203613 -k1,10174:30858777,34768888:203613 -k1,10174:31966991,34768888:0 -) -(1,10175:7246811,35610376:24720180,513147,134348 -k1,10174:9081840,35610376:199906 -k1,10174:12069648,35610376:199906 -k1,10174:14781548,35610376:199905 -k1,10174:17642216,35610376:199906 -k1,10174:20393439,35610376:199906 -k1,10174:21540996,35610376:199906 -k1,10174:24575989,35610376:199906 -k1,10174:26511287,35610376:199905 -k1,10174:29406689,35610376:199906 -(1,10174:29406689,35610376:0,452978,115847 -r1,10185:30820090,35610376:1413401,568825,115847 -k1,10174:29406689,35610376:-1413401 -) -(1,10174:29406689,35610376:1413401,452978,115847 -k1,10174:29406689,35610376:3277 -h1,10174:30816813,35610376:0,411205,112570 -) -k1,10174:31193666,35610376:199906 -k1,10175:31966991,35610376:0 -) -(1,10175:7246811,36451864:24720180,505283,126483 -k1,10174:9176697,36451864:214153 -k1,10174:10483334,36451864:214152 -k1,10174:12119603,36451864:214138 -k1,10174:12985183,36451864:214152 -k1,10174:16002311,36451864:214153 -k1,10174:17546844,36451864:214152 -k1,10174:19963007,36451864:214153 -k1,10174:21196244,36451864:214152 -k1,10174:24297258,36451864:214153 -k1,10174:25502970,36451864:214152 -k1,10174:27111074,36451864:214153 -k1,10174:29649788,36451864:214152 -k1,10174:30515369,36451864:214153 -k1,10174:31966991,36451864:0 -) -(1,10175:7246811,37293352:24720180,513147,7863 -k1,10174:8071254,37293352:165151 -k1,10174:9255490,37293352:165151 -k1,10174:11075424,37293352:165150 -k1,10174:14255886,37293352:165151 -k1,10174:16507703,37293352:165151 -k1,10174:17028714,37293352:165151 -k1,10174:19897879,37293352:165150 -k1,10174:20722322,37293352:165151 -k1,10174:23548235,37293352:165151 -k1,10174:24997892,37293352:165151 -k1,10174:26846007,37293352:165150 -k1,10174:28278624,37293352:165151 -k1,10174:30947906,37293352:165151 -k1,10174:31966991,37293352:0 -) -(1,10175:7246811,38134840:24720180,513147,11795 -k1,10174:9071991,38134840:170396 -k1,10174:11562362,38134840:170396 -k1,10174:14574398,38134840:170395 -k1,10174:15936239,38134840:170396 -k1,10174:17199120,38134840:170396 -k1,10174:18791618,38134840:170367 -k1,10174:19613442,38134840:170396 -k1,10174:21049994,38134840:170396 -k1,10174:22550771,38134840:170396 -k1,10174:24957910,38134840:170395 -k1,10174:26147391,38134840:170396 -k1,10174:29080130,38134840:170396 -k1,10174:31966991,38134840:0 -) -(1,10175:7246811,38976328:24720180,355205,7863 -k1,10175:31966991,38976328:23554950 -g1,10175:31966991,38976328 -) -] -) -] -r1,10185:32583029,39574015:26214,7520421,0 -) -] -) -) -g1,10175:32583029,38984191 -) -h1,10175:6630773,39600229:0,0,0 -(1,10179:6630773,42215777:25952256,555811,139132 -(1,10179:6630773,42215777:2899444,534184,0 -g1,10179:6630773,42215777 -g1,10179:9530217,42215777 -) -g1,10179:12369827,42215777 -k1,10179:32583029,42215777:17244552 -g1,10179:32583029,42215777 -) -(1,10183:6630773,43450481:25952256,505283,134348 -k1,10182:7564115,43450481:305507 -k1,10182:10046073,43450481:305507 -k1,10182:13079843,43450481:305506 -k1,10182:14404435,43450481:305507 -k1,10182:15886969,43450481:305507 -k1,10182:16723973,43450481:305507 -k1,10182:17680907,43450481:305506 -k1,10182:19879094,43450481:305507 -k1,10182:24256353,43450481:305507 -k1,10182:25829326,43450481:305507 -k1,10182:28660590,43450481:305506 -k1,10182:31189078,43450481:305507 -k1,10182:32583029,43450481:0 -) -(1,10183:6630773,44291969:25952256,513147,134348 -k1,10182:9607500,44291969:253706 -k1,10182:12345676,44291969:253706 -k1,10182:16726184,44291969:253706 -k1,10182:18171336,44291969:253707 -k1,10182:21621888,44291969:253706 -k1,10182:26738365,44291969:253706 -k1,10182:30682403,44291969:253706 -k1,10182:31563944,44291969:253706 -k1,10182:32583029,44291969:0 -) -(1,10183:6630773,45133457:25952256,513147,134348 -k1,10182:8188396,45133457:173503 -k1,10182:11023316,45133457:173503 -k1,10182:12065171,45133457:173503 -k1,10182:13331159,45133457:173503 -k1,10182:16200158,45133457:173503 -(1,10182:16200158,45133457:0,452978,115847 -r1,10185:19020407,45133457:2820249,568825,115847 -k1,10182:16200158,45133457:-2820249 -) -(1,10182:16200158,45133457:2820249,452978,115847 -k1,10182:16200158,45133457:3277 -h1,10182:19017130,45133457:0,411205,112570 -) -k1,10182:19193910,45133457:173503 -k1,10182:20935034,45133457:173503 -k1,10182:22127622,45133457:173503 -k1,10182:24362863,45133457:173478 -k1,10182:27116518,45133457:173503 -k1,10182:29330156,45133457:173503 -k1,10182:30457208,45133457:173503 -k1,10182:31896867,45133457:173503 -k1,10182:32583029,45133457:0 -) -] -(1,10185:32583029,45706769:0,0,0 -g1,10185:32583029,45706769 -) -) -] -(1,10185:6630773,47279633:25952256,0,0 -h1,10185:6630773,47279633:25952256,0,0 -) -] -(1,10185:4262630,4025873:0,0,0 -[1,10185:-473656,4025873:0,0,0 -(1,10185:-473656,-710413:0,0,0 -(1,10185:-473656,-710413:0,0,0 -g1,10185:-473656,-710413 -) -g1,10185:-473656,-710413 -) -] -) -] -!14548 -}189 -Input:1466:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1467:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!196 -{190 -[1,10239:4262630,47279633:28320399,43253760,0 -(1,10239:4262630,4025873:0,0,0 -[1,10239:-473656,4025873:0,0,0 -(1,10239:-473656,-710413:0,0,0 -(1,10239:-473656,-644877:0,0,0 -k1,10239:-473656,-644877:-65536 -) -(1,10239:-473656,4736287:0,0,0 -k1,10239:-473656,4736287:5209943 -) -g1,10239:-473656,-710413 -) -] -) -[1,10239:6630773,47279633:25952256,43253760,0 -[1,10239:6630773,4812305:25952256,786432,0 -(1,10239:6630773,4812305:25952256,505283,7863 -(1,10239:6630773,4812305:25952256,505283,7863 -g1,10239:3078558,4812305 -[1,10239:3078558,4812305:0,0,0 -(1,10239:3078558,2439708:0,1703936,0 -k1,10239:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,10239:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,10239:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,10239:3078558,4812305:0,0,0 -(1,10239:3078558,2439708:0,1703936,0 -g1,10239:29030814,2439708 -g1,10239:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,10239:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,10239:37855564,2439708:1179648,16384,0 -) -) -k1,10239:3078556,2439708:-34777008 -) -] -[1,10239:3078558,4812305:0,0,0 -(1,10239:3078558,49800853:0,16384,2228224 -k1,10239:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,10239:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,10239:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,10239:3078558,4812305:0,0,0 -(1,10239:3078558,49800853:0,16384,2228224 -g1,10239:29030814,49800853 -g1,10239:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,10239:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,10239:37855564,49800853:1179648,16384,0 -) -) -k1,10239:3078556,49800853:-34777008 -) -] -g1,10239:6630773,4812305 -g1,10239:6630773,4812305 -g1,10239:10653372,4812305 -g1,10239:13512052,4812305 -k1,10239:31387652,4812305:17875600 -) -) -] -[1,10239:6630773,45706769:25952256,40108032,0 -(1,10239:6630773,45706769:25952256,40108032,0 -(1,10239:6630773,45706769:0,0,0 -g1,10239:6630773,45706769 -) -[1,10239:6630773,45706769:25952256,40108032,0 -(1,10183:6630773,6254097:25952256,505283,126483 -k1,10182:8901249,6254097:241481 -k1,10182:10161814,6254097:241480 -(1,10182:10161814,6254097:0,452978,115847 -r1,10239:12982063,6254097:2820249,568825,115847 -k1,10182:10161814,6254097:-2820249 -) -(1,10182:10161814,6254097:2820249,452978,115847 -k1,10182:10161814,6254097:3277 -h1,10182:12978786,6254097:0,411205,112570 -) -k1,10182:13223544,6254097:241481 -k1,10182:14854387,6254097:241480 -k1,10182:16981339,6254097:241481 -k1,10182:19637166,6254097:241481 -k1,10182:22639022,6254097:241480 -k1,10182:26045237,6254097:241481 -k1,10182:26914552,6254097:241480 -k1,10182:28858003,6254097:241481 -k1,10182:30796865,6254097:241480 -k1,10182:31394206,6254097:241481 -k1,10183:32583029,6254097:0 -) -(1,10183:6630773,7095585:25952256,513147,126483 -k1,10182:7995506,7095585:253242 -k1,10182:8908040,7095585:253242 -k1,10182:12152345,7095585:253242 -k1,10182:15040789,7095585:253241 -k1,10182:16890488,7095585:253242 -k1,10182:17803022,7095585:253242 -k1,10182:22128016,7095585:253242 -k1,10182:24241825,7095585:253242 -k1,10182:25146495,7095585:253242 -k1,10182:26147502,7095585:253241 -k1,10182:27706877,7095585:253242 -k1,10182:31189078,7095585:253242 -k1,10182:32583029,7095585:0 -) -(1,10183:6630773,7937073:25952256,513147,126483 -g1,10182:9525498,7937073 -(1,10182:9525498,7937073:0,452978,115847 -r1,10239:10938899,7937073:1413401,568825,115847 -k1,10182:9525498,7937073:-1413401 -) -(1,10182:9525498,7937073:1413401,452978,115847 -k1,10182:9525498,7937073:3277 -h1,10182:10935622,7937073:0,411205,112570 -) -g1,10182:11138128,7937073 -g1,10182:13222828,7937073 -g1,10182:16278771,7937073 -g1,10182:18709501,7937073 -k1,10183:32583029,7937073:10915233 -g1,10183:32583029,7937073 -) -v1,10185:6630773,9127539:0,393216,0 -(1,10198:6630773,14171417:25952256,5437094,196608 -g1,10198:6630773,14171417 -g1,10198:6630773,14171417 -g1,10198:6434165,14171417 -(1,10198:6434165,14171417:0,5437094,196608 -r1,10239:32779637,14171417:26345472,5633702,196608 -k1,10198:6434165,14171417:-26345472 -) -(1,10198:6434165,14171417:26345472,5437094,196608 -[1,10198:6630773,14171417:25952256,5240486,0 -(1,10187:6630773,9335157:25952256,404226,76021 -(1,10186:6630773,9335157:0,0,0 -g1,10186:6630773,9335157 -g1,10186:6630773,9335157 -g1,10186:6303093,9335157 -(1,10186:6303093,9335157:0,0,0 -) -g1,10186:6630773,9335157 -) -g1,10187:7579210,9335157 -g1,10187:8527648,9335157 -k1,10187:8527648,9335157:0 -h1,10187:13585979,9335157:0,0,0 -k1,10187:32583029,9335157:18997050 -g1,10187:32583029,9335157 -) -(1,10188:6630773,10001335:25952256,404226,101187 -h1,10188:6630773,10001335:0,0,0 -k1,10188:6630773,10001335:0 -h1,10188:9476084,10001335:0,0,0 -k1,10188:32583028,10001335:23106944 -g1,10188:32583028,10001335 -) -(1,10197:6630773,10733049:25952256,379060,0 -(1,10190:6630773,10733049:0,0,0 -g1,10190:6630773,10733049 -g1,10190:6630773,10733049 -g1,10190:6303093,10733049 -(1,10190:6303093,10733049:0,0,0 -) -g1,10190:6630773,10733049 -) -h1,10197:7263064,10733049:0,0,0 -k1,10197:32583028,10733049:25319964 -g1,10197:32583028,10733049 -) -(1,10197:6630773,11399227:25952256,404226,7863 -h1,10197:6630773,11399227:0,0,0 -g1,10197:7579210,11399227 -h1,10197:9159938,11399227:0,0,0 -k1,10197:32583030,11399227:23423092 -g1,10197:32583030,11399227 -) -(1,10197:6630773,12065405:25952256,404226,76021 -h1,10197:6630773,12065405:0,0,0 -g1,10197:7579210,12065405 -g1,10197:10424521,12065405 -g1,10197:11056813,12065405 -h1,10197:13902124,12065405:0,0,0 -k1,10197:32583028,12065405:18680904 -g1,10197:32583028,12065405 -) -(1,10197:6630773,12731583:25952256,379060,0 -h1,10197:6630773,12731583:0,0,0 -h1,10197:7263064,12731583:0,0,0 -k1,10197:32583028,12731583:25319964 -g1,10197:32583028,12731583 -) -(1,10197:6630773,13397761:25952256,404226,101187 -h1,10197:6630773,13397761:0,0,0 -g1,10197:7579210,13397761 -g1,10197:10108376,13397761 -g1,10197:12321396,13397761 -g1,10197:12637542,13397761 -g1,10197:12953688,13397761 -g1,10197:13585980,13397761 -h1,10197:16115145,13397761:0,0,0 -k1,10197:32583029,13397761:16467884 -g1,10197:32583029,13397761 -) -(1,10197:6630773,14063939:25952256,410518,107478 -h1,10197:6630773,14063939:0,0,0 -g1,10197:7579210,14063939 -g1,10197:9792230,14063939 -g1,10197:10740667,14063939 -g1,10197:13585978,14063939 -h1,10197:14218269,14063939:0,0,0 -k1,10197:32583029,14063939:18364760 -g1,10197:32583029,14063939 -) -] -) -g1,10198:32583029,14171417 -g1,10198:6630773,14171417 -g1,10198:6630773,14171417 -g1,10198:32583029,14171417 -g1,10198:32583029,14171417 -) -h1,10198:6630773,14368025:0,0,0 -v1,10202:6630773,16082779:0,393216,0 -(1,10206:6630773,16391584:25952256,702021,196608 -g1,10206:6630773,16391584 -g1,10206:6630773,16391584 -g1,10206:6434165,16391584 -(1,10206:6434165,16391584:0,702021,196608 -r1,10239:32779637,16391584:26345472,898629,196608 -k1,10206:6434165,16391584:-26345472 -) -(1,10206:6434165,16391584:26345472,702021,196608 -[1,10206:6630773,16391584:25952256,505413,0 -(1,10204:6630773,16290397:25952256,404226,101187 -(1,10203:6630773,16290397:0,0,0 -g1,10203:6630773,16290397 -g1,10203:6630773,16290397 -g1,10203:6303093,16290397 -(1,10203:6303093,16290397:0,0,0 -) -g1,10203:6630773,16290397 -) -k1,10204:6630773,16290397:0 -h1,10204:9159939,16290397:0,0,0 -k1,10204:32583029,16290397:23423090 -g1,10204:32583029,16290397 -) -] -) -g1,10206:32583029,16391584 -g1,10206:6630773,16391584 -g1,10206:6630773,16391584 -g1,10206:32583029,16391584 -g1,10206:32583029,16391584 -) -h1,10206:6630773,16588192:0,0,0 -(1,10209:6630773,35345348:25952256,18167332,0 -k1,10209:10523651,35345348:3892878 -h1,10208:10523651,35345348:0,0,0 -(1,10208:10523651,35345348:18166500,18167332,0 -(1,10208:10523651,35345348:18167376,18167376,0 -(1,10208:10523651,35345348:18167376,18167376,0 -(1,10208:10523651,35345348:0,18167376,0 -(1,10208:10523651,35345348:0,28417720,0 -(1,10208:10523651,35345348:28417720,28417720,0 -) -k1,10208:10523651,35345348:-28417720 -) -) -g1,10208:28691027,35345348 -) -) -) -g1,10209:28690151,35345348 -k1,10209:32583029,35345348:3892878 -) -(1,10216:6630773,36186836:25952256,513147,134348 -h1,10215:6630773,36186836:983040,0,0 -k1,10215:8791057,36186836:223695 -k1,10215:10119034,36186836:223695 -k1,10215:11435214,36186836:223695 -(1,10215:11435214,36186836:0,452978,115847 -r1,10239:14255463,36186836:2820249,568825,115847 -k1,10215:11435214,36186836:-2820249 -) -(1,10215:11435214,36186836:2820249,452978,115847 -k1,10215:11435214,36186836:3277 -h1,10215:14252186,36186836:0,411205,112570 -) -k1,10215:14479158,36186836:223695 -k1,10215:15354281,36186836:223695 -k1,10215:17062366,36186836:223695 -k1,10215:18305146,36186836:223695 -k1,10215:21014622,36186836:223695 -k1,10215:21897609,36186836:223695 -k1,10215:24628056,36186836:223695 -k1,10215:25613279,36186836:223695 -k1,10215:28251320,36186836:223695 -k1,10215:30902469,36186836:223695 -k1,10215:31812326,36186836:223695 -k1,10215:32583029,36186836:0 -) -(1,10216:6630773,37028324:25952256,513147,134348 -g1,10215:9902330,37028324 -g1,10215:11120644,37028324 -g1,10215:13675892,37028324 -g1,10215:16360902,37028324 -g1,10215:17219423,37028324 -g1,10215:19925404,37028324 -g1,10215:20807518,37028324 -g1,10215:22025832,37028324 -g1,10215:24234395,37028324 -g1,10215:25046386,37028324 -g1,10215:27131086,37028324 -g1,10215:27981743,37028324 -g1,10215:29186294,37028324 -g1,10215:30404608,37028324 -k1,10216:32583029,37028324:764809 -g1,10216:32583029,37028324 -) -v1,10218:6630773,38218790:0,393216,0 -(1,10234:6630773,45163160:25952256,7337586,196608 -g1,10234:6630773,45163160 -g1,10234:6630773,45163160 -g1,10234:6434165,45163160 -(1,10234:6434165,45163160:0,7337586,196608 -r1,10239:32779637,45163160:26345472,7534194,196608 -k1,10234:6434165,45163160:-26345472 -) -(1,10234:6434165,45163160:26345472,7337586,196608 -[1,10234:6630773,45163160:25952256,7140978,0 -(1,10220:6630773,38426408:25952256,404226,82312 -(1,10219:6630773,38426408:0,0,0 -g1,10219:6630773,38426408 -g1,10219:6630773,38426408 -g1,10219:6303093,38426408 -(1,10219:6303093,38426408:0,0,0 -) -g1,10219:6630773,38426408 -) -k1,10220:6630773,38426408:0 -g1,10220:10108376,38426408 -g1,10220:10740668,38426408 -g1,10220:11372960,38426408 -h1,10220:12005252,38426408:0,0,0 -k1,10220:32583028,38426408:20577776 -g1,10220:32583028,38426408 -) -(1,10233:6630773,39158122:25952256,404226,107478 -(1,10222:6630773,39158122:0,0,0 -g1,10222:6630773,39158122 -g1,10222:6630773,39158122 -g1,10222:6303093,39158122 -(1,10222:6303093,39158122:0,0,0 -) -g1,10222:6630773,39158122 -) -g1,10233:7579210,39158122 -g1,10233:7895356,39158122 -g1,10233:8211502,39158122 -g1,10233:8527648,39158122 -g1,10233:8843794,39158122 -g1,10233:9159940,39158122 -g1,10233:9476086,39158122 -g1,10233:9792232,39158122 -g1,10233:10108378,39158122 -g1,10233:10424524,39158122 -g1,10233:12637544,39158122 -g1,10233:12953690,39158122 -g1,10233:13269836,39158122 -g1,10233:13585982,39158122 -g1,10233:13902128,39158122 -g1,10233:14218274,39158122 -g1,10233:14534420,39158122 -g1,10233:17695877,39158122 -g1,10233:18012023,39158122 -g1,10233:18328169,39158122 -g1,10233:18644315,39158122 -g1,10233:18960461,39158122 -g1,10233:19276607,39158122 -g1,10233:19592753,39158122 -g1,10233:19908899,39158122 -g1,10233:22754210,39158122 -g1,10233:23070356,39158122 -g1,10233:23386502,39158122 -g1,10233:23702648,39158122 -g1,10233:24018794,39158122 -g1,10233:24334940,39158122 -g1,10233:24651086,39158122 -g1,10233:24967232,39158122 -g1,10233:25283378,39158122 -g1,10233:25599524,39158122 -g1,10233:27812544,39158122 -g1,10233:28128690,39158122 -g1,10233:28444836,39158122 -g1,10233:28760982,39158122 -g1,10233:29077128,39158122 -g1,10233:29393274,39158122 -g1,10233:29709420,39158122 -h1,10233:32554731,39158122:0,0,0 -k1,10233:32583029,39158122:28298 -g1,10233:32583029,39158122 -) -(1,10233:6630773,39824300:25952256,388497,9436 -h1,10233:6630773,39824300:0,0,0 -g1,10233:7579210,39824300 -g1,10233:7895356,39824300 -g1,10233:8211502,39824300 -g1,10233:8527648,39824300 -g1,10233:8843794,39824300 -g1,10233:9159940,39824300 -g1,10233:9476086,39824300 -g1,10233:9792232,39824300 -g1,10233:10108378,39824300 -g1,10233:10424524,39824300 -g1,10233:10740670,39824300 -g1,10233:11056816,39824300 -g1,10233:11372962,39824300 -g1,10233:11689108,39824300 -g1,10233:12005254,39824300 -g1,10233:12637546,39824300 -g1,10233:12953692,39824300 -g1,10233:13269838,39824300 -g1,10233:13585984,39824300 -g1,10233:13902130,39824300 -g1,10233:14218276,39824300 -g1,10233:14534422,39824300 -g1,10233:14850568,39824300 -g1,10233:15166714,39824300 -g1,10233:15482860,39824300 -g1,10233:15799006,39824300 -g1,10233:16115152,39824300 -g1,10233:16431298,39824300 -g1,10233:16747444,39824300 -g1,10233:17063590,39824300 -g1,10233:17695882,39824300 -g1,10233:18012028,39824300 -g1,10233:18328174,39824300 -g1,10233:18644320,39824300 -g1,10233:18960466,39824300 -g1,10233:19276612,39824300 -g1,10233:19592758,39824300 -g1,10233:19908904,39824300 -g1,10233:20225050,39824300 -g1,10233:20541196,39824300 -g1,10233:20857342,39824300 -g1,10233:21173488,39824300 -g1,10233:21489634,39824300 -g1,10233:21805780,39824300 -g1,10233:22121926,39824300 -g1,10233:22754218,39824300 -g1,10233:23070364,39824300 -g1,10233:23386510,39824300 -g1,10233:23702656,39824300 -g1,10233:24018802,39824300 -g1,10233:24334948,39824300 -g1,10233:24651094,39824300 -g1,10233:24967240,39824300 -g1,10233:25283386,39824300 -g1,10233:25599532,39824300 -g1,10233:25915678,39824300 -g1,10233:26231824,39824300 -g1,10233:26547970,39824300 -g1,10233:26864116,39824300 -g1,10233:27180262,39824300 -g1,10233:27812554,39824300 -g1,10233:28128700,39824300 -g1,10233:28444846,39824300 -g1,10233:28760992,39824300 -g1,10233:29077138,39824300 -g1,10233:29393284,39824300 -g1,10233:29709430,39824300 -g1,10233:30025576,39824300 -g1,10233:30341722,39824300 -g1,10233:30657868,39824300 -g1,10233:30974014,39824300 -g1,10233:31290160,39824300 -g1,10233:31606306,39824300 -g1,10233:31922452,39824300 -g1,10233:32238598,39824300 -h1,10233:32554744,39824300:0,0,0 -k1,10233:32583029,39824300:28285 -g1,10233:32583029,39824300 -) -(1,10233:6630773,40490478:25952256,404226,107478 -h1,10233:6630773,40490478:0,0,0 -g1,10233:7579210,40490478 -g1,10233:7895356,40490478 -g1,10233:8211502,40490478 -g1,10233:8527648,40490478 -g1,10233:8843794,40490478 -g1,10233:9159940,40490478 -g1,10233:9476086,40490478 -g1,10233:9792232,40490478 -g1,10233:10108378,40490478 -g1,10233:12637544,40490478 -g1,10233:12953690,40490478 -g1,10233:13269836,40490478 -g1,10233:13585982,40490478 -g1,10233:13902128,40490478 -g1,10233:14218274,40490478 -g1,10233:17695877,40490478 -g1,10233:18012023,40490478 -g1,10233:18328169,40490478 -g1,10233:18644315,40490478 -g1,10233:18960461,40490478 -g1,10233:19276607,40490478 -g1,10233:19592753,40490478 -g1,10233:19908899,40490478 -g1,10233:20225045,40490478 -g1,10233:20541191,40490478 -g1,10233:22754211,40490478 -g1,10233:23070357,40490478 -g1,10233:23386503,40490478 -g1,10233:23702649,40490478 -g1,10233:24018795,40490478 -g1,10233:24334941,40490478 -g1,10233:24651087,40490478 -g1,10233:27812544,40490478 -g1,10233:28128690,40490478 -g1,10233:28444836,40490478 -g1,10233:28760982,40490478 -g1,10233:29077128,40490478 -g1,10233:29393274,40490478 -g1,10233:29709420,40490478 -g1,10233:30025566,40490478 -g1,10233:30341712,40490478 -h1,10233:32554732,40490478:0,0,0 -k1,10233:32583029,40490478:28297 -g1,10233:32583029,40490478 -) -(1,10233:6630773,41156656:25952256,388497,9436 -h1,10233:6630773,41156656:0,0,0 -g1,10233:7579210,41156656 -g1,10233:7895356,41156656 -g1,10233:8211502,41156656 -g1,10233:8527648,41156656 -g1,10233:8843794,41156656 -g1,10233:9159940,41156656 -g1,10233:9476086,41156656 -g1,10233:9792232,41156656 -g1,10233:10108378,41156656 -g1,10233:10424524,41156656 -g1,10233:10740670,41156656 -g1,10233:11056816,41156656 -g1,10233:11372962,41156656 -g1,10233:11689108,41156656 -g1,10233:12005254,41156656 -g1,10233:12637546,41156656 -g1,10233:12953692,41156656 -g1,10233:13269838,41156656 -g1,10233:13585984,41156656 -g1,10233:13902130,41156656 -g1,10233:14218276,41156656 -g1,10233:14534422,41156656 -g1,10233:14850568,41156656 -g1,10233:15166714,41156656 -g1,10233:15482860,41156656 -g1,10233:15799006,41156656 -g1,10233:16115152,41156656 -g1,10233:16431298,41156656 -g1,10233:16747444,41156656 -g1,10233:17063590,41156656 -g1,10233:17695882,41156656 -g1,10233:18012028,41156656 -g1,10233:18328174,41156656 -g1,10233:18644320,41156656 -g1,10233:18960466,41156656 -g1,10233:19276612,41156656 -g1,10233:19592758,41156656 -g1,10233:19908904,41156656 -g1,10233:20225050,41156656 -g1,10233:20541196,41156656 -g1,10233:20857342,41156656 -g1,10233:21173488,41156656 -g1,10233:21489634,41156656 -g1,10233:21805780,41156656 -g1,10233:22121926,41156656 -g1,10233:22754218,41156656 -g1,10233:23070364,41156656 -g1,10233:23386510,41156656 -g1,10233:23702656,41156656 -g1,10233:24018802,41156656 -g1,10233:24334948,41156656 -g1,10233:24651094,41156656 -g1,10233:24967240,41156656 -g1,10233:25283386,41156656 -g1,10233:25599532,41156656 -g1,10233:25915678,41156656 -g1,10233:26231824,41156656 -g1,10233:26547970,41156656 -g1,10233:26864116,41156656 -g1,10233:27180262,41156656 -g1,10233:27812554,41156656 -g1,10233:28128700,41156656 -g1,10233:28444846,41156656 -g1,10233:28760992,41156656 -g1,10233:29077138,41156656 -g1,10233:29393284,41156656 -g1,10233:29709430,41156656 -g1,10233:30025576,41156656 -g1,10233:30341722,41156656 -g1,10233:30657868,41156656 -g1,10233:30974014,41156656 -g1,10233:31290160,41156656 -g1,10233:31606306,41156656 -g1,10233:31922452,41156656 -g1,10233:32238598,41156656 -h1,10233:32554744,41156656:0,0,0 -k1,10233:32583029,41156656:28285 -g1,10233:32583029,41156656 -) -(1,10233:6630773,41822834:25952256,410518,101187 -h1,10233:6630773,41822834:0,0,0 -g1,10233:7579210,41822834 -g1,10233:9159939,41822834 -g1,10233:10108376,41822834 -g1,10233:12637542,41822834 -g1,10233:12953688,41822834 -g1,10233:13269834,41822834 -g1,10233:13585980,41822834 -g1,10233:13902126,41822834 -g1,10233:14218272,41822834 -g1,10233:14534418,41822834 -g1,10233:14850564,41822834 -g1,10233:15166710,41822834 -g1,10233:15482856,41822834 -g1,10233:17695876,41822834 -g1,10233:18012022,41822834 -g1,10233:18328168,41822834 -g1,10233:18644314,41822834 -g1,10233:18960460,41822834 -g1,10233:19276606,41822834 -g1,10233:19592752,41822834 -g1,10233:19908898,41822834 -g1,10233:20225044,41822834 -g1,10233:20541190,41822834 -g1,10233:20857336,41822834 -g1,10233:22754210,41822834 -g1,10233:23070356,41822834 -g1,10233:23386502,41822834 -g1,10233:23702648,41822834 -g1,10233:24018794,41822834 -g1,10233:24334940,41822834 -g1,10233:24651086,41822834 -g1,10233:24967232,41822834 -g1,10233:25283378,41822834 -g1,10233:25599524,41822834 -g1,10233:27812544,41822834 -g1,10233:28128690,41822834 -g1,10233:28444836,41822834 -g1,10233:28760982,41822834 -g1,10233:29077128,41822834 -g1,10233:29393274,41822834 -h1,10233:32554731,41822834:0,0,0 -k1,10233:32583029,41822834:28298 -g1,10233:32583029,41822834 -) -(1,10233:6630773,42489012:25952256,388497,9436 -h1,10233:6630773,42489012:0,0,0 -g1,10233:7579210,42489012 -g1,10233:7895356,42489012 -g1,10233:8211502,42489012 -g1,10233:8527648,42489012 -g1,10233:8843794,42489012 -g1,10233:9159940,42489012 -g1,10233:9476086,42489012 -g1,10233:9792232,42489012 -g1,10233:10108378,42489012 -g1,10233:10424524,42489012 -g1,10233:10740670,42489012 -g1,10233:11056816,42489012 -g1,10233:11372962,42489012 -g1,10233:11689108,42489012 -g1,10233:12005254,42489012 -g1,10233:12637546,42489012 -g1,10233:12953692,42489012 -g1,10233:13269838,42489012 -g1,10233:13585984,42489012 -g1,10233:13902130,42489012 -g1,10233:14218276,42489012 -g1,10233:14534422,42489012 -g1,10233:14850568,42489012 -g1,10233:15166714,42489012 -g1,10233:15482860,42489012 -g1,10233:15799006,42489012 -g1,10233:16115152,42489012 -g1,10233:16431298,42489012 -g1,10233:16747444,42489012 -g1,10233:17063590,42489012 -g1,10233:17695882,42489012 -g1,10233:18012028,42489012 -g1,10233:18328174,42489012 -g1,10233:18644320,42489012 -g1,10233:18960466,42489012 -g1,10233:19276612,42489012 -g1,10233:19592758,42489012 -g1,10233:19908904,42489012 -g1,10233:20225050,42489012 -g1,10233:20541196,42489012 -g1,10233:20857342,42489012 -g1,10233:21173488,42489012 -g1,10233:21489634,42489012 -g1,10233:21805780,42489012 -g1,10233:22121926,42489012 -g1,10233:22754218,42489012 -g1,10233:23070364,42489012 -g1,10233:23386510,42489012 -g1,10233:23702656,42489012 -g1,10233:24018802,42489012 -g1,10233:24334948,42489012 -g1,10233:24651094,42489012 -g1,10233:24967240,42489012 -g1,10233:25283386,42489012 -g1,10233:25599532,42489012 -g1,10233:25915678,42489012 -g1,10233:26231824,42489012 -g1,10233:26547970,42489012 -g1,10233:26864116,42489012 -g1,10233:27180262,42489012 -g1,10233:27812554,42489012 -g1,10233:28128700,42489012 -g1,10233:28444846,42489012 -g1,10233:28760992,42489012 -g1,10233:29077138,42489012 -g1,10233:29393284,42489012 -g1,10233:29709430,42489012 -g1,10233:30025576,42489012 -g1,10233:30341722,42489012 -g1,10233:30657868,42489012 -g1,10233:30974014,42489012 -g1,10233:31290160,42489012 -g1,10233:31606306,42489012 -g1,10233:31922452,42489012 -g1,10233:32238598,42489012 -h1,10233:32554744,42489012:0,0,0 -k1,10233:32583029,42489012:28285 -g1,10233:32583029,42489012 -) -(1,10233:6630773,43155190:25952256,404226,7863 -h1,10233:6630773,43155190:0,0,0 -g1,10233:7579210,43155190 -g1,10233:7895356,43155190 -g1,10233:8211502,43155190 -g1,10233:8527648,43155190 -g1,10233:8843794,43155190 -g1,10233:9159940,43155190 -g1,10233:9476086,43155190 -g1,10233:9792232,43155190 -g1,10233:10108378,43155190 -g1,10233:10424524,43155190 -g1,10233:10740670,43155190 -g1,10233:12637544,43155190 -g1,10233:12953690,43155190 -g1,10233:13269836,43155190 -g1,10233:13585982,43155190 -g1,10233:13902128,43155190 -g1,10233:14218274,43155190 -g1,10233:14534420,43155190 -g1,10233:14850566,43155190 -g1,10233:15166712,43155190 -g1,10233:15482858,43155190 -g1,10233:17695878,43155190 -g1,10233:18012024,43155190 -g1,10233:18328170,43155190 -g1,10233:18644316,43155190 -g1,10233:18960462,43155190 -g1,10233:19276608,43155190 -g1,10233:19592754,43155190 -g1,10233:19908900,43155190 -g1,10233:20225046,43155190 -g1,10233:20541192,43155190 -g1,10233:20857338,43155190 -g1,10233:22754212,43155190 -g1,10233:23070358,43155190 -g1,10233:23386504,43155190 -g1,10233:23702650,43155190 -g1,10233:24018796,43155190 -g1,10233:24334942,43155190 -g1,10233:24651088,43155190 -g1,10233:24967234,43155190 -g1,10233:25283380,43155190 -g1,10233:25599526,43155190 -g1,10233:25915672,43155190 -g1,10233:26231818,43155190 -g1,10233:27812547,43155190 -g1,10233:28128693,43155190 -g1,10233:28444839,43155190 -g1,10233:28760985,43155190 -g1,10233:29077131,43155190 -g1,10233:29393277,43155190 -g1,10233:29709423,43155190 -h1,10233:32554734,43155190:0,0,0 -k1,10233:32583029,43155190:28295 -g1,10233:32583029,43155190 -) -(1,10233:6630773,43821368:25952256,388497,9436 -h1,10233:6630773,43821368:0,0,0 -g1,10233:7579210,43821368 -g1,10233:7895356,43821368 -g1,10233:8211502,43821368 -g1,10233:8527648,43821368 -g1,10233:8843794,43821368 -g1,10233:9159940,43821368 -g1,10233:9476086,43821368 -g1,10233:9792232,43821368 -g1,10233:10108378,43821368 -g1,10233:10424524,43821368 -g1,10233:10740670,43821368 -g1,10233:11056816,43821368 -g1,10233:11372962,43821368 -g1,10233:11689108,43821368 -g1,10233:12005254,43821368 -g1,10233:12637546,43821368 -g1,10233:12953692,43821368 -g1,10233:13269838,43821368 -g1,10233:13585984,43821368 -g1,10233:13902130,43821368 -g1,10233:14218276,43821368 -g1,10233:14534422,43821368 -g1,10233:14850568,43821368 -g1,10233:15166714,43821368 -g1,10233:15482860,43821368 -g1,10233:15799006,43821368 -g1,10233:16115152,43821368 -g1,10233:16431298,43821368 -g1,10233:16747444,43821368 -g1,10233:17063590,43821368 -g1,10233:17695882,43821368 -g1,10233:18012028,43821368 -g1,10233:18328174,43821368 -g1,10233:18644320,43821368 -g1,10233:18960466,43821368 -g1,10233:19276612,43821368 -g1,10233:19592758,43821368 -g1,10233:19908904,43821368 -g1,10233:20225050,43821368 -g1,10233:20541196,43821368 -g1,10233:20857342,43821368 -g1,10233:21173488,43821368 -g1,10233:21489634,43821368 -g1,10233:21805780,43821368 -g1,10233:22121926,43821368 -g1,10233:22754218,43821368 -g1,10233:23070364,43821368 -g1,10233:23386510,43821368 -g1,10233:23702656,43821368 -g1,10233:24018802,43821368 -g1,10233:24334948,43821368 -g1,10233:24651094,43821368 -g1,10233:24967240,43821368 -g1,10233:25283386,43821368 -g1,10233:25599532,43821368 -g1,10233:25915678,43821368 -g1,10233:26231824,43821368 -g1,10233:26547970,43821368 -g1,10233:26864116,43821368 -g1,10233:27180262,43821368 -g1,10233:27812554,43821368 -g1,10233:28128700,43821368 -g1,10233:28444846,43821368 -g1,10233:28760992,43821368 -g1,10233:29077138,43821368 -g1,10233:29393284,43821368 -g1,10233:29709430,43821368 -g1,10233:30025576,43821368 -g1,10233:30341722,43821368 -g1,10233:30657868,43821368 -g1,10233:30974014,43821368 -g1,10233:31290160,43821368 -g1,10233:31606306,43821368 -g1,10233:31922452,43821368 -g1,10233:32238598,43821368 -h1,10233:32554744,43821368:0,0,0 -k1,10233:32583029,43821368:28285 -g1,10233:32583029,43821368 -) -(1,10233:6630773,44487546:25952256,404226,6290 -h1,10233:6630773,44487546:0,0,0 -g1,10233:7579210,44487546 -g1,10233:7895356,44487546 -g1,10233:8211502,44487546 -g1,10233:8527648,44487546 -g1,10233:8843794,44487546 -g1,10233:9159940,44487546 -g1,10233:9476086,44487546 -g1,10233:9792232,44487546 -g1,10233:10108378,44487546 -g1,10233:10424524,44487546 -h1,10233:12321398,44487546:0,0,0 -k1,10233:32583030,44487546:20261632 -g1,10233:32583030,44487546 -) -(1,10233:6630773,45153724:25952256,388497,9436 -h1,10233:6630773,45153724:0,0,0 -g1,10233:7579210,45153724 -g1,10233:7895356,45153724 -g1,10233:8211502,45153724 -g1,10233:8527648,45153724 -g1,10233:8843794,45153724 -g1,10233:9159940,45153724 -g1,10233:9476086,45153724 -g1,10233:9792232,45153724 -g1,10233:10108378,45153724 -g1,10233:10424524,45153724 -g1,10233:10740670,45153724 -g1,10233:11056816,45153724 -g1,10233:11372962,45153724 -g1,10233:11689108,45153724 -g1,10233:12005254,45153724 -h1,10233:12321400,45153724:0,0,0 -k1,10233:32583028,45153724:20261628 -g1,10233:32583028,45153724 -) -] -) -g1,10234:32583029,45163160 -g1,10234:6630773,45163160 -g1,10234:6630773,45163160 -g1,10234:32583029,45163160 -g1,10234:32583029,45163160 -) -h1,10234:6630773,45359768:0,0,0 -] -(1,10239:32583029,45706769:0,0,0 -g1,10239:32583029,45706769 -) -) -] -(1,10239:6630773,47279633:25952256,0,0 -h1,10239:6630773,47279633:25952256,0,0 -) -] -(1,10239:4262630,4025873:0,0,0 -[1,10239:-473656,4025873:0,0,0 -(1,10239:-473656,-710413:0,0,0 -(1,10239:-473656,-710413:0,0,0 -g1,10239:-473656,-710413 -) -g1,10239:-473656,-710413 -) -] -) -] -!26933 -}190 -!12 -{191 -[1,10278:4262630,47279633:28320399,43253760,0 -(1,10278:4262630,4025873:0,0,0 -[1,10278:-473656,4025873:0,0,0 -(1,10278:-473656,-710413:0,0,0 -(1,10278:-473656,-644877:0,0,0 -k1,10278:-473656,-644877:-65536 -) -(1,10278:-473656,4736287:0,0,0 -k1,10278:-473656,4736287:5209943 -) -g1,10278:-473656,-710413 -) -] -) -[1,10278:6630773,47279633:25952256,43253760,0 -[1,10278:6630773,4812305:25952256,786432,0 -(1,10278:6630773,4812305:25952256,505283,134348 -(1,10278:6630773,4812305:25952256,505283,134348 -g1,10278:3078558,4812305 -[1,10278:3078558,4812305:0,0,0 -(1,10278:3078558,2439708:0,1703936,0 -k1,10278:1358238,2439708:-1720320 -(1,7682:1358238,2439708:1720320,1703936,0 -(1,7682:1358238,2439708:1179648,16384,0 -r1,10278:2537886,2439708:1179648,16384,0 -) -g1,7682:3062174,2439708 -(1,7682:3062174,2439708:16384,1703936,0 -[1,7682:3062174,2439708:25952256,1703936,0 -(1,7682:3062174,1915420:25952256,1179648,0 -(1,7682:3062174,1915420:16384,1179648,0 -r1,10278:3078558,1915420:16384,1179648,0 -) -k1,7682:29014430,1915420:25935872 -g1,7682:29014430,1915420 -) -] -) -) -) -] -[1,10278:3078558,4812305:0,0,0 -(1,10278:3078558,2439708:0,1703936,0 -g1,10278:29030814,2439708 -g1,10278:36135244,2439708 -(1,7682:36135244,2439708:1720320,1703936,0 -(1,7682:36135244,2439708:16384,1703936,0 -[1,7682:36135244,2439708:25952256,1703936,0 -(1,7682:36135244,1915420:25952256,1179648,0 -(1,7682:36135244,1915420:16384,1179648,0 -r1,10278:36151628,1915420:16384,1179648,0 -) -k1,7682:62087500,1915420:25935872 -g1,7682:62087500,1915420 -) -] -) -g1,7682:36675916,2439708 -(1,7682:36675916,2439708:1179648,16384,0 -r1,10278:37855564,2439708:1179648,16384,0 -) -) -k1,10278:3078556,2439708:-34777008 -) -] -[1,10278:3078558,4812305:0,0,0 -(1,10278:3078558,49800853:0,16384,2228224 -k1,10278:1358238,49800853:-1720320 -(1,7682:1358238,49800853:1720320,16384,2228224 -(1,7682:1358238,49800853:1179648,16384,0 -r1,10278:2537886,49800853:1179648,16384,0 -) -g1,7682:3062174,49800853 -(1,7682:3062174,52029077:16384,1703936,0 -[1,7682:3062174,52029077:25952256,1703936,0 -(1,7682:3062174,51504789:25952256,1179648,0 -(1,7682:3062174,51504789:16384,1179648,0 -r1,10278:3078558,51504789:16384,1179648,0 -) -k1,7682:29014430,51504789:25935872 -g1,7682:29014430,51504789 -) -] -) -) -) -] -[1,10278:3078558,4812305:0,0,0 -(1,10278:3078558,49800853:0,16384,2228224 -g1,10278:29030814,49800853 -g1,10278:36135244,49800853 -(1,7682:36135244,49800853:1720320,16384,2228224 -(1,7682:36135244,52029077:16384,1703936,0 -[1,7682:36135244,52029077:25952256,1703936,0 -(1,7682:36135244,51504789:25952256,1179648,0 -(1,7682:36135244,51504789:16384,1179648,0 -r1,10278:36151628,51504789:16384,1179648,0 -) -k1,7682:62087500,51504789:25935872 -g1,7682:62087500,51504789 -) -] -) -g1,7682:36675916,49800853 -(1,7682:36675916,49800853:1179648,16384,0 -r1,10278:37855564,49800853:1179648,16384,0 -) -) -k1,10278:3078556,49800853:-34777008 -) -] -g1,10278:6630773,4812305 -k1,10278:24502442,4812305:16676292 -g1,10278:25889183,4812305 -g1,10278:26537989,4812305 -g1,10278:29852144,4812305 -) -) -] -[1,10278:6630773,45706769:25952256,40108032,0 -(1,10278:6630773,45706769:25952256,40108032,0 -(1,10278:6630773,45706769:0,0,0 -g1,10278:6630773,45706769 -) -[1,10278:6630773,45706769:25952256,40108032,0 -(1,10239:6630773,6254097:25952256,513147,134348 -h1,10237:6630773,6254097:983040,0,0 -k1,10237:8984915,6254097:174415 -k1,10237:11118857,6254097:174416 -k1,10237:14071999,6254097:174415 -k1,10237:15007943,6254097:174416 -(1,10237:15007943,6254097:0,452978,115847 -r1,10278:17828192,6254097:2820249,568825,115847 -k1,10237:15007943,6254097:-2820249 -) -(1,10237:15007943,6254097:2820249,452978,115847 -k1,10237:15007943,6254097:3277 -h1,10237:17824915,6254097:0,411205,112570 -) -k1,10237:18002607,6254097:174415 -k1,10237:20879072,6254097:174416 -k1,10237:23170955,6254097:174415 -k1,10237:24004663,6254097:174416 -k1,10237:25198163,6254097:174415 -k1,10237:27215451,6254097:174416 -k1,10237:28049158,6254097:174415 -k1,10237:29242659,6254097:174416 -k1,10237:32583029,6254097:0 -) -(1,10239:6630773,6920275:25952256,513147,134348 -g1,10237:8715473,6920275 -g1,10237:10926657,6920275 -g1,10237:13401296,6920275 -g1,10237:17856433,6920275 -g1,10237:19247107,6920275 -g1,10237:22144453,6920275 -k1,10239:32583029,6920275:10438576 -g1,10239:32583029,6920275 -) -v1,10239:6630773,8110741:0,393216,0 -(1,10254:6630773,14461809:25952256,6744284,196608 -g1,10254:6630773,14461809 -g1,10254:6630773,14461809 -g1,10254:6434165,14461809 -(1,10254:6434165,14461809:0,6744284,196608 -r1,10278:32779637,14461809:26345472,6940892,196608 -k1,10254:6434165,14461809:-26345472 -) -(1,10254:6434165,14461809:26345472,6744284,196608 -[1,10254:6630773,14461809:25952256,6547676,0 -(1,10241:6630773,8318359:25952256,404226,76021 -(1,10240:6630773,8318359:0,0,0 -g1,10240:6630773,8318359 -g1,10240:6630773,8318359 -g1,10240:6303093,8318359 -(1,10240:6303093,8318359:0,0,0 -) -g1,10240:6630773,8318359 -) -k1,10241:6630773,8318359:0 -h1,10241:8843793,8318359:0,0,0 -k1,10241:32583029,8318359:23739236 -g1,10241:32583029,8318359 -) -(1,10253:6630773,9050073:25952256,410518,6290 -(1,10243:6630773,9050073:0,0,0 -g1,10243:6630773,9050073 -g1,10243:6630773,9050073 -g1,10243:6303093,9050073 -(1,10243:6303093,9050073:0,0,0 -) -g1,10243:6630773,9050073 -) -g1,10253:7579210,9050073 -g1,10253:9159939,9050073 -g1,10253:10108376,9050073 -h1,10253:10424522,9050073:0,0,0 -k1,10253:32583030,9050073:22158508 -g1,10253:32583030,9050073 -) -(1,10253:6630773,9716251:25952256,410518,107478 -h1,10253:6630773,9716251:0,0,0 -g1,10253:7579210,9716251 -g1,10253:7895356,9716251 -g1,10253:8527648,9716251 -g1,10253:10424522,9716251 -g1,10253:10740668,9716251 -g1,10253:11056814,9716251 -g1,10253:11372960,9716251 -g1,10253:11689106,9716251 -g1,10253:12005252,9716251 -g1,10253:12637544,9716251 -g1,10253:13902127,9716251 -g1,10253:16115147,9716251 -g1,10253:17695876,9716251 -g1,10253:18644313,9716251 -g1,10253:19592750,9716251 -g1,10253:20541187,9716251 -g1,10253:21489624,9716251 -g1,10253:22754207,9716251 -g1,10253:24018790,9716251 -g1,10253:24967227,9716251 -g1,10253:25915664,9716251 -g1,10253:26864101,9716251 -g1,10253:28128684,9716251 -h1,10253:29077121,9716251:0,0,0 -k1,10253:32583029,9716251:3505908 -g1,10253:32583029,9716251 -) -(1,10253:6630773,10382429:25952256,410518,107478 -h1,10253:6630773,10382429:0,0,0 -g1,10253:7579210,10382429 -g1,10253:7895356,10382429 -g1,10253:8527648,10382429 -g1,10253:10740668,10382429 -g1,10253:11056814,10382429 -g1,10253:11372960,10382429 -g1,10253:11689106,10382429 -g1,10253:12005252,10382429 -g1,10253:12637544,10382429 -g1,10253:13902127,10382429 -g1,10253:16115147,10382429 -g1,10253:17379730,10382429 -g1,10253:18644313,10382429 -g1,10253:19908896,10382429 -g1,10253:21173479,10382429 -g1,10253:22438062,10382429 -g1,10253:23702645,10382429 -g1,10253:24967228,10382429 -g1,10253:26231811,10382429 -g1,10253:27496394,10382429 -g1,10253:28760977,10382429 -h1,10253:29709414,10382429:0,0,0 -k1,10253:32583029,10382429:2873615 -g1,10253:32583029,10382429 -) -(1,10253:6630773,11048607:25952256,410518,76021 -h1,10253:6630773,11048607:0,0,0 -g1,10253:7579210,11048607 -g1,10253:7895356,11048607 -g1,10253:8527648,11048607 -g1,10253:10424522,11048607 -g1,10253:10740668,11048607 -g1,10253:11056814,11048607 -g1,10253:11372960,11048607 -g1,10253:11689106,11048607 -g1,10253:12005252,11048607 -g1,10253:12637544,11048607 -g1,10253:13902127,11048607 -g1,10253:16115147,11048607 -g1,10253:16747439,11048607 -g1,10253:17695876,11048607 -g1,10253:18328168,11048607 -g1,10253:19276605,11048607 -g1,10253:20225042,11048607 -g1,10253:21173479,11048607 -g1,10253:21805771,11048607 -g1,10253:22754208,11048607 -g1,10253:23702645,11048607 -g1,10253:24334937,11048607 -h1,10253:25283374,11048607:0,0,0 -k1,10253:32583029,11048607:7299655 -g1,10253:32583029,11048607 -) -(1,10253:6630773,11714785:25952256,410518,76021 -h1,10253:6630773,11714785:0,0,0 -g1,10253:7579210,11714785 -g1,10253:7895356,11714785 -g1,10253:8527648,11714785 -g1,10253:10740668,11714785 -g1,10253:11056814,11714785 -g1,10253:11372960,11714785 -g1,10253:11689106,11714785 -g1,10253:12005252,11714785 -g1,10253:12637544,11714785 -g1,10253:13902127,11714785 -g1,10253:16115147,11714785 -g1,10253:18960458,11714785 -g1,10253:22754206,11714785 -g1,10253:26231809,11714785 -g1,10253:29077120,11714785 -h1,10253:30025557,11714785:0,0,0 -k1,10253:32583029,11714785:2557472 -g1,10253:32583029,11714785 -) -(1,10253:6630773,12380963:25952256,410518,101187 -h1,10253:6630773,12380963:0,0,0 -g1,10253:7579210,12380963 -g1,10253:7895356,12380963 -g1,10253:8527648,12380963 -g1,10253:10740668,12380963 -g1,10253:11056814,12380963 -g1,10253:11372960,12380963 -g1,10253:11689106,12380963 -g1,10253:12005252,12380963 -g1,10253:12637544,12380963 -g1,10253:13902127,12380963 -h1,10253:17063584,12380963:0,0,0 -k1,10253:32583029,12380963:15519445 -g1,10253:32583029,12380963 -) -(1,10253:6630773,13047141:25952256,410518,107478 -h1,10253:6630773,13047141:0,0,0 -g1,10253:7579210,13047141 -g1,10253:7895356,13047141 -g1,10253:8527648,13047141 -g1,10253:10108377,13047141 -g1,10253:10424523,13047141 -g1,10253:10740669,13047141 -g1,10253:11056815,13047141 -g1,10253:11372961,13047141 -g1,10253:11689107,13047141 -g1,10253:12005253,13047141 -g1,10253:12637545,13047141 -g1,10253:15482856,13047141 -g1,10253:18328167,13047141 -g1,10253:18960459,13047141 -h1,10253:21805770,13047141:0,0,0 -k1,10253:32583029,13047141:10777259 -g1,10253:32583029,13047141 -) -(1,10253:6630773,13713319:25952256,410518,31456 -h1,10253:6630773,13713319:0,0,0 -g1,10253:7579210,13713319 -g1,10253:7895356,13713319 -g1,10253:8527648,13713319 -g1,10253:12637542,13713319 -h1,10253:13902125,13713319:0,0,0 -k1,10253:32583029,13713319:18680904 -g1,10253:32583029,13713319 -) -(1,10253:6630773,14379497:25952256,404226,82312 -h1,10253:6630773,14379497:0,0,0 -g1,10253:7579210,14379497 -g1,10253:7895356,14379497 -g1,10253:8527648,14379497 -g1,10253:11056814,14379497 -g1,10253:14218271,14379497 -g1,10253:15482854,14379497 -h1,10253:18012019,14379497:0,0,0 -k1,10253:32583029,14379497:14571010 -g1,10253:32583029,14379497 -) -] -) -g1,10254:32583029,14461809 -g1,10254:6630773,14461809 -g1,10254:6630773,14461809 -g1,10254:32583029,14461809 -g1,10254:32583029,14461809 -) -h1,10254:6630773,14658417:0,0,0 -(1,10268:6630773,17990273:25952256,32768,229376 -(1,10268:6630773,17990273:0,32768,229376 -(1,10268:6630773,17990273:5505024,32768,229376 -r1,10278:12135797,17990273:5505024,262144,229376 -) -k1,10268:6630773,17990273:-5505024 -) -(1,10268:6630773,17990273:25952256,32768,0 -r1,10278:32583029,17990273:25952256,32768,0 -) -) -(1,10268:6630773,19594601:25952256,606339,161218 -(1,10268:6630773,19594601:2464678,582746,14155 -g1,10268:6630773,19594601 -g1,10268:9095451,19594601 -) -g1,10268:12303307,19594601 -k1,10268:32583029,19594601:17283416 -g1,10268:32583029,19594601 -) -(1,10271:6630773,20829305:25952256,513147,134348 -k1,10270:8257650,20829305:276835 -k1,10270:10522847,20829305:276835 -k1,10270:12025860,20829305:276834 -k1,10270:14215036,20829305:276835 -k1,10270:15301241,20829305:276835 -k1,10270:18605184,20829305:276835 -k1,10270:21857353,20829305:276834 -k1,10270:22490048,20829305:276835 -k1,10270:25252664,20829305:276835 -k1,10270:28687679,20829305:276835 -k1,10270:30155958,20829305:276834 -k1,10270:32168186,20829305:276835 -k1,10271:32583029,20829305:0 -) -(1,10271:6630773,21670793:25952256,513147,126483 -k1,10270:7817296,21670793:238872 -k1,10270:11221557,21670793:238872 -k1,10270:12451989,21670793:238872 -k1,10270:15889673,21670793:238872 -k1,10270:18882368,21670793:238872 -k1,10270:20770125,21670793:238871 -k1,10270:21613239,21670793:238872 -k1,10270:22586849,21670793:238951 -k1,10270:24626650,21670793:238872 -k1,10270:26056967,21670793:238872 -k1,10270:28689214,21670793:238872 -k1,10270:31658971,21670793:238872 -k1,10270:32583029,21670793:0 -) -(1,10271:6630773,22512281:25952256,513147,134348 -k1,10270:9264509,22512281:240361 -k1,10270:11816980,22512281:240361 -k1,10270:14666985,22512281:240361 -k1,10270:16098791,22512281:240361 -k1,10270:18295402,22512281:240361 -k1,10270:20510610,22512281:240608 -k1,10270:22583358,22512281:240361 -k1,10270:25815438,22512281:240361 -k1,10270:26715091,22512281:240361 -k1,10270:28867793,22512281:240361 -k1,10270:32583029,22512281:0 -) -(1,10271:6630773,23353769:25952256,505283,134348 -k1,10270:9936643,23353769:221746 -k1,10270:14552578,23353769:221746 -k1,10270:15390362,23353769:221746 -k1,10270:16026928,23353769:221723 -k1,10270:17240234,23353769:221746 -k1,10270:21400037,23353769:221745 -k1,10270:24352668,23353769:221746 -k1,10270:25937563,23353769:221746 -k1,10270:26608886,23353769:221746 -k1,10270:29897062,23353769:221746 -k1,10270:32093475,23353769:221813 -k1,10270:32583029,23353769:0 -) -(1,10271:6630773,24195257:25952256,513147,134348 -k1,10270:10101390,24195257:260008 -k1,10270:10977436,24195257:260008 -k1,10270:14267829,24195257:260008 -k1,10270:17300664,24195257:260007 -k1,10270:19322935,24195257:260008 -k1,10270:20032520,24195257:260008 -k1,10270:21072528,24195257:260129 -k1,10270:21861534,24195257:260130 -k1,10270:24200344,24195257:260008 -k1,10270:25651796,24195257:260007 -k1,10270:28581085,24195257:260008 -k1,10270:30642022,24195257:260008 -k1,10270:32093475,24195257:260008 -k1,10270:32583029,24195257:0 -) -(1,10271:6630773,25036745:25952256,505283,134348 -k1,10270:10124424,25036745:236512 -k1,10270:12196598,25036745:236511 -k1,10270:13032764,25036745:236512 -k1,10270:13718852,25036745:236511 -k1,10270:15695345,25036745:236512 -k1,10270:16536098,25036745:236511 -k1,10270:17507343,25036745:236586 -k1,10270:19718678,25036745:236735 -k1,10270:21549026,25036745:236512 -k1,10270:24791673,25036745:236511 -k1,10270:26940526,25036745:236512 -k1,10270:28168597,25036745:236511 -k1,10270:31189078,25036745:236512 -k1,10270:32583029,25036745:0 -) -(1,10271:6630773,25878233:25952256,513147,134348 -k1,10270:9339257,25878233:153235 -k1,10270:13432516,25878233:153235 -k1,10270:14245043,25878233:153235 -k1,10270:16740535,25878233:153235 -k1,10270:18610158,25878233:153235 -k1,10270:19422686,25878233:153236 -k1,10270:22276660,25878233:153235 -k1,10270:23045933,25878233:153235 -k1,10270:23787681,25878233:153235 -k1,10270:26921493,25878233:153235 -k1,10270:30027780,25878233:153235 -k1,10271:32583029,25878233:0 -) -(1,10271:6630773,26719721:25952256,513147,126483 -k1,10270:8480308,26719721:251767 -k1,10270:9391368,26719721:251768 -k1,10270:10662220,26719721:251767 -k1,10270:13698612,26719721:251767 -k1,10270:15983306,26719721:251767 -k1,10270:19408983,26719721:251768 -k1,10270:20276788,26719721:251767 -k1,10270:21731796,26719721:251767 -k1,10270:24574857,26719721:251767 -k1,10270:26516143,26719721:251768 -k1,10270:29759629,26719721:251767 -k1,10270:30670688,26719721:251767 -k1,10270:32583029,26719721:0 -) -(1,10271:6630773,27561209:25952256,513147,126483 -k1,10270:8217601,27561209:192877 -k1,10270:10270391,27561209:192878 -k1,10270:12289756,27561209:192877 -k1,10270:13474194,27561209:192878 -k1,10270:14854583,27561209:192877 -k1,10270:15497037,27561209:192877 -k1,10270:17210350,27561209:192878 -k1,10270:20144598,27561209:192877 -k1,10270:22138404,27561209:192877 -k1,10270:23522727,27561209:192878 -k1,10270:24734689,27561209:192877 -k1,10270:27017510,27561209:192878 -k1,10270:30189654,27561209:192877 -k1,10270:32583029,27561209:0 -) -(1,10271:6630773,28402697:25952256,513147,126483 -k1,10270:9254823,28402697:220845 -k1,10270:12206554,28402697:220846 -k1,10270:13790548,28402697:220845 -k1,10270:14422304,28402697:220845 -k1,10270:17709579,28402697:220845 -k1,10270:19121870,28402697:220846 -k1,10270:21323213,28402697:220845 -k1,10270:23518788,28402697:220975 -k1,10270:25333469,28402697:220845 -k1,10270:27951621,28402697:220845 -k1,10270:30084808,28402697:220846 -k1,10270:31297213,28402697:220845 -k1,10270:32583029,28402697:0 -) -(1,10271:6630773,29244185:25952256,513147,134348 -k1,10270:9620580,29244185:205838 -k1,10270:11394038,29244185:205837 -k1,10270:13485347,29244185:205838 -k1,10270:14047045,29244185:205838 -k1,10270:15386000,29244185:205837 -k1,10270:19360813,29244185:205838 -k1,10270:20514302,29244185:205838 -k1,10270:22995549,29244185:205837 -k1,10270:25603937,29244185:205838 -k1,10270:26801335,29244185:205838 -k1,10270:27910258,29244185:205837 -k1,10270:31983375,29244185:205838 -k1,10270:32583029,29244185:0 -) -(1,10271:6630773,30085673:25952256,505283,126483 -k1,10270:9254229,30085673:220251 -k1,10270:13297850,30085673:220251 -k1,10270:16140851,30085673:220250 -k1,10270:17724251,30085673:220251 -k1,10270:18394079,30085673:220251 -k1,10270:19394251,30085673:220293 -k1,10270:21693304,30085673:220251 -k1,10270:23105000,30085673:220251 -k1,10270:25994531,30085673:220250 -k1,10270:28189445,30085673:220314 -k1,10270:30433448,30085673:220251 -k1,10270:32583029,30085673:0 -) -(1,10271:6630773,30927161:25952256,505283,134348 -k1,10270:8160135,30927161:166213 -k1,10270:8775924,30927161:166212 -k1,10270:11746423,30927161:166213 -k1,10270:13887335,30927161:166312 -k1,10270:17142260,30927161:166213 -k1,10270:18294133,30927161:166212 -k1,10270:20298631,30927161:166213 -k1,10270:22377840,30927161:166213 -k1,10270:23907201,30927161:166212 -k1,10270:24696826,30927161:166378 -k1,10270:28524534,30927161:166212 -k1,10270:30702801,30927161:166312 -k1,10270:32583029,30927161:0 -) -(1,10271:6630773,31768649:25952256,513147,134348 -k1,10270:8820167,31768649:200376 -k1,10270:10230992,31768649:200375 -k1,10270:15136198,31768649:200376 -k1,10270:18572741,31768649:200375 -k1,10270:20997409,31768649:200376 -k1,10270:24002070,31768649:200375 -k1,10270:26177049,31768649:200379 -k1,10270:30433448,31768649:200376 -k1,10270:32583029,31768649:0 -) -(1,10271:6630773,32610137:25952256,505283,95026 -k1,10270:7453850,32610137:220146 -k1,10270:8033789,32610137:220146 -k1,10270:9464385,32610137:220146 -k1,10270:11542477,32610137:220146 -k1,10270:14607541,32610137:220146 -k1,10270:16019133,32610137:220147 -k1,10270:17928797,32610137:220146 -k1,10270:19949872,32610137:220146 -k1,10270:21361463,32610137:220146 -k1,10270:25344031,32610137:220146 -k1,10270:28167267,32610137:220146 -k1,10270:30559932,32610137:220146 -k1,10270:32583029,32610137:0 -) -(1,10271:6630773,33451625:25952256,505283,95026 -k1,10271:32583029,33451625:23977656 -g1,10271:32583029,33451625 -) -] -(1,10278:32583029,45706769:0,0,0 -g1,10278:32583029,45706769 -) -) -] -(1,10278:6630773,47279633:25952256,0,0 -h1,10278:6630773,47279633:25952256,0,0 -) -] -(1,10278:4262630,4025873:0,0,0 -[1,10278:-473656,4025873:0,0,0 -(1,10278:-473656,-710413:0,0,0 -(1,10278:-473656,-710413:0,0,0 -g1,10278:-473656,-710413 -) -g1,10278:-473656,-710413 -) -] -) -] -!18037 -}191 -!12 -{192 -[1,10299:4262630,47279633:28320399,43253760,11795 -(1,10299:4262630,4025873:0,0,0 -[1,10299:-473656,4025873:0,0,0 -(1,10299:-473656,-710413:0,0,0 -(1,10299:-473656,-644877:0,0,0 -k1,10299:-473656,-644877:-65536 -) -(1,10299:-473656,4736287:0,0,0 -k1,10299:-473656,4736287:5209943 -) -g1,10299:-473656,-710413 -) -] -) -[1,10299:6630773,47279633:25952256,43253760,11795 -[1,10299:6630773,4812305:25952256,786432,0 -(1,10299:6630773,4812305:25952256,0,0 -(1,10299:6630773,4812305:25952256,0,0 -g1,10299:3078558,4812305 -[1,10299:3078558,4812305:0,0,0 -(1,10299:3078558,2439708:0,1703936,0 -k1,10299:1358238,2439708:-1720320 -(1,10278:1358238,2439708:1720320,1703936,0 -(1,10278:1358238,2439708:1179648,16384,0 -r1,10299:2537886,2439708:1179648,16384,0 -) -g1,10278:3062174,2439708 -(1,10278:3062174,2439708:16384,1703936,0 -[1,10278:3062174,2439708:25952256,1703936,0 -(1,10278:3062174,1915420:25952256,1179648,0 -(1,10278:3062174,1915420:16384,1179648,0 -r1,10299:3078558,1915420:16384,1179648,0 -) -k1,10278:29014430,1915420:25935872 -g1,10278:29014430,1915420 -) -] -) -) -) -] -[1,10299:3078558,4812305:0,0,0 -(1,10299:3078558,2439708:0,1703936,0 -g1,10299:29030814,2439708 -g1,10299:36135244,2439708 -(1,10278:36135244,2439708:1720320,1703936,0 -(1,10278:36135244,2439708:16384,1703936,0 -[1,10278:36135244,2439708:25952256,1703936,0 -(1,10278:36135244,1915420:25952256,1179648,0 -(1,10278:36135244,1915420:16384,1179648,0 -r1,10299:36151628,1915420:16384,1179648,0 -) -k1,10278:62087500,1915420:25935872 -g1,10278:62087500,1915420 -) -] -) -g1,10278:36675916,2439708 -(1,10278:36675916,2439708:1179648,16384,0 -r1,10299:37855564,2439708:1179648,16384,0 -) -) -k1,10299:3078556,2439708:-34777008 -) -] -[1,10299:3078558,4812305:0,0,0 -(1,10299:3078558,49800853:0,16384,2228224 -k1,10299:1358238,49800853:-1720320 -(1,10278:1358238,49800853:1720320,16384,2228224 -(1,10278:1358238,49800853:1179648,16384,0 -r1,10299:2537886,49800853:1179648,16384,0 -) -g1,10278:3062174,49800853 -(1,10278:3062174,52029077:16384,1703936,0 -[1,10278:3062174,52029077:25952256,1703936,0 -(1,10278:3062174,51504789:25952256,1179648,0 -(1,10278:3062174,51504789:16384,1179648,0 -r1,10299:3078558,51504789:16384,1179648,0 -) -k1,10278:29014430,51504789:25935872 -g1,10278:29014430,51504789 -) -] -) -) -) -] -[1,10299:3078558,4812305:0,0,0 -(1,10299:3078558,49800853:0,16384,2228224 -g1,10299:29030814,49800853 -g1,10299:36135244,49800853 -(1,10278:36135244,49800853:1720320,16384,2228224 -(1,10278:36135244,52029077:16384,1703936,0 -[1,10278:36135244,52029077:25952256,1703936,0 -(1,10278:36135244,51504789:25952256,1179648,0 -(1,10278:36135244,51504789:16384,1179648,0 -r1,10299:36151628,51504789:16384,1179648,0 -) -k1,10278:62087500,51504789:25935872 -g1,10278:62087500,51504789 -) -] -) -g1,10278:36675916,49800853 -(1,10278:36675916,49800853:1179648,16384,0 -r1,10299:37855564,49800853:1179648,16384,0 -) -) -k1,10299:3078556,49800853:-34777008 -) -] -g1,10299:6630773,4812305 -) -) -] -[1,10299:6630773,45706769:25952256,40108032,0 -(1,10299:6630773,45706769:25952256,40108032,0 -(1,10299:6630773,45706769:0,0,0 -g1,10299:6630773,45706769 -) -[1,10299:6630773,45706769:25952256,40108032,0 -[1,10278:6630773,11635422:25952256,6036685,0 -(1,10278:6630773,6604846:25952256,1137181,28311 -h1,10278:6630773,6604846:0,0,0 -k1,10278:20096848,6604846:12486181 -k1,10278:32583029,6604846:12486181 -) -(1,10278:6630773,7304782:25952256,32768,229376 -(1,10278:6630773,7304782:0,32768,229376 -(1,10278:6630773,7304782:5505024,32768,229376 -r1,10299:12135797,7304782:5505024,262144,229376 -) -k1,10278:6630773,7304782:-5505024 -) -(1,10278:6630773,7304782:25952256,32768,0 -r1,10299:32583029,7304782:25952256,32768,0 -) -) -(1,10278:6630773,9100478:25952256,909509,241827 -h1,10278:6630773,9100478:0,0,0 -g1,10278:9126908,9100478 -g1,10278:10294760,9100478 -g1,10278:16260240,9100478 -g1,10278:20729926,9100478 -g1,10278:23393571,9100478 -k1,10278:30227862,9100478:2355167 -k1,10278:32583029,9100478:2355167 -) -(1,10278:6630773,9800414:25952256,32768,0 -(1,10278:6630773,9800414:5505024,32768,0 -r1,10299:12135797,9800414:5505024,32768,0 -) -k1,10278:22359413,9800414:10223616 -k1,10278:32583029,9800414:10223616 -) -] -(1,10280:6630773,14528187:25952256,131072,0 -r1,10299:32583029,14528187:25952256,131072,0 -g1,10280:32583029,14528187 -g1,10280:32583029,14528187 -) -(1,10282:6630773,15848088:25952256,513147,134348 -k1,10282:8596853,15848088:1966080 -k1,10281:11936713,15848088:141703 -k1,10281:14411498,15848088:141703 -k1,10281:15084699,15848088:141704 -k1,10281:15582262,15848088:141703 -k1,10281:18032143,15848088:141703 -k1,10281:18833138,15848088:141703 -k1,10281:25791242,15848088:141704 -k1,10281:26952030,15848088:141703 -k1,10281:28629242,15848088:141703 -k1,10281:32583029,15848088:1966080 -) -(1,10282:6630773,16689576:25952256,513147,134348 -k1,10282:8596853,16689576:1966080 -k1,10281:9742013,16689576:197509 -k1,10281:10295382,16689576:197509 -k1,10281:13169381,16689576:197509 -k1,10281:14558335,16689576:197509 -k1,10281:17402843,16689576:197509 -k1,10281:18619437,16689576:197509 -k1,10281:22567571,16689576:197509 -k1,10281:27151405,16689576:197509 -k1,10281:32583029,16689576:1966080 -) -(1,10282:6630773,17531064:25952256,505283,7863 -g1,10282:8596853,17531064 -g1,10281:9447510,17531064 -g1,10281:11281207,17531064 -k1,10282:30616950,17531064:18703976 -g1,10282:32583030,17531064 -) -(1,10283:6630773,19158984:25952256,513147,126483 -k1,10283:19232037,19158984:12601264 -h1,10283:19232037,19158984:0,0,0 -g1,10283:21445187,19158984 -g1,10283:22276183,19158984 -g1,10283:23772370,19158984 -g1,10283:25163044,19158984 -g1,10283:27468600,19158984 -g1,10283:28344816,19158984 -g1,10283:30616949,19158984 -g1,10283:32583029,19158984 -) -(1,10284:6630773,20000472:25952256,513147,126483 -k1,10284:18169042,20000472:11538269 -h1,10283:18169042,20000472:0,0,0 -g1,10283:22210647,20000472 -g1,10283:23025914,20000472 -g1,10283:26370216,20000472 -g1,10283:29023113,20000472 -g1,10284:30616949,20000472 -g1,10284:32583029,20000472 -) -(1,10284:6630773,21235176:25952256,131072,0 -r1,10299:32583029,21235176:25952256,131072,0 -g1,10284:32583029,21235176 -g1,10284:34549109,21235176 -) -(1,10288:6630773,24042744:25952256,32768,229376 -(1,10288:6630773,24042744:0,32768,229376 -(1,10288:6630773,24042744:5505024,32768,229376 -r1,10299:12135797,24042744:5505024,262144,229376 -) -k1,10288:6630773,24042744:-5505024 -) -(1,10288:6630773,24042744:25952256,32768,0 -r1,10299:32583029,24042744:25952256,32768,0 -) -) -(1,10288:6630773,25647072:25952256,615776,151780 -(1,10288:6630773,25647072:1974731,573309,14155 -g1,10288:6630773,25647072 -g1,10288:8605504,25647072 -) -g1,10288:10904245,25647072 -g1,10288:11961996,25647072 -g1,10288:13695292,25647072 -k1,10288:32583029,25647072:15886712 -g1,10288:32583029,25647072 -) -(1,10291:6630773,26881776:25952256,513147,126483 -k1,10290:7553667,26881776:295059 -k1,10290:9882308,26881776:295059 -k1,10290:12925293,26881776:295060 -k1,10290:14088704,26881776:295059 -k1,10290:15858978,26881776:295059 -k1,10290:17529638,26881776:295059 -k1,10290:19337924,26881776:295060 -k1,10290:21066911,26881776:295059 -k1,10290:21776717,26881776:294963 -k1,10290:24851158,26881776:295059 -k1,10290:25774052,26881776:295059 -k1,10290:27272353,26881776:295060 -k1,10290:29985035,26881776:295059 -k1,10290:31450567,26881776:295059 -k1,10290:32583029,26881776:0 -) -(1,10291:6630773,27723264:25952256,513147,134348 -k1,10290:8418376,27723264:176073 -k1,10290:9924831,27723264:176074 -k1,10290:10752332,27723264:176073 -k1,10290:13252967,27723264:176073 -k1,10290:14448126,27723264:176074 -k1,10290:16404812,27723264:176073 -k1,10290:17240177,27723264:176073 -k1,10290:20021962,27723264:176074 -k1,10290:23155675,27723264:176073 -k1,10290:23959583,27723264:176073 -k1,10290:25154742,27723264:176074 -k1,10290:26636948,27723264:176073 -k1,10290:28134882,27723264:176073 -k1,10290:28970248,27723264:176074 -k1,10290:30165406,27723264:176073 -k1,10290:32583029,27723264:0 -) -(1,10291:6630773,28564752:25952256,513147,134348 -k1,10290:7744612,28564752:245487 -k1,10290:9122561,28564752:245487 -k1,10290:11106063,28564752:245487 -k1,10290:12160919,28564752:245486 -k1,10290:14141799,28564752:245487 -k1,10290:16878309,28564752:245487 -k1,10290:20034250,28564752:245487 -k1,10290:21471182,28564752:245487 -k1,10290:23047050,28564752:245487 -k1,10290:24672724,28564752:245486 -k1,10290:27242773,28564752:245487 -k1,10290:28507345,28564752:245487 -k1,10290:32583029,28564752:0 -) -(1,10291:6630773,29406240:25952256,513147,126483 -k1,10290:7588628,29406240:290699 -k1,10290:8467840,29406240:290699 -k1,10290:9386374,29406240:290699 -k1,10290:10696158,29406240:290699 -k1,10290:13228188,29406240:290699 -k1,10290:14840748,29406240:290699 -k1,10290:16301920,29406240:290699 -k1,10290:17725081,29406240:290699 -k1,10290:19627310,29406240:290699 -k1,10290:21248390,29406240:290699 -k1,10290:22190517,29406240:290699 -k1,10290:24442053,29406240:290699 -k1,10290:26015947,29406240:290699 -k1,10290:29506114,29406240:290699 -k1,10290:32583029,29406240:0 -) -(1,10291:6630773,30247728:25952256,513147,126483 -k1,10290:8065302,30247728:243084 -k1,10290:10714868,30247728:243084 -k1,10290:11911501,30247728:243084 -k1,10290:13287046,30247728:243083 -k1,10290:14596401,30247728:243084 -k1,10290:17570370,30247728:243084 -k1,10290:18832539,30247728:243084 -k1,10290:22458591,30247728:243084 -k1,10290:23773844,30247728:243084 -k1,10290:25667124,30247728:243083 -k1,10290:28916344,30247728:243084 -k1,10290:31923737,30247728:243084 -k1,10290:32583029,30247728:0 -) -(1,10291:6630773,31089216:25952256,513147,134348 -g1,10290:10053063,31089216 -g1,10290:13278089,31089216 -g1,10290:14668763,31089216 -g1,10290:17100804,31089216 -g1,10290:18567499,31089216 -g1,10290:20049923,31089216 -g1,10290:20663995,31089216 -k1,10291:32583029,31089216:8834910 -g1,10291:32583029,31089216 -) -(1,10292:6630773,33896784:25952256,32768,229376 -(1,10292:6630773,33896784:0,32768,229376 -(1,10292:6630773,33896784:5505024,32768,229376 -r1,10299:12135797,33896784:5505024,262144,229376 -) -k1,10292:6630773,33896784:-5505024 -) -(1,10292:6630773,33896784:25952256,32768,0 -r1,10299:32583029,33896784:25952256,32768,0 -) -) -(1,10292:6630773,35501112:25952256,606339,161218 -(1,10292:6630773,35501112:1974731,582746,14155 -g1,10292:6630773,35501112 -g1,10292:8605504,35501112 -) -k1,10292:32583030,35501112:20355220 -g1,10292:32583030,35501112 -) -(1,10294:6630773,36805940:25952256,564462,147783 -(1,10294:6630773,36805940:2450326,534184,12975 -g1,10294:6630773,36805940 -g1,10294:9081099,36805940 -) -g1,10294:12049749,36805940 -g1,10294:13033052,36805940 -g1,10294:17211366,36805940 -k1,10294:32583029,36805940:11465127 -g1,10294:32583029,36805940 -) -(1,10297:6630773,38040644:25952256,513147,134348 -k1,10296:8021306,38040644:193846 -k1,10296:9816853,38040644:193847 -k1,10296:12312323,38040644:193846 -k1,10296:13744145,38040644:193847 -k1,10296:14597283,38040644:193846 -k1,10296:16978722,38040644:193847 -k1,10296:18455763,38040644:193846 -k1,10296:21255321,38040644:193847 -k1,10296:22132052,38040644:193846 -k1,10296:25935622,38040644:193847 -k1,10296:26780896,38040644:193846 -k1,10296:27389580,38040644:193841 -k1,10296:28114924,38040644:193847 -k1,10296:30867296,38040644:193846 -k1,10297:32583029,38040644:0 -) -(1,10297:6630773,38882132:25952256,505283,134348 -k1,10296:8421772,38882132:209615 -k1,10296:10012231,38882132:209615 -k1,10296:10753343,38882132:209615 -k1,10296:13423180,38882132:209615 -k1,10296:15520232,38882132:209615 -k1,10296:16748932,38882132:209615 -k1,10296:18293515,38882132:209615 -k1,10296:22141033,38882132:209615 -k1,10296:24048686,38882132:209615 -k1,10296:25955028,38882132:209615 -k1,10296:29567272,38882132:209615 -k1,10296:30428315,38882132:209615 -k1,10296:31052763,38882132:209605 -k1,10296:32583029,38882132:0 -) -(1,10297:6630773,39723620:25952256,513147,102891 -k1,10296:7503198,39723620:220997 -k1,10296:8471960,39723620:220996 -k1,10296:11024073,39723620:220997 -k1,10296:14179772,39723620:220997 -k1,10296:15016807,39723620:220997 -k1,10296:16839503,39723620:220996 -k1,10296:20217369,39723620:220997 -k1,10296:20896463,39723620:220997 -k1,10296:21648956,39723620:220996 -k1,10296:23155769,39723620:220997 -k1,10296:24395851,39723620:220997 -k1,10296:25951816,39723620:220997 -k1,10296:29810715,39723620:220996 -k1,10296:30979363,39723620:220997 -k1,10297:32583029,39723620:0 -) -(1,10297:6630773,40565108:25952256,505283,134348 -k1,10296:8549886,40565108:198793 -k1,10296:10244865,40565108:198792 -k1,10296:11728164,40565108:198793 -k1,10296:13059418,40565108:198792 -k1,10296:14005977,40565108:198793 -k1,10296:16353695,40565108:198792 -k1,10296:18019184,40565108:198793 -k1,10296:18979504,40565108:198792 -k1,10296:19534157,40565108:198793 -k1,10296:21605969,40565108:198793 -k1,10296:24000872,40565108:198792 -k1,10296:25587062,40565108:198793 -k1,10296:27384932,40565108:198792 -k1,10296:27998567,40565108:198792 -k1,10296:31107814,40565108:198793 -k1,10296:32583029,40565108:0 -) -(1,10297:6630773,41406596:25952256,513147,102891 -k1,10296:8521421,41406596:223412 -k1,10296:10330804,41406596:223412 -k1,10296:12376772,41406596:223412 -k1,10296:14108823,41406596:223412 -k1,10296:17255141,41406596:223412 -k1,10296:18461593,41406596:223412 -k1,10296:21790101,41406596:223412 -k1,10296:23204958,41406596:223412 -k1,10296:28428112,41406596:223412 -k1,10296:30536995,41406596:223412 -k1,10296:32583029,41406596:0 -) -(1,10297:6630773,42248084:25952256,513147,134348 -k1,10296:7303282,42248084:214412 -k1,10296:10147654,42248084:214412 -k1,10296:12521477,42248084:214412 -k1,10296:14437859,42248084:214412 -k1,10296:16644565,42248084:214412 -k1,10296:17806628,42248084:214412 -k1,10296:19040124,42248084:214411 -k1,10296:21834688,42248084:214412 -k1,10296:26875171,42248084:214412 -k1,10296:27741011,42248084:214412 -k1,10296:28703189,42248084:214412 -k1,10296:31315563,42248084:214412 -k1,10297:32583029,42248084:0 -) -(1,10297:6630773,43089572:25952256,513147,134348 -k1,10296:7735289,43089572:185701 -k1,10296:9309043,43089572:185701 -k1,10296:11740662,43089572:185700 -k1,10296:13624401,43089572:185701 -k1,10296:14165962,43089572:185701 -k1,10296:16931815,43089572:185701 -k1,10296:17649012,43089572:185700 -k1,10296:20152721,43089572:185701 -k1,10296:21817570,43089572:185701 -k1,10296:22359131,43089572:185701 -k1,10296:23677950,43089572:185701 -k1,10296:27449125,43089572:185700 -k1,10296:30545280,43089572:185701 -k1,10296:31835263,43089572:185701 -k1,10296:32583029,43089572:0 -) -(1,10297:6630773,43931060:25952256,505283,126483 -g1,10296:9116553,43931060 -g1,10296:10040610,43931060 -g1,10296:11524345,43931060 -g1,10296:13103762,43931060 -g1,10296:14435453,43931060 -g1,10296:16231139,43931060 -g1,10296:17239738,43931060 -g1,10296:18570774,43931060 -g1,10296:21846263,43931060 -g1,10296:23964386,43931060 -g1,10296:24578458,43931060 -k1,10297:32583029,43931060:6382555 -g1,10297:32583029,43931060 -) -(1,10299:6630773,44772548:25952256,513147,134348 -h1,10298:6630773,44772548:983040,0,0 -k1,10298:10776471,44772548:297424 -k1,10298:12178177,44772548:297424 -k1,10298:13223367,44772548:297424 -k1,10298:15678236,44772548:297424 -k1,10298:16661822,44772548:297424 -k1,10298:19068196,44772548:297425 -k1,10298:20048505,44772548:297424 -k1,10298:22367715,44772548:297424 -k1,10298:25245291,44772548:297424 -k1,10298:27029727,44772548:297424 -k1,10298:28676537,44772548:297424 -k1,10298:29921612,44772548:297424 -k1,10298:32583029,44772548:0 -) -(1,10299:6630773,45614036:25952256,513147,134348 -k1,10298:9442322,45614036:253023 -k1,10298:11811504,45614036:253024 -k1,10298:14999229,45614036:253023 -k1,10298:16199904,45614036:253024 -k1,10298:18832539,45614036:253023 -k1,10298:21996017,45614036:253024 -k1,10298:24479230,45614036:253023 -k1,10298:25190350,45614036:253023 -k1,10298:25974871,45614036:253024 -k1,10298:27562862,45614036:253023 -k1,10298:28467314,45614036:253024 -k1,10298:30943974,45614036:253023 -k1,10298:32583029,45614036:0 -) -] -(1,10299:32583029,45706769:0,0,0 -g1,10299:32583029,45706769 -) -) -] -(1,10299:6630773,47279633:25952256,485622,11795 -(1,10299:6630773,47279633:25952256,485622,11795 -(1,10299:6630773,47279633:0,0,0 -v1,10299:6630773,47279633:0,0,0 -) -g1,10299:6830002,47279633 -k1,10299:31387652,47279633:24557650 -) -) -] -(1,10299:4262630,4025873:0,0,0 -[1,10299:-473656,4025873:0,0,0 -(1,10299:-473656,-710413:0,0,0 -(1,10299:-473656,-710413:0,0,0 -g1,10299:-473656,-710413 -) -g1,10299:-473656,-710413 -) -] -) -] -!15952 -}192 -Input:1468:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1469:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!196 -{193 -[1,10309:4262630,47279633:28320399,43253760,0 -(1,10309:4262630,4025873:0,0,0 -[1,10309:-473656,4025873:0,0,0 -(1,10309:-473656,-710413:0,0,0 -(1,10309:-473656,-644877:0,0,0 -k1,10309:-473656,-644877:-65536 -) -(1,10309:-473656,4736287:0,0,0 -k1,10309:-473656,4736287:5209943 -) -g1,10309:-473656,-710413 -) -] -) -[1,10309:6630773,47279633:25952256,43253760,0 -[1,10309:6630773,4812305:25952256,786432,0 -(1,10309:6630773,4812305:25952256,505283,134348 -(1,10309:6630773,4812305:25952256,505283,134348 -g1,10309:3078558,4812305 -[1,10309:3078558,4812305:0,0,0 -(1,10309:3078558,2439708:0,1703936,0 -k1,10309:1358238,2439708:-1720320 -(1,10278:1358238,2439708:1720320,1703936,0 -(1,10278:1358238,2439708:1179648,16384,0 -r1,10309:2537886,2439708:1179648,16384,0 -) -g1,10278:3062174,2439708 -(1,10278:3062174,2439708:16384,1703936,0 -[1,10278:3062174,2439708:25952256,1703936,0 -(1,10278:3062174,1915420:25952256,1179648,0 -(1,10278:3062174,1915420:16384,1179648,0 -r1,10309:3078558,1915420:16384,1179648,0 -) -k1,10278:29014430,1915420:25935872 -g1,10278:29014430,1915420 -) -] -) -) -) -] -[1,10309:3078558,4812305:0,0,0 -(1,10309:3078558,2439708:0,1703936,0 -g1,10309:29030814,2439708 -g1,10309:36135244,2439708 -(1,10278:36135244,2439708:1720320,1703936,0 -(1,10278:36135244,2439708:16384,1703936,0 -[1,10278:36135244,2439708:25952256,1703936,0 -(1,10278:36135244,1915420:25952256,1179648,0 -(1,10278:36135244,1915420:16384,1179648,0 -r1,10309:36151628,1915420:16384,1179648,0 -) -k1,10278:62087500,1915420:25935872 -g1,10278:62087500,1915420 -) -] -) -g1,10278:36675916,2439708 -(1,10278:36675916,2439708:1179648,16384,0 -r1,10309:37855564,2439708:1179648,16384,0 -) -) -k1,10309:3078556,2439708:-34777008 -) -] -[1,10309:3078558,4812305:0,0,0 -(1,10309:3078558,49800853:0,16384,2228224 -k1,10309:1358238,49800853:-1720320 -(1,10278:1358238,49800853:1720320,16384,2228224 -(1,10278:1358238,49800853:1179648,16384,0 -r1,10309:2537886,49800853:1179648,16384,0 -) -g1,10278:3062174,49800853 -(1,10278:3062174,52029077:16384,1703936,0 -[1,10278:3062174,52029077:25952256,1703936,0 -(1,10278:3062174,51504789:25952256,1179648,0 -(1,10278:3062174,51504789:16384,1179648,0 -r1,10309:3078558,51504789:16384,1179648,0 -) -k1,10278:29014430,51504789:25935872 -g1,10278:29014430,51504789 -) -] -) -) -) -] -[1,10309:3078558,4812305:0,0,0 -(1,10309:3078558,49800853:0,16384,2228224 -g1,10309:29030814,49800853 -g1,10309:36135244,49800853 -(1,10278:36135244,49800853:1720320,16384,2228224 -(1,10278:36135244,52029077:16384,1703936,0 -[1,10278:36135244,52029077:25952256,1703936,0 -(1,10278:36135244,51504789:25952256,1179648,0 -(1,10278:36135244,51504789:16384,1179648,0 -r1,10309:36151628,51504789:16384,1179648,0 -) -k1,10278:62087500,51504789:25935872 -g1,10278:62087500,51504789 -) -] -) -g1,10278:36675916,49800853 -(1,10278:36675916,49800853:1179648,16384,0 -r1,10309:37855564,49800853:1179648,16384,0 -) -) -k1,10309:3078556,49800853:-34777008 -) -] -g1,10309:6630773,4812305 -k1,10309:20781963,4812305:12955813 -g1,10309:22168704,4812305 -g1,10309:22817510,4812305 -g1,10309:26131665,4812305 -g1,10309:28614824,4812305 -g1,10309:30094627,4812305 -) -) -] -[1,10309:6630773,45706769:25952256,40108032,0 -(1,10309:6630773,45706769:25952256,40108032,0 -(1,10309:6630773,45706769:0,0,0 -g1,10309:6630773,45706769 -) -[1,10309:6630773,45706769:25952256,40108032,0 -(1,10299:6630773,6254097:25952256,513147,134348 -k1,10298:7563559,6254097:281358 -k1,10298:8200776,6254097:281357 -k1,10298:11939158,6254097:281358 -k1,10298:13417202,6254097:281357 -k1,10298:15856661,6254097:281358 -k1,10298:18113928,6254097:281357 -k1,10298:21678640,6254097:281358 -k1,10298:22627153,6254097:281357 -k1,10298:23323271,6254097:281275 -k1,10298:26515083,6254097:281358 -k1,10298:27327937,6254097:281357 -k1,10298:29477071,6254097:281358 -k1,10298:31812326,6254097:281357 -k1,10298:32583029,6254097:0 -) -(1,10299:6630773,7095585:25952256,513147,134348 -k1,10298:9562057,7095585:163043 -k1,10298:10672751,7095585:163043 -k1,10298:15775242,7095585:163042 -k1,10298:16383238,7095585:163007 -k1,10298:18976356,7095585:163043 -k1,10298:22005944,7095585:163043 -k1,10298:25034220,7095585:163042 -k1,10298:27981232,7095585:163043 -k1,10298:30702801,7095585:163043 -k1,10298:32583029,7095585:0 -) -(1,10299:6630773,7937073:25952256,513147,134348 -k1,10298:7810072,7937073:187739 -k1,10298:11574111,7937073:187739 -k1,10298:12413277,7937073:187738 -k1,10298:14371143,7937073:187739 -k1,10298:15174920,7937073:187739 -k1,10298:16381744,7937073:187739 -k1,10298:18339610,7937073:187739 -k1,10298:19186640,7937073:187738 -k1,10298:20440650,7937073:187739 -k1,10298:22645587,7937073:187739 -k1,10298:23965133,7937073:187739 -k1,10298:25674618,7937073:187739 -k1,10298:27340848,7937073:187738 -k1,10298:28796053,7937073:187739 -k1,10298:30002877,7937073:187739 -k1,10298:32583029,7937073:0 -) -(1,10299:6630773,8778561:25952256,505283,134348 -k1,10298:8046956,8778561:224738 -k1,10298:9337965,8778561:224738 -k1,10298:12275894,8778561:224738 -k1,10298:13183517,8778561:224738 -k1,10298:16094576,8778561:224738 -k1,10298:20398930,8778561:224738 -k1,10298:22181458,8778561:224737 -k1,10298:23397756,8778561:224738 -k1,10298:25582020,8778561:224738 -k1,10298:27524457,8778561:224738 -k1,10298:28435357,8778561:224738 -k1,10298:30040283,8778561:224738 -k1,10298:31601955,8778561:224738 -k1,10299:32583029,8778561:0 -) -(1,10299:6630773,9620049:25952256,505283,134348 -k1,10298:8457589,9620049:223150 -k1,10298:9490109,9620049:223150 -k1,10298:11415229,9620049:223150 -k1,10298:14548833,9620049:223150 -k1,10298:16780006,9620049:223150 -k1,10298:18499343,9620049:223150 -k1,10298:19854954,9620049:223149 -k1,10298:22318780,9620049:223150 -k1,10298:24239968,9620049:223150 -k1,10298:27273957,9620049:223150 -k1,10298:28124942,9620049:223150 -k1,10298:30815523,9620049:223150 -k1,10298:32583029,9620049:0 -) -(1,10299:6630773,10461537:25952256,513147,134348 -g1,10298:7849087,10461537 -g1,10298:10534097,10461537 -g1,10298:11392618,10461537 -g1,10298:14502301,10461537 -g1,10298:17485499,10461537 -g1,10298:20243254,10461537 -g1,10298:22322711,10461537 -g1,10298:24727227,10461537 -g1,10298:25945541,10461537 -g1,10298:28310735,10461537 -k1,10299:32583029,10461537:2441873 -g1,10299:32583029,10461537 -) -(1,10301:6630773,11303025:25952256,513147,134348 -h1,10300:6630773,11303025:983040,0,0 -k1,10300:8247241,11303025:145840 -k1,10300:9494140,11303025:145894 -k1,10300:12923387,11303025:145893 -k1,10300:14016932,11303025:145894 -k1,10300:18820469,11303025:145893 -k1,10300:20360314,11303025:145894 -k1,10300:20920997,11303025:145840 -k1,10300:21598388,11303025:145894 -k1,10300:26164684,11303025:145893 -k1,10300:29672575,11303025:145894 -k1,10300:32583029,11303025:0 -) -(1,10301:6630773,12144513:25952256,505283,134348 -k1,10300:8175821,12144513:260542 -k1,10300:9873568,12144513:260542 -k1,10300:11801346,12144513:260542 -k1,10300:14261276,12144513:260542 -k1,10300:16217233,12144513:260541 -k1,10300:19362670,12144513:260542 -k1,10300:24093423,12144513:260542 -k1,10300:25454970,12144513:260542 -k1,10300:29325890,12144513:260542 -k1,10300:32583029,12144513:0 -) -(1,10301:6630773,12986001:25952256,513147,134348 -k1,10300:7988352,12986001:166134 -k1,10300:8510345,12986001:166133 -k1,10300:10922398,12986001:166134 -k1,10300:12036182,12986001:166133 -k1,10300:13698503,12986001:166134 -k1,10300:15268417,12986001:166133 -k1,10300:17496969,12986001:166134 -k1,10300:18610754,12986001:166134 -k1,10300:21861011,12986001:166133 -k1,10300:23901475,12986001:166134 -k1,10300:28514881,12986001:166133 -k1,10300:31591469,12986001:166134 -k1,10300:32583029,12986001:0 -) -(1,10301:6630773,13827489:25952256,505283,134348 -k1,10300:9597172,13827489:182430 -k1,10300:12338127,13827489:182429 -k1,10300:14400768,13827489:182413 -k1,10300:15266083,13827489:182430 -k1,10300:17150483,13827489:182430 -k1,10300:21134000,13827489:182429 -k1,10300:22507875,13827489:182430 -k1,10300:24451913,13827489:182430 -k1,10300:25247105,13827489:182430 -k1,10300:26448619,13827489:182429 -k1,10300:31101260,13827489:182430 -k1,10301:32583029,13827489:0 -) -(1,10301:6630773,14668977:25952256,513147,126483 -k1,10300:8104595,14668977:164413 -k1,10300:8896844,14668977:164414 -k1,10300:10753397,14668977:164413 -k1,10300:12615192,14668977:164413 -k1,10300:13950079,14668977:164414 -k1,10300:15451426,14668977:164413 -k1,10300:17146106,14668977:164414 -k1,10300:17993404,14668977:164413 -k1,10300:19706433,14668977:164413 -k1,10300:20522275,14668977:164414 -k1,10300:22656045,14668977:164413 -k1,10300:24033529,14668977:164413 -k1,10300:26093900,14668977:164414 -k1,10300:27754500,14668977:164413 -k1,10300:29486535,14668977:164414 -k1,10300:30588768,14668977:164413 -k1,10301:32583029,14668977:0 -) -(1,10301:6630773,15510465:25952256,505283,134348 -k1,10300:8825137,15510465:174544 -k1,10300:10493247,15510465:174544 -k1,10300:11353953,15510465:174544 -k1,10300:14192536,15510465:174544 -k1,10300:15565734,15510465:174544 -k1,10300:17626404,15510465:174544 -k1,10300:21932993,15510465:174544 -k1,10300:23173808,15510465:174544 -k1,10300:24313697,15510465:174544 -k1,10300:27736861,15510465:174544 -k1,10300:28562833,15510465:174544 -k1,10300:30791275,15510465:174544 -k1,10300:32583029,15510465:0 -) -(1,10301:6630773,16351953:25952256,513147,134348 -k1,10300:7818464,16351953:168606 -k1,10300:10567222,16351953:168606 -k1,10300:13773422,16351953:168607 -k1,10300:14810380,16351953:168606 -k1,10300:16083268,16351953:168606 -k1,10300:18221231,16351953:168606 -k1,10300:21300291,16351953:168606 -k1,10300:23883243,16351953:168606 -k1,10300:25619471,16351953:168607 -k1,10300:28220118,16351953:168606 -k1,10300:31391584,16351953:168606 -k1,10300:32583029,16351953:0 -) -(1,10301:6630773,17193441:25952256,513147,126483 -k1,10300:8572903,17193441:240160 -k1,10300:10309249,17193441:240159 -k1,10300:14350497,17193441:240160 -k1,10300:16445325,17193441:240159 -k1,10300:17494855,17193441:240160 -k1,10300:18817013,17193441:240159 -k1,10300:22991955,17193441:240160 -k1,10300:24799735,17193441:240159 -k1,10300:26536082,17193441:240160 -k1,10300:30577329,17193441:240159 -k1,10300:31809049,17193441:240160 -k1,10301:32583029,17193441:0 -) -(1,10301:6630773,18034929:25952256,513147,126483 -k1,10300:8404178,18034929:205128 -k1,10300:12532290,18034929:205127 -k1,10300:14305039,18034929:205128 -k1,10300:16949416,18034929:205127 -k1,10300:18386621,18034929:205128 -k1,10300:20840944,18034929:205127 -k1,10300:21515965,18034929:205128 -k1,10300:22252589,18034929:205127 -k1,10300:23117009,18034929:205128 -k1,10300:25431085,18034929:205127 -k1,10300:26922029,18034929:205128 -k1,10300:29757116,18034929:205127 -k1,10300:30613672,18034929:205128 -k1,10300:32583029,18034929:0 -) -(1,10301:6630773,18876417:25952256,513147,134348 -g1,10300:9740456,18876417 -g1,10300:11507306,18876417 -g1,10300:13200756,18876417 -g1,10300:14713327,18876417 -g1,10300:16362212,18876417 -g1,10300:18074667,18876417 -g1,10300:18629756,18876417 -g1,10300:21195490,18876417 -k1,10301:32583029,18876417:7879397 -g1,10301:32583029,18876417 -) -(1,10303:6630773,19717905:25952256,513147,134348 -h1,10302:6630773,19717905:983040,0,0 -k1,10302:9046008,19717905:160797 -k1,10302:10790811,19717905:160798 -k1,10302:12189583,19717905:160797 -k1,10302:13009673,19717905:160798 -k1,10302:15772249,19717905:160797 -k1,10302:17263428,19717905:160798 -k1,10302:18443310,19717905:160797 -k1,10302:22006736,19717905:160797 -k1,10302:25018350,19717905:160798 -k1,10302:25940675,19717905:160797 -k1,10302:26457333,19717905:160798 -k1,10302:29198282,19717905:160797 -k1,10302:31129207,19717905:160798 -k1,10302:31821501,19717905:160797 -k1,10302:32583029,19717905:0 -) -(1,10303:6630773,20559393:25952256,513147,134348 -k1,10302:11385864,20559393:155774 -k1,10302:12935589,20559393:155774 -k1,10302:14904089,20559393:155774 -k1,10302:16843098,20559393:155774 -k1,10302:18734265,20559393:155774 -k1,10302:19245899,20559393:155774 -k1,10302:22097168,20559393:155773 -k1,10302:23121294,20559393:155774 -k1,10302:24268628,20559393:155774 -k1,10302:25490673,20559393:155774 -k1,10302:26611792,20559393:155774 -k1,10302:29259900,20559393:155774 -k1,10302:30983295,20559393:155774 -k1,10303:32583029,20559393:0 -) -(1,10303:6630773,21400881:25952256,513147,134348 -k1,10302:7784862,21400881:163840 -k1,10302:8561464,21400881:163840 -k1,10302:9513702,21400881:163840 -k1,10302:11065594,21400881:163839 -k1,10302:11880862,21400881:163840 -k1,10302:13866603,21400881:163840 -k1,10302:14796559,21400881:163840 -k1,10302:15748797,21400881:163840 -k1,10302:18518348,21400881:163840 -k1,10302:19814650,21400881:163840 -k1,10302:22303052,21400881:163840 -k1,10302:23925722,21400881:163839 -k1,10302:27274612,21400881:163840 -k1,10302:28859273,21400881:163840 -k1,10302:30806348,21400881:163840 -k1,10303:32583029,21400881:0 -) -(1,10303:6630773,22242369:25952256,513147,134348 -k1,10302:10094940,22242369:201785 -k1,10302:10828223,22242369:201786 -k1,10302:13788418,22242369:201785 -k1,10302:15384154,22242369:201785 -k1,10302:18496394,22242369:201786 -k1,10302:20752077,22242369:201785 -k1,10302:22643380,22242369:201785 -k1,10302:27671236,22242369:201785 -k1,10302:28532314,22242369:201786 -k1,10302:31575085,22242369:201785 -k1,10303:32583029,22242369:0 -) -(1,10303:6630773,23083857:25952256,513147,134348 -k1,10302:8328090,23083857:202441 -k1,10302:9062027,23083857:202440 -k1,10302:12249633,23083857:202441 -k1,10302:14203850,23083857:202440 -k1,10302:17316745,23083857:202441 -k1,10302:20030526,23083857:202441 -k1,10302:20849004,23083857:202440 -k1,10302:23891120,23083857:202441 -k1,10302:28911112,23083857:202440 -k1,10302:30494397,23083857:202441 -k1,10302:32583029,23083857:0 -) -(1,10303:6630773,23925345:25952256,513147,134348 -k1,10302:7568418,23925345:254760 -k1,10302:10141843,23925345:254761 -k1,10302:11082765,23925345:254760 -k1,10302:14306961,23925345:254760 -k1,10302:15031614,23925345:254760 -k1,10302:15817872,23925345:254761 -k1,10302:17138903,23925345:254760 -k1,10302:19944324,23925345:254760 -k1,10302:20850512,23925345:254760 -k1,10302:23176211,23925345:254761 -k1,10302:25316442,23925345:254760 -k1,10302:28151354,23925345:254760 -k1,10302:29057542,23925345:254760 -k1,10302:30404788,23925345:254761 -k1,10302:32227169,23925345:254760 -k1,10302:32583029,23925345:0 -) -(1,10303:6630773,24766833:25952256,513147,126483 -k1,10302:7768578,24766833:203262 -k1,10302:8631133,24766833:203263 -k1,10302:12551597,24766833:203262 -k1,10302:14609529,24766833:203263 -k1,10302:15622161,24766833:203262 -k1,10302:16844508,24766833:203262 -k1,10302:19247159,24766833:203263 -k1,10302:20109713,24766833:203262 -k1,10302:23096944,24766833:203262 -k1,10302:28299949,24766833:203263 -k1,10302:29131046,24766833:203262 -k1,10302:30353394,24766833:203263 -k1,10302:31923737,24766833:203262 -k1,10302:32583029,24766833:0 -) -(1,10303:6630773,25608321:25952256,513147,134348 -k1,10302:9785414,25608321:244187 -k1,10302:12217193,25608321:244187 -k1,10302:15428851,25608321:244188 -k1,10302:16956233,25608321:244187 -k1,10302:21449774,25608321:244187 -k1,10302:23074149,25608321:244187 -k1,10302:24655270,25608321:244187 -k1,10302:25647224,25608321:244188 -k1,10302:29862237,25608321:244187 -k1,10302:30722462,25608321:244187 -k1,10302:32583029,25608321:0 -) -(1,10303:6630773,26449809:25952256,513147,126483 -k1,10302:7450573,26449809:203762 -k1,10302:8010195,26449809:203762 -k1,10302:9969668,26449809:203763 -k1,10302:13888011,26449809:203762 -k1,10302:17083492,26449809:203762 -k1,10302:18278814,26449809:203762 -k1,10302:22538599,26449809:203762 -k1,10302:24891942,26449809:203762 -k1,10302:25698636,26449809:203763 -k1,10302:26262191,26449809:203762 -k1,10302:27676403,26449809:203762 -k1,10302:29738111,26449809:203762 -k1,10302:32583029,26449809:0 -) -(1,10303:6630773,27291297:25952256,505283,102891 -k1,10302:8038593,27291297:216375 -k1,10302:9944487,27291297:216376 -k1,10302:12135513,27291297:216426 -k1,10302:14612311,27291297:216461 -k1,10302:18652056,27291297:216375 -k1,10302:20402630,27291297:216376 -k1,10302:24669130,27291297:216375 -k1,10302:26248654,27291297:216375 -k1,10302:26914606,27291297:216375 -k1,10302:29374280,27291297:216376 -k1,10302:31391584,27291297:216375 -k1,10302:32583029,27291297:0 -) -(1,10303:6630773,28132785:25952256,513147,134348 -g1,10302:9378697,28132785 -g1,10302:11918872,28132785 -g1,10302:14928940,28132785 -g1,10302:16052227,28132785 -g1,10302:17785654,28132785 -g1,10302:20630572,28132785 -g1,10302:23961111,28132785 -g1,10302:25351785,28132785 -g1,10302:27704527,28132785 -k1,10303:32583029,28132785:2903902 -g1,10303:32583029,28132785 -) -(1,10304:6630773,30224045:25952256,555811,147783 -(1,10304:6630773,30224045:2450326,534184,12975 -g1,10304:6630773,30224045 -g1,10304:9081099,30224045 -) -g1,10304:10960475,30224045 -g1,10304:14533236,30224045 -k1,10304:32583029,30224045:16166092 -g1,10304:32583029,30224045 -) -(1,10307:6630773,31458749:25952256,513147,134348 -k1,10306:8042872,31458749:215412 -k1,10306:12390328,31458749:215411 -k1,10306:13265032,31458749:215412 -k1,10306:16390898,31458749:215412 -k1,10306:17137806,31458749:215411 -k1,10306:19692198,31458749:215412 -k1,10306:20926695,31458749:215412 -k1,10306:22968595,31458749:215412 -k1,10306:23843298,31458749:215411 -k1,10306:25077795,31458749:215412 -k1,10306:27637430,31458749:215412 -k1,10306:29608551,31458749:215411 -k1,10306:31015408,31458749:215412 -k1,10307:32583029,31458749:0 -) -(1,10307:6630773,32300237:25952256,505283,134348 -k1,10306:8935193,32300237:139766 -k1,10306:12153185,32300237:139766 -k1,10306:12908989,32300237:139766 -k1,10306:14067840,32300237:139766 -k1,10306:15789644,32300237:139765 -k1,10306:16378987,32300237:139766 -k1,10306:19426586,32300237:139766 -k1,10306:22697662,32300237:139766 -k1,10306:24812383,32300237:140121 -k1,10306:27886851,32300237:139766 -k1,10306:28484714,32300237:139766 -k1,10306:29155977,32300237:139766 -k1,10306:30494397,32300237:139766 -k1,10307:32583029,32300237:0 -) -(1,10307:6630773,33141725:25952256,513147,134348 -k1,10306:8469117,33141725:148826 -k1,10306:12257812,33141725:148825 -k1,10306:12762498,33141725:148826 -k1,10306:14044441,33141725:148825 -k1,10306:16185561,33141725:148826 -k1,10306:18156942,33141725:148825 -k1,10306:19324853,33141725:148826 -k1,10306:23605723,33141725:148825 -k1,10306:24421705,33141725:148826 -k1,10306:24985323,33141725:148775 -k1,10306:28218272,33141725:148825 -k1,10306:30158852,33141725:148826 -k1,10306:32583029,33141725:0 -) -(1,10307:6630773,33983213:25952256,513147,134348 -k1,10306:7298726,33983213:209856 -k1,10306:8040078,33983213:209855 -k1,10306:11175461,33983213:209856 -k1,10306:12779922,33983213:209855 -k1,10306:13641206,33983213:209856 -k1,10306:16344051,33983213:209855 -k1,10306:18012738,33983213:209856 -k1,10306:19552974,33983213:209855 -k1,10306:22846954,33983213:209856 -k1,10306:25922043,33983213:209855 -k1,10306:27236181,33983213:209856 -k1,10306:28193802,33983213:209855 -k1,10306:29062950,33983213:209856 -k1,10306:30626779,33983213:209855 -k1,10307:32583029,33983213:0 -) -(1,10307:6630773,34824701:25952256,513147,134348 -k1,10306:7895618,34824701:245760 -k1,10306:9740456,34824701:245760 -k1,10306:11177661,34824701:245760 -k1,10306:15102612,34824701:245760 -k1,10306:18213606,34824701:245760 -k1,10306:19551851,34824701:245760 -k1,10306:20153471,34824701:245760 -k1,10306:23324758,34824701:245760 -k1,10306:25056219,34824701:245760 -k1,10306:28233404,34824701:245760 -k1,10306:29138456,34824701:245760 -k1,10306:31635378,34824701:245760 -k1,10306:32583029,34824701:0 -) -(1,10307:6630773,35666189:25952256,513147,134348 -k1,10306:9130382,35666189:239272 -k1,10306:10388739,35666189:239272 -k1,10306:13390353,35666189:239271 -k1,10306:15346013,35666189:239272 -k1,10306:16244577,35666189:239272 -k1,10306:17970861,35666189:239272 -k1,10306:21190710,35666189:239272 -k1,10306:26256052,35666189:239271 -k1,10306:30030991,35666189:239272 -k1,10306:31664214,35666189:239272 -k1,10306:32583029,35666189:0 -) -(1,10307:6630773,36507677:25952256,513147,134348 -k1,10306:9201423,36507677:263127 -k1,10306:10852603,36507677:263127 -k1,10306:13535318,36507677:263126 -k1,10306:15179289,36507677:263127 -k1,10306:17454371,36507677:263127 -k1,10306:22543569,36507677:263127 -k1,10306:23754347,36507677:263127 -k1,10306:27747127,36507677:263126 -k1,10306:30920708,36507677:263127 -k1,10306:31835263,36507677:263127 -k1,10306:32583029,36507677:0 -) -(1,10307:6630773,37349165:25952256,505283,134348 -k1,10306:10298571,37349165:235022 -k1,10306:12515402,37349165:235022 -k1,10306:13401852,37349165:235022 -k1,10306:14555689,37349165:235022 -k1,10306:16178764,37349165:235022 -k1,10306:18659705,37349165:235022 -k1,10306:20592764,37349165:235021 -k1,10306:23738240,37349165:235022 -k1,10306:24964822,37349165:235022 -k1,10306:27517852,37349165:235022 -k1,10306:28380709,37349165:235022 -k1,10306:31281736,37349165:235022 -k1,10306:32168186,37349165:235022 -k1,10307:32583029,37349165:0 -) -(1,10307:6630773,38190653:25952256,513147,134348 -k1,10306:8522360,38190653:221730 -k1,10306:11654544,38190653:221730 -k1,10306:12980557,38190653:221731 -k1,10306:14301981,38190653:221730 -k1,10306:17549508,38190653:221730 -k1,10306:18962683,38190653:221730 -k1,10306:21832723,38190653:221730 -k1,10306:24341004,38190653:221730 -k1,10306:25178773,38190653:221731 -k1,10306:26027682,38190653:221730 -k1,10306:27706277,38190653:221730 -k1,10306:31142548,38190653:221730 -k1,10307:32583029,38190653:0 -) -(1,10307:6630773,39032141:25952256,513147,134348 -k1,10306:9199683,39032141:230586 -k1,10306:10715430,39032141:230586 -k1,10306:12018184,39032141:230585 -k1,10306:13940910,39032141:230586 -k1,10306:15600836,39032141:230586 -k1,10306:16490714,39032141:230586 -k1,10306:18663131,39032141:230585 -k1,10306:19425214,39032141:230586 -k1,10306:22127818,39032141:230586 -k1,10306:23044566,39032141:230586 -k1,10306:25970647,39032141:230585 -k1,10306:27300927,39032141:230586 -k1,10306:31391584,39032141:230586 -k1,10306:32583029,39032141:0 -) -(1,10307:6630773,39873629:25952256,505283,134348 -k1,10306:8587568,39873629:186668 -k1,10306:11796102,39873629:186669 -k1,10306:14354518,39873629:186668 -k1,10306:15350556,39873629:186668 -k1,10306:16556310,39873629:186669 -k1,10306:21095224,39873629:186668 -k1,10306:24297859,39873629:186668 -k1,10306:25675973,39873629:186669 -k1,10306:26478679,39873629:186668 -k1,10306:28417124,39873629:186668 -k1,10306:30301175,39873629:186669 -k1,10306:31773659,39873629:186668 -k1,10306:32583029,39873629:0 -) -(1,10307:6630773,40715117:25952256,505283,134348 -k1,10306:7805938,40715117:156080 -k1,10306:10772857,40715117:156080 -k1,10306:12615834,40715117:156080 -k1,10306:13813935,40715117:156079 -k1,10306:15426880,40715117:156080 -k1,10306:16602045,40715117:156080 -k1,10306:18681606,40715117:156080 -k1,10306:19252486,40715117:156037 -k1,10306:21988718,40715117:156080 -k1,10306:24190831,40715117:156079 -k1,10306:25365996,40715117:156080 -k1,10306:28106816,40715117:156080 -k1,10306:31188423,40715117:156080 -k1,10306:32583029,40715117:0 -) -(1,10307:6630773,41556605:25952256,513147,134348 -k1,10306:11052369,41556605:220738 -k1,10306:13247836,41556605:220867 -k1,10306:14096410,41556605:220739 -k1,10306:15336233,41556605:220738 -k1,10306:16924052,41556605:220738 -k1,10306:17811946,41556605:220738 -k1,10306:20371008,41556605:220738 -k1,10306:21006568,41556605:220717 -k1,10306:23807458,41556605:220738 -k1,10306:27346284,41556605:220739 -k1,10306:29613056,41556605:220738 -k1,10306:31923737,41556605:220738 -k1,10307:32583029,41556605:0 -) -(1,10307:6630773,42398093:25952256,513147,134348 -k1,10306:9036045,42398093:240618 -k1,10306:12061288,42398093:240618 -k1,10306:13493351,42398093:240618 -k1,10306:16687020,42398093:240617 -k1,10306:17586930,42398093:240618 -k1,10306:19216911,42398093:240618 -k1,10306:21025806,42398093:240618 -k1,10306:22457869,42398093:240618 -k1,10306:23156584,42398093:240618 -k1,10306:23928698,42398093:240617 -k1,10306:25447923,42398093:240618 -k1,10306:28983036,42398093:240618 -k1,10306:29985182,42398093:240618 -k1,10306:32583029,42398093:0 -) -(1,10307:6630773,43239581:25952256,513147,134348 -k1,10306:7458370,43239581:199762 -k1,10306:8677217,43239581:199762 -k1,10306:10244060,43239581:199762 -k1,10306:11110978,43239581:199762 -k1,10306:12577551,43239581:199762 -k1,10306:13645665,43239581:199762 -k1,10306:14949709,43239581:199762 -k1,10306:16241956,43239581:199762 -k1,10306:19021870,43239581:199762 -k1,10306:21250626,43239581:199762 -k1,10306:23951242,43239581:199762 -k1,10306:25193026,43239581:199762 -k1,10306:25846297,43239581:199762 -k1,10306:27237504,43239581:199762 -k1,10306:30651807,43239581:199762 -k1,10306:31266411,43239581:199761 -k1,10307:32583029,43239581:0 -) -(1,10307:6630773,44081069:25952256,513147,134348 -k1,10306:8441230,44081069:153707 -k1,10306:9614022,44081069:153707 -k1,10306:13843413,44081069:153707 -k1,10306:16469138,44081069:153707 -k1,10306:17695014,44081069:153707 -k1,10306:18867806,44081069:153707 -k1,10306:21831697,44081069:153707 -k1,10306:23845971,44081069:153707 -k1,10306:25691818,44081069:153707 -k1,10306:26622127,44081069:153707 -k1,10306:27918782,44081069:153707 -k1,10306:30211584,44081069:153707 -k1,10306:30981329,44081069:153707 -k1,10306:32583029,44081069:0 -) -(1,10307:6630773,44922557:25952256,355205,7863 -k1,10307:32583030,44922557:24081204 -g1,10307:32583030,44922557 -) -] -(1,10309:32583029,45706769:0,0,0 -g1,10309:32583029,45706769 -) -) -] -(1,10309:6630773,47279633:25952256,0,0 -h1,10309:6630773,47279633:25952256,0,0 -) -] -(1,10309:4262630,4025873:0,0,0 -[1,10309:-473656,4025873:0,0,0 -(1,10309:-473656,-710413:0,0,0 -(1,10309:-473656,-710413:0,0,0 -g1,10309:-473656,-710413 -) -g1,10309:-473656,-710413 -) -] -) -] -!24865 -}193 -Input:1470:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1471:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1472:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1473:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1474:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1475:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1476:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!656 -{194 -[1,10324:4262630,47279633:28320399,43253760,0 -(1,10324:4262630,4025873:0,0,0 -[1,10324:-473656,4025873:0,0,0 -(1,10324:-473656,-710413:0,0,0 -(1,10324:-473656,-644877:0,0,0 -k1,10324:-473656,-644877:-65536 -) -(1,10324:-473656,4736287:0,0,0 -k1,10324:-473656,4736287:5209943 -) -g1,10324:-473656,-710413 -) -] -) -[1,10324:6630773,47279633:25952256,43253760,0 -[1,10324:6630773,4812305:25952256,786432,0 -(1,10324:6630773,4812305:25952256,505283,134348 -(1,10324:6630773,4812305:25952256,505283,134348 -g1,10324:3078558,4812305 -[1,10324:3078558,4812305:0,0,0 -(1,10324:3078558,2439708:0,1703936,0 -k1,10324:1358238,2439708:-1720320 -(1,10278:1358238,2439708:1720320,1703936,0 -(1,10278:1358238,2439708:1179648,16384,0 -r1,10324:2537886,2439708:1179648,16384,0 -) -g1,10278:3062174,2439708 -(1,10278:3062174,2439708:16384,1703936,0 -[1,10278:3062174,2439708:25952256,1703936,0 -(1,10278:3062174,1915420:25952256,1179648,0 -(1,10278:3062174,1915420:16384,1179648,0 -r1,10324:3078558,1915420:16384,1179648,0 -) -k1,10278:29014430,1915420:25935872 -g1,10278:29014430,1915420 -) -] -) -) -) -] -[1,10324:3078558,4812305:0,0,0 -(1,10324:3078558,2439708:0,1703936,0 -g1,10324:29030814,2439708 -g1,10324:36135244,2439708 -(1,10278:36135244,2439708:1720320,1703936,0 -(1,10278:36135244,2439708:16384,1703936,0 -[1,10278:36135244,2439708:25952256,1703936,0 -(1,10278:36135244,1915420:25952256,1179648,0 -(1,10278:36135244,1915420:16384,1179648,0 -r1,10324:36151628,1915420:16384,1179648,0 -) -k1,10278:62087500,1915420:25935872 -g1,10278:62087500,1915420 -) -] -) -g1,10278:36675916,2439708 -(1,10278:36675916,2439708:1179648,16384,0 -r1,10324:37855564,2439708:1179648,16384,0 -) -) -k1,10324:3078556,2439708:-34777008 -) -] -[1,10324:3078558,4812305:0,0,0 -(1,10324:3078558,49800853:0,16384,2228224 -k1,10324:1358238,49800853:-1720320 -(1,10278:1358238,49800853:1720320,16384,2228224 -(1,10278:1358238,49800853:1179648,16384,0 -r1,10324:2537886,49800853:1179648,16384,0 -) -g1,10278:3062174,49800853 -(1,10278:3062174,52029077:16384,1703936,0 -[1,10278:3062174,52029077:25952256,1703936,0 -(1,10278:3062174,51504789:25952256,1179648,0 -(1,10278:3062174,51504789:16384,1179648,0 -r1,10324:3078558,51504789:16384,1179648,0 -) -k1,10278:29014430,51504789:25935872 -g1,10278:29014430,51504789 -) -] -) -) -) -] -[1,10324:3078558,4812305:0,0,0 -(1,10324:3078558,49800853:0,16384,2228224 -g1,10324:29030814,49800853 -g1,10324:36135244,49800853 -(1,10278:36135244,49800853:1720320,16384,2228224 -(1,10278:36135244,52029077:16384,1703936,0 -[1,10278:36135244,52029077:25952256,1703936,0 -(1,10278:36135244,51504789:25952256,1179648,0 -(1,10278:36135244,51504789:16384,1179648,0 -r1,10324:36151628,51504789:16384,1179648,0 -) -k1,10278:62087500,51504789:25935872 -g1,10278:62087500,51504789 -) -] -) -g1,10278:36675916,49800853 -(1,10278:36675916,49800853:1179648,16384,0 -r1,10324:37855564,49800853:1179648,16384,0 -) -) -k1,10324:3078556,49800853:-34777008 -) -] -g1,10324:6630773,4812305 -g1,10324:6630773,4812305 -g1,10324:9714897,4812305 -k1,10324:31387653,4812305:21672756 -) -) -] -[1,10324:6630773,45706769:25952256,40108032,0 -(1,10324:6630773,45706769:25952256,40108032,0 -(1,10324:6630773,45706769:0,0,0 -g1,10324:6630773,45706769 -) -[1,10324:6630773,45706769:25952256,40108032,0 -(1,10309:6630773,6254097:25952256,505283,134348 -h1,10308:6630773,6254097:983040,0,0 -k1,10308:9321845,6254097:217743 -k1,10308:11829417,6254097:217744 -k1,10308:14888146,6254097:217743 -k1,10308:15867417,6254097:217743 -k1,10308:16441020,6254097:217743 -k1,10308:19238916,6254097:217744 -k1,10308:20741165,6254097:217743 -k1,10308:22059913,6254097:217743 -k1,10308:23787606,6254097:217743 -k1,10308:26747376,6254097:217744 -k1,10308:27956679,6254097:217743 -k1,10308:30217179,6254097:217743 -k1,10308:32583029,6254097:0 -) -(1,10309:6630773,7095585:25952256,505283,134348 -k1,10308:7681433,7095585:262262 -k1,10308:9274075,7095585:262261 -k1,10308:13235844,7095585:262262 -k1,10308:16024518,7095585:262261 -k1,10308:17478225,7095585:262262 -k1,10308:20704679,7095585:262261 -k1,10308:21322801,7095585:262262 -k1,10308:24165214,7095585:262261 -k1,10308:25821427,7095585:262262 -(1,10308:25821427,7095585:0,452978,115847 -r1,10324:28993387,7095585:3171960,568825,115847 -k1,10308:25821427,7095585:-3171960 -) -(1,10308:25821427,7095585:3171960,452978,115847 -k1,10308:25821427,7095585:3277 -h1,10308:28990110,7095585:0,411205,112570 -) -k1,10308:29255648,7095585:262261 -k1,10308:31563944,7095585:262262 -k1,10308:32583029,7095585:0 -) -(1,10309:6630773,7937073:25952256,505283,134348 -k1,10308:9687551,7937073:215792 -k1,10308:12193171,7937073:215792 -k1,10308:15366603,7937073:215792 -k1,10308:18678316,7937073:215792 -k1,10308:19249968,7937073:215792 -k1,10308:22045913,7937073:215793 -k1,10308:23789349,7937073:215792 -k1,10308:25024226,7937073:215792 -k1,10308:27529846,7937073:215792 -k1,10308:30586624,7937073:215792 -k1,10308:31563944,7937073:215792 -k1,10308:32583029,7937073:0 -) -(1,10309:6630773,8778561:25952256,505283,134348 -k1,10308:9442670,8778561:231745 -k1,10308:10325843,8778561:231745 -k1,10308:11576674,8778561:231746 -k1,10308:13878701,8778561:231745 -k1,10308:15558792,8778561:231745 -k1,10308:16515365,8778561:231745 -k1,10308:18031617,8778561:231746 -k1,10308:19643550,8778561:231745 -k1,10308:20979577,8778561:231745 -k1,10308:21959088,8778561:231745 -k1,10308:24989877,8778561:231746 -k1,10308:27681844,8778561:231745 -k1,10308:31563944,8778561:231745 -k1,10308:32583029,8778561:0 -) -(1,10309:6630773,9620049:25952256,513147,134348 -k1,10308:8532930,9620049:164142 -k1,10308:9356365,9620049:164143 -k1,10308:10539592,9620049:164142 -k1,10308:14403241,9620049:164142 -k1,10308:16112723,9620049:164143 -k1,10308:19187319,9620049:164142 -k1,10308:20166729,9620049:164142 -k1,10308:21397142,9620049:164142 -k1,10308:23634189,9620049:164143 -k1,10308:24564447,9620049:164142 -k1,10308:25747674,9620049:164142 -k1,10308:28937614,9620049:164143 -k1,10308:30293201,9620049:164142 -k1,10308:32583029,9620049:0 -) -(1,10309:6630773,10461537:25952256,513147,126483 -k1,10308:9308876,10461537:296525 -k1,10308:10221439,10461537:296525 -k1,10308:12026604,10461537:296526 -k1,10308:13992986,10461537:296525 -k1,10308:15981651,10461537:296525 -k1,10308:17269736,10461537:296525 -k1,10308:18983806,10461537:296526 -k1,10308:21938471,10461537:296525 -k1,10308:22851034,10461537:296525 -k1,10308:24749259,10461537:296525 -k1,10308:26743167,10461537:296526 -k1,10308:29569382,10461537:296525 -k1,10308:31246095,10461537:296525 -k1,10308:32583029,10461537:0 -) -(1,10309:6630773,11303025:25952256,513147,134348 -k1,10308:9137287,11303025:265838 -k1,10308:10086009,11303025:265837 -k1,10308:11099613,11303025:265838 -k1,10308:14140901,11303025:265838 -k1,10308:15022776,11303025:265837 -k1,10308:17275666,11303025:265838 -k1,10308:20379212,11303025:265837 -k1,10308:23179983,11303025:265838 -k1,10308:27301959,11303025:265838 -k1,10308:28672078,11303025:265837 -k1,10308:29685682,11303025:265838 -k1,10308:32583029,11303025:0 -) -(1,10309:6630773,12144513:25952256,513147,134348 -k1,10308:8072365,12144513:250147 -k1,10308:9608329,12144513:250148 -k1,10308:12832500,12144513:250147 -k1,10308:14476598,12144513:250147 -k1,10308:17422241,12144513:250147 -(1,10308:17422241,12144513:0,452978,115847 -r1,10324:20242490,12144513:2820249,568825,115847 -k1,10308:17422241,12144513:-2820249 -) -(1,10308:17422241,12144513:2820249,452978,115847 -k1,10308:17422241,12144513:3277 -h1,10308:20239213,12144513:0,411205,112570 -) -k1,10308:20492638,12144513:250148 -k1,10308:22478178,12144513:250147 -k1,10308:23084185,12144513:250147 -k1,10308:25683142,12144513:250147 -k1,10308:28695633,12144513:250148 -k1,10308:31635378,12144513:250147 -k1,10308:32583029,12144513:0 -) -(1,10309:6630773,12986001:25952256,513147,134348 -k1,10308:7878780,12986001:228922 -k1,10308:11180030,12986001:228922 -k1,10308:12976573,12986001:228922 -k1,10308:14490002,12986001:228923 -k1,10308:16604395,12986001:228922 -k1,10308:17701669,12986001:228922 -k1,10308:21020614,12986001:228922 -k1,10308:22197187,12986001:228922 -k1,10308:23815472,12986001:228922 -k1,10308:26250992,12986001:228923 -k1,10308:27095952,12986001:228922 -k1,10308:29603561,12986001:228922 -h1,10308:31544737,12986001:0,0,0 -k1,10308:31773659,12986001:228922 -k1,10308:32583029,12986001:0 -) -(1,10309:6630773,13827489:25952256,473825,134348 -g1,10308:8328155,13827489 -h1,10308:9125073,13827489:0,0,0 -k1,10309:32583029,13827489:23284286 -g1,10309:32583029,13827489 -) -(1,10310:6630773,15918749:25952256,555811,104529 -(1,10310:6630773,15918749:2450326,534184,12975 -g1,10310:6630773,15918749 -g1,10310:9081099,15918749 -) -g1,10310:13170022,15918749 -g1,10310:17460075,15918749 -g1,10310:19027303,15918749 -k1,10310:32583029,15918749:12301367 -g1,10310:32583029,15918749 -) -(1,10314:6630773,17153453:25952256,505283,134348 -k1,10313:7429961,17153453:171353 -k1,10313:8016130,17153453:171326 -k1,10313:10207959,17153453:171354 -k1,10313:13080051,17153453:171353 -k1,10313:13782901,17153453:171353 -k1,10313:14973340,17153453:171354 -k1,10313:17701252,17153453:171353 -k1,10313:19791500,17153453:171354 -k1,10313:22873307,17153453:171353 -k1,10313:24036221,17153453:171354 -k1,10313:27118683,17153453:171353 -k1,10313:30155271,17153453:171354 -k1,10313:31318184,17153453:171353 -k1,10313:32583029,17153453:0 -) -(1,10314:6630773,17994941:25952256,513147,126483 -k1,10313:7549205,17994941:259140 -k1,10313:11007813,17994941:259140 -k1,10313:12458398,17994941:259140 -k1,10313:14280572,17994941:259140 -k1,10313:16937019,17994941:259140 -k1,10313:18143810,17994941:259140 -k1,10313:20095090,17994941:259140 -k1,10313:23475054,17994941:259140 -k1,10313:26524717,17994941:259140 -k1,10313:28068363,17994941:259140 -k1,10313:29431785,17994941:259140 -k1,10313:30438691,17994941:259140 -k1,10313:32583029,17994941:0 -) -(1,10314:6630773,18836429:25952256,505283,126483 -k1,10313:8168047,18836429:269808 -k1,10313:9208558,18836429:269808 -k1,10313:9893138,18836429:269737 -k1,10313:12511756,18836429:269808 -k1,10313:13432992,18836429:269808 -k1,10313:15418533,18836429:269808 -k1,10313:17327396,18836429:269808 -k1,10313:20381173,18836429:269808 -k1,10313:21375809,18836429:269808 -k1,10313:22930123,18836429:269808 -k1,10313:24580119,18836429:269808 -k1,10313:25954209,18836429:269808 -k1,10313:26971783,18836429:269808 -k1,10313:28754817,18836429:269808 -k1,10313:29640663,18836429:269808 -k1,10313:30929556,18836429:269808 -k1,10313:32583029,18836429:0 -) -(1,10314:6630773,19677917:25952256,513147,126483 -k1,10313:8116897,19677917:248149 -k1,10313:9051209,19677917:248150 -k1,10313:11606881,19677917:248149 -k1,10313:12269825,19677917:248101 -k1,10313:15543771,19677917:248149 -k1,10313:16983366,19677917:248150 -k1,10313:18794549,19677917:248149 -k1,10313:21832566,19677917:248149 -(1,10313:21832566,19677917:0,452978,115847 -r1,10324:25004526,19677917:3171960,568825,115847 -k1,10313:21832566,19677917:-3171960 -) -(1,10313:21832566,19677917:3171960,452978,115847 -k1,10313:21832566,19677917:3277 -h1,10313:25001249,19677917:0,411205,112570 -) -k1,10313:25252676,19677917:248150 -k1,10313:26032322,19677917:248149 -k1,10313:27793698,19677917:248150 -k1,10313:28693275,19677917:248149 -k1,10313:30317681,19677917:248150 -k1,10313:31757275,19677917:248149 -k1,10314:32583029,19677917:0 -) -(1,10314:6630773,20519405:25952256,513147,134348 -k1,10313:8175508,20519405:183552 -k1,10313:11269515,20519405:183553 -k1,10313:12737573,20519405:183552 -k1,10313:13912685,20519405:183552 -k1,10313:16430629,20519405:183552 -k1,10313:19351621,20519405:183553 -k1,10313:20151211,20519405:183552 -k1,10313:21353848,20519405:183552 -k1,10313:23031621,20519405:183552 -k1,10313:23630001,20519405:183537 -k1,10313:26087652,20519405:183552 -k1,10313:26899040,20519405:183553 -k1,10313:29887533,20519405:183552 -k1,10314:32583029,20519405:0 -) -(1,10314:6630773,21360893:25952256,505283,134348 -(1,10313:6630773,21360893:0,452978,122846 -r1,10324:12968140,21360893:6337367,575824,122846 -k1,10313:6630773,21360893:-6337367 -) -(1,10313:6630773,21360893:6337367,452978,122846 -k1,10313:6630773,21360893:3277 -h1,10313:12964863,21360893:0,411205,112570 -) -k1,10313:13219378,21360893:251238 -k1,10313:14002113,21360893:251238 -k1,10313:15766576,21360893:251237 -k1,10313:16669242,21360893:251238 -k1,10313:18889837,21360893:251238 -k1,10313:22225199,21360893:251238 -k1,10313:24259672,21360893:251238 -k1,10313:26246303,21360893:251238 -k1,10313:28921717,21360893:251237 -k1,10313:29631052,21360893:251238 -k1,10313:30413787,21360893:251238 -k1,10313:32583029,21360893:0 -) -(1,10314:6630773,22202381:25952256,505283,122846 -k1,10313:7514603,22202381:232402 -k1,10313:8839490,22202381:232402 -k1,10313:11496069,22202381:232402 -k1,10313:13855770,22202381:232402 -k1,10313:16180738,22202381:232403 -k1,10313:17512834,22202381:232402 -(1,10313:17512834,22202381:0,452978,122846 -r1,10324:23850201,22202381:6337367,575824,122846 -k1,10313:17512834,22202381:-6337367 -) -(1,10313:17512834,22202381:6337367,452978,122846 -k1,10313:17512834,22202381:3277 -h1,10313:23846924,22202381:0,411205,112570 -) -k1,10313:24082603,22202381:232402 -k1,10313:25506450,22202381:232402 -(1,10313:25506450,22202381:0,452978,122846 -r1,10324:31492105,22202381:5985655,575824,122846 -k1,10313:25506450,22202381:-5985655 -) -(1,10313:25506450,22202381:5985655,452978,122846 -k1,10313:25506450,22202381:3277 -h1,10313:31488828,22202381:0,411205,112570 -) -k1,10313:31931601,22202381:232402 -k1,10313:32583029,22202381:0 -) -(1,10314:6630773,23043869:25952256,505283,134348 -g1,10313:8799359,23043869 -g1,10313:9681473,23043869 -g1,10313:12097130,23043869 -k1,10314:32583030,23043869:17401776 -g1,10314:32583030,23043869 -) -v1,10316:6630773,24409645:0,393216,0 -(1,10317:6630773,26687812:25952256,2671383,616038 -g1,10317:6630773,26687812 -(1,10317:6630773,26687812:25952256,2671383,616038 -(1,10317:6630773,27303850:25952256,3287421,0 -[1,10317:6630773,27303850:25952256,3287421,0 -(1,10317:6630773,27277636:25952256,3234993,0 -r1,10324:6656987,27277636:26214,3234993,0 -[1,10317:6656987,27277636:25899828,3234993,0 -(1,10317:6656987,26687812:25899828,2055345,0 -[1,10317:7246811,26687812:24720180,2055345,0 -(1,10317:7246811,25719841:24720180,1087374,134348 -k1,10316:8624580,25719841:168066 -k1,10316:9941492,25719841:168066 -(1,10316:9941492,25719841:0,452978,115847 -r1,10324:11354893,25719841:1413401,568825,115847 -k1,10316:9941492,25719841:-1413401 -) -(1,10316:9941492,25719841:1413401,452978,115847 -k1,10316:9941492,25719841:3277 -h1,10316:11351616,25719841:0,411205,112570 -) -k1,10316:11522959,25719841:168066 -k1,10316:12342453,25719841:168066 -k1,10316:13897261,25719841:168066 -k1,10316:14900910,25719841:168065 -k1,10316:16088061,25719841:168066 -k1,10316:17644180,25719841:168066 -k1,10316:19640700,25719841:168066 -k1,10316:20756417,25719841:168066 -(1,10316:20756417,25719841:0,452978,122846 -r1,10324:27093784,25719841:6337367,575824,122846 -k1,10316:20756417,25719841:-6337367 -) -(1,10316:20756417,25719841:6337367,452978,122846 -k1,10316:20756417,25719841:3277 -h1,10316:27090507,25719841:0,411205,112570 -) -k1,10316:27261850,25719841:168066 -k1,10316:28621361,25719841:168066 -(1,10316:28621361,25719841:0,452978,115847 -r1,10324:31793321,25719841:3171960,568825,115847 -k1,10316:28621361,25719841:-3171960 -) -(1,10316:28621361,25719841:3171960,452978,115847 -k1,10316:28621361,25719841:3277 -h1,10316:31790044,25719841:0,411205,112570 -) -k1,10316:31966991,25719841:0 -) -(1,10317:7246811,26561329:24720180,505283,126483 -g1,10316:8637485,26561329 -g1,10316:11146858,26561329 -g1,10316:12894703,26561329 -g1,10316:14113017,26561329 -g1,10316:15808433,26561329 -g1,10316:16623700,26561329 -g1,10316:17842014,26561329 -g1,10316:19425363,26561329 -g1,10316:21595260,26561329 -k1,10317:31966991,26561329:8705150 -g1,10317:31966991,26561329 -) -] -) -] -r1,10324:32583029,27277636:26214,3234993,0 -) -] -) -) -g1,10317:32583029,26687812 -) -h1,10317:6630773,27303850:0,0,0 -(1,10320:6630773,28669626:25952256,513147,134348 -h1,10319:6630773,28669626:983040,0,0 -k1,10319:8284358,28669626:255702 -k1,10319:11450571,28669626:255759 -k1,10319:12810612,28669626:255759 -k1,10319:13814137,28669626:255759 -k1,10319:16807335,28669626:255759 -k1,10319:18919074,28669626:255759 -k1,10319:20742454,28669626:255759 -k1,10319:23611132,28669626:255758 -k1,10319:24549776,28669626:255759 -k1,10319:26373156,28669626:255759 -k1,10319:28963307,28669626:255759 -k1,10319:30697558,28669626:255759 -k1,10320:32583029,28669626:0 -) -(1,10320:6630773,29511114:25952256,513147,134348 -k1,10319:8507725,29511114:235930 -k1,10319:11715056,29511114:235929 -k1,10319:13518607,29511114:235930 -k1,10319:16367456,29511114:235929 -k1,10319:19965383,29511114:235930 -k1,10319:21010682,29511114:235929 -k1,10319:22265697,29511114:235930 -k1,10319:25255449,29511114:235929 -k1,10319:26828313,29511114:235930 -k1,10319:29356036,29511114:235929 -k1,10319:32583029,29511114:0 -) -(1,10320:6630773,30352602:25952256,513147,102891 -k1,10319:9530205,30352602:140366 -k1,10319:10321999,30352602:140366 -k1,10319:11210131,30352602:140366 -k1,10319:14308137,30352602:140366 -k1,10319:16390990,30352602:140366 -k1,10319:20645050,30352602:140366 -k1,10319:21804501,30352602:140366 -k1,10319:24243215,30352602:140366 -k1,10319:26059992,30352602:140366 -k1,10319:29690150,30352602:140366 -k1,10319:31021961,30352602:140366 -k1,10320:32583029,30352602:0 -) -(1,10320:6630773,31194090:25952256,513147,134348 -k1,10319:8627374,31194090:203536 -k1,10319:9822470,31194090:203536 -k1,10319:11092277,31194090:203536 -k1,10319:14079782,31194090:203536 -k1,10319:14969480,31194090:203536 -k1,10319:16494877,31194090:203536 -k1,10319:17357706,31194090:203537 -k1,10319:18580327,31194090:203536 -k1,10319:21837841,31194090:203536 -k1,10319:24460966,31194090:203536 -k1,10319:27635904,31194090:203536 -k1,10319:29478495,31194090:203536 -k1,10319:30213528,31194090:203536 -k1,10319:31483335,31194090:203536 -k1,10320:32583029,31194090:0 -) -(1,10320:6630773,32035578:25952256,513147,134348 -k1,10319:8546664,32035578:274869 -k1,10319:9507695,32035578:274869 -k1,10319:11162751,32035578:274868 -k1,10319:12429180,32035578:274869 -k1,10319:15488018,32035578:274869 -k1,10319:19820221,32035578:274869 -k1,10319:20711127,32035578:274868 -k1,10319:23921354,32035578:274869 -k1,10319:25573790,32035578:274869 -k1,10319:26981121,32035578:274869 -k1,10319:28786255,32035578:274868 -k1,10319:31391584,32035578:274869 -k1,10320:32583029,32035578:0 -) -(1,10320:6630773,32877066:25952256,513147,173670 -(1,10319:6630773,32877066:1181614,473825,0 -) -(1,10319:8117325,33050736:355205,473825,0 -) -k1,10319:9391219,32877066:209590 -k1,10319:10070701,32877066:209589 -k1,10319:10811788,32877066:209590 -k1,10319:12891776,32877066:209590 -k1,10319:13752793,32877066:209589 -k1,10319:15931740,32877066:209590 -k1,10319:19051784,32877066:209590 -k1,10319:20828994,32877066:209589 -k1,10319:23060370,32877066:209590 -k1,10319:24850688,32877066:209590 -k1,10319:26373619,32877066:209589 -k1,10319:28469335,32877066:209590 -k1,10319:32583029,32877066:0 -) -(1,10320:6630773,33718554:25952256,505283,126483 -k1,10319:8817955,33718554:244695 -k1,10319:10823602,33718554:244695 -k1,10319:12669997,33718554:244695 -k1,10319:14496076,33718554:244695 -k1,10319:15873233,33718554:244695 -k1,10319:16865694,33718554:244695 -k1,10319:20068029,33718554:244695 -k1,10319:20995609,33718554:244695 -k1,10319:22594278,33718554:244695 -k1,10319:24233579,33718554:244695 -k1,10319:25129702,33718554:244695 -k1,10319:27517424,33718554:244695 -k1,10319:28486947,33718554:244695 -k1,10319:29189739,33718554:244695 -k1,10319:29965931,33718554:244695 -k1,10319:31931601,33718554:244695 -k1,10319:32583029,33718554:0 -) -(1,10320:6630773,34560042:25952256,513147,134348 -k1,10319:8852660,34560042:252530 -k1,10319:12015643,34560042:252529 -k1,10319:13835794,34560042:252530 -k1,10319:16701243,34560042:252529 -k1,10319:17995795,34560042:252530 -k1,10319:19120692,34560042:262443 -k1,10319:19783423,34560042:252476 -k1,10319:22124585,34560042:252530 -k1,10319:23837256,34560042:252529 -k1,10319:25108871,34560042:252530 -k1,10319:28187968,34560042:252529 -k1,10319:28971995,34560042:252530 -k1,10319:32583029,34560042:0 -) -(1,10320:6630773,35401530:25952256,513147,134348 -k1,10319:10524048,35401530:255372 -k1,10319:11257177,35401530:255372 -k1,10319:12531634,35401530:255372 -k1,10319:14368389,35401530:255371 -k1,10319:15615321,35401530:255372 -k1,10319:18828333,35401530:255372 -k1,10319:21994159,35401530:255372 -k1,10319:23353813,35401530:255372 -k1,10319:24356950,35401530:255371 -k1,10319:25966296,35401530:255372 -k1,10319:28022597,35401530:255372 -k1,10319:31015408,35401530:255372 -k1,10319:32583029,35401530:0 -) -(1,10320:6630773,36243018:25952256,513147,134348 -k1,10319:9246970,36243018:176947 -k1,10319:10991538,36243018:176947 -k1,10319:13178475,36243018:176948 -k1,10319:15953269,36243018:176947 -k1,10319:19064918,36243018:176947 -k1,10319:21781385,36243018:176947 -k1,10319:22949892,36243018:176947 -k1,10319:24074490,36243018:176947 -k1,10319:25853138,36243018:176948 -k1,10319:28940539,36243018:176947 -k1,10319:30403302,36243018:176947 -k1,10319:32583029,36243018:0 -) -(1,10320:6630773,37084506:25952256,505283,7863 -k1,10320:32583029,37084506:22994616 -g1,10320:32583029,37084506 -) -(1,10321:6630773,39175766:25952256,555811,147783 -(1,10321:6630773,39175766:2450326,534184,12975 -g1,10321:6630773,39175766 -g1,10321:9081099,39175766 -) -g1,10321:12040378,39175766 -g1,10321:15130860,39175766 -k1,10321:32583029,39175766:14104328 -g1,10321:32583029,39175766 -) -(1,10324:6630773,40410470:25952256,513147,134348 -k1,10323:8064281,40410470:168008 -k1,10323:8883717,40410470:168008 -k1,10323:10070811,40410470:168009 -k1,10323:11809717,40410470:168008 -k1,10323:14463506,40410470:168008 -k1,10323:15290806,40410470:168008 -k1,10323:19188469,40410470:168009 -k1,10323:19771289,40410470:167977 -k1,10323:22849751,40410470:168008 -k1,10323:23475856,40410470:168008 -k1,10323:24748146,40410470:168008 -k1,10323:28364004,40410470:168009 -k1,10323:29279778,40410470:168008 -k1,10323:31931601,40410470:168008 -k1,10323:32583029,40410470:0 -) -(1,10324:6630773,41251958:25952256,513147,134348 -k1,10323:8087947,41251958:191018 -k1,10323:8634825,41251958:191018 -k1,10323:11337838,41251958:191018 -k1,10323:14109008,41251958:191018 -k1,10323:15247677,41251958:191018 -k1,10323:15794555,41251958:191018 -k1,10323:17321197,41251958:191018 -k1,10323:18124977,41251958:191018 -k1,10323:20095954,41251958:191019 -k1,10323:20756865,41251958:191018 -k1,10323:21479380,41251958:191018 -k1,10323:23254403,41251958:191018 -k1,10323:24096849,41251958:191018 -k1,10323:25594000,41251958:191018 -k1,10323:27606919,41251958:191018 -k1,10323:28263898,41251958:191018 -k1,10323:29474001,41251958:191018 -k1,10323:32583029,41251958:0 -) -(1,10324:6630773,42093446:25952256,505283,134348 -k1,10323:10016371,42093446:293609 -k1,10323:10841477,42093446:293609 -k1,10323:13469478,42093446:293609 -k1,10323:15241580,42093446:293610 -k1,10323:16802655,42093446:293609 -k1,10323:18530192,42093446:293609 -k1,10323:19412314,42093446:293609 -k1,10323:21138540,42093446:293609 -k1,10323:21846898,42093446:293515 -k1,10323:23511520,42093446:293609 -k1,10323:24824214,42093446:293609 -k1,10323:29672575,42093446:293609 -k1,10323:32583029,42093446:0 -) -(1,10324:6630773,42934934:25952256,513147,134348 -k1,10323:9775191,42934934:199885 -k1,10323:11673114,42934934:199885 -k1,10323:12287841,42934934:199884 -k1,10323:13019223,42934934:199885 -k1,10323:16163641,42934934:199885 -k1,10323:18084500,42934934:199884 -k1,10323:18640245,42934934:199885 -k1,10323:19696686,42934934:199885 -k1,10323:20555863,42934934:199885 -k1,10323:23236941,42934934:199885 -k1,10323:24265856,42934934:199885 -k1,10323:26895815,42934934:199884 -k1,10323:28485063,42934934:199885 -k1,10323:30420341,42934934:199885 -k1,10323:32583029,42934934:0 -) -(1,10324:6630773,43776422:25952256,513147,126483 -k1,10323:7995636,43776422:233056 -k1,10323:8887984,43776422:233056 -k1,10323:10140125,43776422:233056 -k1,10323:12023378,43776422:233056 -k1,10323:15033850,43776422:233056 -k1,10323:18351030,43776422:233056 -k1,10323:21368711,43776422:233056 -k1,10323:23094677,43776422:233056 -k1,10323:24394004,43776422:233056 -k1,10323:26918854,43776422:233056 -k1,10323:28170995,43776422:233056 -k1,10323:29496536,43776422:233056 -k1,10323:30388884,43776422:233056 -k1,10323:32583029,43776422:0 -) -(1,10324:6630773,44617910:25952256,513147,134348 -k1,10323:9926824,44617910:211927 -k1,10323:13785174,44617910:211927 -k1,10323:17726755,44617910:211927 -k1,10323:20849136,44617910:211927 -k1,10323:24017392,44617910:211927 -k1,10323:24912204,44617910:211927 -k1,10323:27276333,44617910:211927 -k1,10323:28507345,44617910:211927 -k1,10323:32583029,44617910:0 -) -(1,10324:6630773,45459398:25952256,513147,134348 -k1,10323:7406628,45459398:159817 -k1,10323:9000373,45459398:159817 -k1,10323:9574994,45459398:159778 -k1,10323:11128762,45459398:159817 -k1,10323:14701039,45459398:159817 -k1,10323:16644090,45459398:159816 -k1,10323:17960617,45459398:159817 -k1,10323:21181621,45459398:159817 -k1,10323:22360523,45459398:159817 -k1,10323:23612825,45459398:159817 -k1,10323:24431934,45459398:159817 -k1,10323:26310760,45459398:159817 -k1,10323:27153462,45459398:159817 -k1,10323:30866641,45459398:159817 -k1,10323:32583029,45459398:0 -) -] -(1,10324:32583029,45706769:0,0,0 -g1,10324:32583029,45706769 -) -) -] -(1,10324:6630773,47279633:25952256,0,0 -h1,10324:6630773,47279633:25952256,0,0 -) -] -(1,10324:4262630,4025873:0,0,0 -[1,10324:-473656,4025873:0,0,0 -(1,10324:-473656,-710413:0,0,0 -(1,10324:-473656,-710413:0,0,0 -g1,10324:-473656,-710413 -) -g1,10324:-473656,-710413 -) -] -) -] -!24924 -}194 -!12 -{195 -[1,10341:4262630,47279633:28320399,43253760,0 -(1,10341:4262630,4025873:0,0,0 -[1,10341:-473656,4025873:0,0,0 -(1,10341:-473656,-710413:0,0,0 -(1,10341:-473656,-644877:0,0,0 -k1,10341:-473656,-644877:-65536 -) -(1,10341:-473656,4736287:0,0,0 -k1,10341:-473656,4736287:5209943 -) -g1,10341:-473656,-710413 -) -] -) -[1,10341:6630773,47279633:25952256,43253760,0 -[1,10341:6630773,4812305:25952256,786432,0 -(1,10341:6630773,4812305:25952256,505283,134348 -(1,10341:6630773,4812305:25952256,505283,134348 -g1,10341:3078558,4812305 -[1,10341:3078558,4812305:0,0,0 -(1,10341:3078558,2439708:0,1703936,0 -k1,10341:1358238,2439708:-1720320 -(1,10278:1358238,2439708:1720320,1703936,0 -(1,10278:1358238,2439708:1179648,16384,0 -r1,10341:2537886,2439708:1179648,16384,0 -) -g1,10278:3062174,2439708 -(1,10278:3062174,2439708:16384,1703936,0 -[1,10278:3062174,2439708:25952256,1703936,0 -(1,10278:3062174,1915420:25952256,1179648,0 -(1,10278:3062174,1915420:16384,1179648,0 -r1,10341:3078558,1915420:16384,1179648,0 -) -k1,10278:29014430,1915420:25935872 -g1,10278:29014430,1915420 -) -] -) -) -) -] -[1,10341:3078558,4812305:0,0,0 -(1,10341:3078558,2439708:0,1703936,0 -g1,10341:29030814,2439708 -g1,10341:36135244,2439708 -(1,10278:36135244,2439708:1720320,1703936,0 -(1,10278:36135244,2439708:16384,1703936,0 -[1,10278:36135244,2439708:25952256,1703936,0 -(1,10278:36135244,1915420:25952256,1179648,0 -(1,10278:36135244,1915420:16384,1179648,0 -r1,10341:36151628,1915420:16384,1179648,0 -) -k1,10278:62087500,1915420:25935872 -g1,10278:62087500,1915420 -) -] -) -g1,10278:36675916,2439708 -(1,10278:36675916,2439708:1179648,16384,0 -r1,10341:37855564,2439708:1179648,16384,0 -) -) -k1,10341:3078556,2439708:-34777008 -) -] -[1,10341:3078558,4812305:0,0,0 -(1,10341:3078558,49800853:0,16384,2228224 -k1,10341:1358238,49800853:-1720320 -(1,10278:1358238,49800853:1720320,16384,2228224 -(1,10278:1358238,49800853:1179648,16384,0 -r1,10341:2537886,49800853:1179648,16384,0 -) -g1,10278:3062174,49800853 -(1,10278:3062174,52029077:16384,1703936,0 -[1,10278:3062174,52029077:25952256,1703936,0 -(1,10278:3062174,51504789:25952256,1179648,0 -(1,10278:3062174,51504789:16384,1179648,0 -r1,10341:3078558,51504789:16384,1179648,0 -) -k1,10278:29014430,51504789:25935872 -g1,10278:29014430,51504789 -) -] -) -) -) -] -[1,10341:3078558,4812305:0,0,0 -(1,10341:3078558,49800853:0,16384,2228224 -g1,10341:29030814,49800853 -g1,10341:36135244,49800853 -(1,10278:36135244,49800853:1720320,16384,2228224 -(1,10278:36135244,52029077:16384,1703936,0 -[1,10278:36135244,52029077:25952256,1703936,0 -(1,10278:36135244,51504789:25952256,1179648,0 -(1,10278:36135244,51504789:16384,1179648,0 -r1,10341:36151628,51504789:16384,1179648,0 -) -k1,10278:62087500,51504789:25935872 -g1,10278:62087500,51504789 -) -] -) -g1,10278:36675916,49800853 -(1,10278:36675916,49800853:1179648,16384,0 -r1,10341:37855564,49800853:1179648,16384,0 -) -) -k1,10341:3078556,49800853:-34777008 -) -] -g1,10341:6630773,4812305 -k1,10341:20781963,4812305:12955813 -g1,10341:22168704,4812305 -g1,10341:22817510,4812305 -g1,10341:26131665,4812305 -g1,10341:28614824,4812305 -g1,10341:30094627,4812305 -) -) -] -[1,10341:6630773,45706769:25952256,40108032,0 -(1,10341:6630773,45706769:25952256,40108032,0 -(1,10341:6630773,45706769:0,0,0 -g1,10341:6630773,45706769 -) -[1,10341:6630773,45706769:25952256,40108032,0 -(1,10324:6630773,6254097:25952256,513147,134348 -k1,10323:7464744,6254097:174679 -k1,10323:9028785,6254097:174678 -k1,10323:11931728,6254097:174679 -k1,10323:13125491,6254097:174678 -k1,10323:14392655,6254097:174679 -k1,10323:15226625,6254097:174678 -k1,10323:19130958,6254097:174679 -k1,10323:22216090,6254097:174678 -k1,10323:23495051,6254097:174679 -k1,10323:24417495,6254097:174678 -k1,10323:28633779,6254097:174679 -k1,10323:30298746,6254097:174678 -k1,10323:31089463,6254097:174679 -k1,10323:32583029,6254097:0 -) -(1,10324:6630773,7095585:25952256,513147,102891 -k1,10323:8762105,7095585:260279 -k1,10323:9480480,7095585:260278 -k1,10323:10272256,7095585:260279 -k1,10323:11598806,7095585:260279 -k1,10323:14409745,7095585:260278 -k1,10323:15321452,7095585:260279 -k1,10323:17056946,7095585:260279 -k1,10323:21034427,7095585:260279 -k1,10323:21946133,7095585:260278 -k1,10323:24421529,7095585:260279 -k1,10323:26249429,7095585:260279 -k1,10323:28519696,7095585:260278 -k1,10323:29799060,7095585:260279 -k1,10323:32583029,7095585:0 -) -(1,10324:6630773,7937073:25952256,513147,134348 -k1,10323:10641380,7937073:280953 -k1,10323:14006457,7937073:280953 -k1,10323:17760162,7937073:280952 -k1,10323:20264096,7937073:280953 -k1,10323:21227934,7937073:280953 -k1,10323:23389770,7937073:280953 -k1,10323:24330015,7937073:280953 -k1,10323:27521421,7937073:280952 -k1,10323:28793934,7937073:280953 -k1,10323:31931601,7937073:280953 -k1,10323:32583029,7937073:0 -) -(1,10324:6630773,8778561:25952256,505283,134348 -g1,10323:8426459,8778561 -g1,10323:9904295,8778561 -k1,10324:32583028,8778561:19824640 -g1,10324:32583028,8778561 -) -(1,10326:6630773,9620049:25952256,505283,126483 -h1,10325:6630773,9620049:983040,0,0 -k1,10325:9183773,9620049:373273 -k1,10325:11437099,9620049:373098 -k1,10325:15093726,9620049:373273 -k1,10325:16568005,9620049:373274 -k1,10325:18295252,9620049:373273 -k1,10325:20528437,9620049:373273 -k1,10325:22728198,9620049:373273 -k1,10325:24292916,9620049:373273 -k1,10325:27334160,9620049:373273 -k1,10325:28063293,9620049:373273 -k1,10325:30715253,9620049:373273 -k1,10325:32583029,9620049:0 -) -(1,10326:6630773,10461537:25952256,513147,134348 -k1,10325:9404618,10461537:242845 -k1,10325:10062261,10461537:242800 -k1,10325:12062126,10461537:242845 -k1,10325:13296531,10461537:242845 -k1,10325:14808152,10461537:242844 -k1,10325:16879451,10461537:242845 -k1,10325:20195279,10461537:242845 -k1,10325:23655941,10461537:242844 -k1,10325:25222613,10461537:242845 -k1,10325:26124749,10461537:242844 -k1,10325:29278048,10461537:242845 -k1,10325:32583029,10461537:0 -) -(1,10326:6630773,11303025:25952256,513147,134348 -k1,10325:8388627,11303025:244628 -k1,10325:10643244,11303025:244628 -k1,10325:11243732,11303025:244628 -k1,10325:13183121,11303025:244628 -k1,10325:14831530,11303025:244628 -k1,10325:15735450,11303025:244628 -k1,10325:18859730,11303025:244628 -k1,10325:22830080,11303025:244628 -k1,10325:23757593,11303025:244628 -k1,10325:26399528,11303025:244628 -k1,10325:30708699,11303025:244628 -k1,10325:32583029,11303025:0 -) -(1,10326:6630773,12144513:25952256,513147,126484 -k1,10325:8629369,12144513:241576 -k1,10325:9862504,12144513:241575 -k1,10325:12098341,12144513:241576 -k1,10325:13531361,12144513:241575 -k1,10325:16410106,12144513:241576 -k1,10325:17413209,12144513:241575 -k1,10325:20417128,12144513:241576 -k1,10325:23071739,12144513:241575 -k1,10325:24871106,12144513:241576 -k1,10325:26216963,12144513:241575 -k1,10325:27206305,12144513:241576 -k1,10325:29357599,12144513:241575 -k1,10325:30211937,12144513:241576 -$1,10325:30211937,12144513 -k1,10325:32187847,12144513:0 -k1,10326:32583029,12144513:0 -) -(1,10326:6630773,12986001:25952256,505283,134349 -g1,10325:7025955,12986001 -g1,10325:7421137,12986001 -g1,10325:9001865,12986001 -g1,10325:9397047,12986001 -(1,10325:10187411,13084315:32768,0,0 -) -g1,10325:12986453,12986001 -g1,10325:13381635,12986001 -g1,10325:14567181,12986001 -g1,10325:14962363,12986001 -g1,10325:16147909,12986001 -g1,10325:16543091,12986001 -$1,10325:18914183,12986001 -k1,10326:32583029,12986001:13495176 -g1,10326:32583029,12986001 -) -(1,10328:6630773,13827489:25952256,513147,126483 -h1,10327:6630773,13827489:983040,0,0 -k1,10327:9077166,13827489:266666 -k1,10327:13590565,13827489:266666 -k1,10327:17140585,13827489:266666 -k1,10327:20870173,13827489:266666 -k1,10327:21752877,13827489:266666 -k1,10327:26677187,13827489:266666 -k1,10327:28337804,13827489:266666 -k1,10327:29192983,13827489:266666 -k1,10327:29929542,13827489:266666 -k1,10327:31482024,13827489:266666 -k1,10327:32583029,13827489:0 -) -(1,10328:6630773,14668977:25952256,513147,126483 -k1,10327:7204813,14668977:218180 -k1,10327:9701681,14668977:218181 -k1,10327:11313812,14668977:218180 -k1,10327:13889322,14668977:218180 -k1,10327:15298947,14668977:218180 -k1,10327:17527117,14668977:218181 -k1,10327:18377064,14668977:218180 -k1,10327:22535268,14668977:218180 -k1,10327:23412740,14668977:218180 -k1,10327:26393264,14668977:218181 -k1,10327:28000807,14668977:218180 -k1,10327:30773580,14668977:218180 -k1,10328:32583029,14668977:0 -) -(1,10328:6630773,15510465:25952256,513147,134348 -k1,10327:8755942,15510465:271155 -k1,10327:10223784,15510465:271155 -k1,10327:13771740,15510465:271156 -k1,10327:15034455,15510465:271155 -k1,10327:18413327,15510465:271155 -k1,10327:20268487,15510465:271155 -k1,10327:21225804,15510465:271155 -k1,10327:22877147,15510465:271155 -k1,10327:25049502,15510465:271156 -k1,10327:27206128,15510465:271155 -k1,10327:28742128,15510465:271155 -k1,10327:29672575,15510465:271155 -k1,10327:32583029,15510465:0 -) -(1,10328:6630773,16351953:25952256,513147,134348 -k1,10327:8486971,16351953:259741 -k1,10327:10025319,16351953:259741 -k1,10327:13139153,16351953:259741 -k1,10327:15273224,16351953:259741 -k1,10327:17289986,16351953:259742 -k1,10327:18654009,16351953:259741 -k1,10327:19661516,16351953:259741 -k1,10327:21830976,16351953:259741 -k1,10327:22703479,16351953:259741 -$1,10327:22703479,16351953 -k1,10327:24679389,16351953:0 -k1,10327:25074571,16351953:0 -k1,10327:25469753,16351953:0 -k1,10327:25864935,16351953:0 -k1,10327:27050481,16351953:0 -k1,10327:27445663,16351953:0 -k1,10327:32187847,16351953:0 -k1,10328:32583029,16351953:0 -) -(1,10328:6630773,17193441:25952256,505283,134349 -g1,10327:7816319,17193441 -g1,10327:8211501,17193441 -g1,10327:11372957,17193441 -g1,10327:11768139,17193441 -g1,10327:14534413,17193441 -g1,10327:14929595,17193441 -g1,10327:18486233,17193441 -g1,10327:18881415,17193441 -$1,10327:20462143,17193441 -k1,10328:32583029,17193441:11947216 -g1,10328:32583029,17193441 -) -(1,10330:6630773,18034929:25952256,513147,134348 -h1,10329:6630773,18034929:983040,0,0 -k1,10329:10795467,18034929:218771 -k1,10329:14041346,18034929:218771 -k1,10329:15753027,18034929:218771 -k1,10329:17038069,18034929:218771 -k1,10329:18764823,18034929:218771 -k1,10329:19339454,18034929:218771 -k1,10329:22260930,18034929:218771 -k1,10329:25059853,18034929:218771 -k1,10329:28561978,18034929:218771 -k1,10329:29728400,18034929:218771 -k1,10329:30966256,18034929:218771 -k1,10330:32583029,18034929:0 -) -(1,10330:6630773,18876417:25952256,513147,134349 -k1,10329:9721713,18876417:260440 -k1,10329:13066278,18876417:260441 -k1,10329:14706906,18876417:260440 -k1,10329:15782614,18876417:260440 -k1,10329:17551038,18876417:260441 -k1,10329:18582181,18876417:260440 -k1,10329:20591777,18876417:260440 -k1,10329:21511509,18876417:260440 -k1,10329:23411005,18876417:260441 -k1,10329:24284207,18876417:260440 -$1,10329:24284207,18876417 -k1,10329:26260117,18876417:0 -k1,10329:26655299,18876417:0 -k1,10329:27050481,18876417:0 -k1,10329:27445663,18876417:0 -k1,10329:30607119,18876417:0 -k1,10329:31002301,18876417:0 -k1,10329:32187847,18876417:0 -k1,10330:32583029,18876417:0 -) -(1,10330:6630773,19717905:25952256,505283,134349 -$1,10329:10187411,19717905 -k1,10330:32583029,19717905:22221948 -g1,10330:32583029,19717905 -) -(1,10332:6630773,20559393:25952256,513147,134348 -h1,10331:6630773,20559393:983040,0,0 -k1,10331:9062272,20559393:251772 -k1,10331:11194219,20559393:251719 -k1,10331:14729345,20559393:251772 -k1,10331:16819402,20559393:251772 -k1,10331:17841876,20559393:251771 -k1,10331:20391996,20559393:251772 -k1,10331:21303060,20559393:251772 -k1,10331:23588414,20559393:251772 -k1,10331:26504225,20559393:251772 -k1,10331:27415288,20559393:251771 -k1,10331:30751184,20559393:251772 -k1,10331:31812326,20559393:251772 -k1,10331:32583029,20559393:0 -) -(1,10332:6630773,21400881:25952256,513147,134349 -k1,10331:9979914,21400881:156227 -k1,10331:12716293,21400881:156227 -k1,10331:14664274,21400881:156227 -k1,10331:18557321,21400881:156184 -$1,10331:18764415,21400881 -k1,10331:20740325,21400881:0 -k1,10331:21135507,21400881:0 -k1,10331:21530689,21400881:0 -k1,10331:21925871,21400881:0 -k1,10331:23111417,21400881:0 -k1,10331:23506599,21400881:0 -(1,10331:24296963,21499195:32768,0,0 -) -k1,10331:25515277,21400881:0 -k1,10331:25910459,21400881:0 -$1,10331:27491187,21400881 -k1,10331:27854508,21400881:156227 -k1,10331:28542232,21400881:156227 -k1,10331:29469162,21400881:156227 -k1,10331:31923737,21400881:156227 -k1,10331:32583029,21400881:0 -) -(1,10332:6630773,22242369:25952256,513147,126483 -k1,10331:10820621,22242369:215089 -k1,10331:12320216,22242369:215089 -k1,10331:14373590,22242369:215089 -k1,10331:14944539,22242369:215089 -k1,10331:18141516,22242369:215089 -k1,10331:20429509,22242369:215089 -k1,10331:21330760,22242369:215089 -k1,10331:24794469,22242369:215089 -k1,10331:26577179,22242369:215089 -k1,10331:28846166,22242369:215089 -k1,10331:32583029,22242369:0 -) -(1,10332:6630773,23083857:25952256,513147,134348 -k1,10331:8339051,23083857:285491 -k1,10331:8980403,23083857:285492 -k1,10331:12028237,23083857:285491 -k1,10331:14384011,23083857:285492 -k1,10331:16769276,23083857:285491 -k1,10331:18497215,23083857:285492 -k1,10331:20662847,23083857:285404 -k1,10331:22727641,23083857:285492 -k1,10331:25371773,23083857:285491 -k1,10331:26115362,23083857:285492 -k1,10331:28271251,23083857:285491 -k1,10331:29208171,23083857:285492 -k1,10331:31563944,23083857:285491 -k1,10331:32583029,23083857:0 -) -(1,10332:6630773,23925345:25952256,505283,126483 -g1,10331:8712851,23925345 -k1,10332:32583029,23925345:20413154 -g1,10332:32583029,23925345 -) -(1,10333:6630773,26732913:25952256,32768,229376 -(1,10333:6630773,26732913:0,32768,229376 -(1,10333:6630773,26732913:5505024,32768,229376 -r1,10341:12135797,26732913:5505024,262144,229376 -) -k1,10333:6630773,26732913:-5505024 -) -(1,10333:6630773,26732913:25952256,32768,0 -r1,10341:32583029,26732913:25952256,32768,0 -) -) -(1,10333:6630773,28337241:25952256,615776,161218 -(1,10333:6630773,28337241:1974731,582746,14155 -g1,10333:6630773,28337241 -g1,10333:8605504,28337241 -) -g1,10333:12201071,28337241 -g1,10333:16200864,28337241 -g1,10333:17910567,28337241 -k1,10333:32583029,28337241:10865345 -g1,10333:32583029,28337241 -) -(1,10337:6630773,29571945:25952256,513147,134348 -k1,10336:10459744,29571945:198276 -k1,10336:11762302,29571945:198276 -k1,10336:12708344,29571945:198276 -k1,10336:15288198,29571945:198276 -k1,10336:16172636,29571945:198276 -k1,10336:19716525,29571945:198276 -k1,10336:20933886,29571945:198276 -k1,10336:25203258,29571945:198276 -k1,10336:28697340,29571945:198276 -k1,10336:30463237,29571945:198276 -k1,10336:31680598,29571945:198276 -k1,10337:32583029,29571945:0 -) -(1,10337:6630773,30413433:25952256,513147,134348 -k1,10336:9353279,30413433:186918 -k1,10336:11200879,30413433:186918 -k1,10336:12459966,30413433:186918 -k1,10336:15660885,30413433:186918 -k1,10336:16866888,30413433:186918 -k1,10336:18791821,30413433:186918 -k1,10336:20546360,30413433:186918 -k1,10336:21089138,30413433:186918 -k1,10336:22970817,30413433:186918 -k1,10336:25135612,30413433:186918 -k1,10336:25981822,30413433:186918 -k1,10336:28984822,30413433:186918 -k1,10336:29703237,30413433:186918 -k1,10336:30660858,30413433:186918 -k1,10336:32583029,30413433:0 -) -(1,10337:6630773,31254921:25952256,513147,126483 -k1,10336:10082792,31254921:204055 -k1,10336:12119234,31254921:204055 -k1,10336:13427572,31254921:204056 -k1,10336:14379393,31254921:204055 -k1,10336:16335225,31254921:204055 -k1,10336:18032846,31254921:204055 -k1,10336:21641496,31254921:204055 -k1,10336:22654921,31254921:204055 -k1,10336:25621320,31254921:204056 -k1,10336:28445504,31254921:204055 -k1,10336:31131407,31254921:204055 -k1,10336:32583029,31254921:0 -) -(1,10337:6630773,32096409:25952256,513147,134348 -k1,10336:7987166,32096409:199683 -k1,10336:8542709,32096409:199683 -k1,10336:11139699,32096409:199683 -k1,10336:12880134,32096409:199684 -k1,10336:14863052,32096409:199683 -k1,10336:15931087,32096409:199683 -k1,10336:18800051,32096409:199683 -k1,10336:19770437,32096409:199683 -k1,10336:23081114,32096409:199683 -k1,10336:24228449,32096409:199684 -k1,10336:27858942,32096409:199683 -k1,10336:29077710,32096409:199683 -k1,10336:31015408,32096409:199683 -k1,10336:32583029,32096409:0 -) -(1,10337:6630773,32937897:25952256,513147,126483 -k1,10336:7916449,32937897:153869 -k1,10336:10690447,32937897:153869 -k1,10336:12822194,32937897:153870 -k1,10336:13844415,32937897:153869 -k1,10336:15473499,32937897:153869 -k1,10336:17977489,32937897:153869 -k1,10336:19150443,32937897:153869 -k1,10336:22893064,32937897:153870 -k1,10336:23706225,32937897:153869 -k1,10336:25803891,32937897:153869 -k1,10336:26585595,32937897:153869 -k1,10336:27758550,32937897:153870 -k1,10336:29565892,32937897:153869 -k1,10336:31131407,32937897:153869 -k1,10336:32583029,32937897:0 -) -(1,10337:6630773,33779385:25952256,513147,126483 -k1,10336:8222844,33779385:166663 -k1,10336:9257859,33779385:166663 -k1,10336:12127227,33779385:166663 -k1,10336:15698485,33779385:166663 -k1,10336:17432769,33779385:166663 -k1,10336:19996739,33779385:166663 -k1,10336:21552766,33779385:166664 -k1,10336:22587781,33779385:166663 -k1,10336:24683824,33779385:166663 -k1,10336:25206347,33779385:166663 -k1,10336:26656205,33779385:166663 -k1,10336:30585290,33779385:166663 -k1,10336:31379788,33779385:166663 -k1,10336:32583029,33779385:0 -) -(1,10337:6630773,34620873:25952256,513147,126483 -k1,10336:8849345,34620873:274774 -k1,10336:12149917,34620873:274775 -k1,10336:13416251,34620873:274774 -k1,10336:17610079,34620873:274775 -k1,10336:18544145,34620873:274774 -k1,10336:22223515,34620873:274775 -k1,10336:23181174,34620873:274774 -k1,10336:25916826,34620873:274775 -k1,10336:27571788,34620873:274774 -k1,10336:28838123,34620873:274775 -k1,10336:30259122,34620873:274774 -k1,10336:32583029,34620873:0 -) -(1,10337:6630773,35462361:25952256,513147,134348 -g1,10336:10142192,35462361 -g1,10336:12628628,35462361 -g1,10336:16096793,35462361 -g1,10336:17863643,35462361 -k1,10337:32583029,35462361:12586189 -g1,10337:32583029,35462361 -) -(1,10339:6630773,36303849:25952256,513147,134348 -h1,10338:6630773,36303849:983040,0,0 -k1,10338:9063116,36303849:252616 -k1,10338:10907602,36303849:252616 -k1,10338:12395572,36303849:252616 -k1,10338:13307480,36303849:252616 -k1,10338:16585893,36303849:252616 -k1,10338:17370006,36303849:252616 -k1,10338:18907129,36303849:252617 -k1,10338:19819037,36303849:252616 -k1,10338:23144636,36303849:252616 -k1,10338:24167955,36303849:252616 -k1,10338:28009322,36303849:252616 -k1,10338:30933841,36303849:252616 -k1,10338:31931601,36303849:252616 -k1,10338:32583029,36303849:0 -) -(1,10339:6630773,37145337:25952256,513147,134348 -k1,10338:8609781,37145337:249513 -k1,10338:11866087,37145337:249514 -k1,10338:14172120,37145337:249513 -k1,10338:15080925,37145337:249513 -k1,10338:16826625,37145337:249513 -k1,10338:19506214,37145337:249514 -k1,10338:20415019,37145337:249513 -k1,10338:24388288,37145337:249513 -k1,10338:27391624,37145337:249513 -k1,10338:28660223,37145337:249514 -k1,10338:30563209,37145337:249513 -k1,10339:32583029,37145337:0 -) -(1,10339:6630773,37986825:25952256,513147,126483 -k1,10338:8457614,37986825:229073 -k1,10338:9496058,37986825:229074 -k1,10338:12487474,37986825:229073 -k1,10338:14279582,37986825:229074 -k1,10338:15705342,37986825:229073 -k1,10338:18395947,37986825:229073 -k1,10338:19276449,37986825:229074 -k1,10338:21235017,37986825:229073 -k1,10338:24593434,37986825:229073 -k1,10338:25481800,37986825:229074 -k1,10338:27912883,37986825:229073 -k1,10338:30198477,37986825:229074 -k1,10338:31086842,37986825:229073 -k1,10338:32583029,37986825:0 -) -(1,10339:6630773,38828313:25952256,513147,134348 -k1,10338:10398328,38828313:250893 -k1,10338:11640782,38828313:250894 -k1,10338:13176182,38828313:250894 -k1,10338:14032628,38828313:250893 -k1,10338:14749482,38828313:250893 -k1,10338:16019461,38828313:250894 -k1,10338:19381349,38828313:250894 -k1,10338:20315127,38828313:250893 -k1,10338:25622778,38828313:250893 -k1,10338:27734239,38828313:250894 -k1,10338:28636561,38828313:250894 -k1,10338:29635220,38828313:250893 -k1,10339:32583029,38828313:0 -) -(1,10339:6630773,39669801:25952256,513147,134348 -k1,10338:8116912,39669801:243576 -k1,10338:9011915,39669801:243575 -k1,10338:10051098,39669801:243576 -k1,10338:10650533,39669801:243575 -k1,10338:12083587,39669801:243576 -k1,10338:13010047,39669801:243575 -k1,10338:15974022,39669801:243576 -k1,10338:16749094,39669801:243575 -k1,10338:18327638,39669801:243576 -k1,10338:19222641,39669801:243575 -k1,10338:21181950,39669801:243576 -k1,10338:22982005,39669801:243575 -k1,10338:23841619,39669801:243576 -k1,10338:24441054,39669801:243575 -k1,10338:26557649,39669801:243576 -k1,10338:28637543,39669801:243575 -k1,10338:29486672,39669801:243576 -k1,10338:31900144,39669801:243575 -k1,10338:32583029,39669801:0 -) -(1,10339:6630773,40511289:25952256,513147,134348 -k1,10338:8289251,40511289:204889 -k1,10338:10474638,40511289:204889 -k1,10338:11338819,40511289:204889 -k1,10338:14328333,40511289:204889 -k1,10338:16029409,40511289:204889 -k1,10338:17338581,40511289:204890 -k1,10338:19986652,40511289:204889 -k1,10338:22953884,40511289:204889 -k1,10338:25478092,40511289:204889 -k1,10338:26334409,40511289:204889 -k1,10338:31391584,40511289:204889 -k1,10338:32583029,40511289:0 -) -(1,10339:6630773,41352777:25952256,513147,134348 -k1,10338:11031754,41352777:216507 -k1,10338:12941711,41352777:216507 -k1,10338:13763772,41352777:216508 -k1,10338:17569030,41352777:216507 -k1,10338:18976982,41352777:216507 -k1,10338:21714659,41352777:216507 -k1,10338:22590458,41352777:216507 -k1,10338:23162825,41352777:216507 -k1,10338:26055823,41352777:216508 -k1,10338:27539796,41352777:216507 -k1,10338:30108390,41352777:216507 -k1,10338:32583029,41352777:0 -) -(1,10339:6630773,42194265:25952256,505283,134348 -k1,10338:9080032,42194265:260356 -k1,10338:11058743,42194265:260357 -k1,10338:12713050,42194265:260356 -k1,10338:15471639,42194265:260357 -k1,10338:16751080,42194265:260356 -k1,10338:18507624,42194265:260357 -k1,10338:23741507,42194265:260356 -k1,10338:24653292,42194265:260357 -k1,10338:27637980,42194265:260356 -k1,10338:28503890,42194265:260357 -k1,10338:30966256,42194265:260356 -k1,10339:32583029,42194265:0 -) -(1,10339:6630773,43035753:25952256,513147,134348 -k1,10338:8608769,43035753:252433 -k1,10338:10907235,43035753:252432 -k1,10338:12178753,43035753:252433 -k1,10338:14262262,43035753:252433 -k1,10338:15497734,43035753:252432 -k1,10338:17948245,43035753:252433 -k1,10338:19392122,43035753:252432 -k1,10338:20847796,43035753:252433 -k1,10338:23146263,43035753:252433 -k1,10338:26894385,43035753:252432 -k1,10338:31297868,43035753:252433 -k1,10338:32583029,43035753:0 -) -(1,10339:6630773,43877241:25952256,505283,126483 -g1,10338:8480199,43877241 -g1,10338:11218948,43877241 -g1,10338:12609622,43877241 -g1,10338:14415794,43877241 -k1,10339:32583029,43877241:16127755 -g1,10339:32583029,43877241 -) -(1,10341:6630773,44718729:25952256,513147,134348 -h1,10340:6630773,44718729:983040,0,0 -k1,10340:9247532,44718729:212898 -k1,10340:10275699,44718729:212899 -k1,10340:11530619,44718729:212898 -k1,10340:12359555,44718729:212898 -k1,10340:15283678,44718729:212899 -k1,10340:17226071,44718729:212898 -k1,10340:20445762,44718729:212899 -k1,10340:21847483,44718729:212898 -k1,10340:22719673,44718729:212898 -k1,10340:24755784,44718729:212899 -k1,10340:25922231,44718729:212898 -k1,10340:27749936,44718729:212898 -k1,10340:28318695,44718729:212899 -k1,10340:31227089,44718729:212898 -k1,10341:32583029,44718729:0 -) -(1,10341:6630773,45560217:25952256,505283,134348 -k1,10340:9060333,45560217:210511 -k1,10340:10289929,45560217:210511 -k1,10340:14017101,45560217:210510 -k1,10340:15512118,45560217:210511 -k1,10340:16590981,45560217:210511 -k1,10340:18757742,45560217:210511 -k1,10340:20498519,45560217:210511 -k1,10340:21360457,45560217:210510 -k1,10340:23761181,45560217:210511 -k1,10340:25163137,45560217:210511 -k1,10340:26827237,45560217:210511 -k1,10340:27906099,45560217:210510 -k1,10340:29246450,45560217:210511 -k1,10340:31563944,45560217:210511 -k1,10340:32583029,45560217:0 -) -] -(1,10341:32583029,45706769:0,0,0 -g1,10341:32583029,45706769 -) -) -] -(1,10341:6630773,47279633:25952256,0,0 -h1,10341:6630773,47279633:25952256,0,0 -) -] -(1,10341:4262630,4025873:0,0,0 -[1,10341:-473656,4025873:0,0,0 -(1,10341:-473656,-710413:0,0,0 -(1,10341:-473656,-710413:0,0,0 -g1,10341:-473656,-710413 -) -g1,10341:-473656,-710413 -) -] -) -] -!23753 -}195 -Input:1477:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1478:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1479:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1480:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1481:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1482:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1483:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1484:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!748 -{196 -[1,10375:4262630,47279633:28320399,43253760,0 -(1,10375:4262630,4025873:0,0,0 -[1,10375:-473656,4025873:0,0,0 -(1,10375:-473656,-710413:0,0,0 -(1,10375:-473656,-644877:0,0,0 -k1,10375:-473656,-644877:-65536 -) -(1,10375:-473656,4736287:0,0,0 -k1,10375:-473656,4736287:5209943 -) -g1,10375:-473656,-710413 -) -] -) -[1,10375:6630773,47279633:25952256,43253760,0 -[1,10375:6630773,4812305:25952256,786432,0 -(1,10375:6630773,4812305:25952256,513147,134348 -(1,10375:6630773,4812305:25952256,513147,134348 -g1,10375:3078558,4812305 -[1,10375:3078558,4812305:0,0,0 -(1,10375:3078558,2439708:0,1703936,0 -k1,10375:1358238,2439708:-1720320 -(1,10278:1358238,2439708:1720320,1703936,0 -(1,10278:1358238,2439708:1179648,16384,0 -r1,10375:2537886,2439708:1179648,16384,0 -) -g1,10278:3062174,2439708 -(1,10278:3062174,2439708:16384,1703936,0 -[1,10278:3062174,2439708:25952256,1703936,0 -(1,10278:3062174,1915420:25952256,1179648,0 -(1,10278:3062174,1915420:16384,1179648,0 -r1,10375:3078558,1915420:16384,1179648,0 -) -k1,10278:29014430,1915420:25935872 -g1,10278:29014430,1915420 -) -] -) -) -) -] -[1,10375:3078558,4812305:0,0,0 -(1,10375:3078558,2439708:0,1703936,0 -g1,10375:29030814,2439708 -g1,10375:36135244,2439708 -(1,10278:36135244,2439708:1720320,1703936,0 -(1,10278:36135244,2439708:16384,1703936,0 -[1,10278:36135244,2439708:25952256,1703936,0 -(1,10278:36135244,1915420:25952256,1179648,0 -(1,10278:36135244,1915420:16384,1179648,0 -r1,10375:36151628,1915420:16384,1179648,0 -) -k1,10278:62087500,1915420:25935872 -g1,10278:62087500,1915420 -) -] -) -g1,10278:36675916,2439708 -(1,10278:36675916,2439708:1179648,16384,0 -r1,10375:37855564,2439708:1179648,16384,0 -) -) -k1,10375:3078556,2439708:-34777008 -) -] -[1,10375:3078558,4812305:0,0,0 -(1,10375:3078558,49800853:0,16384,2228224 -k1,10375:1358238,49800853:-1720320 -(1,10278:1358238,49800853:1720320,16384,2228224 -(1,10278:1358238,49800853:1179648,16384,0 -r1,10375:2537886,49800853:1179648,16384,0 -) -g1,10278:3062174,49800853 -(1,10278:3062174,52029077:16384,1703936,0 -[1,10278:3062174,52029077:25952256,1703936,0 -(1,10278:3062174,51504789:25952256,1179648,0 -(1,10278:3062174,51504789:16384,1179648,0 -r1,10375:3078558,51504789:16384,1179648,0 -) -k1,10278:29014430,51504789:25935872 -g1,10278:29014430,51504789 -) -] -) -) -) -] -[1,10375:3078558,4812305:0,0,0 -(1,10375:3078558,49800853:0,16384,2228224 -g1,10375:29030814,49800853 -g1,10375:36135244,49800853 -(1,10278:36135244,49800853:1720320,16384,2228224 -(1,10278:36135244,52029077:16384,1703936,0 -[1,10278:36135244,52029077:25952256,1703936,0 -(1,10278:36135244,51504789:25952256,1179648,0 -(1,10278:36135244,51504789:16384,1179648,0 -r1,10375:36151628,51504789:16384,1179648,0 -) -k1,10278:62087500,51504789:25935872 -g1,10278:62087500,51504789 -) -] -) -g1,10278:36675916,49800853 -(1,10278:36675916,49800853:1179648,16384,0 -r1,10375:37855564,49800853:1179648,16384,0 -) -) -k1,10375:3078556,49800853:-34777008 -) -] -g1,10375:6630773,4812305 -g1,10375:6630773,4812305 -g1,10375:9499939,4812305 -g1,10375:12584718,4812305 -g1,10375:13994397,4812305 -g1,10375:17201073,4812305 -k1,10375:31387652,4812305:14186579 -) -) -] -[1,10375:6630773,45706769:25952256,40108032,0 -(1,10375:6630773,45706769:25952256,40108032,0 -(1,10375:6630773,45706769:0,0,0 -g1,10375:6630773,45706769 -) -[1,10375:6630773,45706769:25952256,40108032,0 -(1,10341:6630773,6254097:25952256,513147,134348 -k1,10340:9495588,6254097:169319 -k1,10340:10280945,6254097:169319 -k1,10340:11958903,6254097:169319 -k1,10340:13964541,6254097:169319 -k1,10340:15087409,6254097:169319 -k1,10340:16731943,6254097:169319 -k1,10340:18411212,6254097:169319 -k1,10340:20670474,6254097:169319 -k1,10340:21254607,6254097:169290 -k1,10340:24449723,6254097:169319 -k1,10340:25301927,6254097:169319 -k1,10340:28548161,6254097:169319 -k1,10340:29333518,6254097:169319 -k1,10340:31665525,6254097:169319 -k1,10341:32583029,6254097:0 -) -(1,10341:6630773,7095585:25952256,513147,126483 -k1,10340:7834976,7095585:207400 -k1,10340:10703792,7095585:207399 -k1,10340:11527230,7095585:207400 -k1,10340:12937870,7095585:207399 -k1,10340:14900980,7095585:207400 -k1,10340:16656995,7095585:207399 -k1,10340:17732747,7095585:207400 -k1,10340:19072608,7095585:207399 -k1,10340:20664128,7095585:207400 -k1,10340:22762896,7095585:207399 -k1,10340:23501793,7095585:207400 -k1,10340:25039573,7095585:207399 -k1,10340:25898401,7095585:207400 -k1,10340:28066637,7095585:207399 -k1,10340:29557232,7095585:207400 -k1,10340:32583029,7095585:0 -) -(1,10341:6630773,7937073:25952256,513147,7863 -g1,10340:7489294,7937073 -g1,10340:8786251,7937073 -k1,10341:32583030,7937073:22292728 -g1,10341:32583030,7937073 -) -(1,10343:6630773,8778561:25952256,513147,134348 -h1,10342:6630773,8778561:983040,0,0 -k1,10342:8825902,8778561:258540 -k1,10342:10291614,8778561:258539 -k1,10342:11166192,8778561:258540 -k1,10342:13703418,8778561:258539 -h1,10342:15246136,8778561:0,0,0 -k1,10342:15504676,8778561:258540 -k1,10342:16572585,8778561:258539 -k1,10342:18329278,8778561:258540 -h1,10342:19524655,8778561:0,0,0 -k1,10342:19783194,8778561:258539 -k1,10342:20397594,8778561:258540 -k1,10342:23272330,8778561:258539 -k1,10342:24190162,8778561:258540 -k1,10342:24804561,8778561:258539 -k1,10342:28476871,8778561:258540 -k1,10342:32095441,8778561:258539 -k1,10342:32583029,8778561:0 -) -(1,10343:6630773,9620049:25952256,513147,126483 -k1,10342:9527405,9620049:201136 -k1,10342:10260038,9620049:201136 -k1,10342:11607399,9620049:201136 -k1,10342:12164395,9620049:201136 -k1,10342:15779301,9620049:201136 -k1,10342:19166796,9620049:201135 -k1,10342:20761883,9620049:201136 -k1,10342:21982104,9620049:201136 -k1,10342:25369600,9620049:201136 -k1,10342:26855242,9620049:201136 -k1,10342:30573040,9620049:201136 -k1,10342:32583029,9620049:0 -) -(1,10343:6630773,10461537:25952256,513147,126483 -k1,10342:7885241,10461537:235383 -k1,10342:10816121,10461537:235384 -k1,10342:13338711,10461537:235383 -k1,10342:14389362,10461537:235383 -k1,10342:15691016,10461537:235383 -k1,10342:17705702,10461537:235384 -k1,10342:20355431,10461537:235383 -k1,10342:21722621,10461537:235383 -k1,10342:24469344,10461537:235383 -k1,10342:27086306,10461537:235384 -k1,10342:29687539,10461537:235383 -k1,10342:30942007,10461537:235383 -k1,10343:32583029,10461537:0 -) -(1,10343:6630773,11303025:25952256,513147,134348 -k1,10342:8328559,11303025:256649 -k1,10342:10075497,11303025:256649 -k1,10342:12187470,11303025:256649 -k1,10342:13463204,11303025:256649 -k1,10342:17236515,11303025:256649 -k1,10342:19503153,11303025:256649 -k1,10342:20778886,11303025:256648 -k1,10342:23731031,11303025:256649 -k1,10342:25564476,11303025:256649 -k1,10342:26636393,11303025:256649 -k1,10342:28368257,11303025:256649 -k1,10342:30655867,11303025:256649 -k1,10342:31563944,11303025:256649 -k1,10342:32583029,11303025:0 -) -(1,10343:6630773,12144513:25952256,513147,134348 -k1,10342:10910180,12144513:222073 -k1,10342:11748291,12144513:222073 -k1,10342:13855836,12144513:222074 -k1,10342:15096994,12144513:222073 -k1,10342:18014563,12144513:222073 -k1,10342:18768133,12144513:222073 -k1,10342:21031653,12144513:222074 -k1,10342:21711823,12144513:222073 -k1,10342:22465393,12144513:222073 -k1,10342:24572937,12144513:222073 -k1,10342:25446438,12144513:222073 -k1,10342:27105717,12144513:222074 -k1,10342:28093906,12144513:222073 -k1,10342:30024503,12144513:222073 -k1,10342:32583029,12144513:0 -) -(1,10343:6630773,12986001:25952256,513147,126483 -g1,10342:7849087,12986001 -g1,10342:10743812,12986001 -g1,10342:14727745,12986001 -g1,10342:16118419,12986001 -g1,10342:18328293,12986001 -g1,10342:19293638,12986001 -g1,10342:21503512,12986001 -g1,10342:22354169,12986001 -g1,10342:23572483,12986001 -k1,10343:32583029,12986001:7101482 -g1,10343:32583029,12986001 -) -(1,10355:6630773,25234119:25952256,11400739,0 -k1,10355:15320325,25234119:8689552 -(1,10344:15320325,25234119:0,0,0 -g1,10344:15320325,25234119 -g1,10344:15320325,25234119 -g1,10344:14992645,25234119 -(1,10344:14992645,25234119:0,0,0 -) -g1,10344:15320325,25234119 -) -(1,10354:15320325,25234119:8573152,11400739,0 -g1,10354:19606901,25234119 -(1,10354:19606901,14778826:0,0,0 -(1,10354:19606901,14778826:0,0,0 -g1,10345:19606901,14778826 -(1,10346:19606901,14778826:0,0,0 -(1,10346:19606901,14778826:0,0,0 -g1,10346:19606901,14778826 -g1,10346:19606901,14778826 -g1,10346:19606901,14778826 -g1,10346:19606901,14778826 -g1,10346:19606901,14778826 -(1,10346:19606901,14778826:0,0,0 -(1,10346:19606901,14778826:8110079,428605,134348 -(1,10346:19606901,14778826:8110079,428605,134348 -g1,10346:23212691,14778826 -$1,10346:23212691,14778826 -$1,10346:23887712,14778826 -g1,10346:24086941,14778826 -) -g1,10346:27716980,14778826 -) -) -g1,10346:19606901,14778826 -g1,10346:19606901,14778826 -) -) -g1,10346:19606901,14778826 -(1,10347:19606901,14778826:0,0,0 -(1,10347:19606901,14778826:0,0,0 -g1,10347:19606901,14778826 -g1,10347:19606901,14778826 -g1,10347:19606901,14778826 -g1,10347:19606901,14778826 -g1,10347:19606901,14778826 -(1,10347:19606901,14778826:0,0,0 -(1,10347:19606901,14778826:0,0,0 -(1,10347:19606901,14778826:0,0,0 -) -g1,10347:19606901,14778826 -) -) -g1,10347:19606901,14778826 -g1,10347:19606901,14778826 -) -) -g1,10347:19606901,14778826 -g1,10348:19606901,14778826 -(1,10348:19606901,14778826:0,0,0 -(1,10348:19606901,14778826:0,0,0 -g1,10348:19606901,14778826 -g1,10348:19606901,14778826 -g1,10348:19606901,14778826 -g1,10348:19606901,14778826 -g1,10348:19606901,14778826 -(1,10348:19606901,14778826:0,0,0 -(1,10348:19606901,14778826:4578808,414482,115847 -(1,10348:19606901,14778826:4578808,414482,115847 -(1,10348:19606901,14778826:0,414482,115847 -r1,10375:24185709,14778826:4578808,530329,115847 -k1,10348:19606901,14778826:-4578808 -) -(1,10348:19606901,14778826:4578808,414482,115847 -g1,10348:23479008,14778826 -h1,10348:24182432,14778826:0,411205,112570 -) -) -g1,10348:24185709,14778826 -) -) -g1,10348:19606901,14778826 -g1,10348:19606901,14778826 -) -) -g1,10348:19606901,14778826 -g1,10349:19606901,14778826 -(1,10349:19606901,14778826:0,0,0 -(1,10349:19606901,14778826:0,0,0 -g1,10349:19606901,14778826 -g1,10349:19606901,14778826 -g1,10349:19606901,14778826 -g1,10349:19606901,14778826 -g1,10349:19606901,14778826 -(1,10349:19606901,14778826:0,0,0 -(1,10349:19606901,14778826:4578808,414482,115847 -(1,10349:19606901,14778826:4578808,414482,115847 -(1,10349:19606901,14778826:0,414482,115847 -r1,10375:24185709,14778826:4578808,530329,115847 -k1,10349:19606901,14778826:-4578808 -) -(1,10349:19606901,14778826:4578808,414482,115847 -g1,10349:23479008,14778826 -h1,10349:24182432,14778826:0,411205,112570 -) -) -g1,10349:24185709,14778826 -) -) -g1,10349:19606901,14778826 -g1,10349:19606901,14778826 -) -) -g1,10349:19606901,14778826 -g1,10350:19606901,14778826 -(1,10350:19606901,14778826:0,0,0 -(1,10350:19606901,14778826:0,0,0 -g1,10350:19606901,14778826 -g1,10350:19606901,14778826 -g1,10350:19606901,14778826 -g1,10350:19606901,14778826 -g1,10350:19606901,14778826 -(1,10350:19606901,14778826:0,0,0 -(1,10350:19606901,14778826:7531396,505283,7863 -(1,10350:19606901,14778826:7531396,505283,7863 -g1,10350:22558642,14778826 -g1,10350:24463773,14778826 -$1,10350:24463773,14778826 -$1,10350:25138794,14778826 -g1,10350:25338023,14778826 -) -g1,10350:27138297,14778826 -) -) -g1,10350:19606901,14778826 -g1,10350:19606901,14778826 -) -) -g1,10350:19606901,14778826 -g1,10351:19606901,14778826 -g1,10351:19606901,14778826 -g1,10351:19606901,14778826 -g1,10351:19606901,14778826 -g1,10351:19606901,14778826 -g1,10351:19606901,14778826 -g1,10352:19606901,14778826 -g1,10352:19606901,14778826 -g1,10352:19606901,14778826 -g1,10352:19606901,14778826 -g1,10352:19606901,14778826 -g1,10352:19606901,14778826 -g1,10353:19606901,14778826 -g1,10353:19606901,14778826 -g1,10353:19606901,14778826 -g1,10353:19606901,14778826 -g1,10353:19606901,14778826 -g1,10353:19606901,14778826 -g1,10354:19606901,14778826 -g1,10354:19606901,14778826 -) -g1,10354:19606901,14778826 -) -) -g1,10355:23893477,25234119 -k1,10355:32583029,25234119:8689552 -) -(1,10358:6630773,26730967:25952256,513147,134348 -h1,10357:6630773,26730967:983040,0,0 -k1,10357:8996294,26730967:185794 -k1,10357:11798286,26730967:185795 -k1,10357:13839404,26730967:185794 -k1,10357:17397026,26730967:185795 -k1,10357:17938680,26730967:185794 -k1,10357:20819971,26730967:185795 -k1,10357:22290271,26730967:185794 -k1,10357:23577071,26730967:185795 -k1,10357:24572235,26730967:185794 -k1,10357:25973723,26730967:185795 -k1,10357:28322205,26730967:185794 -k1,10357:29194162,26730967:185795 -k1,10357:29838053,26730967:185794 -k1,10357:31516758,26730967:185795 -k1,10357:32583029,26730967:0 -) -(1,10358:6630773,27572455:25952256,513147,126483 -k1,10357:8642162,27572455:232087 -k1,10357:9662647,27572455:232087 -k1,10357:14125738,27572455:232087 -k1,10357:14815922,27572455:232087 -k1,10357:16423610,27572455:232087 -k1,10357:18996643,27572455:232087 -k1,10357:19584590,27572455:232087 -k1,10357:21497019,27572455:232086 -k1,10357:22380534,27572455:232087 -k1,10357:23631706,27572455:232087 -k1,10357:25772857,27572455:232087 -k1,10357:26492499,27572455:232054 -k1,10357:28404929,27572455:232087 -k1,10357:29446386,27572455:232087 -k1,10357:31563944,27572455:232087 -k1,10357:32583029,27572455:0 -) -(1,10358:6630773,28413943:25952256,513147,7863 -k1,10357:8576587,28413943:210421 -k1,10357:9888013,28413943:210421 -k1,10357:11188298,28413943:210421 -k1,10357:13860250,28413943:210420 -k1,10357:15267358,28413943:210421 -k1,10357:18664139,28413943:210421 -k1,10357:20159066,28413943:210421 -k1,10357:21799483,28413943:210421 -k1,10357:23028989,28413943:210421 -k1,10357:25934905,28413943:210420 -k1,10357:29146875,28413943:210421 -k1,10357:30905912,28413943:210421 -k1,10357:31767761,28413943:210421 -k1,10357:32583029,28413943:0 -) -(1,10358:6630773,29255431:25952256,513147,102891 -k1,10357:8253679,29255431:228955 -k1,10357:9501718,29255431:228954 -k1,10357:11411016,29255431:228955 -k1,10357:14283038,29255431:228955 -k1,10357:16079613,29255431:228954 -k1,10357:17327653,29255431:228955 -k1,10357:20425773,29255431:228954 -k1,10357:22437963,29255431:228955 -k1,10357:23022778,29255431:228955 -k1,10357:25947228,29255431:228954 -k1,10357:27277188,29255431:228955 -k1,10357:27862003,29255431:228955 -k1,10357:29390536,29255431:228954 -k1,10357:31563944,29255431:228955 -k1,10357:32583029,29255431:0 -) -(1,10358:6630773,30096919:25952256,513147,134348 -k1,10357:8522305,30096919:156139 -k1,10357:9209942,30096919:156140 -k1,10357:10175451,30096919:156139 -k1,10357:12355997,30096919:156139 -k1,10357:13128175,30096919:156140 -k1,10357:15745846,30096919:156139 -k1,10357:17226469,30096919:156140 -k1,10357:19483692,30096919:156139 -k1,10357:20744113,30096919:156139 -k1,10357:21648019,30096919:156140 -k1,10357:24091365,30096919:156139 -k1,10357:25532010,30096919:156139 -k1,10357:26503418,30096919:156140 -k1,10357:27725828,30096919:156139 -k1,10357:29335557,30096919:156140 -k1,10357:30623503,30096919:156139 -k1,10357:32583029,30096919:0 -) -(1,10358:6630773,30938407:25952256,513147,134348 -k1,10357:7392664,30938407:145853 -k1,10357:8557602,30938407:145853 -k1,10357:10793398,30938407:145853 -k1,10357:12609108,30938407:145853 -k1,10357:13901186,30938407:145853 -k1,10357:15745077,30938407:145853 -k1,10357:16246790,30938407:145853 -k1,10357:17492338,30938407:145854 -k1,10357:18289619,30938407:145853 -(1,10357:18289619,30938407:0,452978,115847 -r1,10375:20758156,30938407:2468537,568825,115847 -k1,10357:18289619,30938407:-2468537 -) -(1,10357:18289619,30938407:2468537,452978,115847 -k1,10357:18289619,30938407:3277 -h1,10357:20754879,30938407:0,411205,112570 -) -k1,10357:20904009,30938407:145853 -k1,10357:23675234,30938407:145853 -k1,10357:25047266,30938407:145853 -k1,10357:25876004,30938407:145853 -k1,10357:29011609,30938407:145853 -k1,10357:30481945,30938407:145853 -k1,10357:32583029,30938407:0 -) -(1,10358:6630773,31779895:25952256,513147,134348 -k1,10357:7891938,31779895:156883 -k1,10357:9334637,31779895:156883 -k1,10357:10239286,31779895:156883 -k1,10357:11166872,31779895:156883 -k1,10357:14969523,31779895:156883 -k1,10357:16410912,31779895:156883 -k1,10357:19312444,31779895:156884 -k1,10357:20240030,31779895:156883 -k1,10357:22356439,31779895:156883 -k1,10357:23129360,31779895:156883 -k1,10357:24305328,31779895:156883 -k1,10357:26701576,31779895:156883 -k1,10357:31089463,31779895:156883 -k1,10357:32583029,31779895:0 -) -(1,10358:6630773,32621383:25952256,505283,134348 -g1,10357:7516164,32621383 -g1,10357:10712354,32621383 -g1,10357:11267443,32621383 -g1,10357:12749867,32621383 -g1,10357:14629439,32621383 -g1,10357:15480096,32621383 -g1,10357:16035185,32621383 -g1,10357:18745754,32621383 -g1,10357:19561021,32621383 -g1,10357:20779335,32621383 -g1,10357:23217929,32621383 -k1,10358:32583029,32621383:5134096 -g1,10358:32583029,32621383 -) -(1,10372:6630773,44877366:25952256,11400739,0 -k1,10372:11676556,44877366:5045783 -(1,10359:11676556,44877366:0,0,0 -g1,10359:11676556,44877366 -g1,10359:11676556,44877366 -g1,10359:11348876,44877366 -(1,10359:11348876,44877366:0,0,0 -) -g1,10359:11676556,44877366 -) -(1,10371:11676556,44877366:15860690,11400739,0 -g1,10371:15963132,44877366 -(1,10371:15963132,34422073:0,0,0 -(1,10371:15963132,34422073:0,0,0 -g1,10360:15963132,34422073 -(1,10361:15963132,34422073:0,0,0 -(1,10361:15963132,34422073:0,0,0 -g1,10361:15963132,34422073 -g1,10361:15963132,34422073 -g1,10361:15963132,34422073 -g1,10361:15963132,34422073 -g1,10361:15963132,34422073 -(1,10361:15963132,34422073:0,0,0 -(1,10361:15963132,34422073:8110079,428605,134348 -(1,10361:15963132,34422073:8110079,428605,134348 -g1,10361:19568922,34422073 -$1,10361:19568922,34422073 -$1,10361:20243943,34422073 -g1,10361:20443172,34422073 -) -g1,10361:24073211,34422073 -) -) -g1,10361:15963132,34422073 -g1,10361:15963132,34422073 -) -) -g1,10361:15963132,34422073 -(1,10362:15963132,34422073:0,0,0 -(1,10362:15963132,34422073:0,0,0 -g1,10362:15963132,34422073 -g1,10362:15963132,34422073 -g1,10362:15963132,34422073 -g1,10362:15963132,34422073 -g1,10362:15963132,34422073 -(1,10362:15963132,34422073:0,0,0 -(1,10362:15963132,34422073:0,0,0 -(1,10362:15963132,34422073:0,0,0 -) -g1,10362:15963132,34422073 -) -) -g1,10362:15963132,34422073 -g1,10362:15963132,34422073 -) -) -g1,10362:15963132,34422073 -g1,10363:15963132,34422073 -(1,10363:15963132,34422073:0,0,0 -(1,10363:15963132,34422073:0,0,0 -g1,10363:15963132,34422073 -g1,10363:15963132,34422073 -g1,10363:15963132,34422073 -g1,10363:15963132,34422073 -g1,10363:15963132,34422073 -(1,10363:15963132,34422073:0,0,0 -(1,10363:15963132,34422073:4578808,414482,115847 -(1,10363:15963132,34422073:4578808,414482,115847 -(1,10363:15963132,34422073:0,414482,115847 -r1,10375:20541940,34422073:4578808,530329,115847 -k1,10363:15963132,34422073:-4578808 -) -(1,10363:15963132,34422073:4578808,414482,115847 -g1,10363:19835239,34422073 -h1,10363:20538663,34422073:0,411205,112570 -) -) -g1,10363:20541940,34422073 -) -) -g1,10363:15963132,34422073 -g1,10363:15963132,34422073 -) -) -g1,10363:15963132,34422073 -(1,10364:15963132,34422073:0,0,0 -(1,10364:15963132,34422073:0,0,0 -g1,10364:15963132,34422073 -g1,10364:15963132,34422073 -g1,10364:15963132,34422073 -g1,10364:15963132,34422073 -g1,10364:15963132,34422073 -(1,10364:15963132,34422073:0,0,0 -(1,10364:15963132,34422073:3115581,513147,126483 -(1,10364:15963132,34422073:3115581,513147,126483 -g1,10364:17378054,34422073 -) -g1,10364:19078713,34422073 -) -) -g1,10364:15963132,34422073 -g1,10364:15963132,34422073 -) -) -g1,10364:15963132,34422073 -g1,10365:15963132,34422073 -(1,10365:15963132,34422073:0,0,0 -(1,10365:15963132,34422073:0,0,0 -g1,10365:15963132,34422073 -g1,10365:15963132,34422073 -g1,10365:15963132,34422073 -g1,10365:15963132,34422073 -g1,10365:15963132,34422073 -(1,10365:15963132,34422073:0,0,0 -(1,10365:15963132,34422073:4578808,414482,115847 -(1,10365:15963132,34422073:4578808,414482,115847 -(1,10365:15963132,34422073:0,414482,115847 -r1,10375:20541940,34422073:4578808,530329,115847 -k1,10365:15963132,34422073:-4578808 -) -(1,10365:15963132,34422073:4578808,414482,115847 -g1,10365:19835239,34422073 -h1,10365:20538663,34422073:0,411205,112570 -) -) -g1,10365:20541940,34422073 -) -) -g1,10365:15963132,34422073 -g1,10365:15963132,34422073 -) -) -g1,10365:15963132,34422073 -g1,10366:15963132,34422073 -(1,10366:15963132,34422073:0,0,0 -(1,10366:15963132,34422073:0,0,0 -g1,10366:15963132,34422073 -g1,10366:15963132,34422073 -g1,10366:15963132,34422073 -g1,10366:15963132,34422073 -g1,10366:15963132,34422073 -(1,10366:15963132,34422073:0,0,0 -(1,10366:15963132,34422073:7531396,505283,7863 -(1,10366:15963132,34422073:7531396,505283,7863 -g1,10366:18914873,34422073 -g1,10366:20820004,34422073 -$1,10366:20820004,34422073 -$1,10366:21495025,34422073 -g1,10366:21694254,34422073 -) -g1,10366:23494528,34422073 -) -) -g1,10366:15963132,34422073 -g1,10366:15963132,34422073 -) -) -g1,10366:15963132,34422073 -g1,10367:15963132,34422073 -g1,10367:15963132,34422073 -g1,10367:15963132,34422073 -g1,10367:15963132,34422073 -g1,10367:15963132,34422073 -g1,10367:15963132,34422073 -g1,10368:15963132,34422073 -g1,10368:15963132,34422073 -g1,10368:15963132,34422073 -g1,10368:15963132,34422073 -g1,10368:15963132,34422073 -g1,10368:15963132,34422073 -g1,10369:15963132,34422073 -g1,10369:15963132,34422073 -g1,10369:15963132,34422073 -g1,10369:15963132,34422073 -g1,10369:15963132,34422073 -g1,10369:15963132,34422073 -g1,10370:15963132,34422073 -g1,10370:15963132,34422073 -g1,10370:15963132,34422073 -g1,10370:15963132,34422073 -g1,10370:15963132,34422073 -g1,10370:15963132,34422073 -g1,10371:15963132,34422073 -g1,10371:15963132,34422073 -) -g1,10371:15963132,34422073 -) -) -g1,10372:27537246,44877366 -k1,10372:32583029,44877366:5045783 -) -] -(1,10375:32583029,45706769:0,0,0 -g1,10375:32583029,45706769 -) -) -] -(1,10375:6630773,47279633:25952256,0,0 -h1,10375:6630773,47279633:25952256,0,0 -) -] -(1,10375:4262630,4025873:0,0,0 -[1,10375:-473656,4025873:0,0,0 -(1,10375:-473656,-710413:0,0,0 -(1,10375:-473656,-710413:0,0,0 -g1,10375:-473656,-710413 -) -g1,10375:-473656,-710413 -) -] -) -] -!21334 -}196 -Input:1485:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1486:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1487:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1488:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1489:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1490:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1491:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1492:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1493:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!840 -{197 -[1,10456:4262630,47279633:28320399,43253760,0 -(1,10456:4262630,4025873:0,0,0 -[1,10456:-473656,4025873:0,0,0 -(1,10456:-473656,-710413:0,0,0 -(1,10456:-473656,-644877:0,0,0 -k1,10456:-473656,-644877:-65536 -) -(1,10456:-473656,4736287:0,0,0 -k1,10456:-473656,4736287:5209943 -) -g1,10456:-473656,-710413 -) -] -) -[1,10456:6630773,47279633:25952256,43253760,0 -[1,10456:6630773,4812305:25952256,786432,0 -(1,10456:6630773,4812305:25952256,505283,134348 -(1,10456:6630773,4812305:25952256,505283,134348 -g1,10456:3078558,4812305 -[1,10456:3078558,4812305:0,0,0 -(1,10456:3078558,2439708:0,1703936,0 -k1,10456:1358238,2439708:-1720320 -(1,10278:1358238,2439708:1720320,1703936,0 -(1,10278:1358238,2439708:1179648,16384,0 -r1,10456:2537886,2439708:1179648,16384,0 -) -g1,10278:3062174,2439708 -(1,10278:3062174,2439708:16384,1703936,0 -[1,10278:3062174,2439708:25952256,1703936,0 -(1,10278:3062174,1915420:25952256,1179648,0 -(1,10278:3062174,1915420:16384,1179648,0 -r1,10456:3078558,1915420:16384,1179648,0 -) -k1,10278:29014430,1915420:25935872 -g1,10278:29014430,1915420 -) -] -) -) -) -] -[1,10456:3078558,4812305:0,0,0 -(1,10456:3078558,2439708:0,1703936,0 -g1,10456:29030814,2439708 -g1,10456:36135244,2439708 -(1,10278:36135244,2439708:1720320,1703936,0 -(1,10278:36135244,2439708:16384,1703936,0 -[1,10278:36135244,2439708:25952256,1703936,0 -(1,10278:36135244,1915420:25952256,1179648,0 -(1,10278:36135244,1915420:16384,1179648,0 -r1,10456:36151628,1915420:16384,1179648,0 -) -k1,10278:62087500,1915420:25935872 -g1,10278:62087500,1915420 -) -] -) -g1,10278:36675916,2439708 -(1,10278:36675916,2439708:1179648,16384,0 -r1,10456:37855564,2439708:1179648,16384,0 -) -) -k1,10456:3078556,2439708:-34777008 -) -] -[1,10456:3078558,4812305:0,0,0 -(1,10456:3078558,49800853:0,16384,2228224 -k1,10456:1358238,49800853:-1720320 -(1,10278:1358238,49800853:1720320,16384,2228224 -(1,10278:1358238,49800853:1179648,16384,0 -r1,10456:2537886,49800853:1179648,16384,0 -) -g1,10278:3062174,49800853 -(1,10278:3062174,52029077:16384,1703936,0 -[1,10278:3062174,52029077:25952256,1703936,0 -(1,10278:3062174,51504789:25952256,1179648,0 -(1,10278:3062174,51504789:16384,1179648,0 -r1,10456:3078558,51504789:16384,1179648,0 -) -k1,10278:29014430,51504789:25935872 -g1,10278:29014430,51504789 -) -] -) -) -) -] -[1,10456:3078558,4812305:0,0,0 -(1,10456:3078558,49800853:0,16384,2228224 -g1,10456:29030814,49800853 -g1,10456:36135244,49800853 -(1,10278:36135244,49800853:1720320,16384,2228224 -(1,10278:36135244,52029077:16384,1703936,0 -[1,10278:36135244,52029077:25952256,1703936,0 -(1,10278:36135244,51504789:25952256,1179648,0 -(1,10278:36135244,51504789:16384,1179648,0 -r1,10456:36151628,51504789:16384,1179648,0 -) -k1,10278:62087500,51504789:25935872 -g1,10278:62087500,51504789 -) -] -) -g1,10278:36675916,49800853 -(1,10278:36675916,49800853:1179648,16384,0 -r1,10456:37855564,49800853:1179648,16384,0 -) -) -k1,10456:3078556,49800853:-34777008 -) -] -g1,10456:6630773,4812305 -k1,10456:20781963,4812305:12955813 -g1,10456:22168704,4812305 -g1,10456:22817510,4812305 -g1,10456:26131665,4812305 -g1,10456:28614824,4812305 -g1,10456:30094627,4812305 -) -) -] -[1,10456:6630773,45706769:25952256,40108032,0 -(1,10456:6630773,45706769:25952256,40108032,0 -(1,10456:6630773,45706769:0,0,0 -g1,10456:6630773,45706769 -) -[1,10456:6630773,45706769:25952256,40108032,0 -(1,10375:6630773,6254097:25952256,513147,134348 -h1,10374:6630773,6254097:983040,0,0 -k1,10374:9155370,6254097:181030 -k1,10374:12362198,6254097:181031 -k1,10374:13734673,6254097:181030 -k1,10374:16992618,6254097:181030 -k1,10374:18165208,6254097:181030 -k1,10374:20727817,6254097:181031 -k1,10374:22644240,6254097:181030 -k1,10374:25520766,6254097:181030 -(1,10374:25520766,6254097:0,459977,115847 -r1,10456:29044438,6254097:3523672,575824,115847 -k1,10374:25520766,6254097:-3523672 -) -(1,10374:25520766,6254097:3523672,459977,115847 -k1,10374:25520766,6254097:3277 -h1,10374:29041161,6254097:0,411205,112570 -) -k1,10374:29399139,6254097:181031 -k1,10374:30771614,6254097:181030 -k1,10374:32583029,6254097:0 -) -(1,10375:6630773,7095585:25952256,505283,134348 -k1,10374:7963252,7095585:186254 -k1,10374:9281313,7095585:186254 -k1,10374:11169537,7095585:186254 -k1,10374:13315318,7095585:186255 -k1,10374:14117610,7095585:186254 -k1,10374:14718694,7095585:186241 -k1,10374:15666476,7095585:186254 -k1,10374:19498498,7095585:186254 -k1,10374:20336180,7095585:186254 -k1,10374:20878294,7095585:186254 -k1,10374:23575888,7095585:186254 -k1,10374:25673828,7095585:186255 -k1,10374:26487917,7095585:186254 -k1,10374:27693256,7095585:186254 -k1,10374:30540927,7095585:186254 -k1,10375:32583029,7095585:0 -) -(1,10375:6630773,7937073:25952256,513147,134348 -(1,10374:6630773,7937073:0,414482,115847 -r1,10456:6989039,7937073:358266,530329,115847 -k1,10374:6630773,7937073:-358266 -) -(1,10374:6630773,7937073:358266,414482,115847 -k1,10374:6630773,7937073:3277 -h1,10374:6985762,7937073:0,411205,112570 -) -k1,10374:7163770,7937073:174731 -k1,10374:8529946,7937073:174731 -(1,10374:8529946,7937073:0,414482,115847 -r1,10456:8888212,7937073:358266,530329,115847 -k1,10374:8529946,7937073:-358266 -) -(1,10374:8529946,7937073:358266,414482,115847 -k1,10374:8529946,7937073:3277 -h1,10374:8884935,7937073:0,411205,112570 -) -k1,10374:9062943,7937073:174731 -k1,10374:10229234,7937073:174731 -k1,10374:11870661,7937073:174731 -k1,10374:14174001,7937073:174731 -k1,10374:18133436,7937073:174731 -k1,10374:18991052,7937073:174731 -k1,10374:21234099,7937073:174731 -k1,10374:22922056,7937073:174731 -k1,10374:25106776,7937073:174731 -k1,10374:26300592,7937073:174731 -k1,10374:29170819,7937073:174731 -k1,10374:30293201,7937073:174731 -k1,10374:32583029,7937073:0 -) -(1,10375:6630773,8778561:25952256,513147,134348 -k1,10374:8144561,8778561:229282 -k1,10374:9506306,8778561:229283 -k1,10374:10483354,8778561:229282 -k1,10374:13473668,8778561:229282 -k1,10374:14389112,8778561:229282 -k1,10374:18047894,8778561:229283 -k1,10374:19975214,8778561:229282 -k1,10374:21223581,8778561:229282 -k1,10374:24148360,8778561:229283 -k1,10374:24909139,8778561:229282 -k1,10374:27179867,8778561:229282 -k1,10374:28680547,8778561:229282 -k1,10374:30014112,8778561:229283 -k1,10374:31923737,8778561:229282 -k1,10374:32583029,8778561:0 -) -(1,10375:6630773,9620049:25952256,513147,134348 -k1,10374:10159112,9620049:247607 -k1,10374:12475035,9620049:247607 -k1,10374:13408803,9620049:247606 -k1,10374:17720297,9620049:247607 -k1,10374:18915555,9620049:247607 -k1,10374:21085333,9620049:247607 -k1,10374:23343585,9620049:247607 -k1,10374:24242620,9620049:247607 -k1,10374:25237992,9620049:247606 -k1,10374:28246631,9620049:247607 -k1,10374:29180400,9620049:247607 -k1,10374:32583029,9620049:0 -) -(1,10375:6630773,10461537:25952256,513147,134348 -g1,10374:8528040,10461537 -g1,10374:10817212,10461537 -g1,10374:12035526,10461537 -k1,10375:32583028,10461537:17678336 -g1,10375:32583028,10461537 -) -v1,10377:6630773,11652003:0,393216,0 -(1,10385:6630773,13339826:25952256,2081039,196608 -g1,10385:6630773,13339826 -g1,10385:6630773,13339826 -g1,10385:6434165,13339826 -(1,10385:6434165,13339826:0,2081039,196608 -r1,10456:32779637,13339826:26345472,2277647,196608 -k1,10385:6434165,13339826:-26345472 -) -(1,10385:6434165,13339826:26345472,2081039,196608 -[1,10385:6630773,13339826:25952256,1884431,0 -(1,10379:6630773,11865913:25952256,410518,101187 -(1,10378:6630773,11865913:0,0,0 -g1,10378:6630773,11865913 -g1,10378:6630773,11865913 -g1,10378:6303093,11865913 -(1,10378:6303093,11865913:0,0,0 -) -g1,10378:6630773,11865913 -) -g1,10379:9159939,11865913 -g1,10379:10108377,11865913 -g1,10379:13902126,11865913 -g1,10379:15482855,11865913 -g1,10379:16115147,11865913 -h1,10379:16747438,11865913:0,0,0 -k1,10379:32583029,11865913:15835591 -g1,10379:32583029,11865913 -) -(1,10380:6630773,12532091:25952256,404226,101187 -h1,10380:6630773,12532091:0,0,0 -g1,10380:10108377,12532091 -h1,10380:10740669,12532091:0,0,0 -k1,10380:32583029,12532091:21842360 -g1,10380:32583029,12532091 -) -(1,10384:6630773,13263805:25952256,404226,76021 -(1,10382:6630773,13263805:0,0,0 -g1,10382:6630773,13263805 -g1,10382:6630773,13263805 -g1,10382:6303093,13263805 -(1,10382:6303093,13263805:0,0,0 -) -g1,10382:6630773,13263805 -) -g1,10384:7579210,13263805 -g1,10384:8843793,13263805 -h1,10384:9476084,13263805:0,0,0 -k1,10384:32583028,13263805:23106944 -g1,10384:32583028,13263805 -) -] -) -g1,10385:32583029,13339826 -g1,10385:6630773,13339826 -g1,10385:6630773,13339826 -g1,10385:32583029,13339826 -g1,10385:32583029,13339826 -) -h1,10385:6630773,13536434:0,0,0 -v1,10389:6630773,15426498:0,393216,0 -(1,10408:6630773,36929028:25952256,21895746,616038 -g1,10408:6630773,36929028 -(1,10408:6630773,36929028:25952256,21895746,616038 -(1,10408:6630773,37545066:25952256,22511784,0 -[1,10408:6630773,37545066:25952256,22511784,0 -(1,10408:6630773,37518852:25952256,22459356,0 -r1,10456:6656987,37518852:26214,22459356,0 -[1,10408:6656987,37518852:25899828,22459356,0 -(1,10408:6656987,36929028:25899828,21279708,0 -[1,10408:7246811,36929028:24720180,21279708,0 -(1,10390:7246811,16734856:24720180,1085536,298548 -(1,10389:7246811,16734856:0,1085536,298548 -r1,10456:8753226,16734856:1506415,1384084,298548 -k1,10389:7246811,16734856:-1506415 -) -(1,10389:7246811,16734856:1506415,1085536,298548 -) -k1,10389:9062777,16734856:309551 -k1,10389:10000164,16734856:309552 -k1,10389:11743643,16734856:309551 -k1,10389:12641707,16734856:309551 -k1,10389:16353888,16734856:309552 -k1,10389:17314867,16734856:309551 -k1,10389:20650215,16734856:309551 -k1,10389:21951327,16734856:309552 -k1,10389:24466165,16734856:309551 -k1,10389:25537244,16734856:309551 -k1,10389:27530415,16734856:309551 -k1,10389:29220811,16734856:309552 -k1,10389:30061859,16734856:309551 -k1,10390:31966991,16734856:0 -) -(1,10390:7246811,17576344:24720180,513147,134348 -k1,10389:9154207,17576344:245403 -k1,10389:10753583,17576344:245402 -k1,10389:14208284,17576344:245403 -k1,10389:15105114,17576344:245402 -k1,10389:18783293,17576344:245403 -k1,10389:22002719,17576344:245402 -k1,10389:23744309,17576344:245403 -k1,10389:24605749,17576344:245402 -k1,10389:25207012,17576344:245403 -k1,10389:28651882,17576344:245402 -k1,10389:30474081,17576344:245403 -k1,10389:31966991,17576344:0 -) -(1,10390:7246811,18417832:24720180,513147,134348 -k1,10389:8118797,18417832:220558 -k1,10389:10601659,18417832:220559 -k1,10389:11592920,18417832:220558 -k1,10389:14885806,18417832:220558 -k1,10389:17311652,18417832:220559 -k1,10389:20090736,18417832:220558 -k1,10389:20667155,18417832:220559 -k1,10389:23016322,18417832:220558 -k1,10389:26691283,18417832:220558 -k1,10389:27700240,18417832:220559 -k1,10389:29601141,18417832:220558 -k1,10389:31966991,18417832:0 -) -(1,10390:7246811,19259320:24720180,513147,134348 -k1,10389:8513163,19259320:247267 -k1,10389:11455926,19259320:247267 -k1,10389:12835656,19259320:247268 -k1,10389:15310492,19259320:247267 -k1,10389:18134635,19259320:247267 -k1,10389:20511167,19259320:247267 -k1,10389:24423207,19259320:247267 -k1,10389:25505404,19259320:247268 -k1,10389:27454641,19259320:247267 -k1,10389:30778168,19259320:247267 -k1,10390:31966991,19259320:0 -) -(1,10390:7246811,20100808:24720180,513147,134348 -k1,10389:9787314,20100808:170066 -k1,10389:13360009,20100808:170066 -k1,10389:14634357,20100808:170066 -k1,10389:16090239,20100808:170066 -k1,10389:17008070,20100808:170065 -k1,10389:19383423,20100808:170066 -k1,10389:20315017,20100808:170066 -k1,10389:23638020,20100808:170066 -k1,10389:26536350,20100808:170066 -k1,10389:27990922,20100808:170066 -k1,10389:31966991,20100808:0 -) -(1,10390:7246811,20942296:24720180,513147,126483 -k1,10389:8113689,20942296:215450 -k1,10389:8684998,20942296:215449 -k1,10389:11029057,20942296:215450 -k1,10389:14525239,20942296:215450 -k1,10389:16750677,20942296:215449 -k1,10389:17985212,20942296:215450 -k1,10389:19777458,20942296:215450 -k1,10389:20652199,20942296:215449 -k1,10389:21886734,20942296:215450 -k1,10389:24797680,20942296:215450 -k1,10389:26004689,20942296:215449 -k1,10389:31315563,20942296:215450 -k1,10389:31966991,20942296:0 -) -(1,10390:7246811,21783784:24720180,513147,134348 -k1,10389:8480293,21783784:214397 -k1,10389:11767019,21783784:214398 -k1,10389:13172861,21783784:214397 -k1,10389:15649561,21783784:214397 -k1,10389:16495726,21783784:214398 -k1,10389:17180016,21783784:214397 -k1,10389:17925911,21783784:214398 -k1,10389:20770268,21783784:214397 -k1,10389:21636093,21783784:214397 -k1,10389:24089856,21783784:214398 -k1,10389:25797819,21783784:214397 -k1,10389:28771937,21783784:214397 -k1,10389:29602373,21783784:214398 -k1,10389:30231598,21783784:214382 -k1,10389:31966991,21783784:0 -) -(1,10390:7246811,22625272:24720180,505283,134348 -k1,10389:9142695,22625272:203744 -k1,10389:12188735,22625272:203744 -k1,10389:14861876,22625272:203744 -k1,10389:16257065,22625272:203744 -k1,10389:20859586,22625272:203744 -k1,10389:22755470,22625272:203744 -k1,10389:25869668,22625272:203744 -k1,10389:27566978,22625272:203744 -k1,10389:28456884,22625272:203744 -k1,10389:31966991,22625272:0 -) -(1,10390:7246811,23466760:24720180,513147,134348 -g1,10389:8261308,23466760 -g1,10389:10421374,23466760 -g1,10389:13646400,23466760 -g1,10389:15130135,23466760 -g1,10389:16421849,23466760 -g1,10389:19048532,23466760 -g1,10389:19907053,23466760 -g1,10389:23508911,23466760 -g1,10389:24469668,23466760 -k1,10390:31966991,23466760:4137292 -g1,10390:31966991,23466760 -) -v1,10392:7246811,24657226:0,393216,0 -(1,10402:7246811,27677405:24720180,3413395,196608 -g1,10402:7246811,27677405 -g1,10402:7246811,27677405 -g1,10402:7050203,27677405 -(1,10402:7050203,27677405:0,3413395,196608 -r1,10456:32163599,27677405:25113396,3610003,196608 -k1,10402:7050203,27677405:-25113396 -) -(1,10402:7050203,27677405:25113396,3413395,196608 -[1,10402:7246811,27677405:24720180,3216787,0 -(1,10394:7246811,24871136:24720180,410518,107478 -(1,10393:7246811,24871136:0,0,0 -g1,10393:7246811,24871136 -g1,10393:7246811,24871136 -g1,10393:6919131,24871136 -(1,10393:6919131,24871136:0,0,0 -) -g1,10393:7246811,24871136 -) -g1,10394:10408268,24871136 -g1,10394:11356706,24871136 -g1,10394:15782746,24871136 -g1,10394:16731184,24871136 -h1,10394:17679621,24871136:0,0,0 -k1,10394:31966991,24871136:14287370 -g1,10394:31966991,24871136 -) -(1,10395:7246811,25537314:24720180,388497,4718 -h1,10395:7246811,25537314:0,0,0 -g1,10395:7879103,25537314 -g1,10395:8827541,25537314 -h1,10395:9143687,25537314:0,0,0 -k1,10395:31966991,25537314:22823304 -g1,10395:31966991,25537314 -) -(1,10396:7246811,26203492:24720180,404226,107478 -h1,10396:7246811,26203492:0,0,0 -k1,10396:7246811,26203492:0 -h1,10396:11040559,26203492:0,0,0 -k1,10396:31966991,26203492:20926432 -g1,10396:31966991,26203492 -) -(1,10397:7246811,26869670:24720180,284164,4718 -h1,10397:7246811,26869670:0,0,0 -h1,10397:7562957,26869670:0,0,0 -k1,10397:31966991,26869670:24404034 -g1,10397:31966991,26869670 -) -(1,10401:7246811,27601384:24720180,404226,76021 -(1,10399:7246811,27601384:0,0,0 -g1,10399:7246811,27601384 -g1,10399:7246811,27601384 -g1,10399:6919131,27601384 -(1,10399:6919131,27601384:0,0,0 -) -g1,10399:7246811,27601384 -) -g1,10401:8195248,27601384 -g1,10401:9459831,27601384 -h1,10401:9775977,27601384:0,0,0 -k1,10401:31966991,27601384:22191014 -g1,10401:31966991,27601384 -) -] -) -g1,10402:31966991,27677405 -g1,10402:7246811,27677405 -g1,10402:7246811,27677405 -g1,10402:31966991,27677405 -g1,10402:31966991,27677405 -) -h1,10402:7246811,27874013:0,0,0 -(1,10406:7246811,29239789:24720180,513147,134348 -h1,10405:7246811,29239789:983040,0,0 -k1,10405:9063961,29239789:206275 -k1,10405:11776987,29239789:206274 -k1,10405:13115069,29239789:206275 -k1,10405:15164215,29239789:206274 -k1,10405:16654996,29239789:206275 -k1,10405:18721837,29239789:206274 -k1,10405:19579540,29239789:206275 -k1,10405:20533580,29239789:206274 -k1,10405:22483768,29239789:206275 -k1,10405:25474011,29239789:206274 -k1,10405:28046136,29239789:206275 -k1,10405:29271495,29239789:206274 -k1,10405:31966991,29239789:0 -) -(1,10406:7246811,30081277:24720180,513147,134348 -k1,10405:9124527,30081277:255700 -k1,10405:10127992,30081277:255699 -k1,10405:13162419,30081277:255700 -k1,10405:14179647,30081277:255700 -k1,10405:15454431,30081277:255699 -k1,10405:19743872,30081277:255700 -k1,10405:22896919,30081277:255700 -k1,10405:25927412,30081277:255699 -k1,10405:26834540,30081277:255700 -k1,10405:27860943,30081277:255700 -k1,10405:30076168,30081277:255699 -k1,10405:30947906,30081277:255700 -k1,10405:31966991,30081277:0 -) -(1,10406:7246811,30922765:24720180,513147,134348 -g1,10405:10462007,30922765 -g1,10405:14718570,30922765 -g1,10405:16194440,30922765 -g1,10405:18129062,30922765 -(1,10405:18129062,30922765:0,414482,115847 -r1,10456:19190751,30922765:1061689,530329,115847 -k1,10405:18129062,30922765:-1061689 -) -(1,10405:18129062,30922765:1061689,414482,115847 -k1,10405:18129062,30922765:3277 -h1,10405:19187474,30922765:0,411205,112570 -) -g1,10405:19389980,30922765 -g1,10405:20272094,30922765 -(1,10405:20272094,30922765:0,452978,122846 -r1,10456:23092343,30922765:2820249,575824,122846 -k1,10405:20272094,30922765:-2820249 -) -(1,10405:20272094,30922765:2820249,452978,122846 -k1,10405:20272094,30922765:3277 -h1,10405:23089066,30922765:0,411205,112570 -) -g1,10405:23498666,30922765 -g1,10405:24384057,30922765 -g1,10405:24939146,30922765 -g1,10405:26437954,30922765 -k1,10406:31966991,30922765:3584584 -g1,10406:31966991,30922765 -) -(1,10408:7246811,31764253:24720180,513147,134348 -h1,10407:7246811,31764253:983040,0,0 -k1,10407:9004242,31764253:286803 -k1,10407:11986629,31764253:286891 -k1,10407:13377802,31764253:286891 -k1,10407:15040294,31764253:286891 -k1,10407:17337830,31764253:286891 -k1,10407:17980582,31764253:286892 -k1,10407:20140492,31764253:286891 -k1,10407:22560580,31764253:286891 -k1,10407:23572299,31764253:286891 -k1,10407:25557228,31764253:286891 -k1,10407:28515366,31764253:286891 -k1,10407:30975431,31764253:286891 -k1,10407:31966991,31764253:0 -) -(1,10408:7246811,32605741:24720180,505283,134348 -k1,10407:10543172,32605741:255490 -k1,10407:12178849,32605741:255489 -k1,10407:13964605,32605741:255490 -k1,10407:14871522,32605741:255489 -k1,10407:15874778,32605741:255490 -k1,10407:18974530,32605741:255489 -k1,10407:20497486,32605741:255490 -k1,10407:21108835,32605741:255489 -k1,10407:23237344,32605741:255490 -k1,10407:25626030,32605741:255489 -k1,10407:26509355,32605741:255490 -k1,10407:28516622,32605741:255490 -k1,10407:30643164,32605741:255489 -k1,10407:31966991,32605741:0 -) -(1,10408:7246811,33447229:24720180,505283,134348 -k1,10407:8416019,33447229:177648 -k1,10407:10106892,33447229:177647 -k1,10407:10935968,33447229:177648 -k1,10407:13189797,33447229:177648 -k1,10407:14133560,33447229:177647 -k1,10407:15330293,33447229:177648 -k1,10407:17518585,33447229:177647 -k1,10407:18347661,33447229:177648 -k1,10407:19273075,33447229:177648 -k1,10407:22229449,33447229:177647 -k1,10407:23674563,33447229:177648 -k1,10407:25008921,33447229:177648 -k1,10407:25601390,33447229:177626 -k1,10407:27912234,33447229:177647 -k1,10407:29131904,33447229:177648 -k1,10407:31966991,33447229:0 -) -(1,10408:7246811,34288717:24720180,513147,134348 -k1,10407:9409919,34288717:175401 -k1,10407:10272792,34288717:175400 -k1,10407:13473990,34288717:175401 -k1,10407:14795615,34288717:175400 -(1,10407:14795615,34288717:0,452978,115847 -r1,10456:16209016,34288717:1413401,568825,115847 -k1,10407:14795615,34288717:-1413401 -) -(1,10407:14795615,34288717:1413401,452978,115847 -k1,10407:14795615,34288717:3277 -h1,10407:16205739,34288717:0,411205,112570 -) -k1,10407:16558087,34288717:175401 -k1,10407:19862832,34288717:175401 -k1,10407:20654270,34288717:175400 -k1,10407:23108358,34288717:175401 -h1,10407:24078946,34288717:0,0,0 -k1,10407:24254347,34288717:175401 -k1,10407:25239117,34288717:175400 -k1,10407:26912671,34288717:175401 -h1,10407:28108048,34288717:0,0,0 -k1,10407:28457118,34288717:175400 -k1,10407:30643164,34288717:175401 -k1,10407:31966991,34288717:0 -) -(1,10408:7246811,35130205:24720180,513147,134348 -k1,10407:8928465,35130205:287703 -k1,10407:11887415,35130205:287703 -k1,10407:16847835,35130205:287703 -k1,10407:20262917,35130205:287704 -k1,10407:21921633,35130205:287703 -k1,10407:24930391,35130205:287703 -k1,10407:29025080,35130205:287703 -k1,10407:31350953,35130205:287703 -k1,10407:31966991,35130205:0 -) -(1,10408:7246811,35971693:24720180,505283,134348 -k1,10407:9680209,35971693:201897 -k1,10407:13164804,35971693:201897 -k1,10407:13994536,35971693:201897 -k1,10407:15215517,35971693:201896 -k1,10407:16784495,35971693:201897 -k1,10407:17795762,35971693:201897 -(1,10407:17795762,35971693:0,452978,115847 -r1,10456:19209163,35971693:1413401,568825,115847 -k1,10407:17795762,35971693:-1413401 -) -(1,10407:17795762,35971693:1413401,452978,115847 -k1,10407:17795762,35971693:3277 -h1,10407:19205886,35971693:0,411205,112570 -) -k1,10407:19411060,35971693:201897 -k1,10407:20632042,35971693:201897 -k1,10407:23612666,35971693:201897 -k1,10407:26278061,35971693:201897 -k1,10407:28035126,35971693:201896 -k1,10407:28768520,35971693:201897 -(1,10407:28768520,35971693:0,452978,115847 -r1,10456:29478498,35971693:709978,568825,115847 -k1,10407:28768520,35971693:-709978 -) -(1,10407:28768520,35971693:709978,452978,115847 -k1,10407:28768520,35971693:3277 -h1,10407:29475221,35971693:0,411205,112570 -) -k1,10407:29854065,35971693:201897 -k1,10407:30411822,35971693:201897 -k1,10407:31966991,35971693:0 -) -(1,10408:7246811,36813181:24720180,513147,115847 -g1,10407:9828929,36813181 -g1,10407:11595779,36813181 -g1,10407:13350177,36813181 -(1,10407:13350177,36813181:0,452978,115847 -r1,10456:14763578,36813181:1413401,568825,115847 -k1,10407:13350177,36813181:-1413401 -) -(1,10407:13350177,36813181:1413401,452978,115847 -k1,10407:13350177,36813181:3277 -h1,10407:14760301,36813181:0,411205,112570 -) -k1,10408:31966992,36813181:17029744 -g1,10408:31966992,36813181 -) -] -) -] -r1,10456:32583029,37518852:26214,22459356,0 -) -] -) -) -g1,10408:32583029,36929028 -) -h1,10408:6630773,37545066:0,0,0 -v1,10411:6630773,38910842:0,393216,0 -(1,10456:6630773,43713473:25952256,5195847,589824 -g1,10456:6630773,43713473 -(1,10456:6630773,43713473:25952256,5195847,589824 -(1,10456:6630773,44303297:25952256,5785671,0 -[1,10456:6630773,44303297:25952256,5785671,0 -(1,10456:6630773,44303297:25952256,5759457,0 -r1,10456:6656987,44303297:26214,5759457,0 -[1,10456:6656987,44303297:25899828,5759457,0 -(1,10456:6656987,43713473:25899828,4579809,0 -[1,10456:7246811,43713473:24720180,4579809,0 -(1,10414:7246811,40221038:24720180,1087374,115847 -k1,10411:8773993,40221038:317479 -k1,10411:10874707,40221038:317479 -k1,10411:13887682,40221038:317479 -(1,10411:13887682,40221038:0,452978,115847 -r1,10456:16707931,40221038:2820249,568825,115847 -k1,10411:13887682,40221038:-2820249 -) -(1,10411:13887682,40221038:2820249,452978,115847 -k1,10411:13887682,40221038:3277 -h1,10411:16704654,40221038:0,411205,112570 -) -k1,10411:17025410,40221038:317479 -k1,10411:17874386,40221038:317479 -k1,10411:20059642,40221038:317480 -k1,10411:22387110,40221038:317479 -k1,10411:23060449,40221038:317479 -k1,10411:26247094,40221038:317479 -k1,10411:27914615,40221038:317479 -k1,10411:28891386,40221038:317479 -k1,10411:31966991,40221038:0 -) -(1,10414:7246811,41062526:24720180,513147,134348 -k1,10411:9512808,41062526:256008 -k1,10411:10787900,41062526:256007 -k1,10411:13739404,41062526:256008 -k1,10411:15728183,41062526:256007 -k1,10411:17175636,41062526:256008 -k1,10411:18450729,41062526:256008 -k1,10411:21779064,41062526:256007 -k1,10411:24240359,41062526:256008 -k1,10412:24240359,41062526:0 -k1,10412:25147794,41062526:256007 -(1,10412:25147794,41062526:0,452978,115847 -r1,10456:27968043,41062526:2820249,568825,115847 -k1,10412:25147794,41062526:-2820249 -) -(1,10412:25147794,41062526:2820249,452978,115847 -k1,10412:25147794,41062526:3277 -h1,10412:27964766,41062526:0,411205,112570 -) -k1,10412:28224051,41062526:256008 -k1,10412:29011555,41062526:256007 -k1,10412:30286648,41062526:256008 -k1,10412:31966991,41062526:0 -) -(1,10414:7246811,41904014:24720180,513147,126483 -k1,10412:10283348,41904014:257810 -k1,10412:11302686,41904014:257810 -k1,10412:12579581,41904014:257810 -k1,10412:15532886,41904014:257809 -k1,10412:17064061,41904014:257810 -k1,10412:17949706,41904014:257810 -k1,10412:21012457,41904014:257810 -k1,10412:21736228,41904014:257810 -k1,10412:24689534,41904014:257810 -(1,10412:24689534,41904014:0,452978,115847 -r1,10456:27509783,41904014:2820249,568825,115847 -k1,10412:24689534,41904014:-2820249 -) -(1,10412:24689534,41904014:2820249,452978,115847 -k1,10412:24689534,41904014:3277 -h1,10412:27506506,41904014:0,411205,112570 -) -k1,10412:27767592,41904014:257809 -k1,10412:28556899,41904014:257810 -k1,10412:29880980,41904014:257810 -k1,10414:31966991,41904014:0 -) -(1,10414:7246811,42745502:24720180,513147,126483 -k1,10412:8490919,42745502:219780 -k1,10413:10752144,42745502:219779 -k1,10413:11991009,42745502:219780 -k1,10413:13891131,42745502:219779 -k1,10413:16889638,42745502:219780 -k1,10413:17870945,42745502:219779 -k1,10413:19109810,42745502:219780 -k1,10413:22025086,42745502:219780 -k1,10413:23344559,42745502:219779 -k1,10413:24095836,42745502:219780 -k1,10413:25600121,42745502:219779 -k1,10413:28598628,42745502:219780 -k1,10413:29579935,42745502:219779 -k1,10413:30818800,42745502:219780 -k1,10413:31966991,42745502:0 -) -(1,10414:7246811,43586990:24720180,513147,126483 -g1,10413:10632400,43586990 -g1,10413:13582830,43586990 -g1,10413:15792048,43586990 -g1,10413:17010362,43586990 -g1,10413:18786387,43586990 -g1,10413:19644908,43586990 -g1,10413:20863222,43586990 -k1,10414:31966991,43586990:8234603 -g1,10414:31966991,43586990 -) -] -) -] -r1,10456:32583029,44303297:26214,5759457,0 -) -] -) -) -g1,10456:32583029,43713473 -) -] -(1,10456:32583029,45706769:0,0,0 -g1,10456:32583029,45706769 -) -) -] -(1,10456:6630773,47279633:25952256,0,0 -h1,10456:6630773,47279633:25952256,0,0 -) -] -(1,10456:4262630,4025873:0,0,0 -[1,10456:-473656,4025873:0,0,0 -(1,10456:-473656,-710413:0,0,0 -(1,10456:-473656,-710413:0,0,0 -g1,10456:-473656,-710413 -) -g1,10456:-473656,-710413 -) -] -) -] -!25317 -}197 -Input:1494:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1495:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1496:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!288 -{198 -[1,10501:4262630,47279633:28320399,43253760,0 -(1,10501:4262630,4025873:0,0,0 -[1,10501:-473656,4025873:0,0,0 -(1,10501:-473656,-710413:0,0,0 -(1,10501:-473656,-644877:0,0,0 -k1,10501:-473656,-644877:-65536 -) -(1,10501:-473656,4736287:0,0,0 -k1,10501:-473656,4736287:5209943 -) -g1,10501:-473656,-710413 -) -] -) -[1,10501:6630773,47279633:25952256,43253760,0 -[1,10501:6630773,4812305:25952256,786432,0 -(1,10501:6630773,4812305:25952256,513147,134348 -(1,10501:6630773,4812305:25952256,513147,134348 -g1,10501:3078558,4812305 -[1,10501:3078558,4812305:0,0,0 -(1,10501:3078558,2439708:0,1703936,0 -k1,10501:1358238,2439708:-1720320 -(1,10278:1358238,2439708:1720320,1703936,0 -(1,10278:1358238,2439708:1179648,16384,0 -r1,10501:2537886,2439708:1179648,16384,0 -) -g1,10278:3062174,2439708 -(1,10278:3062174,2439708:16384,1703936,0 -[1,10278:3062174,2439708:25952256,1703936,0 -(1,10278:3062174,1915420:25952256,1179648,0 -(1,10278:3062174,1915420:16384,1179648,0 -r1,10501:3078558,1915420:16384,1179648,0 -) -k1,10278:29014430,1915420:25935872 -g1,10278:29014430,1915420 -) -] -) -) -) -] -[1,10501:3078558,4812305:0,0,0 -(1,10501:3078558,2439708:0,1703936,0 -g1,10501:29030814,2439708 -g1,10501:36135244,2439708 -(1,10278:36135244,2439708:1720320,1703936,0 -(1,10278:36135244,2439708:16384,1703936,0 -[1,10278:36135244,2439708:25952256,1703936,0 -(1,10278:36135244,1915420:25952256,1179648,0 -(1,10278:36135244,1915420:16384,1179648,0 -r1,10501:36151628,1915420:16384,1179648,0 -) -k1,10278:62087500,1915420:25935872 -g1,10278:62087500,1915420 -) -] -) -g1,10278:36675916,2439708 -(1,10278:36675916,2439708:1179648,16384,0 -r1,10501:37855564,2439708:1179648,16384,0 -) -) -k1,10501:3078556,2439708:-34777008 -) -] -[1,10501:3078558,4812305:0,0,0 -(1,10501:3078558,49800853:0,16384,2228224 -k1,10501:1358238,49800853:-1720320 -(1,10278:1358238,49800853:1720320,16384,2228224 -(1,10278:1358238,49800853:1179648,16384,0 -r1,10501:2537886,49800853:1179648,16384,0 -) -g1,10278:3062174,49800853 -(1,10278:3062174,52029077:16384,1703936,0 -[1,10278:3062174,52029077:25952256,1703936,0 -(1,10278:3062174,51504789:25952256,1179648,0 -(1,10278:3062174,51504789:16384,1179648,0 -r1,10501:3078558,51504789:16384,1179648,0 -) -k1,10278:29014430,51504789:25935872 -g1,10278:29014430,51504789 -) -] -) -) -) -] -[1,10501:3078558,4812305:0,0,0 -(1,10501:3078558,49800853:0,16384,2228224 -g1,10501:29030814,49800853 -g1,10501:36135244,49800853 -(1,10278:36135244,49800853:1720320,16384,2228224 -(1,10278:36135244,52029077:16384,1703936,0 -[1,10278:36135244,52029077:25952256,1703936,0 -(1,10278:36135244,51504789:25952256,1179648,0 -(1,10278:36135244,51504789:16384,1179648,0 -r1,10501:36151628,51504789:16384,1179648,0 -) -k1,10278:62087500,51504789:25935872 -g1,10278:62087500,51504789 -) -] -) -g1,10278:36675916,49800853 -(1,10278:36675916,49800853:1179648,16384,0 -r1,10501:37855564,49800853:1179648,16384,0 -) -) -k1,10501:3078556,49800853:-34777008 -) -] -g1,10501:6630773,4812305 -g1,10501:6630773,4812305 -g1,10501:9499939,4812305 -g1,10501:12584718,4812305 -g1,10501:13994397,4812305 -g1,10501:17201073,4812305 -k1,10501:31387652,4812305:14186579 -) -) -] -[1,10501:6630773,45706769:25952256,40108032,0 -(1,10501:6630773,45706769:25952256,40108032,0 -(1,10501:6630773,45706769:0,0,0 -g1,10501:6630773,45706769 -) -[1,10501:6630773,45706769:25952256,40108032,0 -v1,10456:6630773,6254097:0,393216,0 -(1,10456:6630773,20728380:25952256,14867499,616038 -g1,10456:6630773,20728380 -(1,10456:6630773,20728380:25952256,14867499,616038 -(1,10456:6630773,21344418:25952256,15483537,0 -[1,10456:6630773,21344418:25952256,15483537,0 -(1,10456:6630773,21318204:25952256,15457323,0 -r1,10501:6656987,21318204:26214,15457323,0 -[1,10456:6656987,21318204:25899828,15457323,0 -(1,10456:6656987,20728380:25899828,14277675,0 -[1,10456:7246811,20728380:24720180,14277675,0 -v1,10417:7246811,6843921:0,393216,0 -(1,10454:7246811,20007484:24720180,13556779,196608 -g1,10454:7246811,20007484 -g1,10454:7246811,20007484 -g1,10454:7050203,20007484 -(1,10454:7050203,20007484:0,13556779,196608 -r1,10501:32163599,20007484:25113396,13753387,196608 -k1,10454:7050203,20007484:-25113396 -) -(1,10454:7050203,20007484:25113396,13556779,196608 -[1,10454:7246811,20007484:24720180,13360171,0 -(1,10419:7246811,7057831:24720180,410518,101187 -(1,10418:7246811,7057831:0,0,0 -g1,10418:7246811,7057831 -g1,10418:7246811,7057831 -g1,10418:6919131,7057831 -(1,10418:6919131,7057831:0,0,0 -) -g1,10418:7246811,7057831 -) -g1,10419:10408268,7057831 -g1,10419:11356706,7057831 -k1,10419:11356706,7057831:0 -h1,10419:17995765,7057831:0,0,0 -k1,10419:31966991,7057831:13971226 -g1,10419:31966991,7057831 -) -(1,10420:7246811,7724009:24720180,404226,101187 -h1,10420:7246811,7724009:0,0,0 -k1,10420:7246811,7724009:0 -h1,10420:12621288,7724009:0,0,0 -k1,10420:31966992,7724009:19345704 -g1,10420:31966992,7724009 -) -(1,10424:7246811,8455723:24720180,404226,76021 -(1,10422:7246811,8455723:0,0,0 -g1,10422:7246811,8455723 -g1,10422:7246811,8455723 -g1,10422:6919131,8455723 -(1,10422:6919131,8455723:0,0,0 -) -g1,10422:7246811,8455723 -) -g1,10424:8195248,8455723 -g1,10424:9459831,8455723 -h1,10424:11356705,8455723:0,0,0 -k1,10424:31966991,8455723:20610286 -g1,10424:31966991,8455723 -) -(1,10426:7246811,9777261:24720180,410518,101187 -(1,10425:7246811,9777261:0,0,0 -g1,10425:7246811,9777261 -g1,10425:7246811,9777261 -g1,10425:6919131,9777261 -(1,10425:6919131,9777261:0,0,0 -) -g1,10425:7246811,9777261 -) -g1,10426:10408268,9777261 -g1,10426:11356706,9777261 -g1,10426:18311911,9777261 -k1,10426:18311911,9777261:0 -h1,10426:21473368,9777261:0,0,0 -k1,10426:31966991,9777261:10493623 -g1,10426:31966991,9777261 -) -(1,10427:7246811,10443439:24720180,404226,101187 -h1,10427:7246811,10443439:0,0,0 -k1,10427:7246811,10443439:0 -h1,10427:12621288,10443439:0,0,0 -k1,10427:31966992,10443439:19345704 -g1,10427:31966992,10443439 -) -(1,10432:7246811,11175153:24720180,404226,76021 -(1,10429:7246811,11175153:0,0,0 -g1,10429:7246811,11175153 -g1,10429:7246811,11175153 -g1,10429:6919131,11175153 -(1,10429:6919131,11175153:0,0,0 -) -g1,10429:7246811,11175153 -) -g1,10432:8195248,11175153 -g1,10432:9459831,11175153 -h1,10432:11356705,11175153:0,0,0 -k1,10432:31966991,11175153:20610286 -g1,10432:31966991,11175153 -) -(1,10432:7246811,11841331:24720180,404226,76021 -h1,10432:7246811,11841331:0,0,0 -g1,10432:8195248,11841331 -g1,10432:9459831,11841331 -h1,10432:11356705,11841331:0,0,0 -k1,10432:31966991,11841331:20610286 -g1,10432:31966991,11841331 -) -(1,10434:7246811,13162869:24720180,410518,101187 -(1,10433:7246811,13162869:0,0,0 -g1,10433:7246811,13162869 -g1,10433:7246811,13162869 -g1,10433:6919131,13162869 -(1,10433:6919131,13162869:0,0,0 -) -g1,10433:7246811,13162869 -) -g1,10434:10408268,13162869 -g1,10434:11356706,13162869 -g1,10434:18628057,13162869 -k1,10434:18628057,13162869:0 -h1,10434:21473368,13162869:0,0,0 -k1,10434:31966991,13162869:10493623 -g1,10434:31966991,13162869 -) -(1,10435:7246811,13829047:24720180,404226,101187 -h1,10435:7246811,13829047:0,0,0 -k1,10435:7246811,13829047:0 -h1,10435:12621288,13829047:0,0,0 -k1,10435:31966992,13829047:19345704 -g1,10435:31966992,13829047 -) -(1,10439:7246811,14560761:24720180,404226,76021 -(1,10437:7246811,14560761:0,0,0 -g1,10437:7246811,14560761 -g1,10437:7246811,14560761 -g1,10437:6919131,14560761 -(1,10437:6919131,14560761:0,0,0 -) -g1,10437:7246811,14560761 -) -g1,10439:8195248,14560761 -g1,10439:9459831,14560761 -h1,10439:11356705,14560761:0,0,0 -k1,10439:31966991,14560761:20610286 -g1,10439:31966991,14560761 -) -(1,10441:7246811,15882299:24720180,410518,101187 -(1,10440:7246811,15882299:0,0,0 -g1,10440:7246811,15882299 -g1,10440:7246811,15882299 -g1,10440:6919131,15882299 -(1,10440:6919131,15882299:0,0,0 -) -g1,10440:7246811,15882299 -) -g1,10441:10408268,15882299 -g1,10441:11356706,15882299 -g1,10441:18311911,15882299 -k1,10441:18311911,15882299:0 -h1,10441:21157222,15882299:0,0,0 -k1,10441:31966991,15882299:10809769 -g1,10441:31966991,15882299 -) -(1,10442:7246811,16548477:24720180,404226,101187 -h1,10442:7246811,16548477:0,0,0 -k1,10442:7246811,16548477:0 -h1,10442:12621288,16548477:0,0,0 -k1,10442:31966992,16548477:19345704 -g1,10442:31966992,16548477 -) -(1,10446:7246811,17280191:24720180,379060,7863 -(1,10444:7246811,17280191:0,0,0 -g1,10444:7246811,17280191 -g1,10444:7246811,17280191 -g1,10444:6919131,17280191 -(1,10444:6919131,17280191:0,0,0 -) -g1,10444:7246811,17280191 -) -g1,10446:8195248,17280191 -h1,10446:9459831,17280191:0,0,0 -k1,10446:31966991,17280191:22507160 -g1,10446:31966991,17280191 -) -(1,10448:7246811,18601729:24720180,410518,101187 -(1,10447:7246811,18601729:0,0,0 -g1,10447:7246811,18601729 -g1,10447:7246811,18601729 -g1,10447:6919131,18601729 -(1,10447:6919131,18601729:0,0,0 -) -g1,10447:7246811,18601729 -) -g1,10448:10408268,18601729 -g1,10448:11356706,18601729 -k1,10448:11356706,18601729:0 -h1,10448:15782746,18601729:0,0,0 -k1,10448:31966991,18601729:16184245 -g1,10448:31966991,18601729 -) -(1,10449:7246811,19267907:24720180,404226,101187 -h1,10449:7246811,19267907:0,0,0 -k1,10449:7246811,19267907:0 -h1,10449:12621288,19267907:0,0,0 -k1,10449:31966992,19267907:19345704 -g1,10449:31966992,19267907 -) -(1,10453:7246811,19999621:24720180,379060,7863 -(1,10451:7246811,19999621:0,0,0 -g1,10451:7246811,19999621 -g1,10451:7246811,19999621 -g1,10451:6919131,19999621 -(1,10451:6919131,19999621:0,0,0 -) -g1,10451:7246811,19999621 -) -g1,10453:8195248,19999621 -h1,10453:9459831,19999621:0,0,0 -k1,10453:31966991,19999621:22507160 -g1,10453:31966991,19999621 -) -] -) -g1,10454:31966991,20007484 -g1,10454:7246811,20007484 -g1,10454:7246811,20007484 -g1,10454:31966991,20007484 -g1,10454:31966991,20007484 -) -h1,10454:7246811,20204092:0,0,0 -] -) -] -r1,10501:32583029,21318204:26214,15457323,0 -) -] -) -) -g1,10456:32583029,20728380 -) -h1,10456:6630773,21344418:0,0,0 -v1,10459:6630773,22710194:0,393216,0 -(1,10460:6630773,26867945:25952256,4550967,616038 -g1,10460:6630773,26867945 -(1,10460:6630773,26867945:25952256,4550967,616038 -(1,10460:6630773,27483983:25952256,5167005,0 -[1,10460:6630773,27483983:25952256,5167005,0 -(1,10460:6630773,27457769:25952256,5114577,0 -r1,10501:6656987,27457769:26214,5114577,0 -[1,10460:6656987,27457769:25899828,5114577,0 -(1,10460:6656987,26867945:25899828,3934929,0 -[1,10460:7246811,26867945:24720180,3934929,0 -(1,10460:7246811,24216998:24720180,1283982,196608 -(1,10459:7246811,24216998:0,1283982,196608 -r1,10501:9812056,24216998:2565245,1480590,196608 -k1,10459:7246811,24216998:-2565245 -) -(1,10459:7246811,24216998:2565245,1283982,196608 -) -k1,10459:10065943,24216998:253887 -k1,10459:11688878,24216998:253888 -k1,10459:12961850,24216998:253887 -k1,10459:15975459,24216998:253888 -k1,10459:16888638,24216998:253887 -k1,10459:20168322,24216998:253887 -(1,10459:20168322,24216998:0,452978,115847 -r1,10501:24043706,24216998:3875384,568825,115847 -k1,10459:20168322,24216998:-3875384 -) -(1,10459:20168322,24216998:3875384,452978,115847 -k1,10459:20168322,24216998:3277 -h1,10459:24040429,24216998:0,411205,112570 -) -k1,10459:24297594,24216998:253888 -k1,10459:25742926,24216998:253887 -(1,10459:25742926,24216998:0,452978,115847 -r1,10501:29618310,24216998:3875384,568825,115847 -k1,10459:25742926,24216998:-3875384 -) -(1,10459:25742926,24216998:3875384,452978,115847 -k1,10459:25742926,24216998:3277 -h1,10459:29615033,24216998:0,411205,112570 -) -k1,10459:30045868,24216998:253888 -k1,10459:30985917,24216998:253887 -k1,10460:31966991,24216998:0 -) -(1,10460:7246811,25058486:24720180,513147,126483 -k1,10459:9126534,25058486:266227 -k1,10459:11421757,25058486:266228 -k1,10459:13154680,25058486:266227 -k1,10459:14033670,25058486:266228 -k1,10459:15318982,25058486:266227 -k1,10459:18744700,25058486:266227 -k1,10459:21585838,25058486:266228 -k1,10459:23043510,25058486:266227 -k1,10459:23925775,25058486:266227 -k1,10459:24547863,25058486:266228 -k1,10459:26818836,25058486:266227 -k1,10459:28281751,25058486:266228 -k1,10459:31307699,25058486:266227 -k1,10459:31966991,25058486:0 -) -(1,10460:7246811,25899974:24720180,513147,126483 -k1,10459:8607478,25899974:203957 -k1,10459:9470728,25899974:203958 -k1,10459:11371412,25899974:203957 -k1,10459:14601166,25899974:203957 -k1,10459:15937586,25899974:203958 -k1,10459:16889309,25899974:203957 -k1,10459:19855610,25899974:203958 -k1,10459:21757605,25899974:203957 -k1,10459:22980647,25899974:203957 -k1,10459:25015681,25899974:203958 -k1,10459:25751135,25899974:203957 -k1,10459:28484782,25899974:203957 -k1,10459:30131187,25899974:203958 -k1,10459:30947906,25899974:203957 -k1,10459:31966991,25899974:0 -) -(1,10460:7246811,26741462:24720180,505283,126483 -g1,10459:10605531,26741462 -g1,10459:13379670,26741462 -g1,10459:15912636,26741462 -k1,10460:31966991,26741462:14583727 -g1,10460:31966991,26741462 -) -] -) -] -r1,10501:32583029,27457769:26214,5114577,0 -) -] -) -) -g1,10460:32583029,26867945 -) -h1,10460:6630773,27483983:0,0,0 -(1,10463:6630773,28849759:25952256,505283,134348 -h1,10462:6630773,28849759:983040,0,0 -k1,10462:11050652,28849759:316670 -k1,10462:12842537,28849759:316670 -k1,10462:14667846,28849759:316670 -k1,10462:16314897,28849759:316670 -k1,10462:18631726,28849759:316670 -k1,10462:20211929,28849759:316669 -k1,10462:22596915,28849759:316670 -k1,10462:25263706,28849759:316670 -k1,10462:26341904,28849759:316670 -k1,10462:28937261,28849759:316670 -k1,10462:32583029,28849759:0 -) -(1,10463:6630773,29691247:25952256,513147,126483 -k1,10462:8844404,29691247:203642 -k1,10462:10067131,29691247:203642 -k1,10462:11847569,29691247:203642 -k1,10462:12710504,29691247:203643 -k1,10462:13270006,29691247:203642 -k1,10462:16169144,29691247:203642 -k1,10462:17364346,29691247:203642 -k1,10462:19610745,29691247:203642 -k1,10462:21189988,29691247:203642 -k1,10462:23403619,29691247:203642 -k1,10462:24626346,29691247:203642 -k1,10462:26406785,29691247:203643 -k1,10462:27269719,29691247:203642 -k1,10462:28492446,29691247:203642 -k1,10462:31391584,29691247:203642 -k1,10462:32583029,29691247:0 -) -(1,10463:6630773,30532735:25952256,513147,126483 -k1,10462:10000231,30532735:228317 -k1,10462:11926586,30532735:228317 -k1,10462:13173988,30532735:228317 -k1,10462:16097802,30532735:228318 -k1,10462:18667065,30532735:228317 -k1,10462:20463003,30532735:228317 -k1,10462:21710405,30532735:228317 -k1,10462:23212087,30532735:228317 -k1,10462:24068239,30532735:228317 -k1,10462:26575244,30532735:228318 -k1,10462:28069717,30532735:228317 -k1,10462:31323831,30532735:228317 -k1,10462:32168186,30532735:228317 -k1,10463:32583029,30532735:0 -) -(1,10463:6630773,31374223:25952256,513147,134348 -k1,10462:7677442,31374223:231401 -k1,10462:8975115,31374223:231402 -k1,10462:10985818,31374223:231401 -k1,10462:12725858,31374223:231401 -k1,10462:17014594,31374223:231402 -k1,10462:19804521,31374223:231401 -k1,10462:21335502,31374223:231402 -k1,10462:23841658,31374223:231401 -k1,10462:25630850,31374223:231401 -k1,10462:28084578,31374223:231402 -k1,10462:30024503,31374223:231401 -k1,10462:32583029,31374223:0 -) -(1,10463:6630773,32215711:25952256,513147,134348 -k1,10462:10302886,32215711:269484 -k1,10462:11763815,32215711:269484 -k1,10462:14043944,32215711:269484 -k1,10462:14669287,32215711:269483 -k1,10462:16619114,32215711:269484 -k1,10462:17574760,32215711:269484 -k1,10462:18863329,32215711:269484 -k1,10462:20975685,32215711:269484 -k1,10462:21904461,32215711:269484 -k1,10462:23193030,32215711:269484 -k1,10462:24735879,32215711:269484 -k1,10462:26386206,32215711:269483 -k1,10462:28336033,32215711:269484 -k1,10462:29709799,32215711:269484 -k1,10462:30727049,32215711:269484 -k1,10462:32583029,32215711:0 -) -(1,10463:6630773,33057199:25952256,513147,134348 -g1,10462:9180123,33057199 -g1,10462:10062237,33057199 -g1,10462:13036260,33057199 -g1,10462:13921651,33057199 -g1,10462:14989232,33057199 -g1,10462:16663676,33057199 -g1,10462:18302731,33057199 -g1,10462:20199998,33057199 -g1,10462:22134620,33057199 -g1,10462:25359646,33057199 -k1,10463:32583029,33057199:5016130 -g1,10463:32583029,33057199 -) -(1,10464:6630773,35148459:25952256,564462,139132 -(1,10464:6630773,35148459:2450326,534184,12975 -g1,10464:6630773,35148459 -g1,10464:9081099,35148459 -) -g1,10464:12604118,35148459 -k1,10464:32583029,35148459:16537353 -g1,10464:32583029,35148459 -) -(1,10468:6630773,36383163:25952256,513147,126483 -k1,10467:8436524,36383163:160797 -k1,10467:9616406,36383163:160797 -k1,10467:10789735,36383163:160798 -k1,10467:13942251,36383163:160797 -k1,10467:16132043,36383163:160797 -k1,10467:17161192,36383163:160797 -k1,10467:18454451,36383163:160797 -k1,10467:20576086,36383163:160798 -k1,10467:21092743,36383163:160797 -k1,10467:22969928,36383163:160797 -k1,10467:24202894,36383163:160797 -k1,10467:26340913,36383163:160798 -k1,10467:29370876,36383163:160797 -k1,10467:29887533,36383163:160797 -k1,10467:32583029,36383163:0 -) -(1,10468:6630773,37224651:25952256,513147,134348 -k1,10467:7727039,37224651:148615 -k1,10467:11326781,37224651:148616 -k1,10467:12494481,37224651:148615 -k1,10467:15486704,37224651:148616 -k1,10467:17242262,37224651:148615 -k1,10467:18050170,37224651:148616 -k1,10467:19217870,37224651:148615 -k1,10467:21104501,37224651:148616 -k1,10467:22820737,37224651:148615 -k1,10467:23325213,37224651:148616 -k1,10467:26093957,37224651:148615 -k1,10467:28394119,37224651:148615 -k1,10467:29739422,37224651:148616 -k1,10467:32583029,37224651:0 -) -(1,10468:6630773,38066139:25952256,639543,134348 -k1,10467:8503089,38066139:265373 -k1,10467:9299959,38066139:265373 -k1,10467:11260093,38066139:265373 -k1,10467:12286994,38066139:265373 -$1,10467:12286994,38066139 -[1,10467:12715599,38164453:384631,359203,5505 -(1,10467:13044982,38158948:0,353698,0 -) -(1,10467:12715599,38164453:351863,248644,5505 -) -] -k1,10467:13403178,38066139:302948 -k1,10467:14274323,38066139:302948 -(1,10467:14274323,38066139:2195193,639543,119364 -[1,10467:14274323,37479024:595722,26214,706479 -] -[1,10467:14870045,38066139:1599471,639543,95027 -(1,10467:14870045,38066139:1599471,530010,95027 -(1,10467:15298650,37876064:311689,339935,0 -) -) -] -) -$1,10467:16469516,38066139 -k1,10467:16908559,38066139:265373 -k1,10467:18127481,38066139:265373 -k1,10467:19497136,38066139:265373 -k1,10467:22574004,38066139:265373 -k1,10467:24042618,38066139:265373 -k1,10467:25575456,38066139:265372 -k1,10467:26859914,38066139:265373 -k1,10467:30207445,38066139:265373 -k1,10467:31132110,38066139:265373 -k1,10467:32168186,38066139:265373 -k1,10468:32583029,38066139:0 -) -(1,10468:6630773,38907627:25952256,513147,115847 -g1,10467:9525498,38907627 -g1,10467:11592503,38907627 -(1,10467:11592503,38907627:0,414482,115847 -r1,10501:12654192,38907627:1061689,530329,115847 -k1,10467:11592503,38907627:-1061689 -) -(1,10467:11592503,38907627:1061689,414482,115847 -k1,10467:11592503,38907627:3277 -h1,10467:12650915,38907627:0,411205,112570 -) -k1,10468:32583030,38907627:19755168 -g1,10468:32583030,38907627 -) -v1,10470:6630773,40098093:0,393216,0 -(1,10474:6630773,40419481:25952256,714604,196608 -g1,10474:6630773,40419481 -g1,10474:6630773,40419481 -g1,10474:6434165,40419481 -(1,10474:6434165,40419481:0,714604,196608 -r1,10501:32779637,40419481:26345472,911212,196608 -k1,10474:6434165,40419481:-26345472 -) -(1,10474:6434165,40419481:26345472,714604,196608 -[1,10474:6630773,40419481:25952256,517996,0 -(1,10472:6630773,40312003:25952256,410518,107478 -(1,10471:6630773,40312003:0,0,0 -g1,10471:6630773,40312003 -g1,10471:6630773,40312003 -g1,10471:6303093,40312003 -(1,10471:6303093,40312003:0,0,0 -) -g1,10471:6630773,40312003 -) -g1,10472:7895356,40312003 -g1,10472:8843794,40312003 -g1,10472:16431291,40312003 -g1,10472:17063583,40312003 -k1,10472:17063583,40312003:0 -h1,10472:20541185,40312003:0,0,0 -k1,10472:32583029,40312003:12041844 -g1,10472:32583029,40312003 -) -] -) -g1,10474:32583029,40419481 -g1,10474:6630773,40419481 -g1,10474:6630773,40419481 -g1,10474:32583029,40419481 -g1,10474:32583029,40419481 -) -h1,10474:6630773,40616089:0,0,0 -(1,10478:6630773,41981865:25952256,513147,7863 -h1,10477:6630773,41981865:983040,0,0 -g1,10477:8766591,41981865 -g1,10477:10070102,41981865 -g1,10477:11460776,41981865 -g1,10477:12757733,41981865 -k1,10478:32583029,41981865:16956130 -g1,10478:32583029,41981865 -) -v1,10480:6630773,43172331:0,393216,0 -(1,10501:6630773,45444019:25952256,2664904,196608 -g1,10501:6630773,45444019 -g1,10501:6630773,45444019 -g1,10501:6434165,45444019 -(1,10501:6434165,45444019:0,2664904,196608 -r1,10501:32779637,45444019:26345472,2861512,196608 -k1,10501:6434165,45444019:-26345472 -) -(1,10501:6434165,45444019:26345472,2664904,196608 -[1,10501:6630773,45444019:25952256,2468296,0 -(1,10482:6630773,43379949:25952256,404226,82312 -(1,10481:6630773,43379949:0,0,0 -g1,10481:6630773,43379949 -g1,10481:6630773,43379949 -g1,10481:6303093,43379949 -(1,10481:6303093,43379949:0,0,0 -) -g1,10481:6630773,43379949 -) -g1,10482:7263065,43379949 -g1,10482:8211503,43379949 -g1,10482:9792233,43379949 -g1,10482:10740671,43379949 -g1,10482:11689109,43379949 -k1,10482:11689109,43379949:0 -h1,10482:12637547,43379949:0,0,0 -k1,10482:32583029,43379949:19945482 -g1,10482:32583029,43379949 -) -(1,10483:6630773,44046127:25952256,404226,82312 -h1,10483:6630773,44046127:0,0,0 -g1,10483:8211502,44046127 -g1,10483:9159940,44046127 -g1,10483:10740669,44046127 -h1,10483:11689106,44046127:0,0,0 -k1,10483:32583030,44046127:20893924 -g1,10483:32583030,44046127 -) -(1,10484:6630773,44712305:25952256,404226,76021 -h1,10484:6630773,44712305:0,0,0 -g1,10484:8527648,44712305 -g1,10484:9159940,44712305 -h1,10484:9792231,44712305:0,0,0 -k1,10484:32583029,44712305:22790798 -g1,10484:32583029,44712305 -) -(1,10488:6630773,45444019:25952256,404226,76021 -(1,10486:6630773,45444019:0,0,0 -g1,10486:6630773,45444019 -g1,10486:6630773,45444019 -g1,10486:6303093,45444019 -(1,10486:6303093,45444019:0,0,0 -) -g1,10486:6630773,45444019 -) -g1,10488:7579210,45444019 -g1,10488:8843793,45444019 -h1,10488:11372958,45444019:0,0,0 -k1,10488:32583030,45444019:21210072 -g1,10488:32583030,45444019 -) -] -) -g1,10501:32583029,45444019 -g1,10501:6630773,45444019 -g1,10501:6630773,45444019 -g1,10501:32583029,45444019 -g1,10501:32583029,45444019 -) -] -(1,10501:32583029,45706769:0,0,0 -g1,10501:32583029,45706769 -) -) -] -(1,10501:6630773,47279633:25952256,0,0 -h1,10501:6630773,47279633:25952256,0,0 -) -] -(1,10501:4262630,4025873:0,0,0 -[1,10501:-473656,4025873:0,0,0 -(1,10501:-473656,-710413:0,0,0 -(1,10501:-473656,-710413:0,0,0 -g1,10501:-473656,-710413 -) -g1,10501:-473656,-710413 -) -] -) -] -!21748 -}198 -Input:1497:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1498:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1499:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1500:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1501:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1502:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1503:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1504:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1505:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1506:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1507:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1508:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1509:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1510:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1511:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1512:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1484 -{199 -[1,10578:4262630,47279633:28320399,43253760,0 -(1,10578:4262630,4025873:0,0,0 -[1,10578:-473656,4025873:0,0,0 -(1,10578:-473656,-710413:0,0,0 -(1,10578:-473656,-644877:0,0,0 -k1,10578:-473656,-644877:-65536 -) -(1,10578:-473656,4736287:0,0,0 -k1,10578:-473656,4736287:5209943 -) -g1,10578:-473656,-710413 -) -] -) -[1,10578:6630773,47279633:25952256,43253760,0 -[1,10578:6630773,4812305:25952256,786432,0 -(1,10578:6630773,4812305:25952256,505283,134348 -(1,10578:6630773,4812305:25952256,505283,134348 -g1,10578:3078558,4812305 -[1,10578:3078558,4812305:0,0,0 -(1,10578:3078558,2439708:0,1703936,0 -k1,10578:1358238,2439708:-1720320 -(1,10278:1358238,2439708:1720320,1703936,0 -(1,10278:1358238,2439708:1179648,16384,0 -r1,10578:2537886,2439708:1179648,16384,0 -) -g1,10278:3062174,2439708 -(1,10278:3062174,2439708:16384,1703936,0 -[1,10278:3062174,2439708:25952256,1703936,0 -(1,10278:3062174,1915420:25952256,1179648,0 -(1,10278:3062174,1915420:16384,1179648,0 -r1,10578:3078558,1915420:16384,1179648,0 -) -k1,10278:29014430,1915420:25935872 -g1,10278:29014430,1915420 -) -] -) -) -) -] -[1,10578:3078558,4812305:0,0,0 -(1,10578:3078558,2439708:0,1703936,0 -g1,10578:29030814,2439708 -g1,10578:36135244,2439708 -(1,10278:36135244,2439708:1720320,1703936,0 -(1,10278:36135244,2439708:16384,1703936,0 -[1,10278:36135244,2439708:25952256,1703936,0 -(1,10278:36135244,1915420:25952256,1179648,0 -(1,10278:36135244,1915420:16384,1179648,0 -r1,10578:36151628,1915420:16384,1179648,0 -) -k1,10278:62087500,1915420:25935872 -g1,10278:62087500,1915420 -) -] -) -g1,10278:36675916,2439708 -(1,10278:36675916,2439708:1179648,16384,0 -r1,10578:37855564,2439708:1179648,16384,0 -) -) -k1,10578:3078556,2439708:-34777008 -) -] -[1,10578:3078558,4812305:0,0,0 -(1,10578:3078558,49800853:0,16384,2228224 -k1,10578:1358238,49800853:-1720320 -(1,10278:1358238,49800853:1720320,16384,2228224 -(1,10278:1358238,49800853:1179648,16384,0 -r1,10578:2537886,49800853:1179648,16384,0 -) -g1,10278:3062174,49800853 -(1,10278:3062174,52029077:16384,1703936,0 -[1,10278:3062174,52029077:25952256,1703936,0 -(1,10278:3062174,51504789:25952256,1179648,0 -(1,10278:3062174,51504789:16384,1179648,0 -r1,10578:3078558,51504789:16384,1179648,0 -) -k1,10278:29014430,51504789:25935872 -g1,10278:29014430,51504789 -) -] -) -) -) -] -[1,10578:3078558,4812305:0,0,0 -(1,10578:3078558,49800853:0,16384,2228224 -g1,10578:29030814,49800853 -g1,10578:36135244,49800853 -(1,10278:36135244,49800853:1720320,16384,2228224 -(1,10278:36135244,52029077:16384,1703936,0 -[1,10278:36135244,52029077:25952256,1703936,0 -(1,10278:36135244,51504789:25952256,1179648,0 -(1,10278:36135244,51504789:16384,1179648,0 -r1,10578:36151628,51504789:16384,1179648,0 -) -k1,10278:62087500,51504789:25935872 -g1,10278:62087500,51504789 -) -] -) -g1,10278:36675916,49800853 -(1,10278:36675916,49800853:1179648,16384,0 -r1,10578:37855564,49800853:1179648,16384,0 -) -) -k1,10578:3078556,49800853:-34777008 -) -] -g1,10578:6630773,4812305 -k1,10578:20781963,4812305:12955813 -g1,10578:22168704,4812305 -g1,10578:22817510,4812305 -g1,10578:26131665,4812305 -g1,10578:28614824,4812305 -g1,10578:30094627,4812305 -) -) -] -[1,10578:6630773,45706769:25952256,40108032,0 -(1,10578:6630773,45706769:25952256,40108032,0 -(1,10578:6630773,45706769:0,0,0 -g1,10578:6630773,45706769 -) -[1,10578:6630773,45706769:25952256,40108032,0 -v1,10501:6630773,6254097:0,393216,0 -(1,10501:6630773,9322702:25952256,3461821,196608 -g1,10501:6630773,9322702 -g1,10501:6630773,9322702 -g1,10501:6434165,9322702 -(1,10501:6434165,9322702:0,3461821,196608 -r1,10578:32779637,9322702:26345472,3658429,196608 -k1,10501:6434165,9322702:-26345472 -) -(1,10501:6434165,9322702:26345472,3461821,196608 -[1,10501:6630773,9322702:25952256,3265213,0 -(1,10490:6630773,6461715:25952256,404226,76021 -(1,10489:6630773,6461715:0,0,0 -g1,10489:6630773,6461715 -g1,10489:6630773,6461715 -g1,10489:6303093,6461715 -(1,10489:6303093,6461715:0,0,0 -) -g1,10489:6630773,6461715 -) -k1,10490:6630773,6461715:0 -h1,10490:8527647,6461715:0,0,0 -k1,10490:32583029,6461715:24055382 -g1,10490:32583029,6461715 -) -(1,10494:6630773,7193429:25952256,404226,76021 -(1,10492:6630773,7193429:0,0,0 -g1,10492:6630773,7193429 -g1,10492:6630773,7193429 -g1,10492:6303093,7193429 -(1,10492:6303093,7193429:0,0,0 -) -g1,10492:6630773,7193429 -) -g1,10494:7579210,7193429 -g1,10494:8843793,7193429 -h1,10494:11372958,7193429:0,0,0 -k1,10494:32583030,7193429:21210072 -g1,10494:32583030,7193429 -) -(1,10496:6630773,8514967:25952256,404226,76021 -(1,10495:6630773,8514967:0,0,0 -g1,10495:6630773,8514967 -g1,10495:6630773,8514967 -g1,10495:6303093,8514967 -(1,10495:6303093,8514967:0,0,0 -) -g1,10495:6630773,8514967 -) -k1,10496:6630773,8514967:0 -h1,10496:9476084,8514967:0,0,0 -k1,10496:32583028,8514967:23106944 -g1,10496:32583028,8514967 -) -(1,10500:6630773,9246681:25952256,404226,76021 -(1,10498:6630773,9246681:0,0,0 -g1,10498:6630773,9246681 -g1,10498:6630773,9246681 -g1,10498:6303093,9246681 -(1,10498:6303093,9246681:0,0,0 -) -g1,10498:6630773,9246681 -) -g1,10500:7579210,9246681 -g1,10500:8843793,9246681 -h1,10500:9476084,9246681:0,0,0 -k1,10500:32583028,9246681:23106944 -g1,10500:32583028,9246681 -) -] -) -g1,10501:32583029,9322702 -g1,10501:6630773,9322702 -g1,10501:6630773,9322702 -g1,10501:32583029,9322702 -g1,10501:32583029,9322702 -) -h1,10501:6630773,9519310:0,0,0 -(1,10505:6630773,10865711:25952256,513147,134348 -h1,10504:6630773,10865711:983040,0,0 -g1,10504:8855064,10865711 -g1,10504:11715710,10865711 -g1,10504:12530977,10865711 -(1,10504:12530977,10865711:0,452978,115847 -r1,10578:14647802,10865711:2116825,568825,115847 -k1,10504:12530977,10865711:-2116825 -) -(1,10504:12530977,10865711:2116825,452978,115847 -k1,10504:12530977,10865711:3277 -h1,10504:14644525,10865711:0,411205,112570 -) -g1,10504:14847031,10865711 -g1,10504:15914612,10865711 -g1,10504:17105401,10865711 -g1,10504:19394573,10865711 -g1,10504:22289298,10865711 -(1,10504:22289298,10865711:0,452978,115847 -r1,10578:24054411,10865711:1765113,568825,115847 -k1,10504:22289298,10865711:-1765113 -) -(1,10504:22289298,10865711:1765113,452978,115847 -k1,10504:22289298,10865711:3277 -h1,10504:24051134,10865711:0,411205,112570 -) -g1,10504:24253640,10865711 -g1,10504:25846820,10865711 -(1,10504:25846820,10865711:0,414482,115847 -r1,10578:26205086,10865711:358266,530329,115847 -k1,10504:25846820,10865711:-358266 -) -(1,10504:25846820,10865711:358266,414482,115847 -k1,10504:25846820,10865711:3277 -h1,10504:26201809,10865711:0,411205,112570 -) -g1,10504:26404315,10865711 -g1,10504:27289706,10865711 -g1,10504:28259638,10865711 -k1,10505:32583029,10865711:1077393 -g1,10505:32583029,10865711 -) -(1,10507:6630773,11707199:25952256,513147,134348 -h1,10506:6630773,11707199:983040,0,0 -k1,10506:9033085,11707199:222585 -k1,10506:11951167,11707199:222586 -k1,10506:13042104,11707199:222585 -k1,10506:15646267,11707199:222585 -k1,10506:17724177,11707199:222586 -k1,10506:19079224,11707199:222585 -k1,10506:21431074,11707199:222585 -k1,10506:22933578,11707199:222586 -k1,10506:24175248,11707199:222585 -k1,10506:26640475,11707199:222585 -k1,10506:29120776,11707199:222586 -k1,10506:31873051,11707199:222585 -(1,10506:31873051,11707199:0,414482,115847 -r1,10578:32583029,11707199:709978,530329,115847 -k1,10506:31873051,11707199:-709978 -) -(1,10506:31873051,11707199:709978,414482,115847 -k1,10506:31873051,11707199:3277 -h1,10506:32579752,11707199:0,411205,112570 -) -k1,10506:32583029,11707199:0 -) -(1,10507:6630773,12548687:25952256,505283,134348 -k1,10506:8842555,12548687:201137 -k1,10506:9659730,12548687:201137 -k1,10506:10879952,12548687:201137 -k1,10506:12789613,12548687:201137 -k1,10506:14123212,12548687:201137 -k1,10506:16453614,12548687:201137 -k1,10506:18497623,12548687:201137 -k1,10506:19314797,12548687:201136 -k1,10506:20286637,12548687:201137 -(1,10506:20286637,12548687:0,414482,115847 -r1,10578:20996615,12548687:709978,530329,115847 -k1,10506:20286637,12548687:-709978 -) -(1,10506:20286637,12548687:709978,414482,115847 -k1,10506:20286637,12548687:3277 -h1,10506:20993338,12548687:0,411205,112570 -) -k1,10506:21197752,12548687:201137 -k1,10506:23136904,12548687:201137 -k1,10506:26290438,12548687:201137 -k1,10506:27688262,12548687:201137 -k1,10506:30565889,12548687:201137 -k1,10506:31298523,12548687:201137 -k1,10506:32583029,12548687:0 -) -(1,10507:6630773,13390175:25952256,513147,126483 -k1,10506:8786221,13390175:179538 -k1,10506:9884575,13390175:179539 -k1,10506:13089910,13390175:179538 -k1,10506:14415674,13390175:179539 -(1,10506:14415674,13390175:0,452978,115847 -r1,10578:16180787,13390175:1765113,568825,115847 -k1,10506:14415674,13390175:-1765113 -) -(1,10506:14415674,13390175:1765113,452978,115847 -k1,10506:14415674,13390175:3277 -h1,10506:16177510,13390175:0,411205,112570 -) -k1,10506:16533995,13390175:179538 -k1,10506:18368318,13390175:179539 -k1,10506:19079353,13390175:179538 -k1,10506:20068262,13390175:179539 -k1,10506:22330534,13390175:179538 -k1,10506:23161501,13390175:179539 -k1,10506:24813633,13390175:179538 -(1,10506:24813633,13390175:0,414482,115847 -r1,10578:25523611,13390175:709978,530329,115847 -k1,10506:24813633,13390175:-709978 -) -(1,10506:24813633,13390175:709978,414482,115847 -k1,10506:24813633,13390175:3277 -h1,10506:25520334,13390175:0,411205,112570 -) -k1,10506:25703150,13390175:179539 -k1,10506:27893333,13390175:179538 -k1,10506:28688910,13390175:179539 -k1,10506:29887533,13390175:179538 -k1,10506:32583029,13390175:0 -) -(1,10507:6630773,14231663:25952256,513147,7863 -g1,10506:7698354,14231663 -k1,10507:32583029,14231663:22329426 -g1,10507:32583029,14231663 -) -(1,10509:6630773,15073151:25952256,513147,134348 -h1,10508:6630773,15073151:983040,0,0 -k1,10508:9202368,15073151:207711 -k1,10508:11178897,15073151:207712 -k1,10508:12134374,15073151:207711 -k1,10508:16543599,15073151:207712 -k1,10508:17512838,15073151:207711 -k1,10508:19908142,15073151:207712 -k1,10508:20471713,15073151:207711 -k1,10508:22920755,15073151:207711 -k1,10508:26409199,15073151:207712 -(1,10508:26409199,15073151:0,452978,115847 -r1,10578:28877736,15073151:2468537,568825,115847 -k1,10508:26409199,15073151:-2468537 -) -(1,10508:26409199,15073151:2468537,452978,115847 -k1,10508:26409199,15073151:3277 -h1,10508:28874459,15073151:0,411205,112570 -) -k1,10508:29085447,15073151:207711 -k1,10508:29944587,15073151:207712 -k1,10508:31171383,15073151:207711 -k1,10509:32583029,15073151:0 -) -(1,10509:6630773,15914639:25952256,513147,134348 -k1,10508:8670544,15914639:156266 -k1,10508:9486102,15914639:156266 -k1,10508:10740096,15914639:156266 -k1,10508:13591859,15914639:156267 -k1,10508:14939570,15914639:156266 -k1,10508:17523290,15914639:156266 -k1,10508:18467954,15914639:156266 -k1,10508:21696548,15914639:156266 -k1,10508:22504242,15914639:156266 -k1,10508:23679593,15914639:156266 -k1,10508:24935553,15914639:156266 -k1,10508:25743248,15914639:156267 -(1,10508:25743248,15914639:0,452978,115847 -r1,10578:27508361,15914639:1765113,568825,115847 -k1,10508:25743248,15914639:-1765113 -) -(1,10508:25743248,15914639:1765113,452978,115847 -k1,10508:25743248,15914639:3277 -h1,10508:27505084,15914639:0,411205,112570 -) -k1,10508:27664627,15914639:156266 -k1,10508:29830882,15914639:156266 -k1,10508:31006233,15914639:156266 -k1,10508:32583029,15914639:0 -) -(1,10509:6630773,16756127:25952256,513147,134348 -k1,10508:7452140,16756127:154211 -(1,10508:7452140,16756127:0,452978,115847 -r1,10578:9217253,16756127:1765113,568825,115847 -k1,10508:7452140,16756127:-1765113 -) -(1,10508:7452140,16756127:1765113,452978,115847 -k1,10508:7452140,16756127:3277 -h1,10508:9213976,16756127:0,411205,112570 -) -k1,10508:9545134,16756127:154211 -k1,10508:12634048,16756127:154212 -k1,10508:13439687,16756127:154211 -k1,10508:15323393,16756127:154211 -k1,10508:18478498,16756127:154211 -k1,10508:20625659,16756127:154211 -k1,10508:22790516,16756127:154212 -k1,10508:23813079,16756127:154211 -k1,10508:25497556,16756127:154211 -k1,10508:26303195,16756127:154211 -k1,10508:28173140,16756127:154212 -k1,10508:29708195,16756127:154211 -(1,10508:29708195,16756127:0,414482,115847 -r1,10578:30418173,16756127:709978,530329,115847 -k1,10508:29708195,16756127:-709978 -) -(1,10508:29708195,16756127:709978,414482,115847 -k1,10508:29708195,16756127:3277 -h1,10508:30414896,16756127:0,411205,112570 -) -k1,10508:30572384,16756127:154211 -k1,10508:32583029,16756127:0 -) -(1,10509:6630773,17597615:25952256,513147,134348 -g1,10508:7821562,17597615 -g1,10508:9306607,17597615 -g1,10508:12281286,17597615 -g1,10508:14523272,17597615 -g1,10508:17527442,17597615 -g1,10508:18745756,17597615 -g1,10508:21430766,17597615 -g1,10508:22289287,17597615 -g1,10508:26560268,17597615 -g1,10508:28153448,17597615 -(1,10508:28153448,17597615:0,452978,122846 -r1,10578:30973697,17597615:2820249,575824,122846 -k1,10508:28153448,17597615:-2820249 -) -(1,10508:28153448,17597615:2820249,452978,122846 -k1,10508:28153448,17597615:3277 -h1,10508:30970420,17597615:0,411205,112570 -) -k1,10509:32583029,17597615:1435662 -g1,10509:32583029,17597615 -) -(1,10511:6630773,18439103:25952256,513147,134348 -h1,10510:6630773,18439103:983040,0,0 -k1,10510:8250683,18439103:149282 -k1,10510:11121070,18439103:149332 -k1,10510:12508377,18439103:149332 -k1,10510:13317001,18439103:149332 -k1,10510:17890013,18439103:149332 -k1,10510:19242586,18439103:149332 -k1,10510:20007956,18439103:149332 -k1,10510:21653475,18439103:149332 -k1,10510:22334304,18439103:149332 -k1,10510:23135064,18439103:149332 -k1,10510:25245233,18439103:149332 -k1,10510:26413650,18439103:149332 -k1,10510:29258478,18439103:149332 -k1,10510:30093972,18439103:149332 -k1,10511:32583029,18439103:0 -k1,10511:32583029,18439103:0 -) -v1,10513:6630773,19610194:0,393216,0 -(1,10522:6630773,23231015:25952256,4014037,196608 -g1,10522:6630773,23231015 -g1,10522:6630773,23231015 -g1,10522:6434165,23231015 -(1,10522:6434165,23231015:0,4014037,196608 -r1,10578:32779637,23231015:26345472,4210645,196608 -k1,10522:6434165,23231015:-26345472 -) -(1,10522:6434165,23231015:26345472,4014037,196608 -[1,10522:6630773,23231015:25952256,3817429,0 -(1,10515:6630773,19824104:25952256,410518,82312 -(1,10514:6630773,19824104:0,0,0 -g1,10514:6630773,19824104 -g1,10514:6630773,19824104 -g1,10514:6303093,19824104 -(1,10514:6303093,19824104:0,0,0 -) -g1,10514:6630773,19824104 -) -g1,10515:7895356,19824104 -g1,10515:8843794,19824104 -g1,10515:12637543,19824104 -g1,10515:15166709,19824104 -g1,10515:15799001,19824104 -g1,10515:18012021,19824104 -h1,10515:18328167,19824104:0,0,0 -k1,10515:32583029,19824104:14254862 -g1,10515:32583029,19824104 -) -(1,10516:6630773,20490282:25952256,410518,76021 -h1,10516:6630773,20490282:0,0,0 -g1,10516:6946919,20490282 -g1,10516:7895356,20490282 -g1,10516:11056813,20490282 -h1,10516:11372959,20490282:0,0,0 -k1,10516:32583029,20490282:21210070 -g1,10516:32583029,20490282 -) -(1,10517:6630773,21156460:25952256,404226,76021 -h1,10517:6630773,21156460:0,0,0 -g1,10517:6946919,21156460 -g1,10517:7263065,21156460 -g1,10517:7579211,21156460 -g1,10517:8211503,21156460 -g1,10517:9159941,21156460 -k1,10517:9159941,21156460:0 -h1,10517:12321398,21156460:0,0,0 -k1,10517:32583030,21156460:20261632 -g1,10517:32583030,21156460 -) -(1,10518:6630773,21822638:25952256,404226,76021 -h1,10518:6630773,21822638:0,0,0 -g1,10518:6946919,21822638 -h1,10518:7263065,21822638:0,0,0 -k1,10518:32583029,21822638:25319964 -g1,10518:32583029,21822638 -) -(1,10519:6630773,22488816:25952256,404226,107478 -h1,10519:6630773,22488816:0,0,0 -g1,10519:6946919,22488816 -k1,10519:6946919,22488816:0 -h1,10519:13902125,22488816:0,0,0 -k1,10519:32583029,22488816:18680904 -g1,10519:32583029,22488816 -) -(1,10520:6630773,23154994:25952256,404226,76021 -h1,10520:6630773,23154994:0,0,0 -h1,10520:6946919,23154994:0,0,0 -k1,10520:32583029,23154994:25636110 -g1,10520:32583029,23154994 -) -] -) -g1,10522:32583029,23231015 -g1,10522:6630773,23231015 -g1,10522:6630773,23231015 -g1,10522:32583029,23231015 -g1,10522:32583029,23231015 -) -h1,10522:6630773,23427623:0,0,0 -v1,10526:6630773,25103628:0,393216,0 -(1,10545:6630773,30225485:25952256,5515073,196608 -g1,10545:6630773,30225485 -g1,10545:6630773,30225485 -g1,10545:6434165,30225485 -(1,10545:6434165,30225485:0,5515073,196608 -r1,10578:32779637,30225485:26345472,5711681,196608 -k1,10545:6434165,30225485:-26345472 -) -(1,10545:6434165,30225485:26345472,5515073,196608 -[1,10545:6630773,30225485:25952256,5318465,0 -(1,10528:6630773,25311246:25952256,404226,76021 -(1,10527:6630773,25311246:0,0,0 -g1,10527:6630773,25311246 -g1,10527:6630773,25311246 -g1,10527:6303093,25311246 -(1,10527:6303093,25311246:0,0,0 -) -g1,10527:6630773,25311246 -) -k1,10528:6630773,25311246:0 -g1,10528:8527648,25311246 -g1,10528:9159940,25311246 -h1,10528:9792231,25311246:0,0,0 -k1,10528:32583029,25311246:22790798 -g1,10528:32583029,25311246 -) -(1,10532:6630773,26042960:25952256,404226,76021 -(1,10530:6630773,26042960:0,0,0 -g1,10530:6630773,26042960 -g1,10530:6630773,26042960 -g1,10530:6303093,26042960 -(1,10530:6303093,26042960:0,0,0 -) -g1,10530:6630773,26042960 -) -g1,10532:7579210,26042960 -g1,10532:8843793,26042960 -h1,10532:11372958,26042960:0,0,0 -k1,10532:32583030,26042960:21210072 -g1,10532:32583030,26042960 -) -(1,10534:6630773,27364498:25952256,404226,76021 -(1,10533:6630773,27364498:0,0,0 -g1,10533:6630773,27364498 -g1,10533:6630773,27364498 -g1,10533:6303093,27364498 -(1,10533:6303093,27364498:0,0,0 -) -g1,10533:6630773,27364498 -) -k1,10534:6630773,27364498:0 -g1,10534:8527648,27364498 -g1,10534:9159940,27364498 -h1,10534:10740668,27364498:0,0,0 -k1,10534:32583028,27364498:21842360 -g1,10534:32583028,27364498 -) -(1,10538:6630773,28096212:25952256,404226,76021 -(1,10536:6630773,28096212:0,0,0 -g1,10536:6630773,28096212 -g1,10536:6630773,28096212 -g1,10536:6303093,28096212 -(1,10536:6303093,28096212:0,0,0 -) -g1,10536:6630773,28096212 -) -g1,10538:7579210,28096212 -g1,10538:8843793,28096212 -h1,10538:9476084,28096212:0,0,0 -k1,10538:32583028,28096212:23106944 -g1,10538:32583028,28096212 -) -(1,10540:6630773,29417750:25952256,404226,82312 -(1,10539:6630773,29417750:0,0,0 -g1,10539:6630773,29417750 -g1,10539:6630773,29417750 -g1,10539:6303093,29417750 -(1,10539:6303093,29417750:0,0,0 -) -g1,10539:6630773,29417750 -) -k1,10540:6630773,29417750:0 -g1,10540:8527648,29417750 -g1,10540:9159940,29417750 -g1,10540:11056815,29417750 -g1,10540:13585981,29417750 -g1,10540:14218273,29417750 -h1,10540:15799002,29417750:0,0,0 -k1,10540:32583030,29417750:16784028 -g1,10540:32583030,29417750 -) -(1,10544:6630773,30149464:25952256,404226,76021 -(1,10542:6630773,30149464:0,0,0 -g1,10542:6630773,30149464 -g1,10542:6630773,30149464 -g1,10542:6303093,30149464 -(1,10542:6303093,30149464:0,0,0 -) -g1,10542:6630773,30149464 -) -g1,10544:7579210,30149464 -g1,10544:8843793,30149464 -h1,10544:11372958,30149464:0,0,0 -k1,10544:32583030,30149464:21210072 -g1,10544:32583030,30149464 -) -] -) -g1,10545:32583029,30225485 -g1,10545:6630773,30225485 -g1,10545:6630773,30225485 -g1,10545:32583029,30225485 -g1,10545:32583029,30225485 -) -h1,10545:6630773,30422093:0,0,0 -(1,10549:6630773,31768494:25952256,513147,134348 -h1,10548:6630773,31768494:983040,0,0 -k1,10548:8180796,31768494:152140 -k1,10548:9825894,31768494:152188 -k1,10548:11044352,31768494:152187 -k1,10548:13626614,31768494:152187 -k1,10548:14134661,31768494:152187 -k1,10548:16982344,31768494:152187 -k1,10548:18082183,31768494:152188 -k1,10548:21077977,31768494:152187 -k1,10548:23010777,31768494:152187 -k1,10548:23887792,31768494:152187 -k1,10548:25059064,31768494:152187 -k1,10548:27906748,31768494:152188 -k1,10548:29914259,31768494:152187 -k1,10548:30597943,31768494:152187 -k1,10549:32583029,31768494:0 -) -(1,10549:6630773,32609982:25952256,513147,134348 -k1,10548:7926092,32609982:168100 -k1,10548:10245083,32609982:168099 -k1,10548:11213378,32609982:168100 -k1,10548:12762322,32609982:168100 -k1,10548:15740605,32609982:168099 -k1,10548:16440202,32609982:168100 -k1,10548:19889034,32609982:168100 -k1,10548:21451084,32609982:168099 -k1,10548:22903690,32609982:168100 -k1,10548:23731082,32609982:168100 -k1,10548:27721896,32609982:168099 -k1,10548:30092006,32609982:168100 -k1,10548:32583029,32609982:0 -) -(1,10549:6630773,33451470:25952256,513147,126483 -g1,10548:10029470,33451470 -g1,10548:11182248,33451470 -g1,10548:12856692,33451470 -g1,10548:15021346,33451470 -g1,10548:15576435,33451470 -g1,10548:17058859,33451470 -g1,10548:18882726,33451470 -g1,10548:19733383,33451470 -g1,10548:20951697,33451470 -g1,10548:21565769,33451470 -g1,10548:25231853,33451470 -g1,10548:28215051,33451470 -g1,10548:29065708,33451470 -k1,10549:32583029,33451470:2598506 -g1,10549:32583029,33451470 -) -(1,10551:6630773,34292958:25952256,513147,134348 -h1,10550:6630773,34292958:983040,0,0 -k1,10550:8374634,34292958:132986 -k1,10550:9526705,34292958:132986 -k1,10550:12741848,34292958:132985 -k1,10550:13541990,34292958:132986 -(1,10550:13541990,34292958:0,452978,115847 -r1,10578:15307103,34292958:1765113,568825,115847 -k1,10550:13541990,34292958:-1765113 -) -(1,10550:13541990,34292958:1765113,452978,115847 -k1,10550:13541990,34292958:3277 -h1,10550:15303826,34292958:0,411205,112570 -) -k1,10550:15440089,34292958:132986 -k1,10550:16441427,34292958:132986 -k1,10550:17508955,34292958:132985 -k1,10550:17997801,34292958:132986 -k1,10550:20396367,34292958:132986 -k1,10550:23601681,34292958:132986 -k1,10550:24682317,34292958:132985 -k1,10550:28096035,34292958:132986 -(1,10550:28096035,34292958:0,452978,115847 -r1,10578:30564572,34292958:2468537,568825,115847 -k1,10550:28096035,34292958:-2468537 -) -(1,10550:28096035,34292958:2468537,452978,115847 -k1,10550:28096035,34292958:3277 -h1,10550:30561295,34292958:0,411205,112570 -) -k1,10550:30697558,34292958:132986 -k1,10550:32583029,34292958:0 -) -(1,10551:6630773,35134446:25952256,505283,134348 -g1,10550:7361499,35134446 -g1,10550:9073954,35134446 -g1,10550:11315940,35134446 -g1,10550:12534254,35134446 -g1,10550:14114327,35134446 -g1,10550:17210903,35134446 -g1,10550:19524979,35134446 -g1,10550:20494911,35134446 -g1,10550:23766468,35134446 -g1,10550:24617125,35134446 -g1,10550:26019595,35134446 -k1,10551:32583029,35134446:3109031 -g1,10551:32583029,35134446 -) -v1,10557:6630773,36480847:0,393216,0 -(1,10558:6630773,38759014:25952256,2671383,616038 -g1,10558:6630773,38759014 -(1,10558:6630773,38759014:25952256,2671383,616038 -(1,10558:6630773,39375052:25952256,3287421,0 -[1,10558:6630773,39375052:25952256,3287421,0 -(1,10558:6630773,39348838:25952256,3234993,0 -r1,10578:6656987,39348838:26214,3234993,0 -[1,10558:6656987,39348838:25899828,3234993,0 -(1,10558:6656987,38759014:25899828,2055345,0 -[1,10558:7246811,38759014:24720180,2055345,0 -(1,10558:7246811,37791043:24720180,1087374,126483 -k1,10557:8663832,37791043:207318 -k1,10557:10914563,37791043:207318 -k1,10557:12580712,37791043:207318 -k1,10557:14118411,37791043:207318 -k1,10557:17021225,37791043:207318 -k1,10557:17879971,37791043:207318 -k1,10557:20895507,37791043:207318 -k1,10557:22121910,37791043:207318 -k1,10557:24067243,37791043:207318 -k1,10557:24890599,37791043:207318 -k1,10557:25453777,37791043:207318 -k1,10557:27863105,37791043:207318 -k1,10557:29308398,37791043:207318 -k1,10557:30201878,37791043:207318 -(1,10557:30201878,37791043:0,452978,115847 -r1,10578:31966991,37791043:1765113,568825,115847 -k1,10557:30201878,37791043:-1765113 -) -(1,10557:30201878,37791043:1765113,452978,115847 -k1,10557:30201878,37791043:3277 -h1,10557:31963714,37791043:0,411205,112570 -) -k1,10557:31966991,37791043:0 -) -(1,10558:7246811,38632531:24720180,513147,126483 -g1,10557:8653213,38632531 -g1,10557:11234020,38632531 -g1,10557:13462244,38632531 -g1,10557:15213366,38632531 -g1,10557:18108091,38632531 -(1,10557:18108091,38632531:0,452978,115847 -r1,10578:19873204,38632531:1765113,568825,115847 -k1,10557:18108091,38632531:-1765113 -) -(1,10557:18108091,38632531:1765113,452978,115847 -k1,10557:18108091,38632531:3277 -h1,10557:19869927,38632531:0,411205,112570 -) -g1,10557:20072433,38632531 -g1,10557:22040479,38632531 -g1,10557:22987474,38632531 -g1,10557:23845995,38632531 -k1,10558:31966991,38632531:6559273 -g1,10558:31966991,38632531 -) -] -) -] -r1,10578:32583029,39348838:26214,3234993,0 -) -] -) -) -g1,10558:32583029,38759014 -) -h1,10558:6630773,39375052:0,0,0 -(1,10561:6630773,40721454:25952256,505283,134348 -h1,10560:6630773,40721454:983040,0,0 -k1,10560:10982232,40721454:248250 -k1,10560:12334764,40721454:248250 -k1,10560:14058230,40721454:248251 -k1,10560:16089715,40721454:248250 -k1,10560:17988162,40721454:248250 -k1,10560:20922733,40721454:248250 -k1,10560:22362428,40721454:248250 -k1,10560:24469935,40721454:248251 -k1,10560:28131955,40721454:248250 -k1,10560:31896867,40721454:248250 -k1,10560:32583029,40721454:0 -) -(1,10561:6630773,41562942:25952256,513147,126483 -k1,10560:8430556,41562942:291144 -k1,10560:10298495,41562942:291143 -k1,10560:12032086,41562942:291144 -k1,10560:14067143,41562942:291144 -k1,10560:14974324,41562942:291143 -k1,10560:16284553,41562942:291144 -k1,10560:19567416,41562942:291144 -k1,10560:21887554,41562942:291143 -k1,10560:24273884,41562942:291144 -k1,10560:25335731,41562942:291144 -k1,10560:29240529,41562942:291143 -k1,10560:29887533,41562942:291144 -k1,10560:32583029,41562942:0 -) -(1,10561:6630773,42404430:25952256,513147,126483 -k1,10560:8634461,42404430:265673 -k1,10560:11653301,42404430:265673 -k1,10560:12680502,42404430:265673 -k1,10560:16800347,42404430:265673 -k1,10560:17597517,42404430:265673 -k1,10560:21453252,42404430:265673 -k1,10560:22405086,42404430:265672 -k1,10560:23026619,42404430:265673 -k1,10560:24391986,42404430:265673 -k1,10560:25309087,42404430:265673 -k1,10560:26593845,42404430:265673 -k1,10560:29728684,42404430:265673 -k1,10560:31191044,42404430:265673 -k1,10560:32583029,42404430:0 -) -(1,10561:6630773,43245918:25952256,513147,134348 -g1,10560:8568017,43245918 -g1,10560:9426538,43245918 -g1,10560:9981627,43245918 -g1,10560:12876352,43245918 -g1,10560:15402764,43245918 -g1,10560:17212213,43245918 -g1,10560:19442403,43245918 -g1,10560:20293060,43245918 -g1,10560:21280687,43245918 -k1,10561:32583029,43245918:8046513 -g1,10561:32583029,43245918 -) -(1,10563:6630773,44087406:25952256,513147,126483 -h1,10562:6630773,44087406:983040,0,0 -k1,10562:8760340,44087406:192978 -k1,10562:10259451,44087406:192978 -k1,10562:12034469,44087406:192979 -k1,10562:15647771,44087406:192978 -k1,10562:16859834,44087406:192978 -k1,10562:20134970,44087406:192978 -k1,10562:20987241,44087406:192979 -k1,10562:22277947,44087406:192978 -k1,10562:25166421,44087406:192978 -k1,10562:26927020,44087406:192978 -k1,10562:29153581,44087406:192979 -k1,10562:29962597,44087406:192978 -k1,10562:31358816,44087406:192978 -k1,10563:32583029,44087406:0 -) -(1,10563:6630773,44928894:25952256,473825,7863 -k1,10563:32583030,44928894:24511120 -g1,10563:32583030,44928894 -) -v1,10565:6630773,46099985:0,393216,0 -] -(1,10578:32583029,45706769:0,0,0 -g1,10578:32583029,45706769 -) -) -] -(1,10578:6630773,47279633:25952256,0,0 -h1,10578:6630773,47279633:25952256,0,0 -) -] -(1,10578:4262630,4025873:0,0,0 -[1,10578:-473656,4025873:0,0,0 -(1,10578:-473656,-710413:0,0,0 -(1,10578:-473656,-710413:0,0,0 -g1,10578:-473656,-710413 -) -g1,10578:-473656,-710413 -) -] -) -] -!26318 -}199 -Input:1513:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1514:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!196 -{200 -[1,10664:4262630,47279633:28320399,43253760,0 -(1,10664:4262630,4025873:0,0,0 -[1,10664:-473656,4025873:0,0,0 -(1,10664:-473656,-710413:0,0,0 -(1,10664:-473656,-644877:0,0,0 -k1,10664:-473656,-644877:-65536 -) -(1,10664:-473656,4736287:0,0,0 -k1,10664:-473656,4736287:5209943 -) -g1,10664:-473656,-710413 -) -] -) -[1,10664:6630773,47279633:25952256,43253760,0 -[1,10664:6630773,4812305:25952256,786432,0 -(1,10664:6630773,4812305:25952256,513147,134348 -(1,10664:6630773,4812305:25952256,513147,134348 -g1,10664:3078558,4812305 -[1,10664:3078558,4812305:0,0,0 -(1,10664:3078558,2439708:0,1703936,0 -k1,10664:1358238,2439708:-1720320 -(1,10278:1358238,2439708:1720320,1703936,0 -(1,10278:1358238,2439708:1179648,16384,0 -r1,10664:2537886,2439708:1179648,16384,0 -) -g1,10278:3062174,2439708 -(1,10278:3062174,2439708:16384,1703936,0 -[1,10278:3062174,2439708:25952256,1703936,0 -(1,10278:3062174,1915420:25952256,1179648,0 -(1,10278:3062174,1915420:16384,1179648,0 -r1,10664:3078558,1915420:16384,1179648,0 -) -k1,10278:29014430,1915420:25935872 -g1,10278:29014430,1915420 -) -] -) -) -) -] -[1,10664:3078558,4812305:0,0,0 -(1,10664:3078558,2439708:0,1703936,0 -g1,10664:29030814,2439708 -g1,10664:36135244,2439708 -(1,10278:36135244,2439708:1720320,1703936,0 -(1,10278:36135244,2439708:16384,1703936,0 -[1,10278:36135244,2439708:25952256,1703936,0 -(1,10278:36135244,1915420:25952256,1179648,0 -(1,10278:36135244,1915420:16384,1179648,0 -r1,10664:36151628,1915420:16384,1179648,0 -) -k1,10278:62087500,1915420:25935872 -g1,10278:62087500,1915420 -) -] -) -g1,10278:36675916,2439708 -(1,10278:36675916,2439708:1179648,16384,0 -r1,10664:37855564,2439708:1179648,16384,0 -) -) -k1,10664:3078556,2439708:-34777008 -) -] -[1,10664:3078558,4812305:0,0,0 -(1,10664:3078558,49800853:0,16384,2228224 -k1,10664:1358238,49800853:-1720320 -(1,10278:1358238,49800853:1720320,16384,2228224 -(1,10278:1358238,49800853:1179648,16384,0 -r1,10664:2537886,49800853:1179648,16384,0 -) -g1,10278:3062174,49800853 -(1,10278:3062174,52029077:16384,1703936,0 -[1,10278:3062174,52029077:25952256,1703936,0 -(1,10278:3062174,51504789:25952256,1179648,0 -(1,10278:3062174,51504789:16384,1179648,0 -r1,10664:3078558,51504789:16384,1179648,0 -) -k1,10278:29014430,51504789:25935872 -g1,10278:29014430,51504789 -) -] -) -) -) -] -[1,10664:3078558,4812305:0,0,0 -(1,10664:3078558,49800853:0,16384,2228224 -g1,10664:29030814,49800853 -g1,10664:36135244,49800853 -(1,10278:36135244,49800853:1720320,16384,2228224 -(1,10278:36135244,52029077:16384,1703936,0 -[1,10278:36135244,52029077:25952256,1703936,0 -(1,10278:36135244,51504789:25952256,1179648,0 -(1,10278:36135244,51504789:16384,1179648,0 -r1,10664:36151628,51504789:16384,1179648,0 -) -k1,10278:62087500,51504789:25935872 -g1,10278:62087500,51504789 -) -] -) -g1,10278:36675916,49800853 -(1,10278:36675916,49800853:1179648,16384,0 -r1,10664:37855564,49800853:1179648,16384,0 -) -) -k1,10664:3078556,49800853:-34777008 -) -] -g1,10664:6630773,4812305 -g1,10664:6630773,4812305 -g1,10664:9499939,4812305 -g1,10664:12584718,4812305 -g1,10664:13994397,4812305 -g1,10664:17201073,4812305 -k1,10664:31387652,4812305:14186579 -) -) -] -[1,10664:6630773,45706769:25952256,40108032,0 -(1,10664:6630773,45706769:25952256,40108032,0 -(1,10664:6630773,45706769:0,0,0 -g1,10664:6630773,45706769 -) -[1,10664:6630773,45706769:25952256,40108032,0 -v1,10578:6630773,6254097:0,393216,0 -(1,10578:6630773,11171622:25952256,5310741,196608 -g1,10578:6630773,11171622 -g1,10578:6630773,11171622 -g1,10578:6434165,11171622 -(1,10578:6434165,11171622:0,5310741,196608 -r1,10664:32779637,11171622:26345472,5507349,196608 -k1,10578:6434165,11171622:-26345472 -) -(1,10578:6434165,11171622:26345472,5310741,196608 -[1,10578:6630773,11171622:25952256,5114133,0 -(1,10567:6630773,6341653:25952256,284164,6290 -(1,10566:6630773,6341653:0,0,0 -g1,10566:6630773,6341653 -g1,10566:6630773,6341653 -g1,10566:6303093,6341653 -(1,10566:6303093,6341653:0,0,0 -) -g1,10566:6630773,6341653 -) -h1,10567:7579210,6341653:0,0,0 -k1,10567:32583030,6341653:25003820 -g1,10567:32583030,6341653 -) -(1,10577:6630773,7073367:25952256,410518,82312 -(1,10569:6630773,7073367:0,0,0 -g1,10569:6630773,7073367 -g1,10569:6630773,7073367 -g1,10569:6303093,7073367 -(1,10569:6303093,7073367:0,0,0 -) -g1,10569:6630773,7073367 -) -g1,10577:7579210,7073367 -g1,10577:11372959,7073367 -g1,10577:13902125,7073367 -g1,10577:14534417,7073367 -g1,10577:16747437,7073367 -h1,10577:17063583,7073367:0,0,0 -k1,10577:32583029,7073367:15519446 -g1,10577:32583029,7073367 -) -(1,10577:6630773,7739545:25952256,410518,76021 -h1,10577:6630773,7739545:0,0,0 -g1,10577:7579210,7739545 -g1,10577:7895356,7739545 -g1,10577:8843793,7739545 -g1,10577:12005250,7739545 -h1,10577:12321396,7739545:0,0,0 -k1,10577:32583028,7739545:20261632 -g1,10577:32583028,7739545 -) -(1,10577:6630773,8405723:25952256,404226,76021 -h1,10577:6630773,8405723:0,0,0 -g1,10577:7579210,8405723 -g1,10577:7895356,8405723 -g1,10577:8211502,8405723 -g1,10577:8527648,8405723 -g1,10577:9159940,8405723 -g1,10577:10108378,8405723 -h1,10577:13269835,8405723:0,0,0 -k1,10577:32583029,8405723:19313194 -g1,10577:32583029,8405723 -) -(1,10577:6630773,9071901:25952256,404226,76021 -h1,10577:6630773,9071901:0,0,0 -g1,10577:7579210,9071901 -g1,10577:7895356,9071901 -h1,10577:8211502,9071901:0,0,0 -k1,10577:32583030,9071901:24371528 -g1,10577:32583030,9071901 -) -(1,10577:6630773,9738079:25952256,404226,107478 -h1,10577:6630773,9738079:0,0,0 -g1,10577:7579210,9738079 -g1,10577:7895356,9738079 -h1,10577:14850561,9738079:0,0,0 -k1,10577:32583029,9738079:17732468 -g1,10577:32583029,9738079 -) -(1,10577:6630773,10404257:25952256,404226,76021 -h1,10577:6630773,10404257:0,0,0 -g1,10577:7579210,10404257 -h1,10577:7895356,10404257:0,0,0 -k1,10577:32583028,10404257:24687672 -g1,10577:32583028,10404257 -) -(1,10577:6630773,11070435:25952256,404226,101187 -h1,10577:6630773,11070435:0,0,0 -g1,10577:7579210,11070435 -g1,10577:11056813,11070435 -k1,10577:11056813,11070435:0 -h1,10577:17063581,11070435:0,0,0 -k1,10577:32583029,11070435:15519448 -g1,10577:32583029,11070435 -) -] -) -g1,10578:32583029,11171622 -g1,10578:6630773,11171622 -g1,10578:6630773,11171622 -g1,10578:32583029,11171622 -g1,10578:32583029,11171622 -) -h1,10578:6630773,11368230:0,0,0 -(1,10582:6630773,12609425:25952256,513147,134348 -h1,10581:6630773,12609425:983040,0,0 -k1,10581:9331982,12609425:256716 -k1,10581:10457049,12609425:256715 -k1,10581:12295804,12609425:256716 -k1,10581:13571604,12609425:256715 -k1,10581:16910478,12609425:256716 -k1,10581:17834350,12609425:256716 -k1,10581:19009880,12609425:256715 -k1,10581:21079322,12609425:256716 -k1,10581:23323745,12609425:256716 -k1,10581:25515083,12609425:256715 -k1,10581:28467295,12609425:256716 -(1,10581:28467295,12609425:0,452978,115847 -r1,10664:29880696,12609425:1413401,568825,115847 -k1,10581:28467295,12609425:-1413401 -) -(1,10581:28467295,12609425:1413401,452978,115847 -k1,10581:28467295,12609425:3277 -h1,10581:29877419,12609425:0,411205,112570 -) -k1,10581:30311081,12609425:256715 -k1,10581:31923737,12609425:256716 -k1,10582:32583029,12609425:0 -) -(1,10582:6630773,13450913:25952256,505283,134348 -(1,10581:6630773,13450913:0,452978,115847 -r1,10664:8044174,13450913:1413401,568825,115847 -k1,10581:6630773,13450913:-1413401 -) -(1,10581:6630773,13450913:1413401,452978,115847 -k1,10581:6630773,13450913:3277 -h1,10581:8040897,13450913:0,411205,112570 -) -g1,10581:8243403,13450913 -g1,10581:8974129,13450913 -g1,10581:12263381,13450913 -g1,10581:13078648,13450913 -g1,10581:15556564,13450913 -h1,10581:16527152,13450913:0,0,0 -g1,10581:16726381,13450913 -g1,10581:17734980,13450913 -g1,10581:19432362,13450913 -h1,10581:20627739,13450913:0,0,0 -k1,10582:32583029,13450913:11574526 -g1,10582:32583029,13450913 -) -v1,10584:6630773,14516798:0,393216,0 -(1,10664:6630773,45510161:25952256,31386579,196608 -g1,10664:6630773,45510161 -g1,10664:6630773,45510161 -g1,10664:6434165,45510161 -(1,10664:6434165,45510161:0,31386579,196608 -r1,10664:32779637,45510161:26345472,31583187,196608 -k1,10664:6434165,45510161:-26345472 -) -(1,10664:6434165,45510161:26345472,31386579,196608 -[1,10664:6630773,45510161:25952256,31189971,0 -(1,10586:6630773,14724416:25952256,404226,0 -(1,10585:6630773,14724416:0,0,0 -g1,10585:6630773,14724416 -g1,10585:6630773,14724416 -g1,10585:6303093,14724416 -(1,10585:6303093,14724416:0,0,0 -) -g1,10585:6630773,14724416 -) -h1,10586:7263064,14724416:0,0,0 -k1,10586:32583028,14724416:25319964 -g1,10586:32583028,14724416 -) -(1,10663:6630773,15456130:25952256,410518,107478 -(1,10588:6630773,15456130:0,0,0 -g1,10588:6630773,15456130 -g1,10588:6630773,15456130 -g1,10588:6303093,15456130 -(1,10588:6303093,15456130:0,0,0 -) -g1,10588:6630773,15456130 -) -g1,10663:7579210,15456130 -g1,10663:10424521,15456130 -g1,10663:13585978,15456130 -g1,10663:15482853,15456130 -g1,10663:18012019,15456130 -g1,10663:20857331,15456130 -g1,10663:24334934,15456130 -g1,10663:26547954,15456130 -g1,10663:27180246,15456130 -k1,10663:27180246,15456130:0 -h1,10663:28760975,15456130:0,0,0 -k1,10663:32583029,15456130:3822054 -g1,10663:32583029,15456130 -) -(1,10663:6630773,16122308:25952256,404226,107478 -h1,10663:6630773,16122308:0,0,0 -g1,10663:7579210,16122308 -g1,10663:7895356,16122308 -g1,10663:8211502,16122308 -g1,10663:8527648,16122308 -g1,10663:8843794,16122308 -g1,10663:10740668,16122308 -g1,10663:11372960,16122308 -g1,10663:13269835,16122308 -g1,10663:13902127,16122308 -g1,10663:14534419,16122308 -g1,10663:16747439,16122308 -g1,10663:17379731,16122308 -g1,10663:18012023,16122308 -g1,10663:20225043,16122308 -g1,10663:21173480,16122308 -g1,10663:21805772,16122308 -g1,10663:23702647,16122308 -g1,10663:27496395,16122308 -g1,10663:28128687,16122308 -k1,10663:28128687,16122308:0 -h1,10663:29709416,16122308:0,0,0 -k1,10663:32583029,16122308:2873613 -g1,10663:32583029,16122308 -) -(1,10663:6630773,16788486:25952256,410518,82312 -h1,10663:6630773,16788486:0,0,0 -g1,10663:7579210,16788486 -g1,10663:7895356,16788486 -g1,10663:8211502,16788486 -g1,10663:8527648,16788486 -g1,10663:8843794,16788486 -g1,10663:12005251,16788486 -g1,10663:12637543,16788486 -g1,10663:14534418,16788486 -g1,10663:17063584,16788486 -h1,10663:18328167,16788486:0,0,0 -k1,10663:32583029,16788486:14254862 -g1,10663:32583029,16788486 -) -(1,10663:6630773,17454664:25952256,404226,76021 -h1,10663:6630773,17454664:0,0,0 -g1,10663:7579210,17454664 -h1,10663:7895356,17454664:0,0,0 -k1,10663:32583028,17454664:24687672 -g1,10663:32583028,17454664 -) -(1,10663:6630773,18120842:25952256,379060,6290 -h1,10663:6630773,18120842:0,0,0 -g1,10663:7579210,18120842 -g1,10663:7895356,18120842 -g1,10663:8211502,18120842 -g1,10663:8527648,18120842 -g1,10663:8843794,18120842 -g1,10663:10740668,18120842 -g1,10663:11689106,18120842 -h1,10663:12005252,18120842:0,0,0 -k1,10663:32583028,18120842:20577776 -g1,10663:32583028,18120842 -) -(1,10663:6630773,18787020:25952256,379060,101187 -h1,10663:6630773,18787020:0,0,0 -g1,10663:7579210,18787020 -g1,10663:7895356,18787020 -g1,10663:8211502,18787020 -g1,10663:8527648,18787020 -g1,10663:8843794,18787020 -g1,10663:10740668,18787020 -g1,10663:11689106,18787020 -h1,10663:12005252,18787020:0,0,0 -k1,10663:32583028,18787020:20577776 -g1,10663:32583028,18787020 -) -(1,10663:6630773,19453198:25952256,404226,76021 -h1,10663:6630773,19453198:0,0,0 -g1,10663:7579210,19453198 -g1,10663:7895356,19453198 -g1,10663:8211502,19453198 -g1,10663:8527648,19453198 -g1,10663:8843794,19453198 -g1,10663:9792231,19453198 -g1,10663:10740669,19453198 -h1,10663:14534417,19453198:0,0,0 -k1,10663:32583029,19453198:18048612 -g1,10663:32583029,19453198 -) -(1,10663:6630773,20119376:25952256,410518,101187 -h1,10663:6630773,20119376:0,0,0 -g1,10663:7579210,20119376 -g1,10663:7895356,20119376 -g1,10663:8211502,20119376 -g1,10663:8527648,20119376 -g1,10663:8843794,20119376 -g1,10663:9792231,20119376 -g1,10663:10740669,20119376 -g1,10663:18012020,20119376 -g1,10663:18644312,20119376 -h1,10663:20541186,20119376:0,0,0 -k1,10663:32583029,20119376:12041843 -g1,10663:32583029,20119376 -) -(1,10663:6630773,20785554:25952256,410518,107478 -h1,10663:6630773,20785554:0,0,0 -g1,10663:7579210,20785554 -g1,10663:7895356,20785554 -g1,10663:8211502,20785554 -g1,10663:8527648,20785554 -g1,10663:8843794,20785554 -g1,10663:9476086,20785554 -g1,10663:10424524,20785554 -g1,10663:16431293,20785554 -g1,10663:18960459,20785554 -g1,10663:22121916,20785554 -g1,10663:25599519,20785554 -k1,10663:25599519,20785554:0 -h1,10663:29393267,20785554:0,0,0 -k1,10663:32583029,20785554:3189762 -g1,10663:32583029,20785554 -) -(1,10663:6630773,21451732:25952256,410518,82312 -h1,10663:6630773,21451732:0,0,0 -g1,10663:7579210,21451732 -g1,10663:7895356,21451732 -g1,10663:8211502,21451732 -g1,10663:8527648,21451732 -g1,10663:8843794,21451732 -g1,10663:9159940,21451732 -g1,10663:9476086,21451732 -g1,10663:9792232,21451732 -g1,10663:10108378,21451732 -g1,10663:13585981,21451732 -g1,10663:17063584,21451732 -h1,10663:18012021,21451732:0,0,0 -k1,10663:32583029,21451732:14571008 -g1,10663:32583029,21451732 -) -(1,10663:6630773,22117910:25952256,410518,82312 -h1,10663:6630773,22117910:0,0,0 -g1,10663:7579210,22117910 -g1,10663:7895356,22117910 -g1,10663:8211502,22117910 -g1,10663:8527648,22117910 -g1,10663:8843794,22117910 -g1,10663:9792231,22117910 -g1,10663:10740669,22117910 -g1,10663:13585981,22117910 -h1,10663:14534418,22117910:0,0,0 -k1,10663:32583030,22117910:18048612 -g1,10663:32583030,22117910 -) -(1,10663:6630773,22784088:25952256,410518,101187 -h1,10663:6630773,22784088:0,0,0 -g1,10663:7579210,22784088 -g1,10663:7895356,22784088 -g1,10663:8211502,22784088 -g1,10663:8527648,22784088 -g1,10663:8843794,22784088 -g1,10663:15798999,22784088 -g1,10663:16747437,22784088 -h1,10663:18012020,22784088:0,0,0 -k1,10663:32583029,22784088:14571009 -g1,10663:32583029,22784088 -) -(1,10663:6630773,23450266:25952256,410518,101187 -h1,10663:6630773,23450266:0,0,0 -g1,10663:7579210,23450266 -g1,10663:7895356,23450266 -g1,10663:8211502,23450266 -g1,10663:8527648,23450266 -g1,10663:8843794,23450266 -g1,10663:11689105,23450266 -g1,10663:12637543,23450266 -h1,10663:20541185,23450266:0,0,0 -k1,10663:32583029,23450266:12041844 -g1,10663:32583029,23450266 -) -(1,10663:6630773,24116444:25952256,410518,101187 -h1,10663:6630773,24116444:0,0,0 -g1,10663:7579210,24116444 -g1,10663:7895356,24116444 -g1,10663:8211502,24116444 -g1,10663:8527648,24116444 -g1,10663:8843794,24116444 -g1,10663:9792231,24116444 -g1,10663:10740669,24116444 -g1,10663:13585981,24116444 -h1,10663:18328166,24116444:0,0,0 -k1,10663:32583029,24116444:14254863 -g1,10663:32583029,24116444 -) -(1,10663:6630773,24782622:25952256,410518,76021 -h1,10663:6630773,24782622:0,0,0 -g1,10663:7579210,24782622 -g1,10663:7895356,24782622 -g1,10663:8211502,24782622 -g1,10663:8527648,24782622 -g1,10663:8843794,24782622 -g1,10663:9792231,24782622 -g1,10663:12321397,24782622 -g1,10663:13269834,24782622 -h1,10663:17695874,24782622:0,0,0 -k1,10663:32583029,24782622:14887155 -g1,10663:32583029,24782622 -) -(1,10663:6630773,25448800:25952256,410518,76021 -h1,10663:6630773,25448800:0,0,0 -g1,10663:7579210,25448800 -g1,10663:7895356,25448800 -g1,10663:8211502,25448800 -g1,10663:8527648,25448800 -g1,10663:8843794,25448800 -g1,10663:9159940,25448800 -g1,10663:9476086,25448800 -g1,10663:9792232,25448800 -g1,10663:10108378,25448800 -h1,10663:13269835,25448800:0,0,0 -k1,10663:32583029,25448800:19313194 -g1,10663:32583029,25448800 -) -(1,10663:6630773,26114978:25952256,410518,101187 -h1,10663:6630773,26114978:0,0,0 -g1,10663:7579210,26114978 -g1,10663:7895356,26114978 -g1,10663:8211502,26114978 -g1,10663:8527648,26114978 -g1,10663:8843794,26114978 -g1,10663:10424523,26114978 -g1,10663:11372960,26114978 -g1,10663:13902126,26114978 -g1,10663:14850563,26114978 -h1,10663:16431291,26114978:0,0,0 -k1,10663:32583029,26114978:16151738 -g1,10663:32583029,26114978 -) -(1,10663:6630773,26781156:25952256,410518,107478 -h1,10663:6630773,26781156:0,0,0 -g1,10663:7579210,26781156 -g1,10663:7895356,26781156 -g1,10663:8211502,26781156 -g1,10663:8527648,26781156 -g1,10663:8843794,26781156 -g1,10663:9159940,26781156 -g1,10663:9476086,26781156 -g1,10663:9792232,26781156 -g1,10663:10108378,26781156 -g1,10663:18012020,26781156 -g1,10663:18644312,26781156 -g1,10663:20225041,26781156 -g1,10663:21173478,26781156 -g1,10663:22438061,26781156 -g1,10663:25915664,26781156 -g1,10663:27812538,26781156 -k1,10663:27812538,26781156:0 -h1,10663:29709413,26781156:0,0,0 -k1,10663:32583029,26781156:2873616 -g1,10663:32583029,26781156 -) -(1,10663:6630773,27447334:25952256,404226,82312 -h1,10663:6630773,27447334:0,0,0 -g1,10663:7579210,27447334 -g1,10663:7895356,27447334 -g1,10663:8211502,27447334 -g1,10663:8527648,27447334 -g1,10663:8843794,27447334 -g1,10663:9159940,27447334 -g1,10663:9476086,27447334 -g1,10663:9792232,27447334 -g1,10663:10108378,27447334 -g1,10663:10424524,27447334 -g1,10663:10740670,27447334 -g1,10663:11056816,27447334 -g1,10663:11372962,27447334 -g1,10663:14218274,27447334 -g1,10663:16431294,27447334 -g1,10663:17063586,27447334 -h1,10663:18012023,27447334:0,0,0 -k1,10663:32583029,27447334:14571006 -g1,10663:32583029,27447334 -) -(1,10663:6630773,28113512:25952256,410518,82312 -h1,10663:6630773,28113512:0,0,0 -g1,10663:7579210,28113512 -g1,10663:7895356,28113512 -g1,10663:8211502,28113512 -g1,10663:8527648,28113512 -g1,10663:8843794,28113512 -g1,10663:9792231,28113512 -g1,10663:10740669,28113512 -g1,10663:13585981,28113512 -h1,10663:16115146,28113512:0,0,0 -k1,10663:32583029,28113512:16467883 -g1,10663:32583029,28113512 -) -(1,10663:6630773,28779690:25952256,410518,101187 -h1,10663:6630773,28779690:0,0,0 -g1,10663:7579210,28779690 -g1,10663:7895356,28779690 -g1,10663:8211502,28779690 -g1,10663:8527648,28779690 -g1,10663:8843794,28779690 -g1,10663:9476086,28779690 -g1,10663:10424524,28779690 -g1,10663:16431293,28779690 -h1,10663:19592750,28779690:0,0,0 -k1,10663:32583029,28779690:12990279 -g1,10663:32583029,28779690 -) -(1,10663:6630773,29445868:25952256,410518,107478 -h1,10663:6630773,29445868:0,0,0 -g1,10663:7579210,29445868 -g1,10663:7895356,29445868 -g1,10663:8211502,29445868 -g1,10663:8527648,29445868 -g1,10663:8843794,29445868 -g1,10663:9476086,29445868 -g1,10663:10424524,29445868 -h1,10663:19276603,29445868:0,0,0 -k1,10663:32583029,29445868:13306426 -g1,10663:32583029,29445868 -) -(1,10663:6630773,30112046:25952256,410518,76021 -h1,10663:6630773,30112046:0,0,0 -g1,10663:7579210,30112046 -g1,10663:7895356,30112046 -g1,10663:8211502,30112046 -g1,10663:8527648,30112046 -g1,10663:8843794,30112046 -g1,10663:9792231,30112046 -g1,10663:13902125,30112046 -g1,10663:14850562,30112046 -h1,10663:19592747,30112046:0,0,0 -k1,10663:32583029,30112046:12990282 -g1,10663:32583029,30112046 -) -(1,10663:6630773,30778224:25952256,404226,107478 -h1,10663:6630773,30778224:0,0,0 -g1,10663:7579210,30778224 -g1,10663:7895356,30778224 -g1,10663:8211502,30778224 -g1,10663:8527648,30778224 -g1,10663:8843794,30778224 -g1,10663:9159940,30778224 -g1,10663:9476086,30778224 -g1,10663:9792232,30778224 -g1,10663:10108378,30778224 -g1,10663:15166710,30778224 -g1,10663:16747439,30778224 -g1,10663:17695876,30778224 -g1,10663:18328168,30778224 -g1,10663:20857334,30778224 -h1,10663:23386499,30778224:0,0,0 -k1,10663:32583029,30778224:9196530 -g1,10663:32583029,30778224 -) -(1,10663:6630773,31444402:25952256,410518,76021 -h1,10663:6630773,31444402:0,0,0 -g1,10663:7579210,31444402 -g1,10663:7895356,31444402 -g1,10663:8211502,31444402 -g1,10663:8527648,31444402 -g1,10663:8843794,31444402 -g1,10663:11056814,31444402 -g1,10663:12005252,31444402 -h1,10663:17063583,31444402:0,0,0 -k1,10663:32583029,31444402:15519446 -g1,10663:32583029,31444402 -) -(1,10663:6630773,32110580:25952256,404226,101187 -h1,10663:6630773,32110580:0,0,0 -g1,10663:7579210,32110580 -g1,10663:7895356,32110580 -g1,10663:8211502,32110580 -g1,10663:8527648,32110580 -g1,10663:8843794,32110580 -g1,10663:10108377,32110580 -g1,10663:11056815,32110580 -h1,10663:14850563,32110580:0,0,0 -k1,10663:32583029,32110580:17732466 -g1,10663:32583029,32110580 -) -(1,10663:6630773,32776758:25952256,410518,101187 -h1,10663:6630773,32776758:0,0,0 -g1,10663:7579210,32776758 -g1,10663:7895356,32776758 -g1,10663:8211502,32776758 -g1,10663:8527648,32776758 -g1,10663:8843794,32776758 -g1,10663:9792231,32776758 -g1,10663:10740669,32776758 -g1,10663:11689106,32776758 -h1,10663:13269834,32776758:0,0,0 -k1,10663:32583030,32776758:19313196 -g1,10663:32583030,32776758 -) -(1,10663:6630773,33442936:25952256,404226,101187 -h1,10663:6630773,33442936:0,0,0 -g1,10663:7579210,33442936 -g1,10663:7895356,33442936 -g1,10663:8211502,33442936 -g1,10663:8527648,33442936 -g1,10663:8843794,33442936 -g1,10663:9159940,33442936 -g1,10663:9476086,33442936 -g1,10663:9792232,33442936 -g1,10663:10108378,33442936 -h1,10663:12321398,33442936:0,0,0 -k1,10663:32583030,33442936:20261632 -g1,10663:32583030,33442936 -) -(1,10663:6630773,34109114:25952256,404226,107478 -h1,10663:6630773,34109114:0,0,0 -g1,10663:7579210,34109114 -g1,10663:7895356,34109114 -g1,10663:8211502,34109114 -g1,10663:8527648,34109114 -g1,10663:8843794,34109114 -g1,10663:10424523,34109114 -h1,10663:13269834,34109114:0,0,0 -k1,10663:32583030,34109114:19313196 -g1,10663:32583030,34109114 -) -(1,10663:6630773,34775292:25952256,410518,76021 -h1,10663:6630773,34775292:0,0,0 -g1,10663:7579210,34775292 -g1,10663:7895356,34775292 -g1,10663:8211502,34775292 -g1,10663:8527648,34775292 -g1,10663:8843794,34775292 -g1,10663:9792231,34775292 -g1,10663:15798999,34775292 -h1,10663:16115145,34775292:0,0,0 -k1,10663:32583029,34775292:16467884 -g1,10663:32583029,34775292 -) -(1,10663:6630773,35441470:25952256,410518,76021 -h1,10663:6630773,35441470:0,0,0 -g1,10663:7579210,35441470 -g1,10663:7895356,35441470 -g1,10663:8211502,35441470 -g1,10663:8527648,35441470 -g1,10663:8843794,35441470 -g1,10663:9159940,35441470 -g1,10663:9476086,35441470 -g1,10663:9792232,35441470 -g1,10663:10108378,35441470 -g1,10663:11056815,35441470 -h1,10663:12953689,35441470:0,0,0 -k1,10663:32583029,35441470:19629340 -g1,10663:32583029,35441470 -) -(1,10663:6630773,36107648:25952256,410518,76021 -h1,10663:6630773,36107648:0,0,0 -g1,10663:7579210,36107648 -g1,10663:7895356,36107648 -g1,10663:8211502,36107648 -g1,10663:8527648,36107648 -g1,10663:8843794,36107648 -g1,10663:9159940,36107648 -g1,10663:9476086,36107648 -g1,10663:9792232,36107648 -g1,10663:10108378,36107648 -g1,10663:10424524,36107648 -g1,10663:10740670,36107648 -g1,10663:11056816,36107648 -g1,10663:11372962,36107648 -g1,10663:13585982,36107648 -g1,10663:14534420,36107648 -h1,10663:19908897,36107648:0,0,0 -k1,10663:32583029,36107648:12674132 -g1,10663:32583029,36107648 -) -(1,10663:6630773,36773826:25952256,410518,101187 -h1,10663:6630773,36773826:0,0,0 -g1,10663:7579210,36773826 -g1,10663:7895356,36773826 -g1,10663:8211502,36773826 -g1,10663:8527648,36773826 -g1,10663:8843794,36773826 -g1,10663:9159940,36773826 -g1,10663:9476086,36773826 -g1,10663:9792232,36773826 -g1,10663:10108378,36773826 -g1,10663:11056815,36773826 -g1,10663:15482855,36773826 -g1,10663:16431292,36773826 -h1,10663:17379729,36773826:0,0,0 -k1,10663:32583029,36773826:15203300 -g1,10663:32583029,36773826 -) -(1,10663:6630773,37440004:25952256,410518,107478 -h1,10663:6630773,37440004:0,0,0 -k1,10663:7473828,37440004:210764 -k1,10663:7684592,37440004:210764 -k1,10663:7895356,37440004:210764 -k1,10663:8106120,37440004:210764 -k1,10663:8316884,37440004:210764 -k1,10663:8527648,37440004:210764 -k1,10663:8738412,37440004:210764 -k1,10663:8949176,37440004:210764 -k1,10663:9159940,37440004:210764 -k1,10663:9370704,37440004:210764 -k1,10663:9581468,37440004:210764 -k1,10663:9792232,37440004:210764 -k1,10663:10002996,37440004:210764 -k1,10663:16852819,37440004:210764 -k1,10663:17695874,37440004:210764 -k1,10663:20119658,37440004:210764 -k1,10663:20962713,37440004:210764 -k1,10663:22121914,37440004:210764 -k1,10663:24229552,37440004:210764 -k1,10663:26021044,37440004:210764 -k1,10663:26864099,37440004:210764 -k1,10663:29287883,37440004:210764 -k1,10663:30130938,37440004:210764 -k1,10663:30130938,37440004:0 -h1,10663:34873124,37440004:0,0,0 -k1,10663:34873124,37440004:0 -k1,10663:34873124,37440004:0 -) -(1,10663:6630773,38106182:25952256,410518,101187 -h1,10663:6630773,38106182:0,0,0 -g1,10663:7579210,38106182 -g1,10663:7895356,38106182 -g1,10663:8211502,38106182 -g1,10663:8527648,38106182 -g1,10663:8843794,38106182 -g1,10663:9159940,38106182 -g1,10663:9476086,38106182 -g1,10663:9792232,38106182 -g1,10663:10108378,38106182 -g1,10663:10424524,38106182 -g1,10663:10740670,38106182 -g1,10663:11056816,38106182 -g1,10663:11372962,38106182 -g1,10663:11689108,38106182 -g1,10663:12005254,38106182 -g1,10663:12321400,38106182 -g1,10663:12637546,38106182 -g1,10663:17063586,38106182 -g1,10663:18644315,38106182 -g1,10663:20857335,38106182 -g1,10663:21489627,38106182 -h1,10663:22438064,38106182:0,0,0 -k1,10663:32583029,38106182:10144965 -g1,10663:32583029,38106182 -) -(1,10663:6630773,38772360:25952256,404226,76021 -h1,10663:6630773,38772360:0,0,0 -g1,10663:7579210,38772360 -g1,10663:7895356,38772360 -g1,10663:8211502,38772360 -g1,10663:8527648,38772360 -g1,10663:8843794,38772360 -h1,10663:9159940,38772360:0,0,0 -k1,10663:32583028,38772360:23423088 -g1,10663:32583028,38772360 -) -(1,10663:6630773,39438538:25952256,410518,101187 -h1,10663:6630773,39438538:0,0,0 -g1,10663:7579210,39438538 -g1,10663:7895356,39438538 -g1,10663:8211502,39438538 -g1,10663:8527648,39438538 -g1,10663:8843794,39438538 -g1,10663:9792231,39438538 -g1,10663:16431291,39438538 -h1,10663:16747437,39438538:0,0,0 -k1,10663:32583029,39438538:15835592 -g1,10663:32583029,39438538 -) -(1,10663:6630773,40104716:25952256,379060,7863 -h1,10663:6630773,40104716:0,0,0 -g1,10663:7579210,40104716 -g1,10663:7895356,40104716 -g1,10663:8211502,40104716 -g1,10663:8527648,40104716 -g1,10663:8843794,40104716 -g1,10663:9159940,40104716 -g1,10663:9476086,40104716 -g1,10663:9792232,40104716 -g1,10663:10108378,40104716 -g1,10663:10740670,40104716 -g1,10663:11689108,40104716 -h1,10663:12953691,40104716:0,0,0 -k1,10663:32583029,40104716:19629338 -g1,10663:32583029,40104716 -) -(1,10663:6630773,40770894:25952256,410518,82312 -h1,10663:6630773,40770894:0,0,0 -g1,10663:7579210,40770894 -g1,10663:7895356,40770894 -g1,10663:8211502,40770894 -g1,10663:8527648,40770894 -g1,10663:8843794,40770894 -g1,10663:9159940,40770894 -g1,10663:9476086,40770894 -g1,10663:9792232,40770894 -g1,10663:10108378,40770894 -g1,10663:10740670,40770894 -g1,10663:11689108,40770894 -g1,10663:17379731,40770894 -g1,10663:18012023,40770894 -g1,10663:18960460,40770894 -g1,10663:20857334,40770894 -g1,10663:26231811,40770894 -k1,10663:26231811,40770894:0 -h1,10663:26864103,40770894:0,0,0 -k1,10663:32583029,40770894:5718926 -g1,10663:32583029,40770894 -) -(1,10663:6630773,41437072:25952256,410518,101187 -h1,10663:6630773,41437072:0,0,0 -g1,10663:7579210,41437072 -g1,10663:7895356,41437072 -g1,10663:8211502,41437072 -g1,10663:8527648,41437072 -g1,10663:8843794,41437072 -g1,10663:9159940,41437072 -g1,10663:9476086,41437072 -g1,10663:9792232,41437072 -g1,10663:10108378,41437072 -g1,10663:10424524,41437072 -g1,10663:10740670,41437072 -g1,10663:11056816,41437072 -g1,10663:11372962,41437072 -g1,10663:14218273,41437072 -g1,10663:15799002,41437072 -g1,10663:19276605,41437072 -g1,10663:22438062,41437072 -g1,10663:23070354,41437072 -g1,10663:24018792,41437072 -g1,10663:28444832,41437072 -g1,10663:29077124,41437072 -g1,10663:29709416,41437072 -h1,10663:30025562,41437072:0,0,0 -k1,10663:32583029,41437072:2557467 -g1,10663:32583029,41437072 -) -(1,10663:6630773,42103250:25952256,410518,107478 -h1,10663:6630773,42103250:0,0,0 -g1,10663:7579210,42103250 -g1,10663:7895356,42103250 -g1,10663:8211502,42103250 -g1,10663:8527648,42103250 -g1,10663:8843794,42103250 -g1,10663:9159940,42103250 -g1,10663:9476086,42103250 -g1,10663:9792232,42103250 -g1,10663:10108378,42103250 -g1,10663:10424524,42103250 -g1,10663:10740670,42103250 -g1,10663:11056816,42103250 -g1,10663:11372962,42103250 -g1,10663:12321400,42103250 -g1,10663:14850566,42103250 -g1,10663:15482858,42103250 -g1,10663:16431296,42103250 -g1,10663:18012025,42103250 -g1,10663:18644317,42103250 -g1,10663:19908900,42103250 -g1,10663:23702648,42103250 -g1,10663:24334940,42103250 -g1,10663:25283377,42103250 -g1,10663:29709417,42103250 -g1,10663:31606291,42103250 -h1,10663:32238582,42103250:0,0,0 -k1,10663:32583029,42103250:344447 -g1,10663:32583029,42103250 -) -(1,10663:6630773,42769428:25952256,404226,101187 -h1,10663:6630773,42769428:0,0,0 -g1,10663:7579210,42769428 -g1,10663:7895356,42769428 -g1,10663:8211502,42769428 -g1,10663:8527648,42769428 -g1,10663:8843794,42769428 -g1,10663:9159940,42769428 -g1,10663:9476086,42769428 -g1,10663:9792232,42769428 -g1,10663:10108378,42769428 -g1,10663:10424524,42769428 -g1,10663:10740670,42769428 -g1,10663:11056816,42769428 -g1,10663:11372962,42769428 -g1,10663:12321399,42769428 -g1,10663:13902128,42769428 -h1,10663:14850565,42769428:0,0,0 -k1,10663:32583029,42769428:17732464 -g1,10663:32583029,42769428 -) -(1,10663:6630773,43435606:25952256,410518,76021 -h1,10663:6630773,43435606:0,0,0 -g1,10663:7579210,43435606 -g1,10663:7895356,43435606 -g1,10663:8211502,43435606 -g1,10663:8527648,43435606 -g1,10663:8843794,43435606 -g1,10663:9159940,43435606 -g1,10663:9476086,43435606 -g1,10663:9792232,43435606 -g1,10663:10108378,43435606 -g1,10663:11056815,43435606 -g1,10663:17063583,43435606 -h1,10663:17379729,43435606:0,0,0 -k1,10663:32583029,43435606:15203300 -g1,10663:32583029,43435606 -) -(1,10663:6630773,44101784:25952256,410518,31456 -h1,10663:6630773,44101784:0,0,0 -g1,10663:7579210,44101784 -g1,10663:7895356,44101784 -g1,10663:8211502,44101784 -g1,10663:8527648,44101784 -g1,10663:8843794,44101784 -g1,10663:9159940,44101784 -g1,10663:9476086,44101784 -g1,10663:9792232,44101784 -g1,10663:10108378,44101784 -g1,10663:10424524,44101784 -g1,10663:10740670,44101784 -g1,10663:11056816,44101784 -g1,10663:11372962,44101784 -g1,10663:16431293,44101784 -g1,10663:17379731,44101784 -h1,10663:19276605,44101784:0,0,0 -k1,10663:32583029,44101784:13306424 -g1,10663:32583029,44101784 -) -(1,10663:6630773,44767962:25952256,410518,101187 -h1,10663:6630773,44767962:0,0,0 -g1,10663:7579210,44767962 -g1,10663:7895356,44767962 -g1,10663:8211502,44767962 -g1,10663:8527648,44767962 -g1,10663:8843794,44767962 -g1,10663:9159940,44767962 -g1,10663:9476086,44767962 -g1,10663:9792232,44767962 -g1,10663:10108378,44767962 -g1,10663:10424524,44767962 -g1,10663:10740670,44767962 -g1,10663:11056816,44767962 -g1,10663:11372962,44767962 -g1,10663:15166710,44767962 -g1,10663:16115148,44767962 -g1,10663:16747440,44767962 -g1,10663:17379732,44767962 -h1,10663:19276606,44767962:0,0,0 -k1,10663:32583029,44767962:13306423 -g1,10663:32583029,44767962 -) -(1,10663:6630773,45434140:25952256,404226,76021 -h1,10663:6630773,45434140:0,0,0 -g1,10663:7579210,45434140 -g1,10663:7895356,45434140 -g1,10663:8211502,45434140 -g1,10663:8527648,45434140 -g1,10663:8843794,45434140 -g1,10663:9159940,45434140 -g1,10663:9476086,45434140 -g1,10663:9792232,45434140 -g1,10663:10108378,45434140 -h1,10663:10424524,45434140:0,0,0 -k1,10663:32583028,45434140:22158504 -g1,10663:32583028,45434140 -) -] -) -g1,10664:32583029,45510161 -g1,10664:6630773,45510161 -g1,10664:6630773,45510161 -g1,10664:32583029,45510161 -g1,10664:32583029,45510161 -) -] -(1,10664:32583029,45706769:0,0,0 -g1,10664:32583029,45706769 -) -) -] -(1,10664:6630773,47279633:25952256,0,0 -h1,10664:6630773,47279633:25952256,0,0 -) -] -(1,10664:4262630,4025873:0,0,0 -[1,10664:-473656,4025873:0,0,0 -(1,10664:-473656,-710413:0,0,0 -(1,10664:-473656,-710413:0,0,0 -g1,10664:-473656,-710413 -) -g1,10664:-473656,-710413 -) -] -) -] -!30593 -}200 -Input:1515:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1516:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1517:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1518:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1519:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!472 -{201 -[1,10709:4262630,47279633:28320399,43253760,0 -(1,10709:4262630,4025873:0,0,0 -[1,10709:-473656,4025873:0,0,0 -(1,10709:-473656,-710413:0,0,0 -(1,10709:-473656,-644877:0,0,0 -k1,10709:-473656,-644877:-65536 -) -(1,10709:-473656,4736287:0,0,0 -k1,10709:-473656,4736287:5209943 -) -g1,10709:-473656,-710413 -) -] -) -[1,10709:6630773,47279633:25952256,43253760,0 -[1,10709:6630773,4812305:25952256,786432,0 -(1,10709:6630773,4812305:25952256,505283,134348 -(1,10709:6630773,4812305:25952256,505283,134348 -g1,10709:3078558,4812305 -[1,10709:3078558,4812305:0,0,0 -(1,10709:3078558,2439708:0,1703936,0 -k1,10709:1358238,2439708:-1720320 -(1,10278:1358238,2439708:1720320,1703936,0 -(1,10278:1358238,2439708:1179648,16384,0 -r1,10709:2537886,2439708:1179648,16384,0 -) -g1,10278:3062174,2439708 -(1,10278:3062174,2439708:16384,1703936,0 -[1,10278:3062174,2439708:25952256,1703936,0 -(1,10278:3062174,1915420:25952256,1179648,0 -(1,10278:3062174,1915420:16384,1179648,0 -r1,10709:3078558,1915420:16384,1179648,0 -) -k1,10278:29014430,1915420:25935872 -g1,10278:29014430,1915420 -) -] -) -) -) -] -[1,10709:3078558,4812305:0,0,0 -(1,10709:3078558,2439708:0,1703936,0 -g1,10709:29030814,2439708 -g1,10709:36135244,2439708 -(1,10278:36135244,2439708:1720320,1703936,0 -(1,10278:36135244,2439708:16384,1703936,0 -[1,10278:36135244,2439708:25952256,1703936,0 -(1,10278:36135244,1915420:25952256,1179648,0 -(1,10278:36135244,1915420:16384,1179648,0 -r1,10709:36151628,1915420:16384,1179648,0 -) -k1,10278:62087500,1915420:25935872 -g1,10278:62087500,1915420 -) -] -) -g1,10278:36675916,2439708 -(1,10278:36675916,2439708:1179648,16384,0 -r1,10709:37855564,2439708:1179648,16384,0 -) -) -k1,10709:3078556,2439708:-34777008 -) -] -[1,10709:3078558,4812305:0,0,0 -(1,10709:3078558,49800853:0,16384,2228224 -k1,10709:1358238,49800853:-1720320 -(1,10278:1358238,49800853:1720320,16384,2228224 -(1,10278:1358238,49800853:1179648,16384,0 -r1,10709:2537886,49800853:1179648,16384,0 -) -g1,10278:3062174,49800853 -(1,10278:3062174,52029077:16384,1703936,0 -[1,10278:3062174,52029077:25952256,1703936,0 -(1,10278:3062174,51504789:25952256,1179648,0 -(1,10278:3062174,51504789:16384,1179648,0 -r1,10709:3078558,51504789:16384,1179648,0 -) -k1,10278:29014430,51504789:25935872 -g1,10278:29014430,51504789 -) -] -) -) -) -] -[1,10709:3078558,4812305:0,0,0 -(1,10709:3078558,49800853:0,16384,2228224 -g1,10709:29030814,49800853 -g1,10709:36135244,49800853 -(1,10278:36135244,49800853:1720320,16384,2228224 -(1,10278:36135244,52029077:16384,1703936,0 -[1,10278:36135244,52029077:25952256,1703936,0 -(1,10278:36135244,51504789:25952256,1179648,0 -(1,10278:36135244,51504789:16384,1179648,0 -r1,10709:36151628,51504789:16384,1179648,0 -) -k1,10278:62087500,51504789:25935872 -g1,10278:62087500,51504789 -) -] -) -g1,10278:36675916,49800853 -(1,10278:36675916,49800853:1179648,16384,0 -r1,10709:37855564,49800853:1179648,16384,0 -) -) -k1,10709:3078556,49800853:-34777008 -) -] -g1,10709:6630773,4812305 -k1,10709:20781963,4812305:12955813 -g1,10709:22168704,4812305 -g1,10709:22817510,4812305 -g1,10709:26131665,4812305 -g1,10709:28614824,4812305 -g1,10709:30094627,4812305 -) -) -] -[1,10709:6630773,45706769:25952256,40108032,0 -(1,10709:6630773,45706769:25952256,40108032,0 -(1,10709:6630773,45706769:0,0,0 -g1,10709:6630773,45706769 -) -[1,10709:6630773,45706769:25952256,40108032,0 -v1,10664:6630773,6254097:0,393216,0 -(1,10664:6630773,24549708:25952256,18688827,196608 -g1,10664:6630773,24549708 -g1,10664:6630773,24549708 -g1,10664:6434165,24549708 -(1,10664:6434165,24549708:0,18688827,196608 -r1,10709:32779637,24549708:26345472,18885435,196608 -k1,10664:6434165,24549708:-26345472 -) -(1,10664:6434165,24549708:26345472,18688827,196608 -[1,10664:6630773,24549708:25952256,18492219,0 -(1,10663:6630773,6461715:25952256,404226,76021 -h1,10663:6630773,6461715:0,0,0 -g1,10663:7579210,6461715 -g1,10663:7895356,6461715 -g1,10663:8211502,6461715 -g1,10663:8527648,6461715 -g1,10663:8843794,6461715 -h1,10663:9159940,6461715:0,0,0 -k1,10663:32583028,6461715:23423088 -g1,10663:32583028,6461715 -) -(1,10663:6630773,7127893:25952256,404226,76021 -h1,10663:6630773,7127893:0,0,0 -g1,10663:7579210,7127893 -g1,10663:7895356,7127893 -g1,10663:8211502,7127893 -g1,10663:8527648,7127893 -g1,10663:8843794,7127893 -g1,10663:10424523,7127893 -h1,10663:10740669,7127893:0,0,0 -k1,10663:32583029,7127893:21842360 -g1,10663:32583029,7127893 -) -(1,10663:6630773,7794071:25952256,410518,82312 -h1,10663:6630773,7794071:0,0,0 -g1,10663:7579210,7794071 -g1,10663:7895356,7794071 -g1,10663:8211502,7794071 -g1,10663:8527648,7794071 -g1,10663:8843794,7794071 -g1,10663:9159940,7794071 -g1,10663:9476086,7794071 -g1,10663:9792232,7794071 -g1,10663:10108378,7794071 -g1,10663:10740670,7794071 -g1,10663:11689108,7794071 -g1,10663:17063585,7794071 -g1,10663:18328168,7794071 -h1,10663:21489625,7794071:0,0,0 -k1,10663:32583029,7794071:11093404 -g1,10663:32583029,7794071 -) -(1,10663:6630773,8460249:25952256,410518,76021 -h1,10663:6630773,8460249:0,0,0 -g1,10663:7579210,8460249 -g1,10663:7895356,8460249 -g1,10663:8211502,8460249 -g1,10663:8527648,8460249 -g1,10663:8843794,8460249 -g1,10663:9159940,8460249 -g1,10663:9476086,8460249 -g1,10663:9792232,8460249 -g1,10663:10108378,8460249 -g1,10663:10740670,8460249 -g1,10663:11689108,8460249 -g1,10663:12637545,8460249 -h1,10663:16431293,8460249:0,0,0 -k1,10663:32583029,8460249:16151736 -g1,10663:32583029,8460249 -) -(1,10663:6630773,9126427:25952256,410518,107478 -h1,10663:6630773,9126427:0,0,0 -g1,10663:7579210,9126427 -g1,10663:7895356,9126427 -g1,10663:8211502,9126427 -g1,10663:8527648,9126427 -g1,10663:8843794,9126427 -g1,10663:9159940,9126427 -g1,10663:9476086,9126427 -g1,10663:9792232,9126427 -g1,10663:10108378,9126427 -g1,10663:10424524,9126427 -g1,10663:10740670,9126427 -g1,10663:11056816,9126427 -g1,10663:11372962,9126427 -g1,10663:14534419,9126427 -g1,10663:15482857,9126427 -g1,10663:17695877,9126427 -g1,10663:18328169,9126427 -g1,10663:20857335,9126427 -g1,10663:24651083,9126427 -g1,10663:25283375,9126427 -k1,10663:25283375,9126427:0 -h1,10663:29077123,9126427:0,0,0 -k1,10663:32583029,9126427:3505906 -g1,10663:32583029,9126427 -) -(1,10663:6630773,9792605:25952256,404226,76021 -h1,10663:6630773,9792605:0,0,0 -g1,10663:7579210,9792605 -g1,10663:7895356,9792605 -g1,10663:8211502,9792605 -g1,10663:8527648,9792605 -g1,10663:8843794,9792605 -g1,10663:9159940,9792605 -g1,10663:9476086,9792605 -g1,10663:9792232,9792605 -g1,10663:10108378,9792605 -g1,10663:10424524,9792605 -g1,10663:10740670,9792605 -g1,10663:11056816,9792605 -g1,10663:11372962,9792605 -g1,10663:11689108,9792605 -g1,10663:12005254,9792605 -g1,10663:12321400,9792605 -g1,10663:12637546,9792605 -h1,10663:13902129,9792605:0,0,0 -k1,10663:32583029,9792605:18680900 -g1,10663:32583029,9792605 -) -(1,10663:6630773,10458783:25952256,410518,107478 -h1,10663:6630773,10458783:0,0,0 -g1,10663:7579210,10458783 -g1,10663:7895356,10458783 -g1,10663:8211502,10458783 -g1,10663:8527648,10458783 -g1,10663:8843794,10458783 -g1,10663:9159940,10458783 -g1,10663:9476086,10458783 -g1,10663:9792232,10458783 -g1,10663:10108378,10458783 -g1,10663:11689107,10458783 -g1,10663:15166710,10458783 -g1,10663:16115148,10458783 -g1,10663:17063586,10458783 -g1,10663:19276606,10458783 -g1,10663:19908898,10458783 -g1,10663:22438064,10458783 -g1,10663:26231812,10458783 -g1,10663:26864104,10458783 -k1,10663:26864104,10458783:0 -h1,10663:30657852,10458783:0,0,0 -k1,10663:32583029,10458783:1925177 -g1,10663:32583029,10458783 -) -(1,10663:6630773,11124961:25952256,404226,76021 -h1,10663:6630773,11124961:0,0,0 -g1,10663:7579210,11124961 -g1,10663:7895356,11124961 -g1,10663:8211502,11124961 -g1,10663:8527648,11124961 -g1,10663:8843794,11124961 -g1,10663:9159940,11124961 -g1,10663:9476086,11124961 -g1,10663:9792232,11124961 -g1,10663:10108378,11124961 -g1,10663:10424524,11124961 -g1,10663:10740670,11124961 -g1,10663:11056816,11124961 -g1,10663:11372962,11124961 -h1,10663:12637545,11124961:0,0,0 -k1,10663:32583029,11124961:19945484 -g1,10663:32583029,11124961 -) -(1,10663:6630773,11791139:25952256,404226,76021 -h1,10663:6630773,11791139:0,0,0 -g1,10663:7579210,11791139 -g1,10663:7895356,11791139 -g1,10663:8211502,11791139 -g1,10663:8527648,11791139 -g1,10663:8843794,11791139 -h1,10663:9159940,11791139:0,0,0 -k1,10663:32583028,11791139:23423088 -g1,10663:32583028,11791139 -) -(1,10663:6630773,12457317:25952256,410518,82312 -h1,10663:6630773,12457317:0,0,0 -g1,10663:7579210,12457317 -g1,10663:7895356,12457317 -g1,10663:8211502,12457317 -g1,10663:8527648,12457317 -g1,10663:8843794,12457317 -g1,10663:11689105,12457317 -g1,10663:12637543,12457317 -g1,10663:14218272,12457317 -g1,10663:16115146,12457317 -g1,10663:18328166,12457317 -h1,10663:19908894,12457317:0,0,0 -k1,10663:32583029,12457317:12674135 -g1,10663:32583029,12457317 -) -(1,10663:6630773,13123495:25952256,410518,82312 -h1,10663:6630773,13123495:0,0,0 -g1,10663:7579210,13123495 -g1,10663:7895356,13123495 -g1,10663:8211502,13123495 -g1,10663:8527648,13123495 -g1,10663:8843794,13123495 -g1,10663:12637542,13123495 -g1,10663:13585980,13123495 -g1,10663:16431292,13123495 -h1,10663:20225040,13123495:0,0,0 -k1,10663:32583029,13123495:12357989 -g1,10663:32583029,13123495 -) -(1,10663:6630773,13789673:25952256,410518,31456 -h1,10663:6630773,13789673:0,0,0 -g1,10663:7579210,13789673 -g1,10663:7895356,13789673 -g1,10663:8211502,13789673 -g1,10663:8527648,13789673 -g1,10663:8843794,13789673 -g1,10663:11689105,13789673 -g1,10663:12637543,13789673 -h1,10663:14534417,13789673:0,0,0 -k1,10663:32583029,13789673:18048612 -g1,10663:32583029,13789673 -) -(1,10663:6630773,14455851:25952256,410518,82312 -h1,10663:6630773,14455851:0,0,0 -g1,10663:7579210,14455851 -g1,10663:7895356,14455851 -g1,10663:8211502,14455851 -g1,10663:8527648,14455851 -g1,10663:8843794,14455851 -g1,10663:12637542,14455851 -g1,10663:13585980,14455851 -g1,10663:16115146,14455851 -h1,10663:19908894,14455851:0,0,0 -k1,10663:32583029,14455851:12674135 -g1,10663:32583029,14455851 -) -(1,10663:6630773,15122029:25952256,410518,107478 -h1,10663:6630773,15122029:0,0,0 -g1,10663:7579210,15122029 -g1,10663:7895356,15122029 -g1,10663:8211502,15122029 -g1,10663:8527648,15122029 -g1,10663:8843794,15122029 -g1,10663:12005251,15122029 -g1,10663:12953689,15122029 -g1,10663:18012021,15122029 -h1,10663:18960458,15122029:0,0,0 -k1,10663:32583029,15122029:13622571 -g1,10663:32583029,15122029 -) -(1,10663:6630773,15788207:25952256,410518,31456 -h1,10663:6630773,15788207:0,0,0 -g1,10663:7579210,15788207 -g1,10663:7895356,15788207 -g1,10663:8211502,15788207 -g1,10663:8527648,15788207 -g1,10663:8843794,15788207 -g1,10663:11056814,15788207 -g1,10663:12005252,15788207 -h1,10663:12637543,15788207:0,0,0 -k1,10663:32583029,15788207:19945486 -g1,10663:32583029,15788207 -) -(1,10663:6630773,16454385:25952256,410518,31456 -h1,10663:6630773,16454385:0,0,0 -g1,10663:7579210,16454385 -g1,10663:7895356,16454385 -g1,10663:8211502,16454385 -g1,10663:8527648,16454385 -g1,10663:8843794,16454385 -g1,10663:11372960,16454385 -g1,10663:12321398,16454385 -h1,10663:12953689,16454385:0,0,0 -k1,10663:32583029,16454385:19629340 -g1,10663:32583029,16454385 -) -(1,10663:6630773,17120563:25952256,410518,76021 -h1,10663:6630773,17120563:0,0,0 -g1,10663:7579210,17120563 -g1,10663:7895356,17120563 -g1,10663:8211502,17120563 -g1,10663:8527648,17120563 -g1,10663:8843794,17120563 -g1,10663:9792231,17120563 -h1,10663:12005251,17120563:0,0,0 -k1,10663:32583029,17120563:20577778 -g1,10663:32583029,17120563 -) -(1,10663:6630773,17786741:25952256,410518,31456 -h1,10663:6630773,17786741:0,0,0 -g1,10663:7579210,17786741 -g1,10663:7895356,17786741 -g1,10663:8211502,17786741 -g1,10663:8527648,17786741 -g1,10663:8843794,17786741 -g1,10663:9159940,17786741 -g1,10663:9476086,17786741 -g1,10663:9792232,17786741 -g1,10663:10108378,17786741 -g1,10663:12637544,17786741 -g1,10663:13585982,17786741 -h1,10663:14218273,17786741:0,0,0 -k1,10663:32583029,17786741:18364756 -g1,10663:32583029,17786741 -) -(1,10663:6630773,18452919:25952256,410518,76021 -h1,10663:6630773,18452919:0,0,0 -g1,10663:7579210,18452919 -g1,10663:7895356,18452919 -g1,10663:8211502,18452919 -g1,10663:8527648,18452919 -g1,10663:8843794,18452919 -g1,10663:9792231,18452919 -h1,10663:12005251,18452919:0,0,0 -k1,10663:32583029,18452919:20577778 -g1,10663:32583029,18452919 -) -(1,10663:6630773,19119097:25952256,410518,31456 -h1,10663:6630773,19119097:0,0,0 -g1,10663:7579210,19119097 -g1,10663:7895356,19119097 -g1,10663:8211502,19119097 -g1,10663:8527648,19119097 -g1,10663:8843794,19119097 -g1,10663:9159940,19119097 -g1,10663:9476086,19119097 -g1,10663:9792232,19119097 -g1,10663:10108378,19119097 -g1,10663:11372961,19119097 -g1,10663:12321399,19119097 -h1,10663:12637545,19119097:0,0,0 -k1,10663:32583029,19119097:19945484 -g1,10663:32583029,19119097 -) -(1,10663:6630773,19785275:25952256,410518,101187 -h1,10663:6630773,19785275:0,0,0 -g1,10663:7579210,19785275 -g1,10663:7895356,19785275 -g1,10663:8211502,19785275 -g1,10663:8527648,19785275 -g1,10663:8843794,19785275 -g1,10663:9792231,19785275 -h1,10663:12005251,19785275:0,0,0 -k1,10663:32583029,19785275:20577778 -g1,10663:32583029,19785275 -) -(1,10663:6630773,20451453:25952256,410518,101187 -h1,10663:6630773,20451453:0,0,0 -g1,10663:7579210,20451453 -g1,10663:7895356,20451453 -g1,10663:8211502,20451453 -g1,10663:8527648,20451453 -g1,10663:8843794,20451453 -g1,10663:9159940,20451453 -g1,10663:9476086,20451453 -g1,10663:9792232,20451453 -g1,10663:10108378,20451453 -g1,10663:11372961,20451453 -g1,10663:12321399,20451453 -h1,10663:12637545,20451453:0,0,0 -k1,10663:32583029,20451453:19945484 -g1,10663:32583029,20451453 -) -(1,10663:6630773,21117631:25952256,410518,101187 -h1,10663:6630773,21117631:0,0,0 -g1,10663:7579210,21117631 -g1,10663:7895356,21117631 -g1,10663:8211502,21117631 -g1,10663:8527648,21117631 -g1,10663:8843794,21117631 -g1,10663:9792231,21117631 -h1,10663:11372959,21117631:0,0,0 -k1,10663:32583029,21117631:21210070 -g1,10663:32583029,21117631 -) -(1,10663:6630773,21783809:25952256,410518,101187 -h1,10663:6630773,21783809:0,0,0 -g1,10663:7579210,21783809 -g1,10663:7895356,21783809 -g1,10663:8211502,21783809 -g1,10663:8527648,21783809 -g1,10663:8843794,21783809 -g1,10663:9159940,21783809 -g1,10663:9476086,21783809 -g1,10663:9792232,21783809 -g1,10663:10108378,21783809 -g1,10663:11689107,21783809 -g1,10663:12637545,21783809 -h1,10663:13902128,21783809:0,0,0 -k1,10663:32583028,21783809:18680900 -g1,10663:32583028,21783809 -) -(1,10663:6630773,22449987:25952256,379060,0 -h1,10663:6630773,22449987:0,0,0 -g1,10663:7579210,22449987 -g1,10663:7895356,22449987 -g1,10663:8211502,22449987 -g1,10663:8527648,22449987 -g1,10663:8843794,22449987 -h1,10663:9159940,22449987:0,0,0 -k1,10663:32583028,22449987:23423088 -g1,10663:32583028,22449987 -) -(1,10663:6630773,23116165:25952256,404226,76021 -h1,10663:6630773,23116165:0,0,0 -g1,10663:7579210,23116165 -h1,10663:7895356,23116165:0,0,0 -k1,10663:32583028,23116165:24687672 -g1,10663:32583028,23116165 -) -(1,10663:6630773,23782343:25952256,410518,101187 -h1,10663:6630773,23782343:0,0,0 -g1,10663:7579210,23782343 -g1,10663:11056813,23782343 -k1,10663:11056813,23782343:0 -h1,10663:17063581,23782343:0,0,0 -k1,10663:32583029,23782343:15519448 -g1,10663:32583029,23782343 -) -(1,10663:6630773,24448521:25952256,404226,101187 -h1,10663:6630773,24448521:0,0,0 -g1,10663:7579210,24448521 -g1,10663:12005250,24448521 -k1,10663:12005250,24448521:0 -h1,10663:17063581,24448521:0,0,0 -k1,10663:32583029,24448521:15519448 -g1,10663:32583029,24448521 -) -] -) -g1,10664:32583029,24549708 -g1,10664:6630773,24549708 -g1,10664:6630773,24549708 -g1,10664:32583029,24549708 -g1,10664:32583029,24549708 -) -h1,10664:6630773,24746316:0,0,0 -(1,10668:6630773,26112092:25952256,513147,134348 -h1,10667:6630773,26112092:983040,0,0 -k1,10667:8627409,26112092:195707 -k1,10667:9927398,26112092:195707 -k1,10667:10870871,26112092:195707 -k1,10667:12506404,26112092:195707 -k1,10667:13314873,26112092:195707 -k1,10667:14529665,26112092:195707 -k1,10667:15908297,26112092:195707 -k1,10667:16763296,26112092:195707 -k1,10667:17978088,26112092:195707 -k1,10667:20331240,26112092:195707 -k1,10667:21730188,26112092:195707 -k1,10667:24621391,26112092:195707 -k1,10667:27103649,26112092:195707 -k1,10667:27915394,26112092:195707 -k1,10667:29130186,26112092:195707 -k1,10667:29740733,26112092:195704 -k1,10667:32583029,26112092:0 -) -(1,10668:6630773,26953580:25952256,513147,126483 -k1,10667:7930399,26953580:198621 -k1,10667:9638969,26953580:198620 -k1,10667:14359574,26953580:198621 -k1,10667:15283023,26953580:198621 -k1,10667:16766150,26953580:198621 -k1,10667:17422867,26953580:198620 -k1,10667:20364170,26953580:198621 -k1,10667:22579989,26953580:198621 -k1,10667:25898778,26953580:198620 -k1,10667:27381905,26953580:198621 -k1,10667:28572086,26953580:198621 -k1,10667:30092568,26953580:198621 -k1,10667:30950480,26953580:198620 -k1,10667:32168186,26953580:198621 -k1,10668:32583029,26953580:0 -) -(1,10668:6630773,27795068:25952256,505283,134348 -k1,10667:9888621,27795068:241881 -k1,10667:11202672,27795068:241882 -k1,10667:12729059,27795068:241881 -k1,10667:13962500,27795068:241881 -k1,10667:15270653,27795068:241882 -k1,10667:17429462,27795068:241881 -k1,10667:19406737,27795068:241882 -k1,10667:20667703,27795068:241881 -k1,10667:21324385,27795068:241839 -k1,10667:24582233,27795068:241881 -k1,10667:25815674,27795068:241881 -k1,10667:27925332,27795068:241882 -k1,10667:31391584,27795068:241881 -k1,10667:32583029,27795068:0 -) -(1,10668:6630773,28636556:25952256,513147,134348 -k1,10667:8437222,28636556:297810 -k1,10667:9824897,28636556:297811 -k1,10667:13204865,28636556:297810 -k1,10667:15673227,28636556:297810 -k1,10667:16718804,28636556:297811 -k1,10667:19815657,28636556:297810 -k1,10667:22671994,28636556:297811 -k1,10667:24478443,28636556:297810 -k1,10667:26514268,28636556:297810 -k1,10667:28138528,28636556:297811 -(1,10667:28138528,28636556:0,452978,115847 -r1,10709:29903641,28636556:1765113,568825,115847 -k1,10667:28138528,28636556:-1765113 -) -(1,10667:28138528,28636556:1765113,452978,115847 -k1,10667:28138528,28636556:3277 -h1,10667:29900364,28636556:0,411205,112570 -) -k1,10667:30201451,28636556:297810 -k1,10667:32583029,28636556:0 -) -(1,10668:6630773,29478044:25952256,505283,95026 -k1,10668:32583029,29478044:23716168 -g1,10668:32583029,29478044 -) -v1,10670:6630773,30668510:0,393216,0 -(1,10677:6630773,31683863:25952256,1408569,196608 -g1,10677:6630773,31683863 -g1,10677:6630773,31683863 -g1,10677:6434165,31683863 -(1,10677:6434165,31683863:0,1408569,196608 -r1,10709:32779637,31683863:26345472,1605177,196608 -k1,10677:6434165,31683863:-26345472 -) -(1,10677:6434165,31683863:26345472,1408569,196608 -[1,10677:6630773,31683863:25952256,1211961,0 -(1,10672:6630773,30876128:25952256,404226,6290 -(1,10671:6630773,30876128:0,0,0 -g1,10671:6630773,30876128 -g1,10671:6630773,30876128 -g1,10671:6303093,30876128 -(1,10671:6303093,30876128:0,0,0 -) -g1,10671:6630773,30876128 -) -h1,10672:7895356,30876128:0,0,0 -k1,10672:32583028,30876128:24687672 -g1,10672:32583028,30876128 -) -(1,10676:6630773,31607842:25952256,410518,76021 -(1,10674:6630773,31607842:0,0,0 -g1,10674:6630773,31607842 -g1,10674:6630773,31607842 -g1,10674:6303093,31607842 -(1,10674:6303093,31607842:0,0,0 -) -g1,10674:6630773,31607842 -) -g1,10676:7579210,31607842 -g1,10676:10424521,31607842 -g1,10676:12321395,31607842 -g1,10676:12637541,31607842 -h1,10676:18328163,31607842:0,0,0 -k1,10676:32583029,31607842:14254866 -g1,10676:32583029,31607842 -) -] -) -g1,10677:32583029,31683863 -g1,10677:6630773,31683863 -g1,10677:6630773,31683863 -g1,10677:32583029,31683863 -g1,10677:32583029,31683863 -) -h1,10677:6630773,31880471:0,0,0 -(1,10680:6630773,34496019:25952256,534184,139132 -(1,10680:6630773,34496019:2450326,534184,12975 -g1,10680:6630773,34496019 -g1,10680:9081099,34496019 -) -k1,10680:32583030,34496019:19872940 -g1,10680:32583030,34496019 -) -(1,10684:6630773,35730723:25952256,513147,134348 -k1,10683:10031032,35730723:208656 -k1,10683:11231249,35730723:208657 -k1,10683:14465702,35730723:208656 -k1,10683:15958865,35730723:208657 -k1,10683:17260006,35730723:208656 -k1,10683:17824523,35730723:208657 -k1,10683:20795522,35730723:208656 -k1,10683:23088224,35730723:208657 -k1,10683:24244531,35730723:208656 -k1,10683:26191203,35730723:208657 -k1,10683:28441305,35730723:208656 -k1,10683:29127719,35730723:208657 -k1,10683:30845014,35730723:208656 -k1,10683:32583029,35730723:0 -) -(1,10684:6630773,36572211:25952256,513147,126483 -k1,10683:7331958,36572211:169688 -k1,10683:10295446,36572211:169688 -k1,10683:11081171,36572211:169687 -k1,10683:12733283,36572211:169688 -k1,10683:14417508,36572211:169688 -k1,10683:15967384,36572211:169688 -k1,10683:17241353,36572211:169687 -k1,10683:18158807,36572211:169688 -k1,10683:20196271,36572211:169688 -k1,10683:21052121,36572211:169688 -k1,10683:23946795,36572211:169687 -k1,10683:27315951,36572211:169688 -k1,10683:29506114,36572211:169688 -k1,10683:32583029,36572211:0 -) -(1,10684:6630773,37413699:25952256,513147,126483 -k1,10683:7951027,37413699:174029 -(1,10683:7951027,37413699:0,414482,115847 -r1,10709:8309293,37413699:358266,530329,115847 -k1,10683:7951027,37413699:-358266 -) -(1,10683:7951027,37413699:358266,414482,115847 -k1,10683:7951027,37413699:3277 -h1,10683:8306016,37413699:0,411205,112570 -) -k1,10683:8483322,37413699:174029 -k1,10683:10132566,37413699:174029 -k1,10683:11479034,37413699:174029 -k1,10683:13781672,37413699:174029 -k1,10683:17740405,37413699:174029 -k1,10683:19105878,37413699:174028 -k1,10683:21114915,37413699:174029 -k1,10683:24365859,37413699:174029 -k1,10683:25686113,37413699:174029 -k1,10683:27695150,37413699:174029 -(1,10683:27695150,37413699:0,414482,115847 -r1,10709:28053416,37413699:358266,530329,115847 -k1,10683:27695150,37413699:-358266 -) -(1,10683:27695150,37413699:358266,414482,115847 -k1,10683:27695150,37413699:3277 -h1,10683:28050139,37413699:0,411205,112570 -) -k1,10683:28227445,37413699:174029 -k1,10683:29876689,37413699:174029 -k1,10683:31426319,37413699:174029 -k1,10683:32583029,37413699:0 -) -(1,10684:6630773,38255187:25952256,513147,126483 -k1,10683:8974814,38255187:215432 -k1,10683:12644650,38255187:215433 -k1,10683:14056769,38255187:215432 -k1,10683:17883235,38255187:215432 -k1,10683:18757959,38255187:215432 -k1,10683:20725169,38255187:215433 -k1,10683:22962387,38255187:215432 -k1,10683:23592646,38255187:215416 -k1,10683:26884993,38255187:215432 -k1,10683:28091985,38255187:215432 -k1,10683:30466174,38255187:215433 -(1,10683:30466174,38255187:0,435480,115847 -r1,10709:31176152,38255187:709978,551327,115847 -k1,10683:30466174,38255187:-709978 -) -(1,10683:30466174,38255187:709978,435480,115847 -k1,10683:30466174,38255187:3277 -h1,10683:31172875,38255187:0,411205,112570 -) -k1,10683:31391584,38255187:215432 -k1,10684:32583029,38255187:0 -) -(1,10684:6630773,39096675:25952256,435480,115847 -(1,10683:6630773,39096675:0,435480,115847 -r1,10709:7340751,39096675:709978,551327,115847 -k1,10683:6630773,39096675:-709978 -) -(1,10683:6630773,39096675:709978,435480,115847 -k1,10683:6630773,39096675:3277 -h1,10683:7337474,39096675:0,411205,112570 -) -k1,10684:32583029,39096675:25068608 -g1,10684:32583029,39096675 -) -v1,10686:6630773,40287141:0,393216,0 -(1,10705:6630773,45408998:25952256,5515073,196608 -g1,10705:6630773,45408998 -g1,10705:6630773,45408998 -g1,10705:6434165,45408998 -(1,10705:6434165,45408998:0,5515073,196608 -r1,10709:32779637,45408998:26345472,5711681,196608 -k1,10705:6434165,45408998:-26345472 -) -(1,10705:6434165,45408998:26345472,5515073,196608 -[1,10705:6630773,45408998:25952256,5318465,0 -(1,10688:6630773,40494759:25952256,404226,76021 -(1,10687:6630773,40494759:0,0,0 -g1,10687:6630773,40494759 -g1,10687:6630773,40494759 -g1,10687:6303093,40494759 -(1,10687:6303093,40494759:0,0,0 -) -g1,10687:6630773,40494759 -) -g1,10688:7263065,40494759 -g1,10688:7895357,40494759 -h1,10688:8211503,40494759:0,0,0 -k1,10688:32583029,40494759:24371526 -g1,10688:32583029,40494759 -) -(1,10692:6630773,41226473:25952256,404226,76021 -(1,10690:6630773,41226473:0,0,0 -g1,10690:6630773,41226473 -g1,10690:6630773,41226473 -g1,10690:6303093,41226473 -(1,10690:6303093,41226473:0,0,0 -) -g1,10690:6630773,41226473 -) -g1,10692:7579210,41226473 -g1,10692:8843793,41226473 -h1,10692:9792230,41226473:0,0,0 -k1,10692:32583030,41226473:22790800 -g1,10692:32583030,41226473 -) -(1,10694:6630773,42548011:25952256,410518,82312 -(1,10693:6630773,42548011:0,0,0 -g1,10693:6630773,42548011 -g1,10693:6630773,42548011 -g1,10693:6303093,42548011 -(1,10693:6303093,42548011:0,0,0 -) -g1,10693:6630773,42548011 -) -k1,10694:6630773,42548011:0 -g1,10694:8527649,42548011 -g1,10694:9159941,42548011 -h1,10694:9792233,42548011:0,0,0 -k1,10694:32583029,42548011:22790796 -g1,10694:32583029,42548011 -) -(1,10698:6630773,43279725:25952256,404226,76021 -(1,10696:6630773,43279725:0,0,0 -g1,10696:6630773,43279725 -g1,10696:6630773,43279725 -g1,10696:6303093,43279725 -(1,10696:6303093,43279725:0,0,0 -) -g1,10696:6630773,43279725 -) -g1,10698:7579210,43279725 -g1,10698:8843793,43279725 -h1,10698:9792230,43279725:0,0,0 -k1,10698:32583030,43279725:22790800 -g1,10698:32583030,43279725 -) -(1,10700:6630773,44601263:25952256,410518,82312 -(1,10699:6630773,44601263:0,0,0 -g1,10699:6630773,44601263 -g1,10699:6630773,44601263 -g1,10699:6303093,44601263 -(1,10699:6303093,44601263:0,0,0 -) -g1,10699:6630773,44601263 -) -k1,10700:6630773,44601263:0 -g1,10700:8843794,44601263 -g1,10700:9476086,44601263 -g1,10700:10108378,44601263 -g1,10700:10740670,44601263 -g1,10700:11689107,44601263 -g1,10700:12321399,44601263 -h1,10700:12953691,44601263:0,0,0 -k1,10700:32583029,44601263:19629338 -g1,10700:32583029,44601263 -) -(1,10704:6630773,45332977:25952256,404226,76021 -(1,10702:6630773,45332977:0,0,0 -g1,10702:6630773,45332977 -g1,10702:6630773,45332977 -g1,10702:6303093,45332977 -(1,10702:6303093,45332977:0,0,0 -) -g1,10702:6630773,45332977 -) -g1,10704:7579210,45332977 -g1,10704:8843793,45332977 -h1,10704:9792230,45332977:0,0,0 -k1,10704:32583030,45332977:22790800 -g1,10704:32583030,45332977 -) -] -) -g1,10705:32583029,45408998 -g1,10705:6630773,45408998 -g1,10705:6630773,45408998 -g1,10705:32583029,45408998 -g1,10705:32583029,45408998 -) -h1,10705:6630773,45605606:0,0,0 -] -(1,10709:32583029,45706769:0,0,0 -g1,10709:32583029,45706769 -) -) -] -(1,10709:6630773,47279633:25952256,0,0 -h1,10709:6630773,47279633:25952256,0,0 -) -] -(1,10709:4262630,4025873:0,0,0 -[1,10709:-473656,4025873:0,0,0 -(1,10709:-473656,-710413:0,0,0 -(1,10709:-473656,-710413:0,0,0 -g1,10709:-473656,-710413 -) -g1,10709:-473656,-710413 -) -] -) -] -!25725 -}201 -Input:1520:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1521:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1522:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!288 -{202 -[1,10772:4262630,47279633:28320399,43253760,0 -(1,10772:4262630,4025873:0,0,0 -[1,10772:-473656,4025873:0,0,0 -(1,10772:-473656,-710413:0,0,0 -(1,10772:-473656,-644877:0,0,0 -k1,10772:-473656,-644877:-65536 -) -(1,10772:-473656,4736287:0,0,0 -k1,10772:-473656,4736287:5209943 -) -g1,10772:-473656,-710413 -) -] -) -[1,10772:6630773,47279633:25952256,43253760,0 -[1,10772:6630773,4812305:25952256,786432,0 -(1,10772:6630773,4812305:25952256,505283,134348 -(1,10772:6630773,4812305:25952256,505283,134348 -g1,10772:3078558,4812305 -[1,10772:3078558,4812305:0,0,0 -(1,10772:3078558,2439708:0,1703936,0 -k1,10772:1358238,2439708:-1720320 -(1,10278:1358238,2439708:1720320,1703936,0 -(1,10278:1358238,2439708:1179648,16384,0 -r1,10772:2537886,2439708:1179648,16384,0 -) -g1,10278:3062174,2439708 -(1,10278:3062174,2439708:16384,1703936,0 -[1,10278:3062174,2439708:25952256,1703936,0 -(1,10278:3062174,1915420:25952256,1179648,0 -(1,10278:3062174,1915420:16384,1179648,0 -r1,10772:3078558,1915420:16384,1179648,0 -) -k1,10278:29014430,1915420:25935872 -g1,10278:29014430,1915420 -) -] -) -) -) -] -[1,10772:3078558,4812305:0,0,0 -(1,10772:3078558,2439708:0,1703936,0 -g1,10772:29030814,2439708 -g1,10772:36135244,2439708 -(1,10278:36135244,2439708:1720320,1703936,0 -(1,10278:36135244,2439708:16384,1703936,0 -[1,10278:36135244,2439708:25952256,1703936,0 -(1,10278:36135244,1915420:25952256,1179648,0 -(1,10278:36135244,1915420:16384,1179648,0 -r1,10772:36151628,1915420:16384,1179648,0 -) -k1,10278:62087500,1915420:25935872 -g1,10278:62087500,1915420 -) -] -) -g1,10278:36675916,2439708 -(1,10278:36675916,2439708:1179648,16384,0 -r1,10772:37855564,2439708:1179648,16384,0 -) -) -k1,10772:3078556,2439708:-34777008 -) -] -[1,10772:3078558,4812305:0,0,0 -(1,10772:3078558,49800853:0,16384,2228224 -k1,10772:1358238,49800853:-1720320 -(1,10278:1358238,49800853:1720320,16384,2228224 -(1,10278:1358238,49800853:1179648,16384,0 -r1,10772:2537886,49800853:1179648,16384,0 -) -g1,10278:3062174,49800853 -(1,10278:3062174,52029077:16384,1703936,0 -[1,10278:3062174,52029077:25952256,1703936,0 -(1,10278:3062174,51504789:25952256,1179648,0 -(1,10278:3062174,51504789:16384,1179648,0 -r1,10772:3078558,51504789:16384,1179648,0 -) -k1,10278:29014430,51504789:25935872 -g1,10278:29014430,51504789 -) -] -) -) -) -] -[1,10772:3078558,4812305:0,0,0 -(1,10772:3078558,49800853:0,16384,2228224 -g1,10772:29030814,49800853 -g1,10772:36135244,49800853 -(1,10278:36135244,49800853:1720320,16384,2228224 -(1,10278:36135244,52029077:16384,1703936,0 -[1,10278:36135244,52029077:25952256,1703936,0 -(1,10278:36135244,51504789:25952256,1179648,0 -(1,10278:36135244,51504789:16384,1179648,0 -r1,10772:36151628,51504789:16384,1179648,0 -) -k1,10278:62087500,51504789:25935872 -g1,10278:62087500,51504789 -) -] -) -g1,10278:36675916,49800853 -(1,10278:36675916,49800853:1179648,16384,0 -r1,10772:37855564,49800853:1179648,16384,0 -) -) -k1,10772:3078556,49800853:-34777008 -) -] -g1,10772:6630773,4812305 -g1,10772:6630773,4812305 -g1,10772:9311850,4812305 -g1,10772:11796319,4812305 -g1,10772:13205998,4812305 -g1,10772:16063367,4812305 -k1,10772:31387652,4812305:15324285 -) -) -] -[1,10772:6630773,45706769:25952256,40108032,0 -(1,10772:6630773,45706769:25952256,40108032,0 -(1,10772:6630773,45706769:0,0,0 -g1,10772:6630773,45706769 -) -[1,10772:6630773,45706769:25952256,40108032,0 -(1,10709:6630773,6254097:25952256,513147,134348 -h1,10708:6630773,6254097:983040,0,0 -k1,10708:8666911,6254097:150667 -k1,10708:12026876,6254097:150667 -k1,10708:16260437,6254097:150668 -k1,10708:17070396,6254097:150667 -k1,10708:18240148,6254097:150667 -k1,10708:21693830,6254097:150667 -k1,10708:22503789,6254097:150667 -k1,10708:24744400,6254097:150668 -k1,10708:27971982,6254097:150667 -k1,10708:29858042,6254097:150667 -k1,10708:32583029,6254097:0 -) -(1,10709:6630773,7095585:25952256,513147,134348 -k1,10708:8912175,7095585:197357 -k1,10708:9641029,7095585:197357 -k1,10708:11122892,7095585:197357 -k1,10708:14397164,7095585:197357 -k1,10708:15698803,7095585:197357 -k1,10708:16643926,7095585:197357 -k1,10708:18354508,7095585:197356 -k1,10708:19238027,7095585:197357 -k1,10708:22838013,7095585:197357 -k1,10708:23686798,7095585:197357 -k1,10708:25676565,7095585:197357 -k1,10708:28899719,7095585:197357 -k1,10708:29713114,7095585:197357 -k1,10708:30929556,7095585:197357 -k1,10708:32583029,7095585:0 -) -(1,10709:6630773,7937073:25952256,513147,134348 -k1,10708:8103962,7937073:235214 -k1,10708:9025339,7937073:235215 -k1,10708:11985540,7937073:235214 -k1,10708:15420223,7937073:235215 -k1,10708:17438672,7937073:235214 -k1,10708:20101341,7937073:235215 -k1,10708:23083169,7937073:235214 -k1,10708:25386700,7937073:235215 -k1,10708:26308076,7937073:235214 -k1,10708:29945920,7937073:235215 -k1,10708:30832562,7937073:235214 -k1,10709:32583029,7937073:0 -) -(1,10709:6630773,8778561:25952256,513147,134348 -k1,10708:9823949,8778561:167379 -k1,10708:10859680,8778561:167379 -k1,10708:12402660,8778561:167379 -k1,10708:14100304,8778561:167378 -k1,10708:14919111,8778561:167379 -k1,10708:17459549,8778561:167379 -k1,10708:19265983,8778561:167379 -k1,10708:20049400,8778561:167379 -k1,10708:21699203,8778561:167379 -k1,10708:23381119,8778561:167379 -k1,10708:24780575,8778561:167379 -k1,10708:27226640,8778561:167378 -h1,10708:28197228,8778561:0,0,0 -k1,10708:28364607,8778561:167379 -k1,10708:29341356,8778561:167379 -k1,10708:31006888,8778561:167379 -h1,10708:32202265,8778561:0,0,0 -k1,10709:32583029,8778561:0 -k1,10709:32583029,8778561:0 -) -(1,10711:6630773,9620049:25952256,513147,126483 -h1,10710:6630773,9620049:983040,0,0 -k1,10710:8991098,9620049:180598 -k1,10710:10909712,9620049:180599 -k1,10710:11851838,9620049:180598 -k1,10710:13638069,9620049:180599 -k1,10710:15010112,9620049:180598 -k1,10710:17984511,9620049:180599 -k1,10710:18781147,9620049:180598 -k1,10710:20444170,9620049:180599 -k1,10710:22139305,9620049:180598 -k1,10710:24331859,9620049:180599 -k1,10710:25257601,9620049:180598 -k1,10710:26089628,9620049:180599 -k1,10710:28301187,9620049:180598 -k1,10710:29500871,9620049:180599 -k1,10710:32583029,9620049:0 -) -(1,10711:6630773,10461537:25952256,513147,126483 -g1,10710:7489294,10461537 -g1,10710:8459226,10461537 -k1,10711:32583030,10461537:21203520 -g1,10711:32583030,10461537 -) -v1,10713:6630773,11638835:0,393216,0 -(1,10720:6630773,12666771:25952256,1421152,196608 -g1,10720:6630773,12666771 -g1,10720:6630773,12666771 -g1,10720:6434165,12666771 -(1,10720:6434165,12666771:0,1421152,196608 -r1,10772:32779637,12666771:26345472,1617760,196608 -k1,10720:6434165,12666771:-26345472 -) -(1,10720:6434165,12666771:26345472,1421152,196608 -[1,10720:6630773,12666771:25952256,1224544,0 -(1,10715:6630773,11852745:25952256,410518,76021 -(1,10714:6630773,11852745:0,0,0 -g1,10714:6630773,11852745 -g1,10714:6630773,11852745 -g1,10714:6303093,11852745 -(1,10714:6303093,11852745:0,0,0 -) -g1,10714:6630773,11852745 -) -h1,10715:7579211,11852745:0,0,0 -k1,10715:32583029,11852745:25003818 -g1,10715:32583029,11852745 -) -(1,10719:6630773,12584459:25952256,410518,82312 -(1,10717:6630773,12584459:0,0,0 -g1,10717:6630773,12584459 -g1,10717:6630773,12584459 -g1,10717:6303093,12584459 -(1,10717:6303093,12584459:0,0,0 -) -g1,10717:6630773,12584459 -) -g1,10719:7579210,12584459 -g1,10719:10424521,12584459 -g1,10719:12005250,12584459 -g1,10719:13269833,12584459 -g1,10719:13585979,12584459 -h1,10719:18328164,12584459:0,0,0 -k1,10719:32583029,12584459:14254865 -g1,10719:32583029,12584459 -) -] -) -g1,10720:32583029,12666771 -g1,10720:6630773,12666771 -g1,10720:6630773,12666771 -g1,10720:32583029,12666771 -g1,10720:32583029,12666771 -) -h1,10720:6630773,12863379:0,0,0 -v1,10724:6630773,14727106:0,393216,0 -(1,10764:6630773,33553715:25952256,19219825,616038 -g1,10764:6630773,33553715 -(1,10764:6630773,33553715:25952256,19219825,616038 -(1,10764:6630773,34169753:25952256,19835863,0 -[1,10764:6630773,34169753:25952256,19835863,0 -(1,10764:6630773,34143539:25952256,19783435,0 -r1,10772:6656987,34143539:26214,19783435,0 -[1,10764:6656987,34143539:25899828,19783435,0 -(1,10764:6656987,33553715:25899828,18603787,0 -[1,10764:7246811,33553715:24720180,18603787,0 -(1,10725:7246811,16111813:24720180,1161885,196608 -(1,10724:7246811,16111813:0,1161885,196608 -r1,10772:8794447,16111813:1547636,1358493,196608 -k1,10724:7246811,16111813:-1547636 -) -(1,10724:7246811,16111813:1547636,1161885,196608 -) -k1,10724:9050564,16111813:256117 -k1,10724:12105255,16111813:262857 -k1,10724:12732492,16111813:262857 -k1,10724:14368984,16111813:262857 -k1,10724:17627961,16111813:256117 -k1,10724:18837627,16111813:256117 -k1,10724:20226206,16111813:256117 -k1,10724:22443160,16111813:256117 -k1,10724:23055137,16111813:256117 -k1,10724:25333039,16111813:256116 -k1,10724:28335770,16111813:256117 -k1,10724:30794552,16111813:256117 -k1,10724:31966991,16111813:0 -) -(1,10725:7246811,16953301:24720180,513147,134348 -k1,10724:11074605,16953301:218071 -k1,10724:12577182,16953301:218071 -k1,10724:15762723,16953301:218071 -k1,10724:17548415,16953301:218071 -k1,10724:18785571,16953301:218071 -k1,10724:21819725,16953301:218072 -k1,10724:22653834,16953301:218071 -k1,10724:23227765,16953301:218071 -k1,10724:25423713,16953301:218071 -k1,10724:26660869,16953301:218071 -k1,10724:28616955,16953301:218071 -k1,10724:29494318,16953301:218071 -k1,10724:31966991,16953301:0 -) -(1,10725:7246811,17794789:24720180,513147,102891 -k1,10724:9628998,17794789:230640 -k1,10724:11295532,17794789:230640 -k1,10724:12394524,17794789:230640 -k1,10724:14155430,17794789:230640 -k1,10724:14741930,17794789:230640 -k1,10724:17484565,17794789:230640 -k1,10724:19626890,17794789:230640 -k1,10724:20929699,17794789:230640 -k1,10724:22028691,17794789:230640 -k1,10724:23734546,17794789:230640 -k1,10724:25178257,17794789:230640 -k1,10724:28091941,17794789:230640 -k1,10724:29008743,17794789:230640 -k1,10724:31307699,17794789:230640 -k1,10724:31966991,17794789:0 -) -(1,10725:7246811,18636277:24720180,513147,134348 -k1,10724:11404732,18636277:182507 -k1,10724:14664153,18636277:182506 -k1,10724:16468676,18636277:182507 -k1,10724:17398949,18636277:182507 -k1,10724:20375255,18636277:182506 -k1,10724:21173800,18636277:182507 -k1,10724:23765409,18636277:182506 -k1,10724:25772438,18636277:182507 -k1,10724:26908494,18636277:182507 -k1,10724:28223462,18636277:182506 -k1,10724:29498454,18636277:182507 -(1,10724:29498454,18636277:0,435480,115847 -r1,10772:31966991,18636277:2468537,551327,115847 -k1,10724:29498454,18636277:-2468537 -) -(1,10724:29498454,18636277:2468537,435480,115847 -k1,10724:29498454,18636277:3277 -h1,10724:31963714,18636277:0,411205,112570 -) -k1,10724:31966991,18636277:0 -) -(1,10725:7246811,19477765:24720180,513147,126483 -k1,10724:8618611,19477765:180355 -k1,10724:9485128,19477765:180355 -k1,10724:11059434,19477765:180355 -k1,10724:12371596,19477765:180355 -k1,10724:14674662,19477765:180355 -k1,10724:16798814,19477765:180355 -k1,10724:17847521,19477765:180355 -k1,10724:19558141,19477765:180354 -k1,10724:20389924,19477765:180355 -k1,10724:22943338,19477765:180355 -k1,10724:23581790,19477765:180355 -k1,10724:24378183,19477765:180355 -k1,10724:27652493,19477765:180355 -k1,10724:29819900,19477765:180355 -k1,10724:30947906,19477765:180355 -k1,10724:31966991,19477765:0 -) -(1,10725:7246811,20319253:24720180,473825,134348 -k1,10725:31966991,20319253:20900742 -g1,10725:31966991,20319253 -) -v1,10727:7246811,21509719:0,393216,0 -(1,10733:7246811,23132006:24720180,2015503,196608 -g1,10733:7246811,23132006 -g1,10733:7246811,23132006 -g1,10733:7050203,23132006 -(1,10733:7050203,23132006:0,2015503,196608 -r1,10772:32163599,23132006:25113396,2212111,196608 -k1,10733:7050203,23132006:-25113396 -) -(1,10733:7050203,23132006:25113396,2015503,196608 -[1,10733:7246811,23132006:24720180,1818895,0 -(1,10729:7246811,21723629:24720180,410518,82312 -(1,10728:7246811,21723629:0,0,0 -g1,10728:7246811,21723629 -g1,10728:7246811,21723629 -g1,10728:6919131,21723629 -(1,10728:6919131,21723629:0,0,0 -) -g1,10728:7246811,21723629 -) -k1,10729:7246811,21723629:0 -g1,10729:10408268,21723629 -g1,10729:11356706,21723629 -g1,10729:15466600,21723629 -g1,10729:16731183,21723629 -h1,10729:17047329,21723629:0,0,0 -k1,10729:31966991,21723629:14919662 -g1,10729:31966991,21723629 -) -(1,10730:7246811,22389807:24720180,404226,76021 -h1,10730:7246811,22389807:0,0,0 -g1,10730:7562957,22389807 -g1,10730:7879103,22389807 -g1,10730:8827540,22389807 -g1,10730:9459832,22389807 -k1,10730:9459832,22389807:0 -h1,10730:11988998,22389807:0,0,0 -k1,10730:31966990,22389807:19977992 -g1,10730:31966990,22389807 -) -(1,10731:7246811,23055985:24720180,404226,76021 -h1,10731:7246811,23055985:0,0,0 -h1,10731:7562957,23055985:0,0,0 -k1,10731:31966991,23055985:24404034 -g1,10731:31966991,23055985 -) -] -) -g1,10733:31966991,23132006 -g1,10733:7246811,23132006 -g1,10733:7246811,23132006 -g1,10733:31966991,23132006 -g1,10733:31966991,23132006 -) -h1,10733:7246811,23328614:0,0,0 -(1,10737:7246811,24694390:24720180,505283,126483 -h1,10736:7246811,24694390:983040,0,0 -g1,10736:9382629,24694390 -g1,10736:10686140,24694390 -g1,10736:12319297,24694390 -g1,10736:13611011,24694390 -g1,10736:14907968,24694390 -g1,10736:16390392,24694390 -g1,10736:19336235,24694390 -g1,10736:20151502,24694390 -g1,10736:20706591,24694390 -k1,10737:31966991,24694390:8425313 -g1,10737:31966991,24694390 -) -v1,10739:7246811,25884856:0,393216,0 -(1,10746:7246811,26884480:24720180,1392840,196608 -g1,10746:7246811,26884480 -g1,10746:7246811,26884480 -g1,10746:7050203,26884480 -(1,10746:7050203,26884480:0,1392840,196608 -r1,10772:32163599,26884480:25113396,1589448,196608 -k1,10746:7050203,26884480:-25113396 -) -(1,10746:7050203,26884480:25113396,1392840,196608 -[1,10746:7246811,26884480:24720180,1196232,0 -(1,10741:7246811,26076745:24720180,388497,9436 -(1,10740:7246811,26076745:0,0,0 -g1,10740:7246811,26076745 -g1,10740:7246811,26076745 -g1,10740:6919131,26076745 -(1,10740:6919131,26076745:0,0,0 -) -g1,10740:7246811,26076745 -) -g1,10741:9143685,26076745 -g1,10741:11672851,26076745 -h1,10741:12937434,26076745:0,0,0 -k1,10741:31966990,26076745:19029556 -g1,10741:31966990,26076745 -) -(1,10745:7246811,26808459:24720180,404226,76021 -(1,10743:7246811,26808459:0,0,0 -g1,10743:7246811,26808459 -g1,10743:7246811,26808459 -g1,10743:6919131,26808459 -(1,10743:6919131,26808459:0,0,0 -) -g1,10743:7246811,26808459 -) -g1,10745:8195248,26808459 -g1,10745:9459831,26808459 -g1,10745:11040560,26808459 -g1,10745:11356706,26808459 -g1,10745:12621289,26808459 -g1,10745:12937435,26808459 -g1,10745:14202018,26808459 -g1,10745:14518164,26808459 -g1,10745:15782747,26808459 -g1,10745:16098893,26808459 -g1,10745:17363476,26808459 -g1,10745:17679622,26808459 -h1,10745:18628059,26808459:0,0,0 -k1,10745:31966991,26808459:13338932 -g1,10745:31966991,26808459 -) -] -) -g1,10746:31966991,26884480 -g1,10746:7246811,26884480 -g1,10746:7246811,26884480 -g1,10746:31966991,26884480 -g1,10746:31966991,26884480 -) -h1,10746:7246811,27081088:0,0,0 -(1,10750:7246811,28446864:24720180,513147,126483 -h1,10749:7246811,28446864:983040,0,0 -k1,10749:9302524,28446864:243643 -k1,10749:11128205,28446864:243642 -k1,10749:12390933,28446864:243643 -k1,10749:15890405,28446864:243643 -k1,10749:17002399,28446864:243642 -k1,10749:19619101,28446864:243643 -k1,10749:20881829,28446864:243643 -k1,10749:22863487,28446864:243643 -k1,10749:23766421,28446864:243642 -k1,10749:25107792,28446864:243643 -k1,10749:26634630,28446864:243643 -k1,10749:29624886,28446864:243642 -k1,10749:30484567,28446864:243643 -k1,10749:31966991,28446864:0 -) -(1,10750:7246811,29288352:24720180,505283,126483 -g1,10749:10685485,29288352 -g1,10749:11753066,29288352 -g1,10749:13427510,29288352 -g1,10749:15371307,29288352 -g1,10749:16589621,29288352 -g1,10749:18982995,29288352 -k1,10750:31966991,29288352:11072311 -g1,10750:31966991,29288352 -) -v1,10752:7246811,30478818:0,393216,0 -(1,10761:7246811,32832819:24720180,2747217,196608 -g1,10761:7246811,32832819 -g1,10761:7246811,32832819 -g1,10761:7050203,32832819 -(1,10761:7050203,32832819:0,2747217,196608 -r1,10772:32163599,32832819:25113396,2943825,196608 -k1,10761:7050203,32832819:-25113396 -) -(1,10761:7050203,32832819:25113396,2747217,196608 -[1,10761:7246811,32832819:24720180,2550609,0 -(1,10754:7246811,30692728:24720180,410518,9436 -(1,10753:7246811,30692728:0,0,0 -g1,10753:7246811,30692728 -g1,10753:7246811,30692728 -g1,10753:6919131,30692728 -(1,10753:6919131,30692728:0,0,0 -) -g1,10753:7246811,30692728 -) -k1,10754:7246811,30692728:0 -h1,10754:10092123,30692728:0,0,0 -k1,10754:31966991,30692728:21874868 -g1,10754:31966991,30692728 -) -(1,10760:7246811,31424442:24720180,410518,82312 -(1,10756:7246811,31424442:0,0,0 -g1,10756:7246811,31424442 -g1,10756:7246811,31424442 -g1,10756:6919131,31424442 -(1,10756:6919131,31424442:0,0,0 -) -g1,10756:7246811,31424442 -) -g1,10760:8195248,31424442 -g1,10760:12305142,31424442 -g1,10760:13569725,31424442 -h1,10760:13885871,31424442:0,0,0 -k1,10760:31966991,31424442:18081120 -g1,10760:31966991,31424442 -) -(1,10760:7246811,32090620:24720180,404226,76021 -h1,10760:7246811,32090620:0,0,0 -g1,10760:8195248,32090620 -g1,10760:8511394,32090620 -g1,10760:8827540,32090620 -g1,10760:9775977,32090620 -g1,10760:10408269,32090620 -h1,10760:12937434,32090620:0,0,0 -k1,10760:31966990,32090620:19029556 -g1,10760:31966990,32090620 -) -(1,10760:7246811,32756798:24720180,404226,76021 -h1,10760:7246811,32756798:0,0,0 -g1,10760:8195248,32756798 -h1,10760:8511394,32756798:0,0,0 -k1,10760:31966990,32756798:23455596 -g1,10760:31966990,32756798 -) -] -) -g1,10761:31966991,32832819 -g1,10761:7246811,32832819 -g1,10761:7246811,32832819 -g1,10761:31966991,32832819 -g1,10761:31966991,32832819 -) -h1,10761:7246811,33029427:0,0,0 -] -) -] -r1,10772:32583029,34143539:26214,19783435,0 -) -] -) -) -g1,10764:32583029,33553715 -) -h1,10764:6630773,34169753:0,0,0 -(1,10766:6630773,36977321:25952256,32768,229376 -(1,10766:6630773,36977321:0,32768,229376 -(1,10766:6630773,36977321:5505024,32768,229376 -r1,10772:12135797,36977321:5505024,262144,229376 -) -k1,10766:6630773,36977321:-5505024 -) -(1,10766:6630773,36977321:25952256,32768,0 -r1,10772:32583029,36977321:25952256,32768,0 -) -) -(1,10766:6630773,38581649:25952256,606339,161218 -(1,10766:6630773,38581649:1974731,575668,14155 -g1,10766:6630773,38581649 -g1,10766:8605504,38581649 -) -g1,10766:12064232,38581649 -g1,10766:15314556,38581649 -g1,10766:17024259,38581649 -k1,10766:32583029,38581649:12125994 -g1,10766:32583029,38581649 -) -(1,10770:6630773,39816353:25952256,513147,134348 -k1,10769:8138806,39816353:147506 -k1,10769:10519125,39816353:147507 -k1,10769:11658191,39816353:147506 -k1,10769:14650616,39816353:147507 -k1,10769:17179700,39816353:147506 -k1,10769:19337195,39816353:147506 -k1,10769:22395156,39816353:147507 -k1,10769:24494324,39816353:147506 -k1,10769:26084277,39816353:147506 -k1,10769:26847822,39816353:147507 -k1,10769:28376172,39816353:147506 -k1,10769:30858727,39816353:147507 -k1,10769:31835263,39816353:147506 -k1,10769:32583029,39816353:0 -) -(1,10770:6630773,40657841:25952256,513147,134348 -k1,10769:8599222,40657841:205531 -k1,10769:10781974,40657841:205531 -k1,10769:15411185,40657841:205531 -k1,10769:15972576,40657841:205531 -k1,10769:17461302,40657841:205531 -k1,10769:19222002,40657841:205531 -k1,10769:22035212,40657841:205532 -k1,10769:23307014,40657841:205531 -k1,10769:24888146,40657841:205531 -k1,10769:27697422,40657841:205531 -k1,10769:28258813,40657841:205531 -k1,10769:30019513,40657841:205531 -k1,10769:31297213,40657841:205531 -k1,10769:32583029,40657841:0 -) -(1,10770:6630773,41499329:25952256,513147,134348 -k1,10769:7244607,41499329:257974 -k1,10769:8437123,41499329:257973 -k1,10769:9354389,41499329:257974 -k1,10769:13165724,41499329:257973 -k1,10769:16449495,41499329:257974 -k1,10769:17390353,41499329:257973 -k1,10769:20329405,41499329:257974 -k1,10769:21871884,41499329:257973 -k1,10769:25563289,41499329:257974 -k1,10769:29225858,41499329:257974 -k1,10769:30293201,41499329:257973 -k1,10769:32583029,41499329:0 -) -(1,10770:6630773,42340817:25952256,513147,134348 -k1,10769:9999324,42340817:241828 -k1,10769:10892579,42340817:241827 -k1,10769:12153492,42340817:241828 -k1,10769:13678515,42340817:241828 -k1,10769:15649183,42340817:241828 -k1,10769:20129223,42340817:241827 -k1,10769:21141754,42340817:241828 -k1,10769:26038604,42340817:241828 -k1,10769:26939724,42340817:241828 -k1,10769:28511932,42340817:241827 -k1,10769:30986572,42340817:241828 -k1,10769:32583029,42340817:0 -) -(1,10770:6630773,43182305:25952256,513147,126483 -k1,10769:7363728,43182305:201458 -k1,10769:10774483,43182305:201457 -k1,10769:12442637,43182305:201458 -k1,10769:13110055,43182305:201457 -k1,10769:14687114,43182305:201458 -k1,10769:16242546,43182305:201458 -k1,10769:20329633,43182305:201457 -k1,10769:20886951,43182305:201458 -k1,10769:22469252,43182305:201457 -k1,10769:23803172,43182305:201458 -k1,10769:25965467,43182305:201458 -k1,10769:26522784,43182305:201457 -k1,10769:28007437,43182305:201458 -k1,10769:30663217,43182305:201457 -k1,10769:31812326,43182305:201458 -k1,10769:32583029,43182305:0 -) -(1,10770:6630773,44023793:25952256,505283,134348 -g1,10769:9321025,44023793 -g1,10769:11075423,44023793 -g1,10769:13284641,44023793 -g1,10769:13839730,44023793 -k1,10770:32583029,44023793:16738553 -g1,10770:32583029,44023793 -) -(1,10772:6630773,44865281:25952256,513147,134348 -h1,10771:6630773,44865281:983040,0,0 -k1,10771:10201320,44865281:232798 -k1,10771:11425678,44865281:232798 -k1,10771:15751200,44865281:232799 -k1,10771:17056167,44865281:232798 -k1,10771:21208018,44865281:232798 -k1,10771:24753006,44865281:232798 -k1,10771:26004890,44865281:232799 -k1,10771:28395133,44865281:232798 -k1,10771:31923737,44865281:232798 -k1,10771:32583029,44865281:0 -) -(1,10772:6630773,45706769:25952256,513147,134348 -k1,10771:9149372,45706769:201901 -k1,10771:10034158,45706769:201901 -k1,10771:12459040,45706769:201901 -k1,10771:13320234,45706769:201902 -k1,10771:15724145,45706769:201901 -k1,10771:18389544,45706769:201901 -k1,10771:19219280,45706769:201901 -k1,10771:20624422,45706769:201901 -k1,10771:22770121,45706769:201901 -k1,10771:25204835,45706769:201902 -k1,10771:26398296,45706769:201901 -k1,10771:30519250,45706769:201901 -k1,10771:31380443,45706769:201901 -k1,10772:32583029,45706769:0 -) -] -(1,10772:32583029,45706769:0,0,0 -g1,10772:32583029,45706769 -) -) -] -(1,10772:6630773,47279633:25952256,0,0 -h1,10772:6630773,47279633:25952256,0,0 -) -] -(1,10772:4262630,4025873:0,0,0 -[1,10772:-473656,4025873:0,0,0 -(1,10772:-473656,-710413:0,0,0 -(1,10772:-473656,-710413:0,0,0 -g1,10772:-473656,-710413 -) -g1,10772:-473656,-710413 -) -] -) -] -!21890 -}202 -Input:1523:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1524:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1525:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1526:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1527:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1528:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!564 -{203 -[1,10828:4262630,47279633:28320399,43253760,0 -(1,10828:4262630,4025873:0,0,0 -[1,10828:-473656,4025873:0,0,0 -(1,10828:-473656,-710413:0,0,0 -(1,10828:-473656,-644877:0,0,0 -k1,10828:-473656,-644877:-65536 -) -(1,10828:-473656,4736287:0,0,0 -k1,10828:-473656,4736287:5209943 -) -g1,10828:-473656,-710413 -) -] -) -[1,10828:6630773,47279633:25952256,43253760,0 -[1,10828:6630773,4812305:25952256,786432,0 -(1,10828:6630773,4812305:25952256,505283,134348 -(1,10828:6630773,4812305:25952256,505283,134348 -g1,10828:3078558,4812305 -[1,10828:3078558,4812305:0,0,0 -(1,10828:3078558,2439708:0,1703936,0 -k1,10828:1358238,2439708:-1720320 -(1,10278:1358238,2439708:1720320,1703936,0 -(1,10278:1358238,2439708:1179648,16384,0 -r1,10828:2537886,2439708:1179648,16384,0 -) -g1,10278:3062174,2439708 -(1,10278:3062174,2439708:16384,1703936,0 -[1,10278:3062174,2439708:25952256,1703936,0 -(1,10278:3062174,1915420:25952256,1179648,0 -(1,10278:3062174,1915420:16384,1179648,0 -r1,10828:3078558,1915420:16384,1179648,0 -) -k1,10278:29014430,1915420:25935872 -g1,10278:29014430,1915420 -) -] -) -) -) -] -[1,10828:3078558,4812305:0,0,0 -(1,10828:3078558,2439708:0,1703936,0 -g1,10828:29030814,2439708 -g1,10828:36135244,2439708 -(1,10278:36135244,2439708:1720320,1703936,0 -(1,10278:36135244,2439708:16384,1703936,0 -[1,10278:36135244,2439708:25952256,1703936,0 -(1,10278:36135244,1915420:25952256,1179648,0 -(1,10278:36135244,1915420:16384,1179648,0 -r1,10828:36151628,1915420:16384,1179648,0 -) -k1,10278:62087500,1915420:25935872 -g1,10278:62087500,1915420 -) -] -) -g1,10278:36675916,2439708 -(1,10278:36675916,2439708:1179648,16384,0 -r1,10828:37855564,2439708:1179648,16384,0 -) -) -k1,10828:3078556,2439708:-34777008 -) -] -[1,10828:3078558,4812305:0,0,0 -(1,10828:3078558,49800853:0,16384,2228224 -k1,10828:1358238,49800853:-1720320 -(1,10278:1358238,49800853:1720320,16384,2228224 -(1,10278:1358238,49800853:1179648,16384,0 -r1,10828:2537886,49800853:1179648,16384,0 -) -g1,10278:3062174,49800853 -(1,10278:3062174,52029077:16384,1703936,0 -[1,10278:3062174,52029077:25952256,1703936,0 -(1,10278:3062174,51504789:25952256,1179648,0 -(1,10278:3062174,51504789:16384,1179648,0 -r1,10828:3078558,51504789:16384,1179648,0 -) -k1,10278:29014430,51504789:25935872 -g1,10278:29014430,51504789 -) -] -) -) -) -] -[1,10828:3078558,4812305:0,0,0 -(1,10828:3078558,49800853:0,16384,2228224 -g1,10828:29030814,49800853 -g1,10828:36135244,49800853 -(1,10278:36135244,49800853:1720320,16384,2228224 -(1,10278:36135244,52029077:16384,1703936,0 -[1,10278:36135244,52029077:25952256,1703936,0 -(1,10278:36135244,51504789:25952256,1179648,0 -(1,10278:36135244,51504789:16384,1179648,0 -r1,10828:36151628,51504789:16384,1179648,0 -) -k1,10278:62087500,51504789:25935872 -g1,10278:62087500,51504789 -) -] -) -g1,10278:36675916,49800853 -(1,10278:36675916,49800853:1179648,16384,0 -r1,10828:37855564,49800853:1179648,16384,0 -) -) -k1,10828:3078556,49800853:-34777008 -) -] -g1,10828:6630773,4812305 -k1,10828:20781963,4812305:12955813 -g1,10828:22168704,4812305 -g1,10828:22817510,4812305 -g1,10828:26131665,4812305 -g1,10828:28614824,4812305 -g1,10828:30094627,4812305 -) -) -] -[1,10828:6630773,45706769:25952256,40108032,0 -(1,10828:6630773,45706769:25952256,40108032,0 -(1,10828:6630773,45706769:0,0,0 -g1,10828:6630773,45706769 -) -[1,10828:6630773,45706769:25952256,40108032,0 -(1,10772:6630773,6254097:25952256,505283,134348 -k1,10771:8552803,6254097:178117 -k1,10771:10111109,6254097:178118 -k1,10771:11280786,6254097:178117 -k1,10771:12605128,6254097:178117 -k1,10771:15352912,6254097:178117 -k1,10771:16147068,6254097:178118 -k1,10771:18616979,6254097:178117 -k1,10771:21811063,6254097:178117 -k1,10771:23622994,6254097:178118 -k1,10771:24669463,6254097:178117 -k1,10771:26871332,6254097:178117 -k1,10771:28443400,6254097:178117 -k1,10771:30854330,6254097:178118 -k1,10771:31563944,6254097:178117 -k1,10771:32583029,6254097:0 -) -(1,10772:6630773,7095585:25952256,513147,134348 -k1,10771:10073380,7095585:139592 -k1,10771:10872263,7095585:139591 -k1,10771:13615600,7095585:139592 -k1,10771:16426439,7095585:139592 -k1,10771:19230069,7095585:139591 -k1,10771:20028953,7095585:139592 -k1,10771:23194341,7095585:139591 -k1,10771:24223912,7095585:139592 -k1,10771:27251676,7095585:139592 -k1,10771:29770879,7095585:139591 -k1,10771:30929556,7095585:139592 -k1,10771:32583029,7095585:0 -) -(1,10772:6630773,7937073:25952256,513147,134348 -k1,10771:8550373,7937073:181585 -k1,10771:9804127,7937073:181585 -k1,10771:12455764,7937073:181585 -k1,10771:13288777,7937073:181585 -k1,10771:15881432,7937073:181585 -k1,10771:16872387,7937073:181585 -k1,10771:19343799,7937073:181584 -k1,10771:22652107,7937073:181585 -k1,10771:23485120,7937073:181585 -k1,10771:26429048,7937073:181585 -k1,10771:29017115,7937073:181585 -k1,10771:30152249,7937073:181585 -k1,10771:31809049,7937073:181585 -k1,10772:32583029,7937073:0 -) -(1,10772:6630773,8778561:25952256,513147,134348 -k1,10771:8620249,8778561:216072 -k1,10771:10346271,8778561:216072 -k1,10771:12297736,8778561:216072 -k1,10771:15298433,8778561:216072 -k1,10771:16908456,8778561:216072 -k1,10771:19795775,8778561:216072 -k1,10771:24587571,8778561:216072 -k1,10771:28428439,8778561:216072 -k1,10771:29663596,8778561:216072 -k1,10771:31635378,8778561:216072 -k1,10771:32583029,8778561:0 -) -(1,10772:6630773,9620049:25952256,505283,126483 -g1,10771:9491419,9620049 -(1,10771:9491419,9620049:0,452978,115847 -r1,10828:11608244,9620049:2116825,568825,115847 -k1,10771:9491419,9620049:-2116825 -) -(1,10771:9491419,9620049:2116825,452978,115847 -k1,10771:9491419,9620049:3277 -h1,10771:11604967,9620049:0,411205,112570 -) -g1,10771:11807473,9620049 -g1,10771:13198147,9620049 -(1,10771:13198147,9620049:0,452978,115847 -r1,10828:16370107,9620049:3171960,568825,115847 -k1,10771:13198147,9620049:-3171960 -) -(1,10771:13198147,9620049:3171960,452978,115847 -k1,10771:13198147,9620049:3277 -h1,10771:16366830,9620049:0,411205,112570 -) -k1,10772:32583029,9620049:16039252 -g1,10772:32583029,9620049 -) -(1,10774:6630773,10461537:25952256,513147,134348 -h1,10773:6630773,10461537:983040,0,0 -g1,10773:8766591,10461537 -g1,10773:10454143,10461537 -g1,10773:12047323,10461537 -g1,10773:12602412,10461537 -g1,10773:15895596,10461537 -g1,10773:17662446,10461537 -g1,10773:18221468,10461537 -g1,10773:20454934,10461537 -g1,10773:22708717,10461537 -g1,10773:24675452,10461537 -g1,10773:26372834,10461537 -k1,10774:32583029,10461537:5032513 -g1,10774:32583029,10461537 -) -(1,10780:7202902,11827313:24807998,513147,134348 -(1,10774:7202902,11827313:983040,0,0 -g1,10774:8185942,11827313 -g1,10774:6875222,11827313 -g1,10774:6547542,11827313 -(1,10774:6547542,11827313:1310720,0,0 -k1,10774:7858262,11827313:1310720 -) -g1,10774:8185942,11827313 -) -k1,10775:9703458,11827313:320829 -k1,10775:11349424,11827313:320828 -k1,10775:12329545,11827313:320829 -k1,10775:17494139,11827313:320828 -k1,10775:22167214,11827313:320829 -k1,10775:23019539,11827313:320828 -k1,10775:25638716,11827313:320829 -k1,10775:27031713,11827313:320828 -k1,10775:29497535,11827313:320829 -k1,10775:30174224,11827313:320829 -k1,10775:31351608,11827313:320828 -k1,10775:32010900,11827313:0 -) -(1,10780:7202902,12668801:24807998,513147,134348 -k1,10775:9691819,12668801:199744 -k1,10776:11883858,12668801:199745 -k1,10776:13102687,12668801:199744 -k1,10776:15185281,12668801:199745 -k1,10776:17220688,12668801:199744 -k1,10776:17886394,12668801:199745 -k1,10776:19256611,12668801:199744 -k1,10776:20733652,12668801:199744 -k1,10776:21289257,12668801:199745 -k1,10776:23381681,12668801:199744 -k1,10776:24240718,12668801:199745 -k1,10776:26576280,12668801:199744 -k1,10776:28793223,12668801:199745 -k1,10776:29940618,12668801:199744 -k1,10776:32010900,12668801:0 -) -(1,10780:7202902,13510289:24807998,513147,126483 -k1,10776:8820931,13510289:184101 -k1,10777:10175506,13510289:184102 -k1,10777:12315857,13510289:184101 -k1,10777:14570897,13510289:184102 -k1,10777:16206620,13510289:184101 -k1,10777:17042149,13510289:184101 -k1,10777:18318736,13510289:184102 -k1,10777:19312207,13510289:184101 -k1,10777:21778928,13510289:184102 -k1,10777:25713654,13510289:184101 -k1,10777:26845407,13510289:184102 -k1,10777:28314014,13510289:184101 -k1,10777:32010900,13510289:0 -) -(1,10780:7202902,14351777:24807998,513147,134348 -k1,10777:8549835,14351777:151556 -k1,10778:11407372,14351777:151555 -k1,10778:12017025,14351777:151556 -k1,10778:12700078,14351777:151556 -k1,10778:15481593,14351777:151555 -k1,10778:16580800,14351777:151556 -k1,10778:17946690,14351777:151508 -k1,10778:20388074,14351777:151556 -k1,10778:21191058,14351777:151556 -k1,10778:22321067,14351777:151556 -k1,10778:24957747,14351777:151555 -k1,10778:29426160,14351777:151556 -k1,10780:32010900,14351777:0 -) -(1,10780:7202902,15193265:24807998,513147,134348 -g1,10778:8392380,15193265 -g1,10778:9400979,15193265 -g1,10779:11148824,15193265 -g1,10779:12903222,15193265 -g1,10779:13761743,15193265 -g1,10779:15920498,15193265 -g1,10779:17499915,15193265 -k1,10780:32010900,15193265:13345755 -g1,10780:32010900,15193265 -) -(1,10783:6630773,16559041:25952256,513147,134348 -h1,10782:6630773,16559041:983040,0,0 -k1,10782:8729639,16559041:162277 -k1,10782:9939181,16559041:162277 -k1,10782:11385964,16559041:162277 -k1,10782:13945548,16559041:162277 -k1,10782:16892450,16559041:162277 -k1,10782:18046287,16559041:162277 -k1,10782:21620369,16559041:162278 -k1,10782:23637315,16559041:162277 -k1,10782:24608962,16559041:162277 -k1,10782:25790324,16559041:162277 -k1,10782:27507770,16559041:162277 -k1,10782:28329339,16559041:162277 -k1,10782:29510701,16559041:162277 -k1,10782:32583029,16559041:0 -) -(1,10783:6630773,17400529:25952256,513147,134348 -k1,10782:9271975,17400529:262245 -k1,10782:11088734,17400529:262245 -k1,10782:14031402,17400529:262245 -k1,10782:15687597,17400529:262244 -k1,10782:16968927,17400529:262245 -k1,10782:18902995,17400529:262245 -k1,10782:20551326,17400529:262245 -k1,10782:22965773,17400529:262245 -k1,10782:23895174,17400529:262245 -k1,10782:24745932,17400529:262245 -k1,10782:27020131,17400529:262244 -k1,10782:29540091,17400529:262245 -k1,10782:31298523,17400529:262245 -k1,10782:32583029,17400529:0 -) -(1,10783:6630773,18242017:25952256,513147,134348 -k1,10782:9925804,18242017:269234 -k1,10782:10881199,18242017:269233 -k1,10782:13989453,18242017:269234 -k1,10782:15068057,18242017:269234 -k1,10782:18099633,18242017:269233 -k1,10782:20085255,18242017:269234 -k1,10782:21013780,18242017:269233 -k1,10782:23746512,18242017:269234 -k1,10782:25258309,18242017:269234 -k1,10782:28502221,18242017:269233 -k1,10782:29962900,18242017:269234 -k1,10782:32583029,18242017:0 -) -(1,10783:6630773,19083505:25952256,426639,7863 -k1,10783:32583029,19083505:23470408 -g1,10783:32583029,19083505 -) -(1,10785:6630773,19924993:25952256,513147,134348 -h1,10784:6630773,19924993:983040,0,0 -k1,10784:8288183,19924993:259527 -k1,10784:9648775,19924993:259587 -k1,10784:11492368,19924993:259588 -k1,10784:14278368,19924993:259587 -k1,10784:15485607,19924993:259588 -k1,10784:16764279,19924993:259587 -k1,10784:21867633,19924993:259588 -k1,10784:26479466,19924993:259587 -k1,10784:29949663,19924993:259588 -k1,10784:31281420,19924993:259588 -k1,10784:32227169,19924993:259587 -k1,10784:32583029,19924993:0 -) -(1,10785:6630773,20766481:25952256,505283,126483 -k1,10784:9052986,20766481:176294 -k1,10784:10513786,20766481:176294 -k1,10784:11791084,20766481:176293 -k1,10784:14396798,20766481:176294 -k1,10784:15960489,20766481:176294 -k1,10784:17155868,20766481:176294 -k1,10784:19188797,20766481:176294 -k1,10784:22275544,20766481:176293 -k1,10784:22866658,20766481:176271 -k1,10784:25899666,20766481:176294 -k1,10784:28747207,20766481:176294 -k1,10784:32583029,20766481:0 -) -(1,10785:6630773,21607969:25952256,513147,126483 -k1,10784:8036052,21607969:208592 -k1,10784:9443297,21607969:208591 -k1,10784:11253589,21607969:208592 -k1,10784:13962379,21607969:208591 -k1,10784:17155481,21607969:208592 -k1,10784:17895569,21607969:208591 -k1,10784:19971937,21607969:208592 -k1,10784:21107863,21607969:208592 -k1,10784:22507899,21607969:208591 -k1,10784:23072351,21607969:208592 -k1,10784:24931139,21607969:208591 -k1,10784:27128093,21607969:208592 -k1,10784:28528129,21607969:208591 -k1,10784:31593435,21607969:208592 -k1,10785:32583029,21607969:0 -) -(1,10785:6630773,22449457:25952256,513147,134348 -k1,10784:9198286,22449457:185935 -k1,10784:10778172,22449457:185935 -k1,10784:13050773,22449457:185935 -k1,10784:17486062,22449457:185935 -k1,10784:18203494,22449457:185935 -k1,10784:20257205,22449457:185935 -k1,10784:21370474,22449457:185935 -k1,10784:22753096,22449457:185935 -k1,10784:25272113,22449457:185935 -k1,10784:26783186,22449457:185935 -k1,10784:27500618,22449457:185935 -k1,10784:28971059,22449457:185935 -k1,10784:29512854,22449457:185935 -k1,10784:31436804,22449457:185935 -k1,10784:32583029,22449457:0 -) -(1,10785:6630773,23290945:25952256,513147,134348 -k1,10784:8679777,23290945:171398 -k1,10784:9955456,23290945:171397 -k1,10784:10874620,23290945:171398 -k1,10784:12559244,23290945:171398 -k1,10784:13416803,23290945:171397 -k1,10784:13944061,23290945:171398 -k1,10784:16422326,23290945:171398 -k1,10784:18505408,23290945:171397 -k1,10784:19868251,23290945:171398 -k1,10784:21324155,23290945:171398 -k1,10784:22514637,23290945:171397 -k1,10784:25083342,23290945:171398 -k1,10784:27588477,23290945:171398 -k1,10784:28427030,23290945:171397 -(1,10784:28427030,23290945:0,452978,115847 -r1,10828:30543855,23290945:2116825,568825,115847 -k1,10784:28427030,23290945:-2116825 -) -(1,10784:28427030,23290945:2116825,452978,115847 -k1,10784:28427030,23290945:3277 -h1,10784:30540578,23290945:0,411205,112570 -) -k1,10784:30715253,23290945:171398 -k1,10784:32583029,23290945:0 -) -(1,10785:6630773,24132433:25952256,513147,134348 -k1,10784:9566130,24132433:233308 -k1,10784:10608808,24132433:233308 -k1,10784:11861201,24132433:233308 -k1,10784:15497138,24132433:233308 -k1,10784:16389738,24132433:233308 -k1,10784:17642131,24132433:233308 -k1,10784:19148805,24132433:233309 -k1,10784:21173867,24132433:233308 -k1,10784:24837985,24132433:233308 -k1,10784:26914165,24132433:233308 -k1,10784:28015825,24132433:233308 -k1,10784:30017950,24132433:233308 -k1,10784:31298523,24132433:233308 -k1,10784:32583029,24132433:0 -) -(1,10785:6630773,24973921:25952256,513147,134348 -k1,10784:7875792,24973921:225934 -k1,10784:10439396,24973921:225934 -k1,10784:11332487,24973921:225935 -(1,10784:11332487,24973921:0,452978,115847 -r1,10828:13449312,24973921:2116825,568825,115847 -k1,10784:11332487,24973921:-2116825 -) -(1,10784:11332487,24973921:2116825,452978,115847 -k1,10784:11332487,24973921:3277 -h1,10784:13446035,24973921:0,411205,112570 -) -k1,10784:13675246,24973921:225934 -k1,10784:17312984,24973921:225934 -k1,10784:18558003,24973921:225934 -k1,10784:21219255,24973921:225934 -k1,10784:22544883,24973921:225934 -k1,10784:23422246,24973921:225935 -k1,10784:26410523,24973921:225934 -k1,10784:29033764,24973921:225934 -k1,10784:31923737,24973921:225934 -k1,10785:32583029,24973921:0 -) -(1,10785:6630773,25815409:25952256,513147,134348 -(1,10784:6630773,25815409:0,452978,115847 -r1,10828:8747598,25815409:2116825,568825,115847 -k1,10784:6630773,25815409:-2116825 -) -(1,10784:6630773,25815409:2116825,452978,115847 -k1,10784:6630773,25815409:3277 -h1,10784:8744321,25815409:0,411205,112570 -) -k1,10784:8926183,25815409:178585 -k1,10784:10959436,25815409:178584 -k1,10784:11947391,25815409:178585 -k1,10784:13145060,25815409:178584 -k1,10784:14878814,25815409:178585 -k1,10784:15716690,25815409:178584 -k1,10784:16914360,25815409:178585 -k1,10784:20495574,25815409:178585 -k1,10784:23053115,25815409:178584 -k1,10784:23985364,25815409:178585 -k1,10784:26470815,25815409:178584 -k1,10784:29675197,25815409:178585 -k1,10784:32583029,25815409:0 -) -(1,10785:6630773,26656897:25952256,513147,134348 -k1,10784:7681163,26656897:288862 -k1,10784:10409276,26656897:288863 -k1,10784:12552807,26656897:288862 -k1,10784:14217270,26656897:288862 -k1,10784:15315503,26656897:288863 -k1,10784:16623450,26656897:288862 -k1,10784:19984640,26656897:288862 -k1,10784:22478789,26656897:288862 -k1,10784:23419080,26656897:288863 -k1,10784:24063802,26656897:288862 -k1,10784:26225683,26656897:288862 -k1,10784:29968949,26656897:288863 -k1,10784:31276896,26656897:288862 -k1,10784:32583029,26656897:0 -) -(1,10785:6630773,27498385:25952256,513147,134348 -k1,10784:8235094,27498385:273940 -k1,10784:9262699,27498385:273941 -k1,10784:11843506,27498385:273940 -k1,10784:15143243,27498385:273940 -k1,10784:16521466,27498385:273941 -k1,10784:19529568,27498385:273940 -k1,10784:20822593,27498385:273940 -k1,10784:22196228,27498385:273941 -k1,10784:24324837,27498385:273940 -k1,10784:25408147,27498385:273940 -k1,10784:26701173,27498385:273941 -k1,10784:30377742,27498385:273940 -k1,10784:32583029,27498385:0 -) -(1,10785:6630773,28339873:25952256,513147,134348 -k1,10784:7539801,28339873:257600 -k1,10784:9447598,28339873:257600 -k1,10784:11147646,28339873:257601 -k1,10784:12561956,28339873:257600 -k1,10784:16100288,28339873:257600 -k1,10784:17549333,28339873:257600 -k1,10784:18826018,28339873:257600 -k1,10784:22015044,28339873:257601 -k1,10784:22931936,28339873:257600 -k1,10784:24208621,28339873:257600 -k1,10784:26756049,28339873:257600 -k1,10784:27672941,28339873:257600 -k1,10784:28286402,28339873:257601 -k1,10784:30238763,28339873:257600 -k1,10784:32051532,28339873:257600 -k1,10784:32583029,28339873:0 -) -(1,10785:6630773,29181361:25952256,513147,134348 -k1,10784:8974542,29181361:205985 -k1,10784:9831954,29181361:205984 -k1,10784:11057024,29181361:205985 -k1,10784:14894358,29181361:205984 -k1,10784:15728178,29181361:205985 -k1,10784:16687827,29181361:205985 -k1,10784:20093279,29181361:205984 -k1,10784:21318349,29181361:205985 -k1,10784:26263242,29181361:205985 -k1,10784:27128518,29181361:205984 -k1,10784:27690363,29181361:205985 -k1,10784:30203214,29181361:205984 -k1,10784:31400759,29181361:205985 -k1,10785:32583029,29181361:0 -) -(1,10785:6630773,30022849:25952256,513147,134348 -k1,10784:12788183,30022849:238198 -k1,10784:14401982,30022849:238198 -k1,10784:15401709,30022849:238199 -k1,10784:17148546,30022849:238198 -k1,10784:19298429,30022849:238198 -k1,10784:20859799,30022849:238198 -k1,10784:22117083,30022849:238199 -k1,10784:23910450,30022849:238198 -k1,10784:24807940,30022849:238198 -k1,10784:25816841,30022849:238198 -k1,10784:28014566,30022849:238199 -k1,10784:29014292,30022849:238198 -k1,10784:29608350,30022849:238198 -k1,10784:32583029,30022849:0 -) -(1,10785:6630773,30864337:25952256,505283,134348 -g1,10784:8695812,30864337 -g1,10784:10933211,30864337 -g1,10784:11818602,30864337 -g1,10784:12788534,30864337 -g1,10784:15766490,30864337 -g1,10784:16617147,30864337 -g1,10784:17835461,30864337 -k1,10785:32583029,30864337:12614371 -g1,10785:32583029,30864337 -) -(1,10787:6630773,31705825:25952256,513147,126483 -h1,10786:6630773,31705825:983040,0,0 -k1,10786:8833539,31705825:266177 -k1,10786:10405849,31705825:266177 -k1,10786:13040497,31705825:266177 -k1,10786:14463384,31705825:266177 -k1,10786:15388853,31705825:266177 -k1,10786:16674115,31705825:266177 -k1,10786:19724918,31705825:266178 -k1,10786:22325487,31705825:266177 -k1,10786:25375633,31705825:266177 -k1,10786:26257848,31705825:266177 -k1,10786:27112538,31705825:266177 -k1,10786:28575402,31705825:266177 -k1,10786:31923737,31705825:266177 -k1,10787:32583029,31705825:0 -) -(1,10787:6630773,32547313:25952256,513147,134348 -(1,10786:6630773,32547313:0,414482,115847 -r1,10828:8044174,32547313:1413401,530329,115847 -k1,10786:6630773,32547313:-1413401 -) -(1,10786:6630773,32547313:1413401,414482,115847 -k1,10786:6630773,32547313:3277 -h1,10786:8040897,32547313:0,411205,112570 -) -g1,10786:8243403,32547313 -g1,10786:10433616,32547313 -g1,10786:11917351,32547313 -g1,10786:12574677,32547313 -g1,10786:13305403,32547313 -g1,10786:14523717,32547313 -g1,10786:17029813,32547313 -g1,10786:18176693,32547313 -g1,10786:18731782,32547313 -k1,10787:32583029,32547313:11223253 -g1,10787:32583029,32547313 -) -v1,10789:6630773,33737779:0,393216,0 -(1,10799:6630773,36656770:25952256,3312207,196608 -g1,10799:6630773,36656770 -g1,10799:6630773,36656770 -g1,10799:6434165,36656770 -(1,10799:6434165,36656770:0,3312207,196608 -r1,10828:32779637,36656770:26345472,3508815,196608 -k1,10799:6434165,36656770:-26345472 -) -(1,10799:6434165,36656770:26345472,3312207,196608 -[1,10799:6630773,36656770:25952256,3115599,0 -(1,10791:6630773,33825335:25952256,284164,6290 -(1,10790:6630773,33825335:0,0,0 -g1,10790:6630773,33825335 -g1,10790:6630773,33825335 -g1,10790:6303093,33825335 -(1,10790:6303093,33825335:0,0,0 -) -g1,10790:6630773,33825335 -) -h1,10791:7895356,33825335:0,0,0 -k1,10791:32583028,33825335:24687672 -g1,10791:32583028,33825335 -) -(1,10798:6630773,34557049:25952256,410518,82312 -(1,10793:6630773,34557049:0,0,0 -g1,10793:6630773,34557049 -g1,10793:6630773,34557049 -g1,10793:6303093,34557049 -(1,10793:6303093,34557049:0,0,0 -) -g1,10793:6630773,34557049 -) -g1,10798:7579210,34557049 -g1,10798:10424521,34557049 -g1,10798:11689104,34557049 -h1,10798:12953687,34557049:0,0,0 -k1,10798:32583029,34557049:19629342 -g1,10798:32583029,34557049 -) -(1,10798:6630773,35223227:25952256,404226,76021 -h1,10798:6630773,35223227:0,0,0 -g1,10798:7579210,35223227 -h1,10798:12953687,35223227:0,0,0 -k1,10798:32583029,35223227:19629342 -g1,10798:32583029,35223227 -) -(1,10798:6630773,35889405:25952256,404226,101187 -h1,10798:6630773,35889405:0,0,0 -g1,10798:7579210,35889405 -g1,10798:11056813,35889405 -k1,10798:11056813,35889405:0 -h1,10798:17063581,35889405:0,0,0 -k1,10798:32583029,35889405:15519448 -g1,10798:32583029,35889405 -) -(1,10798:6630773,36555583:25952256,404226,101187 -h1,10798:6630773,36555583:0,0,0 -g1,10798:7579210,36555583 -g1,10798:12005250,36555583 -k1,10798:12005250,36555583:0 -h1,10798:16747436,36555583:0,0,0 -k1,10798:32583029,36555583:15835593 -g1,10798:32583029,36555583 -) -] -) -g1,10799:32583029,36656770 -g1,10799:6630773,36656770 -g1,10799:6630773,36656770 -g1,10799:32583029,36656770 -g1,10799:32583029,36656770 -) -h1,10799:6630773,36853378:0,0,0 -(1,10803:6630773,38219154:25952256,513147,126483 -h1,10802:6630773,38219154:983040,0,0 -k1,10802:8824536,38219154:257174 -k1,10802:10185992,38219154:257174 -k1,10802:11709322,38219154:257174 -k1,10802:13032767,38219154:257174 -k1,10802:15175412,38219154:257174 -k1,10802:20171494,38219154:257174 -k1,10802:21087961,38219154:257175 -k1,10802:23799458,38219154:257174 -k1,10802:25048192,38219154:257174 -k1,10802:28089335,38219154:257174 -k1,10802:28962547,38219154:257174 -k1,10802:30238806,38219154:257174 -k1,10802:32583029,38219154:0 -) -(1,10803:6630773,39060642:25952256,505283,134348 -g1,10802:8900284,39060642 -g1,10802:10547859,39060642 -g1,10802:12482481,39060642 -(1,10802:12482481,39060642:0,452978,115847 -r1,10828:15654441,39060642:3171960,568825,115847 -k1,10802:12482481,39060642:-3171960 -) -(1,10802:12482481,39060642:3171960,452978,115847 -k1,10802:12482481,39060642:3277 -h1,10802:15651164,39060642:0,411205,112570 -) -k1,10803:32583029,39060642:16754918 -g1,10803:32583029,39060642 -) -v1,10805:6630773,40251108:0,393216,0 -(1,10813:6630773,41964096:25952256,2106204,196608 -g1,10813:6630773,41964096 -g1,10813:6630773,41964096 -g1,10813:6434165,41964096 -(1,10813:6434165,41964096:0,2106204,196608 -r1,10828:32779637,41964096:26345472,2302812,196608 -k1,10813:6434165,41964096:-26345472 -) -(1,10813:6434165,41964096:26345472,2106204,196608 -[1,10813:6630773,41964096:25952256,1909596,0 -(1,10807:6630773,40458726:25952256,404226,76021 -(1,10806:6630773,40458726:0,0,0 -g1,10806:6630773,40458726 -g1,10806:6630773,40458726 -g1,10806:6303093,40458726 -(1,10806:6303093,40458726:0,0,0 -) -g1,10806:6630773,40458726 -) -k1,10807:6630773,40458726:0 -h1,10807:10740667,40458726:0,0,0 -k1,10807:32583029,40458726:21842362 -g1,10807:32583029,40458726 -) -(1,10812:6630773,41190440:25952256,410518,76021 -(1,10809:6630773,41190440:0,0,0 -g1,10809:6630773,41190440 -g1,10809:6630773,41190440 -g1,10809:6303093,41190440 -(1,10809:6303093,41190440:0,0,0 -) -g1,10809:6630773,41190440 -) -g1,10812:7579210,41190440 -g1,10812:8843793,41190440 -g1,10812:12005250,41190440 -g1,10812:12321396,41190440 -g1,10812:12637542,41190440 -g1,10812:12953688,41190440 -g1,10812:13269834,41190440 -g1,10812:17379728,41190440 -g1,10812:17695874,41190440 -g1,10812:22121914,41190440 -g1,10812:26231808,41190440 -g1,10812:26547954,41190440 -h1,10812:30341702,41190440:0,0,0 -k1,10812:32583029,41190440:2241327 -g1,10812:32583029,41190440 -) -(1,10812:6630773,41856618:25952256,410518,107478 -h1,10812:6630773,41856618:0,0,0 -g1,10812:7579210,41856618 -g1,10812:8843793,41856618 -g1,10812:12321396,41856618 -g1,10812:13585979,41856618 -g1,10812:16747436,41856618 -g1,10812:18328165,41856618 -g1,10812:19592748,41856618 -g1,10812:21805768,41856618 -h1,10812:23070351,41856618:0,0,0 -k1,10812:32583029,41856618:9512678 -g1,10812:32583029,41856618 -) -] -) -g1,10813:32583029,41964096 -g1,10813:6630773,41964096 -g1,10813:6630773,41964096 -g1,10813:32583029,41964096 -g1,10813:32583029,41964096 -) -h1,10813:6630773,42160704:0,0,0 -(1,10817:6630773,43526480:25952256,513147,134348 -h1,10816:6630773,43526480:983040,0,0 -k1,10816:8799775,43526480:232413 -k1,10816:10136470,43526480:232413 -k1,10816:11654698,43526480:232412 -k1,10816:12979596,43526480:232413 -(1,10816:12979596,43526480:0,452978,115847 -r1,10828:16151556,43526480:3171960,568825,115847 -k1,10816:12979596,43526480:-3171960 -) -(1,10816:12979596,43526480:3171960,452978,115847 -k1,10816:12979596,43526480:3277 -h1,10816:16148279,43526480:0,411205,112570 -) -k1,10816:16383969,43526480:232413 -k1,10816:17267810,43526480:232413 -k1,10816:19316226,43526480:232413 -k1,10816:20314755,43526480:232413 -k1,10816:23505462,43526480:232412 -k1,10816:26718452,43526480:232413 -k1,10816:30201451,43526480:232413 -k1,10816:32583029,43526480:0 -) -(1,10817:6630773,44367968:25952256,513147,134348 -g1,10816:7777653,44367968 -g1,10816:10266710,44367968 -g1,10816:11125231,44367968 -g1,10816:11680320,44367968 -g1,10816:13574310,44367968 -k1,10817:32583030,44367968:17279880 -g1,10817:32583030,44367968 -) -v1,10819:6630773,45558434:0,393216,0 -] -(1,10828:32583029,45706769:0,0,0 -g1,10828:32583029,45706769 -) -) -] -(1,10828:6630773,47279633:25952256,0,0 -h1,10828:6630773,47279633:25952256,0,0 -) -] -(1,10828:4262630,4025873:0,0,0 -[1,10828:-473656,4025873:0,0,0 -(1,10828:-473656,-710413:0,0,0 -(1,10828:-473656,-710413:0,0,0 -g1,10828:-473656,-710413 -) -g1,10828:-473656,-710413 -) -] -) -] -!25689 -}203 -Input:1529:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1530:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1531:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1532:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1533:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1534:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!564 -{204 -[1,11002:4262630,47279633:28320399,43253760,0 -(1,11002:4262630,4025873:0,0,0 -[1,11002:-473656,4025873:0,0,0 -(1,11002:-473656,-710413:0,0,0 -(1,11002:-473656,-644877:0,0,0 -k1,11002:-473656,-644877:-65536 -) -(1,11002:-473656,4736287:0,0,0 -k1,11002:-473656,4736287:5209943 -) -g1,11002:-473656,-710413 -) -] -) -[1,11002:6630773,47279633:25952256,43253760,0 -[1,11002:6630773,4812305:25952256,786432,0 -(1,11002:6630773,4812305:25952256,505283,134348 -(1,11002:6630773,4812305:25952256,505283,134348 -g1,11002:3078558,4812305 -[1,11002:3078558,4812305:0,0,0 -(1,11002:3078558,2439708:0,1703936,0 -k1,11002:1358238,2439708:-1720320 -(1,10278:1358238,2439708:1720320,1703936,0 -(1,10278:1358238,2439708:1179648,16384,0 -r1,11002:2537886,2439708:1179648,16384,0 -) -g1,10278:3062174,2439708 -(1,10278:3062174,2439708:16384,1703936,0 -[1,10278:3062174,2439708:25952256,1703936,0 -(1,10278:3062174,1915420:25952256,1179648,0 -(1,10278:3062174,1915420:16384,1179648,0 -r1,11002:3078558,1915420:16384,1179648,0 -) -k1,10278:29014430,1915420:25935872 -g1,10278:29014430,1915420 -) -] -) -) -) -] -[1,11002:3078558,4812305:0,0,0 -(1,11002:3078558,2439708:0,1703936,0 -g1,11002:29030814,2439708 -g1,11002:36135244,2439708 -(1,10278:36135244,2439708:1720320,1703936,0 -(1,10278:36135244,2439708:16384,1703936,0 -[1,10278:36135244,2439708:25952256,1703936,0 -(1,10278:36135244,1915420:25952256,1179648,0 -(1,10278:36135244,1915420:16384,1179648,0 -r1,11002:36151628,1915420:16384,1179648,0 -) -k1,10278:62087500,1915420:25935872 -g1,10278:62087500,1915420 -) -] -) -g1,10278:36675916,2439708 -(1,10278:36675916,2439708:1179648,16384,0 -r1,11002:37855564,2439708:1179648,16384,0 -) -) -k1,11002:3078556,2439708:-34777008 -) -] -[1,11002:3078558,4812305:0,0,0 -(1,11002:3078558,49800853:0,16384,2228224 -k1,11002:1358238,49800853:-1720320 -(1,10278:1358238,49800853:1720320,16384,2228224 -(1,10278:1358238,49800853:1179648,16384,0 -r1,11002:2537886,49800853:1179648,16384,0 -) -g1,10278:3062174,49800853 -(1,10278:3062174,52029077:16384,1703936,0 -[1,10278:3062174,52029077:25952256,1703936,0 -(1,10278:3062174,51504789:25952256,1179648,0 -(1,10278:3062174,51504789:16384,1179648,0 -r1,11002:3078558,51504789:16384,1179648,0 -) -k1,10278:29014430,51504789:25935872 -g1,10278:29014430,51504789 -) -] -) -) -) -] -[1,11002:3078558,4812305:0,0,0 -(1,11002:3078558,49800853:0,16384,2228224 -g1,11002:29030814,49800853 -g1,11002:36135244,49800853 -(1,10278:36135244,49800853:1720320,16384,2228224 -(1,10278:36135244,52029077:16384,1703936,0 -[1,10278:36135244,52029077:25952256,1703936,0 -(1,10278:36135244,51504789:25952256,1179648,0 -(1,10278:36135244,51504789:16384,1179648,0 -r1,11002:36151628,51504789:16384,1179648,0 -) -k1,10278:62087500,51504789:25935872 -g1,10278:62087500,51504789 -) -] -) -g1,10278:36675916,49800853 -(1,10278:36675916,49800853:1179648,16384,0 -r1,11002:37855564,49800853:1179648,16384,0 -) -) -k1,11002:3078556,49800853:-34777008 -) -] -g1,11002:6630773,4812305 -g1,11002:6630773,4812305 -g1,11002:9311850,4812305 -g1,11002:11796319,4812305 -g1,11002:13205998,4812305 -g1,11002:16063367,4812305 -k1,11002:31387652,4812305:15324285 -) -) -] -[1,11002:6630773,45706769:25952256,40108032,0 -(1,11002:6630773,45706769:25952256,40108032,0 -(1,11002:6630773,45706769:0,0,0 -g1,11002:6630773,45706769 -) -[1,11002:6630773,45706769:25952256,40108032,0 -v1,10828:6630773,6254097:0,393216,0 -(1,10828:6630773,8633263:25952256,2772382,196608 -g1,10828:6630773,8633263 -g1,10828:6630773,8633263 -g1,10828:6434165,8633263 -(1,10828:6434165,8633263:0,2772382,196608 -r1,11002:32779637,8633263:26345472,2968990,196608 -k1,10828:6434165,8633263:-26345472 -) -(1,10828:6434165,8633263:26345472,2772382,196608 -[1,10828:6630773,8633263:25952256,2575774,0 -(1,10821:6630773,6461715:25952256,404226,76021 -(1,10820:6630773,6461715:0,0,0 -g1,10820:6630773,6461715 -g1,10820:6630773,6461715 -g1,10820:6303093,6461715 -(1,10820:6303093,6461715:0,0,0 -) -g1,10820:6630773,6461715 -) -k1,10821:6630773,6461715:0 -g1,10821:11056813,6461715 -g1,10821:11689105,6461715 -h1,10821:13902125,6461715:0,0,0 -k1,10821:32583029,6461715:18680904 -g1,10821:32583029,6461715 -) -(1,10827:6630773,7193429:25952256,410518,101187 -(1,10823:6630773,7193429:0,0,0 -g1,10823:6630773,7193429 -g1,10823:6630773,7193429 -g1,10823:6303093,7193429 -(1,10823:6303093,7193429:0,0,0 -) -g1,10823:6630773,7193429 -) -g1,10827:7579210,7193429 -g1,10827:8843793,7193429 -g1,10827:12005250,7193429 -g1,10827:12321396,7193429 -g1,10827:12637542,7193429 -g1,10827:12953688,7193429 -g1,10827:13269834,7193429 -g1,10827:17695874,7193429 -g1,10827:19908894,7193429 -g1,10827:20225040,7193429 -g1,10827:20541186,7193429 -g1,10827:20857332,7193429 -g1,10827:21173478,7193429 -g1,10827:21489624,7193429 -g1,10827:21805770,7193429 -g1,10827:22121916,7193429 -g1,10827:23386499,7193429 -g1,10827:23702645,7193429 -g1,10827:24018791,7193429 -g1,10827:24334937,7193429 -g1,10827:24651083,7193429 -g1,10827:24967229,7193429 -g1,10827:25283375,7193429 -g1,10827:25599521,7193429 -g1,10827:25915667,7193429 -g1,10827:26231813,7193429 -g1,10827:26547959,7193429 -h1,10827:28444833,7193429:0,0,0 -k1,10827:32583029,7193429:4138196 -g1,10827:32583029,7193429 -) -(1,10827:6630773,7859607:25952256,404226,101187 -h1,10827:6630773,7859607:0,0,0 -g1,10827:7579210,7859607 -g1,10827:8843793,7859607 -g1,10827:10108376,7859607 -g1,10827:10424522,7859607 -g1,10827:10740668,7859607 -g1,10827:11056814,7859607 -g1,10827:11372960,7859607 -g1,10827:11689106,7859607 -g1,10827:12005252,7859607 -g1,10827:12321398,7859607 -g1,10827:12637544,7859607 -g1,10827:12953690,7859607 -g1,10827:13269836,7859607 -g1,10827:17379730,7859607 -g1,10827:17695876,7859607 -h1,10827:19592750,7859607:0,0,0 -k1,10827:32583029,7859607:12990279 -g1,10827:32583029,7859607 -) -(1,10827:6630773,8525785:25952256,410518,107478 -h1,10827:6630773,8525785:0,0,0 -g1,10827:7579210,8525785 -g1,10827:8843793,8525785 -g1,10827:12321396,8525785 -g1,10827:13585979,8525785 -g1,10827:16747436,8525785 -g1,10827:18328165,8525785 -g1,10827:19592748,8525785 -g1,10827:21805768,8525785 -h1,10827:23070351,8525785:0,0,0 -k1,10827:32583029,8525785:9512678 -g1,10827:32583029,8525785 -) -] -) -g1,10828:32583029,8633263 -g1,10828:6630773,8633263 -g1,10828:6630773,8633263 -g1,10828:32583029,8633263 -g1,10828:32583029,8633263 -) -h1,10828:6630773,8829871:0,0,0 -(1,10832:6630773,10195647:25952256,513147,11795 -h1,10831:6630773,10195647:983040,0,0 -k1,10831:8697888,10195647:330411 -k1,10831:10583467,10195647:330410 -k1,10831:14720864,10195647:330411 -k1,10831:15582772,10195647:330411 -k1,10831:17951352,10195647:330410 -k1,10831:18967925,10195647:330411 -k1,10831:19654196,10195647:330411 -k1,10831:22959285,10195647:330410 -k1,10831:25267573,10195647:330411 -k1,10831:26214022,10195647:330411 -k1,10831:27315135,10195647:330410 -k1,10831:30424273,10195647:330411 -k1,10832:32583029,10195647:0 -) -(1,10832:6630773,11037135:25952256,513147,134348 -(1,10831:6630773,11037135:0,452978,115847 -r1,11002:9099310,11037135:2468537,568825,115847 -k1,10831:6630773,11037135:-2468537 -) -(1,10831:6630773,11037135:2468537,452978,115847 -k1,10831:6630773,11037135:3277 -h1,10831:9096033,11037135:0,411205,112570 -) -k1,10831:9536973,11037135:263993 -k1,10831:10997652,11037135:263992 -k1,10831:12863345,11037135:263993 -k1,10831:14748699,11037135:263993 -k1,10831:17997201,11037135:263992 -k1,10831:18912622,11037135:263993 -k1,10831:21769219,11037135:263993 -k1,10831:22692503,11037135:263992 -k1,10831:23727199,11037135:263993 -k1,10831:25950718,11037135:263993 -k1,10831:26874002,11037135:263992 -k1,10831:27493855,11037135:263993 -k1,10831:29041043,11037135:263993 -k1,10831:30058699,11037135:263992 -k1,10831:32051532,11037135:263993 -k1,10831:32583029,11037135:0 -) -(1,10832:6630773,11878623:25952256,513147,134348 -k1,10831:7462425,11878623:180224 -k1,10831:8839992,11878623:180224 -k1,10831:10039301,11878623:180224 -k1,10831:11502720,11878623:180224 -k1,10831:13238113,11878623:180224 -k1,10831:15156352,11878623:180224 -k1,10831:15988004,11878623:180224 -k1,10831:17187312,11878623:180223 -k1,10831:18922705,11878623:180224 -k1,10831:21881656,11878623:180224 -k1,10831:22721172,11878623:180224 -k1,10831:23920481,11878623:180224 -k1,10831:26233902,11878623:180224 -k1,10831:27232015,11878623:180224 -k1,10831:28431324,11878623:180224 -k1,10831:31027860,11878623:180224 -k1,10831:32583029,11878623:0 -) -(1,10832:6630773,12720111:25952256,513147,134348 -k1,10831:9851025,12720111:214771 -k1,10831:10597292,12720111:214770 -k1,10831:12506824,12720111:214771 -k1,10831:13483123,12720111:214771 -k1,10831:14716979,12720111:214771 -k1,10831:16671075,12720111:214770 -k1,10831:17545138,12720111:214771 -k1,10831:18778994,12720111:214771 -k1,10831:21947472,12720111:214770 -k1,10831:22821535,12720111:214771 -k1,10831:24055391,12720111:214771 -k1,10831:27244841,12720111:214771 -k1,10831:29611158,12720111:214770 -k1,10831:30845014,12720111:214771 -k1,10831:32583029,12720111:0 -) -(1,10832:6630773,13561599:25952256,513147,134348 -k1,10831:7526363,13561599:236298 -k1,10831:8781746,13561599:236298 -k1,10831:10301239,13561599:236298 -k1,10831:12092707,13561599:236299 -k1,10831:13951021,13561599:236298 -k1,10831:14935085,13561599:236298 -k1,10831:17136808,13561599:236298 -k1,10831:17985868,13561599:236298 -k1,10831:19241251,13561599:236298 -k1,10831:21016334,13561599:236298 -k1,10831:21911924,13561599:236298 -k1,10831:23167308,13561599:236299 -k1,10831:25555153,13561599:236298 -k1,10831:27281740,13561599:236298 -k1,10831:29788205,13561599:236298 -k1,10831:31227744,13561599:236298 -k1,10831:32583029,13561599:0 -) -(1,10832:6630773,14403087:25952256,505283,126483 -k1,10831:7924407,14403087:189352 -k1,10831:8861525,14403087:189352 -k1,10831:10628329,14403087:189352 -k1,10831:11503844,14403087:189353 -k1,10831:13768721,14403087:189352 -k1,10831:15529626,14403087:189352 -k1,10831:16335016,14403087:189352 -k1,10831:19061922,14403087:189352 -k1,10831:20454515,14403087:189352 -k1,10831:21999152,14403087:189352 -k1,10831:24144755,14403087:189353 -k1,10831:27179025,14403087:189352 -k1,10831:28721040,14403087:189352 -k1,10831:30573040,14403087:189352 -k1,10831:32583029,14403087:0 -) -(1,10832:6630773,15244575:25952256,513147,134348 -k1,10831:7186619,15244575:199986 -k1,10831:11011400,15244575:199985 -k1,10831:13906882,15244575:199986 -k1,10831:15298312,15244575:199985 -k1,10831:16517383,15244575:199986 -k1,10831:18000563,15244575:199985 -k1,10831:19929389,15244575:199986 -k1,10831:20595335,15244575:199985 -k1,10831:23176899,15244575:199986 -k1,10831:25386873,15244575:199985 -k1,10831:25942719,15244575:199986 -k1,10831:28896527,15244575:199985 -k1,10831:31052763,15244575:199986 -k1,10831:32583029,15244575:0 -) -(1,10832:6630773,16086063:25952256,505283,134348 -k1,10831:7535498,16086063:253297 -k1,10831:8536560,16086063:253296 -k1,10831:12165616,16086063:253297 -k1,10831:13372461,16086063:253296 -k1,10831:15286440,16086063:253297 -k1,10831:16937619,16086063:253296 -k1,10831:18394157,16086063:253297 -k1,10831:22139867,16086063:253296 -k1,10831:25054581,16086063:253297 -k1,10831:25959305,16086063:253296 -k1,10831:30245688,16086063:253297 -k1,10831:31829365,16086063:253296 -k1,10831:32583029,16086063:0 -) -(1,10832:6630773,16927551:25952256,505283,126483 -g1,10831:9062814,16927551 -g1,10831:10253603,16927551 -g1,10831:14654345,16927551 -g1,10831:15469612,16927551 -k1,10832:32583029,16927551:16524904 -g1,10832:32583029,16927551 -) -v1,10834:6630773,18118017:0,393216,0 -(1,10849:6630773,22528415:25952256,4803614,196608 -g1,10849:6630773,22528415 -g1,10849:6630773,22528415 -g1,10849:6434165,22528415 -(1,10849:6434165,22528415:0,4803614,196608 -r1,11002:32779637,22528415:26345472,5000222,196608 -k1,10849:6434165,22528415:-26345472 -) -(1,10849:6434165,22528415:26345472,4803614,196608 -[1,10849:6630773,22528415:25952256,4607006,0 -(1,10836:6630773,18309906:25952256,388497,9436 -(1,10835:6630773,18309906:0,0,0 -g1,10835:6630773,18309906 -g1,10835:6630773,18309906 -g1,10835:6303093,18309906 -(1,10835:6303093,18309906:0,0,0 -) -g1,10835:6630773,18309906 -) -g1,10836:7263065,18309906 -g1,10836:8211503,18309906 -h1,10836:9159940,18309906:0,0,0 -k1,10836:32583028,18309906:23423088 -g1,10836:32583028,18309906 -) -(1,10837:6630773,18976084:25952256,404226,76021 -h1,10837:6630773,18976084:0,0,0 -k1,10837:6630773,18976084:0 -h1,10837:9159938,18976084:0,0,0 -k1,10837:32583030,18976084:23423092 -g1,10837:32583030,18976084 -) -(1,10841:6630773,19707798:25952256,404226,76021 -(1,10839:6630773,19707798:0,0,0 -g1,10839:6630773,19707798 -g1,10839:6630773,19707798 -g1,10839:6303093,19707798 -(1,10839:6303093,19707798:0,0,0 -) -g1,10839:6630773,19707798 -) -g1,10841:7579210,19707798 -g1,10841:8843793,19707798 -h1,10841:11689104,19707798:0,0,0 -k1,10841:32583028,19707798:20893924 -g1,10841:32583028,19707798 -) -(1,10843:6630773,21029336:25952256,404226,101187 -(1,10842:6630773,21029336:0,0,0 -g1,10842:6630773,21029336 -g1,10842:6630773,21029336 -g1,10842:6303093,21029336 -(1,10842:6303093,21029336:0,0,0 -) -g1,10842:6630773,21029336 -) -k1,10843:6630773,21029336:0 -g1,10843:9476084,21029336 -g1,10843:10424522,21029336 -g1,10843:14534417,21029336 -k1,10843:14534417,21029336:0 -h1,10843:17379728,21029336:0,0,0 -k1,10843:32583029,21029336:15203301 -g1,10843:32583029,21029336 -) -(1,10844:6630773,21695514:25952256,404226,76021 -h1,10844:6630773,21695514:0,0,0 -k1,10844:6630773,21695514:0 -h1,10844:9159938,21695514:0,0,0 -k1,10844:32583030,21695514:23423092 -g1,10844:32583030,21695514 -) -(1,10848:6630773,22427228:25952256,404226,101187 -(1,10846:6630773,22427228:0,0,0 -g1,10846:6630773,22427228 -g1,10846:6630773,22427228 -g1,10846:6303093,22427228 -(1,10846:6303093,22427228:0,0,0 -) -g1,10846:6630773,22427228 -) -g1,10848:7579210,22427228 -g1,10848:8843793,22427228 -g1,10848:12005250,22427228 -h1,10848:14850561,22427228:0,0,0 -k1,10848:32583029,22427228:17732468 -g1,10848:32583029,22427228 -) -] -) -g1,10849:32583029,22528415 -g1,10849:6630773,22528415 -g1,10849:6630773,22528415 -g1,10849:32583029,22528415 -g1,10849:32583029,22528415 -) -h1,10849:6630773,22725023:0,0,0 -(1,10853:6630773,24090799:25952256,513147,134348 -h1,10852:6630773,24090799:983040,0,0 -k1,10852:9251938,24090799:230412 -k1,10852:10350702,24090799:230412 -k1,10852:12510495,24090799:230413 -k1,10852:13096767,24090799:230412 -k1,10852:14909218,24090799:230412 -k1,10852:17593953,24090799:230412 -k1,10852:20221673,24090799:230413 -k1,10852:21103513,24090799:230412 -(1,10852:21103513,24090799:0,452978,115847 -r1,11002:24275473,24090799:3171960,568825,115847 -k1,10852:21103513,24090799:-3171960 -) -(1,10852:21103513,24090799:3171960,452978,115847 -k1,10852:21103513,24090799:3277 -h1,10852:24272196,24090799:0,411205,112570 -) -k1,10852:24505885,24090799:230412 -k1,10852:27199796,24090799:230413 -k1,10852:30492705,24090799:230412 -k1,10852:31591469,24090799:230412 -k1,10852:32583029,24090799:0 -) -(1,10853:6630773,24932287:25952256,513147,134348 -k1,10852:8588285,24932287:222119 -k1,10852:11505900,24932287:222119 -(1,10852:11505900,24932287:0,459977,115847 -r1,11002:14677860,24932287:3171960,575824,115847 -k1,10852:11505900,24932287:-3171960 -) -(1,10852:11505900,24932287:3171960,459977,115847 -k1,10852:11505900,24932287:3277 -h1,10852:14674583,24932287:0,411205,112570 -) -k1,10852:14899978,24932287:222118 -k1,10852:16313542,24932287:222119 -k1,10852:17483312,24932287:222119 -k1,10852:18724516,24932287:222119 -k1,10852:21127018,24932287:222119 -k1,10852:24159320,24932287:222118 -k1,10852:25032867,24932287:222119 -k1,10852:26851443,24932287:222119 -k1,10852:27941914,24932287:222119 -k1,10852:29694298,24932287:222118 -k1,10852:30567845,24932287:222119 -k1,10852:32227169,24932287:222119 -k1,10853:32583029,24932287:0 -) -(1,10853:6630773,25773775:25952256,505283,134348 -(1,10852:6630773,25773775:0,452978,115847 -r1,11002:9099310,25773775:2468537,568825,115847 -k1,10852:6630773,25773775:-2468537 -) -(1,10852:6630773,25773775:2468537,452978,115847 -k1,10852:6630773,25773775:3277 -h1,10852:9096033,25773775:0,411205,112570 -) -k1,10852:9322388,25773775:223078 -k1,10852:11225808,25773775:223077 -k1,10852:12135048,25773775:223078 -k1,10852:13128829,25773775:223078 -k1,10852:18149141,25773775:223077 -k1,10852:21431440,25773775:223078 -(1,10852:21431440,25773775:0,459977,115847 -r1,11002:24603400,25773775:3171960,575824,115847 -k1,10852:21431440,25773775:-3171960 -) -(1,10852:21431440,25773775:3171960,459977,115847 -k1,10852:21431440,25773775:3277 -h1,10852:24600123,25773775:0,411205,112570 -) -k1,10852:24826477,25773775:223077 -k1,10852:26542465,25773775:223078 -k1,10852:27831814,25773775:223078 -k1,10852:30378142,25773775:223077 -k1,10852:31931601,25773775:223078 -k1,10852:32583029,25773775:0 -) -(1,10853:6630773,26615263:25952256,513147,134348 -g1,10852:8988758,26615263 -g1,10852:11477815,26615263 -g1,10852:12336336,26615263 -g1,10852:13554650,26615263 -g1,10852:15309048,26615263 -g1,10852:16376629,26615263 -g1,10852:18051073,26615263 -g1,10852:19479102,26615263 -k1,10853:32583029,26615263:10580136 -g1,10853:32583029,26615263 -) -v1,10855:6630773,27805729:0,393216,0 -(1,10861:6630773,29428016:25952256,2015503,196608 -g1,10861:6630773,29428016 -g1,10861:6630773,29428016 -g1,10861:6434165,29428016 -(1,10861:6434165,29428016:0,2015503,196608 -r1,11002:32779637,29428016:26345472,2212111,196608 -k1,10861:6434165,29428016:-26345472 -) -(1,10861:6434165,29428016:26345472,2015503,196608 -[1,10861:6630773,29428016:25952256,1818895,0 -(1,10857:6630773,28019639:25952256,410518,101187 -(1,10856:6630773,28019639:0,0,0 -g1,10856:6630773,28019639 -g1,10856:6630773,28019639 -g1,10856:6303093,28019639 -(1,10856:6303093,28019639:0,0,0 -) -g1,10856:6630773,28019639 -) -g1,10857:11056813,28019639 -g1,10857:12005251,28019639 -g1,10857:15799000,28019639 -h1,10857:16115146,28019639:0,0,0 -k1,10857:32583029,28019639:16467883 -g1,10857:32583029,28019639 -) -(1,10858:6630773,28685817:25952256,410518,101187 -h1,10858:6630773,28685817:0,0,0 -g1,10858:6946919,28685817 -g1,10858:7263065,28685817 -g1,10858:7579211,28685817 -g1,10858:7895357,28685817 -g1,10858:13902126,28685817 -g1,10858:16115146,28685817 -k1,10858:16115146,28685817:0 -h1,10858:20541186,28685817:0,0,0 -k1,10858:32583029,28685817:12041843 -g1,10858:32583029,28685817 -) -(1,10859:6630773,29351995:25952256,404226,76021 -h1,10859:6630773,29351995:0,0,0 -h1,10859:6946919,29351995:0,0,0 -k1,10859:32583029,29351995:25636110 -g1,10859:32583029,29351995 -) -] -) -g1,10861:32583029,29428016 -g1,10861:6630773,29428016 -g1,10861:6630773,29428016 -g1,10861:32583029,29428016 -g1,10861:32583029,29428016 -) -h1,10861:6630773,29624624:0,0,0 -(1,10865:6630773,30990400:25952256,513147,134348 -h1,10864:6630773,30990400:983040,0,0 -k1,10864:9431170,30990400:212380 -k1,10864:9999411,30990400:212381 -k1,10864:13765153,30990400:212380 -k1,10864:16431856,30990400:212380 -k1,10864:18475312,30990400:212380 -k1,10864:19635344,30990400:212381 -k1,10864:20203584,30990400:212380 -k1,10864:22144804,30990400:212380 -k1,10864:22815281,30990400:212380 -k1,10864:24160124,30990400:212381 -k1,10864:25120270,30990400:212380 -k1,10864:26845876,30990400:212380 -k1,10864:28005907,30990400:212380 -k1,10864:30508116,30990400:212381 -k1,10864:31379788,30990400:212380 -k1,10864:32583029,30990400:0 -) -(1,10865:6630773,31831888:25952256,505283,7863 -k1,10865:32583029,31831888:24223416 -g1,10865:32583029,31831888 -) -v1,10867:6630773,33022354:0,393216,0 -(1,10880:6630773,36090959:25952256,3461821,196608 -g1,10880:6630773,36090959 -g1,10880:6630773,36090959 -g1,10880:6434165,36090959 -(1,10880:6434165,36090959:0,3461821,196608 -r1,11002:32779637,36090959:26345472,3658429,196608 -k1,10880:6434165,36090959:-26345472 -) -(1,10880:6434165,36090959:26345472,3461821,196608 -[1,10880:6630773,36090959:25952256,3265213,0 -(1,10869:6630773,33229972:25952256,404226,101187 -(1,10868:6630773,33229972:0,0,0 -g1,10868:6630773,33229972 -g1,10868:6630773,33229972 -g1,10868:6303093,33229972 -(1,10868:6303093,33229972:0,0,0 -) -g1,10868:6630773,33229972 -) -k1,10869:6630773,33229972:0 -h1,10869:9159938,33229972:0,0,0 -k1,10869:32583030,33229972:23423092 -g1,10869:32583030,33229972 -) -(1,10873:6630773,33961686:25952256,404226,101187 -(1,10871:6630773,33961686:0,0,0 -g1,10871:6630773,33961686 -g1,10871:6630773,33961686 -g1,10871:6303093,33961686 -(1,10871:6303093,33961686:0,0,0 -) -g1,10871:6630773,33961686 -) -g1,10873:7579210,33961686 -g1,10873:8843793,33961686 -g1,10873:12321396,33961686 -h1,10873:13585979,33961686:0,0,0 -k1,10873:32583029,33961686:18997050 -g1,10873:32583029,33961686 -) -(1,10875:6630773,35283224:25952256,404226,101187 -(1,10874:6630773,35283224:0,0,0 -g1,10874:6630773,35283224 -g1,10874:6630773,35283224 -g1,10874:6303093,35283224 -(1,10874:6303093,35283224:0,0,0 -) -g1,10874:6630773,35283224 -) -k1,10875:6630773,35283224:0 -k1,10875:6630773,35283224:0 -h1,10875:12953687,35283224:0,0,0 -k1,10875:32583029,35283224:19629342 -g1,10875:32583029,35283224 -) -(1,10879:6630773,36014938:25952256,404226,76021 -(1,10877:6630773,36014938:0,0,0 -g1,10877:6630773,36014938 -g1,10877:6630773,36014938 -g1,10877:6303093,36014938 -(1,10877:6303093,36014938:0,0,0 -) -g1,10877:6630773,36014938 -) -g1,10879:7579210,36014938 -g1,10879:8843793,36014938 -h1,10879:9792230,36014938:0,0,0 -k1,10879:32583030,36014938:22790800 -g1,10879:32583030,36014938 -) -] -) -g1,10880:32583029,36090959 -g1,10880:6630773,36090959 -g1,10880:6630773,36090959 -g1,10880:32583029,36090959 -g1,10880:32583029,36090959 -) -h1,10880:6630773,36287567:0,0,0 -v1,10884:6630773,38177631:0,393216,0 -(1,11002:6630773,44619129:25952256,6834714,589824 -g1,11002:6630773,44619129 -(1,11002:6630773,44619129:25952256,6834714,589824 -(1,11002:6630773,45208953:25952256,7424538,0 -[1,11002:6630773,45208953:25952256,7424538,0 -(1,11002:6630773,45208953:25952256,7398324,0 -r1,11002:6656987,45208953:26214,7398324,0 -[1,11002:6656987,45208953:25899828,7398324,0 -(1,11002:6656987,44619129:25899828,6218676,0 -[1,11002:7246811,44619129:24720180,6218676,0 -(1,10885:7246811,39562338:24720180,1161885,196608 -(1,10884:7246811,39562338:0,1161885,196608 -r1,11002:8794447,39562338:1547636,1358493,196608 -k1,10884:7246811,39562338:-1547636 -) -(1,10884:7246811,39562338:1547636,1161885,196608 -) -k1,10884:9008422,39562338:213975 -k1,10884:10419084,39562338:213975 -k1,10884:11386722,39562338:213974 -k1,10884:13155866,39562338:213975 -k1,10884:15615760,39562338:213975 -k1,10884:16361232,39562338:213975 -k1,10884:20743296,39562338:213974 -k1,10884:21573309,39562338:213975 -k1,10884:23071790,39562338:213975 -k1,10884:23743862,39562338:213975 -k1,10884:25485480,39562338:213974 -k1,10884:27053429,39562338:213975 -k1,10884:28739998,39562338:213975 -k1,10884:31966991,39562338:0 -) -(1,10885:7246811,40403826:24720180,513147,134348 -k1,10884:11462540,40403826:151842 -k1,10884:13164308,40403826:151842 -k1,10884:14388319,40403826:151842 -k1,10884:14998257,40403826:151841 -k1,10884:15681596,40403826:151842 -k1,10884:17785100,40403826:151842 -k1,10884:20574111,40403826:151842 -k1,10884:21341991,40403826:151842 -k1,10884:22778339,40403826:151842 -k1,10884:24531880,40403826:151841 -k1,10884:25343014,40403826:151842 -k1,10884:26513941,40403826:151842 -k1,10884:31019340,40403826:151842 -k1,10884:31966991,40403826:0 -) -(1,10885:7246811,41245314:24720180,513147,134348 -k1,10884:11211739,41245314:246415 -k1,10884:12649600,41245314:246416 -k1,10884:16561444,41245314:246415 -k1,10884:17467151,41245314:246415 -k1,10884:18732652,41245314:246416 -k1,10884:22965622,41245314:246415 -k1,10884:24278308,41245314:246415 -k1,10884:27142886,41245314:246415 -k1,10884:28224886,41245314:246416 -k1,10884:31205463,41245314:246415 -k1,10884:31966991,41245314:0 -) -(1,10885:7246811,42086802:24720180,513147,134348 -k1,10884:10717664,42086802:231408 -k1,10884:13974868,42086802:231407 -k1,10884:14889161,42086802:231408 -k1,10884:17487074,42086802:231408 -k1,10884:18074342,42086802:231408 -k1,10884:20885901,42086802:231407 -k1,10884:24180462,42086802:231408 -k1,10884:27437667,42086802:231408 -k1,10884:29063025,42086802:231407 -k1,10884:30313518,42086802:231408 -k1,10884:31966991,42086802:0 -) -(1,10885:7246811,42928290:24720180,505283,126483 -g1,10884:9357725,42928290 -g1,10884:10842115,42928290 -g1,10884:11572841,42928290 -g1,10884:12838341,42928290 -g1,10884:15627553,42928290 -g1,10884:16588310,42928290 -g1,10884:17806624,42928290 -g1,10884:18420696,42928290 -k1,10885:31966991,42928290:9914945 -g1,10885:31966991,42928290 -) -(1,10887:7246811,43769778:24720180,513147,134348 -h1,10886:7246811,43769778:983040,0,0 -k1,10886:11209629,43769778:293457 -k1,10886:11858947,43769778:293458 -k1,10886:13435599,43769778:293457 -k1,10886:14482720,43769778:293457 -k1,10886:17083045,43769778:293458 -k1,10886:17907999,43769778:293457 -k1,10886:19487272,43769778:293457 -k1,10886:21405368,43769778:293458 -k1,10886:23997173,43769778:293457 -k1,10886:24778124,43769778:293363 -k1,10886:27378448,43769778:293457 -k1,10886:30126229,43769778:293458 -k1,10886:31611131,43769778:293457 -k1,10886:31966991,43769778:0 -) -(1,10887:7246811,44611266:24720180,513147,7863 -g1,10886:9711620,44611266 -g1,10886:12365172,44611266 -g1,10886:14094667,44611266 -g1,10886:14945324,44611266 -g1,10886:15892319,44611266 -k1,10887:31966991,44611266:13550881 -g1,10887:31966991,44611266 -) -] -) -] -r1,11002:32583029,45208953:26214,7398324,0 -) -] -) -) -g1,11002:32583029,44619129 -) -] -(1,11002:32583029,45706769:0,0,0 -g1,11002:32583029,45706769 -) -) -] -(1,11002:6630773,47279633:25952256,0,0 -h1,11002:6630773,47279633:25952256,0,0 -) -] -(1,11002:4262630,4025873:0,0,0 -[1,11002:-473656,4025873:0,0,0 -(1,11002:-473656,-710413:0,0,0 -(1,11002:-473656,-710413:0,0,0 -g1,11002:-473656,-710413 -) -g1,11002:-473656,-710413 -) -] -) -] -!24897 -}204 -!12 -{205 -[1,11002:4262630,47279633:28320399,43253760,0 -(1,11002:4262630,4025873:0,0,0 -[1,11002:-473656,4025873:0,0,0 -(1,11002:-473656,-710413:0,0,0 -(1,11002:-473656,-644877:0,0,0 -k1,11002:-473656,-644877:-65536 -) -(1,11002:-473656,4736287:0,0,0 -k1,11002:-473656,4736287:5209943 -) -g1,11002:-473656,-710413 -) -] -) -[1,11002:6630773,47279633:25952256,43253760,0 -[1,11002:6630773,4812305:25952256,786432,0 -(1,11002:6630773,4812305:25952256,505283,134348 -(1,11002:6630773,4812305:25952256,505283,134348 -g1,11002:3078558,4812305 -[1,11002:3078558,4812305:0,0,0 -(1,11002:3078558,2439708:0,1703936,0 -k1,11002:1358238,2439708:-1720320 -(1,10278:1358238,2439708:1720320,1703936,0 -(1,10278:1358238,2439708:1179648,16384,0 -r1,11002:2537886,2439708:1179648,16384,0 -) -g1,10278:3062174,2439708 -(1,10278:3062174,2439708:16384,1703936,0 -[1,10278:3062174,2439708:25952256,1703936,0 -(1,10278:3062174,1915420:25952256,1179648,0 -(1,10278:3062174,1915420:16384,1179648,0 -r1,11002:3078558,1915420:16384,1179648,0 -) -k1,10278:29014430,1915420:25935872 -g1,10278:29014430,1915420 -) -] -) -) -) -] -[1,11002:3078558,4812305:0,0,0 -(1,11002:3078558,2439708:0,1703936,0 -g1,11002:29030814,2439708 -g1,11002:36135244,2439708 -(1,10278:36135244,2439708:1720320,1703936,0 -(1,10278:36135244,2439708:16384,1703936,0 -[1,10278:36135244,2439708:25952256,1703936,0 -(1,10278:36135244,1915420:25952256,1179648,0 -(1,10278:36135244,1915420:16384,1179648,0 -r1,11002:36151628,1915420:16384,1179648,0 -) -k1,10278:62087500,1915420:25935872 -g1,10278:62087500,1915420 -) -] -) -g1,10278:36675916,2439708 -(1,10278:36675916,2439708:1179648,16384,0 -r1,11002:37855564,2439708:1179648,16384,0 -) -) -k1,11002:3078556,2439708:-34777008 -) -] -[1,11002:3078558,4812305:0,0,0 -(1,11002:3078558,49800853:0,16384,2228224 -k1,11002:1358238,49800853:-1720320 -(1,10278:1358238,49800853:1720320,16384,2228224 -(1,10278:1358238,49800853:1179648,16384,0 -r1,11002:2537886,49800853:1179648,16384,0 -) -g1,10278:3062174,49800853 -(1,10278:3062174,52029077:16384,1703936,0 -[1,10278:3062174,52029077:25952256,1703936,0 -(1,10278:3062174,51504789:25952256,1179648,0 -(1,10278:3062174,51504789:16384,1179648,0 -r1,11002:3078558,51504789:16384,1179648,0 -) -k1,10278:29014430,51504789:25935872 -g1,10278:29014430,51504789 -) -] -) -) -) -] -[1,11002:3078558,4812305:0,0,0 -(1,11002:3078558,49800853:0,16384,2228224 -g1,11002:29030814,49800853 -g1,11002:36135244,49800853 -(1,10278:36135244,49800853:1720320,16384,2228224 -(1,10278:36135244,52029077:16384,1703936,0 -[1,10278:36135244,52029077:25952256,1703936,0 -(1,10278:36135244,51504789:25952256,1179648,0 -(1,10278:36135244,51504789:16384,1179648,0 -r1,11002:36151628,51504789:16384,1179648,0 -) -k1,10278:62087500,51504789:25935872 -g1,10278:62087500,51504789 -) -] -) -g1,10278:36675916,49800853 -(1,10278:36675916,49800853:1179648,16384,0 -r1,11002:37855564,49800853:1179648,16384,0 -) -) -k1,11002:3078556,49800853:-34777008 -) -] -g1,11002:6630773,4812305 -k1,11002:20781963,4812305:12955813 -g1,11002:22168704,4812305 -g1,11002:22817510,4812305 -g1,11002:26131665,4812305 -g1,11002:28614824,4812305 -g1,11002:30094627,4812305 -) -) -] -[1,11002:6630773,45706769:25952256,40108032,0 -(1,11002:6630773,45706769:25952256,40108032,0 -(1,11002:6630773,45706769:0,0,0 -g1,11002:6630773,45706769 -) -[1,11002:6630773,45706769:25952256,40108032,0 -v1,11002:6630773,6254097:0,393216,0 -(1,11002:6630773,45116945:25952256,39256064,589824 -g1,11002:6630773,45116945 -(1,11002:6630773,45116945:25952256,39256064,589824 -(1,11002:6630773,45706769:25952256,39845888,0 -[1,11002:6630773,45706769:25952256,39845888,0 -(1,11002:6630773,45706769:25952256,39845888,0 -r1,11002:6656987,45706769:26214,39845888,0 -[1,11002:6656987,45706769:25899828,39845888,0 -(1,11002:6656987,45116945:25899828,38666240,0 -[1,11002:7246811,45116945:24720180,38666240,0 -v1,10889:7246811,6843921:0,393216,0 -(1,10900:7246811,11797098:24720180,5346393,196608 -g1,10900:7246811,11797098 -g1,10900:7246811,11797098 -g1,10900:7050203,11797098 -(1,10900:7050203,11797098:0,5346393,196608 -r1,11002:32163599,11797098:25113396,5543001,196608 -k1,10900:7050203,11797098:-25113396 -) -(1,10900:7050203,11797098:25113396,5346393,196608 -[1,10900:7246811,11797098:24720180,5149785,0 -(1,10891:7246811,7057831:24720180,410518,101187 -(1,10890:7246811,7057831:0,0,0 -g1,10890:7246811,7057831 -g1,10890:7246811,7057831 -g1,10890:6919131,7057831 -(1,10890:6919131,7057831:0,0,0 -) -g1,10890:7246811,7057831 -) -g1,10891:10092122,7057831 -g1,10891:11040560,7057831 -g1,10891:13885871,7057831 -g1,10891:15150455,7057831 -g1,10891:16731184,7057831 -h1,10891:17047330,7057831:0,0,0 -k1,10891:31966991,7057831:14919661 -g1,10891:31966991,7057831 -) -(1,10892:7246811,7724009:24720180,404226,101187 -h1,10892:7246811,7724009:0,0,0 -g1,10892:7562957,7724009 -g1,10892:7879103,7724009 -g1,10892:8195249,7724009 -g1,10892:15150455,7724009 -h1,10892:15782746,7724009:0,0,0 -k1,10892:31966991,7724009:16184245 -g1,10892:31966991,7724009 -) -(1,10893:7246811,8390187:24720180,404226,76021 -h1,10893:7246811,8390187:0,0,0 -g1,10893:7562957,8390187 -h1,10893:7879103,8390187:0,0,0 -k1,10893:31966991,8390187:24087888 -g1,10893:31966991,8390187 -) -(1,10894:7246811,9056365:24720180,0,0 -h1,10894:7246811,9056365:0,0,0 -h1,10894:7246811,9056365:0,0,0 -k1,10894:31966991,9056365:24720180 -g1,10894:31966991,9056365 -) -(1,10895:7246811,9722543:24720180,410518,101187 -h1,10895:7246811,9722543:0,0,0 -g1,10895:12621288,9722543 -g1,10895:13569726,9722543 -g1,10895:17363475,9722543 -g1,10895:18944204,9722543 -h1,10895:19260350,9722543:0,0,0 -k1,10895:31966991,9722543:12706641 -g1,10895:31966991,9722543 -) -(1,10896:7246811,10388721:24720180,404226,101187 -h1,10896:7246811,10388721:0,0,0 -g1,10896:7562957,10388721 -g1,10896:7879103,10388721 -g1,10896:8195249,10388721 -k1,10896:8195249,10388721:0 -h1,10896:12937434,10388721:0,0,0 -k1,10896:31966990,10388721:19029556 -g1,10896:31966990,10388721 -) -(1,10897:7246811,11054899:24720180,404226,101187 -h1,10897:7246811,11054899:0,0,0 -g1,10897:7562957,11054899 -g1,10897:7879103,11054899 -g1,10897:8195249,11054899 -g1,10897:11040560,11054899 -h1,10897:12305143,11054899:0,0,0 -k1,10897:31966991,11054899:19661848 -g1,10897:31966991,11054899 -) -(1,10898:7246811,11721077:24720180,404226,76021 -h1,10898:7246811,11721077:0,0,0 -h1,10898:7562957,11721077:0,0,0 -k1,10898:31966991,11721077:24404034 -g1,10898:31966991,11721077 -) -] -) -g1,10900:31966991,11797098 -g1,10900:7246811,11797098 -g1,10900:7246811,11797098 -g1,10900:31966991,11797098 -g1,10900:31966991,11797098 -) -h1,10900:7246811,11993706:0,0,0 -v1,10904:7246811,14673220:0,393216,0 -(1,10919:7246811,19074181:24720180,4794177,196608 -g1,10919:7246811,19074181 -g1,10919:7246811,19074181 -g1,10919:7050203,19074181 -(1,10919:7050203,19074181:0,4794177,196608 -r1,11002:32163599,19074181:25113396,4990785,196608 -k1,10919:7050203,19074181:-25113396 -) -(1,10919:7050203,19074181:25113396,4794177,196608 -[1,10919:7246811,19074181:24720180,4597569,0 -(1,10906:7246811,14880838:24720180,404226,101187 -(1,10905:7246811,14880838:0,0,0 -g1,10905:7246811,14880838 -g1,10905:7246811,14880838 -g1,10905:6919131,14880838 -(1,10905:6919131,14880838:0,0,0 -) -g1,10905:7246811,14880838 -) -k1,10906:7246811,14880838:0 -h1,10906:11356705,14880838:0,0,0 -k1,10906:31966991,14880838:20610286 -g1,10906:31966991,14880838 -) -(1,10911:7246811,15612552:24720180,404226,76021 -(1,10908:7246811,15612552:0,0,0 -g1,10908:7246811,15612552 -g1,10908:7246811,15612552 -g1,10908:6919131,15612552 -(1,10908:6919131,15612552:0,0,0 -) -g1,10908:7246811,15612552 -) -g1,10911:8195248,15612552 -g1,10911:9459831,15612552 -h1,10911:12305142,15612552:0,0,0 -k1,10911:31966990,15612552:19661848 -g1,10911:31966990,15612552 -) -(1,10911:7246811,16278730:24720180,404226,76021 -h1,10911:7246811,16278730:0,0,0 -g1,10911:8195248,16278730 -g1,10911:9459831,16278730 -h1,10911:10408268,16278730:0,0,0 -k1,10911:31966992,16278730:21558724 -g1,10911:31966992,16278730 -) -(1,10913:7246811,17600268:24720180,404226,101187 -(1,10912:7246811,17600268:0,0,0 -g1,10912:7246811,17600268 -g1,10912:7246811,17600268 -g1,10912:6919131,17600268 -(1,10912:6919131,17600268:0,0,0 -) -g1,10912:7246811,17600268 -) -k1,10913:7246811,17600268:0 -h1,10913:11988996,17600268:0,0,0 -k1,10913:31966992,17600268:19977996 -g1,10913:31966992,17600268 -) -(1,10918:7246811,18331982:24720180,404226,76021 -(1,10915:7246811,18331982:0,0,0 -g1,10915:7246811,18331982 -g1,10915:7246811,18331982 -g1,10915:6919131,18331982 -(1,10915:6919131,18331982:0,0,0 -) -g1,10915:7246811,18331982 -) -g1,10918:8195248,18331982 -g1,10918:9459831,18331982 -h1,10918:12937433,18331982:0,0,0 -k1,10918:31966991,18331982:19029558 -g1,10918:31966991,18331982 -) -(1,10918:7246811,18998160:24720180,404226,76021 -h1,10918:7246811,18998160:0,0,0 -g1,10918:8195248,18998160 -g1,10918:9459831,18998160 -h1,10918:11040559,18998160:0,0,0 -k1,10918:31966991,18998160:20926432 -g1,10918:31966991,18998160 -) -] -) -g1,10919:31966991,19074181 -g1,10919:7246811,19074181 -g1,10919:7246811,19074181 -g1,10919:31966991,19074181 -g1,10919:31966991,19074181 -) -h1,10919:7246811,19270789:0,0,0 -(1,10923:7246811,21360136:24720180,513147,126483 -h1,10922:7246811,21360136:983040,0,0 -k1,10922:9380734,21360136:258938 -k1,10922:10291101,21360136:258939 -k1,10922:12054090,21360136:258938 -(1,10922:12054090,21360136:0,452978,115847 -r1,11002:15577762,21360136:3523672,568825,115847 -k1,10922:12054090,21360136:-3523672 -) -(1,10922:12054090,21360136:3523672,452978,115847 -k1,10922:12054090,21360136:3277 -h1,10922:15574485,21360136:0,411205,112570 -) -k1,10922:16010371,21360136:258939 -k1,10922:17370314,21360136:258938 -k1,10922:18438622,21360136:258938 -k1,10922:23279838,21360136:258939 -k1,10922:24492325,21360136:258938 -k1,10922:26081645,21360136:258939 -k1,10922:27955390,21360136:258938 -k1,10922:29371039,21360136:258939 -k1,10922:30577628,21360136:258938 -k1,10922:31966991,21360136:0 -) -(1,10923:7246811,22201624:24720180,513147,7863 -k1,10923:31966991,22201624:22339912 -g1,10923:31966991,22201624 -) -v1,10925:7246811,23874470:0,393216,0 -(1,10932:7246811,26162935:24720180,2681681,196608 -g1,10932:7246811,26162935 -g1,10932:7246811,26162935 -g1,10932:7050203,26162935 -(1,10932:7050203,26162935:0,2681681,196608 -r1,11002:32163599,26162935:25113396,2878289,196608 -k1,10932:7050203,26162935:-25113396 -) -(1,10932:7050203,26162935:25113396,2681681,196608 -[1,10932:7246811,26162935:24720180,2485073,0 -(1,10927:7246811,24088380:24720180,410518,101187 -(1,10926:7246811,24088380:0,0,0 -g1,10926:7246811,24088380 -g1,10926:7246811,24088380 -g1,10926:6919131,24088380 -(1,10926:6919131,24088380:0,0,0 -) -g1,10926:7246811,24088380 -) -g1,10927:13569725,24088380 -g1,10927:14518163,24088380 -g1,10927:18311912,24088380 -g1,10927:19892641,24088380 -g1,10927:20524933,24088380 -g1,10927:22105663,24088380 -g1,10927:23686392,24088380 -h1,10927:24002538,24088380:0,0,0 -k1,10927:31966991,24088380:7964453 -g1,10927:31966991,24088380 -) -(1,10928:7246811,24754558:24720180,404226,101187 -h1,10928:7246811,24754558:0,0,0 -g1,10928:7562957,24754558 -g1,10928:7879103,24754558 -g1,10928:8195249,24754558 -g1,10928:12621289,24754558 -g1,10928:13569727,24754558 -h1,10928:14834310,24754558:0,0,0 -k1,10928:31966990,24754558:17132680 -g1,10928:31966990,24754558 -) -(1,10929:7246811,25420736:24720180,404226,76021 -h1,10929:7246811,25420736:0,0,0 -g1,10929:7562957,25420736 -g1,10929:7879103,25420736 -g1,10929:8195249,25420736 -k1,10929:8195249,25420736:0 -h1,10929:11988997,25420736:0,0,0 -k1,10929:31966991,25420736:19977994 -g1,10929:31966991,25420736 -) -(1,10930:7246811,26086914:24720180,404226,76021 -h1,10930:7246811,26086914:0,0,0 -h1,10930:7562957,26086914:0,0,0 -k1,10930:31966991,26086914:24404034 -g1,10930:31966991,26086914 -) -] -) -g1,10932:31966991,26162935 -g1,10932:7246811,26162935 -g1,10932:7246811,26162935 -g1,10932:31966991,26162935 -g1,10932:31966991,26162935 -) -h1,10932:7246811,26359543:0,0,0 -(1,10936:7246811,28448889:24720180,513147,126483 -h1,10935:7246811,28448889:983040,0,0 -k1,10935:9490943,28448889:307543 -k1,10935:10995828,28448889:307542 -k1,10935:12322456,28448889:307543 -k1,10935:14871329,28448889:307542 -k1,10935:18365232,28448889:307543 -k1,10935:19397602,28448889:307542 -k1,10935:20989651,28448889:307543 -k1,10935:22316278,28448889:307542 -k1,10935:25319317,28448889:307543 -k1,10935:28299418,28448889:307543 -k1,10935:30947906,28448889:307542 -k1,10935:31966991,28448889:0 -) -(1,10936:7246811,29290377:24720180,513147,126483 -k1,10935:9408937,29290377:279277 -k1,10935:11077577,29290377:279277 -k1,10935:13406820,29290377:279277 -k1,10935:15637760,29290377:279278 -k1,10935:17359484,29290377:279277 -k1,10935:18657846,29290377:279277 -k1,10935:20435931,29290377:279277 -k1,10935:23238999,29290377:279277 -k1,10935:24471825,29290377:279277 -k1,10935:26081483,29290377:279277 -k1,10935:27176029,29290377:279278 -k1,10935:27811166,29290377:279277 -k1,10935:29836977,29290377:279277 -k1,10935:31307699,29290377:279277 -k1,10935:31966991,29290377:0 -) -(1,10936:7246811,30131865:24720180,513147,7863 -g1,10935:8465125,30131865 -k1,10936:31966991,30131865:20632700 -g1,10936:31966991,30131865 -) -v1,10938:7246811,31804711:0,393216,0 -(1,10950:7246811,36084369:24720180,4672874,196608 -g1,10950:7246811,36084369 -g1,10950:7246811,36084369 -g1,10950:7050203,36084369 -(1,10950:7050203,36084369:0,4672874,196608 -r1,11002:32163599,36084369:25113396,4869482,196608 -k1,10950:7050203,36084369:-25113396 -) -(1,10950:7050203,36084369:25113396,4672874,196608 -[1,10950:7246811,36084369:24720180,4476266,0 -(1,10940:7246811,32012329:24720180,404226,101187 -(1,10939:7246811,32012329:0,0,0 -g1,10939:7246811,32012329 -g1,10939:7246811,32012329 -g1,10939:6919131,32012329 -(1,10939:6919131,32012329:0,0,0 -) -g1,10939:7246811,32012329 -) -k1,10940:7246811,32012329:0 -h1,10940:11672850,32012329:0,0,0 -k1,10940:31966990,32012329:20294140 -g1,10940:31966990,32012329 -) -(1,10949:7246811,32744043:24720180,404226,101187 -(1,10942:7246811,32744043:0,0,0 -g1,10942:7246811,32744043 -g1,10942:7246811,32744043 -g1,10942:6919131,32744043 -(1,10942:6919131,32744043:0,0,0 -) -g1,10942:7246811,32744043 -) -g1,10949:8195248,32744043 -g1,10949:8511394,32744043 -g1,10949:8827540,32744043 -g1,10949:10724414,32744043 -h1,10949:11988997,32744043:0,0,0 -k1,10949:31966991,32744043:19977994 -g1,10949:31966991,32744043 -) -(1,10949:7246811,33410221:24720180,388497,0 -h1,10949:7246811,33410221:0,0,0 -g1,10949:8195248,33410221 -g1,10949:8827540,33410221 -g1,10949:9143686,33410221 -g1,10949:9459832,33410221 -g1,10949:9775978,33410221 -g1,10949:10092124,33410221 -g1,10949:10724416,33410221 -g1,10949:11040562,33410221 -g1,10949:11356708,33410221 -g1,10949:11672854,33410221 -h1,10949:11989000,33410221:0,0,0 -k1,10949:31966992,33410221:19977992 -g1,10949:31966992,33410221 -) -(1,10949:7246811,34076399:24720180,388497,9436 -h1,10949:7246811,34076399:0,0,0 -g1,10949:8195248,34076399 -g1,10949:8827540,34076399 -g1,10949:9143686,34076399 -g1,10949:9459832,34076399 -g1,10949:9775978,34076399 -g1,10949:10092124,34076399 -g1,10949:10724416,34076399 -g1,10949:11040562,34076399 -g1,10949:11356708,34076399 -h1,10949:11988999,34076399:0,0,0 -k1,10949:31966991,34076399:19977992 -g1,10949:31966991,34076399 -) -(1,10949:7246811,34742577:24720180,388497,9436 -h1,10949:7246811,34742577:0,0,0 -g1,10949:8195248,34742577 -g1,10949:8827540,34742577 -g1,10949:9143686,34742577 -g1,10949:9459832,34742577 -g1,10949:9775978,34742577 -g1,10949:10092124,34742577 -g1,10949:10724416,34742577 -g1,10949:11040562,34742577 -g1,10949:11356708,34742577 -g1,10949:11672854,34742577 -h1,10949:11989000,34742577:0,0,0 -k1,10949:31966992,34742577:19977992 -g1,10949:31966992,34742577 -) -(1,10949:7246811,35408755:24720180,388497,0 -h1,10949:7246811,35408755:0,0,0 -g1,10949:8195248,35408755 -g1,10949:8827540,35408755 -g1,10949:9143686,35408755 -g1,10949:9459832,35408755 -g1,10949:9775978,35408755 -g1,10949:10092124,35408755 -g1,10949:10724416,35408755 -g1,10949:11040562,35408755 -g1,10949:11356708,35408755 -h1,10949:11988999,35408755:0,0,0 -k1,10949:31966991,35408755:19977992 -g1,10949:31966991,35408755 -) -(1,10949:7246811,36074933:24720180,388497,9436 -h1,10949:7246811,36074933:0,0,0 -g1,10949:8195248,36074933 -g1,10949:8827540,36074933 -g1,10949:9143686,36074933 -g1,10949:9459832,36074933 -g1,10949:9775978,36074933 -g1,10949:10092124,36074933 -g1,10949:10724416,36074933 -g1,10949:11040562,36074933 -g1,10949:11356708,36074933 -h1,10949:11988999,36074933:0,0,0 -k1,10949:31966991,36074933:19977992 -g1,10949:31966991,36074933 -) -] -) -g1,10950:31966991,36084369 -g1,10950:7246811,36084369 -g1,10950:7246811,36084369 -g1,10950:31966991,36084369 -g1,10950:31966991,36084369 -) -h1,10950:7246811,36280977:0,0,0 -v1,10954:7246811,38960492:0,393216,0 -(1,10964:7246811,41907794:24720180,3340518,196608 -g1,10964:7246811,41907794 -g1,10964:7246811,41907794 -g1,10964:7050203,41907794 -(1,10964:7050203,41907794:0,3340518,196608 -r1,11002:32163599,41907794:25113396,3537126,196608 -k1,10964:7050203,41907794:-25113396 -) -(1,10964:7050203,41907794:25113396,3340518,196608 -[1,10964:7246811,41907794:24720180,3143910,0 -(1,10956:7246811,39168110:24720180,404226,101187 -(1,10955:7246811,39168110:0,0,0 -g1,10955:7246811,39168110 -g1,10955:7246811,39168110 -g1,10955:6919131,39168110 -(1,10955:6919131,39168110:0,0,0 -) -g1,10955:7246811,39168110 -) -k1,10956:7246811,39168110:0 -g1,10956:11988996,39168110 -h1,10956:13569725,39168110:0,0,0 -k1,10956:31966991,39168110:18397266 -g1,10956:31966991,39168110 -) -(1,10963:7246811,39899824:24720180,404226,101187 -(1,10958:7246811,39899824:0,0,0 -g1,10958:7246811,39899824 -g1,10958:7246811,39899824 -g1,10958:6919131,39899824 -(1,10958:6919131,39899824:0,0,0 -) -g1,10958:7246811,39899824 -) -g1,10963:8195248,39899824 -g1,10963:8511394,39899824 -g1,10963:8827540,39899824 -g1,10963:9143686,39899824 -g1,10963:11040560,39899824 -h1,10963:12305143,39899824:0,0,0 -k1,10963:31966991,39899824:19661848 -g1,10963:31966991,39899824 -) -(1,10963:7246811,40566002:24720180,388497,9436 -h1,10963:7246811,40566002:0,0,0 -g1,10963:8195248,40566002 -g1,10963:8827540,40566002 -g1,10963:9143686,40566002 -g1,10963:9459832,40566002 -g1,10963:9775978,40566002 -g1,10963:10092124,40566002 -g1,10963:11040561,40566002 -g1,10963:11356707,40566002 -g1,10963:11672853,40566002 -h1,10963:12305144,40566002:0,0,0 -k1,10963:31966992,40566002:19661848 -g1,10963:31966992,40566002 -) -(1,10963:7246811,41232180:24720180,388497,9436 -h1,10963:7246811,41232180:0,0,0 -g1,10963:8195248,41232180 -g1,10963:8827540,41232180 -g1,10963:9143686,41232180 -g1,10963:9459832,41232180 -g1,10963:9775978,41232180 -g1,10963:10092124,41232180 -g1,10963:11040561,41232180 -g1,10963:11356707,41232180 -g1,10963:11672853,41232180 -h1,10963:12305144,41232180:0,0,0 -k1,10963:31966992,41232180:19661848 -g1,10963:31966992,41232180 -) -(1,10963:7246811,41898358:24720180,388497,9436 -h1,10963:7246811,41898358:0,0,0 -g1,10963:8195248,41898358 -g1,10963:9143685,41898358 -g1,10963:9459831,41898358 -g1,10963:9775977,41898358 -g1,10963:10092123,41898358 -g1,10963:11040560,41898358 -g1,10963:11356706,41898358 -g1,10963:11672852,41898358 -h1,10963:12305143,41898358:0,0,0 -k1,10963:31966991,41898358:19661848 -g1,10963:31966991,41898358 -) -] -) -g1,10964:31966991,41907794 -g1,10964:7246811,41907794 -g1,10964:7246811,41907794 -g1,10964:31966991,41907794 -g1,10964:31966991,41907794 -) -h1,10964:7246811,42104402:0,0,0 -] -) -] -r1,11002:32583029,45706769:26214,39845888,0 -) -] -) -) -g1,11002:32583029,45116945 -) -] -(1,11002:32583029,45706769:0,0,0 -g1,11002:32583029,45706769 -) -) -] -(1,11002:6630773,47279633:25952256,0,0 -h1,11002:6630773,47279633:25952256,0,0 -) -] -(1,11002:4262630,4025873:0,0,0 -[1,11002:-473656,4025873:0,0,0 -(1,11002:-473656,-710413:0,0,0 -(1,11002:-473656,-710413:0,0,0 -g1,11002:-473656,-710413 -) -g1,11002:-473656,-710413 -) -] -) -] -!19243 -}205 -Input:1535:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!104 -{206 -[1,11045:4262630,47279633:28320399,43253760,0 -(1,11045:4262630,4025873:0,0,0 -[1,11045:-473656,4025873:0,0,0 -(1,11045:-473656,-710413:0,0,0 -(1,11045:-473656,-644877:0,0,0 -k1,11045:-473656,-644877:-65536 -) -(1,11045:-473656,4736287:0,0,0 -k1,11045:-473656,4736287:5209943 -) -g1,11045:-473656,-710413 -) -] -) -[1,11045:6630773,47279633:25952256,43253760,0 -[1,11045:6630773,4812305:25952256,786432,0 -(1,11045:6630773,4812305:25952256,513147,126483 -(1,11045:6630773,4812305:25952256,513147,126483 -g1,11045:3078558,4812305 -[1,11045:3078558,4812305:0,0,0 -(1,11045:3078558,2439708:0,1703936,0 -k1,11045:1358238,2439708:-1720320 -(1,10278:1358238,2439708:1720320,1703936,0 -(1,10278:1358238,2439708:1179648,16384,0 -r1,11045:2537886,2439708:1179648,16384,0 -) -g1,10278:3062174,2439708 -(1,10278:3062174,2439708:16384,1703936,0 -[1,10278:3062174,2439708:25952256,1703936,0 -(1,10278:3062174,1915420:25952256,1179648,0 -(1,10278:3062174,1915420:16384,1179648,0 -r1,11045:3078558,1915420:16384,1179648,0 -) -k1,10278:29014430,1915420:25935872 -g1,10278:29014430,1915420 -) -] -) -) -) -] -[1,11045:3078558,4812305:0,0,0 -(1,11045:3078558,2439708:0,1703936,0 -g1,11045:29030814,2439708 -g1,11045:36135244,2439708 -(1,10278:36135244,2439708:1720320,1703936,0 -(1,10278:36135244,2439708:16384,1703936,0 -[1,10278:36135244,2439708:25952256,1703936,0 -(1,10278:36135244,1915420:25952256,1179648,0 -(1,10278:36135244,1915420:16384,1179648,0 -r1,11045:36151628,1915420:16384,1179648,0 -) -k1,10278:62087500,1915420:25935872 -g1,10278:62087500,1915420 -) -] -) -g1,10278:36675916,2439708 -(1,10278:36675916,2439708:1179648,16384,0 -r1,11045:37855564,2439708:1179648,16384,0 -) -) -k1,11045:3078556,2439708:-34777008 -) -] -[1,11045:3078558,4812305:0,0,0 -(1,11045:3078558,49800853:0,16384,2228224 -k1,11045:1358238,49800853:-1720320 -(1,10278:1358238,49800853:1720320,16384,2228224 -(1,10278:1358238,49800853:1179648,16384,0 -r1,11045:2537886,49800853:1179648,16384,0 -) -g1,10278:3062174,49800853 -(1,10278:3062174,52029077:16384,1703936,0 -[1,10278:3062174,52029077:25952256,1703936,0 -(1,10278:3062174,51504789:25952256,1179648,0 -(1,10278:3062174,51504789:16384,1179648,0 -r1,11045:3078558,51504789:16384,1179648,0 -) -k1,10278:29014430,51504789:25935872 -g1,10278:29014430,51504789 -) -] -) -) -) -] -[1,11045:3078558,4812305:0,0,0 -(1,11045:3078558,49800853:0,16384,2228224 -g1,11045:29030814,49800853 -g1,11045:36135244,49800853 -(1,10278:36135244,49800853:1720320,16384,2228224 -(1,10278:36135244,52029077:16384,1703936,0 -[1,10278:36135244,52029077:25952256,1703936,0 -(1,10278:36135244,51504789:25952256,1179648,0 -(1,10278:36135244,51504789:16384,1179648,0 -r1,11045:36151628,51504789:16384,1179648,0 -) -k1,10278:62087500,51504789:25935872 -g1,10278:62087500,51504789 -) -] -) -g1,10278:36675916,49800853 -(1,10278:36675916,49800853:1179648,16384,0 -r1,11045:37855564,49800853:1179648,16384,0 -) -) -k1,11045:3078556,49800853:-34777008 -) -] -g1,11045:6630773,4812305 -g1,11045:6630773,4812305 -g1,11045:8613892,4812305 -g1,11045:9429159,4812305 -g1,11045:11686874,4812305 -k1,11045:31387652,4812305:19700778 -) -) -] -[1,11045:6630773,45706769:25952256,40108032,0 -(1,11045:6630773,45706769:25952256,40108032,0 -(1,11045:6630773,45706769:0,0,0 -g1,11045:6630773,45706769 -) -[1,11045:6630773,45706769:25952256,40108032,0 -v1,11002:6630773,6254097:0,393216,0 -(1,11002:6630773,17349920:25952256,11489039,616038 -g1,11002:6630773,17349920 -(1,11002:6630773,17349920:25952256,11489039,616038 -(1,11002:6630773,17965958:25952256,12105077,0 -[1,11002:6630773,17965958:25952256,12105077,0 -(1,11002:6630773,17939744:25952256,12078863,0 -r1,11045:6656987,17939744:26214,12078863,0 -[1,11002:6656987,17939744:25899828,12078863,0 -(1,11002:6656987,17349920:25899828,10899215,0 -[1,11002:7246811,17349920:24720180,10899215,0 -v1,10968:7246811,6843921:0,393216,0 -(1,10994:7246811,16629024:24720180,10178319,196608 -g1,10994:7246811,16629024 -g1,10994:7246811,16629024 -g1,10994:7050203,16629024 -(1,10994:7050203,16629024:0,10178319,196608 -r1,11045:32163599,16629024:25113396,10374927,196608 -k1,10994:7050203,16629024:-25113396 -) -(1,10994:7050203,16629024:25113396,10178319,196608 -[1,10994:7246811,16629024:24720180,9981711,0 -(1,10970:7246811,7051539:24720180,404226,101187 -(1,10969:7246811,7051539:0,0,0 -g1,10969:7246811,7051539 -g1,10969:7246811,7051539 -g1,10969:6919131,7051539 -(1,10969:6919131,7051539:0,0,0 -) -g1,10969:7246811,7051539 -) -g1,10970:7879103,7051539 -g1,10970:8827541,7051539 -k1,10970:8827541,7051539:0 -h1,10970:13253580,7051539:0,0,0 -k1,10970:31966992,7051539:18713412 -g1,10970:31966992,7051539 -) -(1,10979:7246811,7783253:24720180,404226,101187 -(1,10972:7246811,7783253:0,0,0 -g1,10972:7246811,7783253 -g1,10972:7246811,7783253 -g1,10972:6919131,7783253 -(1,10972:6919131,7783253:0,0,0 -) -g1,10972:7246811,7783253 -) -g1,10979:8195248,7783253 -g1,10979:8511394,7783253 -g1,10979:8827540,7783253 -g1,10979:10724414,7783253 -h1,10979:11988997,7783253:0,0,0 -k1,10979:31966991,7783253:19977994 -g1,10979:31966991,7783253 -) -(1,10979:7246811,8449431:24720180,388497,0 -h1,10979:7246811,8449431:0,0,0 -g1,10979:8195248,8449431 -g1,10979:8827540,8449431 -g1,10979:9143686,8449431 -g1,10979:9459832,8449431 -g1,10979:9775978,8449431 -g1,10979:10092124,8449431 -g1,10979:10724416,8449431 -g1,10979:11040562,8449431 -g1,10979:11356708,8449431 -g1,10979:11672854,8449431 -h1,10979:11989000,8449431:0,0,0 -k1,10979:31966992,8449431:19977992 -g1,10979:31966992,8449431 -) -(1,10979:7246811,9115609:24720180,388497,9436 -h1,10979:7246811,9115609:0,0,0 -g1,10979:8195248,9115609 -g1,10979:8827540,9115609 -g1,10979:9143686,9115609 -g1,10979:9459832,9115609 -g1,10979:9775978,9115609 -g1,10979:10092124,9115609 -g1,10979:10724416,9115609 -g1,10979:11040562,9115609 -g1,10979:11356708,9115609 -h1,10979:11988999,9115609:0,0,0 -k1,10979:31966991,9115609:19977992 -g1,10979:31966991,9115609 -) -(1,10979:7246811,9781787:24720180,388497,9436 -h1,10979:7246811,9781787:0,0,0 -g1,10979:8195248,9781787 -g1,10979:8827540,9781787 -g1,10979:9143686,9781787 -g1,10979:9459832,9781787 -g1,10979:9775978,9781787 -g1,10979:10092124,9781787 -g1,10979:10724416,9781787 -g1,10979:11040562,9781787 -g1,10979:11356708,9781787 -g1,10979:11672854,9781787 -h1,10979:11989000,9781787:0,0,0 -k1,10979:31966992,9781787:19977992 -g1,10979:31966992,9781787 -) -(1,10979:7246811,10447965:24720180,388497,0 -h1,10979:7246811,10447965:0,0,0 -g1,10979:8195248,10447965 -g1,10979:8827540,10447965 -g1,10979:9143686,10447965 -g1,10979:9459832,10447965 -g1,10979:9775978,10447965 -g1,10979:10092124,10447965 -g1,10979:10724416,10447965 -g1,10979:11040562,10447965 -g1,10979:11356708,10447965 -h1,10979:11988999,10447965:0,0,0 -k1,10979:31966991,10447965:19977992 -g1,10979:31966991,10447965 -) -(1,10979:7246811,11114143:24720180,388497,9436 -h1,10979:7246811,11114143:0,0,0 -g1,10979:8195248,11114143 -g1,10979:8827540,11114143 -g1,10979:9143686,11114143 -g1,10979:9459832,11114143 -g1,10979:9775978,11114143 -g1,10979:10092124,11114143 -g1,10979:10724416,11114143 -g1,10979:11040562,11114143 -g1,10979:11356708,11114143 -h1,10979:11988999,11114143:0,0,0 -k1,10979:31966991,11114143:19977992 -g1,10979:31966991,11114143 -) -(1,10981:7246811,12435681:24720180,404226,76021 -(1,10980:7246811,12435681:0,0,0 -g1,10980:7246811,12435681 -g1,10980:7246811,12435681 -g1,10980:6919131,12435681 -(1,10980:6919131,12435681:0,0,0 -) -g1,10980:7246811,12435681 -) -k1,10981:7246811,12435681:0 -h1,10981:9143685,12435681:0,0,0 -k1,10981:31966991,12435681:22823306 -g1,10981:31966991,12435681 -) -(1,10987:7246811,13167395:24720180,410518,9436 -(1,10983:7246811,13167395:0,0,0 -g1,10983:7246811,13167395 -g1,10983:7246811,13167395 -g1,10983:6919131,13167395 -(1,10983:6919131,13167395:0,0,0 -) -g1,10983:7246811,13167395 -) -g1,10987:8195248,13167395 -g1,10987:12621289,13167395 -g1,10987:13569726,13167395 -g1,10987:15150455,13167395 -g1,10987:16098892,13167395 -g1,10987:16415038,13167395 -g1,10987:17047330,13167395 -h1,10987:20208787,13167395:0,0,0 -k1,10987:31966991,13167395:11758204 -g1,10987:31966991,13167395 -) -(1,10987:7246811,13833573:24720180,410518,101187 -h1,10987:7246811,13833573:0,0,0 -g1,10987:8195248,13833573 -g1,10987:8511394,13833573 -g1,10987:9143686,13833573 -g1,10987:11356706,13833573 -g1,10987:12621289,13833573 -g1,10987:12937435,13833573 -g1,10987:13569727,13833573 -g1,10987:14202019,13833573 -g1,10987:14834311,13833573 -g1,10987:15466603,13833573 -g1,10987:16098895,13833573 -g1,10987:16731187,13833573 -g1,10987:17679624,13833573 -g1,10987:18628061,13833573 -g1,10987:19576498,13833573 -g1,10987:20524935,13833573 -h1,10987:21473372,13833573:0,0,0 -k1,10987:31966991,13833573:10493619 -g1,10987:31966991,13833573 -) -(1,10987:7246811,14499751:24720180,410518,31456 -h1,10987:7246811,14499751:0,0,0 -g1,10987:8195248,14499751 -g1,10987:8511394,14499751 -g1,10987:9143686,14499751 -g1,10987:10724415,14499751 -g1,10987:11356707,14499751 -g1,10987:12621290,14499751 -g1,10987:12937436,14499751 -g1,10987:13569728,14499751 -g1,10987:14518165,14499751 -g1,10987:15150457,14499751 -g1,10987:16098894,14499751 -g1,10987:17047331,14499751 -g1,10987:17995768,14499751 -g1,10987:18944205,14499751 -g1,10987:19892642,14499751 -g1,10987:20841079,14499751 -g1,10987:21789516,14499751 -h1,10987:22737953,14499751:0,0,0 -k1,10987:31966991,14499751:9229038 -g1,10987:31966991,14499751 -) -(1,10989:7246811,15821289:24720180,410518,101187 -(1,10988:7246811,15821289:0,0,0 -g1,10988:7246811,15821289 -g1,10988:7246811,15821289 -g1,10988:6919131,15821289 -(1,10988:6919131,15821289:0,0,0 -) -g1,10988:7246811,15821289 -) -k1,10989:7246811,15821289:0 -g1,10989:9775977,15821289 -g1,10989:10724414,15821289 -g1,10989:14202017,15821289 -g1,10989:14834309,15821289 -g1,10989:16098892,15821289 -g1,10989:17363475,15821289 -g1,10989:19260349,15821289 -g1,10989:20841078,15821289 -g1,10989:22737952,15821289 -k1,10989:22737952,15821289:24117 -h1,10989:25607380,15821289:0,0,0 -k1,10989:31966991,15821289:6359611 -g1,10989:31966991,15821289 -) -(1,10993:7246811,16553003:24720180,404226,76021 -(1,10991:7246811,16553003:0,0,0 -g1,10991:7246811,16553003 -g1,10991:7246811,16553003 -g1,10991:6919131,16553003 -(1,10991:6919131,16553003:0,0,0 -) -g1,10991:7246811,16553003 -) -g1,10993:8195248,16553003 -g1,10993:9459831,16553003 -h1,10993:10724414,16553003:0,0,0 -k1,10993:31966990,16553003:21242576 -g1,10993:31966990,16553003 -) -] -) -g1,10994:31966991,16629024 -g1,10994:7246811,16629024 -g1,10994:7246811,16629024 -g1,10994:31966991,16629024 -g1,10994:31966991,16629024 -) -h1,10994:7246811,16825632:0,0,0 -] -) -] -r1,11045:32583029,17939744:26214,12078863,0 -) -] -) -) -g1,11002:32583029,17349920 -) -h1,11002:6630773,17965958:0,0,0 -(1,11004:6630773,20773526:25952256,32768,229376 -(1,11004:6630773,20773526:0,32768,229376 -(1,11004:6630773,20773526:5505024,32768,229376 -r1,11045:12135797,20773526:5505024,262144,229376 -) -k1,11004:6630773,20773526:-5505024 -) -(1,11004:6630773,20773526:25952256,32768,0 -r1,11045:32583029,20773526:25952256,32768,0 -) -) -(1,11004:6630773,22377854:25952256,615776,151780 -(1,11004:6630773,22377854:1974731,568590,14155 -g1,11004:6630773,22377854 -g1,11004:8605504,22377854 -) -g1,11004:11153544,22377854 -g1,11004:12211295,22377854 -k1,11004:32583029,22377854:17805606 -g1,11004:32583029,22377854 -) -(1,11008:6630773,23612558:25952256,513147,134348 -k1,11007:8001224,23612558:173764 -k1,11007:10890800,23612558:173764 -k1,11007:11723856,23612558:173764 -k1,11007:13965936,23612558:173764 -k1,11007:14671197,23612558:173764 -k1,11007:18509734,23612558:173764 -k1,11007:19445026,23612558:173764 -k1,11007:20637876,23612558:173765 -k1,11007:23182077,23612558:173764 -k1,11007:24916909,23612558:173764 -k1,11007:25749965,23612558:173764 -k1,11007:26279589,23612558:173764 -k1,11007:29469320,23612558:173764 -k1,11007:30839771,23612558:173764 -k1,11008:32583029,23612558:0 -) -(1,11008:6630773,24454046:25952256,505283,134348 -k1,11007:7917526,24454046:178539 -k1,11007:9168233,24454046:178538 -k1,11007:10413043,24454046:178539 -k1,11007:11610666,24454046:178538 -k1,11007:13164806,24454046:178539 -k1,11007:16169912,24454046:178538 -k1,11007:18046489,24454046:178539 -k1,11007:20694425,24454046:178539 -k1,11007:22458934,24454046:178538 -k1,11007:24936476,24454046:178539 -k1,11007:25646511,24454046:178538 -k1,11007:27523088,24454046:178539 -k1,11007:29991454,24454046:178538 -k1,11007:31563944,24454046:178539 -k1,11007:32583029,24454046:0 -) -(1,11008:6630773,25295534:25952256,513147,126483 -k1,11007:8551381,25295534:267135 -k1,11007:10556531,25295534:267135 -k1,11007:13226215,25295534:267134 -k1,11007:14121185,25295534:267135 -k1,11007:15881886,25295534:267135 -k1,11007:16504881,25295534:267135 -k1,11007:19598583,25295534:267134 -k1,11007:21022428,25295534:267135 -k1,11007:22422025,25295534:267135 -k1,11007:23436926,25295534:267135 -k1,11007:26889111,25295534:267135 -k1,11007:27917773,25295534:267134 -k1,11007:28973306,25295534:267135 -k1,11007:32583029,25295534:0 -) -(1,11008:6630773,26137022:25952256,513147,134348 -k1,11007:8544374,26137022:175586 -k1,11007:9911405,26137022:175586 -k1,11007:11106076,26137022:175586 -k1,11007:12983632,26137022:175586 -k1,11007:15378922,26137022:175586 -k1,11007:16626677,26137022:175586 -k1,11007:19445984,26137022:175585 -k1,11007:22806620,26137022:175586 -k1,11007:23743734,26137022:175586 -k1,11007:27116822,26137022:175586 -k1,11007:28311493,26137022:175586 -k1,11007:30225094,26137022:175586 -k1,11007:31794631,26137022:175586 -k1,11007:32583029,26137022:0 -) -(1,11008:6630773,26978510:25952256,355205,126483 -g1,11007:8568017,26978510 -k1,11008:32583030,26978510:22053520 -g1,11008:32583030,26978510 -) -(1,11010:6630773,27819998:25952256,513147,134348 -h1,11009:6630773,27819998:983040,0,0 -k1,11009:8619690,27819998:187988 -k1,11009:9826763,27819998:187988 -k1,11009:10429584,27819998:187978 -k1,11009:13459868,27819998:187988 -k1,11009:14748861,27819998:187988 -k1,11009:16069967,27819998:187988 -k1,11009:18984909,27819998:187989 -k1,11009:21127836,27819998:187988 -k1,11009:22263475,27819998:187988 -k1,11009:24336934,27819998:187988 -k1,11009:25334293,27819998:187989 -k1,11009:29240138,27819998:187988 -k1,11009:29959623,27819998:187988 -k1,11009:32583029,27819998:0 -) -(1,11010:6630773,28661486:25952256,513147,134348 -k1,11009:7685200,28661486:186075 -k1,11009:10051659,28661486:186076 -k1,11009:11590397,28661486:186075 -k1,11009:13101610,28661486:186075 -k1,11009:14353957,28661486:186076 -k1,11009:15191460,28661486:186075 -k1,11009:19168793,28661486:186075 -k1,11009:21083053,28661486:186076 -k1,11009:23337444,28661486:186075 -k1,11009:24808026,28661486:186076 -k1,11009:25985661,28661486:186075 -k1,11009:27493597,28661486:186075 -k1,11009:28338965,28661486:186076 -k1,11009:31541007,28661486:186075 -k1,11009:32583029,28661486:0 -) -(1,11010:6630773,29502974:25952256,513147,126483 -k1,11009:9482931,29502974:190741 -(1,11009:9482931,29502974:0,452978,115847 -r1,11045:10192909,29502974:709978,568825,115847 -k1,11009:9482931,29502974:-709978 -) -(1,11009:9482931,29502974:709978,452978,115847 -k1,11009:9482931,29502974:3277 -h1,11009:10189632,29502974:0,411205,112570 -) -k1,11009:10383650,29502974:190741 -k1,11009:11105889,29502974:190742 -k1,11009:11652490,29502974:190741 -k1,11009:14600986,29502974:190741 -k1,11009:17173305,29502974:190741 -k1,11009:17980085,29502974:190742 -k1,11009:18585661,29502974:190733 -k1,11009:20170353,29502974:190741 -k1,11009:21380179,29502974:190741 -k1,11009:23251263,29502974:190741 -k1,11009:24101297,29502974:190742 -k1,11009:25311123,29502974:190741 -k1,11009:29825274,29502974:190741 -k1,11009:32583029,29502974:0 -) -(1,11010:6630773,30344462:25952256,513147,134348 -$1,11009:7210111,30344462 -k1,11009:7528004,30344462:144223 -k1,11009:8149984,30344462:144223 -k1,11009:9162559,30344462:144223 -k1,11009:10399267,30344462:144223 -k1,11009:11562575,30344462:144223 -k1,11009:13360271,30344462:144223 -k1,11009:15242509,30344462:144223 -k1,11009:16334382,30344462:144222 -k1,11009:17635315,30344462:144223 -k1,11009:18438830,30344462:144223 -k1,11009:19680781,30344462:144223 -k1,11009:22840315,30344462:144223 -k1,11009:24003623,30344462:144223 -k1,11009:26583164,30344462:144223 -k1,11009:29809545,30344462:144223 -k1,11009:32583029,30344462:0 -) -(1,11010:6630773,31185950:25952256,505283,7863 -k1,11010:32583028,31185950:23558880 -g1,11010:32583028,31185950 -) -v1,11012:6630773,32376416:0,393216,0 -(1,11039:6630773,40883881:25952256,8900681,196608 -g1,11039:6630773,40883881 -g1,11039:6630773,40883881 -g1,11039:6434165,40883881 -(1,11039:6434165,40883881:0,8900681,196608 -r1,11045:32779637,40883881:26345472,9097289,196608 -k1,11039:6434165,40883881:-26345472 -) -(1,11039:6434165,40883881:26345472,8900681,196608 -[1,11039:6630773,40883881:25952256,8704073,0 -(1,11014:6630773,32584034:25952256,404226,101187 -(1,11013:6630773,32584034:0,0,0 -g1,11013:6630773,32584034 -g1,11013:6630773,32584034 -g1,11013:6303093,32584034 -(1,11013:6303093,32584034:0,0,0 -) -g1,11013:6630773,32584034 -) -h1,11014:7263064,32584034:0,0,0 -k1,11014:32583028,32584034:25319964 -g1,11014:32583028,32584034 -) -(1,11018:6630773,33315748:25952256,404226,76021 -(1,11016:6630773,33315748:0,0,0 -g1,11016:6630773,33315748 -g1,11016:6630773,33315748 -g1,11016:6303093,33315748 -(1,11016:6303093,33315748:0,0,0 -) -g1,11016:6630773,33315748 -) -g1,11018:7579210,33315748 -g1,11018:8843793,33315748 -h1,11018:11372958,33315748:0,0,0 -k1,11018:32583030,33315748:21210072 -g1,11018:32583030,33315748 -) -(1,11020:6630773,34637286:25952256,404226,101187 -(1,11019:6630773,34637286:0,0,0 -g1,11019:6630773,34637286 -g1,11019:6630773,34637286 -g1,11019:6303093,34637286 -(1,11019:6303093,34637286:0,0,0 -) -g1,11019:6630773,34637286 -) -g1,11020:7579210,34637286 -g1,11020:8527648,34637286 -g1,11020:10740668,34637286 -h1,11020:12005251,34637286:0,0,0 -k1,11020:32583029,34637286:20577778 -g1,11020:32583029,34637286 -) -(1,11021:6630773,35303464:25952256,404226,101187 -h1,11021:6630773,35303464:0,0,0 -h1,11021:7263064,35303464:0,0,0 -k1,11021:32583028,35303464:25319964 -g1,11021:32583028,35303464 -) -(1,11025:6630773,36035178:25952256,404226,101187 -(1,11023:6630773,36035178:0,0,0 -g1,11023:6630773,36035178 -g1,11023:6630773,36035178 -g1,11023:6303093,36035178 -(1,11023:6303093,36035178:0,0,0 -) -g1,11023:6630773,36035178 -) -g1,11025:7579210,36035178 -g1,11025:8843793,36035178 -g1,11025:11056813,36035178 -h1,11025:12321396,36035178:0,0,0 -k1,11025:32583028,36035178:20261632 -g1,11025:32583028,36035178 -) -(1,11027:6630773,37356716:25952256,404226,101187 -(1,11026:6630773,37356716:0,0,0 -g1,11026:6630773,37356716 -g1,11026:6630773,37356716 -g1,11026:6303093,37356716 -(1,11026:6303093,37356716:0,0,0 -) -g1,11026:6630773,37356716 -) -k1,11027:6630773,37356716:0 -h1,11027:8527647,37356716:0,0,0 -k1,11027:32583029,37356716:24055382 -g1,11027:32583029,37356716 -) -(1,11028:6630773,38022894:25952256,404226,101187 -h1,11028:6630773,38022894:0,0,0 -h1,11028:7263064,38022894:0,0,0 -k1,11028:32583028,38022894:25319964 -g1,11028:32583028,38022894 -) -(1,11032:6630773,38754608:25952256,404226,76021 -(1,11030:6630773,38754608:0,0,0 -g1,11030:6630773,38754608 -g1,11030:6630773,38754608 -g1,11030:6303093,38754608 -(1,11030:6303093,38754608:0,0,0 -) -g1,11030:6630773,38754608 -) -g1,11032:7579210,38754608 -g1,11032:8843793,38754608 -h1,11032:11372958,38754608:0,0,0 -k1,11032:32583030,38754608:21210072 -g1,11032:32583030,38754608 -) -(1,11034:6630773,40076146:25952256,404226,101187 -(1,11033:6630773,40076146:0,0,0 -g1,11033:6630773,40076146 -g1,11033:6630773,40076146 -g1,11033:6303093,40076146 -(1,11033:6303093,40076146:0,0,0 -) -g1,11033:6630773,40076146 -) -k1,11034:6630773,40076146:0 -h1,11034:10424522,40076146:0,0,0 -k1,11034:32583030,40076146:22158508 -g1,11034:32583030,40076146 -) -(1,11038:6630773,40807860:25952256,404226,76021 -(1,11036:6630773,40807860:0,0,0 -g1,11036:6630773,40807860 -g1,11036:6630773,40807860 -g1,11036:6303093,40807860 -(1,11036:6303093,40807860:0,0,0 -) -g1,11036:6630773,40807860 -) -g1,11038:7579210,40807860 -g1,11038:8843793,40807860 -h1,11038:10108376,40807860:0,0,0 -k1,11038:32583028,40807860:22474652 -g1,11038:32583028,40807860 -) -] -) -g1,11039:32583029,40883881 -g1,11039:6630773,40883881 -g1,11039:6630773,40883881 -g1,11039:32583029,40883881 -g1,11039:32583029,40883881 -) -h1,11039:6630773,41080489:0,0,0 -(1,11043:6630773,42446265:25952256,513147,126483 -h1,11042:6630773,42446265:983040,0,0 -k1,11042:8389890,42446265:148242 -k1,11042:9557218,42446265:148243 -k1,11042:12366877,42446265:148242 -k1,11042:14544114,42446265:148242 -k1,11042:15711442,42446265:148243 -k1,11042:17032123,42446265:148242 -k1,11042:20022006,42446265:148242 -k1,11042:21161809,42446265:148243 -k1,11042:22376322,42446265:148242 -k1,11042:24906142,42446265:148242 -k1,11042:25670423,42446265:148243 -k1,11042:26837750,42446265:148242 -k1,11042:28639465,42446265:148242 -k1,11042:30787867,42446265:148243 -k1,11042:31563944,42446265:148242 -k1,11042:32583029,42446265:0 -) -(1,11043:6630773,43287753:25952256,505283,134348 -k1,11042:9504480,43287753:212290 -k1,11042:11585201,43287753:212290 -k1,11042:12665843,43287753:212290 -k1,11042:14884845,43287753:212290 -k1,11042:15452995,43287753:212290 -k1,11042:16948480,43287753:212290 -k1,11042:18841113,43287753:212290 -k1,11042:19704830,43287753:212289 -k1,11042:20272980,43287753:212290 -k1,11042:22996610,43287753:212290 -k1,11042:24077252,43287753:212290 -k1,11042:25764757,43287753:212290 -k1,11042:28010629,43287753:212290 -k1,11042:30573040,43287753:212290 -k1,11042:32583029,43287753:0 -) -(1,11043:6630773,44129241:25952256,505283,134348 -k1,11042:7855510,44129241:205652 -k1,11042:9714635,44129241:205652 -k1,11042:11920446,44129241:205652 -k1,11042:13317543,44129241:205652 -k1,11042:17748301,44129241:205652 -k1,11042:18973037,44129241:205651 -k1,11042:21420020,44129241:205652 -k1,11042:25271440,44129241:205652 -k1,11042:28983268,44129241:205652 -k1,11042:31140582,44129241:205652 -k1,11042:32583029,44129241:0 -) -(1,11043:6630773,44970729:25952256,513147,134348 -g1,11042:8718094,44970729 -g1,11042:9936408,44970729 -g1,11042:12626660,44970729 -k1,11043:32583029,44970729:16700540 -g1,11043:32583029,44970729 -) -] -(1,11045:32583029,45706769:0,0,0 -g1,11045:32583029,45706769 -) -) -] -(1,11045:6630773,47279633:25952256,0,0 -h1,11045:6630773,47279633:25952256,0,0 -) -] -(1,11045:4262630,4025873:0,0,0 -[1,11045:-473656,4025873:0,0,0 -(1,11045:-473656,-710413:0,0,0 -(1,11045:-473656,-710413:0,0,0 -g1,11045:-473656,-710413 -) -g1,11045:-473656,-710413 -) -] -) -] -!21815 -}206 -!12 -{207 -[1,11088:4262630,47279633:28320399,43253760,0 -(1,11088:4262630,4025873:0,0,0 -[1,11088:-473656,4025873:0,0,0 -(1,11088:-473656,-710413:0,0,0 -(1,11088:-473656,-644877:0,0,0 -k1,11088:-473656,-644877:-65536 -) -(1,11088:-473656,4736287:0,0,0 -k1,11088:-473656,4736287:5209943 -) -g1,11088:-473656,-710413 -) -] -) -[1,11088:6630773,47279633:25952256,43253760,0 -[1,11088:6630773,4812305:25952256,786432,0 -(1,11088:6630773,4812305:25952256,505283,134348 -(1,11088:6630773,4812305:25952256,505283,134348 -g1,11088:3078558,4812305 -[1,11088:3078558,4812305:0,0,0 -(1,11088:3078558,2439708:0,1703936,0 -k1,11088:1358238,2439708:-1720320 -(1,10278:1358238,2439708:1720320,1703936,0 -(1,10278:1358238,2439708:1179648,16384,0 -r1,11088:2537886,2439708:1179648,16384,0 -) -g1,10278:3062174,2439708 -(1,10278:3062174,2439708:16384,1703936,0 -[1,10278:3062174,2439708:25952256,1703936,0 -(1,10278:3062174,1915420:25952256,1179648,0 -(1,10278:3062174,1915420:16384,1179648,0 -r1,11088:3078558,1915420:16384,1179648,0 -) -k1,10278:29014430,1915420:25935872 -g1,10278:29014430,1915420 -) -] -) -) -) -] -[1,11088:3078558,4812305:0,0,0 -(1,11088:3078558,2439708:0,1703936,0 -g1,11088:29030814,2439708 -g1,11088:36135244,2439708 -(1,10278:36135244,2439708:1720320,1703936,0 -(1,10278:36135244,2439708:16384,1703936,0 -[1,10278:36135244,2439708:25952256,1703936,0 -(1,10278:36135244,1915420:25952256,1179648,0 -(1,10278:36135244,1915420:16384,1179648,0 -r1,11088:36151628,1915420:16384,1179648,0 -) -k1,10278:62087500,1915420:25935872 -g1,10278:62087500,1915420 -) -] -) -g1,10278:36675916,2439708 -(1,10278:36675916,2439708:1179648,16384,0 -r1,11088:37855564,2439708:1179648,16384,0 -) -) -k1,11088:3078556,2439708:-34777008 -) -] -[1,11088:3078558,4812305:0,0,0 -(1,11088:3078558,49800853:0,16384,2228224 -k1,11088:1358238,49800853:-1720320 -(1,10278:1358238,49800853:1720320,16384,2228224 -(1,10278:1358238,49800853:1179648,16384,0 -r1,11088:2537886,49800853:1179648,16384,0 -) -g1,10278:3062174,49800853 -(1,10278:3062174,52029077:16384,1703936,0 -[1,10278:3062174,52029077:25952256,1703936,0 -(1,10278:3062174,51504789:25952256,1179648,0 -(1,10278:3062174,51504789:16384,1179648,0 -r1,11088:3078558,51504789:16384,1179648,0 -) -k1,10278:29014430,51504789:25935872 -g1,10278:29014430,51504789 -) -] -) -) -) -] -[1,11088:3078558,4812305:0,0,0 -(1,11088:3078558,49800853:0,16384,2228224 -g1,11088:29030814,49800853 -g1,11088:36135244,49800853 -(1,10278:36135244,49800853:1720320,16384,2228224 -(1,10278:36135244,52029077:16384,1703936,0 -[1,10278:36135244,52029077:25952256,1703936,0 -(1,10278:36135244,51504789:25952256,1179648,0 -(1,10278:36135244,51504789:16384,1179648,0 -r1,11088:36151628,51504789:16384,1179648,0 -) -k1,10278:62087500,51504789:25935872 -g1,10278:62087500,51504789 -) -] -) -g1,10278:36675916,49800853 -(1,10278:36675916,49800853:1179648,16384,0 -r1,11088:37855564,49800853:1179648,16384,0 -) -) -k1,11088:3078556,49800853:-34777008 -) -] -g1,11088:6630773,4812305 -k1,11088:20781963,4812305:12955813 -g1,11088:22168704,4812305 -g1,11088:22817510,4812305 -g1,11088:26131665,4812305 -g1,11088:28614824,4812305 -g1,11088:30094627,4812305 -) -) -] -[1,11088:6630773,45706769:25952256,40108032,0 -(1,11088:6630773,45706769:25952256,40108032,0 -(1,11088:6630773,45706769:0,0,0 -g1,11088:6630773,45706769 -) -[1,11088:6630773,45706769:25952256,40108032,0 -v1,11045:6630773,6254097:0,393216,0 -(1,11067:6630773,13374488:25952256,7513607,196608 -g1,11067:6630773,13374488 -g1,11067:6630773,13374488 -g1,11067:6434165,13374488 -(1,11067:6434165,13374488:0,7513607,196608 -r1,11088:32779637,13374488:26345472,7710215,196608 -k1,11067:6434165,13374488:-26345472 -) -(1,11067:6434165,13374488:26345472,7513607,196608 -[1,11067:6630773,13374488:25952256,7316999,0 -(1,11047:6630773,6461715:25952256,404226,101187 -(1,11046:6630773,6461715:0,0,0 -g1,11046:6630773,6461715 -g1,11046:6630773,6461715 -g1,11046:6303093,6461715 -(1,11046:6303093,6461715:0,0,0 -) -g1,11046:6630773,6461715 -) -g1,11047:8843793,6461715 -g1,11047:9792231,6461715 -g1,11047:13269834,6461715 -h1,11047:14534417,6461715:0,0,0 -k1,11047:32583029,6461715:18048612 -g1,11047:32583029,6461715 -) -(1,11048:6630773,7127893:25952256,404226,101187 -h1,11048:6630773,7127893:0,0,0 -h1,11048:8527647,7127893:0,0,0 -k1,11048:32583029,7127893:24055382 -g1,11048:32583029,7127893 -) -(1,11052:6630773,7859607:25952256,404226,101187 -(1,11050:6630773,7859607:0,0,0 -g1,11050:6630773,7859607 -g1,11050:6630773,7859607 -g1,11050:6303093,7859607 -(1,11050:6303093,7859607:0,0,0 -) -g1,11050:6630773,7859607 -) -g1,11052:7579210,7859607 -g1,11052:8843793,7859607 -g1,11052:12321396,7859607 -h1,11052:13585979,7859607:0,0,0 -k1,11052:32583029,7859607:18997050 -g1,11052:32583029,7859607 -) -(1,11054:6630773,9181145:25952256,404226,101187 -(1,11053:6630773,9181145:0,0,0 -g1,11053:6630773,9181145 -g1,11053:6630773,9181145 -g1,11053:6303093,9181145 -(1,11053:6303093,9181145:0,0,0 -) -g1,11053:6630773,9181145 -) -g1,11054:8843793,9181145 -g1,11054:9792231,9181145 -g1,11054:12005251,9181145 -h1,11054:13269834,9181145:0,0,0 -k1,11054:32583030,9181145:19313196 -g1,11054:32583030,9181145 -) -(1,11055:6630773,9847323:25952256,404226,101187 -h1,11055:6630773,9847323:0,0,0 -h1,11055:8527647,9847323:0,0,0 -k1,11055:32583029,9847323:24055382 -g1,11055:32583029,9847323 -) -(1,11059:6630773,10579037:25952256,404226,101187 -(1,11057:6630773,10579037:0,0,0 -g1,11057:6630773,10579037 -g1,11057:6630773,10579037 -g1,11057:6303093,10579037 -(1,11057:6303093,10579037:0,0,0 -) -g1,11057:6630773,10579037 -) -g1,11059:7579210,10579037 -g1,11059:8843793,10579037 -g1,11059:11056813,10579037 -h1,11059:12321396,10579037:0,0,0 -k1,11059:32583028,10579037:20261632 -g1,11059:32583028,10579037 -) -(1,11061:6630773,11900575:25952256,404226,101187 -(1,11060:6630773,11900575:0,0,0 -g1,11060:6630773,11900575 -g1,11060:6630773,11900575 -g1,11060:6303093,11900575 -(1,11060:6303093,11900575:0,0,0 -) -g1,11060:6630773,11900575 -) -k1,11061:6630773,11900575:0 -h1,11061:9792229,11900575:0,0,0 -k1,11061:32583029,11900575:22790800 -g1,11061:32583029,11900575 -) -(1,11062:6630773,12566753:25952256,404226,101187 -h1,11062:6630773,12566753:0,0,0 -k1,11062:6630773,12566753:0 -h1,11062:11689104,12566753:0,0,0 -k1,11062:32583028,12566753:20893924 -g1,11062:32583028,12566753 -) -(1,11066:6630773,13298467:25952256,404226,76021 -(1,11064:6630773,13298467:0,0,0 -g1,11064:6630773,13298467 -g1,11064:6630773,13298467 -g1,11064:6303093,13298467 -(1,11064:6303093,13298467:0,0,0 -) -g1,11064:6630773,13298467 -) -g1,11066:7579210,13298467 -g1,11066:8843793,13298467 -h1,11066:10424521,13298467:0,0,0 -k1,11066:32583029,13298467:22158508 -g1,11066:32583029,13298467 -) -] -) -g1,11067:32583029,13374488 -g1,11067:6630773,13374488 -g1,11067:6630773,13374488 -g1,11067:32583029,13374488 -g1,11067:32583029,13374488 -) -h1,11067:6630773,13571096:0,0,0 -(1,11071:6630773,14936872:25952256,513147,134348 -h1,11070:6630773,14936872:983040,0,0 -k1,11070:8674571,14936872:158327 -k1,11070:12059892,14936872:158328 -k1,11070:15427517,14936872:158327 -k1,11070:17247837,14936872:158327 -k1,11070:18057593,14936872:158328 -k1,11070:21475025,14936872:158327 -k1,11070:22164849,14936872:158327 -k1,11070:23607682,14936872:158327 -k1,11070:24180812,14936872:158287 -k1,11070:27249593,14936872:158327 -k1,11070:29368758,14936872:158328 -k1,11070:30293201,14936872:158327 -k1,11070:32583029,14936872:0 -) -(1,11071:6630773,15778360:25952256,513147,134348 -k1,11070:8907645,15778360:266883 -k1,11070:9530388,15778360:266883 -k1,11070:13311310,15778360:266882 -k1,11070:14972144,15778360:266883 -k1,11070:16258112,15778360:266883 -k1,11070:18178468,15778360:266883 -k1,11070:20183365,15778360:266882 -k1,11070:21136410,15778360:266883 -k1,11070:22422378,15778360:266883 -k1,11070:25269413,15778360:266883 -k1,11070:27315597,15778360:266882 -k1,11070:28963324,15778360:266883 -k1,11070:31298523,15778360:266883 -k1,11070:32583029,15778360:0 -) -(1,11071:6630773,16619848:25952256,513147,134348 -k1,11070:8605794,16619848:276983 -k1,11070:9751130,16619848:276984 -k1,11070:11756297,16619848:276983 -k1,11070:12389140,16619848:276983 -k1,11070:14404139,16619848:276984 -k1,11070:17062700,16619848:276983 -k1,11070:17955722,16619848:276984 -k1,11070:18588565,16619848:276983 -k1,11070:21619371,16619848:276983 -k1,11070:22684753,16619848:276984 -k1,11070:26043894,16619848:276983 -k1,11070:26936915,16619848:276983 -k1,11070:28232984,16619848:276984 -k1,11070:31090119,16619848:276983 -k1,11070:32583029,16619848:0 -) -(1,11071:6630773,17461336:25952256,505283,134348 -k1,11070:7932373,17461336:235329 -k1,11070:9146154,17461336:235328 -k1,11070:13229102,17461336:235329 -k1,11070:14536599,17461336:235328 -k1,11070:17272782,17461336:235329 -k1,11070:18883712,17461336:235329 -k1,11070:21338744,17461336:235328 -k1,11070:22765518,17461336:235329 -k1,11070:24199500,17461336:235328 -k1,11070:27619879,17461336:235329 -k1,11070:29590600,17461336:235328 -k1,11070:30845014,17461336:235329 -k1,11070:32583029,17461336:0 -) -(1,11071:6630773,18302824:25952256,513147,134348 -g1,11070:9600864,18302824 -g1,11070:10561621,18302824 -g1,11070:14411205,18302824 -g1,11070:15629519,18302824 -g1,11070:17566763,18302824 -g1,11070:18425284,18302824 -g1,11070:19643598,18302824 -g1,11070:22422979,18302824 -g1,11070:25375375,18302824 -g1,11070:26336132,18302824 -g1,11070:27707800,18302824 -k1,11071:32583029,18302824:2628655 -g1,11071:32583029,18302824 -) -(1,11073:6630773,19144312:25952256,513147,134348 -h1,11072:6630773,19144312:983040,0,0 -k1,11072:8332289,19144312:240719 -k1,11072:9745447,19144312:240719 -k1,11072:12896619,19144312:240718 -k1,11072:15098175,19144312:240719 -k1,11072:17628722,19144312:240719 -k1,11072:19263392,19144312:240719 -k1,11072:20523195,19144312:240718 -k1,11072:22417387,19144312:240719 -k1,11072:24569791,19144312:240719 -k1,11072:26244438,19144312:240719 -k1,11072:28370627,19144312:240718 -k1,11072:29768056,19144312:240719 -k1,11072:30540272,19144312:240719 -k1,11072:32583029,19144312:0 -) -(1,11073:6630773,19985800:25952256,513147,134348 -k1,11072:9524641,19985800:191819 -k1,11072:10525830,19985800:191819 -k1,11072:11736733,19985800:191818 -k1,11072:13667878,19985800:191819 -k1,11072:14475735,19985800:191819 -k1,11072:16553025,19985800:191819 -k1,11072:17763928,19985800:191818 -k1,11072:20866201,19985800:191819 -k1,11072:22562071,19985800:191819 -k1,11072:25669587,19985800:191819 -k1,11072:26690435,19985800:191818 -k1,11072:28611749,19985800:191819 -k1,11072:31966991,19985800:191819 -k1,11072:32583029,19985800:0 -) -(1,11073:6630773,20827288:25952256,513147,134348 -k1,11072:8284481,20827288:160142 -k1,11072:10315676,20827288:160142 -k1,11072:11091856,20827288:160142 -k1,11072:13413374,20827288:160141 -k1,11072:14105013,20827288:160142 -k1,11072:15600123,20827288:160142 -k1,11072:16411693,20827288:160142 -k1,11072:17664320,20827288:160142 -k1,11072:18843547,20827288:160142 -k1,11072:21783726,20827288:160142 -k1,11072:24012183,20827288:160141 -k1,11072:25119976,20827288:160142 -k1,11072:27370061,20827288:160142 -k1,11072:28996899,20827288:160142 -k1,11073:32583029,20827288:0 -k1,11073:32583029,20827288:0 -) -(1,11074:6630773,23634856:25952256,32768,229376 -(1,11074:6630773,23634856:0,32768,229376 -(1,11074:6630773,23634856:5505024,32768,229376 -r1,11088:12135797,23634856:5505024,262144,229376 -) -k1,11074:6630773,23634856:-5505024 -) -(1,11074:6630773,23634856:25952256,32768,0 -r1,11088:32583029,23634856:25952256,32768,0 -) -) -(1,11074:6630773,25239184:25952256,606339,161218 -(1,11074:6630773,25239184:1974731,582746,14155 -g1,11074:6630773,25239184 -g1,11074:8605504,25239184 -) -g1,11074:11813360,25239184 -k1,11074:32583030,25239184:17773364 -g1,11074:32583030,25239184 -) -(1,11077:6630773,26473888:25952256,513147,134348 -k1,11076:7747687,26473888:214483 -k1,11076:10651768,26473888:214483 -k1,11076:14238077,26473888:214482 -k1,11076:15111852,26473888:214483 -k1,11076:20170101,26473888:214483 -k1,11076:24736830,26473888:214483 -k1,11076:25567350,26473888:214482 -k1,11076:26196661,26473888:214468 -k1,11076:26942641,26473888:214483 -k1,11076:29522973,26473888:214482 -k1,11076:30756541,26473888:214483 -k1,11076:32583029,26473888:0 -) -(1,11077:6630773,27315376:25952256,513147,134348 -k1,11076:7568108,27315376:278043 -k1,11076:9049392,27315376:278043 -k1,11076:11083145,27315376:278043 -k1,11076:12403210,27315376:278043 -k1,11076:13700338,27315376:278043 -k1,11076:19413282,27315376:278043 -k1,11076:21245839,27315376:278043 -k1,11076:21879742,27315376:278043 -k1,11076:23779146,27315376:278043 -k1,11076:28712211,27315376:278043 -k1,11076:29657410,27315376:278043 -k1,11076:30350217,27315376:277964 -k1,11076:32583029,27315376:0 -) -(1,11077:6630773,28156864:25952256,513147,102891 -k1,11076:7959516,28156864:224461 -k1,11076:8931742,28156864:224460 -k1,11076:11307095,28156864:224461 -k1,11076:12998252,28156864:224461 -k1,11076:13688673,28156864:224460 -k1,11076:14675318,28156864:224461 -k1,11076:15582663,28156864:224460 -k1,11076:16899609,28156864:224461 -k1,11076:18616980,28156864:224461 -k1,11076:19907711,28156864:224460 -k1,11076:22188036,28156864:224461 -k1,11076:23063925,28156864:224461 -k1,11076:25217765,28156864:224460 -k1,11076:26725421,28156864:224461 -k1,11076:29356363,28156864:224460 -k1,11076:30961668,28156864:224461 -k1,11076:32583029,28156864:0 -) -(1,11077:6630773,28998352:25952256,505283,134348 -k1,11076:10235102,28998352:186626 -k1,11076:10953225,28998352:186626 -k1,11076:12688468,28998352:186627 -k1,11076:13743446,28998352:186626 -k1,11076:16419129,28998352:186626 -k1,11076:17221793,28998352:186626 -k1,11076:18611661,28998352:186627 -k1,11076:21389581,28998352:186626 -k1,11076:23832612,28998352:186626 -k1,11076:25931579,28998352:186626 -k1,11076:28787487,28998352:186627 -k1,11076:29590151,28998352:186626 -k1,11076:31563944,28998352:186626 -k1,11076:32583029,28998352:0 -) -(1,11077:6630773,29839840:25952256,513147,134348 -k1,11076:9651192,29839840:258076 -k1,11076:11464436,29839840:258075 -k1,11076:14298732,29839840:258076 -k1,11076:17340777,29839840:258076 -k1,11076:18790298,29839840:258076 -k1,11076:20378754,29839840:258075 -k1,11076:21288258,29839840:258076 -k1,11076:22638819,29839840:258076 -k1,11076:24535950,29839840:258076 -k1,11076:25410063,29839840:258075 -k1,11076:26082923,29839840:258017 -k1,11076:29425123,29839840:258076 -k1,11076:30725220,29839840:258075 -k1,11076:31753999,29839840:258076 -k1,11077:32583029,29839840:0 -) -(1,11077:6630773,30681328:25952256,513147,134348 -k1,11076:8761050,30681328:269710 -k1,11076:12175178,30681328:269711 -k1,11076:13104180,30681328:269710 -k1,11076:14392975,30681328:269710 -k1,11076:16972830,30681328:269711 -k1,11076:19249252,30681328:269710 -k1,11076:21869084,30681328:269711 -k1,11076:23157879,30681328:269710 -k1,11076:25339930,30681328:269710 -k1,11076:28732432,30681328:269711 -k1,11076:29451719,30681328:269710 -k1,11076:32583029,30681328:0 -) -(1,11077:6630773,31522816:25952256,505283,134348 -g1,11076:8630931,31522816 -g1,11076:10021605,31522816 -g1,11076:13309546,31522816 -g1,11076:13958352,31522816 -g1,11076:17577250,31522816 -k1,11077:32583029,31522816:13031179 -g1,11077:32583029,31522816 -) -(1,11079:6630773,32364304:25952256,513147,134348 -h1,11078:6630773,32364304:983040,0,0 -k1,11078:9026709,32364304:216209 -k1,11078:13374963,32364304:216209 -k1,11078:14250465,32364304:216210 -k1,11078:17377128,32364304:216209 -k1,11078:18124834,32364304:216209 -k1,11078:21860326,32364304:216209 -k1,11078:25166558,32364304:216209 -k1,11078:25998805,32364304:216209 -k1,11078:27234100,32364304:216210 -k1,11078:29032348,32364304:216209 -k1,11078:29698134,32364304:216209 -k1,11079:32583029,32364304:0 -) -(1,11079:6630773,33205792:25952256,513147,134348 -k1,11078:9947194,33205792:185111 -k1,11078:11933233,33205792:185110 -k1,11078:13309789,33205792:185111 -k1,11078:14265603,33205792:185111 -k1,11078:17140311,33205792:185110 -k1,11078:20935145,33205792:185111 -k1,11078:21787411,33205792:185110 -k1,11078:22387351,33205792:185097 -k1,11078:24140083,33205792:185111 -k1,11078:25344278,33205792:185110 -k1,11078:29881635,33205792:185111 -k1,11079:32583029,33205792:0 -) -(1,11079:6630773,34047280:25952256,505283,134348 -k1,11078:7942268,34047280:148886 -k1,11078:8622650,34047280:148885 -k1,11078:10466297,34047280:148886 -k1,11078:11231220,34047280:148885 -k1,11078:12399191,34047280:148886 -k1,11078:14130115,34047280:148885 -k1,11078:17401792,34047280:148886 -k1,11078:18000255,34047280:148886 -k1,11078:21280450,34047280:148885 -k1,11078:23404237,34047280:149187 -k1,11078:24749809,34047280:148885 -k1,11078:26480734,34047280:148886 -k1,11078:29718331,34047280:148885 -k1,11078:30316794,34047280:148886 -k1,11079:32583029,34047280:0 -) -(1,11079:6630773,34888768:25952256,505283,134348 -g1,11078:8196428,34888768 -g1,11078:10196586,34888768 -g1,11078:12447092,34888768 -g1,11078:14113017,34888768 -k1,11079:32583029,34888768:15655896 -g1,11079:32583029,34888768 -) -] -(1,11088:32583029,45706769:0,0,0 -g1,11088:32583029,45706769 -) -) -] -(1,11088:6630773,47279633:25952256,0,0 -h1,11088:6630773,47279633:25952256,0,0 -) -] -(1,11088:4262630,4025873:0,0,0 -[1,11088:-473656,4025873:0,0,0 -(1,11088:-473656,-710413:0,0,0 -(1,11088:-473656,-710413:0,0,0 -g1,11088:-473656,-710413 -) -g1,11088:-473656,-710413 -) -] -) -] -!16729 -}207 -!12 -{208 -[1,11105:4262630,47279633:28320399,43253760,11795 -(1,11105:4262630,4025873:0,0,0 -[1,11105:-473656,4025873:0,0,0 -(1,11105:-473656,-710413:0,0,0 -(1,11105:-473656,-644877:0,0,0 -k1,11105:-473656,-644877:-65536 -) -(1,11105:-473656,4736287:0,0,0 -k1,11105:-473656,4736287:5209943 -) -g1,11105:-473656,-710413 -) -] -) -[1,11105:6630773,47279633:25952256,43253760,11795 -[1,11105:6630773,4812305:25952256,786432,0 -(1,11105:6630773,4812305:25952256,0,0 -(1,11105:6630773,4812305:25952256,0,0 -g1,11105:3078558,4812305 -[1,11105:3078558,4812305:0,0,0 -(1,11105:3078558,2439708:0,1703936,0 -k1,11105:1358238,2439708:-1720320 -(1,11088:1358238,2439708:1720320,1703936,0 -(1,11088:1358238,2439708:1179648,16384,0 -r1,11105:2537886,2439708:1179648,16384,0 -) -g1,11088:3062174,2439708 -(1,11088:3062174,2439708:16384,1703936,0 -[1,11088:3062174,2439708:25952256,1703936,0 -(1,11088:3062174,1915420:25952256,1179648,0 -(1,11088:3062174,1915420:16384,1179648,0 -r1,11105:3078558,1915420:16384,1179648,0 -) -k1,11088:29014430,1915420:25935872 -g1,11088:29014430,1915420 -) -] -) -) -) -] -[1,11105:3078558,4812305:0,0,0 -(1,11105:3078558,2439708:0,1703936,0 -g1,11105:29030814,2439708 -g1,11105:36135244,2439708 -(1,11088:36135244,2439708:1720320,1703936,0 -(1,11088:36135244,2439708:16384,1703936,0 -[1,11088:36135244,2439708:25952256,1703936,0 -(1,11088:36135244,1915420:25952256,1179648,0 -(1,11088:36135244,1915420:16384,1179648,0 -r1,11105:36151628,1915420:16384,1179648,0 -) -k1,11088:62087500,1915420:25935872 -g1,11088:62087500,1915420 -) -] -) -g1,11088:36675916,2439708 -(1,11088:36675916,2439708:1179648,16384,0 -r1,11105:37855564,2439708:1179648,16384,0 -) -) -k1,11105:3078556,2439708:-34777008 -) -] -[1,11105:3078558,4812305:0,0,0 -(1,11105:3078558,49800853:0,16384,2228224 -k1,11105:1358238,49800853:-1720320 -(1,11088:1358238,49800853:1720320,16384,2228224 -(1,11088:1358238,49800853:1179648,16384,0 -r1,11105:2537886,49800853:1179648,16384,0 -) -g1,11088:3062174,49800853 -(1,11088:3062174,52029077:16384,1703936,0 -[1,11088:3062174,52029077:25952256,1703936,0 -(1,11088:3062174,51504789:25952256,1179648,0 -(1,11088:3062174,51504789:16384,1179648,0 -r1,11105:3078558,51504789:16384,1179648,0 -) -k1,11088:29014430,51504789:25935872 -g1,11088:29014430,51504789 -) -] -) -) -) -] -[1,11105:3078558,4812305:0,0,0 -(1,11105:3078558,49800853:0,16384,2228224 -g1,11105:29030814,49800853 -g1,11105:36135244,49800853 -(1,11088:36135244,49800853:1720320,16384,2228224 -(1,11088:36135244,52029077:16384,1703936,0 -[1,11088:36135244,52029077:25952256,1703936,0 -(1,11088:36135244,51504789:25952256,1179648,0 -(1,11088:36135244,51504789:16384,1179648,0 -r1,11105:36151628,51504789:16384,1179648,0 -) -k1,11088:62087500,51504789:25935872 -g1,11088:62087500,51504789 -) -] -) -g1,11088:36675916,49800853 -(1,11088:36675916,49800853:1179648,16384,0 -r1,11105:37855564,49800853:1179648,16384,0 -) -) -k1,11105:3078556,49800853:-34777008 -) -] -g1,11105:6630773,4812305 -) -) -] -[1,11105:6630773,45706769:25952256,40108032,0 -(1,11105:6630773,45706769:25952256,40108032,0 -(1,11105:6630773,45706769:0,0,0 -g1,11105:6630773,45706769 -) -[1,11105:6630773,45706769:25952256,40108032,0 -[1,11088:6630773,11663733:25952256,6064996,0 -(1,11088:6630773,6633157:25952256,1165492,28311 -h1,11088:6630773,6633157:0,0,0 -k1,11088:20096848,6633157:12486181 -k1,11088:32583029,6633157:12486181 -) -(1,11088:6630773,7333093:25952256,32768,229376 -(1,11088:6630773,7333093:0,32768,229376 -(1,11088:6630773,7333093:5505024,32768,229376 -r1,11105:12135797,7333093:5505024,262144,229376 -) -k1,11088:6630773,7333093:-5505024 -) -(1,11088:6630773,7333093:25952256,32768,0 -r1,11105:32583029,7333093:25952256,32768,0 -) -) -(1,11088:6630773,9128789:25952256,923664,241827 -h1,11088:6630773,9128789:0,0,0 -g1,11088:9448952,9128789 -g1,11088:15807255,9128789 -g1,11088:17274737,9128789 -k1,11088:26214110,9128789:6368920 -k1,11088:32583029,9128789:6368919 -) -(1,11088:6630773,9828725:25952256,32768,0 -(1,11088:6630773,9828725:5505024,32768,0 -r1,11105:12135797,9828725:5505024,32768,0 -) -k1,11088:22359413,9828725:10223616 -k1,11088:32583029,9828725:10223616 -) -] -(1,11090:6630773,14556498:25952256,131072,0 -r1,11105:32583029,14556498:25952256,131072,0 -g1,11090:32583029,14556498 -g1,11090:32583029,14556498 -) -(1,11092:6630773,15876399:25952256,513147,134348 -k1,11092:8596853,15876399:1966080 -k1,11091:12214495,15876399:238606 -k1,11091:15816408,15876399:238605 -k1,11091:16671052,15876399:238606 -k1,11091:18297711,15876399:238606 -k1,11091:19483967,15876399:238605 -k1,11091:22551107,15876399:238606 -k1,11091:23145573,15876399:238606 -k1,11091:24483872,15876399:238605 -k1,11091:25373906,15876399:238606 -k1,11091:25968372,15876399:238606 -k1,11091:29076143,15876399:238605 -k1,11091:29846246,15876399:238606 -k1,11091:32583029,15876399:1966080 -) -(1,11092:6630773,16717887:25952256,513147,134348 -k1,11092:8596853,16717887:1966080 -k1,11091:10057351,16717887:246116 -k1,11091:12436710,16717887:246162 -k1,11091:13954271,16717887:246163 -k1,11091:17315359,16717887:246162 -k1,11091:18093019,16717887:246163 -k1,11091:19623688,16717887:246163 -k1,11091:21084185,16717887:246115 -k1,11091:22431353,16717887:246163 -k1,11091:27629415,16717887:246162 -k1,11091:29256422,16717887:246163 -k1,11092:32583029,16717887:1966080 -) -(1,11092:6630773,17559375:25952256,513147,134348 -k1,11092:8596853,17559375:1966080 -k1,11091:12095619,17559375:207548 -k1,11091:14349201,17559375:207548 -k1,11091:14912609,17559375:207548 -k1,11091:15976713,17559375:207548 -k1,11091:16843554,17559375:207549 -k1,11091:19043396,17559375:207548 -k1,11091:21880904,17559375:207548 -k1,11091:22704490,17559375:207548 -k1,11091:24126412,17559375:207540 -k1,11091:25618466,17559375:207548 -k1,11091:26817574,17559375:207548 -k1,11091:28091393,17559375:207548 -k1,11091:28914979,17559375:207548 -k1,11091:32583029,17559375:1966080 -) -(1,11092:6630773,18400863:25952256,505283,134348 -g1,11092:8596853,18400863 -k1,11092:30616949,18400863:18673828 -g1,11092:32583029,18400863 -) -(1,11093:6630773,20028783:25952256,505283,95026 -k1,11093:25716823,20028783:19086050 -h1,11093:25716823,20028783:0,0,0 -g1,11093:28120028,20028783 -g1,11093:28769489,20028783 -g1,11093:30616949,20028783 -g1,11093:32583029,20028783 -) -(1,11094:6630773,20870271:25952256,485622,126483 -k1,11094:26098897,20870271:19468124 -h1,11093:26098897,20870271:0,0,0 -g1,11093:26657919,20870271 -g1,11093:29023112,20870271 -g1,11094:30616948,20870271 -g1,11094:32583028,20870271 -) -(1,11094:6630773,22104975:25952256,131072,0 -r1,11105:32583029,22104975:25952256,131072,0 -g1,11094:32583029,22104975 -g1,11094:34549109,22104975 -) -(1,11098:6630773,24912543:25952256,32768,229376 -(1,11098:6630773,24912543:0,32768,229376 -(1,11098:6630773,24912543:5505024,32768,229376 -r1,11105:12135797,24912543:5505024,262144,229376 -) -k1,11098:6630773,24912543:-5505024 -) -(1,11098:6630773,24912543:25952256,32768,0 -r1,11105:32583029,24912543:25952256,32768,0 -) -) -(1,11098:6630773,26516871:25952256,615776,151780 -(1,11098:6630773,26516871:1974731,582746,14155 -g1,11098:6630773,26516871 -g1,11098:8605504,26516871 -) -g1,11098:10904245,26516871 -g1,11098:11961996,26516871 -g1,11098:13695292,26516871 -k1,11098:32583029,26516871:15886712 -g1,11098:32583029,26516871 -) -(1,11101:6630773,27751575:25952256,513147,134348 -k1,11100:8347431,27751575:284041 -k1,11100:9046231,27751575:283957 -k1,11100:10521717,27751575:284041 -k1,11100:11824844,27751575:284042 -k1,11100:16663637,27751575:284041 -k1,11100:20020006,27751575:284041 -k1,11100:23214502,27751575:284042 -k1,11100:26443076,27751575:284041 -k1,11100:27488646,27751575:284042 -k1,11100:30245360,27751575:284041 -k1,11100:32583029,27751575:0 -) -(1,11101:6630773,28593063:25952256,513147,134348 -k1,11100:8577907,28593063:195357 -k1,11100:11799062,28593063:195358 -k1,11100:12942070,28593063:195357 -k1,11100:17373019,28593063:195357 -k1,11100:19131410,28593063:195357 -k1,11100:20523455,28593063:195358 -k1,11100:21133651,28593063:195353 -k1,11100:25110435,28593063:195357 -k1,11100:27976384,28593063:195357 -k1,11100:28527602,28593063:195358 -k1,11100:31648486,28593063:195357 -k1,11100:32583029,28593063:0 -) -(1,11101:6630773,29434551:25952256,513147,126483 -k1,11100:7499423,29434551:209358 -k1,11100:10734577,29434551:209357 -k1,11100:12135380,29434551:209358 -k1,11100:15421653,29434551:209358 -k1,11100:16915516,29434551:209357 -k1,11100:18806528,29434551:209358 -k1,11100:19782001,29434551:209357 -k1,11100:21010444,29434551:209358 -k1,11100:22940777,29434551:209358 -k1,11100:24539497,29434551:209357 -k1,11100:29004763,29434551:209358 -k1,11100:32583029,29434551:0 -) -(1,11101:6630773,30276039:25952256,513147,126483 -k1,11100:8748003,30276039:242900 -k1,11100:12016700,30276039:242900 -k1,11100:13734816,30276039:242901 -k1,11100:15873673,30276039:242900 -k1,11100:17308018,30276039:242900 -k1,11100:22132540,30276039:242900 -k1,11100:25308831,30276039:242900 -k1,11100:26276559,30276039:242900 -k1,11100:27899648,30276039:242901 -k1,11100:30322931,30276039:242900 -k1,11100:31313597,30276039:242900 -k1,11101:32583029,30276039:0 -) -(1,11101:6630773,31117527:25952256,513147,134348 -k1,11100:8847091,31117527:259413 -k1,11100:11149262,31117527:259414 -k1,11100:13100815,31117527:259413 -k1,11100:14019520,31117527:259413 -k1,11100:15787573,31117527:259414 -k1,11100:19485005,31117527:259413 -k1,11100:21800282,31117527:259413 -k1,11100:23078781,31117527:259414 -k1,11100:24430679,31117527:259413 -k1,11100:25349384,31117527:259413 -k1,11100:29326000,31117527:259414 -k1,11100:31966991,31117527:259413 -k1,11100:32583029,31117527:0 -) -(1,11101:6630773,31959015:25952256,505283,134348 -k1,11100:10616782,31959015:256355 -k1,11100:13957260,31959015:256354 -k1,11100:14841450,31959015:256355 -k1,11100:16116890,31959015:256355 -k1,11100:18779072,31959015:256355 -k1,11100:21453049,31959015:256354 -k1,11100:22577756,31959015:256355 -k1,11100:24011138,31959015:256355 -k1,11100:24880255,31959015:256355 -k1,11100:28448800,31959015:256355 -k1,11100:29724239,31959015:256354 -k1,11100:31263789,31959015:256355 -k1,11101:32583029,31959015:0 -) -(1,11101:6630773,32800503:25952256,513147,134348 -k1,11100:8507845,32800503:221633 -k1,11100:12222547,32800503:221633 -k1,11100:13205707,32800503:221632 -k1,11100:14446425,32800503:221633 -k1,11100:16269758,32800503:221633 -k1,11100:18991590,32800503:221633 -k1,11100:19872514,32800503:221632 -k1,11100:21790874,32800503:221633 -k1,11100:25742161,32800503:221633 -k1,11100:26378614,32800503:221610 -k1,11100:29672575,32800503:221633 -k1,11100:32583029,32800503:0 -) -(1,11101:6630773,33641991:25952256,513147,134348 -k1,11100:8947774,33641991:149725 -k1,11100:9710260,33641991:149724 -k1,11100:12743569,33641991:149725 -k1,11100:15387593,33641991:149724 -k1,11100:18809531,33641991:149725 -k1,11100:20115965,33641991:149724 -k1,11100:22310413,33641991:149725 -k1,11100:23072899,33641991:149724 -k1,11100:24241709,33641991:149725 -k1,11100:26964376,33641991:149724 -k1,11100:27773393,33641991:149725 -k1,11100:30602884,33641991:149724 -k1,11100:31368647,33641991:149725 -k1,11101:32583029,33641991:0 -) -(1,11101:6630773,34483479:25952256,505283,126483 -k1,11100:8149079,34483479:177439 -k1,11100:9894794,34483479:177438 -k1,11100:11402614,34483479:177439 -k1,11100:12448404,34483479:177438 -k1,11100:13730125,34483479:177439 -k1,11100:17500247,34483479:177438 -k1,11100:19067049,34483479:177439 -k1,11100:19860526,34483479:177439 -k1,11100:20626477,34483479:177438 -k1,11100:22678246,34483479:177439 -k1,11100:27428786,34483479:177438 -k1,11100:30867296,34483479:177439 -k1,11101:32583029,34483479:0 -) -(1,11101:6630773,35324967:25952256,505283,134348 -k1,11100:8200275,35324967:161789 -k1,11100:10514266,35324967:161789 -k1,11100:11695140,35324967:161789 -k1,11100:12271735,35324967:161752 -k1,11100:15275820,35324967:161789 -k1,11100:16503879,35324967:161788 -k1,11100:18041269,35324967:161789 -k1,11100:18964586,35324967:161789 -k1,11100:21313967,35324967:161789 -k1,11100:22758951,35324967:161789 -k1,11100:25475989,35324967:161789 -k1,11100:26289206,35324967:161789 -k1,11100:26909092,35324967:161789 -k1,11100:28143050,35324967:161789 -k1,11100:29066367,35324967:161789 -k1,11100:32583029,35324967:0 -) -(1,11101:6630773,36166455:25952256,513147,134348 -k1,11100:8064992,36166455:151024 -k1,11100:9784293,36166455:151024 -k1,11100:10594609,36166455:151024 -k1,11100:14924864,36166455:151024 -k1,11100:18561747,36166455:151023 -k1,11100:22992927,36166455:151024 -k1,11100:26216934,36166455:151024 -k1,11100:27651153,36166455:151024 -k1,11100:31635378,36166455:151024 -k1,11100:32583029,36166455:0 -) -(1,11101:6630773,37007943:25952256,505283,126483 -g1,11100:8219365,37007943 -k1,11101:32583029,37007943:19934086 -g1,11101:32583029,37007943 -) -(1,11102:6630773,39815511:25952256,32768,229376 -(1,11102:6630773,39815511:0,32768,229376 -(1,11102:6630773,39815511:5505024,32768,229376 -r1,11105:12135797,39815511:5505024,262144,229376 -) -k1,11102:6630773,39815511:-5505024 -) -(1,11102:6630773,39815511:25952256,32768,0 -r1,11105:32583029,39815511:25952256,32768,0 -) -) -(1,11102:6630773,41419839:25952256,606339,14155 -(1,11102:6630773,41419839:1974731,582746,14155 -g1,11102:6630773,41419839 -g1,11102:8605504,41419839 -) -k1,11102:32583029,41419839:19020644 -g1,11102:32583029,41419839 -) -(1,11105:6630773,42654543:25952256,513147,134348 -k1,11104:7750545,42654543:359554 -k1,11104:10512650,42654543:359555 -k1,11104:13626682,42654543:359554 -k1,11104:16907831,42654543:359554 -k1,11104:18437858,42654543:359554 -k1,11104:20272628,42654543:359555 -k1,11104:22966574,42654543:359554 -k1,11104:25769310,42654543:359554 -k1,11104:28621198,42654543:359554 -k1,11104:30374704,42654543:359555 -k1,11104:32168186,42654543:359554 -k1,11105:32583029,42654543:0 -) -(1,11105:6630773,43496031:25952256,513147,134348 -k1,11104:9192247,43496031:154992 -k1,11104:12305535,43496031:154993 -k1,11104:15486324,43496031:154992 -k1,11104:16832762,43496031:154993 -k1,11104:20064669,43496031:154992 -k1,11104:21167312,43496031:154992 -k1,11104:23582642,43496031:154993 -k1,11104:24929079,43496031:154992 -k1,11104:29319664,43496031:154993 -k1,11104:31037690,43496031:154992 -k1,11104:32583029,43496031:0 -) -(1,11105:6630773,44337519:25952256,513147,134348 -k1,11104:7529544,44337519:239479 -k1,11104:9465751,44337519:239480 -k1,11104:10896675,44337519:239479 -k1,11104:12646104,44337519:239479 -k1,11104:15887133,44337519:239480 -k1,11104:18983326,44337519:239479 -k1,11104:19874233,44337519:239479 -k1,11104:22737775,44337519:239480 -k1,11104:25997808,44337519:239479 -k1,11104:27046657,44337519:239479 -k1,11104:29237799,44337519:239480 -k1,11104:31193666,44337519:239479 -k1,11104:32583029,44337519:0 -) -(1,11105:6630773,45179007:25952256,513147,126483 -k1,11104:8128966,45179007:233348 -k1,11104:9594392,45179007:233349 -k1,11104:12089387,45179007:233348 -k1,11104:14297540,45179007:233553 -k1,11104:15727575,45179007:233348 -k1,11104:16375733,45179007:233315 -k1,11104:21665839,45179007:233348 -k1,11104:23000192,45179007:233348 -k1,11104:24743491,45179007:233349 -k1,11104:28026885,45179007:233348 -k1,11104:29647631,45179007:233349 -k1,11104:30900064,45179007:233348 -k1,11104:32583029,45179007:0 -) -] -(1,11105:32583029,45706769:0,0,0 -g1,11105:32583029,45706769 -) -) -] -(1,11105:6630773,47279633:25952256,485622,11795 -(1,11105:6630773,47279633:25952256,485622,11795 -(1,11105:6630773,47279633:0,0,0 -v1,11105:6630773,47279633:0,0,0 -) -g1,11105:6830002,47279633 -k1,11105:31387652,47279633:24557650 -) -) -] -(1,11105:4262630,4025873:0,0,0 -[1,11105:-473656,4025873:0,0,0 -(1,11105:-473656,-710413:0,0,0 -(1,11105:-473656,-710413:0,0,0 -g1,11105:-473656,-710413 -) -g1,11105:-473656,-710413 -) -] -) -] -!15221 -}208 -Input:1536:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1537:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1538:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1539:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1540:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1541:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1542:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1543:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1544:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!840 -{209 -[1,11115:4262630,47279633:28320399,43253760,0 -(1,11115:4262630,4025873:0,0,0 -[1,11115:-473656,4025873:0,0,0 -(1,11115:-473656,-710413:0,0,0 -(1,11115:-473656,-644877:0,0,0 -k1,11115:-473656,-644877:-65536 -) -(1,11115:-473656,4736287:0,0,0 -k1,11115:-473656,4736287:5209943 -) -g1,11115:-473656,-710413 -) -] -) -[1,11115:6630773,47279633:25952256,43253760,0 -[1,11115:6630773,4812305:25952256,786432,0 -(1,11115:6630773,4812305:25952256,513147,134348 -(1,11115:6630773,4812305:25952256,513147,134348 -g1,11115:3078558,4812305 -[1,11115:3078558,4812305:0,0,0 -(1,11115:3078558,2439708:0,1703936,0 -k1,11115:1358238,2439708:-1720320 -(1,11088:1358238,2439708:1720320,1703936,0 -(1,11088:1358238,2439708:1179648,16384,0 -r1,11115:2537886,2439708:1179648,16384,0 -) -g1,11088:3062174,2439708 -(1,11088:3062174,2439708:16384,1703936,0 -[1,11088:3062174,2439708:25952256,1703936,0 -(1,11088:3062174,1915420:25952256,1179648,0 -(1,11088:3062174,1915420:16384,1179648,0 -r1,11115:3078558,1915420:16384,1179648,0 -) -k1,11088:29014430,1915420:25935872 -g1,11088:29014430,1915420 -) -] -) -) -) -] -[1,11115:3078558,4812305:0,0,0 -(1,11115:3078558,2439708:0,1703936,0 -g1,11115:29030814,2439708 -g1,11115:36135244,2439708 -(1,11088:36135244,2439708:1720320,1703936,0 -(1,11088:36135244,2439708:16384,1703936,0 -[1,11088:36135244,2439708:25952256,1703936,0 -(1,11088:36135244,1915420:25952256,1179648,0 -(1,11088:36135244,1915420:16384,1179648,0 -r1,11115:36151628,1915420:16384,1179648,0 -) -k1,11088:62087500,1915420:25935872 -g1,11088:62087500,1915420 -) -] -) -g1,11088:36675916,2439708 -(1,11088:36675916,2439708:1179648,16384,0 -r1,11115:37855564,2439708:1179648,16384,0 -) -) -k1,11115:3078556,2439708:-34777008 -) -] -[1,11115:3078558,4812305:0,0,0 -(1,11115:3078558,49800853:0,16384,2228224 -k1,11115:1358238,49800853:-1720320 -(1,11088:1358238,49800853:1720320,16384,2228224 -(1,11088:1358238,49800853:1179648,16384,0 -r1,11115:2537886,49800853:1179648,16384,0 -) -g1,11088:3062174,49800853 -(1,11088:3062174,52029077:16384,1703936,0 -[1,11088:3062174,52029077:25952256,1703936,0 -(1,11088:3062174,51504789:25952256,1179648,0 -(1,11088:3062174,51504789:16384,1179648,0 -r1,11115:3078558,51504789:16384,1179648,0 -) -k1,11088:29014430,51504789:25935872 -g1,11088:29014430,51504789 -) -] -) -) -) -] -[1,11115:3078558,4812305:0,0,0 -(1,11115:3078558,49800853:0,16384,2228224 -g1,11115:29030814,49800853 -g1,11115:36135244,49800853 -(1,11088:36135244,49800853:1720320,16384,2228224 -(1,11088:36135244,52029077:16384,1703936,0 -[1,11088:36135244,52029077:25952256,1703936,0 -(1,11088:36135244,51504789:25952256,1179648,0 -(1,11088:36135244,51504789:16384,1179648,0 -r1,11115:36151628,51504789:16384,1179648,0 -) -k1,11088:62087500,51504789:25935872 -g1,11088:62087500,51504789 -) -] -) -g1,11088:36675916,49800853 -(1,11088:36675916,49800853:1179648,16384,0 -r1,11115:37855564,49800853:1179648,16384,0 -) -) -k1,11115:3078556,49800853:-34777008 -) -] -g1,11115:6630773,4812305 -k1,11115:25241686,4812305:17415536 -g1,11115:26807341,4812305 -g1,11115:30339731,4812305 -g1,11115:31154998,4812305 -) -) -] -[1,11115:6630773,45706769:25952256,40108032,0 -(1,11115:6630773,45706769:25952256,40108032,0 -(1,11115:6630773,45706769:0,0,0 -g1,11115:6630773,45706769 -) -[1,11115:6630773,45706769:25952256,40108032,0 -(1,11105:6630773,6254097:25952256,513147,134348 -k1,11104:10795149,6254097:284645 -k1,11104:11695831,6254097:284644 -k1,11104:16229830,6254097:284645 -k1,11104:17705920,6254097:284645 -k1,11104:22728817,6254097:284644 -k1,11104:25644733,6254097:284645 -k1,11104:26545416,6254097:284645 -k1,11104:30236621,6254097:284644 -k1,11104:31622271,6254097:284645 -k1,11105:32583029,6254097:0 -) -(1,11105:6630773,7095585:25952256,513147,134348 -k1,11104:8543443,7095585:217254 -k1,11104:11442429,7095585:217253 -k1,11104:14018324,7095585:217254 -k1,11104:17813187,7095585:217253 -k1,11104:20765258,7095585:217254 -k1,11104:21744039,7095585:217253 -k1,11104:22980378,7095585:217254 -k1,11104:25632949,7095585:217253 -k1,11104:27938835,7095585:217254 -k1,11104:28823244,7095585:217253 -k1,11104:29455322,7095585:217235 -k1,11104:30885647,7095585:217254 -k1,11105:32583029,7095585:0 -) -(1,11105:6630773,7937073:25952256,513147,134348 -k1,11104:7988632,7937073:193940 -k1,11104:9106629,7937073:193939 -k1,11104:10319654,7937073:193940 -k1,11104:12215564,7937073:193940 -k1,11104:14189462,7937073:193940 -k1,11104:15402486,7937073:193939 -k1,11104:16865203,7937073:193940 -k1,11104:17718435,7937073:193940 -k1,11104:19301737,7937073:193939 -k1,11104:20760522,7937073:193940 -k1,11104:22055467,7937073:193940 -k1,11104:23535223,7937073:193940 -k1,11104:26942392,7937073:193939 -k1,11104:28853375,7937073:193940 -k1,11104:32583029,7937073:0 -) -(1,11105:6630773,8778561:25952256,513147,134348 -k1,11104:9788298,8778561:247071 -k1,11104:11510583,8778561:247070 -k1,11104:13702763,8778561:247071 -k1,11104:14562595,8778561:247070 -k1,11104:18081879,8778561:247071 -k1,11104:22404633,8778561:247070 -k1,11104:23413232,8778561:247071 -k1,11104:25852481,8778561:247070 -k1,11104:26908922,8778561:247071 -k1,11104:29918335,8778561:247070 -k1,11105:32583029,8778561:0 -) -(1,11105:6630773,9620049:25952256,513147,126483 -g1,11104:8659112,9620049 -g1,11104:11493544,9620049 -g1,11104:14593396,9620049 -g1,11104:16659090,9620049 -g1,11104:18049764,9620049 -g1,11104:21272824,9620049 -g1,11104:22914500,9620049 -g1,11104:24626955,9620049 -g1,11104:25773835,9620049 -g1,11104:27406992,9620049 -k1,11105:32583029,9620049:4587524 -g1,11105:32583029,9620049 -) -(1,11107:6630773,10461537:25952256,513147,134348 -h1,11106:6630773,10461537:983040,0,0 -k1,11106:10433172,10461537:284426 -k1,11106:14227706,10461537:284427 -k1,11106:15043629,10461537:284426 -k1,11106:16347140,10461537:284426 -k1,11106:17966535,10461537:284427 -k1,11106:20912378,10461537:284426 -k1,11106:21856096,10461537:284426 -k1,11106:22911225,10461537:284426 -k1,11106:26582553,10461537:284427 -k1,11106:31923737,10461537:284426 -k1,11106:32583029,10461537:0 -) -(1,11107:6630773,11303025:25952256,513147,134348 -k1,11106:8270584,11303025:250448 -k1,11106:10868533,11303025:250449 -k1,11106:12403487,11303025:250448 -k1,11106:16084745,11303025:250448 -k1,11106:17354279,11303025:250449 -k1,11106:19471192,11303025:250448 -k1,11106:20380932,11303025:250448 -k1,11106:24066777,11303025:250448 -k1,11106:25264877,11303025:250449 -k1,11106:27086223,11303025:250448 -k1,11106:28726034,11303025:250448 -k1,11106:30241328,11303025:250449 -k1,11106:32227169,11303025:250448 -k1,11106:32583029,11303025:0 -) -(1,11107:6630773,12144513:25952256,505283,134348 -k1,11106:8106589,12144513:192621 -k1,11106:11489503,12144513:192621 -k1,11106:12873570,12144513:192622 -k1,11106:16000893,12144513:192621 -k1,11106:16549374,12144513:192621 -k1,11106:18025190,12144513:192621 -k1,11106:20475527,12144513:192622 -k1,11106:21621697,12144513:192621 -k1,11106:23583135,12144513:192621 -k1,11106:24823021,12144513:192621 -k1,11106:26300149,12144513:192622 -k1,11106:29072922,12144513:192621 -k1,11106:32583029,12144513:0 -) -(1,11107:6630773,12986001:25952256,513147,134348 -k1,11106:7452469,12986001:290199 -k1,11106:9597338,12986001:290200 -k1,11106:10696907,12986001:290199 -k1,11106:11342967,12986001:290200 -k1,11106:14835910,12986001:290199 -k1,11106:15785402,12986001:290200 -k1,11106:17765119,12986001:290199 -k1,11106:19339824,12986001:290199 -k1,11106:20161521,12986001:290200 -k1,11106:23214063,12986001:290199 -k1,11106:25071884,12986001:290200 -k1,11106:26646589,12986001:290199 -k1,11106:27552827,12986001:290200 -k1,11106:28862111,12986001:290199 -k1,11106:29567062,12986001:290108 -k1,11106:32583029,12986001:0 -) -(1,11107:6630773,13827489:25952256,513147,126483 -k1,11106:8081172,13827489:253712 -k1,11106:12285393,13827489:253711 -k1,11106:13155143,13827489:253712 -k1,11106:14612096,13827489:253712 -k1,11106:16232889,13827489:253712 -k1,11106:17587605,13827489:253711 -k1,11106:19351267,13827489:253712 -k1,11106:20624064,13827489:253712 -k1,11106:21970261,13827489:253712 -k1,11106:22883264,13827489:253711 -k1,11106:23492836,13827489:253712 -k1,11106:24959619,13827489:253712 -k1,11106:27864918,13827489:253712 -k1,11106:30376344,13827489:253711 -k1,11106:31821501,13827489:253712 -k1,11106:32583029,13827489:0 -) -(1,11107:6630773,14668977:25952256,513147,134348 -k1,11106:10172448,14668977:285846 -k1,11106:11109722,14668977:285846 -k1,11106:12495263,14668977:285847 -k1,11106:13542637,14668977:285846 -k1,11106:16807750,14668977:285846 -k1,11106:17752888,14668977:285846 -k1,11106:21441363,14668977:285846 -k1,11106:24054392,14668977:285846 -k1,11106:24999531,14668977:285847 -k1,11106:26046905,14668977:285846 -k1,11106:28016371,14668977:285846 -k1,11106:31563944,14668977:285846 -k1,11106:32583029,14668977:0 -) -(1,11107:6630773,15510465:25952256,513147,134348 -g1,11106:11783868,15510465 -g1,11106:12642389,15510465 -g1,11106:13860703,15510465 -g1,11106:18057628,15510465 -g1,11106:19650808,15510465 -g1,11106:22174599,15510465 -g1,11106:23025256,15510465 -g1,11106:24290756,15510465 -g1,11106:28135097,15510465 -g1,11106:30632674,15510465 -k1,11107:32583029,15510465:387321 -g1,11107:32583029,15510465 -) -(1,11109:6630773,16351953:25952256,513147,126483 -h1,11108:6630773,16351953:983040,0,0 -k1,11108:9612881,16351953:215833 -k1,11108:10184574,16351953:215833 -k1,11108:14464295,16351953:215834 -k1,11108:17348099,16351953:215833 -k1,11108:17919792,16351953:215833 -k1,11108:19855945,16351953:215833 -k1,11108:20731071,16351953:215834 -k1,11108:24225015,16351953:215833 -k1,11108:28019114,16351953:215833 -k1,11108:29727857,16351953:215833 -k1,11108:30358517,16351953:215817 -k1,11108:32117068,16351953:215833 -k1,11108:32583029,16351953:0 -) -(1,11109:6630773,17193441:25952256,505283,134348 -k1,11108:8592405,17193441:226239 -k1,11108:10252573,17193441:226240 -k1,11108:11067325,17193441:226239 -k1,11108:12161917,17193441:226240 -k1,11108:14156974,17193441:226240 -k1,11108:16239193,17193441:226239 -k1,11108:18082861,17193441:226239 -k1,11108:18921863,17193441:226240 -k1,11108:20599724,17193441:226239 -k1,11108:22181249,17193441:226240 -k1,11108:23023527,17193441:226240 -k1,11108:24268851,17193441:226239 -k1,11108:28558977,17193441:226239 -k1,11108:29804302,17193441:226240 -k1,11108:32583029,17193441:0 -) -(1,11109:6630773,18034929:25952256,513147,126483 -k1,11108:8538375,18034929:227259 -k1,11108:9381671,18034929:227258 -k1,11108:9964790,18034929:227259 -k1,11108:12877059,18034929:227259 -k1,11108:13787202,18034929:227258 -k1,11108:15363847,18034929:227259 -k1,11108:18262353,18034929:227259 -k1,11108:21185108,18034929:227259 -k1,11108:23016032,18034929:227258 -k1,11108:24439978,18034929:227259 -k1,11108:25973370,18034929:227259 -k1,11108:29185138,18034929:227258 -k1,11108:29943894,18034929:227259 -k1,11108:32583029,18034929:0 -) -(1,11109:6630773,18876417:25952256,513147,126483 -k1,11108:7984330,18876417:281388 -k1,11108:10277672,18876417:281387 -k1,11108:13280115,18876417:281388 -k1,11108:15896551,18876417:281388 -k1,11108:19285656,18876417:281388 -k1,11108:20033004,18876417:281387 -k1,11108:22825732,18876417:281388 -k1,11108:25175436,18876417:281388 -k1,11108:26448384,18876417:281388 -k1,11108:28695851,18876417:281387 -k1,11108:31386342,18876417:281388 -k1,11108:32583029,18876417:0 -) -(1,11109:6630773,19717905:25952256,513147,126483 -k1,11108:9103748,19717905:231644 -k1,11108:12319903,19717905:231645 -k1,11108:15325031,19717905:231644 -k1,11108:16910649,19717905:231644 -k1,11108:19626109,19717905:231645 -k1,11108:20903708,19717905:231644 -k1,11108:22547653,19717905:231644 -k1,11108:23465459,19717905:231644 -k1,11108:25231302,19717905:231645 -k1,11108:26149108,19717905:231644 -k1,11108:28035536,19717905:231644 -k1,11108:29258741,19717905:231645 -k1,11108:31140582,19717905:231644 -k1,11108:32583029,19717905:0 -) -(1,11109:6630773,20559393:25952256,513147,134348 -k1,11108:7923579,20559393:136096 -k1,11108:10399311,20559393:136097 -k1,11108:12171186,20559393:136096 -k1,11108:15283928,20559393:136097 -k1,11108:16071452,20559393:136096 -k1,11108:17473704,20559393:136096 -k1,11108:18380504,20559393:136097 -k1,11108:21903501,20559393:136096 -k1,11108:24123643,20559393:136097 -k1,11108:25734954,20559393:136096 -k1,11108:28926339,20559393:136097 -k1,11108:30081520,20559393:136096 -k1,11108:32583029,20559393:0 -) -(1,11109:6630773,21400881:25952256,513147,134348 -k1,11108:7479295,21400881:189230 -k1,11108:9057888,21400881:189230 -k1,11108:10884208,21400881:189230 -k1,11108:12641059,21400881:189230 -k1,11108:14282567,21400881:189230 -k1,11108:16304839,21400881:189230 -k1,11108:20181780,21400881:189230 -k1,11108:21562455,21400881:189230 -k1,11108:24112947,21400881:189230 -k1,11108:26276837,21400881:189290 -k1,11108:30651196,21400881:189230 -k1,11108:32124932,21400881:189230 -k1,11108:32583029,21400881:0 -) -(1,11109:6630773,22242369:25952256,513147,134348 -k1,11108:7904289,22242369:172511 -k1,11108:9586749,22242369:172510 -k1,11108:12389220,22242369:172511 -k1,11108:13213159,22242369:172511 -k1,11108:15000476,22242369:172510 -k1,11108:18083441,22242369:172511 -k1,11108:19540458,22242369:172511 -k1,11108:21673806,22242369:172511 -k1,11108:22865401,22242369:172510 -k1,11108:26114827,22242369:172511 -k1,11108:28585686,22242369:172511 -k1,11108:29409624,22242369:172510 -k1,11108:31379788,22242369:172511 -k1,11108:32583029,22242369:0 -) -(1,11109:6630773,23083857:25952256,513147,134348 -k1,11108:8171378,23083857:257410 -k1,11108:10512832,23083857:257409 -k1,11108:11421670,23083857:257410 -k1,11108:12093864,23083857:257351 -k1,11108:12882770,23083857:257409 -k1,11108:13496040,23083857:257410 -k1,11108:16936534,23083857:257410 -k1,11108:17845371,23083857:257409 -k1,11108:18891179,23083857:257410 -k1,11108:22122612,23083857:257409 -k1,11108:23571467,23083857:257410 -k1,11108:27891453,23083857:257409 -k1,11108:29498905,23083857:257410 -k1,11108:32583029,23083857:0 -) -(1,11109:6630773,23925345:25952256,513147,134348 -k1,11108:9780815,23925345:204855 -k1,11108:11177115,23925345:204855 -k1,11108:13718326,23925345:204854 -k1,11108:15884018,23925345:204855 -k1,11108:19165788,23925345:204855 -k1,11108:20318294,23925345:204855 -k1,11108:23980827,23925345:204854 -k1,11108:26443397,23925345:204855 -k1,11108:27276087,23925345:204855 -k1,11108:28833605,23925345:204855 -k1,11108:30632295,23925345:204854 -k1,11108:31193010,23925345:204855 -k1,11108:32583029,23925345:0 -) -(1,11109:6630773,24766833:25952256,513147,134348 -g1,11108:9576616,24766833 -g1,11108:10983018,24766833 -g1,11108:13147672,24766833 -g1,11108:13998329,24766833 -g1,11108:15216643,24766833 -g1,11108:15830715,24766833 -g1,11108:18872240,24766833 -k1,11109:32583029,24766833:11931487 -g1,11109:32583029,24766833 -) -(1,11111:6630773,25608321:25952256,513147,126483 -h1,11110:6630773,25608321:983040,0,0 -k1,11110:8291822,25608321:190421 -k1,11110:11244595,25608321:190430 -k1,11110:13479748,25608321:190430 -k1,11110:14329470,25608321:190430 -k1,11110:15538985,25608321:190430 -k1,11110:16144250,25608321:190422 -k1,11110:18418725,25608321:190430 -k1,11110:19140652,25608321:190430 -k1,11110:22545623,25608321:190430 -k1,11110:23395345,25608321:190430 -k1,11110:26539483,25608321:190430 -k1,11110:28297534,25608321:190430 -k1,11110:29811791,25608321:190430 -k1,11110:31193666,25608321:190430 -k1,11110:32583029,25608321:0 -) -(1,11111:6630773,26449809:25952256,513147,126483 -k1,11110:9022915,26449809:185545 -k1,11110:9969988,26449809:185545 -k1,11110:12067218,26449809:185545 -k1,11110:13685380,26449809:185545 -k1,11110:14285755,26449809:185532 -k1,11110:17231676,26449809:185545 -k1,11110:18589660,26449809:185545 -k1,11110:21537548,26449809:185545 -k1,11110:24800008,26449809:185545 -k1,11110:25933205,26449809:185546 -k1,11110:27495661,26449809:185545 -(1,11110:27495661,26449809:0,459977,115847 -r1,11115:27853927,26449809:358266,575824,115847 -k1,11110:27495661,26449809:-358266 -) -(1,11110:27495661,26449809:358266,459977,115847 -k1,11110:27495661,26449809:3277 -h1,11110:27850650,26449809:0,411205,112570 -) -k1,11110:28039472,26449809:185545 -k1,11110:29416462,26449809:185545 -(1,11110:29416462,26449809:0,452978,115847 -r1,11115:30829863,26449809:1413401,568825,115847 -k1,11110:29416462,26449809:-1413401 -) -(1,11110:29416462,26449809:1413401,452978,115847 -k1,11110:29416462,26449809:3277 -h1,11110:30826586,26449809:0,411205,112570 -) -k1,11110:31189078,26449809:185545 -k1,11110:32583029,26449809:0 -) -(1,11111:6630773,27291297:25952256,513147,126483 -k1,11110:9555973,27291297:162857 -k1,11110:11976545,27291297:162857 -k1,11110:14013732,27291297:162857 -k1,11110:15349027,27291297:162856 -k1,11110:18588799,27291297:162857 -k1,11110:20037472,27291297:162857 -k1,11110:21943587,27291297:162857 -k1,11110:22722482,27291297:162857 -k1,11110:24215719,27291297:162856 -k1,11110:27785793,27291297:162857 -k1,11110:30030074,27291297:162857 -k1,11110:31184491,27291297:162857 -k1,11111:32583029,27291297:0 -) -(1,11111:6630773,28132785:25952256,513147,134348 -k1,11110:8365604,28132785:167210 -k1,11110:11067748,28132785:167211 -k1,11110:13396990,28132785:167210 -k1,11110:15348090,28132785:167210 -k1,11110:17632769,28132785:167211 -k1,11110:18459271,28132785:167210 -k1,11110:19829722,28132785:167210 -k1,11110:22080978,28132785:167211 -k1,11110:23195839,28132785:167210 -k1,11110:24133753,28132785:167211 -k1,11110:27687864,28132785:167210 -k1,11110:28506502,28132785:167210 -k1,11110:30107641,28132785:167211 -k1,11110:31193666,28132785:167210 -k1,11110:32583029,28132785:0 -) -(1,11111:6630773,28974273:25952256,513147,134348 -k1,11110:9168680,28974273:157639 -k1,11110:10931296,28974273:157639 -k1,11110:12964576,28974273:157640 -k1,11110:13478075,28974273:157639 -k1,11110:14918909,28974273:157639 -k1,11110:17160593,28974273:157639 -k1,11110:19330188,28974273:157640 -k1,11110:20771022,28974273:157639 -k1,11110:25004345,28974273:157639 -k1,11110:25774746,28974273:157639 -k1,11110:26951471,28974273:157640 -k1,11110:29682053,28974273:157639 -k1,11110:30498984,28974273:157639 -k1,11110:32583029,28974273:0 -) -(1,11111:6630773,29815761:25952256,513147,134348 -k1,11110:11676156,29815761:220622 -k1,11110:13290729,29815761:220622 -k1,11110:14945279,29815761:220622 -k1,11110:15580723,29815761:220601 -k1,11110:18059060,29815761:220622 -k1,11110:20684198,29815761:220622 -k1,11110:21564112,29815761:220622 -k1,11110:23339903,29815761:220622 -(1,11110:23339903,29815761:0,452978,115847 -r1,11115:24753304,29815761:1413401,568825,115847 -k1,11110:23339903,29815761:-1413401 -) -(1,11110:23339903,29815761:1413401,452978,115847 -k1,11110:23339903,29815761:3277 -h1,11110:24750027,29815761:0,411205,112570 -) -k1,11110:24973927,29815761:220623 -k1,11110:26698600,29815761:220622 -k1,11110:28205038,29815761:220622 -k1,11110:29196363,29815761:220622 -k1,11110:31931601,29815761:220622 -k1,11110:32583029,29815761:0 -) -(1,11111:6630773,30657249:25952256,513147,134348 -k1,11110:9484429,30657249:224352 -k1,11110:13784464,30657249:224351 -k1,11110:17189934,30657249:224352 -k1,11110:18065714,30657249:224352 -k1,11110:20579893,30657249:224351 -k1,11110:21463537,30657249:224352 -k1,11110:23243058,30657249:224352 -(1,11110:23243058,30657249:0,459977,115847 -r1,11115:27470154,30657249:4227096,575824,115847 -k1,11110:23243058,30657249:-4227096 -) -(1,11110:23243058,30657249:4227096,459977,115847 -k1,11110:23243058,30657249:3277 -h1,11110:27466877,30657249:0,411205,112570 -) -k1,11110:27868176,30657249:224352 -k1,11110:28507345,30657249:224326 -k1,11110:32583029,30657249:0 -) -(1,11111:6630773,31498737:25952256,513147,134348 -k1,11110:8000773,31498737:268995 -k1,11110:11319815,31498737:268996 -k1,11110:12204848,31498737:268995 -k1,11110:14462205,31498737:268995 -k1,11110:17283173,31498737:268996 -k1,11110:18743613,31498737:268995 -k1,11110:22096733,31498737:268996 -k1,11110:23832424,31498737:268995 -k1,11110:26371586,31498737:268995 -k1,11110:30716266,31498737:268996 -k1,11110:31516758,31498737:268995 -k1,11110:32583029,31498737:0 -) -(1,11111:6630773,32340225:25952256,513147,134348 -k1,11110:7846869,32340225:197011 -k1,11110:9871024,32340225:197011 -k1,11110:13430032,32340225:197011 -k1,11110:14436413,32340225:197011 -k1,11110:15652509,32340225:197011 -k1,11110:19254115,32340225:197011 -k1,11110:20642572,32340225:197012 -k1,11110:22402617,32340225:197011 -k1,11110:24455608,32340225:197011 -k1,11110:25571434,32340225:197011 -k1,11110:27157808,32340225:197011 -k1,11110:29561416,32340225:197011 -k1,11110:30441312,32340225:197011 -k1,11110:32583029,32340225:0 -) -(1,11111:6630773,33181713:25952256,513147,126483 -k1,11110:9534510,33181713:279675 -k1,11110:11885122,33181713:279674 -k1,11110:12792632,33181713:279675 -k1,11110:14539003,33181713:279675 -k1,11110:16516059,33181713:279674 -k1,11110:20871418,33181713:279675 -k1,11110:23853142,33181713:279675 -k1,11110:25916051,33181713:279674 -k1,11110:27005096,33181713:279675 -k1,11110:28615152,33181713:279675 -k1,11110:30275670,33181713:279674 -k1,11110:32051532,33181713:279675 -k1,11110:32583029,33181713:0 -) -(1,11111:6630773,34023201:25952256,473825,7863 -k1,11111:32583029,34023201:23492034 -g1,11111:32583029,34023201 -) -(1,11113:6630773,34864689:25952256,513147,126483 -h1,11112:6630773,34864689:983040,0,0 -k1,11112:9242418,34864689:195988 -k1,11112:9853245,34864689:195984 -k1,11112:12744729,34864689:195988 -(1,11112:12744729,34864689:0,452978,115847 -r1,11115:15564978,34864689:2820249,568825,115847 -k1,11112:12744729,34864689:-2820249 -) -(1,11112:12744729,34864689:2820249,452978,115847 -k1,11112:12744729,34864689:3277 -h1,11112:15561701,34864689:0,411205,112570 -) -k1,11112:15760966,34864689:195988 -k1,11112:17057959,34864689:195988 -k1,11112:18024650,34864689:195988 -k1,11112:20771299,34864689:195988 -k1,11112:23225002,34864689:195988 -k1,11112:24107151,34864689:195987 -k1,11112:24761236,34864689:195988 -k1,11112:27927971,34864689:195988 -k1,11112:29143044,34864689:195988 -k1,11112:32583029,34864689:0 -) -(1,11113:6630773,35706177:25952256,513147,134348 -k1,11112:9088046,35706177:251986 -k1,11112:10026194,35706177:251986 -k1,11112:11297264,35706177:251985 -k1,11112:13790581,35706177:251986 -k1,11112:17114895,35706177:251986 -k1,11112:19376870,35706177:251986 -k1,11112:20647940,35706177:251985 -k1,11112:24425763,35706177:251986 -k1,11112:25337041,35706177:251986 -k1,11112:26608112,35706177:251986 -k1,11112:28249460,35706177:251985 -k1,11112:30377742,35706177:251986 -k1,11112:32583029,35706177:0 -) -(1,11113:6630773,36547665:25952256,513147,134348 -k1,11112:7610162,36547665:293227 -k1,11112:8691786,36547665:293226 -k1,11112:10291146,36547665:293227 -k1,11112:13656701,36547665:293227 -k1,11112:15182004,36547665:293226 -h1,11112:17123180,36547665:0,0,0 -k1,11112:17416407,36547665:293227 -k1,11112:18519004,36547665:293227 -k1,11112:20310383,36547665:293226 -h1,11112:21107301,36547665:0,0,0 -k1,11112:21781292,36547665:293227 -k1,11112:23455362,36547665:293226 -k1,11112:25469564,36547665:293227 -k1,11112:27791786,36547665:293227 -k1,11112:28697774,36547665:293226 -k1,11112:30010086,36547665:293227 -k1,11112:32583029,36547665:0 -) -(1,11113:6630773,37389153:25952256,513147,134348 -k1,11112:7541559,37389153:251494 -k1,11112:11054781,37389153:251495 -k1,11112:12325360,37389153:251494 -k1,11112:13789270,37389153:251494 -k1,11112:14700057,37389153:251495 -k1,11112:16645001,37389153:251494 -k1,11112:17582657,37389153:251494 -k1,11112:18595680,37389153:251495 -k1,11112:21249724,37389153:251494 -k1,11112:22520303,37389153:251494 -k1,11112:23871491,37389153:251494 -k1,11112:24774414,37389153:251495 -k1,11112:27279691,37389153:251494 -k1,11112:27989282,37389153:251494 -k1,11112:28772274,37389153:251495 -k1,11112:30090039,37389153:251494 -k1,11112:32583029,37389153:0 -) -(1,11113:6630773,38230641:25952256,513147,115847 -k1,11112:8729763,38230641:213519 -k1,11112:11011597,38230641:213518 -k1,11112:12216676,38230641:213519 -k1,11112:15121102,38230641:213518 -k1,11112:15950659,38230641:213519 -k1,11112:17183262,38230641:213518 -k1,11112:21454115,38230641:213519 -k1,11112:22334789,38230641:213518 -(1,11112:22334789,38230641:0,452978,115847 -r1,11115:25155038,38230641:2820249,568825,115847 -k1,11112:22334789,38230641:-2820249 -) -(1,11112:22334789,38230641:2820249,452978,115847 -k1,11112:22334789,38230641:3277 -h1,11112:25151761,38230641:0,411205,112570 -) -k1,11112:25368557,38230641:213519 -k1,11112:26773520,38230641:213518 -k1,11112:28872510,38230641:213519 -k1,11112:30573040,38230641:213518 -k1,11112:32583029,38230641:0 -) -(1,11113:6630773,39072129:25952256,513147,134348 -k1,11112:7653353,39072129:234182 -k1,11112:9193668,39072129:234182 -k1,11112:14225085,39072129:234182 -k1,11112:15145429,39072129:234182 -k1,11112:17762500,39072129:234182 -k1,11112:20064998,39072129:234182 -k1,11112:20915218,39072129:234182 -k1,11112:22168485,39072129:234182 -k1,11112:23792030,39072129:234182 -k1,11112:26076178,39072129:234182 -k1,11112:26938195,39072129:234182 -k1,11112:30012052,39072129:234182 -k1,11112:32583029,39072129:0 -) -(1,11113:6630773,39913617:25952256,505283,134348 -k1,11112:10067294,39913617:287516 -k1,11112:10970847,39913617:287515 -k1,11112:11614223,39913617:287516 -k1,11112:13732815,39913617:287516 -k1,11112:15124613,39913617:287516 -k1,11112:17652804,39913617:287515 -k1,11112:19270701,39913617:287516 -k1,11112:19914077,39913617:287516 -k1,11112:21301286,39913617:287515 -k1,11112:22240230,39913617:287516 -k1,11112:24607859,39913617:287516 -k1,11112:25426872,39913617:287516 -k1,11112:29478120,39913617:287515 -k1,11112:30393471,39913617:287516 -k1,11112:32583029,39913617:0 -) -(1,11113:6630773,40755105:25952256,513147,126483 -k1,11112:9004647,40755105:293761 -k1,11112:9829905,40755105:293761 -k1,11112:10479526,40755105:293761 -k1,11112:13415700,40755105:293762 -k1,11112:16404957,40755105:293761 -k1,11112:18177210,40755105:293761 -k1,11112:19280341,40755105:293761 -k1,11112:20646271,40755105:293761 -k1,11112:21599324,40755105:293761 -k1,11112:22912170,40755105:293761 -k1,11112:26420472,40755105:293761 -k1,11112:29460848,40755105:293762 -(1,11112:29460848,40755105:0,452978,115847 -r1,11115:30170826,40755105:709978,568825,115847 -k1,11112:29460848,40755105:-709978 -) -(1,11112:29460848,40755105:709978,452978,115847 -k1,11112:29460848,40755105:3277 -h1,11112:30167549,40755105:0,411205,112570 -) -k1,11112:30638257,40755105:293761 -k1,11112:31401911,40755105:293761 -k1,11112:32227169,40755105:293761 -k1,11112:32583029,40755105:0 -) -(1,11113:6630773,41596593:25952256,513147,126483 -k1,11112:10790398,41596593:253024 -k1,11112:13912587,41596593:253023 -k1,11112:16333542,41596593:253024 -k1,11112:19410511,41596593:253023 -k1,11112:20314963,41596593:253024 -k1,11112:21315753,41596593:253024 -k1,11112:23082002,41596593:253023 -k1,11112:23947788,41596593:253024 -k1,11112:25219896,41596593:253023 -k1,11112:28066835,41596593:253024 -k1,11112:30271520,41596593:253023 -k1,11112:31966991,41596593:253024 -k1,11112:32583029,41596593:0 -) -(1,11113:6630773,42438081:25952256,513147,134348 -k1,11112:9041798,42438081:249648 -k1,11112:9974332,42438081:249649 -k1,11112:12804132,42438081:249648 -k1,11112:14723638,42438081:249649 -k1,11112:15802316,42438081:249648 -k1,11112:18255941,42438081:249649 -k1,11112:20039787,42438081:249648 -k1,11112:21857057,42438081:249649 -k1,11112:22462565,42438081:249648 -k1,11112:24101577,42438081:249649 -k1,11112:26227521,42438081:249648 -k1,11112:26935267,42438081:249649 -k1,11112:27716412,42438081:249648 -k1,11112:30095326,42438081:249649 -k1,11112:31931601,42438081:249648 -k1,11112:32583029,42438081:0 -) -(1,11113:6630773,43279569:25952256,513147,126483 -g1,11112:7922487,43279569 -g1,11112:9140801,43279569 -(1,11112:9140801,43279569:0,452978,115847 -r1,11115:10905915,43279569:1765114,568825,115847 -k1,11112:9140801,43279569:-1765114 -) -(1,11112:9140801,43279569:1765114,452978,115847 -g1,11112:9847502,43279569 -g1,11112:10550926,43279569 -h1,11112:10902638,43279569:0,411205,112570 -) -g1,11112:11105144,43279569 -g1,11112:14050987,43279569 -g1,11112:14862978,43279569 -g1,11112:16081292,43279569 -g1,11112:18853464,43279569 -g1,11112:19711985,43279569 -k1,11113:32583029,43279569:9760050 -g1,11113:32583029,43279569 -) -(1,11115:6630773,44121057:25952256,513147,134348 -h1,11114:6630773,44121057:983040,0,0 -k1,11114:10402370,44121057:253624 -k1,11114:12628628,44121057:253625 -k1,11114:15642628,44121057:253624 -k1,11114:19802853,44121057:253624 -k1,11114:23082275,44121057:253625 -k1,11114:24620405,44121057:253624 -k1,11114:26470487,44121057:253625 -k1,11114:27340149,44121057:253624 -k1,11114:27949633,44121057:253624 -k1,11114:30405268,44121057:253625 -k1,11114:31896867,44121057:253624 -k1,11114:32583029,44121057:0 -) -(1,11115:6630773,44962545:25952256,513147,134348 -k1,11114:8337426,44962545:272725 -k1,11114:9024921,44962545:272652 -(1,11114:9024921,44962545:0,452978,115847 -r1,11115:11845170,44962545:2820249,568825,115847 -k1,11114:9024921,44962545:-2820249 -) -(1,11114:9024921,44962545:2820249,452978,115847 -k1,11114:9024921,44962545:3277 -h1,11114:11841893,44962545:0,411205,112570 -) -k1,11114:12291565,44962545:272725 -k1,11114:15395446,44962545:272726 -k1,11114:16284209,44962545:272725 -k1,11114:18309368,44962545:272726 -k1,11114:21246132,44962545:272725 -k1,11114:23169054,44962545:272725 -k1,11114:25479950,44962545:272726 -k1,11114:27133519,44962545:272725 -k1,11114:29986397,44962545:272726 -k1,11114:31360127,44962545:272725 -k1,11115:32583029,44962545:0 -) -] -(1,11115:32583029,45706769:0,0,0 -g1,11115:32583029,45706769 -) -) -] -(1,11115:6630773,47279633:25952256,0,0 -h1,11115:6630773,47279633:25952256,0,0 -) -] -(1,11115:4262630,4025873:0,0,0 -[1,11115:-473656,4025873:0,0,0 -(1,11115:-473656,-710413:0,0,0 -(1,11115:-473656,-710413:0,0,0 -g1,11115:-473656,-710413 -) -g1,11115:-473656,-710413 -) -] -) -] -!28824 -}209 -Input:1545:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!104 -{210 -[1,11151:4262630,47279633:28320399,43253760,0 -(1,11151:4262630,4025873:0,0,0 -[1,11151:-473656,4025873:0,0,0 -(1,11151:-473656,-710413:0,0,0 -(1,11151:-473656,-644877:0,0,0 -k1,11151:-473656,-644877:-65536 -) -(1,11151:-473656,4736287:0,0,0 -k1,11151:-473656,4736287:5209943 -) -g1,11151:-473656,-710413 -) -] -) -[1,11151:6630773,47279633:25952256,43253760,0 -[1,11151:6630773,4812305:25952256,786432,0 -(1,11151:6630773,4812305:25952256,505283,134348 -(1,11151:6630773,4812305:25952256,505283,134348 -g1,11151:3078558,4812305 -[1,11151:3078558,4812305:0,0,0 -(1,11151:3078558,2439708:0,1703936,0 -k1,11151:1358238,2439708:-1720320 -(1,11088:1358238,2439708:1720320,1703936,0 -(1,11088:1358238,2439708:1179648,16384,0 -r1,11151:2537886,2439708:1179648,16384,0 -) -g1,11088:3062174,2439708 -(1,11088:3062174,2439708:16384,1703936,0 -[1,11088:3062174,2439708:25952256,1703936,0 -(1,11088:3062174,1915420:25952256,1179648,0 -(1,11088:3062174,1915420:16384,1179648,0 -r1,11151:3078558,1915420:16384,1179648,0 -) -k1,11088:29014430,1915420:25935872 -g1,11088:29014430,1915420 -) -] -) -) -) -] -[1,11151:3078558,4812305:0,0,0 -(1,11151:3078558,2439708:0,1703936,0 -g1,11151:29030814,2439708 -g1,11151:36135244,2439708 -(1,11088:36135244,2439708:1720320,1703936,0 -(1,11088:36135244,2439708:16384,1703936,0 -[1,11088:36135244,2439708:25952256,1703936,0 -(1,11088:36135244,1915420:25952256,1179648,0 -(1,11088:36135244,1915420:16384,1179648,0 -r1,11151:36151628,1915420:16384,1179648,0 -) -k1,11088:62087500,1915420:25935872 -g1,11088:62087500,1915420 -) -] -) -g1,11088:36675916,2439708 -(1,11088:36675916,2439708:1179648,16384,0 -r1,11151:37855564,2439708:1179648,16384,0 -) -) -k1,11151:3078556,2439708:-34777008 -) -] -[1,11151:3078558,4812305:0,0,0 -(1,11151:3078558,49800853:0,16384,2228224 -k1,11151:1358238,49800853:-1720320 -(1,11088:1358238,49800853:1720320,16384,2228224 -(1,11088:1358238,49800853:1179648,16384,0 -r1,11151:2537886,49800853:1179648,16384,0 -) -g1,11088:3062174,49800853 -(1,11088:3062174,52029077:16384,1703936,0 -[1,11088:3062174,52029077:25952256,1703936,0 -(1,11088:3062174,51504789:25952256,1179648,0 -(1,11088:3062174,51504789:16384,1179648,0 -r1,11151:3078558,51504789:16384,1179648,0 -) -k1,11088:29014430,51504789:25935872 -g1,11088:29014430,51504789 -) -] -) -) -) -] -[1,11151:3078558,4812305:0,0,0 -(1,11151:3078558,49800853:0,16384,2228224 -g1,11151:29030814,49800853 -g1,11151:36135244,49800853 -(1,11088:36135244,49800853:1720320,16384,2228224 -(1,11088:36135244,52029077:16384,1703936,0 -[1,11088:36135244,52029077:25952256,1703936,0 -(1,11088:36135244,51504789:25952256,1179648,0 -(1,11088:36135244,51504789:16384,1179648,0 -r1,11151:36151628,51504789:16384,1179648,0 -) -k1,11088:62087500,51504789:25935872 -g1,11088:62087500,51504789 -) -] -) -g1,11088:36675916,49800853 -(1,11088:36675916,49800853:1179648,16384,0 -r1,11151:37855564,49800853:1179648,16384,0 -) -) -k1,11151:3078556,49800853:-34777008 -) -] -g1,11151:6630773,4812305 -g1,11151:6630773,4812305 -g1,11151:9714897,4812305 -g1,11151:11353297,4812305 -g1,11151:12155457,4812305 -g1,11151:13478628,4812305 -g1,11151:16087616,4812305 -k1,11151:31387652,4812305:15300036 -) -) -] -[1,11151:6630773,45706769:25952256,40108032,0 -(1,11151:6630773,45706769:25952256,40108032,0 -(1,11151:6630773,45706769:0,0,0 -g1,11151:6630773,45706769 -) -[1,11151:6630773,45706769:25952256,40108032,0 -(1,11115:6630773,6254097:25952256,513147,134348 -k1,11114:8495655,6254097:196335 -k1,11114:10316628,6254097:196335 -k1,11114:12699898,6254097:196334 -k1,11114:15467210,6254097:196335 -k1,11114:17777736,6254097:196335 -k1,11114:18762469,6254097:196335 -k1,11114:23090849,6254097:196335 -k1,11114:24681135,6254097:196335 -k1,11114:27202031,6254097:196334 -k1,11114:28049794,6254097:196335 -k1,11114:29576510,6254097:196335 -k1,11114:30424273,6254097:196335 -k1,11114:32583029,6254097:0 -) -(1,11115:6630773,7095585:25952256,513147,134348 -k1,11114:7937144,7095585:287286 -k1,11114:10994637,7095585:287286 -k1,11114:13484588,7095585:287286 -k1,11114:14533402,7095585:287286 -k1,11114:18208244,7095585:287286 -k1,11114:19154822,7095585:287286 -k1,11114:20461192,7095585:287285 -k1,11114:24805812,7095585:287286 -k1,11114:27011992,7095585:287286 -k1,11114:29367594,7095585:287286 -k1,11114:31835263,7095585:287286 -k1,11114:32583029,7095585:0 -) -(1,11115:6630773,7937073:25952256,513147,134348 -k1,11114:9040229,7937073:254632 -k1,11114:10304116,7937073:254633 -k1,11114:12391135,7937073:254632 -k1,11114:13177265,7937073:254633 -k1,11114:14241267,7937073:254632 -k1,11114:15890506,7937073:254633 -k1,11114:18576524,7937073:254632 -k1,11114:19187017,7937073:254633 -k1,11114:22618834,7937073:254632 -k1,11114:24957512,7937073:254633 -k1,11114:26871516,7937073:254632 -k1,11114:27777577,7937073:254633 -k1,11114:31391584,7937073:254632 -k1,11114:32583029,7937073:0 -) -(1,11115:6630773,8778561:25952256,513147,134348 -k1,11114:7248504,8778561:261871 -k1,11114:8961342,8778561:261871 -k1,11114:12055024,8778561:261871 -k1,11114:14400940,8778561:261871 -k1,11114:15194308,8778561:261871 -k1,11114:18095314,8778561:261871 -k1,11114:20502177,8778561:261870 -k1,11114:23428087,8778561:261871 -k1,11114:24349250,8778561:261871 -k1,11114:25630206,8778561:261871 -k1,11114:28472229,8778561:261871 -k1,11114:32227169,8778561:261871 -k1,11114:32583029,8778561:0 -) -(1,11115:6630773,9620049:25952256,513147,134348 -k1,11114:8449023,9620049:248007 -k1,11114:10781075,9620049:248007 -k1,11114:11680510,9620049:248007 -k1,11114:14285846,9620049:248006 -k1,11114:14889713,9620049:248007 -k1,11114:17493084,9620049:248007 -k1,11114:18979066,9620049:248007 -k1,11114:19886365,9620049:248007 -k1,11114:23383647,9620049:248007 -k1,11114:25550548,9620049:248007 -k1,11114:26449982,9620049:248006 -k1,11114:28084731,9620049:248007 -k1,11114:29168322,9620049:248007 -k1,11114:31658316,9620049:248007 -k1,11114:32583029,9620049:0 -) -(1,11115:6630773,10461537:25952256,513147,134348 -k1,11114:9265723,10461537:193079 -k1,11114:9990299,10461537:193079 -k1,11114:11467884,10461537:193079 -k1,11114:12608614,10461537:193079 -k1,11114:14297880,10461537:193079 -k1,11114:15775465,10461537:193079 -k1,11114:17829111,10461537:193079 -k1,11114:18673618,10461537:193079 -k1,11114:19614463,10461537:193079 -k1,11114:21778865,10461537:193079 -k1,11114:24322720,10461537:193079 -k1,11114:25707244,10461537:193079 -k1,11114:28520452,10461537:193079 -k1,11114:32583029,10461537:0 -) -(1,11115:6630773,11303025:25952256,513147,134348 -k1,11114:9020871,11303025:216924 -k1,11114:9853833,11303025:216924 -k1,11114:11089842,11303025:216924 -k1,11114:13467488,11303025:216924 -k1,11114:14552764,11303025:216924 -k1,11114:16950071,11303025:216924 -k1,11114:18114646,11303025:216924 -k1,11114:19350656,11303025:216925 -k1,11114:20992988,11303025:216924 -k1,11114:22947927,11303025:216924 -k1,11114:25121756,11303025:216924 -k1,11114:26772608,11303025:216924 -k1,11114:27578045,11303025:216924 -k1,11114:28836991,11303025:216924 -k1,11114:30550102,11303025:216924 -k1,11114:32051532,11303025:216924 -k1,11114:32583029,11303025:0 -) -(1,11115:6630773,12144513:25952256,513147,126483 -k1,11114:7503188,12144513:220987 -k1,11114:8471942,12144513:220988 -k1,11114:10206155,12144513:220987 -k1,11114:12091101,12144513:220987 -k1,11114:12994973,12144513:220987 -k1,11114:14163612,12144513:220988 -k1,11114:16270070,12144513:220987 -k1,11114:21226689,12144513:220987 -k1,11114:22551958,12144513:220987 -k1,11114:25144694,12144513:220988 -k1,11114:26175051,12144513:220987 -k1,11114:27415123,12144513:220987 -k1,11114:28728595,12144513:220987 -k1,11114:29608875,12144513:220988 -k1,11114:30185722,12144513:220987 -k1,11114:32583029,12144513:0 -) -(1,11115:6630773,12986001:25952256,513147,126483 -k1,11114:8086057,12986001:227795 -k1,11114:8996738,12986001:227796 -k1,11114:10758731,12986001:227795 -k1,11114:11637955,12986001:227796 -k1,11114:12613516,12986001:227795 -k1,11114:14068801,12986001:227796 -k1,11114:16630333,12986001:227795 -k1,11114:17517421,12986001:227796 -k1,11114:19891519,12986001:227795 -k1,11114:20802200,12986001:227796 -k1,11114:22915466,12986001:227795 -k1,11114:23674759,12986001:227796 -k1,11114:24968825,12986001:227795 -k1,11114:25552481,12986001:227796 -k1,11114:28066827,12986001:227795 -k1,11114:28946051,12986001:227796 -k1,11114:31563944,12986001:227795 -k1,11114:32583029,12986001:0 -) -(1,11115:6630773,13827489:25952256,513147,134348 -g1,11114:10608153,13827489 -g1,11114:11998827,13827489 -g1,11114:14170034,13827489 -g1,11114:15028555,13827489 -g1,11114:16246869,13827489 -g1,11114:17729293,13827489 -g1,11114:20012567,13827489 -g1,11114:21344258,13827489 -g1,11114:22291253,13827489 -g1,11114:23261185,13827489 -k1,11115:32583029,13827489:5909384 -g1,11115:32583029,13827489 -) -(1,11117:6630773,14668977:25952256,513147,134348 -h1,11116:6630773,14668977:983040,0,0 -k1,11116:8419414,14668977:177766 -k1,11116:9800422,14668977:177767 -k1,11116:12395811,14668977:177766 -k1,11116:13744050,14668977:177766 -k1,11116:15054279,14668977:177767 -k1,11116:17675227,14668977:177766 -k1,11116:20345327,14668977:177766 -k1,11116:21917045,14668977:177767 -k1,11116:25481712,14668977:177766 -k1,11116:29192524,14668977:177766 -k1,11116:30029583,14668977:177767 -k1,11116:31896867,14668977:177766 -k1,11116:32583029,14668977:0 -) -(1,11117:6630773,15510465:25952256,513147,134348 -k1,11116:10983734,15510465:151448 -k1,11116:11751219,15510465:151447 -k1,11116:13594807,15510465:151448 -k1,11116:14405546,15510465:151447 -k1,11116:15576079,15510465:151448 -k1,11116:18637980,15510465:151447 -k1,11116:20073934,15510465:151448 -k1,11116:22296319,15510465:151447 -k1,11116:23730962,15510465:151448 -k1,11116:27544561,15510465:151447 -k1,11116:28347437,15510465:151448 -k1,11116:32583029,15510465:0 -) -(1,11117:6630773,16351953:25952256,513147,134348 -k1,11116:8317943,16351953:297807 -k1,11116:9231787,16351953:297806 -k1,11116:10118107,16351953:297807 -k1,11116:13281148,16351953:297807 -k1,11116:15914656,16351953:297806 -k1,11116:18185096,16351953:297807 -k1,11116:19674348,16351953:297807 -k1,11116:21777015,16351953:297806 -k1,11116:23066382,16351953:297807 -k1,11116:25523600,16351953:297807 -k1,11116:27565319,16351953:297806 -k1,11116:31563944,16351953:297807 -k1,11116:32583029,16351953:0 -) -(1,11117:6630773,17193441:25952256,513147,134348 -k1,11116:10187848,17193441:175418 -k1,11116:10833159,17193441:175418 -k1,11116:11540074,17193441:175418 -k1,11116:15883582,17193441:175418 -k1,11116:18649638,17193441:175418 -k1,11116:21426835,17193441:175418 -k1,11116:22621339,17193441:175419 -k1,11116:23889242,17193441:175418 -k1,11116:24723952,17193441:175418 -k1,11116:26596097,17193441:175418 -k1,11116:29681969,17193441:175418 -k1,11116:31900144,17193441:175418 -k1,11116:32583029,17193441:0 -) -(1,11117:6630773,18034929:25952256,513147,134348 -k1,11116:9253014,18034929:162019 -k1,11116:10721167,18034929:162020 -k1,11116:13484965,18034929:162019 -k1,11116:14666070,18034929:162020 -k1,11116:16262017,18034929:162019 -k1,11116:16838843,18034929:161983 -k1,11116:19843158,18034929:162019 -k1,11116:20536675,18034929:162020 -k1,11116:23964353,18034929:162019 -k1,11116:24809258,18034929:162020 -k1,11116:26211218,18034929:162019 -k1,11116:26586193,18034929:161983 -k1,11116:28461323,18034929:162019 -k1,11116:30017294,18034929:162020 -k1,11116:32583029,18034929:0 -) -(1,11117:6630773,18876417:25952256,513147,134349 -k1,11116:9071224,18876417:178804 -$1,11116:9278318,18876417 -k1,11116:11254228,18876417:0 -k1,11116:11649410,18876417:0 -k1,11116:12044592,18876417:0 -k1,11116:12439774,18876417:0 -k1,11116:14810866,18876417:0 -k1,11116:15206048,18876417:0 -k1,11116:16391594,18876417:0 -k1,11116:16786776,18876417:0 -k1,11116:19553050,18876417:0 -k1,11116:19948232,18876417:0 -$1,11116:26271144,18876417 -k1,11116:26657043,18876417:178805 -k1,11116:28120353,18876417:178804 -k1,11116:28757254,18876417:178804 -k1,11116:29467556,18876417:178805 -k1,11116:30712631,18876417:178804 -k1,11116:32583029,18876417:0 -) -(1,11117:6630773,19717905:25952256,513147,126483 -k1,11116:7431243,19717905:149042 -k1,11116:9288810,19717905:149043 -k1,11116:10456937,19717905:149042 -k1,11116:13813966,19717905:149042 -k1,11116:15405456,19717905:149043 -k1,11116:16988426,19717905:149042 -k1,11116:17725981,19717905:149042 -k1,11116:18087966,19717905:148993 -k1,11116:19522824,19717905:149042 -k1,11116:21352209,19717905:149042 -k1,11116:22785758,19717905:149043 -k1,11116:23620962,19717905:149042 -k1,11116:25203932,19717905:149042 -k1,11116:25767768,19717905:148993 -k1,11116:26448307,19717905:149042 -k1,11116:27616435,19717905:149043 -k1,11116:31298523,19717905:149042 -k1,11116:32583029,19717905:0 -) -(1,11117:6630773,20559393:25952256,513147,134348 -k1,11116:9667602,20559393:180115 -k1,11116:11544444,20559393:180115 -k1,11116:13007754,20559393:180115 -k1,11116:16594429,20559393:180114 -k1,11116:18283183,20559393:180115 -k1,11116:21139788,20559393:180115 -k1,11116:22412388,20559393:180115 -k1,11116:25294552,20559393:180115 -k1,11116:26284037,20559393:180115 -k1,11116:26820011,20559393:180114 -k1,11116:28584131,20559393:180115 -k1,11116:31923737,20559393:180115 -k1,11116:32583029,20559393:0 -) -(1,11117:6630773,21400881:25952256,505283,7863 -g1,11116:8263930,21400881 -k1,11117:32583029,21400881:23730586 -g1,11117:32583029,21400881 -) -(1,11119:6630773,22242369:25952256,513147,126483 -h1,11118:6630773,22242369:983040,0,0 -k1,11118:8712576,22242369:280874 -k1,11118:9609489,22242369:280875 -k1,11118:12644841,22242369:280874 -k1,11118:15673640,22242369:280874 -k1,11118:16167424,22242369:280792 -k1,11118:17580761,22242369:280875 -k1,11118:19599650,22242369:280874 -k1,11118:21530721,22242369:280874 -k1,11118:22620966,22242369:280875 -k1,11118:23920925,22242369:280874 -k1,11118:26985768,22242369:280874 -k1,11118:28848026,22242369:280874 -k1,11118:30320346,22242369:280875 -k1,11118:31931601,22242369:280874 -k1,11118:32583029,22242369:0 -) -(1,11119:6630773,23083857:25952256,513147,126483 -k1,11118:7943008,23083857:219750 -k1,11118:9801814,23083857:219751 -k1,11118:11464011,23083857:219750 -k1,11118:12493131,23083857:219750 -k1,11118:14221521,23083857:219751 -k1,11118:15676625,23083857:219750 -k1,11118:16512413,23083857:219750 -k1,11118:17751249,23083857:219751 -k1,11118:20525592,23083857:219750 -k1,11118:21404634,23083857:219750 -k1,11118:23187418,23083857:219750 -k1,11118:24603856,23083857:219751 -k1,11118:26735947,23083857:219750 -k1,11118:27405274,23083857:219750 -k1,11118:28549083,23083857:219751 -k1,11118:30303031,23083857:219750 -k1,11119:32583029,23083857:0 -) -(1,11119:6630773,23925345:25952256,513147,134348 -k1,11118:9939685,23925345:177602 -k1,11118:11308733,23925345:177603 -k1,11118:15071810,23925345:177602 -k1,11118:17050341,23925345:177602 -k1,11118:18419388,23925345:177602 -k1,11118:19046568,23925345:177603 -k1,11118:23614427,23925345:177602 -k1,11118:24716087,23925345:177602 -k1,11118:26427887,23925345:177602 -k1,11118:28885488,23925345:177603 -k1,11118:30782100,23925345:177602 -k1,11118:32583029,23925345:0 -) -(1,11119:6630773,24766833:25952256,513147,134348 -g1,11118:8718094,24766833 -g1,11118:10638298,24766833 -g1,11118:11856612,24766833 -g1,11118:13709314,24766833 -g1,11118:16548989,24766833 -g1,11118:18315839,24766833 -g1,11118:19534153,24766833 -g1,11118:23384393,24766833 -g1,11118:24242914,24766833 -g1,11118:25831506,24766833 -k1,11119:32583029,24766833:4023259 -g1,11119:32583029,24766833 -) -(1,11120:6630773,27574401:25952256,32768,229376 -(1,11120:6630773,27574401:0,32768,229376 -(1,11120:6630773,27574401:5505024,32768,229376 -r1,11151:12135797,27574401:5505024,262144,229376 -) -k1,11120:6630773,27574401:-5505024 -) -(1,11120:6630773,27574401:25952256,32768,0 -r1,11151:32583029,27574401:25952256,32768,0 -) -) -(1,11120:6630773,29178729:25952256,606339,161218 -(1,11120:6630773,29178729:1974731,582746,14155 -g1,11120:6630773,29178729 -g1,11120:8605504,29178729 -) -g1,11120:12473177,29178729 -g1,11120:14599689,29178729 -g1,11120:15614973,29178729 -g1,11120:17348269,29178729 -k1,11120:32583029,29178729:12233735 -g1,11120:32583029,29178729 -) -v1,11123:6630773,30762411:0,393216,0 -(1,11127:6630773,31077507:25952256,708312,196608 -g1,11127:6630773,31077507 -g1,11127:6630773,31077507 -g1,11127:6434165,31077507 -(1,11127:6434165,31077507:0,708312,196608 -r1,11151:32779637,31077507:26345472,904920,196608 -k1,11127:6434165,31077507:-26345472 -) -(1,11127:6434165,31077507:26345472,708312,196608 -[1,11127:6630773,31077507:25952256,511704,0 -(1,11125:6630773,30970029:25952256,404226,107478 -(1,11124:6630773,30970029:0,0,0 -g1,11124:6630773,30970029 -g1,11124:6630773,30970029 -g1,11124:6303093,30970029 -(1,11124:6303093,30970029:0,0,0 -) -g1,11124:6630773,30970029 -) -k1,11125:6630773,30970029:0 -h1,11125:19908891,30970029:0,0,0 -k1,11125:32583029,30970029:12674138 -g1,11125:32583029,30970029 -) -] -) -g1,11127:32583029,31077507 -g1,11127:6630773,31077507 -g1,11127:6630773,31077507 -g1,11127:32583029,31077507 -g1,11127:32583029,31077507 -) -h1,11127:6630773,31274115:0,0,0 -(1,11131:6630773,32639891:25952256,513147,126483 -h1,11130:6630773,32639891:983040,0,0 -k1,11130:8614266,32639891:171423 -k1,11130:9903734,32639891:171424 -k1,11130:11094242,32639891:171423 -k1,11130:14257384,32639891:171423 -k1,11130:17187217,32639891:171423 -k1,11130:17974679,32639891:171424 -k1,11130:19349343,32639891:171423 -k1,11130:22112060,32639891:171423 -k1,11130:23453957,32639891:171424 -k1,11130:25155646,32639891:171423 -k1,11130:26633202,32639891:171423 -k1,11130:27456053,32639891:171423 -k1,11130:29003733,32639891:171424 -k1,11130:30867296,32639891:171423 -k1,11131:32583029,32639891:0 -) -(1,11131:6630773,33481379:25952256,513147,134348 -k1,11130:8257991,33481379:219505 -k1,11130:10045116,33481379:219504 -k1,11130:11283706,33481379:219505 -k1,11130:13603639,33481379:219504 -k1,11130:15055221,33481379:219505 -k1,11130:17553412,33481379:219504 -h1,11130:18524000,33481379:0,0,0 -k1,11130:18743505,33481379:219505 -k1,11130:19772379,33481379:219504 -k1,11130:21490037,33481379:219505 -h1,11130:22685414,33481379:0,0,0 -k1,11130:22904918,33481379:219504 -k1,11130:24072074,33481379:219505 -k1,11130:26409046,33481379:219504 -k1,11130:27437921,33481379:219505 -k1,11130:28676510,33481379:219504 -k1,11130:29988500,33481379:219505 -k1,11130:30867296,33481379:219504 -k1,11131:32583029,33481379:0 -) -(1,11131:6630773,34322867:25952256,505283,134348 -k1,11131:32583029,34322867:24163778 -g1,11131:32583029,34322867 -) -v1,11133:6630773,35513333:0,393216,0 -(1,11144:6630773,40485384:25952256,5365267,196608 -g1,11144:6630773,40485384 -g1,11144:6630773,40485384 -g1,11144:6434165,40485384 -(1,11144:6434165,40485384:0,5365267,196608 -r1,11151:32779637,40485384:26345472,5561875,196608 -k1,11144:6434165,40485384:-26345472 -) -(1,11144:6434165,40485384:26345472,5365267,196608 -[1,11144:6630773,40485384:25952256,5168659,0 -(1,11135:6630773,35720951:25952256,404226,101187 -(1,11134:6630773,35720951:0,0,0 -g1,11134:6630773,35720951 -g1,11134:6630773,35720951 -g1,11134:6303093,35720951 -(1,11134:6303093,35720951:0,0,0 -) -g1,11134:6630773,35720951 -) -k1,11135:6630773,35720951:0 -h1,11135:12637541,35720951:0,0,0 -k1,11135:32583029,35720951:19945488 -g1,11135:32583029,35720951 -) -(1,11136:6630773,36387129:25952256,404226,101187 -h1,11136:6630773,36387129:0,0,0 -k1,11136:6630773,36387129:0 -h1,11136:11372958,36387129:0,0,0 -k1,11136:32583030,36387129:21210072 -g1,11136:32583030,36387129 -) -(1,11137:6630773,37053307:25952256,404226,107478 -h1,11137:6630773,37053307:0,0,0 -k1,11137:6630773,37053307:0 -h1,11137:12005250,37053307:0,0,0 -k1,11137:32583030,37053307:20577780 -g1,11137:32583030,37053307 -) -(1,11138:6630773,37719485:25952256,404226,101187 -h1,11138:6630773,37719485:0,0,0 -k1,11138:6630773,37719485:0 -h1,11138:11056813,37719485:0,0,0 -k1,11138:32583029,37719485:21526216 -g1,11138:32583029,37719485 -) -(1,11139:6630773,38385663:25952256,404226,107478 -h1,11139:6630773,38385663:0,0,0 -k1,11139:6630773,38385663:0 -h1,11139:11689104,38385663:0,0,0 -k1,11139:32583028,38385663:20893924 -g1,11139:32583028,38385663 -) -(1,11140:6630773,39051841:25952256,404226,101187 -h1,11140:6630773,39051841:0,0,0 -k1,11140:6630773,39051841:0 -h1,11140:11056813,39051841:0,0,0 -k1,11140:32583029,39051841:21526216 -g1,11140:32583029,39051841 -) -(1,11141:6630773,39718019:25952256,404226,101187 -h1,11141:6630773,39718019:0,0,0 -k1,11141:6630773,39718019:0 -h1,11141:11056813,39718019:0,0,0 -k1,11141:32583029,39718019:21526216 -g1,11141:32583029,39718019 -) -(1,11142:6630773,40384197:25952256,404226,101187 -h1,11142:6630773,40384197:0,0,0 -k1,11142:6630773,40384197:0 -h1,11142:12321395,40384197:0,0,0 -k1,11142:32583029,40384197:20261634 -g1,11142:32583029,40384197 -) -] -) -g1,11144:32583029,40485384 -g1,11144:6630773,40485384 -g1,11144:6630773,40485384 -g1,11144:32583029,40485384 -g1,11144:32583029,40485384 -) -h1,11144:6630773,40681992:0,0,0 -] -(1,11151:32583029,45706769:0,0,0 -g1,11151:32583029,45706769 -) -) -] -(1,11151:6630773,47279633:25952256,0,0 -h1,11151:6630773,47279633:25952256,0,0 -) -] -(1,11151:4262630,4025873:0,0,0 -[1,11151:-473656,4025873:0,0,0 -(1,11151:-473656,-710413:0,0,0 -(1,11151:-473656,-710413:0,0,0 -g1,11151:-473656,-710413 -) -g1,11151:-473656,-710413 -) -] -) -] -!20557 -}210 -Input:1546:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1547:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1548:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1549:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1550:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1551:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1552:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!656 -{211 -[1,11164:4262630,47279633:28320399,43253760,0 -(1,11164:4262630,4025873:0,0,0 -[1,11164:-473656,4025873:0,0,0 -(1,11164:-473656,-710413:0,0,0 -(1,11164:-473656,-644877:0,0,0 -k1,11164:-473656,-644877:-65536 -) -(1,11164:-473656,4736287:0,0,0 -k1,11164:-473656,4736287:5209943 -) -g1,11164:-473656,-710413 -) -] -) -[1,11164:6630773,47279633:25952256,43253760,0 -[1,11164:6630773,4812305:25952256,786432,0 -(1,11164:6630773,4812305:25952256,513147,134348 -(1,11164:6630773,4812305:25952256,513147,134348 -g1,11164:3078558,4812305 -[1,11164:3078558,4812305:0,0,0 -(1,11164:3078558,2439708:0,1703936,0 -k1,11164:1358238,2439708:-1720320 -(1,11088:1358238,2439708:1720320,1703936,0 -(1,11088:1358238,2439708:1179648,16384,0 -r1,11164:2537886,2439708:1179648,16384,0 -) -g1,11088:3062174,2439708 -(1,11088:3062174,2439708:16384,1703936,0 -[1,11088:3062174,2439708:25952256,1703936,0 -(1,11088:3062174,1915420:25952256,1179648,0 -(1,11088:3062174,1915420:16384,1179648,0 -r1,11164:3078558,1915420:16384,1179648,0 -) -k1,11088:29014430,1915420:25935872 -g1,11088:29014430,1915420 -) -] -) -) -) -] -[1,11164:3078558,4812305:0,0,0 -(1,11164:3078558,2439708:0,1703936,0 -g1,11164:29030814,2439708 -g1,11164:36135244,2439708 -(1,11088:36135244,2439708:1720320,1703936,0 -(1,11088:36135244,2439708:16384,1703936,0 -[1,11088:36135244,2439708:25952256,1703936,0 -(1,11088:36135244,1915420:25952256,1179648,0 -(1,11088:36135244,1915420:16384,1179648,0 -r1,11164:36151628,1915420:16384,1179648,0 -) -k1,11088:62087500,1915420:25935872 -g1,11088:62087500,1915420 -) -] -) -g1,11088:36675916,2439708 -(1,11088:36675916,2439708:1179648,16384,0 -r1,11164:37855564,2439708:1179648,16384,0 -) -) -k1,11164:3078556,2439708:-34777008 -) -] -[1,11164:3078558,4812305:0,0,0 -(1,11164:3078558,49800853:0,16384,2228224 -k1,11164:1358238,49800853:-1720320 -(1,11088:1358238,49800853:1720320,16384,2228224 -(1,11088:1358238,49800853:1179648,16384,0 -r1,11164:2537886,49800853:1179648,16384,0 -) -g1,11088:3062174,49800853 -(1,11088:3062174,52029077:16384,1703936,0 -[1,11088:3062174,52029077:25952256,1703936,0 -(1,11088:3062174,51504789:25952256,1179648,0 -(1,11088:3062174,51504789:16384,1179648,0 -r1,11164:3078558,51504789:16384,1179648,0 -) -k1,11088:29014430,51504789:25935872 -g1,11088:29014430,51504789 -) -] -) -) -) -] -[1,11164:3078558,4812305:0,0,0 -(1,11164:3078558,49800853:0,16384,2228224 -g1,11164:29030814,49800853 -g1,11164:36135244,49800853 -(1,11088:36135244,49800853:1720320,16384,2228224 -(1,11088:36135244,52029077:16384,1703936,0 -[1,11088:36135244,52029077:25952256,1703936,0 -(1,11088:36135244,51504789:25952256,1179648,0 -(1,11088:36135244,51504789:16384,1179648,0 -r1,11164:36151628,51504789:16384,1179648,0 -) -k1,11088:62087500,51504789:25935872 -g1,11088:62087500,51504789 -) -] -) -g1,11088:36675916,49800853 -(1,11088:36675916,49800853:1179648,16384,0 -r1,11164:37855564,49800853:1179648,16384,0 -) -) -k1,11164:3078556,49800853:-34777008 -) -] -g1,11164:6630773,4812305 -k1,11164:25241686,4812305:17415536 -g1,11164:26807341,4812305 -g1,11164:30339731,4812305 -g1,11164:31154998,4812305 -) -) -] -[1,11164:6630773,45706769:25952256,40108032,0 -(1,11164:6630773,45706769:25952256,40108032,0 -(1,11164:6630773,45706769:0,0,0 -g1,11164:6630773,45706769 -) -[1,11164:6630773,45706769:25952256,40108032,0 -(1,11147:6630773,6254097:25952256,32768,229376 -(1,11147:6630773,6254097:0,32768,229376 -(1,11147:6630773,6254097:5505024,32768,229376 -r1,11164:12135797,6254097:5505024,262144,229376 -) -k1,11147:6630773,6254097:-5505024 -) -(1,11147:6630773,6254097:25952256,32768,0 -r1,11164:32583029,6254097:25952256,32768,0 -) -) -(1,11147:6630773,7858425:25952256,615776,151780 -(1,11147:6630773,7858425:1974731,582746,14155 -g1,11147:6630773,7858425 -g1,11147:8605504,7858425 -) -g1,11147:14366905,7858425 -g1,11147:15787988,7858425 -(1,11147:15787988,7858425:0,551318,138361 -r1,11164:20015084,7858425:4227096,689679,138361 -k1,11147:15787988,7858425:-4227096 -) -(1,11147:15787988,7858425:4227096,551318,138361 -k1,11147:15787988,7858425:3277 -h1,11147:20011807,7858425:0,493446,135084 -) -k1,11147:32583029,7858425:12567945 -g1,11147:32583029,7858425 -) -(1,11149:6630773,9163253:25952256,555811,12975 -(1,11149:6630773,9163253:2450326,534184,12975 -g1,11149:6630773,9163253 -g1,11149:9081099,9163253 -) -k1,11149:32583029,9163253:19473564 -g1,11149:32583029,9163253 -) -(1,11151:6630773,10397957:25952256,513147,134348 -k1,11150:7979366,10397957:151906 -k1,11150:10826769,10397957:151907 -k1,11150:12078369,10397957:151906 -k1,11150:15420568,10397957:151906 -k1,11150:16231766,10397957:151906 -k1,11150:17402758,10397957:151907 -k1,11150:17969460,10397957:151859 -k1,11150:20963662,10397957:151906 -k1,11150:21647066,10397957:151907 -k1,11150:23083478,10397957:151906 -k1,11150:26638013,10397957:151906 -k1,11150:27781479,10397957:151906 -k1,11150:30138673,10397957:151907 -k1,11150:30942007,10397957:151906 -k1,11151:32583029,10397957:0 -) -(1,11151:6630773,11239445:25952256,513147,134348 -k1,11150:8448321,11239445:219780 -k1,11150:9429628,11239445:219779 -k1,11150:11333028,11239445:219780 -k1,11150:12030565,11239445:219780 -k1,11150:13269430,11239445:219780 -k1,11150:16891838,11239445:219779 -k1,11150:18103178,11239445:219780 -k1,11150:21158045,11239445:219780 -k1,11150:23387813,11239445:219779 -k1,11150:24626678,11239445:219780 -k1,11150:26342645,11239445:219780 -k1,11150:27221717,11239445:219780 -k1,11150:27797356,11239445:219779 -k1,11150:30886302,11239445:219780 -k1,11150:32583029,11239445:0 -) -(1,11151:6630773,12080933:25952256,513147,134348 -k1,11150:9385633,12080933:183883 -k1,11150:10561076,12080933:183883 -k1,11150:12239180,12080933:183883 -k1,11150:13074491,12080933:183883 -k1,11150:14277459,12080933:183883 -k1,11150:17330508,12080933:183883 -k1,11150:17992149,12080933:183884 -k1,11150:22377545,12080933:183883 -k1,11150:24977740,12080933:183883 -k1,11150:26364864,12080933:183883 -k1,11150:29408738,12080933:183883 -k1,11150:31548871,12080933:183883 -k1,11151:32583029,12080933:0 -) -(1,11151:6630773,12922421:25952256,513147,134348 -k1,11150:8303019,12922421:179336 -k1,11150:8838215,12922421:179336 -k1,11150:10568788,12922421:179336 -k1,11150:11809807,12922421:179336 -k1,11150:12798513,12922421:179336 -k1,11150:17227203,12922421:179336 -k1,11150:20250802,12922421:179336 -k1,11150:20844961,12922421:179316 -k1,11150:21640335,12922421:179336 -k1,11150:23421371,12922421:179336 -k1,11150:26757576,12922421:179336 -k1,11150:28312513,12922421:179336 -k1,11150:30537883,12922421:179336 -k1,11150:31073079,12922421:179336 -k1,11150:32583029,12922421:0 -) -(1,11151:6630773,13763909:25952256,513147,134348 -k1,11150:7465810,13763909:218999 -k1,11150:10316080,13763909:218999 -k1,11150:11001041,13763909:219000 -k1,11150:12411485,13763909:218999 -k1,11150:14328522,13763909:218999 -k1,11150:15566606,13763909:218999 -k1,11150:17465948,13763909:218999 -k1,11150:20429595,13763909:218999 -k1,11150:25169269,13763909:219000 -k1,11150:26335919,13763909:218999 -k1,11150:29040699,13763909:218999 -k1,11150:31923737,13763909:218999 -k1,11151:32583029,13763909:0 -) -(1,11151:6630773,14605397:25952256,513147,134348 -k1,11150:7285238,14605397:239622 -k1,11150:9410373,14605397:239664 -k1,11150:10641596,14605397:239663 -k1,11150:12235233,14605397:239663 -k1,11150:14058901,14605397:239663 -k1,11150:14911326,14605397:239663 -k1,11150:17870733,14605397:239663 -k1,11150:22049110,14605397:239663 -k1,11150:24788972,14605397:239663 -k1,11150:25687927,14605397:239663 -k1,11150:28391088,14605397:239663 -k1,11150:29649836,14605397:239663 -k1,11150:32168186,14605397:239663 -k1,11151:32583029,14605397:0 -) -(1,11151:6630773,15446885:25952256,513147,134348 -k1,11150:10106934,15446885:285868 -k1,11150:11493807,15446885:285868 -k1,11150:13155276,15446885:285868 -k1,11150:13797004,15446885:285868 -k1,11150:17113912,15446885:285868 -k1,11150:20054643,15446885:285868 -k1,11150:22528758,15446885:285868 -k1,11150:23623996,15446885:285868 -k1,11150:28159218,15446885:285868 -k1,11150:31379788,15446885:285868 -k1,11150:32583029,15446885:0 -) -(1,11151:6630773,16288373:25952256,513147,134348 -k1,11150:9054013,16288373:234993 -k1,11150:10393288,16288373:234993 -k1,11150:11826936,16288373:234994 -k1,11150:12809695,16288373:234993 -k1,11150:13400548,16288373:234993 -k1,11150:16312031,16288373:234993 -k1,11150:17233187,16288373:234994 -k1,11150:21492091,16288373:234993 -k1,11150:22258581,16288373:234993 -k1,11150:25224459,16288373:234993 -k1,11150:26072214,16288373:234993 -k1,11150:27326293,16288373:234994 -k1,11150:29520812,16288373:234993 -k1,11150:31391584,16288373:234993 -k1,11150:32583029,16288373:0 -) -(1,11151:6630773,17129861:25952256,513147,134348 -k1,11150:11022296,17129861:166417 -k1,11150:11603523,17129861:166384 -k1,11150:13106874,17129861:166417 -k1,11150:14989024,17129861:166417 -k1,11150:17183125,17129861:166417 -k1,11150:18008834,17129861:166417 -k1,11150:19746149,17129861:166417 -k1,11150:22202394,17129861:166417 -k1,11150:23862376,17129861:166416 -k1,11150:24714955,17129861:166417 -k1,11150:25237232,17129861:166417 -k1,11150:27286498,17129861:166417 -k1,11150:28842278,17129861:166417 -k1,11150:30884991,17129861:166417 -k1,11150:32583029,17129861:0 -) -(1,11151:6630773,17971349:25952256,505283,134348 -g1,11150:8205603,17971349 -g1,11150:10415477,17971349 -g1,11150:11230744,17971349 -g1,11150:11785833,17971349 -g1,11150:13858081,17971349 -g1,11150:16440199,17971349 -g1,11150:17322313,17971349 -g1,11150:18988238,17971349 -g1,11150:20416267,17971349 -g1,11150:21386199,17971349 -g1,11150:24364155,17971349 -g1,11150:26038599,17971349 -k1,11151:32583029,17971349:3709343 -g1,11151:32583029,17971349 -) -(1,11153:6630773,18812837:25952256,513147,134348 -h1,11152:6630773,18812837:983040,0,0 -k1,11152:10896293,18812837:162311 -k1,11152:12250049,18812837:162311 -k1,11152:15196985,18812837:162311 -k1,11152:16926917,18812837:162311 -k1,11152:19669379,18812837:162310 -k1,11152:23341797,18812837:162311 -k1,11152:24941313,18812837:162311 -k1,11152:28506253,18812837:162311 -k1,11152:29430092,18812837:162311 -k1,11152:32583029,18812837:0 -) -(1,11153:6630773,19654325:25952256,513147,134348 -k1,11152:9507934,19654325:157417 -k1,11152:12023993,19654325:157418 -k1,11152:13313217,19654325:157417 -k1,11152:15671989,19654325:157418 -k1,11152:18764108,19654325:157417 -k1,11152:20053332,19654325:157417 -k1,11152:24186819,19654325:157418 -k1,11152:26354225,19654325:157417 -k1,11152:28208370,19654325:157418 -k1,11152:31391584,19654325:157417 -k1,11152:32583029,19654325:0 -) -(1,11153:6630773,20495813:25952256,513147,134348 -k1,11152:9659192,20495813:243794 -k1,11152:12165288,20495813:243793 -k1,11152:13428167,20495813:243794 -k1,11152:16183301,20495813:243794 -k1,11152:18632381,20495813:243793 -k1,11152:19562337,20495813:243794 -k1,11152:20576833,20495813:243793 -k1,11152:24066625,20495813:243794 -k1,11152:25691263,20495813:243794 -k1,11152:29021802,20495813:243793 -k1,11152:30284681,20495813:243794 -k1,11152:32583029,20495813:0 -) -(1,11153:6630773,21337301:25952256,513147,134348 -k1,11152:8384385,21337301:231866 -k1,11152:9563903,21337301:231867 -k1,11152:12254024,21337301:231866 -k1,11152:14986089,21337301:231866 -k1,11152:16409400,21337301:231866 -k1,11152:17927083,21337301:231867 -k1,11152:18920477,21337301:231866 -k1,11152:21872087,21337301:231866 -k1,11152:23123038,21337301:231866 -k1,11152:24885171,21337301:231867 -k1,11152:25768465,21337301:231866 -k1,11152:27716064,21337301:231866 -k1,11152:28303790,21337301:231866 -k1,11152:30045607,21337301:231867 -k1,11152:30936765,21337301:231866 -k1,11153:32583029,21337301:0 -) -(1,11153:6630773,22178789:25952256,513147,134348 -k1,11152:8993286,22178789:219486 -k1,11152:11900403,22178789:219486 -k1,11152:13138974,22178789:219486 -k1,11152:14693428,22178789:219486 -k1,11152:17542874,22178789:219486 -k1,11152:22011715,22178789:219487 -k1,11152:23612045,22178789:219486 -k1,11152:24363028,22178789:219486 -k1,11152:24938374,22178789:219486 -k1,11152:28711222,22178789:219486 -k1,11152:31510860,22178789:219486 -k1,11152:32583029,22178789:0 -) -(1,11153:6630773,23020277:25952256,513147,134348 -k1,11152:9930763,23020277:161471 -k1,11152:12069454,23020277:161470 -k1,11152:13928963,23020277:161471 -k1,11152:16409752,23020277:161470 -k1,11152:17965174,23020277:161471 -k1,11152:19480618,23020277:161470 -k1,11152:21212987,23020277:161471 -k1,11152:22763820,23020277:161470 -k1,11152:24363806,23020277:161471 -k1,11152:26868188,23020277:161470 -k1,11152:28410503,23020277:161471 -k1,11152:30241830,23020277:161470 -k1,11152:31896867,23020277:161471 -k1,11152:32583029,23020277:0 -) -(1,11153:6630773,23861765:25952256,513147,134348 -k1,11152:9211800,23861765:245979 -k1,11152:10851729,23861765:245978 -k1,11152:14607815,23861765:245979 -k1,11152:17475888,23861765:245978 -k1,11152:18077727,23861765:245979 -k1,11152:19907710,23861765:245978 -k1,11152:24808711,23861765:245979 -k1,11152:25713981,23861765:245978 -k1,11152:26979045,23861765:245979 -k1,11152:32583029,23861765:0 -) -(1,11153:6630773,24703253:25952256,505283,134348 -k1,11152:10240059,24703253:245323 -k1,11152:13832961,24703253:245323 -k1,11152:16658436,24703253:245323 -k1,11152:20413866,24703253:245323 -k1,11152:22705224,24703253:245324 -k1,11152:23759917,24703253:245323 -k1,11152:26519856,24703253:245323 -k1,11152:27377941,24703253:245323 -k1,11152:31021961,24703253:245323 -k1,11153:32583029,24703253:0 -) -(1,11153:6630773,25544741:25952256,505283,126483 -g1,11152:9690649,25544741 -g1,11152:11283829,25544741 -g1,11152:13544821,25544741 -(1,11152:13544821,25544741:0,459977,115847 -r1,11164:17068493,25544741:3523672,575824,115847 -k1,11152:13544821,25544741:-3523672 -) -(1,11152:13544821,25544741:3523672,459977,115847 -k1,11152:13544821,25544741:3277 -h1,11152:17065216,25544741:0,411205,112570 -) -k1,11153:32583029,25544741:15340866 -g1,11153:32583029,25544741 -) -(1,11155:6630773,26386229:25952256,513147,134348 -h1,11154:6630773,26386229:983040,0,0 -k1,11154:8963253,26386229:152753 -k1,11154:12323994,26386229:152754 -k1,11154:13008244,26386229:152753 -k1,11154:13516858,26386229:152754 -k1,11154:16756357,26386229:152753 -k1,11154:17568403,26386229:152754 -k1,11154:20631610,26386229:152753 -k1,11154:25208044,26386229:152754 -k1,11154:25716657,26386229:152753 -k1,11154:27152606,26386229:152754 -k1,11154:30207949,26386229:152753 -k1,11154:31019995,26386229:152754 -k1,11154:32583029,26386229:0 -) -(1,11155:6630773,27227717:25952256,513147,134348 -k1,11154:7456433,27227717:197825 -k1,11154:10285529,27227717:197825 -k1,11154:11134782,27227717:197825 -k1,11154:12351693,27227717:197826 -k1,11154:14638150,27227717:197825 -k1,11154:15495267,27227717:197825 -k1,11154:18273244,27227717:197825 -k1,11154:22154846,27227717:197825 -k1,11154:23371756,27227717:197825 -k1,11154:25307596,27227717:197825 -k1,11154:26164714,27227717:197826 -k1,11154:27381624,27227717:197825 -k1,11154:30787436,27227717:197825 -k1,11154:31516758,27227717:197825 -k1,11154:32583029,27227717:0 -) -(1,11155:6630773,28069205:25952256,513147,134348 -k1,11154:8226992,28069205:220618 -k1,11154:12696964,28069205:220618 -k1,11154:14114269,28069205:220618 -k1,11154:16423519,28069205:220618 -k1,11154:17303429,28069205:220618 -k1,11154:18727289,28069205:220619 -k1,11154:21850497,28069205:220618 -k1,11154:23172120,28069205:220618 -k1,11154:24678554,28069205:220618 -k1,11154:28398139,28069205:220618 -k1,11154:31519380,28069205:220618 -k1,11155:32583029,28069205:0 -) -(1,11155:6630773,28910693:25952256,513147,134348 -k1,11154:8122538,28910693:171215 -k1,11154:12574565,28910693:171215 -k1,11154:14220995,28910693:171215 -k1,11154:15902161,28910693:171216 -k1,11154:18764284,28910693:171215 -k1,11154:22264073,28910693:171215 -k1,11154:23877735,28910693:171215 -k1,11154:24664988,28910693:171215 -k1,11154:26270131,28910693:171215 -k1,11154:26856162,28910693:171188 -k1,11154:27710262,28910693:171215 -k1,11154:31391584,28910693:171215 -k1,11154:32583029,28910693:0 -) -(1,11155:6630773,29752181:25952256,513147,134348 -k1,11154:7386681,29752181:139870 -k1,11154:9218690,29752181:139869 -k1,11154:11055942,29752181:139870 -k1,11154:12691999,29752181:139870 -k1,11154:15118419,29752181:139869 -k1,11154:16993682,29752181:139870 -k1,11154:18567480,29752181:139870 -k1,11154:19122133,29752181:139810 -k1,11154:20366285,29752181:139870 -k1,11154:24385886,29752181:139870 -k1,11154:28216087,29752181:139869 -k1,11154:29375042,29752181:139870 -k1,11154:32583029,29752181:0 -) -(1,11155:6630773,30593669:25952256,513147,134348 -k1,11154:8049901,30593669:227683 -k1,11154:9516870,30593669:227683 -k1,11154:11597256,30593669:227683 -k1,11154:13657325,30593669:227682 -k1,11154:15385782,30593669:227683 -k1,11154:18523919,30593669:227683 -k1,11154:20036108,30593669:227683 -k1,11154:23697222,30593669:227683 -k1,11154:24280764,30593669:227682 -k1,11154:27983166,30593669:227683 -k1,11154:29768640,30593669:227683 -k1,11154:31563944,30593669:227683 -k1,11154:32583029,30593669:0 -) -(1,11155:6630773,31435157:25952256,513147,126483 -g1,11154:8914047,31435157 -g1,11154:9772568,31435157 -g1,11154:10990882,31435157 -g1,11154:14398098,31435157 -g1,11154:15864793,31435157 -g1,11154:17348528,31435157 -g1,11154:18207049,31435157 -g1,11154:21916385,31435157 -g1,11154:22798499,31435157 -g1,11154:26022870,31435157 -g1,11154:29045390,31435157 -k1,11155:32583029,31435157:1030232 -g1,11155:32583029,31435157 -) -(1,11156:6630773,33526417:25952256,555811,12975 -(1,11156:6630773,33526417:2450326,534184,12975 -g1,11156:6630773,33526417 -g1,11156:9081099,33526417 -) -k1,11156:32583028,33526417:20980956 -g1,11156:32583028,33526417 -) -(1,11160:6630773,34761121:25952256,513147,134348 -k1,11159:8053201,34761121:225741 -k1,11159:10734577,34761121:225742 -k1,11159:11619610,34761121:225741 -k1,11159:14425503,34761121:225741 -k1,11159:16813277,34761121:225742 -k1,11159:19708299,34761121:225741 -k1,11159:21442680,34761121:225742 -(1,11159:21442680,34761121:0,452978,115847 -r1,11164:22504369,34761121:1061689,568825,115847 -k1,11159:21442680,34761121:-1061689 -) -(1,11159:21442680,34761121:1061689,452978,115847 -k1,11159:21442680,34761121:3277 -h1,11159:22501092,34761121:0,411205,112570 -) -k1,11159:22730110,34761121:225741 -k1,11159:24511020,34761121:225741 -k1,11159:25422924,34761121:225742 -k1,11159:29047362,34761121:225741 -k1,11159:32583029,34761121:0 -) -(1,11160:6630773,35602609:25952256,505283,126483 -k1,11159:8216925,35602609:192201 -(1,11159:8216925,35602609:0,459977,115847 -r1,11164:11740597,35602609:3523672,575824,115847 -k1,11159:8216925,35602609:-3523672 -) -(1,11159:8216925,35602609:3523672,459977,115847 -k1,11159:8216925,35602609:3277 -h1,11159:11737320,35602609:0,411205,112570 -) -k1,11159:11932797,35602609:192200 -k1,11159:13316443,35602609:192201 -k1,11159:15224377,35602609:192201 -k1,11159:15874674,35602609:192200 -k1,11159:16422735,35602609:192201 -k1,11159:18997825,35602609:192201 -k1,11159:20918865,35602609:192200 -k1,11159:22491910,35602609:192201 -k1,11159:26082808,35602609:192201 -k1,11159:30483730,35602609:192200 -k1,11159:31207428,35602609:192201 -k1,11159:32583029,35602609:0 -) -(1,11160:6630773,36444097:25952256,513147,126483 -g1,11159:8914047,36444097 -g1,11159:9838104,36444097 -g1,11159:10653371,36444097 -g1,11159:12544740,36444097 -g1,11159:15900838,36444097 -g1,11159:17489430,36444097 -g1,11159:19895256,36444097 -g1,11159:21285930,36444097 -g1,11159:23626876,36444097 -g1,11159:24817665,36444097 -g1,11159:26083165,36444097 -k1,11160:32583029,36444097:3021213 -g1,11160:32583029,36444097 -) -(1,11162:6630773,37285585:25952256,513147,134348 -h1,11161:6630773,37285585:983040,0,0 -k1,11161:9090994,37285585:280494 -k1,11161:10926657,37285585:280494 -k1,11161:12398596,37285585:280494 -k1,11161:15463715,37285585:280494 -k1,11161:17028715,37285585:280494 -k1,11161:19889361,37285585:280494 -k1,11161:22331887,37285585:280494 -k1,11161:24903520,37285585:280494 -k1,11161:26112004,37285585:280494 -k1,11161:28084638,37285585:280494 -k1,11161:29024424,37285585:280494 -k1,11161:30324003,37285585:280494 -k1,11162:32583029,37285585:0 -) -(1,11162:6630773,38127073:25952256,513147,134348 -k1,11161:8480246,38127073:251705 -k1,11161:11466769,38127073:251706 -k1,11161:12480002,38127073:251705 -k1,11161:13750793,38127073:251706 -k1,11161:16091130,38127073:251705 -k1,11161:17002127,38127073:251705 -k1,11161:18687761,38127073:251706 -k1,11161:19354256,38127073:251652 -k1,11161:20995325,38127073:251706 -k1,11161:23453627,38127073:251705 -k1,11161:24318095,38127073:251706 -k1,11161:25588885,38127073:251705 -k1,11161:27155898,38127073:251705 -k1,11161:28066896,38127073:251706 -k1,11161:30890889,38127073:251705 -k1,11161:32583029,38127073:0 -) -(1,11162:6630773,38968561:25952256,513147,134348 -k1,11161:12235193,38968561:261925 -k1,11161:13680044,38968561:261926 -k1,11161:14593397,38968561:261925 -k1,11161:17516740,38968561:261926 -k1,11161:21242898,38968561:261925 -k1,11161:23588869,38968561:261926 -k1,11161:24798445,38968561:261925 -k1,11161:27683777,38968561:261926 -k1,11161:31333913,38968561:261925 -k1,11162:32583029,38968561:0 -) -(1,11162:6630773,39810049:25952256,513147,126483 -k1,11161:8118860,39810049:204892 -k1,11161:9521094,39810049:204891 -k1,11161:12252399,39810049:204892 -k1,11161:13404941,39810049:204891 -k1,11161:16923333,39810049:204892 -k1,11161:17787517,39810049:204892 -k1,11161:19547577,39810049:204891 -(1,11161:19547577,39810049:0,452978,115847 -r1,11164:20960978,39810049:1413401,568825,115847 -k1,11161:19547577,39810049:-1413401 -) -(1,11161:19547577,39810049:1413401,452978,115847 -k1,11161:19547577,39810049:3277 -h1,11161:20957701,39810049:0,411205,112570 -) -k1,11161:21165870,39810049:204892 -k1,11161:22562207,39810049:204892 -k1,11161:25121807,39810049:204891 -k1,11161:27853112,39810049:204892 -k1,11161:29005654,39810049:204891 -k1,11161:31923737,39810049:204892 -k1,11161:32583029,39810049:0 -) -(1,11162:6630773,40651537:25952256,513147,134348 -k1,11161:8356200,40651537:170258 -(1,11161:8356200,40651537:0,452978,115847 -r1,11164:10473025,40651537:2116825,568825,115847 -k1,11161:8356200,40651537:-2116825 -) -(1,11161:8356200,40651537:2116825,452978,115847 -k1,11161:8356200,40651537:3277 -h1,11161:10469748,40651537:0,411205,112570 -) -k1,11161:10816952,40651537:170257 -k1,11161:13538527,40651537:170258 -k1,11161:14368076,40651537:170257 -k1,11161:16093503,40651537:170258 -(1,11161:16093503,40651537:0,452978,115847 -r1,11164:17506904,40651537:1413401,568825,115847 -k1,11161:16093503,40651537:-1413401 -) -(1,11161:16093503,40651537:1413401,452978,115847 -k1,11161:16093503,40651537:3277 -h1,11161:17503627,40651537:0,411205,112570 -) -k1,11161:17677161,40651537:170257 -k1,11161:18951701,40651537:170258 -k1,11161:19869724,40651537:170257 -k1,11161:21393956,40651537:170258 -k1,11161:23541434,40651537:170257 -k1,11161:24327730,40651537:170258 -k1,11161:26190127,40651537:170257 -k1,11161:29690925,40651537:170258 -k1,11161:32583029,40651537:0 -) -(1,11162:6630773,41493025:25952256,513147,126483 -k1,11161:7481430,41493025:191365 -k1,11161:10781823,41493025:191365 -k1,11161:11504685,41493025:191365 -k1,11161:12981866,41493025:191365 -k1,11161:16109244,41493025:191365 -k1,11161:17694560,41493025:191365 -k1,11161:18695295,41493025:191365 -k1,11161:20090557,41493025:191366 -k1,11161:22350238,41493025:191365 -k1,11161:24507028,41493025:191365 -k1,11161:25459921,41493025:191365 -k1,11161:28090536,41493025:191365 -k1,11161:30114288,41493025:191365 -k1,11161:31297213,41493025:191365 -k1,11161:32583029,41493025:0 -) -(1,11162:6630773,42334513:25952256,513147,134348 -k1,11161:10390639,42334513:243204 -k1,11161:11249881,42334513:243204 -k1,11161:13758665,42334513:243204 -k1,11161:16761590,42334513:243204 -k1,11161:17664086,42334513:243204 -k1,11161:19373985,42334513:243203 -k1,11161:23654207,42334513:243204 -k1,11161:25088856,42334513:243204 -k1,11161:28290355,42334513:243204 -k1,11161:31620305,42334513:243204 -k1,11162:32583029,42334513:0 -) -(1,11162:6630773,43176001:25952256,513147,134348 -k1,11161:8187035,43176001:151825 -k1,11161:8954897,43176001:151824 -k1,11161:10590457,43176001:151825 -(1,11161:10590457,43176001:0,452978,115847 -r1,11164:11652146,43176001:1061689,568825,115847 -k1,11161:10590457,43176001:-1061689 -) -(1,11161:10590457,43176001:1061689,452978,115847 -k1,11161:10590457,43176001:3277 -h1,11161:11648869,43176001:0,411205,112570 -) -k1,11161:11803971,43176001:151825 -k1,11161:13086946,43176001:151824 -k1,11161:13968842,43176001:151825 -k1,11161:16232237,43176001:151825 -k1,11161:17070878,43176001:151824 -k1,11161:20629264,43176001:151825 -k1,11161:21380743,43176001:151825 -k1,11161:24418117,43176001:151824 -k1,11161:25847239,43176001:151825 -k1,11161:27962523,43176001:151825 -k1,11161:29542377,43176001:151824 -k1,11161:31896212,43176001:151825 -k1,11161:32583029,43176001:0 -) -(1,11162:6630773,44017489:25952256,513147,134348 -k1,11161:8605934,44017489:154571 -k1,11161:10374002,44017489:154572 -k1,11161:13414123,44017489:154571 -k1,11161:14614649,44017489:154571 -k1,11161:15782408,44017489:154572 -k1,11161:19572916,44017489:154571 -k1,11161:20327141,44017489:154571 -k1,11161:22051300,44017489:154572 -k1,11161:24954451,44017489:154571 -k1,11161:26472172,44017489:154572 -k1,11161:28647218,44017489:154571 -k1,11161:29488606,44017489:154571 -k1,11161:30041637,44017489:154572 -k1,11161:31966991,44017489:154571 -k1,11161:32583029,44017489:0 -) -(1,11162:6630773,44858977:25952256,513147,134348 -k1,11161:7793430,44858977:176996 -k1,11161:11375676,44858977:176995 -k1,11161:12155603,44858977:176996 -k1,11161:14539195,44858977:176995 -k1,11161:16452895,44858977:176996 -k1,11161:18548784,44858977:176995 -k1,11161:19917225,44858977:176996 -k1,11161:21160491,44858977:176995 -k1,11161:22659348,44858977:176996 -k1,11161:23495635,44858977:176995 -k1,11161:24691716,44858977:176996 -k1,11161:25283532,44858977:176973 -k1,11161:28476494,44858977:176995 -k1,11161:29672575,44858977:176996 -k1,11161:32583029,44858977:0 -) -(1,11162:6630773,45700465:25952256,513147,134348 -k1,11161:7499015,45700465:252204 -k1,11161:8770305,45700465:252205 -k1,11161:12230496,45700465:252204 -k1,11161:13474260,45700465:252204 -k1,11161:16378051,45700465:252204 -k1,11161:18024207,45700465:252205 -k1,11161:20228073,45700465:252204 -k1,11161:23219027,45700465:252204 -k1,11161:26042208,45700465:252204 -k1,11161:27578919,45700465:252205 -k1,11161:30122917,45700465:252204 -k1,11161:31931601,45700465:252204 -k1,11161:32583029,45700465:0 -) -] -(1,11164:32583029,45706769:0,0,0 -g1,11164:32583029,45706769 -) -) -] -(1,11164:6630773,47279633:25952256,0,0 -h1,11164:6630773,47279633:25952256,0,0 -) -] -(1,11164:4262630,4025873:0,0,0 -[1,11164:-473656,4025873:0,0,0 -(1,11164:-473656,-710413:0,0,0 -(1,11164:-473656,-710413:0,0,0 -g1,11164:-473656,-710413 -) -g1,11164:-473656,-710413 -) -] -) -] -!25942 -}211 -Input:1553:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1554:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1555:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1556:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1557:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1558:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1559:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1560:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1561:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1562:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1563:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1564:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1565:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1208 -{212 -[1,11227:4262630,47279633:28320399,43253760,0 -(1,11227:4262630,4025873:0,0,0 -[1,11227:-473656,4025873:0,0,0 -(1,11227:-473656,-710413:0,0,0 -(1,11227:-473656,-644877:0,0,0 -k1,11227:-473656,-644877:-65536 -) -(1,11227:-473656,4736287:0,0,0 -k1,11227:-473656,4736287:5209943 -) -g1,11227:-473656,-710413 -) -] -) -[1,11227:6630773,47279633:25952256,43253760,0 -[1,11227:6630773,4812305:25952256,786432,0 -(1,11227:6630773,4812305:25952256,513147,126483 -(1,11227:6630773,4812305:25952256,513147,126483 -g1,11227:3078558,4812305 -[1,11227:3078558,4812305:0,0,0 -(1,11227:3078558,2439708:0,1703936,0 -k1,11227:1358238,2439708:-1720320 -(1,11088:1358238,2439708:1720320,1703936,0 -(1,11088:1358238,2439708:1179648,16384,0 -r1,11227:2537886,2439708:1179648,16384,0 -) -g1,11088:3062174,2439708 -(1,11088:3062174,2439708:16384,1703936,0 -[1,11088:3062174,2439708:25952256,1703936,0 -(1,11088:3062174,1915420:25952256,1179648,0 -(1,11088:3062174,1915420:16384,1179648,0 -r1,11227:3078558,1915420:16384,1179648,0 -) -k1,11088:29014430,1915420:25935872 -g1,11088:29014430,1915420 -) -] -) -) -) -] -[1,11227:3078558,4812305:0,0,0 -(1,11227:3078558,2439708:0,1703936,0 -g1,11227:29030814,2439708 -g1,11227:36135244,2439708 -(1,11088:36135244,2439708:1720320,1703936,0 -(1,11088:36135244,2439708:16384,1703936,0 -[1,11088:36135244,2439708:25952256,1703936,0 -(1,11088:36135244,1915420:25952256,1179648,0 -(1,11088:36135244,1915420:16384,1179648,0 -r1,11227:36151628,1915420:16384,1179648,0 -) -k1,11088:62087500,1915420:25935872 -g1,11088:62087500,1915420 -) -] -) -g1,11088:36675916,2439708 -(1,11088:36675916,2439708:1179648,16384,0 -r1,11227:37855564,2439708:1179648,16384,0 -) -) -k1,11227:3078556,2439708:-34777008 -) -] -[1,11227:3078558,4812305:0,0,0 -(1,11227:3078558,49800853:0,16384,2228224 -k1,11227:1358238,49800853:-1720320 -(1,11088:1358238,49800853:1720320,16384,2228224 -(1,11088:1358238,49800853:1179648,16384,0 -r1,11227:2537886,49800853:1179648,16384,0 -) -g1,11088:3062174,49800853 -(1,11088:3062174,52029077:16384,1703936,0 -[1,11088:3062174,52029077:25952256,1703936,0 -(1,11088:3062174,51504789:25952256,1179648,0 -(1,11088:3062174,51504789:16384,1179648,0 -r1,11227:3078558,51504789:16384,1179648,0 -) -k1,11088:29014430,51504789:25935872 -g1,11088:29014430,51504789 -) -] -) -) -) -] -[1,11227:3078558,4812305:0,0,0 -(1,11227:3078558,49800853:0,16384,2228224 -g1,11227:29030814,49800853 -g1,11227:36135244,49800853 -(1,11088:36135244,49800853:1720320,16384,2228224 -(1,11088:36135244,52029077:16384,1703936,0 -[1,11088:36135244,52029077:25952256,1703936,0 -(1,11088:36135244,51504789:25952256,1179648,0 -(1,11088:36135244,51504789:16384,1179648,0 -r1,11227:36151628,51504789:16384,1179648,0 -) -k1,11088:62087500,51504789:25935872 -g1,11088:62087500,51504789 -) -] -) -g1,11088:36675916,49800853 -(1,11088:36675916,49800853:1179648,16384,0 -r1,11227:37855564,49800853:1179648,16384,0 -) -) -k1,11227:3078556,49800853:-34777008 -) -] -g1,11227:6630773,4812305 -g1,11227:6630773,4812305 -g1,11227:11156689,4812305 -g1,11227:12279976,4812305 -g1,11227:16431026,4812305 -k1,11227:31387652,4812305:14956626 -) -) -] -[1,11227:6630773,45706769:25952256,40108032,0 -(1,11227:6630773,45706769:25952256,40108032,0 -(1,11227:6630773,45706769:0,0,0 -g1,11227:6630773,45706769 -) -[1,11227:6630773,45706769:25952256,40108032,0 -(1,11162:6630773,6254097:25952256,513147,134348 -k1,11161:7858010,6254097:208152 -k1,11161:9562350,6254097:208153 -k1,11161:10429794,6254097:208152 -k1,11161:12799324,6254097:208153 -k1,11161:14198921,6254097:208152 -k1,11161:17317527,6254097:208152 -k1,11161:18810186,6254097:208153 -k1,11161:20110823,6254097:208152 -k1,11161:22131701,6254097:208152 -k1,11161:23381876,6254097:208153 -k1,11161:26425115,6254097:208152 -k1,11161:28331306,6254097:208153 -k1,11161:31648486,6254097:208152 -k1,11161:32583029,6254097:0 -) -(1,11162:6630773,7095585:25952256,505283,134348 -g1,11161:7446040,7095585 -g1,11161:9786986,7095585 -g1,11161:10747743,7095585 -g1,11161:12658117,7095585 -g1,11161:13848906,7095585 -g1,11161:16166259,7095585 -g1,11161:17016916,7095585 -g1,11161:19994872,7095585 -g1,11161:22204746,7095585 -g1,11161:23504980,7095585 -g1,11161:26365626,7095585 -g1,11161:27958806,7095585 -k1,11162:32583029,7095585:1903824 -g1,11162:32583029,7095585 -) -v1,11164:6630773,8461361:0,393216,0 -(1,11165:6630773,13262154:25952256,5194009,616038 -g1,11165:6630773,13262154 -(1,11165:6630773,13262154:25952256,5194009,616038 -(1,11165:6630773,13878192:25952256,5810047,0 -[1,11165:6630773,13878192:25952256,5810047,0 -(1,11165:6630773,13851978:25952256,5757619,0 -r1,11227:6656987,13851978:26214,5757619,0 -[1,11165:6656987,13851978:25899828,5757619,0 -(1,11165:6656987,13262154:25899828,4577971,0 -[1,11165:7246811,13262154:24720180,4577971,0 -(1,11165:7246811,9769719:24720180,1085536,298548 -(1,11164:7246811,9769719:0,1085536,298548 -r1,11227:8753226,9769719:1506415,1384084,298548 -k1,11164:7246811,9769719:-1506415 -) -(1,11164:7246811,9769719:1506415,1085536,298548 -) -k1,11164:8925559,9769719:172333 -k1,11164:9567785,9769719:172333 -k1,11164:10271615,9769719:172333 -k1,11164:11838555,9769719:172334 -k1,11164:12662316,9769719:172333 -k1,11164:14449456,9769719:172333 -k1,11164:16117976,9769719:172333 -k1,11164:17574815,9769719:172333 -k1,11164:18879610,9769719:172333 -k1,11164:20648400,9769719:172333 -k1,11164:23629606,9769719:172333 -k1,11164:25268636,9769719:172334 -k1,11164:26834920,9769719:172333 -k1,11164:28396616,9769719:172333 -k1,11164:30775546,9769719:172333 -k1,11164:31966991,9769719:0 -) -(1,11165:7246811,10611207:24720180,513147,134348 -k1,11164:9637172,10611207:248644 -k1,11164:10647343,10611207:248643 -k1,11164:13615731,10611207:248644 -k1,11164:17218507,10611207:248643 -k1,11164:18751657,10611207:248644 -k1,11164:21223281,10611207:248643 -k1,11164:24974169,10611207:248644 -k1,11164:28157514,10611207:248643 -k1,11164:29902345,10611207:248644 -k1,11164:31435494,10611207:248643 -k1,11164:31966991,10611207:0 -) -(1,11165:7246811,11452695:24720180,513147,134348 -k1,11164:11418553,11452695:200260 -k1,11164:13861454,11452695:200259 -k1,11164:17178606,11452695:200260 -k1,11164:18030293,11452695:200259 -k1,11164:19249638,11452695:200260 -k1,11164:19864739,11452695:200258 -k1,11164:22907294,11452695:200259 -k1,11164:24444488,11452695:200260 -k1,11164:25671696,11452695:200259 -k1,11164:26337917,11452695:200260 -k1,11164:26894036,11452695:200259 -k1,11164:28905711,11452695:200260 -k1,11164:29637467,11452695:200259 -k1,11164:31350953,11452695:200260 -k1,11164:31966991,11452695:0 -) -(1,11165:7246811,12294183:24720180,513147,126483 -k1,11164:9068560,12294183:159101 -k1,11164:9886954,12294183:159102 -k1,11164:10401915,12294183:159101 -k1,11164:11950379,12294183:159101 -k1,11164:14159447,12294183:159102 -k1,11164:15808837,12294183:159101 -k1,11164:18993735,12294183:159101 -k1,11164:21112362,12294183:159101 -k1,11164:21922892,12294183:159102 -k1,11164:23678450,12294183:159101 -k1,11164:26646424,12294183:159101 -k1,11164:28199477,12294183:159102 -k1,11164:29825274,12294183:159101 -k1,11164:31966991,12294183:0 -) -(1,11165:7246811,13135671:24720180,513147,126483 -g1,11164:8637485,13135671 -g1,11164:10226077,13135671 -g1,11164:12631903,13135671 -g1,11164:13935414,13135671 -g1,11164:14882409,13135671 -g1,11164:16891742,13135671 -g1,11164:18735925,13135671 -g1,11164:19621316,13135671 -k1,11165:31966991,13135671:8636337 -g1,11165:31966991,13135671 -) -] -) -] -r1,11227:32583029,13851978:26214,5757619,0 -) -] -) -) -g1,11165:32583029,13262154 -) -h1,11165:6630773,13878192:0,0,0 -v1,11168:6630773,15243968:0,393216,0 -(1,11197:6630773,32268926:25952256,17418174,616038 -g1,11197:6630773,32268926 -(1,11197:6630773,32268926:25952256,17418174,616038 -(1,11197:6630773,32884964:25952256,18034212,0 -[1,11197:6630773,32884964:25952256,18034212,0 -(1,11197:6630773,32858750:25952256,17981784,0 -r1,11227:6656987,32858750:26214,17981784,0 -[1,11197:6656987,32858750:25899828,17981784,0 -(1,11197:6656987,32268926:25899828,16802136,0 -[1,11197:7246811,32268926:24720180,16802136,0 -(1,11169:7246811,16628675:24720180,1161885,196608 -(1,11168:7246811,16628675:0,1161885,196608 -r1,11227:8794447,16628675:1547636,1358493,196608 -k1,11168:7246811,16628675:-1547636 -) -(1,11168:7246811,16628675:1547636,1161885,196608 -) -k1,11168:8946996,16628675:152549 -k1,11168:10296233,16628675:152550 -(1,11168:10296233,16628675:0,452978,115847 -r1,11227:12764770,16628675:2468537,568825,115847 -k1,11168:10296233,16628675:-2468537 -) -(1,11168:10296233,16628675:2468537,452978,115847 -k1,11168:10296233,16628675:3277 -h1,11168:12761493,16628675:0,411205,112570 -) -k1,11168:12917319,16628675:152549 -k1,11168:15524191,16628675:152549 -k1,11168:16624392,16628675:152550 -k1,11168:18918658,16628675:152549 -k1,11168:21144766,16628675:152549 -k1,11168:22864937,16628675:152550 -k1,11168:24301992,16628675:152549 -k1,11168:25402193,16628675:152550 -k1,11168:26944105,16628675:152549 -k1,11168:29303251,16628675:152549 -k1,11168:30071839,16628675:152550 -k1,11168:31508894,16628675:152549 -k1,11168:31966991,16628675:0 -) -(1,11169:7246811,17470163:24720180,513147,126483 -k1,11168:9909759,17470163:173891 -k1,11168:10439510,17470163:173891 -k1,11168:12787886,17470163:173891 -k1,11168:14355728,17470163:173891 -k1,11168:15548704,17470163:173891 -k1,11168:16948774,17470163:173891 -k1,11168:17910383,17470163:173866 -k1,11168:20369514,17470163:173891 -k1,11168:23296572,17470163:173891 -k1,11168:24231991,17470163:173891 -k1,11168:25424967,17470163:173891 -k1,11168:29274117,17470163:173891 -k1,11168:31966991,17470163:0 -) -(1,11169:7246811,18311651:24720180,513147,102891 -k1,11168:8071800,18311651:165697 -k1,11168:9771695,18311651:165697 -$1,11168:9771695,18311651 -$1,11168:10339892,18311651 -k1,11168:10505589,18311651:165697 -k1,11168:13157067,18311651:165697 -k1,11168:13982056,18311651:165697 -k1,11168:17241707,18311651:165696 -k1,11168:18935048,18311651:165697 -k1,11168:20986871,18311651:165697 -k1,11168:22604190,18311651:165697 -k1,11168:25152776,18311651:165697 -k1,11168:27056488,18311651:165697 -k1,11168:27992888,18311651:165697 -k1,11168:31966991,18311651:0 -) -(1,11169:7246811,19153139:24720180,513147,134348 -k1,11168:8108609,19153139:202506 -k1,11168:9099514,19153139:202507 -k1,11168:10857189,19153139:202506 -k1,11168:12251140,19153139:202506 -k1,11168:14780829,19153139:202506 -k1,11168:15642628,19153139:202507 -k1,11168:18417422,19153139:202506 -k1,11168:19386044,19153139:202506 -k1,11168:21122749,19153139:202507 -k1,11168:22516700,19153139:202506 -k1,11168:25606067,19153139:202506 -k1,11168:26164433,19153139:202506 -k1,11168:28619412,19153139:202507 -k1,11168:31307699,19153139:202506 -k1,11168:31966991,19153139:0 -) -(1,11169:7246811,19994627:24720180,513147,126483 -k1,11168:9163214,19994627:277348 -k1,11168:10432122,19994627:277348 -k1,11168:13946294,19994627:277349 -k1,11168:14851477,19994627:277348 -k1,11168:17968500,19994627:277348 -k1,11168:21438762,19994627:277348 -k1,11168:23726755,19994627:277348 -k1,11168:24995664,19994627:277349 -k1,11168:28478378,19994627:277348 -k1,11168:30405923,19994627:277348 -k1,11169:31966991,19994627:0 -) -(1,11169:7246811,20836115:24720180,513147,134348 -g1,11168:9379352,20836115 -g1,11168:10770026,20836115 -g1,11168:12704648,20836115 -g1,11168:14519995,20836115 -g1,11168:15370652,20836115 -g1,11168:18600921,20836115 -g1,11168:19747801,20836115 -g1,11168:22782117,20836115 -g1,11168:25636209,20836115 -g1,11168:28651520,20836115 -g1,11168:29466787,20836115 -k1,11169:31966991,20836115:1270093 -g1,11169:31966991,20836115 -) -v1,11171:7246811,22026581:0,393216,0 -(1,11185:7246811,27644887:24720180,6011522,196608 -g1,11185:7246811,27644887 -g1,11185:7246811,27644887 -g1,11185:7050203,27644887 -(1,11185:7050203,27644887:0,6011522,196608 -r1,11227:32163599,27644887:25113396,6208130,196608 -k1,11185:7050203,27644887:-25113396 -) -(1,11185:7050203,27644887:25113396,6011522,196608 -[1,11185:7246811,27644887:24720180,5814914,0 -(1,11173:7246811,22240491:24720180,410518,107478 -(1,11172:7246811,22240491:0,0,0 -g1,11172:7246811,22240491 -g1,11172:7246811,22240491 -g1,11172:6919131,22240491 -(1,11172:6919131,22240491:0,0,0 -) -g1,11172:7246811,22240491 -) -k1,11173:7246811,22240491:0 -g1,11173:10092123,22240491 -g1,11173:10724415,22240491 -g1,11173:15150456,22240491 -g1,11173:15782748,22240491 -g1,11173:16415040,22240491 -g1,11173:18311916,22240491 -g1,11173:18944208,22240491 -g1,11173:19576500,22240491 -g1,11173:22421812,22240491 -g1,11173:23054104,22240491 -g1,11173:24002542,22240491 -g1,11173:24950979,22240491 -g1,11173:25583271,22240491 -g1,11173:26531709,22240491 -g1,11173:30009312,22240491 -g1,11173:30641604,22240491 -h1,11173:31590041,22240491:0,0,0 -k1,11173:31966991,22240491:376950 -g1,11173:31966991,22240491 -) -(1,11184:7246811,22972205:24720180,404226,9436 -(1,11175:7246811,22972205:0,0,0 -g1,11175:7246811,22972205 -g1,11175:7246811,22972205 -g1,11175:6919131,22972205 -(1,11175:6919131,22972205:0,0,0 -) -g1,11175:7246811,22972205 -) -g1,11184:8195248,22972205 -g1,11184:8827540,22972205 -g1,11184:9459832,22972205 -g1,11184:11988998,22972205 -g1,11184:12621290,22972205 -g1,11184:13253582,22972205 -h1,11184:13569728,22972205:0,0,0 -k1,11184:31966992,22972205:18397264 -g1,11184:31966992,22972205 -) -(1,11184:7246811,23638383:24720180,379060,7863 -h1,11184:7246811,23638383:0,0,0 -g1,11184:8195248,23638383 -g1,11184:8511394,23638383 -g1,11184:8827540,23638383 -g1,11184:9459832,23638383 -g1,11184:9775978,23638383 -g1,11184:10092124,23638383 -g1,11184:10408270,23638383 -g1,11184:10724416,23638383 -g1,11184:11040562,23638383 -g1,11184:11356708,23638383 -g1,11184:11672854,23638383 -g1,11184:11989000,23638383 -g1,11184:12621292,23638383 -g1,11184:12937438,23638383 -g1,11184:13253584,23638383 -g1,11184:13569730,23638383 -g1,11184:13885876,23638383 -h1,11184:14202022,23638383:0,0,0 -k1,11184:31966990,23638383:17764968 -g1,11184:31966990,23638383 -) -(1,11184:7246811,24304561:24720180,404226,6290 -h1,11184:7246811,24304561:0,0,0 -g1,11184:8195248,24304561 -g1,11184:8511394,24304561 -g1,11184:8827540,24304561 -g1,11184:10724415,24304561 -g1,11184:12621290,24304561 -k1,11184:12621290,24304561:0 -h1,11184:14202019,24304561:0,0,0 -k1,11184:31966991,24304561:17764972 -g1,11184:31966991,24304561 -) -(1,11184:7246811,24970739:24720180,388497,0 -h1,11184:7246811,24970739:0,0,0 -g1,11184:8195248,24970739 -g1,11184:8827540,24970739 -g1,11184:9459832,24970739 -g1,11184:9775978,24970739 -g1,11184:10092124,24970739 -g1,11184:10408270,24970739 -g1,11184:10724416,24970739 -g1,11184:11040562,24970739 -g1,11184:11356708,24970739 -g1,11184:11672854,24970739 -g1,11184:12621291,24970739 -g1,11184:12937437,24970739 -h1,11184:13253583,24970739:0,0,0 -k1,11184:31966991,24970739:18713408 -g1,11184:31966991,24970739 -) -(1,11184:7246811,25636917:24720180,388497,9436 -h1,11184:7246811,25636917:0,0,0 -g1,11184:8195248,25636917 -g1,11184:8827540,25636917 -g1,11184:9459832,25636917 -g1,11184:9775978,25636917 -g1,11184:10092124,25636917 -g1,11184:10408270,25636917 -g1,11184:10724416,25636917 -g1,11184:11040562,25636917 -g1,11184:11356708,25636917 -g1,11184:11672854,25636917 -g1,11184:12621291,25636917 -g1,11184:12937437,25636917 -h1,11184:14202020,25636917:0,0,0 -k1,11184:31966992,25636917:17764972 -g1,11184:31966992,25636917 -) -(1,11184:7246811,26303095:24720180,388497,9436 -h1,11184:7246811,26303095:0,0,0 -g1,11184:8195248,26303095 -g1,11184:8827540,26303095 -g1,11184:9459832,26303095 -g1,11184:9775978,26303095 -g1,11184:10092124,26303095 -g1,11184:10408270,26303095 -g1,11184:10724416,26303095 -g1,11184:11040562,26303095 -g1,11184:11356708,26303095 -g1,11184:11672854,26303095 -g1,11184:11989000,26303095 -g1,11184:12621292,26303095 -g1,11184:12937438,26303095 -h1,11184:13885875,26303095:0,0,0 -k1,11184:31966991,26303095:18081116 -g1,11184:31966991,26303095 -) -(1,11184:7246811,26969273:24720180,388497,9436 -h1,11184:7246811,26969273:0,0,0 -g1,11184:8195248,26969273 -g1,11184:8827540,26969273 -g1,11184:9459832,26969273 -g1,11184:9775978,26969273 -g1,11184:10092124,26969273 -g1,11184:10408270,26969273 -g1,11184:10724416,26969273 -g1,11184:11040562,26969273 -g1,11184:11356708,26969273 -g1,11184:11672854,26969273 -g1,11184:11989000,26969273 -g1,11184:12621292,26969273 -g1,11184:12937438,26969273 -h1,11184:14202021,26969273:0,0,0 -k1,11184:31966991,26969273:17764970 -g1,11184:31966991,26969273 -) -(1,11184:7246811,27635451:24720180,388497,9436 -h1,11184:7246811,27635451:0,0,0 -g1,11184:8195248,27635451 -g1,11184:8827540,27635451 -g1,11184:9459832,27635451 -g1,11184:9775978,27635451 -g1,11184:10092124,27635451 -g1,11184:10408270,27635451 -g1,11184:10724416,27635451 -g1,11184:11040562,27635451 -g1,11184:11356708,27635451 -g1,11184:11672854,27635451 -g1,11184:11989000,27635451 -g1,11184:12621292,27635451 -g1,11184:12937438,27635451 -h1,11184:13253584,27635451:0,0,0 -k1,11184:31966992,27635451:18713408 -g1,11184:31966992,27635451 -) -] -) -g1,11185:31966991,27644887 -g1,11185:7246811,27644887 -g1,11185:7246811,27644887 -g1,11185:31966991,27644887 -g1,11185:31966991,27644887 -) -h1,11185:7246811,27841495:0,0,0 -(1,11189:7246811,29207271:24720180,513147,126483 -h1,11188:7246811,29207271:983040,0,0 -k1,11188:9628992,29207271:202454 -k1,11188:12097027,29207271:202455 -k1,11188:14785262,29207271:202454 -k1,11188:15647009,29207271:202455 -k1,11188:17383661,29207271:202454 -k1,11188:19936237,29207271:202455 -k1,11188:21242973,29207271:202454 -k1,11188:22193194,29207271:202455 -k1,11188:23330191,29207271:202454 -k1,11188:24926597,29207271:202455 -(1,11188:24926597,29207271:0,452978,115847 -r1,11227:28098557,29207271:3171960,568825,115847 -k1,11188:24926597,29207271:-3171960 -) -(1,11188:24926597,29207271:3171960,452978,115847 -k1,11188:24926597,29207271:3277 -h1,11188:28095280,29207271:0,411205,112570 -) -k1,11188:28474681,29207271:202454 -k1,11188:29961642,29207271:202455 -k1,11188:31032448,29207271:202454 -k1,11188:31966991,29207271:0 -) -(1,11189:7246811,30048759:24720180,513147,126483 -g1,11188:8843923,30048759 -g1,11188:9694580,30048759 -g1,11188:11269410,30048759 -g1,11188:13123423,30048759 -g1,11188:14856850,30048759 -g1,11188:16003730,30048759 -g1,11188:17804659,30048759 -g1,11188:18663180,30048759 -g1,11188:20065650,30048759 -k1,11189:31966991,30048759:9310047 -g1,11189:31966991,30048759 -) -v1,11191:7246811,31239225:0,393216,0 -(1,11195:7246811,31548030:24720180,702021,196608 -g1,11195:7246811,31548030 -g1,11195:7246811,31548030 -g1,11195:7050203,31548030 -(1,11195:7050203,31548030:0,702021,196608 -r1,11227:32163599,31548030:25113396,898629,196608 -k1,11195:7050203,31548030:-25113396 -) -(1,11195:7050203,31548030:25113396,702021,196608 -[1,11195:7246811,31548030:24720180,505413,0 -(1,11193:7246811,31446843:24720180,404226,101187 -(1,11192:7246811,31446843:0,0,0 -g1,11192:7246811,31446843 -g1,11192:7246811,31446843 -g1,11192:6919131,31446843 -(1,11192:6919131,31446843:0,0,0 -) -g1,11192:7246811,31446843 -) -k1,11193:7246811,31446843:0 -g1,11193:15150454,31446843 -g1,11193:15782746,31446843 -g1,11193:16731184,31446843 -g1,11193:22105661,31446843 -g1,11193:22737953,31446843 -h1,11193:23370245,31446843:0,0,0 -k1,11193:31966991,31446843:8596746 -g1,11193:31966991,31446843 -) -] -) -g1,11195:31966991,31548030 -g1,11195:7246811,31548030 -g1,11195:7246811,31548030 -g1,11195:31966991,31548030 -g1,11195:31966991,31548030 -) -h1,11195:7246811,31744638:0,0,0 -] -) -] -r1,11227:32583029,32858750:26214,17981784,0 -) -] -) -) -g1,11197:32583029,32268926 -) -h1,11197:6630773,32884964:0,0,0 -v1,11200:6630773,34250740:0,393216,0 -(1,11227:6630773,39501995:25952256,5644471,589824 -g1,11227:6630773,39501995 -(1,11227:6630773,39501995:25952256,5644471,589824 -(1,11227:6630773,40091819:25952256,6234295,0 -[1,11227:6630773,40091819:25952256,6234295,0 -(1,11227:6630773,40091819:25952256,6208081,0 -r1,11227:6656987,40091819:26214,6208081,0 -[1,11227:6656987,40091819:25899828,6208081,0 -(1,11227:6656987,39501995:25899828,5028433,0 -[1,11227:7246811,39501995:24720180,5028433,0 -(1,11201:7246811,35495908:24720180,1022346,115847 -k1,11200:8670425,35495908:168101 -k1,11200:9466361,35495908:168101 -k1,11200:11143101,35495908:168101 -k1,11200:12617335,35495908:168101 -k1,11200:16591112,35495908:168101 -k1,11200:17778298,35495908:168101 -k1,11200:19684413,35495908:168100 -k1,11200:20800165,35495908:168101 -(1,11200:20800165,35495908:0,452978,115847 -r1,11227:22916990,35495908:2116825,568825,115847 -k1,11200:20800165,35495908:-2116825 -) -(1,11200:20800165,35495908:2116825,452978,115847 -k1,11200:20800165,35495908:3277 -h1,11200:22913713,35495908:0,411205,112570 -) -k1,11200:23085091,35495908:168101 -k1,11200:24460365,35495908:168101 -(1,11200:24460365,35495908:0,459977,115847 -r1,11227:27984037,35495908:3523672,575824,115847 -k1,11200:24460365,35495908:-3523672 -) -(1,11200:24460365,35495908:3523672,459977,115847 -k1,11200:24460365,35495908:3277 -h1,11200:27980760,35495908:0,411205,112570 -) -k1,11200:28152138,35495908:168101 -k1,11200:29921284,35495908:168101 -k1,11200:30445245,35495908:168101 -k1,11200:31966991,35495908:0 -) -(1,11201:7246811,36337396:24720180,513147,134348 -k1,11200:9719003,36337396:145009 -k1,11200:10523305,36337396:145010 -k1,11200:11024174,36337396:145009 -k1,11200:12622116,36337396:145009 -k1,11200:13963813,36337396:145010 -k1,11200:15129218,36337396:145009 -k1,11200:17012242,36337396:145009 -k1,11200:17688749,36337396:145010 -k1,11200:19032412,36337396:145009 -k1,11200:22863166,36337396:145009 -k1,11200:24080345,36337396:145010 -k1,11200:25013752,36337396:145009 -k1,11200:26251246,36337396:145009 -k1,11200:28576639,36337396:145010 -k1,11200:29469414,36337396:145009 -k1,11200:31966991,36337396:0 -) -(1,11201:7246811,37178884:24720180,505283,134348 -k1,11200:8600526,37178884:162270 -(1,11200:8600526,37178884:0,452978,115847 -r1,11227:11420775,37178884:2820249,568825,115847 -k1,11200:8600526,37178884:-2820249 -) -(1,11200:8600526,37178884:2820249,452978,115847 -k1,11200:8600526,37178884:3277 -h1,11200:11417498,37178884:0,411205,112570 -) -k1,11200:11583044,37178884:162269 -k1,11200:13258540,37178884:162270 -k1,11200:15921664,37178884:162270 -k1,11200:17355331,37178884:162269 -k1,11200:19697984,37178884:162270 -k1,11200:20608019,37178884:162269 -k1,11200:22638720,37178884:162270 -k1,11200:24085496,37178884:162270 -k1,11200:27078920,37178884:162269 -k1,11200:28260275,37178884:162270 -k1,11201:31966991,37178884:0 -) -(1,11201:7246811,38020372:24720180,513147,115847 -(1,11200:7246811,38020372:0,452978,115847 -r1,11227:10067060,38020372:2820249,568825,115847 -k1,11200:7246811,38020372:-2820249 -) -(1,11200:7246811,38020372:2820249,452978,115847 -k1,11200:7246811,38020372:3277 -h1,11200:10063783,38020372:0,411205,112570 -) -k1,11200:10242101,38020372:175041 -k1,11200:11608586,38020372:175040 -k1,11200:15260312,38020372:175041 -k1,11200:18130848,38020372:175040 -(1,11200:18130848,38020372:0,452978,115847 -r1,11227:22006232,38020372:3875384,568825,115847 -k1,11200:18130848,38020372:-3875384 -) -(1,11200:18130848,38020372:3875384,452978,115847 -k1,11200:18130848,38020372:3277 -h1,11200:22002955,38020372:0,411205,112570 -) -k1,11200:22354943,38020372:175041 -k1,11200:23216146,38020372:175041 -k1,11200:24669793,38020372:175040 -k1,11200:25530996,38020372:175041 -k1,11200:26725121,38020372:175040 -k1,11200:28091607,38020372:175041 -(1,11200:28091607,38020372:0,452978,115847 -r1,11227:31966991,38020372:3875384,568825,115847 -k1,11200:28091607,38020372:-3875384 -) -(1,11200:28091607,38020372:3875384,452978,115847 -k1,11200:28091607,38020372:3277 -h1,11200:31963714,38020372:0,411205,112570 -) -k1,11200:31966991,38020372:0 -) -(1,11201:7246811,38861860:24720180,505283,115847 -g1,11200:8538525,38861860 -g1,11200:9756839,38861860 -g1,11200:11694083,38861860 -(1,11200:11694083,38861860:0,452978,115847 -r1,11227:13810908,38861860:2116825,568825,115847 -k1,11200:11694083,38861860:-2116825 -) -(1,11200:11694083,38861860:2116825,452978,115847 -k1,11200:11694083,38861860:3277 -h1,11200:13807631,38861860:0,411205,112570 -) -g1,11200:14183807,38861860 -g1,11200:15402121,38861860 -g1,11200:17156519,38861860 -g1,11200:20134475,38861860 -g1,11200:20865201,38861860 -g1,11200:23223186,38861860 -(1,11200:23223186,38861860:0,452978,115847 -r1,11227:24284875,38861860:1061689,568825,115847 -k1,11200:23223186,38861860:-1061689 -) -(1,11200:23223186,38861860:1061689,452978,115847 -k1,11200:23223186,38861860:3277 -h1,11200:24281598,38861860:0,411205,112570 -) -k1,11201:31966991,38861860:7508446 -g1,11201:31966991,38861860 -) -] -) -] -r1,11227:32583029,40091819:26214,6208081,0 -) -] -) -) -g1,11227:32583029,39501995 -) -] -(1,11227:32583029,45706769:0,0,0 -g1,11227:32583029,45706769 -) -) -] -(1,11227:6630773,47279633:25952256,0,0 -h1,11227:6630773,47279633:25952256,0,0 -) -] -(1,11227:4262630,4025873:0,0,0 -[1,11227:-473656,4025873:0,0,0 -(1,11227:-473656,-710413:0,0,0 -(1,11227:-473656,-710413:0,0,0 -g1,11227:-473656,-710413 -) -g1,11227:-473656,-710413 -) -] -) -] -!24135 -}212 -Input:1566:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1567:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1568:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1569:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1570:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!472 -{213 -[1,11304:4262630,47279633:28320399,43253760,0 -(1,11304:4262630,4025873:0,0,0 -[1,11304:-473656,4025873:0,0,0 -(1,11304:-473656,-710413:0,0,0 -(1,11304:-473656,-644877:0,0,0 -k1,11304:-473656,-644877:-65536 -) -(1,11304:-473656,4736287:0,0,0 -k1,11304:-473656,4736287:5209943 -) -g1,11304:-473656,-710413 -) -] -) -[1,11304:6630773,47279633:25952256,43253760,0 -[1,11304:6630773,4812305:25952256,786432,0 -(1,11304:6630773,4812305:25952256,513147,134348 -(1,11304:6630773,4812305:25952256,513147,134348 -g1,11304:3078558,4812305 -[1,11304:3078558,4812305:0,0,0 -(1,11304:3078558,2439708:0,1703936,0 -k1,11304:1358238,2439708:-1720320 -(1,11088:1358238,2439708:1720320,1703936,0 -(1,11088:1358238,2439708:1179648,16384,0 -r1,11304:2537886,2439708:1179648,16384,0 -) -g1,11088:3062174,2439708 -(1,11088:3062174,2439708:16384,1703936,0 -[1,11088:3062174,2439708:25952256,1703936,0 -(1,11088:3062174,1915420:25952256,1179648,0 -(1,11088:3062174,1915420:16384,1179648,0 -r1,11304:3078558,1915420:16384,1179648,0 -) -k1,11088:29014430,1915420:25935872 -g1,11088:29014430,1915420 -) -] -) -) -) -] -[1,11304:3078558,4812305:0,0,0 -(1,11304:3078558,2439708:0,1703936,0 -g1,11304:29030814,2439708 -g1,11304:36135244,2439708 -(1,11088:36135244,2439708:1720320,1703936,0 -(1,11088:36135244,2439708:16384,1703936,0 -[1,11088:36135244,2439708:25952256,1703936,0 -(1,11088:36135244,1915420:25952256,1179648,0 -(1,11088:36135244,1915420:16384,1179648,0 -r1,11304:36151628,1915420:16384,1179648,0 -) -k1,11088:62087500,1915420:25935872 -g1,11088:62087500,1915420 -) -] -) -g1,11088:36675916,2439708 -(1,11088:36675916,2439708:1179648,16384,0 -r1,11304:37855564,2439708:1179648,16384,0 -) -) -k1,11304:3078556,2439708:-34777008 -) -] -[1,11304:3078558,4812305:0,0,0 -(1,11304:3078558,49800853:0,16384,2228224 -k1,11304:1358238,49800853:-1720320 -(1,11088:1358238,49800853:1720320,16384,2228224 -(1,11088:1358238,49800853:1179648,16384,0 -r1,11304:2537886,49800853:1179648,16384,0 -) -g1,11088:3062174,49800853 -(1,11088:3062174,52029077:16384,1703936,0 -[1,11088:3062174,52029077:25952256,1703936,0 -(1,11088:3062174,51504789:25952256,1179648,0 -(1,11088:3062174,51504789:16384,1179648,0 -r1,11304:3078558,51504789:16384,1179648,0 -) -k1,11088:29014430,51504789:25935872 -g1,11088:29014430,51504789 -) -] -) -) -) -] -[1,11304:3078558,4812305:0,0,0 -(1,11304:3078558,49800853:0,16384,2228224 -g1,11304:29030814,49800853 -g1,11304:36135244,49800853 -(1,11088:36135244,49800853:1720320,16384,2228224 -(1,11088:36135244,52029077:16384,1703936,0 -[1,11088:36135244,52029077:25952256,1703936,0 -(1,11088:36135244,51504789:25952256,1179648,0 -(1,11088:36135244,51504789:16384,1179648,0 -r1,11304:36151628,51504789:16384,1179648,0 -) -k1,11088:62087500,51504789:25935872 -g1,11088:62087500,51504789 -) -] -) -g1,11088:36675916,49800853 -(1,11088:36675916,49800853:1179648,16384,0 -r1,11304:37855564,49800853:1179648,16384,0 -) -) -k1,11304:3078556,49800853:-34777008 -) -] -g1,11304:6630773,4812305 -k1,11304:25241686,4812305:17415536 -g1,11304:26807341,4812305 -g1,11304:30339731,4812305 -g1,11304:31154998,4812305 -) -) -] -[1,11304:6630773,45706769:25952256,40108032,0 -(1,11304:6630773,45706769:25952256,40108032,0 -(1,11304:6630773,45706769:0,0,0 -g1,11304:6630773,45706769 -) -[1,11304:6630773,45706769:25952256,40108032,0 -v1,11227:6630773,6254097:0,393216,0 -(1,11227:6630773,16011664:25952256,10150783,616038 -g1,11227:6630773,16011664 -(1,11227:6630773,16011664:25952256,10150783,616038 -(1,11227:6630773,16627702:25952256,10766821,0 -[1,11227:6630773,16627702:25952256,10766821,0 -(1,11227:6630773,16601488:25952256,10740607,0 -r1,11304:6656987,16601488:26214,10740607,0 -[1,11227:6656987,16601488:25899828,10740607,0 -(1,11227:6656987,16011664:25899828,9560959,0 -[1,11227:7246811,16011664:24720180,9560959,0 -v1,11203:7246811,6843921:0,393216,0 -(1,11223:7246811,12631956:24720180,6181251,196608 -g1,11223:7246811,12631956 -g1,11223:7246811,12631956 -g1,11223:7050203,12631956 -(1,11223:7050203,12631956:0,6181251,196608 -r1,11304:32163599,12631956:25113396,6377859,196608 -k1,11223:7050203,12631956:-25113396 -) -(1,11223:7050203,12631956:25113396,6181251,196608 -[1,11223:7246811,12631956:24720180,5984643,0 -(1,11205:7246811,7051539:24720180,404226,101187 -(1,11204:7246811,7051539:0,0,0 -g1,11204:7246811,7051539 -g1,11204:7246811,7051539 -g1,11204:6919131,7051539 -(1,11204:6919131,7051539:0,0,0 -) -g1,11204:7246811,7051539 -) -g1,11205:9143685,7051539 -g1,11205:10092123,7051539 -g1,11205:14834309,7051539 -g1,11205:15466601,7051539 -h1,11205:16731185,7051539:0,0,0 -k1,11205:31966991,7051539:15235806 -g1,11205:31966991,7051539 -) -(1,11206:7246811,7717717:24720180,404226,101187 -h1,11206:7246811,7717717:0,0,0 -k1,11206:7246811,7717717:0 -h1,11206:12305142,7717717:0,0,0 -k1,11206:31966990,7717717:19661848 -g1,11206:31966990,7717717 -) -(1,11210:7246811,8449431:24720180,404226,76021 -(1,11208:7246811,8449431:0,0,0 -g1,11208:7246811,8449431 -g1,11208:7246811,8449431 -g1,11208:6919131,8449431 -(1,11208:6919131,8449431:0,0,0 -) -g1,11208:7246811,8449431 -) -g1,11210:8195248,8449431 -g1,11210:9459831,8449431 -h1,11210:10724414,8449431:0,0,0 -k1,11210:31966990,8449431:21242576 -g1,11210:31966990,8449431 -) -(1,11212:7246811,9770969:24720180,404226,101187 -(1,11211:7246811,9770969:0,0,0 -g1,11211:7246811,9770969 -g1,11211:7246811,9770969 -g1,11211:6919131,9770969 -(1,11211:6919131,9770969:0,0,0 -) -g1,11211:7246811,9770969 -) -k1,11212:7246811,9770969:0 -g1,11212:12305142,9770969 -h1,11212:15150453,9770969:0,0,0 -k1,11212:31966991,9770969:16816538 -g1,11212:31966991,9770969 -) -(1,11216:7246811,10502683:24720180,404226,76021 -(1,11214:7246811,10502683:0,0,0 -g1,11214:7246811,10502683 -g1,11214:7246811,10502683 -g1,11214:6919131,10502683 -(1,11214:6919131,10502683:0,0,0 -) -g1,11214:7246811,10502683 -) -g1,11216:8195248,10502683 -g1,11216:9459831,10502683 -h1,11216:11040559,10502683:0,0,0 -k1,11216:31966991,10502683:20926432 -g1,11216:31966991,10502683 -) -(1,11218:7246811,11824221:24720180,404226,101187 -(1,11217:7246811,11824221:0,0,0 -g1,11217:7246811,11824221 -g1,11217:7246811,11824221 -g1,11217:6919131,11824221 -(1,11217:6919131,11824221:0,0,0 -) -g1,11217:7246811,11824221 -) -k1,11218:7246811,11824221:0 -h1,11218:11040559,11824221:0,0,0 -k1,11218:31966991,11824221:20926432 -g1,11218:31966991,11824221 -) -(1,11222:7246811,12555935:24720180,410518,76021 -(1,11220:7246811,12555935:0,0,0 -g1,11220:7246811,12555935 -g1,11220:7246811,12555935 -g1,11220:6919131,12555935 -(1,11220:6919131,12555935:0,0,0 -) -g1,11220:7246811,12555935 -) -g1,11222:8195248,12555935 -g1,11222:9459831,12555935 -g1,11222:12305142,12555935 -g1,11222:12621288,12555935 -g1,11222:12937434,12555935 -g1,11222:13253580,12555935 -g1,11222:13569726,12555935 -g1,11222:15466600,12555935 -g1,11222:15782746,12555935 -g1,11222:16098892,12555935 -g1,11222:16415038,12555935 -g1,11222:16731184,12555935 -g1,11222:17047330,12555935 -g1,11222:17363476,12555935 -g1,11222:17679622,12555935 -h1,11222:21473370,12555935:0,0,0 -k1,11222:31966991,12555935:10493621 -g1,11222:31966991,12555935 -) -] -) -g1,11223:31966991,12631956 -g1,11223:7246811,12631956 -g1,11223:7246811,12631956 -g1,11223:31966991,12631956 -g1,11223:31966991,12631956 -) -h1,11223:7246811,12828564:0,0,0 -(1,11227:7246811,14194340:24720180,513147,134348 -h1,11226:7246811,14194340:983040,0,0 -k1,11226:12589816,14194340:166316 -k1,11226:13517659,14194340:166315 -k1,11226:16780551,14194340:166316 -k1,11226:17598295,14194340:166316 -k1,11226:20291023,14194340:166315 -k1,11226:22599056,14194340:166316 -k1,11226:24620041,14194340:166316 -k1,11226:25595726,14194340:166315 -k1,11226:28524385,14194340:166316 -k1,11226:31966991,14194340:0 -) -(1,11227:7246811,15035828:24720180,513147,126483 -k1,11226:8866105,15035828:229931 -k1,11226:11708955,15035828:229930 -k1,11226:12294746,15035828:229931 -k1,11226:14800087,15035828:229931 -k1,11226:17412906,15035828:229930 -k1,11226:19198006,15035828:229931 -k1,11226:19959434,15035828:229931 -k1,11226:22661383,15035828:229931 -k1,11226:23519148,15035828:229930 -k1,11226:24846807,15035828:229931 -k1,11226:27911825,15035828:229931 -k1,11226:28827917,15035828:229930 -k1,11226:30155576,15035828:229931 -k1,11226:31966991,15035828:0 -) -(1,11227:7246811,15877316:24720180,513147,134348 -k1,11226:8542837,15877316:195021 -k1,11226:9508561,15877316:195021 -k1,11226:13146188,15877316:195021 -(1,11226:13146188,15877316:0,459977,115847 -r1,11304:16669860,15877316:3523672,575824,115847 -k1,11226:13146188,15877316:-3523672 -) -(1,11226:13146188,15877316:3523672,459977,115847 -k1,11226:13146188,15877316:3277 -h1,11226:16666583,15877316:0,411205,112570 -) -k1,11226:16864880,15877316:195020 -k1,11226:18788741,15877316:195021 -k1,11226:20002847,15877316:195021 -k1,11226:21799568,15877316:195021 -k1,11226:24377478,15877316:195021 -k1,11226:26127668,15877316:195021 -k1,11226:26989844,15877316:195020 -(1,11226:26989844,15877316:0,452978,115847 -r1,11304:28754957,15877316:1765113,568825,115847 -k1,11226:26989844,15877316:-1765113 -) -(1,11226:26989844,15877316:1765113,452978,115847 -k1,11226:26989844,15877316:3277 -h1,11226:28751680,15877316:0,411205,112570 -) -k1,11226:28949978,15877316:195021 -k1,11226:29676496,15877316:195021 -(1,11226:29676496,15877316:0,459977,115847 -r1,11304:31793321,15877316:2116825,575824,115847 -k1,11226:29676496,15877316:-2116825 -) -(1,11226:29676496,15877316:2116825,459977,115847 -k1,11226:29676496,15877316:3277 -h1,11226:31790044,15877316:0,411205,112570 -) -k1,11227:31966991,15877316:0 -k1,11227:31966991,15877316:0 -) -] -) -] -r1,11304:32583029,16601488:26214,10740607,0 -) -] -) -) -g1,11227:32583029,16011664 -) -h1,11227:6630773,16627702:0,0,0 -(1,11230:6630773,17783762:25952256,513147,7863 -h1,11229:6630773,17783762:983040,0,0 -k1,11229:8781883,17783762:214521 -k1,11229:10484727,17783762:214521 -k1,11229:12093199,17783762:214521 -k1,11229:13326805,17783762:214521 -k1,11229:17248042,17783762:214521 -k1,11229:18654009,17783762:214522 -k1,11229:22345215,17783762:214521 -k1,11229:25518031,17783762:214521 -k1,11229:26774574,17783762:214521 -k1,11229:28192336,17783762:214521 -k1,11229:29275209,17783762:214521 -k1,11229:30622192,17783762:214521 -k1,11229:32583029,17783762:0 -) -(1,11230:6630773,18625250:25952256,513147,134348 -k1,11229:7938981,18625250:210480 -k1,11229:9479841,18625250:210479 -k1,11229:12713497,18625250:210480 -k1,11229:15619472,18625250:210479 -k1,11229:17829456,18625250:210480 -k1,11229:21065733,18625250:210480 -k1,11229:22267772,18625250:210479 -k1,11229:25568275,18625250:210480 -k1,11229:26394792,18625250:210479 -k1,11229:28883959,18625250:210480 -h1,11229:29854547,18625250:0,0,0 -k1,11229:30065026,18625250:210479 -k1,11229:31084876,18625250:210480 -k1,11229:32583029,18625250:0 -) -(1,11230:6630773,19466738:25952256,505283,95026 -h1,11229:7826150,19466738:0,0,0 -k1,11230:32583030,19466738:24376116 -g1,11230:32583030,19466738 -) -v1,11232:6630773,20447488:0,393216,0 -(1,11244:6630773,26066843:25952256,6012571,196608 -g1,11244:6630773,26066843 -g1,11244:6630773,26066843 -g1,11244:6434165,26066843 -(1,11244:6434165,26066843:0,6012571,196608 -r1,11304:32779637,26066843:26345472,6209179,196608 -k1,11244:6434165,26066843:-26345472 -) -(1,11244:6434165,26066843:26345472,6012571,196608 -[1,11244:6630773,26066843:25952256,5815963,0 -(1,11234:6630773,20661398:25952256,410518,76021 -(1,11233:6630773,20661398:0,0,0 -g1,11233:6630773,20661398 -g1,11233:6630773,20661398 -g1,11233:6303093,20661398 -(1,11233:6303093,20661398:0,0,0 -) -g1,11233:6630773,20661398 -) -g1,11234:10740667,20661398 -g1,11234:11689105,20661398 -g1,11234:15482854,20661398 -h1,11234:15799000,20661398:0,0,0 -k1,11234:32583028,20661398:16784028 -g1,11234:32583028,20661398 -) -(1,11235:6630773,21327576:25952256,404226,76021 -h1,11235:6630773,21327576:0,0,0 -g1,11235:6946919,21327576 -g1,11235:7263065,21327576 -k1,11235:7263065,21327576:0 -h1,11235:8527648,21327576:0,0,0 -k1,11235:32583028,21327576:24055380 -g1,11235:32583028,21327576 -) -(1,11236:6630773,21993754:25952256,404226,101187 -h1,11236:6630773,21993754:0,0,0 -g1,11236:6946919,21993754 -g1,11236:7263065,21993754 -g1,11236:7579211,21993754 -g1,11236:7895357,21993754 -k1,11236:7895357,21993754:0 -h1,11236:15482854,21993754:0,0,0 -k1,11236:32583030,21993754:17100176 -g1,11236:32583030,21993754 -) -(1,11237:6630773,22659932:25952256,404226,107478 -h1,11237:6630773,22659932:0,0,0 -g1,11237:6946919,22659932 -g1,11237:7263065,22659932 -g1,11237:7579211,22659932 -g1,11237:7895357,22659932 -k1,11237:7895357,22659932:0 -h1,11237:12637543,22659932:0,0,0 -k1,11237:32583029,22659932:19945486 -g1,11237:32583029,22659932 -) -(1,11238:6630773,23326110:25952256,404226,101187 -h1,11238:6630773,23326110:0,0,0 -g1,11238:6946919,23326110 -g1,11238:7263065,23326110 -g1,11238:7579211,23326110 -g1,11238:7895357,23326110 -k1,11238:7895357,23326110:0 -h1,11238:12637542,23326110:0,0,0 -k1,11238:32583030,23326110:19945488 -g1,11238:32583030,23326110 -) -(1,11239:6630773,23992288:25952256,404226,101187 -h1,11239:6630773,23992288:0,0,0 -g1,11239:6946919,23992288 -g1,11239:7263065,23992288 -g1,11239:7579211,23992288 -g1,11239:7895357,23992288 -g1,11239:8211503,23992288 -g1,11239:8527649,23992288 -g1,11239:8843795,23992288 -g1,11239:9159941,23992288 -g1,11239:9476087,23992288 -g1,11239:9792233,23992288 -g1,11239:12953690,23992288 -g1,11239:15482856,23992288 -g1,11239:18328167,23992288 -g1,11239:18960459,23992288 -g1,11239:19908897,23992288 -g1,11239:20857335,23992288 -g1,11239:22121918,23992288 -g1,11239:22754210,23992288 -g1,11239:23702647,23992288 -k1,11239:23702647,23992288:0 -h1,11239:24651085,23992288:0,0,0 -k1,11239:32583029,23992288:7931944 -g1,11239:32583029,23992288 -) -(1,11240:6630773,24658466:25952256,404226,101187 -h1,11240:6630773,24658466:0,0,0 -g1,11240:6946919,24658466 -g1,11240:7263065,24658466 -g1,11240:7579211,24658466 -g1,11240:7895357,24658466 -g1,11240:9159940,24658466 -g1,11240:9792232,24658466 -h1,11240:11372961,24658466:0,0,0 -k1,11240:32583029,24658466:21210068 -g1,11240:32583029,24658466 -) -(1,11241:6630773,25324644:25952256,404226,76021 -h1,11241:6630773,25324644:0,0,0 -g1,11241:6946919,25324644 -g1,11241:7263065,25324644 -g1,11241:7579211,25324644 -g1,11241:7895357,25324644 -h1,11241:8211503,25324644:0,0,0 -k1,11241:32583029,25324644:24371526 -g1,11241:32583029,25324644 -) -(1,11242:6630773,25990822:25952256,404226,76021 -h1,11242:6630773,25990822:0,0,0 -h1,11242:6946919,25990822:0,0,0 -k1,11242:32583029,25990822:25636110 -g1,11242:32583029,25990822 -) -] -) -g1,11244:32583029,26066843 -g1,11244:6630773,26066843 -g1,11244:6630773,26066843 -g1,11244:32583029,26066843 -g1,11244:32583029,26066843 -) -h1,11244:6630773,26263451:0,0,0 -(1,11248:6630773,27419511:25952256,513147,115847 -h1,11247:6630773,27419511:983040,0,0 -k1,11247:8579292,27419511:337644 -k1,11247:9936020,27419511:337643 -k1,11247:11657784,27419511:337644 -k1,11247:13167866,27419511:337643 -k1,11247:15806479,27419511:337644 -k1,11247:17012474,27419511:337643 -k1,11247:18454400,27419511:337644 -k1,11247:19817026,27419511:337643 -k1,11247:21846810,27419511:337644 -k1,11247:22843745,27419511:337643 -k1,11247:24200474,27419511:337644 -k1,11247:28228449,27419511:337643 -k1,11247:29762780,27419511:337644 -(1,11247:29762780,27419511:0,452978,115847 -r1,11304:32583029,27419511:2820249,568825,115847 -k1,11247:29762780,27419511:-2820249 -) -(1,11247:29762780,27419511:2820249,452978,115847 -k1,11247:29762780,27419511:3277 -h1,11247:32579752,27419511:0,411205,112570 -) -k1,11247:32583029,27419511:0 -) -(1,11248:6630773,28260999:25952256,513147,126483 -k1,11247:10658258,28260999:320769 -k1,11247:12471937,28260999:320769 -k1,11247:13858977,28260999:320769 -k1,11247:14941274,28260999:320769 -k1,11247:17527623,28260999:320769 -k1,11247:20241111,28260999:320769 -k1,11247:23536559,28260999:320769 -k1,11247:25246691,28260999:320769 -k1,11247:26834926,28260999:320769 -k1,11247:29553657,28260999:320769 -k1,11247:31563944,28260999:320769 -k1,11248:32583029,28260999:0 -) -(1,11248:6630773,29102487:25952256,505283,115847 -(1,11247:6630773,29102487:0,459977,115847 -r1,11304:10857869,29102487:4227096,575824,115847 -k1,11247:6630773,29102487:-4227096 -) -(1,11247:6630773,29102487:4227096,459977,115847 -k1,11247:6630773,29102487:3277 -h1,11247:10854592,29102487:0,411205,112570 -) -g1,11247:11057098,29102487 -g1,11247:14963043,29102487 -k1,11248:32583029,29102487:15953405 -g1,11248:32583029,29102487 -) -v1,11250:6630773,30083237:0,393216,0 -(1,11271:6630773,36575199:25952256,6885178,196608 -g1,11271:6630773,36575199 -g1,11271:6630773,36575199 -g1,11271:6434165,36575199 -(1,11271:6434165,36575199:0,6885178,196608 -r1,11304:32779637,36575199:26345472,7081786,196608 -k1,11271:6434165,36575199:-26345472 -) -(1,11271:6434165,36575199:26345472,6885178,196608 -[1,11271:6630773,36575199:25952256,6688570,0 -(1,11252:6630773,30297147:25952256,410518,107478 -(1,11251:6630773,30297147:0,0,0 -g1,11251:6630773,30297147 -g1,11251:6630773,30297147 -g1,11251:6303093,30297147 -(1,11251:6303093,30297147:0,0,0 -) -g1,11251:6630773,30297147 -) -g1,11252:8527647,30297147 -g1,11252:9476085,30297147 -g1,11252:14850562,30297147 -g1,11252:15482854,30297147 -g1,11252:17695875,30297147 -g1,11252:19276604,30297147 -g1,11252:21173479,30297147 -g1,11252:23702645,30297147 -g1,11252:24334937,30297147 -g1,11252:25915667,30297147 -g1,11252:28760978,30297147 -g1,11252:29393270,30297147 -h1,11252:31290144,30297147:0,0,0 -k1,11252:32583029,30297147:1292885 -g1,11252:32583029,30297147 -) -(1,11253:6630773,30963325:25952256,410518,101187 -h1,11253:6630773,30963325:0,0,0 -k1,11253:6630773,30963325:0 -h1,11253:12953687,30963325:0,0,0 -k1,11253:32583029,30963325:19629342 -g1,11253:32583029,30963325 -) -(1,11257:6630773,31695039:25952256,404226,76021 -(1,11255:6630773,31695039:0,0,0 -g1,11255:6630773,31695039 -g1,11255:6630773,31695039 -g1,11255:6303093,31695039 -(1,11255:6303093,31695039:0,0,0 -) -g1,11255:6630773,31695039 -) -g1,11257:7579210,31695039 -g1,11257:8843793,31695039 -h1,11257:10108376,31695039:0,0,0 -k1,11257:32583028,31695039:22474652 -g1,11257:32583028,31695039 -) -(1,11259:6630773,33016577:25952256,410518,101187 -(1,11258:6630773,33016577:0,0,0 -g1,11258:6630773,33016577 -g1,11258:6630773,33016577 -g1,11258:6303093,33016577 -(1,11258:6303093,33016577:0,0,0 -) -g1,11258:6630773,33016577 -) -k1,11259:6630773,33016577:0 -h1,11259:11689104,33016577:0,0,0 -k1,11259:32583028,33016577:20893924 -g1,11259:32583028,33016577 -) -(1,11263:6630773,33748291:25952256,404226,76021 -(1,11261:6630773,33748291:0,0,0 -g1,11261:6630773,33748291 -g1,11261:6630773,33748291 -g1,11261:6303093,33748291 -(1,11261:6303093,33748291:0,0,0 -) -g1,11261:6630773,33748291 -) -g1,11263:7579210,33748291 -g1,11263:8843793,33748291 -h1,11263:10424521,33748291:0,0,0 -k1,11263:32583029,33748291:22158508 -g1,11263:32583029,33748291 -) -(1,11265:6630773,35069829:25952256,410518,101187 -(1,11264:6630773,35069829:0,0,0 -g1,11264:6630773,35069829 -g1,11264:6630773,35069829 -g1,11264:6303093,35069829 -(1,11264:6303093,35069829:0,0,0 -) -g1,11264:6630773,35069829 -) -k1,11265:6630773,35069829:0 -h1,11265:12637541,35069829:0,0,0 -k1,11265:32583029,35069829:19945488 -g1,11265:32583029,35069829 -) -(1,11270:6630773,35801543:25952256,410518,107478 -(1,11267:6630773,35801543:0,0,0 -g1,11267:6630773,35801543 -g1,11267:6630773,35801543 -g1,11267:6303093,35801543 -(1,11267:6303093,35801543:0,0,0 -) -g1,11267:6630773,35801543 -) -g1,11270:7579210,35801543 -g1,11270:11056813,35801543 -h1,11270:14534415,35801543:0,0,0 -k1,11270:32583029,35801543:18048614 -g1,11270:32583029,35801543 -) -(1,11270:6630773,36467721:25952256,404226,107478 -h1,11270:6630773,36467721:0,0,0 -g1,11270:7579210,36467721 -g1,11270:9792230,36467721 -g1,11270:13269833,36467721 -g1,11270:16115144,36467721 -g1,11270:18960456,36467721 -g1,11270:22121913,36467721 -h1,11270:24334933,36467721:0,0,0 -k1,11270:32583029,36467721:8248096 -g1,11270:32583029,36467721 -) -] -) -g1,11271:32583029,36575199 -g1,11271:6630773,36575199 -g1,11271:6630773,36575199 -g1,11271:32583029,36575199 -g1,11271:32583029,36575199 -) -h1,11271:6630773,36771807:0,0,0 -(1,11275:6630773,37927867:25952256,513147,126483 -h1,11274:6630773,37927867:983040,0,0 -k1,11274:10175852,37927867:242720 -k1,11274:11410133,37927867:242721 -k1,11274:13042216,37927867:242720 -k1,11274:16829779,37927867:242721 -k1,11274:18722696,37927867:242720 -k1,11274:21660257,37927867:242721 -k1,11274:23458146,37927867:242720 -(1,11274:23458146,37927867:0,452978,115847 -r1,11304:25574971,37927867:2116825,568825,115847 -k1,11274:23458146,37927867:-2116825 -) -(1,11274:23458146,37927867:2116825,452978,115847 -k1,11274:23458146,37927867:3277 -h1,11274:25571694,37927867:0,411205,112570 -) -k1,11274:25817692,37927867:242721 -k1,11274:26591909,37927867:242720 -k1,11274:29217519,37927867:242721 -k1,11274:31027860,37927867:242720 -k1,11275:32583029,37927867:0 -) -(1,11275:6630773,38769355:25952256,513147,115847 -(1,11274:6630773,38769355:0,459977,115847 -r1,11304:10154445,38769355:3523672,575824,115847 -k1,11274:6630773,38769355:-3523672 -) -(1,11274:6630773,38769355:3523672,459977,115847 -k1,11274:6630773,38769355:3277 -h1,11274:10151168,38769355:0,411205,112570 -) -g1,11274:10527344,38769355 -g1,11274:13661275,38769355 -g1,11274:15249867,38769355 -g1,11274:17655693,38769355 -g1,11274:18846482,38769355 -g1,11274:20111982,38769355 -k1,11275:32583029,38769355:10155660 -g1,11275:32583029,38769355 -) -v1,11277:6630773,39750105:0,393216,0 -(1,11298:6630773,45510161:25952256,6153272,196608 -g1,11298:6630773,45510161 -g1,11298:6630773,45510161 -g1,11298:6434165,45510161 -(1,11298:6434165,45510161:0,6153272,196608 -r1,11304:32779637,45510161:26345472,6349880,196608 -k1,11298:6434165,45510161:-26345472 -) -(1,11298:6434165,45510161:26345472,6153272,196608 -[1,11298:6630773,45510161:25952256,5956664,0 -(1,11279:6630773,39957723:25952256,404226,107478 -(1,11278:6630773,39957723:0,0,0 -g1,11278:6630773,39957723 -g1,11278:6630773,39957723 -g1,11278:6303093,39957723 -(1,11278:6303093,39957723:0,0,0 -) -g1,11278:6630773,39957723 -) -g1,11279:8527647,39957723 -g1,11279:9476085,39957723 -g1,11279:13585979,39957723 -g1,11279:14218271,39957723 -g1,11279:16431292,39957723 -g1,11279:18012021,39957723 -g1,11279:19908896,39957723 -g1,11279:22438062,39957723 -g1,11279:23070354,39957723 -g1,11279:24651084,39957723 -g1,11279:27496395,39957723 -g1,11279:28128687,39957723 -h1,11279:30025561,39957723:0,0,0 -k1,11279:32583029,39957723:2557468 -g1,11279:32583029,39957723 -) -(1,11280:6630773,40623901:25952256,410518,101187 -h1,11280:6630773,40623901:0,0,0 -k1,11280:6630773,40623901:0 -h1,11280:12953687,40623901:0,0,0 -k1,11280:32583029,40623901:19629342 -g1,11280:32583029,40623901 -) -(1,11284:6630773,41210492:25952256,404226,76021 -(1,11282:6630773,41210492:0,0,0 -g1,11282:6630773,41210492 -g1,11282:6630773,41210492 -g1,11282:6303093,41210492 -(1,11282:6303093,41210492:0,0,0 -) -g1,11282:6630773,41210492 -) -g1,11284:7579210,41210492 -g1,11284:8843793,41210492 -h1,11284:10108376,41210492:0,0,0 -k1,11284:32583028,41210492:22474652 -g1,11284:32583028,41210492 -) -(1,11286:6630773,42386907:25952256,404226,101187 -(1,11285:6630773,42386907:0,0,0 -g1,11285:6630773,42386907 -g1,11285:6630773,42386907 -g1,11285:6303093,42386907 -(1,11285:6303093,42386907:0,0,0 -) -g1,11285:6630773,42386907 -) -k1,11286:6630773,42386907:0 -h1,11286:11689104,42386907:0,0,0 -k1,11286:32583028,42386907:20893924 -g1,11286:32583028,42386907 -) -(1,11290:6630773,42973499:25952256,404226,76021 -(1,11288:6630773,42973499:0,0,0 -g1,11288:6630773,42973499 -g1,11288:6630773,42973499 -g1,11288:6303093,42973499 -(1,11288:6303093,42973499:0,0,0 -) -g1,11288:6630773,42973499 -) -g1,11290:7579210,42973499 -g1,11290:8843793,42973499 -h1,11290:10108376,42973499:0,0,0 -k1,11290:32583028,42973499:22474652 -g1,11290:32583028,42973499 -) -(1,11292:6630773,44149914:25952256,404226,101187 -(1,11291:6630773,44149914:0,0,0 -g1,11291:6630773,44149914 -g1,11291:6630773,44149914 -g1,11291:6303093,44149914 -(1,11291:6303093,44149914:0,0,0 -) -g1,11291:6630773,44149914 -) -k1,11292:6630773,44149914:0 -h1,11292:12637541,44149914:0,0,0 -k1,11292:32583029,44149914:19945488 -g1,11292:32583029,44149914 -) -(1,11297:6630773,44736505:25952256,410518,107478 -(1,11294:6630773,44736505:0,0,0 -g1,11294:6630773,44736505 -g1,11294:6630773,44736505 -g1,11294:6303093,44736505 -(1,11294:6303093,44736505:0,0,0 -) -g1,11294:6630773,44736505 -) -g1,11297:7579210,44736505 -g1,11297:9792230,44736505 -h1,11297:13269832,44736505:0,0,0 -k1,11297:32583028,44736505:19313196 -g1,11297:32583028,44736505 -) -(1,11297:6630773,45402683:25952256,404226,107478 -h1,11297:6630773,45402683:0,0,0 -g1,11297:7579210,45402683 -g1,11297:9792230,45402683 -g1,11297:13269833,45402683 -g1,11297:16115144,45402683 -g1,11297:18960456,45402683 -g1,11297:22121913,45402683 -h1,11297:24334933,45402683:0,0,0 -k1,11297:32583029,45402683:8248096 -g1,11297:32583029,45402683 -) -] -) -g1,11298:32583029,45510161 -g1,11298:6630773,45510161 -g1,11298:6630773,45510161 -g1,11298:32583029,45510161 -g1,11298:32583029,45510161 -) -h1,11298:6630773,45706769:0,0,0 -] -(1,11304:32583029,45706769:0,0,0 -g1,11304:32583029,45706769 -) -) -] -(1,11304:6630773,47279633:25952256,0,0 -h1,11304:6630773,47279633:25952256,0,0 -) -] -(1,11304:4262630,4025873:0,0,0 -[1,11304:-473656,4025873:0,0,0 -(1,11304:-473656,-710413:0,0,0 -(1,11304:-473656,-710413:0,0,0 -g1,11304:-473656,-710413 -) -g1,11304:-473656,-710413 -) -] -) -] -!24595 -}213 -Input:1571:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1572:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1573:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1574:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1575:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!472 -{214 -[1,11389:4262630,47279633:28320399,43253760,0 -(1,11389:4262630,4025873:0,0,0 -[1,11389:-473656,4025873:0,0,0 -(1,11389:-473656,-710413:0,0,0 -(1,11389:-473656,-644877:0,0,0 -k1,11389:-473656,-644877:-65536 -) -(1,11389:-473656,4736287:0,0,0 -k1,11389:-473656,4736287:5209943 -) -g1,11389:-473656,-710413 -) -] -) -[1,11389:6630773,47279633:25952256,43253760,0 -[1,11389:6630773,4812305:25952256,786432,0 -(1,11389:6630773,4812305:25952256,513147,126483 -(1,11389:6630773,4812305:25952256,513147,126483 -g1,11389:3078558,4812305 -[1,11389:3078558,4812305:0,0,0 -(1,11389:3078558,2439708:0,1703936,0 -k1,11389:1358238,2439708:-1720320 -(1,11088:1358238,2439708:1720320,1703936,0 -(1,11088:1358238,2439708:1179648,16384,0 -r1,11389:2537886,2439708:1179648,16384,0 -) -g1,11088:3062174,2439708 -(1,11088:3062174,2439708:16384,1703936,0 -[1,11088:3062174,2439708:25952256,1703936,0 -(1,11088:3062174,1915420:25952256,1179648,0 -(1,11088:3062174,1915420:16384,1179648,0 -r1,11389:3078558,1915420:16384,1179648,0 -) -k1,11088:29014430,1915420:25935872 -g1,11088:29014430,1915420 -) -] -) -) -) -] -[1,11389:3078558,4812305:0,0,0 -(1,11389:3078558,2439708:0,1703936,0 -g1,11389:29030814,2439708 -g1,11389:36135244,2439708 -(1,11088:36135244,2439708:1720320,1703936,0 -(1,11088:36135244,2439708:16384,1703936,0 -[1,11088:36135244,2439708:25952256,1703936,0 -(1,11088:36135244,1915420:25952256,1179648,0 -(1,11088:36135244,1915420:16384,1179648,0 -r1,11389:36151628,1915420:16384,1179648,0 -) -k1,11088:62087500,1915420:25935872 -g1,11088:62087500,1915420 -) -] -) -g1,11088:36675916,2439708 -(1,11088:36675916,2439708:1179648,16384,0 -r1,11389:37855564,2439708:1179648,16384,0 -) -) -k1,11389:3078556,2439708:-34777008 -) -] -[1,11389:3078558,4812305:0,0,0 -(1,11389:3078558,49800853:0,16384,2228224 -k1,11389:1358238,49800853:-1720320 -(1,11088:1358238,49800853:1720320,16384,2228224 -(1,11088:1358238,49800853:1179648,16384,0 -r1,11389:2537886,49800853:1179648,16384,0 -) -g1,11088:3062174,49800853 -(1,11088:3062174,52029077:16384,1703936,0 -[1,11088:3062174,52029077:25952256,1703936,0 -(1,11088:3062174,51504789:25952256,1179648,0 -(1,11088:3062174,51504789:16384,1179648,0 -r1,11389:3078558,51504789:16384,1179648,0 -) -k1,11088:29014430,51504789:25935872 -g1,11088:29014430,51504789 -) -] -) -) -) -] -[1,11389:3078558,4812305:0,0,0 -(1,11389:3078558,49800853:0,16384,2228224 -g1,11389:29030814,49800853 -g1,11389:36135244,49800853 -(1,11088:36135244,49800853:1720320,16384,2228224 -(1,11088:36135244,52029077:16384,1703936,0 -[1,11088:36135244,52029077:25952256,1703936,0 -(1,11088:36135244,51504789:25952256,1179648,0 -(1,11088:36135244,51504789:16384,1179648,0 -r1,11389:36151628,51504789:16384,1179648,0 -) -k1,11088:62087500,51504789:25935872 -g1,11088:62087500,51504789 -) -] -) -g1,11088:36675916,49800853 -(1,11088:36675916,49800853:1179648,16384,0 -r1,11389:37855564,49800853:1179648,16384,0 -) -) -k1,11389:3078556,49800853:-34777008 -) -] -g1,11389:6630773,4812305 -g1,11389:6630773,4812305 -g1,11389:11156689,4812305 -g1,11389:12279976,4812305 -g1,11389:16431026,4812305 -k1,11389:31387652,4812305:14956626 -) -) -] -[1,11389:6630773,45706769:25952256,40108032,0 -(1,11389:6630773,45706769:25952256,40108032,0 -(1,11389:6630773,45706769:0,0,0 -g1,11389:6630773,45706769 -) -[1,11389:6630773,45706769:25952256,40108032,0 -(1,11302:6630773,6254097:25952256,513147,115847 -h1,11301:6630773,6254097:983040,0,0 -g1,11301:9009729,6254097 -(1,11301:9009729,6254097:0,452978,115847 -r1,11389:11478266,6254097:2468537,568825,115847 -k1,11301:9009729,6254097:-2468537 -) -(1,11301:9009729,6254097:2468537,452978,115847 -k1,11301:9009729,6254097:3277 -h1,11301:11474989,6254097:0,411205,112570 -) -g1,11301:11677495,6254097 -g1,11301:14331047,6254097 -g1,11301:15477927,6254097 -g1,11301:17992543,6254097 -g1,11301:21167107,6254097 -g1,11301:22385421,6254097 -g1,11301:23741360,6254097 -g1,11301:26322167,6254097 -g1,11301:27469047,6254097 -g1,11301:29057639,6254097 -k1,11302:32583029,6254097:1145122 -g1,11302:32583029,6254097 -) -v1,11304:6630773,7350771:0,393216,0 -(1,11325:6630773,15688507:25952256,8730952,196608 -g1,11325:6630773,15688507 -g1,11325:6630773,15688507 -g1,11325:6434165,15688507 -(1,11325:6434165,15688507:0,8730952,196608 -r1,11389:32779637,15688507:26345472,8927560,196608 -k1,11325:6434165,15688507:-26345472 -) -(1,11325:6434165,15688507:26345472,8730952,196608 -[1,11325:6630773,15688507:25952256,8534344,0 -(1,11306:6630773,7564681:25952256,410518,101187 -(1,11305:6630773,7564681:0,0,0 -g1,11305:6630773,7564681 -g1,11305:6630773,7564681 -g1,11305:6303093,7564681 -(1,11305:6303093,7564681:0,0,0 -) -g1,11305:6630773,7564681 -) -k1,11306:6630773,7564681:0 -h1,11306:10424521,7564681:0,0,0 -k1,11306:32583029,7564681:22158508 -g1,11306:32583029,7564681 -) -(1,11313:6630773,8296395:25952256,404226,107478 -(1,11308:6630773,8296395:0,0,0 -g1,11308:6630773,8296395 -g1,11308:6630773,8296395 -g1,11308:6303093,8296395 -(1,11308:6303093,8296395:0,0,0 -) -g1,11308:6630773,8296395 -) -g1,11313:7579210,8296395 -g1,11313:7895356,8296395 -g1,11313:8211502,8296395 -g1,11313:10108376,8296395 -g1,11313:12637542,8296395 -h1,11313:15166707,8296395:0,0,0 -k1,11313:32583029,8296395:17416322 -g1,11313:32583029,8296395 -) -(1,11313:6630773,8962573:25952256,388497,0 -h1,11313:6630773,8962573:0,0,0 -g1,11313:7579210,8962573 -g1,11313:8211502,8962573 -g1,11313:8527648,8962573 -g1,11313:8843794,8962573 -g1,11313:9159940,8962573 -g1,11313:9476086,8962573 -g1,11313:10108378,8962573 -g1,11313:10424524,8962573 -g1,11313:10740670,8962573 -g1,11313:11056816,8962573 -g1,11313:11372962,8962573 -g1,11313:11689108,8962573 -g1,11313:12005254,8962573 -g1,11313:12637546,8962573 -g1,11313:12953692,8962573 -g1,11313:13269838,8962573 -g1,11313:13585984,8962573 -g1,11313:13902130,8962573 -g1,11313:14218276,8962573 -g1,11313:14534422,8962573 -g1,11313:14850568,8962573 -h1,11313:15166714,8962573:0,0,0 -k1,11313:32583030,8962573:17416316 -g1,11313:32583030,8962573 -) -(1,11313:6630773,9628751:25952256,388497,0 -h1,11313:6630773,9628751:0,0,0 -g1,11313:7579210,9628751 -g1,11313:8211502,9628751 -g1,11313:8527648,9628751 -g1,11313:8843794,9628751 -g1,11313:9159940,9628751 -g1,11313:9476086,9628751 -g1,11313:10108378,9628751 -g1,11313:10424524,9628751 -g1,11313:10740670,9628751 -g1,11313:11056816,9628751 -g1,11313:11372962,9628751 -g1,11313:11689108,9628751 -g1,11313:12005254,9628751 -g1,11313:12637546,9628751 -g1,11313:12953692,9628751 -g1,11313:13269838,9628751 -g1,11313:13585984,9628751 -g1,11313:13902130,9628751 -g1,11313:14218276,9628751 -g1,11313:14534422,9628751 -g1,11313:14850568,9628751 -h1,11313:15166714,9628751:0,0,0 -k1,11313:32583030,9628751:17416316 -g1,11313:32583030,9628751 -) -(1,11313:6630773,10294929:25952256,388497,9436 -h1,11313:6630773,10294929:0,0,0 -g1,11313:7579210,10294929 -g1,11313:8211502,10294929 -g1,11313:8527648,10294929 -g1,11313:8843794,10294929 -g1,11313:9159940,10294929 -g1,11313:9476086,10294929 -g1,11313:10108378,10294929 -g1,11313:10424524,10294929 -g1,11313:10740670,10294929 -g1,11313:11056816,10294929 -g1,11313:11372962,10294929 -g1,11313:11689108,10294929 -g1,11313:12005254,10294929 -g1,11313:12637546,10294929 -g1,11313:12953692,10294929 -g1,11313:13269838,10294929 -g1,11313:13585984,10294929 -g1,11313:13902130,10294929 -g1,11313:14218276,10294929 -g1,11313:14534422,10294929 -g1,11313:14850568,10294929 -h1,11313:15166714,10294929:0,0,0 -k1,11313:32583030,10294929:17416316 -g1,11313:32583030,10294929 -) -(1,11315:6630773,11616467:25952256,404226,101187 -(1,11314:6630773,11616467:0,0,0 -g1,11314:6630773,11616467 -g1,11314:6630773,11616467 -g1,11314:6303093,11616467 -(1,11314:6303093,11616467:0,0,0 -) -g1,11314:6630773,11616467 -) -k1,11315:6630773,11616467:0 -h1,11315:10424521,11616467:0,0,0 -k1,11315:32583029,11616467:22158508 -g1,11315:32583029,11616467 -) -(1,11324:6630773,12348181:25952256,404226,9436 -(1,11317:6630773,12348181:0,0,0 -g1,11317:6630773,12348181 -g1,11317:6630773,12348181 -g1,11317:6303093,12348181 -(1,11317:6303093,12348181:0,0,0 -) -g1,11317:6630773,12348181 -) -g1,11324:7579210,12348181 -g1,11324:8211502,12348181 -g1,11324:8843794,12348181 -g1,11324:11372960,12348181 -g1,11324:12005252,12348181 -g1,11324:12637544,12348181 -h1,11324:12953690,12348181:0,0,0 -k1,11324:32583030,12348181:19629340 -g1,11324:32583030,12348181 -) -(1,11324:6630773,13014359:25952256,404226,107478 -h1,11324:6630773,13014359:0,0,0 -g1,11324:7579210,13014359 -g1,11324:7895356,13014359 -g1,11324:8211502,13014359 -g1,11324:10108376,13014359 -g1,11324:12637542,13014359 -h1,11324:15166707,13014359:0,0,0 -k1,11324:32583029,13014359:17416322 -g1,11324:32583029,13014359 -) -(1,11324:6630773,13680537:25952256,404226,6290 -h1,11324:6630773,13680537:0,0,0 -g1,11324:7579210,13680537 -g1,11324:7895356,13680537 -g1,11324:8211502,13680537 -g1,11324:10108377,13680537 -g1,11324:10424523,13680537 -g1,11324:10740669,13680537 -g1,11324:12637544,13680537 -g1,11324:12953690,13680537 -g1,11324:13269836,13680537 -g1,11324:13585982,13680537 -k1,11324:13585982,13680537:0 -h1,11324:15166711,13680537:0,0,0 -k1,11324:32583029,13680537:17416318 -g1,11324:32583029,13680537 -) -(1,11324:6630773,14346715:25952256,388497,0 -h1,11324:6630773,14346715:0,0,0 -g1,11324:7579210,14346715 -g1,11324:8211502,14346715 -g1,11324:8843794,14346715 -g1,11324:9159940,14346715 -g1,11324:9476086,14346715 -g1,11324:9792232,14346715 -g1,11324:10108378,14346715 -g1,11324:10424524,14346715 -g1,11324:10740670,14346715 -g1,11324:11056816,14346715 -g1,11324:11372962,14346715 -g1,11324:11689108,14346715 -g1,11324:12005254,14346715 -g1,11324:12637546,14346715 -g1,11324:12953692,14346715 -g1,11324:13269838,14346715 -g1,11324:13585984,14346715 -g1,11324:13902130,14346715 -g1,11324:14218276,14346715 -g1,11324:14534422,14346715 -g1,11324:14850568,14346715 -h1,11324:15166714,14346715:0,0,0 -k1,11324:32583030,14346715:17416316 -g1,11324:32583030,14346715 -) -(1,11324:6630773,15012893:25952256,388497,0 -h1,11324:6630773,15012893:0,0,0 -g1,11324:7579210,15012893 -g1,11324:8211502,15012893 -g1,11324:8843794,15012893 -g1,11324:9159940,15012893 -g1,11324:9476086,15012893 -g1,11324:9792232,15012893 -g1,11324:10108378,15012893 -g1,11324:10424524,15012893 -g1,11324:10740670,15012893 -g1,11324:11056816,15012893 -g1,11324:11372962,15012893 -g1,11324:11689108,15012893 -g1,11324:12005254,15012893 -g1,11324:12637546,15012893 -g1,11324:12953692,15012893 -g1,11324:13269838,15012893 -g1,11324:13585984,15012893 -g1,11324:13902130,15012893 -g1,11324:14218276,15012893 -g1,11324:14534422,15012893 -g1,11324:14850568,15012893 -h1,11324:15166714,15012893:0,0,0 -k1,11324:32583030,15012893:17416316 -g1,11324:32583030,15012893 -) -(1,11324:6630773,15679071:25952256,388497,9436 -h1,11324:6630773,15679071:0,0,0 -g1,11324:7579210,15679071 -g1,11324:8211502,15679071 -g1,11324:8843794,15679071 -g1,11324:9159940,15679071 -g1,11324:9476086,15679071 -g1,11324:9792232,15679071 -g1,11324:10108378,15679071 -g1,11324:10424524,15679071 -g1,11324:10740670,15679071 -g1,11324:11056816,15679071 -g1,11324:11372962,15679071 -g1,11324:11689108,15679071 -g1,11324:12005254,15679071 -g1,11324:12637546,15679071 -g1,11324:12953692,15679071 -g1,11324:13269838,15679071 -g1,11324:13585984,15679071 -g1,11324:13902130,15679071 -g1,11324:14218276,15679071 -g1,11324:14534422,15679071 -g1,11324:14850568,15679071 -h1,11324:15166714,15679071:0,0,0 -k1,11324:32583030,15679071:17416316 -g1,11324:32583030,15679071 -) -] -) -g1,11325:32583029,15688507 -g1,11325:6630773,15688507 -g1,11325:6630773,15688507 -g1,11325:32583029,15688507 -g1,11325:32583029,15688507 -) -h1,11325:6630773,15885115:0,0,0 -v1,11329:6630773,17587595:0,393216,0 -(1,11330:6630773,23231714:25952256,6037335,616038 -g1,11330:6630773,23231714 -(1,11330:6630773,23231714:25952256,6037335,616038 -(1,11330:6630773,23847752:25952256,6653373,0 -[1,11330:6630773,23847752:25952256,6653373,0 -(1,11330:6630773,23821538:25952256,6600945,0 -r1,11389:6656987,23821538:26214,6600945,0 -[1,11330:6656987,23821538:25899828,6600945,0 -(1,11330:6656987,23231714:25899828,5421297,0 -[1,11330:7246811,23231714:24720180,5421297,0 -(1,11330:7246811,18897791:24720180,1087374,126483 -k1,11329:8721034,18897791:264520 -k1,11329:11304874,18897791:264521 -k1,11329:12760839,18897791:264520 -k1,11329:14414723,18897791:264521 -k1,11329:16885840,18897791:264520 -k1,11329:18893619,18897791:264521 -k1,11329:19774177,18897791:264520 -k1,11329:21369079,18897791:264521 -k1,11329:23013787,18897791:264520 -k1,11329:24269868,18897791:264521 -k1,11329:26884509,18897791:264520 -k1,11329:28847068,18897791:264521 -k1,11329:30491776,18897791:264520 -k1,11329:31966991,18897791:0 -) -(1,11330:7246811,19739279:24720180,513147,126483 -k1,11329:9153908,19739279:155320 -k1,11329:10843427,19739279:155321 -k1,11329:11681632,19739279:155320 -k1,11329:14723813,19739279:155320 -k1,11329:15484687,19739279:155321 -k1,11329:18785735,19739279:155320 -k1,11329:19296915,19739279:155320 -k1,11329:20841598,19739279:155320 -k1,11329:22873215,19739279:155321 -k1,11329:24219980,19739279:155320 -k1,11329:25146003,19739279:155320 -k1,11329:28606305,19739279:155321 -k1,11329:30573040,19739279:155320 -k1,11329:31966991,19739279:0 -) -(1,11330:7246811,20580767:24720180,505283,126483 -k1,11329:8062210,20580767:202637 -k1,11329:9760379,20580767:202637 -k1,11329:10759934,20580767:202637 -k1,11329:12496770,20580767:202638 -k1,11329:13890852,20580767:202637 -k1,11329:15527417,20580767:202637 -k1,11329:16921499,20580767:202637 -k1,11329:18454517,20580767:202637 -k1,11329:19676239,20580767:202637 -k1,11329:22037632,20580767:202637 -k1,11329:23957312,20580767:202637 -k1,11329:25857988,20580767:202638 -k1,11329:27440813,20580767:202637 -k1,11329:28635010,20580767:202637 -k1,11329:31361438,20580767:202637 -k1,11329:31966991,20580767:0 -) -(1,11330:7246811,21422255:24720180,513147,126483 -k1,11329:10604384,21422255:211845 -k1,11329:11172089,21422255:211845 -k1,11329:12773297,21422255:211845 -k1,11329:14861438,21422255:211845 -k1,11329:16264728,21422255:211845 -k1,11329:17247277,21422255:211846 -k1,11329:20764103,21422255:211845 -k1,11329:22787363,21422255:211845 -k1,11329:24393159,21422255:211845 -k1,11329:26255201,21422255:211845 -k1,11329:29180237,21422255:211845 -k1,11329:30834529,21422255:211845 -k1,11329:31966991,21422255:0 -) -(1,11330:7246811,22263743:24720180,513147,126483 -k1,11329:8130892,22263743:196608 -k1,11329:8943538,22263743:196608 -k1,11329:10159231,22263743:196608 -k1,11329:12170530,22263743:196607 -k1,11329:13026430,22263743:196608 -k1,11329:14242123,22263743:196608 -k1,11329:17273819,22263743:196608 -k1,11329:18661872,22263743:196608 -k1,11329:20292408,22263743:196608 -k1,11329:21680461,22263743:196608 -k1,11329:23207450,22263743:196608 -k1,11329:24423142,22263743:196607 -k1,11329:26778506,22263743:196608 -k1,11329:28692157,22263743:196608 -k1,11329:30586803,22263743:196608 -k1,11329:31966991,22263743:0 -) -(1,11330:7246811,23105231:24720180,505283,126483 -g1,11329:8437600,23105231 -k1,11330:31966991,23105231:21005600 -g1,11330:31966991,23105231 -) -] -) -] -r1,11389:32583029,23821538:26214,6600945,0 -) -] -) -) -g1,11330:32583029,23231714 -) -h1,11330:6630773,23847752:0,0,0 -(1,11333:6630773,25119736:25952256,513147,115847 -h1,11332:6630773,25119736:983040,0,0 -g1,11332:9284981,25119736 -g1,11332:11690807,25119736 -g1,11332:12994318,25119736 -g1,11332:13941313,25119736 -g1,11332:17301343,25119736 -g1,11332:18768038,25119736 -g1,11332:21108984,25119736 -g1,11332:22702164,25119736 -(1,11332:22702164,25119736:0,452978,115847 -r1,11389:26577548,25119736:3875384,568825,115847 -k1,11332:22702164,25119736:-3875384 -) -(1,11332:22702164,25119736:3875384,452978,115847 -k1,11332:22702164,25119736:3277 -h1,11332:26574271,25119736:0,411205,112570 -) -k1,11333:32583029,25119736:5831811 -g1,11333:32583029,25119736 -) -v1,11335:6630773,26216410:0,393216,0 -(1,11356:6630773,32708372:25952256,6885178,196608 -g1,11356:6630773,32708372 -g1,11356:6630773,32708372 -g1,11356:6434165,32708372 -(1,11356:6434165,32708372:0,6885178,196608 -r1,11389:32779637,32708372:26345472,7081786,196608 -k1,11356:6434165,32708372:-26345472 -) -(1,11356:6434165,32708372:26345472,6885178,196608 -[1,11356:6630773,32708372:25952256,6688570,0 -(1,11337:6630773,26430320:25952256,410518,101187 -(1,11336:6630773,26430320:0,0,0 -g1,11336:6630773,26430320 -g1,11336:6630773,26430320 -g1,11336:6303093,26430320 -(1,11336:6303093,26430320:0,0,0 -) -g1,11336:6630773,26430320 -) -g1,11337:10108376,26430320 -g1,11337:11056814,26430320 -k1,11337:11056814,26430320:0 -h1,11337:16115145,26430320:0,0,0 -k1,11337:32583029,26430320:16467884 -g1,11337:32583029,26430320 -) -(1,11338:6630773,27096498:25952256,410518,101187 -h1,11338:6630773,27096498:0,0,0 -k1,11338:6630773,27096498:0 -h1,11338:14534415,27096498:0,0,0 -k1,11338:32583029,27096498:18048614 -g1,11338:32583029,27096498 -) -(1,11342:6630773,27828212:25952256,404226,76021 -(1,11340:6630773,27828212:0,0,0 -g1,11340:6630773,27828212 -g1,11340:6630773,27828212 -g1,11340:6303093,27828212 -(1,11340:6303093,27828212:0,0,0 -) -g1,11340:6630773,27828212 -) -g1,11342:7579210,27828212 -g1,11342:8843793,27828212 -h1,11342:10108376,27828212:0,0,0 -k1,11342:32583028,27828212:22474652 -g1,11342:32583028,27828212 -) -(1,11344:6630773,29149750:25952256,404226,101187 -(1,11343:6630773,29149750:0,0,0 -g1,11343:6630773,29149750 -g1,11343:6630773,29149750 -g1,11343:6303093,29149750 -(1,11343:6303093,29149750:0,0,0 -) -g1,11343:6630773,29149750 -) -k1,11344:6630773,29149750:0 -h1,11344:13269832,29149750:0,0,0 -k1,11344:32583028,29149750:19313196 -g1,11344:32583028,29149750 -) -(1,11348:6630773,29881464:25952256,404226,76021 -(1,11346:6630773,29881464:0,0,0 -g1,11346:6630773,29881464 -g1,11346:6630773,29881464 -g1,11346:6303093,29881464 -(1,11346:6303093,29881464:0,0,0 -) -g1,11346:6630773,29881464 -) -g1,11348:7579210,29881464 -g1,11348:8843793,29881464 -h1,11348:10108376,29881464:0,0,0 -k1,11348:32583028,29881464:22474652 -g1,11348:32583028,29881464 -) -(1,11350:6630773,31203002:25952256,404226,101187 -(1,11349:6630773,31203002:0,0,0 -g1,11349:6630773,31203002 -g1,11349:6630773,31203002 -g1,11349:6303093,31203002 -(1,11349:6303093,31203002:0,0,0 -) -g1,11349:6630773,31203002 -) -k1,11350:6630773,31203002:0 -h1,11350:14218269,31203002:0,0,0 -k1,11350:32583029,31203002:18364760 -g1,11350:32583029,31203002 -) -(1,11355:6630773,31934716:25952256,410518,107478 -(1,11352:6630773,31934716:0,0,0 -g1,11352:6630773,31934716 -g1,11352:6630773,31934716 -g1,11352:6303093,31934716 -(1,11352:6303093,31934716:0,0,0 -) -g1,11352:6630773,31934716 -) -g1,11355:7579210,31934716 -g1,11355:9792230,31934716 -h1,11355:13269832,31934716:0,0,0 -k1,11355:32583028,31934716:19313196 -g1,11355:32583028,31934716 -) -(1,11355:6630773,32600894:25952256,404226,107478 -h1,11355:6630773,32600894:0,0,0 -g1,11355:7579210,32600894 -g1,11355:9792230,32600894 -g1,11355:13269833,32600894 -g1,11355:16115144,32600894 -g1,11355:18960456,32600894 -g1,11355:22121913,32600894 -h1,11355:24334933,32600894:0,0,0 -k1,11355:32583029,32600894:8248096 -g1,11355:32583029,32600894 -) -] -) -g1,11356:32583029,32708372 -g1,11356:6630773,32708372 -g1,11356:6630773,32708372 -g1,11356:32583029,32708372 -g1,11356:32583029,32708372 -) -h1,11356:6630773,32904980:0,0,0 -v1,11360:6630773,34432150:0,393216,0 -(1,11381:6630773,40924112:25952256,6885178,196608 -g1,11381:6630773,40924112 -g1,11381:6630773,40924112 -g1,11381:6434165,40924112 -(1,11381:6434165,40924112:0,6885178,196608 -r1,11389:32779637,40924112:26345472,7081786,196608 -k1,11381:6434165,40924112:-26345472 -) -(1,11381:6434165,40924112:26345472,6885178,196608 -[1,11381:6630773,40924112:25952256,6688570,0 -(1,11362:6630773,34646060:25952256,410518,101187 -(1,11361:6630773,34646060:0,0,0 -g1,11361:6630773,34646060 -g1,11361:6630773,34646060 -g1,11361:6303093,34646060 -(1,11361:6303093,34646060:0,0,0 -) -g1,11361:6630773,34646060 -) -g1,11362:10108376,34646060 -g1,11362:11056814,34646060 -k1,11362:11056814,34646060:0 -h1,11362:17379728,34646060:0,0,0 -k1,11362:32583029,34646060:15203301 -g1,11362:32583029,34646060 -) -(1,11363:6630773,35312238:25952256,410518,101187 -h1,11363:6630773,35312238:0,0,0 -k1,11363:6630773,35312238:0 -h1,11363:14534415,35312238:0,0,0 -k1,11363:32583029,35312238:18048614 -g1,11363:32583029,35312238 -) -(1,11367:6630773,36043952:25952256,404226,76021 -(1,11365:6630773,36043952:0,0,0 -g1,11365:6630773,36043952 -g1,11365:6630773,36043952 -g1,11365:6303093,36043952 -(1,11365:6303093,36043952:0,0,0 -) -g1,11365:6630773,36043952 -) -g1,11367:7579210,36043952 -g1,11367:8843793,36043952 -h1,11367:10108376,36043952:0,0,0 -k1,11367:32583028,36043952:22474652 -g1,11367:32583028,36043952 -) -(1,11369:6630773,37365490:25952256,410518,101187 -(1,11368:6630773,37365490:0,0,0 -g1,11368:6630773,37365490 -g1,11368:6630773,37365490 -g1,11368:6303093,37365490 -(1,11368:6303093,37365490:0,0,0 -) -g1,11368:6630773,37365490 -) -k1,11369:6630773,37365490:0 -h1,11369:13269832,37365490:0,0,0 -k1,11369:32583028,37365490:19313196 -g1,11369:32583028,37365490 -) -(1,11373:6630773,38097204:25952256,404226,76021 -(1,11371:6630773,38097204:0,0,0 -g1,11371:6630773,38097204 -g1,11371:6630773,38097204 -g1,11371:6303093,38097204 -(1,11371:6303093,38097204:0,0,0 -) -g1,11371:6630773,38097204 -) -g1,11373:7579210,38097204 -g1,11373:8843793,38097204 -h1,11373:10424521,38097204:0,0,0 -k1,11373:32583029,38097204:22158508 -g1,11373:32583029,38097204 -) -(1,11375:6630773,39418742:25952256,410518,101187 -(1,11374:6630773,39418742:0,0,0 -g1,11374:6630773,39418742 -g1,11374:6630773,39418742 -g1,11374:6303093,39418742 -(1,11374:6303093,39418742:0,0,0 -) -g1,11374:6630773,39418742 -) -k1,11375:6630773,39418742:0 -h1,11375:14218269,39418742:0,0,0 -k1,11375:32583029,39418742:18364760 -g1,11375:32583029,39418742 -) -(1,11380:6630773,40150456:25952256,410518,107478 -(1,11377:6630773,40150456:0,0,0 -g1,11377:6630773,40150456 -g1,11377:6630773,40150456 -g1,11377:6303093,40150456 -(1,11377:6303093,40150456:0,0,0 -) -g1,11377:6630773,40150456 -) -g1,11380:7579210,40150456 -g1,11380:11056813,40150456 -h1,11380:14534415,40150456:0,0,0 -k1,11380:32583029,40150456:18048614 -g1,11380:32583029,40150456 -) -(1,11380:6630773,40816634:25952256,404226,107478 -h1,11380:6630773,40816634:0,0,0 -g1,11380:7579210,40816634 -g1,11380:9792230,40816634 -g1,11380:13269833,40816634 -g1,11380:16115144,40816634 -g1,11380:18960456,40816634 -g1,11380:22121913,40816634 -h1,11380:24334933,40816634:0,0,0 -k1,11380:32583029,40816634:8248096 -g1,11380:32583029,40816634 -) -] -) -g1,11381:32583029,40924112 -g1,11381:6630773,40924112 -g1,11381:6630773,40924112 -g1,11381:32583029,40924112 -g1,11381:32583029,40924112 -) -h1,11381:6630773,41120720:0,0,0 -v1,11385:6630773,42823200:0,393216,0 -(1,11386:6630773,45090731:25952256,2660747,616038 -g1,11386:6630773,45090731 -(1,11386:6630773,45090731:25952256,2660747,616038 -(1,11386:6630773,45706769:25952256,3276785,0 -[1,11386:6630773,45706769:25952256,3276785,0 -(1,11386:6630773,45680555:25952256,3224357,0 -r1,11389:6656987,45680555:26214,3224357,0 -[1,11386:6656987,45680555:25899828,3224357,0 -(1,11386:6656987,45090731:25899828,2044709,0 -[1,11386:7246811,45090731:24720180,2044709,0 -(1,11386:7246811,44133396:24720180,1087374,126483 -k1,11385:8619006,44133396:162492 -k1,11385:10328147,44133396:162491 -k1,11385:13266744,44133396:162492 -k1,11385:14041998,44133396:162492 -k1,11385:15223575,44133396:162492 -k1,11385:17228938,44133396:162491 -k1,11385:18050722,44133396:162492 -k1,11385:19232299,44133396:162492 -k1,11385:23375448,44133396:162492 -k1,11385:24920093,44133396:162491 -k1,11385:25897853,44133396:162492 -k1,11385:26928697,44133396:162492 -k1,11385:28421570,44133396:162492 -k1,11385:30059276,44133396:162491 -k1,11385:30577628,44133396:162492 -k1,11385:31966991,44133396:0 -) -(1,11386:7246811,44974884:24720180,513147,115847 -g1,11385:9322336,44974884 -g1,11385:10915516,44974884 -(1,11385:10915516,44974884:0,414482,115847 -r1,11389:11273782,44974884:358266,530329,115847 -k1,11385:10915516,44974884:-358266 -) -(1,11385:10915516,44974884:358266,414482,115847 -k1,11385:10915516,44974884:3277 -h1,11385:11270505,44974884:0,411205,112570 -) -g1,11385:11473011,44974884 -g1,11385:12358402,44974884 -(1,11385:12358402,44974884:0,452978,115847 -r1,11389:15530362,44974884:3171960,568825,115847 -k1,11385:12358402,44974884:-3171960 -) -(1,11385:12358402,44974884:3171960,452978,115847 -k1,11385:12358402,44974884:3277 -h1,11385:15527085,44974884:0,411205,112570 -) -g1,11385:15729591,44974884 -g1,11385:17120265,44974884 -g1,11385:17675354,44974884 -g1,11385:19685998,44974884 -g1,11385:21279178,44974884 -(1,11385:21279178,44974884:0,414482,115847 -r1,11389:21637444,44974884:358266,530329,115847 -k1,11385:21279178,44974884:-358266 -) -(1,11385:21279178,44974884:358266,414482,115847 -k1,11385:21279178,44974884:3277 -h1,11385:21634167,44974884:0,411205,112570 -) -g1,11385:21836673,44974884 -g1,11385:22722064,44974884 -g1,11385:23277153,44974884 -(1,11385:23277153,44974884:0,459977,115847 -r1,11389:25393978,44974884:2116825,575824,115847 -k1,11385:23277153,44974884:-2116825 -) -(1,11385:23277153,44974884:2116825,459977,115847 -k1,11385:23277153,44974884:3277 -h1,11385:25390701,44974884:0,411205,112570 -) -k1,11386:31966991,44974884:6245988 -g1,11386:31966991,44974884 -) -] -) -] -r1,11389:32583029,45680555:26214,3224357,0 -) -] -) -) -g1,11386:32583029,45090731 -) -h1,11386:6630773,45706769:0,0,0 -] -(1,11389:32583029,45706769:0,0,0 -g1,11389:32583029,45706769 -) -) -] -(1,11389:6630773,47279633:25952256,0,0 -h1,11389:6630773,47279633:25952256,0,0 -) -] -(1,11389:4262630,4025873:0,0,0 -[1,11389:-473656,4025873:0,0,0 -(1,11389:-473656,-710413:0,0,0 -(1,11389:-473656,-710413:0,0,0 -g1,11389:-473656,-710413 -) -g1,11389:-473656,-710413 -) -] -) -] -!24861 -}214 -Input:1576:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1577:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1578:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1579:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1580:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1581:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!564 -{215 -[1,11463:4262630,47279633:28320399,43253760,0 -(1,11463:4262630,4025873:0,0,0 -[1,11463:-473656,4025873:0,0,0 -(1,11463:-473656,-710413:0,0,0 -(1,11463:-473656,-644877:0,0,0 -k1,11463:-473656,-644877:-65536 -) -(1,11463:-473656,4736287:0,0,0 -k1,11463:-473656,4736287:5209943 -) -g1,11463:-473656,-710413 -) -] -) -[1,11463:6630773,47279633:25952256,43253760,0 -[1,11463:6630773,4812305:25952256,786432,0 -(1,11463:6630773,4812305:25952256,513147,134348 -(1,11463:6630773,4812305:25952256,513147,134348 -g1,11463:3078558,4812305 -[1,11463:3078558,4812305:0,0,0 -(1,11463:3078558,2439708:0,1703936,0 -k1,11463:1358238,2439708:-1720320 -(1,11088:1358238,2439708:1720320,1703936,0 -(1,11088:1358238,2439708:1179648,16384,0 -r1,11463:2537886,2439708:1179648,16384,0 -) -g1,11088:3062174,2439708 -(1,11088:3062174,2439708:16384,1703936,0 -[1,11088:3062174,2439708:25952256,1703936,0 -(1,11088:3062174,1915420:25952256,1179648,0 -(1,11088:3062174,1915420:16384,1179648,0 -r1,11463:3078558,1915420:16384,1179648,0 -) -k1,11088:29014430,1915420:25935872 -g1,11088:29014430,1915420 -) -] -) -) -) -] -[1,11463:3078558,4812305:0,0,0 -(1,11463:3078558,2439708:0,1703936,0 -g1,11463:29030814,2439708 -g1,11463:36135244,2439708 -(1,11088:36135244,2439708:1720320,1703936,0 -(1,11088:36135244,2439708:16384,1703936,0 -[1,11088:36135244,2439708:25952256,1703936,0 -(1,11088:36135244,1915420:25952256,1179648,0 -(1,11088:36135244,1915420:16384,1179648,0 -r1,11463:36151628,1915420:16384,1179648,0 -) -k1,11088:62087500,1915420:25935872 -g1,11088:62087500,1915420 -) -] -) -g1,11088:36675916,2439708 -(1,11088:36675916,2439708:1179648,16384,0 -r1,11463:37855564,2439708:1179648,16384,0 -) -) -k1,11463:3078556,2439708:-34777008 -) -] -[1,11463:3078558,4812305:0,0,0 -(1,11463:3078558,49800853:0,16384,2228224 -k1,11463:1358238,49800853:-1720320 -(1,11088:1358238,49800853:1720320,16384,2228224 -(1,11088:1358238,49800853:1179648,16384,0 -r1,11463:2537886,49800853:1179648,16384,0 -) -g1,11088:3062174,49800853 -(1,11088:3062174,52029077:16384,1703936,0 -[1,11088:3062174,52029077:25952256,1703936,0 -(1,11088:3062174,51504789:25952256,1179648,0 -(1,11088:3062174,51504789:16384,1179648,0 -r1,11463:3078558,51504789:16384,1179648,0 -) -k1,11088:29014430,51504789:25935872 -g1,11088:29014430,51504789 -) -] -) -) -) -] -[1,11463:3078558,4812305:0,0,0 -(1,11463:3078558,49800853:0,16384,2228224 -g1,11463:29030814,49800853 -g1,11463:36135244,49800853 -(1,11088:36135244,49800853:1720320,16384,2228224 -(1,11088:36135244,52029077:16384,1703936,0 -[1,11088:36135244,52029077:25952256,1703936,0 -(1,11088:36135244,51504789:25952256,1179648,0 -(1,11088:36135244,51504789:16384,1179648,0 -r1,11463:36151628,51504789:16384,1179648,0 -) -k1,11088:62087500,51504789:25935872 -g1,11088:62087500,51504789 -) -] -) -g1,11088:36675916,49800853 -(1,11088:36675916,49800853:1179648,16384,0 -r1,11463:37855564,49800853:1179648,16384,0 -) -) -k1,11463:3078556,49800853:-34777008 -) -] -g1,11463:6630773,4812305 -k1,11463:25241686,4812305:17415536 -g1,11463:26807341,4812305 -g1,11463:30339731,4812305 -g1,11463:31154998,4812305 -) -) -] -[1,11463:6630773,45706769:25952256,40108032,0 -(1,11463:6630773,45706769:25952256,40108032,0 -(1,11463:6630773,45706769:0,0,0 -g1,11463:6630773,45706769 -) -[1,11463:6630773,45706769:25952256,40108032,0 -v1,11389:6630773,6254097:0,393216,0 -(1,11463:6630773,45116945:25952256,39256064,589824 -g1,11463:6630773,45116945 -(1,11463:6630773,45116945:25952256,39256064,589824 -(1,11463:6630773,45706769:25952256,39845888,0 -[1,11463:6630773,45706769:25952256,39845888,0 -(1,11463:6630773,45706769:25952256,39819674,0 -r1,11463:6656987,45706769:26214,39819674,0 -[1,11463:6656987,45706769:25899828,39819674,0 -(1,11463:6656987,45116945:25899828,38640026,0 -[1,11463:7246811,45116945:24720180,38640026,0 -(1,11390:7246811,7638804:24720180,1161885,196608 -(1,11389:7246811,7638804:0,1161885,196608 -r1,11463:8794447,7638804:1547636,1358493,196608 -k1,11389:7246811,7638804:-1547636 -) -(1,11389:7246811,7638804:1547636,1161885,196608 -) -k1,11389:9090924,7638804:296477 -k1,11389:10531005,7638804:296478 -k1,11389:11593598,7638804:296477 -k1,11389:15366760,7638804:296477 -k1,11389:18689035,7638804:296478 -k1,11389:20581969,7638804:296477 -k1,11389:24725409,7638804:296477 -k1,11389:26719925,7638804:296478 -k1,11389:30399370,7638804:296477 -k1,11389:31966991,7638804:0 -) -(1,11390:7246811,8480292:24720180,513147,134348 -k1,11389:7866235,8480292:263564 -k1,11389:10512688,8480292:263564 -k1,11389:12331421,8480292:263564 -k1,11389:13862451,8480292:263564 -k1,11389:14914413,8480292:263564 -k1,11389:17435692,8480292:263564 -k1,11389:18895943,8480292:263564 -k1,11389:21290738,8480292:263564 -k1,11389:22501953,8480292:263564 -k1,11389:23968758,8480292:263564 -k1,11389:24763819,8480292:263564 -k1,11389:29331788,8480292:263564 -k1,11389:31966991,8480292:0 -) -(1,11390:7246811,9321780:24720180,505283,134348 -k1,11389:9876771,9321780:174326 -k1,11389:10860466,9321780:174325 -k1,11389:12583408,9321780:174326 -k1,11389:13776818,9321780:174325 -k1,11389:16194441,9321780:174326 -k1,11389:19128487,9321780:174325 -k1,11389:19834310,9321780:174326 -k1,11389:21863305,9321780:174326 -k1,11389:22847000,9321780:174325 -k1,11389:24529965,9321780:174326 -k1,11389:25895735,9321780:174325 -k1,11389:28306805,9321780:174326 -k1,11389:29734834,9321780:174325 -k1,11389:30900720,9321780:174326 -k1,11389:31966991,9321780:0 -) -(1,11390:7246811,10163268:24720180,513147,134348 -g1,11389:9158496,10163268 -g1,11389:10009153,10163268 -g1,11389:10956148,10163268 -g1,11389:12028317,10163268 -g1,11389:12989074,10163268 -g1,11389:14391544,10163268 -g1,11389:17267263,10163268 -g1,11389:20945143,10163268 -g1,11389:22216541,10163268 -g1,11389:22873867,10163268 -g1,11389:24177378,10163268 -g1,11389:25124373,10163268 -g1,11389:27807417,10163268 -g1,11389:28658074,10163268 -k1,11390:31966991,10163268:296227 -g1,11390:31966991,10163268 -) -(1,11392:7246811,11004756:24720180,505283,134348 -h1,11391:7246811,11004756:983040,0,0 -k1,11391:9356140,11004756:172740 -k1,11391:11004094,11004756:172739 -k1,11391:13511226,11004756:172740 -k1,11391:15123791,11004756:172739 -k1,11391:16581037,11004756:172740 -k1,11391:18843719,11004756:172739 -(1,11391:18843719,11004756:0,459977,115847 -r1,11463:24125950,11004756:5282231,575824,115847 -k1,11391:18843719,11004756:-5282231 -) -(1,11391:18843719,11004756:5282231,459977,115847 -k1,11391:18843719,11004756:3277 -h1,11391:24122673,11004756:0,411205,112570 -) -k1,11391:24298690,11004756:172740 -k1,11391:25280800,11004756:172740 -k1,11391:25809399,11004756:172739 -k1,11391:27793554,11004756:172740 -k1,11391:29794092,11004756:172739 -k1,11391:30985917,11004756:172740 -k1,11392:31966991,11004756:0 -) -(1,11392:7246811,11846244:24720180,513147,134348 -k1,11391:9083029,11846244:221411 -k1,11391:10859609,11846244:221411 -k1,11391:14363718,11846244:221411 -k1,11391:17586023,11846244:221411 -k1,11391:18163294,11846244:221411 -k1,11391:19774068,11846244:221411 -k1,11391:22045444,11846244:221410 -k1,11391:23220404,11846244:221411 -k1,11391:24574277,11846244:221411 -k1,11391:26182430,11846244:221411 -k1,11391:27016603,11846244:221411 -k1,11391:28257099,11846244:221411 -k1,11391:30361359,11846244:221411 -k1,11392:31966991,11846244:0 -) -(1,11392:7246811,12687732:24720180,513147,115847 -k1,11391:9030898,12687732:202048 -k1,11391:11210823,12687732:202048 -k1,11391:13451041,12687732:202048 -k1,11391:14269127,12687732:202048 -k1,11391:15490260,12687732:202048 -(1,11391:15490260,12687732:0,452978,115847 -r1,11463:17958797,12687732:2468537,568825,115847 -k1,11391:15490260,12687732:-2468537 -) -(1,11391:15490260,12687732:2468537,452978,115847 -k1,11391:15490260,12687732:3277 -h1,11391:17955520,12687732:0,411205,112570 -) -k1,11391:18160845,12687732:202048 -k1,11391:21141620,12687732:202048 -k1,11391:21995096,12687732:202048 -k1,11391:26230230,12687732:202048 -k1,11391:27451363,12687732:202048 -k1,11391:31013442,12687732:202048 -k1,11391:31966991,12687732:0 -) -(1,11392:7246811,13529220:24720180,513147,134348 -k1,11391:8761096,13529220:228469 -k1,11391:10181009,13529220:228468 -k1,11391:11428563,13529220:228469 -k1,11391:12829470,13529220:228468 -k1,11391:15347767,13529220:228469 -k1,11391:16523886,13529220:228468 -k1,11391:19472754,13529220:228469 -k1,11391:20317260,13529220:228468 -k1,11391:21718168,13529220:228469 -k1,11391:24708979,13529220:228468 -k1,11391:26679395,13529220:228469 -k1,11391:28699617,13529220:228468 -k1,11391:29947171,13529220:228469 -k1,11392:31966991,13529220:0 -) -(1,11392:7246811,14370708:24720180,513147,134348 -k1,11391:8415299,14370708:228702 -(1,11391:8415299,14370708:0,414482,115847 -r1,11463:9125277,14370708:709978,530329,115847 -k1,11391:8415299,14370708:-709978 -) -(1,11391:8415299,14370708:709978,414482,115847 -k1,11391:8415299,14370708:3277 -h1,11391:9122000,14370708:0,411205,112570 -) -k1,11391:9353979,14370708:228702 -k1,11391:11104427,14370708:228702 -k1,11391:12280780,14370708:228702 -k1,11391:15814463,14370708:228702 -k1,11391:18506663,14370708:228702 -k1,11391:21139881,14370708:228702 -k1,11391:22653089,14370708:228702 -k1,11391:25253539,14370708:228702 -k1,11391:26501326,14370708:228702 -k1,11391:28383501,14370708:228702 -k1,11391:30175237,14370708:228702 -k1,11392:31966991,14370708:0 -) -(1,11392:7246811,15212196:24720180,505283,134348 -(1,11391:7246811,15212196:0,452978,115847 -r1,11463:11122195,15212196:3875384,568825,115847 -k1,11391:7246811,15212196:-3875384 -) -(1,11391:7246811,15212196:3875384,452978,115847 -k1,11391:7246811,15212196:3277 -h1,11391:11118918,15212196:0,411205,112570 -) -k1,11391:11332476,15212196:210281 -k1,11391:13064503,15212196:210281 -k1,11391:14559290,15212196:210281 -k1,11391:17059399,15212196:210281 -k1,11391:18261240,15212196:210281 -k1,11391:20696467,15212196:210280 -k1,11391:21925833,15212196:210281 -k1,11391:23963258,15212196:210281 -k1,11391:27154116,15212196:210281 -k1,11391:30473425,15212196:210281 -k1,11391:31966991,15212196:0 -) -(1,11392:7246811,16053684:24720180,505283,134348 -g1,11391:8132202,16053684 -(1,11391:8132202,16053684:0,452978,115847 -r1,11463:10600739,16053684:2468537,568825,115847 -k1,11391:8132202,16053684:-2468537 -) -(1,11391:8132202,16053684:2468537,452978,115847 -k1,11391:8132202,16053684:3277 -h1,11391:10597462,16053684:0,411205,112570 -) -g1,11391:10973638,16053684 -g1,11391:13058338,16053684 -g1,11391:14125919,16053684 -g1,11391:16759155,16053684 -g1,11391:18693777,16053684 -(1,11391:18693777,16053684:0,452978,115847 -r1,11463:21162314,16053684:2468537,568825,115847 -k1,11391:18693777,16053684:-2468537 -) -(1,11391:18693777,16053684:2468537,452978,115847 -k1,11391:18693777,16053684:3277 -h1,11391:21159037,16053684:0,411205,112570 -) -k1,11392:31966991,16053684:10631007 -g1,11392:31966991,16053684 -) -v1,11394:7246811,17172010:0,393216,0 -(1,11422:7246811,26345653:24720180,9566859,196608 -g1,11422:7246811,26345653 -g1,11422:7246811,26345653 -g1,11422:7050203,26345653 -(1,11422:7050203,26345653:0,9566859,196608 -r1,11463:32163599,26345653:25113396,9763467,196608 -k1,11422:7050203,26345653:-25113396 -) -(1,11422:7050203,26345653:25113396,9566859,196608 -[1,11422:7246811,26345653:24720180,9370251,0 -(1,11396:7246811,17379628:24720180,404226,101187 -(1,11395:7246811,17379628:0,0,0 -g1,11395:7246811,17379628 -g1,11395:7246811,17379628 -g1,11395:6919131,17379628 -(1,11395:6919131,17379628:0,0,0 -) -g1,11395:7246811,17379628 -) -k1,11396:7246811,17379628:0 -h1,11396:11040559,17379628:0,0,0 -k1,11396:31966991,17379628:20926432 -g1,11396:31966991,17379628 -) -(1,11400:7246811,18111342:24720180,410518,76021 -(1,11398:7246811,18111342:0,0,0 -g1,11398:7246811,18111342 -g1,11398:7246811,18111342 -g1,11398:6919131,18111342 -(1,11398:6919131,18111342:0,0,0 -) -g1,11398:7246811,18111342 -) -g1,11400:8195248,18111342 -g1,11400:9459831,18111342 -g1,11400:12305142,18111342 -g1,11400:12621288,18111342 -g1,11400:12937434,18111342 -g1,11400:13253580,18111342 -g1,11400:13569726,18111342 -g1,11400:15466600,18111342 -g1,11400:15782746,18111342 -g1,11400:16098892,18111342 -g1,11400:16415038,18111342 -g1,11400:16731184,18111342 -g1,11400:17047330,18111342 -g1,11400:17363476,18111342 -g1,11400:17679622,18111342 -h1,11400:21473370,18111342:0,0,0 -k1,11400:31966991,18111342:10493621 -g1,11400:31966991,18111342 -) -(1,11402:7246811,19432880:24720180,410518,101187 -(1,11401:7246811,19432880:0,0,0 -g1,11401:7246811,19432880 -g1,11401:7246811,19432880 -g1,11401:6919131,19432880 -(1,11401:6919131,19432880:0,0,0 -) -g1,11401:7246811,19432880 -) -k1,11402:7246811,19432880:0 -h1,11402:12621287,19432880:0,0,0 -k1,11402:31966991,19432880:19345704 -g1,11402:31966991,19432880 -) -(1,11406:7246811,20164594:24720180,410518,76021 -(1,11404:7246811,20164594:0,0,0 -g1,11404:7246811,20164594 -g1,11404:7246811,20164594 -g1,11404:6919131,20164594 -(1,11404:6919131,20164594:0,0,0 -) -g1,11404:7246811,20164594 -) -g1,11406:8195248,20164594 -g1,11406:9459831,20164594 -h1,11406:13253579,20164594:0,0,0 -k1,11406:31966991,20164594:18713412 -g1,11406:31966991,20164594 -) -(1,11408:7246811,21486132:24720180,410518,101187 -(1,11407:7246811,21486132:0,0,0 -g1,11407:7246811,21486132 -g1,11407:7246811,21486132 -g1,11407:6919131,21486132 -(1,11407:6919131,21486132:0,0,0 -) -g1,11407:7246811,21486132 -) -g1,11408:9143685,21486132 -g1,11408:10092122,21486132 -h1,11408:13253579,21486132:0,0,0 -k1,11408:31966991,21486132:18713412 -g1,11408:31966991,21486132 -) -(1,11415:7246811,22217846:24720180,404226,107478 -(1,11410:7246811,22217846:0,0,0 -g1,11410:7246811,22217846 -g1,11410:7246811,22217846 -g1,11410:6919131,22217846 -(1,11410:6919131,22217846:0,0,0 -) -g1,11410:7246811,22217846 -) -g1,11415:8195248,22217846 -g1,11415:8511394,22217846 -g1,11415:8827540,22217846 -g1,11415:9143686,22217846 -g1,11415:9459832,22217846 -g1,11415:9775978,22217846 -g1,11415:11672852,22217846 -g1,11415:14202018,22217846 -h1,11415:16731183,22217846:0,0,0 -k1,11415:31966991,22217846:15235808 -g1,11415:31966991,22217846 -) -(1,11415:7246811,22884024:24720180,404226,82312 -h1,11415:7246811,22884024:0,0,0 -g1,11415:8195248,22884024 -g1,11415:9775976,22884024 -g1,11415:10092122,22884024 -g1,11415:11672851,22884024 -g1,11415:11988997,22884024 -g1,11415:12305143,22884024 -g1,11415:12621289,22884024 -g1,11415:14202018,22884024 -g1,11415:14518164,22884024 -g1,11415:14834310,22884024 -g1,11415:15150456,22884024 -g1,11415:15466602,22884024 -h1,11415:16731185,22884024:0,0,0 -k1,11415:31966991,22884024:15235806 -g1,11415:31966991,22884024 -) -(1,11415:7246811,23550202:24720180,404226,82312 -h1,11415:7246811,23550202:0,0,0 -g1,11415:8195248,23550202 -g1,11415:9775976,23550202 -g1,11415:10092122,23550202 -g1,11415:11672851,23550202 -g1,11415:11988997,23550202 -g1,11415:12305143,23550202 -g1,11415:12621289,23550202 -g1,11415:14202018,23550202 -g1,11415:14518164,23550202 -g1,11415:14834310,23550202 -g1,11415:15150456,23550202 -g1,11415:15466602,23550202 -h1,11415:16731185,23550202:0,0,0 -k1,11415:31966991,23550202:15235806 -g1,11415:31966991,23550202 -) -(1,11415:7246811,24216380:24720180,404226,82312 -h1,11415:7246811,24216380:0,0,0 -g1,11415:8195248,24216380 -g1,11415:9775976,24216380 -g1,11415:10092122,24216380 -g1,11415:11672851,24216380 -g1,11415:11988997,24216380 -g1,11415:12305143,24216380 -g1,11415:12621289,24216380 -g1,11415:14202018,24216380 -g1,11415:14518164,24216380 -g1,11415:14834310,24216380 -g1,11415:15150456,24216380 -g1,11415:15466602,24216380 -h1,11415:16731185,24216380:0,0,0 -k1,11415:31966991,24216380:15235806 -g1,11415:31966991,24216380 -) -(1,11417:7246811,25537918:24720180,410518,101187 -(1,11416:7246811,25537918:0,0,0 -g1,11416:7246811,25537918 -g1,11416:7246811,25537918 -g1,11416:6919131,25537918 -(1,11416:6919131,25537918:0,0,0 -) -g1,11416:7246811,25537918 -) -k1,11417:7246811,25537918:0 -g1,11417:12621288,25537918 -h1,11417:16098890,25537918:0,0,0 -k1,11417:31966991,25537918:15868101 -g1,11417:31966991,25537918 -) -(1,11421:7246811,26269632:24720180,404226,76021 -(1,11419:7246811,26269632:0,0,0 -g1,11419:7246811,26269632 -g1,11419:7246811,26269632 -g1,11419:6919131,26269632 -(1,11419:6919131,26269632:0,0,0 -) -g1,11419:7246811,26269632 -) -g1,11421:8195248,26269632 -g1,11421:9459831,26269632 -h1,11421:11040559,26269632:0,0,0 -k1,11421:31966991,26269632:20926432 -g1,11421:31966991,26269632 -) -] -) -g1,11422:31966991,26345653 -g1,11422:7246811,26345653 -g1,11422:7246811,26345653 -g1,11422:31966991,26345653 -g1,11422:31966991,26345653 -) -h1,11422:7246811,26542261:0,0,0 -(1,11426:7246811,27835897:24720180,513147,126483 -h1,11425:7246811,27835897:983040,0,0 -k1,11425:9907724,27835897:270160 -k1,11425:11046235,27835897:270159 -k1,11425:13278543,27835897:270160 -k1,11425:15116324,27835897:270160 -k1,11425:15742343,27835897:270159 -k1,11425:17997589,27835897:270160 -k1,11425:19459194,27835897:270160 -k1,11425:21163282,27835897:270160 -k1,11425:23948057,27835897:270159 -k1,11425:24574077,27835897:270160 -k1,11425:28320922,27835897:270160 -k1,11425:30073505,27835897:270159 -k1,11425:31611131,27835897:270160 -k1,11425:31966991,27835897:0 -) -(1,11426:7246811,28677385:24720180,505283,7863 -k1,11426:31966991,28677385:22735094 -g1,11426:31966991,28677385 -) -v1,11428:7246811,29795712:0,393216,0 -(1,11459:7246811,40967889:24720180,11565393,196608 -g1,11459:7246811,40967889 -g1,11459:7246811,40967889 -g1,11459:7050203,40967889 -(1,11459:7050203,40967889:0,11565393,196608 -r1,11463:32163599,40967889:25113396,11762001,196608 -k1,11459:7050203,40967889:-25113396 -) -(1,11459:7050203,40967889:25113396,11565393,196608 -[1,11459:7246811,40967889:24720180,11368785,0 -(1,11430:7246811,30003330:24720180,404226,101187 -(1,11429:7246811,30003330:0,0,0 -g1,11429:7246811,30003330 -g1,11429:7246811,30003330 -g1,11429:6919131,30003330 -(1,11429:6919131,30003330:0,0,0 -) -g1,11429:7246811,30003330 -) -g1,11430:9459831,30003330 -g1,11430:10408269,30003330 -h1,11430:11988997,30003330:0,0,0 -k1,11430:31966991,30003330:19977994 -g1,11430:31966991,30003330 -) -(1,11431:7246811,30669508:24720180,404226,101187 -h1,11431:7246811,30669508:0,0,0 -g1,11431:11672850,30669508 -g1,11431:12621288,30669508 -g1,11431:15466600,30669508 -k1,11431:15466600,30669508:0 -h1,11431:19892639,30669508:0,0,0 -k1,11431:31966991,30669508:12074352 -g1,11431:31966991,30669508 -) -(1,11432:7246811,31335686:24720180,404226,101187 -h1,11432:7246811,31335686:0,0,0 -k1,11432:7246811,31335686:0 -h1,11432:11356704,31335686:0,0,0 -k1,11432:31966992,31335686:20610288 -g1,11432:31966992,31335686 -) -(1,11436:7246811,32067400:24720180,410518,76021 -(1,11434:7246811,32067400:0,0,0 -g1,11434:7246811,32067400 -g1,11434:7246811,32067400 -g1,11434:6919131,32067400 -(1,11434:6919131,32067400:0,0,0 -) -g1,11434:7246811,32067400 -) -g1,11436:8195248,32067400 -g1,11436:9459831,32067400 -g1,11436:11356705,32067400 -g1,11436:11672851,32067400 -g1,11436:11988997,32067400 -g1,11436:12305143,32067400 -g1,11436:12621289,32067400 -g1,11436:12937435,32067400 -g1,11436:13253581,32067400 -g1,11436:13569727,32067400 -g1,11436:16415038,32067400 -g1,11436:16731184,32067400 -g1,11436:17047330,32067400 -g1,11436:17363476,32067400 -g1,11436:17679622,32067400 -g1,11436:19576496,32067400 -g1,11436:19892642,32067400 -g1,11436:20208788,32067400 -g1,11436:20524934,32067400 -g1,11436:20841080,32067400 -g1,11436:21157226,32067400 -g1,11436:21473372,32067400 -g1,11436:21789518,32067400 -h1,11436:25583266,32067400:0,0,0 -k1,11436:31966991,32067400:6383725 -g1,11436:31966991,32067400 -) -(1,11438:7246811,33388938:24720180,404226,101187 -(1,11437:7246811,33388938:0,0,0 -g1,11437:7246811,33388938 -g1,11437:7246811,33388938 -g1,11437:6919131,33388938 -(1,11437:6919131,33388938:0,0,0 -) -g1,11437:7246811,33388938 -) -g1,11438:11356705,33388938 -g1,11438:12305143,33388938 -k1,11438:12305143,33388938:0 -h1,11438:17679619,33388938:0,0,0 -k1,11438:31966991,33388938:14287372 -g1,11438:31966991,33388938 -) -(1,11439:7246811,34055116:24720180,404226,101187 -h1,11439:7246811,34055116:0,0,0 -k1,11439:7246811,34055116:0 -h1,11439:13253579,34055116:0,0,0 -k1,11439:31966991,34055116:18713412 -g1,11439:31966991,34055116 -) -(1,11443:7246811,34786830:24720180,410518,76021 -(1,11441:7246811,34786830:0,0,0 -g1,11441:7246811,34786830 -g1,11441:7246811,34786830 -g1,11441:6919131,34786830 -(1,11441:6919131,34786830:0,0,0 -) -g1,11441:7246811,34786830 -) -g1,11443:8195248,34786830 -g1,11443:9459831,34786830 -g1,11443:12305142,34786830 -g1,11443:12621288,34786830 -g1,11443:12937434,34786830 -g1,11443:13253580,34786830 -g1,11443:13569726,34786830 -g1,11443:15466600,34786830 -g1,11443:15782746,34786830 -g1,11443:16098892,34786830 -g1,11443:16415038,34786830 -g1,11443:16731184,34786830 -g1,11443:17047330,34786830 -g1,11443:17363476,34786830 -g1,11443:17679622,34786830 -h1,11443:21473370,34786830:0,0,0 -k1,11443:31966991,34786830:10493621 -g1,11443:31966991,34786830 -) -(1,11445:7246811,36108368:24720180,404226,101187 -(1,11444:7246811,36108368:0,0,0 -g1,11444:7246811,36108368 -g1,11444:7246811,36108368 -g1,11444:6919131,36108368 -(1,11444:6919131,36108368:0,0,0 -) -g1,11444:7246811,36108368 -) -g1,11445:9459831,36108368 -g1,11445:10408268,36108368 -h1,11445:14202016,36108368:0,0,0 -k1,11445:31966992,36108368:17764976 -g1,11445:31966992,36108368 -) -(1,11452:7246811,36840082:24720180,404226,107478 -(1,11447:7246811,36840082:0,0,0 -g1,11447:7246811,36840082 -g1,11447:7246811,36840082 -g1,11447:6919131,36840082 -(1,11447:6919131,36840082:0,0,0 -) -g1,11447:7246811,36840082 -) -g1,11452:8195248,36840082 -g1,11452:8511394,36840082 -g1,11452:8827540,36840082 -g1,11452:9143686,36840082 -g1,11452:9459832,36840082 -g1,11452:9775978,36840082 -g1,11452:11672852,36840082 -g1,11452:14202018,36840082 -h1,11452:16731183,36840082:0,0,0 -k1,11452:31966991,36840082:15235808 -g1,11452:31966991,36840082 -) -(1,11452:7246811,37506260:24720180,404226,82312 -h1,11452:7246811,37506260:0,0,0 -g1,11452:8195248,37506260 -g1,11452:9775976,37506260 -g1,11452:10092122,37506260 -g1,11452:11672851,37506260 -g1,11452:11988997,37506260 -g1,11452:12305143,37506260 -g1,11452:12621289,37506260 -g1,11452:14202018,37506260 -g1,11452:14518164,37506260 -g1,11452:14834310,37506260 -g1,11452:15150456,37506260 -g1,11452:15466602,37506260 -h1,11452:16731185,37506260:0,0,0 -k1,11452:31966991,37506260:15235806 -g1,11452:31966991,37506260 -) -(1,11452:7246811,38172438:24720180,404226,82312 -h1,11452:7246811,38172438:0,0,0 -g1,11452:8195248,38172438 -g1,11452:9775976,38172438 -g1,11452:10092122,38172438 -g1,11452:11672851,38172438 -g1,11452:11988997,38172438 -g1,11452:12305143,38172438 -g1,11452:12621289,38172438 -g1,11452:14202018,38172438 -g1,11452:14518164,38172438 -g1,11452:14834310,38172438 -g1,11452:15150456,38172438 -g1,11452:15466602,38172438 -h1,11452:16731185,38172438:0,0,0 -k1,11452:31966991,38172438:15235806 -g1,11452:31966991,38172438 -) -(1,11452:7246811,38838616:24720180,404226,82312 -h1,11452:7246811,38838616:0,0,0 -g1,11452:8195248,38838616 -g1,11452:9775976,38838616 -g1,11452:10092122,38838616 -g1,11452:11672851,38838616 -g1,11452:11988997,38838616 -g1,11452:12305143,38838616 -g1,11452:12621289,38838616 -g1,11452:14202018,38838616 -g1,11452:14518164,38838616 -g1,11452:14834310,38838616 -g1,11452:15150456,38838616 -g1,11452:15466602,38838616 -h1,11452:16731185,38838616:0,0,0 -k1,11452:31966991,38838616:15235806 -g1,11452:31966991,38838616 -) -(1,11454:7246811,40160154:24720180,404226,101187 -(1,11453:7246811,40160154:0,0,0 -g1,11453:7246811,40160154 -g1,11453:7246811,40160154 -g1,11453:6919131,40160154 -(1,11453:6919131,40160154:0,0,0 -) -g1,11453:7246811,40160154 -) -k1,11454:7246811,40160154:0 -g1,11454:12937434,40160154 -h1,11454:17047328,40160154:0,0,0 -k1,11454:31966991,40160154:14919663 -g1,11454:31966991,40160154 -) -(1,11458:7246811,40891868:24720180,404226,76021 -(1,11456:7246811,40891868:0,0,0 -g1,11456:7246811,40891868 -g1,11456:7246811,40891868 -g1,11456:6919131,40891868 -(1,11456:6919131,40891868:0,0,0 -) -g1,11456:7246811,40891868 -) -g1,11458:8195248,40891868 -g1,11458:9459831,40891868 -h1,11458:11040559,40891868:0,0,0 -k1,11458:31966991,40891868:20926432 -g1,11458:31966991,40891868 -) -] -) -g1,11459:31966991,40967889 -g1,11459:7246811,40967889 -g1,11459:7246811,40967889 -g1,11459:31966991,40967889 -g1,11459:31966991,40967889 -) -h1,11459:7246811,41164497:0,0,0 -(1,11463:7246811,42458133:24720180,513147,126483 -h1,11462:7246811,42458133:983040,0,0 -k1,11462:9635002,42458133:208464 -k1,11462:11015905,42458133:208464 -k1,11462:14669597,42458133:208464 -k1,11462:15687431,42458133:208464 -k1,11462:19372580,42458133:208464 -k1,11462:22606842,42458133:208465 -k1,11462:23806866,42458133:208464 -k1,11462:24701492,42458133:208464 -k1,11462:27399013,42458133:208464 -k1,11462:28213030,42458133:208464 -k1,11462:29618181,42458133:208464 -k1,11463:31966991,42458133:0 -) -(1,11463:7246811,43299621:24720180,513147,134348 -k1,11462:8838572,43299621:250894 -k1,11462:11784961,43299621:250893 -k1,11462:14216238,43299621:250894 -k1,11462:16477776,43299621:250893 -k1,11462:17499373,43299621:250894 -k1,11462:19709793,43299621:250894 -k1,11462:20619978,43299621:250893 -k1,11462:21659270,43299621:250894 -k1,11462:26533728,43299621:250893 -k1,11462:28513462,43299621:250894 -k1,11462:30231051,43299621:250893 -k1,11462:30947906,43299621:250894 -k1,11462:31966991,43299621:0 -) -(1,11463:7246811,44141109:24720180,513147,134348 -k1,11462:10541821,44141109:222682 -k1,11462:11296000,44141109:222682 -k1,11462:12289385,44141109:222682 -k1,11462:14471593,44141109:222682 -k1,11462:15353567,44141109:222682 -k1,11462:15932109,44141109:222682 -k1,11462:18537680,44141109:222682 -k1,11462:20489202,44141109:222682 -k1,11462:23620372,44141109:222682 -k1,11462:24862139,44141109:222682 -k1,11462:27467710,44141109:222682 -k1,11462:29419232,44141109:222682 -k1,11462:30247467,44141109:222682 -k1,11462:30947906,44141109:222682 -k1,11462:31966991,44141109:0 -) -(1,11463:7246811,44982597:24720180,513147,134348 -k1,11462:9428756,44982597:222419 -k1,11462:10182672,44982597:222419 -k1,11462:11064384,44982597:222420 -k1,11462:12305888,44982597:222419 -k1,11462:14083476,44982597:222419 -k1,11462:14957323,44982597:222419 -k1,11462:15927509,44982597:222420 -k1,11462:19310729,44982597:222419 -k1,11462:20358246,44982597:222419 -k1,11462:23561242,44982597:222419 -k1,11462:26073490,44982597:222420 -k1,11462:26955201,44982597:222419 -k1,11462:29560509,44982597:222419 -k1,11462:31966991,44982597:0 -) -] -) -] -r1,11463:32583029,45706769:26214,39819674,0 -) -] -) -) -g1,11463:32583029,45116945 -) -] -(1,11463:32583029,45706769:0,0,0 -g1,11463:32583029,45706769 -) -) -] -(1,11463:6630773,47279633:25952256,0,0 -h1,11463:6630773,47279633:25952256,0,0 -) -] -(1,11463:4262630,4025873:0,0,0 -[1,11463:-473656,4025873:0,0,0 -(1,11463:-473656,-710413:0,0,0 -(1,11463:-473656,-710413:0,0,0 -g1,11463:-473656,-710413 -) -g1,11463:-473656,-710413 -) -] -) -] -!25930 -}215 -Input:1582:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1583:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1584:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1585:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1586:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1587:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1588:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1589:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1590:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!840 -{216 -[1,11531:4262630,47279633:28320399,43253760,0 -(1,11531:4262630,4025873:0,0,0 -[1,11531:-473656,4025873:0,0,0 -(1,11531:-473656,-710413:0,0,0 -(1,11531:-473656,-644877:0,0,0 -k1,11531:-473656,-644877:-65536 -) -(1,11531:-473656,4736287:0,0,0 -k1,11531:-473656,4736287:5209943 -) -g1,11531:-473656,-710413 -) -] -) -[1,11531:6630773,47279633:25952256,43253760,0 -[1,11531:6630773,4812305:25952256,786432,0 -(1,11531:6630773,4812305:25952256,513147,126483 -(1,11531:6630773,4812305:25952256,513147,126483 -g1,11531:3078558,4812305 -[1,11531:3078558,4812305:0,0,0 -(1,11531:3078558,2439708:0,1703936,0 -k1,11531:1358238,2439708:-1720320 -(1,11088:1358238,2439708:1720320,1703936,0 -(1,11088:1358238,2439708:1179648,16384,0 -r1,11531:2537886,2439708:1179648,16384,0 -) -g1,11088:3062174,2439708 -(1,11088:3062174,2439708:16384,1703936,0 -[1,11088:3062174,2439708:25952256,1703936,0 -(1,11088:3062174,1915420:25952256,1179648,0 -(1,11088:3062174,1915420:16384,1179648,0 -r1,11531:3078558,1915420:16384,1179648,0 -) -k1,11088:29014430,1915420:25935872 -g1,11088:29014430,1915420 -) -] -) -) -) -] -[1,11531:3078558,4812305:0,0,0 -(1,11531:3078558,2439708:0,1703936,0 -g1,11531:29030814,2439708 -g1,11531:36135244,2439708 -(1,11088:36135244,2439708:1720320,1703936,0 -(1,11088:36135244,2439708:16384,1703936,0 -[1,11088:36135244,2439708:25952256,1703936,0 -(1,11088:36135244,1915420:25952256,1179648,0 -(1,11088:36135244,1915420:16384,1179648,0 -r1,11531:36151628,1915420:16384,1179648,0 -) -k1,11088:62087500,1915420:25935872 -g1,11088:62087500,1915420 -) -] -) -g1,11088:36675916,2439708 -(1,11088:36675916,2439708:1179648,16384,0 -r1,11531:37855564,2439708:1179648,16384,0 -) -) -k1,11531:3078556,2439708:-34777008 -) -] -[1,11531:3078558,4812305:0,0,0 -(1,11531:3078558,49800853:0,16384,2228224 -k1,11531:1358238,49800853:-1720320 -(1,11088:1358238,49800853:1720320,16384,2228224 -(1,11088:1358238,49800853:1179648,16384,0 -r1,11531:2537886,49800853:1179648,16384,0 -) -g1,11088:3062174,49800853 -(1,11088:3062174,52029077:16384,1703936,0 -[1,11088:3062174,52029077:25952256,1703936,0 -(1,11088:3062174,51504789:25952256,1179648,0 -(1,11088:3062174,51504789:16384,1179648,0 -r1,11531:3078558,51504789:16384,1179648,0 -) -k1,11088:29014430,51504789:25935872 -g1,11088:29014430,51504789 -) -] -) -) -) -] -[1,11531:3078558,4812305:0,0,0 -(1,11531:3078558,49800853:0,16384,2228224 -g1,11531:29030814,49800853 -g1,11531:36135244,49800853 -(1,11088:36135244,49800853:1720320,16384,2228224 -(1,11088:36135244,52029077:16384,1703936,0 -[1,11088:36135244,52029077:25952256,1703936,0 -(1,11088:36135244,51504789:25952256,1179648,0 -(1,11088:36135244,51504789:16384,1179648,0 -r1,11531:36151628,51504789:16384,1179648,0 -) -k1,11088:62087500,51504789:25935872 -g1,11088:62087500,51504789 -) -] -) -g1,11088:36675916,49800853 -(1,11088:36675916,49800853:1179648,16384,0 -r1,11531:37855564,49800853:1179648,16384,0 -) -) -k1,11531:3078556,49800853:-34777008 -) -] -g1,11531:6630773,4812305 -g1,11531:6630773,4812305 -g1,11531:11156689,4812305 -g1,11531:12279976,4812305 -g1,11531:16431026,4812305 -k1,11531:31387652,4812305:14956626 -) -) -] -[1,11531:6630773,45706769:25952256,40108032,0 -(1,11531:6630773,45706769:25952256,40108032,0 -(1,11531:6630773,45706769:0,0,0 -g1,11531:6630773,45706769 -) -[1,11531:6630773,45706769:25952256,40108032,0 -v1,11463:6630773,6254097:0,393216,0 -(1,11463:6630773,9496179:25952256,3635298,616038 -g1,11463:6630773,9496179 -(1,11463:6630773,9496179:25952256,3635298,616038 -(1,11463:6630773,10112217:25952256,4251336,0 -[1,11463:6630773,10112217:25952256,4251336,0 -(1,11463:6630773,10086003:25952256,4225122,0 -r1,11531:6656987,10086003:26214,4225122,0 -[1,11463:6656987,10086003:25899828,4225122,0 -(1,11463:6656987,9496179:25899828,3045474,0 -[1,11463:7246811,9496179:24720180,3045474,0 -(1,11463:7246811,6963852:24720180,513147,102891 -k1,11462:8945701,6963852:264962 -k1,11462:9668760,6963852:264962 -k1,11462:12114105,6963852:264962 -k1,11462:14606636,6963852:264962 -k1,11462:18457728,6963852:264962 -k1,11462:20155307,6963852:264962 -k1,11462:20835047,6963852:264897 -k1,11462:23589066,6963852:264962 -k1,11462:24540190,6963852:264962 -k1,11462:25714136,6963852:264962 -k1,11462:26665260,6963852:264962 -k1,11462:27143148,6963852:264896 -k1,11462:28883325,6963852:264962 -k1,11462:30658237,6963852:264962 -k1,11462:31966991,6963852:0 -) -(1,11463:7246811,7805340:24720180,513147,134348 -k1,11462:8122675,7805340:224436 -k1,11462:9943567,7805340:224435 -k1,11462:11407944,7805340:224436 -k1,11462:14616889,7805340:224435 -k1,11462:15620548,7805340:224436 -k1,11462:18710218,7805340:224436 -k1,11462:19550691,7805340:224435 -k1,11462:20794212,7805340:224436 -k1,11462:24226635,7805340:224436 -k1,11462:26436156,7805340:224435 -k1,11462:29645102,7805340:224436 -k1,11462:30648760,7805340:224435 -k1,11462:31350953,7805340:224436 -k1,11462:31966991,7805340:0 -) -(1,11463:7246811,8646828:24720180,513147,126483 -k1,11462:9400652,8646828:266404 -k1,11462:11489612,8646828:266404 -k1,11462:12775100,8646828:266403 -k1,11462:15801225,8646828:266404 -k1,11462:16726921,8646828:266404 -k1,11462:18685465,8646828:266404 -k1,11462:21821035,8646828:266404 -k1,11462:23521366,8646828:266403 -k1,11462:24958243,8646828:266404 -k1,11462:26357109,8646828:266404 -k1,11462:28153779,8646828:266404 -k1,11462:29071610,8646828:266403 -k1,11462:30153282,8646828:266404 -k1,11462:30775546,8646828:266404 -k1,11462:31966991,8646828:0 -) -(1,11463:7246811,9488316:24720180,505283,7863 -g1,11462:9648050,9488316 -g1,11462:10498707,9488316 -g1,11462:11717021,9488316 -g1,11462:13072960,9488316 -g1,11462:14785415,9488316 -g1,11462:15600682,9488316 -g1,11462:17003152,9488316 -k1,11463:31966991,9488316:13630181 -g1,11463:31966991,9488316 -) -] -) -] -r1,11531:32583029,10086003:26214,4225122,0 -) -] -) -) -g1,11463:32583029,9496179 -) -h1,11463:6630773,10112217:0,0,0 -(1,11466:6630773,11477993:25952256,513147,126483 -h1,11465:6630773,11477993:983040,0,0 -k1,11465:9656295,11477993:210095 -k1,11465:10857950,11477993:210095 -k1,11465:14295038,11477993:210095 -k1,11465:17714432,11477993:210096 -k1,11465:21441189,11477993:210095 -k1,11465:24286487,11477993:210095 -k1,11465:25515667,11477993:210095 -k1,11465:29762780,11477993:210095 -(1,11465:29762780,11477993:0,452978,115847 -r1,11531:32583029,11477993:2820249,568825,115847 -k1,11465:29762780,11477993:-2820249 -) -(1,11465:29762780,11477993:2820249,452978,115847 -k1,11465:29762780,11477993:3277 -h1,11465:32579752,11477993:0,411205,112570 -) -k1,11465:32583029,11477993:0 -) -(1,11466:6630773,12319481:25952256,513147,115847 -k1,11465:8113934,12319481:291716 -(1,11465:8113934,12319481:0,459977,115847 -r1,11531:12341030,12319481:4227096,575824,115847 -k1,11465:8113934,12319481:-4227096 -) -(1,11465:8113934,12319481:4227096,459977,115847 -k1,11465:8113934,12319481:3277 -h1,11465:12337753,12319481:0,411205,112570 -) -k1,11465:12806416,12319481:291716 -k1,11465:14369531,12319481:291717 -k1,11465:15320539,12319481:291716 -k1,11465:17251310,12319481:291716 -k1,11465:18074523,12319481:291716 -k1,11465:19650746,12319481:291717 -k1,11465:20558500,12319481:291716 -k1,11465:21206076,12319481:291716 -k1,11465:22597486,12319481:291716 -k1,11465:23540631,12319481:291717 -(1,11465:23540631,12319481:0,452978,115847 -r1,11531:26360880,12319481:2820249,568825,115847 -k1,11465:23540631,12319481:-2820249 -) -(1,11465:23540631,12319481:2820249,452978,115847 -k1,11465:23540631,12319481:3277 -h1,11465:26357603,12319481:0,411205,112570 -) -k1,11465:26826266,12319481:291716 -k1,11465:29741388,12319481:291716 -k1,11465:32583029,12319481:0 -) -(1,11466:6630773,13160969:25952256,513147,134348 -k1,11465:10638300,13160969:279839 -k1,11465:12656153,13160969:279838 -k1,11465:15317570,13160969:279839 -k1,11465:16701691,13160969:279839 -k1,11465:17729296,13160969:279839 -k1,11465:19522360,13160969:279838 -k1,11465:20418237,13160969:279839 -k1,11465:21717161,13160969:279839 -k1,11465:25079158,13160969:279839 -k1,11465:26018288,13160969:279838 -k1,11465:29959623,13160969:279839 -k1,11465:32583029,13160969:0 -) -(1,11466:6630773,14002457:25952256,505283,7863 -k1,11466:32583028,14002457:22936944 -g1,11466:32583028,14002457 -) -v1,11468:6630773,15192923:0,393216,0 -(1,11481:6630773,20135613:25952256,5335906,196608 -g1,11481:6630773,20135613 -g1,11481:6630773,20135613 -g1,11481:6434165,20135613 -(1,11481:6434165,20135613:0,5335906,196608 -r1,11531:32779637,20135613:26345472,5532514,196608 -k1,11481:6434165,20135613:-26345472 -) -(1,11481:6434165,20135613:26345472,5335906,196608 -[1,11481:6630773,20135613:25952256,5139298,0 -(1,11470:6630773,15400541:25952256,404226,82312 -(1,11469:6630773,15400541:0,0,0 -g1,11469:6630773,15400541 -g1,11469:6630773,15400541 -g1,11469:6303093,15400541 -(1,11469:6303093,15400541:0,0,0 -) -g1,11469:6630773,15400541 -) -k1,11470:6630773,15400541:0 -g1,11470:9476085,15400541 -g1,11470:10108377,15400541 -g1,11470:11689107,15400541 -g1,11470:12321399,15400541 -g1,11470:12953691,15400541 -g1,11470:14534421,15400541 -g1,11470:15166713,15400541 -g1,11470:15799005,15400541 -g1,11470:16431297,15400541 -g1,11470:17063589,15400541 -g1,11470:18012027,15400541 -g1,11470:18644319,15400541 -g1,11470:19276611,15400541 -g1,11470:22438068,15400541 -g1,11470:23070360,15400541 -h1,11470:24018797,15400541:0,0,0 -k1,11470:32583029,15400541:8564232 -g1,11470:32583029,15400541 -) -(1,11480:6630773,16132255:25952256,404226,9436 -(1,11472:6630773,16132255:0,0,0 -g1,11472:6630773,16132255 -g1,11472:6630773,16132255 -g1,11472:6303093,16132255 -(1,11472:6303093,16132255:0,0,0 -) -g1,11472:6630773,16132255 -) -g1,11480:7579210,16132255 -g1,11480:8211502,16132255 -g1,11480:8843794,16132255 -g1,11480:11372960,16132255 -g1,11480:12005252,16132255 -g1,11480:12637544,16132255 -h1,11480:12953690,16132255:0,0,0 -k1,11480:32583030,16132255:19629340 -g1,11480:32583030,16132255 -) -(1,11480:6630773,16798433:25952256,404226,6290 -h1,11480:6630773,16798433:0,0,0 -g1,11480:7579210,16798433 -g1,11480:7895356,16798433 -g1,11480:8211502,16798433 -g1,11480:8527648,16798433 -g1,11480:8843794,16798433 -g1,11480:9159940,16798433 -g1,11480:9476086,16798433 -g1,11480:10108378,16798433 -g1,11480:10424524,16798433 -g1,11480:10740670,16798433 -g1,11480:11056816,16798433 -g1,11480:11372962,16798433 -g1,11480:12005254,16798433 -g1,11480:12321400,16798433 -g1,11480:12637546,16798433 -g1,11480:12953692,16798433 -g1,11480:13269838,16798433 -g1,11480:13902130,16798433 -h1,11480:14218276,16798433:0,0,0 -k1,11480:32583028,16798433:18364752 -g1,11480:32583028,16798433 -) -(1,11480:6630773,17464611:25952256,404226,6290 -h1,11480:6630773,17464611:0,0,0 -g1,11480:7579210,17464611 -g1,11480:7895356,17464611 -g1,11480:8211502,17464611 -g1,11480:10108377,17464611 -g1,11480:12005252,17464611 -g1,11480:13902127,17464611 -k1,11480:13902127,17464611:0 -h1,11480:15482856,17464611:0,0,0 -k1,11480:32583028,17464611:17100172 -g1,11480:32583028,17464611 -) -(1,11480:6630773,18130789:25952256,404226,9436 -h1,11480:6630773,18130789:0,0,0 -g1,11480:7579210,18130789 -g1,11480:8211502,18130789 -g1,11480:8527648,18130789 -g1,11480:8843794,18130789 -g1,11480:9159940,18130789 -g1,11480:9476086,18130789 -g1,11480:10108378,18130789 -g1,11480:10424524,18130789 -g1,11480:10740670,18130789 -g1,11480:11056816,18130789 -g1,11480:11372962,18130789 -g1,11480:12005254,18130789 -g1,11480:12321400,18130789 -g1,11480:12637546,18130789 -g1,11480:12953692,18130789 -g1,11480:13269838,18130789 -g1,11480:13902130,18130789 -h1,11480:14218276,18130789:0,0,0 -k1,11480:32583028,18130789:18364752 -g1,11480:32583028,18130789 -) -(1,11480:6630773,18796967:25952256,388497,9436 -h1,11480:6630773,18796967:0,0,0 -g1,11480:7579210,18796967 -g1,11480:8211502,18796967 -g1,11480:8527648,18796967 -g1,11480:8843794,18796967 -g1,11480:9159940,18796967 -g1,11480:9476086,18796967 -g1,11480:10108378,18796967 -g1,11480:10424524,18796967 -g1,11480:10740670,18796967 -g1,11480:11056816,18796967 -g1,11480:11372962,18796967 -g1,11480:12005254,18796967 -g1,11480:12321400,18796967 -g1,11480:12637546,18796967 -g1,11480:12953692,18796967 -g1,11480:13269838,18796967 -g1,11480:13902130,18796967 -h1,11480:14218276,18796967:0,0,0 -k1,11480:32583028,18796967:18364752 -g1,11480:32583028,18796967 -) -(1,11480:6630773,19463145:25952256,404226,9436 -h1,11480:6630773,19463145:0,0,0 -g1,11480:7579210,19463145 -g1,11480:8211502,19463145 -g1,11480:8527648,19463145 -g1,11480:8843794,19463145 -g1,11480:9159940,19463145 -g1,11480:9476086,19463145 -g1,11480:10108378,19463145 -g1,11480:10424524,19463145 -g1,11480:10740670,19463145 -g1,11480:11056816,19463145 -g1,11480:11372962,19463145 -g1,11480:12005254,19463145 -g1,11480:12321400,19463145 -g1,11480:12637546,19463145 -g1,11480:12953692,19463145 -g1,11480:13269838,19463145 -g1,11480:13902130,19463145 -h1,11480:14218276,19463145:0,0,0 -k1,11480:32583028,19463145:18364752 -g1,11480:32583028,19463145 -) -(1,11480:6630773,20129323:25952256,404226,6290 -h1,11480:6630773,20129323:0,0,0 -g1,11480:7579210,20129323 -g1,11480:8211502,20129323 -g1,11480:9476085,20129323 -g1,11480:11056814,20129323 -g1,11480:11689106,20129323 -g1,11480:13269835,20129323 -h1,11480:14534418,20129323:0,0,0 -k1,11480:32583030,20129323:18048612 -g1,11480:32583030,20129323 -) -] -) -g1,11481:32583029,20135613 -g1,11481:6630773,20135613 -g1,11481:6630773,20135613 -g1,11481:32583029,20135613 -g1,11481:32583029,20135613 -) -h1,11481:6630773,20332221:0,0,0 -v1,11485:6630773,22222285:0,393216,0 -(1,11486:6630773,24381832:25952256,2552763,616038 -g1,11486:6630773,24381832 -(1,11486:6630773,24381832:25952256,2552763,616038 -(1,11486:6630773,24997870:25952256,3168801,0 -[1,11486:6630773,24997870:25952256,3168801,0 -(1,11486:6630773,24971656:25952256,3116373,0 -r1,11531:6656987,24971656:26214,3116373,0 -[1,11486:6656987,24971656:25899828,3116373,0 -(1,11486:6656987,24381832:25899828,1936725,0 -[1,11486:7246811,24381832:24720180,1936725,0 -(1,11486:7246811,23532481:24720180,1087374,126483 -k1,11485:8643228,23532481:186714 -k1,11485:10463756,23532481:186715 -k1,11485:11181967,23532481:186714 -k1,11485:12387766,23532481:186714 -k1,11485:15334202,23532481:186715 -k1,11485:15986877,23532481:186714 -k1,11485:17344064,23532481:186714 -k1,11485:19829126,23532481:186714 -(1,11485:19829126,23532481:0,452978,115847 -r1,11531:22649375,23532481:2820249,568825,115847 -k1,11485:19829126,23532481:-2820249 -) -(1,11485:19829126,23532481:2820249,452978,115847 -k1,11485:19829126,23532481:3277 -h1,11485:22646098,23532481:0,411205,112570 -) -k1,11485:22836090,23532481:186715 -k1,11485:23784332,23532481:186714 -(1,11485:23784332,23532481:0,459977,115847 -r1,11531:28011428,23532481:4227096,575824,115847 -k1,11485:23784332,23532481:-4227096 -) -(1,11485:23784332,23532481:4227096,459977,115847 -k1,11485:23784332,23532481:3277 -h1,11485:28008151,23532481:0,411205,112570 -) -k1,11485:28198142,23532481:186714 -k1,11485:29000895,23532481:186715 -k1,11485:30206694,23532481:186714 -k1,11486:31966991,23532481:0 -) -(1,11486:7246811,24373969:24720180,505283,7863 -g1,11485:9085095,24373969 -k1,11486:31966992,24373969:20699548 -g1,11486:31966992,24373969 -) -] -) -] -r1,11531:32583029,24971656:26214,3116373,0 -) -] -) -) -g1,11486:32583029,24381832 -) -h1,11486:6630773,24997870:0,0,0 -(1,11489:6630773,26363646:25952256,513147,102891 -h1,11488:6630773,26363646:983040,0,0 -k1,11488:9635817,26363646:247289 -k1,11488:11272469,26363646:247289 -k1,11488:13396054,26363646:247289 -k1,11488:16356534,26363646:247289 -k1,11488:17708105,26363646:247289 -k1,11488:18703160,26363646:247289 -k1,11488:21348411,26363646:247289 -k1,11488:23903878,26363646:247289 -k1,11488:24834052,26363646:247289 -k1,11488:27814848,26363646:247289 -k1,11488:29663182,26363646:247289 -k1,11488:30929556,26363646:247289 -k1,11488:32583029,26363646:0 -) -(1,11489:6630773,27205134:25952256,513147,102891 -k1,11488:9342700,27205134:226146 -k1,11488:10228138,27205134:226146 -k1,11488:11988482,27205134:226146 -k1,11488:12900789,27205134:226145 -k1,11488:14146020,27205134:226146 -k1,11488:15761529,27205134:226146 -k1,11488:18244735,27205134:226146 -k1,11488:21184072,27205134:226146 -k1,11488:22069510,27205134:226146 -k1,11488:24437373,27205134:226146 -k1,11488:25767800,27205134:226145 -k1,11488:26741712,27205134:226146 -k1,11488:29365820,27205134:226146 -k1,11488:31900144,27205134:226146 -k1,11488:32583029,27205134:0 -) -(1,11489:6630773,28046622:25952256,513147,95026 -g1,11488:8153829,28046622 -g1,11488:9954103,28046622 -g1,11488:11172417,28046622 -g1,11488:13025119,28046622 -g1,11488:15710129,28046622 -g1,11488:16568650,28046622 -g1,11488:19721587,28046622 -g1,11488:20606978,28046622 -g1,11488:22340405,28046622 -g1,11488:23558719,28046622 -g1,11488:25569363,28046622 -k1,11489:32583029,28046622:5531897 -g1,11489:32583029,28046622 -) -v1,11491:6630773,29237088:0,393216,0 -(1,11504:6630773,34179778:25952256,5335906,196608 -g1,11504:6630773,34179778 -g1,11504:6630773,34179778 -g1,11504:6434165,34179778 -(1,11504:6434165,34179778:0,5335906,196608 -r1,11531:32779637,34179778:26345472,5532514,196608 -k1,11504:6434165,34179778:-26345472 -) -(1,11504:6434165,34179778:26345472,5335906,196608 -[1,11504:6630773,34179778:25952256,5139298,0 -(1,11493:6630773,29444706:25952256,404226,82312 -(1,11492:6630773,29444706:0,0,0 -g1,11492:6630773,29444706 -g1,11492:6630773,29444706 -g1,11492:6303093,29444706 -(1,11492:6303093,29444706:0,0,0 -) -g1,11492:6630773,29444706 -) -k1,11493:6630773,29444706:0 -g1,11493:9476085,29444706 -g1,11493:10108377,29444706 -g1,11493:11689107,29444706 -g1,11493:12321399,29444706 -g1,11493:12953691,29444706 -g1,11493:14534421,29444706 -g1,11493:15166713,29444706 -g1,11493:15799005,29444706 -g1,11493:18960463,29444706 -g1,11493:19908901,29444706 -g1,11493:20857339,29444706 -g1,11493:21805777,29444706 -h1,11493:22754214,29444706:0,0,0 -k1,11493:32583029,29444706:9828815 -g1,11493:32583029,29444706 -) -(1,11503:6630773,30176420:25952256,404226,9436 -(1,11495:6630773,30176420:0,0,0 -g1,11495:6630773,30176420 -g1,11495:6630773,30176420 -g1,11495:6303093,30176420 -(1,11495:6303093,30176420:0,0,0 -) -g1,11495:6630773,30176420 -) -g1,11503:7579210,30176420 -g1,11503:8211502,30176420 -g1,11503:8843794,30176420 -g1,11503:11372960,30176420 -g1,11503:12005252,30176420 -g1,11503:12637544,30176420 -h1,11503:12953690,30176420:0,0,0 -k1,11503:32583030,30176420:19629340 -g1,11503:32583030,30176420 -) -(1,11503:6630773,30842598:25952256,404226,6290 -h1,11503:6630773,30842598:0,0,0 -g1,11503:7579210,30842598 -g1,11503:7895356,30842598 -g1,11503:8211502,30842598 -g1,11503:8527648,30842598 -g1,11503:8843794,30842598 -g1,11503:9159940,30842598 -g1,11503:9476086,30842598 -g1,11503:10108378,30842598 -g1,11503:10424524,30842598 -g1,11503:10740670,30842598 -g1,11503:11056816,30842598 -g1,11503:11372962,30842598 -g1,11503:12005254,30842598 -h1,11503:12321400,30842598:0,0,0 -k1,11503:32583028,30842598:20261628 -g1,11503:32583028,30842598 -) -(1,11503:6630773,31508776:25952256,404226,6290 -h1,11503:6630773,31508776:0,0,0 -g1,11503:7579210,31508776 -g1,11503:7895356,31508776 -g1,11503:8211502,31508776 -g1,11503:10108377,31508776 -g1,11503:12005252,31508776 -k1,11503:12005252,31508776:0 -h1,11503:13902126,31508776:0,0,0 -k1,11503:32583030,31508776:18680904 -g1,11503:32583030,31508776 -) -(1,11503:6630773,32174954:25952256,404226,76021 -h1,11503:6630773,32174954:0,0,0 -g1,11503:7579210,32174954 -g1,11503:8211502,32174954 -g1,11503:8527648,32174954 -g1,11503:8843794,32174954 -g1,11503:9159940,32174954 -g1,11503:9476086,32174954 -g1,11503:10108378,32174954 -g1,11503:10424524,32174954 -g1,11503:10740670,32174954 -g1,11503:11056816,32174954 -g1,11503:11372962,32174954 -g1,11503:12005254,32174954 -g1,11503:13585983,32174954 -k1,11503:13585983,32174954:0 -h1,11503:14850566,32174954:0,0,0 -k1,11503:32583030,32174954:17732464 -g1,11503:32583030,32174954 -) -(1,11503:6630773,32841132:25952256,404226,76021 -h1,11503:6630773,32841132:0,0,0 -g1,11503:7579210,32841132 -g1,11503:8211502,32841132 -g1,11503:8527648,32841132 -g1,11503:8843794,32841132 -g1,11503:9159940,32841132 -g1,11503:9476086,32841132 -g1,11503:10108378,32841132 -g1,11503:10424524,32841132 -g1,11503:10740670,32841132 -g1,11503:11056816,32841132 -g1,11503:11372962,32841132 -g1,11503:12005254,32841132 -g1,11503:13585983,32841132 -k1,11503:13585983,32841132:0 -h1,11503:14850566,32841132:0,0,0 -k1,11503:32583030,32841132:17732464 -g1,11503:32583030,32841132 -) -(1,11503:6630773,33507310:25952256,404226,76021 -h1,11503:6630773,33507310:0,0,0 -g1,11503:7579210,33507310 -g1,11503:8211502,33507310 -g1,11503:8527648,33507310 -g1,11503:8843794,33507310 -g1,11503:9159940,33507310 -g1,11503:9476086,33507310 -g1,11503:10108378,33507310 -g1,11503:10424524,33507310 -g1,11503:10740670,33507310 -g1,11503:11056816,33507310 -g1,11503:11372962,33507310 -g1,11503:12005254,33507310 -g1,11503:13585983,33507310 -k1,11503:13585983,33507310:0 -h1,11503:14850566,33507310:0,0,0 -k1,11503:32583030,33507310:17732464 -g1,11503:32583030,33507310 -) -(1,11503:6630773,34173488:25952256,404226,6290 -h1,11503:6630773,34173488:0,0,0 -g1,11503:7579210,34173488 -g1,11503:8211502,34173488 -g1,11503:9476085,34173488 -g1,11503:11056814,34173488 -g1,11503:11689106,34173488 -g1,11503:13269835,34173488 -h1,11503:14534418,34173488:0,0,0 -k1,11503:32583030,34173488:18048612 -g1,11503:32583030,34173488 -) -] -) -g1,11504:32583029,34179778 -g1,11504:6630773,34179778 -g1,11504:6630773,34179778 -g1,11504:32583029,34179778 -g1,11504:32583029,34179778 -) -h1,11504:6630773,34376386:0,0,0 -(1,11508:6630773,35742162:25952256,513147,102891 -h1,11507:6630773,35742162:983040,0,0 -g1,11507:9783710,35742162 -g1,11507:11449635,35742162 -g1,11507:13660819,35742162 -g1,11507:14215908,35742162 -g1,11507:15408663,35742162 -g1,11507:16267184,35742162 -g1,11507:17790240,35742162 -g1,11507:18675631,35742162 -g1,11507:19230720,35742162 -g1,11507:22114959,35742162 -g1,11507:22997073,35742162 -g1,11507:23552162,35742162 -g1,11507:24744917,35742162 -g1,11507:25603438,35742162 -k1,11508:32583029,35742162:4497743 -g1,11508:32583029,35742162 -) -v1,11510:6630773,36932628:0,393216,0 -(1,11523:6630773,41875318:25952256,5335906,196608 -g1,11523:6630773,41875318 -g1,11523:6630773,41875318 -g1,11523:6434165,41875318 -(1,11523:6434165,41875318:0,5335906,196608 -r1,11531:32779637,41875318:26345472,5532514,196608 -k1,11523:6434165,41875318:-26345472 -) -(1,11523:6434165,41875318:26345472,5335906,196608 -[1,11523:6630773,41875318:25952256,5139298,0 -(1,11512:6630773,37140246:25952256,404226,82312 -(1,11511:6630773,37140246:0,0,0 -g1,11511:6630773,37140246 -g1,11511:6630773,37140246 -g1,11511:6303093,37140246 -(1,11511:6303093,37140246:0,0,0 -) -g1,11511:6630773,37140246 -) -k1,11512:6630773,37140246:0 -g1,11512:9476085,37140246 -g1,11512:10108377,37140246 -g1,11512:11689107,37140246 -g1,11512:12321399,37140246 -g1,11512:12953691,37140246 -g1,11512:14534421,37140246 -g1,11512:15166713,37140246 -g1,11512:15799005,37140246 -g1,11512:18960463,37140246 -g1,11512:20541193,37140246 -g1,11512:22121923,37140246 -g1,11512:26547964,37140246 -h1,11512:30974004,37140246:0,0,0 -k1,11512:32583029,37140246:1609025 -g1,11512:32583029,37140246 -) -(1,11522:6630773,37871960:25952256,404226,9436 -(1,11514:6630773,37871960:0,0,0 -g1,11514:6630773,37871960 -g1,11514:6630773,37871960 -g1,11514:6303093,37871960 -(1,11514:6303093,37871960:0,0,0 -) -g1,11514:6630773,37871960 -) -g1,11522:7579210,37871960 -g1,11522:8211502,37871960 -g1,11522:8843794,37871960 -g1,11522:11372960,37871960 -g1,11522:12005252,37871960 -g1,11522:12637544,37871960 -h1,11522:12953690,37871960:0,0,0 -k1,11522:32583030,37871960:19629340 -g1,11522:32583030,37871960 -) -(1,11522:6630773,38538138:25952256,404226,6290 -h1,11522:6630773,38538138:0,0,0 -g1,11522:7579210,38538138 -g1,11522:7895356,38538138 -g1,11522:8211502,38538138 -g1,11522:8527648,38538138 -g1,11522:8843794,38538138 -g1,11522:9159940,38538138 -g1,11522:9476086,38538138 -g1,11522:10108378,38538138 -g1,11522:10424524,38538138 -g1,11522:10740670,38538138 -g1,11522:11056816,38538138 -g1,11522:11372962,38538138 -g1,11522:12005254,38538138 -h1,11522:12321400,38538138:0,0,0 -k1,11522:32583028,38538138:20261628 -g1,11522:32583028,38538138 -) -(1,11522:6630773,39204316:25952256,404226,6290 -h1,11522:6630773,39204316:0,0,0 -g1,11522:7579210,39204316 -g1,11522:7895356,39204316 -g1,11522:8211502,39204316 -g1,11522:10108377,39204316 -g1,11522:12005252,39204316 -k1,11522:12005252,39204316:0 -h1,11522:13902126,39204316:0,0,0 -k1,11522:32583030,39204316:18680904 -g1,11522:32583030,39204316 -) -(1,11522:6630773,39870494:25952256,404226,76021 -h1,11522:6630773,39870494:0,0,0 -g1,11522:7579210,39870494 -g1,11522:8211502,39870494 -g1,11522:8527648,39870494 -g1,11522:8843794,39870494 -g1,11522:9159940,39870494 -g1,11522:9476086,39870494 -g1,11522:10108378,39870494 -g1,11522:10424524,39870494 -g1,11522:10740670,39870494 -g1,11522:11056816,39870494 -g1,11522:11372962,39870494 -g1,11522:12005254,39870494 -g1,11522:13585983,39870494 -k1,11522:13585983,39870494:0 -h1,11522:14850566,39870494:0,0,0 -k1,11522:32583030,39870494:17732464 -g1,11522:32583030,39870494 -) -(1,11522:6630773,40536672:25952256,404226,76021 -h1,11522:6630773,40536672:0,0,0 -g1,11522:7579210,40536672 -g1,11522:8211502,40536672 -g1,11522:8527648,40536672 -g1,11522:8843794,40536672 -g1,11522:9159940,40536672 -g1,11522:9476086,40536672 -g1,11522:10108378,40536672 -g1,11522:10424524,40536672 -g1,11522:10740670,40536672 -g1,11522:11056816,40536672 -g1,11522:11372962,40536672 -g1,11522:12005254,40536672 -g1,11522:13585983,40536672 -k1,11522:13585983,40536672:0 -h1,11522:14850566,40536672:0,0,0 -k1,11522:32583030,40536672:17732464 -g1,11522:32583030,40536672 -) -(1,11522:6630773,41202850:25952256,404226,76021 -h1,11522:6630773,41202850:0,0,0 -g1,11522:7579210,41202850 -g1,11522:8211502,41202850 -g1,11522:8527648,41202850 -g1,11522:8843794,41202850 -g1,11522:9159940,41202850 -g1,11522:9476086,41202850 -g1,11522:10108378,41202850 -g1,11522:10424524,41202850 -g1,11522:10740670,41202850 -g1,11522:11056816,41202850 -g1,11522:11372962,41202850 -g1,11522:12005254,41202850 -g1,11522:13585983,41202850 -k1,11522:13585983,41202850:0 -h1,11522:14850566,41202850:0,0,0 -k1,11522:32583030,41202850:17732464 -g1,11522:32583030,41202850 -) -(1,11522:6630773,41869028:25952256,404226,6290 -h1,11522:6630773,41869028:0,0,0 -g1,11522:7579210,41869028 -g1,11522:8211502,41869028 -g1,11522:9476085,41869028 -g1,11522:11056814,41869028 -g1,11522:11689106,41869028 -g1,11522:13269835,41869028 -h1,11522:14534418,41869028:0,0,0 -k1,11522:32583030,41869028:18048612 -g1,11522:32583030,41869028 -) -] -) -g1,11523:32583029,41875318 -g1,11523:6630773,41875318 -g1,11523:6630773,41875318 -g1,11523:32583029,41875318 -g1,11523:32583029,41875318 -) -h1,11523:6630773,42071926:0,0,0 -] -(1,11531:32583029,45706769:0,0,0 -g1,11531:32583029,45706769 -) -) -] -(1,11531:6630773,47279633:25952256,0,0 -h1,11531:6630773,47279633:25952256,0,0 -) -] -(1,11531:4262630,4025873:0,0,0 -[1,11531:-473656,4025873:0,0,0 -(1,11531:-473656,-710413:0,0,0 -(1,11531:-473656,-710413:0,0,0 -g1,11531:-473656,-710413 -) -g1,11531:-473656,-710413 -) -] -) -] -!26176 -}216 -Input:1591:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1592:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1593:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1594:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1595:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1596:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!564 -{217 -[1,11599:4262630,47279633:28320399,43253760,0 -(1,11599:4262630,4025873:0,0,0 -[1,11599:-473656,4025873:0,0,0 -(1,11599:-473656,-710413:0,0,0 -(1,11599:-473656,-644877:0,0,0 -k1,11599:-473656,-644877:-65536 -) -(1,11599:-473656,4736287:0,0,0 -k1,11599:-473656,4736287:5209943 -) -g1,11599:-473656,-710413 -) -] -) -[1,11599:6630773,47279633:25952256,43253760,0 -[1,11599:6630773,4812305:25952256,786432,0 -(1,11599:6630773,4812305:25952256,513147,134348 -(1,11599:6630773,4812305:25952256,513147,134348 -g1,11599:3078558,4812305 -[1,11599:3078558,4812305:0,0,0 -(1,11599:3078558,2439708:0,1703936,0 -k1,11599:1358238,2439708:-1720320 -(1,11088:1358238,2439708:1720320,1703936,0 -(1,11088:1358238,2439708:1179648,16384,0 -r1,11599:2537886,2439708:1179648,16384,0 -) -g1,11088:3062174,2439708 -(1,11088:3062174,2439708:16384,1703936,0 -[1,11088:3062174,2439708:25952256,1703936,0 -(1,11088:3062174,1915420:25952256,1179648,0 -(1,11088:3062174,1915420:16384,1179648,0 -r1,11599:3078558,1915420:16384,1179648,0 -) -k1,11088:29014430,1915420:25935872 -g1,11088:29014430,1915420 -) -] -) -) -) -] -[1,11599:3078558,4812305:0,0,0 -(1,11599:3078558,2439708:0,1703936,0 -g1,11599:29030814,2439708 -g1,11599:36135244,2439708 -(1,11088:36135244,2439708:1720320,1703936,0 -(1,11088:36135244,2439708:16384,1703936,0 -[1,11088:36135244,2439708:25952256,1703936,0 -(1,11088:36135244,1915420:25952256,1179648,0 -(1,11088:36135244,1915420:16384,1179648,0 -r1,11599:36151628,1915420:16384,1179648,0 -) -k1,11088:62087500,1915420:25935872 -g1,11088:62087500,1915420 -) -] -) -g1,11088:36675916,2439708 -(1,11088:36675916,2439708:1179648,16384,0 -r1,11599:37855564,2439708:1179648,16384,0 -) -) -k1,11599:3078556,2439708:-34777008 -) -] -[1,11599:3078558,4812305:0,0,0 -(1,11599:3078558,49800853:0,16384,2228224 -k1,11599:1358238,49800853:-1720320 -(1,11088:1358238,49800853:1720320,16384,2228224 -(1,11088:1358238,49800853:1179648,16384,0 -r1,11599:2537886,49800853:1179648,16384,0 -) -g1,11088:3062174,49800853 -(1,11088:3062174,52029077:16384,1703936,0 -[1,11088:3062174,52029077:25952256,1703936,0 -(1,11088:3062174,51504789:25952256,1179648,0 -(1,11088:3062174,51504789:16384,1179648,0 -r1,11599:3078558,51504789:16384,1179648,0 -) -k1,11088:29014430,51504789:25935872 -g1,11088:29014430,51504789 -) -] -) -) -) -] -[1,11599:3078558,4812305:0,0,0 -(1,11599:3078558,49800853:0,16384,2228224 -g1,11599:29030814,49800853 -g1,11599:36135244,49800853 -(1,11088:36135244,49800853:1720320,16384,2228224 -(1,11088:36135244,52029077:16384,1703936,0 -[1,11088:36135244,52029077:25952256,1703936,0 -(1,11088:36135244,51504789:25952256,1179648,0 -(1,11088:36135244,51504789:16384,1179648,0 -r1,11599:36151628,51504789:16384,1179648,0 -) -k1,11088:62087500,51504789:25935872 -g1,11088:62087500,51504789 -) -] -) -g1,11088:36675916,49800853 -(1,11088:36675916,49800853:1179648,16384,0 -r1,11599:37855564,49800853:1179648,16384,0 -) -) -k1,11599:3078556,49800853:-34777008 -) -] -g1,11599:6630773,4812305 -k1,11599:25241686,4812305:17415536 -g1,11599:26807341,4812305 -g1,11599:30339731,4812305 -g1,11599:31154998,4812305 -) -) -] -[1,11599:6630773,45706769:25952256,40108032,0 -(1,11599:6630773,45706769:25952256,40108032,0 -(1,11599:6630773,45706769:0,0,0 -g1,11599:6630773,45706769 -) -[1,11599:6630773,45706769:25952256,40108032,0 -(1,11528:6630773,6254097:25952256,32768,229376 -(1,11528:6630773,6254097:0,32768,229376 -(1,11528:6630773,6254097:5505024,32768,229376 -r1,11599:12135797,6254097:5505024,262144,229376 -) -k1,11528:6630773,6254097:-5505024 -) -(1,11528:6630773,6254097:25952256,32768,0 -r1,11599:32583029,6254097:25952256,32768,0 -) -) -(1,11528:6630773,7858425:25952256,606339,151780 -(1,11528:6630773,7858425:1974731,582746,14155 -g1,11528:6630773,7858425 -g1,11528:8605504,7858425 -) -g1,11528:10655733,7858425 -k1,11528:32583028,7858425:19792132 -g1,11528:32583028,7858425 -) -(1,11531:6630773,9093129:25952256,513147,134348 -k1,11530:8062461,9093129:235001 -k1,11530:9603595,9093129:235001 -k1,11530:12331586,9093129:235001 -k1,11530:15752947,9093129:235001 -k1,11530:18623151,9093129:235001 -k1,11530:21019530,9093129:235002 -k1,11530:22989924,9093129:235001 -k1,11530:24917065,9093129:235001 -k1,11530:25811358,9093129:235001 -k1,11530:27065444,9093129:235001 -k1,11530:28583640,9093129:235001 -k1,11530:32051532,9093129:235001 -k1,11530:32583029,9093129:0 -) -(1,11531:6630773,9934617:25952256,513147,126483 -k1,11530:7895013,9934617:245155 -k1,11530:10878918,9934617:245155 -k1,11530:12216558,9934617:245155 -k1,11530:13121005,9934617:245155 -k1,11530:15153982,9934617:245155 -k1,11530:16779981,9934617:245155 -k1,11530:17730302,9934617:245154 -k1,11530:20819720,9934617:245155 -k1,11530:23232806,9934617:245155 -k1,11530:23833821,9934617:245155 -k1,11530:26843285,9934617:245155 -k1,11530:27747732,9934617:245155 -k1,11530:31896867,9934617:245155 -k1,11530:32583029,9934617:0 -) -(1,11531:6630773,10776105:25952256,513147,126483 -k1,11530:8564173,10776105:213080 -k1,11530:9881535,10776105:213080 -k1,11530:10842382,10776105:213081 -k1,11530:12568688,10776105:213080 -k1,11530:15075528,10776105:213080 -k1,11530:16567215,10776105:213080 -k1,11530:18174246,10776105:213080 -k1,11530:19821255,10776105:213081 -k1,11530:20449164,10776105:213066 -k1,11530:23861712,10776105:213080 -k1,11530:25749892,10776105:213080 -k1,11530:27438187,10776105:213080 -k1,11530:29161218,10776105:213081 -k1,11530:29987060,10776105:213080 -k1,11530:31219225,10776105:213080 -k1,11530:32583029,10776105:0 -) -(1,11531:6630773,11617593:25952256,513147,134348 -k1,11530:7516567,11617593:226502 -k1,11530:9245811,11617593:226503 -k1,11530:12293638,11617593:226502 -k1,11530:13136179,11617593:226503 -k1,11530:14814303,11617593:226502 -k1,11530:16668065,11617593:226503 -k1,11530:18452358,11617593:226502 -k1,11530:20673777,11617593:226503 -k1,11530:21559571,11617593:226502 -k1,11530:22574472,11617593:226503 -k1,11530:24889606,11617593:226502 -k1,11530:28803820,11617593:226503 -k1,11530:30221767,11617593:226502 -k1,11530:32583029,11617593:0 -) -(1,11531:6630773,12459081:25952256,513147,134348 -k1,11530:8821219,12459081:215846 -k1,11530:11132151,12459081:215746 -k1,11530:12118601,12459081:215747 -k1,11530:13372438,12459081:215747 -k1,11530:15308504,12459081:215746 -k1,11530:16515811,12459081:215747 -k1,11530:18782180,12459081:215747 -k1,11530:19657218,12459081:215746 -k1,11530:21589353,12459081:215747 -k1,11530:24877427,12459081:215746 -k1,11530:25776059,12459081:215747 -k1,11530:28173500,12459081:215747 -k1,11530:29673752,12459081:215746 -k1,11530:31516758,12459081:215747 -k1,11530:32583029,12459081:0 -) -(1,11531:6630773,13300569:25952256,513147,134348 -k1,11530:7222459,13300569:235826 -k1,11530:9331303,13300569:235825 -k1,11530:13440307,13300569:235826 -k1,11530:15011757,13300569:235826 -k1,11530:16697239,13300569:235826 -(1,11530:16697239,13300569:0,452978,115847 -r1,11599:17407217,13300569:709978,568825,115847 -k1,11530:16697239,13300569:-709978 -) -(1,11530:16697239,13300569:709978,452978,115847 -k1,11530:16697239,13300569:3277 -h1,11530:17403940,13300569:0,411205,112570 -) -k1,11530:17816712,13300569:235825 -(1,11530:17816712,13300569:0,452978,122846 -r1,11599:19230113,13300569:1413401,575824,122846 -k1,11530:17816712,13300569:-1413401 -) -(1,11530:17816712,13300569:1413401,452978,122846 -k1,11530:17816712,13300569:3277 -h1,11530:19226836,13300569:0,411205,112570 -) -k1,11530:19639609,13300569:235826 -(1,11530:19639609,13300569:0,414482,122846 -r1,11599:21053010,13300569:1413401,537328,122846 -k1,11530:19639609,13300569:-1413401 -) -(1,11530:19639609,13300569:1413401,414482,122846 -k1,11530:19639609,13300569:3277 -h1,11530:21049733,13300569:0,411205,112570 -) -k1,11530:21462506,13300569:235826 -(1,11530:21462506,13300569:0,414482,115847 -r1,11599:22875907,13300569:1413401,530329,115847 -k1,11530:21462506,13300569:-1413401 -) -(1,11530:21462506,13300569:1413401,414482,115847 -k1,11530:21462506,13300569:3277 -h1,11530:22872630,13300569:0,411205,112570 -) -k1,11530:23285403,13300569:235826 -k1,11530:25013483,13300569:235825 -k1,11530:26721248,13300569:235826 -k1,11530:28450640,13300569:235826 -k1,11530:29372628,13300569:235826 -k1,11530:30834632,13300569:235825 -k1,11530:31601955,13300569:235826 -k1,11531:32583029,13300569:0 -) -(1,11531:6630773,14142057:25952256,513147,134348 -k1,11530:9180902,14142057:228188 -k1,11530:10095252,14142057:228188 -k1,11530:12663731,14142057:228188 -k1,11530:14459541,14142057:228189 -k1,11530:15043589,14142057:228188 -k1,11530:17380726,14142057:228188 -k1,11530:18876380,14142057:228188 -k1,11530:19460428,14142057:228188 -k1,11530:21027517,14142057:228188 -k1,11530:23814231,14142057:228188 -k1,11530:24398279,14142057:228188 -k1,11530:26471306,14142057:228189 -k1,11530:27358786,14142057:228188 -k1,11530:29272560,14142057:228188 -k1,11530:30113510,14142057:228188 -k1,11530:32227169,14142057:228188 -k1,11530:32583029,14142057:0 -) -(1,11531:6630773,14983545:25952256,513147,126483 -k1,11530:9189248,14983545:161168 -k1,11530:14187628,14983545:161168 -k1,11530:16031761,14983545:161168 -k1,11530:18029248,14983545:161168 -k1,11530:18818251,14983545:161168 -k1,11530:20604711,14983545:161168 -k1,11530:22435081,14983545:161168 -k1,11530:23787694,14983545:161168 -k1,11530:26388112,14983545:161168 -k1,11530:27540840,14983545:161168 -k1,11530:29189020,14983545:161168 -k1,11530:30422357,14983545:161168 -k1,11530:31896867,14983545:161168 -k1,11530:32583029,14983545:0 -) -(1,11531:6630773,15825033:25952256,513147,134348 -k1,11530:7626145,15825033:224669 -k1,11530:11439566,15825033:224670 -k1,11530:14001904,15825033:224669 -k1,11530:14992689,15825033:224669 -k1,11530:17555027,15825033:224669 -k1,11530:18971142,15825033:224670 -k1,11530:23032289,15825033:224669 -k1,11530:24204609,15825033:224669 -k1,11530:26137802,15825033:224669 -k1,11530:27045357,15825033:224670 -k1,11530:29602452,15825033:224669 -k1,11530:32583029,15825033:0 -) -(1,11531:6630773,16666521:25952256,505283,126483 -k1,11530:9434731,16666521:181207 -k1,11530:11102950,16666521:181207 -k1,11530:11970319,16666521:181207 -k1,11530:15171425,16666521:181207 -k1,11530:16544077,16666521:181207 -k1,11530:19446993,16666521:181206 -k1,11530:20824887,16666521:181207 -k1,11530:24512270,16666521:181207 -k1,11530:27328680,16666521:181207 -k1,11530:29195473,16666521:181207 -k1,11530:29992718,16666521:181207 -k1,11530:31193010,16666521:181207 -k1,11530:32583029,16666521:0 -) -(1,11531:6630773,17508009:25952256,513147,126483 -g1,11530:7361499,17508009 -g1,11530:9847935,17508009 -g1,11530:14248677,17508009 -g1,11530:15209434,17508009 -g1,11530:17476979,17508009 -g1,11530:18335500,17508009 -g1,11530:21867890,17508009 -k1,11531:32583029,17508009:9228127 -g1,11531:32583029,17508009 -) -v1,11533:6630773,18698475:0,393216,0 -(1,11537:6630773,19013571:25952256,708312,196608 -g1,11537:6630773,19013571 -g1,11537:6630773,19013571 -g1,11537:6434165,19013571 -(1,11537:6434165,19013571:0,708312,196608 -r1,11599:32779637,19013571:26345472,904920,196608 -k1,11537:6434165,19013571:-26345472 -) -(1,11537:6434165,19013571:26345472,708312,196608 -[1,11537:6630773,19013571:25952256,511704,0 -(1,11535:6630773,18906093:25952256,404226,107478 -(1,11534:6630773,18906093:0,0,0 -g1,11534:6630773,18906093 -g1,11534:6630773,18906093 -g1,11534:6303093,18906093 -(1,11534:6303093,18906093:0,0,0 -) -g1,11534:6630773,18906093 -) -g1,11535:8527647,18906093 -g1,11535:9159939,18906093 -g1,11535:12953687,18906093 -g1,11535:13585979,18906093 -h1,11535:14850562,18906093:0,0,0 -k1,11535:32583030,18906093:17732468 -g1,11535:32583030,18906093 -) -] -) -g1,11537:32583029,19013571 -g1,11537:6630773,19013571 -g1,11537:6630773,19013571 -g1,11537:32583029,19013571 -g1,11537:32583029,19013571 -) -h1,11537:6630773,19210179:0,0,0 -(1,11541:6630773,20575955:25952256,513147,134348 -h1,11540:6630773,20575955:983040,0,0 -k1,11540:9292447,20575955:257813 -k1,11540:10654542,20575955:257813 -k1,11540:12549445,20575955:257813 -k1,11540:14308032,20575955:257813 -k1,11540:16575834,20575955:257813 -k1,11540:17189507,20575955:257813 -k1,11540:19320339,20575955:257813 -k1,11540:19992936,20575955:257754 -k1,11540:22408850,20575955:257813 -k1,11540:24449898,20575955:257813 -k1,11540:27418280,20575955:257813 -k1,11540:30701890,20575955:257813 -k1,11540:32227169,20575955:257813 -k1,11540:32583029,20575955:0 -) -(1,11541:6630773,21417443:25952256,505283,134348 -k1,11540:8355520,21417443:161058 -k1,11540:9905940,21417443:161057 -k1,11540:10598495,21417443:161058 -k1,11540:12964840,21417443:161058 -k1,11540:15761101,21417443:161058 -k1,11540:17561213,21417443:161057 -k1,11540:20280797,21417443:161058 -k1,11540:23775016,21417443:161058 -k1,11540:24350879,21417443:161020 -k1,11540:26801764,21417443:161057 -k1,11540:29000992,21417443:161058 -k1,11540:29778088,21417443:161058 -k1,11540:32583029,21417443:0 -) -(1,11541:6630773,22258931:25952256,513147,126483 -k1,11540:8725762,22258931:209518 -k1,11540:9926841,22258931:209519 -k1,11540:12486480,22258931:209518 -k1,11540:13887444,22258931:209519 -k1,11540:17264317,22258931:209518 -k1,11540:21964362,22258931:209518 -k1,11540:26339349,22258931:209519 -k1,11540:28203651,22258931:209518 -k1,11540:28944667,22258931:209519 -k1,11540:30626779,22258931:209518 -k1,11541:32583029,22258931:0 -) -(1,11541:6630773,23100419:25952256,505283,126483 -k1,11540:8262419,23100419:188543 -k1,11540:11086164,23100419:188542 -k1,11540:12726985,23100419:188543 -k1,11540:14418269,23100419:188543 -k1,11540:16327131,23100419:188542 -k1,11540:17707119,23100419:188543 -k1,11540:19615982,23100419:188543 -k1,11540:20420562,23100419:188542 -k1,11540:21023937,23100419:188532 -k1,11540:23547528,23100419:188543 -k1,11540:24808240,23100419:188543 -k1,11540:26015867,23100419:188542 -k1,11540:31591469,23100419:188543 -k1,11540:32583029,23100419:0 -) -(1,11541:6630773,23941907:25952256,513147,7863 -k1,11541:32583030,23941907:23016244 -g1,11541:32583030,23941907 -) -(1,11543:6630773,24783395:25952256,513147,126483 -h1,11542:6630773,24783395:983040,0,0 -k1,11542:9396195,24783395:148569 -k1,11542:10360032,24783395:148569 -k1,11542:12228920,24783395:148568 -k1,11542:14734819,24783395:148569 -k1,11542:15499426,24783395:148569 -k1,11542:16062787,24783395:148518 -k1,11542:18699758,24783395:148569 -k1,11542:20406118,24783395:148569 -k1,11542:22648562,24783395:148569 -k1,11542:23816216,24783395:148569 -k1,11542:25345628,24783395:148568 -k1,11542:27061818,24783395:148569 -k1,11542:28229472,24783395:148569 -k1,11542:32583029,24783395:0 -) -(1,11543:6630773,25624883:25952256,513147,134348 -k1,11542:7575325,25624883:285260 -k1,11542:10432873,25624883:285260 -k1,11542:11909578,25624883:285260 -k1,11542:14762539,25624883:285260 -k1,11542:16066884,25624883:285260 -k1,11542:19685306,25624883:285261 -k1,11542:22260394,25624883:285260 -k1,11542:23737099,25624883:285260 -k1,11542:24681651,25624883:285260 -k1,11542:28000573,25624883:285260 -k1,11542:29304918,25624883:285260 -k1,11542:32583029,25624883:0 -) -(1,11543:6630773,26466371:25952256,513147,126483 -k1,11542:9979901,26466371:273523 -k1,11542:10912717,26466371:273524 -k1,11542:12205325,26466371:273523 -k1,11542:15241191,26466371:273523 -k1,11542:17373971,26466371:273524 -k1,11542:19322594,26466371:273523 -k1,11542:21883325,26466371:273524 -k1,11542:24786152,26466371:273523 -k1,11542:28453785,26466371:273523 -k1,11542:29386601,26466371:273524 -k1,11542:31821501,26466371:273523 -k1,11542:32583029,26466371:0 -) -(1,11543:6630773,27307859:25952256,505283,134348 -g1,11542:9501905,27307859 -g1,11542:11351331,27307859 -g1,11542:13905924,27307859 -k1,11543:32583029,27307859:17007248 -g1,11543:32583029,27307859 -) -(1,11545:6630773,28149347:25952256,513147,126483 -h1,11544:6630773,28149347:983040,0,0 -k1,11544:11016502,28149347:196668 -k1,11544:12385609,28149347:196668 -k1,11544:14174146,28149347:196667 -k1,11544:19757873,28149347:196668 -k1,11544:20613833,28149347:196668 -k1,11544:22530821,28149347:196668 -k1,11544:23719048,28149347:196667 -k1,11544:26699685,28149347:196668 -k1,11544:27582515,28149347:196668 -k1,11544:28194023,28149347:196665 -k1,11544:31966991,28149347:196668 -k1,11544:32583029,28149347:0 -) -(1,11545:6630773,28990835:25952256,513147,134348 -k1,11544:9762272,28990835:221045 -k1,11544:12928504,28990835:221045 -k1,11544:14340994,28990835:221045 -k1,11544:16724727,28990835:221046 -k1,11544:18137217,28990835:221045 -k1,11544:19985521,28990835:221045 -k1,11544:22540303,28990835:221045 -k1,11544:24304066,28990835:221045 -k1,11544:24970078,28990835:221023 -k1,11544:26292128,28990835:221045 -k1,11544:28233494,28990835:221046 -k1,11544:29140701,28990835:221045 -k1,11544:30683607,28990835:221045 -k1,11544:31563944,28990835:221045 -k1,11544:32583029,28990835:0 -) -(1,11545:6630773,29832323:25952256,505283,134348 -k1,11545:32583028,29832323:22936288 -g1,11545:32583028,29832323 -) -(1,11547:6630773,31923583:25952256,534184,12975 -(1,11547:6630773,31923583:2450326,534184,12975 -g1,11547:6630773,31923583 -g1,11547:9081099,31923583 -) -g1,11547:10950383,31923583 -k1,11547:32583028,31923583:21113600 -g1,11547:32583028,31923583 -) -(1,11552:6630773,33158287:25952256,513147,126483 -k1,11550:7747017,33158287:162695 -k1,11550:10578994,33158287:162696 -k1,11550:12047822,33158287:162695 -k1,11550:13159478,33158287:162695 -k1,11550:14712192,33158287:162695 -k1,11550:16958933,33158287:162696 -k1,11550:18976297,33158287:162695 -k1,11550:19948362,33158287:162695 -k1,11550:20556010,33158287:162659 -k1,11550:22435093,33158287:162695 -k1,11551:23551338,33158287:162696 -k1,11551:25202356,33158287:162695 -k1,11551:26759002,33158287:162695 -k1,11551:27277557,33158287:162695 -k1,11551:28452784,33158287:162696 -k1,11551:31276896,33158287:162695 -k1,11551:32583029,33158287:0 -) -(1,11552:6630773,33999775:25952256,505283,134348 -g1,11551:9116553,33999775 -g1,11551:11051175,33999775 -g1,11551:13953109,33999775 -g1,11551:15837924,33999775 -g1,11551:17228598,33999775 -g1,11551:20779338,33999775 -g1,11551:21393410,33999775 -k1,11552:32583029,33999775:9105574 -g1,11552:32583029,33999775 -) -v1,11554:6630773,35190241:0,393216,0 -(1,11561:6630773,37497580:25952256,2700555,196608 -g1,11561:6630773,37497580 -g1,11561:6630773,37497580 -g1,11561:6434165,37497580 -(1,11561:6434165,37497580:0,2700555,196608 -r1,11599:32779637,37497580:26345472,2897163,196608 -k1,11561:6434165,37497580:-26345472 -) -(1,11561:6434165,37497580:26345472,2700555,196608 -[1,11561:6630773,37497580:25952256,2503947,0 -(1,11556:6630773,35397859:25952256,404226,9436 -(1,11555:6630773,35397859:0,0,0 -g1,11555:6630773,35397859 -g1,11555:6630773,35397859 -g1,11555:6303093,35397859 -(1,11555:6303093,35397859:0,0,0 -) -g1,11555:6630773,35397859 -) -g1,11556:9159939,35397859 -g1,11556:10108377,35397859 -h1,11556:11372960,35397859:0,0,0 -k1,11556:32583028,35397859:21210068 -g1,11556:32583028,35397859 -) -(1,11557:6630773,36064037:25952256,404226,101187 -h1,11557:6630773,36064037:0,0,0 -g1,11557:9476084,36064037 -g1,11557:10424522,36064037 -k1,11557:10424522,36064037:0 -h1,11557:14534416,36064037:0,0,0 -k1,11557:32583028,36064037:18048612 -g1,11557:32583028,36064037 -) -(1,11558:6630773,36730215:25952256,404226,101187 -h1,11558:6630773,36730215:0,0,0 -g1,11558:9476084,36730215 -g1,11558:10424522,36730215 -k1,11558:10424522,36730215:0 -h1,11558:14534416,36730215:0,0,0 -k1,11558:32583028,36730215:18048612 -g1,11558:32583028,36730215 -) -(1,11559:6630773,37396393:25952256,404226,101187 -h1,11559:6630773,37396393:0,0,0 -g1,11559:10740667,37396393 -g1,11559:11372959,37396393 -g1,11559:13269833,37396393 -k1,11559:13269833,37396393:0 -h1,11559:14218270,37396393:0,0,0 -k1,11559:32583030,37396393:18364760 -g1,11559:32583030,37396393 -) -] -) -g1,11561:32583029,37497580 -g1,11561:6630773,37497580 -g1,11561:6630773,37497580 -g1,11561:32583029,37497580 -g1,11561:32583029,37497580 -) -h1,11561:6630773,37694188:0,0,0 -(1,11565:6630773,39059964:25952256,513147,134348 -h1,11564:6630773,39059964:983040,0,0 -g1,11564:9197162,39059964 -g1,11564:11131784,39059964 -g1,11564:13448481,39059964 -g1,11564:16343206,39059964 -g1,11564:17972431,39059964 -g1,11564:19370314,39059964 -g1,11564:21304936,39059964 -g1,11564:24855676,39059964 -g1,11564:25469748,39059964 -k1,11565:32583029,39059964:5029236 -g1,11565:32583029,39059964 -) -v1,11567:6630773,40250430:0,393216,0 -(1,11571:6630773,40559235:25952256,702021,196608 -g1,11571:6630773,40559235 -g1,11571:6630773,40559235 -g1,11571:6434165,40559235 -(1,11571:6434165,40559235:0,702021,196608 -r1,11599:32779637,40559235:26345472,898629,196608 -k1,11571:6434165,40559235:-26345472 -) -(1,11571:6434165,40559235:26345472,702021,196608 -[1,11571:6630773,40559235:25952256,505413,0 -(1,11569:6630773,40458048:25952256,404226,101187 -(1,11568:6630773,40458048:0,0,0 -g1,11568:6630773,40458048 -g1,11568:6630773,40458048 -g1,11568:6303093,40458048 -(1,11568:6303093,40458048:0,0,0 -) -g1,11568:6630773,40458048 -) -g1,11569:9476084,40458048 -g1,11569:10424522,40458048 -k1,11569:10424522,40458048:0 -h1,11569:16115145,40458048:0,0,0 -k1,11569:32583029,40458048:16467884 -g1,11569:32583029,40458048 -) -] -) -g1,11571:32583029,40559235 -g1,11571:6630773,40559235 -g1,11571:6630773,40559235 -g1,11571:32583029,40559235 -g1,11571:32583029,40559235 -) -h1,11571:6630773,40755843:0,0,0 -(1,11575:6630773,42121619:25952256,513147,134348 -h1,11574:6630773,42121619:983040,0,0 -g1,11574:10099593,42121619 -g1,11574:10984984,42121619 -g1,11574:11540073,42121619 -g1,11574:13129321,42121619 -g1,11574:15063943,42121619 -(1,11574:15063943,42121619:0,452978,115847 -r1,11599:15773921,42121619:709978,568825,115847 -k1,11574:15063943,42121619:-709978 -) -(1,11574:15063943,42121619:709978,452978,115847 -k1,11574:15063943,42121619:3277 -h1,11574:15770644,42121619:0,411205,112570 -) -g1,11574:16146820,42121619 -g1,11574:17365134,42121619 -g1,11574:20274932,42121619 -g1,11574:23220775,42121619 -g1,11574:24987625,42121619 -g1,11574:27531077,42121619 -k1,11575:32583029,42121619:4433292 -g1,11575:32583029,42121619 -) -v1,11577:6630773,43312085:0,393216,0 -(1,11581:6630773,43620890:25952256,702021,196608 -g1,11581:6630773,43620890 -g1,11581:6630773,43620890 -g1,11581:6434165,43620890 -(1,11581:6434165,43620890:0,702021,196608 -r1,11599:32779637,43620890:26345472,898629,196608 -k1,11581:6434165,43620890:-26345472 -) -(1,11581:6434165,43620890:26345472,702021,196608 -[1,11581:6630773,43620890:25952256,505413,0 -(1,11579:6630773,43519703:25952256,404226,101187 -(1,11578:6630773,43519703:0,0,0 -g1,11578:6630773,43519703 -g1,11578:6630773,43519703 -g1,11578:6303093,43519703 -(1,11578:6303093,43519703:0,0,0 -) -g1,11578:6630773,43519703 -) -g1,11579:9159939,43519703 -g1,11579:10108377,43519703 -g1,11579:12321397,43519703 -g1,11579:13269835,43519703 -g1,11579:15166709,43519703 -g1,11579:16115147,43519703 -h1,11579:18644312,43519703:0,0,0 -k1,11579:32583029,43519703:13938717 -g1,11579:32583029,43519703 -) -] -) -g1,11581:32583029,43620890 -g1,11581:6630773,43620890 -g1,11581:6630773,43620890 -g1,11581:32583029,43620890 -g1,11581:32583029,43620890 -) -h1,11581:6630773,43817498:0,0,0 -v1,11585:6630773,45707562:0,393216,0 -] -(1,11599:32583029,45706769:0,0,0 -g1,11599:32583029,45706769 -) -) -] -(1,11599:6630773,47279633:25952256,0,0 -h1,11599:6630773,47279633:25952256,0,0 -) -] -(1,11599:4262630,4025873:0,0,0 -[1,11599:-473656,4025873:0,0,0 -(1,11599:-473656,-710413:0,0,0 -(1,11599:-473656,-710413:0,0,0 -g1,11599:-473656,-710413 -) -g1,11599:-473656,-710413 -) -] -) -] -!22633 -}217 -Input:1597:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1598:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1599:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1600:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1601:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1602:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1603:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1604:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1605:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1606:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!932 -{218 -[1,11639:4262630,47279633:28320399,43253760,0 -(1,11639:4262630,4025873:0,0,0 -[1,11639:-473656,4025873:0,0,0 -(1,11639:-473656,-710413:0,0,0 -(1,11639:-473656,-644877:0,0,0 -k1,11639:-473656,-644877:-65536 -) -(1,11639:-473656,4736287:0,0,0 -k1,11639:-473656,4736287:5209943 -) -g1,11639:-473656,-710413 -) -] -) -[1,11639:6630773,47279633:25952256,43253760,0 -[1,11639:6630773,4812305:25952256,786432,0 -(1,11639:6630773,4812305:25952256,485622,126483 -(1,11639:6630773,4812305:25952256,485622,126483 -g1,11639:3078558,4812305 -[1,11639:3078558,4812305:0,0,0 -(1,11639:3078558,2439708:0,1703936,0 -k1,11639:1358238,2439708:-1720320 -(1,11088:1358238,2439708:1720320,1703936,0 -(1,11088:1358238,2439708:1179648,16384,0 -r1,11639:2537886,2439708:1179648,16384,0 -) -g1,11088:3062174,2439708 -(1,11088:3062174,2439708:16384,1703936,0 -[1,11088:3062174,2439708:25952256,1703936,0 -(1,11088:3062174,1915420:25952256,1179648,0 -(1,11088:3062174,1915420:16384,1179648,0 -r1,11639:3078558,1915420:16384,1179648,0 -) -k1,11088:29014430,1915420:25935872 -g1,11088:29014430,1915420 -) -] -) -) -) -] -[1,11639:3078558,4812305:0,0,0 -(1,11639:3078558,2439708:0,1703936,0 -g1,11639:29030814,2439708 -g1,11639:36135244,2439708 -(1,11088:36135244,2439708:1720320,1703936,0 -(1,11088:36135244,2439708:16384,1703936,0 -[1,11088:36135244,2439708:25952256,1703936,0 -(1,11088:36135244,1915420:25952256,1179648,0 -(1,11088:36135244,1915420:16384,1179648,0 -r1,11639:36151628,1915420:16384,1179648,0 -) -k1,11088:62087500,1915420:25935872 -g1,11088:62087500,1915420 -) -] -) -g1,11088:36675916,2439708 -(1,11088:36675916,2439708:1179648,16384,0 -r1,11639:37855564,2439708:1179648,16384,0 -) -) -k1,11639:3078556,2439708:-34777008 -) -] -[1,11639:3078558,4812305:0,0,0 -(1,11639:3078558,49800853:0,16384,2228224 -k1,11639:1358238,49800853:-1720320 -(1,11088:1358238,49800853:1720320,16384,2228224 -(1,11088:1358238,49800853:1179648,16384,0 -r1,11639:2537886,49800853:1179648,16384,0 -) -g1,11088:3062174,49800853 -(1,11088:3062174,52029077:16384,1703936,0 -[1,11088:3062174,52029077:25952256,1703936,0 -(1,11088:3062174,51504789:25952256,1179648,0 -(1,11088:3062174,51504789:16384,1179648,0 -r1,11639:3078558,51504789:16384,1179648,0 -) -k1,11088:29014430,51504789:25935872 -g1,11088:29014430,51504789 -) -] -) -) -) -] -[1,11639:3078558,4812305:0,0,0 -(1,11639:3078558,49800853:0,16384,2228224 -g1,11639:29030814,49800853 -g1,11639:36135244,49800853 -(1,11088:36135244,49800853:1720320,16384,2228224 -(1,11088:36135244,52029077:16384,1703936,0 -[1,11088:36135244,52029077:25952256,1703936,0 -(1,11088:36135244,51504789:25952256,1179648,0 -(1,11088:36135244,51504789:16384,1179648,0 -r1,11639:36151628,51504789:16384,1179648,0 -) -k1,11088:62087500,51504789:25935872 -g1,11088:62087500,51504789 -) -] -) -g1,11088:36675916,49800853 -(1,11088:36675916,49800853:1179648,16384,0 -r1,11639:37855564,49800853:1179648,16384,0 -) -) -k1,11639:3078556,49800853:-34777008 -) -] -g1,11639:6630773,4812305 -g1,11639:6630773,4812305 -g1,11639:8364200,4812305 -g1,11639:10177581,4812305 -k1,11639:31387653,4812305:21210072 -) -) -] -[1,11639:6630773,45706769:25952256,40108032,0 -(1,11639:6630773,45706769:25952256,40108032,0 -(1,11639:6630773,45706769:0,0,0 -g1,11639:6630773,45706769 -) -[1,11639:6630773,45706769:25952256,40108032,0 -v1,11599:6630773,6254097:0,393216,0 -(1,11599:6630773,21270309:25952256,15409428,616038 -g1,11599:6630773,21270309 -(1,11599:6630773,21270309:25952256,15409428,616038 -(1,11599:6630773,21886347:25952256,16025466,0 -[1,11599:6630773,21886347:25952256,16025466,0 -(1,11599:6630773,21860133:25952256,15973038,0 -r1,11639:6656987,21860133:26214,15973038,0 -[1,11599:6656987,21860133:25899828,15973038,0 -(1,11599:6656987,21270309:25899828,14793390,0 -[1,11599:7246811,21270309:24720180,14793390,0 -(1,11586:7246811,7638804:24720180,1161885,196608 -(1,11585:7246811,7638804:0,1161885,196608 -r1,11639:8794447,7638804:1547636,1358493,196608 -k1,11585:7246811,7638804:-1547636 -) -(1,11585:7246811,7638804:1547636,1161885,196608 -) -k1,11585:9000894,7638804:206447 -k1,11585:10404028,7638804:206447 -(1,11585:10404028,7638804:0,452978,115847 -r1,11639:11114006,7638804:709978,568825,115847 -k1,11585:10404028,7638804:-709978 -) -(1,11585:10404028,7638804:709978,452978,115847 -k1,11585:10404028,7638804:3277 -h1,11585:11110729,7638804:0,411205,112570 -) -k1,11585:11320452,7638804:206446 -k1,11585:14273513,7638804:206447 -k1,11585:16047581,7638804:206447 -k1,11585:17687956,7638804:206447 -k1,11585:18309238,7638804:206439 -k1,11585:20198650,7638804:206447 -k1,11585:21577536,7638804:206447 -k1,11585:24930366,7638804:206447 -k1,11585:26333499,7638804:206446 -k1,11585:28220289,7638804:206447 -k1,11585:31205463,7638804:206447 -k1,11585:31966991,7638804:0 -) -(1,11586:7246811,8480292:24720180,513147,126483 -k1,11585:8494165,8480292:228269 -k1,11585:9636662,8480292:228269 -k1,11585:12965439,8480292:228269 -k1,11585:14700381,8480292:228269 -k1,11585:17744732,8480292:228269 -k1,11585:19858472,8480292:228269 -k1,11585:21191023,8480292:228269 -k1,11585:22167058,8480292:228269 -k1,11585:23527134,8480292:228269 -k1,11585:24170217,8480292:228240 -k1,11585:28012141,8480292:228269 -k1,11585:28771907,8480292:228269 -k1,11585:31205463,8480292:228269 -k1,11585:31966991,8480292:0 -) -(1,11586:7246811,9321780:24720180,513147,134348 -k1,11585:9785071,9321780:272680 -k1,11585:10743913,9321780:272680 -k1,11585:12035678,9321780:272680 -k1,11585:13614491,9321780:272680 -k1,11585:16959499,9321780:272680 -k1,11585:17883607,9321780:272680 -k1,11585:19175372,9321780:272680 -k1,11585:20480900,9321780:272680 -k1,11585:23569662,9321780:272680 -k1,11585:25727813,9321780:272680 -k1,11585:27622509,9321780:272680 -k1,11585:28642955,9321780:272680 -k1,11585:29271495,9321780:272680 -k1,11585:31966991,9321780:0 -) -(1,11586:7246811,10163268:24720180,505283,134348 -k1,11585:10556379,10163268:271319 -k1,11585:11440460,10163268:271319 -k1,11585:13207311,10163268:271319 -k1,11585:14635340,10163268:271319 -k1,11585:18152658,10163268:271320 -k1,11585:22944651,10163268:271319 -k1,11585:23832008,10163268:271319 -k1,11585:25838720,10163268:271319 -k1,11585:27313280,10163268:271319 -k1,11585:29709276,10163268:271319 -k1,11585:31966991,10163268:0 -) -(1,11586:7246811,11004756:24720180,513147,134348 -k1,11585:8523780,11004756:257884 -k1,11585:11477160,11004756:257884 -k1,11585:12351082,11004756:257884 -k1,11585:13628052,11004756:257885 -k1,11585:14918784,11004756:257884 -k1,11585:16798684,11004756:257884 -k1,11585:18531783,11004756:257884 -k1,11585:19145527,11004756:257884 -k1,11585:21915406,11004756:257884 -k1,11585:25157144,11004756:257884 -k1,11585:26362680,11004756:257885 -k1,11585:27639649,11004756:257884 -k1,11585:29287552,11004756:257884 -k1,11585:30196864,11004756:257884 -k1,11585:31966991,11004756:0 -) -(1,11586:7246811,11846244:24720180,513147,134348 -k1,11585:10387109,11846244:205596 -k1,11585:11050801,11846244:205595 -k1,11585:11787894,11846244:205596 -k1,11585:14623450,11846244:205596 -k1,11585:15480474,11846244:205596 -k1,11585:17123274,11846244:205595 -k1,11585:19139630,11846244:205596 -k1,11585:22747855,11846244:205596 -k1,11585:23604878,11846244:205595 -k1,11585:24166334,11846244:205596 -k1,11585:27067426,11846244:205596 -k1,11585:28034550,11846244:205596 -k1,11585:29978160,11846244:205595 -k1,11585:30835184,11846244:205596 -k1,11585:31966991,11846244:0 -) -(1,11586:7246811,12687732:24720180,513147,134348 -g1,11585:10900443,12687732 -g1,11585:14080249,12687732 -g1,11585:15298563,12687732 -g1,11585:16803925,12687732 -g1,11585:18333535,12687732 -g1,11585:20268157,12687732 -g1,11585:21238089,12687732 -g1,11585:25017550,12687732 -(1,11585:25224644,12687732:0,414482,115847 -r1,11639:25582910,12687732:358266,530329,115847 -k1,11585:25224644,12687732:-358266 -) -(1,11585:25224644,12687732:358266,414482,115847 -k1,11585:25224644,12687732:3277 -h1,11585:25579633,12687732:0,411205,112570 -) -g1,11585:25989233,12687732 -g1,11585:26874624,12687732 -k1,11586:31966991,12687732:1185111 -g1,11586:31966991,12687732 -) -(1,11588:7246811,13529220:24720180,513147,134348 -h1,11587:7246811,13529220:983040,0,0 -k1,11587:10117373,13529220:170479 -k1,11587:11721779,13529220:170478 -k1,11587:12307072,13529220:170450 -k1,11587:15503348,13529220:170479 -k1,11587:16820051,13529220:170478 -(1,11587:16820051,13529220:0,452978,115847 -r1,11639:19640300,13529220:2820249,568825,115847 -k1,11587:16820051,13529220:-2820249 -) -(1,11587:16820051,13529220:2820249,452978,115847 -k1,11587:16820051,13529220:3277 -h1,11587:19637023,13529220:0,411205,112570 -) -k1,11587:19810779,13529220:170479 -k1,11587:21456472,13529220:170478 -k1,11587:21982811,13529220:170479 -k1,11587:25137144,13529220:170479 -k1,11587:26592128,13529220:170478 -k1,11587:27294104,13529220:170479 -k1,11587:29756376,13529220:170478 -k1,11587:30874506,13529220:170479 -k1,11587:31966991,13529220:0 -) -(1,11588:7246811,14370708:24720180,513147,134348 -k1,11587:8097115,14370708:234266 -k1,11587:10051701,14370708:234266 -k1,11587:11047495,14370708:234266 -k1,11587:14287897,14370708:234266 -k1,11587:16949617,14370708:234266 -k1,11587:18202968,14370708:234266 -k1,11587:20247994,14370708:234266 -k1,11587:22162603,14370708:234266 -k1,11587:23083031,14370708:234266 -k1,11587:26389625,14370708:234266 -k1,11587:27275319,14370708:234266 -k1,11587:28297983,14370708:234266 -k1,11587:29838382,14370708:234266 -k1,11587:31966991,14370708:0 -) -(1,11588:7246811,15212196:24720180,513147,126483 -k1,11587:10918446,15212196:217232 -k1,11587:12952336,15212196:217232 -k1,11587:16195366,15212196:217233 -k1,11587:17558823,15212196:217232 -(1,11587:17558823,15212196:0,452978,122846 -r1,11639:20379072,15212196:2820249,575824,122846 -k1,11587:17558823,15212196:-2820249 -) -(1,11587:17558823,15212196:2820249,452978,122846 -k1,11587:17558823,15212196:3277 -h1,11587:20375795,15212196:0,411205,112570 -) -k1,11587:20596304,15212196:217232 -k1,11587:21429574,15212196:217232 -k1,11587:23398583,15212196:217232 -k1,11587:25038602,15212196:217232 -k1,11587:26124187,15212196:217233 -k1,11587:28297669,15212196:217232 -k1,11587:29661126,15212196:217232 -k1,11587:30529786,15212196:217232 -k1,11587:31966991,15212196:0 -) -(1,11588:7246811,16053684:24720180,513147,134348 -k1,11587:8475662,16053684:209766 -k1,11587:10496187,16053684:209765 -k1,11587:12386296,16053684:209766 -k1,11587:13282223,16053684:209765 -k1,11587:16564317,16053684:209766 -k1,11587:17425510,16053684:209765 -k1,11587:21246310,16053684:209766 -k1,11587:23158045,16053684:209765 -k1,11587:24810258,16053684:209766 -k1,11587:26039108,16053684:209765 -k1,11587:27728677,16053684:209766 -k1,11587:28566277,16053684:209765 -k1,11587:30269609,16053684:209766 -k1,11587:31966991,16053684:0 -) -(1,11588:7246811,16895172:24720180,513147,126483 -k1,11587:8286445,16895172:171282 -k1,11587:9562008,16895172:171281 -k1,11587:10825775,16895172:171282 -(1,11587:10825775,16895172:0,414482,115847 -r1,11639:11184041,16895172:358266,530329,115847 -k1,11587:10825775,16895172:-358266 -) -(1,11587:10825775,16895172:358266,414482,115847 -k1,11587:10825775,16895172:3277 -h1,11587:11180764,16895172:0,411205,112570 -) -k1,11587:11355323,16895172:171282 -k1,11587:12212767,16895172:171282 -k1,11587:12739908,16895172:171281 -k1,11587:16644776,16895172:171282 -k1,11587:18007503,16895172:171282 -k1,11587:19615990,16895172:171282 -k1,11587:20245368,16895172:171281 -k1,11587:21178178,16895172:171282 -k1,11587:23261145,16895172:171282 -k1,11587:27690957,16895172:171282 -k1,11587:28730590,16895172:171281 -k1,11587:30006154,16895172:171282 -k1,11587:31966991,16895172:0 -) -(1,11588:7246811,17736660:24720180,513147,126483 -g1,11587:7801900,17736660 -g1,11587:10643541,17736660 -g1,11587:13711936,17736660 -g1,11587:15305116,17736660 -g1,11587:16523430,17736660 -g1,11587:19078678,17736660 -g1,11587:21017233,17736660 -g1,11587:22164113,17736660 -g1,11587:23382427,17736660 -g1,11587:25710265,17736660 -k1,11588:31966991,17736660:2472022 -g1,11588:31966991,17736660 -) -v1,11590:7246811,18927126:0,393216,0 -(1,11596:7246811,20549413:24720180,2015503,196608 -g1,11596:7246811,20549413 -g1,11596:7246811,20549413 -g1,11596:7050203,20549413 -(1,11596:7050203,20549413:0,2015503,196608 -r1,11639:32163599,20549413:25113396,2212111,196608 -k1,11596:7050203,20549413:-25113396 -) -(1,11596:7050203,20549413:25113396,2015503,196608 -[1,11596:7246811,20549413:24720180,1818895,0 -(1,11592:7246811,19141036:24720180,410518,107478 -(1,11591:7246811,19141036:0,0,0 -g1,11591:7246811,19141036 -g1,11591:7246811,19141036 -g1,11591:6919131,19141036 -(1,11591:6919131,19141036:0,0,0 -) -g1,11591:7246811,19141036 -) -g1,11592:11356705,19141036 -g1,11592:12305143,19141036 -g1,11592:17363474,19141036 -g1,11592:18311912,19141036 -g1,11592:19892641,19141036 -h1,11592:20208787,19141036:0,0,0 -k1,11592:31966991,19141036:11758204 -g1,11592:31966991,19141036 -) -(1,11593:7246811,19807214:24720180,404226,107478 -h1,11593:7246811,19807214:0,0,0 -g1,11593:7562957,19807214 -g1,11593:7879103,19807214 -g1,11593:10724415,19807214 -g1,11593:11356707,19807214 -g1,11593:12305145,19807214 -g1,11593:14202019,19807214 -g1,11593:14834311,19807214 -g1,11593:17047331,19807214 -h1,11593:18311914,19807214:0,0,0 -k1,11593:31966991,19807214:13655077 -g1,11593:31966991,19807214 -) -(1,11594:7246811,20473392:24720180,404226,76021 -h1,11594:7246811,20473392:0,0,0 -h1,11594:7562957,20473392:0,0,0 -k1,11594:31966991,20473392:24404034 -g1,11594:31966991,20473392 -) -] -) -g1,11596:31966991,20549413 -g1,11596:7246811,20549413 -g1,11596:7246811,20549413 -g1,11596:31966991,20549413 -g1,11596:31966991,20549413 -) -h1,11596:7246811,20746021:0,0,0 -] -) -] -r1,11639:32583029,21860133:26214,15973038,0 -) -] -) -) -g1,11599:32583029,21270309 -) -h1,11599:6630773,21886347:0,0,0 -(1,11603:6630773,24501895:25952256,555811,147783 -(1,11603:6630773,24501895:2450326,534184,12975 -g1,11603:6630773,24501895 -g1,11603:9081099,24501895 -) -k1,11603:32583029,24501895:20048118 -g1,11603:32583029,24501895 -) -(1,11607:6630773,25736599:25952256,513147,134348 -k1,11606:9446693,25736599:211519 -k1,11606:10592754,25736599:211518 -k1,11606:11463565,25736599:211519 -k1,11606:14751998,25736599:211518 -k1,11606:15911168,25736599:211519 -k1,11606:20136766,25736599:211518 -k1,11606:22068605,25736599:211519 -k1,11606:22947279,25736599:211518 -k1,11606:23573628,25736599:211506 -k1,11606:26810944,25736599:211519 -k1,11606:27553959,25736599:211518 -k1,11606:31966991,25736599:211519 -k1,11606:32583029,25736599:0 -) -(1,11607:6630773,26578087:25952256,513147,134348 -k1,11606:9457041,26578087:246116 -k1,11606:12648345,26578087:246117 -k1,11606:14085906,26578087:246116 -k1,11606:15120421,26578087:246117 -k1,11606:18823561,26578087:246116 -k1,11606:21995861,26578087:246117 -k1,11606:23261062,26578087:246116 -k1,11606:25440491,26578087:246117 -k1,11606:26101403,26578087:246069 -k1,11606:27737539,26578087:246117 -k1,11606:28745183,26578087:246116 -k1,11606:29347160,26578087:246117 -k1,11606:30726394,26578087:246116 -k1,11606:32583029,26578087:0 -) -(1,11607:6630773,27419575:25952256,513147,126483 -k1,11606:8212157,27419575:200540 -k1,11606:13469455,27419575:200540 -k1,11606:14201493,27419575:200541 -k1,11606:15915259,27419575:200540 -k1,11606:16731837,27419575:200540 -k1,11606:17951462,27419575:200540 -k1,11606:21533659,27419575:200540 -k1,11606:22930886,27419575:200540 -k1,11606:24521446,27419575:200541 -k1,11606:27468600,27419575:200540 -k1,11606:30050718,27419575:200540 -k1,11606:30867296,27419575:200540 -k1,11607:32583029,27419575:0 -) -(1,11607:6630773,28261063:25952256,505283,134348 -g1,11606:7907414,28261063 -g1,11606:11051830,28261063 -g1,11606:11782556,28261063 -g1,11606:14931560,28261063 -g1,11606:16322234,28261063 -g1,11606:20211140,28261063 -g1,11606:21171897,28261063 -g1,11606:23951278,28261063 -k1,11607:32583029,28261063:6485448 -g1,11607:32583029,28261063 -) -(1,11609:6630773,29102551:25952256,505283,134348 -h1,11608:6630773,29102551:983040,0,0 -k1,11608:9018342,29102551:207842 -k1,11608:10879658,29102551:207843 -k1,11608:13748917,29102551:207842 -k1,11608:14642922,29102551:207843 -k1,11608:15466802,29102551:207842 -k1,11608:16693730,29102551:207843 -k1,11608:19656050,29102551:207842 -k1,11608:22316249,29102551:207842 -k1,11608:23854473,29102551:207843 -k1,11608:26348866,29102551:207842 -k1,11608:27242871,29102551:207843 -k1,11608:27806573,29102551:207842 -k1,11608:29404435,29102551:207843 -k1,11608:31347670,29102551:207842 -(1,11608:31347670,29102551:0,435480,115847 -r1,11639:32409359,29102551:1061689,551327,115847 -k1,11608:31347670,29102551:-1061689 -) -(1,11608:31347670,29102551:1061689,435480,115847 -k1,11608:31347670,29102551:3277 -h1,11608:32406082,29102551:0,411205,112570 -) -k1,11608:32583029,29102551:0 -) -(1,11609:6630773,29944039:25952256,513147,134348 -g1,11608:7849087,29944039 -g1,11608:9438335,29944039 -g1,11608:12384178,29944039 -g1,11608:14151028,29944039 -g1,11608:16930409,29944039 -k1,11609:32583029,29944039:12533763 -g1,11609:32583029,29944039 -) -v1,11611:6630773,31134505:0,393216,0 -(1,11615:6630773,31443310:25952256,702021,196608 -g1,11615:6630773,31443310 -g1,11615:6630773,31443310 -g1,11615:6434165,31443310 -(1,11615:6434165,31443310:0,702021,196608 -r1,11639:32779637,31443310:26345472,898629,196608 -k1,11615:6434165,31443310:-26345472 -) -(1,11615:6434165,31443310:26345472,702021,196608 -[1,11615:6630773,31443310:25952256,505413,0 -(1,11613:6630773,31342123:25952256,404226,101187 -(1,11612:6630773,31342123:0,0,0 -g1,11612:6630773,31342123 -g1,11612:6630773,31342123 -g1,11612:6303093,31342123 -(1,11612:6303093,31342123:0,0,0 -) -g1,11612:6630773,31342123 -) -g1,11613:9159939,31342123 -g1,11613:10424522,31342123 -g1,11613:12637542,31342123 -g1,11613:13902125,31342123 -g1,11613:15798999,31342123 -g1,11613:16747437,31342123 -h1,11613:19276602,31342123:0,0,0 -k1,11613:32583029,31342123:13306427 -g1,11613:32583029,31342123 -) -] -) -g1,11615:32583029,31443310 -g1,11615:6630773,31443310 -g1,11615:6630773,31443310 -g1,11615:32583029,31443310 -g1,11615:32583029,31443310 -) -h1,11615:6630773,31639918:0,0,0 -(1,11620:6630773,33005694:25952256,505283,134348 -h1,11618:6630773,33005694:983040,0,0 -k1,11618:10413794,33005694:265048 -k1,11618:13624030,33005694:265049 -k1,11618:16649454,33005694:265048 -k1,11618:20141496,33005694:265049 -k1,11618:21796563,33005694:265048 -k1,11618:25312197,33005694:265048 -k1,11618:27070812,33005694:265049 -k1,11618:28022022,33005694:265048 -k1,11618:29838964,33005694:265049 -(1,11618:30046058,33005694:0,435480,115847 -r1,11639:31459459,33005694:1413401,551327,115847 -k1,11618:30046058,33005694:-1413401 -) -(1,11618:30046058,33005694:1413401,435480,115847 -k1,11618:30046058,33005694:3277 -h1,11618:31456182,33005694:0,411205,112570 -) -k1,11618:31931601,33005694:265048 -k1,11618:32583029,33005694:0 -) -(1,11620:6630773,33847182:25952256,513147,126483 -k1,11618:8761668,33847182:201515 -k1,11618:9319044,33847182:201516 -k1,11618:11728467,33847182:201515 -k1,11618:12546020,33847182:201515 -k1,11618:13766620,33847182:201515 -k1,11618:15531825,33847182:201516 -k1,11618:16924785,33847182:201515 -(1,11618:16924785,33847182:0,435480,115847 -r1,11639:18338186,33847182:1413401,551327,115847 -k1,11618:16924785,33847182:-1413401 -) -(1,11618:16924785,33847182:1413401,435480,115847 -k1,11618:16924785,33847182:3277 -h1,11618:18334909,33847182:0,411205,112570 -) -k1,11618:18539701,33847182:201515 -k1,11618:19392644,33847182:201515 -k1,11618:21357734,33847182:201516 -k1,11618:22578334,33847182:201515 -k1,11618:24169868,33847182:201515 -k1,11618:25132911,33847182:201515 -k1,11618:28487364,33847182:201516 -k1,11618:30563209,33847182:201515 -k1,11620:32583029,33847182:0 -) -(1,11620:6630773,34688670:25952256,513147,126483 -g1,11618:8100090,34688670 -g1,11618:9290879,34688670 -g1,11618:11273343,34688670 -g1,11618:12685643,34688670 -g1,11618:16189853,34688670 -g1,11618:17902308,34688670 -g1,11618:19543984,34688670 -(1,11618:19543984,34688670:0,435480,115847 -r1,11639:20605673,34688670:1061689,551327,115847 -k1,11618:19543984,34688670:-1061689 -) -(1,11618:19543984,34688670:1061689,435480,115847 -k1,11618:19543984,34688670:3277 -h1,11618:20602396,34688670:0,411205,112570 -) -g1,11618:20978572,34688670 -k1,11620:32583029,34688670:11604457 -g1,11620:32583029,34688670 -) -(1,11621:6630773,36779930:25952256,555811,139132 -(1,11621:6630773,36779930:2450326,534184,12975 -g1,11621:6630773,36779930 -g1,11621:9081099,36779930 -) -k1,11621:32583029,36779930:20941308 -g1,11621:32583029,36779930 -) -(1,11625:6630773,38014634:25952256,513147,134348 -k1,11624:8083137,38014634:255677 -(1,11624:8083137,38014634:0,435480,115847 -r1,11639:9496538,38014634:1413401,551327,115847 -k1,11624:8083137,38014634:-1413401 -) -(1,11624:8083137,38014634:1413401,435480,115847 -k1,11624:8083137,38014634:3277 -h1,11624:9493261,38014634:0,411205,112570 -) -k1,11624:9925885,38014634:255677 -k1,11624:10864448,38014634:255678 -k1,11624:14569285,38014634:255677 -k1,11624:17571576,38014634:255677 -k1,11624:19394874,38014634:255677 -k1,11624:22230703,38014634:255677 -k1,11624:24822738,38014634:255678 -k1,11624:27090370,38014634:255677 -k1,11624:31116333,38014634:255677 -k1,11624:32583029,38014634:0 -) -(1,11625:6630773,38856122:25952256,513147,126483 -k1,11624:7624851,38856122:184708 -k1,11624:8828645,38856122:184709 -k1,11624:10046856,38856122:184708 -k1,11624:11423010,38856122:184709 -k1,11624:12731660,38856122:184708 -k1,11624:14107814,38856122:184709 -k1,11624:16916584,38856122:184708 -k1,11624:18086954,38856122:184709 -k1,11624:19312374,38856122:184708 -k1,11624:20113121,38856122:184709 -k1,11624:21283490,38856122:184708 -k1,11624:22516119,38856122:184709 -(1,11624:22723213,38856122:0,414482,115847 -r1,11639:23081479,38856122:358266,530329,115847 -k1,11624:22723213,38856122:-358266 -) -(1,11624:22723213,38856122:358266,414482,115847 -k1,11624:22723213,38856122:3277 -h1,11624:23078202,38856122:0,411205,112570 -) -k1,11624:23646951,38856122:184708 -k1,11624:24517822,38856122:184709 -k1,11624:28436116,38856122:184708 -k1,11624:29568476,38856122:184709 -k1,11624:30772269,38856122:184708 -k1,11624:32583029,38856122:0 -) -(1,11625:6630773,39697610:25952256,505283,134348 -k1,11625:32583030,39697610:23819060 -g1,11625:32583030,39697610 -) -(1,11627:6630773,40539098:25952256,505283,134348 -h1,11626:6630773,40539098:983040,0,0 -k1,11626:10874288,40539098:181594 -k1,11626:12791275,40539098:181594 -k1,11626:13991955,40539098:181595 -k1,11626:16848729,40539098:181594 -k1,11626:19950607,40539098:181594 -k1,11626:21151286,40539098:181594 -k1,11626:22722899,40539098:181594 -k1,11626:23520531,40539098:181594 -k1,11626:24721211,40539098:181595 -k1,11626:27657283,40539098:181594 -k1,11626:29809545,40539098:181594 -k1,11627:32583029,40539098:0 -k1,11627:32583029,40539098:0 -) -v1,11629:6630773,41729564:0,393216,0 -(1,11633:6630773,42038369:25952256,702021,196608 -g1,11633:6630773,42038369 -g1,11633:6630773,42038369 -g1,11633:6434165,42038369 -(1,11633:6434165,42038369:0,702021,196608 -r1,11639:32779637,42038369:26345472,898629,196608 -k1,11633:6434165,42038369:-26345472 -) -(1,11633:6434165,42038369:26345472,702021,196608 -[1,11633:6630773,42038369:25952256,505413,0 -(1,11631:6630773,41937182:25952256,404226,101187 -(1,11630:6630773,41937182:0,0,0 -g1,11630:6630773,41937182 -g1,11630:6630773,41937182 -g1,11630:6303093,41937182 -(1,11630:6303093,41937182:0,0,0 -) -g1,11630:6630773,41937182 -) -g1,11631:9159939,41937182 -g1,11631:10740667,41937182 -g1,11631:13269833,41937182 -g1,11631:14850561,41937182 -g1,11631:17063581,41937182 -g1,11631:18012019,41937182 -h1,11631:20857330,41937182:0,0,0 -k1,11631:32583029,41937182:11725699 -g1,11631:32583029,41937182 -) -] -) -g1,11633:32583029,42038369 -g1,11633:6630773,42038369 -g1,11633:6630773,42038369 -g1,11633:32583029,42038369 -g1,11633:32583029,42038369 -) -h1,11633:6630773,42234977:0,0,0 -(1,11637:6630773,43600753:25952256,513147,134348 -h1,11636:6630773,43600753:983040,0,0 -k1,11636:10751960,43600753:203445 -k1,11636:11641566,43600753:203444 -k1,11636:14591625,43600753:203445 -(1,11636:14591625,43600753:0,435480,115847 -r1,11639:15653314,43600753:1061689,551327,115847 -k1,11636:14591625,43600753:-1061689 -) -(1,11636:14591625,43600753:1061689,435480,115847 -k1,11636:14591625,43600753:3277 -h1,11636:15650037,43600753:0,411205,112570 -) -k1,11636:15856759,43600753:203445 -k1,11636:17627825,43600753:203445 -k1,11636:20776456,43600753:203444 -k1,11636:24401536,43600753:203445 -k1,11636:25624066,43600753:203445 -(1,11636:25624066,43600753:0,414482,115847 -r1,11639:25982332,43600753:358266,530329,115847 -k1,11636:25624066,43600753:-358266 -) -(1,11636:25624066,43600753:358266,414482,115847 -k1,11636:25624066,43600753:3277 -h1,11636:25979055,43600753:0,411205,112570 -) -k1,11636:26185776,43600753:203444 -k1,11636:30122807,43600753:203445 -k1,11636:32583029,43600753:0 -) -(1,11637:6630773,44442241:25952256,513147,134348 -k1,11636:9834796,44442241:170361 -k1,11636:10793556,44442241:170362 -k1,11636:12230073,44442241:170361 -k1,11636:13419519,44442241:170361 -k1,11636:15086068,44442241:170362 -k1,11636:17124860,44442241:170361 -k1,11636:19214115,44442241:170361 -(1,11636:19214115,44442241:0,435480,115847 -r1,11639:20627516,44442241:1413401,551327,115847 -k1,11636:19214115,44442241:-1413401 -) -(1,11636:19214115,44442241:1413401,435480,115847 -k1,11636:19214115,44442241:3277 -h1,11636:20624239,44442241:0,411205,112570 -) -k1,11636:20797878,44442241:170362 -k1,11636:22175412,44442241:170361 -k1,11636:25064863,44442241:170362 -k1,11636:25996752,44442241:170361 -(1,11636:25996752,44442241:0,435480,115847 -r1,11639:27058441,44442241:1061689,551327,115847 -k1,11636:25996752,44442241:-1061689 -) -(1,11636:25996752,44442241:1061689,435480,115847 -k1,11636:25996752,44442241:3277 -h1,11636:27055164,44442241:0,411205,112570 -) -k1,11636:27228802,44442241:170361 -k1,11636:29740110,44442241:170362 -k1,11636:30929556,44442241:170361 -k1,11636:32583029,44442241:0 -) -(1,11637:6630773,45283729:25952256,505283,7863 -g1,11636:8510345,45283729 -g1,11636:9395736,45283729 -g1,11636:10879471,45283729 -k1,11637:32583030,45283729:19674564 -g1,11637:32583030,45283729 -) -] -(1,11639:32583029,45706769:0,0,0 -g1,11639:32583029,45706769 -) -) -] -(1,11639:6630773,47279633:25952256,0,0 -h1,11639:6630773,47279633:25952256,0,0 -) -] -(1,11639:4262630,4025873:0,0,0 -[1,11639:-473656,4025873:0,0,0 -(1,11639:-473656,-710413:0,0,0 -(1,11639:-473656,-710413:0,0,0 -g1,11639:-473656,-710413 -) -g1,11639:-473656,-710413 -) -] -) -] -!25644 -}218 -Input:1607:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1608:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1609:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1610:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1611:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1612:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1613:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1614:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1615:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1616:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1617:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1618:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1619:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1620:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1621:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1622:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1484 -{219 -[1,11726:4262630,47279633:28320399,43253760,0 -(1,11726:4262630,4025873:0,0,0 -[1,11726:-473656,4025873:0,0,0 -(1,11726:-473656,-710413:0,0,0 -(1,11726:-473656,-644877:0,0,0 -k1,11726:-473656,-644877:-65536 -) -(1,11726:-473656,4736287:0,0,0 -k1,11726:-473656,4736287:5209943 -) -g1,11726:-473656,-710413 -) -] -) -[1,11726:6630773,47279633:25952256,43253760,0 -[1,11726:6630773,4812305:25952256,786432,0 -(1,11726:6630773,4812305:25952256,513147,134348 -(1,11726:6630773,4812305:25952256,513147,134348 -g1,11726:3078558,4812305 -[1,11726:3078558,4812305:0,0,0 -(1,11726:3078558,2439708:0,1703936,0 -k1,11726:1358238,2439708:-1720320 -(1,11088:1358238,2439708:1720320,1703936,0 -(1,11088:1358238,2439708:1179648,16384,0 -r1,11726:2537886,2439708:1179648,16384,0 -) -g1,11088:3062174,2439708 -(1,11088:3062174,2439708:16384,1703936,0 -[1,11088:3062174,2439708:25952256,1703936,0 -(1,11088:3062174,1915420:25952256,1179648,0 -(1,11088:3062174,1915420:16384,1179648,0 -r1,11726:3078558,1915420:16384,1179648,0 -) -k1,11088:29014430,1915420:25935872 -g1,11088:29014430,1915420 -) -] -) -) -) -] -[1,11726:3078558,4812305:0,0,0 -(1,11726:3078558,2439708:0,1703936,0 -g1,11726:29030814,2439708 -g1,11726:36135244,2439708 -(1,11088:36135244,2439708:1720320,1703936,0 -(1,11088:36135244,2439708:16384,1703936,0 -[1,11088:36135244,2439708:25952256,1703936,0 -(1,11088:36135244,1915420:25952256,1179648,0 -(1,11088:36135244,1915420:16384,1179648,0 -r1,11726:36151628,1915420:16384,1179648,0 -) -k1,11088:62087500,1915420:25935872 -g1,11088:62087500,1915420 -) -] -) -g1,11088:36675916,2439708 -(1,11088:36675916,2439708:1179648,16384,0 -r1,11726:37855564,2439708:1179648,16384,0 -) -) -k1,11726:3078556,2439708:-34777008 -) -] -[1,11726:3078558,4812305:0,0,0 -(1,11726:3078558,49800853:0,16384,2228224 -k1,11726:1358238,49800853:-1720320 -(1,11088:1358238,49800853:1720320,16384,2228224 -(1,11088:1358238,49800853:1179648,16384,0 -r1,11726:2537886,49800853:1179648,16384,0 -) -g1,11088:3062174,49800853 -(1,11088:3062174,52029077:16384,1703936,0 -[1,11088:3062174,52029077:25952256,1703936,0 -(1,11088:3062174,51504789:25952256,1179648,0 -(1,11088:3062174,51504789:16384,1179648,0 -r1,11726:3078558,51504789:16384,1179648,0 -) -k1,11088:29014430,51504789:25935872 -g1,11088:29014430,51504789 -) -] -) -) -) -] -[1,11726:3078558,4812305:0,0,0 -(1,11726:3078558,49800853:0,16384,2228224 -g1,11726:29030814,49800853 -g1,11726:36135244,49800853 -(1,11088:36135244,49800853:1720320,16384,2228224 -(1,11088:36135244,52029077:16384,1703936,0 -[1,11088:36135244,52029077:25952256,1703936,0 -(1,11088:36135244,51504789:25952256,1179648,0 -(1,11088:36135244,51504789:16384,1179648,0 -r1,11726:36151628,51504789:16384,1179648,0 -) -k1,11088:62087500,51504789:25935872 -g1,11088:62087500,51504789 -) -] -) -g1,11088:36675916,49800853 -(1,11088:36675916,49800853:1179648,16384,0 -r1,11726:37855564,49800853:1179648,16384,0 -) -) -k1,11726:3078556,49800853:-34777008 -) -] -g1,11726:6630773,4812305 -k1,11726:25241686,4812305:17415536 -g1,11726:26807341,4812305 -g1,11726:30339731,4812305 -g1,11726:31154998,4812305 -) -) -] -[1,11726:6630773,45706769:25952256,40108032,0 -(1,11726:6630773,45706769:25952256,40108032,0 -(1,11726:6630773,45706769:0,0,0 -g1,11726:6630773,45706769 -) -[1,11726:6630773,45706769:25952256,40108032,0 -v1,11639:6630773,6254097:0,393216,0 -(1,11647:6630773,7935628:25952256,2074747,196608 -g1,11647:6630773,7935628 -g1,11647:6630773,7935628 -g1,11647:6434165,7935628 -(1,11647:6434165,7935628:0,2074747,196608 -r1,11726:32779637,7935628:26345472,2271355,196608 -k1,11647:6434165,7935628:-26345472 -) -(1,11647:6434165,7935628:26345472,2074747,196608 -[1,11647:6630773,7935628:25952256,1878139,0 -(1,11641:6630773,6461715:25952256,404226,101187 -(1,11640:6630773,6461715:0,0,0 -g1,11640:6630773,6461715 -g1,11640:6630773,6461715 -g1,11640:6303093,6461715 -(1,11640:6303093,6461715:0,0,0 -) -g1,11640:6630773,6461715 -) -g1,11641:9159939,6461715 -g1,11641:10424522,6461715 -g1,11641:12953688,6461715 -g1,11641:14218271,6461715 -g1,11641:16431291,6461715 -g1,11641:17379729,6461715 -h1,11641:20225040,6461715:0,0,0 -k1,11641:32583029,6461715:12357989 -g1,11641:32583029,6461715 -) -(1,11642:6630773,7127893:25952256,404226,101187 -h1,11642:6630773,7127893:0,0,0 -g1,11642:13269833,7127893 -h1,11642:16431290,7127893:0,0,0 -k1,11642:32583029,7127893:16151739 -g1,11642:32583029,7127893 -) -(1,11646:6630773,7859607:25952256,404226,76021 -(1,11644:6630773,7859607:0,0,0 -g1,11644:6630773,7859607 -g1,11644:6630773,7859607 -g1,11644:6303093,7859607 -(1,11644:6303093,7859607:0,0,0 -) -g1,11644:6630773,7859607 -) -g1,11646:7579210,7859607 -g1,11646:8843793,7859607 -h1,11646:10108376,7859607:0,0,0 -k1,11646:32583028,7859607:22474652 -g1,11646:32583028,7859607 -) -] -) -g1,11647:32583029,7935628 -g1,11647:6630773,7935628 -g1,11647:6630773,7935628 -g1,11647:32583029,7935628 -g1,11647:32583029,7935628 -) -h1,11647:6630773,8132236:0,0,0 -(1,11651:6630773,9498012:25952256,513147,134348 -h1,11650:6630773,9498012:983040,0,0 -k1,11650:8579929,9498012:137086 -k1,11650:9809501,9498012:137087 -k1,11650:12693201,9498012:137086 -(1,11650:12693201,9498012:0,452978,115847 -r1,11726:13403179,9498012:709978,568825,115847 -k1,11650:12693201,9498012:-709978 -) -(1,11650:12693201,9498012:709978,452978,115847 -k1,11650:12693201,9498012:3277 -h1,11650:13399902,9498012:0,411205,112570 -) -k1,11650:13540266,9498012:137087 -k1,11650:15244973,9498012:137086 -k1,11650:15970572,9498012:137086 -k1,11650:16976011,9498012:137087 -k1,11650:18643363,9498012:137086 -k1,11650:19431878,9498012:137087 -k1,11650:20795143,9498012:137086 -k1,11650:21951314,9498012:137086 -k1,11650:23584588,9498012:137087 -k1,11650:25457067,9498012:137086 -k1,11650:25950014,9498012:137087 -k1,11650:28849443,9498012:137086 -k1,11650:32583029,9498012:0 -) -(1,11651:6630773,10339500:25952256,513147,134348 -(1,11650:6837867,10339500:0,414482,115847 -r1,11726:7196133,10339500:358266,530329,115847 -k1,11650:6837867,10339500:-358266 -) -(1,11650:6837867,10339500:358266,414482,115847 -k1,11650:6837867,10339500:3277 -h1,11650:7192856,10339500:0,411205,112570 -) -k1,11650:7602776,10339500:199549 -k1,11650:8993771,10339500:199550 -k1,11650:11620774,10339500:199549 -k1,11650:12278421,10339500:199550 -k1,11650:13164132,10339500:199549 -k1,11650:16436009,10339500:199549 -k1,11650:17286987,10339500:199550 -k1,11650:21097570,10339500:199549 -k1,11650:22058648,10339500:199550 -k1,11650:23996212,10339500:199549 -k1,11650:24811799,10339500:199549 -k1,11650:26030434,10339500:199550 -k1,11650:28925479,10339500:199549 -k1,11650:30555025,10339500:199550 -k1,11650:31563944,10339500:199549 -k1,11650:32583029,10339500:0 -) -(1,11651:6630773,11180988:25952256,505283,7863 -k1,11651:32583029,11180988:24768676 -g1,11651:32583029,11180988 -) -v1,11653:6630773,12371454:0,393216,0 -(1,11661:6630773,14052985:25952256,2074747,196608 -g1,11661:6630773,14052985 -g1,11661:6630773,14052985 -g1,11661:6434165,14052985 -(1,11661:6434165,14052985:0,2074747,196608 -r1,11726:32779637,14052985:26345472,2271355,196608 -k1,11661:6434165,14052985:-26345472 -) -(1,11661:6434165,14052985:26345472,2074747,196608 -[1,11661:6630773,14052985:25952256,1878139,0 -(1,11655:6630773,12579072:25952256,404226,101187 -(1,11654:6630773,12579072:0,0,0 -g1,11654:6630773,12579072 -g1,11654:6630773,12579072 -g1,11654:6303093,12579072 -(1,11654:6303093,12579072:0,0,0 -) -g1,11654:6630773,12579072 -) -g1,11655:9159939,12579072 -g1,11655:10108377,12579072 -g1,11655:12321398,12579072 -g1,11655:12953690,12579072 -g1,11655:13902127,12579072 -g1,11655:14850565,12579072 -g1,11655:16747440,12579072 -g1,11655:17379732,12579072 -g1,11655:18328169,12579072 -g1,11655:19276607,12579072 -h1,11655:22121918,12579072:0,0,0 -k1,11655:32583029,12579072:10461111 -g1,11655:32583029,12579072 -) -(1,11656:6630773,13245250:25952256,404226,101187 -h1,11656:6630773,13245250:0,0,0 -g1,11656:13269833,13245250 -h1,11656:16431290,13245250:0,0,0 -k1,11656:32583029,13245250:16151739 -g1,11656:32583029,13245250 -) -(1,11660:6630773,13976964:25952256,404226,76021 -(1,11658:6630773,13976964:0,0,0 -g1,11658:6630773,13976964 -g1,11658:6630773,13976964 -g1,11658:6303093,13976964 -(1,11658:6303093,13976964:0,0,0 -) -g1,11658:6630773,13976964 -) -g1,11660:7579210,13976964 -g1,11660:8843793,13976964 -h1,11660:10108376,13976964:0,0,0 -k1,11660:32583028,13976964:22474652 -g1,11660:32583028,13976964 -) -] -) -g1,11661:32583029,14052985 -g1,11661:6630773,14052985 -g1,11661:6630773,14052985 -g1,11661:32583029,14052985 -g1,11661:32583029,14052985 -) -h1,11661:6630773,14249593:0,0,0 -v1,11665:6630773,16139657:0,393216,0 -(1,11678:6630773,31525363:25952256,15778922,616038 -g1,11678:6630773,31525363 -(1,11678:6630773,31525363:25952256,15778922,616038 -(1,11678:6630773,32141401:25952256,16394960,0 -[1,11678:6630773,32141401:25952256,16394960,0 -(1,11678:6630773,32115187:25952256,16342532,0 -r1,11726:6656987,32115187:26214,16342532,0 -[1,11678:6656987,32115187:25899828,16342532,0 -(1,11678:6656987,31525363:25899828,15162884,0 -[1,11678:7246811,31525363:24720180,15162884,0 -(1,11666:7246811,17524364:24720180,1161885,196608 -(1,11665:7246811,17524364:0,1161885,196608 -r1,11726:8794447,17524364:1547636,1358493,196608 -k1,11665:7246811,17524364:-1547636 -) -(1,11665:7246811,17524364:1547636,1161885,196608 -) -k1,11665:8940565,17524364:146118 -k1,11665:10283370,17524364:146118 -k1,11665:12518119,17524364:146117 -k1,11665:13323529,17524364:146118 -k1,11665:14418608,17524364:146118 -k1,11665:16498038,17524364:146118 -k1,11665:18364476,17524364:146118 -k1,11665:19611599,17524364:146118 -k1,11665:22723220,17524364:146117 -k1,11665:24436959,17524364:146118 -k1,11665:25602162,17524364:146118 -k1,11665:29161395,17524364:146118 -k1,11665:31966991,17524364:0 -) -(1,11666:7246811,18365852:24720180,505283,134348 -k1,11665:8209971,18365852:201632 -k1,11665:10445186,18365852:201633 -k1,11665:16033877,18365852:201632 -k1,11665:17426954,18365852:201632 -k1,11665:19366602,18365852:201633 -k1,11665:20898615,18365852:201632 -k1,11665:22422108,18365852:201632 -k1,11665:23642826,18365852:201633 -k1,11665:26860425,18365852:201632 -k1,11665:27930409,18365852:201632 -k1,11665:29236324,18365852:201633 -k1,11665:31508894,18365852:201632 -k1,11665:31966991,18365852:0 -) -(1,11666:7246811,19207340:24720180,513147,134348 -k1,11665:8105750,19207340:207511 -k1,11665:10756443,19207340:207511 -k1,11665:11983038,19207340:207510 -k1,11665:15169816,19207340:207511 -k1,11665:16534037,19207340:207511 -k1,11665:18231837,19207340:207511 -k1,11665:19227746,19207340:207511 -k1,11665:24492015,19207340:207511 -k1,11665:25231022,19207340:207510 -k1,11665:27508160,19207340:207511 -k1,11665:28912358,19207340:207511 -k1,11665:31966991,19207340:0 -) -(1,11666:7246811,20048828:24720180,513147,134348 -k1,11665:8072862,20048828:166759 -k1,11665:9258707,20048828:166760 -k1,11665:11080250,20048828:166759 -k1,11665:16634069,20048828:166760 -k1,11665:18276043,20048828:166759 -k1,11665:19094231,20048828:166760 -k1,11665:20953130,20048828:166759 -k1,11665:23108252,20048828:166760 -k1,11665:26361101,20048828:166759 -k1,11665:27143899,20048828:166760 -k1,11665:28819297,20048828:166759 -k1,11665:31966991,20048828:0 -) -(1,11666:7246811,20890316:24720180,513147,126483 -g1,11665:11966714,20890316 -g1,11665:13858083,20890316 -g1,11665:17573974,20890316 -g1,11665:18764763,20890316 -g1,11665:20614189,20890316 -g1,11665:22255865,20890316 -k1,11666:31966991,20890316:6693193 -g1,11666:31966991,20890316 -) -(1,11668:7246811,21731804:24720180,513147,126483 -h1,11667:7246811,21731804:983040,0,0 -k1,11667:9656256,21731804:229718 -k1,11667:11970019,21731804:229718 -k1,11667:12859030,21731804:229719 -k1,11667:16165663,21731804:229718 -(1,11667:16165663,21731804:0,452978,115847 -r1,11726:16875641,21731804:709978,568825,115847 -k1,11667:16165663,21731804:-709978 -) -(1,11667:16165663,21731804:709978,452978,115847 -k1,11667:16165663,21731804:3277 -h1,11667:16872364,21731804:0,411205,112570 -) -k1,11667:17105359,21731804:229718 -k1,11667:18526522,21731804:229718 -(1,11667:18526522,21731804:0,435480,115847 -r1,11726:19588211,21731804:1061689,551327,115847 -k1,11667:18526522,21731804:-1061689 -) -(1,11667:18526522,21731804:1061689,435480,115847 -k1,11667:18526522,21731804:3277 -h1,11667:19584934,21731804:0,411205,112570 -) -k1,11667:19817930,21731804:229719 -k1,11667:20579145,21731804:229718 -k1,11667:21875134,21731804:229718 -k1,11667:25015306,21731804:229718 -k1,11667:26724172,21731804:229718 -k1,11667:27902852,21731804:229719 -(1,11667:27902852,21731804:0,452978,115847 -r1,11726:28612830,21731804:709978,568825,115847 -k1,11667:27902852,21731804:-709978 -) -(1,11667:27902852,21731804:709978,452978,115847 -k1,11667:27902852,21731804:3277 -h1,11667:28609553,21731804:0,411205,112570 -) -k1,11667:28842548,21731804:229718 -k1,11667:30091351,21731804:229718 -k1,11668:31966991,21731804:0 -) -(1,11668:7246811,22573292:24720180,505283,134348 -k1,11667:9496830,22573292:179081 -(1,11667:9496830,22573292:0,414482,115847 -r1,11726:9855096,22573292:358266,530329,115847 -k1,11667:9496830,22573292:-358266 -) -(1,11667:9496830,22573292:358266,414482,115847 -k1,11667:9496830,22573292:3277 -h1,11667:9851819,22573292:0,411205,112570 -) -k1,11667:10034176,22573292:179080 -k1,11667:11317539,22573292:179081 -k1,11667:12244385,22573292:179080 -k1,11667:13799067,22573292:179081 -k1,11667:16183435,22573292:179081 -k1,11667:17013943,22573292:179080 -k1,11667:20804058,22573292:179081 -k1,11667:21744667,22573292:179081 -k1,11667:23835432,22573292:179080 -k1,11667:25704031,22573292:179081 -k1,11667:27277062,22573292:179080 -k1,11667:30905302,22573292:179081 -(1,11667:30905302,22573292:0,435480,115847 -r1,11726:31966991,22573292:1061689,551327,115847 -k1,11667:30905302,22573292:-1061689 -) -(1,11667:30905302,22573292:1061689,435480,115847 -k1,11667:30905302,22573292:3277 -h1,11667:31963714,22573292:0,411205,112570 -) -k1,11667:31966991,22573292:0 -) -(1,11668:7246811,23414780:24720180,505283,134348 -k1,11667:8424415,23414780:158519 -k1,11667:12316520,23414780:158519 -(1,11667:12316520,23414780:0,414482,115847 -r1,11726:12674786,23414780:358266,530329,115847 -k1,11667:12316520,23414780:-358266 -) -(1,11667:12316520,23414780:358266,414482,115847 -k1,11667:12316520,23414780:3277 -h1,11667:12671509,23414780:0,411205,112570 -) -k1,11667:12833305,23414780:158519 -k1,11667:14096105,23414780:158518 -k1,11667:15002390,23414780:158519 -k1,11667:16674135,23414780:158519 -k1,11667:17484082,23414780:158519 -k1,11667:19079806,23414780:158519 -k1,11667:22640954,23414780:158519 -k1,11667:24266169,23414780:158519 -k1,11667:25186215,23414780:158518 -k1,11667:27082749,23414780:158519 -k1,11667:28432713,23414780:158519 -k1,11667:29352760,23414780:158519 -k1,11667:31966991,23414780:0 -) -(1,11668:7246811,24256268:24720180,513147,126483 -k1,11667:8361845,24256268:221778 -k1,11667:9242915,24256268:221778 -k1,11667:9909659,24256268:221755 -k1,11667:12054918,24256268:221777 -k1,11667:13755844,24256268:221778 -k1,11667:16724236,24256268:221778 -(1,11667:16724236,24256268:0,435480,115847 -r1,11726:18137637,24256268:1413401,551327,115847 -k1,11667:16724236,24256268:-1413401 -) -(1,11667:16724236,24256268:1413401,435480,115847 -k1,11667:16724236,24256268:3277 -h1,11667:18134360,24256268:0,411205,112570 -) -k1,11667:18359415,24256268:221778 -k1,11667:19600277,24256268:221777 -k1,11667:20914540,24256268:221778 -k1,11667:21795610,24256268:221778 -k1,11667:23036473,24256268:221778 -k1,11667:26991836,24256268:221777 -(1,11667:26991836,24256268:0,414482,115847 -r1,11726:27350102,24256268:358266,530329,115847 -k1,11667:26991836,24256268:-358266 -) -(1,11667:26991836,24256268:358266,414482,115847 -k1,11667:26991836,24256268:3277 -h1,11667:27346825,24256268:0,411205,112570 -) -k1,11667:27571880,24256268:221778 -k1,11667:28325155,24256268:221778 -k1,11667:31966991,24256268:0 -) -(1,11668:7246811,25097756:24720180,513147,126483 -g1,11667:8637485,25097756 -g1,11667:9294811,25097756 -g1,11667:10598322,25097756 -g1,11667:11545317,25097756 -g1,11667:13949833,25097756 -g1,11667:14910590,25097756 -g1,11667:16847834,25097756 -g1,11667:17706355,25097756 -g1,11667:18667112,25097756 -g1,11667:21480572,25097756 -g1,11667:22331229,25097756 -g1,11667:23549543,25097756 -g1,11667:26444268,25097756 -g1,11667:27743191,25097756 -g1,11667:28751790,25097756 -g1,11667:29970104,25097756 -k1,11668:31966991,25097756:813307 -g1,11668:31966991,25097756 -) -(1,11670:7246811,25939244:24720180,513147,126483 -h1,11669:7246811,25939244:983040,0,0 -k1,11669:9021432,25939244:163746 -k1,11669:10204264,25939244:163747 -k1,11669:11735091,25939244:163746 -k1,11669:12558129,25939244:163746 -k1,11669:13340536,25939244:163747 -k1,11669:14523367,25939244:163746 -k1,11669:16077132,25939244:163746 -k1,11669:16772376,25939244:163747 -k1,11669:20979693,25939244:163746 -k1,11669:21499300,25939244:163747 -k1,11669:25536224,25939244:163746 -k1,11669:27093921,25939244:163746 -k1,11669:28067038,25939244:163747 -k1,11669:31307699,25939244:163746 -k1,11669:31966991,25939244:0 -) -(1,11670:7246811,26780732:24720180,505283,126483 -k1,11669:8436510,26780732:170614 -k1,11669:10691170,26780732:170615 -k1,11669:11544669,26780732:170614 -k1,11669:15018954,26780732:170615 -k1,11669:17102564,26780732:170614 -k1,11669:18222140,26780732:170615 -k1,11669:20326066,26780732:170614 -k1,11669:22217001,26780732:170615 -k1,11669:25183381,26780732:170614 -k1,11669:29200959,26780732:170615 -k1,11669:30765524,26780732:170614 -k1,11669:31350953,26780732:170586 -k1,11669:31966991,26780732:0 -) -(1,11670:7246811,27622220:24720180,513147,126483 -k1,11669:8184194,27622220:171267 -k1,11669:10057431,27622220:171267 -k1,11669:13559239,27622220:171268 -k1,11669:15015012,27622220:171267 -k1,11669:18212076,27622220:171267 -k1,11669:19667849,27622220:171267 -k1,11669:20830677,27622220:171268 -k1,11669:21653372,27622220:171267 -k1,11669:22572405,27622220:171267 -k1,11669:25804859,27622220:171267 -k1,11669:27068612,27622220:171268 -k1,11669:28258964,27622220:171267 -k1,11669:31966991,27622220:0 -) -(1,11670:7246811,28463708:24720180,505283,134348 -k1,11669:9735749,28463708:231223 -k1,11669:11656490,28463708:231223 -k1,11669:14832900,28463708:231223 -k1,11669:17076078,28463708:231223 -k1,11669:18326386,28463708:231223 -k1,11669:22411781,28463708:231223 -k1,11669:23294432,28463708:231223 -k1,11669:24273421,28463708:231223 -k1,11669:26976662,28463708:231223 -k1,11669:28905923,28463708:231223 -k1,11669:30156231,28463708:231223 -k1,11669:31966991,28463708:0 -) -(1,11670:7246811,29305196:24720180,513147,134348 -g1,11669:10518368,29305196 -g1,11669:11249094,29305196 -g1,11669:12467408,29305196 -g1,11669:14042238,29305196 -g1,11669:15398177,29305196 -g1,11669:17802693,29305196 -g1,11669:18653350,29305196 -g1,11669:19871664,29305196 -g1,11669:22766389,29305196 -g1,11669:24065312,29305196 -g1,11669:25073911,29305196 -k1,11670:31966991,29305196:5709500 -g1,11670:31966991,29305196 -) -v1,11672:7246811,30495662:0,393216,0 -(1,11676:7246811,30804467:24720180,702021,196608 -g1,11676:7246811,30804467 -g1,11676:7246811,30804467 -g1,11676:7050203,30804467 -(1,11676:7050203,30804467:0,702021,196608 -r1,11726:32163599,30804467:25113396,898629,196608 -k1,11676:7050203,30804467:-25113396 -) -(1,11676:7050203,30804467:25113396,702021,196608 -[1,11676:7246811,30804467:24720180,505413,0 -(1,11674:7246811,30703280:24720180,404226,101187 -(1,11673:7246811,30703280:0,0,0 -g1,11673:7246811,30703280 -g1,11673:7246811,30703280 -g1,11673:6919131,30703280 -(1,11673:6919131,30703280:0,0,0 -) -g1,11673:7246811,30703280 -) -g1,11674:9775977,30703280 -g1,11674:11040560,30703280 -g1,11674:12621289,30703280 -g1,11674:13885872,30703280 -g1,11674:15150455,30703280 -g1,11674:16098893,30703280 -h1,11674:18628058,30703280:0,0,0 -k1,11674:31966991,30703280:13338933 -g1,11674:31966991,30703280 -) -] -) -g1,11676:31966991,30804467 -g1,11676:7246811,30804467 -g1,11676:7246811,30804467 -g1,11676:31966991,30804467 -g1,11676:31966991,30804467 -) -h1,11676:7246811,31001075:0,0,0 -] -) -] -r1,11726:32583029,32115187:26214,16342532,0 -) -] -) -) -g1,11678:32583029,31525363 -) -h1,11678:6630773,32141401:0,0,0 -v1,11681:6630773,33507177:0,393216,0 -(1,11726:6630773,44842985:25952256,11729024,589824 -g1,11726:6630773,44842985 -(1,11726:6630773,44842985:25952256,11729024,589824 -(1,11726:6630773,45432809:25952256,12318848,0 -[1,11726:6630773,45432809:25952256,12318848,0 -(1,11726:6630773,45432809:25952256,12292634,0 -r1,11726:6656987,45432809:26214,12292634,0 -[1,11726:6656987,45432809:25899828,12292634,0 -(1,11726:6656987,44842985:25899828,11112986,0 -[1,11726:7246811,44842985:24720180,11112986,0 -(1,11682:7246811,34815535:24720180,1085536,298548 -(1,11681:7246811,34815535:0,1085536,298548 -r1,11726:8753226,34815535:1506415,1384084,298548 -k1,11681:7246811,34815535:-1506415 -) -(1,11681:7246811,34815535:1506415,1085536,298548 -) -k1,11681:9107143,34815535:353917 -k1,11681:10088896,34815535:353918 -k1,11681:12134953,34815535:353917 -k1,11681:15645739,34815535:353917 -k1,11681:17018741,34815535:353917 -k1,11681:20562952,34815535:353918 -k1,11681:21576161,34815535:353917 -k1,11681:22949163,34815535:353917 -k1,11681:26049695,34815535:353918 -(1,11681:26049695,34815535:0,435480,115847 -r1,11726:27111384,34815535:1061689,551327,115847 -k1,11681:26049695,34815535:-1061689 -) -(1,11681:26049695,34815535:1061689,435480,115847 -k1,11681:26049695,34815535:3277 -h1,11681:27108107,34815535:0,411205,112570 -) -k1,11681:27465301,34815535:353917 -k1,11681:29386839,34815535:353917 -k1,11681:31966991,34815535:0 -) -(1,11682:7246811,35657023:24720180,505283,134348 -k1,11681:10342576,35657023:150578 -k1,11681:11597437,35657023:150579 -k1,11681:13970996,35657023:150578 -k1,11681:18530182,35657023:150579 -k1,11681:19952158,35657023:150578 -k1,11681:22764153,35657023:150578 -k1,11681:23446229,35657023:150579 -k1,11681:27101672,35657023:150578 -k1,11681:27903679,35657023:150579 -k1,11681:29146742,35657023:150578 -(1,11681:29146742,35657023:0,452978,122846 -r1,11726:31966991,35657023:2820249,575824,122846 -k1,11681:29146742,35657023:-2820249 -) -(1,11681:29146742,35657023:2820249,452978,122846 -k1,11681:29146742,35657023:3277 -h1,11681:31963714,35657023:0,411205,112570 -) -k1,11681:31966991,35657023:0 -) -(1,11682:7246811,36498511:24720180,473825,126483 -g1,11681:8062078,36498511 -g1,11681:8617167,36498511 -k1,11682:31966992,36498511:21786136 -g1,11682:31966992,36498511 -) -v1,11684:7246811,37688977:0,393216,0 -(1,11692:7246811,39370508:24720180,2074747,196608 -g1,11692:7246811,39370508 -g1,11692:7246811,39370508 -g1,11692:7050203,39370508 -(1,11692:7050203,39370508:0,2074747,196608 -r1,11726:32163599,39370508:25113396,2271355,196608 -k1,11692:7050203,39370508:-25113396 -) -(1,11692:7050203,39370508:25113396,2074747,196608 -[1,11692:7246811,39370508:24720180,1878139,0 -(1,11686:7246811,37896595:24720180,404226,107478 -(1,11685:7246811,37896595:0,0,0 -g1,11685:7246811,37896595 -g1,11685:7246811,37896595 -g1,11685:6919131,37896595 -(1,11685:6919131,37896595:0,0,0 -) -g1,11685:7246811,37896595 -) -g1,11686:9775977,37896595 -g1,11686:10724415,37896595 -g1,11686:13569727,37896595 -g1,11686:14202019,37896595 -g1,11686:18311913,37896595 -g1,11686:20208787,37896595 -g1,11686:20841079,37896595 -h1,11686:21473370,37896595:0,0,0 -k1,11686:31966991,37896595:10493621 -g1,11686:31966991,37896595 -) -(1,11687:7246811,38562773:24720180,404226,101187 -h1,11687:7246811,38562773:0,0,0 -g1,11687:13253579,38562773 -h1,11687:16415036,38562773:0,0,0 -k1,11687:31966991,38562773:15551955 -g1,11687:31966991,38562773 -) -(1,11691:7246811,39294487:24720180,404226,76021 -(1,11689:7246811,39294487:0,0,0 -g1,11689:7246811,39294487 -g1,11689:7246811,39294487 -g1,11689:6919131,39294487 -(1,11689:6919131,39294487:0,0,0 -) -g1,11689:7246811,39294487 -) -g1,11691:8195248,39294487 -g1,11691:9459831,39294487 -h1,11691:10724414,39294487:0,0,0 -k1,11691:31966990,39294487:21242576 -g1,11691:31966990,39294487 -) -] -) -g1,11692:31966991,39370508 -g1,11692:7246811,39370508 -g1,11692:7246811,39370508 -g1,11692:31966991,39370508 -g1,11692:31966991,39370508 -) -h1,11692:7246811,39567116:0,0,0 -(1,11696:7246811,40932892:24720180,513147,134348 -h1,11695:7246811,40932892:983040,0,0 -k1,11695:10813061,40932892:347122 -k1,11695:14562813,40932892:347123 -k1,11695:15901495,40932892:347122 -k1,11695:17534433,40932892:347122 -k1,11695:21176051,40932892:347123 -k1,11695:22917124,40932892:347122 -k1,11695:24283331,40932892:347122 -k1,11695:27305634,40932892:347123 -k1,11695:30399370,40932892:347122 -k1,11695:31966991,40932892:0 -) -(1,11696:7246811,41774380:24720180,505283,134348 -g1,11695:9608727,41774380 -g1,11695:12641077,41774380 -g1,11695:13456344,41774380 -g1,11695:14674658,41774380 -g1,11695:17712907,41774380 -k1,11696:31966991,41774380:11320693 -g1,11696:31966991,41774380 -) -v1,11698:7246811,42964846:0,393216,0 -(1,11706:7246811,44646377:24720180,2074747,196608 -g1,11706:7246811,44646377 -g1,11706:7246811,44646377 -g1,11706:7050203,44646377 -(1,11706:7050203,44646377:0,2074747,196608 -r1,11726:32163599,44646377:25113396,2271355,196608 -k1,11706:7050203,44646377:-25113396 -) -(1,11706:7050203,44646377:25113396,2074747,196608 -[1,11706:7246811,44646377:24720180,1878139,0 -(1,11700:7246811,43172464:24720180,404226,107478 -(1,11699:7246811,43172464:0,0,0 -g1,11699:7246811,43172464 -g1,11699:7246811,43172464 -g1,11699:6919131,43172464 -(1,11699:6919131,43172464:0,0,0 -) -g1,11699:7246811,43172464 -) -g1,11700:9775977,43172464 -g1,11700:11356705,43172464 -g1,11700:14202017,43172464 -g1,11700:14834309,43172464 -g1,11700:18944203,43172464 -g1,11700:20841077,43172464 -g1,11700:21473369,43172464 -h1,11700:22105660,43172464:0,0,0 -k1,11700:31966991,43172464:9861331 -g1,11700:31966991,43172464 -) -(1,11701:7246811,43838642:24720180,404226,101187 -h1,11701:7246811,43838642:0,0,0 -g1,11701:13253579,43838642 -h1,11701:16415036,43838642:0,0,0 -k1,11701:31966991,43838642:15551955 -g1,11701:31966991,43838642 -) -(1,11705:7246811,44570356:24720180,404226,76021 -(1,11703:7246811,44570356:0,0,0 -g1,11703:7246811,44570356 -g1,11703:7246811,44570356 -g1,11703:6919131,44570356 -(1,11703:6919131,44570356:0,0,0 -) -g1,11703:7246811,44570356 -) -g1,11705:8195248,44570356 -g1,11705:9459831,44570356 -h1,11705:10724414,44570356:0,0,0 -k1,11705:31966990,44570356:21242576 -g1,11705:31966990,44570356 -) -] -) -g1,11706:31966991,44646377 -g1,11706:7246811,44646377 -g1,11706:7246811,44646377 -g1,11706:31966991,44646377 -g1,11706:31966991,44646377 -) -h1,11706:7246811,44842985:0,0,0 -] -) -] -r1,11726:32583029,45432809:26214,12292634,0 -) -] -) -) -g1,11726:32583029,44842985 -) -] -(1,11726:32583029,45706769:0,0,0 -g1,11726:32583029,45706769 -) -) -] -(1,11726:6630773,47279633:25952256,0,0 -h1,11726:6630773,47279633:25952256,0,0 -) -] -(1,11726:4262630,4025873:0,0,0 -[1,11726:-473656,4025873:0,0,0 -(1,11726:-473656,-710413:0,0,0 -(1,11726:-473656,-710413:0,0,0 -g1,11726:-473656,-710413 -) -g1,11726:-473656,-710413 -) -] -) -] -!26083 -}219 -Input:1623:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1624:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1625:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1626:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1627:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1628:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1629:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1630:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1631:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1632:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1633:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1634:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1635:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1636:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1637:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1638:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1484 -{220 -[1,11786:4262630,47279633:28320399,43253760,0 -(1,11786:4262630,4025873:0,0,0 -[1,11786:-473656,4025873:0,0,0 -(1,11786:-473656,-710413:0,0,0 -(1,11786:-473656,-644877:0,0,0 -k1,11786:-473656,-644877:-65536 -) -(1,11786:-473656,4736287:0,0,0 -k1,11786:-473656,4736287:5209943 -) -g1,11786:-473656,-710413 -) -] -) -[1,11786:6630773,47279633:25952256,43253760,0 -[1,11786:6630773,4812305:25952256,786432,0 -(1,11786:6630773,4812305:25952256,485622,126483 -(1,11786:6630773,4812305:25952256,485622,126483 -g1,11786:3078558,4812305 -[1,11786:3078558,4812305:0,0,0 -(1,11786:3078558,2439708:0,1703936,0 -k1,11786:1358238,2439708:-1720320 -(1,11088:1358238,2439708:1720320,1703936,0 -(1,11088:1358238,2439708:1179648,16384,0 -r1,11786:2537886,2439708:1179648,16384,0 -) -g1,11088:3062174,2439708 -(1,11088:3062174,2439708:16384,1703936,0 -[1,11088:3062174,2439708:25952256,1703936,0 -(1,11088:3062174,1915420:25952256,1179648,0 -(1,11088:3062174,1915420:16384,1179648,0 -r1,11786:3078558,1915420:16384,1179648,0 -) -k1,11088:29014430,1915420:25935872 -g1,11088:29014430,1915420 -) -] -) -) -) -] -[1,11786:3078558,4812305:0,0,0 -(1,11786:3078558,2439708:0,1703936,0 -g1,11786:29030814,2439708 -g1,11786:36135244,2439708 -(1,11088:36135244,2439708:1720320,1703936,0 -(1,11088:36135244,2439708:16384,1703936,0 -[1,11088:36135244,2439708:25952256,1703936,0 -(1,11088:36135244,1915420:25952256,1179648,0 -(1,11088:36135244,1915420:16384,1179648,0 -r1,11786:36151628,1915420:16384,1179648,0 -) -k1,11088:62087500,1915420:25935872 -g1,11088:62087500,1915420 -) -] -) -g1,11088:36675916,2439708 -(1,11088:36675916,2439708:1179648,16384,0 -r1,11786:37855564,2439708:1179648,16384,0 -) -) -k1,11786:3078556,2439708:-34777008 -) -] -[1,11786:3078558,4812305:0,0,0 -(1,11786:3078558,49800853:0,16384,2228224 -k1,11786:1358238,49800853:-1720320 -(1,11088:1358238,49800853:1720320,16384,2228224 -(1,11088:1358238,49800853:1179648,16384,0 -r1,11786:2537886,49800853:1179648,16384,0 -) -g1,11088:3062174,49800853 -(1,11088:3062174,52029077:16384,1703936,0 -[1,11088:3062174,52029077:25952256,1703936,0 -(1,11088:3062174,51504789:25952256,1179648,0 -(1,11088:3062174,51504789:16384,1179648,0 -r1,11786:3078558,51504789:16384,1179648,0 -) -k1,11088:29014430,51504789:25935872 -g1,11088:29014430,51504789 -) -] -) -) -) -] -[1,11786:3078558,4812305:0,0,0 -(1,11786:3078558,49800853:0,16384,2228224 -g1,11786:29030814,49800853 -g1,11786:36135244,49800853 -(1,11088:36135244,49800853:1720320,16384,2228224 -(1,11088:36135244,52029077:16384,1703936,0 -[1,11088:36135244,52029077:25952256,1703936,0 -(1,11088:36135244,51504789:25952256,1179648,0 -(1,11088:36135244,51504789:16384,1179648,0 -r1,11786:36151628,51504789:16384,1179648,0 -) -k1,11088:62087500,51504789:25935872 -g1,11088:62087500,51504789 -) -] -) -g1,11088:36675916,49800853 -(1,11088:36675916,49800853:1179648,16384,0 -r1,11786:37855564,49800853:1179648,16384,0 -) -) -k1,11786:3078556,49800853:-34777008 -) -] -g1,11786:6630773,4812305 -g1,11786:6630773,4812305 -g1,11786:8364200,4812305 -g1,11786:10177581,4812305 -k1,11786:31387653,4812305:21210072 -) -) -] -[1,11786:6630773,45706769:25952256,40108032,0 -(1,11786:6630773,45706769:25952256,40108032,0 -(1,11786:6630773,45706769:0,0,0 -g1,11786:6630773,45706769 -) -[1,11786:6630773,45706769:25952256,40108032,0 -v1,11726:6630773,6254097:0,393216,0 -(1,11726:6630773,15745921:25952256,9885040,616038 -g1,11726:6630773,15745921 -(1,11726:6630773,15745921:25952256,9885040,616038 -(1,11726:6630773,16361959:25952256,10501078,0 -[1,11726:6630773,16361959:25952256,10501078,0 -(1,11726:6630773,16335745:25952256,10474864,0 -r1,11786:6656987,16335745:26214,10474864,0 -[1,11726:6656987,16335745:25899828,10474864,0 -(1,11726:6656987,15745921:25899828,9295216,0 -[1,11726:7246811,15745921:24720180,9295216,0 -(1,11710:7246811,6963852:24720180,513147,134348 -h1,11709:7246811,6963852:983040,0,0 -k1,11709:9041663,6963852:183977 -k1,11709:12030581,6963852:183977 -k1,11709:13233642,6963852:183976 -k1,11709:14807638,6963852:183977 -k1,11709:17738229,6963852:183977 -(1,11709:17945323,6963852:0,435480,115847 -r1,11786:19007012,6963852:1061689,551327,115847 -k1,11709:17945323,6963852:-1061689 -) -(1,11709:17945323,6963852:1061689,435480,115847 -k1,11709:17945323,6963852:3277 -h1,11709:19003735,6963852:0,411205,112570 -) -k1,11709:19398083,6963852:183977 -k1,11709:21149681,6963852:183977 -k1,11709:23913810,6963852:183977 -k1,11709:27042973,6963852:183976 -k1,11709:29548891,6963852:183977 -k1,11709:30924313,6963852:183977 -k1,11710:31966991,6963852:0 -) -(1,11710:7246811,7805340:24720180,513147,126483 -k1,11709:10944554,7805340:292492 -k1,11709:12594297,7805340:292492 -k1,11709:13538217,7805340:292492 -k1,11709:15760089,7805340:292492 -k1,11709:17071666,7805340:292492 -k1,11709:19875498,7805340:292492 -k1,11709:21115642,7805340:292493 -k1,11709:22427219,7805340:292492 -k1,11709:24373184,7805340:292492 -k1,11709:27500763,7805340:292492 -k1,11709:29174099,7805340:292492 -k1,11709:30570873,7805340:292492 -k1,11709:31611131,7805340:292492 -k1,11709:31966991,7805340:0 -) -(1,11710:7246811,8646828:24720180,505283,134348 -k1,11709:10183532,8646828:260231 -k1,11709:12141801,8646828:260231 -k1,11709:13421117,8646828:260231 -k1,11709:15419363,8646828:260231 -k1,11709:17884881,8646828:260231 -k1,11709:18831274,8646828:260231 -k1,11709:22163832,8646828:260230 -k1,11709:23075491,8646828:260231 -(1,11709:23075491,8646828:0,452978,122846 -r1,11786:25895740,8646828:2820249,575824,122846 -k1,11709:23075491,8646828:-2820249 -) -(1,11709:23075491,8646828:2820249,452978,122846 -k1,11709:23075491,8646828:3277 -h1,11709:25892463,8646828:0,411205,112570 -) -k1,11709:26659943,8646828:260231 -k1,11709:30200906,8646828:260231 -(1,11709:30200906,8646828:0,414482,115847 -r1,11786:30559172,8646828:358266,530329,115847 -k1,11709:30200906,8646828:-358266 -) -(1,11709:30200906,8646828:358266,414482,115847 -k1,11709:30200906,8646828:3277 -h1,11709:30555895,8646828:0,411205,112570 -) -k1,11709:30819403,8646828:260231 -k1,11709:31611131,8646828:260231 -k1,11709:31966991,8646828:0 -) -(1,11710:7246811,9488316:24720180,505283,134348 -g1,11709:10654683,9488316 -g1,11709:12707926,9488316 -g1,11709:16008974,9488316 -g1,11709:16666300,9488316 -g1,11709:17397026,9488316 -g1,11709:20226215,9488316 -g1,11709:21076872,9488316 -g1,11709:22368586,9488316 -g1,11709:23586900,9488316 -(1,11709:23586900,9488316:0,414482,115847 -r1,11786:24296878,9488316:709978,530329,115847 -k1,11709:23586900,9488316:-709978 -) -(1,11709:23586900,9488316:709978,414482,115847 -k1,11709:23586900,9488316:3277 -h1,11709:24293601,9488316:0,411205,112570 -) -g1,11709:24496107,9488316 -g1,11709:25346764,9488316 -g1,11709:27552705,9488316 -g1,11709:28771019,9488316 -k1,11710:31966991,9488316:1341958 -g1,11710:31966991,9488316 -) -v1,11712:7246811,10678782:0,393216,0 -(1,11724:7246811,15025025:24720180,4739459,196608 -g1,11724:7246811,15025025 -g1,11724:7246811,15025025 -g1,11724:7050203,15025025 -(1,11724:7050203,15025025:0,4739459,196608 -r1,11786:32163599,15025025:25113396,4936067,196608 -k1,11724:7050203,15025025:-25113396 -) -(1,11724:7050203,15025025:25113396,4739459,196608 -[1,11724:7246811,15025025:24720180,4542851,0 -(1,11714:7246811,10886400:24720180,404226,107478 -(1,11713:7246811,10886400:0,0,0 -g1,11713:7246811,10886400 -g1,11713:7246811,10886400 -g1,11713:6919131,10886400 -(1,11713:6919131,10886400:0,0,0 -) -g1,11713:7246811,10886400 -) -g1,11714:9775977,10886400 -g1,11714:11040560,10886400 -g1,11714:13885872,10886400 -g1,11714:14518164,10886400 -g1,11714:18628058,10886400 -g1,11714:20524932,10886400 -g1,11714:21157224,10886400 -h1,11714:21789515,10886400:0,0,0 -k1,11714:31966991,10886400:10177476 -g1,11714:31966991,10886400 -) -(1,11715:7246811,11552578:24720180,410518,76021 -h1,11715:7246811,11552578:0,0,0 -g1,11715:8195248,11552578 -g1,11715:15150453,11552578 -h1,11715:15466599,11552578:0,0,0 -k1,11715:31966991,11552578:16500392 -g1,11715:31966991,11552578 -) -(1,11716:7246811,12218756:24720180,404226,101187 -h1,11716:7246811,12218756:0,0,0 -g1,11716:7562957,12218756 -g1,11716:7879103,12218756 -g1,11716:13885871,12218756 -h1,11716:17047328,12218756:0,0,0 -k1,11716:31966991,12218756:14919663 -g1,11716:31966991,12218756 -) -(1,11717:7246811,12884934:24720180,404226,76021 -h1,11717:7246811,12884934:0,0,0 -g1,11717:7879103,12884934 -g1,11717:9459832,12884934 -h1,11717:9775978,12884934:0,0,0 -k1,11717:31966990,12884934:22191012 -g1,11717:31966990,12884934 -) -(1,11718:7246811,13551112:24720180,410518,101187 -h1,11718:7246811,13551112:0,0,0 -g1,11718:7562957,13551112 -g1,11718:7879103,13551112 -g1,11718:13885872,13551112 -g1,11718:15150455,13551112 -h1,11718:17679621,13551112:0,0,0 -k1,11718:31966991,13551112:14287370 -g1,11718:31966991,13551112 -) -(1,11719:7246811,14217290:24720180,404226,76021 -h1,11719:7246811,14217290:0,0,0 -h1,11719:7562957,14217290:0,0,0 -k1,11719:31966991,14217290:24404034 -g1,11719:31966991,14217290 -) -(1,11723:7246811,14949004:24720180,410518,76021 -(1,11721:7246811,14949004:0,0,0 -g1,11721:7246811,14949004 -g1,11721:7246811,14949004 -g1,11721:6919131,14949004 -(1,11721:6919131,14949004:0,0,0 -) -g1,11721:7246811,14949004 -) -g1,11723:8195248,14949004 -g1,11723:9459831,14949004 -g1,11723:13569726,14949004 -g1,11723:14834309,14949004 -h1,11723:17047329,14949004:0,0,0 -k1,11723:31966991,14949004:14919662 -g1,11723:31966991,14949004 -) -] -) -g1,11724:31966991,15025025 -g1,11724:7246811,15025025 -g1,11724:7246811,15025025 -g1,11724:31966991,15025025 -g1,11724:31966991,15025025 -) -h1,11724:7246811,15221633:0,0,0 -] -) -] -r1,11786:32583029,16335745:26214,10474864,0 -) -] -) -) -g1,11726:32583029,15745921 -) -h1,11726:6630773,16361959:0,0,0 -(1,11730:6630773,17617124:25952256,513147,126483 -h1,11729:6630773,17617124:983040,0,0 -k1,11729:9039657,17617124:229157 -k1,11729:9039657,17617124:0 -k1,11729:11943994,17617124:229157 -k1,11729:14919765,17617124:229157 -(1,11729:14919765,17617124:0,435480,115847 -r1,11786:16333166,17617124:1413401,551327,115847 -k1,11729:14919765,17617124:-1413401 -) -(1,11729:14919765,17617124:1413401,435480,115847 -k1,11729:14919765,17617124:3277 -h1,11729:16329889,17617124:0,411205,112570 -) -k1,11729:16562322,17617124:229156 -k1,11729:18359100,17617124:229157 -k1,11729:20750944,17617124:229157 -k1,11729:22992056,17617124:229157 -k1,11729:23966357,17617124:229157 -k1,11729:24846942,17617124:229157 -k1,11729:26168583,17617124:229156 -k1,11729:27416825,17617124:229157 -k1,11729:31379568,17617124:229157 -(1,11729:31379568,17617124:0,414482,115847 -r1,11786:31737834,17617124:358266,530329,115847 -k1,11729:31379568,17617124:-358266 -) -(1,11729:31379568,17617124:358266,414482,115847 -k1,11729:31379568,17617124:3277 -h1,11729:31734557,17617124:0,411205,112570 -) -k1,11729:31966991,17617124:229157 -k1,11729:32583029,17617124:0 -) -(1,11730:6630773,18458612:25952256,513147,126483 -g1,11729:10600288,18458612 -g1,11729:11608887,18458612 -g1,11729:12596514,18458612 -g1,11729:13828591,18458612 -g1,11729:14643858,18458612 -g1,11729:17509092,18458612 -g1,11729:18359749,18458612 -g1,11729:19175016,18458612 -g1,11729:22069741,18458612 -k1,11730:32583029,18458612:9083292 -g1,11730:32583029,18458612 -) -v1,11732:6630773,19538466:0,393216,0 -(1,11736:6630773,19822105:25952256,676855,196608 -g1,11736:6630773,19822105 -g1,11736:6630773,19822105 -g1,11736:6434165,19822105 -(1,11736:6434165,19822105:0,676855,196608 -r1,11786:32779637,19822105:26345472,873463,196608 -k1,11736:6434165,19822105:-26345472 -) -(1,11736:6434165,19822105:26345472,676855,196608 -[1,11736:6630773,19822105:25952256,480247,0 -(1,11734:6630773,19746084:25952256,404226,76021 -(1,11733:6630773,19746084:0,0,0 -g1,11733:6630773,19746084 -g1,11733:6630773,19746084 -g1,11733:6303093,19746084 -(1,11733:6303093,19746084:0,0,0 -) -g1,11733:6630773,19746084 -) -g1,11734:9159939,19746084 -g1,11734:10740667,19746084 -g1,11734:12637542,19746084 -g1,11734:13585980,19746084 -h1,11734:16431291,19746084:0,0,0 -k1,11734:32583029,19746084:16151738 -g1,11734:32583029,19746084 -) -] -) -g1,11736:32583029,19822105 -g1,11736:6630773,19822105 -g1,11736:6630773,19822105 -g1,11736:32583029,19822105 -g1,11736:32583029,19822105 -) -h1,11736:6630773,20018713:0,0,0 -(1,11740:6630773,21273878:25952256,513147,126483 -h1,11739:6630773,21273878:983040,0,0 -k1,11739:11221251,21273878:179905 -k1,11739:14478071,21273878:179905 -(1,11739:14478071,21273878:0,452978,115847 -r1,11786:15188049,21273878:709978,568825,115847 -k1,11739:14478071,21273878:-709978 -) -(1,11739:14478071,21273878:709978,452978,115847 -k1,11739:14478071,21273878:3277 -h1,11739:15184772,21273878:0,411205,112570 -) -k1,11739:15367954,21273878:179905 -k1,11739:16739304,21273878:179905 -(1,11739:16739304,21273878:0,435480,115847 -r1,11786:17800993,21273878:1061689,551327,115847 -k1,11739:16739304,21273878:-1061689 -) -(1,11739:16739304,21273878:1061689,435480,115847 -k1,11739:16739304,21273878:3277 -h1,11739:17797716,21273878:0,411205,112570 -) -k1,11739:17980898,21273878:179905 -k1,11739:18976072,21273878:179906 -k1,11739:20222248,21273878:179905 -k1,11739:22928566,21273878:179905 -k1,11739:27052428,21273878:179905 -k1,11739:28607934,21273878:179905 -k1,11739:31483335,21273878:179905 -k1,11739:32583029,21273878:0 -) -(1,11740:6630773,22115366:25952256,513147,134348 -k1,11739:8867567,22115366:152749 -k1,11739:9829686,22115366:152749 -k1,11739:11491074,22115366:152749 -k1,11739:12827404,22115366:152750 -k1,11739:15251631,22115366:152749 -k1,11739:16149524,22115366:152749 -k1,11739:16953701,22115366:152749 -k1,11739:18206144,22115366:152749 -k1,11739:21435808,22115366:152749 -k1,11739:22982509,22115366:152750 -k1,11739:26843285,22115366:152749 -k1,11739:29080079,22115366:152749 -k1,11739:30424273,22115366:152749 -k1,11739:32583029,22115366:0 -) -(1,11740:6630773,22956854:25952256,426639,134348 -k1,11740:32583030,22956854:22549628 -g1,11740:32583030,22956854 -) -v1,11742:6630773,24036709:0,393216,0 -(1,11750:6630773,25724532:25952256,2081039,196608 -g1,11750:6630773,25724532 -g1,11750:6630773,25724532 -g1,11750:6434165,25724532 -(1,11750:6434165,25724532:0,2081039,196608 -r1,11786:32779637,25724532:26345472,2277647,196608 -k1,11750:6434165,25724532:-26345472 -) -(1,11750:6434165,25724532:26345472,2081039,196608 -[1,11750:6630773,25724532:25952256,1884431,0 -(1,11744:6630773,24250619:25952256,410518,82312 -(1,11743:6630773,24250619:0,0,0 -g1,11743:6630773,24250619 -g1,11743:6630773,24250619 -g1,11743:6303093,24250619 -(1,11743:6303093,24250619:0,0,0 -) -g1,11743:6630773,24250619 -) -g1,11744:9159939,24250619 -g1,11744:10108377,24250619 -g1,11744:12321398,24250619 -g1,11744:12953690,24250619 -g1,11744:13902128,24250619 -g1,11744:14850565,24250619 -g1,11744:15482857,24250619 -g1,11744:16431295,24250619 -g1,11744:17379733,24250619 -h1,11744:20225044,24250619:0,0,0 -k1,11744:32583029,24250619:12357985 -g1,11744:32583029,24250619 -) -(1,11745:6630773,24916797:25952256,404226,101187 -h1,11745:6630773,24916797:0,0,0 -g1,11745:13269833,24916797 -h1,11745:16431290,24916797:0,0,0 -k1,11745:32583029,24916797:16151739 -g1,11745:32583029,24916797 -) -(1,11749:6630773,25648511:25952256,404226,76021 -(1,11747:6630773,25648511:0,0,0 -g1,11747:6630773,25648511 -g1,11747:6630773,25648511 -g1,11747:6303093,25648511 -(1,11747:6303093,25648511:0,0,0 -) -g1,11747:6630773,25648511 -) -g1,11749:7579210,25648511 -g1,11749:8843793,25648511 -h1,11749:10108376,25648511:0,0,0 -k1,11749:32583028,25648511:22474652 -g1,11749:32583028,25648511 -) -] -) -g1,11750:32583029,25724532 -g1,11750:6630773,25724532 -g1,11750:6630773,25724532 -g1,11750:32583029,25724532 -g1,11750:32583029,25724532 -) -h1,11750:6630773,25921140:0,0,0 -(1,11754:6630773,27176304:25952256,355205,7863 -h1,11753:6630773,27176304:983040,0,0 -k1,11754:32583030,27176304:24286332 -g1,11754:32583030,27176304 -) -v1,11756:6630773,28256159:0,393216,0 -(1,11764:6630773,29943982:25952256,2081039,196608 -g1,11764:6630773,29943982 -g1,11764:6630773,29943982 -g1,11764:6434165,29943982 -(1,11764:6434165,29943982:0,2081039,196608 -r1,11786:32779637,29943982:26345472,2277647,196608 -k1,11764:6434165,29943982:-26345472 -) -(1,11764:6434165,29943982:26345472,2081039,196608 -[1,11764:6630773,29943982:25952256,1884431,0 -(1,11758:6630773,28470069:25952256,410518,82312 -(1,11757:6630773,28470069:0,0,0 -g1,11757:6630773,28470069 -g1,11757:6630773,28470069 -g1,11757:6303093,28470069 -(1,11757:6303093,28470069:0,0,0 -) -g1,11757:6630773,28470069 -) -g1,11758:9159939,28470069 -g1,11758:10424522,28470069 -g1,11758:12637543,28470069 -g1,11758:13269835,28470069 -g1,11758:14218273,28470069 -g1,11758:15166710,28470069 -g1,11758:15799002,28470069 -g1,11758:16747440,28470069 -g1,11758:17695878,28470069 -h1,11758:20541189,28470069:0,0,0 -k1,11758:32583029,28470069:12041840 -g1,11758:32583029,28470069 -) -(1,11759:6630773,29136247:25952256,404226,101187 -h1,11759:6630773,29136247:0,0,0 -g1,11759:13269833,29136247 -h1,11759:16431290,29136247:0,0,0 -k1,11759:32583029,29136247:16151739 -g1,11759:32583029,29136247 -) -(1,11763:6630773,29867961:25952256,404226,76021 -(1,11761:6630773,29867961:0,0,0 -g1,11761:6630773,29867961 -g1,11761:6630773,29867961 -g1,11761:6303093,29867961 -(1,11761:6303093,29867961:0,0,0 -) -g1,11761:6630773,29867961 -) -g1,11763:7579210,29867961 -g1,11763:8843793,29867961 -h1,11763:10108376,29867961:0,0,0 -k1,11763:32583028,29867961:22474652 -g1,11763:32583028,29867961 -) -] -) -g1,11764:32583029,29943982 -g1,11764:6630773,29943982 -g1,11764:6630773,29943982 -g1,11764:32583029,29943982 -g1,11764:32583029,29943982 -) -h1,11764:6630773,30140590:0,0,0 -(1,11768:6630773,31395755:25952256,513147,134348 -h1,11767:6630773,31395755:983040,0,0 -k1,11767:8487710,31395755:246062 -k1,11767:12344806,31395755:246062 -k1,11767:13005664,31395755:246015 -k1,11767:15335771,31395755:246062 -k1,11767:16529484,31395755:246062 -k1,11767:20545832,31395755:246062 -k1,11767:21323391,31395755:246062 -k1,11767:24717147,31395755:246062 -k1,11767:26661247,31395755:246062 -k1,11767:28642702,31395755:246062 -k1,11767:29907849,31395755:246062 -k1,11767:32583029,31395755:0 -) -(1,11768:6630773,32237243:25952256,513147,134348 -k1,11767:9782617,32237243:231560 -k1,11767:11408128,32237243:231560 -k1,11767:12658773,32237243:231560 -k1,11767:14265933,32237243:231559 -k1,11767:16504205,32237243:231560 -k1,11767:18020271,32237243:231560 -k1,11767:20781521,32237243:231560 -k1,11767:21672373,32237243:231560 -k1,11767:22923018,32237243:231560 -k1,11767:25195368,32237243:231559 -k1,11767:29028131,32237243:231560 -k1,11767:29918983,32237243:231560 -k1,11767:31169628,32237243:231560 -(1,11767:31169628,32237243:0,435480,115847 -r1,11786:32583029,32237243:1413401,551327,115847 -k1,11767:31169628,32237243:-1413401 -) -(1,11767:31169628,32237243:1413401,435480,115847 -k1,11767:31169628,32237243:3277 -h1,11767:32579752,32237243:0,411205,112570 -) -k1,11767:32583029,32237243:0 -) -(1,11768:6630773,33078731:25952256,505283,134348 -k1,11767:9736822,33078731:185765 -k1,11767:10790938,33078731:185764 -k1,11767:12506969,33078731:185765 -k1,11767:13344162,33078731:185765 -k1,11767:16428584,33078731:185765 -k1,11767:18006333,33078731:185764 -k1,11767:21962384,33078731:185765 -k1,11767:25510146,33078731:185765 -k1,11767:27397881,33078731:185765 -k1,11767:30660560,33078731:185764 -k1,11767:31607853,33078731:185765 -k1,11768:32583029,33078731:0 -) -(1,11768:6630773,33920219:25952256,505283,134348 -k1,11767:9026551,33920219:141995 -k1,11767:10807600,33920219:141994 -k1,11767:11565633,33920219:141995 -k1,11767:15735471,33920219:141995 -k1,11767:16505300,33920219:141994 -k1,11767:17666380,33920219:141995 -k1,11767:20800094,33920219:141995 -k1,11767:22797412,33920219:141994 -k1,11767:23807759,33920219:141995 -k1,11767:26378518,33920219:141995 -k1,11767:26876372,33920219:141994 -k1,11767:29143044,33920219:141995 -k1,11767:32583029,33920219:0 -) -(1,11768:6630773,34761707:25952256,513147,126483 -k1,11767:7512809,34761707:157208 -k1,11767:8954523,34761707:157208 -k1,11767:9569827,34761707:157207 -k1,11767:11495852,34761707:157208 -k1,11767:12400826,34761707:157208 -k1,11767:14358963,34761707:157208 -k1,11767:17676971,34761707:157207 -k1,11767:19101645,34761707:157208 -k1,11767:19614713,34761707:157208 -k1,11767:22467417,34761707:157208 -k1,11767:23897990,34761707:157208 -k1,11767:25251884,34761707:157207 -(1,11767:25251884,34761707:0,435480,115847 -r1,11786:26665285,34761707:1413401,551327,115847 -k1,11767:25251884,34761707:-1413401 -) -(1,11767:25251884,34761707:1413401,435480,115847 -k1,11767:25251884,34761707:3277 -h1,11767:26662008,34761707:0,411205,112570 -) -k1,11767:26822493,34761707:157208 -k1,11767:29726315,34761707:157208 -k1,11767:32583029,34761707:0 -) -(1,11768:6630773,35603195:25952256,513147,126483 -g1,11767:8115818,35603195 -g1,11767:9965244,35603195 -g1,11767:12850794,35603195 -g1,11767:16993980,35603195 -g1,11767:18659905,35603195 -g1,11767:20253085,35603195 -g1,11767:23123561,35603195 -g1,11767:24745577,35603195 -g1,11767:25604098,35603195 -g1,11767:26822412,35603195 -k1,11768:32583029,35603195:1853361 -g1,11768:32583029,35603195 -) -v1,11770:6630773,36683049:0,393216,0 -(1,11778:6630773,38364580:25952256,2074747,196608 -g1,11778:6630773,38364580 -g1,11778:6630773,38364580 -g1,11778:6434165,38364580 -(1,11778:6434165,38364580:0,2074747,196608 -r1,11786:32779637,38364580:26345472,2271355,196608 -k1,11778:6434165,38364580:-26345472 -) -(1,11778:6434165,38364580:26345472,2074747,196608 -[1,11778:6630773,38364580:25952256,1878139,0 -(1,11772:6630773,36890667:25952256,404226,101187 -(1,11771:6630773,36890667:0,0,0 -g1,11771:6630773,36890667 -g1,11771:6630773,36890667 -g1,11771:6303093,36890667 -(1,11771:6303093,36890667:0,0,0 -) -g1,11771:6630773,36890667 -) -g1,11772:9159939,36890667 -g1,11772:10740667,36890667 -g1,11772:12321396,36890667 -g1,11772:12953688,36890667 -g1,11772:15166708,36890667 -g1,11772:15799000,36890667 -h1,11772:16747437,36890667:0,0,0 -k1,11772:32583029,36890667:15835592 -g1,11772:32583029,36890667 -) -(1,11777:6630773,37622381:25952256,404226,76021 -(1,11774:6630773,37622381:0,0,0 -g1,11774:6630773,37622381 -g1,11774:6630773,37622381 -g1,11774:6303093,37622381 -(1,11774:6303093,37622381:0,0,0 -) -g1,11774:6630773,37622381 -) -g1,11777:7579210,37622381 -g1,11777:7895356,37622381 -g1,11777:9159939,37622381 -g1,11777:9476085,37622381 -g1,11777:9792231,37622381 -g1,11777:12637542,37622381 -g1,11777:12953688,37622381 -g1,11777:13269834,37622381 -g1,11777:16115145,37622381 -g1,11777:16431291,37622381 -g1,11777:19592748,37622381 -g1,11777:19908894,37622381 -g1,11777:23070351,37622381 -g1,11777:23386497,37622381 -g1,11777:26547954,37622381 -g1,11777:26864100,37622381 -h1,11777:29709411,37622381:0,0,0 -k1,11777:32583029,37622381:2873618 -g1,11777:32583029,37622381 -) -(1,11777:6630773,38288559:25952256,404226,76021 -h1,11777:6630773,38288559:0,0,0 -g1,11777:7579210,38288559 -g1,11777:7895356,38288559 -g1,11777:9159939,38288559 -g1,11777:9476085,38288559 -g1,11777:12637542,38288559 -g1,11777:12953688,38288559 -g1,11777:16115145,38288559 -g1,11777:16431291,38288559 -g1,11777:19592748,38288559 -h1,11777:22754205,38288559:0,0,0 -k1,11777:32583029,38288559:9828824 -g1,11777:32583029,38288559 -) -] -) -g1,11778:32583029,38364580 -g1,11778:6630773,38364580 -g1,11778:6630773,38364580 -g1,11778:32583029,38364580 -g1,11778:32583029,38364580 -) -h1,11778:6630773,38561188:0,0,0 -(1,11782:6630773,39816353:25952256,513147,126483 -h1,11781:6630773,39816353:983040,0,0 -k1,11781:12979840,39816353:180163 -k1,11781:14179087,39816353:180162 -k1,11781:19746309,39816353:180163 -k1,11781:20585764,39816353:180163 -k1,11781:23842841,39816353:180162 -(1,11781:23842841,39816353:0,452978,115847 -r1,11786:24552819,39816353:709978,568825,115847 -k1,11781:23842841,39816353:-709978 -) -(1,11781:23842841,39816353:709978,452978,115847 -k1,11781:23842841,39816353:3277 -h1,11781:24549542,39816353:0,411205,112570 -) -k1,11781:24732982,39816353:180163 -k1,11781:26104589,39816353:180162 -(1,11781:26104589,39816353:0,435480,115847 -r1,11786:27166278,39816353:1061689,551327,115847 -k1,11781:26104589,39816353:-1061689 -) -(1,11781:26104589,39816353:1061689,435480,115847 -k1,11781:26104589,39816353:3277 -h1,11781:27163001,39816353:0,411205,112570 -) -k1,11781:27346441,39816353:180163 -k1,11781:28718049,39816353:180163 -(1,11781:28718049,39816353:0,435480,115847 -r1,11786:30131450,39816353:1413401,551327,115847 -k1,11781:28718049,39816353:-1413401 -) -(1,11781:28718049,39816353:1413401,435480,115847 -k1,11781:28718049,39816353:3277 -h1,11781:30128173,39816353:0,411205,112570 -) -k1,11781:30311612,39816353:180162 -k1,11781:31483335,39816353:180163 -k1,11782:32583029,39816353:0 -) -(1,11782:6630773,40657841:25952256,513147,126483 -k1,11781:8955132,40657841:231139 -k1,11781:10580222,40657841:231139 -(1,11781:10580222,40657841:0,452978,115847 -r1,11786:11290200,40657841:709978,568825,115847 -k1,11781:10580222,40657841:-709978 -) -(1,11781:10580222,40657841:709978,452978,115847 -k1,11781:10580222,40657841:3277 -h1,11781:11286923,40657841:0,411205,112570 -) -k1,11781:11521339,40657841:231139 -k1,11781:14591498,40657841:231139 -k1,11781:15474065,40657841:231139 -k1,11781:17180419,40657841:231139 -k1,11781:18430643,40657841:231139 -k1,11781:19996750,40657841:231139 -k1,11781:24477243,40657841:231139 -k1,11781:27461549,40657841:231139 -k1,11781:28454216,40657841:231139 -(1,11781:28454216,40657841:0,435480,115847 -r1,11786:29867617,40657841:1413401,551327,115847 -k1,11781:28454216,40657841:-1413401 -) -(1,11781:28454216,40657841:1413401,435480,115847 -k1,11781:28454216,40657841:3277 -h1,11781:29864340,40657841:0,411205,112570 -) -k1,11781:30098756,40657841:231139 -k1,11781:31521340,40657841:231139 -(1,11781:31521340,40657841:0,435480,115847 -r1,11786:32583029,40657841:1061689,551327,115847 -k1,11781:31521340,40657841:-1061689 -) -(1,11781:31521340,40657841:1061689,435480,115847 -k1,11781:31521340,40657841:3277 -h1,11781:32579752,40657841:0,411205,112570 -) -k1,11781:32583029,40657841:0 -) -(1,11782:6630773,41499329:25952256,513147,134348 -k1,11781:8522433,41499329:153645 -k1,11781:11235260,41499329:153646 -k1,11781:12206794,41499329:153645 -k1,11781:17747499,41499329:153646 -k1,11781:19909822,41499329:153645 -k1,11781:24139152,41499329:153646 -k1,11781:26994846,41499329:153645 -k1,11781:27957862,41499329:153646 -k1,11781:30949216,41499329:153645 -k1,11782:32583029,41499329:0 -) -(1,11782:6630773,42340817:25952256,513147,134348 -g1,11781:8343884,42340817 -(1,11781:8343884,42340817:0,452978,115847 -r1,11786:9053862,42340817:709978,568825,115847 -k1,11781:8343884,42340817:-709978 -) -(1,11781:8343884,42340817:709978,452978,115847 -k1,11781:8343884,42340817:3277 -h1,11781:9050585,42340817:0,411205,112570 -) -g1,11781:9253091,42340817 -g1,11781:11190335,42340817 -g1,11781:12711425,42340817 -g1,11781:13577810,42340817 -g1,11781:14191882,42340817 -g1,11781:14922608,42340817 -g1,11781:16834293,42340817 -g1,11781:17684950,42340817 -g1,11781:20111748,42340817 -g1,11781:21330062,42340817 -k1,11782:32583029,42340817:8936925 -g1,11782:32583029,42340817 -) -(1,11784:6630773,43182305:25952256,513147,134348 -h1,11783:6630773,43182305:983040,0,0 -k1,11783:9487856,43182305:137339 -k1,11783:10947056,43182305:137339 -k1,11783:11743687,43182305:137339 -k1,11783:12900111,43182305:137339 -k1,11783:13452231,43182305:137277 -k1,11783:16605537,43182305:137339 -(1,11783:16605537,43182305:0,452978,115847 -r1,11786:17315515,43182305:709978,568825,115847 -k1,11783:16605537,43182305:-709978 -) -(1,11783:16605537,43182305:709978,452978,115847 -k1,11783:16605537,43182305:3277 -h1,11783:17312238,43182305:0,411205,112570 -) -k1,11783:17452854,43182305:137339 -k1,11783:18722655,43182305:137339 -k1,11783:21087563,43182305:137339 -k1,11783:24008871,43182305:137339 -k1,11783:25337655,43182305:137339 -k1,11783:28873691,43182305:137339 -k1,11783:32583029,43182305:0 -) -(1,11784:6630773,44023793:25952256,505283,134348 -k1,11783:8562059,44023793:241768 -k1,11783:11714281,44023793:241768 -k1,11783:13724866,44023793:241768 -k1,11783:14714400,44023793:241768 -k1,11783:18481350,44023793:241768 -k1,11783:19406004,44023793:241769 -k1,11783:23140186,44023793:241768 -k1,11783:24143482,44023793:241768 -k1,11783:25893889,44023793:241768 -k1,11783:30095998,44023793:241768 -k1,11783:31379788,44023793:241768 -k1,11783:32583029,44023793:0 -) -(1,11784:6630773,44865281:25952256,513147,126483 -k1,11783:9104474,44865281:168800 -k1,11783:9731371,44865281:168800 -k1,11783:10431667,44865281:168799 -k1,11783:13866126,44865281:168800 -k1,11783:14686354,44865281:168800 -k1,11783:15947639,44865281:168800 -k1,11783:17135524,44865281:168800 -(1,11783:17135524,44865281:0,452978,115847 -r1,11786:17845502,44865281:709978,568825,115847 -k1,11783:17135524,44865281:-709978 -) -(1,11783:17135524,44865281:709978,452978,115847 -k1,11783:17135524,44865281:3277 -h1,11783:17842225,44865281:0,411205,112570 -) -k1,11783:18014302,44865281:168800 -k1,11783:18799139,44865281:168799 -k1,11783:21129316,44865281:168800 -k1,11783:21981001,44865281:168800 -k1,11783:23645988,44865281:168800 -k1,11783:26653808,44865281:168800 -k1,11783:27474036,44865281:168800 -k1,11783:28390601,44865281:168799 -k1,11783:30881997,44865281:168800 -k1,11783:31516758,44865281:168800 -k1,11783:32583029,44865281:0 -) -(1,11784:6630773,45706769:25952256,505283,134348 -g1,11783:9764704,45706769 -g1,11783:14172655,45706769 -g1,11783:15765835,45706769 -g1,11783:16379907,45706769 -g1,11783:19243175,45706769 -g1,11783:21475986,45706769 -g1,11783:23117662,45706769 -k1,11784:32583029,45706769:7748979 -g1,11784:32583029,45706769 -) -] -(1,11786:32583029,45706769:0,0,0 -g1,11786:32583029,45706769 -) -) -] -(1,11786:6630773,47279633:25952256,0,0 -h1,11786:6630773,47279633:25952256,0,0 -) -] -(1,11786:4262630,4025873:0,0,0 -[1,11786:-473656,4025873:0,0,0 -(1,11786:-473656,-710413:0,0,0 -(1,11786:-473656,-710413:0,0,0 -g1,11786:-473656,-710413 -) -g1,11786:-473656,-710413 -) -] -) -] -!28932 -}220 -Input:1639:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1640:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1641:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1642:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1643:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1644:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1645:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!656 -{221 -[1,11824:4262630,47279633:28320399,43253760,0 -(1,11824:4262630,4025873:0,0,0 -[1,11824:-473656,4025873:0,0,0 -(1,11824:-473656,-710413:0,0,0 -(1,11824:-473656,-644877:0,0,0 -k1,11824:-473656,-644877:-65536 -) -(1,11824:-473656,4736287:0,0,0 -k1,11824:-473656,4736287:5209943 -) -g1,11824:-473656,-710413 -) -] -) -[1,11824:6630773,47279633:25952256,43253760,0 -[1,11824:6630773,4812305:25952256,786432,0 -(1,11824:6630773,4812305:25952256,513147,134348 -(1,11824:6630773,4812305:25952256,513147,134348 -g1,11824:3078558,4812305 -[1,11824:3078558,4812305:0,0,0 -(1,11824:3078558,2439708:0,1703936,0 -k1,11824:1358238,2439708:-1720320 -(1,11088:1358238,2439708:1720320,1703936,0 -(1,11088:1358238,2439708:1179648,16384,0 -r1,11824:2537886,2439708:1179648,16384,0 -) -g1,11088:3062174,2439708 -(1,11088:3062174,2439708:16384,1703936,0 -[1,11088:3062174,2439708:25952256,1703936,0 -(1,11088:3062174,1915420:25952256,1179648,0 -(1,11088:3062174,1915420:16384,1179648,0 -r1,11824:3078558,1915420:16384,1179648,0 -) -k1,11088:29014430,1915420:25935872 -g1,11088:29014430,1915420 -) -] -) -) -) -] -[1,11824:3078558,4812305:0,0,0 -(1,11824:3078558,2439708:0,1703936,0 -g1,11824:29030814,2439708 -g1,11824:36135244,2439708 -(1,11088:36135244,2439708:1720320,1703936,0 -(1,11088:36135244,2439708:16384,1703936,0 -[1,11088:36135244,2439708:25952256,1703936,0 -(1,11088:36135244,1915420:25952256,1179648,0 -(1,11088:36135244,1915420:16384,1179648,0 -r1,11824:36151628,1915420:16384,1179648,0 -) -k1,11088:62087500,1915420:25935872 -g1,11088:62087500,1915420 -) -] -) -g1,11088:36675916,2439708 -(1,11088:36675916,2439708:1179648,16384,0 -r1,11824:37855564,2439708:1179648,16384,0 -) -) -k1,11824:3078556,2439708:-34777008 -) -] -[1,11824:3078558,4812305:0,0,0 -(1,11824:3078558,49800853:0,16384,2228224 -k1,11824:1358238,49800853:-1720320 -(1,11088:1358238,49800853:1720320,16384,2228224 -(1,11088:1358238,49800853:1179648,16384,0 -r1,11824:2537886,49800853:1179648,16384,0 -) -g1,11088:3062174,49800853 -(1,11088:3062174,52029077:16384,1703936,0 -[1,11088:3062174,52029077:25952256,1703936,0 -(1,11088:3062174,51504789:25952256,1179648,0 -(1,11088:3062174,51504789:16384,1179648,0 -r1,11824:3078558,51504789:16384,1179648,0 -) -k1,11088:29014430,51504789:25935872 -g1,11088:29014430,51504789 -) -] -) -) -) -] -[1,11824:3078558,4812305:0,0,0 -(1,11824:3078558,49800853:0,16384,2228224 -g1,11824:29030814,49800853 -g1,11824:36135244,49800853 -(1,11088:36135244,49800853:1720320,16384,2228224 -(1,11088:36135244,52029077:16384,1703936,0 -[1,11088:36135244,52029077:25952256,1703936,0 -(1,11088:36135244,51504789:25952256,1179648,0 -(1,11088:36135244,51504789:16384,1179648,0 -r1,11824:36151628,51504789:16384,1179648,0 -) -k1,11088:62087500,51504789:25935872 -g1,11088:62087500,51504789 -) -] -) -g1,11088:36675916,49800853 -(1,11088:36675916,49800853:1179648,16384,0 -r1,11824:37855564,49800853:1179648,16384,0 -) -) -k1,11824:3078556,49800853:-34777008 -) -] -g1,11824:6630773,4812305 -k1,11824:25241686,4812305:17415536 -g1,11824:26807341,4812305 -g1,11824:30339731,4812305 -g1,11824:31154998,4812305 -) -) -] -[1,11824:6630773,45706769:25952256,40108032,0 -(1,11824:6630773,45706769:25952256,40108032,0 -(1,11824:6630773,45706769:0,0,0 -g1,11824:6630773,45706769 -) -[1,11824:6630773,45706769:25952256,40108032,0 -(1,11786:6630773,6254097:25952256,513147,126483 -h1,11785:6630773,6254097:983040,0,0 -k1,11785:8480155,6254097:238507 -k1,11785:9737747,6254097:238507 -k1,11785:11199157,6254097:238508 -k1,11785:12096956,6254097:238507 -k1,11785:13354548,6254097:238507 -k1,11785:15175094,6254097:238507 -k1,11785:17111639,6254097:238507 -k1,11785:19980107,6254097:238508 -k1,11785:21086966,6254097:238507 -k1,11785:22457935,6254097:238507 -k1,11785:23788927,6254097:238507 -k1,11785:24939040,6254097:238507 -k1,11785:26814638,6254097:238508 -k1,11785:28244590,6254097:238507 -k1,11785:31584916,6254097:238507 -k1,11785:32583029,6254097:0 -) -(1,11786:6630773,7095585:25952256,513147,134348 -k1,11785:8485085,7095585:217222 -k1,11785:9893752,7095585:217222 -k1,11785:11840469,7095585:217222 -k1,11785:14497596,7095585:217222 -k1,11785:18388111,7095585:217222 -k1,11785:21032786,7095585:217221 -k1,11785:21909300,7095585:217222 -k1,11785:25529151,7095585:217222 -k1,11785:26362411,7095585:217222 -k1,11785:29571352,7095585:217222 -k1,11785:30440002,7095585:217222 -k1,11785:32583029,7095585:0 -) -(1,11786:6630773,7937073:25952256,505283,134348 -k1,11785:8774337,7937073:273166 -k1,11785:13876196,7937073:273166 -k1,11785:14777196,7937073:273165 -k1,11785:16652062,7937073:273166 -k1,11785:18622610,7937073:273166 -k1,11785:19914861,7937073:273166 -k1,11785:23179746,7937073:273166 -k1,11785:24557194,7937073:273166 -k1,11785:25578125,7937073:273165 -k1,11785:27652220,7937073:273166 -k1,11785:30847636,7937073:273166 -k1,11785:32583029,7937073:0 -) -(1,11786:6630773,8778561:25952256,435480,126483 -g1,11785:9576616,8778561 -(1,11785:9576616,8778561:0,435480,115847 -r1,11824:10638305,8778561:1061689,551327,115847 -k1,11785:9576616,8778561:-1061689 -) -(1,11785:9576616,8778561:1061689,435480,115847 -k1,11785:9576616,8778561:3277 -h1,11785:10635028,8778561:0,411205,112570 -) -k1,11786:32583029,8778561:21771054 -g1,11786:32583029,8778561 -) -(1,11788:6630773,9620049:25952256,513147,134348 -h1,11787:6630773,9620049:983040,0,0 -k1,11787:9511244,9620049:222331 -k1,11787:10837857,9620049:222331 -k1,11787:12775921,9620049:222331 -k1,11787:15159628,9620049:222330 -k1,11787:17812689,9620049:222331 -k1,11787:19685217,9620049:222331 -k1,11787:22622705,9620049:222331 -k1,11787:24287483,9620049:222331 -k1,11787:25528899,9620049:222331 -k1,11787:26843714,9620049:222330 -k1,11787:27725337,9620049:222331 -k1,11787:31923737,9620049:222331 -k1,11787:32583029,9620049:0 -) -(1,11788:6630773,10461537:25952256,505283,126483 -k1,11787:10859287,10461537:170525 -k1,11787:13202985,10461537:170524 -k1,11787:14024938,10461537:170525 -k1,11787:17528623,10461537:170524 -k1,11787:20714459,10461537:170525 -k1,11787:22518797,10461537:170525 -k1,11787:24735355,10461537:170524 -k1,11787:26626200,10461537:170525 -k1,11787:28398424,10461537:170524 -k1,11787:32051532,10461537:170525 -k1,11787:32583029,10461537:0 -) -(1,11788:6630773,11303025:25952256,513147,126483 -k1,11787:7915398,11303025:265540 -k1,11787:11637962,11303025:265540 -k1,11787:12562793,11303025:265539 -k1,11787:15234815,11303025:265540 -k1,11787:18699823,11303025:265540 -k1,11787:20156808,11303025:265540 -k1,11787:23206973,11303025:265540 -k1,11787:25854091,11303025:265540 -k1,11787:26735668,11303025:265539 -k1,11787:28979740,11303025:265540 -k1,11787:31391584,11303025:265540 -k1,11787:32583029,11303025:0 -) -(1,11788:6630773,12144513:25952256,513147,134348 -k1,11787:8637849,12144513:305106 -k1,11787:11853410,12144513:305107 -k1,11787:13726137,12144513:305106 -k1,11787:15050329,12144513:305107 -k1,11787:18737092,12144513:305106 -k1,11787:22446794,12144513:305107 -k1,11787:24472220,12144513:305106 -k1,11787:27064534,12144513:305107 -k1,11787:29991735,12144513:305106 -k1,11787:32583029,12144513:0 -) -(1,11788:6630773,12986001:25952256,513147,134348 -k1,11787:8666488,12986001:222989 -k1,11787:10283428,12986001:222989 -k1,11787:11663128,12986001:222990 -k1,11787:14870627,12986001:222989 -k1,11787:16831631,12986001:222989 -k1,11787:18073705,12986001:222989 -k1,11787:21146200,12986001:222990 -k1,11787:22028481,12986001:222989 -k1,11787:23681466,12986001:222989 -k1,11787:24555883,12986001:222989 -(1,11787:24555883,12986001:0,452978,115847 -r1,11824:27024420,12986001:2468537,568825,115847 -k1,11787:24555883,12986001:-2468537 -) -(1,11787:24555883,12986001:2468537,452978,115847 -k1,11787:24555883,12986001:3277 -h1,11787:27021143,12986001:0,411205,112570 -) -k1,11787:27421080,12986001:222990 -k1,11787:29024913,12986001:222989 -k1,11787:29779399,12986001:222989 -k1,11787:32583029,12986001:0 -) -(1,11788:6630773,13827489:25952256,505283,134348 -g1,11787:9359692,13827489 -(1,11787:9359692,13827489:0,452978,115847 -r1,11824:11828229,13827489:2468537,568825,115847 -k1,11787:9359692,13827489:-2468537 -) -(1,11787:9359692,13827489:2468537,452978,115847 -k1,11787:9359692,13827489:3277 -h1,11787:11824952,13827489:0,411205,112570 -) -g1,11787:12027458,13827489 -g1,11787:14567633,13827489 -g1,11787:15555260,13827489 -g1,11787:17463013,13827489 -g1,11787:20334800,13827489 -g1,11787:21150067,13827489 -g1,11787:24015301,13827489 -g1,11787:24865958,13827489 -g1,11787:28350507,13827489 -k1,11788:32583029,13827489:3600755 -g1,11788:32583029,13827489 -) -v1,11790:6630773,15017955:0,393216,0 -(1,11806:6630773,20085094:25952256,5460355,196608 -g1,11806:6630773,20085094 -g1,11806:6630773,20085094 -g1,11806:6434165,20085094 -(1,11806:6434165,20085094:0,5460355,196608 -r1,11824:32779637,20085094:26345472,5656963,196608 -k1,11806:6434165,20085094:-26345472 -) -(1,11806:6434165,20085094:26345472,5460355,196608 -[1,11806:6630773,20085094:25952256,5263747,0 -(1,11792:6630773,15225573:25952256,404226,101187 -(1,11791:6630773,15225573:0,0,0 -g1,11791:6630773,15225573 -g1,11791:6630773,15225573 -g1,11791:6303093,15225573 -(1,11791:6303093,15225573:0,0,0 -) -g1,11791:6630773,15225573 -) -g1,11792:9159939,15225573 -g1,11792:10108377,15225573 -g1,11792:12637542,15225573 -g1,11792:13585980,15225573 -g1,11792:15799000,15225573 -g1,11792:16747438,15225573 -g1,11792:19276603,15225573 -g1,11792:20225041,15225573 -g1,11792:22121915,15225573 -g1,11792:23070353,15225573 -g1,11792:25599518,15225573 -g1,11792:26547956,15225573 -h1,11792:29709413,15225573:0,0,0 -k1,11792:32583029,15225573:2873616 -g1,11792:32583029,15225573 -) -(1,11799:6630773,15957287:25952256,404226,76021 -(1,11794:6630773,15957287:0,0,0 -g1,11794:6630773,15957287 -g1,11794:6630773,15957287 -g1,11794:6303093,15957287 -(1,11794:6303093,15957287:0,0,0 -) -g1,11794:6630773,15957287 -) -g1,11799:7579210,15957287 -g1,11799:7895356,15957287 -g1,11799:9159939,15957287 -g1,11799:9476085,15957287 -g1,11799:10108377,15957287 -g1,11799:10424523,15957287 -g1,11799:11056815,15957287 -g1,11799:11372961,15957287 -g1,11799:12005253,15957287 -g1,11799:12321399,15957287 -g1,11799:12953691,15957287 -g1,11799:13269837,15957287 -g1,11799:13902129,15957287 -g1,11799:14218275,15957287 -g1,11799:14850567,15957287 -g1,11799:15166713,15957287 -g1,11799:15799005,15957287 -g1,11799:16115151,15957287 -g1,11799:16747443,15957287 -g1,11799:17063589,15957287 -g1,11799:17695881,15957287 -h1,11799:18328172,15957287:0,0,0 -k1,11799:32583029,15957287:14254857 -g1,11799:32583029,15957287 -) -(1,11799:6630773,16623465:25952256,404226,76021 -h1,11799:6630773,16623465:0,0,0 -g1,11799:7579210,16623465 -g1,11799:7895356,16623465 -g1,11799:9159939,16623465 -g1,11799:12005250,16623465 -g1,11799:14850561,16623465 -g1,11799:17695872,16623465 -g1,11799:20541183,16623465 -g1,11799:23386494,16623465 -g1,11799:26231805,16623465 -g1,11799:29077116,16623465 -h1,11799:31606281,16623465:0,0,0 -k1,11799:32583029,16623465:976748 -g1,11799:32583029,16623465 -) -(1,11799:6630773,17289643:25952256,404226,76021 -h1,11799:6630773,17289643:0,0,0 -g1,11799:7579210,17289643 -g1,11799:7895356,17289643 -g1,11799:9159939,17289643 -g1,11799:12005250,17289643 -h1,11799:14534415,17289643:0,0,0 -k1,11799:32583029,17289643:18048614 -g1,11799:32583029,17289643 -) -(1,11799:6630773,17955821:25952256,404226,76021 -h1,11799:6630773,17955821:0,0,0 -g1,11799:7579210,17955821 -g1,11799:8843793,17955821 -h1,11799:11372958,17955821:0,0,0 -k1,11799:32583030,17955821:21210072 -g1,11799:32583030,17955821 -) -(1,11801:6630773,19277359:25952256,404226,101187 -(1,11800:6630773,19277359:0,0,0 -g1,11800:6630773,19277359 -g1,11800:6630773,19277359 -g1,11800:6303093,19277359 -(1,11800:6303093,19277359:0,0,0 -) -g1,11800:6630773,19277359 -) -k1,11801:6630773,19277359:0 -g1,11801:12953687,19277359 -h1,11801:16431289,19277359:0,0,0 -k1,11801:32583029,19277359:16151740 -g1,11801:32583029,19277359 -) -(1,11805:6630773,20009073:25952256,404226,76021 -(1,11803:6630773,20009073:0,0,0 -g1,11803:6630773,20009073 -g1,11803:6630773,20009073 -g1,11803:6303093,20009073 -(1,11803:6303093,20009073:0,0,0 -) -g1,11803:6630773,20009073 -) -g1,11805:7579210,20009073 -g1,11805:8843793,20009073 -h1,11805:10108376,20009073:0,0,0 -k1,11805:32583028,20009073:22474652 -g1,11805:32583028,20009073 -) -] -) -g1,11806:32583029,20085094 -g1,11806:6630773,20085094 -g1,11806:6630773,20085094 -g1,11806:32583029,20085094 -g1,11806:32583029,20085094 -) -h1,11806:6630773,20281702:0,0,0 -(1,11811:6630773,23613558:25952256,32768,229376 -(1,11811:6630773,23613558:0,32768,229376 -(1,11811:6630773,23613558:5505024,32768,229376 -r1,11824:12135797,23613558:5505024,262144,229376 -) -k1,11811:6630773,23613558:-5505024 -) -(1,11811:6630773,23613558:25952256,32768,0 -r1,11824:32583029,23613558:25952256,32768,0 -) -) -(1,11811:6630773,25217886:25952256,606339,161218 -(1,11811:6630773,25217886:1974731,582746,14155 -g1,11811:6630773,25217886 -g1,11811:8605504,25217886 -) -g1,11811:12976493,25217886 -g1,11811:14989759,25217886 -k1,11811:32583029,25217886:15265432 -g1,11811:32583029,25217886 -) -(1,11815:6630773,26452590:25952256,513147,134348 -k1,11814:8280878,26452590:178166 -k1,11814:10497213,26452590:178165 -k1,11814:11291417,26452590:178166 -k1,11814:14394455,26452590:178166 -k1,11814:17083304,26452590:178165 -k1,11814:18365752,26452590:178166 -k1,11814:19291683,26452590:178165 -k1,11814:22315422,26452590:178166 -k1,11814:23109626,26452590:178166 -k1,11814:26050134,26452590:178165 -k1,11814:27970247,26452590:178166 -k1,11814:28776248,26452590:178166 -k1,11814:30388341,26452590:178165 -k1,11814:30981329,26452590:178145 -k1,11814:32583029,26452590:0 -) -(1,11815:6630773,27294078:25952256,513147,134348 -k1,11814:8778387,27294078:159907 -k1,11814:10872916,27294078:159906 -k1,11814:14058620,27294078:159907 -k1,11814:15409971,27294078:159906 -k1,11814:16588963,27294078:159907 -(1,11814:16588963,27294078:0,452978,115847 -r1,11824:18705788,27294078:2116825,568825,115847 -k1,11814:16588963,27294078:-2116825 -) -(1,11814:16588963,27294078:2116825,452978,115847 -k1,11814:16588963,27294078:3277 -h1,11814:18702511,27294078:0,411205,112570 -) -k1,11814:18865694,27294078:159906 -k1,11814:21479924,27294078:159907 -k1,11814:23375223,27294078:159906 -k1,11814:25937025,27294078:159907 -k1,11814:28970685,27294078:159906 -k1,11814:30322037,27294078:159907 -k1,11815:32583029,27294078:0 -) -(1,11815:6630773,28135566:25952256,513147,134348 -k1,11814:7850890,28135566:229868 -k1,11814:9470120,28135566:229867 -k1,11814:12080256,28135566:229868 -k1,11814:14381061,28135566:229867 -k1,11814:16000292,28135566:229868 -k1,11814:16881587,28135566:229867 -k1,11814:17859221,28135566:229868 -k1,11814:20934661,28135566:229867 -k1,11814:21780567,28135566:229868 -k1,11814:23699298,28135566:229868 -k1,11814:25796941,28135566:229867 -k1,11814:26751637,28135566:229868 -k1,11814:28266010,28135566:229867 -k1,11814:29947500,28135566:229868 -k1,11814:31381263,28135566:229867 -k1,11814:32227169,28135566:229868 -k1,11814:32583029,28135566:0 -) -(1,11815:6630773,28977054:25952256,513147,134348 -k1,11814:8221277,28977054:201141 -k1,11814:10298714,28977054:201141 -k1,11814:14463472,28977054:201141 -k1,11814:15316041,28977054:201141 -k1,11814:15873042,28977054:201141 -k1,11814:17947202,28977054:201141 -k1,11814:21889792,28977054:201140 -k1,11814:22980912,28977054:201141 -k1,11814:27732218,28977054:201141 -k1,11814:29656956,28977054:201141 -k1,11814:30667467,28977054:201141 -k1,11814:31224468,28977054:201141 -k1,11815:32583029,28977054:0 -) -(1,11815:6630773,29818542:25952256,513147,134348 -k1,11814:8191483,29818542:222465 -k1,11814:9889163,29818542:222465 -k1,11814:12494517,29818542:222465 -k1,11814:16680599,29818542:222465 -k1,11814:17554492,29818542:222465 -k1,11814:18132817,29818542:222465 -k1,11814:21117625,29818542:222465 -k1,11814:24464847,29818542:222465 -k1,11814:27136392,29818542:222465 -k1,11814:28784265,29818542:222465 -k1,11814:29666022,29818542:222465 -k1,11815:32583029,29818542:0 -) -(1,11815:6630773,30660030:25952256,513147,134348 -k1,11814:8702783,30660030:259284 -k1,11814:9644953,30660030:259285 -k1,11814:10260097,30660030:259284 -k1,11814:12413371,30660030:259284 -k1,11814:15984845,30660030:259284 -k1,11814:16599990,30660030:259285 -k1,11814:21003115,30660030:259284 -k1,11814:21921691,30660030:259284 -k1,11814:24821421,30660030:259284 -k1,11814:28197598,30660030:259285 -k1,11814:29108310,30660030:259284 -k1,11814:32583029,30660030:0 -) -(1,11815:6630773,31501518:25952256,513147,134348 -k1,11814:7544881,31501518:231223 -k1,11814:10381815,31501518:231223 -k1,11814:11272330,31501518:231223 -k1,11814:12522638,31501518:231223 -k1,11814:16923917,31501518:231223 -k1,11814:19243771,31501518:231222 -k1,11814:20924650,31501518:231223 -k1,11814:23593157,31501518:231223 -k1,11814:27167371,31501518:231223 -k1,11814:30523351,31501518:231223 -k1,11814:31563944,31501518:231223 -k1,11814:32583029,31501518:0 -) -(1,11815:6630773,32343006:25952256,505283,134348 -k1,11814:8507724,32343006:223478 -k1,11814:11041346,32343006:223478 -k1,11814:11877586,32343006:223478 -k1,11814:12871767,32343006:223478 -k1,11814:15128826,32343006:223477 -k1,11814:17040511,32343006:223478 -k1,11814:17880027,32343006:223478 -k1,11814:19528913,32343006:223478 -k1,11814:21089325,32343006:223478 -k1,11814:22598619,32343006:223478 -k1,11814:23569863,32343006:223478 -k1,11814:25831511,32343006:223478 -k1,11814:26671026,32343006:223477 -k1,11814:27250364,32343006:223478 -k1,11814:30030401,32343006:223478 -k1,11814:31725818,32343006:223478 -k1,11815:32583029,32343006:0 -) -(1,11815:6630773,33184494:25952256,513147,134348 -k1,11814:8999637,33184494:167510 -k1,11814:9783185,33184494:167510 -k1,11814:11315155,33184494:167510 -k1,11814:13026693,33184494:167509 -k1,11814:14295208,33184494:167510 -k1,11814:15972668,33184494:167510 -k1,11814:19641111,33184494:167510 -k1,11814:20494783,33184494:167510 -k1,11814:22502544,33184494:167510 -k1,11814:23861499,33184494:167510 -k1,11814:25232250,33184494:167510 -k1,11814:25931256,33184494:167509 -k1,11814:28874871,33184494:167510 -k1,11814:29658419,33184494:167510 -k1,11814:30845014,33184494:167510 -k1,11814:32583029,33184494:0 -) -(1,11815:6630773,34025982:25952256,513147,134348 -k1,11814:8585002,34025982:259468 -k1,11814:9495898,34025982:259468 -k1,11814:10774451,34025982:259468 -k1,11814:14241905,34025982:259467 -k1,11814:16051955,34025982:259468 -k1,11814:16970715,34025982:259468 -k1,11814:20314307,34025982:259468 -k1,11814:22045714,34025982:259468 -k1,11814:22921220,34025982:259468 -k1,11814:25066158,34025982:259467 -k1,11814:28038817,34025982:259468 -k1,11814:31931601,34025982:259468 -k1,11814:32583029,34025982:0 -) -(1,11815:6630773,34867470:25952256,513147,134348 -g1,11814:11173073,34867470 -g1,11814:13426200,34867470 -g1,11814:14156926,34867470 -g1,11814:17446178,34867470 -g1,11814:18331569,34867470 -g1,11814:20268813,34867470 -g1,11814:21084080,34867470 -g1,11814:21639169,34867470 -g1,11814:23293297,34867470 -k1,11815:32583029,34867470:7573344 -g1,11815:32583029,34867470 -) -(1,11817:6630773,35708958:25952256,513147,134348 -h1,11816:6630773,35708958:983040,0,0 -k1,11816:10719624,35708958:142928 -k1,11816:14031873,35708958:142928 -k1,11816:15564164,35708958:142928 -k1,11816:16238589,35708958:142928 -k1,11816:17572962,35708958:142928 -k1,11816:18816894,35708958:142927 -k1,11816:20469772,35708958:142928 -k1,11816:21631785,35708958:142928 -k1,11816:23376413,35708958:142928 -k1,11816:26862988,35708958:142928 -k1,11816:28519142,35708958:142928 -k1,11816:32583029,35708958:0 -) -(1,11817:6630773,36550446:25952256,513147,126483 -k1,11816:7443419,36550446:153354 -k1,11816:8986136,36550446:153354 -k1,11816:9755528,36550446:153354 -k1,11816:10497396,36550446:153355 -k1,11816:14906658,36550446:153354 -k1,11816:15719304,36550446:153354 -k1,11816:17366224,36550446:153354 -k1,11816:18908941,36550446:153354 -k1,11816:20163300,36550446:153354 -k1,11816:21382925,36550446:153354 -k1,11816:23665544,36550446:153354 -k1,11816:25328849,36550446:153355 -k1,11816:28112163,36550446:153354 -k1,11816:29659468,36550446:153354 -k1,11816:32168186,36550446:153354 -k1,11817:32583029,36550446:0 -) -(1,11817:6630773,37391934:25952256,513147,134348 -k1,11816:10514436,37391934:193331 -k1,11816:11904454,37391934:193331 -k1,11816:15008240,37391934:193332 -k1,11816:15817609,37391934:193331 -k1,11816:17030025,37391934:193331 -k1,11816:20431343,37391934:193331 -k1,11816:23054749,37391934:193331 -k1,11816:27154682,37391934:193332 -k1,11816:30373810,37391934:193331 -k1,11816:31218569,37391934:193331 -k1,11817:32583029,37391934:0 -) -(1,11817:6630773,38233422:25952256,513147,134348 -k1,11816:8222260,38233422:138554 -k1,11816:10499909,38233422:138554 -k1,11816:11297755,38233422:138554 -k1,11816:12825672,38233422:138554 -k1,11816:17393804,38233422:138554 -k1,11816:19417829,38233422:138554 -k1,11816:20172421,38233422:138554 -k1,11816:22003115,38233422:138554 -k1,11816:24012722,38233422:138554 -k1,11816:25800162,38233422:138554 -k1,11816:26554754,38233422:138554 -k1,11816:29532983,38233422:138554 -k1,11816:32583029,38233422:0 -) -(1,11817:6630773,39074910:25952256,513147,126483 -k1,11816:10925292,39074910:218835 -k1,11816:14325246,39074910:218836 -k1,11816:15195509,39074910:218835 -k1,11816:16848273,39074910:218836 -k1,11816:19206859,39074910:218835 -k1,11816:19883792,39074910:218836 -k1,11816:20634124,39074910:218835 -k1,11816:23482919,39074910:218835 -k1,11816:24353183,39074910:218836 -k1,11816:26068205,39074910:218835 -k1,11816:27306126,39074910:218836 -k1,11816:29178434,39074910:218835 -k1,11816:32583029,39074910:0 -) -(1,11817:6630773,39916398:25952256,505283,134348 -g1,11816:8565395,39916398 -g1,11816:10140225,39916398 -g1,11816:11773382,39916398 -g1,11816:12561124,39916398 -g1,11816:13832522,39916398 -g1,11816:15368685,39916398 -g1,11816:17859708,39916398 -g1,11816:19709134,39916398 -g1,11816:22118237,39916398 -g1,11816:23967663,39916398 -g1,11816:26632356,39916398 -k1,11817:32583029,39916398:2260341 -g1,11817:32583029,39916398 -) -(1,11819:6630773,40757886:25952256,513147,126483 -h1,11818:6630773,40757886:983040,0,0 -k1,11818:11228426,40757886:218537 -k1,11818:12836326,40757886:218537 -k1,11818:13586360,40757886:218537 -k1,11818:15756560,40757886:218538 -k1,11818:19280078,40757886:218537 -k1,11818:21536785,40757886:218537 -k1,11818:22371360,40757886:218537 -k1,11818:24080186,40757886:218537 -k1,11818:26479106,40757886:218537 -k1,11818:27380529,40757886:218538 -k1,11818:29065762,40757886:218537 -k1,11818:30060901,40757886:218537 -k1,11818:31422386,40757886:218537 -k1,11819:32583029,40757886:0 -) -(1,11819:6630773,41599374:25952256,513147,134348 -k1,11818:8517472,41599374:149995 -k1,11818:9392296,41599374:149996 -k1,11818:10158329,41599374:149995 -k1,11818:12060102,41599374:149996 -k1,11818:13907479,41599374:149995 -k1,11818:15076560,41599374:149996 -k1,11818:16532688,41599374:149995 -k1,11818:18018308,41599374:149996 -k1,11818:18784341,41599374:149995 -k1,11818:20323700,41599374:149996 -k1,11818:23028288,41599374:149995 -k1,11818:23709781,41599374:149996 -k1,11818:24511204,41599374:149995 -k1,11818:27165986,41599374:149996 -k1,11818:28335066,41599374:149995 -k1,11818:30048096,41599374:149996 -k1,11818:32583029,41599374:0 -) -(1,11819:6630773,42440862:25952256,513147,134348 -k1,11818:8597609,42440862:161975 -k1,11818:11519959,42440862:161974 -k1,11818:14707731,42440862:161975 -k1,11818:15817357,42440862:161975 -k1,11818:19127025,42440862:161974 -k1,11818:20678363,42440862:161975 -k1,11818:22407959,42440862:161975 -k1,11818:24060223,42440862:161975 -k1,11818:24873625,42440862:161974 -k1,11818:26424308,42440862:161975 -k1,11818:28153904,42440862:161975 -k1,11818:29507323,42440862:161974 -k1,11818:30883025,42440862:161975 -k1,11819:32583029,42440862:0 -) -(1,11819:6630773,43282350:25952256,505283,134348 -g1,11818:9978352,43282350 -g1,11818:11196666,43282350 -g1,11818:13051990,43282350 -g1,11818:16161673,43282350 -g1,11818:19220892,43282350 -g1,11818:20611566,43282350 -k1,11819:32583029,43282350:8315866 -g1,11819:32583029,43282350 -) -(1,11822:6630773,44123838:25952256,505283,126483 -h1,11821:6630773,44123838:983040,0,0 -k1,11821:8722510,44123838:155148 -k1,11821:9970143,44123838:155148 -k1,11821:10741330,44123838:155149 -k1,11821:13888197,44123838:155148 -k1,11821:15911776,44123838:155148 -k1,11821:17086009,44123838:155148 -(1,11821:17086009,44123838:0,452978,115847 -r1,11824:18499410,44123838:1413401,568825,115847 -k1,11821:17086009,44123838:-1413401 -) -(1,11821:17086009,44123838:1413401,452978,115847 -k1,11821:17086009,44123838:3277 -h1,11821:18496133,44123838:0,411205,112570 -) -k1,11821:18654558,44123838:155148 -k1,11821:20199070,44123838:155149 -k1,11821:21288761,44123838:155148 -k1,11821:24202319,44123838:155148 -k1,11821:24973505,44123838:155148 -k1,11821:26562582,44123838:155149 -k1,11821:27306243,44123838:155148 -k1,11821:29178434,44123838:155148 -k1,11821:32583029,44123838:0 -) -(1,11822:6630773,44965326:25952256,505283,134348 -k1,11821:7684702,44965326:244559 -k1,11821:8344058,44965326:244513 -(1,11821:8344058,44965326:0,459977,115847 -r1,11824:11867730,44965326:3523672,575824,115847 -k1,11821:8344058,44965326:-3523672 -) -(1,11821:8344058,44965326:3523672,459977,115847 -k1,11821:8344058,44965326:3277 -h1,11821:11864453,44965326:0,411205,112570 -) -k1,11821:12112289,44965326:244559 -k1,11821:14646676,44965326:244559 -k1,11821:16285186,44965326:244559 -k1,11821:19737732,44965326:244559 -k1,11821:22892745,44965326:244559 -k1,11821:24269766,44965326:244559 -k1,11821:26524970,44965326:244559 -(1,11821:26524970,44965326:0,459977,115847 -r1,11824:30048642,44965326:3523672,575824,115847 -k1,11821:26524970,44965326:-3523672 -) -(1,11821:26524970,44965326:3523672,459977,115847 -k1,11821:26524970,44965326:3277 -h1,11821:30045365,44965326:0,411205,112570 -) -k1,11821:30293201,44965326:244559 -k1,11821:32583029,44965326:0 -) -] -(1,11824:32583029,45706769:0,0,0 -g1,11824:32583029,45706769 -) -) -] -(1,11824:6630773,47279633:25952256,0,0 -h1,11824:6630773,47279633:25952256,0,0 -) -] -(1,11824:4262630,4025873:0,0,0 -[1,11824:-473656,4025873:0,0,0 -(1,11824:-473656,-710413:0,0,0 -(1,11824:-473656,-710413:0,0,0 -g1,11824:-473656,-710413 -) -g1,11824:-473656,-710413 -) -] -) -] -!25354 -}221 -Input:1646:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1647:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1648:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1649:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1650:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1651:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1652:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1653:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1654:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1655:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1656:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1024 -{222 -[1,11906:4262630,47279633:28320399,43253760,0 -(1,11906:4262630,4025873:0,0,0 -[1,11906:-473656,4025873:0,0,0 -(1,11906:-473656,-710413:0,0,0 -(1,11906:-473656,-644877:0,0,0 -k1,11906:-473656,-644877:-65536 -) -(1,11906:-473656,4736287:0,0,0 -k1,11906:-473656,4736287:5209943 -) -g1,11906:-473656,-710413 -) -] -) -[1,11906:6630773,47279633:25952256,43253760,0 -[1,11906:6630773,4812305:25952256,786432,0 -(1,11906:6630773,4812305:25952256,505283,134348 -(1,11906:6630773,4812305:25952256,505283,134348 -g1,11906:3078558,4812305 -[1,11906:3078558,4812305:0,0,0 -(1,11906:3078558,2439708:0,1703936,0 -k1,11906:1358238,2439708:-1720320 -(1,11088:1358238,2439708:1720320,1703936,0 -(1,11088:1358238,2439708:1179648,16384,0 -r1,11906:2537886,2439708:1179648,16384,0 -) -g1,11088:3062174,2439708 -(1,11088:3062174,2439708:16384,1703936,0 -[1,11088:3062174,2439708:25952256,1703936,0 -(1,11088:3062174,1915420:25952256,1179648,0 -(1,11088:3062174,1915420:16384,1179648,0 -r1,11906:3078558,1915420:16384,1179648,0 -) -k1,11088:29014430,1915420:25935872 -g1,11088:29014430,1915420 -) -] -) -) -) -] -[1,11906:3078558,4812305:0,0,0 -(1,11906:3078558,2439708:0,1703936,0 -g1,11906:29030814,2439708 -g1,11906:36135244,2439708 -(1,11088:36135244,2439708:1720320,1703936,0 -(1,11088:36135244,2439708:16384,1703936,0 -[1,11088:36135244,2439708:25952256,1703936,0 -(1,11088:36135244,1915420:25952256,1179648,0 -(1,11088:36135244,1915420:16384,1179648,0 -r1,11906:36151628,1915420:16384,1179648,0 -) -k1,11088:62087500,1915420:25935872 -g1,11088:62087500,1915420 -) -] -) -g1,11088:36675916,2439708 -(1,11088:36675916,2439708:1179648,16384,0 -r1,11906:37855564,2439708:1179648,16384,0 -) -) -k1,11906:3078556,2439708:-34777008 -) -] -[1,11906:3078558,4812305:0,0,0 -(1,11906:3078558,49800853:0,16384,2228224 -k1,11906:1358238,49800853:-1720320 -(1,11088:1358238,49800853:1720320,16384,2228224 -(1,11088:1358238,49800853:1179648,16384,0 -r1,11906:2537886,49800853:1179648,16384,0 -) -g1,11088:3062174,49800853 -(1,11088:3062174,52029077:16384,1703936,0 -[1,11088:3062174,52029077:25952256,1703936,0 -(1,11088:3062174,51504789:25952256,1179648,0 -(1,11088:3062174,51504789:16384,1179648,0 -r1,11906:3078558,51504789:16384,1179648,0 -) -k1,11088:29014430,51504789:25935872 -g1,11088:29014430,51504789 -) -] -) -) -) -] -[1,11906:3078558,4812305:0,0,0 -(1,11906:3078558,49800853:0,16384,2228224 -g1,11906:29030814,49800853 -g1,11906:36135244,49800853 -(1,11088:36135244,49800853:1720320,16384,2228224 -(1,11088:36135244,52029077:16384,1703936,0 -[1,11088:36135244,52029077:25952256,1703936,0 -(1,11088:36135244,51504789:25952256,1179648,0 -(1,11088:36135244,51504789:16384,1179648,0 -r1,11906:36151628,51504789:16384,1179648,0 -) -k1,11088:62087500,51504789:25935872 -g1,11088:62087500,51504789 -) -] -) -g1,11088:36675916,49800853 -(1,11088:36675916,49800853:1179648,16384,0 -r1,11906:37855564,49800853:1179648,16384,0 -) -) -k1,11906:3078556,49800853:-34777008 -) -] -g1,11906:6630773,4812305 -g1,11906:6630773,4812305 -g1,11906:10115322,4812305 -g1,11906:11677700,4812305 -g1,11906:13736840,4812305 -k1,11906:31387652,4812305:17650812 -) -) -] -[1,11906:6630773,45706769:25952256,40108032,0 -(1,11906:6630773,45706769:25952256,40108032,0 -(1,11906:6630773,45706769:0,0,0 -g1,11906:6630773,45706769 -) -[1,11906:6630773,45706769:25952256,40108032,0 -(1,11822:6630773,6254097:25952256,513147,134348 -k1,11821:8525545,6254097:205254 -k1,11821:10763071,6254097:205255 -k1,11821:12100787,6254097:205254 -k1,11821:14316686,6254097:205254 -k1,11821:18388565,6254097:205255 -(1,11821:18388565,6254097:0,452978,115847 -r1,11906:19801966,6254097:1413401,568825,115847 -k1,11821:18388565,6254097:-1413401 -) -(1,11821:18388565,6254097:1413401,452978,115847 -k1,11821:18388565,6254097:3277 -h1,11821:19798689,6254097:0,411205,112570 -) -k1,11821:20007220,6254097:205254 -k1,11821:22675972,6254097:205254 -k1,11821:27228230,6254097:205255 -k1,11821:27891581,6254097:205254 -k1,11821:28628332,6254097:205254 -k1,11821:30420214,6254097:205255 -k1,11821:31276896,6254097:205254 -k1,11821:32583029,6254097:0 -) -(1,11822:6630773,7095585:25952256,513147,7863 -g1,11821:9222721,7095585 -g1,11821:10689416,7095585 -g1,11821:13030362,7095585 -g1,11821:14248676,7095585 -g1,11821:15837268,7095585 -g1,11821:18243094,7095585 -g1,11821:19310675,7095585 -g1,11821:20642366,7095585 -g1,11821:22438052,7095585 -k1,11822:32583029,7095585:8577356 -g1,11822:32583029,7095585 -) -v1,11824:6630773,8286051:0,393216,0 -(1,11828:6630773,8569690:25952256,676855,196608 -g1,11828:6630773,8569690 -g1,11828:6630773,8569690 -g1,11828:6434165,8569690 -(1,11828:6434165,8569690:0,676855,196608 -r1,11906:32779637,8569690:26345472,873463,196608 -k1,11828:6434165,8569690:-26345472 -) -(1,11828:6434165,8569690:26345472,676855,196608 -[1,11828:6630773,8569690:25952256,480247,0 -(1,11826:6630773,8493669:25952256,404226,76021 -(1,11825:6630773,8493669:0,0,0 -g1,11825:6630773,8493669 -g1,11825:6630773,8493669 -g1,11825:6303093,8493669 -(1,11825:6303093,8493669:0,0,0 -) -g1,11825:6630773,8493669 -) -g1,11826:9159939,8493669 -g1,11826:10108377,8493669 -k1,11826:10108377,8493669:0 -h1,11826:14850562,8493669:0,0,0 -k1,11826:32583030,8493669:17732468 -g1,11826:32583030,8493669 -) -] -) -g1,11828:32583029,8569690 -g1,11828:6630773,8569690 -g1,11828:6630773,8569690 -g1,11828:32583029,8569690 -g1,11828:32583029,8569690 -) -h1,11828:6630773,8766298:0,0,0 -(1,11832:6630773,10132074:25952256,513147,134348 -h1,11831:6630773,10132074:983040,0,0 -k1,11831:10743395,10132074:339714 -(1,11831:10743395,10132074:0,452978,122846 -r1,11906:15673915,10132074:4930520,575824,122846 -k1,11831:10743395,10132074:-4930520 -) -(1,11831:10743395,10132074:4930520,452978,122846 -k1,11831:10743395,10132074:3277 -h1,11831:15670638,10132074:0,411205,112570 -) -k1,11831:16013629,10132074:339714 -k1,11831:19076364,10132074:339714 -k1,11831:20805441,10132074:339714 -k1,11831:22712776,10132074:339714 -k1,11831:24542778,10132074:339713 -k1,11831:26450113,10132074:339714 -k1,11831:28057293,10132074:339714 -k1,11831:29785715,10132074:339714 -k1,11831:31693050,10132074:339714 -k1,11831:32583029,10132074:0 -) -(1,11832:6630773,10973562:25952256,513147,134348 -k1,11831:9027897,10973562:176109 -k1,11831:10157555,10973562:176109 -k1,11831:11426149,10973562:176109 -(1,11831:11426149,10973562:0,452978,122846 -r1,11906:16356669,10973562:4930520,575824,122846 -k1,11831:11426149,10973562:-4930520 -) -(1,11831:11426149,10973562:4930520,452978,122846 -k1,11831:11426149,10973562:3277 -h1,11831:16353392,10973562:0,411205,112570 -) -k1,11831:16532778,10973562:176109 -k1,11831:17360315,10973562:176109 -k1,11831:19560177,10973562:176110 -k1,11831:20092146,10973562:176109 -k1,11831:23437576,10973562:176109 -k1,11831:25598771,10973562:176109 -k1,11831:26535098,10973562:176109 -k1,11831:30114492,10973562:176109 -(1,11831:30114492,10973562:0,452978,115847 -r1,11906:32583029,10973562:2468537,568825,115847 -k1,11831:30114492,10973562:-2468537 -) -(1,11831:30114492,10973562:2468537,452978,115847 -k1,11831:30114492,10973562:3277 -h1,11831:32579752,10973562:0,411205,112570 -) -k1,11831:32583029,10973562:0 -) -(1,11832:6630773,11815050:25952256,505283,126483 -g1,11831:8223953,11815050 -(1,11831:8223953,11815050:0,452978,122846 -r1,11906:12451049,11815050:4227096,575824,122846 -k1,11831:8223953,11815050:-4227096 -) -(1,11831:8223953,11815050:4227096,452978,122846 -k1,11831:8223953,11815050:3277 -h1,11831:12447772,11815050:0,411205,112570 -) -g1,11831:12650278,11815050 -g1,11831:13717859,11815050 -g1,11831:15021370,11815050 -g1,11831:18548517,11815050 -g1,11831:20078127,11815050 -(1,11831:20078127,11815050:0,452978,122846 -r1,11906:25008647,11815050:4930520,575824,122846 -k1,11831:20078127,11815050:-4930520 -) -(1,11831:20078127,11815050:4930520,452978,122846 -k1,11831:20078127,11815050:3277 -h1,11831:25005370,11815050:0,411205,112570 -) -g1,11831:25207876,11815050 -g1,11831:28332632,11815050 -g1,11831:29320259,11815050 -k1,11832:32583029,11815050:1380576 -g1,11832:32583029,11815050 -) -v1,11834:6630773,13005516:0,393216,0 -(1,11859:6630773,24001672:25952256,11389372,196608 -g1,11859:6630773,24001672 -g1,11859:6630773,24001672 -g1,11859:6434165,24001672 -(1,11859:6434165,24001672:0,11389372,196608 -r1,11906:32779637,24001672:26345472,11585980,196608 -k1,11859:6434165,24001672:-26345472 -) -(1,11859:6434165,24001672:26345472,11389372,196608 -[1,11859:6630773,24001672:25952256,11192764,0 -(1,11836:6630773,13213134:25952256,404226,82312 -(1,11835:6630773,13213134:0,0,0 -g1,11835:6630773,13213134 -g1,11835:6630773,13213134 -g1,11835:6303093,13213134 -(1,11835:6303093,13213134:0,0,0 -) -g1,11835:6630773,13213134 -) -k1,11836:6630773,13213134:0 -g1,11836:11056813,13213134 -h1,11836:11689105,13213134:0,0,0 -k1,11836:32583029,13213134:20893924 -g1,11836:32583029,13213134 -) -(1,11844:6630773,13944848:25952256,404226,9436 -(1,11838:6630773,13944848:0,0,0 -g1,11838:6630773,13944848 -g1,11838:6630773,13944848 -g1,11838:6303093,13944848 -(1,11838:6303093,13944848:0,0,0 -) -g1,11838:6630773,13944848 -) -g1,11844:7579210,13944848 -g1,11844:8211502,13944848 -g1,11844:8843794,13944848 -g1,11844:11372960,13944848 -g1,11844:12005252,13944848 -g1,11844:12637544,13944848 -h1,11844:12953690,13944848:0,0,0 -k1,11844:32583030,13944848:19629340 -g1,11844:32583030,13944848 -) -(1,11844:6630773,14611026:25952256,404226,107478 -h1,11844:6630773,14611026:0,0,0 -g1,11844:7579210,14611026 -g1,11844:7895356,14611026 -g1,11844:8211502,14611026 -g1,11844:12321396,14611026 -g1,11844:16115144,14611026 -g1,11844:20225038,14611026 -g1,11844:24018786,14611026 -h1,11844:26231806,14611026:0,0,0 -k1,11844:32583029,14611026:6351223 -g1,11844:32583029,14611026 -) -(1,11844:6630773,15277204:25952256,410518,6290 -h1,11844:6630773,15277204:0,0,0 -g1,11844:7579210,15277204 -g1,11844:7895356,15277204 -g1,11844:8211502,15277204 -g1,11844:8527648,15277204 -g1,11844:8843794,15277204 -g1,11844:9159940,15277204 -g1,11844:9476086,15277204 -g1,11844:9792232,15277204 -g1,11844:10108378,15277204 -g1,11844:10424524,15277204 -g1,11844:12321399,15277204 -g1,11844:12637545,15277204 -g1,11844:12953691,15277204 -g1,11844:13269837,15277204 -g1,11844:13585983,15277204 -g1,11844:13902129,15277204 -g1,11844:14218275,15277204 -g1,11844:16115150,15277204 -g1,11844:16431296,15277204 -g1,11844:16747442,15277204 -g1,11844:17063588,15277204 -g1,11844:17379734,15277204 -g1,11844:17695880,15277204 -g1,11844:18012026,15277204 -g1,11844:18328172,15277204 -g1,11844:20225047,15277204 -g1,11844:20541193,15277204 -g1,11844:20857339,15277204 -g1,11844:21173485,15277204 -g1,11844:21489631,15277204 -g1,11844:21805777,15277204 -g1,11844:22121923,15277204 -g1,11844:24018798,15277204 -k1,11844:24018798,15277204:0 -h1,11844:25599527,15277204:0,0,0 -k1,11844:32583029,15277204:6983502 -g1,11844:32583029,15277204 -) -(1,11844:6630773,15943382:25952256,388497,9436 -h1,11844:6630773,15943382:0,0,0 -g1,11844:7579210,15943382 -g1,11844:8211502,15943382 -g1,11844:8527648,15943382 -g1,11844:8843794,15943382 -g1,11844:9159940,15943382 -g1,11844:9476086,15943382 -g1,11844:9792232,15943382 -g1,11844:10108378,15943382 -g1,11844:10424524,15943382 -g1,11844:10740670,15943382 -g1,11844:11056816,15943382 -g1,11844:12321399,15943382 -g1,11844:12637545,15943382 -g1,11844:12953691,15943382 -g1,11844:13269837,15943382 -g1,11844:13585983,15943382 -g1,11844:13902129,15943382 -g1,11844:14218275,15943382 -g1,11844:14534421,15943382 -g1,11844:14850567,15943382 -g1,11844:16115150,15943382 -g1,11844:16431296,15943382 -g1,11844:16747442,15943382 -g1,11844:17063588,15943382 -g1,11844:17379734,15943382 -g1,11844:17695880,15943382 -g1,11844:18012026,15943382 -g1,11844:18328172,15943382 -g1,11844:18644318,15943382 -g1,11844:18960464,15943382 -g1,11844:20225047,15943382 -g1,11844:20541193,15943382 -g1,11844:20857339,15943382 -g1,11844:21173485,15943382 -g1,11844:21489631,15943382 -g1,11844:21805777,15943382 -g1,11844:22121923,15943382 -g1,11844:22438069,15943382 -g1,11844:22754215,15943382 -g1,11844:24018798,15943382 -h1,11844:25915672,15943382:0,0,0 -k1,11844:32583029,15943382:6667357 -g1,11844:32583029,15943382 -) -(1,11844:6630773,16609560:25952256,388497,9436 -h1,11844:6630773,16609560:0,0,0 -g1,11844:7579210,16609560 -g1,11844:8211502,16609560 -g1,11844:8527648,16609560 -g1,11844:8843794,16609560 -g1,11844:9159940,16609560 -g1,11844:9476086,16609560 -g1,11844:9792232,16609560 -g1,11844:10108378,16609560 -g1,11844:10424524,16609560 -g1,11844:10740670,16609560 -g1,11844:11056816,16609560 -g1,11844:12321399,16609560 -g1,11844:12637545,16609560 -g1,11844:12953691,16609560 -g1,11844:13269837,16609560 -g1,11844:13585983,16609560 -g1,11844:13902129,16609560 -g1,11844:14218275,16609560 -g1,11844:14534421,16609560 -g1,11844:14850567,16609560 -g1,11844:15482859,16609560 -g1,11844:15799005,16609560 -g1,11844:16115151,16609560 -g1,11844:16431297,16609560 -g1,11844:16747443,16609560 -g1,11844:17063589,16609560 -g1,11844:17379735,16609560 -g1,11844:17695881,16609560 -g1,11844:18012027,16609560 -g1,11844:18328173,16609560 -g1,11844:18644319,16609560 -g1,11844:18960465,16609560 -g1,11844:20225048,16609560 -g1,11844:20541194,16609560 -g1,11844:20857340,16609560 -g1,11844:21173486,16609560 -g1,11844:21489632,16609560 -g1,11844:21805778,16609560 -g1,11844:22121924,16609560 -g1,11844:22438070,16609560 -g1,11844:22754216,16609560 -g1,11844:24018799,16609560 -h1,11844:25915673,16609560:0,0,0 -k1,11844:32583029,16609560:6667356 -g1,11844:32583029,16609560 -) -(1,11846:6630773,17931098:25952256,404226,76021 -(1,11845:6630773,17931098:0,0,0 -g1,11845:6630773,17931098 -g1,11845:6630773,17931098 -g1,11845:6303093,17931098 -(1,11845:6303093,17931098:0,0,0 -) -g1,11845:6630773,17931098 -) -g1,11846:9159939,17931098 -k1,11846:9159939,17931098:0 -h1,11846:9792231,17931098:0,0,0 -k1,11846:32583029,17931098:22790798 -g1,11846:32583029,17931098 -) -(1,11847:6630773,18597276:25952256,404226,107478 -h1,11847:6630773,18597276:0,0,0 -g1,11847:6946919,18597276 -g1,11847:7263065,18597276 -g1,11847:11056814,18597276 -g1,11847:11689106,18597276 -g1,11847:12637544,18597276 -g1,11847:13902127,18597276 -g1,11847:14534419,18597276 -g1,11847:16431294,18597276 -g1,11847:18328168,18597276 -g1,11847:18960460,18597276 -g1,11847:22438063,18597276 -g1,11847:25599520,18597276 -g1,11847:26547958,18597276 -h1,11847:30341706,18597276:0,0,0 -k1,11847:32583029,18597276:2241323 -g1,11847:32583029,18597276 -) -(1,11848:6630773,19263454:25952256,404226,107478 -h1,11848:6630773,19263454:0,0,0 -h1,11848:10424521,19263454:0,0,0 -k1,11848:32583029,19263454:22158508 -g1,11848:32583029,19263454 -) -(1,11858:6630773,19995168:25952256,404226,9436 -(1,11850:6630773,19995168:0,0,0 -g1,11850:6630773,19995168 -g1,11850:6630773,19995168 -g1,11850:6303093,19995168 -(1,11850:6303093,19995168:0,0,0 -) -g1,11850:6630773,19995168 -) -g1,11858:7579210,19995168 -g1,11858:8211502,19995168 -g1,11858:8843794,19995168 -g1,11858:11372960,19995168 -g1,11858:12637543,19995168 -g1,11858:13269835,19995168 -h1,11858:13585981,19995168:0,0,0 -k1,11858:32583029,19995168:18997048 -g1,11858:32583029,19995168 -) -(1,11858:6630773,20661346:25952256,404226,101187 -h1,11858:6630773,20661346:0,0,0 -g1,11858:7579210,20661346 -g1,11858:7895356,20661346 -g1,11858:8211502,20661346 -g1,11858:10740668,20661346 -g1,11858:12321397,20661346 -g1,11858:12637543,20661346 -g1,11858:12953689,20661346 -g1,11858:13269835,20661346 -g1,11858:13585981,20661346 -g1,11858:13902127,20661346 -g1,11858:14218273,20661346 -g1,11858:14534419,20661346 -g1,11858:14850565,20661346 -h1,11858:17695876,20661346:0,0,0 -k1,11858:32583029,20661346:14887153 -g1,11858:32583029,20661346 -) -(1,11858:6630773,21327524:25952256,410518,6290 -h1,11858:6630773,21327524:0,0,0 -g1,11858:7579210,21327524 -g1,11858:7895356,21327524 -g1,11858:8211502,21327524 -g1,11858:10108377,21327524 -g1,11858:10424523,21327524 -g1,11858:10740669,21327524 -g1,11858:12637544,21327524 -g1,11858:12953690,21327524 -g1,11858:13269836,21327524 -g1,11858:13585982,21327524 -g1,11858:13902128,21327524 -g1,11858:14218274,21327524 -g1,11858:14534420,21327524 -g1,11858:14850566,21327524 -g1,11858:15166712,21327524 -g1,11858:15482858,21327524 -g1,11858:15799004,21327524 -g1,11858:16115150,21327524 -k1,11858:16115150,21327524:0 -h1,11858:17695879,21327524:0,0,0 -k1,11858:32583029,21327524:14887150 -g1,11858:32583029,21327524 -) -(1,11858:6630773,21993702:25952256,404226,107478 -h1,11858:6630773,21993702:0,0,0 -g1,11858:7579210,21993702 -g1,11858:8211502,21993702 -g1,11858:10424522,21993702 -g1,11858:10740668,21993702 -g1,11858:14850562,21993702 -g1,11858:15166708,21993702 -g1,11858:15482854,21993702 -g1,11858:15799000,21993702 -g1,11858:16115146,21993702 -g1,11858:16431292,21993702 -g1,11858:16747438,21993702 -h1,11858:17695875,21993702:0,0,0 -k1,11858:32583029,21993702:14887154 -g1,11858:32583029,21993702 -) -(1,11858:6630773,22659880:25952256,404226,107478 -h1,11858:6630773,22659880:0,0,0 -g1,11858:7579210,22659880 -g1,11858:8211502,22659880 -g1,11858:10424522,22659880 -g1,11858:10740668,22659880 -g1,11858:14850562,22659880 -g1,11858:15166708,22659880 -g1,11858:15482854,22659880 -g1,11858:15799000,22659880 -g1,11858:16115146,22659880 -g1,11858:16431292,22659880 -g1,11858:16747438,22659880 -h1,11858:17695875,22659880:0,0,0 -k1,11858:32583029,22659880:14887154 -g1,11858:32583029,22659880 -) -(1,11858:6630773,23326058:25952256,404226,107478 -h1,11858:6630773,23326058:0,0,0 -g1,11858:7579210,23326058 -g1,11858:8211502,23326058 -g1,11858:10424522,23326058 -g1,11858:10740668,23326058 -g1,11858:14850562,23326058 -g1,11858:15166708,23326058 -g1,11858:15482854,23326058 -g1,11858:15799000,23326058 -g1,11858:16115146,23326058 -g1,11858:16431292,23326058 -g1,11858:16747438,23326058 -h1,11858:17695875,23326058:0,0,0 -k1,11858:32583029,23326058:14887154 -g1,11858:32583029,23326058 -) -(1,11858:6630773,23992236:25952256,404226,9436 -h1,11858:6630773,23992236:0,0,0 -g1,11858:7579210,23992236 -g1,11858:8211502,23992236 -g1,11858:9476085,23992236 -g1,11858:11056814,23992236 -g1,11858:12321397,23992236 -g1,11858:13902126,23992236 -h1,11858:15166709,23992236:0,0,0 -k1,11858:32583029,23992236:17416320 -g1,11858:32583029,23992236 -) -] -) -g1,11859:32583029,24001672 -g1,11859:6630773,24001672 -g1,11859:6630773,24001672 -g1,11859:32583029,24001672 -g1,11859:32583029,24001672 -) -h1,11859:6630773,24198280:0,0,0 -(1,11863:6630773,25564056:25952256,513147,134348 -h1,11862:6630773,25564056:983040,0,0 -k1,11862:8537275,25564056:295627 -k1,11862:10036143,25564056:295627 -k1,11862:13691800,25564056:295626 -k1,11862:14855779,25564056:295627 -k1,11862:16255688,25564056:295627 -k1,11862:17576298,25564056:295627 -k1,11862:18891010,25564056:295627 -k1,11862:23093238,25564056:295627 -k1,11862:24048156,25564056:295626 -k1,11862:27799496,25564056:295627 -k1,11862:29489074,25564056:295627 -k1,11862:32583029,25564056:0 -) -(1,11863:6630773,26405544:25952256,513147,134348 -k1,11862:8799939,26405544:182114 -k1,11862:9929703,26405544:182113 -k1,11862:11130902,26405544:182114 -k1,11862:12596211,26405544:182114 -(1,11862:12803305,26405544:0,414482,115847 -r1,11906:14216706,26405544:1413401,530329,115847 -k1,11862:12803305,26405544:-1413401 -) -(1,11862:12803305,26405544:1413401,414482,115847 -k1,11862:12803305,26405544:3277 -h1,11862:14213429,26405544:0,411205,112570 -) -k1,11862:14398819,26405544:182113 -k1,11862:15772378,26405544:182114 -(1,11862:15772378,26405544:0,452978,115847 -r1,11906:18944338,26405544:3171960,568825,115847 -k1,11862:15772378,26405544:-3171960 -) -(1,11862:15772378,26405544:3171960,452978,115847 -k1,11862:15772378,26405544:3277 -h1,11862:18941061,26405544:0,411205,112570 -) -k1,11862:19333546,26405544:182114 -k1,11862:20707104,26405544:182113 -k1,11862:23380241,26405544:182114 -(1,11862:23587335,26405544:0,452978,115847 -r1,11906:26055872,26405544:2468537,568825,115847 -k1,11862:23587335,26405544:-2468537 -) -(1,11862:23587335,26405544:2468537,452978,115847 -k1,11862:23587335,26405544:3277 -h1,11862:26052595,26405544:0,411205,112570 -) -k1,11862:26445080,26405544:182114 -k1,11862:29010082,26405544:182113 -k1,11862:31434183,26405544:182114 -k1,11862:32583029,26405544:0 -) -(1,11863:6630773,27247032:25952256,513147,134348 -k1,11862:7482388,27247032:192323 -k1,11862:9066696,27247032:192323 -k1,11862:11327335,27247032:192323 -k1,11862:12205820,27247032:192323 -k1,11862:14253467,27247032:192323 -k1,11862:16906667,27247032:192323 -k1,11862:19036233,27247032:192322 -k1,11862:20926594,27247032:192323 -k1,11862:23699069,27247032:192323 -k1,11862:25387579,27247032:192323 -k1,11862:26111399,27247032:192323 -k1,11862:28436919,27247032:192323 -k1,11862:31563944,27247032:192323 -k1,11862:32583029,27247032:0 -) -(1,11863:6630773,28088520:25952256,513147,126483 -k1,11862:7952634,28088520:229376 -k1,11862:8841302,28088520:229376 -k1,11862:9426538,28088520:229376 -k1,11862:10868985,28088520:229376 -k1,11862:14580944,28088520:229376 -k1,11862:15882489,28088520:229376 -k1,11862:17762062,28088520:229376 -k1,11862:21272170,28088520:229376 -k1,11862:22692991,28088520:229376 -k1,11862:25273143,28088520:229376 -k1,11862:27586564,28088520:229376 -k1,11862:30316794,28088520:229376 -k1,11862:31364059,28088520:229376 -k1,11862:32051532,28088520:229376 -k1,11862:32583029,28088520:0 -) -(1,11863:6630773,28930008:25952256,505283,134348 -k1,11862:8050030,28930008:133441 -k1,11862:10813431,28930008:133441 -k1,11862:11598301,28930008:133442 -k1,11862:13168947,28930008:133441 -k1,11862:15685277,28930008:133441 -k1,11862:17887034,28930008:133441 -k1,11862:18706638,28930008:133442 -k1,11862:21036190,28930008:133441 -k1,11862:22241800,28930008:133441 -k1,11862:23441512,28930008:133441 -k1,11862:26255376,28930008:133441 -k1,11862:27782769,28930008:133442 -k1,11862:28935295,28930008:133441 -k1,11862:32583029,28930008:0 -) -(1,11863:6630773,29771496:25952256,505283,126483 -k1,11862:9813332,29771496:262275 -k1,11862:13380588,29771496:262275 -k1,11862:15139049,29771496:262274 -k1,11862:18174808,29771496:262275 -k1,11862:20087280,29771496:262275 -k1,11862:22815019,29771496:262275 -k1,11862:24149463,29771496:262275 -k1,11862:25805688,29771496:262274 -k1,11862:27087048,29771496:262275 -k1,11862:30251913,29771496:262275 -k1,11862:32583029,29771496:0 -) -(1,11863:6630773,30612984:25952256,505283,134348 -g1,11862:8021447,30612984 -g1,11862:10091074,30612984 -g1,11862:10941731,30612984 -k1,11863:32583029,30612984:19698156 -g1,11863:32583029,30612984 -) -v1,11865:6630773,31803450:0,393216,0 -(1,11879:6630773,38081642:25952256,6671408,196608 -g1,11879:6630773,38081642 -g1,11879:6630773,38081642 -g1,11879:6434165,38081642 -(1,11879:6434165,38081642:0,6671408,196608 -r1,11906:32779637,38081642:26345472,6868016,196608 -k1,11879:6434165,38081642:-26345472 -) -(1,11879:6434165,38081642:26345472,6671408,196608 -[1,11879:6630773,38081642:25952256,6474800,0 -(1,11867:6630773,32011068:25952256,404226,107478 -(1,11866:6630773,32011068:0,0,0 -g1,11866:6630773,32011068 -g1,11866:6630773,32011068 -g1,11866:6303093,32011068 -(1,11866:6303093,32011068:0,0,0 -) -g1,11866:6630773,32011068 -) -k1,11867:11657123,32011068:600310 -k1,11867:12889724,32011068:600309 -k1,11867:18232219,32011068:600310 -k1,11867:19780965,32011068:600309 -k1,11867:20697421,32011068:600310 -k1,11867:23510750,32011068:600309 -k1,11867:25691788,32011068:600310 -k1,11867:26608244,32011068:600310 -k1,11867:31002301,32011068:600309 -k1,11867:32583029,32011068:0 -) -(1,11867:6630773,32677246:25952256,410518,101187 -g1,11867:13902124,32677246 -h1,11867:17379726,32677246:0,0,0 -k1,11867:32583029,32677246:15203303 -g1,11867:32583029,32677246 -) -(1,11868:6630773,33343424:25952256,404226,107478 -h1,11868:6630773,33343424:0,0,0 -h1,11868:11056813,33343424:0,0,0 -k1,11868:32583029,33343424:21526216 -g1,11868:32583029,33343424 -) -(1,11878:6630773,34075138:25952256,404226,9436 -(1,11870:6630773,34075138:0,0,0 -g1,11870:6630773,34075138 -g1,11870:6630773,34075138 -g1,11870:6303093,34075138 -(1,11870:6303093,34075138:0,0,0 -) -g1,11870:6630773,34075138 -) -g1,11878:7579210,34075138 -g1,11878:8211502,34075138 -g1,11878:8843794,34075138 -g1,11878:11372960,34075138 -g1,11878:12637543,34075138 -g1,11878:13269835,34075138 -h1,11878:13585981,34075138:0,0,0 -k1,11878:32583029,34075138:18997048 -g1,11878:32583029,34075138 -) -(1,11878:6630773,34741316:25952256,404226,101187 -h1,11878:6630773,34741316:0,0,0 -g1,11878:7579210,34741316 -g1,11878:7895356,34741316 -g1,11878:8211502,34741316 -g1,11878:10740668,34741316 -g1,11878:12321397,34741316 -g1,11878:12637543,34741316 -g1,11878:12953689,34741316 -g1,11878:13269835,34741316 -g1,11878:13585981,34741316 -g1,11878:13902127,34741316 -g1,11878:14218273,34741316 -g1,11878:14534419,34741316 -g1,11878:14850565,34741316 -h1,11878:17695876,34741316:0,0,0 -k1,11878:32583029,34741316:14887153 -g1,11878:32583029,34741316 -) -(1,11878:6630773,35407494:25952256,410518,6290 -h1,11878:6630773,35407494:0,0,0 -g1,11878:7579210,35407494 -g1,11878:7895356,35407494 -g1,11878:8211502,35407494 -g1,11878:10108377,35407494 -g1,11878:10424523,35407494 -g1,11878:10740669,35407494 -g1,11878:12637544,35407494 -g1,11878:12953690,35407494 -g1,11878:13269836,35407494 -g1,11878:13585982,35407494 -g1,11878:13902128,35407494 -g1,11878:14218274,35407494 -g1,11878:14534420,35407494 -g1,11878:14850566,35407494 -g1,11878:15166712,35407494 -g1,11878:15482858,35407494 -g1,11878:15799004,35407494 -g1,11878:16115150,35407494 -k1,11878:16115150,35407494:0 -h1,11878:17695879,35407494:0,0,0 -k1,11878:32583029,35407494:14887150 -g1,11878:32583029,35407494 -) -(1,11878:6630773,36073672:25952256,404226,107478 -h1,11878:6630773,36073672:0,0,0 -g1,11878:7579210,36073672 -g1,11878:8211502,36073672 -g1,11878:10424522,36073672 -g1,11878:10740668,36073672 -g1,11878:14850562,36073672 -g1,11878:15166708,36073672 -g1,11878:15482854,36073672 -g1,11878:15799000,36073672 -g1,11878:16115146,36073672 -g1,11878:16431292,36073672 -g1,11878:16747438,36073672 -h1,11878:17695875,36073672:0,0,0 -k1,11878:32583029,36073672:14887154 -g1,11878:32583029,36073672 -) -(1,11878:6630773,36739850:25952256,404226,107478 -h1,11878:6630773,36739850:0,0,0 -g1,11878:7579210,36739850 -g1,11878:8211502,36739850 -g1,11878:10424522,36739850 -g1,11878:10740668,36739850 -g1,11878:14850562,36739850 -g1,11878:15166708,36739850 -g1,11878:15482854,36739850 -g1,11878:15799000,36739850 -g1,11878:16115146,36739850 -g1,11878:16431292,36739850 -g1,11878:16747438,36739850 -h1,11878:17695875,36739850:0,0,0 -k1,11878:32583029,36739850:14887154 -g1,11878:32583029,36739850 -) -(1,11878:6630773,37406028:25952256,404226,107478 -h1,11878:6630773,37406028:0,0,0 -g1,11878:7579210,37406028 -g1,11878:8211502,37406028 -g1,11878:10424522,37406028 -g1,11878:10740668,37406028 -g1,11878:14850562,37406028 -g1,11878:15166708,37406028 -g1,11878:15482854,37406028 -g1,11878:15799000,37406028 -g1,11878:16115146,37406028 -g1,11878:16431292,37406028 -g1,11878:16747438,37406028 -h1,11878:17695875,37406028:0,0,0 -k1,11878:32583029,37406028:14887154 -g1,11878:32583029,37406028 -) -(1,11878:6630773,38072206:25952256,404226,9436 -h1,11878:6630773,38072206:0,0,0 -g1,11878:7579210,38072206 -g1,11878:8211502,38072206 -g1,11878:9476085,38072206 -g1,11878:11056814,38072206 -g1,11878:12321397,38072206 -g1,11878:13902126,38072206 -h1,11878:15166709,38072206:0,0,0 -k1,11878:32583029,38072206:17416320 -g1,11878:32583029,38072206 -) -] -) -g1,11879:32583029,38081642 -g1,11879:6630773,38081642 -g1,11879:6630773,38081642 -g1,11879:32583029,38081642 -g1,11879:32583029,38081642 -) -h1,11879:6630773,38278250:0,0,0 -v1,11883:6630773,40168314:0,393216,0 -(1,11906:6630773,44008999:25952256,4233901,589824 -g1,11906:6630773,44008999 -(1,11906:6630773,44008999:25952256,4233901,589824 -(1,11906:6630773,44598823:25952256,4823725,0 -[1,11906:6630773,44598823:25952256,4823725,0 -(1,11906:6630773,44598823:25952256,4797511,0 -r1,11906:6656987,44598823:26214,4797511,0 -[1,11906:6656987,44598823:25899828,4797511,0 -(1,11906:6656987,44008999:25899828,3617863,0 -[1,11906:7246811,44008999:24720180,3617863,0 -(1,11885:7246811,41476672:24720180,1085536,298548 -(1,11883:7246811,41476672:0,1085536,298548 -r1,11906:8753226,41476672:1506415,1384084,298548 -k1,11883:7246811,41476672:-1506415 -) -(1,11883:7246811,41476672:1506415,1085536,298548 -) -k1,11883:8935984,41476672:182758 -k1,11883:8935984,41476672:0 -k1,11884:8935984,41476672:0 -k1,11884:11694306,41476672:182757 -k1,11884:12795879,41476672:182758 -k1,11884:15257323,41476672:182757 -k1,11884:19885388,41476672:182758 -k1,11884:20727437,41476672:182757 -k1,11884:21929280,41476672:182758 -k1,11884:23850053,41476672:182758 -k1,11884:26238097,41476672:182757 -k1,11884:27107017,41476672:182758 -k1,11884:28060477,41476672:182757 -k1,11884:31315563,41476672:182758 -k1,11885:31966991,41476672:0 -) -(1,11885:7246811,42318160:24720180,513147,134348 -(1,11884:7246811,42318160:0,452978,115847 -r1,11906:8308500,42318160:1061689,568825,115847 -k1,11884:7246811,42318160:-1061689 -) -(1,11884:7246811,42318160:1061689,452978,115847 -k1,11884:7246811,42318160:3277 -h1,11884:8305223,42318160:0,411205,112570 -) -k1,11884:8542919,42318160:234419 -k1,11884:9968783,42318160:234419 -(1,11884:9968783,42318160:0,452978,115847 -r1,11906:11733896,42318160:1765113,568825,115847 -k1,11884:9968783,42318160:-1765113 -) -(1,11884:9968783,42318160:1765113,452978,115847 -k1,11884:9968783,42318160:3277 -h1,11884:11730619,42318160:0,411205,112570 -) -k1,11884:11968314,42318160:234418 -k1,11884:14965731,42318160:234419 -k1,11884:16896877,42318160:234419 -k1,11884:20533925,42318160:234419 -k1,11884:22335965,42318160:234419 -k1,11884:24308399,42318160:234419 -k1,11884:28054891,42318160:234418 -k1,11884:28975472,42318160:234419 -k1,11884:30228976,42318160:234419 -k1,11884:31966991,42318160:0 -) -(1,11885:7246811,43159648:24720180,513147,134348 -k1,11884:8123624,43159648:217521 -k1,11884:8697005,43159648:217521 -k1,11884:11425866,43159648:217521 -k1,11884:12259425,43159648:217521 -k1,11884:13496031,43159648:217521 -k1,11884:15803495,43159648:217521 -k1,11884:20252020,43159648:217521 -k1,11884:21423090,43159648:217521 -k1,11884:23170877,43159648:217521 -k1,11884:24039826,43159648:217521 -k1,11884:25349832,43159648:217521 -k1,11884:25923213,43159648:217521 -k1,11884:27423929,43159648:217521 -k1,11884:30388064,43159648:217521 -(1,11884:30388064,43159648:0,424981,115847 -r1,11906:31098042,43159648:709978,540828,115847 -k1,11884:30388064,43159648:-709978 -) -(1,11884:30388064,43159648:709978,424981,115847 -k1,11884:30388064,43159648:3277 -h1,11884:31094765,43159648:0,411205,112570 -) -k1,11884:31315563,43159648:217521 -k1,11884:31966991,43159648:0 -) -(1,11885:7246811,44001136:24720180,505283,7863 -g1,11884:9699168,44001136 -g1,11884:10917482,44001136 -g1,11884:13395398,44001136 -g1,11884:14009470,44001136 -k1,11885:31966991,44001136:15024130 -g1,11885:31966991,44001136 -) -] -) -] -r1,11906:32583029,44598823:26214,4797511,0 -) -] -) -) -g1,11906:32583029,44008999 -) -] -(1,11906:32583029,45706769:0,0,0 -g1,11906:32583029,45706769 -) -) -] -(1,11906:6630773,47279633:25952256,0,0 -h1,11906:6630773,47279633:25952256,0,0 -) -] -(1,11906:4262630,4025873:0,0,0 -[1,11906:-473656,4025873:0,0,0 -(1,11906:-473656,-710413:0,0,0 -(1,11906:-473656,-710413:0,0,0 -g1,11906:-473656,-710413 -) -g1,11906:-473656,-710413 -) -] -) -] -!30207 -}222 -Input:1657:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1658:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1659:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1660:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1661:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1662:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1663:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1664:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!748 -{223 -[1,11932:4262630,47279633:28320399,43253760,0 -(1,11932:4262630,4025873:0,0,0 -[1,11932:-473656,4025873:0,0,0 -(1,11932:-473656,-710413:0,0,0 -(1,11932:-473656,-644877:0,0,0 -k1,11932:-473656,-644877:-65536 -) -(1,11932:-473656,4736287:0,0,0 -k1,11932:-473656,4736287:5209943 -) -g1,11932:-473656,-710413 -) -] -) -[1,11932:6630773,47279633:25952256,43253760,0 -[1,11932:6630773,4812305:25952256,786432,0 -(1,11932:6630773,4812305:25952256,513147,134348 -(1,11932:6630773,4812305:25952256,513147,134348 -g1,11932:3078558,4812305 -[1,11932:3078558,4812305:0,0,0 -(1,11932:3078558,2439708:0,1703936,0 -k1,11932:1358238,2439708:-1720320 -(1,11088:1358238,2439708:1720320,1703936,0 -(1,11088:1358238,2439708:1179648,16384,0 -r1,11932:2537886,2439708:1179648,16384,0 -) -g1,11088:3062174,2439708 -(1,11088:3062174,2439708:16384,1703936,0 -[1,11088:3062174,2439708:25952256,1703936,0 -(1,11088:3062174,1915420:25952256,1179648,0 -(1,11088:3062174,1915420:16384,1179648,0 -r1,11932:3078558,1915420:16384,1179648,0 -) -k1,11088:29014430,1915420:25935872 -g1,11088:29014430,1915420 -) -] -) -) -) -] -[1,11932:3078558,4812305:0,0,0 -(1,11932:3078558,2439708:0,1703936,0 -g1,11932:29030814,2439708 -g1,11932:36135244,2439708 -(1,11088:36135244,2439708:1720320,1703936,0 -(1,11088:36135244,2439708:16384,1703936,0 -[1,11088:36135244,2439708:25952256,1703936,0 -(1,11088:36135244,1915420:25952256,1179648,0 -(1,11088:36135244,1915420:16384,1179648,0 -r1,11932:36151628,1915420:16384,1179648,0 -) -k1,11088:62087500,1915420:25935872 -g1,11088:62087500,1915420 -) -] -) -g1,11088:36675916,2439708 -(1,11088:36675916,2439708:1179648,16384,0 -r1,11932:37855564,2439708:1179648,16384,0 -) -) -k1,11932:3078556,2439708:-34777008 -) -] -[1,11932:3078558,4812305:0,0,0 -(1,11932:3078558,49800853:0,16384,2228224 -k1,11932:1358238,49800853:-1720320 -(1,11088:1358238,49800853:1720320,16384,2228224 -(1,11088:1358238,49800853:1179648,16384,0 -r1,11932:2537886,49800853:1179648,16384,0 -) -g1,11088:3062174,49800853 -(1,11088:3062174,52029077:16384,1703936,0 -[1,11088:3062174,52029077:25952256,1703936,0 -(1,11088:3062174,51504789:25952256,1179648,0 -(1,11088:3062174,51504789:16384,1179648,0 -r1,11932:3078558,51504789:16384,1179648,0 -) -k1,11088:29014430,51504789:25935872 -g1,11088:29014430,51504789 -) -] -) -) -) -] -[1,11932:3078558,4812305:0,0,0 -(1,11932:3078558,49800853:0,16384,2228224 -g1,11932:29030814,49800853 -g1,11932:36135244,49800853 -(1,11088:36135244,49800853:1720320,16384,2228224 -(1,11088:36135244,52029077:16384,1703936,0 -[1,11088:36135244,52029077:25952256,1703936,0 -(1,11088:36135244,51504789:25952256,1179648,0 -(1,11088:36135244,51504789:16384,1179648,0 -r1,11932:36151628,51504789:16384,1179648,0 -) -k1,11088:62087500,51504789:25935872 -g1,11088:62087500,51504789 -) -] -) -g1,11088:36675916,49800853 -(1,11088:36675916,49800853:1179648,16384,0 -r1,11932:37855564,49800853:1179648,16384,0 -) -) -k1,11932:3078556,49800853:-34777008 -) -] -g1,11932:6630773,4812305 -k1,11932:25241686,4812305:17415536 -g1,11932:26807341,4812305 -g1,11932:30339731,4812305 -g1,11932:31154998,4812305 -) -) -] -[1,11932:6630773,45706769:25952256,40108032,0 -(1,11932:6630773,45706769:25952256,40108032,0 -(1,11932:6630773,45706769:0,0,0 -g1,11932:6630773,45706769 -) -[1,11932:6630773,45706769:25952256,40108032,0 -v1,11906:6630773,6254097:0,393216,0 -(1,11906:6630773,17335444:25952256,11474563,616038 -g1,11906:6630773,17335444 -(1,11906:6630773,17335444:25952256,11474563,616038 -(1,11906:6630773,17951482:25952256,12090601,0 -[1,11906:6630773,17951482:25952256,12090601,0 -(1,11906:6630773,17925268:25952256,12064387,0 -r1,11932:6656987,17925268:26214,12064387,0 -[1,11906:6656987,17925268:25899828,12064387,0 -(1,11906:6656987,17335444:25899828,10884739,0 -[1,11906:7246811,17335444:24720180,10884739,0 -v1,11887:7246811,6843921:0,393216,0 -(1,11902:7246811,13122113:24720180,6671408,196608 -g1,11902:7246811,13122113 -g1,11902:7246811,13122113 -g1,11902:7050203,13122113 -(1,11902:7050203,13122113:0,6671408,196608 -r1,11932:32163599,13122113:25113396,6868016,196608 -k1,11902:7050203,13122113:-25113396 -) -(1,11902:7050203,13122113:25113396,6671408,196608 -[1,11902:7246811,13122113:24720180,6474800,0 -(1,11889:7246811,7051539:24720180,404226,101187 -(1,11888:7246811,7051539:0,0,0 -g1,11888:7246811,7051539 -g1,11888:7246811,7051539 -g1,11888:6919131,7051539 -(1,11888:6919131,7051539:0,0,0 -) -g1,11888:7246811,7051539 -) -g1,11889:8827540,7051539 -g1,11889:9775978,7051539 -g1,11889:11356707,7051539 -h1,11889:12937435,7051539:0,0,0 -k1,11889:31966991,7051539:19029556 -g1,11889:31966991,7051539 -) -(1,11890:7246811,7717717:24720180,404226,107478 -h1,11890:7246811,7717717:0,0,0 -g1,11890:11988997,7717717 -g1,11890:12937435,7717717 -g1,11890:17995766,7717717 -g1,11890:19260349,7717717 -g1,11890:19892641,7717717 -g1,11890:22421807,7717717 -g1,11890:24318681,7717717 -g1,11890:24950973,7717717 -g1,11890:28428576,7717717 -k1,11890:28428576,7717717:0 -h1,11890:31273887,7717717:0,0,0 -k1,11890:31966991,7717717:693104 -g1,11890:31966991,7717717 -) -(1,11891:7246811,8383895:24720180,404226,107478 -h1,11891:7246811,8383895:0,0,0 -h1,11891:11672851,8383895:0,0,0 -k1,11891:31966991,8383895:20294140 -g1,11891:31966991,8383895 -) -(1,11901:7246811,9115609:24720180,404226,9436 -(1,11893:7246811,9115609:0,0,0 -g1,11893:7246811,9115609 -g1,11893:7246811,9115609 -g1,11893:6919131,9115609 -(1,11893:6919131,9115609:0,0,0 -) -g1,11893:7246811,9115609 -) -g1,11901:8195248,9115609 -g1,11901:8827540,9115609 -g1,11901:9459832,9115609 -g1,11901:11988998,9115609 -g1,11901:13253581,9115609 -g1,11901:13885873,9115609 -h1,11901:14202019,9115609:0,0,0 -k1,11901:31966991,9115609:17764972 -g1,11901:31966991,9115609 -) -(1,11901:7246811,9781787:24720180,410518,101187 -h1,11901:7246811,9781787:0,0,0 -g1,11901:8195248,9781787 -g1,11901:8511394,9781787 -g1,11901:8827540,9781787 -g1,11901:11356706,9781787 -g1,11901:12937435,9781787 -g1,11901:14834310,9781787 -g1,11901:15150456,9781787 -g1,11901:15466602,9781787 -h1,11901:18311913,9781787:0,0,0 -k1,11901:31966991,9781787:13655078 -g1,11901:31966991,9781787 -) -(1,11901:7246811,10447965:24720180,410518,6290 -h1,11901:7246811,10447965:0,0,0 -g1,11901:8195248,10447965 -g1,11901:8511394,10447965 -g1,11901:8827540,10447965 -g1,11901:10724415,10447965 -g1,11901:11040561,10447965 -g1,11901:11356707,10447965 -g1,11901:13253582,10447965 -g1,11901:13569728,10447965 -g1,11901:13885874,10447965 -g1,11901:14202020,10447965 -g1,11901:14518166,10447965 -g1,11901:14834312,10447965 -g1,11901:15150458,10447965 -g1,11901:15466604,10447965 -g1,11901:15782750,10447965 -g1,11901:16098896,10447965 -g1,11901:16415042,10447965 -g1,11901:16731188,10447965 -k1,11901:16731188,10447965:0 -h1,11901:18311917,10447965:0,0,0 -k1,11901:31966991,10447965:13655074 -g1,11901:31966991,10447965 -) -(1,11901:7246811,11114143:24720180,404226,107478 -h1,11901:7246811,11114143:0,0,0 -g1,11901:8195248,11114143 -g1,11901:8827540,11114143 -g1,11901:11040560,11114143 -g1,11901:11356706,11114143 -g1,11901:15466600,11114143 -g1,11901:15782746,11114143 -g1,11901:16098892,11114143 -g1,11901:16415038,11114143 -g1,11901:16731184,11114143 -g1,11901:17047330,11114143 -g1,11901:17363476,11114143 -h1,11901:18311913,11114143:0,0,0 -k1,11901:31966991,11114143:13655078 -g1,11901:31966991,11114143 -) -(1,11901:7246811,11780321:24720180,404226,107478 -h1,11901:7246811,11780321:0,0,0 -g1,11901:8195248,11780321 -g1,11901:8827540,11780321 -g1,11901:11040560,11780321 -g1,11901:11356706,11780321 -g1,11901:15466600,11780321 -g1,11901:15782746,11780321 -g1,11901:16098892,11780321 -g1,11901:16415038,11780321 -g1,11901:16731184,11780321 -g1,11901:17047330,11780321 -g1,11901:17363476,11780321 -h1,11901:18311913,11780321:0,0,0 -k1,11901:31966991,11780321:13655078 -g1,11901:31966991,11780321 -) -(1,11901:7246811,12446499:24720180,404226,107478 -h1,11901:7246811,12446499:0,0,0 -g1,11901:8195248,12446499 -g1,11901:8827540,12446499 -g1,11901:11040560,12446499 -g1,11901:11356706,12446499 -g1,11901:15466600,12446499 -g1,11901:15782746,12446499 -g1,11901:16098892,12446499 -g1,11901:16415038,12446499 -g1,11901:16731184,12446499 -g1,11901:17047330,12446499 -g1,11901:17363476,12446499 -h1,11901:18311913,12446499:0,0,0 -k1,11901:31966991,12446499:13655078 -g1,11901:31966991,12446499 -) -(1,11901:7246811,13112677:24720180,404226,9436 -h1,11901:7246811,13112677:0,0,0 -g1,11901:8195248,13112677 -g1,11901:8827540,13112677 -g1,11901:10092123,13112677 -g1,11901:11672852,13112677 -g1,11901:12937435,13112677 -g1,11901:14518164,13112677 -h1,11901:15782747,13112677:0,0,0 -k1,11901:31966991,13112677:16184244 -g1,11901:31966991,13112677 -) -] -) -g1,11902:31966991,13122113 -g1,11902:7246811,13122113 -g1,11902:7246811,13122113 -g1,11902:31966991,13122113 -g1,11902:31966991,13122113 -) -h1,11902:7246811,13318721:0,0,0 -(1,11906:7246811,14684497:24720180,505283,134348 -h1,11905:7246811,14684497:983040,0,0 -k1,11905:9816377,14684497:205682 -k1,11905:12106104,14684497:205682 -k1,11905:13412791,14684497:205682 -k1,11905:15128424,14684497:205683 -k1,11905:17888699,14684497:205682 -k1,11905:20404525,14684497:205682 -k1,11905:21261635,14684497:205682 -k1,11905:23595926,14684497:205682 -k1,11905:24993053,14684497:205682 -k1,11905:26171946,14684497:205683 -k1,11905:27029056,14684497:205682 -k1,11905:28735512,14684497:205682 -k1,11905:30985917,14684497:205682 -k1,11906:31966991,14684497:0 -) -(1,11906:7246811,15525985:24720180,513147,134348 -k1,11905:10258555,15525985:296587 -k1,11905:13135294,15525985:296587 -k1,11905:15690251,15525985:296587 -k1,11905:17872309,15525985:296587 -k1,11905:20929271,15525985:296586 -k1,11905:24198571,15525985:296587 -k1,11905:25304528,15525985:296587 -k1,11905:28626912,15525985:296587 -k1,11905:30114944,15525985:296587 -k1,11906:31966991,15525985:0 -) -(1,11906:7246811,16367473:24720180,513147,134348 -k1,11905:8616076,16367473:223696 -k1,11905:10407394,16367473:223697 -k1,11905:12603723,16367473:223696 -k1,11905:14111925,16367473:223696 -k1,11905:16660183,16367473:223696 -k1,11905:19727487,16367473:223697 -k1,11905:23254853,16367473:223696 -k1,11905:24792546,16367473:223696 -k1,11905:25760731,16367473:223696 -k1,11905:27003513,16367473:223697 -k1,11905:28652617,16367473:223696 -k1,11905:29535605,16367473:223696 -k1,11905:31966991,16367473:0 -) -(1,11906:7246811,17208961:24720180,505283,126483 -g1,11905:9704410,17208961 -g1,11905:11007921,17208961 -g1,11905:11954916,17208961 -g1,11905:15653112,17208961 -g1,11905:16538503,17208961 -k1,11906:31966991,17208961:11084762 -g1,11906:31966991,17208961 -) -] -) -] -r1,11932:32583029,17925268:26214,12064387,0 -) -] -) -) -g1,11906:32583029,17335444 -) -h1,11906:6630773,17951482:0,0,0 -v1,11909:6630773,19240465:0,393216,0 -(1,11910:6630773,22241500:25952256,3394251,616038 -g1,11910:6630773,22241500 -(1,11910:6630773,22241500:25952256,3394251,616038 -(1,11910:6630773,22857538:25952256,4010289,0 -[1,11910:6630773,22857538:25952256,4010289,0 -(1,11910:6630773,22831324:25952256,3957861,0 -r1,11932:6656987,22831324:26214,3957861,0 -[1,11910:6656987,22831324:25899828,3957861,0 -(1,11910:6656987,22241500:25899828,2778213,0 -[1,11910:7246811,22241500:24720180,2778213,0 -(1,11910:7246811,20550661:24720180,1087374,134348 -k1,11909:8639551,20550661:183037 -k1,11909:9651619,20550661:183038 -k1,11909:11731923,20550661:183037 -k1,11909:15579733,20550661:183037 -k1,11909:17059729,20550661:183038 -k1,11909:17455742,20550661:183021 -k1,11909:19604204,20550661:183037 -(1,11909:19604204,20550661:0,452978,115847 -r1,11932:22424453,20550661:2820249,568825,115847 -k1,11909:19604204,20550661:-2820249 -) -(1,11909:19604204,20550661:2820249,452978,115847 -k1,11909:19604204,20550661:3277 -h1,11909:22421176,20550661:0,411205,112570 -) -k1,11909:22607490,20550661:183037 -k1,11909:23476690,20550661:183038 -k1,11909:24430430,20550661:183037 -k1,11909:27859465,20550661:183037 -k1,11909:29268682,20550661:183038 -k1,11909:30470804,20550661:183037 -k1,11909:31966991,20550661:0 -) -(1,11910:7246811,21392149:24720180,505283,134348 -k1,11909:8267761,21392149:259422 -k1,11909:11524799,21392149:259421 -k1,11909:12415988,21392149:259422 -k1,11909:13866855,21392149:259422 -k1,11909:16538656,21392149:259421 -k1,11909:17817163,21392149:259422 -k1,11909:21262945,21392149:259422 -k1,11909:22173795,21392149:259422 -k1,11909:23458199,21392149:259421 -k1,11909:25048002,21392149:259422 -k1,11909:26326509,21392149:259422 -k1,11909:29364657,21392149:259421 -k1,11909:31435494,21392149:259422 -k1,11909:31966991,21392149:0 -) -(1,11910:7246811,22233637:24720180,513147,7863 -k1,11910:31966992,22233637:21784168 -g1,11910:31966992,22233637 -) -] -) -] -r1,11932:32583029,22831324:26214,3957861,0 -) -] -) -) -g1,11910:32583029,22241500 -) -h1,11910:6630773,22857538:0,0,0 -(1,11913:6630773,24146522:25952256,513147,134348 -h1,11912:6630773,24146522:983040,0,0 -k1,11912:8956099,24146522:300264 -k1,11912:10275448,24146522:300264 -k1,11912:12881924,24146522:300264 -k1,11912:16430152,24146522:300264 -k1,11912:20113384,24146522:300264 -k1,11912:21981270,24146522:300265 -k1,11912:23670242,24146522:300264 -k1,11912:25538127,24146522:300264 -k1,11912:26489819,24146522:300264 -k1,11912:28280372,24146522:300264 -k1,11912:30321928,24146522:300264 -k1,11912:31490544,24146522:300264 -k1,11913:32583029,24146522:0 -) -(1,11913:6630773,24988010:25952256,452978,115847 -(1,11912:6630773,24988010:0,452978,115847 -r1,11932:9451022,24988010:2820249,568825,115847 -k1,11912:6630773,24988010:-2820249 -) -(1,11912:6630773,24988010:2820249,452978,115847 -k1,11912:6630773,24988010:3277 -h1,11912:9447745,24988010:0,411205,112570 -) -k1,11913:32583028,24988010:22958336 -g1,11913:32583028,24988010 -) -v1,11915:6630773,26101683:0,393216,0 -(1,11919:6630773,26416779:25952256,708312,196608 -g1,11919:6630773,26416779 -g1,11919:6630773,26416779 -g1,11919:6434165,26416779 -(1,11919:6434165,26416779:0,708312,196608 -r1,11932:32779637,26416779:26345472,904920,196608 -k1,11919:6434165,26416779:-26345472 -) -(1,11919:6434165,26416779:26345472,708312,196608 -[1,11919:6630773,26416779:25952256,511704,0 -(1,11917:6630773,26309301:25952256,404226,107478 -(1,11916:6630773,26309301:0,0,0 -g1,11916:6630773,26309301 -g1,11916:6630773,26309301 -g1,11916:6303093,26309301 -(1,11916:6303093,26309301:0,0,0 -) -g1,11916:6630773,26309301 -) -k1,11917:6630773,26309301:0 -k1,11917:13243666,26309301:289979 -k1,11917:14482081,26309301:289978 -k1,11917:15088206,26309301:289979 -k1,11917:18223497,26309301:289979 -k1,11917:21358786,26309301:289978 -k1,11917:23229493,26309301:289979 -k1,11917:23835617,26309301:289978 -k1,11917:27287053,26309301:289979 -k1,11917:27893178,26309301:289979 -k1,11917:29447739,26309301:289978 -k1,11917:30686155,26309301:289979 -k1,11917:30686155,26309301:0 -h1,11917:32583029,26309301:0,0,0 -k1,11917:32583029,26309301:0 -k1,11917:32583029,26309301:0 -) -] -) -g1,11919:32583029,26416779 -g1,11919:6630773,26416779 -g1,11919:6630773,26416779 -g1,11919:32583029,26416779 -g1,11919:32583029,26416779 -) -h1,11919:6630773,26613387:0,0,0 -v1,11923:6630773,28349865:0,393216,0 -(1,11924:6630773,31467682:25952256,3511033,616038 -g1,11924:6630773,31467682 -(1,11924:6630773,31467682:25952256,3511033,616038 -(1,11924:6630773,32083720:25952256,4127071,0 -[1,11924:6630773,32083720:25952256,4127071,0 -(1,11924:6630773,32057506:25952256,4074643,0 -r1,11932:6656987,32057506:26214,4074643,0 -[1,11924:6656987,32057506:25899828,4074643,0 -(1,11924:6656987,31467682:25899828,2894995,0 -[1,11924:7246811,31467682:24720180,2894995,0 -(1,11924:7246811,29658223:24720180,1085536,298548 -(1,11923:7246811,29658223:0,1085536,298548 -r1,11932:8753226,29658223:1506415,1384084,298548 -k1,11923:7246811,29658223:-1506415 -) -(1,11923:7246811,29658223:1506415,1085536,298548 -) -k1,11923:9004805,29658223:251579 -k1,11923:11759860,29658223:251580 -k1,11923:13579060,29658223:251579 -k1,11923:16164377,29658223:251580 -k1,11923:17958674,29658223:251579 -k1,11923:18869546,29658223:251580 -k1,11923:21099656,29658223:251579 -(1,11923:21099656,29658223:0,452978,122846 -r1,11932:23919905,29658223:2820249,575824,122846 -k1,11923:21099656,29658223:-2820249 -) -(1,11923:21099656,29658223:2820249,452978,122846 -k1,11923:21099656,29658223:3277 -h1,11923:23916628,29658223:0,411205,112570 -) -k1,11923:24171485,29658223:251580 -k1,11923:25614509,29658223:251579 -(1,11923:25614509,29658223:0,452978,115847 -r1,11932:28434758,29658223:2820249,568825,115847 -k1,11923:25614509,29658223:-2820249 -) -(1,11923:25614509,29658223:2820249,452978,115847 -k1,11923:25614509,29658223:3277 -h1,11923:28431481,29658223:0,411205,112570 -) -k1,11923:28686338,29658223:251580 -k1,11923:29929477,29658223:251579 -k1,11924:31966991,29658223:0 -) -(1,11924:7246811,30499711:24720180,513147,126483 -k1,11923:9103003,30499711:141770 -k1,11923:10436218,30499711:141770 -k1,11923:13297077,30499711:141770 -k1,11923:14200375,30499711:141770 -(1,11923:14200375,30499711:0,452978,122846 -r1,11932:19130895,30499711:4930520,575824,122846 -k1,11923:14200375,30499711:-4930520 -) -(1,11923:14200375,30499711:4930520,452978,122846 -k1,11923:14200375,30499711:3277 -h1,11923:19127618,30499711:0,411205,112570 -) -k1,11923:19272666,30499711:141771 -k1,11923:20605881,30499711:141770 -(1,11923:20605881,30499711:0,452978,115847 -r1,11932:25184689,30499711:4578808,568825,115847 -k1,11923:20605881,30499711:-4578808 -) -(1,11923:20605881,30499711:4578808,452978,115847 -k1,11923:20605881,30499711:3277 -h1,11923:25181412,30499711:0,411205,112570 -) -k1,11923:25500129,30499711:141770 -k1,11923:27516229,30499711:141770 -k1,11923:28941194,30499711:141770 -k1,11923:31966991,30499711:0 -) -(1,11924:7246811,31341199:24720180,513147,126483 -g1,11923:8538525,31341199 -g1,11923:9093614,31341199 -g1,11923:12055186,31341199 -g1,11923:14338460,31341199 -g1,11923:15609858,31341199 -g1,11923:16800647,31341199 -g1,11923:18066147,31341199 -g1,11923:19230721,31341199 -g1,11923:20880917,31341199 -k1,11924:31966991,31341199:9016447 -g1,11924:31966991,31341199 -) -] -) -] -r1,11932:32583029,32057506:26214,4074643,0 -) -] -) -) -g1,11924:32583029,31467682 -) -h1,11924:6630773,32083720:0,0,0 -(1,11928:6630773,35338784:25952256,32768,229376 -(1,11928:6630773,35338784:0,32768,229376 -(1,11928:6630773,35338784:5505024,32768,229376 -r1,11932:12135797,35338784:5505024,262144,229376 -) -k1,11928:6630773,35338784:-5505024 -) -(1,11928:6630773,35338784:25952256,32768,0 -r1,11932:32583029,35338784:25952256,32768,0 -) -) -(1,11928:6630773,36943112:25952256,606339,151780 -(1,11928:6630773,36943112:1974731,582746,14155 -g1,11928:6630773,36943112 -g1,11928:8605504,36943112 -) -g1,11928:10655733,36943112 -g1,11928:16149747,36943112 -g1,11928:18163013,36943112 -k1,11928:32583029,36943112:11889279 -g1,11928:32583029,36943112 -) -v1,11931:6630773,38625311:0,393216,0 -(1,11932:6630773,45116945:25952256,6884850,589824 -g1,11932:6630773,45116945 -(1,11932:6630773,45116945:25952256,6884850,589824 -(1,11932:6630773,45706769:25952256,7474674,0 -[1,11932:6630773,45706769:25952256,7474674,0 -(1,11932:6630773,45706769:25952256,7448460,0 -r1,11932:6656987,45706769:26214,7448460,0 -[1,11932:6656987,45706769:25899828,7448460,0 -(1,11932:6656987,45116945:25899828,6268812,0 -[1,11932:7246811,45116945:24720180,6268812,0 -(1,11932:7246811,39933669:24720180,1085536,298548 -(1,11931:7246811,39933669:0,1085536,298548 -r1,11932:8753226,39933669:1506415,1384084,298548 -k1,11931:7246811,39933669:-1506415 -) -(1,11931:7246811,39933669:1506415,1085536,298548 -) -k1,11931:8999056,39933669:245830 -k1,11931:10441573,39933669:245830 -k1,11931:11993537,39933669:245831 -k1,11931:15478156,39933669:245830 -k1,11931:16079846,39933669:245830 -k1,11931:17706520,39933669:245830 -k1,11931:18611643,39933669:245831 -k1,11931:19876558,39933669:245830 -k1,11931:22095021,39933669:245830 -k1,11931:25366648,39933669:245830 -k1,11931:26803924,39933669:245831 -k1,11931:29834379,39933669:245830 -k1,11931:31435494,39933669:245830 -k1,11931:31966991,39933669:0 -) -(1,11932:7246811,40775157:24720180,513147,126483 -k1,11931:8519937,40775157:254041 -k1,11931:13122293,40775157:254042 -k1,11931:14035626,40775157:254041 -k1,11931:15308752,40775157:254041 -k1,11931:16497336,40775157:254041 -k1,11931:17410670,40775157:254042 -k1,11931:21069306,40775157:254041 -k1,11931:24617842,40775157:254041 -k1,11931:26063328,40775157:254041 -k1,11931:27336455,40775157:254042 -k1,11931:30775546,40775157:254041 -k1,11931:31966991,40775157:0 -) -(1,11932:7246811,41616645:24720180,513147,134348 -k1,11931:11156821,41616645:191497 -k1,11931:13507729,41616645:191497 -k1,11931:14718311,41616645:191497 -k1,11931:17672150,41616645:191496 -k1,11931:21063115,41616645:191497 -k1,11931:21742193,41616645:191490 -k1,11931:24175020,41616645:191496 -k1,11931:27605306,41616645:191497 -k1,11931:28328300,41616645:191497 -k1,11931:29804303,41616645:191497 -k1,11931:31966991,41616645:0 -) -(1,11932:7246811,42458133:24720180,513147,134348 -k1,11931:8230506,42458133:217579 -k1,11931:9467169,42458133:217578 -k1,11931:12710545,42458133:217579 -k1,11931:13919684,42458133:217579 -k1,11931:16518840,42458133:217578 -k1,11931:17802690,42458133:217579 -k1,11931:19395870,42458133:217579 -k1,11931:20561099,42458133:217578 -k1,11931:23068506,42458133:217579 -k1,11931:23945376,42458133:217578 -k1,11931:25718124,42458133:217579 -(1,11931:25718124,42458133:0,452978,115847 -r1,11932:27834949,42458133:2116825,568825,115847 -k1,11931:25718124,42458133:-2116825 -) -(1,11931:25718124,42458133:2116825,452978,115847 -k1,11931:25718124,42458133:3277 -h1,11931:27831672,42458133:0,411205,112570 -) -k1,11931:28226198,42458133:217579 -k1,11931:29515945,42458133:217578 -k1,11931:31019340,42458133:217579 -k1,11931:31966991,42458133:0 -) -(1,11932:7246811,43299621:24720180,513147,134348 -k1,11931:9702010,43299621:165371 -k1,11931:10526672,43299621:165370 -k1,11931:12247212,43299621:165371 -(1,11931:12247212,43299621:0,452978,115847 -r1,11932:15770884,43299621:3523672,568825,115847 -k1,11931:12247212,43299621:-3523672 -) -(1,11931:12247212,43299621:3523672,452978,115847 -k1,11931:12247212,43299621:3277 -h1,11931:15767607,43299621:0,411205,112570 -) -k1,11931:15936254,43299621:165370 -k1,11931:19219173,43299621:165371 -k1,11931:21809375,43299621:165370 -k1,11931:23166191,43299621:165371 -k1,11931:24279212,43299621:165370 -k1,11931:25674660,43299621:165337 -k1,11931:28993623,43299621:165371 -k1,11931:31966991,43299621:0 -) -(1,11932:7246811,44141109:24720180,513147,134348 -k1,11931:8884013,44141109:243251 -k1,11931:12407997,44141109:243252 -k1,11931:14735293,44141109:243251 -k1,11931:16210622,44141109:243252 -k1,11931:17739689,44141109:243251 -k1,11931:20261628,44141109:243252 -h1,11931:21630675,44141109:0,0,0 -k1,11931:21873926,44141109:243251 -k1,11931:22926547,44141109:243251 -k1,11931:24667952,44141109:243252 -h1,11931:25863329,44141109:0,0,0 -k1,11931:26487344,44141109:243251 -k1,11931:27218140,44141109:243208 -k1,11931:29736801,44141109:243251 -k1,11931:31966991,44141109:0 -) -(1,11932:7246811,44982597:24720180,513147,134348 -k1,11931:9356939,44982597:279052 -k1,11931:10252030,44982597:279053 -k1,11931:13111234,44982597:279052 -k1,11931:15822327,44982597:279053 -k1,11931:19618041,44982597:279052 -k1,11931:20252953,44982597:279052 -k1,11931:23294349,44982597:279053 -k1,11931:25657446,44982597:279052 -k1,11931:29101233,44982597:279053 -k1,11931:30947906,44982597:279052 -k1,11931:31966991,44982597:0 -) -] -) -] -r1,11932:32583029,45706769:26214,7448460,0 -) -] -) -) -g1,11932:32583029,45116945 -) -] -(1,11932:32583029,45706769:0,0,0 -g1,11932:32583029,45706769 -) -) -] -(1,11932:6630773,47279633:25952256,0,0 -h1,11932:6630773,47279633:25952256,0,0 -) -] -(1,11932:4262630,4025873:0,0,0 -[1,11932:-473656,4025873:0,0,0 -(1,11932:-473656,-710413:0,0,0 -(1,11932:-473656,-710413:0,0,0 -g1,11932:-473656,-710413 -) -g1,11932:-473656,-710413 -) -] -) -] -!23036 -}223 -Input:1665:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1666:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1667:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1668:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1669:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1670:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1671:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1672:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1673:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1674:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1675:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1676:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1677:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1678:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1679:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1392 -{224 -[1,11967:4262630,47279633:28320399,43253760,0 -(1,11967:4262630,4025873:0,0,0 -[1,11967:-473656,4025873:0,0,0 -(1,11967:-473656,-710413:0,0,0 -(1,11967:-473656,-644877:0,0,0 -k1,11967:-473656,-644877:-65536 -) -(1,11967:-473656,4736287:0,0,0 -k1,11967:-473656,4736287:5209943 -) -g1,11967:-473656,-710413 -) -] -) -[1,11967:6630773,47279633:25952256,43253760,0 -[1,11967:6630773,4812305:25952256,786432,0 -(1,11967:6630773,4812305:25952256,505283,126483 -(1,11967:6630773,4812305:25952256,505283,126483 -g1,11967:3078558,4812305 -[1,11967:3078558,4812305:0,0,0 -(1,11967:3078558,2439708:0,1703936,0 -k1,11967:1358238,2439708:-1720320 -(1,11088:1358238,2439708:1720320,1703936,0 -(1,11088:1358238,2439708:1179648,16384,0 -r1,11967:2537886,2439708:1179648,16384,0 -) -g1,11088:3062174,2439708 -(1,11088:3062174,2439708:16384,1703936,0 -[1,11088:3062174,2439708:25952256,1703936,0 -(1,11088:3062174,1915420:25952256,1179648,0 -(1,11088:3062174,1915420:16384,1179648,0 -r1,11967:3078558,1915420:16384,1179648,0 -) -k1,11088:29014430,1915420:25935872 -g1,11088:29014430,1915420 -) -] -) -) -) -] -[1,11967:3078558,4812305:0,0,0 -(1,11967:3078558,2439708:0,1703936,0 -g1,11967:29030814,2439708 -g1,11967:36135244,2439708 -(1,11088:36135244,2439708:1720320,1703936,0 -(1,11088:36135244,2439708:16384,1703936,0 -[1,11088:36135244,2439708:25952256,1703936,0 -(1,11088:36135244,1915420:25952256,1179648,0 -(1,11088:36135244,1915420:16384,1179648,0 -r1,11967:36151628,1915420:16384,1179648,0 -) -k1,11088:62087500,1915420:25935872 -g1,11088:62087500,1915420 -) -] -) -g1,11088:36675916,2439708 -(1,11088:36675916,2439708:1179648,16384,0 -r1,11967:37855564,2439708:1179648,16384,0 -) -) -k1,11967:3078556,2439708:-34777008 -) -] -[1,11967:3078558,4812305:0,0,0 -(1,11967:3078558,49800853:0,16384,2228224 -k1,11967:1358238,49800853:-1720320 -(1,11088:1358238,49800853:1720320,16384,2228224 -(1,11088:1358238,49800853:1179648,16384,0 -r1,11967:2537886,49800853:1179648,16384,0 -) -g1,11088:3062174,49800853 -(1,11088:3062174,52029077:16384,1703936,0 -[1,11088:3062174,52029077:25952256,1703936,0 -(1,11088:3062174,51504789:25952256,1179648,0 -(1,11088:3062174,51504789:16384,1179648,0 -r1,11967:3078558,51504789:16384,1179648,0 -) -k1,11088:29014430,51504789:25935872 -g1,11088:29014430,51504789 -) -] -) -) -) -] -[1,11967:3078558,4812305:0,0,0 -(1,11967:3078558,49800853:0,16384,2228224 -g1,11967:29030814,49800853 -g1,11967:36135244,49800853 -(1,11088:36135244,49800853:1720320,16384,2228224 -(1,11088:36135244,52029077:16384,1703936,0 -[1,11088:36135244,52029077:25952256,1703936,0 -(1,11088:36135244,51504789:25952256,1179648,0 -(1,11088:36135244,51504789:16384,1179648,0 -r1,11967:36151628,51504789:16384,1179648,0 -) -k1,11088:62087500,51504789:25935872 -g1,11088:62087500,51504789 -) -] -) -g1,11088:36675916,49800853 -(1,11088:36675916,49800853:1179648,16384,0 -r1,11967:37855564,49800853:1179648,16384,0 -) -) -k1,11967:3078556,49800853:-34777008 -) -] -g1,11967:6630773,4812305 -g1,11967:6630773,4812305 -g1,11967:8364200,4812305 -g1,11967:12785258,4812305 -g1,11967:14347636,4812305 -g1,11967:16554232,4812305 -k1,11967:31387652,4812305:14833420 -) -) -] -[1,11967:6630773,45706769:25952256,40108032,0 -(1,11967:6630773,45706769:25952256,40108032,0 -(1,11967:6630773,45706769:0,0,0 -g1,11967:6630773,45706769 -) -[1,11967:6630773,45706769:25952256,40108032,0 -v1,11932:6630773,6254097:0,393216,0 -(1,11932:6630773,13830104:25952256,7969223,616038 -g1,11932:6630773,13830104 -(1,11932:6630773,13830104:25952256,7969223,616038 -(1,11932:6630773,14446142:25952256,8585261,0 -[1,11932:6630773,14446142:25952256,8585261,0 -(1,11932:6630773,14419928:25952256,8559047,0 -r1,11967:6656987,14419928:26214,8559047,0 -[1,11932:6656987,14419928:25899828,8559047,0 -(1,11932:6656987,13830104:25899828,7379399,0 -[1,11932:7246811,13830104:24720180,7379399,0 -(1,11932:7246811,6963852:24720180,513147,95026 -k1,11931:8560876,6963852:221580 -k1,11931:9441747,6963852:221579 -k1,11931:12807089,6963852:221580 -k1,11931:16632493,6963852:221579 -k1,11931:17994376,6963852:221557 -k1,11931:20543139,6963852:221580 -k1,11931:21424010,6963852:221579 -k1,11931:25926402,6963852:221580 -k1,11931:29451651,6963852:221579 -k1,11931:31479403,6963852:221580 -k1,11931:31966991,6963852:0 -) -(1,11932:7246811,7805340:24720180,513147,126483 -k1,11931:10447065,7805340:149553 -k1,11931:11255910,7805340:149553 -k1,11931:13378096,7805340:149553 -k1,11931:14719095,7805340:149554 -k1,11931:16651883,7805340:149553 -k1,11931:17460728,7805340:149553 -k1,11931:18629366,7805340:149553 -k1,11931:21986906,7805340:149553 -k1,11931:22667956,7805340:149553 -k1,11931:24102015,7805340:149553 -k1,11931:25270653,7805340:149553 -k1,11931:27504252,7805340:149554 -k1,11931:28185302,7805340:149553 -k1,11931:29401126,7805340:149553 -k1,11931:30516024,7805340:149553 -k1,11931:31966991,7805340:0 -) -(1,11932:7246811,8646828:24720180,513147,126483 -k1,11931:9475363,8646828:158925 -k1,11931:13732909,8646828:158924 -k1,11931:15583974,8646828:158925 -k1,11931:18438395,8646828:158925 -k1,11931:19788764,8646828:158924 -k1,11931:22402012,8646828:158925 -k1,11931:24629253,8646828:158925 -k1,11931:26644158,8646828:158925 -k1,11931:29448115,8646828:158924 -k1,11931:31350953,8646828:158925 -k1,11931:31966991,8646828:0 -) -(1,11932:7246811,9488316:24720180,513147,134348 -k1,11931:8865365,9488316:184626 -k1,11931:9464820,9488316:184612 -k1,11931:10332332,9488316:184627 -k1,11931:12156669,9488316:184626 -k1,11931:13735246,9488316:184626 -k1,11931:15988189,9488316:184627 -k1,11931:17686041,9488316:184626 -k1,11931:18486705,9488316:184626 -k1,11931:20373302,9488316:184627 -k1,11931:23642052,9488316:184626 -k1,11931:24241507,9488316:184612 -k1,11931:26031765,9488316:184626 -k1,11931:26747889,9488316:184627 -k1,11931:30071034,9488316:184626 -k1,11931:31966991,9488316:0 -) -(1,11932:7246811,10329804:24720180,513147,134348 -k1,11931:8617278,10329804:179022 -k1,11931:11635321,10329804:179023 -k1,11931:12465771,10329804:179022 -k1,11931:14872363,10329804:179023 -k1,11931:17585007,10329804:179022 -k1,11931:18955474,10329804:179022 -k1,11931:22202893,10329804:179023 -k1,11931:25917582,10329804:179022 -k1,11931:27044256,10329804:179023 -k1,11931:27579138,10329804:179022 -k1,11931:29146869,10329804:179023 -k1,11931:30924969,10329804:179022 -k1,11931:31966991,10329804:0 -) -(1,11932:7246811,11171292:24720180,513147,134348 -k1,11931:8986590,11171292:243592 -k1,11931:12054128,11171292:243592 -k1,11931:12949149,11171292:243593 -k1,11931:15420310,11171292:243592 -k1,11931:16279940,11171292:243592 -k1,11931:17616017,11171292:243592 -k1,11931:18807261,11171292:243593 -k1,11931:20907488,11171292:243592 -k1,11931:22170165,11171292:243592 -k1,11931:24182574,11171292:243592 -k1,11931:27336621,11171292:243593 -k1,11931:28038310,11171292:243592 -k1,11931:30983951,11171292:243592 -k1,11931:31966991,11171292:0 -) -(1,11932:7246811,12012780:24720180,505283,134348 -k1,11931:8541853,12012780:275957 -k1,11931:10030881,12012780:275957 -k1,11931:14369415,12012780:275957 -k1,11931:15103469,12012780:275957 -k1,11931:16511888,12012780:275957 -k1,11931:18491781,12012780:275957 -k1,11931:20550972,12012780:275956 -k1,11931:22562322,12012780:275957 -k1,11931:23857364,12012780:275957 -k1,11931:27341308,12012780:275957 -k1,11931:28485617,12012780:275957 -k1,11931:30291840,12012780:275957 -k1,11931:31219225,12012780:275957 -k1,11931:31966991,12012780:0 -) -(1,11932:7246811,12854268:24720180,513147,134348 -k1,11931:10407667,12854268:271374 -k1,11931:11330468,12854268:271373 -k1,11931:13473550,12854268:271374 -k1,11931:14842651,12854268:271373 -k1,11931:16444406,12854268:271374 -k1,11931:20106612,12854268:271373 -k1,11931:21874173,12854268:271374 -k1,11931:23658773,12854268:271374 -k1,11931:25061953,12854268:271373 -k1,11931:27218798,12854268:271374 -k1,11931:30025104,12854268:271373 -k1,11931:30947906,12854268:271374 -k1,11931:31966991,12854268:0 -) -(1,11932:7246811,13695756:24720180,505283,134348 -g1,11931:10654027,13695756 -g1,11931:13763710,13695756 -g1,11931:14831291,13695756 -g1,11931:16367454,13695756 -k1,11932:31966991,13695756:14333381 -g1,11932:31966991,13695756 -) -] -) -] -r1,11967:32583029,14419928:26214,8559047,0 -) -] -) -) -g1,11932:32583029,13830104 -) -h1,11932:6630773,14446142:0,0,0 -v1,11935:6630773,15811918:0,393216,0 -(1,11936:6630773,20549521:25952256,5130819,616038 -g1,11936:6630773,20549521 -(1,11936:6630773,20549521:25952256,5130819,616038 -(1,11936:6630773,21165559:25952256,5746857,0 -[1,11936:6630773,21165559:25952256,5746857,0 -(1,11936:6630773,21139345:25952256,5694429,0 -r1,11967:6656987,21139345:26214,5694429,0 -[1,11936:6656987,21139345:25899828,5694429,0 -(1,11936:6656987,20549521:25899828,4514781,0 -[1,11936:7246811,20549521:24720180,4514781,0 -(1,11936:7246811,17057086:24720180,1022346,134348 -k1,11935:8644664,17057086:142340 -k1,11935:9274536,17057086:142284 -k1,11935:10700071,17057086:142340 -k1,11935:13596234,17057086:142340 -k1,11935:17125474,17057086:142341 -k1,11935:21031547,17057086:142340 -k1,11935:22925664,17057086:142340 -k1,11935:23727296,17057086:142340 -k1,11935:24888721,17057086:142340 -k1,11935:26684535,17057086:142341 -k1,11935:28781814,17057086:142340 -k1,11935:30115599,17057086:142340 -k1,11936:31966991,17057086:0 -) -(1,11936:7246811,17898574:24720180,513147,134348 -k1,11935:8783582,17898574:272581 -k1,11935:9742326,17898574:272582 -k1,11935:11987540,17898574:272581 -k1,11935:13995515,17898574:272582 -k1,11935:15739379,17898574:272581 -k1,11935:16426730,17898574:272508 -k1,11935:17315349,17898574:272581 -k1,11935:18607015,17898574:272581 -k1,11935:23936355,17898574:272582 -k1,11935:26536119,17898574:272581 -k1,11935:27467993,17898574:272582 -k1,11935:30683796,17898574:272581 -k1,11935:31966991,17898574:0 -) -(1,11936:7246811,18740062:24720180,513147,134348 -k1,11935:8629949,18740062:191693 -k1,11935:9275144,18740062:191686 -k1,11935:11136694,18740062:191693 -k1,11935:12709232,18740062:191694 -k1,11935:16681697,18740062:191693 -k1,11935:19857900,18740062:191693 -k1,11935:21818411,18740062:191694 -k1,11935:22757870,18740062:191693 -k1,11935:24926784,18740062:191693 -k1,11935:26816515,18740062:191693 -k1,11935:29327528,18740062:191694 -k1,11935:30913172,18740062:191693 -k1,11936:31966991,18740062:0 -) -(1,11936:7246811,19581550:24720180,513147,126483 -k1,11935:9526896,19581550:195385 -k1,11935:11438668,19581550:195384 -k1,11935:13023416,19581550:195385 -k1,11935:14483646,19581550:195385 -k1,11935:15361916,19581550:195385 -k1,11935:17255338,19581550:195384 -k1,11935:18469808,19581550:195385 -k1,11935:19757678,19581550:195385 -k1,11935:20620219,19581550:195385 -k1,11935:21734418,19581550:195384 -k1,11935:23319166,19581550:195385 -k1,11935:25721148,19581550:195385 -k1,11935:28243716,19581550:195385 -k1,11935:29098392,19581550:195384 -k1,11935:31435494,19581550:195385 -k1,11935:31966991,19581550:0 -) -(1,11936:7246811,20423038:24720180,513147,126483 -k1,11936:31966991,20423038:21533164 -g1,11936:31966991,20423038 -) -] -) -] -r1,11967:32583029,21139345:26214,5694429,0 -) -] -) -) -g1,11936:32583029,20549521 -) -h1,11936:6630773,21165559:0,0,0 -(1,11938:6630773,22601459:25952256,555811,139132 -(1,11938:6630773,22601459:2450326,534184,12975 -g1,11938:6630773,22601459 -g1,11938:9081099,22601459 -) -g1,11938:12764157,22601459 -k1,11938:32583029,22601459:14629862 -g1,11938:32583029,22601459 -) -(1,11942:6630773,23836163:25952256,513147,134348 -k1,11941:10098829,23836163:294803 -k1,11941:11678137,23836163:294802 -k1,11941:12992025,23836163:294803 -k1,11941:14676191,23836163:294803 -k1,11941:15502490,23836163:294802 -k1,11941:17835463,23836163:294803 -k1,11941:18746304,23836163:294803 -k1,11941:20429814,23836163:294802 -k1,11941:22465909,23836163:294803 -k1,11941:25577449,23836163:294803 -k1,11941:29276846,23836163:294802 -k1,11941:30563209,23836163:294803 -k1,11942:32583029,23836163:0 -) -(1,11942:6630773,24677651:25952256,513147,134348 -k1,11941:8422673,24677651:194132 -k1,11941:11971593,24677651:194132 -k1,11941:14176371,24677651:194133 -k1,11941:15938124,24677651:194132 -k1,11941:17151341,24677651:194132 -k1,11941:18998946,24677651:194132 -k1,11941:22934529,24677651:194133 -k1,11941:26577165,24677651:194132 -k1,11941:30573040,24677651:194132 -k1,11941:32583029,24677651:0 -) -(1,11942:6630773,25519139:25952256,513147,134348 -k1,11941:7207100,25519139:220467 -k1,11941:9300586,25519139:220467 -k1,11941:10724949,25519139:220467 -k1,11941:11604708,25519139:220467 -k1,11941:12181035,25519139:220467 -k1,11941:13790865,25519139:220467 -k1,11941:15887627,25519139:220466 -k1,11941:16790979,25519139:220467 -k1,11941:18996532,25519139:220467 -k1,11941:21008753,25519139:220467 -k1,11941:24255017,25519139:220467 -(1,11941:24255017,25519139:0,452978,115847 -r1,11967:27075266,25519139:2820249,568825,115847 -k1,11941:24255017,25519139:-2820249 -) -(1,11941:24255017,25519139:2820249,452978,115847 -k1,11941:24255017,25519139:3277 -h1,11941:27071989,25519139:0,411205,112570 -) -k1,11941:27295733,25519139:220467 -k1,11941:28707645,25519139:220467 -(1,11941:28707645,25519139:0,452978,115847 -r1,11967:32583029,25519139:3875384,568825,115847 -k1,11941:28707645,25519139:-3875384 -) -(1,11941:28707645,25519139:3875384,452978,115847 -k1,11941:28707645,25519139:3277 -h1,11941:32579752,25519139:0,411205,112570 -) -k1,11941:32583029,25519139:0 -) -(1,11942:6630773,26360627:25952256,513147,134348 -k1,11941:7796200,26360627:297075 -k1,11941:9197556,26360627:297074 -k1,11941:11518383,26360627:297075 -k1,11941:14198346,26360627:297074 -k1,11941:17679160,26360627:297075 -k1,11941:18737763,26360627:297075 -k1,11941:22389625,26360627:297074 -k1,11941:25449043,26360627:297075 -k1,11941:28761428,26360627:297074 -k1,11941:29741388,26360627:297075 -k1,11941:32583029,26360627:0 -) -(1,11942:6630773,27202115:25952256,513147,134348 -k1,11941:8031868,27202115:209650 -k1,11941:11503244,27202115:209649 -k1,11941:12395779,27202115:209650 -k1,11941:15359251,27202115:209649 -k1,11941:15924761,27202115:209650 -k1,11941:20457820,27202115:209649 -k1,11941:25678353,27202115:209650 -k1,11941:26841551,27202115:209649 -k1,11941:28248544,27202115:209650 -k1,11941:29741388,27202115:209649 -k1,11941:32583029,27202115:0 -) -(1,11942:6630773,28043603:25952256,505283,134348 -k1,11941:9936662,28043603:178511 -k1,11941:12969922,28043603:178512 -k1,11941:15639456,28043603:178511 -k1,11941:17304980,28043603:178512 -k1,11941:19218884,28043603:178511 -(1,11941:19218884,28043603:0,452978,115847 -r1,11967:22039133,28043603:2820249,568825,115847 -k1,11941:19218884,28043603:-2820249 -) -(1,11941:19218884,28043603:2820249,452978,115847 -k1,11941:19218884,28043603:3277 -h1,11941:22035856,28043603:0,411205,112570 -) -k1,11941:22217645,28043603:178512 -k1,11941:23079041,28043603:178511 -k1,11941:24125905,28043603:178512 -k1,11941:27241084,28043603:178511 -k1,11941:27775456,28043603:178512 -k1,11941:29237162,28043603:178511 -k1,11941:31227089,28043603:178512 -k1,11942:32583029,28043603:0 -) -(1,11942:6630773,28885091:25952256,513147,134348 -g1,11941:9049051,28885091 -g1,11941:10623881,28885091 -g1,11941:11842195,28885091 -g1,11941:14754615,28885091 -g1,11941:15822196,28885091 -g1,11941:18918772,28885091 -g1,11941:21377027,28885091 -g1,11941:23311649,28885091 -(1,11941:23311649,28885091:0,452978,115847 -r1,11967:27187033,28885091:3875384,568825,115847 -k1,11941:23311649,28885091:-3875384 -) -(1,11941:23311649,28885091:3875384,452978,115847 -k1,11941:23311649,28885091:3277 -h1,11941:27183756,28885091:0,411205,112570 -) -k1,11942:32583029,28885091:5222326 -g1,11942:32583029,28885091 -) -v1,11944:6630773,30250867:0,393216,0 -(1,11962:6630773,41014090:25952256,11156439,616038 -g1,11962:6630773,41014090 -(1,11962:6630773,41014090:25952256,11156439,616038 -(1,11962:6630773,41630128:25952256,11772477,0 -[1,11962:6630773,41630128:25952256,11772477,0 -(1,11962:6630773,41603914:25952256,11720049,0 -r1,11967:6656987,41603914:26214,11720049,0 -[1,11962:6656987,41603914:25899828,11720049,0 -(1,11962:6656987,41014090:25899828,10540401,0 -[1,11962:7246811,41014090:24720180,10540401,0 -(1,11945:7246811,31635574:24720180,1161885,196608 -(1,11944:7246811,31635574:0,1161885,196608 -r1,11967:8794447,31635574:1547636,1358493,196608 -k1,11944:7246811,31635574:-1547636 -) -(1,11944:7246811,31635574:1547636,1161885,196608 -) -k1,11944:9003600,31635574:209153 -k1,11944:12057672,31635574:209154 -k1,11944:13834446,31635574:209153 -k1,11944:15764575,31635574:209154 -k1,11944:16388561,31635574:209143 -k1,11944:18855429,31635574:209153 -k1,11944:20458534,31635574:209154 -(1,11944:20458534,31635574:0,452978,115847 -r1,11967:23278783,31635574:2820249,568825,115847 -k1,11944:20458534,31635574:-2820249 -) -(1,11944:20458534,31635574:2820249,452978,115847 -k1,11944:20458534,31635574:3277 -h1,11944:23275506,31635574:0,411205,112570 -) -k1,11944:23661606,31635574:209153 -(1,11944:23661606,31635574:0,452978,115847 -r1,11967:26481855,31635574:2820249,568825,115847 -k1,11944:23661606,31635574:-2820249 -) -(1,11944:23661606,31635574:2820249,452978,115847 -k1,11944:23661606,31635574:3277 -h1,11944:26478578,31635574:0,411205,112570 -) -k1,11944:26691009,31635574:209154 -k1,11944:28091607,31635574:209153 -(1,11944:28091607,31635574:0,452978,115847 -r1,11967:31966991,31635574:3875384,568825,115847 -k1,11944:28091607,31635574:-3875384 -) -(1,11944:28091607,31635574:3875384,452978,115847 -k1,11944:28091607,31635574:3277 -h1,11944:31963714,31635574:0,411205,112570 -) -k1,11944:31966991,31635574:0 -) -(1,11945:7246811,32477062:24720180,505283,134348 -k1,11944:8318816,32477062:203653 -k1,11944:9626751,32477062:203653 -k1,11944:10922889,32477062:203653 -k1,11944:13137187,32477062:203653 -k1,11944:15546127,32477062:203653 -k1,11944:16435942,32477062:203653 -k1,11944:20215895,32477062:203653 -k1,11944:21035586,32477062:203653 -k1,11944:22258324,32477062:203653 -k1,11944:25978639,32477062:203653 -k1,11944:29613102,32477062:203653 -k1,11944:30835840,32477062:203653 -k1,11945:31966991,32477062:0 -) -(1,11945:7246811,33318550:24720180,505283,134348 -k1,11944:8592920,33318550:253624 -k1,11944:11051831,33318550:253624 -k1,11944:11991617,33318550:253624 -k1,11944:13698831,33318550:253625 -k1,11944:17528755,33318550:253624 -k1,11944:18410214,33318550:253624 -k1,11944:20415615,33318550:253624 -k1,11944:22540292,33318550:253624 -k1,11944:23997157,33318550:253624 -k1,11944:26262737,33318550:253625 -k1,11944:28166558,33318550:253624 -k1,11944:30775546,33318550:253624 -k1,11944:31966991,33318550:0 -) -(1,11945:7246811,34160038:24720180,505283,7863 -g1,11944:9316438,34160038 -g1,11944:10167095,34160038 -g1,11944:14031097,34160038 -k1,11945:31966991,34160038:16266037 -g1,11945:31966991,34160038 -) -v1,11947:7246811,35350504:0,393216,0 -(1,11960:7246811,40293194:24720180,5335906,196608 -g1,11960:7246811,40293194 -g1,11960:7246811,40293194 -g1,11960:7050203,40293194 -(1,11960:7050203,40293194:0,5335906,196608 -r1,11967:32163599,40293194:25113396,5532514,196608 -k1,11960:7050203,40293194:-25113396 -) -(1,11960:7050203,40293194:25113396,5335906,196608 -[1,11960:7246811,40293194:24720180,5139298,0 -(1,11949:7246811,35558122:24720180,404226,82312 -(1,11948:7246811,35558122:0,0,0 -g1,11948:7246811,35558122 -g1,11948:7246811,35558122 -g1,11948:6919131,35558122 -(1,11948:6919131,35558122:0,0,0 -) -g1,11948:7246811,35558122 -) -k1,11949:7246811,35558122:0 -g1,11949:10092123,35558122 -g1,11949:10724415,35558122 -g1,11949:12305145,35558122 -g1,11949:12937437,35558122 -g1,11949:13569729,35558122 -g1,11949:14202021,35558122 -g1,11949:14834313,35558122 -h1,11949:15466604,35558122:0,0,0 -k1,11949:31966991,35558122:16500387 -g1,11949:31966991,35558122 -) -(1,11959:7246811,36289836:24720180,404226,9436 -(1,11951:7246811,36289836:0,0,0 -g1,11951:7246811,36289836 -g1,11951:7246811,36289836 -g1,11951:6919131,36289836 -(1,11951:6919131,36289836:0,0,0 -) -g1,11951:7246811,36289836 -) -g1,11959:8195248,36289836 -g1,11959:8827540,36289836 -g1,11959:9459832,36289836 -g1,11959:11988998,36289836 -g1,11959:12621290,36289836 -g1,11959:13253582,36289836 -h1,11959:13569728,36289836:0,0,0 -k1,11959:31966992,36289836:18397264 -g1,11959:31966992,36289836 -) -(1,11959:7246811,36956014:24720180,404226,6290 -h1,11959:7246811,36956014:0,0,0 -g1,11959:8195248,36956014 -g1,11959:8511394,36956014 -g1,11959:8827540,36956014 -g1,11959:9143686,36956014 -g1,11959:9459832,36956014 -g1,11959:9775978,36956014 -g1,11959:10092124,36956014 -g1,11959:10724416,36956014 -g1,11959:11040562,36956014 -g1,11959:11356708,36956014 -g1,11959:11672854,36956014 -g1,11959:11989000,36956014 -h1,11959:12305146,36956014:0,0,0 -k1,11959:31966990,36956014:19661844 -g1,11959:31966990,36956014 -) -(1,11959:7246811,37622192:24720180,404226,6290 -h1,11959:7246811,37622192:0,0,0 -g1,11959:8195248,37622192 -g1,11959:8511394,37622192 -g1,11959:8827540,37622192 -g1,11959:10724415,37622192 -k1,11959:10724415,37622192:0 -h1,11959:12305144,37622192:0,0,0 -k1,11959:31966992,37622192:19661848 -g1,11959:31966992,37622192 -) -(1,11959:7246811,38288370:24720180,388497,0 -h1,11959:7246811,38288370:0,0,0 -g1,11959:8195248,38288370 -g1,11959:8827540,38288370 -g1,11959:9143686,38288370 -g1,11959:9459832,38288370 -g1,11959:9775978,38288370 -g1,11959:10092124,38288370 -g1,11959:10724416,38288370 -g1,11959:11040562,38288370 -g1,11959:11356708,38288370 -g1,11959:11672854,38288370 -g1,11959:11989000,38288370 -h1,11959:12305146,38288370:0,0,0 -k1,11959:31966990,38288370:19661844 -g1,11959:31966990,38288370 -) -(1,11959:7246811,38954548:24720180,388497,0 -h1,11959:7246811,38954548:0,0,0 -g1,11959:8195248,38954548 -g1,11959:8827540,38954548 -g1,11959:9143686,38954548 -g1,11959:9459832,38954548 -g1,11959:9775978,38954548 -g1,11959:10092124,38954548 -g1,11959:10724416,38954548 -g1,11959:11040562,38954548 -g1,11959:11356708,38954548 -g1,11959:11672854,38954548 -g1,11959:11989000,38954548 -h1,11959:12305146,38954548:0,0,0 -k1,11959:31966990,38954548:19661844 -g1,11959:31966990,38954548 -) -(1,11959:7246811,39620726:24720180,388497,9436 -h1,11959:7246811,39620726:0,0,0 -g1,11959:8195248,39620726 -g1,11959:8827540,39620726 -g1,11959:9143686,39620726 -g1,11959:9459832,39620726 -g1,11959:9775978,39620726 -g1,11959:10092124,39620726 -g1,11959:10724416,39620726 -g1,11959:11040562,39620726 -g1,11959:11356708,39620726 -g1,11959:11672854,39620726 -g1,11959:11989000,39620726 -h1,11959:12305146,39620726:0,0,0 -k1,11959:31966990,39620726:19661844 -g1,11959:31966990,39620726 -) -(1,11959:7246811,40286904:24720180,404226,6290 -h1,11959:7246811,40286904:0,0,0 -g1,11959:8195248,40286904 -g1,11959:8827540,40286904 -g1,11959:10092123,40286904 -g1,11959:11672852,40286904 -g1,11959:12305144,40286904 -g1,11959:13885873,40286904 -h1,11959:15150456,40286904:0,0,0 -k1,11959:31966992,40286904:16816536 -g1,11959:31966992,40286904 -) -] -) -g1,11960:31966991,40293194 -g1,11960:7246811,40293194 -g1,11960:7246811,40293194 -g1,11960:31966991,40293194 -g1,11960:31966991,40293194 -) -h1,11960:7246811,40489802:0,0,0 -] -) -] -r1,11967:32583029,41603914:26214,11720049,0 -) -] -) -) -g1,11962:32583029,41014090 -) -h1,11962:6630773,41630128:0,0,0 -(1,11965:6630773,42995904:25952256,513147,134348 -h1,11964:6630773,42995904:983040,0,0 -k1,11964:11376652,42995904:219963 -k1,11964:12990565,42995904:219962 -k1,11964:14229613,42995904:219963 -k1,11964:17110992,42995904:219962 -k1,11964:18898576,42995904:219963 -k1,11964:20137623,42995904:219962 -k1,11964:23112064,42995904:219963 -k1,11964:25784383,42995904:219962 -k1,11964:26872698,42995904:219963 -k1,11964:28694360,42995904:219962 -k1,11964:30626779,42995904:219963 -k1,11964:32583029,42995904:0 -) -(1,11965:6630773,43837392:25952256,505283,126483 -k1,11964:8096020,43837392:319022 -k1,11964:9066471,43837392:319023 -k1,11964:10799760,43837392:319022 -k1,11964:12137868,43837392:319023 -k1,11964:14467535,43837392:319022 -k1,11964:15402595,43837392:319022 -k1,11964:18232958,43837392:319023 -(1,11964:18232958,43837392:0,414482,115847 -r1,11967:19646359,43837392:1413401,530329,115847 -k1,11964:18232958,43837392:-1413401 -) -(1,11964:18232958,43837392:1413401,414482,115847 -k1,11964:18232958,43837392:3277 -h1,11964:19643082,43837392:0,411205,112570 -) -k1,11964:19965381,43837392:319022 -k1,11964:21551870,43837392:319023 -(1,11964:21551870,43837392:0,452978,115847 -r1,11967:25075542,43837392:3523672,568825,115847 -k1,11964:21551870,43837392:-3523672 -) -(1,11964:21551870,43837392:3523672,452978,115847 -k1,11964:21551870,43837392:3277 -h1,11964:25072265,43837392:0,411205,112570 -) -k1,11964:25394564,43837392:319022 -k1,11964:26905031,43837392:319022 -(1,11964:26905031,43837392:0,452978,115847 -r1,11967:29725280,43837392:2820249,568825,115847 -k1,11964:26905031,43837392:-2820249 -) -(1,11964:26905031,43837392:2820249,452978,115847 -k1,11964:26905031,43837392:3277 -h1,11964:29722003,43837392:0,411205,112570 -) -k1,11964:30217973,43837392:319023 -k1,11964:31490544,43837392:319022 -k1,11965:32583029,43837392:0 -) -(1,11965:6630773,44678880:25952256,513147,134348 -(1,11964:6630773,44678880:0,452978,115847 -r1,11967:9451022,44678880:2820249,568825,115847 -k1,11964:6630773,44678880:-2820249 -) -(1,11964:6630773,44678880:2820249,452978,115847 -k1,11964:6630773,44678880:3277 -h1,11964:9447745,44678880:0,411205,112570 -) -k1,11964:9749207,44678880:298185 -k1,11964:11615012,44678880:298184 -k1,11964:13885830,44678880:298185 -k1,11964:15375460,44678880:298185 -(1,11964:15375460,44678880:0,452978,115847 -r1,11967:19954268,44678880:4578808,568825,115847 -k1,11964:15375460,44678880:-4578808 -) -(1,11964:15375460,44678880:4578808,452978,115847 -k1,11964:15375460,44678880:3277 -h1,11964:19950991,44678880:0,411205,112570 -) -k1,11964:20252453,44678880:298185 -k1,11964:22118258,44678880:298184 -k1,11964:25056232,44678880:298185 -k1,11964:26307966,44678880:298185 -k1,11964:27698635,44678880:298184 -k1,11964:30270919,44678880:298185 -k1,11965:32583029,44678880:0 -) -(1,11965:6630773,45520368:25952256,505283,134348 -k1,11964:8528459,45520368:226518 -k1,11964:9441139,45520368:226518 -k1,11964:13070287,45520368:226519 -k1,11964:15502092,45520368:226518 -k1,11964:16380038,45520368:226518 -(1,11964:16380038,45520368:0,414482,115847 -r1,11967:18848575,45520368:2468537,530329,115847 -k1,11964:16380038,45520368:-2468537 -) -(1,11964:16380038,45520368:2468537,414482,115847 -k1,11964:16380038,45520368:3277 -h1,11964:18845298,45520368:0,411205,112570 -) -k1,11964:19248763,45520368:226518 -k1,11964:20428831,45520368:226519 -k1,11964:21470617,45520368:226518 -k1,11964:22763406,45520368:226518 -k1,11964:24650606,45520368:226518 -k1,11964:25335221,45520368:226518 -k1,11964:27133293,45520368:226519 -k1,11964:28431980,45520368:226518 -(1,11964:28431980,45520368:0,452978,115847 -r1,11967:31252229,45520368:2820249,568825,115847 -k1,11964:28431980,45520368:-2820249 -) -(1,11964:28431980,45520368:2820249,452978,115847 -k1,11964:28431980,45520368:3277 -h1,11964:31248952,45520368:0,411205,112570 -) -k1,11964:31478747,45520368:226518 -k1,11964:32583029,45520368:0 -) -] -(1,11967:32583029,45706769:0,0,0 -g1,11967:32583029,45706769 -) -) -] -(1,11967:6630773,47279633:25952256,0,0 -h1,11967:6630773,47279633:25952256,0,0 -) -] -(1,11967:4262630,4025873:0,0,0 -[1,11967:-473656,4025873:0,0,0 -(1,11967:-473656,-710413:0,0,0 -(1,11967:-473656,-710413:0,0,0 -g1,11967:-473656,-710413 -) -g1,11967:-473656,-710413 -) -] -) -] -!26420 -}224 -Input:1680:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1681:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1682:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1683:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1684:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1685:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1686:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1687:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1688:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1689:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!932 -{225 -[1,12043:4262630,47279633:28320399,43253760,0 -(1,12043:4262630,4025873:0,0,0 -[1,12043:-473656,4025873:0,0,0 -(1,12043:-473656,-710413:0,0,0 -(1,12043:-473656,-644877:0,0,0 -k1,12043:-473656,-644877:-65536 -) -(1,12043:-473656,4736287:0,0,0 -k1,12043:-473656,4736287:5209943 -) -g1,12043:-473656,-710413 -) -] -) -[1,12043:6630773,47279633:25952256,43253760,0 -[1,12043:6630773,4812305:25952256,786432,0 -(1,12043:6630773,4812305:25952256,513147,134348 -(1,12043:6630773,4812305:25952256,513147,134348 -g1,12043:3078558,4812305 -[1,12043:3078558,4812305:0,0,0 -(1,12043:3078558,2439708:0,1703936,0 -k1,12043:1358238,2439708:-1720320 -(1,11088:1358238,2439708:1720320,1703936,0 -(1,11088:1358238,2439708:1179648,16384,0 -r1,12043:2537886,2439708:1179648,16384,0 -) -g1,11088:3062174,2439708 -(1,11088:3062174,2439708:16384,1703936,0 -[1,11088:3062174,2439708:25952256,1703936,0 -(1,11088:3062174,1915420:25952256,1179648,0 -(1,11088:3062174,1915420:16384,1179648,0 -r1,12043:3078558,1915420:16384,1179648,0 -) -k1,11088:29014430,1915420:25935872 -g1,11088:29014430,1915420 -) -] -) -) -) -] -[1,12043:3078558,4812305:0,0,0 -(1,12043:3078558,2439708:0,1703936,0 -g1,12043:29030814,2439708 -g1,12043:36135244,2439708 -(1,11088:36135244,2439708:1720320,1703936,0 -(1,11088:36135244,2439708:16384,1703936,0 -[1,11088:36135244,2439708:25952256,1703936,0 -(1,11088:36135244,1915420:25952256,1179648,0 -(1,11088:36135244,1915420:16384,1179648,0 -r1,12043:36151628,1915420:16384,1179648,0 -) -k1,11088:62087500,1915420:25935872 -g1,11088:62087500,1915420 -) -] -) -g1,11088:36675916,2439708 -(1,11088:36675916,2439708:1179648,16384,0 -r1,12043:37855564,2439708:1179648,16384,0 -) -) -k1,12043:3078556,2439708:-34777008 -) -] -[1,12043:3078558,4812305:0,0,0 -(1,12043:3078558,49800853:0,16384,2228224 -k1,12043:1358238,49800853:-1720320 -(1,11088:1358238,49800853:1720320,16384,2228224 -(1,11088:1358238,49800853:1179648,16384,0 -r1,12043:2537886,49800853:1179648,16384,0 -) -g1,11088:3062174,49800853 -(1,11088:3062174,52029077:16384,1703936,0 -[1,11088:3062174,52029077:25952256,1703936,0 -(1,11088:3062174,51504789:25952256,1179648,0 -(1,11088:3062174,51504789:16384,1179648,0 -r1,12043:3078558,51504789:16384,1179648,0 -) -k1,11088:29014430,51504789:25935872 -g1,11088:29014430,51504789 -) -] -) -) -) -] -[1,12043:3078558,4812305:0,0,0 -(1,12043:3078558,49800853:0,16384,2228224 -g1,12043:29030814,49800853 -g1,12043:36135244,49800853 -(1,11088:36135244,49800853:1720320,16384,2228224 -(1,11088:36135244,52029077:16384,1703936,0 -[1,11088:36135244,52029077:25952256,1703936,0 -(1,11088:36135244,51504789:25952256,1179648,0 -(1,11088:36135244,51504789:16384,1179648,0 -r1,12043:36151628,51504789:16384,1179648,0 -) -k1,11088:62087500,51504789:25935872 -g1,11088:62087500,51504789 -) -] -) -g1,11088:36675916,49800853 -(1,11088:36675916,49800853:1179648,16384,0 -r1,12043:37855564,49800853:1179648,16384,0 -) -) -k1,12043:3078556,49800853:-34777008 -) -] -g1,12043:6630773,4812305 -k1,12043:25241686,4812305:17415536 -g1,12043:26807341,4812305 -g1,12043:30339731,4812305 -g1,12043:31154998,4812305 -) -) -] -[1,12043:6630773,45706769:25952256,40108032,0 -(1,12043:6630773,45706769:25952256,40108032,0 -(1,12043:6630773,45706769:0,0,0 -g1,12043:6630773,45706769 -) -[1,12043:6630773,45706769:25952256,40108032,0 -(1,11965:6630773,6254097:25952256,513147,126483 -k1,11964:7599815,6254097:221276 -k1,11964:9334316,6254097:221275 -k1,11964:10949543,6254097:221276 -k1,11964:14012460,6254097:221276 -k1,11964:14893027,6254097:221275 -k1,11964:16246110,6254097:221276 -(1,11964:16246110,6254097:0,452978,115847 -r1,12043:17659511,6254097:1413401,568825,115847 -k1,11964:16246110,6254097:-1413401 -) -(1,11964:16246110,6254097:1413401,452978,115847 -k1,11964:16246110,6254097:3277 -h1,11964:17656234,6254097:0,411205,112570 -) -k1,11964:18054457,6254097:221276 -k1,11964:19467178,6254097:221276 -k1,11964:23490196,6254097:221275 -k1,11964:24815754,6254097:221276 -k1,11964:27314406,6254097:221276 -k1,11964:29546326,6254097:221275 -k1,11964:31335223,6254097:221276 -k1,11965:32583029,6254097:0 -) -(1,11965:6630773,7095585:25952256,505283,134348 -k1,11964:8072040,7095585:244580 -k1,11964:11203481,7095585:244580 -k1,11964:11917955,7095585:244581 -k1,11964:12694032,7095585:244580 -k1,11964:14405308,7095585:244580 -k1,11964:17279848,7095585:244580 -k1,11964:18175856,7095585:244580 -k1,11964:20831507,7095585:244581 -k1,11964:21885457,7095585:244580 -k1,11964:24140682,7095585:244580 -k1,11964:27139085,7095585:244580 -k1,11964:27739525,7095585:244580 -k1,11964:28919305,7095585:244581 -k1,11964:30020441,7095585:244580 -k1,11964:30881059,7095585:244580 -k1,11964:32583029,7095585:0 -) -(1,11965:6630773,7937073:25952256,505283,134348 -g1,11964:8958611,7937073 -g1,11964:10893233,7937073 -g1,11964:12626660,7937073 -g1,11964:15861517,7937073 -g1,11964:18420042,7937073 -g1,11964:19270699,7937073 -g1,11964:20489013,7937073 -g1,11964:23032465,7937073 -k1,11965:32583029,7937073:8220183 -g1,11965:32583029,7937073 -) -v1,11967:6630773,9127085:0,393216,0 -(1,11984:6630773,16737633:25952256,8003764,196608 -g1,11984:6630773,16737633 -g1,11984:6630773,16737633 -g1,11984:6434165,16737633 -(1,11984:6434165,16737633:0,8003764,196608 -r1,12043:32779637,16737633:26345472,8200372,196608 -k1,11984:6434165,16737633:-26345472 -) -(1,11984:6434165,16737633:26345472,8003764,196608 -[1,11984:6630773,16737633:25952256,7807156,0 -(1,11969:6630773,9334703:25952256,404226,107478 -(1,11968:6630773,9334703:0,0,0 -g1,11968:6630773,9334703 -g1,11968:6630773,9334703 -g1,11968:6303093,9334703 -(1,11968:6303093,9334703:0,0,0 -) -g1,11968:6630773,9334703 -) -g1,11969:10740667,9334703 -k1,11969:10740667,9334703:0 -h1,11969:12005249,9334703:0,0,0 -k1,11969:32583029,9334703:20577780 -g1,11969:32583029,9334703 -) -(1,11970:6630773,10000881:25952256,404226,82312 -h1,11970:6630773,10000881:0,0,0 -g1,11970:6946919,10000881 -g1,11970:7263065,10000881 -k1,11970:7263065,10000881:0 -h1,11970:10108376,10000881:0,0,0 -k1,11970:32583028,10000881:22474652 -g1,11970:32583028,10000881 -) -(1,11971:6630773,10667059:25952256,404226,101187 -h1,11971:6630773,10667059:0,0,0 -g1,11971:6946919,10667059 -g1,11971:7263065,10667059 -g1,11971:7579211,10667059 -g1,11971:7895357,10667059 -g1,11971:8211503,10667059 -g1,11971:8527649,10667059 -g1,11971:8843795,10667059 -g1,11971:9159941,10667059 -g1,11971:9476087,10667059 -g1,11971:12953690,10667059 -g1,11971:13585982,10667059 -g1,11971:19276604,10667059 -k1,11971:19276604,10667059:0 -h1,11971:24018790,10667059:0,0,0 -k1,11971:32583029,10667059:8564239 -g1,11971:32583029,10667059 -) -(1,11972:6630773,11333237:25952256,410518,107478 -h1,11972:6630773,11333237:0,0,0 -g1,11972:6946919,11333237 -g1,11972:7263065,11333237 -g1,11972:7579211,11333237 -g1,11972:7895357,11333237 -g1,11972:8211503,11333237 -g1,11972:8527649,11333237 -g1,11972:8843795,11333237 -g1,11972:9159941,11333237 -g1,11972:9476087,11333237 -g1,11972:12321398,11333237 -g1,11972:12953690,11333237 -g1,11972:18644312,11333237 -g1,11972:23702643,11333237 -g1,11972:24651081,11333237 -h1,11972:28444829,11333237:0,0,0 -k1,11972:32583029,11333237:4138200 -g1,11972:32583029,11333237 -) -(1,11973:6630773,11999415:25952256,404226,107478 -h1,11973:6630773,11999415:0,0,0 -h1,11973:10424521,11999415:0,0,0 -k1,11973:32583029,11999415:22158508 -g1,11973:32583029,11999415 -) -(1,11983:6630773,12731129:25952256,404226,9436 -(1,11975:6630773,12731129:0,0,0 -g1,11975:6630773,12731129 -g1,11975:6630773,12731129 -g1,11975:6303093,12731129 -(1,11975:6303093,12731129:0,0,0 -) -g1,11975:6630773,12731129 -) -g1,11983:7579210,12731129 -g1,11983:8211502,12731129 -g1,11983:8843794,12731129 -g1,11983:11372960,12731129 -g1,11983:12637543,12731129 -g1,11983:13269835,12731129 -h1,11983:13585981,12731129:0,0,0 -k1,11983:32583029,12731129:18997048 -g1,11983:32583029,12731129 -) -(1,11983:6630773,13397307:25952256,404226,101187 -h1,11983:6630773,13397307:0,0,0 -g1,11983:7579210,13397307 -g1,11983:7895356,13397307 -g1,11983:8211502,13397307 -g1,11983:10740668,13397307 -g1,11983:12321397,13397307 -g1,11983:12637543,13397307 -g1,11983:12953689,13397307 -g1,11983:13269835,13397307 -g1,11983:13585981,13397307 -g1,11983:13902127,13397307 -g1,11983:14218273,13397307 -g1,11983:14534419,13397307 -g1,11983:14850565,13397307 -g1,11983:18012022,13397307 -g1,11983:21489625,13397307 -h1,11983:24018790,13397307:0,0,0 -k1,11983:32583029,13397307:8564239 -g1,11983:32583029,13397307 -) -(1,11983:6630773,14063485:25952256,410518,6290 -h1,11983:6630773,14063485:0,0,0 -g1,11983:7579210,14063485 -g1,11983:7895356,14063485 -g1,11983:8211502,14063485 -g1,11983:10108377,14063485 -g1,11983:10424523,14063485 -g1,11983:10740669,14063485 -g1,11983:12637544,14063485 -g1,11983:12953690,14063485 -g1,11983:13269836,14063485 -g1,11983:13585982,14063485 -g1,11983:13902128,14063485 -g1,11983:14218274,14063485 -g1,11983:14534420,14063485 -g1,11983:14850566,14063485 -g1,11983:15166712,14063485 -g1,11983:15482858,14063485 -g1,11983:15799004,14063485 -g1,11983:16115150,14063485 -g1,11983:18012025,14063485 -g1,11983:19908900,14063485 -g1,11983:20225046,14063485 -g1,11983:20541192,14063485 -g1,11983:20857338,14063485 -g1,11983:21173484,14063485 -g1,11983:21489630,14063485 -k1,11983:21489630,14063485:0 -h1,11983:23070359,14063485:0,0,0 -k1,11983:32583029,14063485:9512670 -g1,11983:32583029,14063485 -) -(1,11983:6630773,14729663:25952256,404226,107478 -h1,11983:6630773,14729663:0,0,0 -g1,11983:7579210,14729663 -g1,11983:8211502,14729663 -g1,11983:10424522,14729663 -g1,11983:10740668,14729663 -g1,11983:14850562,14729663 -g1,11983:15166708,14729663 -g1,11983:15482854,14729663 -g1,11983:15799000,14729663 -g1,11983:16115146,14729663 -g1,11983:16431292,14729663 -g1,11983:16747438,14729663 -g1,11983:18012021,14729663 -g1,11983:19908895,14729663 -g1,11983:20225041,14729663 -g1,11983:20541187,14729663 -g1,11983:20857333,14729663 -g1,11983:21173479,14729663 -g1,11983:21489625,14729663 -h1,11983:23386499,14729663:0,0,0 -k1,11983:32583029,14729663:9196530 -g1,11983:32583029,14729663 -) -(1,11983:6630773,15395841:25952256,404226,107478 -h1,11983:6630773,15395841:0,0,0 -g1,11983:7579210,15395841 -g1,11983:8211502,15395841 -g1,11983:10424522,15395841 -g1,11983:10740668,15395841 -g1,11983:14850562,15395841 -g1,11983:15166708,15395841 -g1,11983:15482854,15395841 -g1,11983:15799000,15395841 -g1,11983:16115146,15395841 -g1,11983:16431292,15395841 -g1,11983:16747438,15395841 -g1,11983:18012021,15395841 -g1,11983:19908895,15395841 -g1,11983:20225041,15395841 -g1,11983:20541187,15395841 -g1,11983:20857333,15395841 -g1,11983:21173479,15395841 -g1,11983:21489625,15395841 -h1,11983:23386499,15395841:0,0,0 -k1,11983:32583029,15395841:9196530 -g1,11983:32583029,15395841 -) -(1,11983:6630773,16062019:25952256,404226,107478 -h1,11983:6630773,16062019:0,0,0 -g1,11983:7579210,16062019 -g1,11983:8211502,16062019 -g1,11983:10424522,16062019 -g1,11983:10740668,16062019 -g1,11983:14850562,16062019 -g1,11983:15166708,16062019 -g1,11983:15482854,16062019 -g1,11983:15799000,16062019 -g1,11983:16115146,16062019 -g1,11983:16431292,16062019 -g1,11983:16747438,16062019 -g1,11983:18012021,16062019 -g1,11983:19908895,16062019 -g1,11983:20225041,16062019 -g1,11983:20541187,16062019 -g1,11983:20857333,16062019 -g1,11983:21173479,16062019 -g1,11983:21489625,16062019 -h1,11983:23386499,16062019:0,0,0 -k1,11983:32583029,16062019:9196530 -g1,11983:32583029,16062019 -) -(1,11983:6630773,16728197:25952256,404226,9436 -h1,11983:6630773,16728197:0,0,0 -g1,11983:7579210,16728197 -g1,11983:8211502,16728197 -g1,11983:9476085,16728197 -g1,11983:11056814,16728197 -g1,11983:12321397,16728197 -g1,11983:13902126,16728197 -h1,11983:15166709,16728197:0,0,0 -k1,11983:32583029,16728197:17416320 -g1,11983:32583029,16728197 -) -] -) -g1,11984:32583029,16737633 -g1,11984:6630773,16737633 -g1,11984:6630773,16737633 -g1,11984:32583029,16737633 -g1,11984:32583029,16737633 -) -h1,11984:6630773,16934241:0,0,0 -(1,11988:6630773,18299564:25952256,513147,134348 -h1,11987:6630773,18299564:983040,0,0 -k1,11987:8472788,18299564:231140 -k1,11987:9723014,18299564:231141 -k1,11987:11338274,18299564:231140 -k1,11987:12702533,18299564:231141 -k1,11987:15408312,18299564:231140 -k1,11987:16507804,18299564:231140 -k1,11987:18320984,18299564:231141 -k1,11987:19571209,18299564:231140 -k1,11987:22581076,18299564:231140 -k1,11987:24822862,18299564:231141 -k1,11987:27005664,18299564:231140 -k1,11987:28679252,18299564:231141 -k1,11987:30943974,18299564:231140 -k1,11987:32583029,18299564:0 -) -(1,11988:6630773,19141052:25952256,513147,134348 -k1,11987:7466205,19141052:219394 -k1,11987:10700911,19141052:219395 -k1,11987:11548140,19141052:219394 -k1,11987:14046222,19141052:219395 -k1,11987:15531772,19141052:219394 -k1,11987:16907876,19141052:219394 -k1,11987:19083521,19141052:219395 -k1,11987:22014795,19141052:219394 -k1,11987:23930916,19141052:219394 -k1,11987:27176108,19141052:219395 -k1,11987:28662968,19141052:219394 -k1,11987:29238223,19141052:219395 -k1,11987:30847636,19141052:219394 -k1,11987:32583029,19141052:0 -) -(1,11988:6630773,19982540:25952256,505283,134348 -g1,11987:9576616,19982540 -(1,11987:9576616,19982540:0,435480,115847 -r1,12043:10990017,19982540:1413401,551327,115847 -k1,11987:9576616,19982540:-1413401 -) -(1,11987:9576616,19982540:1413401,435480,115847 -k1,11987:9576616,19982540:3277 -h1,11987:10986740,19982540:0,411205,112570 -) -g1,11987:11189246,19982540 -g1,11987:12620552,19982540 -g1,11987:15098468,19982540 -h1,11987:16069056,19982540:0,0,0 -g1,11987:16268285,19982540 -g1,11987:17276884,19982540 -g1,11987:18974266,19982540 -h1,11987:20169643,19982540:0,0,0 -k1,11988:32583029,19982540:12032622 -g1,11988:32583029,19982540 -) -(1,11990:6630773,20824028:25952256,513147,134348 -h1,11989:6630773,20824028:983040,0,0 -k1,11989:10641694,20824028:238013 -(1,11989:10641694,20824028:0,452978,122846 -r1,12043:13813654,20824028:3171960,575824,122846 -k1,11989:10641694,20824028:-3171960 -) -(1,11989:10641694,20824028:3171960,452978,122846 -k1,11989:10641694,20824028:3277 -h1,11989:13810377,20824028:0,411205,112570 -) -k1,11989:14051667,20824028:238013 -k1,11989:14821177,20824028:238013 -k1,11989:16572416,20824028:238013 -k1,11989:17758080,20824028:238013 -k1,11989:20256431,20824028:238014 -k1,11989:21513529,20824028:238013 -k1,11989:25987134,20824028:238013 -k1,11989:28485484,20824028:238013 -k1,11989:29079357,20824028:238013 -k1,11989:30706733,20824028:238013 -k1,11989:32583029,20824028:0 -) -(1,11990:6630773,21665516:25952256,505283,134348 -k1,11989:7675028,21665516:361370 -k1,11989:9847813,21665516:361370 -k1,11989:12622219,21665516:361370 -k1,11989:14426037,21665516:361371 -k1,11989:15548935,21665516:361370 -k1,11989:17645698,21665516:361370 -(1,11989:17645698,21665516:0,452978,115847 -r1,12043:19762523,21665516:2116825,568825,115847 -k1,11989:17645698,21665516:-2116825 -) -(1,11989:17645698,21665516:2116825,452978,115847 -k1,11989:17645698,21665516:3277 -h1,11989:19759246,21665516:0,411205,112570 -) -k1,11989:20123893,21665516:361370 -k1,11989:21676708,21665516:361370 -(1,11989:21676708,21665516:0,452978,115847 -r1,12043:24145245,21665516:2468537,568825,115847 -k1,11989:21676708,21665516:-2468537 -) -(1,11989:21676708,21665516:2468537,452978,115847 -k1,11989:21676708,21665516:3277 -h1,11989:24141968,21665516:0,411205,112570 -) -k1,11989:24680285,21665516:361370 -k1,11989:26529979,21665516:361371 -k1,11989:27759701,21665516:361370 -k1,11989:29391159,21665516:361370 -k1,11989:30771614,21665516:361370 -k1,11990:32583029,21665516:0 -) -(1,11990:6630773,22507004:25952256,513147,122846 -(1,11989:6630773,22507004:0,452978,122846 -r1,12043:10857869,22507004:4227096,575824,122846 -k1,11989:6630773,22507004:-4227096 -) -(1,11989:6630773,22507004:4227096,452978,122846 -k1,11989:6630773,22507004:3277 -h1,11989:10854592,22507004:0,411205,112570 -) -g1,11989:11057098,22507004 -g1,11989:13110996,22507004 -g1,11989:14119595,22507004 -g1,11989:15337909,22507004 -g1,11989:17547783,22507004 -g1,11989:18363050,22507004 -g1,11989:20217063,22507004 -g1,11989:21075584,22507004 -g1,11989:22063211,22507004 -k1,11990:32583029,22507004:7632957 -g1,11990:32583029,22507004 -) -v1,11992:6630773,23697016:0,393216,0 -(1,12005:6630773,28642852:25952256,5339052,196608 -g1,12005:6630773,28642852 -g1,12005:6630773,28642852 -g1,12005:6434165,28642852 -(1,12005:6434165,28642852:0,5339052,196608 -r1,12043:32779637,28642852:26345472,5535660,196608 -k1,12005:6434165,28642852:-26345472 -) -(1,12005:6434165,28642852:26345472,5339052,196608 -[1,12005:6630773,28642852:25952256,5142444,0 -(1,11994:6630773,23904634:25952256,404226,107478 -(1,11993:6630773,23904634:0,0,0 -g1,11993:6630773,23904634 -g1,11993:6630773,23904634 -g1,11993:6303093,23904634 -(1,11993:6303093,23904634:0,0,0 -) -g1,11993:6630773,23904634 -) -k1,11994:6630773,23904634:0 -g1,11994:13585979,23904634 -g1,11994:16431291,23904634 -g1,11994:20225040,23904634 -h1,11994:23070351,23904634:0,0,0 -k1,11994:32583029,23904634:9512678 -g1,11994:32583029,23904634 -) -(1,12004:6630773,24636348:25952256,404226,9436 -(1,11996:6630773,24636348:0,0,0 -g1,11996:6630773,24636348 -g1,11996:6630773,24636348 -g1,11996:6303093,24636348 -(1,11996:6303093,24636348:0,0,0 -) -g1,11996:6630773,24636348 -) -g1,12004:7579210,24636348 -g1,12004:8211502,24636348 -g1,12004:8843794,24636348 -g1,12004:11372960,24636348 -g1,12004:12637543,24636348 -g1,12004:13269835,24636348 -h1,12004:13585981,24636348:0,0,0 -k1,12004:32583029,24636348:18997048 -g1,12004:32583029,24636348 -) -(1,12004:6630773,25302526:25952256,404226,101187 -h1,12004:6630773,25302526:0,0,0 -g1,12004:7579210,25302526 -g1,12004:7895356,25302526 -g1,12004:8211502,25302526 -g1,12004:10740668,25302526 -g1,12004:12321397,25302526 -g1,12004:12637543,25302526 -g1,12004:12953689,25302526 -g1,12004:13269835,25302526 -g1,12004:13585981,25302526 -g1,12004:13902127,25302526 -g1,12004:14218273,25302526 -g1,12004:14534419,25302526 -g1,12004:14850565,25302526 -g1,12004:18012022,25302526 -g1,12004:21489625,25302526 -h1,12004:24018790,25302526:0,0,0 -k1,12004:32583029,25302526:8564239 -g1,12004:32583029,25302526 -) -(1,12004:6630773,25968704:25952256,410518,6290 -h1,12004:6630773,25968704:0,0,0 -g1,12004:7579210,25968704 -g1,12004:7895356,25968704 -g1,12004:8211502,25968704 -g1,12004:10108377,25968704 -g1,12004:10424523,25968704 -g1,12004:10740669,25968704 -g1,12004:12637544,25968704 -g1,12004:12953690,25968704 -g1,12004:13269836,25968704 -g1,12004:13585982,25968704 -g1,12004:13902128,25968704 -g1,12004:14218274,25968704 -g1,12004:14534420,25968704 -g1,12004:14850566,25968704 -g1,12004:15166712,25968704 -g1,12004:15482858,25968704 -g1,12004:15799004,25968704 -g1,12004:16115150,25968704 -g1,12004:18012025,25968704 -g1,12004:19908900,25968704 -g1,12004:20225046,25968704 -g1,12004:20541192,25968704 -g1,12004:20857338,25968704 -g1,12004:21173484,25968704 -g1,12004:21489630,25968704 -k1,12004:21489630,25968704:0 -h1,12004:23070359,25968704:0,0,0 -k1,12004:32583029,25968704:9512670 -g1,12004:32583029,25968704 -) -(1,12004:6630773,26634882:25952256,404226,107478 -h1,12004:6630773,26634882:0,0,0 -g1,12004:7579210,26634882 -g1,12004:8211502,26634882 -g1,12004:10424522,26634882 -g1,12004:10740668,26634882 -g1,12004:14850562,26634882 -g1,12004:15166708,26634882 -g1,12004:15482854,26634882 -g1,12004:15799000,26634882 -g1,12004:16115146,26634882 -g1,12004:16431292,26634882 -g1,12004:16747438,26634882 -g1,12004:18012021,26634882 -g1,12004:19908895,26634882 -g1,12004:20225041,26634882 -g1,12004:20541187,26634882 -g1,12004:20857333,26634882 -g1,12004:21173479,26634882 -g1,12004:21489625,26634882 -h1,12004:23386499,26634882:0,0,0 -k1,12004:32583029,26634882:9196530 -g1,12004:32583029,26634882 -) -(1,12004:6630773,27301060:25952256,404226,107478 -h1,12004:6630773,27301060:0,0,0 -g1,12004:7579210,27301060 -g1,12004:8211502,27301060 -g1,12004:10424522,27301060 -g1,12004:10740668,27301060 -g1,12004:14850562,27301060 -g1,12004:15166708,27301060 -g1,12004:15482854,27301060 -g1,12004:15799000,27301060 -g1,12004:16115146,27301060 -g1,12004:16431292,27301060 -g1,12004:16747438,27301060 -g1,12004:18012021,27301060 -g1,12004:19908895,27301060 -g1,12004:20225041,27301060 -g1,12004:20541187,27301060 -g1,12004:20857333,27301060 -g1,12004:21173479,27301060 -g1,12004:21489625,27301060 -h1,12004:23386499,27301060:0,0,0 -k1,12004:32583029,27301060:9196530 -g1,12004:32583029,27301060 -) -(1,12004:6630773,27967238:25952256,404226,107478 -h1,12004:6630773,27967238:0,0,0 -g1,12004:7579210,27967238 -g1,12004:8211502,27967238 -g1,12004:10424522,27967238 -g1,12004:10740668,27967238 -g1,12004:14850562,27967238 -g1,12004:15166708,27967238 -g1,12004:15482854,27967238 -g1,12004:15799000,27967238 -g1,12004:16115146,27967238 -g1,12004:16431292,27967238 -g1,12004:16747438,27967238 -g1,12004:18012021,27967238 -g1,12004:19908895,27967238 -g1,12004:20225041,27967238 -g1,12004:20541187,27967238 -g1,12004:20857333,27967238 -g1,12004:21173479,27967238 -g1,12004:21489625,27967238 -h1,12004:23386499,27967238:0,0,0 -k1,12004:32583029,27967238:9196530 -g1,12004:32583029,27967238 -) -(1,12004:6630773,28633416:25952256,404226,9436 -h1,12004:6630773,28633416:0,0,0 -g1,12004:7579210,28633416 -g1,12004:8211502,28633416 -g1,12004:9476085,28633416 -g1,12004:11056814,28633416 -g1,12004:12321397,28633416 -g1,12004:13902126,28633416 -h1,12004:15166709,28633416:0,0,0 -k1,12004:32583029,28633416:17416320 -g1,12004:32583029,28633416 -) -] -) -g1,12005:32583029,28642852 -g1,12005:6630773,28642852 -g1,12005:6630773,28642852 -g1,12005:32583029,28642852 -g1,12005:32583029,28642852 -) -h1,12005:6630773,28839460:0,0,0 -(1,12009:6630773,30204782:25952256,513147,115847 -h1,12008:6630773,30204782:983040,0,0 -k1,12008:10585340,30204782:181659 -(1,12008:10585340,30204782:0,459977,115847 -r1,12043:13405589,30204782:2820249,575824,115847 -k1,12008:10585340,30204782:-2820249 -) -(1,12008:10585340,30204782:2820249,459977,115847 -k1,12008:10585340,30204782:3277 -h1,12008:13402312,30204782:0,411205,112570 -) -k1,12008:13587248,30204782:181659 -k1,12008:14873190,30204782:181660 -k1,12008:15802615,30204782:181659 -k1,12008:17497500,30204782:181659 -k1,12008:18330587,30204782:181659 -k1,12008:20716223,30204782:181660 -k1,12008:21253742,30204782:181659 -k1,12008:23515514,30204782:181659 -k1,12008:24356465,30204782:181659 -k1,12008:28929693,30204782:181660 -k1,12008:29762780,30204782:181659 -(1,12008:29762780,30204782:0,452978,115847 -r1,12043:32583029,30204782:2820249,568825,115847 -k1,12008:29762780,30204782:-2820249 -) -(1,12008:29762780,30204782:2820249,452978,115847 -k1,12008:29762780,30204782:3277 -h1,12008:32579752,30204782:0,411205,112570 -) -k1,12008:32583029,30204782:0 -) -(1,12009:6630773,31046270:25952256,513147,126483 -k1,12008:7906665,31046270:203723 -k1,12008:9504340,31046270:203724 -k1,12008:10063923,31046270:203723 -k1,12008:12351691,31046270:203723 -k1,12008:15836147,31046270:203724 -k1,12008:17433821,31046270:203723 -k1,12008:18922051,31046270:203724 -k1,12008:19785066,31046270:203723 -k1,12008:21690759,31046270:203723 -k1,12008:24920280,31046270:203724 -k1,12008:25740041,31046270:203723 -k1,12008:26962849,31046270:203723 -k1,12008:30548230,31046270:203724 -k1,12008:31379788,31046270:203723 -k1,12008:32583029,31046270:0 -) -(1,12009:6630773,31887758:25952256,513147,134348 -g1,12008:8370753,31887758 -g1,12008:9765359,31887758 -g1,12008:11030859,31887758 -g1,12008:11889380,31887758 -g1,12008:13107694,31887758 -g1,12008:15742241,31887758 -g1,12008:17136847,31887758 -g1,12008:18870274,31887758 -g1,12008:20061063,31887758 -k1,12009:32583029,31887758:9715714 -g1,12009:32583029,31887758 -) -v1,12011:6630773,33077770:0,393216,0 -(1,12024:6630773,38029898:25952256,5345344,196608 -g1,12024:6630773,38029898 -g1,12024:6630773,38029898 -g1,12024:6434165,38029898 -(1,12024:6434165,38029898:0,5345344,196608 -r1,12043:32779637,38029898:26345472,5541952,196608 -k1,12024:6434165,38029898:-26345472 -) -(1,12024:6434165,38029898:26345472,5345344,196608 -[1,12024:6630773,38029898:25952256,5148736,0 -(1,12013:6630773,33291680:25952256,410518,107478 -(1,12012:6630773,33291680:0,0,0 -g1,12012:6630773,33291680 -g1,12012:6630773,33291680 -g1,12012:6303093,33291680 -(1,12012:6303093,33291680:0,0,0 -) -g1,12012:6630773,33291680 -) -k1,12013:6630773,33291680:0 -g1,12013:13269833,33291680 -g1,12013:16747436,33291680 -g1,12013:17695873,33291680 -h1,12013:20225039,33291680:0,0,0 -k1,12013:32583029,33291680:12357990 -g1,12013:32583029,33291680 -) -(1,12023:6630773,34023394:25952256,404226,9436 -(1,12015:6630773,34023394:0,0,0 -g1,12015:6630773,34023394 -g1,12015:6630773,34023394 -g1,12015:6303093,34023394 -(1,12015:6303093,34023394:0,0,0 -) -g1,12015:6630773,34023394 -) -g1,12023:7579210,34023394 -g1,12023:8211502,34023394 -g1,12023:8843794,34023394 -g1,12023:11372960,34023394 -g1,12023:12637543,34023394 -g1,12023:13269835,34023394 -h1,12023:13585981,34023394:0,0,0 -k1,12023:32583029,34023394:18997048 -g1,12023:32583029,34023394 -) -(1,12023:6630773,34689572:25952256,404226,101187 -h1,12023:6630773,34689572:0,0,0 -g1,12023:7579210,34689572 -g1,12023:7895356,34689572 -g1,12023:8211502,34689572 -g1,12023:10740668,34689572 -g1,12023:12321397,34689572 -g1,12023:12637543,34689572 -g1,12023:12953689,34689572 -g1,12023:13269835,34689572 -g1,12023:13585981,34689572 -g1,12023:13902127,34689572 -g1,12023:14218273,34689572 -g1,12023:14534419,34689572 -g1,12023:14850565,34689572 -g1,12023:18012022,34689572 -g1,12023:21489625,34689572 -h1,12023:24018790,34689572:0,0,0 -k1,12023:32583029,34689572:8564239 -g1,12023:32583029,34689572 -) -(1,12023:6630773,35355750:25952256,410518,6290 -h1,12023:6630773,35355750:0,0,0 -g1,12023:7579210,35355750 -g1,12023:7895356,35355750 -g1,12023:8211502,35355750 -g1,12023:10108377,35355750 -g1,12023:10424523,35355750 -g1,12023:10740669,35355750 -g1,12023:12637544,35355750 -g1,12023:12953690,35355750 -g1,12023:13269836,35355750 -g1,12023:13585982,35355750 -g1,12023:13902128,35355750 -g1,12023:14218274,35355750 -g1,12023:14534420,35355750 -g1,12023:14850566,35355750 -g1,12023:15166712,35355750 -g1,12023:15482858,35355750 -g1,12023:15799004,35355750 -g1,12023:16115150,35355750 -g1,12023:18012025,35355750 -g1,12023:19908900,35355750 -g1,12023:20225046,35355750 -g1,12023:20541192,35355750 -g1,12023:20857338,35355750 -g1,12023:21173484,35355750 -g1,12023:21489630,35355750 -k1,12023:21489630,35355750:0 -h1,12023:23070359,35355750:0,0,0 -k1,12023:32583029,35355750:9512670 -g1,12023:32583029,35355750 -) -(1,12023:6630773,36021928:25952256,404226,107478 -h1,12023:6630773,36021928:0,0,0 -g1,12023:7579210,36021928 -g1,12023:8211502,36021928 -g1,12023:10424522,36021928 -g1,12023:10740668,36021928 -g1,12023:14850562,36021928 -g1,12023:15166708,36021928 -g1,12023:15482854,36021928 -g1,12023:15799000,36021928 -g1,12023:16115146,36021928 -g1,12023:16431292,36021928 -g1,12023:16747438,36021928 -g1,12023:18012021,36021928 -g1,12023:19908895,36021928 -g1,12023:20225041,36021928 -g1,12023:20541187,36021928 -g1,12023:20857333,36021928 -g1,12023:21173479,36021928 -g1,12023:21489625,36021928 -h1,12023:23386499,36021928:0,0,0 -k1,12023:32583029,36021928:9196530 -g1,12023:32583029,36021928 -) -(1,12023:6630773,36688106:25952256,404226,107478 -h1,12023:6630773,36688106:0,0,0 -g1,12023:7579210,36688106 -g1,12023:8211502,36688106 -g1,12023:10424522,36688106 -g1,12023:10740668,36688106 -g1,12023:14850562,36688106 -g1,12023:15166708,36688106 -g1,12023:15482854,36688106 -g1,12023:15799000,36688106 -g1,12023:16115146,36688106 -g1,12023:16431292,36688106 -g1,12023:16747438,36688106 -g1,12023:18012021,36688106 -g1,12023:19908895,36688106 -g1,12023:20225041,36688106 -g1,12023:20541187,36688106 -g1,12023:20857333,36688106 -g1,12023:21173479,36688106 -g1,12023:21489625,36688106 -h1,12023:23386499,36688106:0,0,0 -k1,12023:32583029,36688106:9196530 -g1,12023:32583029,36688106 -) -(1,12023:6630773,37354284:25952256,404226,107478 -h1,12023:6630773,37354284:0,0,0 -g1,12023:7579210,37354284 -g1,12023:8211502,37354284 -g1,12023:10424522,37354284 -g1,12023:10740668,37354284 -g1,12023:14850562,37354284 -g1,12023:15166708,37354284 -g1,12023:15482854,37354284 -g1,12023:15799000,37354284 -g1,12023:16115146,37354284 -g1,12023:16431292,37354284 -g1,12023:16747438,37354284 -g1,12023:18012021,37354284 -g1,12023:19908895,37354284 -g1,12023:20225041,37354284 -g1,12023:20541187,37354284 -g1,12023:20857333,37354284 -g1,12023:21173479,37354284 -g1,12023:21489625,37354284 -h1,12023:23386499,37354284:0,0,0 -k1,12023:32583029,37354284:9196530 -g1,12023:32583029,37354284 -) -(1,12023:6630773,38020462:25952256,404226,9436 -h1,12023:6630773,38020462:0,0,0 -g1,12023:7579210,38020462 -g1,12023:8211502,38020462 -g1,12023:9476085,38020462 -g1,12023:11056814,38020462 -g1,12023:12321397,38020462 -g1,12023:13902126,38020462 -h1,12023:15166709,38020462:0,0,0 -k1,12023:32583029,38020462:17416320 -g1,12023:32583029,38020462 -) -] -) -g1,12024:32583029,38029898 -g1,12024:6630773,38029898 -g1,12024:6630773,38029898 -g1,12024:32583029,38029898 -g1,12024:32583029,38029898 -) -h1,12024:6630773,38226506:0,0,0 -(1,12028:6630773,39591829:25952256,513147,115847 -h1,12027:6630773,39591829:983040,0,0 -k1,12027:10764296,39591829:360615 -(1,12027:10764296,39591829:0,452978,115847 -r1,12043:13232833,39591829:2468537,568825,115847 -k1,12027:10764296,39591829:-2468537 -) -(1,12027:10764296,39591829:2468537,452978,115847 -k1,12027:10764296,39591829:3277 -h1,12027:13229556,39591829:0,411205,112570 -) -k1,12027:13593448,39591829:360615 -k1,12027:15058344,39591829:360614 -k1,12027:16166725,39591829:360615 -k1,12027:18040566,39591829:360615 -k1,12027:19052609,39591829:360615 -k1,12027:21617199,39591829:360614 -k1,12027:22333674,39591829:360615 -k1,12027:24774402,39591829:360615 -k1,12027:25794309,39591829:360615 -k1,12027:27689122,39591829:360615 -k1,12027:29904405,39591829:360614 -k1,12027:31074390,39591829:360615 -k1,12027:32583029,39591829:0 -) -(1,12028:6630773,40433317:25952256,505283,126483 -k1,12027:11154012,40433317:152643 -k1,12027:14380950,40433317:152644 -k1,12027:15818099,40433317:152643 -k1,12027:16586781,40433317:152644 -k1,12027:18173352,40433317:152643 -k1,12027:18740792,40433317:152597 -k1,12027:20849685,40433317:152643 -k1,12027:22094814,40433317:152644 -k1,12027:25422676,40433317:152643 -k1,12027:28609637,40433317:152644 -k1,12027:31189078,40433317:152643 -k1,12027:32583029,40433317:0 -) -(1,12028:6630773,41274805:25952256,505283,126483 -g1,12027:7849087,41274805 -(1,12027:7849087,41274805:0,452978,115847 -r1,12043:9614201,41274805:1765114,568825,115847 -k1,12027:7849087,41274805:-1765114 -) -(1,12027:7849087,41274805:1765114,452978,115847 -g1,12027:8555788,41274805 -g1,12027:9259212,41274805 -h1,12027:9610924,41274805:0,411205,112570 -) -g1,12027:9813430,41274805 -g1,12027:12932943,41274805 -(1,12027:12932943,41274805:0,452978,122846 -r1,12043:19622022,41274805:6689079,575824,122846 -k1,12027:12932943,41274805:-6689079 -) -(1,12027:12932943,41274805:6689079,452978,122846 -g1,12027:19267033,41274805 -h1,12027:19618745,41274805:0,411205,112570 -) -k1,12028:32583029,41274805:12787337 -g1,12028:32583029,41274805 -) -v1,12030:6630773,42464817:0,393216,0 -(1,12043:6630773,45510161:25952256,3438560,196608 -g1,12043:6630773,45510161 -g1,12043:6630773,45510161 -g1,12043:6434165,45510161 -(1,12043:6434165,45510161:0,3438560,196608 -r1,12043:32779637,45510161:26345472,3635168,196608 -k1,12043:6434165,45510161:-26345472 -) -(1,12043:6434165,45510161:26345472,3438560,196608 -[1,12043:6630773,45510161:25952256,3241952,0 -(1,12032:6630773,42672435:25952256,404226,107478 -(1,12031:6630773,42672435:0,0,0 -g1,12031:6630773,42672435 -g1,12031:6630773,42672435 -g1,12031:6303093,42672435 -(1,12031:6303093,42672435:0,0,0 -) -g1,12031:6630773,42672435 -) -k1,12032:6630773,42672435:0 -g1,12032:12953687,42672435 -h1,12032:14218271,42672435:0,0,0 -k1,12032:32583029,42672435:18364758 -g1,12032:32583029,42672435 -) -(1,12042:6630773,43404149:25952256,404226,9436 -(1,12034:6630773,43404149:0,0,0 -g1,12034:6630773,43404149 -g1,12034:6630773,43404149 -g1,12034:6303093,43404149 -(1,12034:6303093,43404149:0,0,0 -) -g1,12034:6630773,43404149 -) -g1,12042:7579210,43404149 -g1,12042:8211502,43404149 -g1,12042:8843794,43404149 -g1,12042:11372960,43404149 -g1,12042:12005252,43404149 -g1,12042:12637544,43404149 -h1,12042:12953690,43404149:0,0,0 -k1,12042:32583030,43404149:19629340 -g1,12042:32583030,43404149 -) -(1,12042:6630773,44070327:25952256,404226,101187 -h1,12042:6630773,44070327:0,0,0 -g1,12042:7579210,44070327 -g1,12042:7895356,44070327 -g1,12042:8211502,44070327 -g1,12042:10740668,44070327 -g1,12042:12321397,44070327 -g1,12042:12637543,44070327 -g1,12042:12953689,44070327 -g1,12042:13269835,44070327 -g1,12042:13585981,44070327 -g1,12042:13902127,44070327 -g1,12042:14218273,44070327 -g1,12042:14534419,44070327 -g1,12042:14850565,44070327 -g1,12042:18012022,44070327 -g1,12042:21489625,44070327 -h1,12042:24018790,44070327:0,0,0 -k1,12042:32583029,44070327:8564239 -g1,12042:32583029,44070327 -) -(1,12042:6630773,44736505:25952256,410518,6290 -h1,12042:6630773,44736505:0,0,0 -g1,12042:7579210,44736505 -g1,12042:7895356,44736505 -g1,12042:8211502,44736505 -g1,12042:10108377,44736505 -g1,12042:10424523,44736505 -g1,12042:10740669,44736505 -g1,12042:12637544,44736505 -g1,12042:12953690,44736505 -g1,12042:13269836,44736505 -g1,12042:13585982,44736505 -g1,12042:13902128,44736505 -g1,12042:14218274,44736505 -g1,12042:14534420,44736505 -g1,12042:14850566,44736505 -g1,12042:15166712,44736505 -g1,12042:15482858,44736505 -g1,12042:15799004,44736505 -g1,12042:16115150,44736505 -g1,12042:18012025,44736505 -g1,12042:19908900,44736505 -g1,12042:20225046,44736505 -g1,12042:20541192,44736505 -g1,12042:20857338,44736505 -g1,12042:21173484,44736505 -g1,12042:21489630,44736505 -k1,12042:21489630,44736505:0 -h1,12042:23070359,44736505:0,0,0 -k1,12042:32583029,44736505:9512670 -g1,12042:32583029,44736505 -) -(1,12042:6630773,45402683:25952256,404226,107478 -h1,12042:6630773,45402683:0,0,0 -g1,12042:7579210,45402683 -g1,12042:8211502,45402683 -g1,12042:10424522,45402683 -g1,12042:10740668,45402683 -g1,12042:14850562,45402683 -g1,12042:15166708,45402683 -g1,12042:15482854,45402683 -g1,12042:15799000,45402683 -g1,12042:16115146,45402683 -g1,12042:16431292,45402683 -g1,12042:16747438,45402683 -g1,12042:18012021,45402683 -g1,12042:19908895,45402683 -g1,12042:20225041,45402683 -g1,12042:20541187,45402683 -g1,12042:20857333,45402683 -g1,12042:21173479,45402683 -g1,12042:21489625,45402683 -h1,12042:23386499,45402683:0,0,0 -k1,12042:32583029,45402683:9196530 -g1,12042:32583029,45402683 -) -] -) -g1,12043:32583029,45510161 -g1,12043:6630773,45510161 -g1,12043:6630773,45510161 -g1,12043:32583029,45510161 -g1,12043:32583029,45510161 -) -] -(1,12043:32583029,45706769:0,0,0 -g1,12043:32583029,45706769 -) -) -] -(1,12043:6630773,47279633:25952256,0,0 -h1,12043:6630773,47279633:25952256,0,0 -) -] -(1,12043:4262630,4025873:0,0,0 -[1,12043:-473656,4025873:0,0,0 -(1,12043:-473656,-710413:0,0,0 -(1,12043:-473656,-710413:0,0,0 -g1,12043:-473656,-710413 -) -g1,12043:-473656,-710413 -) -] -) -] -!33860 -}225 -Input:1690:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1691:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1692:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1693:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1694:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1695:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1696:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1697:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1698:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1699:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1700:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1701:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1702:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1703:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1704:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1392 -{226 -[1,12125:4262630,47279633:28320399,43253760,0 -(1,12125:4262630,4025873:0,0,0 -[1,12125:-473656,4025873:0,0,0 -(1,12125:-473656,-710413:0,0,0 -(1,12125:-473656,-644877:0,0,0 -k1,12125:-473656,-644877:-65536 -) -(1,12125:-473656,4736287:0,0,0 -k1,12125:-473656,4736287:5209943 -) -g1,12125:-473656,-710413 -) -] -) -[1,12125:6630773,47279633:25952256,43253760,0 -[1,12125:6630773,4812305:25952256,786432,0 -(1,12125:6630773,4812305:25952256,505283,126483 -(1,12125:6630773,4812305:25952256,505283,126483 -g1,12125:3078558,4812305 -[1,12125:3078558,4812305:0,0,0 -(1,12125:3078558,2439708:0,1703936,0 -k1,12125:1358238,2439708:-1720320 -(1,11088:1358238,2439708:1720320,1703936,0 -(1,11088:1358238,2439708:1179648,16384,0 -r1,12125:2537886,2439708:1179648,16384,0 -) -g1,11088:3062174,2439708 -(1,11088:3062174,2439708:16384,1703936,0 -[1,11088:3062174,2439708:25952256,1703936,0 -(1,11088:3062174,1915420:25952256,1179648,0 -(1,11088:3062174,1915420:16384,1179648,0 -r1,12125:3078558,1915420:16384,1179648,0 -) -k1,11088:29014430,1915420:25935872 -g1,11088:29014430,1915420 -) -] -) -) -) -] -[1,12125:3078558,4812305:0,0,0 -(1,12125:3078558,2439708:0,1703936,0 -g1,12125:29030814,2439708 -g1,12125:36135244,2439708 -(1,11088:36135244,2439708:1720320,1703936,0 -(1,11088:36135244,2439708:16384,1703936,0 -[1,11088:36135244,2439708:25952256,1703936,0 -(1,11088:36135244,1915420:25952256,1179648,0 -(1,11088:36135244,1915420:16384,1179648,0 -r1,12125:36151628,1915420:16384,1179648,0 -) -k1,11088:62087500,1915420:25935872 -g1,11088:62087500,1915420 -) -] -) -g1,11088:36675916,2439708 -(1,11088:36675916,2439708:1179648,16384,0 -r1,12125:37855564,2439708:1179648,16384,0 -) -) -k1,12125:3078556,2439708:-34777008 -) -] -[1,12125:3078558,4812305:0,0,0 -(1,12125:3078558,49800853:0,16384,2228224 -k1,12125:1358238,49800853:-1720320 -(1,11088:1358238,49800853:1720320,16384,2228224 -(1,11088:1358238,49800853:1179648,16384,0 -r1,12125:2537886,49800853:1179648,16384,0 -) -g1,11088:3062174,49800853 -(1,11088:3062174,52029077:16384,1703936,0 -[1,11088:3062174,52029077:25952256,1703936,0 -(1,11088:3062174,51504789:25952256,1179648,0 -(1,11088:3062174,51504789:16384,1179648,0 -r1,12125:3078558,51504789:16384,1179648,0 -) -k1,11088:29014430,51504789:25935872 -g1,11088:29014430,51504789 -) -] -) -) -) -] -[1,12125:3078558,4812305:0,0,0 -(1,12125:3078558,49800853:0,16384,2228224 -g1,12125:29030814,49800853 -g1,12125:36135244,49800853 -(1,11088:36135244,49800853:1720320,16384,2228224 -(1,11088:36135244,52029077:16384,1703936,0 -[1,11088:36135244,52029077:25952256,1703936,0 -(1,11088:36135244,51504789:25952256,1179648,0 -(1,11088:36135244,51504789:16384,1179648,0 -r1,12125:36151628,51504789:16384,1179648,0 -) -k1,11088:62087500,51504789:25935872 -g1,11088:62087500,51504789 -) -] -) -g1,11088:36675916,49800853 -(1,11088:36675916,49800853:1179648,16384,0 -r1,12125:37855564,49800853:1179648,16384,0 -) -) -k1,12125:3078556,49800853:-34777008 -) -] -g1,12125:6630773,4812305 -g1,12125:6630773,4812305 -g1,12125:8364200,4812305 -g1,12125:12785258,4812305 -g1,12125:14347636,4812305 -g1,12125:16554232,4812305 -k1,12125:31387652,4812305:14833420 -) -) -] -[1,12125:6630773,45706769:25952256,40108032,0 -(1,12125:6630773,45706769:25952256,40108032,0 -(1,12125:6630773,45706769:0,0,0 -g1,12125:6630773,45706769 -) -[1,12125:6630773,45706769:25952256,40108032,0 -v1,12043:6630773,6254097:0,393216,0 -(1,12043:6630773,7800361:25952256,1939480,196608 -g1,12043:6630773,7800361 -g1,12043:6630773,7800361 -g1,12043:6434165,7800361 -(1,12043:6434165,7800361:0,1939480,196608 -r1,12125:32779637,7800361:26345472,2136088,196608 -k1,12043:6434165,7800361:-26345472 -) -(1,12043:6434165,7800361:26345472,1939480,196608 -[1,12043:6630773,7800361:25952256,1742872,0 -(1,12042:6630773,6461715:25952256,404226,107478 -h1,12042:6630773,6461715:0,0,0 -g1,12042:7579210,6461715 -g1,12042:8211502,6461715 -g1,12042:10424522,6461715 -g1,12042:10740668,6461715 -g1,12042:14850562,6461715 -g1,12042:15166708,6461715 -g1,12042:15482854,6461715 -g1,12042:15799000,6461715 -g1,12042:16115146,6461715 -g1,12042:16431292,6461715 -g1,12042:16747438,6461715 -g1,12042:18012021,6461715 -g1,12042:19908895,6461715 -g1,12042:20225041,6461715 -g1,12042:20541187,6461715 -g1,12042:20857333,6461715 -g1,12042:21173479,6461715 -g1,12042:21489625,6461715 -h1,12042:23386499,6461715:0,0,0 -k1,12042:32583029,6461715:9196530 -g1,12042:32583029,6461715 -) -(1,12042:6630773,7127893:25952256,404226,107478 -h1,12042:6630773,7127893:0,0,0 -g1,12042:7579210,7127893 -g1,12042:8211502,7127893 -g1,12042:10424522,7127893 -g1,12042:10740668,7127893 -g1,12042:14850562,7127893 -g1,12042:15166708,7127893 -g1,12042:15482854,7127893 -g1,12042:15799000,7127893 -g1,12042:16115146,7127893 -g1,12042:16431292,7127893 -g1,12042:16747438,7127893 -g1,12042:18012021,7127893 -g1,12042:19908895,7127893 -g1,12042:20225041,7127893 -g1,12042:20541187,7127893 -g1,12042:20857333,7127893 -g1,12042:21173479,7127893 -g1,12042:21489625,7127893 -h1,12042:23386499,7127893:0,0,0 -k1,12042:32583029,7127893:9196530 -g1,12042:32583029,7127893 -) -(1,12042:6630773,7794071:25952256,404226,6290 -h1,12042:6630773,7794071:0,0,0 -g1,12042:7579210,7794071 -g1,12042:8211502,7794071 -g1,12042:9476085,7794071 -g1,12042:11056814,7794071 -g1,12042:11689106,7794071 -g1,12042:13269835,7794071 -h1,12042:14534418,7794071:0,0,0 -k1,12042:32583030,7794071:18048612 -g1,12042:32583030,7794071 -) -] -) -g1,12043:32583029,7800361 -g1,12043:6630773,7800361 -g1,12043:6630773,7800361 -g1,12043:32583029,7800361 -g1,12043:32583029,7800361 -) -h1,12043:6630773,7996969:0,0,0 -(1,12047:6630773,9138543:25952256,513147,115847 -h1,12046:6630773,9138543:983040,0,0 -k1,12046:10661600,9138543:257919 -(1,12046:10661600,9138543:0,452978,115847 -r1,12125:13481849,9138543:2820249,568825,115847 -k1,12046:10661600,9138543:-2820249 -) -(1,12046:10661600,9138543:2820249,452978,115847 -k1,12046:10661600,9138543:3277 -h1,12046:13478572,9138543:0,411205,112570 -) -k1,12046:13739768,9138543:257919 -k1,12046:15101969,9138543:257919 -k1,12046:16107654,9138543:257919 -k1,12046:17878799,9138543:257919 -k1,12046:18788146,9138543:257919 -k1,12046:21250041,9138543:257919 -k1,12046:21863820,9138543:257919 -k1,12046:24201852,9138543:257919 -k1,12046:25119063,9138543:257919 -k1,12046:29621094,9138543:257919 -k1,12046:31835263,9138543:257919 -k1,12046:32583029,9138543:0 -) -(1,12047:6630773,9980031:25952256,505283,134348 -k1,12046:8424375,9980031:216150 -k1,12046:10034476,9980031:216150 -k1,12046:13425846,9980031:216151 -k1,12046:16676313,9980031:216150 -k1,12046:19319261,9980031:216150 -k1,12046:20929362,9980031:216150 -(1,12046:20929362,9980031:0,452978,115847 -r1,12125:22694476,9980031:1765114,568825,115847 -k1,12046:20929362,9980031:-1765114 -) -(1,12046:20929362,9980031:1765114,452978,115847 -g1,12046:21636063,9980031 -g1,12046:22339487,9980031 -h1,12046:22691199,9980031:0,411205,112570 -) -k1,12046:22910627,9980031:216151 -k1,12046:23742815,9980031:216150 -k1,12046:25392893,9980031:216150 -k1,12046:26197556,9980031:216150 -k1,12046:28841161,9980031:216151 -k1,12046:30696366,9980031:216150 -k1,12046:31563944,9980031:216150 -k1,12046:32583029,9980031:0 -) -(1,12047:6630773,10821519:25952256,505283,134348 -k1,12046:9129333,10821519:257229 -k1,12046:12458890,10821519:257229 -k1,12046:13402281,10821519:257229 -k1,12046:16279639,10821519:257229 -k1,12046:18963666,10821519:257229 -k1,12046:19903780,10821519:257229 -k1,12046:22543897,10821519:257228 -k1,12046:24869442,10821519:257229 -k1,12046:25742709,10821519:257229 -k1,12046:26355798,10821519:257229 -k1,12046:28764574,10821519:257229 -k1,12046:31753999,10821519:257229 -k1,12047:32583029,10821519:0 -) -(1,12047:6630773,11663007:25952256,505283,126483 -k1,12046:8666456,11663007:224923 -k1,12046:9507418,11663007:224924 -k1,12046:11166269,11663007:224923 -k1,12046:11806010,11663007:224898 -k1,12046:13135215,11663007:224923 -k1,12046:14735740,11663007:224924 -k1,12046:15708429,11663007:224923 -k1,12046:18727153,11663007:224924 -k1,12046:20641594,11663007:224923 -(1,12046:20641594,11663007:0,452978,115847 -r1,12125:23461843,11663007:2820249,568825,115847 -k1,12046:20641594,11663007:-2820249 -) -(1,12046:20641594,11663007:2820249,452978,115847 -k1,12046:20641594,11663007:3277 -h1,12046:23458566,11663007:0,411205,112570 -) -k1,12046:23686767,11663007:224924 -k1,12046:26289992,11663007:224923 -k1,12046:27906901,11663007:224924 -k1,12046:30514713,11663007:224923 -k1,12046:32583029,11663007:0 -) -(1,12047:6630773,12504495:25952256,513147,126483 -g1,12046:10258190,12504495 -g1,12046:11851370,12504495 -g1,12046:12406459,12504495 -g1,12046:14586841,12504495 -g1,12046:15733721,12504495 -k1,12047:32583029,12504495:13668846 -g1,12047:32583029,12504495 -) -v1,12049:6630773,13470759:0,393216,0 -(1,12062:6630773,18416595:25952256,5339052,196608 -g1,12062:6630773,18416595 -g1,12062:6630773,18416595 -g1,12062:6434165,18416595 -(1,12062:6434165,18416595:0,5339052,196608 -r1,12125:32779637,18416595:26345472,5535660,196608 -k1,12062:6434165,18416595:-26345472 -) -(1,12062:6434165,18416595:26345472,5339052,196608 -[1,12062:6630773,18416595:25952256,5142444,0 -(1,12051:6630773,13678377:25952256,404226,107478 -(1,12050:6630773,13678377:0,0,0 -g1,12050:6630773,13678377 -g1,12050:6630773,13678377 -g1,12050:6303093,13678377 -(1,12050:6303093,13678377:0,0,0 -) -g1,12050:6630773,13678377 -) -k1,12051:6630773,13678377:0 -g1,12051:13269833,13678377 -k1,12051:13269833,13678377:0 -h1,12051:15166707,13678377:0,0,0 -k1,12051:32583029,13678377:17416322 -g1,12051:32583029,13678377 -) -(1,12061:6630773,14410091:25952256,404226,9436 -(1,12053:6630773,14410091:0,0,0 -g1,12053:6630773,14410091 -g1,12053:6630773,14410091 -g1,12053:6303093,14410091 -(1,12053:6303093,14410091:0,0,0 -) -g1,12053:6630773,14410091 -) -g1,12061:7579210,14410091 -g1,12061:8211502,14410091 -g1,12061:8843794,14410091 -g1,12061:11372960,14410091 -g1,12061:12637543,14410091 -g1,12061:13269835,14410091 -h1,12061:13585981,14410091:0,0,0 -k1,12061:32583029,14410091:18997048 -g1,12061:32583029,14410091 -) -(1,12061:6630773,15076269:25952256,404226,101187 -h1,12061:6630773,15076269:0,0,0 -g1,12061:7579210,15076269 -g1,12061:7895356,15076269 -g1,12061:8211502,15076269 -g1,12061:10740668,15076269 -g1,12061:13902125,15076269 -g1,12061:17379728,15076269 -h1,12061:19908893,15076269:0,0,0 -k1,12061:32583029,15076269:12674136 -g1,12061:32583029,15076269 -) -(1,12061:6630773,15742447:25952256,410518,6290 -h1,12061:6630773,15742447:0,0,0 -g1,12061:7579210,15742447 -g1,12061:7895356,15742447 -g1,12061:8211502,15742447 -g1,12061:10108377,15742447 -g1,12061:10424523,15742447 -g1,12061:10740669,15742447 -g1,12061:11056815,15742447 -g1,12061:11372961,15742447 -g1,12061:11689107,15742447 -g1,12061:12005253,15742447 -g1,12061:13902128,15742447 -g1,12061:15799003,15742447 -g1,12061:16115149,15742447 -g1,12061:16431295,15742447 -g1,12061:16747441,15742447 -g1,12061:17063587,15742447 -g1,12061:17379733,15742447 -k1,12061:17379733,15742447:0 -h1,12061:18960462,15742447:0,0,0 -k1,12061:32583029,15742447:13622567 -g1,12061:32583029,15742447 -) -(1,12061:6630773,16408625:25952256,404226,107478 -h1,12061:6630773,16408625:0,0,0 -g1,12061:7579210,16408625 -g1,12061:8211502,16408625 -g1,12061:10424522,16408625 -g1,12061:10740668,16408625 -g1,12061:11056814,16408625 -g1,12061:11372960,16408625 -g1,12061:11689106,16408625 -g1,12061:12005252,16408625 -g1,12061:12321398,16408625 -g1,12061:12637544,16408625 -g1,12061:13902127,16408625 -g1,12061:15799001,16408625 -g1,12061:16115147,16408625 -g1,12061:16431293,16408625 -g1,12061:16747439,16408625 -g1,12061:17063585,16408625 -g1,12061:17379731,16408625 -h1,12061:19276605,16408625:0,0,0 -k1,12061:32583029,16408625:13306424 -g1,12061:32583029,16408625 -) -(1,12061:6630773,17074803:25952256,404226,107478 -h1,12061:6630773,17074803:0,0,0 -g1,12061:7579210,17074803 -g1,12061:8211502,17074803 -g1,12061:10424522,17074803 -g1,12061:10740668,17074803 -g1,12061:11056814,17074803 -g1,12061:11372960,17074803 -g1,12061:11689106,17074803 -g1,12061:12005252,17074803 -g1,12061:12321398,17074803 -g1,12061:12637544,17074803 -g1,12061:13902127,17074803 -g1,12061:15799001,17074803 -g1,12061:16115147,17074803 -g1,12061:16431293,17074803 -g1,12061:16747439,17074803 -g1,12061:17063585,17074803 -g1,12061:17379731,17074803 -h1,12061:19276605,17074803:0,0,0 -k1,12061:32583029,17074803:13306424 -g1,12061:32583029,17074803 -) -(1,12061:6630773,17740981:25952256,404226,107478 -h1,12061:6630773,17740981:0,0,0 -g1,12061:7579210,17740981 -g1,12061:8211502,17740981 -g1,12061:10424522,17740981 -g1,12061:10740668,17740981 -g1,12061:11056814,17740981 -g1,12061:11372960,17740981 -g1,12061:11689106,17740981 -g1,12061:12005252,17740981 -g1,12061:12321398,17740981 -g1,12061:12637544,17740981 -g1,12061:13902127,17740981 -g1,12061:15799001,17740981 -g1,12061:16115147,17740981 -g1,12061:16431293,17740981 -g1,12061:16747439,17740981 -g1,12061:17063585,17740981 -g1,12061:17379731,17740981 -h1,12061:19276605,17740981:0,0,0 -k1,12061:32583029,17740981:13306424 -g1,12061:32583029,17740981 -) -(1,12061:6630773,18407159:25952256,404226,9436 -h1,12061:6630773,18407159:0,0,0 -g1,12061:7579210,18407159 -g1,12061:8211502,18407159 -g1,12061:9476085,18407159 -g1,12061:11056814,18407159 -g1,12061:12321397,18407159 -g1,12061:13902126,18407159 -h1,12061:15166709,18407159:0,0,0 -k1,12061:32583029,18407159:17416320 -g1,12061:32583029,18407159 -) -] -) -g1,12062:32583029,18416595 -g1,12062:6630773,18416595 -g1,12062:6630773,18416595 -g1,12062:32583029,18416595 -g1,12062:32583029,18416595 -) -h1,12062:6630773,18613203:0,0,0 -(1,12066:6630773,19754776:25952256,513147,126483 -h1,12065:6630773,19754776:983040,0,0 -k1,12065:8483452,19754776:241804 -k1,12065:11564932,19754776:241805 -(1,12065:11564932,19754776:0,452978,115847 -r1,12125:14385181,19754776:2820249,568825,115847 -k1,12065:11564932,19754776:-2820249 -) -(1,12065:11564932,19754776:2820249,452978,115847 -k1,12065:11564932,19754776:3277 -h1,12065:14381904,19754776:0,411205,112570 -) -k1,12065:14626985,19754776:241804 -k1,12065:15554951,19754776:241804 -k1,12065:17498726,19754776:241805 -k1,12065:20766327,19754776:241804 -k1,12065:21624169,19754776:241804 -k1,12065:23838606,19754776:241804 -k1,12065:26128411,19754776:241805 -k1,12065:29804302,19754776:241804 -k1,12065:32583029,19754776:0 -) -(1,12066:6630773,20596264:25952256,513147,126483 -k1,12065:7588341,20596264:196040 -k1,12065:10810179,20596264:196041 -(1,12065:10810179,20596264:0,452978,115847 -r1,12125:15388987,20596264:4578808,568825,115847 -k1,12065:10810179,20596264:-4578808 -) -(1,12065:10810179,20596264:4578808,452978,115847 -k1,12065:10810179,20596264:3277 -h1,12065:15385710,20596264:0,411205,112570 -) -k1,12065:15758697,20596264:196040 -(1,12065:15758697,20596264:0,452978,115847 -r1,12125:19634081,20596264:3875384,568825,115847 -k1,12065:15758697,20596264:-3875384 -) -(1,12065:15758697,20596264:3875384,452978,115847 -k1,12065:15758697,20596264:3277 -h1,12065:19630804,20596264:0,411205,112570 -) -k1,12065:20003791,20596264:196040 -(1,12065:20003791,20596264:0,452978,115847 -r1,12125:23527463,20596264:3523672,568825,115847 -k1,12065:20003791,20596264:-3523672 -) -(1,12065:20003791,20596264:3523672,452978,115847 -k1,12065:20003791,20596264:3277 -h1,12065:23524186,20596264:0,411205,112570 -) -k1,12065:23897174,20596264:196041 -k1,12065:25284659,20596264:196040 -(1,12065:25284659,20596264:0,452978,115847 -r1,12125:28456619,20596264:3171960,568825,115847 -k1,12065:25284659,20596264:-3171960 -) -(1,12065:25284659,20596264:3171960,452978,115847 -k1,12065:25284659,20596264:3277 -h1,12065:28453342,20596264:0,411205,112570 -) -k1,12065:28652659,20596264:196040 -k1,12065:29500128,20596264:196041 -k1,12065:31900144,20596264:196040 -k1,12065:32583029,20596264:0 -) -(1,12066:6630773,21437752:25952256,513147,126483 -k1,12065:8792169,21437752:296897 -k1,12065:11975926,21437752:296896 -k1,12065:13314845,21437752:296897 -k1,12065:14814983,21437752:296897 -k1,12065:17773297,21437752:296897 -k1,12065:18938545,21437752:296896 -k1,12065:20327927,21437752:296897 -k1,12065:21643909,21437752:296897 -k1,12065:26534224,21437752:296897 -(1,12065:26534224,21437752:0,452978,115847 -r1,12125:29002761,21437752:2468537,568825,115847 -k1,12065:26534224,21437752:-2468537 -) -(1,12065:26534224,21437752:2468537,452978,115847 -k1,12065:26534224,21437752:3277 -h1,12065:28999484,21437752:0,411205,112570 -) -k1,12065:29299657,21437752:296896 -k1,12065:31923737,21437752:296897 -k1,12066:32583029,21437752:0 -) -(1,12066:6630773,22279240:25952256,452978,122846 -(1,12065:6630773,22279240:0,452978,122846 -r1,12125:10857869,22279240:4227096,575824,122846 -k1,12065:6630773,22279240:-4227096 -) -(1,12065:6630773,22279240:4227096,452978,122846 -k1,12065:6630773,22279240:3277 -h1,12065:10854592,22279240:0,411205,112570 -) -k1,12066:32583029,22279240:21551490 -g1,12066:32583029,22279240 -) -v1,12068:6630773,23245504:0,393216,0 -(1,12081:6630773,28188194:25952256,5335906,196608 -g1,12081:6630773,28188194 -g1,12081:6630773,28188194 -g1,12081:6434165,28188194 -(1,12081:6434165,28188194:0,5335906,196608 -r1,12125:32779637,28188194:26345472,5532514,196608 -k1,12081:6434165,28188194:-26345472 -) -(1,12081:6434165,28188194:26345472,5335906,196608 -[1,12081:6630773,28188194:25952256,5139298,0 -(1,12070:6630773,23453122:25952256,404226,101187 -(1,12069:6630773,23453122:0,0,0 -g1,12069:6630773,23453122 -g1,12069:6630773,23453122 -g1,12069:6303093,23453122 -(1,12069:6303093,23453122:0,0,0 -) -g1,12069:6630773,23453122 -) -k1,12070:6630773,23453122:0 -g1,12070:11689104,23453122 -k1,12070:11689104,23453122:0 -h1,12070:18644309,23453122:0,0,0 -k1,12070:32583029,23453122:13938720 -g1,12070:32583029,23453122 -) -(1,12080:6630773,24184836:25952256,404226,9436 -(1,12072:6630773,24184836:0,0,0 -g1,12072:6630773,24184836 -g1,12072:6630773,24184836 -g1,12072:6303093,24184836 -(1,12072:6303093,24184836:0,0,0 -) -g1,12072:6630773,24184836 -) -g1,12080:7579210,24184836 -g1,12080:8211502,24184836 -g1,12080:8843794,24184836 -g1,12080:11372960,24184836 -g1,12080:12637543,24184836 -g1,12080:13269835,24184836 -h1,12080:13585981,24184836:0,0,0 -k1,12080:32583029,24184836:18997048 -g1,12080:32583029,24184836 -) -(1,12080:6630773,24851014:25952256,404226,107478 -h1,12080:6630773,24851014:0,0,0 -g1,12080:7579210,24851014 -g1,12080:7895356,24851014 -g1,12080:8211502,24851014 -g1,12080:12321396,24851014 -g1,12080:16115144,24851014 -h1,12080:18328164,24851014:0,0,0 -k1,12080:32583029,24851014:14254865 -g1,12080:32583029,24851014 -) -(1,12080:6630773,25517192:25952256,410518,6290 -h1,12080:6630773,25517192:0,0,0 -g1,12080:7579210,25517192 -g1,12080:7895356,25517192 -g1,12080:8211502,25517192 -g1,12080:8527648,25517192 -g1,12080:8843794,25517192 -g1,12080:9159940,25517192 -g1,12080:9476086,25517192 -g1,12080:9792232,25517192 -g1,12080:10108378,25517192 -g1,12080:10424524,25517192 -g1,12080:12321399,25517192 -g1,12080:12637545,25517192 -g1,12080:12953691,25517192 -g1,12080:13269837,25517192 -g1,12080:13585983,25517192 -g1,12080:13902129,25517192 -g1,12080:14218275,25517192 -g1,12080:16115150,25517192 -k1,12080:16115150,25517192:0 -h1,12080:17695879,25517192:0,0,0 -k1,12080:32583029,25517192:14887150 -g1,12080:32583029,25517192 -) -(1,12080:6630773,26183370:25952256,388497,9436 -h1,12080:6630773,26183370:0,0,0 -g1,12080:7579210,26183370 -g1,12080:8211502,26183370 -g1,12080:8527648,26183370 -g1,12080:8843794,26183370 -g1,12080:9159940,26183370 -g1,12080:9476086,26183370 -g1,12080:9792232,26183370 -g1,12080:10108378,26183370 -g1,12080:10424524,26183370 -g1,12080:10740670,26183370 -g1,12080:11056816,26183370 -g1,12080:12321399,26183370 -g1,12080:12637545,26183370 -g1,12080:12953691,26183370 -g1,12080:13269837,26183370 -g1,12080:13585983,26183370 -g1,12080:13902129,26183370 -g1,12080:14218275,26183370 -g1,12080:14534421,26183370 -g1,12080:14850567,26183370 -g1,12080:16115150,26183370 -h1,12080:18012024,26183370:0,0,0 -k1,12080:32583029,26183370:14571005 -g1,12080:32583029,26183370 -) -(1,12080:6630773,26849548:25952256,388497,9436 -h1,12080:6630773,26849548:0,0,0 -g1,12080:7579210,26849548 -g1,12080:8211502,26849548 -g1,12080:8527648,26849548 -g1,12080:8843794,26849548 -g1,12080:9159940,26849548 -g1,12080:9476086,26849548 -g1,12080:9792232,26849548 -g1,12080:10108378,26849548 -g1,12080:10424524,26849548 -g1,12080:10740670,26849548 -g1,12080:11056816,26849548 -g1,12080:12321399,26849548 -g1,12080:12637545,26849548 -g1,12080:12953691,26849548 -g1,12080:13269837,26849548 -g1,12080:13585983,26849548 -g1,12080:13902129,26849548 -g1,12080:14218275,26849548 -g1,12080:14534421,26849548 -g1,12080:14850567,26849548 -g1,12080:16115150,26849548 -h1,12080:18012024,26849548:0,0,0 -k1,12080:32583029,26849548:14571005 -g1,12080:32583029,26849548 -) -(1,12080:6630773,27515726:25952256,388497,9436 -h1,12080:6630773,27515726:0,0,0 -g1,12080:7579210,27515726 -g1,12080:8211502,27515726 -g1,12080:8527648,27515726 -g1,12080:8843794,27515726 -g1,12080:9159940,27515726 -g1,12080:9476086,27515726 -g1,12080:9792232,27515726 -g1,12080:10108378,27515726 -g1,12080:10424524,27515726 -g1,12080:10740670,27515726 -g1,12080:11056816,27515726 -g1,12080:12321399,27515726 -g1,12080:12637545,27515726 -g1,12080:12953691,27515726 -g1,12080:13269837,27515726 -g1,12080:13585983,27515726 -g1,12080:13902129,27515726 -g1,12080:14218275,27515726 -g1,12080:14534421,27515726 -g1,12080:14850567,27515726 -g1,12080:16115150,27515726 -h1,12080:18012024,27515726:0,0,0 -k1,12080:32583029,27515726:14571005 -g1,12080:32583029,27515726 -) -(1,12080:6630773,28181904:25952256,404226,6290 -h1,12080:6630773,28181904:0,0,0 -g1,12080:7579210,28181904 -g1,12080:8211502,28181904 -g1,12080:9476085,28181904 -g1,12080:11056814,28181904 -g1,12080:12321397,28181904 -g1,12080:13902126,28181904 -h1,12080:15166709,28181904:0,0,0 -k1,12080:32583029,28181904:17416320 -g1,12080:32583029,28181904 -) -] -) -g1,12081:32583029,28188194 -g1,12081:6630773,28188194 -g1,12081:6630773,28188194 -g1,12081:32583029,28188194 -g1,12081:32583029,28188194 -) -h1,12081:6630773,28384802:0,0,0 -v1,12085:6630773,29651152:0,393216,0 -(1,12098:6630773,34593842:25952256,5335906,196608 -g1,12098:6630773,34593842 -g1,12098:6630773,34593842 -g1,12098:6434165,34593842 -(1,12098:6434165,34593842:0,5335906,196608 -r1,12125:32779637,34593842:26345472,5532514,196608 -k1,12098:6434165,34593842:-26345472 -) -(1,12098:6434165,34593842:26345472,5335906,196608 -[1,12098:6630773,34593842:25952256,5139298,0 -(1,12087:6630773,29858770:25952256,404226,101187 -(1,12086:6630773,29858770:0,0,0 -g1,12086:6630773,29858770 -g1,12086:6630773,29858770 -g1,12086:6303093,29858770 -(1,12086:6303093,29858770:0,0,0 -) -g1,12086:6630773,29858770 -) -k1,12087:6630773,29858770:0 -g1,12087:11689104,29858770 -g1,12087:14534416,29858770 -k1,12087:14534416,29858770:0 -h1,12087:19276601,29858770:0,0,0 -k1,12087:32583029,29858770:13306428 -g1,12087:32583029,29858770 -) -(1,12097:6630773,30590484:25952256,404226,9436 -(1,12089:6630773,30590484:0,0,0 -g1,12089:6630773,30590484 -g1,12089:6630773,30590484 -g1,12089:6303093,30590484 -(1,12089:6303093,30590484:0,0,0 -) -g1,12089:6630773,30590484 -) -g1,12097:7579210,30590484 -g1,12097:8211502,30590484 -g1,12097:8843794,30590484 -g1,12097:11372960,30590484 -g1,12097:12637543,30590484 -g1,12097:13269835,30590484 -h1,12097:13585981,30590484:0,0,0 -k1,12097:32583029,30590484:18997048 -g1,12097:32583029,30590484 -) -(1,12097:6630773,31256662:25952256,404226,107478 -h1,12097:6630773,31256662:0,0,0 -g1,12097:7579210,31256662 -g1,12097:7895356,31256662 -g1,12097:8211502,31256662 -g1,12097:10740668,31256662 -g1,12097:14850562,31256662 -h1,12097:18328164,31256662:0,0,0 -k1,12097:32583029,31256662:14254865 -g1,12097:32583029,31256662 -) -(1,12097:6630773,31922840:25952256,410518,6290 -h1,12097:6630773,31922840:0,0,0 -g1,12097:7579210,31922840 -g1,12097:7895356,31922840 -g1,12097:8211502,31922840 -g1,12097:10108377,31922840 -g1,12097:10424523,31922840 -g1,12097:10740669,31922840 -g1,12097:11056815,31922840 -g1,12097:11372961,31922840 -g1,12097:11689107,31922840 -g1,12097:12005253,31922840 -g1,12097:12321399,31922840 -g1,12097:12637545,31922840 -g1,12097:12953691,31922840 -g1,12097:14850566,31922840 -g1,12097:15166712,31922840 -g1,12097:15482858,31922840 -g1,12097:15799004,31922840 -g1,12097:16115150,31922840 -g1,12097:16431296,31922840 -g1,12097:16747442,31922840 -k1,12097:16747442,31922840:0 -h1,12097:18328171,31922840:0,0,0 -k1,12097:32583029,31922840:14254858 -g1,12097:32583029,31922840 -) -(1,12097:6630773,32589018:25952256,388497,9436 -h1,12097:6630773,32589018:0,0,0 -g1,12097:7579210,32589018 -g1,12097:8211502,32589018 -g1,12097:10424522,32589018 -g1,12097:10740668,32589018 -g1,12097:11056814,32589018 -g1,12097:11372960,32589018 -g1,12097:11689106,32589018 -g1,12097:12005252,32589018 -g1,12097:12321398,32589018 -g1,12097:12637544,32589018 -g1,12097:12953690,32589018 -g1,12097:13269836,32589018 -g1,12097:13585982,32589018 -g1,12097:14850565,32589018 -g1,12097:15166711,32589018 -g1,12097:15482857,32589018 -g1,12097:15799003,32589018 -g1,12097:16115149,32589018 -g1,12097:16431295,32589018 -g1,12097:16747441,32589018 -g1,12097:17063587,32589018 -g1,12097:17379733,32589018 -h1,12097:18328170,32589018:0,0,0 -k1,12097:32583029,32589018:14254859 -g1,12097:32583029,32589018 -) -(1,12097:6630773,33255196:25952256,388497,9436 -h1,12097:6630773,33255196:0,0,0 -g1,12097:7579210,33255196 -g1,12097:8211502,33255196 -g1,12097:10424522,33255196 -g1,12097:10740668,33255196 -g1,12097:11056814,33255196 -g1,12097:11372960,33255196 -g1,12097:11689106,33255196 -g1,12097:12005252,33255196 -g1,12097:12321398,33255196 -g1,12097:12637544,33255196 -g1,12097:12953690,33255196 -g1,12097:13269836,33255196 -g1,12097:13585982,33255196 -g1,12097:14850565,33255196 -g1,12097:15166711,33255196 -g1,12097:15482857,33255196 -g1,12097:15799003,33255196 -g1,12097:16115149,33255196 -g1,12097:16431295,33255196 -g1,12097:16747441,33255196 -g1,12097:17063587,33255196 -g1,12097:17379733,33255196 -h1,12097:17695879,33255196:0,0,0 -k1,12097:32583029,33255196:14887150 -g1,12097:32583029,33255196 -) -(1,12097:6630773,33921374:25952256,388497,9436 -h1,12097:6630773,33921374:0,0,0 -g1,12097:7579210,33921374 -g1,12097:8211502,33921374 -g1,12097:10424522,33921374 -g1,12097:10740668,33921374 -g1,12097:11056814,33921374 -g1,12097:11372960,33921374 -g1,12097:11689106,33921374 -g1,12097:12005252,33921374 -g1,12097:12321398,33921374 -g1,12097:12637544,33921374 -g1,12097:12953690,33921374 -g1,12097:13269836,33921374 -g1,12097:13585982,33921374 -g1,12097:14850565,33921374 -g1,12097:15166711,33921374 -g1,12097:15482857,33921374 -g1,12097:15799003,33921374 -g1,12097:16115149,33921374 -g1,12097:16431295,33921374 -g1,12097:16747441,33921374 -g1,12097:17063587,33921374 -g1,12097:17379733,33921374 -h1,12097:18328170,33921374:0,0,0 -k1,12097:32583029,33921374:14254859 -g1,12097:32583029,33921374 -) -(1,12097:6630773,34587552:25952256,404226,6290 -h1,12097:6630773,34587552:0,0,0 -g1,12097:7579210,34587552 -g1,12097:8211502,34587552 -g1,12097:9476085,34587552 -g1,12097:11056814,34587552 -g1,12097:12321397,34587552 -g1,12097:13902126,34587552 -h1,12097:15166709,34587552:0,0,0 -k1,12097:32583029,34587552:17416320 -g1,12097:32583029,34587552 -) -] -) -g1,12098:32583029,34593842 -g1,12098:6630773,34593842 -g1,12098:6630773,34593842 -g1,12098:32583029,34593842 -g1,12098:32583029,34593842 -) -h1,12098:6630773,34790450:0,0,0 -(1,12102:6630773,35932023:25952256,505283,126483 -h1,12101:6630773,35932023:983040,0,0 -k1,12101:10676951,35932023:273270 -(1,12101:10676951,35932023:0,452978,115847 -r1,12125:13497200,35932023:2820249,568825,115847 -k1,12101:10676951,35932023:-2820249 -) -(1,12101:10676951,35932023:2820249,452978,115847 -k1,12101:10676951,35932023:3277 -h1,12101:13493923,35932023:0,411205,112570 -) -k1,12101:13770471,35932023:273271 -k1,12101:15148023,35932023:273270 -k1,12101:16169060,35932023:273271 -k1,12101:17955556,35932023:273270 -k1,12101:18880254,35932023:273270 -k1,12101:21527239,35932023:273271 -k1,12101:24687370,35932023:273270 -k1,12101:27565697,35932023:273271 -k1,12101:29272895,35932023:273270 -k1,12101:29960934,35932023:273196 -k1,12101:32583029,35932023:0 -) -(1,12102:6630773,36773511:25952256,513147,115847 -k1,12101:7925646,36773511:275788 -k1,12101:9293918,36773511:275787 -k1,12101:10228998,36773511:275788 -k1,12101:11971482,36773511:275788 -(1,12101:11971482,36773511:0,452978,115847 -r1,12125:14440019,36773511:2468537,568825,115847 -k1,12101:11971482,36773511:-2468537 -) -(1,12101:11971482,36773511:2468537,452978,115847 -k1,12101:11971482,36773511:3277 -h1,12101:14436742,36773511:0,411205,112570 -) -k1,12101:14715807,36773511:275788 -k1,12101:16183039,36773511:275787 -(1,12101:16183039,36773511:0,452978,115847 -r1,12125:19354999,36773511:3171960,568825,115847 -k1,12101:16183039,36773511:-3171960 -) -(1,12101:16183039,36773511:3171960,452978,115847 -k1,12101:16183039,36773511:3277 -h1,12101:19351722,36773511:0,411205,112570 -) -k1,12101:19630787,36773511:275788 -k1,12101:21098020,36773511:275788 -k1,12101:22170726,36773511:275788 -k1,12101:23580286,36773511:275787 -k1,12101:25352261,36773511:275788 -k1,12101:26279477,36773511:275788 -k1,12101:28536418,36773511:275788 -k1,12101:30095400,36773511:275787 -k1,12101:31562633,36773511:275788 -k1,12101:32583029,36773511:0 -) -(1,12102:6630773,37614999:25952256,513147,134348 -k1,12101:9223478,37614999:350718 -k1,12101:10392086,37614999:350719 -k1,12101:12818329,37614999:350718 -k1,12101:15211149,37614999:350718 -k1,12101:16580953,37614999:350719 -k1,12101:19015716,37614999:350718 -k1,12101:20314085,37614999:350718 -k1,12101:22116426,37614999:350719 -k1,12101:24850033,37614999:350718 -k1,12101:26938766,37614999:350718 -k1,12101:27940913,37614999:350719 -k1,12101:29039397,37614999:350718 -k1,12101:32051532,37614999:350718 -k1,12102:32583029,37614999:0 -) -(1,12102:6630773,38456487:25952256,505283,134348 -(1,12101:6630773,38456487:0,452978,115847 -r1,12125:14726699,38456487:8095926,568825,115847 -k1,12101:6630773,38456487:-8095926 -) -(1,12101:6630773,38456487:8095926,452978,115847 -g1,12101:8392609,38456487 -g1,12101:10502880,38456487 -g1,12101:11206304,38456487 -g1,12101:12964863,38456487 -h1,12101:14723422,38456487:0,411205,112570 -) -k1,12101:15173988,38456487:273619 -k1,12101:16644293,38456487:273618 -k1,12101:18090351,38456487:273619 -k1,12101:20432285,38456487:273618 -k1,12101:21810186,38456487:273619 -k1,12101:22831570,38456487:273618 -k1,12101:24799950,38456487:273619 -k1,12101:26929548,38456487:273618 -k1,12101:27889329,38456487:273619 -k1,12101:29554932,38456487:273618 -k1,12101:31896867,38456487:273619 -k1,12101:32583029,38456487:0 -) -(1,12102:6630773,39297975:25952256,505283,134348 -g1,12101:8698433,39297975 -g1,12101:9580547,39297975 -g1,12101:10465938,39297975 -g1,12101:13639846,39297975 -k1,12102:32583029,39297975:16573401 -g1,12102:32583029,39297975 -) -v1,12104:6630773,40264239:0,393216,0 -(1,12117:6630773,45210075:25952256,5339052,196608 -g1,12117:6630773,45210075 -g1,12117:6630773,45210075 -g1,12117:6434165,45210075 -(1,12117:6434165,45210075:0,5339052,196608 -r1,12125:32779637,45210075:26345472,5535660,196608 -k1,12117:6434165,45210075:-26345472 -) -(1,12117:6434165,45210075:26345472,5339052,196608 -[1,12117:6630773,45210075:25952256,5142444,0 -(1,12106:6630773,40471857:25952256,404226,107478 -(1,12105:6630773,40471857:0,0,0 -g1,12105:6630773,40471857 -g1,12105:6630773,40471857 -g1,12105:6303093,40471857 -(1,12105:6303093,40471857:0,0,0 -) -g1,12105:6630773,40471857 -) -k1,12106:6630773,40471857:0 -g1,12106:13269833,40471857 -g1,12106:14534416,40471857 -g1,12106:15166708,40471857 -h1,12106:18328165,40471857:0,0,0 -k1,12106:32583029,40471857:14254864 -g1,12106:32583029,40471857 -) -(1,12116:6630773,41203571:25952256,404226,9436 -(1,12108:6630773,41203571:0,0,0 -g1,12108:6630773,41203571 -g1,12108:6630773,41203571 -g1,12108:6303093,41203571 -(1,12108:6303093,41203571:0,0,0 -) -g1,12108:6630773,41203571 -) -g1,12116:7579210,41203571 -g1,12116:8211502,41203571 -g1,12116:8843794,41203571 -g1,12116:11372960,41203571 -g1,12116:12637543,41203571 -g1,12116:13269835,41203571 -h1,12116:13585981,41203571:0,0,0 -k1,12116:32583029,41203571:18997048 -g1,12116:32583029,41203571 -) -(1,12116:6630773,41869749:25952256,404226,101187 -h1,12116:6630773,41869749:0,0,0 -g1,12116:7579210,41869749 -g1,12116:7895356,41869749 -g1,12116:8211502,41869749 -g1,12116:10740668,41869749 -g1,12116:12321397,41869749 -g1,12116:12637543,41869749 -g1,12116:12953689,41869749 -g1,12116:13269835,41869749 -g1,12116:13585981,41869749 -g1,12116:13902127,41869749 -g1,12116:14218273,41869749 -g1,12116:14534419,41869749 -g1,12116:14850565,41869749 -g1,12116:15166711,41869749 -g1,12116:15482857,41869749 -g1,12116:16747440,41869749 -g1,12116:20225043,41869749 -h1,12116:22754208,41869749:0,0,0 -k1,12116:32583029,41869749:9828821 -g1,12116:32583029,41869749 -) -(1,12116:6630773,42535927:25952256,410518,6290 -h1,12116:6630773,42535927:0,0,0 -g1,12116:7579210,42535927 -g1,12116:7895356,42535927 -g1,12116:8211502,42535927 -g1,12116:10108377,42535927 -g1,12116:10424523,42535927 -g1,12116:10740669,42535927 -g1,12116:12637544,42535927 -g1,12116:12953690,42535927 -g1,12116:13269836,42535927 -g1,12116:13585982,42535927 -g1,12116:13902128,42535927 -g1,12116:14218274,42535927 -g1,12116:14534420,42535927 -g1,12116:14850566,42535927 -g1,12116:16747441,42535927 -g1,12116:18644316,42535927 -g1,12116:18960462,42535927 -g1,12116:19276608,42535927 -g1,12116:19592754,42535927 -g1,12116:19908900,42535927 -g1,12116:20225046,42535927 -k1,12116:20225046,42535927:0 -h1,12116:21805775,42535927:0,0,0 -k1,12116:32583029,42535927:10777254 -g1,12116:32583029,42535927 -) -(1,12116:6630773,43202105:25952256,404226,107478 -h1,12116:6630773,43202105:0,0,0 -g1,12116:7579210,43202105 -g1,12116:8211502,43202105 -g1,12116:10424522,43202105 -g1,12116:10740668,43202105 -g1,12116:14850562,43202105 -g1,12116:15166708,43202105 -g1,12116:15482854,43202105 -g1,12116:16747437,43202105 -g1,12116:18644311,43202105 -g1,12116:18960457,43202105 -g1,12116:19276603,43202105 -g1,12116:19592749,43202105 -g1,12116:19908895,43202105 -g1,12116:20225041,43202105 -h1,12116:22121915,43202105:0,0,0 -k1,12116:32583029,43202105:10461114 -g1,12116:32583029,43202105 -) -(1,12116:6630773,43868283:25952256,404226,107478 -h1,12116:6630773,43868283:0,0,0 -g1,12116:7579210,43868283 -g1,12116:8211502,43868283 -g1,12116:10424522,43868283 -g1,12116:10740668,43868283 -g1,12116:14850562,43868283 -g1,12116:15166708,43868283 -g1,12116:15482854,43868283 -g1,12116:16747437,43868283 -g1,12116:18644311,43868283 -g1,12116:18960457,43868283 -g1,12116:19276603,43868283 -g1,12116:19592749,43868283 -g1,12116:19908895,43868283 -g1,12116:20225041,43868283 -h1,12116:22121915,43868283:0,0,0 -k1,12116:32583029,43868283:10461114 -g1,12116:32583029,43868283 -) -(1,12116:6630773,44534461:25952256,404226,107478 -h1,12116:6630773,44534461:0,0,0 -g1,12116:7579210,44534461 -g1,12116:8211502,44534461 -g1,12116:10424522,44534461 -g1,12116:10740668,44534461 -g1,12116:14850562,44534461 -g1,12116:15166708,44534461 -g1,12116:15482854,44534461 -g1,12116:16747437,44534461 -g1,12116:18644311,44534461 -g1,12116:18960457,44534461 -g1,12116:19276603,44534461 -g1,12116:19592749,44534461 -g1,12116:19908895,44534461 -g1,12116:20225041,44534461 -h1,12116:22121915,44534461:0,0,0 -k1,12116:32583029,44534461:10461114 -g1,12116:32583029,44534461 -) -(1,12116:6630773,45200639:25952256,404226,9436 -h1,12116:6630773,45200639:0,0,0 -g1,12116:7579210,45200639 -g1,12116:8211502,45200639 -g1,12116:9476085,45200639 -g1,12116:11056814,45200639 -g1,12116:12321397,45200639 -g1,12116:13902126,45200639 -h1,12116:15166709,45200639:0,0,0 -k1,12116:32583029,45200639:17416320 -g1,12116:32583029,45200639 -) -] -) -g1,12117:32583029,45210075 -g1,12117:6630773,45210075 -g1,12117:6630773,45210075 -g1,12117:32583029,45210075 -g1,12117:32583029,45210075 -) -h1,12117:6630773,45406683:0,0,0 -] -(1,12125:32583029,45706769:0,0,0 -g1,12125:32583029,45706769 -) -) -] -(1,12125:6630773,47279633:25952256,0,0 -h1,12125:6630773,47279633:25952256,0,0 -) -] -(1,12125:4262630,4025873:0,0,0 -[1,12125:-473656,4025873:0,0,0 -(1,12125:-473656,-710413:0,0,0 -(1,12125:-473656,-710413:0,0,0 -g1,12125:-473656,-710413 -) -g1,12125:-473656,-710413 -) -] -) -] -!35049 -}226 -Input:1705:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1706:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1707:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1708:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1709:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1710:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1711:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1712:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1713:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1714:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1715:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1716:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1717:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1718:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1719:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1392 -{227 -[1,12274:4262630,47279633:28320399,43253760,0 -(1,12274:4262630,4025873:0,0,0 -[1,12274:-473656,4025873:0,0,0 -(1,12274:-473656,-710413:0,0,0 -(1,12274:-473656,-644877:0,0,0 -k1,12274:-473656,-644877:-65536 -) -(1,12274:-473656,4736287:0,0,0 -k1,12274:-473656,4736287:5209943 -) -g1,12274:-473656,-710413 -) -] -) -[1,12274:6630773,47279633:25952256,43253760,0 -[1,12274:6630773,4812305:25952256,786432,0 -(1,12274:6630773,4812305:25952256,513147,134348 -(1,12274:6630773,4812305:25952256,513147,134348 -g1,12274:3078558,4812305 -[1,12274:3078558,4812305:0,0,0 -(1,12274:3078558,2439708:0,1703936,0 -k1,12274:1358238,2439708:-1720320 -(1,11088:1358238,2439708:1720320,1703936,0 -(1,11088:1358238,2439708:1179648,16384,0 -r1,12274:2537886,2439708:1179648,16384,0 -) -g1,11088:3062174,2439708 -(1,11088:3062174,2439708:16384,1703936,0 -[1,11088:3062174,2439708:25952256,1703936,0 -(1,11088:3062174,1915420:25952256,1179648,0 -(1,11088:3062174,1915420:16384,1179648,0 -r1,12274:3078558,1915420:16384,1179648,0 -) -k1,11088:29014430,1915420:25935872 -g1,11088:29014430,1915420 -) -] -) -) -) -] -[1,12274:3078558,4812305:0,0,0 -(1,12274:3078558,2439708:0,1703936,0 -g1,12274:29030814,2439708 -g1,12274:36135244,2439708 -(1,11088:36135244,2439708:1720320,1703936,0 -(1,11088:36135244,2439708:16384,1703936,0 -[1,11088:36135244,2439708:25952256,1703936,0 -(1,11088:36135244,1915420:25952256,1179648,0 -(1,11088:36135244,1915420:16384,1179648,0 -r1,12274:36151628,1915420:16384,1179648,0 -) -k1,11088:62087500,1915420:25935872 -g1,11088:62087500,1915420 -) -] -) -g1,11088:36675916,2439708 -(1,11088:36675916,2439708:1179648,16384,0 -r1,12274:37855564,2439708:1179648,16384,0 -) -) -k1,12274:3078556,2439708:-34777008 -) -] -[1,12274:3078558,4812305:0,0,0 -(1,12274:3078558,49800853:0,16384,2228224 -k1,12274:1358238,49800853:-1720320 -(1,11088:1358238,49800853:1720320,16384,2228224 -(1,11088:1358238,49800853:1179648,16384,0 -r1,12274:2537886,49800853:1179648,16384,0 -) -g1,11088:3062174,49800853 -(1,11088:3062174,52029077:16384,1703936,0 -[1,11088:3062174,52029077:25952256,1703936,0 -(1,11088:3062174,51504789:25952256,1179648,0 -(1,11088:3062174,51504789:16384,1179648,0 -r1,12274:3078558,51504789:16384,1179648,0 -) -k1,11088:29014430,51504789:25935872 -g1,11088:29014430,51504789 -) -] -) -) -) -] -[1,12274:3078558,4812305:0,0,0 -(1,12274:3078558,49800853:0,16384,2228224 -g1,12274:29030814,49800853 -g1,12274:36135244,49800853 -(1,11088:36135244,49800853:1720320,16384,2228224 -(1,11088:36135244,52029077:16384,1703936,0 -[1,11088:36135244,52029077:25952256,1703936,0 -(1,11088:36135244,51504789:25952256,1179648,0 -(1,11088:36135244,51504789:16384,1179648,0 -r1,12274:36151628,51504789:16384,1179648,0 -) -k1,11088:62087500,51504789:25935872 -g1,11088:62087500,51504789 -) -] -) -g1,11088:36675916,49800853 -(1,11088:36675916,49800853:1179648,16384,0 -r1,12274:37855564,49800853:1179648,16384,0 -) -) -k1,12274:3078556,49800853:-34777008 -) -] -g1,12274:6630773,4812305 -k1,12274:25241686,4812305:17415536 -g1,12274:26807341,4812305 -g1,12274:30339731,4812305 -g1,12274:31154998,4812305 -) -) -] -[1,12274:6630773,45706769:25952256,40108032,0 -(1,12274:6630773,45706769:25952256,40108032,0 -(1,12274:6630773,45706769:0,0,0 -g1,12274:6630773,45706769 -) -[1,12274:6630773,45706769:25952256,40108032,0 -(1,12121:6630773,6254097:25952256,555811,139132 -(1,12121:6630773,6254097:2450326,534184,12975 -g1,12121:6630773,6254097 -g1,12121:9081099,6254097 -) -g1,12121:13428102,6254097 -k1,12121:32583029,6254097:13965917 -g1,12121:32583029,6254097 -) -(1,12125:6630773,7488801:25952256,513147,134348 -k1,12124:9444293,7488801:209119 -k1,12124:12862711,7488801:209120 -k1,12124:16146124,7488801:209119 -k1,12124:16886740,7488801:209119 -k1,12124:17747288,7488801:209120 -k1,12124:21524187,7488801:209119 -k1,12124:24917046,7488801:209120 -k1,12124:25887693,7488801:209119 -k1,12124:28319793,7488801:209119 -k1,12124:29188205,7488801:209120 -k1,12124:31105192,7488801:209119 -k1,12125:32583029,7488801:0 -) -(1,12125:6630773,8330289:25952256,513147,134348 -k1,12124:8347395,8330289:166040 -k1,12124:9164863,8330289:166040 -k1,12124:10764831,8330289:166040 -k1,12124:11519384,8330289:166040 -k1,12124:12704509,8330289:166040 -k1,12124:15773139,8330289:166040 -k1,12124:16598471,8330289:166040 -k1,12124:18153875,8330289:166041 -k1,12124:22749493,8330289:166040 -k1,12124:24660101,8330289:166040 -k1,12124:26029382,8330289:166040 -k1,12124:29269716,8330289:166040 -k1,12124:30051794,8330289:166040 -k1,12124:31563944,8330289:166040 -k1,12124:32583029,8330289:0 -) -(1,12125:6630773,9171777:25952256,513147,134348 -k1,12124:8967132,9171777:154665 -k1,12124:9781088,9171777:154664 -k1,12124:10954838,9171777:154665 -k1,12124:14166102,9171777:154665 -k1,12124:15512212,9171777:154665 -k1,12124:16685961,9171777:154664 -k1,12124:20312068,9171777:154665 -k1,12124:21126025,9171777:154665 -k1,12124:24962503,9171777:154665 -k1,12124:26498011,9171777:154664 -k1,12124:29739422,9171777:154665 -k1,12124:30913172,9171777:154665 -k1,12124:32583029,9171777:0 -) -(1,12125:6630773,10013265:25952256,505283,134348 -k1,12124:9145866,10013265:156452 -k1,12124:9760415,10013265:156452 -k1,12124:11567064,10013265:156452 -k1,12124:13524445,10013265:156452 -k1,12124:18654424,10013265:156452 -k1,12124:20508915,10013265:156453 -k1,12124:22400760,10013265:156452 -k1,12124:24277532,10013265:156452 -k1,12124:27615102,10013265:156452 -k1,12124:28422982,10013265:156452 -k1,12124:29598519,10013265:156452 -k1,12124:32583029,10013265:0 -) -(1,12125:6630773,10854753:25952256,513147,122846 -k1,12124:7514786,10854753:224721 -k1,12124:9173436,10854753:224722 -k1,12124:9812974,10854753:224695 -(1,12124:9812974,10854753:0,452978,122846 -r1,12274:13688358,10854753:3875384,575824,122846 -k1,12124:9812974,10854753:-3875384 -) -(1,12124:9812974,10854753:3875384,452978,122846 -k1,12124:9812974,10854753:3277 -h1,12124:13685081,10854753:0,411205,112570 -) -k1,12124:14086750,10854753:224722 -k1,12124:15502916,10854753:224721 -k1,12124:16185735,10854753:224722 -k1,12124:17696272,10854753:224721 -k1,12124:19967027,10854753:224721 -k1,12124:20649846,10854753:224722 -k1,12124:22744965,10854753:224721 -k1,12124:23621114,10854753:224721 -k1,12124:27413616,10854753:224722 -k1,12124:29869838,10854753:224721 -k1,12124:32583029,10854753:0 -) -(1,12125:6630773,11696241:25952256,505283,134348 -g1,12124:7446040,11696241 -g1,12124:8001129,11696241 -g1,12124:10073377,11696241 -k1,12125:32583029,11696241:19261688 -g1,12125:32583029,11696241 -) -v1,12127:6630773,13062017:0,393216,0 -(1,12128:6630773,19427166:25952256,6758365,616038 -g1,12128:6630773,19427166 -(1,12128:6630773,19427166:25952256,6758365,616038 -(1,12128:6630773,20043204:25952256,7374403,0 -[1,12128:6630773,20043204:25952256,7374403,0 -(1,12128:6630773,20016990:25952256,7321975,0 -r1,12274:6656987,20016990:26214,7321975,0 -[1,12128:6656987,20016990:25899828,7321975,0 -(1,12128:6656987,19427166:25899828,6142327,0 -[1,12128:7246811,19427166:24720180,6142327,0 -(1,12128:7246811,14370375:24720180,1085536,298548 -(1,12127:7246811,14370375:0,1085536,298548 -r1,12274:8753226,14370375:1506415,1384084,298548 -k1,12127:7246811,14370375:-1506415 -) -(1,12127:7246811,14370375:1506415,1085536,298548 -) -k1,12127:8901449,14370375:148223 -k1,12127:9519566,14370375:148224 -k1,12127:10199286,14370375:148223 -k1,12127:13556808,14370375:148224 -k1,12127:14356459,14370375:148223 -k1,12127:15252449,14370375:148224 -k1,12127:17269103,14370375:148223 -k1,12127:18701832,14370375:148223 -k1,12127:21732985,14370375:148224 -k1,12127:22412705,14370375:148223 -k1,12127:25928824,14370375:148224 -k1,12127:27268492,14370375:148223 -k1,12127:28753650,14370375:148224 -k1,12127:30187689,14370375:148223 -k1,12127:31966991,14370375:0 -) -(1,12128:7246811,15211863:24720180,513147,126483 -k1,12127:9176759,15211863:227978 -k1,12127:12809332,15211863:227978 -k1,12127:13846680,15211863:227978 -k1,12127:15093742,15211863:227977 -k1,12127:16975193,15211863:227978 -k1,12127:18592534,15211863:227978 -k1,12127:20696808,15211863:227978 -k1,12127:21607671,15211863:227978 -k1,12127:23647064,15211863:227978 -k1,12127:24341003,15211863:227978 -k1,12127:25027078,15211863:227978 -k1,12127:25786552,15211863:227977 -k1,12127:27825945,15211863:227978 -k1,12127:28736808,15211863:227978 -k1,12127:30775546,15211863:227978 -k1,12127:31966991,15211863:0 -) -(1,12128:7246811,16053351:24720180,513147,134348 -k1,12127:9813365,16053351:243958 -k1,12127:13045764,16053351:243957 -k1,12127:13821219,16053351:243958 -k1,12127:16723972,16053351:243957 -k1,12127:17619358,16053351:243958 -k1,12127:19574461,16053351:243958 -k1,12127:21889356,16053351:243957 -k1,12127:23080965,16053351:243958 -k1,12127:24113320,16053351:243957 -k1,12127:25656857,16053351:243958 -k1,12127:28001898,16053351:243957 -k1,12127:29437301,16053351:243958 -k1,12127:31966991,16053351:0 -) -(1,12128:7246811,16894839:24720180,513147,134348 -k1,12127:8107462,16894839:201359 -k1,12127:9512063,16894839:201360 -k1,12127:10817704,16894839:201359 -k1,12127:12348133,16894839:201359 -k1,12127:13200921,16894839:201360 -k1,12127:16622719,16894839:201359 -k1,12127:18015523,16894839:201359 -k1,12127:21481231,16894839:201360 -k1,12127:23855764,16894839:201359 -k1,12127:25624744,16894839:201359 -k1,12127:29801518,16894839:201360 -k1,12127:30900720,16894839:201359 -k1,12127:31966991,16894839:0 -) -(1,12128:7246811,17736327:24720180,513147,134348 -k1,12127:8899356,17736327:261871 -k1,12127:11821988,17736327:261870 -k1,12127:14225576,17736327:261871 -k1,12127:15170332,17736327:261871 -k1,12127:16821565,17736327:261870 -k1,12127:19463704,17736327:261871 -k1,12127:20917020,17736327:261871 -k1,12127:23308155,17736327:261870 -k1,12127:25285759,17736327:261871 -k1,12127:26928474,17736327:261871 -k1,12127:28474850,17736327:261870 -k1,12127:30775546,17736327:261871 -k1,12127:31966991,17736327:0 -) -(1,12128:7246811,18577815:24720180,513147,134348 -k1,12127:10162132,18577815:252593 -k1,12127:11027487,18577815:252593 -k1,12127:12299166,18577815:252594 -k1,12127:14090544,18577815:252593 -k1,12127:15534582,18577815:252593 -k1,12127:16806260,18577815:252593 -k1,12127:17718146,18577815:252594 -k1,12127:18326599,18577815:252593 -k1,12127:20142881,18577815:252593 -k1,12127:21387034,18577815:252593 -k1,12127:22705898,18577815:252593 -k1,12127:25792924,18577815:252594 -k1,12127:26807045,18577815:252593 -k1,12127:28795031,18577815:252593 -(1,12127:28795031,18577815:0,452978,122846 -r1,12274:31966991,18577815:3171960,575824,122846 -k1,12127:28795031,18577815:-3171960 -) -(1,12127:28795031,18577815:3171960,452978,122846 -k1,12127:28795031,18577815:3277 -h1,12127:31963714,18577815:0,411205,112570 -) -k1,12127:31966991,18577815:0 -) -(1,12128:7246811,19419303:24720180,505283,7863 -g1,12127:9144078,19419303 -k1,12128:31966992,19419303:20350896 -g1,12128:31966992,19419303 -) -] -) -] -r1,12274:32583029,20016990:26214,7321975,0 -) -] -) -) -g1,12128:32583029,19427166 -) -h1,12128:6630773,20043204:0,0,0 -(1,12131:6630773,21408980:25952256,513147,134348 -h1,12130:6630773,21408980:983040,0,0 -k1,12130:8980732,21408980:170232 -k1,12130:10457097,21408980:170232 -k1,12130:11982614,21408980:170232 -k1,12130:12684343,21408980:170232 -k1,12130:13506003,21408980:170232 -k1,12130:14768720,21408980:170232 -(1,12130:14768720,21408980:0,452978,122846 -r1,12274:18292392,21408980:3523672,575824,122846 -k1,12130:14768720,21408980:-3523672 -) -(1,12130:14768720,21408980:3523672,452978,122846 -k1,12130:14768720,21408980:3277 -h1,12130:18289115,21408980:0,411205,112570 -) -k1,12130:18462624,21408980:170232 -k1,12130:19284284,21408980:170232 -k1,12130:21041798,21408980:170232 -k1,12130:21567890,21408980:170232 -k1,12130:23549537,21408980:170232 -k1,12130:25113720,21408980:170232 -k1,12130:26303037,21408980:170232 -k1,12130:29529868,21408980:170232 -k1,12130:30653649,21408980:170232 -k1,12130:32583029,21408980:0 -) -(1,12131:6630773,22250468:25952256,505283,134348 -k1,12130:7205960,22250468:219327 -k1,12130:9157404,22250468:219327 -k1,12130:10568176,22250468:219327 -k1,12130:12221431,22250468:219327 -k1,12130:14833477,22250468:219327 -k1,12130:15510901,22250468:219327 -k1,12130:16997694,22250468:219327 -k1,12130:17572882,22250468:219328 -k1,12130:20411028,22250468:219327 -k1,12130:22536142,22250468:219327 -k1,12130:24360446,22250468:219327 -k1,12130:25448125,22250468:219327 -k1,12130:27142667,22250468:219327 -k1,12130:27717854,22250468:219327 -k1,12130:30597943,22250468:219327 -k1,12130:32583029,22250468:0 -) -(1,12131:6630773,23091956:25952256,513147,134348 -k1,12130:9581361,23091956:255092 -(1,12130:9581361,23091956:0,452978,115847 -r1,12274:13456745,23091956:3875384,568825,115847 -k1,12130:9581361,23091956:-3875384 -) -(1,12130:9581361,23091956:3875384,452978,115847 -k1,12130:9581361,23091956:3277 -h1,12130:13453468,23091956:0,411205,112570 -) -k1,12130:13711836,23091956:255091 -k1,12130:15099390,23091956:255092 -k1,12130:18445815,23091956:255092 -k1,12130:19719992,23091956:255092 -k1,12130:22858012,23091956:255091 -k1,12130:24304549,23091956:255092 -k1,12130:25652126,23091956:255092 -k1,12130:26365315,23091956:255092 -k1,12130:28318444,23091956:255091 -k1,12130:29592621,23091956:255092 -k1,12130:32583029,23091956:0 -) -(1,12131:6630773,23933444:25952256,505283,7863 -g1,12130:8840647,23933444 -g1,12130:10031436,23933444 -k1,12131:32583029,23933444:19148964 -g1,12131:32583029,23933444 -) -v1,12133:6630773,25123910:0,393216,0 -(1,12150:6630773,32734458:25952256,8003764,196608 -g1,12150:6630773,32734458 -g1,12150:6630773,32734458 -g1,12150:6434165,32734458 -(1,12150:6434165,32734458:0,8003764,196608 -r1,12274:32779637,32734458:26345472,8200372,196608 -k1,12150:6434165,32734458:-26345472 -) -(1,12150:6434165,32734458:26345472,8003764,196608 -[1,12150:6630773,32734458:25952256,7807156,0 -(1,12135:6630773,25331528:25952256,404226,101187 -(1,12134:6630773,25331528:0,0,0 -g1,12134:6630773,25331528 -g1,12134:6630773,25331528 -g1,12134:6303093,25331528 -(1,12134:6303093,25331528:0,0,0 -) -g1,12134:6630773,25331528 -) -k1,12135:6630773,25331528:0 -g1,12135:11372959,25331528 -g1,12135:12005251,25331528 -g1,12135:13585981,25331528 -g1,12135:16115147,25331528 -g1,12135:16747439,25331528 -g1,12135:22438063,25331528 -g1,12135:23702646,25331528 -k1,12135:23702646,25331528:0 -h1,12135:24967228,25331528:0,0,0 -k1,12135:32583029,25331528:7615801 -g1,12135:32583029,25331528 -) -(1,12136:6630773,25997706:25952256,404226,107478 -h1,12136:6630773,25997706:0,0,0 -g1,12136:6946919,25997706 -g1,12136:7263065,25997706 -g1,12136:11056813,25997706 -g1,12136:13902124,25997706 -k1,12136:13902124,25997706:0 -h1,12136:15166706,25997706:0,0,0 -k1,12136:32583030,25997706:17416324 -g1,12136:32583030,25997706 -) -(1,12137:6630773,26663884:25952256,404226,82312 -h1,12137:6630773,26663884:0,0,0 -g1,12137:6946919,26663884 -g1,12137:7263065,26663884 -k1,12137:7263065,26663884:0 -h1,12137:11056813,26663884:0,0,0 -k1,12137:32583029,26663884:21526216 -g1,12137:32583029,26663884 -) -(1,12138:6630773,27330062:25952256,404226,82312 -h1,12138:6630773,27330062:0,0,0 -g1,12138:6946919,27330062 -g1,12138:7263065,27330062 -g1,12138:7579211,27330062 -g1,12138:7895357,27330062 -g1,12138:8211503,27330062 -g1,12138:8527649,27330062 -g1,12138:8843795,27330062 -g1,12138:9159941,27330062 -g1,12138:9476087,27330062 -g1,12138:9792233,27330062 -g1,12138:10108379,27330062 -g1,12138:10424525,27330062 -g1,12138:14534419,27330062 -g1,12138:15166711,27330062 -k1,12138:15166711,27330062:0 -h1,12138:19592751,27330062:0,0,0 -k1,12138:32583029,27330062:12990278 -g1,12138:32583029,27330062 -) -(1,12139:6630773,27996240:25952256,404226,82312 -h1,12139:6630773,27996240:0,0,0 -g1,12139:6946919,27996240 -g1,12139:7263065,27996240 -g1,12139:7579211,27996240 -g1,12139:7895357,27996240 -g1,12139:8211503,27996240 -g1,12139:8527649,27996240 -g1,12139:8843795,27996240 -g1,12139:9159941,27996240 -g1,12139:9476087,27996240 -g1,12139:9792233,27996240 -g1,12139:10108379,27996240 -g1,12139:10424525,27996240 -g1,12139:15166711,27996240 -g1,12139:15799003,27996240 -k1,12139:15799003,27996240:0 -h1,12139:20857334,27996240:0,0,0 -k1,12139:32583029,27996240:11725695 -g1,12139:32583029,27996240 -) -(1,12140:6630773,28662418:25952256,404226,76021 -h1,12140:6630773,28662418:0,0,0 -g1,12140:6946919,28662418 -g1,12140:7263065,28662418 -g1,12140:7579211,28662418 -g1,12140:7895357,28662418 -g1,12140:8211503,28662418 -g1,12140:8527649,28662418 -g1,12140:8843795,28662418 -g1,12140:9159941,28662418 -g1,12140:9476087,28662418 -g1,12140:9792233,28662418 -g1,12140:10108379,28662418 -g1,12140:10424525,28662418 -g1,12140:11056817,28662418 -g1,12140:11689109,28662418 -k1,12140:11689109,28662418:0 -h1,12140:12953692,28662418:0,0,0 -k1,12140:32583028,28662418:19629336 -g1,12140:32583028,28662418 -) -(1,12149:6630773,29394132:25952256,404226,9436 -(1,12142:6630773,29394132:0,0,0 -g1,12142:6630773,29394132 -g1,12142:6630773,29394132 -g1,12142:6303093,29394132 -(1,12142:6303093,29394132:0,0,0 -) -g1,12142:6630773,29394132 -) -g1,12149:7579210,29394132 -g1,12149:8211502,29394132 -g1,12149:8843794,29394132 -g1,12149:11372960,29394132 -g1,12149:12005252,29394132 -g1,12149:12637544,29394132 -h1,12149:12953690,29394132:0,0,0 -k1,12149:32583030,29394132:19629340 -g1,12149:32583030,29394132 -) -(1,12149:6630773,30060310:25952256,404226,50331 -h1,12149:6630773,30060310:0,0,0 -g1,12149:7579210,30060310 -g1,12149:7895356,30060310 -g1,12149:8211502,30060310 -g1,12149:10740668,30060310 -g1,12149:14850562,30060310 -g1,12149:19592748,30060310 -g1,12149:19908894,30060310 -g1,12149:20225040,30060310 -g1,12149:20541186,30060310 -g1,12149:20857332,30060310 -h1,12149:21173478,30060310:0,0,0 -k1,12149:32583029,30060310:11409551 -g1,12149:32583029,30060310 -) -(1,12149:6630773,30726488:25952256,404226,6290 -h1,12149:6630773,30726488:0,0,0 -g1,12149:7579210,30726488 -g1,12149:7895356,30726488 -g1,12149:8211502,30726488 -g1,12149:10108377,30726488 -g1,12149:10424523,30726488 -g1,12149:10740669,30726488 -g1,12149:11056815,30726488 -g1,12149:11372961,30726488 -g1,12149:11689107,30726488 -g1,12149:12005253,30726488 -g1,12149:12321399,30726488 -g1,12149:12637545,30726488 -g1,12149:12953691,30726488 -g1,12149:14850566,30726488 -g1,12149:15166712,30726488 -g1,12149:15482858,30726488 -g1,12149:15799004,30726488 -g1,12149:16115150,30726488 -g1,12149:16431296,30726488 -g1,12149:16747442,30726488 -g1,12149:17063588,30726488 -g1,12149:17379734,30726488 -g1,12149:17695880,30726488 -g1,12149:19592755,30726488 -k1,12149:19592755,30726488:0 -h1,12149:21173484,30726488:0,0,0 -k1,12149:32583029,30726488:11409545 -g1,12149:32583029,30726488 -) -(1,12149:6630773,31392666:25952256,388497,9436 -h1,12149:6630773,31392666:0,0,0 -g1,12149:7579210,31392666 -g1,12149:8211502,31392666 -g1,12149:8843794,31392666 -g1,12149:9159940,31392666 -g1,12149:9476086,31392666 -g1,12149:9792232,31392666 -g1,12149:10108378,31392666 -g1,12149:10424524,31392666 -g1,12149:10740670,31392666 -g1,12149:11056816,31392666 -g1,12149:11372962,31392666 -g1,12149:11689108,31392666 -g1,12149:12005254,31392666 -g1,12149:12321400,31392666 -g1,12149:12637546,31392666 -g1,12149:12953692,31392666 -g1,12149:13269838,31392666 -g1,12149:13585984,31392666 -g1,12149:13902130,31392666 -g1,12149:14218276,31392666 -g1,12149:14850568,31392666 -g1,12149:15166714,31392666 -g1,12149:15482860,31392666 -g1,12149:15799006,31392666 -g1,12149:16115152,31392666 -g1,12149:16431298,31392666 -g1,12149:16747444,31392666 -g1,12149:17063590,31392666 -g1,12149:17379736,31392666 -g1,12149:17695882,31392666 -g1,12149:18012028,31392666 -g1,12149:18328174,31392666 -g1,12149:18644320,31392666 -g1,12149:18960466,31392666 -g1,12149:19592758,31392666 -g1,12149:19908904,31392666 -g1,12149:20225050,31392666 -g1,12149:20541196,31392666 -g1,12149:20857342,31392666 -h1,12149:21173488,31392666:0,0,0 -k1,12149:32583029,31392666:11409541 -g1,12149:32583029,31392666 -) -(1,12149:6630773,32058844:25952256,404226,9436 -h1,12149:6630773,32058844:0,0,0 -g1,12149:7579210,32058844 -g1,12149:8211502,32058844 -g1,12149:8843794,32058844 -g1,12149:9159940,32058844 -g1,12149:9476086,32058844 -g1,12149:9792232,32058844 -g1,12149:10108378,32058844 -g1,12149:10424524,32058844 -g1,12149:10740670,32058844 -g1,12149:11056816,32058844 -g1,12149:11372962,32058844 -g1,12149:11689108,32058844 -g1,12149:12005254,32058844 -g1,12149:12321400,32058844 -g1,12149:12637546,32058844 -g1,12149:12953692,32058844 -g1,12149:13269838,32058844 -g1,12149:13585984,32058844 -g1,12149:13902130,32058844 -g1,12149:14218276,32058844 -g1,12149:14850568,32058844 -g1,12149:15166714,32058844 -g1,12149:15482860,32058844 -g1,12149:15799006,32058844 -g1,12149:16115152,32058844 -g1,12149:16431298,32058844 -g1,12149:16747444,32058844 -g1,12149:17063590,32058844 -g1,12149:17379736,32058844 -g1,12149:17695882,32058844 -g1,12149:18012028,32058844 -g1,12149:18328174,32058844 -g1,12149:18644320,32058844 -g1,12149:18960466,32058844 -g1,12149:19592758,32058844 -g1,12149:19908904,32058844 -g1,12149:20225050,32058844 -g1,12149:20541196,32058844 -g1,12149:20857342,32058844 -h1,12149:21173488,32058844:0,0,0 -k1,12149:32583029,32058844:11409541 -g1,12149:32583029,32058844 -) -(1,12149:6630773,32725022:25952256,388497,9436 -h1,12149:6630773,32725022:0,0,0 -g1,12149:7579210,32725022 -g1,12149:8211502,32725022 -g1,12149:8843794,32725022 -g1,12149:9159940,32725022 -g1,12149:9476086,32725022 -g1,12149:9792232,32725022 -g1,12149:10108378,32725022 -g1,12149:10424524,32725022 -g1,12149:10740670,32725022 -g1,12149:11056816,32725022 -g1,12149:11372962,32725022 -g1,12149:11689108,32725022 -g1,12149:12005254,32725022 -g1,12149:12321400,32725022 -g1,12149:12637546,32725022 -g1,12149:12953692,32725022 -g1,12149:13269838,32725022 -g1,12149:13585984,32725022 -g1,12149:13902130,32725022 -g1,12149:14218276,32725022 -g1,12149:14850568,32725022 -g1,12149:15166714,32725022 -g1,12149:15482860,32725022 -g1,12149:15799006,32725022 -g1,12149:16115152,32725022 -g1,12149:16431298,32725022 -g1,12149:16747444,32725022 -g1,12149:17063590,32725022 -g1,12149:17379736,32725022 -g1,12149:17695882,32725022 -g1,12149:18012028,32725022 -g1,12149:18328174,32725022 -g1,12149:18644320,32725022 -g1,12149:18960466,32725022 -g1,12149:19592758,32725022 -g1,12149:19908904,32725022 -g1,12149:20225050,32725022 -g1,12149:20541196,32725022 -g1,12149:20857342,32725022 -h1,12149:21173488,32725022:0,0,0 -k1,12149:32583029,32725022:11409541 -g1,12149:32583029,32725022 -) -] -) -g1,12150:32583029,32734458 -g1,12150:6630773,32734458 -g1,12150:6630773,32734458 -g1,12150:32583029,32734458 -g1,12150:32583029,32734458 -) -h1,12150:6630773,32931066:0,0,0 -v1,12154:6630773,34821130:0,393216,0 -(1,12274:6630773,40344791:25952256,5916877,589824 -g1,12274:6630773,40344791 -(1,12274:6630773,40344791:25952256,5916877,589824 -(1,12274:6630773,40934615:25952256,6506701,0 -[1,12274:6630773,40934615:25952256,6506701,0 -(1,12274:6630773,40934615:25952256,6480487,0 -r1,12274:6656987,40934615:26214,6480487,0 -[1,12274:6656987,40934615:25899828,6480487,0 -(1,12274:6656987,40344791:25899828,5300839,0 -[1,12274:7246811,40344791:24720180,5300839,0 -(1,12155:7246811,36129488:24720180,1085536,298548 -(1,12154:7246811,36129488:0,1085536,298548 -r1,12274:8753226,36129488:1506415,1384084,298548 -k1,12154:7246811,36129488:-1506415 -) -(1,12154:7246811,36129488:1506415,1085536,298548 -) -k1,12154:8922026,36129488:168800 -k1,12154:10511647,36129488:168800 -k1,12154:11211944,36129488:168800 -k1,12154:14263674,36129488:168801 -k1,12154:18633987,36129488:168800 -k1,12154:19750438,36129488:168800 -k1,12154:21308601,36129488:168800 -k1,12154:23683998,36129488:168800 -k1,12154:25044243,36129488:168800 -k1,12154:27681785,36129488:168801 -k1,12154:28478420,36129488:168800 -k1,12154:29744948,36129488:168800 -k1,12154:31280829,36129488:168800 -k1,12154:31966991,36129488:0 -) -(1,12155:7246811,36970976:24720180,505283,134348 -k1,12154:8576434,36970976:231895 -k1,12154:10619744,36970976:231895 -k1,12154:13318413,36970976:231894 -k1,12154:14201736,36970976:231895 -k1,12154:15988800,36970976:231895 -(1,12154:15988800,36970976:0,459977,115847 -r1,12274:19160760,36970976:3171960,575824,115847 -k1,12154:15988800,36970976:-3171960 -) -(1,12154:15988800,36970976:3171960,459977,115847 -k1,12154:15988800,36970976:3277 -h1,12154:19157483,36970976:0,411205,112570 -) -k1,12154:19566325,36970976:231895 -k1,12154:22681149,36970976:231895 -k1,12154:24440688,36970976:231895 -(1,12154:24440688,36970976:0,459977,122846 -r1,12274:27964360,36970976:3523672,582823,122846 -k1,12154:24440688,36970976:-3523672 -) -(1,12154:24440688,36970976:3523672,459977,122846 -k1,12154:24440688,36970976:3277 -h1,12154:27961083,36970976:0,411205,112570 -) -k1,12154:28196254,36970976:231894 -k1,12154:29114311,36970976:231895 -k1,12154:30365291,36970976:231895 -k1,12154:31966991,36970976:0 -) -(1,12155:7246811,37812464:24720180,513147,134348 -k1,12154:9788843,37812464:159143 -k1,12154:11676827,37812464:159144 -k1,12154:12305863,37812464:159143 -k1,12154:13750822,37812464:159143 -k1,12154:15437610,37812464:159144 -k1,12154:17828254,37812464:159143 -k1,12154:21096425,37812464:159143 -k1,12154:22649520,37812464:159144 -k1,12154:23827748,37812464:159143 -k1,12154:26869820,37812464:159143 -k1,12154:30835950,37812464:159144 -k1,12154:31611131,37812464:159143 -k1,12154:31966991,37812464:0 -) -(1,12155:7246811,38653952:24720180,513147,134348 -k1,12154:9632143,38653952:204949 -k1,12154:12349087,38653952:204949 -k1,12154:13501687,38653952:204949 -k1,12154:14914465,38653952:204949 -k1,12154:17950569,38653952:204949 -k1,12154:18814809,38653952:204948 -k1,12154:20912438,38653952:204949 -k1,12154:24244765,38653952:204949 -k1,12154:25278744,38653952:204949 -k1,12154:29516779,38653952:204949 -k1,12154:31098639,38653952:204949 -k1,12154:31966991,38653952:0 -) -(1,12155:7246811,39495440:24720180,505283,134348 -k1,12154:8973521,39495440:196444 -k1,12154:9821393,39495440:196444 -k1,12154:11733570,39495440:196444 -k1,12154:12700717,39495440:196444 -k1,12154:15978664,39495440:196444 -k1,12154:16826536,39495440:196444 -k1,12154:18120709,39495440:196445 -k1,12154:23727150,39495440:196444 -k1,12154:25778918,39495440:196444 -k1,12154:27166807,39495440:196444 -k1,12154:28753925,39495440:196444 -k1,12154:29306229,39495440:196444 -k1,12154:31966991,39495440:0 -) -(1,12155:7246811,40336928:24720180,505283,7863 -g1,12154:9257455,40336928 -g1,12154:10108112,40336928 -g1,12154:10663201,40336928 -k1,12155:31966991,40336928:18618780 -g1,12155:31966991,40336928 -) -] -) -] -r1,12274:32583029,40934615:26214,6480487,0 -) -] -) -) -g1,12274:32583029,40344791 -) -] -(1,12274:32583029,45706769:0,0,0 -g1,12274:32583029,45706769 -) -) -] -(1,12274:6630773,47279633:25952256,0,0 -h1,12274:6630773,47279633:25952256,0,0 -) -] -(1,12274:4262630,4025873:0,0,0 -[1,12274:-473656,4025873:0,0,0 -(1,12274:-473656,-710413:0,0,0 -(1,12274:-473656,-710413:0,0,0 -g1,12274:-473656,-710413 -) -g1,12274:-473656,-710413 -) -] -) -] -!26008 -}227 -!12 -{228 -[1,12274:4262630,47279633:28320399,43253760,0 -(1,12274:4262630,4025873:0,0,0 -[1,12274:-473656,4025873:0,0,0 -(1,12274:-473656,-710413:0,0,0 -(1,12274:-473656,-644877:0,0,0 -k1,12274:-473656,-644877:-65536 -) -(1,12274:-473656,4736287:0,0,0 -k1,12274:-473656,4736287:5209943 -) -g1,12274:-473656,-710413 -) -] -) -[1,12274:6630773,47279633:25952256,43253760,0 -[1,12274:6630773,4812305:25952256,786432,0 -(1,12274:6630773,4812305:25952256,505283,126483 -(1,12274:6630773,4812305:25952256,505283,126483 -g1,12274:3078558,4812305 -[1,12274:3078558,4812305:0,0,0 -(1,12274:3078558,2439708:0,1703936,0 -k1,12274:1358238,2439708:-1720320 -(1,11088:1358238,2439708:1720320,1703936,0 -(1,11088:1358238,2439708:1179648,16384,0 -r1,12274:2537886,2439708:1179648,16384,0 -) -g1,11088:3062174,2439708 -(1,11088:3062174,2439708:16384,1703936,0 -[1,11088:3062174,2439708:25952256,1703936,0 -(1,11088:3062174,1915420:25952256,1179648,0 -(1,11088:3062174,1915420:16384,1179648,0 -r1,12274:3078558,1915420:16384,1179648,0 -) -k1,11088:29014430,1915420:25935872 -g1,11088:29014430,1915420 -) -] -) -) -) -] -[1,12274:3078558,4812305:0,0,0 -(1,12274:3078558,2439708:0,1703936,0 -g1,12274:29030814,2439708 -g1,12274:36135244,2439708 -(1,11088:36135244,2439708:1720320,1703936,0 -(1,11088:36135244,2439708:16384,1703936,0 -[1,11088:36135244,2439708:25952256,1703936,0 -(1,11088:36135244,1915420:25952256,1179648,0 -(1,11088:36135244,1915420:16384,1179648,0 -r1,12274:36151628,1915420:16384,1179648,0 -) -k1,11088:62087500,1915420:25935872 -g1,11088:62087500,1915420 -) -] -) -g1,11088:36675916,2439708 -(1,11088:36675916,2439708:1179648,16384,0 -r1,12274:37855564,2439708:1179648,16384,0 -) -) -k1,12274:3078556,2439708:-34777008 -) -] -[1,12274:3078558,4812305:0,0,0 -(1,12274:3078558,49800853:0,16384,2228224 -k1,12274:1358238,49800853:-1720320 -(1,11088:1358238,49800853:1720320,16384,2228224 -(1,11088:1358238,49800853:1179648,16384,0 -r1,12274:2537886,49800853:1179648,16384,0 -) -g1,11088:3062174,49800853 -(1,11088:3062174,52029077:16384,1703936,0 -[1,11088:3062174,52029077:25952256,1703936,0 -(1,11088:3062174,51504789:25952256,1179648,0 -(1,11088:3062174,51504789:16384,1179648,0 -r1,12274:3078558,51504789:16384,1179648,0 -) -k1,11088:29014430,51504789:25935872 -g1,11088:29014430,51504789 -) -] -) -) -) -] -[1,12274:3078558,4812305:0,0,0 -(1,12274:3078558,49800853:0,16384,2228224 -g1,12274:29030814,49800853 -g1,12274:36135244,49800853 -(1,11088:36135244,49800853:1720320,16384,2228224 -(1,11088:36135244,52029077:16384,1703936,0 -[1,11088:36135244,52029077:25952256,1703936,0 -(1,11088:36135244,51504789:25952256,1179648,0 -(1,11088:36135244,51504789:16384,1179648,0 -r1,12274:36151628,51504789:16384,1179648,0 -) -k1,11088:62087500,51504789:25935872 -g1,11088:62087500,51504789 -) -] -) -g1,11088:36675916,49800853 -(1,11088:36675916,49800853:1179648,16384,0 -r1,12274:37855564,49800853:1179648,16384,0 -) -) -k1,12274:3078556,49800853:-34777008 -) -] -g1,12274:6630773,4812305 -g1,12274:6630773,4812305 -g1,12274:8364200,4812305 -g1,12274:12785258,4812305 -g1,12274:14347636,4812305 -g1,12274:16554232,4812305 -k1,12274:31387652,4812305:14833420 -) -) -] -[1,12274:6630773,45706769:25952256,40108032,0 -(1,12274:6630773,45706769:25952256,40108032,0 -(1,12274:6630773,45706769:0,0,0 -g1,12274:6630773,45706769 -) -[1,12274:6630773,45706769:25952256,40108032,0 -v1,12274:6630773,6254097:0,393216,0 -(1,12274:6630773,45116945:25952256,39256064,589824 -g1,12274:6630773,45116945 -(1,12274:6630773,45116945:25952256,39256064,589824 -(1,12274:6630773,45706769:25952256,39845888,0 -[1,12274:6630773,45706769:25952256,39845888,0 -(1,12274:6630773,45706769:25952256,39845888,0 -r1,12274:6656987,45706769:26214,39845888,0 -[1,12274:6656987,45706769:25899828,39845888,0 -(1,12274:6656987,45116945:25899828,38666240,0 -[1,12274:7246811,45116945:24720180,38666240,0 -v1,12157:7246811,6843921:0,393216,0 -(1,12177:7246811,12631956:24720180,6181251,196608 -g1,12177:7246811,12631956 -g1,12177:7246811,12631956 -g1,12177:7050203,12631956 -(1,12177:7050203,12631956:0,6181251,196608 -r1,12274:32163599,12631956:25113396,6377859,196608 -k1,12177:7050203,12631956:-25113396 -) -(1,12177:7050203,12631956:25113396,6181251,196608 -[1,12177:7246811,12631956:24720180,5984643,0 -(1,12159:7246811,7051539:24720180,404226,101187 -(1,12158:7246811,7051539:0,0,0 -g1,12158:7246811,7051539 -g1,12158:7246811,7051539 -g1,12158:6919131,7051539 -(1,12158:6919131,7051539:0,0,0 -) -g1,12158:7246811,7051539 -) -g1,12159:9143685,7051539 -g1,12159:10092123,7051539 -g1,12159:14834309,7051539 -g1,12159:15466601,7051539 -g1,12159:17047331,7051539 -g1,12159:19576497,7051539 -g1,12159:20208789,7051539 -g1,12159:25899413,7051539 -h1,12159:26847850,7051539:0,0,0 -k1,12159:31966991,7051539:5119141 -g1,12159:31966991,7051539 -) -(1,12160:7246811,7717717:24720180,410518,107478 -h1,12160:7246811,7717717:0,0,0 -k1,12160:7246811,7717717:0 -h1,12160:13569725,7717717:0,0,0 -k1,12160:31966991,7717717:18397266 -g1,12160:31966991,7717717 -) -(1,12164:7246811,8449431:24720180,404226,76021 -(1,12162:7246811,8449431:0,0,0 -g1,12162:7246811,8449431 -g1,12162:7246811,8449431 -g1,12162:6919131,8449431 -(1,12162:6919131,8449431:0,0,0 -) -g1,12162:7246811,8449431 -) -g1,12164:8195248,8449431 -g1,12164:9459831,8449431 -h1,12164:11040559,8449431:0,0,0 -k1,12164:31966991,8449431:20926432 -g1,12164:31966991,8449431 -) -(1,12166:7246811,9770969:24720180,404226,101187 -(1,12165:7246811,9770969:0,0,0 -g1,12165:7246811,9770969 -g1,12165:7246811,9770969 -g1,12165:6919131,9770969 -(1,12165:6919131,9770969:0,0,0 -) -g1,12165:7246811,9770969 -) -k1,12166:7246811,9770969:0 -h1,12166:11040559,9770969:0,0,0 -k1,12166:31966991,9770969:20926432 -g1,12166:31966991,9770969 -) -(1,12170:7246811,10502683:24720180,410518,76021 -(1,12168:7246811,10502683:0,0,0 -g1,12168:7246811,10502683 -g1,12168:7246811,10502683 -g1,12168:6919131,10502683 -(1,12168:6919131,10502683:0,0,0 -) -g1,12168:7246811,10502683 -) -g1,12170:8195248,10502683 -g1,12170:9459831,10502683 -g1,12170:12305142,10502683 -g1,12170:12621288,10502683 -g1,12170:12937434,10502683 -g1,12170:13253580,10502683 -g1,12170:13569726,10502683 -g1,12170:15466600,10502683 -g1,12170:15782746,10502683 -g1,12170:16098892,10502683 -g1,12170:16415038,10502683 -g1,12170:16731184,10502683 -g1,12170:17047330,10502683 -g1,12170:17363476,10502683 -g1,12170:17679622,10502683 -h1,12170:21473370,10502683:0,0,0 -k1,12170:31966991,10502683:10493621 -g1,12170:31966991,10502683 -) -(1,12172:7246811,11824221:24720180,404226,101187 -(1,12171:7246811,11824221:0,0,0 -g1,12171:7246811,11824221 -g1,12171:7246811,11824221 -g1,12171:6919131,11824221 -(1,12171:6919131,11824221:0,0,0 -) -g1,12171:7246811,11824221 -) -k1,12172:7246811,11824221:0 -k1,12172:7246811,11824221:0 -h1,12172:14834307,11824221:0,0,0 -k1,12172:31966991,11824221:17132684 -g1,12172:31966991,11824221 -) -(1,12176:7246811,12555935:24720180,404226,76021 -(1,12174:7246811,12555935:0,0,0 -g1,12174:7246811,12555935 -g1,12174:7246811,12555935 -g1,12174:6919131,12555935 -(1,12174:6919131,12555935:0,0,0 -) -g1,12174:7246811,12555935 -) -g1,12176:8195248,12555935 -g1,12176:9459831,12555935 -g1,12176:11988997,12555935 -g1,12176:12305143,12555935 -g1,12176:12621289,12555935 -g1,12176:12937435,12555935 -g1,12176:13253581,12555935 -g1,12176:17047329,12555935 -h1,12176:19260349,12555935:0,0,0 -k1,12176:31966991,12555935:12706642 -g1,12176:31966991,12555935 -) -] -) -g1,12177:31966991,12631956 -g1,12177:7246811,12631956 -g1,12177:7246811,12631956 -g1,12177:31966991,12631956 -g1,12177:31966991,12631956 -) -h1,12177:7246811,12828564:0,0,0 -v1,12181:7246811,14412281:0,393216,0 -(1,12195:7246811,18178521:24720180,4159456,196608 -g1,12195:7246811,18178521 -g1,12195:7246811,18178521 -g1,12195:7050203,18178521 -(1,12195:7050203,18178521:0,4159456,196608 -r1,12274:32163599,18178521:25113396,4356064,196608 -k1,12195:7050203,18178521:-25113396 -) -(1,12195:7050203,18178521:25113396,4159456,196608 -[1,12195:7246811,18178521:24720180,3962848,0 -(1,12183:7246811,14619899:24720180,404226,107478 -(1,12182:7246811,14619899:0,0,0 -g1,12182:7246811,14619899 -g1,12182:7246811,14619899 -g1,12182:6919131,14619899 -(1,12182:6919131,14619899:0,0,0 -) -g1,12182:7246811,14619899 -) -g1,12183:10092122,14619899 -g1,12183:11040560,14619899 -g1,12183:15782745,14619899 -g1,12183:16415037,14619899 -g1,12183:18628057,14619899 -h1,12183:21157222,14619899:0,0,0 -k1,12183:31966991,14619899:10809769 -g1,12183:31966991,14619899 -) -(1,12184:7246811,15286077:24720180,410518,107478 -h1,12184:7246811,15286077:0,0,0 -k1,12184:7246811,15286077:0 -h1,12184:14518162,15286077:0,0,0 -k1,12184:31966990,15286077:17448828 -g1,12184:31966990,15286077 -) -(1,12188:7246811,16017791:24720180,404226,76021 -(1,12186:7246811,16017791:0,0,0 -g1,12186:7246811,16017791 -g1,12186:7246811,16017791 -g1,12186:6919131,16017791 -(1,12186:6919131,16017791:0,0,0 -) -g1,12186:7246811,16017791 -) -g1,12188:8195248,16017791 -g1,12188:9459831,16017791 -h1,12188:10724414,16017791:0,0,0 -k1,12188:31966990,16017791:21242576 -g1,12188:31966990,16017791 -) -(1,12190:7246811,17339329:24720180,404226,107478 -(1,12189:7246811,17339329:0,0,0 -g1,12189:7246811,17339329 -g1,12189:7246811,17339329 -g1,12189:6919131,17339329 -(1,12189:6919131,17339329:0,0,0 -) -g1,12189:7246811,17339329 -) -k1,12190:7246811,17339329:0 -h1,12190:11988996,17339329:0,0,0 -k1,12190:31966992,17339329:19977996 -g1,12190:31966992,17339329 -) -(1,12194:7246811,18071043:24720180,410518,107478 -(1,12192:7246811,18071043:0,0,0 -g1,12192:7246811,18071043 -g1,12192:7246811,18071043 -g1,12192:6919131,18071043 -(1,12192:6919131,18071043:0,0,0 -) -g1,12192:7246811,18071043 -) -g1,12194:8195248,18071043 -g1,12194:9459831,18071043 -g1,12194:13569725,18071043 -g1,12194:16415036,18071043 -g1,12194:16731182,18071043 -g1,12194:17047328,18071043 -g1,12194:17363474,18071043 -g1,12194:17679620,18071043 -g1,12194:19576494,18071043 -g1,12194:19892640,18071043 -g1,12194:20208786,18071043 -g1,12194:20524932,18071043 -g1,12194:20841078,18071043 -g1,12194:21157224,18071043 -g1,12194:21473370,18071043 -g1,12194:21789516,18071043 -h1,12194:25583264,18071043:0,0,0 -k1,12194:31966991,18071043:6383727 -g1,12194:31966991,18071043 -) -] -) -g1,12195:31966991,18178521 -g1,12195:7246811,18178521 -g1,12195:7246811,18178521 -g1,12195:31966991,18178521 -g1,12195:31966991,18178521 -) -h1,12195:7246811,18375129:0,0,0 -v1,12199:7246811,19958847:0,393216,0 -(1,12221:7246811,29023054:24720180,9457423,196608 -g1,12221:7246811,29023054 -g1,12221:7246811,29023054 -g1,12221:7050203,29023054 -(1,12221:7050203,29023054:0,9457423,196608 -r1,12274:32163599,29023054:25113396,9654031,196608 -k1,12221:7050203,29023054:-25113396 -) -(1,12221:7050203,29023054:25113396,9457423,196608 -[1,12221:7246811,29023054:24720180,9260815,0 -(1,12201:7246811,20166465:24720180,404226,107478 -(1,12200:7246811,20166465:0,0,0 -g1,12200:7246811,20166465 -g1,12200:7246811,20166465 -g1,12200:6919131,20166465 -(1,12200:6919131,20166465:0,0,0 -) -g1,12200:7246811,20166465 -) -k1,12201:7246811,20166465:0 -k1,12201:7246811,20166465:0 -h1,12201:15782744,20166465:0,0,0 -k1,12201:31966991,20166465:16184247 -g1,12201:31966991,20166465 -) -(1,12205:7246811,20898179:24720180,404226,107478 -(1,12203:7246811,20898179:0,0,0 -g1,12203:7246811,20898179 -g1,12203:7246811,20898179 -g1,12203:6919131,20898179 -(1,12203:6919131,20898179:0,0,0 -) -g1,12203:7246811,20898179 -) -g1,12205:8195248,20898179 -g1,12205:9459831,20898179 -g1,12205:11988997,20898179 -g1,12205:12305143,20898179 -g1,12205:12621289,20898179 -g1,12205:12937435,20898179 -g1,12205:13253581,20898179 -g1,12205:17047329,20898179 -g1,12205:19576495,20898179 -g1,12205:19892641,20898179 -g1,12205:20208787,20898179 -g1,12205:20524933,20898179 -g1,12205:20841079,20898179 -h1,12205:23370244,20898179:0,0,0 -k1,12205:31966991,20898179:8596747 -g1,12205:31966991,20898179 -) -(1,12207:7246811,22219717:24720180,410518,107478 -(1,12206:7246811,22219717:0,0,0 -g1,12206:7246811,22219717 -g1,12206:7246811,22219717 -g1,12206:6919131,22219717 -(1,12206:6919131,22219717:0,0,0 -) -g1,12206:7246811,22219717 -) -k1,12207:7246811,22219717:0 -g1,12207:16731183,22219717 -k1,12207:16731183,22219717:0 -h1,12207:22421805,22219717:0,0,0 -k1,12207:31966991,22219717:9545186 -g1,12207:31966991,22219717 -) -(1,12220:7246811,22951431:24720180,410518,31456 -(1,12209:7246811,22951431:0,0,0 -g1,12209:7246811,22951431 -g1,12209:7246811,22951431 -g1,12209:6919131,22951431 -(1,12209:6919131,22951431:0,0,0 -) -g1,12209:7246811,22951431 -) -g1,12220:8195248,22951431 -h1,12220:10092122,22951431:0,0,0 -k1,12220:31966990,22951431:21874868 -g1,12220:31966990,22951431 -) -(1,12220:7246811,23617609:24720180,410518,107478 -h1,12220:7246811,23617609:0,0,0 -g1,12220:8195248,23617609 -g1,12220:9459831,23617609 -g1,12220:13569725,23617609 -g1,12220:16415036,23617609 -g1,12220:16731182,23617609 -g1,12220:17047328,23617609 -g1,12220:17363474,23617609 -g1,12220:17679620,23617609 -g1,12220:19576494,23617609 -g1,12220:19892640,23617609 -g1,12220:20208786,23617609 -g1,12220:20524932,23617609 -g1,12220:20841078,23617609 -g1,12220:21157224,23617609 -g1,12220:21473370,23617609 -g1,12220:21789516,23617609 -h1,12220:25583264,23617609:0,0,0 -k1,12220:31966991,23617609:6383727 -g1,12220:31966991,23617609 -) -(1,12220:7246811,24283787:24720180,379060,0 -h1,12220:7246811,24283787:0,0,0 -h1,12220:7879102,24283787:0,0,0 -k1,12220:31966990,24283787:24087888 -g1,12220:31966990,24283787 -) -(1,12220:7246811,24949965:24720180,410518,107478 -h1,12220:7246811,24949965:0,0,0 -g1,12220:8195248,24949965 -h1,12220:10408268,24949965:0,0,0 -k1,12220:31966992,24949965:21558724 -g1,12220:31966992,24949965 -) -(1,12220:7246811,25616143:24720180,404226,9436 -h1,12220:7246811,25616143:0,0,0 -g1,12220:8195248,25616143 -g1,12220:8827540,25616143 -g1,12220:9459832,25616143 -g1,12220:11988998,25616143 -g1,12220:12621290,25616143 -g1,12220:13253582,25616143 -h1,12220:13569728,25616143:0,0,0 -k1,12220:31966992,25616143:18397264 -g1,12220:31966992,25616143 -) -(1,12220:7246811,26282321:24720180,404226,6290 -h1,12220:7246811,26282321:0,0,0 -g1,12220:8195248,26282321 -g1,12220:8511394,26282321 -g1,12220:8827540,26282321 -g1,12220:11356706,26282321 -g1,12220:11672852,26282321 -g1,12220:11988998,26282321 -g1,12220:12305144,26282321 -g1,12220:12621290,26282321 -g1,12220:12937436,26282321 -g1,12220:13253582,26282321 -h1,12220:14834310,26282321:0,0,0 -k1,12220:31966990,26282321:17132680 -g1,12220:31966990,26282321 -) -(1,12220:7246811,26948499:24720180,404226,6290 -h1,12220:7246811,26948499:0,0,0 -g1,12220:8195248,26948499 -g1,12220:8511394,26948499 -g1,12220:8827540,26948499 -g1,12220:10724415,26948499 -g1,12220:11040561,26948499 -g1,12220:11356707,26948499 -k1,12220:11356707,26948499:0 -h1,12220:14834310,26948499:0,0,0 -k1,12220:31966990,26948499:17132680 -g1,12220:31966990,26948499 -) -(1,12220:7246811,27614677:24720180,404226,76021 -h1,12220:7246811,27614677:0,0,0 -g1,12220:8195248,27614677 -g1,12220:8827540,27614677 -g1,12220:9459832,27614677 -g1,12220:9775978,27614677 -g1,12220:10092124,27614677 -g1,12220:10408270,27614677 -g1,12220:10724416,27614677 -g1,12220:11040562,27614677 -g1,12220:11356708,27614677 -g1,12220:11672854,27614677 -g1,12220:11989000,27614677 -g1,12220:12305146,27614677 -g1,12220:12621292,27614677 -g1,12220:12937438,27614677 -g1,12220:13253584,27614677 -g1,12220:13569730,27614677 -g1,12220:13885876,27614677 -h1,12220:14834313,27614677:0,0,0 -k1,12220:31966991,27614677:17132678 -g1,12220:31966991,27614677 -) -(1,12220:7246811,28280855:24720180,404226,76021 -h1,12220:7246811,28280855:0,0,0 -g1,12220:8195248,28280855 -g1,12220:8827540,28280855 -g1,12220:9459832,28280855 -g1,12220:9775978,28280855 -g1,12220:10092124,28280855 -g1,12220:10408270,28280855 -g1,12220:10724416,28280855 -g1,12220:11040562,28280855 -g1,12220:11356708,28280855 -g1,12220:11672854,28280855 -g1,12220:11989000,28280855 -g1,12220:12305146,28280855 -g1,12220:12621292,28280855 -g1,12220:12937438,28280855 -g1,12220:13253584,28280855 -g1,12220:13569730,28280855 -g1,12220:13885876,28280855 -h1,12220:14834313,28280855:0,0,0 -k1,12220:31966991,28280855:17132678 -g1,12220:31966991,28280855 -) -(1,12220:7246811,28947033:24720180,404226,76021 -h1,12220:7246811,28947033:0,0,0 -g1,12220:8195248,28947033 -g1,12220:8827540,28947033 -g1,12220:9459832,28947033 -g1,12220:9775978,28947033 -g1,12220:10092124,28947033 -g1,12220:10408270,28947033 -g1,12220:10724416,28947033 -g1,12220:11040562,28947033 -g1,12220:11356708,28947033 -g1,12220:11672854,28947033 -g1,12220:11989000,28947033 -g1,12220:12305146,28947033 -g1,12220:12621292,28947033 -g1,12220:12937438,28947033 -g1,12220:13253584,28947033 -g1,12220:13569730,28947033 -g1,12220:13885876,28947033 -h1,12220:14834313,28947033:0,0,0 -k1,12220:31966991,28947033:17132678 -g1,12220:31966991,28947033 -) -] -) -g1,12221:31966991,29023054 -g1,12221:7246811,29023054 -g1,12221:7246811,29023054 -g1,12221:31966991,29023054 -g1,12221:31966991,29023054 -) -h1,12221:7246811,29219662:0,0,0 -v1,12225:7246811,30803379:0,393216,0 -(1,12239:7246811,34538162:24720180,4127999,196608 -g1,12239:7246811,34538162 -g1,12239:7246811,34538162 -g1,12239:7050203,34538162 -(1,12239:7050203,34538162:0,4127999,196608 -r1,12274:32163599,34538162:25113396,4324607,196608 -k1,12239:7050203,34538162:-25113396 -) -(1,12239:7050203,34538162:25113396,4127999,196608 -[1,12239:7246811,34538162:24720180,3931391,0 -(1,12227:7246811,31010997:24720180,404226,107478 -(1,12226:7246811,31010997:0,0,0 -g1,12226:7246811,31010997 -g1,12226:7246811,31010997 -g1,12226:6919131,31010997 -(1,12226:6919131,31010997:0,0,0 -) -g1,12226:7246811,31010997 -) -g1,12227:10408268,31010997 -g1,12227:11356706,31010997 -k1,12227:11356706,31010997:0 -h1,12227:16731183,31010997:0,0,0 -k1,12227:31966991,31010997:15235808 -g1,12227:31966991,31010997 -) -(1,12228:7246811,31677175:24720180,404226,107478 -h1,12228:7246811,31677175:0,0,0 -k1,12228:7246811,31677175:0 -h1,12228:12305141,31677175:0,0,0 -k1,12228:31966991,31677175:19661850 -g1,12228:31966991,31677175 -) -(1,12232:7246811,32408889:24720180,410518,76021 -(1,12230:7246811,32408889:0,0,0 -g1,12230:7246811,32408889 -g1,12230:7246811,32408889 -g1,12230:6919131,32408889 -(1,12230:6919131,32408889:0,0,0 -) -g1,12230:7246811,32408889 -) -g1,12232:8195248,32408889 -g1,12232:9459831,32408889 -g1,12232:12305142,32408889 -g1,12232:12621288,32408889 -g1,12232:12937434,32408889 -g1,12232:13253580,32408889 -g1,12232:13569726,32408889 -g1,12232:15466600,32408889 -g1,12232:15782746,32408889 -g1,12232:16098892,32408889 -g1,12232:16415038,32408889 -g1,12232:16731184,32408889 -g1,12232:17047330,32408889 -g1,12232:17363476,32408889 -g1,12232:17679622,32408889 -h1,12232:21473370,32408889:0,0,0 -k1,12232:31966991,32408889:10493621 -g1,12232:31966991,32408889 -) -(1,12234:7246811,33730427:24720180,404226,107478 -(1,12233:7246811,33730427:0,0,0 -g1,12233:7246811,33730427 -g1,12233:7246811,33730427 -g1,12233:6919131,33730427 -(1,12233:6919131,33730427:0,0,0 -) -g1,12233:7246811,33730427 -) -k1,12234:7246811,33730427:0 -k1,12234:7246811,33730427:0 -h1,12234:16098890,33730427:0,0,0 -k1,12234:31966991,33730427:15868101 -g1,12234:31966991,33730427 -) -(1,12238:7246811,34462141:24720180,404226,76021 -(1,12236:7246811,34462141:0,0,0 -g1,12236:7246811,34462141 -g1,12236:7246811,34462141 -g1,12236:6919131,34462141 -(1,12236:6919131,34462141:0,0,0 -) -g1,12236:7246811,34462141 -) -g1,12238:8195248,34462141 -g1,12238:9459831,34462141 -g1,12238:11988997,34462141 -g1,12238:12305143,34462141 -g1,12238:12621289,34462141 -g1,12238:12937435,34462141 -g1,12238:13253581,34462141 -g1,12238:17047329,34462141 -h1,12238:19260349,34462141:0,0,0 -k1,12238:31966991,34462141:12706642 -g1,12238:31966991,34462141 -) -] -) -g1,12239:31966991,34538162 -g1,12239:7246811,34538162 -g1,12239:7246811,34538162 -g1,12239:31966991,34538162 -g1,12239:31966991,34538162 -) -h1,12239:7246811,34734770:0,0,0 -v1,12243:7246811,36318487:0,393216,0 -(1,12268:7246811,43493596:24720180,7568325,196608 -g1,12268:7246811,43493596 -g1,12268:7246811,43493596 -g1,12268:7050203,43493596 -(1,12268:7050203,43493596:0,7568325,196608 -r1,12274:32163599,43493596:25113396,7764933,196608 -k1,12268:7050203,43493596:-25113396 -) -(1,12268:7050203,43493596:25113396,7568325,196608 -[1,12268:7246811,43493596:24720180,7371717,0 -(1,12245:7246811,36526105:24720180,404226,107478 -(1,12244:7246811,36526105:0,0,0 -g1,12244:7246811,36526105 -g1,12244:7246811,36526105 -g1,12244:6919131,36526105 -(1,12244:6919131,36526105:0,0,0 -) -g1,12244:7246811,36526105 -) -k1,12245:7246811,36526105:0 -g1,12245:10408268,36526105 -g1,12245:11356705,36526105 -h1,12245:14202016,36526105:0,0,0 -k1,12245:31966992,36526105:17764976 -g1,12245:31966992,36526105 -) -(1,12249:7246811,37257819:24720180,404226,76021 -(1,12247:7246811,37257819:0,0,0 -g1,12247:7246811,37257819 -g1,12247:7246811,37257819 -g1,12247:6919131,37257819 -(1,12247:6919131,37257819:0,0,0 -) -g1,12247:7246811,37257819 -) -g1,12249:8195248,37257819 -g1,12249:9459831,37257819 -h1,12249:10724414,37257819:0,0,0 -k1,12249:31966990,37257819:21242576 -g1,12249:31966990,37257819 -) -(1,12251:7246811,38579357:24720180,404226,107478 -(1,12250:7246811,38579357:0,0,0 -g1,12250:7246811,38579357 -g1,12250:7246811,38579357 -g1,12250:6919131,38579357 -(1,12250:6919131,38579357:0,0,0 -) -g1,12250:7246811,38579357 -) -k1,12251:7246811,38579357:0 -g1,12251:10408268,38579357 -g1,12251:11356705,38579357 -h1,12251:14518162,38579357:0,0,0 -k1,12251:31966990,38579357:17448828 -g1,12251:31966990,38579357 -) -(1,12255:7246811,39311071:24720180,404226,76021 -(1,12253:7246811,39311071:0,0,0 -g1,12253:7246811,39311071 -g1,12253:7246811,39311071 -g1,12253:6919131,39311071 -(1,12253:6919131,39311071:0,0,0 -) -g1,12253:7246811,39311071 -) -g1,12255:8195248,39311071 -g1,12255:9459831,39311071 -h1,12255:10724414,39311071:0,0,0 -k1,12255:31966990,39311071:21242576 -g1,12255:31966990,39311071 -) -(1,12257:7246811,40632609:24720180,404226,107478 -(1,12256:7246811,40632609:0,0,0 -g1,12256:7246811,40632609 -g1,12256:7246811,40632609 -g1,12256:6919131,40632609 -(1,12256:6919131,40632609:0,0,0 -) -g1,12256:7246811,40632609 -) -k1,12257:7246811,40632609:0 -g1,12257:12621288,40632609 -h1,12257:15466599,40632609:0,0,0 -k1,12257:31966991,40632609:16500392 -g1,12257:31966991,40632609 -) -(1,12261:7246811,41364323:24720180,404226,76021 -(1,12259:7246811,41364323:0,0,0 -g1,12259:7246811,41364323 -g1,12259:7246811,41364323 -g1,12259:6919131,41364323 -(1,12259:6919131,41364323:0,0,0 -) -g1,12259:7246811,41364323 -) -g1,12261:8195248,41364323 -g1,12261:9459831,41364323 -h1,12261:11040559,41364323:0,0,0 -k1,12261:31966991,41364323:20926432 -g1,12261:31966991,41364323 -) -(1,12263:7246811,42685861:24720180,404226,107478 -(1,12262:7246811,42685861:0,0,0 -g1,12262:7246811,42685861 -g1,12262:7246811,42685861 -g1,12262:6919131,42685861 -(1,12262:6919131,42685861:0,0,0 -) -g1,12262:7246811,42685861 -) -k1,12263:7246811,42685861:0 -g1,12263:12621288,42685861 -h1,12263:15782745,42685861:0,0,0 -k1,12263:31966991,42685861:16184246 -g1,12263:31966991,42685861 -) -(1,12267:7246811,43417575:24720180,404226,76021 -(1,12265:7246811,43417575:0,0,0 -g1,12265:7246811,43417575 -g1,12265:7246811,43417575 -g1,12265:6919131,43417575 -(1,12265:6919131,43417575:0,0,0 -) -g1,12265:7246811,43417575 -) -g1,12267:8195248,43417575 -g1,12267:9459831,43417575 -h1,12267:10724414,43417575:0,0,0 -k1,12267:31966990,43417575:21242576 -g1,12267:31966990,43417575 -) -] -) -g1,12268:31966991,43493596 -g1,12268:7246811,43493596 -g1,12268:7246811,43493596 -g1,12268:31966991,43493596 -g1,12268:31966991,43493596 -) -h1,12268:7246811,43690204:0,0,0 -(1,12272:7246811,44990462:24720180,505283,126483 -h1,12271:7246811,44990462:983040,0,0 -k1,12271:9664081,44990462:237543 -k1,12271:11423370,44990462:237543 -k1,12271:13516237,44990462:237543 -k1,12271:15414461,44990462:237542 -k1,12271:16936510,44990462:237543 -k1,12271:20127761,44990462:237543 -k1,12271:21356864,44990462:237543 -k1,12271:22210445,44990462:237543 -k1,12271:23214104,44990462:237543 -k1,12271:25149028,44990462:237542 -k1,12271:26405656,44990462:237543 -k1,12271:28296672,44990462:237543 -k1,12271:29220377,44990462:237543 -k1,12272:31966991,44990462:0 -) -] -) -] -r1,12274:32583029,45706769:26214,39845888,0 -) -] -) -) -g1,12274:32583029,45116945 -) -] -(1,12274:32583029,45706769:0,0,0 -g1,12274:32583029,45706769 -) -) -] -(1,12274:6630773,47279633:25952256,0,0 -h1,12274:6630773,47279633:25952256,0,0 -) -] -(1,12274:4262630,4025873:0,0,0 -[1,12274:-473656,4025873:0,0,0 -(1,12274:-473656,-710413:0,0,0 -(1,12274:-473656,-710413:0,0,0 -g1,12274:-473656,-710413 -) -g1,12274:-473656,-710413 -) -] -) -] -!23765 -}228 -Input:1720:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1721:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1722:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1723:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1724:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1725:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1726:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1727:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1728:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1729:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1730:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1731:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1732:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1733:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1734:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1392 -{229 -[1,12321:4262630,47279633:28320399,43253760,0 -(1,12321:4262630,4025873:0,0,0 -[1,12321:-473656,4025873:0,0,0 -(1,12321:-473656,-710413:0,0,0 -(1,12321:-473656,-644877:0,0,0 -k1,12321:-473656,-644877:-65536 -) -(1,12321:-473656,4736287:0,0,0 -k1,12321:-473656,4736287:5209943 -) -g1,12321:-473656,-710413 -) -] -) -[1,12321:6630773,47279633:25952256,43253760,0 -[1,12321:6630773,4812305:25952256,786432,0 -(1,12321:6630773,4812305:25952256,513147,134348 -(1,12321:6630773,4812305:25952256,513147,134348 -g1,12321:3078558,4812305 -[1,12321:3078558,4812305:0,0,0 -(1,12321:3078558,2439708:0,1703936,0 -k1,12321:1358238,2439708:-1720320 -(1,11088:1358238,2439708:1720320,1703936,0 -(1,11088:1358238,2439708:1179648,16384,0 -r1,12321:2537886,2439708:1179648,16384,0 -) -g1,11088:3062174,2439708 -(1,11088:3062174,2439708:16384,1703936,0 -[1,11088:3062174,2439708:25952256,1703936,0 -(1,11088:3062174,1915420:25952256,1179648,0 -(1,11088:3062174,1915420:16384,1179648,0 -r1,12321:3078558,1915420:16384,1179648,0 -) -k1,11088:29014430,1915420:25935872 -g1,11088:29014430,1915420 -) -] -) -) -) -] -[1,12321:3078558,4812305:0,0,0 -(1,12321:3078558,2439708:0,1703936,0 -g1,12321:29030814,2439708 -g1,12321:36135244,2439708 -(1,11088:36135244,2439708:1720320,1703936,0 -(1,11088:36135244,2439708:16384,1703936,0 -[1,11088:36135244,2439708:25952256,1703936,0 -(1,11088:36135244,1915420:25952256,1179648,0 -(1,11088:36135244,1915420:16384,1179648,0 -r1,12321:36151628,1915420:16384,1179648,0 -) -k1,11088:62087500,1915420:25935872 -g1,11088:62087500,1915420 -) -] -) -g1,11088:36675916,2439708 -(1,11088:36675916,2439708:1179648,16384,0 -r1,12321:37855564,2439708:1179648,16384,0 -) -) -k1,12321:3078556,2439708:-34777008 -) -] -[1,12321:3078558,4812305:0,0,0 -(1,12321:3078558,49800853:0,16384,2228224 -k1,12321:1358238,49800853:-1720320 -(1,11088:1358238,49800853:1720320,16384,2228224 -(1,11088:1358238,49800853:1179648,16384,0 -r1,12321:2537886,49800853:1179648,16384,0 -) -g1,11088:3062174,49800853 -(1,11088:3062174,52029077:16384,1703936,0 -[1,11088:3062174,52029077:25952256,1703936,0 -(1,11088:3062174,51504789:25952256,1179648,0 -(1,11088:3062174,51504789:16384,1179648,0 -r1,12321:3078558,51504789:16384,1179648,0 -) -k1,11088:29014430,51504789:25935872 -g1,11088:29014430,51504789 -) -] -) -) -) -] -[1,12321:3078558,4812305:0,0,0 -(1,12321:3078558,49800853:0,16384,2228224 -g1,12321:29030814,49800853 -g1,12321:36135244,49800853 -(1,11088:36135244,49800853:1720320,16384,2228224 -(1,11088:36135244,52029077:16384,1703936,0 -[1,11088:36135244,52029077:25952256,1703936,0 -(1,11088:36135244,51504789:25952256,1179648,0 -(1,11088:36135244,51504789:16384,1179648,0 -r1,12321:36151628,51504789:16384,1179648,0 -) -k1,11088:62087500,51504789:25935872 -g1,11088:62087500,51504789 -) -] -) -g1,11088:36675916,49800853 -(1,11088:36675916,49800853:1179648,16384,0 -r1,12321:37855564,49800853:1179648,16384,0 -) -) -k1,12321:3078556,49800853:-34777008 -) -] -g1,12321:6630773,4812305 -k1,12321:25241686,4812305:17415536 -g1,12321:26807341,4812305 -g1,12321:30339731,4812305 -g1,12321:31154998,4812305 -) -) -] -[1,12321:6630773,45706769:25952256,40108032,0 -(1,12321:6630773,45706769:25952256,40108032,0 -(1,12321:6630773,45706769:0,0,0 -g1,12321:6630773,45706769 -) -[1,12321:6630773,45706769:25952256,40108032,0 -v1,12274:6630773,6254097:0,393216,0 -(1,12274:6630773,15505215:25952256,9644334,616038 -g1,12274:6630773,15505215 -(1,12274:6630773,15505215:25952256,9644334,616038 -(1,12274:6630773,16121253:25952256,10260372,0 -[1,12274:6630773,16121253:25952256,10260372,0 -(1,12274:6630773,16095039:25952256,10234158,0 -r1,12321:6656987,16095039:26214,10234158,0 -[1,12274:6656987,16095039:25899828,10234158,0 -(1,12274:6656987,15505215:25899828,9054510,0 -[1,12274:7246811,15505215:24720180,9054510,0 -(1,12272:7246811,6963852:24720180,513147,126483 -(1,12271:7246811,6963852:0,414482,115847 -r1,12321:7956789,6963852:709978,530329,115847 -k1,12271:7246811,6963852:-709978 -) -(1,12271:7246811,6963852:709978,414482,115847 -k1,12271:7246811,6963852:3277 -h1,12271:7953512,6963852:0,411205,112570 -) -k1,12271:8152445,6963852:195656 -k1,12271:9869847,6963852:195656 -k1,12271:11013154,6963852:195656 -k1,12271:13755538,6963852:195655 -k1,12271:14563956,6963852:195656 -k1,12271:16211234,6963852:195656 -k1,12271:19021121,6963852:195656 -k1,12271:19832815,6963852:195656 -k1,12271:21047556,6963852:195656 -k1,12271:23054627,6963852:195656 -k1,12271:24322451,6963852:195655 -k1,12271:25584378,6963852:195656 -k1,12271:26799119,6963852:195656 -k1,12271:30277473,6963852:195656 -k1,12271:31966991,6963852:0 -) -(1,12272:7246811,7805340:24720180,513147,134348 -k1,12271:10813254,7805340:283745 -k1,12271:14077577,7805340:283746 -(1,12271:14077577,7805340:0,452978,115847 -r1,12321:15842690,7805340:1765113,568825,115847 -k1,12271:14077577,7805340:-1765113 -) -(1,12271:14077577,7805340:1765113,452978,115847 -k1,12271:14077577,7805340:3277 -h1,12271:15839413,7805340:0,411205,112570 -) -k1,12271:16126435,7805340:283745 -k1,12271:18153438,7805340:283745 -k1,12271:21072387,7805340:283746 -k1,12271:23634819,7805340:283745 -k1,12271:26060281,7805340:283745 -k1,12271:27535472,7805340:283746 -k1,12271:30479979,7805340:283745 -k1,12271:31966991,7805340:0 -) -(1,12272:7246811,8646828:24720180,505283,134348 -g1,12271:8637485,8646828 -g1,12271:9561542,8646828 -g1,12271:11140959,8646828 -g1,12271:12331748,8646828 -g1,12271:13597248,8646828 -g1,12271:16499837,8646828 -k1,12272:31966991,8646828:13003656 -g1,12272:31966991,8646828 -) -(1,12274:7246811,9488316:24720180,513147,126483 -h1,12273:7246811,9488316:983040,0,0 -k1,12273:8993033,9488316:285425 -k1,12273:10146810,9488316:285425 -k1,12273:12730583,9488316:285425 -(1,12273:12730583,9488316:0,452978,115847 -r1,12321:14847408,9488316:2116825,568825,115847 -k1,12273:12730583,9488316:-2116825 -) -(1,12273:12730583,9488316:2116825,452978,115847 -k1,12273:12730583,9488316:3277 -h1,12273:14844131,9488316:0,411205,112570 -) -k1,12273:15132832,9488316:285424 -k1,12273:16179785,9488316:285425 -(1,12273:16179785,9488316:0,459977,115847 -r1,12321:19703457,9488316:3523672,575824,115847 -k1,12273:16179785,9488316:-3523672 -) -(1,12273:16179785,9488316:3523672,459977,115847 -k1,12273:16179785,9488316:3277 -h1,12273:19700180,9488316:0,411205,112570 -) -k1,12273:19988882,9488316:285425 -k1,12273:20890345,9488316:285425 -k1,12273:22194855,9488316:285425 -k1,12273:23786413,9488316:285425 -k1,12273:27431868,9488316:285424 -k1,12273:28908738,9488316:285425 -k1,12273:30947906,9488316:285425 -k1,12273:31966991,9488316:0 -) -(1,12274:7246811,10329804:24720180,513147,115847 -k1,12273:9620945,10329804:229796 -k1,12273:10869826,10329804:229796 -k1,12273:12942494,10329804:229796 -k1,12273:13831583,10329804:229797 -k1,12273:15080464,10329804:229796 -k1,12273:16458451,10329804:229796 -k1,12273:19874607,10329804:229796 -k1,12273:20720441,10329804:229796 -k1,12273:21969322,10329804:229796 -k1,12273:24169786,10329804:229796 -k1,12273:24931080,10329804:229797 -(1,12273:24931080,10329804:0,414482,115847 -r1,12321:26696193,10329804:1765113,530329,115847 -k1,12273:24931080,10329804:-1765113 -) -(1,12273:24931080,10329804:1765113,414482,115847 -k1,12273:24931080,10329804:3277 -h1,12273:26692916,10329804:0,411205,112570 -) -k1,12273:26925989,10329804:229796 -k1,12273:29482968,10329804:229796 -k1,12273:30379920,10329804:229796 -(1,12273:30379920,10329804:0,414482,115847 -r1,12321:31793321,10329804:1413401,530329,115847 -k1,12273:30379920,10329804:-1413401 -) -(1,12273:30379920,10329804:1413401,414482,115847 -k1,12273:30379920,10329804:3277 -h1,12273:31790044,10329804:0,411205,112570 -) -k1,12273:31966991,10329804:0 -) -(1,12274:7246811,11171292:24720180,513147,134348 -k1,12273:8272408,11171292:281108 -k1,12273:9572601,11171292:281108 -k1,12273:11279117,11171292:281108 -k1,12273:12219517,11171292:281108 -k1,12273:14758340,11171292:281108 -k1,12273:17518019,11171292:281107 -k1,12273:19193078,11171292:281108 -k1,12273:19830046,11171292:281108 -(1,12273:19830046,11171292:0,459977,115847 -r1,12321:23353718,11171292:3523672,575824,115847 -k1,12273:19830046,11171292:-3523672 -) -(1,12273:19830046,11171292:3523672,459977,115847 -k1,12273:19830046,11171292:3277 -h1,12273:23350441,11171292:0,411205,112570 -) -k1,12273:23634826,11171292:281108 -k1,12273:26049131,11171292:281108 -k1,12273:29084062,11171292:281108 -k1,12273:31966991,11171292:0 -) -(1,12274:7246811,12012780:24720180,513147,134348 -k1,12273:8922650,12012780:281888 -(1,12273:8922650,12012780:0,452978,122846 -r1,12321:12446322,12012780:3523672,575824,122846 -k1,12273:8922650,12012780:-3523672 -) -(1,12273:8922650,12012780:3523672,452978,122846 -k1,12273:8922650,12012780:3277 -h1,12273:12443045,12012780:0,411205,112570 -) -k1,12273:12728211,12012780:281889 -k1,12273:15763266,12012780:281888 -k1,12273:16806683,12012780:281889 -k1,12273:20801186,12012780:281888 -k1,12273:22477025,12012780:281888 -(1,12273:22477025,12012780:0,452978,122846 -r1,12321:25648985,12012780:3171960,575824,122846 -k1,12273:22477025,12012780:-3171960 -) -(1,12273:22477025,12012780:3171960,452978,122846 -k1,12273:22477025,12012780:3277 -h1,12273:25645708,12012780:0,411205,112570 -) -k1,12273:25930874,12012780:281889 -k1,12273:27313767,12012780:281888 -k1,12273:28614741,12012780:281889 -k1,12273:30196208,12012780:281888 -k1,12273:31966991,12012780:0 -) -(1,12274:7246811,12854268:24720180,513147,134348 -k1,12273:8119095,12854268:212992 -k1,12273:11715055,12854268:212992 -k1,12273:12947132,12854268:212992 -k1,12273:14549487,12854268:212992 -k1,12273:16638775,12854268:212992 -k1,12273:18119233,12854268:212992 -k1,12273:18688085,12854268:212992 -k1,12273:20886162,12854268:212991 -k1,12273:22479998,12854268:212992 -k1,12273:23224487,12854268:212992 -k1,12273:26791612,12854268:212992 -k1,12273:27656032,12854268:212992 -k1,12273:28616790,12854268:212992 -k1,12273:30183756,12854268:212992 -k1,12273:31966991,12854268:0 -) -(1,12274:7246811,13695756:24720180,513147,126483 -k1,12273:9275622,13695756:160380 -k1,12273:10268965,13695756:160380 -k1,12273:11115507,13695756:160380 -k1,12273:12930672,13695756:160381 -k1,12273:14082612,13695756:160380 -k1,12273:17759654,13695756:160380 -k1,12273:18536072,13695756:160380 -k1,12273:20026833,13695756:160380 -k1,12273:21206298,13695756:160380 -k1,12273:24581220,13695756:160381 -k1,12273:27488214,13695756:160380 -(1,12273:27488214,13695756:0,452978,115847 -r1,12321:29253328,13695756:1765114,568825,115847 -k1,12273:27488214,13695756:-1765114 -) -(1,12273:27488214,13695756:1765114,452978,115847 -g1,12273:28194915,13695756 -g1,12273:28898339,13695756 -h1,12273:29250051,13695756:0,411205,112570 -) -k1,12273:29413708,13695756:160380 -k1,12273:31966991,13695756:0 -) -(1,12274:7246811,14537244:24720180,513147,134348 -k1,12273:8137305,14537244:274456 -k1,12273:9430845,14537244:274455 -k1,12273:10877740,14537244:274456 -k1,12273:13023248,14537244:274455 -k1,12273:14494391,14537244:274456 -k1,12273:16067114,14537244:274455 -k1,12273:17579545,14537244:274456 -k1,12273:18505428,14537244:274455 -k1,12273:20394691,14537244:274456 -k1,12273:22165333,14537244:274455 -k1,12273:24798430,14537244:274456 -k1,12273:26165370,14537244:274455 -k1,12273:27099118,14537244:274456 -k1,12273:30399370,14537244:274455 -k1,12273:31966991,14537244:0 -) -(1,12274:7246811,15378732:24720180,513147,126483 -g1,12273:9418673,15378732 -g1,12273:10809347,15378732 -g1,12273:12813437,15378732 -g1,12273:13544163,15378732 -g1,12273:14394820,15378732 -g1,12273:16723314,15378732 -g1,12273:18015028,15378732 -g1,12273:20355974,15378732 -g1,12273:22882386,15378732 -g1,12273:23740907,15378732 -g1,12273:25329499,15378732 -k1,12274:31966991,15378732:4257224 -g1,12274:31966991,15378732 -) -] -) -] -r1,12321:32583029,16095039:26214,10234158,0 -) -] -) -) -g1,12274:32583029,15505215 -) -h1,12274:6630773,16121253:0,0,0 -(1,12277:6630773,18643962:25952256,555811,104529 -(1,12277:6630773,18643962:2450326,534184,12975 -g1,12277:6630773,18643962 -g1,12277:9081099,18643962 -) -k1,12277:32583028,18643962:21647784 -g1,12277:32583028,18643962 -) -(1,12281:6630773,19878666:25952256,505283,95026 -k1,12280:8556330,19878666:308128 -k1,12280:10546113,19878666:308129 -k1,12280:11599385,19878666:308128 -k1,12280:12558941,19878666:308128 -k1,12280:15578950,19878666:308129 -k1,12280:17059517,19878666:308128 -k1,12280:18757008,19878666:308128 -k1,12280:21504387,19878666:308129 -k1,12280:23697986,19878666:308128 -k1,12280:25742818,19878666:308128 -k1,12280:27743087,19878666:308129 -k1,12280:31066526,19878666:308128 -k1,12281:32583029,19878666:0 -) -(1,12281:6630773,20720154:25952256,513147,134348 -k1,12280:8463104,20720154:193276 -k1,12280:9272419,20720154:193277 -k1,12280:12243111,20720154:193276 -k1,12280:13427948,20720154:193277 -k1,12280:15134450,20720154:193276 -k1,12280:15979155,20720154:193277 -k1,12280:18153584,20720154:193276 -k1,12280:19365946,20720154:193277 -k1,12280:24182787,20720154:193276 -k1,12280:25910262,20720154:193277 -k1,12280:28146295,20720154:193276 -k1,12280:31167451,20720154:193277 -k1,12281:32583029,20720154:0 -) -(1,12281:6630773,21561642:25952256,513147,134348 -k1,12280:8498132,21561642:228304 -k1,12280:10003076,21561642:228303 -k1,12280:13151664,21561642:228304 -k1,12280:14947588,21561642:228303 -k1,12280:16642588,21561642:228304 -k1,12280:19310141,21561642:228303 -k1,12280:22392538,21561642:228304 -k1,12280:24453228,21561642:228303 -k1,12280:25673092,21561642:228304 -k1,12280:28132896,21561642:228303 -k1,12280:29557232,21561642:228304 -k1,12280:32583029,21561642:0 -) -(1,12281:6630773,22403130:25952256,513147,126483 -k1,12280:7495673,22403130:248862 -k1,12280:9890838,22403130:248862 -k1,12280:11697491,22403130:248862 -k1,12280:13689611,22403130:248862 -k1,12280:16096574,22403130:248862 -k1,12280:16961474,22403130:248862 -k1,12280:18540717,22403130:248862 -k1,12280:20169768,22403130:248863 -k1,12280:22577386,22403130:248862 -k1,12280:24360446,22403130:248862 -k1,12280:25893814,22403130:248862 -k1,12280:26957944,22403130:248862 -k1,12280:28273077,22403130:248862 -k1,12280:29997154,22403130:248862 -k1,12280:30601876,22403130:248862 -k1,12280:32583029,22403130:0 -) -(1,12281:6630773,23244618:25952256,505283,7863 -g1,12280:9465205,23244618 -g1,12280:11053797,23244618 -k1,12281:32583029,23244618:18916312 -g1,12281:32583029,23244618 -) -(1,12283:6630773,24086106:25952256,513147,7863 -h1,12282:6630773,24086106:983040,0,0 -k1,12282:8786252,24086106:218890 -k1,12282:10934522,24086106:218890 -k1,12282:12551295,24086106:218890 -k1,12282:14462325,24086106:218890 -k1,12282:17309864,24086106:218890 -k1,12282:18918118,24086106:218891 -k1,12282:19788436,24086106:218890 -k1,12282:24040412,24086106:218890 -k1,12282:25278387,24086106:218890 -k1,12282:26589762,24086106:218890 -k1,12282:27467944,24086106:218890 -k1,12282:29383561,24086106:218890 -k1,12282:32583029,24086106:0 -) -(1,12283:6630773,24927594:25952256,505283,102891 -k1,12282:7750229,24927594:165907 -k1,12282:9048598,24927594:165907 -k1,12282:11143885,24927594:165907 -k1,12282:12482230,24927594:165906 -k1,12282:14364525,24927594:165907 -k1,12282:16845819,24927594:165907 -k1,12282:18405677,24927594:165907 -k1,12282:19728294,24927594:165907 -k1,12282:22277090,24927594:165907 -k1,12282:23059034,24927594:165906 -k1,12282:26002357,24927594:165907 -k1,12282:27359709,24927594:165907 -k1,12282:28682326,24927594:165907 -k1,12282:32583029,24927594:0 -) -(1,12283:6630773,25769082:25952256,505283,7863 -g1,12282:8033898,25769082 -g1,12282:8849165,25769082 -k1,12283:32583030,25769082:22108572 -g1,12283:32583030,25769082 -) -v1,12287:6630773,26866710:0,393216,0 -(1,12292:6630773,27829110:25952256,1355616,196608 -g1,12292:6630773,27829110 -g1,12292:6630773,27829110 -g1,12292:6434165,27829110 -(1,12292:6434165,27829110:0,1355616,196608 -r1,12321:32779637,27829110:26345472,1552224,196608 -k1,12292:6434165,27829110:-26345472 -) -(1,12292:6434165,27829110:26345472,1355616,196608 -[1,12292:6630773,27829110:25952256,1159008,0 -(1,12289:6630773,27080620:25952256,410518,82312 -(1,12288:6630773,27080620:0,0,0 -g1,12288:6630773,27080620 -g1,12288:6630773,27080620 -g1,12288:6303093,27080620 -(1,12288:6303093,27080620:0,0,0 -) -g1,12288:6630773,27080620 -) -g1,12289:9476084,27080620 -g1,12289:10424522,27080620 -g1,12289:13902125,27080620 -g1,12289:14534417,27080620 -g1,12289:16747439,27080620 -g1,12289:18012023,27080620 -g1,12289:20541189,27080620 -g1,12289:21173481,27080620 -h1,12289:22438064,27080620:0,0,0 -k1,12289:32583029,27080620:10144965 -g1,12289:32583029,27080620 -) -(1,12290:6630773,27746798:25952256,404226,82312 -h1,12290:6630773,27746798:0,0,0 -g1,12290:9792230,27746798 -g1,12290:10740668,27746798 -g1,12290:14218271,27746798 -g1,12290:14850563,27746798 -g1,12290:17063585,27746798 -g1,12290:18328169,27746798 -g1,12290:20857335,27746798 -g1,12290:21489627,27746798 -h1,12290:22754210,27746798:0,0,0 -k1,12290:32583029,27746798:9828819 -g1,12290:32583029,27746798 -) -] -) -g1,12292:32583029,27829110 -g1,12292:6630773,27829110 -g1,12292:6630773,27829110 -g1,12292:32583029,27829110 -g1,12292:32583029,27829110 -) -h1,12292:6630773,28025718:0,0,0 -(1,12296:6630773,29298655:25952256,513147,126483 -h1,12295:6630773,29298655:983040,0,0 -k1,12295:9767419,29298655:286485 -k1,12295:10922255,29298655:286484 -k1,12295:12972314,29298655:286485 -k1,12295:14277884,29298655:286485 -k1,12295:14277884,29298655:0 -k1,12295:17590165,29298655:286484 -k1,12295:20717636,29298655:286485 -k1,12295:21765649,29298655:286485 -k1,12295:24198436,29298655:286484 -(1,12295:24198436,29298655:0,459977,122846 -r1,12321:28073820,29298655:3875384,582823,122846 -k1,12295:24198436,29298655:-3875384 -) -(1,12295:24198436,29298655:3875384,459977,122846 -k1,12295:24198436,29298655:3277 -h1,12295:28070543,29298655:0,411205,112570 -) -k1,12295:28533975,29298655:286485 -(1,12295:28533975,29298655:0,459977,122846 -r1,12321:32409359,29298655:3875384,582823,122846 -k1,12295:28533975,29298655:-3875384 -) -(1,12295:28533975,29298655:3875384,459977,122846 -k1,12295:28533975,29298655:3277 -h1,12295:32406082,29298655:0,411205,112570 -) -k1,12296:32583029,29298655:0 -) -(1,12296:6630773,30140143:25952256,513147,126483 -(1,12295:6630773,30140143:0,452978,122846 -r1,12321:10857869,30140143:4227096,575824,122846 -k1,12295:6630773,30140143:-4227096 -) -(1,12295:6630773,30140143:4227096,452978,122846 -k1,12295:6630773,30140143:3277 -h1,12295:10854592,30140143:0,411205,112570 -) -k1,12295:11123940,30140143:266071 -k1,12295:12581455,30140143:266070 -(1,12295:12581455,30140143:0,452978,122846 -r1,12321:16808551,30140143:4227096,575824,122846 -k1,12295:12581455,30140143:-4227096 -) -(1,12295:12581455,30140143:4227096,452978,122846 -k1,12295:12581455,30140143:3277 -h1,12295:16805274,30140143:0,411205,112570 -) -k1,12295:17248292,30140143:266071 -k1,12295:19388693,30140143:266071 -k1,12295:22680560,30140143:266070 -k1,12295:25075896,30140143:266071 -k1,12295:27206466,30140143:266071 -k1,12295:28238652,30140143:266070 -k1,12295:31391584,30140143:266071 -k1,12295:32583029,30140143:0 -) -(1,12296:6630773,30981631:25952256,513147,134348 -k1,12295:7478557,30981631:231746 -k1,12295:9077383,30981631:231745 -k1,12295:9968421,30981631:231746 -k1,12295:12871413,30981631:231745 -k1,12295:15935625,30981631:231746 -k1,12295:17675353,30981631:231745 -k1,12295:18262959,30981631:231746 -k1,12295:19698600,30981631:231745 -k1,12295:20877997,30981631:231746 -k1,12295:22561364,30981631:231745 -k1,12295:25764512,30981631:231746 -k1,12295:29984123,30981631:231745 -k1,12295:30875161,30981631:231746 -k1,12295:32583029,30981631:0 -) -(1,12296:6630773,31823119:25952256,505283,134348 -k1,12295:7810780,31823119:226458 -k1,12295:10053780,31823119:226457 -k1,12295:11731860,31823119:226458 -k1,12295:14619734,31823119:226457 -k1,12295:16240143,31823119:226458 -k1,12295:17485685,31823119:226457 -k1,12295:21114772,31823119:226458 -k1,12295:23546517,31823119:226458 -k1,12295:24424402,31823119:226457 -(1,12295:24424402,31823119:0,414482,115847 -r1,12321:24782668,31823119:358266,530329,115847 -k1,12295:24424402,31823119:-358266 -) -(1,12295:24424402,31823119:358266,414482,115847 -k1,12295:24424402,31823119:3277 -h1,12295:24779391,31823119:0,411205,112570 -) -k1,12295:25009126,31823119:226458 -k1,12295:26427028,31823119:226457 -(1,12295:26427028,31823119:0,414482,115847 -r1,12321:26785294,31823119:358266,530329,115847 -k1,12295:26427028,31823119:-358266 -) -(1,12295:26427028,31823119:358266,414482,115847 -k1,12295:26427028,31823119:3277 -h1,12295:26782017,31823119:0,411205,112570 -) -k1,12295:27011752,31823119:226458 -k1,12295:30054946,31823119:226457 -k1,12295:30932832,31823119:226458 -k1,12295:32583029,31823119:0 -) -(1,12296:6630773,32664607:25952256,513147,126483 -g1,12295:8926499,32664607 -g1,12295:10786410,32664607 -g1,12295:12494278,32664607 -g1,12295:15455850,32664607 -k1,12296:32583029,32664607:14193788 -g1,12296:32583029,32664607 -) -(1,12298:6630773,33506095:25952256,513147,134348 -h1,12297:6630773,33506095:983040,0,0 -k1,12297:8290875,33506095:189474 -k1,12297:9570222,33506095:189483 -k1,12297:10997025,33506095:189483 -k1,12297:13381309,33506095:189483 -k1,12297:14336908,33506095:189483 -k1,12297:18105313,33506095:189484 -k1,12297:19828994,33506095:189483 -k1,12297:21849553,33506095:189483 -k1,12297:24511054,33506095:189483 -k1,12297:26711182,33506095:189483 -k1,12297:28294617,33506095:189484 -(1,12297:28294617,33506095:0,414482,115847 -r1,12321:29004595,33506095:709978,530329,115847 -k1,12297:28294617,33506095:-709978 -) -(1,12297:28294617,33506095:709978,414482,115847 -k1,12297:28294617,33506095:3277 -h1,12297:29001318,33506095:0,411205,112570 -) -k1,12297:29367748,33506095:189483 -k1,12297:30317449,33506095:189483 -k1,12297:32583029,33506095:0 -) -(1,12298:6630773,34347583:25952256,505283,115847 -k1,12297:7925790,34347583:275932 -k1,12297:10182875,34347583:275932 -k1,12297:10990303,34347583:275931 -k1,12297:12843687,34347583:275932 -k1,12297:13928989,34347583:275932 -k1,12297:16918112,34347583:275932 -k1,12297:18587995,34347583:275932 -k1,12297:19883012,34347583:275932 -k1,12297:21812416,34347583:275931 -k1,12297:23826363,34347583:275932 -k1,12297:24718333,34347583:275932 -(1,12297:24718333,34347583:0,414482,115847 -r1,12321:25076599,34347583:358266,530329,115847 -k1,12297:24718333,34347583:-358266 -) -(1,12297:24718333,34347583:358266,414482,115847 -k1,12297:24718333,34347583:3277 -h1,12297:25073322,34347583:0,411205,112570 -) -k1,12297:25352531,34347583:275932 -k1,12297:26819908,34347583:275932 -(1,12297:26819908,34347583:0,414482,115847 -r1,12321:27178174,34347583:358266,530329,115847 -k1,12297:26819908,34347583:-358266 -) -(1,12297:26819908,34347583:358266,414482,115847 -k1,12297:26819908,34347583:3277 -h1,12297:27174897,34347583:0,411205,112570 -) -k1,12297:27627776,34347583:275932 -k1,12297:28975876,34347583:275931 -k1,12297:30455049,34347583:275932 -k1,12297:31835263,34347583:275932 -k1,12297:32583029,34347583:0 -) -(1,12298:6630773,35189071:25952256,505283,134348 -k1,12297:9452628,35189071:160438 -k1,12297:10374593,35189071:160437 -k1,12297:12962485,35189071:160438 -k1,12297:13893626,35189071:160438 -k1,12297:17126392,35189071:160438 -k1,12297:17938257,35189071:160437 -k1,12297:21379427,35189071:160438 -(1,12297:21379427,35189071:0,452978,115847 -r1,12321:22089405,35189071:709978,568825,115847 -k1,12297:21379427,35189071:-709978 -) -(1,12297:21379427,35189071:709978,452978,115847 -k1,12297:21379427,35189071:3277 -h1,12297:22086128,35189071:0,411205,112570 -) -k1,12297:22423513,35189071:160438 -k1,12297:24375704,35189071:160437 -(1,12297:24375704,35189071:0,452978,115847 -r1,12321:25085682,35189071:709978,568825,115847 -k1,12297:24375704,35189071:-709978 -) -(1,12297:24375704,35189071:709978,452978,115847 -k1,12297:24375704,35189071:3277 -h1,12297:25082405,35189071:0,411205,112570 -) -k1,12297:25246120,35189071:160438 -k1,12297:26563268,35189071:160438 -k1,12297:27827988,35189071:160438 -k1,12297:29422353,35189071:160437 -k1,12297:30601876,35189071:160438 -k1,12297:32583029,35189071:0 -) -(1,12298:6630773,36030559:25952256,513147,134348 -k1,12297:7631726,36030559:191583 -k1,12297:10536500,36030559:191583 -k1,12297:12012589,36030559:191583 -k1,12297:13679388,36030559:191584 -k1,12297:16633314,36030559:191583 -k1,12297:18893213,36030559:191583 -k1,12297:19700834,36030559:191583 -(1,12297:19700834,36030559:0,414482,115847 -r1,12321:20059100,36030559:358266,530329,115847 -k1,12297:19700834,36030559:-358266 -) -(1,12297:19700834,36030559:358266,414482,115847 -k1,12297:19700834,36030559:3277 -h1,12297:20055823,36030559:0,411205,112570 -) -k1,12297:20250683,36030559:191583 -k1,12297:21633711,36030559:191583 -(1,12297:21633711,36030559:0,414482,115847 -r1,12321:21991977,36030559:358266,530329,115847 -k1,12297:21633711,36030559:-358266 -) -(1,12297:21633711,36030559:358266,414482,115847 -k1,12297:21633711,36030559:3277 -h1,12297:21988700,36030559:0,411205,112570 -) -k1,12297:22357230,36030559:191583 -k1,12297:23231699,36030559:191584 -k1,12297:25855978,36030559:191583 -k1,12297:29018963,36030559:191583 -k1,12297:29869838,36030559:191583 -k1,12297:32583029,36030559:0 -) -(1,12298:6630773,36872047:25952256,513147,126483 -g1,12297:8223953,36872047 -g1,12297:9442267,36872047 -g1,12297:11294969,36872047 -g1,12297:13232213,36872047 -g1,12297:14047480,36872047 -(1,12297:14047480,36872047:0,414482,115847 -r1,12321:14405746,36872047:358266,530329,115847 -k1,12297:14047480,36872047:-358266 -) -(1,12297:14047480,36872047:358266,414482,115847 -k1,12297:14047480,36872047:3277 -h1,12297:14402469,36872047:0,411205,112570 -) -g1,12297:14604975,36872047 -g1,12297:15995649,36872047 -(1,12297:15995649,36872047:0,414482,115847 -r1,12321:16353915,36872047:358266,530329,115847 -k1,12297:15995649,36872047:-358266 -) -(1,12297:15995649,36872047:358266,414482,115847 -k1,12297:15995649,36872047:3277 -h1,12297:16350638,36872047:0,411205,112570 -) -g1,12297:16553144,36872047 -g1,12297:19620884,36872047 -g1,12297:20432875,36872047 -g1,12297:21815029,36872047 -g1,12297:22673550,36872047 -g1,12297:23891864,36872047 -k1,12298:32583029,36872047:6031714 -g1,12298:32583029,36872047 -) -v1,12300:6630773,37969675:0,393216,0 -(1,12317:6630773,45510161:25952256,7933702,196608 -g1,12317:6630773,45510161 -g1,12317:6630773,45510161 -g1,12317:6434165,45510161 -(1,12317:6434165,45510161:0,7933702,196608 -r1,12321:32779637,45510161:26345472,8130310,196608 -k1,12317:6434165,45510161:-26345472 -) -(1,12317:6434165,45510161:26345472,7933702,196608 -[1,12317:6630773,45510161:25952256,7737094,0 -(1,12302:6630773,38183585:25952256,410518,107478 -(1,12301:6630773,38183585:0,0,0 -g1,12301:6630773,38183585 -g1,12301:6630773,38183585 -g1,12301:6303093,38183585 -(1,12301:6303093,38183585:0,0,0 -) -g1,12301:6630773,38183585 -) -k1,12302:6630773,38183585:0 -g1,12302:10424522,38183585 -g1,12302:11056814,38183585 -g1,12302:14218271,38183585 -g1,12302:14850563,38183585 -g1,12302:15482855,38183585 -h1,12302:18644312,38183585:0,0,0 -k1,12302:32583029,38183585:13938717 -g1,12302:32583029,38183585 -) -(1,12306:6630773,39505123:25952256,404226,107478 -g1,12306:7579210,39505123 -g1,12306:10424521,39505123 -g1,12306:11372958,39505123 -g1,12306:12005250,39505123 -k1,12306:32583030,39505123:18997052 -g1,12306:32583030,39505123 -) -(1,12316:6630773,40171301:25952256,404226,9436 -(1,12306:6630773,40171301:0,0,0 -g1,12306:6630773,40171301 -g1,12306:6630773,40171301 -g1,12306:6303093,40171301 -(1,12306:6303093,40171301:0,0,0 -) -g1,12306:6630773,40171301 -) -g1,12316:7579210,40171301 -g1,12316:8211502,40171301 -g1,12316:8843794,40171301 -g1,12316:11372960,40171301 -g1,12316:12005252,40171301 -g1,12316:12637544,40171301 -h1,12316:12953690,40171301:0,0,0 -k1,12316:32583030,40171301:19629340 -g1,12316:32583030,40171301 -) -(1,12316:6630773,40837479:25952256,404226,6290 -h1,12316:6630773,40837479:0,0,0 -g1,12316:7579210,40837479 -g1,12316:7895356,40837479 -g1,12316:8211502,40837479 -g1,12316:8527648,40837479 -g1,12316:8843794,40837479 -g1,12316:10108377,40837479 -g1,12316:12637543,40837479 -h1,12316:14850563,40837479:0,0,0 -k1,12316:32583029,40837479:17732466 -g1,12316:32583029,40837479 -) -(1,12316:6630773,41503657:25952256,404226,6290 -h1,12316:6630773,41503657:0,0,0 -g1,12316:7579210,41503657 -g1,12316:7895356,41503657 -g1,12316:8211502,41503657 -g1,12316:10108377,41503657 -g1,12316:12005252,41503657 -g1,12316:12321398,41503657 -g1,12316:12637544,41503657 -k1,12316:12637544,41503657:0 -h1,12316:14218273,41503657:0,0,0 -k1,12316:32583029,41503657:18364756 -g1,12316:32583029,41503657 -) -(1,12316:6630773,42169835:25952256,404226,6290 -h1,12316:6630773,42169835:0,0,0 -g1,12316:7579210,42169835 -g1,12316:8211502,42169835 -g1,12316:8527648,42169835 -g1,12316:8843794,42169835 -g1,12316:9159940,42169835 -g1,12316:9476086,42169835 -g1,12316:10108378,42169835 -g1,12316:10740670,42169835 -g1,12316:11056816,42169835 -g1,12316:11372962,42169835 -g1,12316:11689108,42169835 -g1,12316:12005254,42169835 -g1,12316:12321400,42169835 -g1,12316:12637546,42169835 -h1,12316:12953692,42169835:0,0,0 -k1,12316:32583028,42169835:19629336 -g1,12316:32583028,42169835 -) -(1,12316:6630773,42836013:25952256,404226,6290 -h1,12316:6630773,42836013:0,0,0 -g1,12316:7579210,42836013 -g1,12316:8211502,42836013 -g1,12316:8527648,42836013 -g1,12316:8843794,42836013 -g1,12316:9159940,42836013 -g1,12316:9476086,42836013 -g1,12316:10108378,42836013 -g1,12316:10740670,42836013 -g1,12316:11056816,42836013 -g1,12316:11372962,42836013 -g1,12316:11689108,42836013 -g1,12316:12005254,42836013 -g1,12316:12321400,42836013 -g1,12316:12637546,42836013 -h1,12316:12953692,42836013:0,0,0 -k1,12316:32583028,42836013:19629336 -g1,12316:32583028,42836013 -) -(1,12316:6630773,43502191:25952256,404226,9436 -h1,12316:6630773,43502191:0,0,0 -g1,12316:7579210,43502191 -g1,12316:8211502,43502191 -g1,12316:8527648,43502191 -g1,12316:8843794,43502191 -g1,12316:9159940,43502191 -g1,12316:9476086,43502191 -g1,12316:10108378,43502191 -g1,12316:10740670,43502191 -g1,12316:11056816,43502191 -g1,12316:11372962,43502191 -g1,12316:11689108,43502191 -g1,12316:12005254,43502191 -g1,12316:12321400,43502191 -g1,12316:12637546,43502191 -h1,12316:12953692,43502191:0,0,0 -k1,12316:32583028,43502191:19629336 -g1,12316:32583028,43502191 -) -(1,12316:6630773,44168369:25952256,404226,6290 -h1,12316:6630773,44168369:0,0,0 -g1,12316:7579210,44168369 -g1,12316:8211502,44168369 -g1,12316:8527648,44168369 -g1,12316:8843794,44168369 -g1,12316:9159940,44168369 -g1,12316:9476086,44168369 -g1,12316:10108378,44168369 -g1,12316:10740670,44168369 -g1,12316:11056816,44168369 -g1,12316:11372962,44168369 -g1,12316:11689108,44168369 -g1,12316:12005254,44168369 -g1,12316:12321400,44168369 -g1,12316:12637546,44168369 -h1,12316:12953692,44168369:0,0,0 -k1,12316:32583028,44168369:19629336 -g1,12316:32583028,44168369 -) -(1,12316:6630773,44834547:25952256,379060,9436 -h1,12316:6630773,44834547:0,0,0 -g1,12316:7579210,44834547 -g1,12316:8211502,44834547 -g1,12316:8527648,44834547 -g1,12316:8843794,44834547 -g1,12316:9159940,44834547 -g1,12316:9476086,44834547 -g1,12316:10108378,44834547 -g1,12316:10740670,44834547 -g1,12316:11056816,44834547 -g1,12316:11372962,44834547 -g1,12316:11689108,44834547 -g1,12316:12005254,44834547 -g1,12316:12321400,44834547 -g1,12316:12637546,44834547 -k1,12316:12637546,44834547:0 -h1,12316:13902129,44834547:0,0,0 -k1,12316:32583029,44834547:18680900 -g1,12316:32583029,44834547 -) -(1,12316:6630773,45500725:25952256,404226,9436 -h1,12316:6630773,45500725:0,0,0 -g1,12316:7579210,45500725 -g1,12316:8211502,45500725 -g1,12316:8527648,45500725 -g1,12316:8843794,45500725 -g1,12316:9159940,45500725 -g1,12316:9476086,45500725 -g1,12316:10108378,45500725 -g1,12316:11689107,45500725 -g1,12316:12005253,45500725 -g1,12316:12321399,45500725 -g1,12316:12637545,45500725 -h1,12316:12953691,45500725:0,0,0 -k1,12316:32583029,45500725:19629338 -g1,12316:32583029,45500725 -) -] -) -g1,12317:32583029,45510161 -g1,12317:6630773,45510161 -g1,12317:6630773,45510161 -g1,12317:32583029,45510161 -g1,12317:32583029,45510161 -) -h1,12317:6630773,45706769:0,0,0 -] -(1,12321:32583029,45706769:0,0,0 -g1,12321:32583029,45706769 -) -) -] -(1,12321:6630773,47279633:25952256,0,0 -h1,12321:6630773,47279633:25952256,0,0 -) -] -(1,12321:4262630,4025873:0,0,0 -[1,12321:-473656,4025873:0,0,0 -(1,12321:-473656,-710413:0,0,0 -(1,12321:-473656,-710413:0,0,0 -g1,12321:-473656,-710413 -) -g1,12321:-473656,-710413 -) -] -) -] -!31332 -}229 -Input:1735:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1736:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!196 -{230 -[1,12420:4262630,47279633:28320399,43253760,0 -(1,12420:4262630,4025873:0,0,0 -[1,12420:-473656,4025873:0,0,0 -(1,12420:-473656,-710413:0,0,0 -(1,12420:-473656,-644877:0,0,0 -k1,12420:-473656,-644877:-65536 -) -(1,12420:-473656,4736287:0,0,0 -k1,12420:-473656,4736287:5209943 -) -g1,12420:-473656,-710413 -) -] -) -[1,12420:6630773,47279633:25952256,43253760,0 -[1,12420:6630773,4812305:25952256,786432,0 -(1,12420:6630773,4812305:25952256,505283,126483 -(1,12420:6630773,4812305:25952256,505283,126483 -g1,12420:3078558,4812305 -[1,12420:3078558,4812305:0,0,0 -(1,12420:3078558,2439708:0,1703936,0 -k1,12420:1358238,2439708:-1720320 -(1,11088:1358238,2439708:1720320,1703936,0 -(1,11088:1358238,2439708:1179648,16384,0 -r1,12420:2537886,2439708:1179648,16384,0 -) -g1,11088:3062174,2439708 -(1,11088:3062174,2439708:16384,1703936,0 -[1,11088:3062174,2439708:25952256,1703936,0 -(1,11088:3062174,1915420:25952256,1179648,0 -(1,11088:3062174,1915420:16384,1179648,0 -r1,12420:3078558,1915420:16384,1179648,0 -) -k1,11088:29014430,1915420:25935872 -g1,11088:29014430,1915420 -) -] -) -) -) -] -[1,12420:3078558,4812305:0,0,0 -(1,12420:3078558,2439708:0,1703936,0 -g1,12420:29030814,2439708 -g1,12420:36135244,2439708 -(1,11088:36135244,2439708:1720320,1703936,0 -(1,11088:36135244,2439708:16384,1703936,0 -[1,11088:36135244,2439708:25952256,1703936,0 -(1,11088:36135244,1915420:25952256,1179648,0 -(1,11088:36135244,1915420:16384,1179648,0 -r1,12420:36151628,1915420:16384,1179648,0 -) -k1,11088:62087500,1915420:25935872 -g1,11088:62087500,1915420 -) -] -) -g1,11088:36675916,2439708 -(1,11088:36675916,2439708:1179648,16384,0 -r1,12420:37855564,2439708:1179648,16384,0 -) -) -k1,12420:3078556,2439708:-34777008 -) -] -[1,12420:3078558,4812305:0,0,0 -(1,12420:3078558,49800853:0,16384,2228224 -k1,12420:1358238,49800853:-1720320 -(1,11088:1358238,49800853:1720320,16384,2228224 -(1,11088:1358238,49800853:1179648,16384,0 -r1,12420:2537886,49800853:1179648,16384,0 -) -g1,11088:3062174,49800853 -(1,11088:3062174,52029077:16384,1703936,0 -[1,11088:3062174,52029077:25952256,1703936,0 -(1,11088:3062174,51504789:25952256,1179648,0 -(1,11088:3062174,51504789:16384,1179648,0 -r1,12420:3078558,51504789:16384,1179648,0 -) -k1,11088:29014430,51504789:25935872 -g1,11088:29014430,51504789 -) -] -) -) -) -] -[1,12420:3078558,4812305:0,0,0 -(1,12420:3078558,49800853:0,16384,2228224 -g1,12420:29030814,49800853 -g1,12420:36135244,49800853 -(1,11088:36135244,49800853:1720320,16384,2228224 -(1,11088:36135244,52029077:16384,1703936,0 -[1,11088:36135244,52029077:25952256,1703936,0 -(1,11088:36135244,51504789:25952256,1179648,0 -(1,11088:36135244,51504789:16384,1179648,0 -r1,12420:36151628,51504789:16384,1179648,0 -) -k1,11088:62087500,51504789:25935872 -g1,11088:62087500,51504789 -) -] -) -g1,11088:36675916,49800853 -(1,11088:36675916,49800853:1179648,16384,0 -r1,12420:37855564,49800853:1179648,16384,0 -) -) -k1,12420:3078556,49800853:-34777008 -) -] -g1,12420:6630773,4812305 -g1,12420:6630773,4812305 -g1,12420:8364200,4812305 -g1,12420:12785258,4812305 -g1,12420:14347636,4812305 -g1,12420:16554232,4812305 -k1,12420:31387652,4812305:14833420 -) -) -] -[1,12420:6630773,45706769:25952256,40108032,0 -(1,12420:6630773,45706769:25952256,40108032,0 -(1,12420:6630773,45706769:0,0,0 -g1,12420:6630773,45706769 -) -[1,12420:6630773,45706769:25952256,40108032,0 -v1,12321:6630773,6254097:0,393216,0 -(1,12338:6630773,13794583:25952256,7933702,196608 -g1,12338:6630773,13794583 -g1,12338:6630773,13794583 -g1,12338:6434165,13794583 -(1,12338:6434165,13794583:0,7933702,196608 -r1,12420:32779637,13794583:26345472,8130310,196608 -k1,12338:6434165,13794583:-26345472 -) -(1,12338:6434165,13794583:26345472,7933702,196608 -[1,12338:6630773,13794583:25952256,7737094,0 -(1,12323:6630773,6468007:25952256,410518,107478 -(1,12322:6630773,6468007:0,0,0 -g1,12322:6630773,6468007 -g1,12322:6630773,6468007 -g1,12322:6303093,6468007 -(1,12322:6303093,6468007:0,0,0 -) -g1,12322:6630773,6468007 -) -k1,12323:6630773,6468007:0 -g1,12323:10424522,6468007 -g1,12323:11056814,6468007 -g1,12323:14534417,6468007 -g1,12323:15166709,6468007 -g1,12323:15799001,6468007 -h1,12323:18644312,6468007:0,0,0 -k1,12323:32583029,6468007:13938717 -g1,12323:32583029,6468007 -) -(1,12327:6630773,7789545:25952256,404226,107478 -g1,12327:7579210,7789545 -g1,12327:10424521,7789545 -g1,12327:11372958,7789545 -g1,12327:12005250,7789545 -k1,12327:32583030,7789545:18997052 -g1,12327:32583030,7789545 -) -(1,12337:6630773,8455723:25952256,404226,9436 -(1,12327:6630773,8455723:0,0,0 -g1,12327:6630773,8455723 -g1,12327:6630773,8455723 -g1,12327:6303093,8455723 -(1,12327:6303093,8455723:0,0,0 -) -g1,12327:6630773,8455723 -) -g1,12337:7579210,8455723 -g1,12337:8211502,8455723 -g1,12337:8843794,8455723 -g1,12337:11372960,8455723 -g1,12337:12005252,8455723 -g1,12337:12637544,8455723 -h1,12337:12953690,8455723:0,0,0 -k1,12337:32583030,8455723:19629340 -g1,12337:32583030,8455723 -) -(1,12337:6630773,9121901:25952256,404226,6290 -h1,12337:6630773,9121901:0,0,0 -g1,12337:7579210,9121901 -g1,12337:7895356,9121901 -g1,12337:8211502,9121901 -g1,12337:8527648,9121901 -g1,12337:8843794,9121901 -g1,12337:10108377,9121901 -g1,12337:12637543,9121901 -h1,12337:14850563,9121901:0,0,0 -k1,12337:32583029,9121901:17732466 -g1,12337:32583029,9121901 -) -(1,12337:6630773,9788079:25952256,404226,6290 -h1,12337:6630773,9788079:0,0,0 -g1,12337:7579210,9788079 -g1,12337:7895356,9788079 -g1,12337:8211502,9788079 -g1,12337:10108377,9788079 -g1,12337:12005252,9788079 -g1,12337:12321398,9788079 -g1,12337:12637544,9788079 -k1,12337:12637544,9788079:0 -h1,12337:14218273,9788079:0,0,0 -k1,12337:32583029,9788079:18364756 -g1,12337:32583029,9788079 -) -(1,12337:6630773,10454257:25952256,404226,6290 -h1,12337:6630773,10454257:0,0,0 -g1,12337:7579210,10454257 -g1,12337:8211502,10454257 -g1,12337:8527648,10454257 -g1,12337:8843794,10454257 -g1,12337:9159940,10454257 -g1,12337:9476086,10454257 -g1,12337:10108378,10454257 -g1,12337:10740670,10454257 -g1,12337:11056816,10454257 -g1,12337:11372962,10454257 -g1,12337:11689108,10454257 -g1,12337:12005254,10454257 -g1,12337:12321400,10454257 -g1,12337:12637546,10454257 -h1,12337:12953692,10454257:0,0,0 -k1,12337:32583028,10454257:19629336 -g1,12337:32583028,10454257 -) -(1,12337:6630773,11120435:25952256,404226,6290 -h1,12337:6630773,11120435:0,0,0 -g1,12337:7579210,11120435 -g1,12337:8211502,11120435 -g1,12337:8527648,11120435 -g1,12337:8843794,11120435 -g1,12337:9159940,11120435 -g1,12337:9476086,11120435 -g1,12337:10108378,11120435 -g1,12337:10740670,11120435 -g1,12337:11056816,11120435 -g1,12337:11372962,11120435 -g1,12337:11689108,11120435 -g1,12337:12005254,11120435 -g1,12337:12321400,11120435 -g1,12337:12637546,11120435 -h1,12337:12953692,11120435:0,0,0 -k1,12337:32583028,11120435:19629336 -g1,12337:32583028,11120435 -) -(1,12337:6630773,11786613:25952256,404226,9436 -h1,12337:6630773,11786613:0,0,0 -g1,12337:7579210,11786613 -g1,12337:8211502,11786613 -g1,12337:8527648,11786613 -g1,12337:8843794,11786613 -g1,12337:9159940,11786613 -g1,12337:9476086,11786613 -g1,12337:10108378,11786613 -g1,12337:10740670,11786613 -g1,12337:11056816,11786613 -g1,12337:11372962,11786613 -g1,12337:11689108,11786613 -g1,12337:12005254,11786613 -g1,12337:12321400,11786613 -g1,12337:12637546,11786613 -h1,12337:12953692,11786613:0,0,0 -k1,12337:32583028,11786613:19629336 -g1,12337:32583028,11786613 -) -(1,12337:6630773,12452791:25952256,404226,6290 -h1,12337:6630773,12452791:0,0,0 -g1,12337:7579210,12452791 -g1,12337:8211502,12452791 -g1,12337:8527648,12452791 -g1,12337:8843794,12452791 -g1,12337:9159940,12452791 -g1,12337:9476086,12452791 -g1,12337:10108378,12452791 -g1,12337:10740670,12452791 -g1,12337:11056816,12452791 -g1,12337:11372962,12452791 -g1,12337:11689108,12452791 -g1,12337:12005254,12452791 -g1,12337:12321400,12452791 -g1,12337:12637546,12452791 -h1,12337:12953692,12452791:0,0,0 -k1,12337:32583028,12452791:19629336 -g1,12337:32583028,12452791 -) -(1,12337:6630773,13118969:25952256,404226,9436 -h1,12337:6630773,13118969:0,0,0 -g1,12337:7579210,13118969 -g1,12337:8211502,13118969 -g1,12337:8527648,13118969 -g1,12337:8843794,13118969 -g1,12337:9159940,13118969 -g1,12337:9476086,13118969 -g1,12337:10108378,13118969 -g1,12337:10740670,13118969 -g1,12337:11056816,13118969 -g1,12337:11372962,13118969 -g1,12337:11689108,13118969 -g1,12337:12005254,13118969 -g1,12337:12321400,13118969 -g1,12337:12637546,13118969 -k1,12337:12637546,13118969:0 -h1,12337:13902129,13118969:0,0,0 -k1,12337:32583029,13118969:18680900 -g1,12337:32583029,13118969 -) -(1,12337:6630773,13785147:25952256,388497,9436 -h1,12337:6630773,13785147:0,0,0 -g1,12337:7579210,13785147 -g1,12337:8211502,13785147 -g1,12337:8527648,13785147 -g1,12337:8843794,13785147 -g1,12337:9159940,13785147 -g1,12337:9476086,13785147 -g1,12337:10108378,13785147 -g1,12337:11689107,13785147 -g1,12337:12005253,13785147 -g1,12337:12321399,13785147 -g1,12337:12637545,13785147 -h1,12337:12953691,13785147:0,0,0 -k1,12337:32583029,13785147:19629338 -g1,12337:32583029,13785147 -) -] -) -g1,12338:32583029,13794583 -g1,12338:6630773,13794583 -g1,12338:6630773,13794583 -g1,12338:32583029,13794583 -g1,12338:32583029,13794583 -) -h1,12338:6630773,13991191:0,0,0 -(1,12342:6630773,15356967:25952256,513147,134348 -h1,12341:6630773,15356967:983040,0,0 -k1,12341:9125448,15356967:277592 -k1,12341:10594484,15356967:277591 -k1,12341:12407585,15356967:277592 -k1,12341:14252798,15356967:277592 -k1,12341:16394889,15356967:277592 -k1,12341:18206678,15356967:277591 -k1,12341:19550541,15356967:277592 -k1,12341:22577368,15356967:277592 -k1,12341:24422580,15356967:277591 -k1,12341:26075773,15356967:277592 -k1,12341:27510075,15356967:277592 -k1,12341:28446959,15356967:277592 -k1,12341:29743635,15356967:277591 -k1,12341:31193666,15356967:277592 -k1,12341:32583029,15356967:0 -) -(1,12342:6630773,16198455:25952256,505283,126483 -g1,12341:9442922,16198455 -(1,12341:9442922,16198455:0,414482,115847 -r1,12420:9801188,16198455:358266,530329,115847 -k1,12341:9442922,16198455:-358266 -) -(1,12341:9442922,16198455:358266,414482,115847 -k1,12341:9442922,16198455:3277 -h1,12341:9797911,16198455:0,411205,112570 -) -g1,12341:10000417,16198455 -g1,12341:11391091,16198455 -(1,12341:11391091,16198455:0,414482,115847 -r1,12420:11749357,16198455:358266,530329,115847 -k1,12341:11391091,16198455:-358266 -) -(1,12341:11391091,16198455:358266,414482,115847 -k1,12341:11391091,16198455:3277 -h1,12341:11746080,16198455:0,411205,112570 -) -g1,12341:12122256,16198455 -k1,12342:32583029,16198455:16490602 -g1,12342:32583029,16198455 -) -v1,12344:6630773,17388921:0,393216,0 -(1,12360:6630773,24263229:25952256,7267524,196608 -g1,12360:6630773,24263229 -g1,12360:6630773,24263229 -g1,12360:6434165,24263229 -(1,12360:6434165,24263229:0,7267524,196608 -r1,12420:32779637,24263229:26345472,7464132,196608 -k1,12360:6434165,24263229:-26345472 -) -(1,12360:6434165,24263229:26345472,7267524,196608 -[1,12360:6630773,24263229:25952256,7070916,0 -(1,12346:6630773,17602831:25952256,410518,107478 -(1,12345:6630773,17602831:0,0,0 -g1,12345:6630773,17602831 -g1,12345:6630773,17602831 -g1,12345:6303093,17602831 -(1,12345:6303093,17602831:0,0,0 -) -g1,12345:6630773,17602831 -) -k1,12346:6630773,17602831:0 -g1,12346:10424522,17602831 -g1,12346:11056814,17602831 -g1,12346:14218271,17602831 -g1,12346:14850563,17602831 -g1,12346:15482855,17602831 -h1,12346:18644312,17602831:0,0,0 -k1,12346:32583029,17602831:13938717 -g1,12346:32583029,17602831 -) -(1,12350:6630773,18924369:25952256,404226,107478 -g1,12350:7579210,18924369 -g1,12350:10424521,18924369 -g1,12350:11372958,18924369 -g1,12350:12005250,18924369 -k1,12350:32583030,18924369:18997052 -g1,12350:32583030,18924369 -) -(1,12359:6630773,19590547:25952256,404226,9436 -(1,12350:6630773,19590547:0,0,0 -g1,12350:6630773,19590547 -g1,12350:6630773,19590547 -g1,12350:6303093,19590547 -(1,12350:6303093,19590547:0,0,0 -) -g1,12350:6630773,19590547 -) -g1,12359:7579210,19590547 -g1,12359:8211502,19590547 -g1,12359:8843794,19590547 -g1,12359:11372960,19590547 -g1,12359:12005252,19590547 -g1,12359:12637544,19590547 -h1,12359:12953690,19590547:0,0,0 -k1,12359:32583030,19590547:19629340 -g1,12359:32583030,19590547 -) -(1,12359:6630773,20256725:25952256,404226,6290 -h1,12359:6630773,20256725:0,0,0 -g1,12359:7579210,20256725 -g1,12359:7895356,20256725 -g1,12359:8211502,20256725 -g1,12359:8527648,20256725 -g1,12359:8843794,20256725 -g1,12359:10108377,20256725 -g1,12359:12637543,20256725 -h1,12359:14850563,20256725:0,0,0 -k1,12359:32583029,20256725:17732466 -g1,12359:32583029,20256725 -) -(1,12359:6630773,20922903:25952256,404226,6290 -h1,12359:6630773,20922903:0,0,0 -g1,12359:7579210,20922903 -g1,12359:7895356,20922903 -g1,12359:8211502,20922903 -g1,12359:10108377,20922903 -g1,12359:12005252,20922903 -g1,12359:12321398,20922903 -g1,12359:12637544,20922903 -k1,12359:12637544,20922903:0 -h1,12359:14218273,20922903:0,0,0 -k1,12359:32583029,20922903:18364756 -g1,12359:32583029,20922903 -) -(1,12359:6630773,21589081:25952256,404226,6290 -h1,12359:6630773,21589081:0,0,0 -g1,12359:7579210,21589081 -g1,12359:8211502,21589081 -g1,12359:8527648,21589081 -g1,12359:8843794,21589081 -g1,12359:9159940,21589081 -g1,12359:9476086,21589081 -g1,12359:10108378,21589081 -g1,12359:10740670,21589081 -g1,12359:11056816,21589081 -g1,12359:11372962,21589081 -g1,12359:11689108,21589081 -g1,12359:12005254,21589081 -g1,12359:12321400,21589081 -g1,12359:12637546,21589081 -h1,12359:12953692,21589081:0,0,0 -k1,12359:32583028,21589081:19629336 -g1,12359:32583028,21589081 -) -(1,12359:6630773,22255259:25952256,404226,6290 -h1,12359:6630773,22255259:0,0,0 -g1,12359:7579210,22255259 -g1,12359:8211502,22255259 -g1,12359:8527648,22255259 -g1,12359:8843794,22255259 -g1,12359:9159940,22255259 -g1,12359:9476086,22255259 -g1,12359:10108378,22255259 -g1,12359:10740670,22255259 -g1,12359:11056816,22255259 -g1,12359:11372962,22255259 -g1,12359:11689108,22255259 -g1,12359:12005254,22255259 -g1,12359:12321400,22255259 -g1,12359:12637546,22255259 -h1,12359:12953692,22255259:0,0,0 -k1,12359:32583028,22255259:19629336 -g1,12359:32583028,22255259 -) -(1,12359:6630773,22921437:25952256,404226,9436 -h1,12359:6630773,22921437:0,0,0 -g1,12359:7579210,22921437 -g1,12359:8211502,22921437 -g1,12359:8527648,22921437 -g1,12359:8843794,22921437 -g1,12359:9159940,22921437 -g1,12359:9476086,22921437 -g1,12359:10108378,22921437 -g1,12359:10740670,22921437 -g1,12359:11056816,22921437 -g1,12359:11372962,22921437 -g1,12359:11689108,22921437 -g1,12359:12005254,22921437 -g1,12359:12321400,22921437 -g1,12359:12637546,22921437 -h1,12359:12953692,22921437:0,0,0 -k1,12359:32583028,22921437:19629336 -g1,12359:32583028,22921437 -) -(1,12359:6630773,23587615:25952256,404226,6290 -h1,12359:6630773,23587615:0,0,0 -g1,12359:7579210,23587615 -g1,12359:8211502,23587615 -g1,12359:8527648,23587615 -g1,12359:8843794,23587615 -g1,12359:9159940,23587615 -g1,12359:9476086,23587615 -g1,12359:10108378,23587615 -g1,12359:10740670,23587615 -g1,12359:11056816,23587615 -g1,12359:11372962,23587615 -g1,12359:11689108,23587615 -g1,12359:12005254,23587615 -g1,12359:12321400,23587615 -g1,12359:12637546,23587615 -h1,12359:12953692,23587615:0,0,0 -k1,12359:32583028,23587615:19629336 -g1,12359:32583028,23587615 -) -(1,12359:6630773,24253793:25952256,379060,9436 -h1,12359:6630773,24253793:0,0,0 -g1,12359:7579210,24253793 -g1,12359:8211502,24253793 -g1,12359:8527648,24253793 -g1,12359:8843794,24253793 -g1,12359:9159940,24253793 -g1,12359:9476086,24253793 -g1,12359:10108378,24253793 -g1,12359:10740670,24253793 -g1,12359:11056816,24253793 -g1,12359:11372962,24253793 -g1,12359:11689108,24253793 -g1,12359:12005254,24253793 -g1,12359:12321400,24253793 -g1,12359:12637546,24253793 -k1,12359:12637546,24253793:0 -h1,12359:13902129,24253793:0,0,0 -k1,12359:32583029,24253793:18680900 -g1,12359:32583029,24253793 -) -] -) -g1,12360:32583029,24263229 -g1,12360:6630773,24263229 -g1,12360:6630773,24263229 -g1,12360:32583029,24263229 -g1,12360:32583029,24263229 -) -h1,12360:6630773,24459837:0,0,0 -v1,12364:6630773,26174591:0,393216,0 -(1,12380:6630773,33048899:25952256,7267524,196608 -g1,12380:6630773,33048899 -g1,12380:6630773,33048899 -g1,12380:6434165,33048899 -(1,12380:6434165,33048899:0,7267524,196608 -r1,12420:32779637,33048899:26345472,7464132,196608 -k1,12380:6434165,33048899:-26345472 -) -(1,12380:6434165,33048899:26345472,7267524,196608 -[1,12380:6630773,33048899:25952256,7070916,0 -(1,12366:6630773,26388501:25952256,410518,107478 -(1,12365:6630773,26388501:0,0,0 -g1,12365:6630773,26388501 -g1,12365:6630773,26388501 -g1,12365:6303093,26388501 -(1,12365:6303093,26388501:0,0,0 -) -g1,12365:6630773,26388501 -) -k1,12366:6630773,26388501:0 -g1,12366:10424522,26388501 -g1,12366:11056814,26388501 -g1,12366:14534417,26388501 -g1,12366:15166709,26388501 -g1,12366:15799001,26388501 -h1,12366:18644312,26388501:0,0,0 -k1,12366:32583029,26388501:13938717 -g1,12366:32583029,26388501 -) -(1,12370:6630773,27710039:25952256,404226,107478 -g1,12370:7579210,27710039 -g1,12370:10424521,27710039 -g1,12370:11372958,27710039 -g1,12370:12005250,27710039 -k1,12370:32583030,27710039:18997052 -g1,12370:32583030,27710039 -) -(1,12379:6630773,28376217:25952256,404226,9436 -(1,12370:6630773,28376217:0,0,0 -g1,12370:6630773,28376217 -g1,12370:6630773,28376217 -g1,12370:6303093,28376217 -(1,12370:6303093,28376217:0,0,0 -) -g1,12370:6630773,28376217 -) -g1,12379:7579210,28376217 -g1,12379:8211502,28376217 -g1,12379:8843794,28376217 -g1,12379:11372960,28376217 -g1,12379:12005252,28376217 -g1,12379:12637544,28376217 -h1,12379:12953690,28376217:0,0,0 -k1,12379:32583030,28376217:19629340 -g1,12379:32583030,28376217 -) -(1,12379:6630773,29042395:25952256,404226,6290 -h1,12379:6630773,29042395:0,0,0 -g1,12379:7579210,29042395 -g1,12379:7895356,29042395 -g1,12379:8211502,29042395 -g1,12379:8527648,29042395 -g1,12379:8843794,29042395 -g1,12379:10108377,29042395 -g1,12379:12637543,29042395 -h1,12379:14850563,29042395:0,0,0 -k1,12379:32583029,29042395:17732466 -g1,12379:32583029,29042395 -) -(1,12379:6630773,29708573:25952256,404226,6290 -h1,12379:6630773,29708573:0,0,0 -g1,12379:7579210,29708573 -g1,12379:7895356,29708573 -g1,12379:8211502,29708573 -g1,12379:10108377,29708573 -g1,12379:12005252,29708573 -g1,12379:12321398,29708573 -g1,12379:12637544,29708573 -k1,12379:12637544,29708573:0 -h1,12379:14218273,29708573:0,0,0 -k1,12379:32583029,29708573:18364756 -g1,12379:32583029,29708573 -) -(1,12379:6630773,30374751:25952256,404226,6290 -h1,12379:6630773,30374751:0,0,0 -g1,12379:7579210,30374751 -g1,12379:8211502,30374751 -g1,12379:8527648,30374751 -g1,12379:8843794,30374751 -g1,12379:9159940,30374751 -g1,12379:9476086,30374751 -g1,12379:10108378,30374751 -g1,12379:10740670,30374751 -g1,12379:11056816,30374751 -g1,12379:11372962,30374751 -g1,12379:11689108,30374751 -g1,12379:12005254,30374751 -g1,12379:12321400,30374751 -g1,12379:12637546,30374751 -h1,12379:12953692,30374751:0,0,0 -k1,12379:32583028,30374751:19629336 -g1,12379:32583028,30374751 -) -(1,12379:6630773,31040929:25952256,404226,6290 -h1,12379:6630773,31040929:0,0,0 -g1,12379:7579210,31040929 -g1,12379:8211502,31040929 -g1,12379:8527648,31040929 -g1,12379:8843794,31040929 -g1,12379:9159940,31040929 -g1,12379:9476086,31040929 -g1,12379:10108378,31040929 -g1,12379:10740670,31040929 -g1,12379:11056816,31040929 -g1,12379:11372962,31040929 -g1,12379:11689108,31040929 -g1,12379:12005254,31040929 -g1,12379:12321400,31040929 -g1,12379:12637546,31040929 -h1,12379:12953692,31040929:0,0,0 -k1,12379:32583028,31040929:19629336 -g1,12379:32583028,31040929 -) -(1,12379:6630773,31707107:25952256,404226,9436 -h1,12379:6630773,31707107:0,0,0 -g1,12379:7579210,31707107 -g1,12379:8211502,31707107 -g1,12379:8527648,31707107 -g1,12379:8843794,31707107 -g1,12379:9159940,31707107 -g1,12379:9476086,31707107 -g1,12379:10108378,31707107 -g1,12379:10740670,31707107 -g1,12379:11056816,31707107 -g1,12379:11372962,31707107 -g1,12379:11689108,31707107 -g1,12379:12005254,31707107 -g1,12379:12321400,31707107 -g1,12379:12637546,31707107 -h1,12379:12953692,31707107:0,0,0 -k1,12379:32583028,31707107:19629336 -g1,12379:32583028,31707107 -) -(1,12379:6630773,32373285:25952256,404226,6290 -h1,12379:6630773,32373285:0,0,0 -g1,12379:7579210,32373285 -g1,12379:8211502,32373285 -g1,12379:8527648,32373285 -g1,12379:8843794,32373285 -g1,12379:9159940,32373285 -g1,12379:9476086,32373285 -g1,12379:10108378,32373285 -g1,12379:10740670,32373285 -g1,12379:11056816,32373285 -g1,12379:11372962,32373285 -g1,12379:11689108,32373285 -g1,12379:12005254,32373285 -g1,12379:12321400,32373285 -g1,12379:12637546,32373285 -h1,12379:12953692,32373285:0,0,0 -k1,12379:32583028,32373285:19629336 -g1,12379:32583028,32373285 -) -(1,12379:6630773,33039463:25952256,404226,9436 -h1,12379:6630773,33039463:0,0,0 -g1,12379:7579210,33039463 -g1,12379:8211502,33039463 -g1,12379:8527648,33039463 -g1,12379:8843794,33039463 -g1,12379:9159940,33039463 -g1,12379:9476086,33039463 -g1,12379:10108378,33039463 -g1,12379:10740670,33039463 -g1,12379:11056816,33039463 -g1,12379:11372962,33039463 -g1,12379:11689108,33039463 -g1,12379:12005254,33039463 -g1,12379:12321400,33039463 -g1,12379:12637546,33039463 -k1,12379:12637546,33039463:0 -h1,12379:13902129,33039463:0,0,0 -k1,12379:32583029,33039463:18680900 -g1,12379:32583029,33039463 -) -] -) -g1,12380:32583029,33048899 -g1,12380:6630773,33048899 -g1,12380:6630773,33048899 -g1,12380:32583029,33048899 -g1,12380:32583029,33048899 -) -h1,12380:6630773,33245507:0,0,0 -v1,12384:6630773,34960261:0,393216,0 -(1,12400:6630773,41834569:25952256,7267524,196608 -g1,12400:6630773,41834569 -g1,12400:6630773,41834569 -g1,12400:6434165,41834569 -(1,12400:6434165,41834569:0,7267524,196608 -r1,12420:32779637,41834569:26345472,7464132,196608 -k1,12400:6434165,41834569:-26345472 -) -(1,12400:6434165,41834569:26345472,7267524,196608 -[1,12400:6630773,41834569:25952256,7070916,0 -(1,12386:6630773,35174171:25952256,410518,107478 -(1,12385:6630773,35174171:0,0,0 -g1,12385:6630773,35174171 -g1,12385:6630773,35174171 -g1,12385:6303093,35174171 -(1,12385:6303093,35174171:0,0,0 -) -g1,12385:6630773,35174171 -) -k1,12386:6630773,35174171:0 -g1,12386:10740668,35174171 -g1,12386:11372960,35174171 -g1,12386:14534417,35174171 -g1,12386:15166709,35174171 -g1,12386:15799001,35174171 -h1,12386:18960458,35174171:0,0,0 -k1,12386:32583029,35174171:13622571 -g1,12386:32583029,35174171 -) -(1,12390:6630773,36495709:25952256,404226,107478 -g1,12390:7579210,36495709 -g1,12390:10424521,36495709 -g1,12390:11372958,36495709 -g1,12390:12005250,36495709 -k1,12390:32583030,36495709:18997052 -g1,12390:32583030,36495709 -) -(1,12399:6630773,37161887:25952256,404226,9436 -(1,12390:6630773,37161887:0,0,0 -g1,12390:6630773,37161887 -g1,12390:6630773,37161887 -g1,12390:6303093,37161887 -(1,12390:6303093,37161887:0,0,0 -) -g1,12390:6630773,37161887 -) -g1,12399:7579210,37161887 -g1,12399:8211502,37161887 -g1,12399:8843794,37161887 -g1,12399:11372960,37161887 -g1,12399:12005252,37161887 -g1,12399:12637544,37161887 -h1,12399:12953690,37161887:0,0,0 -k1,12399:32583030,37161887:19629340 -g1,12399:32583030,37161887 -) -(1,12399:6630773,37828065:25952256,404226,6290 -h1,12399:6630773,37828065:0,0,0 -g1,12399:7579210,37828065 -g1,12399:7895356,37828065 -g1,12399:8211502,37828065 -g1,12399:8527648,37828065 -g1,12399:8843794,37828065 -g1,12399:10108377,37828065 -g1,12399:12637543,37828065 -h1,12399:14850563,37828065:0,0,0 -k1,12399:32583029,37828065:17732466 -g1,12399:32583029,37828065 -) -(1,12399:6630773,38494243:25952256,404226,6290 -h1,12399:6630773,38494243:0,0,0 -g1,12399:7579210,38494243 -g1,12399:7895356,38494243 -g1,12399:8211502,38494243 -g1,12399:10108377,38494243 -g1,12399:12005252,38494243 -g1,12399:12321398,38494243 -g1,12399:12637544,38494243 -k1,12399:12637544,38494243:0 -h1,12399:14218273,38494243:0,0,0 -k1,12399:32583029,38494243:18364756 -g1,12399:32583029,38494243 -) -(1,12399:6630773,39160421:25952256,404226,6290 -h1,12399:6630773,39160421:0,0,0 -g1,12399:7579210,39160421 -g1,12399:8211502,39160421 -g1,12399:8527648,39160421 -g1,12399:8843794,39160421 -g1,12399:9159940,39160421 -g1,12399:9476086,39160421 -g1,12399:10108378,39160421 -g1,12399:10740670,39160421 -g1,12399:11056816,39160421 -g1,12399:11372962,39160421 -g1,12399:11689108,39160421 -g1,12399:12005254,39160421 -g1,12399:12321400,39160421 -g1,12399:12637546,39160421 -h1,12399:12953692,39160421:0,0,0 -k1,12399:32583028,39160421:19629336 -g1,12399:32583028,39160421 -) -(1,12399:6630773,39826599:25952256,404226,6290 -h1,12399:6630773,39826599:0,0,0 -g1,12399:7579210,39826599 -g1,12399:8211502,39826599 -g1,12399:8527648,39826599 -g1,12399:8843794,39826599 -g1,12399:9159940,39826599 -g1,12399:9476086,39826599 -g1,12399:10108378,39826599 -g1,12399:10740670,39826599 -g1,12399:11056816,39826599 -g1,12399:11372962,39826599 -g1,12399:11689108,39826599 -g1,12399:12005254,39826599 -g1,12399:12321400,39826599 -g1,12399:12637546,39826599 -h1,12399:12953692,39826599:0,0,0 -k1,12399:32583028,39826599:19629336 -g1,12399:32583028,39826599 -) -(1,12399:6630773,40492777:25952256,404226,9436 -h1,12399:6630773,40492777:0,0,0 -g1,12399:7579210,40492777 -g1,12399:8211502,40492777 -g1,12399:8527648,40492777 -g1,12399:8843794,40492777 -g1,12399:9159940,40492777 -g1,12399:9476086,40492777 -g1,12399:10108378,40492777 -g1,12399:10740670,40492777 -g1,12399:11056816,40492777 -g1,12399:11372962,40492777 -g1,12399:11689108,40492777 -g1,12399:12005254,40492777 -g1,12399:12321400,40492777 -g1,12399:12637546,40492777 -h1,12399:12953692,40492777:0,0,0 -k1,12399:32583028,40492777:19629336 -g1,12399:32583028,40492777 -) -(1,12399:6630773,41158955:25952256,404226,6290 -h1,12399:6630773,41158955:0,0,0 -g1,12399:7579210,41158955 -g1,12399:8211502,41158955 -g1,12399:8527648,41158955 -g1,12399:8843794,41158955 -g1,12399:9159940,41158955 -g1,12399:9476086,41158955 -g1,12399:10108378,41158955 -g1,12399:10740670,41158955 -g1,12399:11056816,41158955 -g1,12399:11372962,41158955 -g1,12399:11689108,41158955 -g1,12399:12005254,41158955 -g1,12399:12321400,41158955 -g1,12399:12637546,41158955 -h1,12399:12953692,41158955:0,0,0 -k1,12399:32583028,41158955:19629336 -g1,12399:32583028,41158955 -) -(1,12399:6630773,41825133:25952256,404226,9436 -h1,12399:6630773,41825133:0,0,0 -g1,12399:7579210,41825133 -g1,12399:8211502,41825133 -g1,12399:8527648,41825133 -g1,12399:8843794,41825133 -g1,12399:9159940,41825133 -g1,12399:9476086,41825133 -g1,12399:10108378,41825133 -g1,12399:11689107,41825133 -g1,12399:12005253,41825133 -g1,12399:12321399,41825133 -g1,12399:12637545,41825133 -h1,12399:12953691,41825133:0,0,0 -k1,12399:32583029,41825133:19629338 -g1,12399:32583029,41825133 -) -] -) -g1,12400:32583029,41834569 -g1,12400:6630773,41834569 -g1,12400:6630773,41834569 -g1,12400:32583029,41834569 -g1,12400:32583029,41834569 -) -h1,12400:6630773,42031177:0,0,0 -v1,12404:6630773,43745931:0,393216,0 -(1,12420:6630773,45388857:25952256,2036142,196608 -g1,12420:6630773,45388857 -g1,12420:6630773,45388857 -g1,12420:6434165,45388857 -(1,12420:6434165,45388857:0,2036142,196608 -r1,12420:32779637,45388857:26345472,2232750,196608 -k1,12420:6434165,45388857:-26345472 -) -(1,12420:6434165,45388857:26345472,2036142,196608 -[1,12420:6630773,45388857:25952256,1839534,0 -(1,12406:6630773,43959841:25952256,410518,107478 -(1,12405:6630773,43959841:0,0,0 -g1,12405:6630773,43959841 -g1,12405:6630773,43959841 -g1,12405:6303093,43959841 -(1,12405:6303093,43959841:0,0,0 -) -g1,12405:6630773,43959841 -) -k1,12406:6630773,43959841:0 -g1,12406:10740668,43959841 -g1,12406:11372960,43959841 -g1,12406:14850563,43959841 -g1,12406:15482855,43959841 -g1,12406:16115147,43959841 -h1,12406:18960458,43959841:0,0,0 -k1,12406:32583029,43959841:13622571 -g1,12406:32583029,43959841 -) -(1,12410:6630773,45281379:25952256,404226,107478 -g1,12410:7579210,45281379 -g1,12410:10424521,45281379 -g1,12410:11372958,45281379 -g1,12410:12005250,45281379 -k1,12410:32583030,45281379:18997052 -g1,12410:32583030,45281379 -) -] -) -g1,12420:32583029,45388857 -g1,12420:6630773,45388857 -g1,12420:6630773,45388857 -g1,12420:32583029,45388857 -g1,12420:32583029,45388857 -) -] -(1,12420:32583029,45706769:0,0,0 -g1,12420:32583029,45706769 -) -) -] -(1,12420:6630773,47279633:25952256,0,0 -h1,12420:6630773,47279633:25952256,0,0 -) -] -(1,12420:4262630,4025873:0,0,0 -[1,12420:-473656,4025873:0,0,0 -(1,12420:-473656,-710413:0,0,0 -(1,12420:-473656,-710413:0,0,0 -g1,12420:-473656,-710413 -) -g1,12420:-473656,-710413 -) -] -) -] -!27491 -}230 -Input:1737:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1738:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1739:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1740:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1741:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1742:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1743:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1744:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!748 -{231 -[1,12502:4262630,47279633:28320399,43253760,0 -(1,12502:4262630,4025873:0,0,0 -[1,12502:-473656,4025873:0,0,0 -(1,12502:-473656,-710413:0,0,0 -(1,12502:-473656,-644877:0,0,0 -k1,12502:-473656,-644877:-65536 -) -(1,12502:-473656,4736287:0,0,0 -k1,12502:-473656,4736287:5209943 -) -g1,12502:-473656,-710413 -) -] -) -[1,12502:6630773,47279633:25952256,43253760,0 -[1,12502:6630773,4812305:25952256,786432,0 -(1,12502:6630773,4812305:25952256,513147,134348 -(1,12502:6630773,4812305:25952256,513147,134348 -g1,12502:3078558,4812305 -[1,12502:3078558,4812305:0,0,0 -(1,12502:3078558,2439708:0,1703936,0 -k1,12502:1358238,2439708:-1720320 -(1,11088:1358238,2439708:1720320,1703936,0 -(1,11088:1358238,2439708:1179648,16384,0 -r1,12502:2537886,2439708:1179648,16384,0 -) -g1,11088:3062174,2439708 -(1,11088:3062174,2439708:16384,1703936,0 -[1,11088:3062174,2439708:25952256,1703936,0 -(1,11088:3062174,1915420:25952256,1179648,0 -(1,11088:3062174,1915420:16384,1179648,0 -r1,12502:3078558,1915420:16384,1179648,0 -) -k1,11088:29014430,1915420:25935872 -g1,11088:29014430,1915420 -) -] -) -) -) -] -[1,12502:3078558,4812305:0,0,0 -(1,12502:3078558,2439708:0,1703936,0 -g1,12502:29030814,2439708 -g1,12502:36135244,2439708 -(1,11088:36135244,2439708:1720320,1703936,0 -(1,11088:36135244,2439708:16384,1703936,0 -[1,11088:36135244,2439708:25952256,1703936,0 -(1,11088:36135244,1915420:25952256,1179648,0 -(1,11088:36135244,1915420:16384,1179648,0 -r1,12502:36151628,1915420:16384,1179648,0 -) -k1,11088:62087500,1915420:25935872 -g1,11088:62087500,1915420 -) -] -) -g1,11088:36675916,2439708 -(1,11088:36675916,2439708:1179648,16384,0 -r1,12502:37855564,2439708:1179648,16384,0 -) -) -k1,12502:3078556,2439708:-34777008 -) -] -[1,12502:3078558,4812305:0,0,0 -(1,12502:3078558,49800853:0,16384,2228224 -k1,12502:1358238,49800853:-1720320 -(1,11088:1358238,49800853:1720320,16384,2228224 -(1,11088:1358238,49800853:1179648,16384,0 -r1,12502:2537886,49800853:1179648,16384,0 -) -g1,11088:3062174,49800853 -(1,11088:3062174,52029077:16384,1703936,0 -[1,11088:3062174,52029077:25952256,1703936,0 -(1,11088:3062174,51504789:25952256,1179648,0 -(1,11088:3062174,51504789:16384,1179648,0 -r1,12502:3078558,51504789:16384,1179648,0 -) -k1,11088:29014430,51504789:25935872 -g1,11088:29014430,51504789 -) -] -) -) -) -] -[1,12502:3078558,4812305:0,0,0 -(1,12502:3078558,49800853:0,16384,2228224 -g1,12502:29030814,49800853 -g1,12502:36135244,49800853 -(1,11088:36135244,49800853:1720320,16384,2228224 -(1,11088:36135244,52029077:16384,1703936,0 -[1,11088:36135244,52029077:25952256,1703936,0 -(1,11088:36135244,51504789:25952256,1179648,0 -(1,11088:36135244,51504789:16384,1179648,0 -r1,12502:36151628,51504789:16384,1179648,0 -) -k1,11088:62087500,51504789:25935872 -g1,11088:62087500,51504789 -) -] -) -g1,11088:36675916,49800853 -(1,11088:36675916,49800853:1179648,16384,0 -r1,12502:37855564,49800853:1179648,16384,0 -) -) -k1,12502:3078556,49800853:-34777008 -) -] -g1,12502:6630773,4812305 -k1,12502:25241686,4812305:17415536 -g1,12502:26807341,4812305 -g1,12502:30339731,4812305 -g1,12502:31154998,4812305 -) -) -] -[1,12502:6630773,45706769:25952256,40108032,0 -(1,12502:6630773,45706769:25952256,40108032,0 -(1,12502:6630773,45706769:0,0,0 -g1,12502:6630773,45706769 -) -[1,12502:6630773,45706769:25952256,40108032,0 -v1,12420:6630773,6254097:0,393216,0 -(1,12420:6630773,11134397:25952256,5273516,196608 -g1,12420:6630773,11134397 -g1,12420:6630773,11134397 -g1,12420:6434165,11134397 -(1,12420:6434165,11134397:0,5273516,196608 -r1,12502:32779637,11134397:26345472,5470124,196608 -k1,12420:6434165,11134397:-26345472 -) -(1,12420:6434165,11134397:26345472,5273516,196608 -[1,12420:6630773,11134397:25952256,5076908,0 -(1,12419:6630773,6461715:25952256,404226,9436 -(1,12410:6630773,6461715:0,0,0 -g1,12410:6630773,6461715 -g1,12410:6630773,6461715 -g1,12410:6303093,6461715 -(1,12410:6303093,6461715:0,0,0 -) -g1,12410:6630773,6461715 -) -g1,12419:7579210,6461715 -g1,12419:8211502,6461715 -g1,12419:8843794,6461715 -g1,12419:11372960,6461715 -g1,12419:12005252,6461715 -g1,12419:12637544,6461715 -h1,12419:12953690,6461715:0,0,0 -k1,12419:32583030,6461715:19629340 -g1,12419:32583030,6461715 -) -(1,12419:6630773,7127893:25952256,404226,6290 -h1,12419:6630773,7127893:0,0,0 -g1,12419:7579210,7127893 -g1,12419:7895356,7127893 -g1,12419:8211502,7127893 -g1,12419:8527648,7127893 -g1,12419:8843794,7127893 -g1,12419:10108377,7127893 -g1,12419:12637543,7127893 -h1,12419:14850563,7127893:0,0,0 -k1,12419:32583029,7127893:17732466 -g1,12419:32583029,7127893 -) -(1,12419:6630773,7794071:25952256,404226,6290 -h1,12419:6630773,7794071:0,0,0 -g1,12419:7579210,7794071 -g1,12419:7895356,7794071 -g1,12419:8211502,7794071 -g1,12419:10108377,7794071 -g1,12419:12005252,7794071 -g1,12419:12321398,7794071 -g1,12419:12637544,7794071 -k1,12419:12637544,7794071:0 -h1,12419:14218273,7794071:0,0,0 -k1,12419:32583029,7794071:18364756 -g1,12419:32583029,7794071 -) -(1,12419:6630773,8460249:25952256,404226,6290 -h1,12419:6630773,8460249:0,0,0 -g1,12419:7579210,8460249 -g1,12419:8211502,8460249 -g1,12419:8527648,8460249 -g1,12419:8843794,8460249 -g1,12419:9159940,8460249 -g1,12419:9476086,8460249 -g1,12419:10108378,8460249 -g1,12419:10740670,8460249 -g1,12419:11056816,8460249 -g1,12419:11372962,8460249 -g1,12419:11689108,8460249 -g1,12419:12005254,8460249 -g1,12419:12321400,8460249 -g1,12419:12637546,8460249 -h1,12419:12953692,8460249:0,0,0 -k1,12419:32583028,8460249:19629336 -g1,12419:32583028,8460249 -) -(1,12419:6630773,9126427:25952256,404226,6290 -h1,12419:6630773,9126427:0,0,0 -g1,12419:7579210,9126427 -g1,12419:8211502,9126427 -g1,12419:8527648,9126427 -g1,12419:8843794,9126427 -g1,12419:9159940,9126427 -g1,12419:9476086,9126427 -g1,12419:10108378,9126427 -g1,12419:10740670,9126427 -g1,12419:11056816,9126427 -g1,12419:11372962,9126427 -g1,12419:11689108,9126427 -g1,12419:12005254,9126427 -g1,12419:12321400,9126427 -g1,12419:12637546,9126427 -h1,12419:12953692,9126427:0,0,0 -k1,12419:32583028,9126427:19629336 -g1,12419:32583028,9126427 -) -(1,12419:6630773,9792605:25952256,404226,9436 -h1,12419:6630773,9792605:0,0,0 -g1,12419:7579210,9792605 -g1,12419:8211502,9792605 -g1,12419:8527648,9792605 -g1,12419:8843794,9792605 -g1,12419:9159940,9792605 -g1,12419:9476086,9792605 -g1,12419:10108378,9792605 -g1,12419:10740670,9792605 -g1,12419:11056816,9792605 -g1,12419:11372962,9792605 -g1,12419:11689108,9792605 -g1,12419:12005254,9792605 -g1,12419:12321400,9792605 -g1,12419:12637546,9792605 -h1,12419:12953692,9792605:0,0,0 -k1,12419:32583028,9792605:19629336 -g1,12419:32583028,9792605 -) -(1,12419:6630773,10458783:25952256,404226,6290 -h1,12419:6630773,10458783:0,0,0 -g1,12419:7579210,10458783 -g1,12419:8211502,10458783 -g1,12419:8527648,10458783 -g1,12419:8843794,10458783 -g1,12419:9159940,10458783 -g1,12419:9476086,10458783 -g1,12419:10108378,10458783 -g1,12419:10740670,10458783 -g1,12419:11056816,10458783 -g1,12419:11372962,10458783 -g1,12419:11689108,10458783 -g1,12419:12005254,10458783 -g1,12419:12321400,10458783 -g1,12419:12637546,10458783 -h1,12419:12953692,10458783:0,0,0 -k1,12419:32583028,10458783:19629336 -g1,12419:32583028,10458783 -) -(1,12419:6630773,11124961:25952256,379060,9436 -h1,12419:6630773,11124961:0,0,0 -g1,12419:7579210,11124961 -g1,12419:8211502,11124961 -g1,12419:8527648,11124961 -g1,12419:8843794,11124961 -g1,12419:9159940,11124961 -g1,12419:9476086,11124961 -g1,12419:10108378,11124961 -g1,12419:11689107,11124961 -g1,12419:12005253,11124961 -g1,12419:12321399,11124961 -g1,12419:12637545,11124961 -h1,12419:12953691,11124961:0,0,0 -k1,12419:32583029,11124961:19629338 -g1,12419:32583029,11124961 -) -] -) -g1,12420:32583029,11134397 -g1,12420:6630773,11134397 -g1,12420:6630773,11134397 -g1,12420:32583029,11134397 -g1,12420:32583029,11134397 -) -h1,12420:6630773,11331005:0,0,0 -(1,12424:6630773,12696781:25952256,505283,134348 -h1,12423:6630773,12696781:983040,0,0 -k1,12423:8743833,12696781:227589 -k1,12423:10638004,12696781:227590 -k1,12423:12102913,12696781:227589 -k1,12423:15011581,12696781:227590 -k1,12423:16005286,12696781:227589 -k1,12423:17767074,12696781:227590 -k1,12423:18610701,12696781:227589 -(1,12423:18610701,12696781:0,414482,115847 -r1,12502:18968967,12696781:358266,530329,115847 -k1,12423:18610701,12696781:-358266 -) -(1,12423:18610701,12696781:358266,414482,115847 -k1,12423:18610701,12696781:3277 -h1,12423:18965690,12696781:0,411205,112570 -) -k1,12423:19196557,12696781:227590 -k1,12423:20708652,12696781:227589 -k1,12423:21751510,12696781:227590 -k1,12423:23045370,12696781:227589 -k1,12423:24748175,12696781:227590 -k1,12423:25331624,12696781:227589 -k1,12423:28530616,12696781:227590 -k1,12423:29962101,12696781:227589 -k1,12423:30805729,12696781:227590 -(1,12423:30805729,12696781:0,414482,115847 -r1,12502:31163995,12696781:358266,530329,115847 -k1,12423:30805729,12696781:-358266 -) -(1,12423:30805729,12696781:358266,414482,115847 -k1,12423:30805729,12696781:3277 -h1,12423:31160718,12696781:0,411205,112570 -) -k1,12423:31391584,12696781:227589 -k1,12423:32583029,12696781:0 -) -(1,12424:6630773,13538269:25952256,473825,7863 -g1,12423:8043729,13538269 -k1,12424:32583029,13538269:22665626 -g1,12424:32583029,13538269 -) -v1,12426:6630773,14728735:0,393216,0 -(1,12441:6630773,20933719:25952256,6598200,196608 -g1,12441:6630773,20933719 -g1,12441:6630773,20933719 -g1,12441:6434165,20933719 -(1,12441:6434165,20933719:0,6598200,196608 -r1,12502:32779637,20933719:26345472,6794808,196608 -k1,12441:6434165,20933719:-26345472 -) -(1,12441:6434165,20933719:26345472,6598200,196608 -[1,12441:6630773,20933719:25952256,6401592,0 -(1,12428:6630773,14942645:25952256,410518,107478 -(1,12427:6630773,14942645:0,0,0 -g1,12427:6630773,14942645 -g1,12427:6630773,14942645 -g1,12427:6303093,14942645 -(1,12427:6303093,14942645:0,0,0 -) -g1,12427:6630773,14942645 -) -k1,12428:6630773,14942645:0 -g1,12428:10740668,14942645 -g1,12428:11372960,14942645 -g1,12428:14534417,14942645 -g1,12428:15166709,14942645 -g1,12428:15799001,14942645 -h1,12428:18960458,14942645:0,0,0 -k1,12428:32583029,14942645:13622571 -g1,12428:32583029,14942645 -) -(1,12432:6630773,16264183:25952256,404226,107478 -g1,12432:7579210,16264183 -g1,12432:10424521,16264183 -g1,12432:11372958,16264183 -g1,12432:12005250,16264183 -k1,12432:32583030,16264183:18997052 -g1,12432:32583030,16264183 -) -(1,12440:6630773,16930361:25952256,404226,9436 -(1,12432:6630773,16930361:0,0,0 -g1,12432:6630773,16930361 -g1,12432:6630773,16930361 -g1,12432:6303093,16930361 -(1,12432:6303093,16930361:0,0,0 -) -g1,12432:6630773,16930361 -) -g1,12440:7579210,16930361 -g1,12440:8211502,16930361 -g1,12440:8843794,16930361 -g1,12440:11372960,16930361 -g1,12440:12005252,16930361 -g1,12440:12637544,16930361 -h1,12440:12953690,16930361:0,0,0 -k1,12440:32583030,16930361:19629340 -g1,12440:32583030,16930361 -) -(1,12440:6630773,17596539:25952256,404226,6290 -h1,12440:6630773,17596539:0,0,0 -g1,12440:7579210,17596539 -g1,12440:7895356,17596539 -g1,12440:8211502,17596539 -g1,12440:8527648,17596539 -g1,12440:8843794,17596539 -g1,12440:10108377,17596539 -g1,12440:12637543,17596539 -h1,12440:14850563,17596539:0,0,0 -k1,12440:32583029,17596539:17732466 -g1,12440:32583029,17596539 -) -(1,12440:6630773,18262717:25952256,404226,6290 -h1,12440:6630773,18262717:0,0,0 -g1,12440:7579210,18262717 -g1,12440:7895356,18262717 -g1,12440:8211502,18262717 -g1,12440:10108377,18262717 -g1,12440:12005252,18262717 -g1,12440:12321398,18262717 -g1,12440:12637544,18262717 -k1,12440:12637544,18262717:0 -h1,12440:14218273,18262717:0,0,0 -k1,12440:32583029,18262717:18364756 -g1,12440:32583029,18262717 -) -(1,12440:6630773,18928895:25952256,404226,6290 -h1,12440:6630773,18928895:0,0,0 -g1,12440:7579210,18928895 -g1,12440:8211502,18928895 -g1,12440:8527648,18928895 -g1,12440:8843794,18928895 -g1,12440:9159940,18928895 -g1,12440:9476086,18928895 -g1,12440:10108378,18928895 -g1,12440:10740670,18928895 -g1,12440:11056816,18928895 -g1,12440:11372962,18928895 -g1,12440:11689108,18928895 -g1,12440:12005254,18928895 -g1,12440:12321400,18928895 -g1,12440:12637546,18928895 -h1,12440:12953692,18928895:0,0,0 -k1,12440:32583028,18928895:19629336 -g1,12440:32583028,18928895 -) -(1,12440:6630773,19595073:25952256,404226,6290 -h1,12440:6630773,19595073:0,0,0 -g1,12440:7579210,19595073 -g1,12440:8211502,19595073 -g1,12440:8527648,19595073 -g1,12440:8843794,19595073 -g1,12440:9159940,19595073 -g1,12440:9476086,19595073 -g1,12440:10108378,19595073 -g1,12440:10740670,19595073 -g1,12440:11056816,19595073 -g1,12440:11372962,19595073 -g1,12440:11689108,19595073 -g1,12440:12005254,19595073 -g1,12440:12321400,19595073 -g1,12440:12637546,19595073 -h1,12440:12953692,19595073:0,0,0 -k1,12440:32583028,19595073:19629336 -g1,12440:32583028,19595073 -) -(1,12440:6630773,20261251:25952256,404226,9436 -h1,12440:6630773,20261251:0,0,0 -g1,12440:7579210,20261251 -g1,12440:8211502,20261251 -g1,12440:8527648,20261251 -g1,12440:8843794,20261251 -g1,12440:9159940,20261251 -g1,12440:9476086,20261251 -g1,12440:10108378,20261251 -g1,12440:10740670,20261251 -g1,12440:11056816,20261251 -g1,12440:11372962,20261251 -g1,12440:11689108,20261251 -g1,12440:12005254,20261251 -g1,12440:12321400,20261251 -g1,12440:12637546,20261251 -h1,12440:12953692,20261251:0,0,0 -k1,12440:32583028,20261251:19629336 -g1,12440:32583028,20261251 -) -(1,12440:6630773,20927429:25952256,404226,6290 -h1,12440:6630773,20927429:0,0,0 -g1,12440:7579210,20927429 -g1,12440:8211502,20927429 -g1,12440:8527648,20927429 -g1,12440:8843794,20927429 -g1,12440:9159940,20927429 -g1,12440:9476086,20927429 -g1,12440:10108378,20927429 -g1,12440:10740670,20927429 -g1,12440:11056816,20927429 -g1,12440:11372962,20927429 -g1,12440:11689108,20927429 -g1,12440:12005254,20927429 -g1,12440:12321400,20927429 -g1,12440:12637546,20927429 -h1,12440:12953692,20927429:0,0,0 -k1,12440:32583028,20927429:19629336 -g1,12440:32583028,20927429 -) -] -) -g1,12441:32583029,20933719 -g1,12441:6630773,20933719 -g1,12441:6630773,20933719 -g1,12441:32583029,20933719 -g1,12441:32583029,20933719 -) -h1,12441:6630773,21130327:0,0,0 -v1,12445:6630773,22845081:0,393216,0 -(1,12460:6630773,29050065:25952256,6598200,196608 -g1,12460:6630773,29050065 -g1,12460:6630773,29050065 -g1,12460:6434165,29050065 -(1,12460:6434165,29050065:0,6598200,196608 -r1,12502:32779637,29050065:26345472,6794808,196608 -k1,12460:6434165,29050065:-26345472 -) -(1,12460:6434165,29050065:26345472,6598200,196608 -[1,12460:6630773,29050065:25952256,6401592,0 -(1,12447:6630773,23058991:25952256,410518,107478 -(1,12446:6630773,23058991:0,0,0 -g1,12446:6630773,23058991 -g1,12446:6630773,23058991 -g1,12446:6303093,23058991 -(1,12446:6303093,23058991:0,0,0 -) -g1,12446:6630773,23058991 -) -k1,12447:6630773,23058991:0 -g1,12447:10740668,23058991 -g1,12447:11372960,23058991 -g1,12447:14850563,23058991 -g1,12447:15482855,23058991 -g1,12447:16115147,23058991 -h1,12447:18960458,23058991:0,0,0 -k1,12447:32583029,23058991:13622571 -g1,12447:32583029,23058991 -) -(1,12451:6630773,24380529:25952256,404226,107478 -g1,12451:7579210,24380529 -g1,12451:10424521,24380529 -g1,12451:11372958,24380529 -g1,12451:12005250,24380529 -k1,12451:32583030,24380529:18997052 -g1,12451:32583030,24380529 -) -(1,12459:6630773,25046707:25952256,404226,9436 -(1,12451:6630773,25046707:0,0,0 -g1,12451:6630773,25046707 -g1,12451:6630773,25046707 -g1,12451:6303093,25046707 -(1,12451:6303093,25046707:0,0,0 -) -g1,12451:6630773,25046707 -) -g1,12459:7579210,25046707 -g1,12459:8211502,25046707 -g1,12459:8843794,25046707 -g1,12459:11372960,25046707 -g1,12459:12005252,25046707 -g1,12459:12637544,25046707 -h1,12459:12953690,25046707:0,0,0 -k1,12459:32583030,25046707:19629340 -g1,12459:32583030,25046707 -) -(1,12459:6630773,25712885:25952256,404226,6290 -h1,12459:6630773,25712885:0,0,0 -g1,12459:7579210,25712885 -g1,12459:7895356,25712885 -g1,12459:8211502,25712885 -g1,12459:8527648,25712885 -g1,12459:8843794,25712885 -g1,12459:10108377,25712885 -g1,12459:12637543,25712885 -h1,12459:14850563,25712885:0,0,0 -k1,12459:32583029,25712885:17732466 -g1,12459:32583029,25712885 -) -(1,12459:6630773,26379063:25952256,404226,6290 -h1,12459:6630773,26379063:0,0,0 -g1,12459:7579210,26379063 -g1,12459:7895356,26379063 -g1,12459:8211502,26379063 -g1,12459:10108377,26379063 -g1,12459:12005252,26379063 -g1,12459:12321398,26379063 -g1,12459:12637544,26379063 -k1,12459:12637544,26379063:0 -h1,12459:14218273,26379063:0,0,0 -k1,12459:32583029,26379063:18364756 -g1,12459:32583029,26379063 -) -(1,12459:6630773,27045241:25952256,404226,6290 -h1,12459:6630773,27045241:0,0,0 -g1,12459:7579210,27045241 -g1,12459:8211502,27045241 -g1,12459:8527648,27045241 -g1,12459:8843794,27045241 -g1,12459:9159940,27045241 -g1,12459:9476086,27045241 -g1,12459:10108378,27045241 -g1,12459:10740670,27045241 -g1,12459:11056816,27045241 -g1,12459:11372962,27045241 -g1,12459:11689108,27045241 -g1,12459:12005254,27045241 -g1,12459:12321400,27045241 -g1,12459:12637546,27045241 -h1,12459:12953692,27045241:0,0,0 -k1,12459:32583028,27045241:19629336 -g1,12459:32583028,27045241 -) -(1,12459:6630773,27711419:25952256,404226,6290 -h1,12459:6630773,27711419:0,0,0 -g1,12459:7579210,27711419 -g1,12459:8211502,27711419 -g1,12459:8527648,27711419 -g1,12459:8843794,27711419 -g1,12459:9159940,27711419 -g1,12459:9476086,27711419 -g1,12459:10108378,27711419 -g1,12459:10740670,27711419 -g1,12459:11056816,27711419 -g1,12459:11372962,27711419 -g1,12459:11689108,27711419 -g1,12459:12005254,27711419 -g1,12459:12321400,27711419 -g1,12459:12637546,27711419 -h1,12459:12953692,27711419:0,0,0 -k1,12459:32583028,27711419:19629336 -g1,12459:32583028,27711419 -) -(1,12459:6630773,28377597:25952256,404226,9436 -h1,12459:6630773,28377597:0,0,0 -g1,12459:7579210,28377597 -g1,12459:8211502,28377597 -g1,12459:8527648,28377597 -g1,12459:8843794,28377597 -g1,12459:9159940,28377597 -g1,12459:9476086,28377597 -g1,12459:10108378,28377597 -g1,12459:10740670,28377597 -g1,12459:11056816,28377597 -g1,12459:11372962,28377597 -g1,12459:11689108,28377597 -g1,12459:12005254,28377597 -g1,12459:12321400,28377597 -g1,12459:12637546,28377597 -h1,12459:12953692,28377597:0,0,0 -k1,12459:32583028,28377597:19629336 -g1,12459:32583028,28377597 -) -(1,12459:6630773,29043775:25952256,404226,6290 -h1,12459:6630773,29043775:0,0,0 -g1,12459:7579210,29043775 -g1,12459:8211502,29043775 -g1,12459:8527648,29043775 -g1,12459:8843794,29043775 -g1,12459:9159940,29043775 -g1,12459:9476086,29043775 -g1,12459:10108378,29043775 -g1,12459:10740670,29043775 -g1,12459:11056816,29043775 -g1,12459:11372962,29043775 -g1,12459:11689108,29043775 -g1,12459:12005254,29043775 -g1,12459:12321400,29043775 -g1,12459:12637546,29043775 -h1,12459:12953692,29043775:0,0,0 -k1,12459:32583028,29043775:19629336 -g1,12459:32583028,29043775 -) -] -) -g1,12460:32583029,29050065 -g1,12460:6630773,29050065 -g1,12460:6630773,29050065 -g1,12460:32583029,29050065 -g1,12460:32583029,29050065 -) -h1,12460:6630773,29246673:0,0,0 -(1,12464:6630773,30612449:25952256,513147,134348 -h1,12463:6630773,30612449:983040,0,0 -k1,12463:9287760,30612449:212494 -k1,12463:10368605,30612449:212493 -k1,12463:12344673,30612449:212494 -k1,12463:13576251,30612449:212493 -k1,12463:16270593,30612449:212494 -k1,12463:17679118,30612449:212493 -k1,12463:20917409,30612449:212494 -k1,12463:23970888,30612449:212493 -k1,12463:24944910,30612449:212494 -k1,12463:27303706,30612449:212493 -(1,12463:27303706,30612449:0,452978,122846 -r1,12502:31179090,30612449:3875384,575824,122846 -k1,12463:27303706,30612449:-3875384 -) -(1,12463:27303706,30612449:3875384,452978,122846 -k1,12463:27303706,30612449:3277 -h1,12463:31175813,30612449:0,411205,112570 -) -k1,12463:31391584,30612449:212494 -k1,12464:32583029,30612449:0 -) -(1,12464:6630773,31453937:25952256,513147,126483 -(1,12463:6630773,31453937:0,452978,122846 -r1,12502:10506157,31453937:3875384,575824,122846 -k1,12463:6630773,31453937:-3875384 -) -(1,12463:6630773,31453937:3875384,452978,122846 -k1,12463:6630773,31453937:3277 -h1,12463:10502880,31453937:0,411205,112570 -) -k1,12463:10947013,31453937:267186 -k1,12463:13088529,31453937:267186 -k1,12463:16381513,31453937:267187 -k1,12463:18024300,31453937:267186 -k1,12463:20302131,31453937:267186 -k1,12463:20925177,31453937:267186 -k1,12463:23003778,31453937:267186 -k1,12463:24555470,31453937:267186 -k1,12463:26951922,31453937:267187 -k1,12463:29921157,31453937:267186 -k1,12463:31563944,31453937:267186 -k1,12463:32583029,31453937:0 -) -(1,12464:6630773,32295425:25952256,513147,115847 -g1,12463:9543193,32295425 -g1,12463:11310043,32295425 -(1,12463:11310043,32295425:0,414482,115847 -r1,12502:11668309,32295425:358266,530329,115847 -k1,12463:11310043,32295425:-358266 -) -(1,12463:11310043,32295425:358266,414482,115847 -k1,12463:11310043,32295425:3277 -h1,12463:11665032,32295425:0,411205,112570 -) -g1,12463:12041208,32295425 -g1,12463:13312606,32295425 -g1,12463:15706636,32295425 -g1,12463:17440063,32295425 -g1,12463:19493961,32295425 -g1,12463:20502560,32295425 -g1,12463:22210428,32295425 -g1,12463:24390810,32295425 -g1,12463:25241467,32295425 -g1,12463:26974894,32295425 -g1,12463:27790161,32295425 -(1,12463:27790161,32295425:0,414482,115847 -r1,12502:28148427,32295425:358266,530329,115847 -k1,12463:27790161,32295425:-358266 -) -(1,12463:27790161,32295425:358266,414482,115847 -k1,12463:27790161,32295425:3277 -h1,12463:28145150,32295425:0,411205,112570 -) -k1,12464:32583029,32295425:4260932 -g1,12464:32583029,32295425 -) -(1,12466:6630773,33136913:25952256,513147,134348 -h1,12465:6630773,33136913:983040,0,0 -g1,12465:8300630,33136913 -g1,12465:9998667,33136913 -g1,12465:11435216,33136913 -g1,12465:13829246,33136913 -g1,12465:15562673,33136913 -g1,12465:17329523,33136913 -(1,12465:17329523,33136913:0,414482,115847 -r1,12502:17687789,33136913:358266,530329,115847 -k1,12465:17329523,33136913:-358266 -) -(1,12465:17329523,33136913:358266,414482,115847 -k1,12465:17329523,33136913:3277 -h1,12465:17684512,33136913:0,411205,112570 -) -g1,12465:17887018,33136913 -g1,12465:19370753,33136913 -g1,12465:21045197,33136913 -g1,12465:21600286,33136913 -g1,12465:23780668,33136913 -g1,12465:24595935,33136913 -(1,12465:24595935,33136913:0,414482,115847 -r1,12502:24954201,33136913:358266,530329,115847 -k1,12465:24595935,33136913:-358266 -) -(1,12465:24595935,33136913:358266,414482,115847 -k1,12465:24595935,33136913:3277 -h1,12465:24950924,33136913:0,411205,112570 -) -k1,12466:32583029,33136913:7455158 -g1,12466:32583029,33136913 -) -v1,12468:6630773,34327379:0,393216,0 -(1,12483:6630773,40530791:25952256,6596628,196608 -g1,12483:6630773,40530791 -g1,12483:6630773,40530791 -g1,12483:6434165,40530791 -(1,12483:6434165,40530791:0,6596628,196608 -r1,12502:32779637,40530791:26345472,6793236,196608 -k1,12483:6434165,40530791:-26345472 -) -(1,12483:6434165,40530791:26345472,6596628,196608 -[1,12483:6630773,40530791:25952256,6400020,0 -(1,12470:6630773,34541289:25952256,410518,107478 -(1,12469:6630773,34541289:0,0,0 -g1,12469:6630773,34541289 -g1,12469:6630773,34541289 -g1,12469:6303093,34541289 -(1,12469:6303093,34541289:0,0,0 -) -g1,12469:6630773,34541289 -) -k1,12470:6630773,34541289:0 -g1,12470:10424522,34541289 -g1,12470:11056814,34541289 -g1,12470:14218271,34541289 -g1,12470:14850563,34541289 -g1,12470:15482855,34541289 -h1,12470:18644312,34541289:0,0,0 -k1,12470:32583029,34541289:13938717 -g1,12470:32583029,34541289 -) -(1,12474:6630773,35862827:25952256,404226,107478 -g1,12474:7579210,35862827 -g1,12474:10424521,35862827 -g1,12474:11372958,35862827 -g1,12474:12005250,35862827 -k1,12474:32583030,35862827:18997052 -g1,12474:32583030,35862827 -) -(1,12482:6630773,36529005:25952256,404226,6290 -(1,12474:6630773,36529005:0,0,0 -g1,12474:6630773,36529005 -g1,12474:6630773,36529005 -g1,12474:6303093,36529005 -(1,12474:6303093,36529005:0,0,0 -) -g1,12474:6630773,36529005 -) -g1,12482:7579210,36529005 -g1,12482:8211502,36529005 -g1,12482:8843794,36529005 -g1,12482:11372960,36529005 -g1,12482:12005252,36529005 -g1,12482:12637544,36529005 -h1,12482:12953690,36529005:0,0,0 -k1,12482:32583030,36529005:19629340 -g1,12482:32583030,36529005 -) -(1,12482:6630773,37195183:25952256,404226,6290 -h1,12482:6630773,37195183:0,0,0 -g1,12482:7579210,37195183 -g1,12482:7895356,37195183 -g1,12482:8211502,37195183 -g1,12482:8527648,37195183 -g1,12482:8843794,37195183 -g1,12482:10108377,37195183 -h1,12482:12321397,37195183:0,0,0 -k1,12482:32583029,37195183:20261632 -g1,12482:32583029,37195183 -) -(1,12482:6630773,37861361:25952256,404226,6290 -h1,12482:6630773,37861361:0,0,0 -g1,12482:7579210,37861361 -g1,12482:7895356,37861361 -g1,12482:8211502,37861361 -g1,12482:10108377,37861361 -k1,12482:10108377,37861361:0 -h1,12482:11689106,37861361:0,0,0 -k1,12482:32583030,37861361:20893924 -g1,12482:32583030,37861361 -) -(1,12482:6630773,38527539:25952256,388497,4718 -h1,12482:6630773,38527539:0,0,0 -g1,12482:7579210,38527539 -g1,12482:8211502,38527539 -g1,12482:8527648,38527539 -g1,12482:8843794,38527539 -g1,12482:9159940,38527539 -g1,12482:9476086,38527539 -g1,12482:10108378,38527539 -h1,12482:10424524,38527539:0,0,0 -k1,12482:32583028,38527539:22158504 -g1,12482:32583028,38527539 -) -(1,12482:6630773,39193717:25952256,388497,4718 -h1,12482:6630773,39193717:0,0,0 -g1,12482:7579210,39193717 -g1,12482:8211502,39193717 -g1,12482:8527648,39193717 -g1,12482:8843794,39193717 -g1,12482:9159940,39193717 -g1,12482:9476086,39193717 -g1,12482:10108378,39193717 -h1,12482:10424524,39193717:0,0,0 -k1,12482:32583028,39193717:22158504 -g1,12482:32583028,39193717 -) -(1,12482:6630773,39859895:25952256,388497,9436 -h1,12482:6630773,39859895:0,0,0 -g1,12482:7579210,39859895 -g1,12482:8211502,39859895 -g1,12482:8527648,39859895 -g1,12482:8843794,39859895 -g1,12482:9159940,39859895 -g1,12482:9476086,39859895 -g1,12482:10108378,39859895 -h1,12482:10424524,39859895:0,0,0 -k1,12482:32583028,39859895:22158504 -g1,12482:32583028,39859895 -) -(1,12482:6630773,40526073:25952256,379060,4718 -h1,12482:6630773,40526073:0,0,0 -g1,12482:7579210,40526073 -g1,12482:8211502,40526073 -g1,12482:8527648,40526073 -g1,12482:8843794,40526073 -g1,12482:9159940,40526073 -g1,12482:9476086,40526073 -g1,12482:10108378,40526073 -h1,12482:10424524,40526073:0,0,0 -k1,12482:32583028,40526073:22158504 -g1,12482:32583028,40526073 -) -] -) -g1,12483:32583029,40530791 -g1,12483:6630773,40530791 -g1,12483:6630773,40530791 -g1,12483:32583029,40530791 -g1,12483:32583029,40530791 -) -h1,12483:6630773,40727399:0,0,0 -v1,12487:6630773,42442153:0,393216,0 -(1,12502:6630773,45316247:25952256,3267310,196608 -g1,12502:6630773,45316247 -g1,12502:6630773,45316247 -g1,12502:6434165,45316247 -(1,12502:6434165,45316247:0,3267310,196608 -r1,12502:32779637,45316247:26345472,3463918,196608 -k1,12502:6434165,45316247:-26345472 -) -(1,12502:6434165,45316247:26345472,3267310,196608 -[1,12502:6630773,45316247:25952256,3070702,0 -(1,12489:6630773,42656063:25952256,410518,107478 -(1,12488:6630773,42656063:0,0,0 -g1,12488:6630773,42656063 -g1,12488:6630773,42656063 -g1,12488:6303093,42656063 -(1,12488:6303093,42656063:0,0,0 -) -g1,12488:6630773,42656063 -) -k1,12489:6630773,42656063:0 -g1,12489:10424522,42656063 -g1,12489:11056814,42656063 -g1,12489:14534417,42656063 -g1,12489:15166709,42656063 -g1,12489:15799001,42656063 -h1,12489:18644312,42656063:0,0,0 -k1,12489:32583029,42656063:13938717 -g1,12489:32583029,42656063 -) -(1,12493:6630773,43977601:25952256,404226,107478 -g1,12493:7579210,43977601 -g1,12493:10424521,43977601 -g1,12493:11372958,43977601 -g1,12493:12005250,43977601 -k1,12493:32583030,43977601:18997052 -g1,12493:32583030,43977601 -) -(1,12501:6630773,44643779:25952256,404226,6290 -(1,12493:6630773,44643779:0,0,0 -g1,12493:6630773,44643779 -g1,12493:6630773,44643779 -g1,12493:6303093,44643779 -(1,12493:6303093,44643779:0,0,0 -) -g1,12493:6630773,44643779 -) -g1,12501:7579210,44643779 -g1,12501:8211502,44643779 -g1,12501:8843794,44643779 -g1,12501:11372960,44643779 -g1,12501:12005252,44643779 -g1,12501:12637544,44643779 -h1,12501:12953690,44643779:0,0,0 -k1,12501:32583030,44643779:19629340 -g1,12501:32583030,44643779 -) -(1,12501:6630773,45309957:25952256,404226,6290 -h1,12501:6630773,45309957:0,0,0 -g1,12501:7579210,45309957 -g1,12501:7895356,45309957 -g1,12501:8211502,45309957 -g1,12501:8527648,45309957 -g1,12501:8843794,45309957 -g1,12501:10108377,45309957 -h1,12501:12321397,45309957:0,0,0 -k1,12501:32583029,45309957:20261632 -g1,12501:32583029,45309957 -) -] -) -g1,12502:32583029,45316247 -g1,12502:6630773,45316247 -g1,12502:6630773,45316247 -g1,12502:32583029,45316247 -g1,12502:32583029,45316247 -) -] -(1,12502:32583029,45706769:0,0,0 -g1,12502:32583029,45706769 -) -) -] -(1,12502:6630773,47279633:25952256,0,0 -h1,12502:6630773,47279633:25952256,0,0 -) -] -(1,12502:4262630,4025873:0,0,0 -[1,12502:-473656,4025873:0,0,0 -(1,12502:-473656,-710413:0,0,0 -(1,12502:-473656,-710413:0,0,0 -g1,12502:-473656,-710413 -) -g1,12502:-473656,-710413 -) -] -) -] -!27872 -}231 -Input:1745:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1746:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1747:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1748:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1749:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!472 -{232 -[1,12578:4262630,47279633:28320399,43253760,0 -(1,12578:4262630,4025873:0,0,0 -[1,12578:-473656,4025873:0,0,0 -(1,12578:-473656,-710413:0,0,0 -(1,12578:-473656,-644877:0,0,0 -k1,12578:-473656,-644877:-65536 -) -(1,12578:-473656,4736287:0,0,0 -k1,12578:-473656,4736287:5209943 -) -g1,12578:-473656,-710413 -) -] -) -[1,12578:6630773,47279633:25952256,43253760,0 -[1,12578:6630773,4812305:25952256,786432,0 -(1,12578:6630773,4812305:25952256,505283,134348 -(1,12578:6630773,4812305:25952256,505283,134348 -g1,12578:3078558,4812305 -[1,12578:3078558,4812305:0,0,0 -(1,12578:3078558,2439708:0,1703936,0 -k1,12578:1358238,2439708:-1720320 -(1,11088:1358238,2439708:1720320,1703936,0 -(1,11088:1358238,2439708:1179648,16384,0 -r1,12578:2537886,2439708:1179648,16384,0 -) -g1,11088:3062174,2439708 -(1,11088:3062174,2439708:16384,1703936,0 -[1,11088:3062174,2439708:25952256,1703936,0 -(1,11088:3062174,1915420:25952256,1179648,0 -(1,11088:3062174,1915420:16384,1179648,0 -r1,12578:3078558,1915420:16384,1179648,0 -) -k1,11088:29014430,1915420:25935872 -g1,11088:29014430,1915420 -) -] -) -) -) -] -[1,12578:3078558,4812305:0,0,0 -(1,12578:3078558,2439708:0,1703936,0 -g1,12578:29030814,2439708 -g1,12578:36135244,2439708 -(1,11088:36135244,2439708:1720320,1703936,0 -(1,11088:36135244,2439708:16384,1703936,0 -[1,11088:36135244,2439708:25952256,1703936,0 -(1,11088:36135244,1915420:25952256,1179648,0 -(1,11088:36135244,1915420:16384,1179648,0 -r1,12578:36151628,1915420:16384,1179648,0 -) -k1,11088:62087500,1915420:25935872 -g1,11088:62087500,1915420 -) -] -) -g1,11088:36675916,2439708 -(1,11088:36675916,2439708:1179648,16384,0 -r1,12578:37855564,2439708:1179648,16384,0 -) -) -k1,12578:3078556,2439708:-34777008 -) -] -[1,12578:3078558,4812305:0,0,0 -(1,12578:3078558,49800853:0,16384,2228224 -k1,12578:1358238,49800853:-1720320 -(1,11088:1358238,49800853:1720320,16384,2228224 -(1,11088:1358238,49800853:1179648,16384,0 -r1,12578:2537886,49800853:1179648,16384,0 -) -g1,11088:3062174,49800853 -(1,11088:3062174,52029077:16384,1703936,0 -[1,11088:3062174,52029077:25952256,1703936,0 -(1,11088:3062174,51504789:25952256,1179648,0 -(1,11088:3062174,51504789:16384,1179648,0 -r1,12578:3078558,51504789:16384,1179648,0 -) -k1,11088:29014430,51504789:25935872 -g1,11088:29014430,51504789 -) -] -) -) -) -] -[1,12578:3078558,4812305:0,0,0 -(1,12578:3078558,49800853:0,16384,2228224 -g1,12578:29030814,49800853 -g1,12578:36135244,49800853 -(1,11088:36135244,49800853:1720320,16384,2228224 -(1,11088:36135244,52029077:16384,1703936,0 -[1,11088:36135244,52029077:25952256,1703936,0 -(1,11088:36135244,51504789:25952256,1179648,0 -(1,11088:36135244,51504789:16384,1179648,0 -r1,12578:36151628,51504789:16384,1179648,0 -) -k1,11088:62087500,51504789:25935872 -g1,11088:62087500,51504789 -) -] -) -g1,11088:36675916,49800853 -(1,11088:36675916,49800853:1179648,16384,0 -r1,12578:37855564,49800853:1179648,16384,0 -) -) -k1,12578:3078556,49800853:-34777008 -) -] -g1,12578:6630773,4812305 -g1,12578:6630773,4812305 -g1,12578:9205682,4812305 -g1,12578:11846782,4812305 -k1,12578:31387652,4812305:19540870 -) -) -] -[1,12578:6630773,45706769:25952256,40108032,0 -(1,12578:6630773,45706769:25952256,40108032,0 -(1,12578:6630773,45706769:0,0,0 -g1,12578:6630773,45706769 -) -[1,12578:6630773,45706769:25952256,40108032,0 -v1,12502:6630773,6254097:0,393216,0 -(1,12502:6630773,9132717:25952256,3271836,196608 -g1,12502:6630773,9132717 -g1,12502:6630773,9132717 -g1,12502:6434165,9132717 -(1,12502:6434165,9132717:0,3271836,196608 -r1,12578:32779637,9132717:26345472,3468444,196608 -k1,12502:6434165,9132717:-26345472 -) -(1,12502:6434165,9132717:26345472,3271836,196608 -[1,12502:6630773,9132717:25952256,3075228,0 -(1,12501:6630773,6461715:25952256,404226,6290 -h1,12501:6630773,6461715:0,0,0 -g1,12501:7579210,6461715 -g1,12501:7895356,6461715 -g1,12501:8211502,6461715 -g1,12501:10108377,6461715 -k1,12501:10108377,6461715:0 -h1,12501:11689106,6461715:0,0,0 -k1,12501:32583030,6461715:20893924 -g1,12501:32583030,6461715 -) -(1,12501:6630773,7127893:25952256,404226,6290 -h1,12501:6630773,7127893:0,0,0 -g1,12501:7579210,7127893 -g1,12501:8211502,7127893 -g1,12501:8527648,7127893 -g1,12501:8843794,7127893 -g1,12501:9159940,7127893 -g1,12501:9476086,7127893 -g1,12501:10108378,7127893 -h1,12501:10424524,7127893:0,0,0 -k1,12501:32583028,7127893:22158504 -g1,12501:32583028,7127893 -) -(1,12501:6630773,7794071:25952256,404226,6290 -h1,12501:6630773,7794071:0,0,0 -g1,12501:7579210,7794071 -g1,12501:8211502,7794071 -g1,12501:8527648,7794071 -g1,12501:8843794,7794071 -g1,12501:9159940,7794071 -g1,12501:9476086,7794071 -g1,12501:10108378,7794071 -h1,12501:10424524,7794071:0,0,0 -k1,12501:32583028,7794071:22158504 -g1,12501:32583028,7794071 -) -(1,12501:6630773,8460249:25952256,404226,9436 -h1,12501:6630773,8460249:0,0,0 -g1,12501:7579210,8460249 -g1,12501:8211502,8460249 -g1,12501:8527648,8460249 -g1,12501:8843794,8460249 -g1,12501:9159940,8460249 -g1,12501:9476086,8460249 -g1,12501:10108378,8460249 -h1,12501:10424524,8460249:0,0,0 -k1,12501:32583028,8460249:22158504 -g1,12501:32583028,8460249 -) -(1,12501:6630773,9126427:25952256,404226,6290 -h1,12501:6630773,9126427:0,0,0 -g1,12501:7579210,9126427 -g1,12501:8211502,9126427 -g1,12501:8527648,9126427 -g1,12501:8843794,9126427 -g1,12501:9159940,9126427 -g1,12501:9476086,9126427 -g1,12501:10108378,9126427 -h1,12501:10424524,9126427:0,0,0 -k1,12501:32583028,9126427:22158504 -g1,12501:32583028,9126427 -) -] -) -g1,12502:32583029,9132717 -g1,12502:6630773,9132717 -g1,12502:6630773,9132717 -g1,12502:32583029,9132717 -g1,12502:32583029,9132717 -) -h1,12502:6630773,9329325:0,0,0 -(1,12506:6630773,10695101:25952256,513147,134348 -h1,12505:6630773,10695101:983040,0,0 -g1,12505:8300630,10695101 -g1,12505:11178971,10695101 -g1,12505:13573001,10695101 -g1,12505:15306428,10695101 -g1,12505:17073278,10695101 -(1,12505:17073278,10695101:0,414482,115847 -r1,12578:17431544,10695101:358266,530329,115847 -k1,12505:17073278,10695101:-358266 -) -(1,12505:17073278,10695101:358266,414482,115847 -k1,12505:17073278,10695101:3277 -h1,12505:17428267,10695101:0,411205,112570 -) -g1,12505:17630773,10695101 -g1,12505:19114508,10695101 -g1,12505:20129005,10695101 -g1,12505:21394505,10695101 -g1,12505:23068949,10695101 -g1,12505:23624038,10695101 -g1,12505:25804420,10695101 -g1,12505:26619687,10695101 -(1,12505:26619687,10695101:0,414482,115847 -r1,12578:26977953,10695101:358266,530329,115847 -k1,12505:26619687,10695101:-358266 -) -(1,12505:26619687,10695101:358266,414482,115847 -k1,12505:26619687,10695101:3277 -h1,12505:26974676,10695101:0,411205,112570 -) -k1,12506:32583029,10695101:5431406 -g1,12506:32583029,10695101 -) -v1,12508:6630773,11885567:0,393216,0 -(1,12520:6630773,16095163:25952256,4602812,196608 -g1,12520:6630773,16095163 -g1,12520:6630773,16095163 -g1,12520:6434165,16095163 -(1,12520:6434165,16095163:0,4602812,196608 -r1,12578:32779637,16095163:26345472,4799420,196608 -k1,12520:6434165,16095163:-26345472 -) -(1,12520:6434165,16095163:26345472,4602812,196608 -[1,12520:6630773,16095163:25952256,4406204,0 -(1,12510:6630773,12099477:25952256,410518,107478 -(1,12509:6630773,12099477:0,0,0 -g1,12509:6630773,12099477 -g1,12509:6630773,12099477 -g1,12509:6303093,12099477 -(1,12509:6303093,12099477:0,0,0 -) -g1,12509:6630773,12099477 -) -k1,12510:6630773,12099477:0 -g1,12510:10424522,12099477 -g1,12510:11056814,12099477 -g1,12510:14218271,12099477 -g1,12510:14850563,12099477 -g1,12510:15482855,12099477 -h1,12510:18644312,12099477:0,0,0 -k1,12510:32583029,12099477:13938717 -g1,12510:32583029,12099477 -) -(1,12514:6630773,13421015:25952256,404226,107478 -g1,12514:7579210,13421015 -g1,12514:10424521,13421015 -g1,12514:11372958,13421015 -g1,12514:12005250,13421015 -k1,12514:32583030,13421015:18997052 -g1,12514:32583030,13421015 -) -(1,12519:6630773,14087193:25952256,404226,6290 -(1,12514:6630773,14087193:0,0,0 -g1,12514:6630773,14087193 -g1,12514:6630773,14087193 -g1,12514:6303093,14087193 -(1,12514:6303093,14087193:0,0,0 -) -g1,12514:6630773,14087193 -) -g1,12519:7579210,14087193 -g1,12519:8211502,14087193 -g1,12519:8843794,14087193 -g1,12519:11372960,14087193 -g1,12519:12005252,14087193 -g1,12519:12637544,14087193 -h1,12519:12953690,14087193:0,0,0 -k1,12519:32583030,14087193:19629340 -g1,12519:32583030,14087193 -) -(1,12519:6630773,14753371:25952256,404226,6290 -h1,12519:6630773,14753371:0,0,0 -g1,12519:7579210,14753371 -g1,12519:7895356,14753371 -g1,12519:8211502,14753371 -g1,12519:8527648,14753371 -g1,12519:8843794,14753371 -g1,12519:10108377,14753371 -h1,12519:12321397,14753371:0,0,0 -k1,12519:32583029,14753371:20261632 -g1,12519:32583029,14753371 -) -(1,12519:6630773,15419549:25952256,404226,6290 -h1,12519:6630773,15419549:0,0,0 -g1,12519:7579210,15419549 -g1,12519:7895356,15419549 -g1,12519:8211502,15419549 -g1,12519:10108377,15419549 -k1,12519:10108377,15419549:0 -h1,12519:11689106,15419549:0,0,0 -k1,12519:32583030,15419549:20893924 -g1,12519:32583030,15419549 -) -(1,12519:6630773,16085727:25952256,388497,9436 -h1,12519:6630773,16085727:0,0,0 -g1,12519:7579210,16085727 -g1,12519:8211502,16085727 -g1,12519:8527648,16085727 -g1,12519:8843794,16085727 -g1,12519:9159940,16085727 -g1,12519:9476086,16085727 -g1,12519:10108378,16085727 -h1,12519:10424524,16085727:0,0,0 -k1,12519:32583028,16085727:22158504 -g1,12519:32583028,16085727 -) -] -) -g1,12520:32583029,16095163 -g1,12520:6630773,16095163 -g1,12520:6630773,16095163 -g1,12520:32583029,16095163 -g1,12520:32583029,16095163 -) -h1,12520:6630773,16291771:0,0,0 -v1,12524:6630773,18006525:0,393216,0 -(1,12536:6630773,22216121:25952256,4602812,196608 -g1,12536:6630773,22216121 -g1,12536:6630773,22216121 -g1,12536:6434165,22216121 -(1,12536:6434165,22216121:0,4602812,196608 -r1,12578:32779637,22216121:26345472,4799420,196608 -k1,12536:6434165,22216121:-26345472 -) -(1,12536:6434165,22216121:26345472,4602812,196608 -[1,12536:6630773,22216121:25952256,4406204,0 -(1,12526:6630773,18220435:25952256,410518,107478 -(1,12525:6630773,18220435:0,0,0 -g1,12525:6630773,18220435 -g1,12525:6630773,18220435 -g1,12525:6303093,18220435 -(1,12525:6303093,18220435:0,0,0 -) -g1,12525:6630773,18220435 -) -k1,12526:6630773,18220435:0 -g1,12526:10424522,18220435 -g1,12526:11056814,18220435 -g1,12526:14534417,18220435 -g1,12526:15166709,18220435 -g1,12526:15799001,18220435 -h1,12526:18644312,18220435:0,0,0 -k1,12526:32583029,18220435:13938717 -g1,12526:32583029,18220435 -) -(1,12530:6630773,19541973:25952256,404226,107478 -g1,12530:7579210,19541973 -g1,12530:10424521,19541973 -g1,12530:11372958,19541973 -g1,12530:12005250,19541973 -k1,12530:32583030,19541973:18997052 -g1,12530:32583030,19541973 -) -(1,12535:6630773,20208151:25952256,404226,6290 -(1,12530:6630773,20208151:0,0,0 -g1,12530:6630773,20208151 -g1,12530:6630773,20208151 -g1,12530:6303093,20208151 -(1,12530:6303093,20208151:0,0,0 -) -g1,12530:6630773,20208151 -) -g1,12535:7579210,20208151 -g1,12535:8211502,20208151 -g1,12535:8843794,20208151 -g1,12535:11372960,20208151 -g1,12535:12005252,20208151 -g1,12535:12637544,20208151 -h1,12535:12953690,20208151:0,0,0 -k1,12535:32583030,20208151:19629340 -g1,12535:32583030,20208151 -) -(1,12535:6630773,20874329:25952256,404226,6290 -h1,12535:6630773,20874329:0,0,0 -g1,12535:7579210,20874329 -g1,12535:7895356,20874329 -g1,12535:8211502,20874329 -g1,12535:8527648,20874329 -g1,12535:8843794,20874329 -g1,12535:10108377,20874329 -h1,12535:12321397,20874329:0,0,0 -k1,12535:32583029,20874329:20261632 -g1,12535:32583029,20874329 -) -(1,12535:6630773,21540507:25952256,404226,6290 -h1,12535:6630773,21540507:0,0,0 -g1,12535:7579210,21540507 -g1,12535:7895356,21540507 -g1,12535:8211502,21540507 -g1,12535:10108377,21540507 -k1,12535:10108377,21540507:0 -h1,12535:11689106,21540507:0,0,0 -k1,12535:32583030,21540507:20893924 -g1,12535:32583030,21540507 -) -(1,12535:6630773,22206685:25952256,404226,9436 -h1,12535:6630773,22206685:0,0,0 -g1,12535:7579210,22206685 -g1,12535:8211502,22206685 -g1,12535:8527648,22206685 -g1,12535:8843794,22206685 -g1,12535:9159940,22206685 -g1,12535:9476086,22206685 -g1,12535:10108378,22206685 -h1,12535:10424524,22206685:0,0,0 -k1,12535:32583028,22206685:22158504 -g1,12535:32583028,22206685 -) -] -) -g1,12536:32583029,22216121 -g1,12536:6630773,22216121 -g1,12536:6630773,22216121 -g1,12536:32583029,22216121 -g1,12536:32583029,22216121 -) -h1,12536:6630773,22412729:0,0,0 -(1,12540:6630773,23778505:25952256,513147,126483 -h1,12539:6630773,23778505:983040,0,0 -k1,12539:8730186,23778505:162824 -k1,12539:10290893,23778505:162824 -k1,12539:12827430,23778505:162823 -k1,12539:15373143,23778505:162824 -(1,12539:15373143,23778505:0,452978,115847 -r1,12578:16434832,23778505:1061689,568825,115847 -k1,12539:15373143,23778505:-1061689 -) -(1,12539:15373143,23778505:1061689,452978,115847 -k1,12539:15373143,23778505:3277 -h1,12539:16431555,23778505:0,411205,112570 -) -k1,12539:16597656,23778505:162824 -k1,12539:17376518,23778505:162824 -(1,12539:17376518,23778505:0,459977,115847 -r1,12578:20196767,23778505:2820249,575824,115847 -k1,12539:17376518,23778505:-2820249 -) -(1,12539:17376518,23778505:2820249,459977,115847 -k1,12539:17376518,23778505:3277 -h1,12539:20193490,23778505:0,411205,112570 -) -k1,12539:20359591,23778505:162824 -k1,12539:21173842,23778505:162823 -k1,12539:25369752,23778505:162824 -k1,12539:26551661,23778505:162824 -k1,12539:27806970,23778505:162824 -k1,12539:28636949,23778505:162823 -(1,12539:28636949,23778505:0,452978,115847 -r1,12578:29346927,23778505:709978,568825,115847 -k1,12539:28636949,23778505:-709978 -) -(1,12539:28636949,23778505:709978,452978,115847 -k1,12539:28636949,23778505:3277 -h1,12539:29343650,23778505:0,411205,112570 -) -k1,12539:29509751,23778505:162824 -k1,12539:30324003,23778505:162824 -k1,12539:32583029,23778505:0 -) -(1,12540:6630773,24619993:25952256,513147,7863 -g1,12539:8715473,24619993 -g1,12539:11627893,24619993 -g1,12539:14007505,24619993 -g1,12539:14954500,24619993 -g1,12539:17992093,24619993 -g1,12539:19138973,24619993 -k1,12540:32583029,24619993:10611590 -g1,12540:32583029,24619993 -) -v1,12542:6630773,25810459:0,393216,0 -(1,12558:6630773,32761121:25952256,7343878,196608 -g1,12558:6630773,32761121 -g1,12558:6630773,32761121 -g1,12558:6434165,32761121 -(1,12558:6434165,32761121:0,7343878,196608 -r1,12578:32779637,32761121:26345472,7540486,196608 -k1,12558:6434165,32761121:-26345472 -) -(1,12558:6434165,32761121:26345472,7343878,196608 -[1,12558:6630773,32761121:25952256,7147270,0 -(1,12544:6630773,26024369:25952256,410518,82312 -(1,12543:6630773,26024369:0,0,0 -g1,12543:6630773,26024369 -g1,12543:6630773,26024369 -g1,12543:6303093,26024369 -(1,12543:6303093,26024369:0,0,0 -) -g1,12543:6630773,26024369 -) -g1,12544:9792230,26024369 -g1,12544:10740668,26024369 -g1,12544:16115145,26024369 -g1,12544:17695874,26024369 -g1,12544:18328166,26024369 -h1,12544:19592749,26024369:0,0,0 -k1,12544:32583029,26024369:12990280 -g1,12544:32583029,26024369 -) -(1,12545:6630773,26690547:25952256,410518,107478 -h1,12545:6630773,26690547:0,0,0 -g1,12545:10424522,26690547 -g1,12545:11056814,26690547 -g1,12545:14534417,26690547 -g1,12545:15166709,26690547 -g1,12545:15799001,26690547 -g1,12545:19276604,26690547 -g1,12545:20225041,26690547 -g1,12545:20857333,26690547 -g1,12545:23702645,26690547 -g1,12545:24334937,26690547 -h1,12545:26547956,26690547:0,0,0 -k1,12545:32583029,26690547:6035073 -g1,12545:32583029,26690547 -) -(1,12557:6630773,27422261:25952256,404226,9436 -(1,12547:6630773,27422261:0,0,0 -g1,12547:6630773,27422261 -g1,12547:6630773,27422261 -g1,12547:6303093,27422261 -(1,12547:6303093,27422261:0,0,0 -) -g1,12547:6630773,27422261 -) -g1,12557:7579210,27422261 -g1,12557:8211502,27422261 -g1,12557:8843794,27422261 -g1,12557:11372960,27422261 -g1,12557:12005252,27422261 -g1,12557:12637544,27422261 -h1,12557:12953690,27422261:0,0,0 -k1,12557:32583030,27422261:19629340 -g1,12557:32583030,27422261 -) -(1,12557:6630773,28088439:25952256,404226,6290 -h1,12557:6630773,28088439:0,0,0 -g1,12557:7579210,28088439 -g1,12557:7895356,28088439 -g1,12557:8211502,28088439 -g1,12557:8527648,28088439 -g1,12557:10108377,28088439 -g1,12557:12637543,28088439 -h1,12557:14850563,28088439:0,0,0 -k1,12557:32583029,28088439:17732466 -g1,12557:32583029,28088439 -) -(1,12557:6630773,28754617:25952256,404226,6290 -h1,12557:6630773,28754617:0,0,0 -g1,12557:7579210,28754617 -g1,12557:7895356,28754617 -g1,12557:8211502,28754617 -g1,12557:10108377,28754617 -g1,12557:12005252,28754617 -g1,12557:12321398,28754617 -g1,12557:12637544,28754617 -k1,12557:12637544,28754617:0 -h1,12557:14218273,28754617:0,0,0 -k1,12557:32583029,28754617:18364756 -g1,12557:32583029,28754617 -) -(1,12557:6630773,29420795:25952256,404226,6290 -h1,12557:6630773,29420795:0,0,0 -g1,12557:7579210,29420795 -g1,12557:8211502,29420795 -g1,12557:8527648,29420795 -g1,12557:8843794,29420795 -g1,12557:9159940,29420795 -g1,12557:9476086,29420795 -g1,12557:10108378,29420795 -g1,12557:10740670,29420795 -g1,12557:11056816,29420795 -g1,12557:11372962,29420795 -g1,12557:11689108,29420795 -g1,12557:12005254,29420795 -g1,12557:12321400,29420795 -g1,12557:12637546,29420795 -h1,12557:12953692,29420795:0,0,0 -k1,12557:32583028,29420795:19629336 -g1,12557:32583028,29420795 -) -(1,12557:6630773,30086973:25952256,404226,6290 -h1,12557:6630773,30086973:0,0,0 -g1,12557:7579210,30086973 -g1,12557:8211502,30086973 -g1,12557:8527648,30086973 -g1,12557:8843794,30086973 -g1,12557:9159940,30086973 -g1,12557:9476086,30086973 -g1,12557:10108378,30086973 -g1,12557:10740670,30086973 -g1,12557:11056816,30086973 -g1,12557:11372962,30086973 -g1,12557:11689108,30086973 -g1,12557:12005254,30086973 -g1,12557:12321400,30086973 -g1,12557:12637546,30086973 -h1,12557:12953692,30086973:0,0,0 -k1,12557:32583028,30086973:19629336 -g1,12557:32583028,30086973 -) -(1,12557:6630773,30753151:25952256,404226,9436 -h1,12557:6630773,30753151:0,0,0 -g1,12557:7579210,30753151 -g1,12557:8211502,30753151 -g1,12557:8527648,30753151 -g1,12557:8843794,30753151 -g1,12557:9159940,30753151 -g1,12557:9476086,30753151 -g1,12557:10108378,30753151 -g1,12557:10740670,30753151 -g1,12557:11056816,30753151 -g1,12557:11372962,30753151 -g1,12557:11689108,30753151 -g1,12557:12005254,30753151 -g1,12557:12321400,30753151 -g1,12557:12637546,30753151 -h1,12557:12953692,30753151:0,0,0 -k1,12557:32583028,30753151:19629336 -g1,12557:32583028,30753151 -) -(1,12557:6630773,31419329:25952256,404226,6290 -h1,12557:6630773,31419329:0,0,0 -g1,12557:7579210,31419329 -g1,12557:8211502,31419329 -g1,12557:8527648,31419329 -g1,12557:8843794,31419329 -g1,12557:9159940,31419329 -g1,12557:9476086,31419329 -g1,12557:10108378,31419329 -g1,12557:10740670,31419329 -g1,12557:11056816,31419329 -g1,12557:11372962,31419329 -g1,12557:11689108,31419329 -g1,12557:12005254,31419329 -g1,12557:12321400,31419329 -g1,12557:12637546,31419329 -h1,12557:12953692,31419329:0,0,0 -k1,12557:32583028,31419329:19629336 -g1,12557:32583028,31419329 -) -(1,12557:6630773,32085507:25952256,379060,9436 -h1,12557:6630773,32085507:0,0,0 -g1,12557:7579210,32085507 -g1,12557:8211502,32085507 -g1,12557:8527648,32085507 -g1,12557:8843794,32085507 -g1,12557:9159940,32085507 -g1,12557:9476086,32085507 -g1,12557:10108378,32085507 -g1,12557:10740670,32085507 -g1,12557:11056816,32085507 -g1,12557:11372962,32085507 -g1,12557:11689108,32085507 -g1,12557:12005254,32085507 -g1,12557:12321400,32085507 -g1,12557:12637546,32085507 -k1,12557:12637546,32085507:0 -h1,12557:13902129,32085507:0,0,0 -k1,12557:32583029,32085507:18680900 -g1,12557:32583029,32085507 -) -(1,12557:6630773,32751685:25952256,404226,9436 -h1,12557:6630773,32751685:0,0,0 -g1,12557:7579210,32751685 -g1,12557:8211502,32751685 -g1,12557:8527648,32751685 -g1,12557:8843794,32751685 -g1,12557:9159940,32751685 -g1,12557:9476086,32751685 -g1,12557:10108378,32751685 -g1,12557:11689107,32751685 -g1,12557:12005253,32751685 -g1,12557:12321399,32751685 -g1,12557:12637545,32751685 -h1,12557:12953691,32751685:0,0,0 -k1,12557:32583029,32751685:19629338 -g1,12557:32583029,32751685 -) -] -) -g1,12558:32583029,32761121 -g1,12558:6630773,32761121 -g1,12558:6630773,32761121 -g1,12558:32583029,32761121 -g1,12558:32583029,32761121 -) -h1,12558:6630773,32957729:0,0,0 -(1,12566:6630773,36289585:25952256,32768,229376 -(1,12566:6630773,36289585:0,32768,229376 -(1,12566:6630773,36289585:5505024,32768,229376 -r1,12578:12135797,36289585:5505024,262144,229376 -) -k1,12566:6630773,36289585:-5505024 -) -(1,12566:6630773,36289585:25952256,32768,0 -r1,12578:32583029,36289585:25952256,32768,0 -) -) -(1,12566:6630773,37893913:25952256,606339,161218 -(1,12566:6630773,37893913:1974731,582746,14155 -g1,12566:6630773,37893913 -g1,12566:8605504,37893913 -) -g1,12566:11813360,37893913 -k1,12566:32583030,37893913:17773364 -g1,12566:32583030,37893913 -) -(1,12568:6630773,39128617:25952256,513147,126483 -k1,12567:7724317,39128617:191113 -k1,12567:10605028,39128617:191113 -k1,12567:14167968,39128617:191113 -k1,12567:15018373,39128617:191113 -k1,12567:16228571,39128617:191113 -k1,12567:19627671,39128617:191113 -k1,12567:20350280,39128617:191112 -k1,12567:22907243,39128617:191113 -k1,12567:24117441,39128617:191113 -k1,12567:26135042,39128617:191113 -k1,12567:26985447,39128617:191113 -k1,12567:28379801,39128617:191113 -k1,12567:30326624,39128617:191113 -k1,12567:32583029,39128617:0 -) -(1,12568:6630773,39970105:25952256,513147,134348 -k1,12567:8770992,39970105:227878 -k1,12567:11668151,39970105:227878 -k1,12567:12512067,39970105:227878 -k1,12567:14527112,39970105:227878 -k1,12567:15774075,39970105:227878 -k1,12567:17094438,39970105:227878 -k1,12567:17981609,39970105:227879 -k1,12567:19906214,39970105:227878 -k1,12567:23218216,39970105:227878 -k1,12567:24263983,39970105:227878 -k1,12567:26723362,39970105:227878 -k1,12567:27610532,39970105:227878 -k1,12567:29477465,39970105:227878 -k1,12567:30696903,39970105:227878 -k1,12567:32583029,39970105:0 -) -(1,12568:6630773,40811593:25952256,513147,126483 -k1,12567:8663535,40811593:180715 -k1,12567:13149966,40811593:180716 -k1,12567:15319043,40811593:180715 -k1,12567:18066804,40811593:180716 -k1,12567:18906811,40811593:180715 -k1,12567:20999867,40811593:180715 -k1,12567:22674149,40811593:180716 -k1,12567:23541026,40811593:180715 -k1,12567:24171319,40811593:180716 -k1,12567:25276092,40811593:180715 -k1,12567:26991006,40811593:180716 -k1,12567:29451719,40811593:180715 -k1,12567:32583029,40811593:0 -) -(1,12568:6630773,41653081:25952256,513147,95026 -g1,12567:8021447,41653081 -g1,12567:11806151,41653081 -g1,12567:13806309,41653081 -g1,12567:14997098,41653081 -g1,12567:16215412,41653081 -g1,12567:18016341,41653081 -k1,12568:32583029,41653081:12415796 -g1,12568:32583029,41653081 -) -] -(1,12578:32583029,45706769:0,0,0 -g1,12578:32583029,45706769 -) -) -] -(1,12578:6630773,47279633:25952256,0,0 -h1,12578:6630773,47279633:25952256,0,0 -) -] -(1,12578:4262630,4025873:0,0,0 -[1,12578:-473656,4025873:0,0,0 -(1,12578:-473656,-710413:0,0,0 -(1,12578:-473656,-710413:0,0,0 -g1,12578:-473656,-710413 -) -g1,12578:-473656,-710413 -) -] -) -] -!22195 -}232 -!12 -{233 -[1,12578:4262630,47279633:28320399,43253760,0 -(1,12578:4262630,4025873:0,0,0 -[1,12578:-473656,4025873:0,0,0 -(1,12578:-473656,-710413:0,0,0 -(1,12578:-473656,-644877:0,0,0 -k1,12578:-473656,-644877:-65536 -) -(1,12578:-473656,4736287:0,0,0 -k1,12578:-473656,4736287:5209943 -) -g1,12578:-473656,-710413 -) -] -) -[1,12578:6630773,47279633:25952256,43253760,0 -[1,12578:6630773,4812305:25952256,786432,0 -(1,12578:6630773,4812305:25952256,0,0 -(1,12578:6630773,4812305:25952256,0,0 -g1,12578:3078558,4812305 -[1,12578:3078558,4812305:0,0,0 -(1,12578:3078558,2439708:0,1703936,0 -k1,12578:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,12578:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,12578:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,12578:3078558,4812305:0,0,0 -(1,12578:3078558,2439708:0,1703936,0 -g1,12578:29030814,2439708 -g1,12578:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,12578:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,12578:37855564,2439708:1179648,16384,0 -) -) -k1,12578:3078556,2439708:-34777008 -) -] -[1,12578:3078558,4812305:0,0,0 -(1,12578:3078558,49800853:0,16384,2228224 -k1,12578:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,12578:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,12578:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,12578:3078558,4812305:0,0,0 -(1,12578:3078558,49800853:0,16384,2228224 -g1,12578:29030814,49800853 -g1,12578:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,12578:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,12578:37855564,49800853:1179648,16384,0 -) -) -k1,12578:3078556,49800853:-34777008 -) -] -g1,12578:6630773,4812305 -) -) -] -[1,12578:6630773,45706769:0,40108032,0 -(1,12578:6630773,45706769:0,40108032,0 -(1,12578:6630773,45706769:0,0,0 -g1,12578:6630773,45706769 -) -[1,12578:6630773,45706769:0,40108032,0 -h1,12578:6630773,6254097:0,0,0 -] -(1,12578:6630773,45706769:0,0,0 -g1,12578:6630773,45706769 -) -) -] -(1,12578:6630773,47279633:25952256,0,0 -h1,12578:6630773,47279633:25952256,0,0 -) -] -(1,12578:4262630,4025873:0,0,0 -[1,12578:-473656,4025873:0,0,0 -(1,12578:-473656,-710413:0,0,0 -(1,12578:-473656,-710413:0,0,0 -g1,12578:-473656,-710413 -) -g1,12578:-473656,-710413 -) -] -) -] -!3399 -}233 -!11 -{234 -[1,12628:4262630,47279633:28320399,43253760,0 -(1,12628:4262630,4025873:0,0,0 -[1,12628:-473656,4025873:0,0,0 -(1,12628:-473656,-710413:0,0,0 -(1,12628:-473656,-644877:0,0,0 -k1,12628:-473656,-644877:-65536 -) -(1,12628:-473656,4736287:0,0,0 -k1,12628:-473656,4736287:5209943 -) -g1,12628:-473656,-710413 -) -] -) -[1,12628:6630773,47279633:25952256,43253760,0 -[1,12628:6630773,4812305:25952256,786432,0 -(1,12628:6630773,4812305:25952256,0,0 -(1,12628:6630773,4812305:25952256,0,0 -g1,12628:3078558,4812305 -[1,12628:3078558,4812305:0,0,0 -(1,12628:3078558,2439708:0,1703936,0 -k1,12628:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,12628:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,12628:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,12628:3078558,4812305:0,0,0 -(1,12628:3078558,2439708:0,1703936,0 -g1,12628:29030814,2439708 -g1,12628:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,12628:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,12628:37855564,2439708:1179648,16384,0 -) -) -k1,12628:3078556,2439708:-34777008 -) -] -[1,12628:3078558,4812305:0,0,0 -(1,12628:3078558,49800853:0,16384,2228224 -k1,12628:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,12628:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,12628:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,12628:3078558,4812305:0,0,0 -(1,12628:3078558,49800853:0,16384,2228224 -g1,12628:29030814,49800853 -g1,12628:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,12628:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,12628:37855564,49800853:1179648,16384,0 -) -) -k1,12628:3078556,49800853:-34777008 -) -] -g1,12628:6630773,4812305 -) -) -] -[1,12628:6630773,45706769:25952256,40108032,0 -(1,12628:6630773,45706769:25952256,40108032,0 -(1,12628:6630773,45706769:0,0,0 -g1,12628:6630773,45706769 -) -[1,12628:6630773,45706769:25952256,40108032,0 -[1,12578:6630773,11635422:25952256,6036685,0 -(1,12578:6630773,6604846:25952256,1137181,0 -h1,12578:6630773,6604846:0,0,0 -k1,12578:20096848,6604846:12486181 -k1,12578:32583029,6604846:12486181 -) -(1,12578:6630773,7304782:25952256,32768,229376 -(1,12578:6630773,7304782:0,32768,229376 -(1,12578:6630773,7304782:5505024,32768,229376 -r1,12628:12135797,7304782:5505024,262144,229376 -) -k1,12578:6630773,7304782:-5505024 -) -(1,12578:6630773,7304782:25952256,32768,0 -r1,12628:32583029,7304782:25952256,32768,0 -) -) -(1,12578:6630773,9100478:25952256,923664,241827 -h1,12578:6630773,9100478:0,0,0 -g1,12578:12651697,9100478 -g1,12578:14119179,9100478 -k1,12578:25790027,9100478:6793003 -k1,12578:32583029,9100478:6793002 -) -(1,12578:6630773,9800414:25952256,32768,0 -(1,12578:6630773,9800414:5505024,32768,0 -r1,12628:12135797,9800414:5505024,32768,0 -) -k1,12578:22359413,9800414:10223616 -k1,12578:32583029,9800414:10223616 -) -] -(1,12580:6630773,14528187:25952256,131072,0 -r1,12628:32583029,14528187:25952256,131072,0 -g1,12580:32583029,14528187 -g1,12580:32583029,14528187 -) -(1,12582:6630773,15848088:25952256,505283,134348 -k1,12582:8596853,15848088:1966080 -k1,12581:10284470,15848088:490930 -k1,12581:14933004,15848088:490930 -k1,12581:18059137,15848088:490930 -k1,12581:20858245,15848088:490930 -k1,12581:22540621,15848088:490931 -k1,12581:23932671,15848088:490930 -k1,12581:24955098,15848088:490930 -k1,12581:26062066,15848088:490930 -k1,12581:28449608,15848088:490930 -k1,12581:29591966,15848088:490930 -k1,12581:32583029,15848088:1966080 -) -(1,12582:6630773,16689576:25952256,513147,134348 -g1,12582:8596853,16689576 -g1,12581:13682446,16689576 -g1,12581:16374665,16689576 -g1,12581:19662606,16689576 -g1,12581:20521127,16689576 -g1,12581:22735588,16689576 -g1,12581:24126262,16689576 -k1,12582:30616949,16689576:3666085 -g1,12582:32583029,16689576 -) -(1,12583:6630773,18317496:25952256,513147,11795 -k1,12583:16902232,18317496:10271459 -h1,12583:16902232,18317496:0,0,0 -g1,12583:19479107,18317496 -g1,12583:21900662,18317496 -g1,12583:24357606,18317496 -g1,12583:25208263,18317496 -g1,12583:28382827,18317496 -g1,12583:30616949,18317496 -g1,12583:32583029,18317496 -) -(1,12584:6630773,19158984:25952256,513147,126483 -k1,12584:17763375,19158984:11132602 -h1,12583:17763375,19158984:0,0,0 -g1,12583:18865690,19158984 -g1,12583:21993723,19158984 -g1,12583:23556101,19158984 -g1,12583:26159191,19158984 -g1,12583:26981667,19158984 -g1,12583:29023113,19158984 -g1,12584:30616949,19158984 -g1,12584:32583029,19158984 -) -(1,12584:6630773,20393688:25952256,131072,0 -r1,12628:32583029,20393688:25952256,131072,0 -g1,12584:32583029,20393688 -g1,12584:34549109,20393688 -) -(1,12605:6630773,23987688:25952256,32768,229376 -(1,12605:6630773,23987688:0,32768,229376 -(1,12605:6630773,23987688:5505024,32768,229376 -r1,12628:12135797,23987688:5505024,262144,229376 -) -k1,12605:6630773,23987688:-5505024 -) -(1,12605:6630773,23987688:25952256,32768,0 -r1,12628:32583029,23987688:25952256,32768,0 -) -) -(1,12605:6630773,25592016:25952256,615776,151780 -(1,12605:6630773,25592016:1974731,573309,0 -g1,12605:6630773,25592016 -g1,12605:8605504,25592016 -) -g1,12605:10904245,25592016 -g1,12605:11961996,25592016 -g1,12605:13695292,25592016 -k1,12605:32583029,25592016:15886712 -g1,12605:32583029,25592016 -) -(1,12608:6630773,26826720:25952256,505283,134348 -k1,12607:8650090,26826720:186930 -k1,12607:10428890,26826720:186930 -k1,12607:12005182,26826720:186929 -k1,12607:14716559,26826720:186930 -k1,12607:17479709,26826720:186930 -k1,12607:18658199,26826720:186930 -k1,12607:21629098,26826720:186930 -k1,12607:22467455,26826720:186929 -k1,12607:23069216,26826720:186918 -k1,12607:25140961,26826720:186930 -k1,12607:26761818,26826720:186929 -k1,12607:27537261,26826720:186930 -k1,12607:30304343,26826720:186930 -k1,12607:32583029,26826720:0 -) -(1,12608:6630773,27668208:25952256,505283,134348 -k1,12607:9088424,27668208:214353 -k1,12607:11103707,27668208:214354 -k1,12607:12509505,27668208:214353 -k1,12607:15304011,27668208:214354 -k1,12607:18346897,27668208:214353 -k1,12607:21692561,27668208:214354 -k1,12607:23098359,27668208:214353 -k1,12607:25466226,27668208:214354 -k1,12607:27655225,27668208:214399 -k1,12607:28888663,27668208:214353 -k1,12607:30251208,27668208:214354 -k1,12607:31622271,27668208:214353 -k1,12608:32583029,27668208:0 -) -(1,12608:6630773,28509696:25952256,513147,134348 -k1,12607:7822268,28509696:201246 -k1,12607:9042599,28509696:201246 -k1,12607:10845545,28509696:201246 -k1,12607:13035153,28509696:201246 -k1,12607:14427844,28509696:201246 -k1,12607:17539544,28509696:201246 -k1,12607:19342489,28509696:201245 -k1,12607:22043934,28509696:201246 -k1,12607:24491099,28509696:201246 -k1,12607:27476314,28509696:201246 -k1,12607:28293598,28509696:201246 -k1,12607:28909685,28509696:201244 -k1,12607:30058582,28509696:201246 -k1,12607:32583029,28509696:0 -) -(1,12608:6630773,29351184:25952256,513147,134348 -k1,12607:8368586,29351184:174779 -k1,12607:10033655,29351184:174780 -k1,12607:11380873,29351184:174779 -k1,12607:14317996,29351184:174780 -k1,12607:15757620,29351184:174779 -k1,12607:16591691,29351184:174779 -k1,12607:19485560,29351184:174780 -k1,12607:22884710,29351184:174779 -k1,12607:24336130,29351184:174779 -k1,12607:26254823,29351184:174780 -k1,12607:27942828,29351184:174779 -k1,12607:28769036,29351184:174780 -k1,12607:31563944,29351184:174779 -k1,12607:32583029,29351184:0 -) -(1,12608:6630773,30192672:25952256,505283,134348 -k1,12607:9524389,30192672:181736 -k1,12607:12655901,30192672:181737 -k1,12607:15706803,30192672:181736 -k1,12607:17382106,30192672:181737 -k1,12607:18250004,30192672:181736 -k1,12607:19930548,30192672:181736 -k1,12607:21303730,30192672:181737 -k1,12607:24334316,30192672:181736 -k1,12607:25507612,30192672:181736 -k1,12607:28473318,30192672:181737 -k1,12607:29271092,30192672:181736 -k1,12607:30041342,30192672:181737 -k1,12607:31966991,30192672:181736 -k1,12607:32583029,30192672:0 -) -(1,12608:6630773,31034160:25952256,505283,134348 -g1,12607:8263930,31034160 -g1,12607:8878002,31034160 -g1,12607:10268676,31034160 -g1,12607:10823765,31034160 -g1,12607:12941888,31034160 -g1,12607:14297827,31034160 -g1,12607:15113094,31034160 -g1,12607:16331408,31034160 -g1,12607:18156584,31034160 -g1,12607:20935965,31034160 -g1,12607:23655054,31034160 -k1,12608:32583029,31034160:6953375 -g1,12608:32583029,31034160 -) -(1,12610:6630773,31875648:25952256,513147,134348 -h1,12609:6630773,31875648:983040,0,0 -k1,12609:8497188,31875648:255540 -k1,12609:9955969,31875648:255540 -k1,12609:12629132,31875648:255540 -k1,12609:14055144,31875648:255539 -k1,12609:15443146,31875648:255540 -k1,12609:17310216,31875648:255540 -k1,12609:18584841,31875648:255540 -k1,12609:21672192,31875648:255540 -k1,12609:22587024,31875648:255540 -k1,12609:23861649,31875648:255540 -k1,12609:26443061,31875648:255539 -k1,12609:29601191,31875648:255540 -k1,12609:30516023,31875648:255540 -k1,12610:32583029,31875648:0 -) -(1,12610:6630773,32717136:25952256,505283,134348 -k1,12609:7891733,32717136:222214 -k1,12609:8923317,32717136:222214 -k1,12609:11031002,32717136:222214 -k1,12609:13833367,32717136:222213 -k1,12609:16884114,32717136:222214 -k1,12609:17637825,32717136:222214 -k1,12609:19888378,32717136:222214 -k1,12609:21364296,32717136:222214 -k1,12609:22718972,32717136:222214 -k1,12609:24227002,32717136:222214 -k1,12609:26060745,32717136:222213 -k1,12609:27613340,32717136:222214 -k1,12609:28486982,32717136:222214 -k1,12609:30351528,32717136:222214 -k1,12609:32583029,32717136:0 -) -(1,12610:6630773,33558624:25952256,513147,134348 -k1,12609:8513118,33558624:165957 -k1,12609:9338368,33558624:165958 -k1,12609:10893688,33558624:165957 -k1,12609:12667244,33558624:165958 -k1,12609:14227152,33558624:165957 -k1,12609:16973261,33558624:165957 -k1,12609:20141422,33558624:165958 -k1,12609:21125268,33558624:165957 -k1,12609:21647085,33558624:165957 -k1,12609:25895936,33558624:165958 -k1,12609:26721185,33558624:165957 -k1,12609:27906228,33558624:165958 -k1,12609:31391584,33558624:165957 -k1,12609:32583029,33558624:0 -) -(1,12610:6630773,34400112:25952256,513147,134348 -k1,12609:9765142,34400112:160345 -k1,12609:10584779,34400112:160345 -k1,12609:13747327,34400112:160345 -k1,12609:15659449,34400112:160345 -k1,12609:19549447,34400112:160344 -k1,12609:22620246,34400112:160345 -k1,12609:25923042,34400112:160345 -k1,12609:26871785,34400112:160345 -k1,12609:31107814,34400112:160345 -k1,12609:32583029,34400112:0 -) -(1,12610:6630773,35241600:25952256,513147,126483 -k1,12609:8332267,35241600:191544 -k1,12609:11784883,35241600:191545 -k1,12609:13167872,35241600:191544 -k1,12609:16499247,35241600:191545 -k1,12609:17306829,35241600:191544 -k1,12609:19474284,35241600:191545 -k1,12609:23640587,35241600:191544 -k1,12609:26766833,35241600:191544 -k1,12609:27171362,35241600:191537 -k1,12609:28495369,35241600:191545 -k1,12609:30424928,35241600:191544 -k1,12609:32583029,35241600:0 -) -(1,12610:6630773,36083088:25952256,513147,134348 -g1,12609:7639372,36083088 -g1,12609:10418753,36083088 -g1,12609:13446515,36083088 -g1,12609:15021345,36083088 -g1,12609:17253501,36083088 -g1,12609:20764920,36083088 -g1,12609:21320009,36083088 -g1,12609:22652356,36083088 -g1,12609:23510877,36083088 -g1,12609:25406833,36083088 -k1,12610:32583029,36083088:3599896 -g1,12610:32583029,36083088 -) -(1,12611:6630773,38890656:25952256,32768,229376 -(1,12611:6630773,38890656:0,32768,229376 -(1,12611:6630773,38890656:5505024,32768,229376 -r1,12628:12135797,38890656:5505024,262144,229376 -) -k1,12611:6630773,38890656:-5505024 -) -(1,12611:6630773,38890656:25952256,32768,0 -r1,12628:32583029,38890656:25952256,32768,0 -) -) -(1,12611:6630773,40494984:25952256,606339,161218 -(1,12611:6630773,40494984:1974731,582746,0 -g1,12611:6630773,40494984 -g1,12611:8605504,40494984 -) -g1,12611:12473177,40494984 -g1,12611:14599689,40494984 -g1,12611:15614973,40494984 -g1,12611:17348269,40494984 -k1,12611:32583029,40494984:12233735 -g1,12611:32583029,40494984 -) -(1,12616:6630773,41729688:25952256,513147,134348 -k1,12615:7270841,41729688:162311 -k1,12615:8452237,41729688:162311 -k1,12615:11525002,41729688:162311 -k1,12615:13200538,41729688:162310 -k1,12615:13978887,41729688:162311 -k1,12615:15344439,41729688:162311 -k1,12615:17924373,41729688:162311 -k1,12615:19078244,41729688:162311 -k1,12615:20306826,41729688:162311 -k1,12615:21434482,41729688:162311 -k1,12615:24334231,41729688:162310 -k1,12615:25112580,41729688:162311 -k1,12615:26733722,41729688:162311 -k1,12615:30145963,41729688:162311 -k1,12615:31478747,41729688:162311 -k1,12615:32583029,41729688:0 -) -(1,12616:6630773,42571176:25952256,505283,134348 -g1,12615:8799359,42571176 -g1,12615:10637643,42571176 -g1,12615:11523034,42571176 -g1,12615:13797788,42571176 -g1,12615:16039119,42571176 -g1,12615:16924510,42571176 -g1,12615:18512447,42571176 -g1,12615:19397838,42571176 -g1,12615:22177219,42571176 -g1,12615:26182778,42571176 -g1,12615:26913504,42571176 -g1,12615:29447125,42571176 -k1,12616:32583029,42571176:224795 -g1,12616:32583029,42571176 -) -v1,12618:6630773,43761642:0,393216,0 -(1,12622:6630773,44076738:25952256,708312,196608 -g1,12622:6630773,44076738 -g1,12622:6630773,44076738 -g1,12622:6434165,44076738 -(1,12622:6434165,44076738:0,708312,196608 -r1,12628:32779637,44076738:26345472,904920,196608 -k1,12622:6434165,44076738:-26345472 -) -(1,12622:6434165,44076738:26345472,708312,196608 -[1,12622:6630773,44076738:25952256,511704,0 -(1,12620:6630773,43969260:25952256,404226,107478 -(1,12619:6630773,43969260:0,0,0 -g1,12619:6630773,43969260 -g1,12619:6630773,43969260 -g1,12619:6303093,43969260 -(1,12619:6303093,43969260:0,0,0 -) -g1,12619:6630773,43969260 -) -k1,12620:6630773,43969260:0 -h1,12620:20541182,43969260:0,0,0 -k1,12620:32583029,43969260:12041847 -g1,12620:32583029,43969260 -) -] -) -g1,12622:32583029,44076738 -g1,12622:6630773,44076738 -g1,12622:6630773,44076738 -g1,12622:32583029,44076738 -g1,12622:32583029,44076738 -) -h1,12622:6630773,44273346:0,0,0 -] -(1,12628:32583029,45706769:0,0,0 -g1,12628:32583029,45706769 -) -) -] -(1,12628:6630773,47279633:25952256,485622,0 -(1,12628:6630773,47279633:25952256,485622,0 -(1,12628:6630773,47279633:0,0,0 -v1,12628:6630773,47279633:0,0,0 -) -g1,12628:6830002,47279633 -k1,12628:31387652,47279633:24557650 -) -) -] -(1,12628:4262630,4025873:0,0,0 -[1,12628:-473656,4025873:0,0,0 -(1,12628:-473656,-710413:0,0,0 -(1,12628:-473656,-710413:0,0,0 -g1,12628:-473656,-710413 -) -g1,12628:-473656,-710413 -) -] -) -] -!15126 -}234 -Input:1750:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1751:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!196 -{235 -[1,12660:4262630,47279633:28320399,43253760,0 -(1,12660:4262630,4025873:0,0,0 -[1,12660:-473656,4025873:0,0,0 -(1,12660:-473656,-710413:0,0,0 -(1,12660:-473656,-644877:0,0,0 -k1,12660:-473656,-644877:-65536 -) -(1,12660:-473656,4736287:0,0,0 -k1,12660:-473656,4736287:5209943 -) -g1,12660:-473656,-710413 -) -] -) -[1,12660:6630773,47279633:25952256,43253760,0 -[1,12660:6630773,4812305:25952256,786432,0 -(1,12660:6630773,4812305:25952256,513147,134348 -(1,12660:6630773,4812305:25952256,513147,134348 -g1,12660:3078558,4812305 -[1,12660:3078558,4812305:0,0,0 -(1,12660:3078558,2439708:0,1703936,0 -k1,12660:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,12660:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,12660:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,12660:3078558,4812305:0,0,0 -(1,12660:3078558,2439708:0,1703936,0 -g1,12660:29030814,2439708 -g1,12660:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,12660:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,12660:37855564,2439708:1179648,16384,0 -) -) -k1,12660:3078556,2439708:-34777008 -) -] -[1,12660:3078558,4812305:0,0,0 -(1,12660:3078558,49800853:0,16384,2228224 -k1,12660:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,12660:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,12660:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,12660:3078558,4812305:0,0,0 -(1,12660:3078558,49800853:0,16384,2228224 -g1,12660:29030814,49800853 -g1,12660:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,12660:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,12660:37855564,49800853:1179648,16384,0 -) -) -k1,12660:3078556,49800853:-34777008 -) -] -g1,12660:6630773,4812305 -k1,12660:25712890,4812305:17886740 -g1,12660:29057847,4812305 -g1,12660:29873114,4812305 -) -) -] -[1,12660:6630773,45706769:25952256,40108032,0 -(1,12660:6630773,45706769:25952256,40108032,0 -(1,12660:6630773,45706769:0,0,0 -g1,12660:6630773,45706769 -) -[1,12660:6630773,45706769:25952256,40108032,0 -(1,12626:6630773,6254097:25952256,513147,126483 -h1,12625:6630773,6254097:983040,0,0 -k1,12625:8614266,6254097:171423 -k1,12625:9903734,6254097:171424 -k1,12625:11094242,6254097:171423 -k1,12625:14257384,6254097:171423 -k1,12625:17187217,6254097:171423 -k1,12625:17974679,6254097:171424 -k1,12625:19349343,6254097:171423 -k1,12625:22112060,6254097:171423 -k1,12625:23453957,6254097:171424 -k1,12625:25155646,6254097:171423 -k1,12625:26633202,6254097:171423 -k1,12625:27456053,6254097:171423 -k1,12625:29003733,6254097:171424 -k1,12625:30867296,6254097:171423 -k1,12626:32583029,6254097:0 -) -(1,12626:6630773,7095585:25952256,513147,134348 -k1,12625:8257991,7095585:219505 -k1,12625:10045116,7095585:219504 -k1,12625:11283706,7095585:219505 -k1,12625:13603639,7095585:219504 -k1,12625:15055221,7095585:219505 -k1,12625:17553412,7095585:219504 -h1,12625:18524000,7095585:0,0,0 -k1,12625:18743505,7095585:219505 -k1,12625:19772379,7095585:219504 -k1,12625:21490037,7095585:219505 -h1,12625:22685414,7095585:0,0,0 -k1,12625:22904918,7095585:219504 -k1,12625:24072074,7095585:219505 -k1,12625:26409046,7095585:219504 -k1,12625:27437921,7095585:219505 -k1,12625:28676510,7095585:219504 -k1,12625:29988500,7095585:219505 -k1,12625:30867296,7095585:219504 -k1,12626:32583029,7095585:0 -) -(1,12626:6630773,7937073:25952256,505283,134348 -k1,12626:32583029,7937073:24163778 -g1,12626:32583029,7937073 -) -v1,12628:6630773,9127539:0,393216,0 -(1,12644:6630773,17430480:25952256,8696157,196608 -g1,12644:6630773,17430480 -g1,12644:6630773,17430480 -g1,12644:6434165,17430480 -(1,12644:6434165,17430480:0,8696157,196608 -r1,12660:32779637,17430480:26345472,8892765,196608 -k1,12644:6434165,17430480:-26345472 -) -(1,12644:6434165,17430480:26345472,8696157,196608 -[1,12644:6630773,17430480:25952256,8499549,0 -(1,12630:6630773,9335157:25952256,404226,101187 -(1,12629:6630773,9335157:0,0,0 -g1,12629:6630773,9335157 -g1,12629:6630773,9335157 -g1,12629:6303093,9335157 -(1,12629:6303093,9335157:0,0,0 -) -g1,12629:6630773,9335157 -) -k1,12630:6630773,9335157:0 -h1,12630:12637541,9335157:0,0,0 -k1,12630:32583029,9335157:19945488 -g1,12630:32583029,9335157 -) -(1,12631:6630773,10001335:25952256,404226,101187 -h1,12631:6630773,10001335:0,0,0 -k1,12631:6630773,10001335:0 -h1,12631:11056813,10001335:0,0,0 -k1,12631:32583029,10001335:21526216 -g1,12631:32583029,10001335 -) -(1,12632:6630773,10667513:25952256,404226,101187 -h1,12632:6630773,10667513:0,0,0 -k1,12632:6630773,10667513:0 -h1,12632:11372958,10667513:0,0,0 -k1,12632:32583030,10667513:21210072 -g1,12632:32583030,10667513 -) -(1,12633:6630773,11333691:25952256,404226,107478 -h1,12633:6630773,11333691:0,0,0 -k1,12633:6630773,11333691:0 -h1,12633:11689104,11333691:0,0,0 -k1,12633:32583028,11333691:20893924 -g1,12633:32583028,11333691 -) -(1,12634:6630773,11999869:25952256,404226,107478 -h1,12634:6630773,11999869:0,0,0 -k1,12634:6630773,11999869:0 -h1,12634:11689104,11999869:0,0,0 -k1,12634:32583028,11999869:20893924 -g1,12634:32583028,11999869 -) -(1,12635:6630773,12666047:25952256,404226,107478 -h1,12635:6630773,12666047:0,0,0 -k1,12635:6630773,12666047:0 -h1,12635:12321395,12666047:0,0,0 -k1,12635:32583029,12666047:20261634 -g1,12635:32583029,12666047 -) -(1,12636:6630773,13332225:25952256,404226,107478 -h1,12636:6630773,13332225:0,0,0 -k1,12636:6630773,13332225:0 -h1,12636:11689104,13332225:0,0,0 -k1,12636:32583028,13332225:20893924 -g1,12636:32583028,13332225 -) -(1,12637:6630773,13998403:25952256,404226,107478 -h1,12637:6630773,13998403:0,0,0 -k1,12637:6630773,13998403:0 -h1,12637:12637541,13998403:0,0,0 -k1,12637:32583029,13998403:19945488 -g1,12637:32583029,13998403 -) -(1,12638:6630773,14664581:25952256,410518,107478 -h1,12638:6630773,14664581:0,0,0 -k1,12638:6630773,14664581:0 -h1,12638:11689104,14664581:0,0,0 -k1,12638:32583028,14664581:20893924 -g1,12638:32583028,14664581 -) -(1,12639:6630773,15330759:25952256,404226,101187 -h1,12639:6630773,15330759:0,0,0 -k1,12639:6630773,15330759:0 -h1,12639:12637541,15330759:0,0,0 -k1,12639:32583029,15330759:19945488 -g1,12639:32583029,15330759 -) -(1,12640:6630773,15996937:25952256,404226,101187 -h1,12640:6630773,15996937:0,0,0 -k1,12640:6630773,15996937:0 -h1,12640:12321395,15996937:0,0,0 -k1,12640:32583029,15996937:20261634 -g1,12640:32583029,15996937 -) -(1,12641:6630773,16663115:25952256,404226,101187 -h1,12641:6630773,16663115:0,0,0 -k1,12641:6630773,16663115:0 -h1,12641:12321395,16663115:0,0,0 -k1,12641:32583029,16663115:20261634 -g1,12641:32583029,16663115 -) -(1,12642:6630773,17329293:25952256,404226,101187 -h1,12642:6630773,17329293:0,0,0 -k1,12642:6630773,17329293:0 -h1,12642:12321395,17329293:0,0,0 -k1,12642:32583029,17329293:20261634 -g1,12642:32583029,17329293 -) -] -) -g1,12644:32583029,17430480 -g1,12644:6630773,17430480 -g1,12644:6630773,17430480 -g1,12644:32583029,17430480 -g1,12644:32583029,17430480 -) -h1,12644:6630773,17627088:0,0,0 -(1,12651:6630773,20958944:25952256,32768,229376 -(1,12651:6630773,20958944:0,32768,229376 -(1,12651:6630773,20958944:5505024,32768,229376 -r1,12660:12135797,20958944:5505024,262144,229376 -) -k1,12651:6630773,20958944:-5505024 -) -(1,12651:6630773,20958944:25952256,32768,0 -r1,12660:32583029,20958944:25952256,32768,0 -) -) -(1,12651:6630773,22563272:25952256,615776,161218 -(1,12651:6630773,22563272:1974731,582746,14155 -g1,12651:6630773,22563272 -g1,12651:8605504,22563272 -) -g1,12651:13807752,22563272 -g1,12651:14844270,22563272 -g1,12651:16351860,22563272 -g1,12651:20190435,22563272 -g1,12651:21248186,22563272 -k1,12651:32583029,22563272:7942962 -g1,12651:32583029,22563272 -) -(1,12654:6630773,23797976:25952256,513147,134348 -k1,12653:8502902,23797976:238316 -k1,12653:11774224,23797976:238316 -k1,12653:14841074,23797976:238317 -k1,12653:16647011,23797976:238316 -k1,12653:18319255,23797976:238316 -k1,12653:18972375,23797976:238277 -k1,12653:20402136,23797976:238316 -k1,12653:24767254,23797976:238316 -k1,12653:27530018,23797976:238317 -k1,12653:30794131,23797976:238316 -k1,12653:31563944,23797976:238316 -k1,12653:32583029,23797976:0 -) -(1,12654:6630773,24639464:25952256,513147,134348 -k1,12653:8030294,24639464:307036 -k1,12653:8996622,24639464:307036 -k1,12653:9659518,24639464:307036 -k1,12653:12869145,24639464:307037 -k1,12653:13835473,24639464:307036 -k1,12653:16861598,24639464:307036 -k1,12653:18394813,24639464:307036 -k1,12653:20833080,24639464:307036 -k1,12653:23339504,24639464:307036 -k1,12653:24742303,24639464:307037 -k1,12653:25665377,24639464:307036 -k1,12653:26991498,24639464:307036 -k1,12653:29036549,24639464:307036 -k1,12653:30002877,24639464:307036 -k1,12653:32583029,24639464:0 -) -(1,12654:6630773,25480952:25952256,505283,134348 -k1,12653:10005033,25480952:164963 -k1,12653:11803810,25480952:164964 -k1,12653:12500270,25480952:164963 -k1,12653:14660150,25480952:164964 -k1,12653:15586641,25480952:164963 -k1,12653:18654195,25480952:164964 -k1,12653:19435196,25480952:164963 -k1,12653:20803400,25480952:164963 -k1,12653:22335445,25480952:164964 -k1,12653:23031905,25480952:164963 -k1,12653:24481375,25480952:164964 -k1,12653:26253936,25480952:164963 -k1,12653:27410460,25480952:164964 -k1,12653:30932832,25480952:164963 -k1,12653:32583029,25480952:0 -) -(1,12654:6630773,26322440:25952256,513147,134348 -k1,12653:7607087,26322440:214786 -k1,12653:9472071,26322440:214787 -k1,12653:11422250,26322440:214786 -k1,12653:14399379,26322440:214786 -k1,12653:17183833,26322440:214787 -k1,12653:18590064,26322440:214786 -k1,12653:21128757,26322440:214786 -k1,12653:24659666,26322440:214787 -k1,12653:26849145,26322440:214879 -k1,12653:29402911,26322440:214786 -k1,12653:30276990,26322440:214787 -k1,12653:32227169,26322440:214786 -k1,12653:32583029,26322440:0 -) -(1,12654:6630773,27163928:25952256,513147,134348 -k1,12653:8767050,27163928:263258 -k1,12653:11725804,27163928:263258 -k1,12653:13383013,27163928:263258 -k1,12653:15398048,27163928:263258 -k1,12653:19237606,27163928:263258 -k1,12653:21108462,27163928:263258 -k1,12653:22363280,27163928:263258 -k1,12653:25983947,27163928:263258 -k1,12653:27008733,27163928:263258 -k1,12653:30626779,27163928:263258 -k1,12654:32583029,27163928:0 -) -(1,12654:6630773,28005416:25952256,505283,126483 -k1,12653:7898736,28005416:248878 -k1,12653:11016779,28005416:248877 -k1,12653:12659608,28005416:248878 -k1,12653:15985401,28005416:248878 -(1,12653:15985401,28005416:0,414482,115847 -r1,12660:16343667,28005416:358266,530329,115847 -k1,12653:15985401,28005416:-358266 -) -(1,12653:15985401,28005416:358266,414482,115847 -k1,12653:15985401,28005416:3277 -h1,12653:16340390,28005416:0,411205,112570 -) -k1,12653:16592544,28005416:248877 -k1,12653:18032867,28005416:248878 -h1,12653:18032867,28005416:0,0,0 -k1,12653:19640960,28005416:248877 -k1,12653:24083487,28005416:248878 -k1,12653:25351450,28005416:248878 -k1,12653:29634723,28005416:248877 -k1,12653:30415098,28005416:248878 -k1,12653:32583029,28005416:0 -) -(1,12654:6630773,28846904:25952256,505283,134348 -k1,12653:12080092,28846904:191365 -k1,12653:13462902,28846904:191365 -k1,12653:14305695,28846904:191365 -k1,12653:14852920,28846904:191365 -k1,12653:16615183,28846904:191365 -k1,12653:18968581,28846904:191365 -k1,12653:20490327,28846904:191365 -k1,12653:22289290,28846904:191365 -k1,12653:23867397,28846904:191365 -k1,12653:25756800,28846904:191365 -k1,12653:28471956,28846904:191365 -k1,12653:31900144,28846904:191365 -k1,12653:32583029,28846904:0 -) -(1,12654:6630773,29688392:25952256,513147,134348 -g1,12653:9670988,29688392 -g1,12653:10521645,29688392 -g1,12653:11076734,29688392 -g1,12653:13531057,29688392 -g1,12653:14413171,29688392 -g1,12653:19522357,29688392 -g1,12653:20704626,29688392 -g1,12653:21435352,29688392 -g1,12653:24895652,29688392 -g1,12653:25856409,29688392 -k1,12654:32583029,29688392:4236252 -g1,12654:32583029,29688392 -) -(1,12656:6630773,30529880:25952256,513147,134348 -h1,12655:6630773,30529880:983040,0,0 -k1,12655:8740024,30529880:172662 -k1,12655:10016968,30529880:172662 -k1,12655:11869973,30529880:172662 -k1,12655:12701928,30529880:172663 -k1,12655:15399037,30529880:172662 -k1,12655:16257861,30529880:172662 -k1,12655:20462298,30529880:172662 -k1,12655:21654045,30529880:172662 -k1,12655:25898459,30529880:172662 -k1,12655:26754007,30529880:172663 -k1,12655:28316032,30529880:172662 -k1,12655:29104732,30529880:172662 -k1,12655:29633254,30529880:172662 -k1,12655:32583029,30529880:0 -) -(1,12656:6630773,31371368:25952256,513147,134348 -k1,12655:9814572,31371368:167832 -k1,12655:10935952,31371368:167831 -k1,12655:12196269,31371368:167832 -k1,12655:13383185,31371368:167831 -k1,12655:16846823,31371368:167832 -k1,12655:17673946,31371368:167831 -k1,12655:20791553,31371368:167832 -k1,12655:23249212,31371368:167831 -k1,12655:24068472,31371368:167832 -k1,12655:27277829,31371368:167831 -k1,12655:30208004,31371368:167832 -k1,12655:32583029,31371368:0 -) -(1,12656:6630773,32212856:25952256,513147,126483 -k1,12655:7478506,32212856:188441 -k1,12655:8764675,32212856:188441 -k1,12655:10516151,32212856:188442 -k1,12655:11607023,32212856:188441 -k1,12655:15536914,32212856:188441 -k1,12655:16829637,32212856:188441 -k1,12655:19279726,32212856:188442 -k1,12655:20127459,32212856:188441 -k1,12655:22987147,32212856:188441 -k1,12655:26016574,32212856:188441 -k1,12655:28389331,32212856:188442 -k1,12655:29649941,32212856:188441 -k1,12655:30609085,32212856:188441 -k1,12656:32583029,32212856:0 -) -(1,12656:6630773,33054344:25952256,513147,126483 -k1,12655:8781463,33054344:170192 -k1,12655:9610947,33054344:170192 -k1,12655:10626553,33054344:170192 -k1,12655:14740702,33054344:170192 -k1,12655:16247828,33054344:170192 -k1,12655:17165786,33054344:170192 -k1,12655:19717556,33054344:170192 -k1,12655:20649276,33054344:170192 -k1,12655:21175328,33054344:170192 -k1,12655:23959751,33054344:170192 -k1,12655:24745981,33054344:170192 -k1,12655:29433570,33054344:170192 -k1,12655:31391584,33054344:170192 -k1,12655:32583029,33054344:0 -) -(1,12656:6630773,33895832:25952256,513147,126483 -k1,12655:7210766,33895832:224133 -k1,12655:9123106,33895832:224133 -k1,12655:9963277,33895832:224133 -k1,12655:11786489,33895832:224134 -k1,12655:12626660,33895832:224133 -k1,12655:15516798,33895832:224133 -k1,12655:16392359,33895832:224133 -k1,12655:17635577,33895832:224133 -k1,12655:21803667,33895832:224133 -k1,12655:23807102,33895832:224133 -k1,12655:24933667,33895832:224134 -k1,12655:28899250,33895832:224133 -k1,12655:30071034,33895832:224133 -k1,12655:31314252,33895832:224133 -k1,12655:32583029,33895832:0 -) -(1,12656:6630773,34737320:25952256,513147,134348 -k1,12655:8030669,34737320:208451 -k1,12655:10108208,34737320:208452 -k1,12655:10975951,34737320:208451 -k1,12655:11540262,34737320:208451 -k1,12655:13402186,34737320:208451 -k1,12655:14714920,34737320:208452 -k1,12655:17185018,34737320:208451 -k1,12655:18052761,34737320:208451 -k1,12655:20444217,34737320:208452 -k1,12655:22207182,34737320:208451 -k1,12655:25427012,34737320:208451 -k1,12655:28121244,34737320:208451 -k1,12655:28988988,34737320:208452 -k1,12655:31314252,34737320:208451 -k1,12655:32583029,34737320:0 -) -(1,12656:6630773,35578808:25952256,513147,134348 -k1,12655:7466919,35578808:176854 -k1,12655:10836686,35578808:176853 -k1,12655:13130353,35578808:176854 -k1,12655:15320472,35578808:176853 -k1,12655:16156618,35578808:176854 -k1,12655:18171756,35578808:176853 -k1,12655:19994219,35578808:176854 -k1,12655:21981177,35578808:176854 -k1,12655:23228233,35578808:176853 -k1,12655:25215191,35578808:176854 -k1,12655:26503535,35578808:176853 -k1,12655:27158146,35578808:176854 -k1,12655:28203351,35578808:176853 -k1,12655:29371765,35578808:176854 -k1,12655:32583029,35578808:0 -) -(1,12656:6630773,36420296:25952256,505283,134348 -k1,12655:7461517,36420296:214706 -k1,12655:8695308,36420296:214706 -k1,12655:12741249,36420296:214706 -k1,12655:15591158,36420296:214706 -k1,12655:17815198,36420296:214706 -k1,12655:19221349,36420296:214706 -k1,12655:20990568,36420296:214705 -k1,12655:24216653,36420296:214706 -k1,12655:25299711,36420296:214706 -k1,12655:26851351,36420296:214706 -k1,12655:28614673,36420296:214706 -k1,12655:29480807,36420296:214706 -k1,12655:30787998,36420296:214706 -k1,12656:32583029,36420296:0 -) -(1,12656:6630773,37261784:25952256,513147,134348 -k1,12655:8151460,37261784:218487 -k1,12655:12281791,37261784:218487 -k1,12655:15321602,37261784:218486 -k1,12655:17094603,37261784:218487 -k1,12655:20150799,37261784:218487 -k1,12655:21020714,37261784:218487 -k1,12655:22258285,37261784:218486 -$1,12655:22258285,37261784 -$1,12655:22760946,37261784 -k1,12655:22979433,37261784:218487 -k1,12655:26542878,37261784:218487 -k1,12655:27420657,37261784:218487 -k1,12655:28658228,37261784:218486 -k1,12655:30154012,37261784:218487 -k1,12655:31563944,37261784:218487 -k1,12655:32583029,37261784:0 -) -(1,12656:6630773,38103272:25952256,505283,138281 -k1,12655:8850881,38103272:210774 -k1,12655:9713082,38103272:210773 -k1,12655:10942941,38103272:210774 -$1,12655:10942941,38103272 -$1,12655:11494754,38103272 -k1,12655:11705528,38103272:210774 -k1,12655:15434929,38103272:210773 -k1,12655:16842390,38103272:210774 -k1,12655:21124916,38103272:210774 -k1,12655:23104507,38103272:210774 -k1,12655:24063046,38103272:210773 -k1,12655:28083428,38103272:210774 -k1,12655:29103572,38103272:210774 -k1,12655:30333430,38103272:210773 -k1,12655:31821501,38103272:210774 -k1,12655:32583029,38103272:0 -) -(1,12656:6630773,38944760:25952256,473825,126483 -k1,12656:32583028,38944760:23760076 -g1,12656:32583028,38944760 -) -(1,12658:6630773,39786248:25952256,513147,134348 -h1,12657:6630773,39786248:983040,0,0 -k1,12657:9074064,39786248:263564 -k1,12657:12240218,39786248:263564 -k1,12657:13163074,39786248:263564 -k1,12657:16145727,39786248:263564 -k1,12657:18421246,39786248:263564 -k1,12657:19429954,39786248:263564 -k1,12657:20344945,39786248:263563 -k1,12657:22697141,39786248:263564 -k1,12657:24568303,39786248:263564 -k1,12657:25593395,39786248:263564 -k1,12657:29211747,39786248:263564 -k1,12657:31817568,39786248:263564 -k1,12658:32583029,39786248:0 -) -(1,12658:6630773,40627736:25952256,513147,134348 -k1,12657:9230133,40627736:282662 -k1,12657:10128832,40627736:282661 -k1,12657:11979771,40627736:282662 -k1,12657:13546938,40627736:282661 -k1,12657:14821160,40627736:282662 -k1,12657:17076456,40627736:282662 -k1,12657:21026512,40627736:282661 -k1,12657:21937009,40627736:282662 -k1,12657:23921641,40627736:282662 -k1,12657:26332911,40627736:282661 -k1,12657:27634658,40627736:282662 -k1,12657:30621990,40627736:282661 -k1,12657:31563944,40627736:282662 -k1,12657:32583029,40627736:0 -) -(1,12658:6630773,41469224:25952256,513147,134348 -k1,12657:9502506,41469224:241773 -k1,12657:14062446,41469224:241773 -k1,12657:14963512,41469224:241774 -k1,12657:17760534,41469224:241773 -k1,12657:19537816,41469224:241773 -k1,12657:21319685,41469224:241773 -k1,12657:23169056,41469224:241773 -k1,12657:24096991,41469224:241773 -k1,12657:25727473,41469224:241774 -k1,12657:26655408,41469224:241773 -k1,12657:27765533,41469224:241773 -k1,12657:30943974,41469224:241773 -k1,12657:32583029,41469224:0 -) -(1,12658:6630773,42310712:25952256,513147,134348 -k1,12657:10236564,42310712:290980 -k1,12657:11546629,42310712:290980 -k1,12657:13423579,42310712:290979 -k1,12657:14373851,42310712:290980 -k1,12657:15683916,42310712:290980 -k1,12657:19051156,42310712:290980 -k1,12657:20722980,42310712:290980 -k1,12657:23987983,42310712:290979 -k1,12657:26324997,42310712:290980 -k1,12657:29444510,42310712:290980 -k1,12657:32583029,42310712:0 -) -(1,12658:6630773,43152200:25952256,513147,126483 -k1,12657:9705285,43152200:217798 -k1,12657:10609245,43152200:217798 -k1,12657:11695395,43152200:217798 -k1,12657:13017474,43152200:217797 -k1,12657:14877604,43152200:217798 -k1,12657:16703000,43152200:217798 -k1,12657:18112243,43152200:217798 -k1,12657:19796737,43152200:217798 -k1,12657:21730923,43152200:217798 -k1,12657:22608013,43152200:217798 -k1,12657:24433409,43152200:217798 -k1,12657:26536677,43152200:217797 -k1,12657:28258526,43152200:217798 -k1,12657:29542595,43152200:217798 -k1,12657:31227089,43152200:217798 -k1,12658:32583029,43152200:0 -) -(1,12658:6630773,43993688:25952256,505283,134348 -g1,12657:9186021,43993688 -g1,12657:11074768,43993688 -g1,12657:14352878,43993688 -g1,12657:15571192,43993688 -g1,12657:18598954,43993688 -k1,12658:32583029,43993688:11230252 -g1,12658:32583029,43993688 -) -(1,12660:6630773,44835176:25952256,505283,134348 -h1,12659:6630773,44835176:983040,0,0 -k1,12659:9567050,44835176:170002 -k1,12659:10092912,44835176:170002 -k1,12659:11540211,44835176:170002 -k1,12659:12241711,44835176:170003 -k1,12659:14063876,44835176:170002 -k1,12659:15252963,44835176:170002 -k1,12659:17305814,44835176:170002 -k1,12659:18753113,44835176:170002 -k1,12659:20114560,44835176:170002 -k1,12659:21072960,44835176:170002 -k1,12659:25170535,44835176:170002 -k1,12659:26332098,44835176:170003 -k1,12659:28852221,44835176:170002 -k1,12659:29708385,44835176:170002 -k1,12659:30293201,44835176:169973 -k1,12659:32583029,44835176:0 -) -(1,12660:6630773,45676664:25952256,513147,134348 -k1,12659:8163879,45676664:248600 -k1,12659:9516761,45676664:248600 -k1,12659:10513127,45676664:248600 -k1,12659:12573142,45676664:248600 -k1,12659:13437780,45676664:248600 -k1,12659:14705465,45676664:248600 -k1,12659:18338344,45676664:248600 -k1,12659:19269828,45676664:248599 -k1,12659:21804979,45676664:248600 -k1,12659:22705007,45676664:248600 -k1,12659:23309467,45676664:248600 -k1,12659:24541107,45676664:248600 -k1,12659:25475869,45676664:248600 -k1,12659:28187967,45676664:248600 -k1,12659:29633254,45676664:248600 -k1,12659:32583029,45676664:0 -) -] -(1,12660:32583029,45706769:0,0,0 -g1,12660:32583029,45706769 -) -) -] -(1,12660:6630773,47279633:25952256,0,0 -h1,12660:6630773,47279633:25952256,0,0 -) -] -(1,12660:4262630,4025873:0,0,0 -[1,12660:-473656,4025873:0,0,0 -(1,12660:-473656,-710413:0,0,0 -(1,12660:-473656,-710413:0,0,0 -g1,12660:-473656,-710413 -) -g1,12660:-473656,-710413 -) -] -) -] -!22475 -}235 -Input:1752:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1753:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1754:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1755:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1756:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1757:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1758:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!656 -{236 -[1,12673:4262630,47279633:28320399,43253760,0 -(1,12673:4262630,4025873:0,0,0 -[1,12673:-473656,4025873:0,0,0 -(1,12673:-473656,-710413:0,0,0 -(1,12673:-473656,-644877:0,0,0 -k1,12673:-473656,-644877:-65536 -) -(1,12673:-473656,4736287:0,0,0 -k1,12673:-473656,4736287:5209943 -) -g1,12673:-473656,-710413 -) -] -) -[1,12673:6630773,47279633:25952256,43253760,0 -[1,12673:6630773,4812305:25952256,786432,0 -(1,12673:6630773,4812305:25952256,513147,134348 -(1,12673:6630773,4812305:25952256,513147,134348 -g1,12673:3078558,4812305 -[1,12673:3078558,4812305:0,0,0 -(1,12673:3078558,2439708:0,1703936,0 -k1,12673:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,12673:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,12673:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,12673:3078558,4812305:0,0,0 -(1,12673:3078558,2439708:0,1703936,0 -g1,12673:29030814,2439708 -g1,12673:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,12673:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,12673:37855564,2439708:1179648,16384,0 -) -) -k1,12673:3078556,2439708:-34777008 -) -] -[1,12673:3078558,4812305:0,0,0 -(1,12673:3078558,49800853:0,16384,2228224 -k1,12673:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,12673:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,12673:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,12673:3078558,4812305:0,0,0 -(1,12673:3078558,49800853:0,16384,2228224 -g1,12673:29030814,49800853 -g1,12673:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,12673:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,12673:37855564,49800853:1179648,16384,0 -) -) -k1,12673:3078556,49800853:-34777008 -) -] -g1,12673:6630773,4812305 -g1,12673:6630773,4812305 -g1,12673:10697281,4812305 -g1,12673:11496164,4812305 -g1,12673:12681054,4812305 -g1,12673:15925086,4812305 -g1,12673:16740353,4812305 -g1,12673:19649496,4812305 -k1,12673:31387652,4812305:11738156 -) -) -] -[1,12673:6630773,45706769:25952256,40108032,0 -(1,12673:6630773,45706769:25952256,40108032,0 -(1,12673:6630773,45706769:0,0,0 -g1,12673:6630773,45706769 -) -[1,12673:6630773,45706769:25952256,40108032,0 -(1,12660:6630773,6254097:25952256,505283,134348 -k1,12659:11475653,6254097:180027 -k1,12659:12187178,6254097:180028 -k1,12659:15520142,6254097:180027 -k1,12659:17398207,6254097:180027 -k1,12659:18597320,6254097:180028 -k1,12659:20736873,6254097:180027 -k1,12659:21448397,6254097:180027 -k1,12659:24152215,6254097:180027 -k1,12659:27229590,6254097:180028 -k1,12659:28092502,6254097:180027 -k1,12659:32583029,6254097:0 -) -(1,12660:6630773,7095585:25952256,513147,134348 -k1,12659:7972210,7095585:144750 -k1,12659:9770433,7095585:144750 -(1,12659:9770433,7095585:0,452978,122846 -r1,12673:11183834,7095585:1413401,575824,122846 -k1,12659:9770433,7095585:-1413401 -) -(1,12659:9770433,7095585:1413401,452978,122846 -k1,12659:9770433,7095585:3277 -h1,12659:11180557,7095585:0,411205,112570 -) -k1,12659:11328584,7095585:144750 -k1,12659:12750630,7095585:144749 -k1,12659:14854906,7095585:144750 -k1,12659:16103938,7095585:144750 -k1,12659:16996454,7095585:144750 -k1,12659:20016268,7095585:144750 -k1,12659:21428484,7095585:144750 -k1,12659:24335576,7095585:144749 -k1,12659:26735420,7095585:144750 -k1,12659:28071615,7095585:144750 -k1,12659:30194242,7095585:144750 -k1,12659:32583029,7095585:0 -) -(1,12660:6630773,7937073:25952256,513147,134348 -g1,12659:9340686,7937073 -g1,12659:10487566,7937073 -g1,12659:12981866,7937073 -g1,12659:13863980,7937073 -k1,12660:32583029,7937073:15973090 -g1,12660:32583029,7937073 -) -(1,12662:6630773,8778561:25952256,513147,134348 -h1,12661:6630773,8778561:983040,0,0 -k1,12661:9085096,8778561:274596 -k1,12661:14196904,8778561:274596 -k1,12661:15130792,8778561:274596 -k1,12661:15761248,8778561:274596 -k1,12661:16970387,8778561:274596 -k1,12661:17904276,8778561:274597 -k1,12661:19568235,8778561:274596 -k1,12661:20525716,8778561:274596 -k1,12661:24872064,8778561:274596 -k1,12661:26414126,8778561:274596 -k1,12661:27044582,8778561:274596 -k1,12661:30194242,8778561:274596 -k1,12661:32583029,8778561:0 -) -(1,12662:6630773,9620049:25952256,513147,134348 -k1,12661:8243006,9620049:218282 -k1,12661:11041439,9620049:218281 -k1,12661:14088254,9620049:218282 -k1,12661:15410818,9620049:218282 -k1,12661:16376866,9620049:218282 -k1,12661:20404755,9620049:218281 -k1,12661:21309199,9620049:218282 -k1,12661:21883341,9620049:218282 -k1,12661:23451664,9620049:218281 -k1,12661:24329238,9620049:218282 -k1,12661:28528177,9620049:218282 -k1,12661:29818628,9620049:218282 -k1,12661:31322725,9620049:218281 -k1,12661:32227169,9620049:218282 -k1,12661:32583029,9620049:0 -) -(1,12662:6630773,10461537:25952256,513147,126483 -k1,12661:9747720,10461537:177002 -k1,12661:10584013,10461537:177001 -k1,12661:13221892,10461537:177002 -k1,12661:16333596,10461537:177002 -k1,12661:18059213,10461537:177001 -k1,12661:20296012,10461537:177002 -k1,12661:21757520,10461537:177002 -k1,12661:22953606,10461537:177001 -k1,12661:26104632,10461537:177002 -k1,12661:29055118,10461537:177002 -k1,12661:29587979,10461537:177001 -k1,12661:32051532,10461537:177002 -k1,12661:32583029,10461537:0 -) -(1,12662:6630773,11303025:25952256,513147,126483 -k1,12661:8132028,11303025:216749 -k1,12661:8814739,11303025:216750 -k1,12661:9899840,11303025:216749 -k1,12661:10931857,11303025:216749 -k1,12661:12214878,11303025:216750 -k1,12661:15328974,11303025:216749 -k1,12661:18195344,11303025:216749 -k1,12661:19178210,11303025:216750 -k1,12661:21080545,11303025:216749 -k1,12661:21913332,11303025:216749 -k1,12661:23227810,11303025:216750 -k1,12661:25114416,11303025:216749 -k1,12661:25947203,11303025:216749 -k1,12661:27765653,11303025:216750 -k1,12661:29679784,11303025:216749 -k1,12661:32583029,11303025:0 -) -(1,12662:6630773,12144513:25952256,513147,126483 -k1,12661:9493738,12144513:267084 -k1,12661:10708474,12144513:267085 -k1,12661:12614613,12144513:267084 -k1,12661:14014160,12144513:267085 -k1,12661:15029010,12144513:267084 -k1,12661:16809321,12144513:267085 -k1,12661:19577259,12144513:267084 -k1,12661:21041031,12144513:267085 -k1,12661:22993701,12144513:267084 -k1,12661:23876824,12144513:267085 -k1,12661:25162993,12144513:267084 -k1,12661:30267290,12144513:267085 -k1,12661:31193666,12144513:267084 -k1,12661:32583029,12144513:0 -) -(1,12662:6630773,12986001:25952256,513147,134348 -k1,12661:8070992,12986001:172753 -k1,12661:8599605,12986001:172753 -k1,12661:11647422,12986001:172753 -k1,12661:14208962,12986001:172753 -k1,12661:17092284,12986001:172753 -k1,12661:17620897,12986001:172753 -k1,12661:19687640,12986001:172753 -k1,12661:20423346,12986001:172752 -k1,12661:21549648,12986001:172753 -k1,12661:24254057,12986001:172753 -k1,12661:25445895,12986001:172753 -k1,12661:27008011,12986001:172753 -k1,12661:27832192,12986001:172753 -k1,12661:29271101,12986001:172753 -k1,12661:30051373,12986001:172753 -k1,12661:32583029,12986001:0 -) -(1,12662:6630773,13827489:25952256,505283,126483 -k1,12661:8726146,13827489:209902 -k1,12661:11447389,13827489:209903 -k1,12661:12308719,13827489:209902 -k1,12661:13915193,13827489:209902 -k1,12661:14776523,13827489:209902 -k1,12661:16871897,13827489:209903 -k1,12661:18359096,13827489:209902 -k1,12661:21586931,13827489:209902 -k1,12661:22337506,13827489:209903 -k1,12661:23415760,13827489:209902 -k1,12661:26157318,13827489:209902 -k1,12661:28252691,13827489:209902 -k1,12661:30350686,13827489:209903 -k1,12661:31212016,13827489:209902 -k1,12661:32583029,13827489:0 -) -(1,12662:6630773,14668977:25952256,505283,134348 -k1,12661:9934807,14668977:219910 -k1,12661:13662858,14668977:219909 -k1,12661:14565653,14668977:219910 -k1,12661:17831675,14668977:219909 -k1,12661:18703013,14668977:219910 -k1,12661:21884494,14668977:219909 -k1,12661:23295849,14668977:219910 -k1,12661:24534843,14668977:219909 -k1,12661:27918176,14668977:219910 -k1,12661:32583029,14668977:0 -) -(1,12662:6630773,15510465:25952256,513147,134348 -k1,12661:7495006,15510465:212805 -k1,12661:8800295,15510465:212804 -k1,12661:9960751,15510465:212805 -k1,12661:11192641,15510465:212805 -k1,12661:13840763,15510465:212804 -k1,12661:15442931,15510465:212805 -k1,12661:17865610,15510465:212805 -k1,12661:21162538,15510465:212804 -k1,12661:25057156,15510465:212805 -k1,12661:25897795,15510465:212804 -k1,12661:27129685,15510465:212805 -k1,12661:29245000,15510465:212805 -k1,12661:30109232,15510465:212804 -k1,12661:31069803,15510465:212805 -k1,12661:32583029,15510465:0 -) -(1,12662:6630773,16351953:25952256,513147,126483 -k1,12661:7828116,16351953:249692 -k1,12661:9096893,16351953:249692 -k1,12661:12521149,16351953:249692 -k1,12661:13422270,16351953:249693 -k1,12661:15557433,16351953:249692 -k1,12661:16675477,16351953:249692 -k1,12661:19510564,16351953:249692 -k1,12661:21149619,16351953:249692 -k1,12661:22015349,16351953:249692 -k1,12661:23953248,16351953:249692 -k1,12661:24984130,16351953:249693 -k1,12661:25788257,16351953:249692 -k1,12661:28569605,16351953:249692 -k1,12661:29175157,16351953:249692 -k1,12661:32583029,16351953:0 -) -(1,12662:6630773,17193441:25952256,513147,138281 -k1,12661:9094318,17193441:217626 -k1,12661:12288590,17193441:217627 -k1,12661:13881817,17193441:217626 -k1,12661:17274007,17193441:217626 -$1,12661:17274007,17193441 -$1,12661:17776668,17193441 -k1,12661:18167964,17193441:217626 -$1,12661:18167964,17193441 -$1,12661:18719777,17193441 -k1,12661:18937404,17193441:217627 -k1,12661:20346475,17193441:217626 -k1,12661:23207823,17193441:217626 -$1,12661:23207823,17193441 -$1,12661:23633152,17193441 -k1,12661:24231543,17193441:217627 -k1,12661:24921028,17193441:217626 -k1,12661:27670310,17193441:217626 -k1,12661:28243796,17193441:217626 -k1,12661:30447819,17193441:217627 -k1,12661:31316873,17193441:217626 -k1,12661:32583029,17193441:0 -) -(1,12662:6630773,18034929:25952256,513147,134348 -k1,12661:8062971,18034929:235511 -k1,12661:10141354,18034929:235511 -k1,12661:11944486,18034929:235511 -k1,12661:16194077,18034929:235511 -k1,12661:16785448,18034929:235511 -k1,12661:18298256,18034929:235511 -k1,12661:19927718,18034929:235511 -k1,12661:21182314,18034929:235511 -k1,12661:24320415,18034929:235511 -k1,12661:25215218,18034929:235511 -k1,12661:28169818,18034929:235511 -k1,12661:28936826,18034929:235511 -k1,12661:29943039,18034929:235510 -k1,12661:30623503,18034929:235475 -k1,12661:32583029,18034929:0 -) -(1,12662:6630773,18876417:25952256,513147,134348 -k1,12661:10260016,18876417:267246 -k1,12661:10883123,18876417:267247 -k1,12661:12847096,18876417:267246 -k1,12661:14061994,18876417:267247 -k1,12661:14685100,18876417:267246 -k1,12661:16703469,18876417:267247 -k1,12661:19951292,18876417:267246 -k1,12661:21237623,18876417:267246 -k1,12661:23067904,18876417:267247 -k1,12661:24619656,18876417:267246 -k1,12661:25991185,18876417:267247 -k1,12661:27006197,18876417:267246 -k1,12661:30048238,18876417:267247 -k1,12661:30671344,18876417:267246 -k1,12661:32583029,18876417:0 -) -(1,12662:6630773,19717905:25952256,513147,126483 -k1,12661:8661816,19717905:219628 -k1,12661:9532871,19717905:219627 -k1,12661:10108359,19717905:219628 -k1,12661:11311027,19717905:219628 -k1,12661:12213539,19717905:219627 -k1,12661:14783288,19717905:219628 -k1,12661:16270381,19717905:219627 -k1,12661:16845869,19717905:219628 -k1,12661:19940561,19717905:219628 -k1,12661:21611155,19717905:219627 -k1,12661:23686763,19717905:219628 -k1,12661:24557819,19717905:219628 -k1,12661:25133306,19717905:219627 -k1,12661:27975685,19717905:219628 -k1,12661:30413050,19717905:219627 -k1,12661:31315563,19717905:219628 -k1,12661:32583029,19717905:0 -) -(1,12662:6630773,20559393:25952256,513147,134348 -k1,12661:8760966,20559393:152316 -k1,12661:9596168,20559393:152317 -k1,12661:12003578,20559393:152316 -k1,12661:14874984,20559393:152317 -k1,12661:17711655,20559393:152316 -k1,12661:19738301,20559393:152316 -k1,12661:20882178,20559393:152317 -k1,12661:23186696,20559393:152316 -k1,12661:25090790,20559393:152317 -k1,12661:27102362,20559393:152316 -k1,12661:28326848,20559393:152317 -k1,12661:29165326,20559393:152316 -k1,12661:32583029,20559393:0 -) -(1,12662:6630773,21400881:25952256,513147,126483 -k1,12661:8900367,21400881:240599 -k1,12661:10009318,21400881:240599 -k1,12661:11065184,21400881:240598 -k1,12661:12372054,21400881:240599 -k1,12661:14142919,21400881:240599 -k1,12661:15034946,21400881:240599 -k1,12661:16023311,21400881:240599 -k1,12661:18595026,21400881:240599 -k1,12661:20658180,21400881:240598 -k1,12661:21664895,21400881:240599 -k1,12661:22564786,21400881:240599 -k1,12661:24618111,21400881:240599 -k1,12661:28032619,21400881:240599 -k1,12661:29628502,21400881:240598 -k1,12661:30432055,21400881:240599 -k1,12661:31773659,21400881:240599 -k1,12661:32583029,21400881:0 -) -(1,12662:6630773,22242369:25952256,513147,126483 -g1,12661:9269252,22242369 -g1,12661:10076000,22242369 -g1,12661:11376234,22242369 -g1,12661:14171344,22242369 -g1,12661:15746174,22242369 -g1,12661:16561441,22242369 -g1,12661:18954815,22242369 -g1,12661:21025097,22242369 -g1,12661:22415771,22242369 -g1,12661:23155672,22242369 -g1,12661:24455906,22242369 -g1,12661:25464505,22242369 -k1,12662:32583029,22242369:4348973 -g1,12662:32583029,22242369 -) -v1,12664:6630773,23463805:0,393216,0 -(1,12665:6630773,33389875:25952256,10319286,616038 -g1,12665:6630773,33389875 -(1,12665:6630773,33389875:25952256,10319286,616038 -(1,12665:6630773,34005913:25952256,10935324,0 -[1,12665:6630773,34005913:25952256,10935324,0 -(1,12665:6630773,33979699:25952256,10882896,0 -r1,12673:6656987,33979699:26214,10882896,0 -[1,12665:6656987,33979699:25899828,10882896,0 -(1,12665:6656987,33389875:25899828,9703248,0 -[1,12665:7246811,33389875:24720180,9703248,0 -(1,12665:7246811,24848512:24720180,1161885,196608 -(1,12664:7246811,24848512:0,1161885,196608 -r1,12673:8794447,24848512:1547636,1358493,196608 -k1,12664:7246811,24848512:-1547636 -) -(1,12664:7246811,24848512:1547636,1161885,196608 -) -k1,12664:9027129,24848512:232682 -k1,12664:10456499,24848512:232683 -k1,12664:12296779,24848512:232682 -k1,12664:14879583,24848512:232683 -k1,12664:16506216,24848512:232682 -k1,12664:19319051,24848512:232683 -k1,12664:22380266,24848512:232682 -k1,12664:24088164,24848512:232683 -k1,12664:24676706,24848512:232682 -k1,12664:27235262,24848512:232683 -k1,12664:30573040,24848512:232682 -k1,12664:31966991,24848512:0 -) -(1,12665:7246811,25690000:24720180,505283,134348 -k1,12664:9125174,25690000:270765 -k1,12664:10862634,25690000:270764 -k1,12664:14490808,25690000:270765 -k1,12664:15953017,25690000:270764 -k1,12664:19098846,25690000:270765 -k1,12664:20927402,25690000:270765 -k1,12664:21959694,25690000:270764 -k1,12664:23961920,25690000:270765 -k1,12664:25707900,25690000:270765 -k1,12664:27404072,25690000:270764 -k1,12664:28543189,25690000:270765 -k1,12664:30011296,25690000:270764 -k1,12664:30637921,25690000:270765 -k1,12665:31966991,25690000:0 -) -(1,12665:7246811,26531488:24720180,513147,126483 -k1,12664:9506493,26531488:212337 -k1,12664:14557352,26531488:212336 -k1,12664:16625669,26531488:212337 -k1,12664:17497297,26531488:212336 -k1,12664:18728719,26531488:212337 -k1,12664:23012807,26531488:212336 -k1,12664:23908029,26531488:212337 -k1,12664:27204489,26531488:212336 -k1,12664:31098639,26531488:212337 -k1,12664:31966991,26531488:0 -) -(1,12665:7246811,27372976:24720180,513147,126483 -k1,12664:9414133,27372976:237942 -k1,12664:10007935,27372976:237942 -k1,12664:11977338,27372976:237942 -k1,12664:12702829,27372976:237903 -k1,12664:14218067,27372976:237941 -k1,12664:15560291,27372976:237942 -k1,12664:17273448,27372976:237942 -k1,12664:18643197,27372976:237942 -k1,12664:21366920,27372976:237942 -k1,12664:22264154,27372976:237942 -k1,12664:24563859,27372976:237942 -k1,12664:25993245,27372976:237941 -k1,12664:27250272,27372976:237942 -k1,12664:29227540,27372976:237942 -k1,12664:30081520,27372976:237942 -k1,12664:31966991,27372976:0 -) -(1,12665:7246811,28214464:24720180,505283,134348 -k1,12664:8300894,28214464:185731 -k1,12664:9683968,28214464:185731 -k1,12664:11508754,28214464:185731 -k1,12664:12225982,28214464:185731 -k1,12664:14449883,28214464:185731 -k1,12664:15251652,28214464:185731 -k1,12664:16456467,28214464:185730 -k1,12664:19475319,28214464:185731 -k1,12664:20106026,28214464:185718 -k1,12664:22424954,28214464:185731 -k1,12664:24393920,28214464:185731 -k1,12664:25598736,28214464:185731 -k1,12664:26229442,28214464:185717 -k1,12664:28374699,28214464:185731 -k1,12664:29091927,28214464:185731 -k1,12664:31966991,28214464:0 -) -(1,12665:7246811,29055952:24720180,513147,134348 -k1,12664:8684624,29055952:170347 -k1,12664:9210831,29055952:170347 -k1,12664:10832144,29055952:170346 -k1,12664:12456080,29055952:170347 -k1,12664:14514519,29055952:170347 -k1,12664:15676426,29055952:170347 -k1,12664:18149052,29055952:170346 -k1,12664:19128769,29055952:170347 -k1,12664:20371285,29055952:170347 -k1,12664:21200924,29055952:170347 -k1,12664:23404853,29055952:170347 -k1,12664:25636962,29055952:170346 -k1,12664:26557041,29055952:170347 -k1,12664:29677163,29055952:170347 -k1,12664:31966991,29055952:0 -) -(1,12665:7246811,29897440:24720180,513147,134348 -k1,12664:9089629,29897440:275197 -k1,12664:10383910,29897440:275196 -k1,12664:13756338,29897440:275197 -k1,12664:14690826,29897440:275196 -k1,12664:16854115,29897440:275197 -k1,12664:19094737,29897440:275197 -k1,12664:20823522,29897440:275196 -k1,12664:22203001,29897440:275197 -k1,12664:24927933,29897440:275196 -k1,12664:26947043,29897440:275197 -k1,12664:27838277,29897440:275196 -k1,12664:30001566,29897440:275197 -k1,12664:31966991,29897440:0 -) -(1,12665:7246811,30738928:24720180,505283,126483 -k1,12664:9621243,30738928:167179 -k1,12664:10606311,30738928:167179 -k1,12664:12719910,30738928:167180 -k1,12664:13503127,30738928:167179 -k1,12664:14085117,30738928:167147 -k1,12664:16778709,30738928:167179 -k1,12664:21287648,30738928:167179 -k1,12664:22646272,30738928:167179 -k1,12664:26981542,30738928:167180 -k1,12664:28253003,30738928:167179 -k1,12664:29167948,30738928:167179 -k1,12664:31966991,30738928:0 -) -(1,12665:7246811,31580416:24720180,513147,134348 -k1,12664:10020385,31580416:215048 -k1,12664:11254518,31580416:215048 -(1,12664:11254518,31580416:0,452978,115847 -r1,12673:13019631,31580416:1765113,568825,115847 -k1,12664:11254518,31580416:-1765113 -) -(1,12664:11254518,31580416:1765113,452978,115847 -k1,12664:11254518,31580416:3277 -h1,12664:13016354,31580416:0,411205,112570 -) -k1,12664:13234679,31580416:215048 -k1,12664:16293990,31580416:215048 -k1,12664:17528123,31580416:215048 -k1,12664:19513955,31580416:215049 -k1,12664:20388295,31580416:215048 -k1,12664:24383460,31580416:215048 -k1,12664:26486600,31580416:215048 -k1,12664:27805930,31580416:215048 -k1,12664:28768744,31580416:215048 -k1,12664:31205463,31580416:215048 -k1,12664:31966991,31580416:0 -) -(1,12665:7246811,32421904:24720180,513147,134348 -k1,12664:10323202,32421904:192807 -k1,12664:11535094,32421904:192807 -k1,12664:13467227,32421904:192807 -k1,12664:14276071,32421904:192806 -k1,12664:16354349,32421904:192807 -k1,12664:17927344,32421904:192807 -k1,12664:19111711,32421904:192807 -k1,12664:21269943,32421904:192807 -k1,12664:22114178,32421904:192807 -k1,12664:22662845,32421904:192807 -k1,12664:24132949,32421904:192807 -k1,12664:25517200,32421904:192806 -k1,12664:26471535,32421904:192807 -k1,12664:27756827,32421904:192807 -k1,12664:28608926,32421904:192807 -k1,12665:31966991,32421904:0 -) -(1,12665:7246811,33263392:24720180,505283,126483 -g1,12664:9530085,33263392 -k1,12665:31966992,33263392:20375144 -g1,12665:31966992,33263392 -) -] -) -] -r1,12673:32583029,33979699:26214,10882896,0 -) -] -) -) -g1,12665:32583029,33389875 -) -h1,12665:6630773,34005913:0,0,0 -(1,12667:6630773,36097173:25952256,534184,12975 -(1,12667:6630773,36097173:2450326,534184,12975 -g1,12667:6630773,36097173 -g1,12667:9081099,36097173 -) -k1,12667:32583029,36097173:21847474 -g1,12667:32583029,36097173 -) -(1,12669:6630773,37331877:25952256,505283,126483 -k1,12668:8126645,37331877:299185 -k1,12668:9815193,37331877:299185 -k1,12668:10765807,37331877:299186 -k1,12668:11812758,37331877:299185 -k1,12668:14414223,37331877:299185 -k1,12668:16335424,37331877:299185 -k1,12668:17382376,37331877:299186 -k1,12668:20465530,37331877:299185 -k1,12668:21450877,37331877:299185 -k1,12668:22105922,37331877:299185 -(1,12668:22105922,37331877:0,459977,115847 -r1,12673:25629594,37331877:3523672,575824,115847 -k1,12668:22105922,37331877:-3523672 -) -(1,12668:22105922,37331877:3523672,459977,115847 -k1,12668:22105922,37331877:3277 -h1,12668:25626317,37331877:0,411205,112570 -) -k1,12668:25928779,37331877:299185 -k1,12668:26910850,37331877:299186 -(1,12668:26910850,37331877:0,452978,115847 -r1,12673:29027675,37331877:2116825,568825,115847 -k1,12668:26910850,37331877:-2116825 -) -(1,12668:26910850,37331877:2116825,452978,115847 -k1,12668:26910850,37331877:3277 -h1,12668:29024398,37331877:0,411205,112570 -) -k1,12668:29500530,37331877:299185 -k1,12668:31193666,37331877:299185 -k1,12668:32583029,37331877:0 -) -(1,12669:6630773,38173365:25952256,505283,134348 -k1,12668:8926117,38173365:257174 -k1,12668:9908119,38173365:257174 -k1,12668:11449800,38173365:257175 -k1,12668:13158596,38173365:257174 -k1,12668:14619666,38173365:257174 -k1,12668:18248667,38173365:257174 -k1,12668:18861701,38173365:257174 -k1,12668:20991894,38173365:257174 -k1,12668:24990519,38173365:257175 -k1,12668:27144960,38173365:257174 -k1,12668:28593579,38173365:257174 -k1,12668:29869838,38173365:257174 -k1,12668:32583029,38173365:0 -) -(1,12669:6630773,39014853:25952256,513147,134348 -k1,12668:7899248,39014853:276915 -k1,12668:10938505,39014853:276914 -k1,12668:13226065,39014853:276915 -k1,12668:16389186,39014853:276915 -k1,12668:17282138,39014853:276914 -k1,12668:18843559,39014853:276915 -k1,12668:20993493,39014853:276915 -k1,12668:23167675,39014853:276915 -k1,12668:24072424,39014853:276914 -k1,12668:26051309,39014853:276915 -k1,12668:28456833,39014853:276915 -k1,12668:29349785,39014853:276914 -k1,12668:31015408,39014853:276915 -k1,12668:32583029,39014853:0 -) -(1,12669:6630773,39856341:25952256,505283,126483 -k1,12668:9824108,39856341:180645 -k1,12668:11544849,39856341:180645 -k1,12668:13622107,39856341:180646 -k1,12668:14488914,39856341:180645 -k1,12668:17759582,39856341:180645 -k1,12668:18556265,39856341:180645 -k1,12668:21154533,39856341:180645 -h1,12668:21552992,39856341:0,0,0 -k1,12668:21907308,39856341:180646 -k1,12668:23284640,39856341:180645 -k1,12668:26306926,39856341:180645 -k1,12668:27138999,39856341:180645 -k1,12668:28067411,39856341:180646 -k1,12668:30550336,39856341:180645 -k1,12668:31835263,39856341:180645 -k1,12669:32583029,39856341:0 -) -(1,12669:6630773,40697829:25952256,505283,115847 -(1,12668:6630773,40697829:0,452978,115847 -r1,12673:9099310,40697829:2468537,568825,115847 -k1,12668:6630773,40697829:-2468537 -) -(1,12668:6630773,40697829:2468537,452978,115847 -k1,12668:6630773,40697829:3277 -h1,12668:9096033,40697829:0,411205,112570 -) -k1,12668:9482074,40697829:209094 -(1,12668:9482074,40697829:0,459977,115847 -r1,12673:11598899,40697829:2116825,575824,115847 -k1,12668:9482074,40697829:-2116825 -) -(1,12668:9482074,40697829:2116825,459977,115847 -k1,12668:9482074,40697829:3277 -h1,12668:11595622,40697829:0,411205,112570 -) -k1,12668:11981664,40697829:209095 -(1,12668:11981664,40697829:0,452978,115847 -r1,12673:15153624,40697829:3171960,568825,115847 -k1,12668:11981664,40697829:-3171960 -) -(1,12668:11981664,40697829:3171960,452978,115847 -k1,12668:11981664,40697829:3277 -h1,12668:15150347,40697829:0,411205,112570 -) -k1,12668:15536388,40697829:209094 -k1,12668:16936927,40697829:209094 -k1,12668:18571429,40697829:209094 -k1,12668:19463409,40697829:209095 -k1,12668:21053347,40697829:209094 -k1,12668:23300611,40697829:209094 -k1,12668:24195867,40697829:209094 -(1,12668:24195867,40697829:0,414482,115847 -r1,12673:26664404,40697829:2468537,530329,115847 -k1,12668:24195867,40697829:-2468537 -) -(1,12668:24195867,40697829:2468537,414482,115847 -k1,12668:24195867,40697829:3277 -h1,12668:26661127,40697829:0,411205,112570 -) -k1,12668:27047169,40697829:209095 -k1,12668:29180400,40697829:209094 -k1,12668:32583029,40697829:0 -) -(1,12669:6630773,41539317:25952256,513147,134348 -g1,12668:7481430,41539317 -g1,12668:10509192,41539317 -g1,12668:11905764,41539317 -g1,12668:14631406,41539317 -g1,12668:15778286,41539317 -g1,12668:17679485,41539317 -g1,12668:19595102,41539317 -g1,12668:20453623,41539317 -g1,12668:22042215,41539317 -g1,12668:23735010,41539317 -g1,12668:24620401,41539317 -g1,12668:26245038,41539317 -k1,12669:32583029,41539317:4112388 -g1,12669:32583029,41539317 -) -(1,12670:6630773,43630577:25952256,555811,147783 -(1,12670:6630773,43630577:2450326,534184,12975 -g1,12670:6630773,43630577 -g1,12670:9081099,43630577 -) -k1,12670:32583030,43630577:20371800 -g1,12670:32583030,43630577 -) -(1,12673:6630773,44865281:25952256,505283,134348 -k1,12672:8672782,44865281:258774 -k1,12672:9799907,44865281:258773 -k1,12672:12147313,44865281:258774 -k1,12672:12761946,44865281:258773 -k1,12672:14471687,44865281:258774 -k1,12672:15598812,44865281:258773 -k1,12672:17387852,44865281:258774 -k1,12672:18298054,44865281:258774 -k1,12672:19953399,44865281:258773 -k1,12672:21601536,44865281:258774 -k1,12672:24701950,44865281:258773 -k1,12672:25612152,44865281:258774 -k1,12672:29045489,44865281:258773 -k1,12672:30194242,44865281:258774 -k1,12672:32583029,44865281:0 -) -(1,12673:6630773,45706769:25952256,505283,126483 -k1,12672:10483143,45706769:175800 -k1,12672:12204283,45706769:175801 -k1,12672:13987681,45706769:175800 -k1,12672:15295944,45706769:175801 -k1,12672:16946959,45706769:175800 -k1,12672:17893462,45706769:175800 -$1,12672:17893462,45706769 -$1,12672:18396123,45706769 -k1,12672:18571924,45706769:175801 -k1,12672:22266352,45706769:175800 -k1,12672:24327624,45706769:175801 -k1,12672:25034921,45706769:175800 -k1,12672:28709689,45706769:175801 -k1,12672:29656192,45706769:175800 -k1,12672:32583029,45706769:0 -) -] -(1,12673:32583029,45706769:0,0,0 -g1,12673:32583029,45706769 -) -) -] -(1,12673:6630773,47279633:25952256,0,0 -h1,12673:6630773,47279633:25952256,0,0 -) -] -(1,12673:4262630,4025873:0,0,0 -[1,12673:-473656,4025873:0,0,0 -(1,12673:-473656,-710413:0,0,0 -(1,12673:-473656,-710413:0,0,0 -g1,12673:-473656,-710413 -) -g1,12673:-473656,-710413 -) -] -) -] -!26649 -}236 -Input:1759:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1760:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1761:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1762:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1763:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1764:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1765:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1766:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1767:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!840 -{237 -[1,12686:4262630,47279633:28320399,43253760,0 -(1,12686:4262630,4025873:0,0,0 -[1,12686:-473656,4025873:0,0,0 -(1,12686:-473656,-710413:0,0,0 -(1,12686:-473656,-644877:0,0,0 -k1,12686:-473656,-644877:-65536 -) -(1,12686:-473656,4736287:0,0,0 -k1,12686:-473656,4736287:5209943 -) -g1,12686:-473656,-710413 -) -] -) -[1,12686:6630773,47279633:25952256,43253760,0 -[1,12686:6630773,4812305:25952256,786432,0 -(1,12686:6630773,4812305:25952256,513147,134348 -(1,12686:6630773,4812305:25952256,513147,134348 -g1,12686:3078558,4812305 -[1,12686:3078558,4812305:0,0,0 -(1,12686:3078558,2439708:0,1703936,0 -k1,12686:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,12686:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,12686:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,12686:3078558,4812305:0,0,0 -(1,12686:3078558,2439708:0,1703936,0 -g1,12686:29030814,2439708 -g1,12686:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,12686:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,12686:37855564,2439708:1179648,16384,0 -) -) -k1,12686:3078556,2439708:-34777008 -) -] -[1,12686:3078558,4812305:0,0,0 -(1,12686:3078558,49800853:0,16384,2228224 -k1,12686:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,12686:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,12686:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,12686:3078558,4812305:0,0,0 -(1,12686:3078558,49800853:0,16384,2228224 -g1,12686:29030814,49800853 -g1,12686:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,12686:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,12686:37855564,49800853:1179648,16384,0 -) -) -k1,12686:3078556,49800853:-34777008 -) -] -g1,12686:6630773,4812305 -k1,12686:25712890,4812305:17886740 -g1,12686:29057847,4812305 -g1,12686:29873114,4812305 -) -) -] -[1,12686:6630773,45706769:25952256,40108032,0 -(1,12686:6630773,45706769:25952256,40108032,0 -(1,12686:6630773,45706769:0,0,0 -g1,12686:6630773,45706769 -) -[1,12686:6630773,45706769:25952256,40108032,0 -(1,12673:6630773,6254097:25952256,505283,134348 -k1,12672:8063882,6254097:241664 -k1,12672:8661406,6254097:241664 -k1,12672:11414410,6254097:241664 -k1,12672:15018071,6254097:241664 -k1,12672:18075817,6254097:241664 -k1,12672:19207460,6254097:241664 -k1,12672:22885831,6254097:241663 -k1,12672:25712890,6254097:241664 -k1,12672:26605982,6254097:241664 -k1,12672:27479413,6254097:241664 -k1,12672:28917764,6254097:241664 -k1,12672:31773659,6254097:241664 -k1,12672:32583029,6254097:0 -) -(1,12673:6630773,7095585:25952256,513147,138281 -k1,12672:7256260,7095585:269627 -k1,12672:8427591,7095585:269556 -k1,12672:9974515,7095585:269627 -k1,12672:11077106,7095585:269628 -k1,12672:12567669,7095585:269627 -k1,12672:13193156,7095585:269627 -k1,12672:15324661,7095585:269627 -k1,12672:16726750,7095585:269627 -k1,12672:17744143,7095585:269627 -k1,12672:21678543,7095585:269627 -k1,12672:22709698,7095585:269627 -$1,12672:22709698,7095585 -$1,12672:23212359,7095585 -k1,12672:23481986,7095585:269627 -k1,12672:24943058,7095585:269627 -$1,12672:24943058,7095585 -$1,12672:25494871,7095585 -k1,12672:25764498,7095585:269627 -k1,12672:29382359,7095585:269627 -k1,12672:31341504,7095585:269627 -k1,12672:32227169,7095585:269627 -k1,12672:32583029,7095585:0 -) -(1,12673:6630773,7937073:25952256,505283,138281 -k1,12672:7753122,7937073:220574 -k1,12672:9424685,7937073:220596 -k1,12672:11300064,7937073:220595 -k1,12672:14695224,7937073:220596 -k1,12672:16446085,7937073:220595 -k1,12672:17318109,7937073:220596 -k1,12672:18286470,7937073:220595 -k1,12672:21092461,7937073:220596 -$1,12672:21092461,7937073 -$1,12672:21595122,7937073 -k1,12672:21989388,7937073:220596 -$1,12672:21989388,7937073 -$1,12672:22541201,7937073 -k1,12672:22761796,7937073:220595 -k1,12672:24173837,7937073:220596 -$1,12672:24173837,7937073 -$1,12672:24599166,7937073 -k1,12672:24993431,7937073:220595 -k1,12672:26909443,7937073:220596 -k1,12672:30304602,7937073:220595 -k1,12672:31516758,7937073:220596 -k1,12672:32583029,7937073:0 -) -(1,12673:6630773,8778561:25952256,505283,126483 -k1,12672:9143588,8778561:291144 -k1,12672:10086159,8778561:291143 -k1,12672:14289147,8778561:291144 -k1,12672:15960478,8778561:291143 -k1,12672:17243182,8778561:291144 -k1,12672:21003802,8778561:291144 -k1,12672:22441170,8778561:291143 -k1,12672:24522102,8778561:291144 -k1,12672:26255692,8778561:291143 -k1,12672:28589593,8778561:291144 -k1,12672:30049243,8778561:291143 -k1,12672:31900144,8778561:291144 -k1,12672:32583029,8778561:0 -) -(1,12673:6630773,9620049:25952256,505283,134348 -k1,12672:8282389,9620049:184920 -k1,12672:11030423,9620049:184921 -k1,12672:13086396,9620049:184920 -k1,12672:15156788,9620049:184921 -k1,12672:16539051,9620049:184920 -k1,12672:17494675,9620049:184921 -k1,12672:20906588,9620049:184920 -k1,12672:24436467,9620049:184921 -k1,12672:25430757,9620049:184920 -k1,12672:27501149,9620049:184921 -k1,12672:28337497,9620049:184920 -k1,12672:31563944,9620049:184921 -k1,12672:32583029,9620049:0 -) -(1,12673:6630773,10461537:25952256,513147,95026 -g1,12672:8840647,10461537 -g1,12672:9699168,10461537 -g1,12672:12740038,10461537 -g1,12672:15149141,10461537 -k1,12673:32583029,10461537:14172161 -g1,12673:32583029,10461537 -) -(1,12674:6630773,12552797:25952256,555811,12975 -(1,12674:6630773,12552797:2450326,534184,12975 -g1,12674:6630773,12552797 -g1,12674:9081099,12552797 -) -k1,12674:32583029,12552797:19376242 -g1,12674:32583029,12552797 -) -(1,12678:6630773,13787501:25952256,513147,134348 -k1,12677:10448007,13787501:204234 -k1,12677:11643800,13787501:204233 -k1,12677:14403283,13787501:204234 -k1,12677:15892023,13787501:204234 -k1,12677:18765538,13787501:204234 -k1,12677:19988856,13787501:204233 -k1,12677:22912179,13787501:204234 -k1,12677:27781266,13787501:204234 -k1,12677:28644792,13787501:204234 -k1,12677:29868110,13787501:204233 -k1,12677:31635378,13787501:204234 -k1,12677:32583029,13787501:0 -) -(1,12678:6630773,14628989:25952256,513147,126483 -k1,12677:9670986,14628989:205126 -(1,12677:9670986,14628989:0,452978,122846 -r1,12686:13898082,14628989:4227096,575824,122846 -k1,12677:9670986,14628989:-4227096 -) -(1,12677:9670986,14628989:4227096,452978,122846 -k1,12677:9670986,14628989:3277 -h1,12677:13894805,14628989:0,411205,112570 -) -k1,12677:14276877,14628989:205125 -k1,12677:16089601,14628989:205126 -k1,12677:16650587,14628989:205126 -k1,12677:18543919,14628989:205125 -k1,12677:19431930,14628989:205126 -k1,12677:21948510,14628989:205125 -k1,12677:23101287,14628989:205126 -k1,12677:24758035,14628989:205126 -k1,12677:28704610,14628989:205125 -k1,12677:29592621,14628989:205126 -k1,12677:32583029,14628989:0 -) -(1,12678:6630773,15470477:25952256,505283,134348 -k1,12677:8635857,15470477:151070 -k1,12677:10476445,15470477:151070 -(1,12677:10476445,15470477:0,452978,122846 -r1,12686:14351829,15470477:3875384,575824,122846 -k1,12677:10476445,15470477:-3875384 -) -(1,12677:10476445,15470477:3875384,452978,122846 -k1,12677:10476445,15470477:3277 -h1,12677:14348552,15470477:0,411205,112570 -) -k1,12677:14676569,15470477:151070 -k1,12677:16743912,15470477:151070 -k1,12677:18063489,15470477:151070 -k1,12677:21235769,15470477:151070 -k1,12677:24022042,15470477:151070 -k1,12677:28418534,15470477:151070 -k1,12677:30286647,15470477:151070 -k1,12678:32583029,15470477:0 -) -(1,12678:6630773,16311965:25952256,513147,134348 -k1,12677:8268820,16311965:213950 -k1,12677:9684699,16311965:213949 -k1,12677:10660177,16311965:213950 -k1,12677:13139707,16311965:213950 -k1,12677:14163026,16311965:213949 -k1,12677:17404084,16311965:213950 -k1,12677:18690203,16311965:213950 -k1,12677:20505853,16311965:213950 -k1,12677:23386462,16311965:213949 -k1,12677:25865992,16311965:213950 -k1,12677:26731370,16311965:213950 -k1,12677:27964404,16311965:213949 -k1,12677:30638576,16311965:213950 -k1,12678:32583029,16311965:0 -) -(1,12678:6630773,17153453:25952256,513147,134348 -k1,12677:8157937,17153453:231517 -k1,12677:9864669,17153453:231517 -k1,12677:11521594,17153453:231517 -k1,12677:12108971,17153453:231517 -k1,12677:15347935,17153453:231517 -k1,12677:16110949,17153453:231517 -k1,12677:17855692,17153453:231517 -k1,12677:18738636,17153453:231516 -k1,12677:20167496,17153453:231517 -k1,12677:20754873,17153453:231517 -k1,12677:23936165,17153453:231517 -k1,12677:28832535,17153453:231517 -k1,12677:29723344,17153453:231517 -k1,12677:31344224,17153453:231517 -k1,12677:32227169,17153453:231517 -k1,12677:32583029,17153453:0 -) -(1,12678:6630773,17994941:25952256,513147,126483 -k1,12677:8257335,17994941:175595 -k1,12677:9301283,17994941:175596 -k1,12677:10524143,17994941:175595 -k1,12677:11984244,17994941:175595 -k1,12677:12515700,17994941:175596 -k1,12677:13974490,17994941:175595 -k1,12677:15807492,17994941:175596 -k1,12677:17084092,17994941:175595 -k1,12677:18769637,17994941:175595 -k1,12677:21084328,17994941:175596 -k1,12677:22456610,17994941:175595 -k1,12677:24370220,17994941:175595 -k1,12677:26203222,17994941:175596 -k1,12677:28717142,17994941:175595 -k1,12677:29911823,17994941:175596 -k1,12677:31298523,17994941:175595 -k1,12677:32583029,17994941:0 -) -(1,12678:6630773,18836429:25952256,513147,126483 -k1,12677:8263848,18836429:181453 -k1,12677:9728495,18836429:181452 -k1,12677:11467739,18836429:181453 -k1,12677:13614617,18836429:181453 -k1,12677:14327567,18836429:181453 -k1,12677:16811299,18836429:181452 -k1,12677:17802122,18836429:181453 -k1,12677:19055744,18836429:181453 -k1,12677:19896489,18836429:181453 -k1,12677:21097026,18836429:181452 -k1,12677:23166571,18836429:181453 -k1,12677:25682416,18836429:181453 -k1,12677:28269696,18836429:181453 -k1,12677:29067186,18836429:181452 -k1,12677:30267724,18836429:181453 -k1,12677:31900144,18836429:181453 -k1,12677:32583029,18836429:0 -) -(1,12678:6630773,19677917:25952256,505283,134348 -k1,12677:8821685,19677917:239250 -k1,12677:10758973,19677917:239250 -k1,12677:11354083,19677917:239250 -k1,12677:12870630,19677917:239250 -k1,12677:13641377,19677917:239250 -k1,12677:16230748,19677917:239250 -k1,12677:17489083,19677917:239250 -k1,12677:19616426,19677917:239251 -k1,12677:20988138,19677917:239250 -k1,12677:21975154,19677917:239250 -k1,12677:25367341,19677917:239250 -k1,12677:26222629,19677917:239250 -k1,12677:27480964,19677917:239250 -k1,12677:29459540,19677917:239250 -k1,12677:31078978,19677917:239250 -k1,12677:32583029,19677917:0 -) -(1,12678:6630773,20519405:25952256,505283,134348 -k1,12677:8793505,20519405:197307 -k1,12677:9642240,20519405:197307 -k1,12677:10858632,20519405:197307 -k1,12677:12333236,20519405:197307 -k1,12677:14663740,20519405:197307 -k1,12677:15903069,20519405:197307 -k1,12677:18935463,20519405:197307 -k1,12677:20289480,20519405:197307 -k1,12677:22044578,20519405:197307 -k1,12677:22857923,20519405:197307 -k1,12677:23411090,20519405:197307 -k1,12677:24885694,20519405:197307 -k1,12677:26187283,20519405:197307 -k1,12677:28679661,20519405:197307 -k1,12677:29896053,20519405:197307 -k1,12678:32583029,20519405:0 -) -(1,12678:6630773,21360893:25952256,513147,134348 -k1,12677:8626344,21360893:224133 -k1,12677:11323150,21360893:224133 -k1,12677:13105074,21360893:224133 -k1,12677:13685068,21360893:224134 -k1,12677:17225978,21360893:224133 -k1,12677:18618618,21360893:224133 -k1,12677:20555207,21360893:224133 -k1,12677:21430768,21360893:224133 -k1,12677:23467627,21360893:224133 -k1,12677:24883205,21360893:224133 -k1,12677:25463199,21360893:224134 -k1,12677:27269371,21360893:224133 -k1,12677:28650214,21360893:224133 -k1,12677:30211281,21360893:224133 -k1,12677:32583029,21360893:0 -) -(1,12678:6630773,22202381:25952256,505283,126483 -g1,12677:10620604,22202381 -g1,12677:12313399,22202381 -g1,12677:13283331,22202381 -g1,12677:16272428,22202381 -g1,12677:17154542,22202381 -g1,12677:17709631,22202381 -g1,12677:19135039,22202381 -k1,12678:32583029,22202381:11760438 -g1,12678:32583029,22202381 -) -(1,12679:6630773,24293641:25952256,555811,12975 -(1,12679:6630773,24293641:2450326,534184,12975 -g1,12679:6630773,24293641 -g1,12679:9081099,24293641 -) -k1,12679:32583029,24293641:20244922 -g1,12679:32583029,24293641 -) -(1,12682:6630773,25528345:25952256,513147,126483 -k1,12681:9674682,25528345:165568 -k1,12681:10831809,25528345:165567 -k1,12681:13552626,25528345:165568 -k1,12681:15002700,25528345:165568 -k1,12681:18209793,25528345:165567 -k1,12681:21846803,25528345:165568 -k1,12681:22671662,25528345:165567 -k1,12681:26345372,25528345:165568 -k1,12681:27193825,25528345:165568 -k1,12681:29051532,25528345:165567 -k1,12681:30919070,25528345:165568 -k1,12682:32583029,25528345:0 -) -(1,12682:6630773,26369833:25952256,513147,126483 -k1,12681:8448261,26369833:194161 -k1,12681:9451792,26369833:194161 -k1,12681:10665038,26369833:194161 -k1,12681:12869845,26369833:194162 -k1,12681:13680044,26369833:194161 -k1,12681:14893290,26369833:194161 -k1,12681:16650485,26369833:194161 -k1,12681:18627881,26369833:194161 -k1,12681:21504431,26369833:194161 -k1,12681:22690152,26369833:194161 -k1,12681:24397539,26369833:194161 -k1,12681:25539352,26369833:194162 -k1,12681:26089373,26369833:194161 -k1,12681:30521092,26369833:194161 -k1,12681:31734338,26369833:194161 -k1,12682:32583029,26369833:0 -) -(1,12682:6630773,27211321:25952256,505283,134348 -k1,12681:8911476,27211321:137676 -k1,12681:10729495,27211321:137676 -k1,12681:11398668,27211321:137676 -k1,12681:13741631,27211321:137676 -k1,12681:14530735,27211321:137676 -k1,12681:15024271,27211321:137676 -k1,12681:18301121,27211321:137676 -k1,12681:19630242,27211321:137676 -k1,12681:23993024,27211321:137676 -k1,12681:26318292,27211321:137676 -k1,12681:26811828,27211321:137676 -k1,12681:29631893,27211321:137676 -k1,12681:31055385,27211321:137676 -k1,12681:32583029,27211321:0 -) -(1,12682:6630773,28052809:25952256,513147,126483 -k1,12681:7132064,28052809:145431 -k1,12681:8835286,28052809:145431 -k1,12681:9632144,28052809:145430 -k1,12681:10796660,28052809:145431 -k1,12681:12393058,28052809:145431 -k1,12681:13580511,28052809:145431 -k1,12681:16561029,28052809:145431 -(1,12681:16561029,28052809:0,452978,115847 -r1,12686:21139837,28052809:4578808,568825,115847 -k1,12681:16561029,28052809:-4578808 -) -(1,12681:16561029,28052809:4578808,452978,115847 -k1,12681:16561029,28052809:3277 -h1,12681:21136560,28052809:0,411205,112570 -) -k1,12681:21285268,28052809:145431 -k1,12681:22448472,28052809:145430 -k1,12681:22949763,28052809:145431 -k1,12681:26315633,28052809:145431 -k1,12681:27652509,28052809:145431 -(1,12681:27652509,28052809:0,452978,115847 -r1,12686:32583029,28052809:4930520,568825,115847 -k1,12681:27652509,28052809:-4930520 -) -(1,12681:27652509,28052809:4930520,452978,115847 -k1,12681:27652509,28052809:3277 -h1,12681:32579752,28052809:0,411205,112570 -) -k1,12681:32583029,28052809:0 -) -(1,12682:6630773,28894297:25952256,513147,126483 -k1,12681:9110018,28894297:197937 -k1,12681:9663815,28894297:197937 -k1,12681:12852161,28894297:197938 -k1,12681:15745594,28894297:197937 -k1,12681:17437097,28894297:197937 -k1,12681:18321196,28894297:197937 -(1,12681:18321196,28894297:0,452978,115847 -r1,12686:20789733,28894297:2468537,568825,115847 -k1,12681:18321196,28894297:-2468537 -) -(1,12681:18321196,28894297:2468537,452978,115847 -k1,12681:18321196,28894297:3277 -h1,12681:20786456,28894297:0,411205,112570 -) -k1,12681:21161340,28894297:197937 -k1,12681:22904616,28894297:197937 -k1,12681:25955992,28894297:197938 -k1,12681:27145489,28894297:197937 -k1,12681:29715174,28894297:197937 -k1,12682:32583029,28894297:0 -) -(1,12682:6630773,29735785:25952256,505283,134348 -k1,12681:8559319,29735785:266553 -k1,12681:9587399,29735785:266552 -k1,12681:11746632,29735785:266553 -k1,12681:13711223,29735785:266553 -k1,12681:15367139,29735785:266553 -k1,12681:17108906,29735785:266552 -k1,12681:18885409,29735785:266553 -k1,12681:21812724,29735785:266553 -k1,12681:22840805,29735785:266553 -k1,12681:25914919,29735785:266552 -k1,12681:29408465,29735785:266553 -k1,12681:32583029,29735785:0 -) -(1,12682:6630773,30577273:25952256,513147,7863 -g1,12681:8323568,30577273 -g1,12681:9208959,30577273 -g1,12681:11024306,30577273 -g1,12681:11874963,30577273 -g1,12681:12430052,30577273 -k1,12682:32583029,30577273:18085316 -g1,12682:32583029,30577273 -) -(1,12683:6630773,32668533:25952256,555811,12975 -(1,12683:6630773,32668533:2450326,534184,12975 -g1,12683:6630773,32668533 -g1,12683:9081099,32668533 -) -k1,12683:32583028,32668533:21293104 -g1,12683:32583028,32668533 -) -(1,12686:6630773,33903237:25952256,505283,134348 -k1,12685:8837311,33903237:279124 -k1,12685:10396352,33903237:279123 -k1,12685:11694561,33903237:279124 -k1,12685:16048713,33903237:279123 -k1,12685:17010722,33903237:279124 -k1,12685:20097407,33903237:279123 -k1,12685:23011734,33903237:279124 -k1,12685:24680220,33903237:279123 -k1,12685:26969989,33903237:279124 -k1,12685:28440558,33903237:279124 -k1,12685:29738766,33903237:279123 -k1,12685:32583029,33903237:0 -) -(1,12686:6630773,34744725:25952256,505283,134348 -k1,12685:8952714,34744725:311296 -k1,12685:9915438,34744725:311296 -k1,12685:10974500,34744725:311296 -k1,12685:13774197,34744725:311295 -k1,12685:16561443,34744725:311296 -k1,12685:19623940,34744725:311296 -k1,12685:20291096,34744725:311296 -k1,12685:23113732,34744725:311296 -k1,12685:24076456,34744725:311296 -k1,12685:25406836,34744725:311295 -k1,12685:27934560,34744725:311296 -k1,12685:31090119,34744725:311296 -k1,12685:32583029,34744725:0 -) -(1,12686:6630773,35586213:25952256,513147,134348 -k1,12685:10461828,35586213:318981 -k1,12685:12478848,35586213:318982 -k1,12685:15074550,35586213:318981 -k1,12685:16079693,35586213:318981 -k1,12685:19237039,35586213:318982 -k1,12685:20931621,35586213:318981 -k1,12685:22595402,35586213:318982 -k1,12685:24198889,35586213:318981 -k1,12685:27280213,35586213:318981 -k1,12685:29609840,35586213:318982 -k1,12685:31966991,35586213:318981 -k1,12685:32583029,35586213:0 -) -(1,12686:6630773,36427701:25952256,513147,126483 -k1,12685:7990657,36427701:340799 -k1,12685:10916851,36427701:340799 -k1,12685:13768990,36427701:340799 -k1,12685:15242250,36427701:340798 -k1,12685:16330815,36427701:340799 -k1,12685:20481222,36427701:340799 -k1,12685:21583549,36427701:340799 -k1,12685:24686691,36427701:340799 -k1,12685:27147580,36427701:340799 -k1,12685:27975824,36427701:340656 -k1,12685:30062502,36427701:340799 -k1,12685:31896867,36427701:340799 -k1,12686:32583029,36427701:0 -) -(1,12686:6630773,37269189:25952256,505283,126483 -(1,12685:6630773,37269189:0,452978,115847 -r1,12686:15078410,37269189:8447637,568825,115847 -k1,12685:6630773,37269189:-8447637 -) -(1,12685:6630773,37269189:8447637,452978,115847 -k1,12685:6630773,37269189:3277 -h1,12685:15075133,37269189:0,411205,112570 -) -k1,12685:15466013,37269189:213933 -k1,12685:16812409,37269189:213934 -k1,12685:20270374,37269189:213933 -k1,12685:22369779,37269189:213934 -k1,12685:24199830,37269189:213933 -k1,12685:25029802,37269189:213934 -k1,12685:26262820,37269189:213933 -k1,12685:27754051,37269189:213934 -k1,12685:31931601,37269189:213933 -k1,12685:32583029,37269189:0 -) -(1,12686:6630773,38110677:25952256,513147,102891 -k1,12685:8785324,38110677:269080 -k1,12685:10734747,38110677:269080 -k1,12685:11619864,38110677:269079 -k1,12685:12908029,38110677:269080 -k1,12685:15862119,38110677:269080 -k1,12685:18058613,38110677:269080 -k1,12685:19431974,38110677:269079 -k1,12685:20986870,38110677:269080 -k1,12685:23216787,38110677:269080 -k1,12685:28653381,38110677:269080 -k1,12685:29731830,38110677:269079 -k1,12685:31019995,38110677:269080 -k1,12685:32583029,38110677:0 -) -(1,12686:6630773,38952165:25952256,505283,134348 -k1,12685:8650047,38952165:133803 -k1,12685:9775409,38952165:133802 -k1,12685:11422438,38952165:133803 -k1,12685:13254278,38952165:133802 -k1,12685:16195643,38952165:133803 -k1,12685:17718808,38952165:133802 -k1,12685:19863256,38952165:133803 -k1,12685:20648487,38952165:133803 -k1,12685:23626552,38952165:133802 -k1,12685:25944670,38952165:133803 -k1,12685:26976315,38952165:133802 -k1,12685:30680519,38952165:133803 -k1,12685:32583029,38952165:0 -) -(1,12686:6630773,39793653:25952256,513147,138281 -k1,12685:9351500,39793653:194314 -k1,12685:16611250,39793653:194314 -k1,12685:17421603,39793653:194315 -k1,12685:18635002,39793653:194314 -k1,12685:20196397,39793653:194314 -k1,12685:21050003,39793653:194314 -$1,12685:21050003,39793653 -$1,12685:21552664,39793653 -k1,12685:21746978,39793653:194314 -k1,12685:23132737,39793653:194314 -$1,12685:23132737,39793653 -$1,12685:23684550,39793653 -k1,12685:23878865,39793653:194315 -k1,12685:27421413,39793653:194314 -k1,12685:30560260,39793653:194314 -k1,12685:31563944,39793653:194314 -k1,12685:32583029,39793653:0 -) -(1,12686:6630773,40635141:25952256,513147,134348 -k1,12685:9395201,40635141:239981 -k1,12685:11655657,40635141:239981 -k1,12685:12578523,40635141:239981 -k1,12685:15207291,40635141:239981 -k1,12685:18234518,40635141:239981 -k1,12685:19606960,40635141:239980 -k1,12685:20594707,40635141:239981 -k1,12685:23382072,40635141:239981 -k1,12685:24383581,40635141:239981 -k1,12685:25642647,40635141:239981 -k1,12685:30893511,40635141:239981 -k1,12685:32583029,40635141:0 -) -(1,12686:6630773,41476629:25952256,513147,134348 -k1,12685:7814599,41476629:164741 -k1,12685:10414658,41476629:164741 -k1,12685:12590044,41476629:164741 -k1,12685:13887247,41476629:164741 -k1,12685:14799754,41476629:164741 -k1,12685:16477721,41476629:164741 -k1,12685:17590113,41476629:164741 -k1,12685:18939089,41476629:164740 -k1,12685:20948013,41476629:164741 -k1,12685:22857322,41476629:164741 -k1,12685:24041148,41476629:164741 -k1,12685:25778098,41476629:164741 -k1,12685:27870253,41476629:164741 -k1,12685:29026554,41476629:164741 -k1,12685:30704521,41476629:164741 -k1,12685:31816913,41476629:164741 -k1,12685:32583029,41476629:0 -) -(1,12686:6630773,42318117:25952256,505283,134348 -k1,12685:10172702,42318117:193695 -k1,12685:13346975,42318117:193696 -k1,12685:17111071,42318117:193695 -k1,12685:20320077,42318117:193695 -k1,12685:22007339,42318117:193696 -k1,12685:22887196,42318117:193695 -k1,12685:26070643,42318117:193695 -k1,12685:27455784,42318117:193696 -k1,12685:31096017,42318117:193695 -k1,12685:32583029,42318117:0 -) -(1,12686:6630773,43159605:25952256,513147,134348 -k1,12685:8335516,43159605:211177 -k1,12685:9232855,43159605:211177 -k1,12685:11841994,43159605:211177 -k1,12685:13249858,43159605:211177 -k1,12685:16363625,43159605:211177 -k1,12685:17234094,43159605:211177 -k1,12685:20164361,43159605:211178 -k1,12685:22387493,43159605:211177 -k1,12685:23974271,43159605:211177 -k1,12685:25342158,43159605:211177 -k1,12685:27125544,43159605:211177 -k1,12685:28393161,43159605:211177 -k1,12685:31391584,43159605:211177 -k1,12685:32583029,43159605:0 -) -(1,12686:6630773,44001093:25952256,505283,134348 -k1,12685:8270837,44001093:189097 -k1,12685:9840777,44001093:189096 -k1,12685:13343374,44001093:189097 -k1,12685:14063967,44001093:189096 -k1,12685:16987881,44001093:189097 -k1,12685:17938505,44001093:189096 -k1,12685:20216234,44001093:189097 -k1,12685:21056758,44001093:189096 -k1,12685:22975350,44001093:189097 -k1,12685:26350151,44001093:189096 -k1,12685:27988904,44001093:189097 -k1,12685:28636097,44001093:189096 -k1,12685:31298523,44001093:189097 -k1,12685:32583029,44001093:0 -) -(1,12686:6630773,44842581:25952256,505283,134348 -k1,12685:7861174,44842581:211316 -k1,12685:9128931,44842581:211317 -k1,12685:10956365,44842581:211316 -k1,12685:12300144,44842581:211317 -k1,12685:13986675,44842581:211316 -k1,12685:15217077,44842581:211317 -k1,12685:17081866,44842581:211316 -k1,12685:20621757,44842581:211317 -k1,12685:21449111,44842581:211316 -k1,12685:22426544,44842581:211317 -k1,12685:23915157,44842581:211316 -k1,12685:26014566,44842581:211317 -k1,12685:28144776,44842581:211316 -k1,12685:29375178,44842581:211317 -(1,12685:29375178,44842581:0,452978,115847 -r1,12686:31140291,44842581:1765113,568825,115847 -k1,12685:29375178,44842581:-1765113 -) -(1,12685:29375178,44842581:1765113,452978,115847 -k1,12685:29375178,44842581:3277 -h1,12685:31137014,44842581:0,411205,112570 -) -k1,12685:31351607,44842581:211316 -k1,12686:32583029,44842581:0 -) -(1,12686:6630773,45684069:25952256,513147,134348 -k1,12685:8548903,45684069:157177 -k1,12685:9237577,45684069:157177 -k1,12685:11980149,45684069:157177 -k1,12685:12788754,45684069:157177 -k1,12685:14716058,45684069:157177 -k1,12685:16800649,45684069:157177 -k1,12685:18433042,45684069:157178 -k1,12685:20404911,45684069:157177 -k1,12685:21956039,45684069:157177 -k1,12685:26184968,45684069:157177 -k1,12685:28363275,45684069:157177 -k1,12685:30886302,45684069:157177 -k1,12685:32583029,45684069:0 -) -] -(1,12686:32583029,45706769:0,0,0 -g1,12686:32583029,45706769 -) -) -] -(1,12686:6630773,47279633:25952256,0,0 -h1,12686:6630773,47279633:25952256,0,0 -) -] -(1,12686:4262630,4025873:0,0,0 -[1,12686:-473656,4025873:0,0,0 -(1,12686:-473656,-710413:0,0,0 -(1,12686:-473656,-710413:0,0,0 -g1,12686:-473656,-710413 -) -g1,12686:-473656,-710413 -) -] -) -] -!25314 -}237 -Input:1768:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1769:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1770:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1771:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1772:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1773:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1774:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1775:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!748 -{238 -[1,12705:4262630,47279633:28320399,43253760,0 -(1,12705:4262630,4025873:0,0,0 -[1,12705:-473656,4025873:0,0,0 -(1,12705:-473656,-710413:0,0,0 -(1,12705:-473656,-644877:0,0,0 -k1,12705:-473656,-644877:-65536 -) -(1,12705:-473656,4736287:0,0,0 -k1,12705:-473656,4736287:5209943 -) -g1,12705:-473656,-710413 -) -] -) -[1,12705:6630773,47279633:25952256,43253760,0 -[1,12705:6630773,4812305:25952256,786432,0 -(1,12705:6630773,4812305:25952256,513147,134348 -(1,12705:6630773,4812305:25952256,513147,134348 -g1,12705:3078558,4812305 -[1,12705:3078558,4812305:0,0,0 -(1,12705:3078558,2439708:0,1703936,0 -k1,12705:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,12705:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,12705:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,12705:3078558,4812305:0,0,0 -(1,12705:3078558,2439708:0,1703936,0 -g1,12705:29030814,2439708 -g1,12705:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,12705:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,12705:37855564,2439708:1179648,16384,0 -) -) -k1,12705:3078556,2439708:-34777008 -) -] -[1,12705:3078558,4812305:0,0,0 -(1,12705:3078558,49800853:0,16384,2228224 -k1,12705:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,12705:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,12705:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,12705:3078558,4812305:0,0,0 -(1,12705:3078558,49800853:0,16384,2228224 -g1,12705:29030814,49800853 -g1,12705:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,12705:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,12705:37855564,49800853:1179648,16384,0 -) -) -k1,12705:3078556,49800853:-34777008 -) -] -g1,12705:6630773,4812305 -g1,12705:6630773,4812305 -g1,12705:10697281,4812305 -g1,12705:11496164,4812305 -g1,12705:12681054,4812305 -g1,12705:15925086,4812305 -g1,12705:16740353,4812305 -g1,12705:19649496,4812305 -k1,12705:31387652,4812305:11738156 -) -) -] -[1,12705:6630773,45706769:25952256,40108032,0 -(1,12705:6630773,45706769:25952256,40108032,0 -(1,12705:6630773,45706769:0,0,0 -g1,12705:6630773,45706769 -) -[1,12705:6630773,45706769:25952256,40108032,0 -(1,12686:6630773,6254097:25952256,513147,134348 -k1,12685:8640795,6254097:195330 -k1,12685:10574141,6254097:195331 -k1,12685:13210687,6254097:195330 -k1,12685:14167546,6254097:195331 -k1,12685:16628456,6254097:195330 -k1,12685:19749969,6254097:195330 -k1,12685:20706828,6254097:195331 -(1,12685:20706828,6254097:0,414482,115847 -r1,12705:21416806,6254097:709978,530329,115847 -k1,12685:20706828,6254097:-709978 -) -(1,12685:20706828,6254097:709978,414482,115847 -k1,12685:20706828,6254097:3277 -h1,12685:21413529,6254097:0,411205,112570 -) -k1,12685:21819230,6254097:195330 -k1,12685:23966222,6254097:195330 -k1,12685:25604000,6254097:195331 -k1,12685:28004617,6254097:195330 -k1,12685:28851376,6254097:195331 -k1,12685:31900144,6254097:195330 -k1,12685:32583029,6254097:0 -) -(1,12686:6630773,7095585:25952256,505283,134348 -k1,12685:11412411,7095585:160694 -k1,12685:12104602,7095585:160694 -k1,12685:13659902,7095585:160694 -k1,12685:14472024,7095585:160694 -k1,12685:19492213,7095585:160694 -k1,12685:21177274,7095585:160694 -k1,12685:25409720,7095585:160694 -k1,12685:27268452,7095585:160694 -k1,12685:29610840,7095585:160694 -k1,12685:31343743,7095585:160694 -k1,12686:32583029,7095585:0 -) -(1,12686:6630773,7937073:25952256,505283,134348 -k1,12685:7644134,7937073:224963 -k1,12685:10975503,7937073:224962 -k1,12685:15425572,7937073:224963 -k1,12685:18220856,7937073:224962 -k1,12685:21481447,7937073:224963 -k1,12685:24692885,7937073:224962 -k1,12685:26202354,7937073:224963 -(1,12685:26202354,7937073:0,414482,115847 -r1,12705:26912332,7937073:709978,530329,115847 -k1,12685:26202354,7937073:-709978 -) -(1,12685:26202354,7937073:709978,414482,115847 -k1,12685:26202354,7937073:3277 -h1,12685:26909055,7937073:0,411205,112570 -) -k1,12685:27137294,7937073:224962 -k1,12685:29372902,7937073:224963 -k1,12685:31073079,7937073:224962 -k1,12685:32583029,7937073:0 -) -(1,12686:6630773,8778561:25952256,513147,134348 -g1,12685:9327579,8778561 -g1,12685:11094429,8778561 -g1,12685:11649518,8778561 -g1,12685:13126044,8778561 -g1,12685:15505656,8778561 -g1,12685:16771156,8778561 -g1,12685:17718151,8778561 -k1,12686:32583029,8778561:12249991 -g1,12686:32583029,8778561 -) -(1,12687:6630773,10869821:25952256,555811,139132 -(1,12687:6630773,10869821:2450326,534184,12975 -g1,12687:6630773,10869821 -g1,12687:9081099,10869821 -) -g1,12687:13303387,10869821 -k1,12687:32583029,10869821:16292249 -g1,12687:32583029,10869821 -) -(1,12690:6630773,12104525:25952256,513147,134348 -k1,12689:7987308,12104525:159848 -k1,12689:9748856,12104525:159848 -k1,12689:13213686,12104525:159849 -k1,12689:14886760,12104525:159848 -k1,12689:18454480,12104525:159848 -k1,12689:20860247,12104525:159848 -k1,12689:22718133,12104525:159848 -k1,12689:25402428,12104525:159848 -k1,12689:27125311,12104525:159849 -k1,12689:28304244,12104525:159848 -k1,12689:31348331,12104525:159848 -k1,12690:32583029,12104525:0 -) -(1,12690:6630773,12946013:25952256,513147,138281 -k1,12689:8238022,12946013:209366 -k1,12689:8978884,12946013:209365 -k1,12689:10207335,12946013:209366 -k1,12689:12682280,12946013:209365 -k1,12689:13839297,12946013:209366 -k1,12689:15650363,12946013:209366 -k1,12689:19450445,12946013:209365 -k1,12689:20287646,12946013:209366 -k1,12689:21516096,12946013:209365 -k1,12689:24609701,12946013:209366 -k1,12689:27238656,12946013:209366 -$1,12689:27238656,12946013 -$1,12689:27741317,12946013 -k1,12689:27950682,12946013:209365 -k1,12689:29351493,12946013:209366 -$1,12689:29351493,12946013 -$1,12689:29903306,12946013 -k1,12689:30112671,12946013:209365 -k1,12689:31313597,12946013:209366 -k1,12690:32583029,12946013:0 -) -(1,12690:6630773,13787501:25952256,530347,134348 -k1,12689:9593500,13787501:209560 -k1,12689:10489223,13787501:209561 -k1,12689:13689846,13787501:209560 -k1,12689:14708776,13787501:209560 -k1,12689:16090775,13787501:209560 -k1,12689:19794060,13787501:209561 -k1,12689:20823475,13787501:209560 -$1,12689:21620393,13787501 -(1,12689:21620393,13512220:343802,255066,0 -) -$1,12689:21964195,13787501 -k1,12689:22380849,13787501:209560 -k1,12689:24162618,13787501:209560 -k1,12689:27730899,13787501:209561 -k1,12689:31348331,13787501:209560 -k1,12690:32583029,13787501:0 -) -(1,12690:6630773,14628989:25952256,505283,134348 -k1,12689:8408164,14628989:222877 -k1,12689:9622601,14628989:222877 -k1,12689:12629447,14628989:222877 -k1,12689:13468362,14628989:222877 -k1,12689:16519772,14628989:222877 -k1,12689:17934095,14628989:222878 -k1,12689:20715498,14628989:222877 -k1,12689:24514675,14628989:222877 -k1,12689:25779574,14628989:222877 -k1,12689:28837538,14628989:222877 -k1,12689:29676453,14628989:222877 -k1,12689:30918415,14628989:222877 -k1,12689:32583029,14628989:0 -) -(1,12690:6630773,15470477:25952256,513147,134348 -k1,12689:9092961,15470477:216269 -k1,12689:9968521,15470477:216268 -k1,12689:14096634,15470477:216269 -k1,12689:15331988,15470477:216269 -$1,12689:15331988,15470477 -$1,12689:15834649,15470477 -k1,12689:16050917,15470477:216268 -k1,12689:18277831,15470477:216269 -k1,12689:19485660,15470477:216269 -k1,12689:22287324,15470477:216269 -k1,12689:23155020,15470477:216268 -k1,12689:25398973,15470477:216269 -k1,12689:27904415,15470477:216269 -k1,12689:28476543,15470477:216268 -k1,12689:30894822,15470477:216269 -k1,12689:32583029,15470477:0 -) -(1,12690:6630773,16311965:25952256,513147,138281 -k1,12689:8006576,16311965:184358 -$1,12689:8006576,16311965 -$1,12689:8558389,16311965 -k1,12689:8742746,16311965:184357 -k1,12689:10937749,16311965:184358 -k1,12689:11773534,16311965:184357 -k1,12689:12976977,16311965:184358 -k1,12689:15346305,16311965:184358 -k1,12689:18135063,16311965:184357 -k1,12689:20980838,16311965:184358 -k1,12689:21696693,16311965:184358 -k1,12689:22900135,16311965:184357 -k1,12689:25397259,16311965:184358 -k1,12689:27827535,16311965:184357 -k1,12689:28671185,16311965:184358 -k1,12689:32583029,16311965:0 -) -(1,12690:6630773,17153453:25952256,513147,134348 -k1,12689:7691741,17153453:290265 -k1,12689:11054334,17153453:290265 -k1,12689:12003891,17153453:290265 -k1,12689:13313241,17153453:290265 -k1,12689:16506096,17153453:290265 -k1,12689:20997874,17153453:290265 -k1,12689:21904177,17153453:290265 -k1,12689:24774594,17153453:290265 -k1,12689:27686953,17153453:290265 -k1,12689:29261724,17153453:290265 -k1,12689:31563944,17153453:290265 -k1,12689:32583029,17153453:0 -) -(1,12690:6630773,17994941:25952256,513147,134348 -k1,12689:10928087,17994941:262918 -k1,12689:11850298,17994941:262919 -k1,12689:14425982,17994941:262918 -k1,12689:16470170,17994941:262919 -k1,12689:18939685,17994941:262918 -k1,12689:21017296,17994941:262919 -k1,12689:21931642,17994941:262918 -k1,12689:22550421,17994941:262919 -k1,12689:26221211,17994941:262918 -k1,12689:28730049,17994941:262919 -k1,12689:31563944,17994941:262918 -k1,12689:32583029,17994941:0 -) -(1,12690:6630773,18836429:25952256,513147,134348 -k1,12689:8850074,18836429:198826 -k1,12689:9708192,18836429:198826 -k1,12689:10926103,18836429:198826 -k1,12689:13649377,18836429:198827 -k1,12689:15636025,18836429:198826 -k1,12689:17877608,18836429:198826 -k1,12689:18692472,18836429:198826 -k1,12689:19910383,18836429:198826 -k1,12689:21560176,18836429:198826 -k1,12689:22831172,18836429:198827 -k1,12689:24522908,18836429:198826 -k1,12689:25788005,18836429:198826 -k1,12689:28337607,18836429:198826 -k1,12689:32583029,18836429:0 -) -(1,12690:6630773,19677917:25952256,505283,134348 -k1,12689:7463474,19677917:204866 -k1,12689:9370309,19677917:204865 -k1,12689:11703784,19677917:204866 -k1,12689:13606687,19677917:204865 -k1,12689:15546946,19677917:204866 -k1,12689:18584932,19677917:204865 -k1,12689:22861550,19677917:204866 -k1,12689:25380491,19677917:204865 -k1,12689:27951207,19677917:204866 -k1,12689:29175157,19677917:204865 -k1,12689:32583029,19677917:0 -) -(1,12690:6630773,20519405:25952256,513147,126483 -k1,12689:8798470,20519405:179335 -k1,12689:10047352,20519405:179334 -k1,12689:11292958,20519405:179335 -k1,12689:13515049,20519405:179334 -k1,12689:14310422,20519405:179335 -k1,12689:15508841,20519405:179334 -k1,12689:18563240,20519405:179335 -k1,12689:20193542,20519405:179335 -k1,12689:21505338,20519405:179334 -k1,12689:22883327,20519405:179335 -k1,12689:23810427,20519405:179334 -k1,12689:26748172,20519405:179335 -k1,12689:27543544,20519405:179334 -k1,12689:32117068,20519405:179335 -k1,12689:32583029,20519405:0 -) -(1,12690:6630773,21360893:25952256,513147,134348 -g1,12689:9684750,21360893 -g1,12689:10645507,21360893 -g1,12689:14252608,21360893 -g1,12689:16266529,21360893 -g1,12689:17537927,21360893 -g1,12689:18869618,21360893 -g1,12689:19816613,21360893 -g1,12689:22457058,21360893 -g1,12689:23122248,21360893 -g1,12689:26176225,21360893 -g1,12689:27136982,21360893 -g1,12689:28908420,21360893 -k1,12690:32583029,21360893:1686247 -g1,12690:32583029,21360893 -) -(1,12691:6630773,23452153:25952256,555811,12975 -(1,12691:6630773,23452153:2450326,534184,12975 -g1,12691:6630773,23452153 -g1,12691:9081099,23452153 -) -k1,12691:32583028,23452153:20630600 -g1,12691:32583028,23452153 -) -(1,12694:6630773,24686857:25952256,513147,126483 -k1,12693:8242350,24686857:190756 -k1,12693:9452192,24686857:190757 -k1,12693:11250546,24686857:190756 -k1,12693:12828045,24686857:190757 -k1,12693:14716839,24686857:190756 -k1,12693:17970749,24686857:190757 -k1,12693:18844390,24686857:190756 -k1,12693:21385267,24686857:190756 -k1,12693:22680306,24686857:190757 -k1,12693:23618828,24686857:190756 -k1,12693:26031256,24686857:190757 -k1,12693:26983540,24686857:190756 -k1,12693:29242613,24686857:190757 -k1,12693:30092661,24686857:190756 -k1,12693:32583029,24686857:0 -) -(1,12694:6630773,25528345:25952256,505283,134348 -k1,12693:7338121,25528345:219760 -k1,12693:8835199,25528345:219781 -k1,12693:10159262,25528345:219781 -k1,12693:11126809,25528345:219781 -k1,12693:13158005,25528345:219781 -k1,12693:15838008,25528345:219781 -k1,12693:18245381,25528345:219781 -k1,12693:18821022,25528345:219781 -k1,12693:21027199,25528345:219781 -k1,12693:22438425,25528345:219781 -k1,12693:24092134,25528345:219781 -k1,12693:26662036,25528345:219781 -k1,12693:27564702,25528345:219781 -k1,12693:30847636,25528345:219781 -k1,12693:32583029,25528345:0 -) -(1,12694:6630773,26369833:25952256,513147,134348 -k1,12693:9576319,26369833:183203 -k1,12693:12249890,26369833:183203 -k1,12693:14024306,26369833:183202 -k1,12693:17400423,26369833:183203 -k1,12693:19570022,26369833:183203 -k1,12693:22622391,26369833:183203 -k1,12693:23909876,26369833:183203 -k1,12693:24840845,26369833:183203 -k1,12693:27859134,26369833:183202 -k1,12693:29233782,26369833:183203 -k1,12693:31299834,26369833:183203 -k1,12693:32583029,26369833:0 -) -(1,12694:6630773,27211321:25952256,513147,126483 -k1,12693:9103971,27211321:156500 -k1,12693:11815720,27211321:156500 -k1,12693:13353064,27211321:156500 -k1,12693:15037207,27211321:156499 -k1,12693:15549567,27211321:156500 -k1,12693:16562623,27211321:156500 -k1,12693:17378415,27211321:156500 -k1,12693:20508939,27211321:156500 -k1,12693:21856884,27211321:156500 -k1,12693:23731738,27211321:156500 -k1,12693:24504276,27211321:156500 -k1,12693:25679860,27211321:156499 -k1,12693:29202289,27211321:156500 -k1,12693:30018081,27211321:156500 -k1,12693:31193666,27211321:156500 -k1,12693:32583029,27211321:0 -) -(1,12694:6630773,28052809:25952256,513147,134348 -g1,12693:11494855,28052809 -g1,12693:14069109,28052809 -g1,12693:15835959,28052809 -g1,12693:17779101,28052809 -g1,12693:20200001,28052809 -g1,12693:21050658,28052809 -g1,12693:22268972,28052809 -g1,12693:25417976,28052809 -k1,12694:32583029,28052809:4902750 -g1,12694:32583029,28052809 -) -(1,12695:6630773,30144069:25952256,555811,147783 -(1,12695:6630773,30144069:2450326,534184,12975 -g1,12695:6630773,30144069 -g1,12695:9081099,30144069 -) -g1,12695:10708162,30144069 -k1,12695:32583029,30144069:19637206 -g1,12695:32583029,30144069 -) -(1,12699:6630773,31378773:25952256,505283,134348 -k1,12697:8038768,31378773:211308 -k1,12697:9433000,31378773:211307 -k1,12697:11487180,31378773:211308 -k1,12697:12229985,31378773:211308 -k1,12697:13211996,31378773:211308 -k1,12697:13838134,31378773:211295 -k1,12697:16008968,31378773:211308 -k1,12697:19582273,31378773:211308 -k1,12697:20812665,31378773:211307 -k1,12697:22413336,31378773:211308 -k1,12697:23995657,31378773:211308 -k1,12697:25226050,31378773:211308 -k1,12697:29275145,31378773:211307 -k1,12697:30137881,31378773:211308 -k1,12697:32583029,31378773:0 -) -(1,12699:6630773,32220261:25952256,505283,134348 -k1,12697:8442141,32220261:172313 -k1,12697:9881920,32220261:172313 -k1,12697:10410092,32220261:172312 -k1,12697:12033372,32220261:172313 -k1,12697:13586529,32220261:172313 -k1,12697:15892039,32220261:172313 -k1,12697:16750513,32220261:172312 -k1,12697:18201433,32220261:172313 -k1,12697:19059908,32220261:172313 -k1,12697:23290210,32220261:172313 -k1,12697:25752351,32220261:172313 -k1,12697:27028945,32220261:172312 -k1,12697:27949024,32220261:172313 -k1,12697:30106423,32220261:172313 -k1,12699:32583029,32220261:0 -) -(1,12699:6630773,33061749:25952256,513147,134348 -k1,12697:7963674,33061749:168982 -k1,12697:8815541,33061749:168982 -k1,12697:10003608,33061749:168982 -k1,12697:13712845,33061749:168982 -k1,12697:14541119,33061749:168982 -k1,12697:17659876,33061749:168982 -k1,12697:20161285,33061749:168983 -k1,12697:22013232,33061749:168982 -k1,12697:24175164,33061749:168982 -k1,12697:26042184,33061749:168982 -k1,12697:27230251,33061749:168982 -k1,12697:29358759,33061749:168982 -k1,12697:30059238,33061749:168982 -k1,12697:32583029,33061749:0 -) -(1,12699:6630773,33903237:25952256,513147,134348 -k1,12697:8013114,33903237:185654 -k1,12697:10379151,33903237:185654 -k1,12697:11224097,33903237:185654 -k1,12697:12428836,33903237:185654 -k1,12697:14946916,33903237:185654 -k1,12697:16626136,33903237:185654 -k1,12697:17497952,33903237:185654 -k1,12697:19938701,33903237:185655 -k1,12697:20807240,33903237:185654 -k1,12697:22970771,33903237:185654 -k1,12697:26049184,33903237:185654 -k1,12697:26766335,33903237:185654 -k1,12697:30616762,33903237:185654 -k1,12697:31563944,33903237:185654 -k1,12697:32583029,33903237:0 -) -(1,12699:6630773,34744725:25952256,505283,134348 -g1,12697:9549091,34744725 -g1,12697:11755688,34744725 -g1,12697:13186994,34744725 -h1,12697:14556041,34744725:0,0,0 -g1,12697:14755270,34744725 -g1,12697:15763869,34744725 -g1,12697:17461251,34744725 -h1,12697:18656628,34744725:0,0,0 -g1,12697:19236621,34744725 -k1,12699:32583029,34744725:13346408 -g1,12699:32583029,34744725 -) -(1,12700:6630773,36835985:25952256,555811,12975 -(1,12700:6630773,36835985:2450326,534184,12975 -g1,12700:6630773,36835985 -g1,12700:9081099,36835985 -) -g1,12700:10708162,36835985 -k1,12700:32583029,36835985:17284922 -g1,12700:32583029,36835985 -) -(1,12703:6630773,38070689:25952256,513147,134348 -k1,12702:7748708,38070689:300046 -k1,12702:8917105,38070689:300045 -k1,12702:10692366,38070689:300046 -k1,12702:14082434,38070689:300045 -k1,12702:16411475,38070689:300046 -k1,12702:17730605,38070689:300045 -k1,12702:21958224,38070689:300046 -k1,12702:22917561,38070689:300045 -k1,12702:24236692,38070689:300046 -k1,12702:27439327,38070689:300045 -k1,12702:28398665,38070689:300046 -k1,12702:31417799,38070689:300045 -k1,12702:32583029,38070689:0 -) -(1,12703:6630773,38912177:25952256,513147,134348 -k1,12702:10051691,38912177:246354 -(1,12702:10258785,38912177:0,414482,115847 -r1,12705:11320474,38912177:1061689,530329,115847 -k1,12702:10258785,38912177:-1061689 -) -(1,12702:10258785,38912177:1061689,414482,115847 -k1,12702:10258785,38912177:3277 -h1,12702:11317197,38912177:0,411205,112570 -) -k1,12702:11947592,38912177:246354 -k1,12702:13141597,38912177:246354 -k1,12702:16049368,38912177:246354 -k1,12702:18085510,38912177:246354 -k1,12702:21495287,38912177:246354 -k1,12702:24610807,38912177:246354 -(1,12702:24610807,38912177:0,414482,122846 -r1,12705:26727632,38912177:2116825,537328,122846 -k1,12702:24610807,38912177:-2116825 -) -(1,12702:24610807,38912177:2116825,414482,122846 -k1,12702:24610807,38912177:3277 -h1,12702:26724355,38912177:0,411205,112570 -) -k1,12702:26973986,38912177:246354 -k1,12702:28713906,38912177:246354 -k1,12702:29646422,38912177:246354 -k1,12702:31391584,38912177:246354 -k1,12702:32583029,38912177:0 -) -(1,12703:6630773,39753665:25952256,505283,126483 -k1,12702:9038173,39753665:215221 -k1,12702:12106831,39753665:215220 -(1,12702:12106831,39753665:0,414482,115847 -r1,12705:14223656,39753665:2116825,530329,115847 -k1,12702:12106831,39753665:-2116825 -) -(1,12702:12106831,39753665:2116825,414482,115847 -k1,12702:12106831,39753665:3277 -h1,12702:14220379,39753665:0,411205,112570 -) -k1,12702:14612547,39753665:215221 -k1,12702:16730277,39753665:215220 -(1,12702:16730277,39753665:0,452978,115847 -r1,12705:19198814,39753665:2468537,568825,115847 -k1,12702:16730277,39753665:-2468537 -) -(1,12702:16730277,39753665:2468537,452978,115847 -k1,12702:16730277,39753665:3277 -h1,12702:19195537,39753665:0,411205,112570 -) -k1,12702:19587705,39753665:215221 -k1,12702:23210797,39753665:215220 -k1,12702:26002238,39753665:215221 -(1,12702:26002238,39753665:0,452978,115847 -r1,12705:28470775,39753665:2468537,568825,115847 -k1,12702:26002238,39753665:-2468537 -) -(1,12702:26002238,39753665:2468537,452978,115847 -k1,12702:26002238,39753665:3277 -h1,12702:28467498,39753665:0,411205,112570 -) -k1,12702:28859665,39753665:215220 -k1,12702:30266331,39753665:215221 -k1,12703:32583029,39753665:0 -) -(1,12703:6630773,40595153:25952256,513147,126483 -(1,12702:6630773,40595153:0,452978,115847 -r1,12705:9099310,40595153:2468537,568825,115847 -k1,12702:6630773,40595153:-2468537 -) -(1,12702:6630773,40595153:2468537,452978,115847 -k1,12702:6630773,40595153:3277 -h1,12702:9096033,40595153:0,411205,112570 -) -k1,12702:9523242,40595153:250262 -k1,12702:10401340,40595153:250263 -k1,12702:11854843,40595153:250262 -k1,12702:14383793,40595153:250263 -k1,12702:15502407,40595153:250262 -k1,12702:16885131,40595153:250262 -k1,12702:18160377,40595153:250263 -k1,12702:19741020,40595153:250262 -k1,12702:21598880,40595153:250262 -k1,12702:22840703,40595153:250263 -k1,12702:26448374,40595153:250262 -k1,12702:27890082,40595153:250263 -k1,12702:31015408,40595153:250262 -k1,12702:32583029,40595153:0 -) -(1,12703:6630773,41436641:25952256,505283,7863 -g1,12702:8526729,41436641 -k1,12703:32583030,41436641:21013464 -g1,12703:32583030,41436641 -) -(1,12705:6630773,42278129:25952256,505283,134348 -h1,12704:6630773,42278129:983040,0,0 -k1,12704:8354639,42278129:253238 -(1,12704:8354639,42278129:0,452978,122846 -r1,12705:9768040,42278129:1413401,575824,122846 -k1,12704:8354639,42278129:-1413401 -) -(1,12704:8354639,42278129:1413401,452978,122846 -k1,12704:8354639,42278129:3277 -h1,12704:9764763,42278129:0,411205,112570 -) -k1,12704:10021331,42278129:253291 -k1,12704:11551920,42278129:253292 -k1,12704:13764738,42278129:253292 -k1,12704:16720079,42278129:253292 -k1,12704:17992455,42278129:253291 -k1,12704:19635110,42278129:253292 -k1,12704:21079847,42278129:253292 -k1,12704:25170927,42278129:253292 -k1,12704:27722567,42278129:253292 -k1,12704:28627286,42278129:253291 -k1,12704:30522910,42278129:253292 -k1,12704:31132062,42278129:253292 -k1,12704:32583029,42278129:0 -) -(1,12705:6630773,43119617:25952256,513147,134348 -k1,12704:8250355,43119617:154197 -k1,12704:9793915,43119617:154197 -k1,12704:15115625,43119617:154196 -k1,12704:16461267,43119617:154197 -k1,12704:19712695,43119617:154197 -k1,12704:20526184,43119617:154197 -k1,12704:21699465,43119617:154196 -k1,12704:23130959,43119617:154197 -k1,12704:24637819,43119617:154197 -k1,12704:26454664,43119617:154197 -k1,12704:27221623,43119617:154197 -k1,12704:28394904,43119617:154196 -k1,12704:29974509,43119617:154197 -k1,12704:30787998,43119617:154197 -k1,12705:32583029,43119617:0 -) -(1,12705:6630773,43961105:25952256,505283,134348 -k1,12704:7799093,43961105:178071 -k1,12704:8660048,43961105:178070 -k1,12704:11901272,43961105:178071 -k1,12704:13098427,43961105:178070 -k1,12704:14727465,43961105:178071 -k1,12704:16102222,43961105:178070 -k1,12704:17669656,43961105:178071 -k1,12704:20698543,43961105:178071 -k1,12704:21638141,43961105:178070 -k1,12704:22835297,43961105:178071 -k1,12704:24394211,43961105:178070 -k1,12704:26018662,43961105:178071 -k1,12704:28755258,43961105:178070 -k1,12704:30588113,43961105:178071 -k1,12704:32583029,43961105:0 -) -(1,12705:6630773,44802593:25952256,513147,134348 -k1,12704:8747266,44802593:197599 -k1,12704:12082728,44802593:197598 -k1,12704:12939619,44802593:197599 -k1,12704:15978858,44802593:197598 -k1,12704:16827885,44802593:197599 -k1,12704:20200047,44802593:197598 -k1,12704:21501928,44802593:197599 -k1,12704:23052189,44802593:197598 -k1,12704:25086107,44802593:197599 -k1,12704:26480392,44802593:197598 -k1,12704:28943571,44802593:197599 -k1,12704:30088820,44802593:197598 -(1,12704:30088820,44802593:0,452978,115847 -r1,12705:31853933,44802593:1765113,568825,115847 -k1,12704:30088820,44802593:-1765113 -) -(1,12704:30088820,44802593:1765113,452978,115847 -k1,12704:30088820,44802593:3277 -h1,12704:31850656,44802593:0,411205,112570 -) -k1,12704:32051532,44802593:197599 -k1,12704:32583029,44802593:0 -) -] -(1,12705:32583029,45706769:0,0,0 -g1,12705:32583029,45706769 -) -) -] -(1,12705:6630773,47279633:25952256,0,0 -h1,12705:6630773,47279633:25952256,0,0 -) -] -(1,12705:4262630,4025873:0,0,0 -[1,12705:-473656,4025873:0,0,0 -(1,12705:-473656,-710413:0,0,0 -(1,12705:-473656,-710413:0,0,0 -g1,12705:-473656,-710413 -) -g1,12705:-473656,-710413 -) -] -) -] -!24079 -}238 -Input:1776:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1777:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1778:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1779:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1780:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1781:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1782:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1783:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1784:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!840 -{239 -[1,12754:4262630,47279633:28320399,43253760,0 -(1,12754:4262630,4025873:0,0,0 -[1,12754:-473656,4025873:0,0,0 -(1,12754:-473656,-710413:0,0,0 -(1,12754:-473656,-644877:0,0,0 -k1,12754:-473656,-644877:-65536 -) -(1,12754:-473656,4736287:0,0,0 -k1,12754:-473656,4736287:5209943 -) -g1,12754:-473656,-710413 -) -] -) -[1,12754:6630773,47279633:25952256,43253760,0 -[1,12754:6630773,4812305:25952256,786432,0 -(1,12754:6630773,4812305:25952256,513147,134348 -(1,12754:6630773,4812305:25952256,513147,134348 -g1,12754:3078558,4812305 -[1,12754:3078558,4812305:0,0,0 -(1,12754:3078558,2439708:0,1703936,0 -k1,12754:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,12754:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,12754:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,12754:3078558,4812305:0,0,0 -(1,12754:3078558,2439708:0,1703936,0 -g1,12754:29030814,2439708 -g1,12754:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,12754:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,12754:37855564,2439708:1179648,16384,0 -) -) -k1,12754:3078556,2439708:-34777008 -) -] -[1,12754:3078558,4812305:0,0,0 -(1,12754:3078558,49800853:0,16384,2228224 -k1,12754:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,12754:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,12754:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,12754:3078558,4812305:0,0,0 -(1,12754:3078558,49800853:0,16384,2228224 -g1,12754:29030814,49800853 -g1,12754:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,12754:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,12754:37855564,49800853:1179648,16384,0 -) -) -k1,12754:3078556,49800853:-34777008 -) -] -g1,12754:6630773,4812305 -k1,12754:25712890,4812305:17886740 -g1,12754:29057847,4812305 -g1,12754:29873114,4812305 -) -) -] -[1,12754:6630773,45706769:25952256,40108032,0 -(1,12754:6630773,45706769:25952256,40108032,0 -(1,12754:6630773,45706769:0,0,0 -g1,12754:6630773,45706769 -) -[1,12754:6630773,45706769:25952256,40108032,0 -(1,12705:6630773,6254097:25952256,513147,134348 -k1,12704:7796331,6254097:217907 -k1,12704:9033323,6254097:217907 -k1,12704:12058792,6254097:217907 -k1,12704:12928128,6254097:217908 -k1,12704:14498698,6254097:217907 -k1,12704:16379253,6254097:217907 -k1,12704:18491806,6254097:217907 -k1,12704:19369005,6254097:217907 -k1,12704:20605997,6254097:217907 -k1,12704:23677342,6254097:217907 -k1,12704:24500803,6254097:217908 -k1,12704:25334748,6254097:217907 -k1,12704:26571740,6254097:217907 -k1,12704:29966832,6254097:217907 -k1,12704:32583029,6254097:0 -) -(1,12705:6630773,7095585:25952256,505283,95026 -k1,12705:32583029,7095585:23703060 -g1,12705:32583029,7095585 -) -(1,12722:6630773,10253646:25952256,2129147,0 -h1,12709:6630773,10253646:0,0,0 -(1,12721:6630773,10253646:25953151,2129147,0 -(1,12721:6630773,10253646:0,2129147,0 -(1,12721:6630773,10253646:0,2673868,0 -(1,12721:6630773,10253646:32593000,2673868,0 -(1,12721:6630773,10253646:32593000,2673868,0 -(1,12721:6630773,10253646:32593000,2673868,0 -g1,12721:8841497,10253646 -(1,12721:8841497,8916712:0,0,0 -(1,12721:8841497,8916712:0,0,0 -g1,12721:8841497,8916712 -(1,12721:8841497,8916712:0,0,0 -(1,12721:8841497,8916712:0,0,0 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -(1,12721:8841497,8916712:0,0,0 -(1,12721:8841497,8916712:3932160,505283,7863 -(1,12721:8841497,8916712:3932160,505283,7863 -[1,12721:8841497,8916712:3932160,505283,7863 -(1,12721:8841497,8916712:3932160,505283,7863 -k1,12721:10116828,8916712:1275331 -h1,12721:10116828,8916712:0,0,0 -h1,12721:10116828,8916712:0,0,0 -k1,12721:11498327,8916712:0 -k1,12721:12773657,8916712:1275330 -) -] -) -g1,12721:12773657,8916712 -) -) -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -) -) -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -(1,12721:8841497,8916712:0,0,0 -(1,12721:8841497,8916712:0,0,0 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -(1,12721:8841497,8916712:0,0,0 -(1,12721:8841497,8916712:3932160,473825,7863 -(1,12721:8841497,8916712:3932160,473825,7863 -[1,12721:8841497,8916712:3932160,473825,7863 -(1,12721:8841497,8916712:3932160,473825,7863 -k1,12721:9568291,8916712:726794 -h1,12721:9568291,8916712:0,0,0 -h1,12721:9568291,8916712:0,0,0 -k1,12721:12046863,8916712:0 -k1,12721:12773657,8916712:726794 -) -] -) -g1,12721:12773657,8916712 -) -) -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -) -) -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -(1,12721:8841497,8916712:0,0,0 -(1,12721:8841497,8916712:0,0,0 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -(1,12721:8841497,8916712:0,0,0 -(1,12721:8841497,8916712:3932160,416809,134348 -(1,12721:8841497,8916712:3932160,416809,134348 -[1,12721:8841497,8916712:3932160,416809,134348 -(1,12721:8841497,8916712:3932160,416809,134348 -k1,12721:9303526,8916712:462029 -h1,12721:9303526,8916712:0,0,0 -h1,12721:9303526,8916712:0,0,0 -k1,12721:12311629,8916712:0 -k1,12721:12773657,8916712:462028 -) -] -) -g1,12721:12773657,8916712 -) -) -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -) -) -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -(1,12721:8841497,8916712:0,0,0 -(1,12721:8841497,8916712:0,0,0 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -(1,12721:8841497,8916712:0,0,0 -(1,12721:8841497,8916712:3932160,505283,7863 -(1,12721:8841497,8916712:3932160,505283,7863 -[1,12721:8841497,8916712:3932160,505283,7863 -(1,12721:8841497,8916712:3932160,505283,7863 -k1,12721:10014919,8916712:1173422 -h1,12721:10014919,8916712:0,0,0 -h1,12721:10014919,8916712:0,0,0 -k1,12721:11600235,8916712:0 -k1,12721:12773657,8916712:1173422 -) -] -) -g1,12721:12773657,8916712 -) -) -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -) -) -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -(1,12721:8841497,8916712:0,0,0 -(1,12721:8841497,8916712:0,0,0 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -(1,12721:8841497,8916712:0,0,0 -(1,12721:8841497,8916712:3932160,505283,967971 -(1,12721:8841497,8916712:3932160,505283,967971 -[1,12721:8841497,8916712:3932160,505283,967971 -(1,12721:8841497,8916712:3932160,505283,7863 -k1,12721:9375943,8916712:534446 -h1,12721:9375943,8916712:0,0,0 -h1,12721:9375943,8916712:0,0,0 -k1,12721:12239211,8916712:0 -k1,12721:12773657,8916712:534446 -) -(1,12721:8841497,9758200:3932160,505283,126483 -k1,12721:10182691,9758200:1341194 -h1,12721:10182691,9758200:0,0,0 -k1,12721:11432463,9758200:0 -k1,12721:12773657,9758200:1341194 -) -] -) -g1,12721:12773657,8916712 -) -) -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -) -) -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -(1,12721:8841497,8916712:0,0,0 -(1,12721:8841497,8916712:0,0,0 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -(1,12721:8841497,8916712:0,0,0 -(1,12721:8841497,8916712:418775,485622,0 -(1,12721:8841497,8916712:418775,485622,0 -) -g1,12721:9260272,8916712 -) -) -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -) -) -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -(1,12721:8841497,8916712:0,0,0 -(1,12721:8841497,8916712:0,0,0 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -(1,12721:8841497,8916712:0,0,0 -(1,12721:8841497,8916712:418775,485622,0 -(1,12721:8841497,8916712:418775,485622,0 -) -g1,12721:9260272,8916712 -) -) -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -) -) -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -(1,12721:8841497,8916712:0,0,0 -(1,12721:8841497,8916712:0,0,0 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -(1,12721:8841497,8916712:0,0,0 -(1,12721:8841497,8916712:418775,485622,11795 -(1,12721:8841497,8916712:418775,485622,11795 -) -g1,12721:9260272,8916712 -) -) -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -) -) -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -(1,12721:8841497,8916712:0,0,0 -(1,12721:8841497,8916712:0,0,0 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -(1,12721:8841497,8916712:0,0,0 -(1,12721:8841497,8916712:418775,473825,0 -(1,12721:8841497,8916712:418775,473825,0 -) -g1,12721:9260272,8916712 -) -) -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -) -) -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -g1,12721:8841497,8916712 -) -g1,12721:8841497,8916712 -) -) -) -) -k1,12721:6630773,10253646:-32593000 -) -) -g1,12721:32583924,10253646 -) -g1,12722:32583924,10253646 -g1,12722:32583924,10253646 -) -(1,12724:6630773,11789816:25952256,513147,126483 -h1,12723:6630773,11789816:983040,0,0 -k1,12723:8245899,11789816:144498 -k1,12723:10913587,11789816:144552 -k1,12723:13610767,11789816:144553 -k1,12723:14441481,11789816:144552 -k1,12723:16294558,11789816:144553 -(1,12723:16294558,11789816:0,452978,115847 -r1,12754:17707959,11789816:1413401,568825,115847 -k1,12723:16294558,11789816:-1413401 -) -(1,12723:16294558,11789816:1413401,452978,115847 -k1,12723:16294558,11789816:3277 -h1,12723:17704682,11789816:0,411205,112570 -) -k1,12723:17852511,11789816:144552 -k1,12723:18352924,11789816:144553 -k1,12723:19886839,11789816:144552 -k1,12723:21907687,11789816:144552 -k1,12723:23446191,11789816:144553 -k1,12723:24609828,11789816:144552 -k1,12723:27467572,11789816:144553 -k1,12723:28228162,11789816:144552 -k1,12723:32583029,11789816:0 -) -(1,12724:6630773,12631304:25952256,513147,134348 -k1,12723:8257528,12631304:237392 -k1,12723:11289374,12631304:237391 -k1,12723:14643658,12631304:237392 -k1,12723:15532477,12631304:237391 -k1,12723:16788954,12631304:237392 -k1,12723:19094661,12631304:237391 -k1,12723:19991345,12631304:237392 -k1,12723:21247821,12631304:237391 -k1,12723:24659777,12631304:237392 -k1,12723:26277356,12631304:237391 -k1,12723:27506308,12631304:237392 -k1,12723:30329094,12631304:237391 -k1,12723:31391584,12631304:237392 -k1,12723:32583029,12631304:0 -) -(1,12724:6630773,13472792:25952256,513147,134348 -k1,12723:10097955,13472792:240189 -k1,12723:13051335,13472792:240189 -k1,12723:14685476,13472792:240190 -k1,12723:17808594,13472792:240189 -k1,12723:19240228,13472792:240189 -k1,12723:21224330,13472792:240189 -k1,12723:25445176,13472792:240189 -k1,12723:26882053,13472792:240190 -k1,12723:28802585,13472792:240189 -k1,12723:31821501,13472792:240189 -k1,12723:32583029,13472792:0 -) -(1,12724:6630773,14314280:25952256,513147,126483 -k1,12723:7249228,14314280:262595 -k1,12723:10365260,14314280:262594 -k1,12723:11159352,14314280:262595 -k1,12723:12707762,14314280:262594 -k1,12723:13326217,14314280:262595 -k1,12723:14978174,14314280:262594 -k1,12723:17290735,14314280:262595 -k1,12723:18934174,14314280:262595 -k1,12723:20586131,14314280:262594 -k1,12723:22725022,14314280:262595 -k1,12723:23519113,14314280:262594 -k1,12723:26518491,14314280:262595 -k1,12723:27432513,14314280:262594 -k1,12723:28714193,14314280:262595 -k1,12723:30685311,14314280:262594 -k1,12723:31563944,14314280:262595 -k1,12723:32583029,14314280:0 -) -(1,12724:6630773,15155768:25952256,513147,115847 -k1,12723:8241099,15155768:243245 -k1,12723:9151501,15155768:243246 -(1,12723:9151501,15155768:0,452978,115847 -r1,12754:14433732,15155768:5282231,568825,115847 -k1,12723:9151501,15155768:-5282231 -) -(1,12723:9151501,15155768:5282231,452978,115847 -k1,12723:9151501,15155768:3277 -h1,12723:14430455,15155768:0,411205,112570 -) -k1,12723:14676977,15155768:243245 -k1,12723:15603107,15155768:243245 -k1,12723:18782365,15155768:243245 -k1,12723:19641649,15155768:243246 -k1,12723:20903979,15155768:243245 -k1,12723:23157869,15155768:243245 -k1,12723:26540944,15155768:243245 -k1,12723:27975635,15155768:243246 -k1,12723:28834918,15155768:243245 -k1,12723:30097248,15155768:243245 -k1,12723:32583029,15155768:0 -) -(1,12724:6630773,15997256:25952256,513147,134348 -k1,12723:7534776,15997256:244711 -k1,12723:9313685,15997256:244711 -k1,12723:11768271,15997256:244712 -k1,12723:14726173,15997256:244711 -k1,12723:15918535,15997256:244711 -k1,12723:17865216,15997256:244711 -k1,12723:21137035,15997256:244711 -k1,12723:24260088,15997256:244712 -k1,12723:26934874,15997256:244711 -k1,12723:29445165,15997256:244711 -k1,12723:32583029,15997256:0 -) -(1,12724:6630773,16838744:25952256,513147,126483 -k1,12723:8015430,16838744:193212 -k1,12723:8564502,16838744:193212 -k1,12723:11023295,16838744:193213 -(1,12723:11023295,16838744:0,414482,122846 -r1,12754:13843544,16838744:2820249,537328,122846 -k1,12723:11023295,16838744:-2820249 -) -(1,12723:11023295,16838744:2820249,414482,122846 -k1,12723:11023295,16838744:3277 -h1,12723:13840267,16838744:0,411205,112570 -) -k1,12723:14210426,16838744:193212 -k1,12723:15475807,16838744:193212 -k1,12723:17365746,16838744:193212 -k1,12723:18663241,16838744:193213 -k1,12723:19604219,16838744:193212 -k1,12723:23278048,16838744:193212 -k1,12723:24232788,16838744:193212 -k1,12723:25445086,16838744:193213 -k1,12723:27192812,16838744:193212 -k1,12723:29729591,16838744:193212 -k1,12723:32583029,16838744:0 -) -(1,12724:6630773,17680232:25952256,513147,134348 -k1,12723:8809826,17680232:168408 -k1,12723:10680205,17680232:168409 -k1,12723:13690254,17680232:168408 -k1,12723:14474700,17680232:168408 -k1,12723:17309114,17680232:168409 -k1,12723:18128950,17680232:168408 -k1,12723:20041271,17680232:168408 -k1,12723:21603631,17680232:168409 -k1,12723:24037619,17680232:168408 -k1,12723:27517561,17680232:168408 -k1,12723:29781156,17680232:168409 -(1,12723:29781156,17680232:0,452978,115847 -r1,12754:31546269,17680232:1765113,568825,115847 -k1,12723:29781156,17680232:-1765113 -) -(1,12723:29781156,17680232:1765113,452978,115847 -k1,12723:29781156,17680232:3277 -h1,12723:31542992,17680232:0,411205,112570 -) -k1,12723:31714677,17680232:168408 -k1,12723:32583029,17680232:0 -) -(1,12724:6630773,18521720:25952256,513147,134348 -k1,12723:7991400,18521720:256345 -k1,12723:9340229,18521720:256344 -k1,12723:12292070,18521720:256345 -(1,12723:12292070,18521720:0,459977,115847 -r1,12754:16519166,18521720:4227096,575824,115847 -k1,12723:12292070,18521720:-4227096 -) -(1,12723:12292070,18521720:4227096,459977,115847 -k1,12723:12292070,18521720:3277 -h1,12723:16515889,18521720:0,411205,112570 -) -k1,12723:16775511,18521720:256345 -k1,12723:17683283,18521720:256344 -k1,12723:20329071,18521720:256345 -k1,12723:20941276,18521720:256345 -k1,12723:24005183,18521720:256345 -k1,12723:25774753,18521720:256344 -k1,12723:27050183,18521720:256345 -k1,12723:29829664,18521720:256345 -k1,12723:30691561,18521720:256344 -k1,12723:31563944,18521720:256345 -k1,12723:32583029,18521720:0 -) -(1,12724:6630773,19363208:25952256,505283,134348 -g1,12723:9446199,19363208 -k1,12724:32583029,19363208:20900742 -g1,12724:32583029,19363208 -) -(1,12726:6630773,20204696:25952256,513147,134348 -h1,12725:6630773,20204696:983040,0,0 -k1,12725:8614850,20204696:183148 -k1,12725:9817083,20204696:183148 -k1,12725:12917237,20204696:183147 -k1,12725:14291830,20204696:183148 -k1,12725:15567463,20204696:183148 -k1,12725:16409903,20204696:183148 -k1,12725:17612135,20204696:183147 -k1,12725:20697873,20204696:183148 -k1,12725:21872581,20204696:183148 -k1,12725:23926127,20204696:183148 -k1,12725:24760702,20204696:183147 -k1,12725:28976936,20204696:183148 -k1,12725:29921612,20204696:183148 -k1,12725:32583029,20204696:0 -) -(1,12726:6630773,21046184:25952256,513147,134348 -k1,12725:8229480,21046184:156260 -k1,12725:9037167,21046184:156259 -k1,12725:11503571,21046184:156260 -k1,12725:13053781,21046184:156259 -k1,12725:15338650,21046184:156260 -k1,12725:15707859,21046184:156217 -k1,12725:16996581,21046184:156260 -k1,12725:18813522,21046184:156259 -k1,12725:20300163,21046184:156260 -k1,12725:21107850,21046184:156259 -k1,12725:22906442,21046184:156260 -k1,12725:24670300,21046184:156260 -k1,12725:25485851,21046184:156259 -k1,12725:28903838,21046184:156260 -k1,12725:32583029,21046184:0 -) -(1,12726:6630773,21887672:25952256,513147,134348 -k1,12725:9295686,21887672:186341 -k1,12725:11049647,21887672:186340 -k1,12725:12255073,21887672:186341 -k1,12725:15153294,21887672:186341 -k1,12725:18143265,21887672:186341 -k1,12725:19227448,21887672:186340 -k1,12725:22282955,21887672:186341 -k1,12725:23128588,21887672:186341 -k1,12725:23670789,21887672:186341 -k1,12725:25134426,21887672:186340 -k1,12725:26795982,21887672:186341 -k1,12725:29751874,21887672:186341 -k1,12725:32583029,21887672:0 -) -(1,12726:6630773,22729160:25952256,513147,126483 -k1,12725:7498671,22729160:251860 -k1,12725:9442671,22729160:251860 -k1,12725:11391913,22729160:251860 -k1,12725:13340499,22729160:251859 -k1,12725:16188240,22729160:251860 -k1,12725:18282972,22729160:251860 -k1,12725:19150870,22729160:251860 -k1,12725:21408787,22729160:251860 -k1,12725:23441916,22729160:251860 -k1,12725:26372232,22729160:251860 -k1,12725:28339824,22729160:251859 -k1,12725:29049781,22729160:251860 -k1,12725:31931601,22729160:251860 -k1,12725:32583029,22729160:0 -) -(1,12726:6630773,23570648:25952256,513147,126483 -k1,12725:8740360,23570648:180207 -k1,12725:9276427,23570648:180207 -k1,12725:10733931,23570648:180207 -k1,12725:12268113,23570648:180208 -k1,12725:15807040,23570648:180207 -k1,12725:16940796,23570648:180207 -k1,12725:18213488,23570648:180207 -k1,12725:21089191,23570648:180207 -(1,12725:21089191,23570648:0,452978,122846 -r1,12754:23909440,23570648:2820249,575824,122846 -k1,12725:21089191,23570648:-2820249 -) -(1,12725:21089191,23570648:2820249,452978,122846 -k1,12725:21089191,23570648:3277 -h1,12725:23906163,23570648:0,411205,112570 -) -k1,12725:24089647,23570648:180207 -k1,12725:24921282,23570648:180207 -k1,12725:27030870,23570648:180208 -k1,12725:28230162,23570648:180207 -k1,12725:31099311,23570648:180207 -k1,12725:32227169,23570648:180207 -k1,12725:32583029,23570648:0 -) -(1,12726:6630773,24412136:25952256,505283,126483 -g1,12725:8280969,24412136 -g1,12725:10365669,24412136 -g1,12725:11669180,24412136 -g1,12725:12616175,24412136 -g1,12725:16038465,24412136 -g1,12725:17309863,24412136 -g1,12725:18794908,24412136 -g1,12725:21344258,24412136 -g1,12725:22229649,24412136 -g1,12725:23134045,24412136 -g1,12725:23822828,24412136 -g1,12725:25209569,24412136 -g1,12725:26771947,24412136 -g1,12725:27751710,24412136 -g1,12725:29378969,24412136 -g1,12725:30253219,24412136 -k1,12726:32583029,24412136:266737 -g1,12726:32583029,24412136 -) -v1,12728:6630773,25602602:0,393216,0 -(1,12732:6630773,25917698:25952256,708312,196608 -g1,12732:6630773,25917698 -g1,12732:6630773,25917698 -g1,12732:6434165,25917698 -(1,12732:6434165,25917698:0,708312,196608 -r1,12754:32779637,25917698:26345472,904920,196608 -k1,12732:6434165,25917698:-26345472 -) -(1,12732:6434165,25917698:26345472,708312,196608 -[1,12732:6630773,25917698:25952256,511704,0 -(1,12730:6630773,25810220:25952256,404226,107478 -(1,12729:6630773,25810220:0,0,0 -g1,12729:6630773,25810220 -g1,12729:6630773,25810220 -g1,12729:6303093,25810220 -(1,12729:6303093,25810220:0,0,0 -) -g1,12729:6630773,25810220 -) -k1,12730:6630773,25810220:0 -h1,12730:9159938,25810220:0,0,0 -k1,12730:32583030,25810220:23423092 -g1,12730:32583030,25810220 -) -] -) -g1,12732:32583029,25917698 -g1,12732:6630773,25917698 -g1,12732:6630773,25917698 -g1,12732:32583029,25917698 -g1,12732:32583029,25917698 -) -h1,12732:6630773,26114306:0,0,0 -(1,12735:6630773,35787796:25952256,9083666,0 -k1,12735:10523651,35787796:3892878 -h1,12734:10523651,35787796:0,0,0 -(1,12734:10523651,35787796:18166500,9083666,0 -(1,12734:10523651,35787796:18167376,9083688,0 -(1,12734:10523651,35787796:18167376,9083688,0 -(1,12734:10523651,35787796:0,9083688,0 -(1,12734:10523651,35787796:0,14208860,0 -(1,12734:10523651,35787796:28417720,14208860,0 -) -k1,12734:10523651,35787796:-28417720 -) -) -g1,12734:28691027,35787796 -) -) -) -g1,12735:28690151,35787796 -k1,12735:32583029,35787796:3892878 -) -(1,12742:6630773,36629284:25952256,513147,126483 -h1,12741:6630773,36629284:983040,0,0 -k1,12741:9041310,36629284:230810 -k1,12741:10549416,36629284:230809 -k1,12741:12635550,36629284:230810 -k1,12741:13397856,36629284:230809 -k1,12741:14287958,36629284:230810 -k1,12741:15991361,36629284:230809 -k1,12741:17314656,36629284:230810 -k1,12741:20005688,36629284:230810 -k1,12741:21368304,36629284:230809 -k1,12741:23162148,36629284:230810 -k1,12741:24117785,36629284:230809 -k1,12741:25216947,36629284:230810 -k1,12741:26831876,36629284:230809 -k1,12741:28499891,36629284:230810 -k1,12741:29086560,36629284:230809 -k1,12741:30706733,36629284:230810 -k1,12741:32583029,36629284:0 -) -(1,12742:6630773,37470772:25952256,505283,134348 -k1,12741:8952887,37470772:188917 -k1,12741:9757842,37470772:188917 -k1,12741:11150000,37470772:188917 -k1,12741:12705998,37470772:188917 -(1,12741:12705998,37470772:0,414482,115847 -r1,12754:14822823,37470772:2116825,530329,115847 -k1,12741:12705998,37470772:-2116825 -) -(1,12741:12705998,37470772:2116825,414482,115847 -k1,12741:12705998,37470772:3277 -h1,12741:14819546,37470772:0,411205,112570 -) -(1,12741:15478183,37470772:0,414482,115847 -r1,12754:17595008,37470772:2116825,530329,115847 -k1,12741:15478183,37470772:-2116825 -) -(1,12741:15478183,37470772:2116825,414482,115847 -k1,12741:15478183,37470772:3277 -h1,12741:17591731,37470772:0,411205,112570 -) -k1,12741:17783925,37470772:188917 -k1,12741:18504339,37470772:188917 -k1,12741:19049116,37470772:188917 -k1,12741:20627395,37470772:188916 -k1,12741:21750855,37470772:188917 -k1,12741:24698182,37470772:188917 -k1,12741:25503137,37470772:188917 -k1,12741:26280567,37470772:188917 -k1,12741:27120912,37470772:188917 -k1,12741:28921359,37470772:188917 -k1,12741:30760473,37470772:188917 -k1,12741:32583029,37470772:0 -) -(1,12742:6630773,38312260:25952256,505283,134348 -k1,12741:8031309,38312260:197295 -k1,12741:9617967,38312260:197295 -k1,12741:10923476,38312260:197295 -k1,12741:12506856,38312260:197294 -(1,12741:12506856,38312260:0,452978,115847 -r1,12754:17437376,38312260:4930520,568825,115847 -k1,12741:12506856,38312260:-4930520 -) -(1,12741:12506856,38312260:4930520,452978,115847 -k1,12741:12506856,38312260:3277 -h1,12741:17434099,38312260:0,411205,112570 -) -k1,12741:17634671,38312260:197295 -k1,12741:18444728,38312260:197295 -k1,12741:19661108,38312260:197295 -k1,12741:20273244,38312260:197293 -k1,12741:23630030,38312260:197295 -k1,12741:26402234,38312260:197294 -k1,12741:28808092,38312260:197295 -k1,12741:29814757,38312260:197295 -k1,12741:31900144,38312260:197295 -k1,12741:32583029,38312260:0 -) -(1,12742:6630773,39153748:25952256,505283,134348 -g1,12741:8575881,39153748 -g1,12741:9794195,39153748 -g1,12741:11836296,39153748 -g1,12741:12567022,39153748 -g1,12741:14052067,39153748 -g1,12741:15021999,39153748 -g1,12741:17227285,39153748 -g1,12741:18797527,39153748 -g1,12741:21521203,39153748 -g1,12741:23241523,39153748 -g1,12741:24878350,39153748 -$1,12741:24878350,39153748 -$1,12741:25485869,39153748 -g1,12741:25672253,39153748 -g1,12741:27664678,39153748 -k1,12742:32583029,39153748:2960070 -g1,12742:32583029,39153748 -) -v1,12744:6630773,40344214:0,393216,0 -(1,12748:6630773,40659310:25952256,708312,196608 -g1,12748:6630773,40659310 -g1,12748:6630773,40659310 -g1,12748:6434165,40659310 -(1,12748:6434165,40659310:0,708312,196608 -r1,12754:32779637,40659310:26345472,904920,196608 -k1,12748:6434165,40659310:-26345472 -) -(1,12748:6434165,40659310:26345472,708312,196608 -[1,12748:6630773,40659310:25952256,511704,0 -(1,12746:6630773,40551832:25952256,404226,107478 -(1,12745:6630773,40551832:0,0,0 -g1,12745:6630773,40551832 -g1,12745:6630773,40551832 -g1,12745:6303093,40551832 -(1,12745:6303093,40551832:0,0,0 -) -g1,12745:6630773,40551832 -) -k1,12746:6630773,40551832:0 -g1,12746:10424522,40551832 -g1,12746:11056814,40551832 -h1,12746:13269834,40551832:0,0,0 -k1,12746:32583030,40551832:19313196 -g1,12746:32583030,40551832 -) -] -) -g1,12748:32583029,40659310 -g1,12748:6630773,40659310 -g1,12748:6630773,40659310 -g1,12748:32583029,40659310 -g1,12748:32583029,40659310 -) -h1,12748:6630773,40855918:0,0,0 -(1,12752:6630773,42221694:25952256,505283,126483 -h1,12751:6630773,42221694:983040,0,0 -k1,12751:9492543,42221694:273753 -k1,12751:10785381,42221694:273753 -k1,12751:12448497,42221694:273753 -k1,12751:13713810,42221694:273753 -k1,12751:16945203,42221694:273753 -k1,12751:18087308,42221694:273753 -k1,12751:19891328,42221694:273754 -k1,12751:20816509,42221694:273753 -k1,12751:22526156,42221694:273753 -k1,12751:23818994,42221694:273753 -k1,12751:27276486,42221694:273753 -k1,12751:28166277,42221694:273753 -k1,12751:29459115,42221694:273753 -k1,12751:31122231,42221694:273753 -k1,12751:32583029,42221694:0 -) -(1,12752:6630773,43063182:25952256,513147,134348 -k1,12751:9797145,43063182:216597 -k1,12751:12619452,43063182:216596 -k1,12751:13452087,43063182:216597 -k1,12751:14687768,43063182:216596 -k1,12751:16355332,43063182:216597 -k1,12751:17254814,43063182:216597 -k1,12751:20686606,43063182:216596 -k1,12751:22686438,43063182:216597 -k1,12751:25427481,43063182:216596 -k1,12751:26260116,43063182:216597 -k1,12751:27649151,43063182:216596 -k1,12751:31714677,43063182:216597 -k1,12751:32583029,43063182:0 -) -(1,12752:6630773,43904670:25952256,505283,138281 -k1,12751:8345195,43904670:184156 -k1,12751:9180779,43904670:184156 -k1,12751:10761507,43904670:184156 -k1,12751:13787304,43904670:184156 -k1,12751:14587498,43904670:184156 -k1,12751:15790739,43904670:184156 -k1,12751:17364258,43904670:184156 -k1,12751:18199842,43904670:184156 -k1,12751:18996761,43904670:184157 -k1,12751:20676449,43904670:184156 -k1,12751:21879690,43904670:184156 -$1,12751:21879690,43904670 -$1,12751:22382351,43904670 -k1,12751:22566507,43904670:184156 -k1,12751:23942108,43904670:184156 -$1,12751:23942108,43904670 -$1,12751:24493921,43904670 -k1,12751:24678077,43904670:184156 -k1,12751:28210467,43904670:184156 -k1,12751:29775467,43904670:184156 -k1,12751:32583029,43904670:0 -) -(1,12752:6630773,44746158:25952256,513147,134348 -k1,12751:7950013,44746158:214958 -k1,12751:8912737,44746158:214958 -k1,12751:10567521,44746158:214958 -k1,12751:11398517,44746158:214958 -k1,12751:12632560,44746158:214958 -k1,12751:14818186,44746158:214958 -k1,12751:16901575,44746158:214958 -k1,12751:17878060,44746158:214957 -k1,12751:18881416,44746158:214958 -k1,12751:20867157,44746158:214958 -k1,12751:21891485,44746158:214958 -k1,12751:23125528,44746158:214958 -k1,12751:25864933,44746158:214958 -k1,12751:27427311,44746158:214958 -k1,12751:29753184,44746158:214958 -k1,12751:31252648,44746158:214958 -k1,12751:32583029,44746158:0 -) -(1,12752:6630773,45587646:25952256,513147,134348 -k1,12751:8753671,45587646:141745 -k1,12751:9914501,45587646:141745 -k1,12751:12167161,45587646:141745 -k1,12751:12968198,45587646:141745 -k1,12751:14129028,45587646:141745 -k1,12751:16856168,45587646:141745 -k1,12751:20013224,45587646:141745 -k1,12751:23247614,45587646:141746 -k1,12751:24150887,45587646:141745 -k1,12751:24648492,45587646:141745 -k1,12751:26506625,45587646:141745 -k1,12751:29076479,45587646:141745 -k1,12751:30414911,45587646:141745 -k1,12751:31809049,45587646:141745 -k1,12752:32583029,45587646:0 -) -] -(1,12754:32583029,45706769:0,0,0 -g1,12754:32583029,45706769 -) -) -] -(1,12754:6630773,47279633:25952256,0,0 -h1,12754:6630773,47279633:25952256,0,0 -) -] -(1,12754:4262630,4025873:0,0,0 -[1,12754:-473656,4025873:0,0,0 -(1,12754:-473656,-710413:0,0,0 -(1,12754:-473656,-710413:0,0,0 -g1,12754:-473656,-710413 -) -g1,12754:-473656,-710413 -) -] -) -] -!28549 -}239 -Input:1785:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1786:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!196 -{240 -[1,12811:4262630,47279633:28320399,43253760,0 -(1,12811:4262630,4025873:0,0,0 -[1,12811:-473656,4025873:0,0,0 -(1,12811:-473656,-710413:0,0,0 -(1,12811:-473656,-644877:0,0,0 -k1,12811:-473656,-644877:-65536 -) -(1,12811:-473656,4736287:0,0,0 -k1,12811:-473656,4736287:5209943 -) -g1,12811:-473656,-710413 -) -] -) -[1,12811:6630773,47279633:25952256,43253760,0 -[1,12811:6630773,4812305:25952256,786432,0 -(1,12811:6630773,4812305:25952256,513147,134348 -(1,12811:6630773,4812305:25952256,513147,134348 -g1,12811:3078558,4812305 -[1,12811:3078558,4812305:0,0,0 -(1,12811:3078558,2439708:0,1703936,0 -k1,12811:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,12811:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,12811:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,12811:3078558,4812305:0,0,0 -(1,12811:3078558,2439708:0,1703936,0 -g1,12811:29030814,2439708 -g1,12811:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,12811:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,12811:37855564,2439708:1179648,16384,0 -) -) -k1,12811:3078556,2439708:-34777008 -) -] -[1,12811:3078558,4812305:0,0,0 -(1,12811:3078558,49800853:0,16384,2228224 -k1,12811:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,12811:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,12811:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,12811:3078558,4812305:0,0,0 -(1,12811:3078558,49800853:0,16384,2228224 -g1,12811:29030814,49800853 -g1,12811:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,12811:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,12811:37855564,49800853:1179648,16384,0 -) -) -k1,12811:3078556,49800853:-34777008 -) -] -g1,12811:6630773,4812305 -g1,12811:6630773,4812305 -g1,12811:10697281,4812305 -g1,12811:11496164,4812305 -g1,12811:12681054,4812305 -g1,12811:15925086,4812305 -g1,12811:16740353,4812305 -g1,12811:19649496,4812305 -k1,12811:31387652,4812305:11738156 -) -) -] -[1,12811:6630773,45706769:25952256,40108032,0 -(1,12811:6630773,45706769:25952256,40108032,0 -(1,12811:6630773,45706769:0,0,0 -g1,12811:6630773,45706769 -) -[1,12811:6630773,45706769:25952256,40108032,0 -(1,12752:6630773,6254097:25952256,513147,134348 -k1,12751:8084664,6254097:170696 -k1,12751:9541176,6254097:170696 -k1,12751:11719895,6254097:170696 -k1,12751:12909676,6254097:170696 -k1,12751:15148688,6254097:170696 -k1,12751:15978676,6254097:170696 -k1,12751:17168458,6254097:170697 -k1,12751:19924549,6254097:170696 -k1,12751:23110556,6254097:170696 -k1,12751:26125515,6254097:170696 -k1,12751:27950995,6254097:170696 -k1,12751:28653188,6254097:170696 -k1,12751:29633254,6254097:170696 -k1,12751:32583029,6254097:0 -) -(1,12752:6630773,7095585:25952256,513147,126483 -g1,12751:9368867,7095585 -g1,12751:10533441,7095585 -g1,12751:13795823,7095585 -g1,12751:14942703,7095585 -g1,12751:16161017,7095585 -g1,12751:19553160,7095585 -g1,12751:23997811,7095585 -g1,12751:25634638,7095585 -$1,12751:25634638,7095585 -$1,12751:26242157,7095585 -g1,12751:26428541,7095585 -g1,12751:27569260,7095585 -$1,12751:27569260,7095585 -$1,12751:28176779,7095585 -g1,12751:28363163,7095585 -g1,12751:30355588,7095585 -k1,12752:32583029,7095585:269160 -g1,12752:32583029,7095585 -) -v1,12754:6630773,8234701:0,393216,0 -(1,12759:6630773,9215975:25952256,1374490,196608 -g1,12759:6630773,9215975 -g1,12759:6630773,9215975 -g1,12759:6434165,9215975 -(1,12759:6434165,9215975:0,1374490,196608 -r1,12811:32779637,9215975:26345472,1571098,196608 -k1,12759:6434165,9215975:-26345472 -) -(1,12759:6434165,9215975:26345472,1374490,196608 -[1,12759:6630773,9215975:25952256,1177882,0 -(1,12756:6630773,8442319:25952256,404226,107478 -(1,12755:6630773,8442319:0,0,0 -g1,12755:6630773,8442319 -g1,12755:6630773,8442319 -g1,12755:6303093,8442319 -(1,12755:6303093,8442319:0,0,0 -) -g1,12755:6630773,8442319 -) -k1,12756:6630773,8442319:0 -g1,12756:10424522,8442319 -g1,12756:11056814,8442319 -k1,12756:11056814,8442319:0 -h1,12756:13269834,8442319:0,0,0 -k1,12756:32583030,8442319:19313196 -g1,12756:32583030,8442319 -) -(1,12757:6630773,9108497:25952256,404226,107478 -h1,12757:6630773,9108497:0,0,0 -g1,12757:6946919,9108497 -g1,12757:7263065,9108497 -g1,12757:7579211,9108497 -g1,12757:7895357,9108497 -g1,12757:8211503,9108497 -g1,12757:8527649,9108497 -g1,12757:8843795,9108497 -g1,12757:10740670,9108497 -g1,12757:11372962,9108497 -g1,12757:13269837,9108497 -g1,12757:13902129,9108497 -g1,12757:14534421,9108497 -h1,12757:16115149,9108497:0,0,0 -k1,12757:32583029,9108497:16467880 -g1,12757:32583029,9108497 -) -] -) -g1,12759:32583029,9215975 -g1,12759:6630773,9215975 -g1,12759:6630773,9215975 -g1,12759:32583029,9215975 -g1,12759:32583029,9215975 -) -h1,12759:6630773,9412583:0,0,0 -(1,12762:6630773,19034723:25952256,9083666,0 -k1,12762:10523651,19034723:3892878 -h1,12761:10523651,19034723:0,0,0 -(1,12761:10523651,19034723:18166500,9083666,0 -(1,12761:10523651,19034723:18167376,9083688,0 -(1,12761:10523651,19034723:18167376,9083688,0 -(1,12761:10523651,19034723:0,9083688,0 -(1,12761:10523651,19034723:0,14208860,0 -(1,12761:10523651,19034723:28417720,14208860,0 -) -k1,12761:10523651,19034723:-28417720 -) -) -g1,12761:28691027,19034723 -) -) -) -g1,12762:28690151,19034723 -k1,12762:32583029,19034723:3892878 -) -(1,12769:6630773,19876211:25952256,505283,134348 -h1,12768:6630773,19876211:983040,0,0 -k1,12768:8627982,19876211:185139 -k1,12768:10528854,19876211:185139 -k1,12768:14785745,19876211:185139 -k1,12768:17013642,19876211:185140 -k1,12768:17814819,19876211:185139 -k1,12768:19019043,19876211:185139 -k1,12768:20481479,19876211:185139 -k1,12768:21534970,19876211:185139 -k1,12768:23250375,19876211:185139 -k1,12768:24086942,19876211:185139 -k1,12768:25469425,19876211:185140 -k1,12768:26010424,19876211:185139 -k1,12768:28707558,19876211:185139 -k1,12768:31900144,19876211:185139 -k1,12769:32583029,19876211:0 -) -(1,12769:6630773,20717699:25952256,505283,134348 -(1,12768:6630773,20717699:0,414482,122846 -r1,12811:8044174,20717699:1413401,537328,122846 -k1,12768:6630773,20717699:-1413401 -) -(1,12768:6630773,20717699:1413401,414482,122846 -k1,12768:6630773,20717699:3277 -h1,12768:8040897,20717699:0,411205,112570 -) -k1,12768:8280338,20717699:236164 -k1,12768:9167929,20717699:236163 -k1,12768:10423178,20717699:236164 -k1,12768:12110308,20717699:236163 -k1,12768:13834795,20717699:236164 -k1,12768:14939310,20717699:236163 -k1,12768:17470545,20717699:236164 -k1,12768:18725793,20717699:236163 -k1,12768:23033709,20717699:236164 -k1,12768:23956034,20717699:236163 -k1,12768:26210707,20717699:236164 -k1,12768:28182263,20717699:236163 -(1,12768:28182263,20717699:0,452978,122846 -r1,12811:32409359,20717699:4227096,575824,122846 -k1,12768:28182263,20717699:-4227096 -) -(1,12768:28182263,20717699:4227096,452978,122846 -k1,12768:28182263,20717699:3277 -h1,12768:32406082,20717699:0,411205,112570 -) -k1,12768:32583029,20717699:0 -) -(1,12769:6630773,21559187:25952256,505283,126483 -g1,12768:10443002,21559187 -g1,12768:11633791,21559187 -g1,12768:14708084,21559187 -g1,12768:15593475,21559187 -g1,12768:16980216,21559187 -g1,12768:19242518,21559187 -g1,12768:20879345,21559187 -$1,12768:20879345,21559187 -$1,12768:21486864,21559187 -g1,12768:21673248,21559187 -g1,12768:22813967,21559187 -$1,12768:22813967,21559187 -$1,12768:23421486,21559187 -g1,12768:23607870,21559187 -g1,12768:25403294,21559187 -$1,12768:25403294,21559187 -$1,12768:26010813,21559187 -g1,12768:26197197,21559187 -g1,12768:28189622,21559187 -k1,12769:32583029,21559187:2435126 -g1,12769:32583029,21559187 -) -v1,12771:6630773,22698302:0,393216,0 -(1,12777:6630773,24345754:25952256,2040668,196608 -g1,12777:6630773,24345754 -g1,12777:6630773,24345754 -g1,12777:6434165,24345754 -(1,12777:6434165,24345754:0,2040668,196608 -r1,12811:32779637,24345754:26345472,2237276,196608 -k1,12777:6434165,24345754:-26345472 -) -(1,12777:6434165,24345754:26345472,2040668,196608 -[1,12777:6630773,24345754:25952256,1844060,0 -(1,12773:6630773,22905920:25952256,404226,107478 -(1,12772:6630773,22905920:0,0,0 -g1,12772:6630773,22905920 -g1,12772:6630773,22905920 -g1,12772:6303093,22905920 -(1,12772:6303093,22905920:0,0,0 -) -g1,12772:6630773,22905920 -) -k1,12773:6630773,22905920:0 -g1,12773:10424522,22905920 -g1,12773:11056814,22905920 -k1,12773:11056814,22905920:0 -h1,12773:13269834,22905920:0,0,0 -k1,12773:32583030,22905920:19313196 -g1,12773:32583030,22905920 -) -(1,12774:6630773,23572098:25952256,404226,107478 -h1,12774:6630773,23572098:0,0,0 -g1,12774:6946919,23572098 -g1,12774:7263065,23572098 -g1,12774:7579211,23572098 -g1,12774:7895357,23572098 -g1,12774:8211503,23572098 -g1,12774:8527649,23572098 -g1,12774:8843795,23572098 -g1,12774:10740670,23572098 -g1,12774:11372962,23572098 -g1,12774:13269837,23572098 -g1,12774:13902129,23572098 -g1,12774:14534421,23572098 -g1,12774:16431295,23572098 -h1,12774:16747441,23572098:0,0,0 -k1,12774:32583029,23572098:15835588 -g1,12774:32583029,23572098 -) -(1,12775:6630773,24238276:25952256,404226,107478 -h1,12775:6630773,24238276:0,0,0 -g1,12775:6946919,24238276 -g1,12775:7263065,24238276 -k1,12775:7263065,24238276:0 -h1,12775:11056813,24238276:0,0,0 -k1,12775:32583029,24238276:21526216 -g1,12775:32583029,24238276 -) -] -) -g1,12777:32583029,24345754 -g1,12777:6630773,24345754 -g1,12777:6630773,24345754 -g1,12777:32583029,24345754 -g1,12777:32583029,24345754 -) -h1,12777:6630773,24542362:0,0,0 -(1,12780:6630773,34164502:25952256,9083666,0 -k1,12780:10523651,34164502:3892878 -h1,12779:10523651,34164502:0,0,0 -(1,12779:10523651,34164502:18166500,9083666,0 -(1,12779:10523651,34164502:18167376,9083688,0 -(1,12779:10523651,34164502:18167376,9083688,0 -(1,12779:10523651,34164502:0,9083688,0 -(1,12779:10523651,34164502:0,14208860,0 -(1,12779:10523651,34164502:28417720,14208860,0 -) -k1,12779:10523651,34164502:-28417720 -) -) -g1,12779:28691027,34164502 -) -) -) -g1,12780:28690151,34164502 -k1,12780:32583029,34164502:3892878 -) -v1,12787:6630773,35478928:0,393216,0 -(1,12808:6630773,45090731:25952256,10005019,616038 -g1,12808:6630773,45090731 -(1,12808:6630773,45090731:25952256,10005019,616038 -(1,12808:6630773,45706769:25952256,10621057,0 -[1,12808:6630773,45706769:25952256,10621057,0 -(1,12808:6630773,45680555:25952256,10568629,0 -r1,12811:6656987,45680555:26214,10568629,0 -[1,12808:6656987,45680555:25899828,10568629,0 -(1,12808:6656987,45090731:25899828,9388981,0 -[1,12808:7246811,45090731:24720180,9388981,0 -(1,12788:7246811,36787286:24720180,1085536,298548 -(1,12787:7246811,36787286:0,1085536,298548 -r1,12811:8753226,36787286:1506415,1384084,298548 -k1,12787:7246811,36787286:-1506415 -) -(1,12787:7246811,36787286:1506415,1085536,298548 -) -k1,12787:9040297,36787286:287071 -k1,12787:9955203,36787286:287071 -k1,12787:11261359,36787286:287071 -k1,12787:14540149,36787286:287071 -k1,12787:16856215,36787286:287071 -k1,12787:18162371,36787286:287071 -k1,12787:20057040,36787286:287071 -k1,12787:21848162,36787286:287071 -k1,12787:24485354,36787286:287071 -k1,12787:29262952,36787286:287071 -k1,12787:31435494,36787286:287071 -k1,12787:31966991,36787286:0 -) -(1,12788:7246811,37628774:24720180,513147,134348 -k1,12787:8479592,37628774:213696 -k1,12787:10958868,37628774:213696 -k1,12787:11785326,37628774:213696 -k1,12787:13018108,37628774:213697 -k1,12787:13646632,37628774:213681 -k1,12787:16454243,37628774:213696 -k1,12787:19602641,37628774:213696 -k1,12787:20502500,37628774:213697 -k1,12787:22110147,37628774:213696 -k1,12787:24025813,37628774:213696 -k1,12787:24654338,37628774:213682 -k1,12787:27331532,37628774:213696 -k1,12787:29901247,37628774:213696 -k1,12787:31219225,37628774:213696 -k1,12787:31966991,37628774:0 -) -(1,12788:7246811,38470262:24720180,505283,134348 -g1,12787:10220834,38470262 -g1,12787:11071491,38470262 -g1,12787:11626580,38470262 -k1,12788:31966990,38470262:17655400 -g1,12788:31966990,38470262 -) -v1,12790:7246811,39660728:0,393216,0 -(1,12796:7246811,41308180:24720180,2040668,196608 -g1,12796:7246811,41308180 -g1,12796:7246811,41308180 -g1,12796:7050203,41308180 -(1,12796:7050203,41308180:0,2040668,196608 -r1,12811:32163599,41308180:25113396,2237276,196608 -k1,12796:7050203,41308180:-25113396 -) -(1,12796:7050203,41308180:25113396,2040668,196608 -[1,12796:7246811,41308180:24720180,1844060,0 -(1,12792:7246811,39868346:24720180,404226,107478 -(1,12791:7246811,39868346:0,0,0 -g1,12791:7246811,39868346 -g1,12791:7246811,39868346 -g1,12791:6919131,39868346 -(1,12791:6919131,39868346:0,0,0 -) -g1,12791:7246811,39868346 -) -g1,12792:7879103,39868346 -g1,12792:8827541,39868346 -g1,12792:12621290,39868346 -g1,12792:13253582,39868346 -k1,12792:13253582,39868346:0 -h1,12792:15466602,39868346:0,0,0 -k1,12792:31966991,39868346:16500389 -g1,12792:31966991,39868346 -) -(1,12793:7246811,40534524:24720180,404226,107478 -h1,12793:7246811,40534524:0,0,0 -g1,12793:7562957,40534524 -g1,12793:7879103,40534524 -g1,12793:8195249,40534524 -g1,12793:8511395,40534524 -g1,12793:8827541,40534524 -g1,12793:9143687,40534524 -g1,12793:9459833,40534524 -g1,12793:9775979,40534524 -g1,12793:10092125,40534524 -g1,12793:10408271,40534524 -g1,12793:10724417,40534524 -g1,12793:11040563,40534524 -g1,12793:12937438,40534524 -g1,12793:13569730,40534524 -g1,12793:15466605,40534524 -g1,12793:16098897,40534524 -g1,12793:16731189,40534524 -g1,12793:18628063,40534524 -h1,12793:18944209,40534524:0,0,0 -k1,12793:31966991,40534524:13022782 -g1,12793:31966991,40534524 -) -(1,12794:7246811,41200702:24720180,404226,107478 -h1,12794:7246811,41200702:0,0,0 -g1,12794:7562957,41200702 -g1,12794:7879103,41200702 -g1,12794:8195249,41200702 -g1,12794:8511395,41200702 -g1,12794:8827541,41200702 -g1,12794:9143687,41200702 -g1,12794:9459833,41200702 -k1,12794:9459833,41200702:0 -h1,12794:13253581,41200702:0,0,0 -k1,12794:31966991,41200702:18713410 -g1,12794:31966991,41200702 -) -] -) -g1,12796:31966991,41308180 -g1,12796:7246811,41308180 -g1,12796:7246811,41308180 -g1,12796:31966991,41308180 -g1,12796:31966991,41308180 -) -h1,12796:7246811,41504788:0,0,0 -(1,12800:7246811,42870564:24720180,505283,126483 -h1,12799:7246811,42870564:983040,0,0 -g1,12799:9620525,42870564 -g1,12799:12169875,42870564 -g1,12799:12981866,42870564 -g1,12799:13536955,42870564 -g1,12799:15189773,42870564 -k1,12800:31966991,42870564:15178140 -g1,12800:31966991,42870564 -) -v1,12802:7246811,44061030:0,393216,0 -(1,12806:7246811,44369835:24720180,702021,196608 -g1,12806:7246811,44369835 -g1,12806:7246811,44369835 -g1,12806:7050203,44369835 -(1,12806:7050203,44369835:0,702021,196608 -r1,12811:32163599,44369835:25113396,898629,196608 -k1,12806:7050203,44369835:-25113396 -) -(1,12806:7050203,44369835:25113396,702021,196608 -[1,12806:7246811,44369835:24720180,505413,0 -(1,12804:7246811,44268648:24720180,404226,101187 -(1,12803:7246811,44268648:0,0,0 -g1,12803:7246811,44268648 -g1,12803:7246811,44268648 -g1,12803:6919131,44268648 -(1,12803:6919131,44268648:0,0,0 -) -g1,12803:7246811,44268648 -) -k1,12804:7246811,44268648:0 -h1,12804:9775976,44268648:0,0,0 -k1,12804:31966992,44268648:22191016 -g1,12804:31966992,44268648 -) -] -) -g1,12806:31966991,44369835 -g1,12806:7246811,44369835 -g1,12806:7246811,44369835 -g1,12806:31966991,44369835 -g1,12806:31966991,44369835 -) -h1,12806:7246811,44566443:0,0,0 -] -) -] -r1,12811:32583029,45680555:26214,10568629,0 -) -] -) -) -g1,12808:32583029,45090731 -) -h1,12808:6630773,45706769:0,0,0 -] -(1,12811:32583029,45706769:0,0,0 -g1,12811:32583029,45706769 -) -) -] -(1,12811:6630773,47279633:25952256,0,0 -h1,12811:6630773,47279633:25952256,0,0 -) -] -(1,12811:4262630,4025873:0,0,0 -[1,12811:-473656,4025873:0,0,0 -(1,12811:-473656,-710413:0,0,0 -(1,12811:-473656,-710413:0,0,0 -g1,12811:-473656,-710413 -) -g1,12811:-473656,-710413 -) -] -) -] -!16354 -}240 -Input:1787:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1788:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1789:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1790:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1791:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1792:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1793:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1794:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1795:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1796:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1797:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1798:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1799:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1800:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1801:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1802:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1803:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1804:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1805:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1806:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1852 -{241 -[1,12860:4262630,47279633:28320399,43253760,0 -(1,12860:4262630,4025873:0,0,0 -[1,12860:-473656,4025873:0,0,0 -(1,12860:-473656,-710413:0,0,0 -(1,12860:-473656,-644877:0,0,0 -k1,12860:-473656,-644877:-65536 -) -(1,12860:-473656,4736287:0,0,0 -k1,12860:-473656,4736287:5209943 -) -g1,12860:-473656,-710413 -) -] -) -[1,12860:6630773,47279633:25952256,43253760,0 -[1,12860:6630773,4812305:25952256,786432,0 -(1,12860:6630773,4812305:25952256,513147,134348 -(1,12860:6630773,4812305:25952256,513147,134348 -g1,12860:3078558,4812305 -[1,12860:3078558,4812305:0,0,0 -(1,12860:3078558,2439708:0,1703936,0 -k1,12860:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,12860:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,12860:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,12860:3078558,4812305:0,0,0 -(1,12860:3078558,2439708:0,1703936,0 -g1,12860:29030814,2439708 -g1,12860:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,12860:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,12860:37855564,2439708:1179648,16384,0 -) -) -k1,12860:3078556,2439708:-34777008 -) -] -[1,12860:3078558,4812305:0,0,0 -(1,12860:3078558,49800853:0,16384,2228224 -k1,12860:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,12860:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,12860:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,12860:3078558,4812305:0,0,0 -(1,12860:3078558,49800853:0,16384,2228224 -g1,12860:29030814,49800853 -g1,12860:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,12860:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,12860:37855564,49800853:1179648,16384,0 -) -) -k1,12860:3078556,49800853:-34777008 -) -] -g1,12860:6630773,4812305 -k1,12860:25712890,4812305:17886740 -g1,12860:29057847,4812305 -g1,12860:29873114,4812305 -) -) -] -[1,12860:6630773,45706769:25952256,40108032,0 -(1,12860:6630773,45706769:25952256,40108032,0 -(1,12860:6630773,45706769:0,0,0 -g1,12860:6630773,45706769 -) -[1,12860:6630773,45706769:25952256,40108032,0 -v1,12811:6630773,6254097:0,393216,0 -(1,12821:6630773,17688808:25952256,11827927,616038 -g1,12821:6630773,17688808 -(1,12821:6630773,17688808:25952256,11827927,616038 -(1,12821:6630773,18304846:25952256,12443965,0 -[1,12821:6630773,18304846:25952256,12443965,0 -(1,12821:6630773,18278632:25952256,12391537,0 -r1,12860:6656987,18278632:26214,12391537,0 -[1,12821:6656987,18278632:25899828,12391537,0 -(1,12821:6656987,17688808:25899828,11211889,0 -[1,12821:7246811,17688808:24720180,11211889,0 -(1,12812:7246811,7760901:24720180,1283982,196608 -(1,12811:7246811,7760901:0,1283982,196608 -r1,12860:9812056,7760901:2565245,1480590,196608 -k1,12811:7246811,7760901:-2565245 -) -(1,12811:7246811,7760901:2565245,1283982,196608 -) -k1,12811:9972280,7760901:160224 -k1,12811:12119555,7760901:160223 -k1,12811:13148131,7760901:160224 -k1,12811:14783570,7760901:160224 -k1,12811:16383620,7760901:160224 -k1,12811:17874224,7760901:160223 -k1,12811:18685876,7760901:160224 -k1,12811:20488432,7760901:160224 -k1,12811:21004515,7760901:160223 -k1,12811:22442036,7760901:160224 -k1,12811:25964257,7760901:160224 -k1,12811:26480341,7760901:160224 -k1,12811:28513583,7760901:160223 -k1,12811:30231598,7760901:160224 -k1,12811:31966991,7760901:0 -) -(1,12812:7246811,8602389:24720180,513147,134348 -k1,12811:8437251,8602389:171355 -k1,12811:11511196,8602389:171355 -k1,12811:12341842,8602389:171354 -k1,12811:15405956,8602389:171355 -k1,12811:16530860,8602389:171355 -k1,12811:18177430,8602389:171355 -k1,12811:19634601,8602389:171355 -k1,12811:21245781,8602389:171354 -k1,12811:22747517,8602389:171355 -k1,12811:23570300,8602389:171355 -k1,12811:25132329,8602389:171355 -k1,12811:25659544,8602389:171355 -k1,12811:28030286,8602389:171354 -k1,12811:29155190,8602389:171355 -k1,12811:30430827,8602389:171355 -k1,12811:31966991,8602389:0 -) -(1,12812:7246811,9443877:24720180,513147,134348 -g1,12811:8713506,9443877 -g1,12811:9931820,9443877 -g1,12811:12557192,9443877 -g1,12811:13415713,9443877 -g1,12811:14818183,9443877 -g1,12811:16976938,9443877 -g1,12811:18911560,9443877 -(1,12811:18911560,9443877:0,452978,115847 -r1,12860:22083520,9443877:3171960,568825,115847 -k1,12811:18911560,9443877:-3171960 -) -(1,12811:18911560,9443877:3171960,452978,115847 -k1,12811:18911560,9443877:3277 -h1,12811:22080243,9443877:0,411205,112570 -) -k1,12812:31966991,9443877:9709801 -g1,12812:31966991,9443877 -) -v1,12814:7246811,10634343:0,393216,0 -(1,12818:7246811,10943148:24720180,702021,196608 -g1,12818:7246811,10943148 -g1,12818:7246811,10943148 -g1,12818:7050203,10943148 -(1,12818:7050203,10943148:0,702021,196608 -r1,12860:32163599,10943148:25113396,898629,196608 -k1,12818:7050203,10943148:-25113396 -) -(1,12818:7050203,10943148:25113396,702021,196608 -[1,12818:7246811,10943148:24720180,505413,0 -(1,12816:7246811,10841961:24720180,404226,101187 -(1,12815:7246811,10841961:0,0,0 -g1,12815:7246811,10841961 -g1,12815:7246811,10841961 -g1,12815:6919131,10841961 -(1,12815:6919131,10841961:0,0,0 -) -g1,12815:7246811,10841961 -) -k1,12816:7246811,10841961:0 -h1,12816:10408268,10841961:0,0,0 -k1,12816:31966992,10841961:21558724 -g1,12816:31966992,10841961 -) -] -) -g1,12818:31966991,10943148 -g1,12818:7246811,10943148 -g1,12818:7246811,10943148 -g1,12818:31966991,10943148 -g1,12818:31966991,10943148 -) -h1,12818:7246811,11139756:0,0,0 -(1,12821:7246811,12505532:24720180,513147,134348 -h1,12820:7246811,12505532:983040,0,0 -k1,12820:9597586,12505532:414186 -k1,12820:11116054,12505532:414186 -k1,12820:12956959,12505532:414186 -k1,12820:14390230,12505532:414186 -k1,12820:17735841,12505532:414186 -k1,12820:18809319,12505532:414186 -k1,12820:20242590,12505532:414186 -(1,12820:20242590,12505532:0,452978,122846 -r1,12860:21655991,12505532:1413401,575824,122846 -k1,12820:20242590,12505532:-1413401 -) -(1,12820:20242590,12505532:1413401,452978,122846 -k1,12820:20242590,12505532:3277 -h1,12820:21652714,12505532:0,411205,112570 -) -k1,12820:22070177,12505532:414186 -k1,12820:23761660,12505532:414186 -k1,12820:26135372,12505532:414186 -k1,12820:27943509,12505532:414186 -(1,12820:27943509,12505532:0,452978,115847 -r1,12860:29708622,12505532:1765113,568825,115847 -k1,12820:27943509,12505532:-1765113 -) -(1,12820:27943509,12505532:1765113,452978,115847 -k1,12820:27943509,12505532:3277 -h1,12820:29705345,12505532:0,411205,112570 -) -k1,12820:30296478,12505532:414186 -k1,12821:31966991,12505532:0 -) -(1,12821:7246811,13347020:24720180,505283,134348 -k1,12820:8774104,13347020:449881 -k1,12820:12766206,13347020:449882 -k1,12820:15976463,13347020:449881 -k1,12820:19210969,13347020:449881 -(1,12820:19210969,13347020:0,452978,115847 -r1,12860:20976082,13347020:1765113,568825,115847 -k1,12820:19210969,13347020:-1765113 -) -(1,12820:19210969,13347020:1765113,452978,115847 -k1,12820:19210969,13347020:3277 -h1,12820:20972805,13347020:0,411205,112570 -) -k1,12820:21599634,13347020:449882 -(1,12820:21599634,13347020:0,452978,115847 -r1,12860:25826730,13347020:4227096,568825,115847 -k1,12820:21599634,13347020:-4227096 -) -(1,12820:21599634,13347020:4227096,452978,115847 -k1,12820:21599634,13347020:3277 -h1,12820:25823453,13347020:0,411205,112570 -) -k1,12820:26450281,13347020:449881 -(1,12820:26450281,13347020:0,452978,115847 -r1,12860:30325665,13347020:3875384,568825,115847 -k1,12820:26450281,13347020:-3875384 -) -(1,12820:26450281,13347020:3875384,452978,115847 -k1,12820:26450281,13347020:3277 -h1,12820:30322388,13347020:0,411205,112570 -) -k1,12820:30775546,13347020:449881 -k1,12821:31966991,13347020:0 -) -(1,12821:7246811,14188508:24720180,505283,134348 -(1,12820:7246811,14188508:0,452978,115847 -r1,12860:11825619,14188508:4578808,568825,115847 -k1,12820:7246811,14188508:-4578808 -) -(1,12820:7246811,14188508:4578808,452978,115847 -k1,12820:7246811,14188508:3277 -h1,12820:11822342,14188508:0,411205,112570 -) -k1,12820:12267219,14188508:267930 -k1,12820:13353039,14188508:267931 -k1,12820:14791442,14188508:267930 -k1,12820:16775106,14188508:267931 -k1,12820:19817175,14188508:267930 -k1,12820:22643631,14188508:267930 -k1,12820:23930647,14188508:267931 -k1,12820:26789871,14188508:267930 -k1,12820:28150287,14188508:267931 -k1,12820:30114944,14188508:267930 -k1,12821:31966991,14188508:0 -) -(1,12821:7246811,15029996:24720180,513147,134348 -k1,12820:8564047,15029996:171667 -k1,12820:9387142,15029996:171667 -k1,12820:11927281,15029996:171668 -(1,12820:11927281,15029996:0,452978,122846 -r1,12860:13340682,15029996:1413401,575824,122846 -k1,12820:11927281,15029996:-1413401 -) -(1,12820:11927281,15029996:1413401,452978,122846 -k1,12820:11927281,15029996:3277 -h1,12820:13337405,15029996:0,411205,112570 -) -k1,12820:13512349,15029996:171667 -k1,12820:14961313,15029996:171667 -k1,12820:17422808,15029996:171667 -k1,12820:18988427,15029996:171668 -k1,12820:21922437,15029996:171667 -k1,12820:24910186,15029996:171667 -k1,12820:25741145,15029996:171667 -k1,12820:27800905,15029996:171668 -k1,12820:28655457,15029996:171667 -k1,12820:31966991,15029996:0 -) -(1,12821:7246811,15871484:24720180,505283,126483 -k1,12820:8729935,15871484:229420 -k1,12820:10091816,15871484:229419 -k1,12820:11346219,15871484:229420 -k1,12820:12860144,15871484:229419 -k1,12820:14108649,15871484:229420 -k1,12820:15615365,15871484:229419 -k1,12820:18713951,15871484:229420 -k1,12820:20227876,15871484:229419 -k1,12820:21961347,15871484:229420 -k1,12820:24156191,15871484:229419 -k1,12820:25037039,15871484:229420 -k1,12820:26285543,15871484:229419 -k1,12820:27792260,15871484:229420 -k1,12820:29013239,15871484:229419 -k1,12820:31280829,15871484:229420 -k1,12820:31966991,15871484:0 -) -(1,12821:7246811,16712972:24720180,513147,134348 -k1,12820:10457223,16712972:256704 -k1,12820:11373219,16712972:256704 -k1,12820:11985783,16712972:256704 -k1,12820:13236013,16712972:256704 -k1,12820:14886668,16712972:256704 -k1,12820:17260840,16712972:256704 -k1,12820:18841371,16712972:256704 -k1,12820:21655945,16712972:256704 -k1,12820:22268509,16712972:256704 -k1,12820:25124371,16712972:256704 -k1,12820:28486171,16712972:256704 -k1,12820:29394900,16712972:256646 -k1,12820:30975431,16712972:256704 -k1,12820:31966991,16712972:0 -) -(1,12821:7246811,17554460:24720180,505283,134348 -g1,12820:10536063,17554460 -g1,12820:11351330,17554460 -g1,12820:13829246,17554460 -h1,12820:15198293,17554460:0,0,0 -g1,12820:15397522,17554460 -g1,12820:16406121,17554460 -g1,12820:18103503,17554460 -h1,12820:18900421,17554460:0,0,0 -k1,12821:31966991,17554460:12685806 -g1,12821:31966991,17554460 -) -] -) -] -r1,12860:32583029,18278632:26214,12391537,0 -) -] -) -) -g1,12821:32583029,17688808 -) -h1,12821:6630773,18304846:0,0,0 -(1,12824:6630773,19553015:25952256,505283,134348 -h1,12823:6630773,19553015:983040,0,0 -k1,12823:10720421,19553015:143725 -k1,12823:13928611,19553015:143726 -k1,12823:15063896,19553015:143725 -k1,12823:17494828,19553015:143725 -k1,12823:20223949,19553015:143726 -k1,12823:21019102,19553015:143725 -k1,12823:24004468,19553015:143725 -k1,12823:24764231,19553015:143725 -k1,12823:25927042,19553015:143726 -k1,12823:27633801,19553015:143725 -k1,12823:29157714,19553015:143725 -k1,12823:30405722,19553015:143726 -k1,12823:31835263,19553015:143725 -k1,12823:32583029,19553015:0 -) -(1,12824:6630773,20394503:25952256,505283,134348 -k1,12823:7757288,20394503:191972 -k1,12823:8600689,20394503:191973 -k1,12823:11550416,20394503:191972 -k1,12823:13926703,20394503:191972 -k1,12823:15893391,20394503:191973 -k1,12823:18927004,20394503:191972 -k1,12823:19735014,20394503:191972 -(1,12823:19735014,20394503:0,452978,115847 -r1,12860:21148415,20394503:1413401,568825,115847 -k1,12823:19735014,20394503:-1413401 -) -(1,12823:19735014,20394503:1413401,452978,115847 -k1,12823:19735014,20394503:3277 -h1,12823:21145138,20394503:0,411205,112570 -) -k1,12823:21340388,20394503:191973 -k1,12823:22636642,20394503:191972 -k1,12823:23576381,20394503:191973 -k1,12823:25235049,20394503:191972 -k1,12823:28012416,20394503:191972 -k1,12823:29939782,20394503:191973 -(1,12823:29939782,20394503:0,452978,115847 -r1,12860:31704895,20394503:1765113,568825,115847 -k1,12823:29939782,20394503:-1765113 -) -(1,12823:29939782,20394503:1765113,452978,115847 -k1,12823:29939782,20394503:3277 -h1,12823:31701618,20394503:0,411205,112570 -) -k1,12823:31896867,20394503:191972 -k1,12823:32583029,20394503:0 -) -(1,12824:6630773,21235991:25952256,513147,126483 -k1,12823:10234204,21235991:230293 -k1,12823:13234049,21235991:230294 -k1,12823:14150504,21235991:230293 -k1,12823:16456323,21235991:230294 -k1,12823:18715611,21235991:230293 -k1,12823:19628789,21235991:230293 -k1,12823:21869072,21235991:230294 -k1,12823:25292279,21235991:230293 -k1,12823:27584336,21235991:230294 -k1,12823:30572384,21235991:230293 -k1,12823:32583029,21235991:0 -) -(1,12824:6630773,22077479:25952256,513147,126483 -k1,12823:7849692,22077479:271268 -k1,12823:11295525,22077479:271269 -k1,12823:12671075,22077479:271268 -k1,12823:13690110,22077479:271269 -k1,12823:15069592,22077479:271268 -k1,12823:16027023,22077479:271269 -k1,12823:18373816,22077479:271268 -k1,12823:20216638,22077479:271269 -k1,12823:21863507,22077479:271268 -k1,12823:23082427,22077479:271269 -k1,12823:26546609,22077479:271268 -k1,12823:28705970,22077479:271269 -k1,12823:30168683,22077479:271268 -k1,12823:32583029,22077479:0 -) -(1,12824:6630773,22918967:25952256,505283,134348 -g1,12823:8781664,22918967 -g1,12823:10423340,22918967 -g1,12823:12357962,22918967 -(1,12823:12357962,22918967:0,452978,115847 -r1,12860:14123075,22918967:1765113,568825,115847 -k1,12823:12357962,22918967:-1765113 -) -(1,12823:12357962,22918967:1765113,452978,115847 -k1,12823:12357962,22918967:3277 -h1,12823:14119798,22918967:0,411205,112570 -) -k1,12824:32583029,22918967:18286284 -g1,12824:32583029,22918967 -) -v1,12826:6630773,23991825:0,393216,0 -(1,12832:6630773,25639277:25952256,2040668,196608 -g1,12832:6630773,25639277 -g1,12832:6630773,25639277 -g1,12832:6434165,25639277 -(1,12832:6434165,25639277:0,2040668,196608 -r1,12860:32779637,25639277:26345472,2237276,196608 -k1,12832:6434165,25639277:-26345472 -) -(1,12832:6434165,25639277:26345472,2040668,196608 -[1,12832:6630773,25639277:25952256,1844060,0 -(1,12828:6630773,24199443:25952256,404226,107478 -(1,12827:6630773,24199443:0,0,0 -g1,12827:6630773,24199443 -g1,12827:6630773,24199443 -g1,12827:6303093,24199443 -(1,12827:6303093,24199443:0,0,0 -) -g1,12827:6630773,24199443 -) -k1,12828:6630773,24199443:0 -g1,12828:10424522,24199443 -g1,12828:11056814,24199443 -k1,12828:11056814,24199443:0 -h1,12828:13269834,24199443:0,0,0 -k1,12828:32583030,24199443:19313196 -g1,12828:32583030,24199443 -) -(1,12829:6630773,24865621:25952256,404226,107478 -h1,12829:6630773,24865621:0,0,0 -g1,12829:6946919,24865621 -g1,12829:7263065,24865621 -g1,12829:7579211,24865621 -g1,12829:7895357,24865621 -g1,12829:8211503,24865621 -g1,12829:8527649,24865621 -g1,12829:8843795,24865621 -g1,12829:10740670,24865621 -g1,12829:11372962,24865621 -g1,12829:13269837,24865621 -g1,12829:13902129,24865621 -g1,12829:14534421,24865621 -g1,12829:16431295,24865621 -h1,12829:16747441,24865621:0,0,0 -k1,12829:32583029,24865621:15835588 -g1,12829:32583029,24865621 -) -(1,12830:6630773,25531799:25952256,404226,107478 -h1,12830:6630773,25531799:0,0,0 -g1,12830:6946919,25531799 -g1,12830:7263065,25531799 -g1,12830:12637542,25531799 -g1,12830:13269834,25531799 -g1,12830:15482854,25531799 -g1,12830:17379728,25531799 -g1,12830:18012020,25531799 -h1,12830:20857331,25531799:0,0,0 -k1,12830:32583029,25531799:11725698 -g1,12830:32583029,25531799 -) -] -) -g1,12832:32583029,25639277 -g1,12832:6630773,25639277 -g1,12832:6630773,25639277 -g1,12832:32583029,25639277 -g1,12832:32583029,25639277 -) -h1,12832:6630773,25835885:0,0,0 -(1,12835:6630773,35391768:25952256,9083666,0 -k1,12835:10523651,35391768:3892878 -h1,12834:10523651,35391768:0,0,0 -(1,12834:10523651,35391768:18166500,9083666,0 -(1,12834:10523651,35391768:18167376,9083688,0 -(1,12834:10523651,35391768:18167376,9083688,0 -(1,12834:10523651,35391768:0,9083688,0 -(1,12834:10523651,35391768:0,14208860,0 -(1,12834:10523651,35391768:28417720,14208860,0 -) -k1,12834:10523651,35391768:-28417720 -) -) -g1,12834:28691027,35391768 -) -) -) -g1,12835:28690151,35391768 -k1,12835:32583029,35391768:3892878 -) -(1,12842:6630773,36233256:25952256,505283,134348 -h1,12841:6630773,36233256:983040,0,0 -k1,12841:9605525,36233256:216997 -k1,12841:10178382,36233256:216997 -k1,12841:13385132,36233256:216998 -k1,12841:16016475,36233256:216997 -k1,12841:19587605,36233256:216997 -k1,12841:21918793,36233256:216997 -k1,12841:25233022,36233256:216998 -k1,12841:25805879,36233256:216997 -k1,12841:28972651,36233256:216997 -k1,12842:32583029,36233256:0 -) -(1,12842:6630773,37074744:25952256,513147,126483 -k1,12841:8059501,37074744:161262 -k1,12841:8880056,37074744:161263 -k1,12841:10060403,37074744:161262 -k1,12841:14293417,37074744:161262 -k1,12841:15137564,37074744:161262 -k1,12841:18806969,37074744:161263 -k1,12841:19584269,37074744:161262 -k1,12841:20764616,37074744:161262 -k1,12841:22315241,37074744:161262 -k1,12841:22934601,37074744:161263 -k1,12841:25648490,37074744:161262 -k1,12841:26495914,37074744:161262 -k1,12841:28539370,37074744:161262 -k1,12841:29056493,37074744:161263 -k1,12841:31900144,37074744:161262 -k1,12842:32583029,37074744:0 -) -(1,12842:6630773,37916232:25952256,505283,134348 -(1,12841:6630773,37916232:0,414482,115847 -r1,12860:8044174,37916232:1413401,530329,115847 -k1,12841:6630773,37916232:-1413401 -) -(1,12841:6630773,37916232:1413401,414482,115847 -k1,12841:6630773,37916232:3277 -h1,12841:8040897,37916232:0,411205,112570 -) -k1,12841:8191665,37916232:147491 -k1,12841:10058165,37916232:147491 -k1,12841:13669889,37916232:147491 -k1,12841:14836465,37916232:147491 -k1,12841:16373319,37916232:147491 -k1,12841:17712255,37916232:147491 -k1,12841:18215606,37916232:147491 -(1,12841:18215606,37916232:0,414482,122846 -r1,12860:19629007,37916232:1413401,537328,122846 -k1,12841:18215606,37916232:-1413401 -) -(1,12841:18215606,37916232:1413401,414482,122846 -k1,12841:18215606,37916232:3277 -h1,12841:19625730,37916232:0,411205,112570 -) -k1,12841:19950168,37916232:147491 -k1,12841:22851482,37916232:147491 -k1,12841:24691113,37916232:147491 -k1,12841:29076162,37916232:147491 -k1,12841:31510860,37916232:147491 -k1,12841:32583029,37916232:0 -) -(1,12842:6630773,38757720:25952256,513147,126483 -k1,12841:7886967,38757720:189923 -k1,12841:10379826,38757720:189924 -k1,12841:11221177,38757720:189923 -k1,12841:14031229,38757720:189923 -k1,12841:14577012,38757720:189923 -k1,12841:17851060,38757720:189924 -k1,12841:21031391,38757720:189923 -k1,12841:21880606,38757720:189923 -k1,12841:23089614,38757720:189923 -k1,12841:24842572,38757720:189924 -k1,12841:26520818,38757720:189923 -k1,12841:27579093,38757720:189923 -k1,12841:28966359,38757720:189923 -k1,12841:29512143,38757720:189924 -k1,12841:31414522,38757720:189923 -k1,12841:32583029,38757720:0 -) -(1,12842:6630773,39599208:25952256,505283,134348 -k1,12841:8599589,39599208:233423 -(1,12841:8599589,39599208:0,452978,115847 -r1,12860:13178397,39599208:4578808,568825,115847 -k1,12841:8599589,39599208:-4578808 -) -(1,12841:8599589,39599208:4578808,452978,115847 -k1,12841:8599589,39599208:3277 -h1,12841:13175120,39599208:0,411205,112570 -) -k1,12841:13411820,39599208:233423 -k1,12841:15039193,39599208:233422 -k1,12841:16061014,39599208:233423 -k1,12841:18453193,39599208:233423 -k1,12841:20652041,39599208:233423 -k1,12841:21536892,39599208:233423 -k1,12841:22789400,39599208:233423 -k1,12841:24300119,39599208:233422 -k1,12841:26268935,39599208:233423 -(1,12841:26268935,39599208:0,452978,122846 -r1,12860:30144319,39599208:3875384,575824,122846 -k1,12841:26268935,39599208:-3875384 -) -(1,12841:26268935,39599208:3875384,452978,122846 -k1,12841:26268935,39599208:3277 -h1,12841:30141042,39599208:0,411205,112570 -) -k1,12841:30377742,39599208:233423 -k1,12841:32583029,39599208:0 -) -(1,12842:6630773,40440696:25952256,513147,134348 -k1,12841:7654778,40440696:262477 -k1,12841:9655271,40440696:262478 -k1,12841:11311699,40440696:262477 -(1,12841:11311699,40440696:0,452978,115847 -r1,12860:13428524,40440696:2116825,568825,115847 -k1,12841:11311699,40440696:-2116825 -) -(1,12841:11311699,40440696:2116825,452978,115847 -k1,12841:11311699,40440696:3277 -h1,12841:13425247,40440696:0,411205,112570 -) -k1,12841:13691002,40440696:262478 -k1,12841:14639641,40440696:262477 -k1,12841:15672822,40440696:262478 -k1,12841:19007627,40440696:262477 -k1,12841:19921533,40440696:262478 -(1,12841:19921533,40440696:0,452978,115847 -r1,12860:23796917,40440696:3875384,568825,115847 -k1,12841:19921533,40440696:-3875384 -) -(1,12841:19921533,40440696:3875384,452978,115847 -k1,12841:19921533,40440696:3277 -h1,12841:23793640,40440696:0,411205,112570 -) -k1,12841:24233064,40440696:262477 -k1,12841:25449091,40440696:262478 -k1,12841:26399041,40440696:262477 -k1,12841:27017379,40440696:262478 -k1,12841:29092582,40440696:262477 -k1,12841:32583029,40440696:0 -) -(1,12842:6630773,41282184:25952256,513147,134348 -k1,12841:8606007,41282184:239841 -(1,12841:8606007,41282184:0,452978,115847 -r1,12860:10019408,41282184:1413401,568825,115847 -k1,12841:8606007,41282184:-1413401 -) -(1,12841:8606007,41282184:1413401,452978,115847 -k1,12841:8606007,41282184:3277 -h1,12841:10016131,41282184:0,411205,112570 -) -k1,12841:10259249,41282184:239841 -k1,12841:11185252,41282184:239841 -k1,12841:12444178,41282184:239841 -k1,12841:15312013,41282184:239841 -k1,12841:16932699,41282184:239842 -k1,12841:18449837,41282184:239841 -k1,12841:19790683,41282184:239841 -k1,12841:21202963,41282184:239841 -k1,12841:23504567,41282184:239841 -k1,12841:25312029,41282184:239841 -k1,12841:29059357,41282184:239841 -(1,12841:29059357,41282184:0,452978,122846 -r1,12860:32583029,41282184:3523672,575824,122846 -k1,12841:29059357,41282184:-3523672 -) -(1,12841:29059357,41282184:3523672,452978,122846 -k1,12841:29059357,41282184:3277 -h1,12841:32579752,41282184:0,411205,112570 -) -k1,12841:32583029,41282184:0 -) -(1,12842:6630773,42123672:25952256,505283,122846 -g1,12841:8021447,42123672 -(1,12841:8021447,42123672:0,452978,122846 -r1,12860:11193407,42123672:3171960,575824,122846 -k1,12841:8021447,42123672:-3171960 -) -(1,12841:8021447,42123672:3171960,452978,122846 -k1,12841:8021447,42123672:3277 -h1,12841:11190130,42123672:0,411205,112570 -) -g1,12841:11566306,42123672 -g1,12841:13203133,42123672 -$1,12841:13203133,42123672 -$1,12841:13810652,42123672 -g1,12841:13997036,42123672 -g1,12841:15137755,42123672 -$1,12841:15137755,42123672 -$1,12841:15745274,42123672 -g1,12841:15931658,42123672 -g1,12841:17185034,42123672 -$1,12841:17185034,42123672 -$1,12841:17792553,42123672 -g1,12841:17978937,42123672 -g1,12841:19774361,42123672 -$1,12841:19774361,42123672 -$1,12841:20381880,42123672 -g1,12841:20568264,42123672 -g1,12841:22560689,42123672 -k1,12842:32583029,42123672:8064059 -g1,12842:32583029,42123672 -) -v1,12844:6630773,43196531:0,393216,0 -(1,12851:6630773,45510161:25952256,2706846,196608 -g1,12851:6630773,45510161 -g1,12851:6630773,45510161 -g1,12851:6434165,45510161 -(1,12851:6434165,45510161:0,2706846,196608 -r1,12860:32779637,45510161:26345472,2903454,196608 -k1,12851:6434165,45510161:-26345472 -) -(1,12851:6434165,45510161:26345472,2706846,196608 -[1,12851:6630773,45510161:25952256,2510238,0 -(1,12846:6630773,43404149:25952256,404226,107478 -(1,12845:6630773,43404149:0,0,0 -g1,12845:6630773,43404149 -g1,12845:6630773,43404149 -g1,12845:6303093,43404149 -(1,12845:6303093,43404149:0,0,0 -) -g1,12845:6630773,43404149 -) -k1,12846:6630773,43404149:0 -g1,12846:10424522,43404149 -g1,12846:11056814,43404149 -k1,12846:11056814,43404149:0 -h1,12846:13269834,43404149:0,0,0 -k1,12846:32583030,43404149:19313196 -g1,12846:32583030,43404149 -) -(1,12847:6630773,44070327:25952256,404226,107478 -h1,12847:6630773,44070327:0,0,0 -g1,12847:6946919,44070327 -g1,12847:7263065,44070327 -g1,12847:7579211,44070327 -g1,12847:7895357,44070327 -g1,12847:8211503,44070327 -g1,12847:8527649,44070327 -g1,12847:8843795,44070327 -g1,12847:10740670,44070327 -g1,12847:11372962,44070327 -g1,12847:13269837,44070327 -g1,12847:13902129,44070327 -g1,12847:14534421,44070327 -g1,12847:16431295,44070327 -h1,12847:16747441,44070327:0,0,0 -k1,12847:32583029,44070327:15835588 -g1,12847:32583029,44070327 -) -(1,12848:6630773,44736505:25952256,404226,107478 -h1,12848:6630773,44736505:0,0,0 -g1,12848:6946919,44736505 -g1,12848:7263065,44736505 -g1,12848:11372959,44736505 -h1,12848:11689105,44736505:0,0,0 -k1,12848:32583029,44736505:20893924 -g1,12848:32583029,44736505 -) -(1,12849:6630773,45402683:25952256,410518,107478 -h1,12849:6630773,45402683:0,0,0 -g1,12849:6946919,45402683 -g1,12849:7263065,45402683 -g1,12849:12637542,45402683 -g1,12849:13269834,45402683 -g1,12849:15799000,45402683 -g1,12849:18012020,45402683 -g1,12849:18644312,45402683 -g1,12849:20541187,45402683 -g1,12849:23070353,45402683 -g1,12849:23702645,45402683 -g1,12849:24334937,45402683 -g1,12849:24967229,45402683 -h1,12849:25599520,45402683:0,0,0 -k1,12849:32583029,45402683:6983509 -g1,12849:32583029,45402683 -) -] -) -g1,12851:32583029,45510161 -g1,12851:6630773,45510161 -g1,12851:6630773,45510161 -g1,12851:32583029,45510161 -g1,12851:32583029,45510161 -) -h1,12851:6630773,45706769:0,0,0 -] -(1,12860:32583029,45706769:0,0,0 -g1,12860:32583029,45706769 -) -) -] -(1,12860:6630773,47279633:25952256,0,0 -h1,12860:6630773,47279633:25952256,0,0 -) -] -(1,12860:4262630,4025873:0,0,0 -[1,12860:-473656,4025873:0,0,0 -(1,12860:-473656,-710413:0,0,0 -(1,12860:-473656,-710413:0,0,0 -g1,12860:-473656,-710413 -) -g1,12860:-473656,-710413 -) -] -) -] -!25969 -}241 -Input:1807:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!104 -{242 -[1,12883:4262630,47279633:28320399,43253760,0 -(1,12883:4262630,4025873:0,0,0 -[1,12883:-473656,4025873:0,0,0 -(1,12883:-473656,-710413:0,0,0 -(1,12883:-473656,-644877:0,0,0 -k1,12883:-473656,-644877:-65536 -) -(1,12883:-473656,4736287:0,0,0 -k1,12883:-473656,4736287:5209943 -) -g1,12883:-473656,-710413 -) -] -) -[1,12883:6630773,47279633:25952256,43253760,0 -[1,12883:6630773,4812305:25952256,786432,0 -(1,12883:6630773,4812305:25952256,513147,134348 -(1,12883:6630773,4812305:25952256,513147,134348 -g1,12883:3078558,4812305 -[1,12883:3078558,4812305:0,0,0 -(1,12883:3078558,2439708:0,1703936,0 -k1,12883:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,12883:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,12883:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,12883:3078558,4812305:0,0,0 -(1,12883:3078558,2439708:0,1703936,0 -g1,12883:29030814,2439708 -g1,12883:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,12883:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,12883:37855564,2439708:1179648,16384,0 -) -) -k1,12883:3078556,2439708:-34777008 -) -] -[1,12883:3078558,4812305:0,0,0 -(1,12883:3078558,49800853:0,16384,2228224 -k1,12883:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,12883:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,12883:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,12883:3078558,4812305:0,0,0 -(1,12883:3078558,49800853:0,16384,2228224 -g1,12883:29030814,49800853 -g1,12883:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,12883:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,12883:37855564,49800853:1179648,16384,0 -) -) -k1,12883:3078556,49800853:-34777008 -) -] -g1,12883:6630773,4812305 -g1,12883:6630773,4812305 -g1,12883:10697281,4812305 -g1,12883:11496164,4812305 -g1,12883:12681054,4812305 -g1,12883:15925086,4812305 -g1,12883:16740353,4812305 -g1,12883:19649496,4812305 -k1,12883:31387652,4812305:11738156 -) -) -] -[1,12883:6630773,45706769:25952256,40108032,0 -(1,12883:6630773,45706769:25952256,40108032,0 -(1,12883:6630773,45706769:0,0,0 -g1,12883:6630773,45706769 -) -[1,12883:6630773,45706769:25952256,40108032,0 -(1,12854:6630773,14682403:25952256,9083666,0 -k1,12854:10523651,14682403:3892878 -h1,12853:10523651,14682403:0,0,0 -(1,12853:10523651,14682403:18166500,9083666,0 -(1,12853:10523651,14682403:18167376,9083688,0 -(1,12853:10523651,14682403:18167376,9083688,0 -(1,12853:10523651,14682403:0,9083688,0 -(1,12853:10523651,14682403:0,14208860,0 -(1,12853:10523651,14682403:28417720,14208860,0 -) -k1,12853:10523651,14682403:-28417720 -) -) -g1,12853:28691027,14682403 -) -) -) -g1,12854:28690151,14682403 -k1,12854:32583029,14682403:3892878 -) -(1,12861:6630773,15523891:25952256,513147,134348 -h1,12860:6630773,15523891:983040,0,0 -k1,12860:8802745,15523891:235383 -k1,12860:11358759,15523891:235384 -k1,12860:12559487,15523891:235383 -k1,12860:14760295,15523891:235383 -k1,12860:16687818,15523891:235383 -k1,12860:17582494,15523891:235384 -k1,12860:18836962,15523891:235383 -k1,12860:21941511,15523891:235383 -k1,12860:22836186,15523891:235383 -k1,12860:24090655,15523891:235384 -k1,12860:27228628,15523891:235383 -k1,12860:30554034,15523891:235383 -k1,12860:32583029,15523891:0 -) -(1,12861:6630773,16365379:25952256,505283,126483 -k1,12860:8921060,16365379:293405 -k1,12860:12858921,16365379:293404 -k1,12860:14343771,16365379:293405 -k1,12860:17043002,16365379:293405 -k1,12860:18533094,16365379:293405 -k1,12860:20434096,16365379:293404 -k1,12860:22231552,16365379:293405 -k1,12860:25400021,16365379:293405 -k1,12860:28063207,16365379:293404 -k1,12860:30886302,16365379:293405 -k1,12860:32583029,16365379:0 -) -(1,12861:6630773,17206867:25952256,513147,126483 -k1,12860:9774989,17206867:275050 -k1,12860:11525253,17206867:275049 -k1,12860:14396184,17206867:275050 -k1,12860:16556704,17206867:275049 -k1,12860:17823314,17206867:275050 -k1,12860:19611589,17206867:275049 -k1,12860:21584677,17206867:275050 -k1,12860:22728078,17206867:275049 -k1,12860:23818396,17206867:275050 -k1,12860:25159716,17206867:275049 -k1,12860:26369309,17206867:275050 -k1,12860:28283413,17206867:275049 -k1,12860:31629480,17206867:275050 -k1,12860:32583029,17206867:0 -) -(1,12861:6630773,18048355:25952256,505283,134348 -k1,12860:8217618,18048355:202725 -k1,12860:9552804,18048355:202724 -k1,12860:10780512,18048355:202725 -k1,12860:13974955,18048355:202724 -k1,12860:14793718,18048355:202725 -k1,12860:16881914,18048355:202725 -k1,12860:18464826,18048355:202724 -k1,12860:19659111,18048355:202725 -k1,12860:22759182,18048355:202724 -k1,12860:24070121,18048355:202725 -k1,12860:25226395,18048355:202725 -k1,12860:26917442,18048355:202724 -k1,12860:28514118,18048355:202725 -k1,12860:29072702,18048355:202724 -k1,12860:30847636,18048355:202725 -k1,12860:32583029,18048355:0 -) -(1,12861:6630773,18889843:25952256,513147,134348 -k1,12860:7184015,18889843:197382 -k1,12860:11027166,18889843:197383 -k1,12860:16235431,18889843:197382 -k1,12860:17813658,18889843:197383 -k1,12860:19937798,18889843:197382 -k1,12860:21281406,18889843:197383 -k1,12860:24003235,18889843:197382 -k1,12860:24962146,18889843:197383 -k1,12860:26765815,18889843:197382 -k1,12860:28698591,18889843:197383 -k1,12860:30749987,18889843:197382 -k1,12860:32583029,18889843:0 -) -(1,12861:6630773,19731331:25952256,505283,134348 -k1,12860:8281297,19731331:256573 -k1,12860:10766750,19731331:256574 -k1,12860:13231886,19731331:256573 -k1,12860:16605352,19731331:256574 -k1,12860:17513353,19731331:256573 -k1,12860:18125787,19731331:256574 -k1,12860:22028128,19731331:256573 -k1,12860:24030580,19731331:256573 -k1,12860:25648992,19731331:256574 -k1,12860:27892617,19731331:256573 -k1,12860:30927262,19731331:256574 -k1,12860:31835263,19731331:256573 -k1,12860:32583029,19731331:0 -) -(1,12861:6630773,20572819:25952256,513147,134348 -k1,12860:10027286,20572819:199011 -k1,12860:10842335,20572819:199011 -k1,12860:12060430,20572819:199010 -k1,12860:14694759,20572819:199011 -k1,12860:16685524,20572819:199011 -k1,12860:17956704,20572819:199011 -k1,12860:21009153,20572819:199011 -k1,12860:22199724,20572819:199011 -k1,12860:24770482,20572819:199010 -k1,12860:25620921,20572819:199011 -k1,12860:26839017,20572819:199011 -k1,12860:31019995,20572819:199011 -k1,12860:32583029,20572819:0 -) -(1,12861:6630773,21414307:25952256,513147,126483 -k1,12860:7502704,21414307:244096 -k1,12860:9448771,21414307:244097 -k1,12860:11821476,21414307:244096 -k1,12860:12421432,21414307:244096 -k1,12860:16647496,21414307:244097 -k1,12860:18463801,21414307:244096 -k1,12860:20817501,21414307:244096 -k1,12860:22080682,21414307:244096 -k1,12860:24335424,21414307:244097 -k1,12860:26622277,21414307:244096 -k1,12860:28246561,21414307:244096 -k1,12860:29482218,21414307:244097 -k1,12860:31931601,21414307:244096 -k1,12860:32583029,21414307:0 -) -(1,12861:6630773,22255795:25952256,513147,138281 -k1,12860:9674063,22255795:210169 -k1,12860:11075677,22255795:210169 -k1,12860:12304931,22255795:210169 -k1,12860:14327826,22255795:210169 -k1,12860:17854772,22255795:210169 -k1,12860:19197403,22255795:210169 -k1,12860:20155338,22255795:210169 -k1,12860:22077963,22255795:210169 -k1,12860:22939560,22255795:210169 -(1,12860:22939560,22255795:0,452978,122846 -r1,12883:25408097,22255795:2468537,575824,122846 -k1,12860:22939560,22255795:-2468537 -) -(1,12860:22939560,22255795:2468537,452978,122846 -k1,12860:22939560,22255795:3277 -h1,12860:25404820,22255795:0,411205,112570 -) -k1,12860:25618266,22255795:210169 -k1,12860:29810402,22255795:210169 -$1,12860:29810402,22255795 -$1,12860:30362215,22255795 -k1,12860:30572384,22255795:210169 -k1,12860:32583029,22255795:0 -) -(1,12861:6630773,23097283:25952256,505283,134348 -g1,12860:8021447,23097283 -g1,12860:9239761,23097283 -g1,12860:11874308,23097283 -$1,12860:11874308,23097283 -$1,12860:12376969,23097283 -g1,12860:12576198,23097283 -g1,12860:14959742,23097283 -g1,12860:16596569,23097283 -$1,12860:16596569,23097283 -$1,12860:17204088,23097283 -g1,12860:17390472,23097283 -g1,12860:18531191,23097283 -$1,12860:18531191,23097283 -$1,12860:19138710,23097283 -g1,12860:19325094,23097283 -g1,12860:20578470,23097283 -$1,12860:20578470,23097283 -$1,12860:21185989,23097283 -g1,12860:21372373,23097283 -g1,12860:23167797,23097283 -$1,12860:23167797,23097283 -$1,12860:23775316,23097283 -g1,12860:23961700,23097283 -g1,12860:25574868,23097283 -$1,12860:25574868,23097283 -$1,12860:26182387,23097283 -g1,12860:26368771,23097283 -g1,12860:28361196,23097283 -k1,12861:32583029,23097283:2263552 -g1,12861:32583029,23097283 -) -v1,12863:6630773,24287749:0,393216,0 -(1,12871:6630773,27267557:25952256,3373024,196608 -g1,12871:6630773,27267557 -g1,12871:6630773,27267557 -g1,12871:6434165,27267557 -(1,12871:6434165,27267557:0,3373024,196608 -r1,12883:32779637,27267557:26345472,3569632,196608 -k1,12871:6434165,27267557:-26345472 -) -(1,12871:6434165,27267557:26345472,3373024,196608 -[1,12871:6630773,27267557:25952256,3176416,0 -(1,12865:6630773,24495367:25952256,404226,107478 -(1,12864:6630773,24495367:0,0,0 -g1,12864:6630773,24495367 -g1,12864:6630773,24495367 -g1,12864:6303093,24495367 -(1,12864:6303093,24495367:0,0,0 -) -g1,12864:6630773,24495367 -) -k1,12865:6630773,24495367:0 -g1,12865:10424522,24495367 -g1,12865:11056814,24495367 -k1,12865:11056814,24495367:0 -h1,12865:13269834,24495367:0,0,0 -k1,12865:32583030,24495367:19313196 -g1,12865:32583030,24495367 -) -(1,12866:6630773,25161545:25952256,404226,107478 -h1,12866:6630773,25161545:0,0,0 -g1,12866:6946919,25161545 -g1,12866:7263065,25161545 -g1,12866:7579211,25161545 -g1,12866:7895357,25161545 -g1,12866:8211503,25161545 -g1,12866:8527649,25161545 -g1,12866:8843795,25161545 -g1,12866:10740670,25161545 -g1,12866:11372962,25161545 -g1,12866:13269837,25161545 -g1,12866:13902129,25161545 -g1,12866:14534421,25161545 -g1,12866:16431295,25161545 -h1,12866:16747441,25161545:0,0,0 -k1,12866:32583029,25161545:15835588 -g1,12866:32583029,25161545 -) -(1,12867:6630773,25827723:25952256,404226,107478 -h1,12867:6630773,25827723:0,0,0 -g1,12867:6946919,25827723 -g1,12867:7263065,25827723 -g1,12867:11372959,25827723 -h1,12867:11689105,25827723:0,0,0 -k1,12867:32583029,25827723:20893924 -g1,12867:32583029,25827723 -) -(1,12868:6630773,26493901:25952256,410518,107478 -h1,12868:6630773,26493901:0,0,0 -g1,12868:6946919,26493901 -g1,12868:7263065,26493901 -g1,12868:12637542,26493901 -g1,12868:13269834,26493901 -g1,12868:15799000,26493901 -g1,12868:18012020,26493901 -g1,12868:18644312,26493901 -g1,12868:20541187,26493901 -g1,12868:23070353,26493901 -g1,12868:23702645,26493901 -g1,12868:24334937,26493901 -g1,12868:24967229,26493901 -g1,12868:25915666,26493901 -h1,12868:26231812,26493901:0,0,0 -k1,12868:32583029,26493901:6351217 -g1,12868:32583029,26493901 -) -(1,12869:6630773,27160079:25952256,404226,107478 -h1,12869:6630773,27160079:0,0,0 -g1,12869:6946919,27160079 -g1,12869:7263065,27160079 -k1,12869:7263065,27160079:0 -h1,12869:12005250,27160079:0,0,0 -k1,12869:32583030,27160079:20577780 -g1,12869:32583030,27160079 -) -] -) -g1,12871:32583029,27267557 -g1,12871:6630773,27267557 -g1,12871:6630773,27267557 -g1,12871:32583029,27267557 -g1,12871:32583029,27267557 -) -h1,12871:6630773,27464165:0,0,0 -(1,12874:6630773,37137655:25952256,9083666,0 -k1,12874:10523651,37137655:3892878 -h1,12873:10523651,37137655:0,0,0 -(1,12873:10523651,37137655:18166500,9083666,0 -(1,12873:10523651,37137655:18167376,9083688,0 -(1,12873:10523651,37137655:18167376,9083688,0 -(1,12873:10523651,37137655:0,9083688,0 -(1,12873:10523651,37137655:0,14208860,0 -(1,12873:10523651,37137655:28417720,14208860,0 -) -k1,12873:10523651,37137655:-28417720 -) -) -g1,12873:28691027,37137655 -) -) -) -g1,12874:28690151,37137655 -k1,12874:32583029,37137655:3892878 -) -(1,12881:6630773,37979143:25952256,513147,134348 -h1,12880:6630773,37979143:983040,0,0 -k1,12880:9020917,37979143:210417 -k1,12880:11011948,37979143:210418 -k1,12880:13037057,37979143:210417 -k1,12880:13906766,37979143:210417 -k1,12880:14473044,37979143:210418 -k1,12880:16255670,37979143:210417 -k1,12880:17570370,37979143:210418 -k1,12880:18528553,37979143:210417 -k1,12880:19673513,37979143:210417 -k1,12880:22990338,37979143:210418 -k1,12880:25527938,37979143:210417 -k1,12880:26397647,37979143:210417 -k1,12880:30924922,37979143:210418 -k1,12880:31821501,37979143:210417 -k1,12880:32583029,37979143:0 -) -(1,12881:6630773,38820631:25952256,513147,95026 -k1,12880:9352781,38820631:282758 -k1,12880:11509869,38820631:282758 -k1,12880:13607319,38820631:282758 -k1,12880:15819457,38820631:282758 -k1,12880:16458075,38820631:282758 -k1,12880:18820290,38820631:282758 -k1,12880:21526569,38820631:282758 -k1,12880:23011913,38820631:282758 -k1,12880:24280332,38820631:282758 -k1,12880:26169378,38820631:282758 -k1,12880:30979363,38820631:282758 -k1,12880:32583029,38820631:0 -) -(1,12881:6630773,39662119:25952256,505283,126483 -k1,12880:11064338,39662119:188143 -k1,12880:12996393,39662119:188142 -k1,12880:15550386,39662119:188143 -k1,12880:16757614,39662119:188143 -k1,12880:18517966,39662119:188143 -k1,12880:20520800,39662119:188142 -k1,12880:22936512,39662119:188143 -k1,12880:25344359,39662119:188143 -k1,12880:26723947,39662119:188143 -k1,12880:27903649,39662119:188142 -k1,12880:29158063,39662119:188143 -k1,12880:31931601,39662119:188143 -k1,12880:32583029,39662119:0 -) -(1,12881:6630773,40503607:25952256,505283,134348 -k1,12880:11665613,40503607:135368 -k1,12880:13497708,40503607:135368 -k1,12880:17704828,40503607:135368 -k1,12880:18831756,40503607:135368 -k1,12880:20033396,40503607:135369 -k1,12880:22927174,40503607:135368 -k1,12880:23678580,40503607:135368 -k1,12880:24833033,40503607:135368 -k1,12880:27918176,40503607:135368 -k1,12880:32583029,40503607:0 -) -(1,12881:6630773,41345095:25952256,505283,134348 -k1,12880:7520394,41345095:206736 -k1,12880:9240356,41345095:206736 -k1,12880:10063131,41345095:206737 -k1,12880:14245281,41345095:206736 -k1,12880:17446357,41345095:206736 -k1,12880:19351131,41345095:206736 -k1,12880:21293260,41345095:206736 -k1,12880:24182385,41345095:206736 -k1,12880:25408207,41345095:206737 -k1,12880:30009132,41345095:206736 -k1,12880:31207428,41345095:206736 -k1,12880:32583029,41345095:0 -) -(1,12881:6630773,42186583:25952256,513147,126483 -k1,12880:9202453,42186583:199932 -k1,12880:10053812,42186583:199931 -k1,12880:14325496,42186583:199932 -k1,12880:15809933,42186583:199931 -k1,12880:17040746,42186583:199932 -k1,12880:19250666,42186583:199931 -k1,12880:20469683,42186583:199932 -k1,12880:22484306,42186583:199931 -k1,12880:23343530,42186583:199932 -k1,12880:24309577,42186583:199931 -k1,12880:26412019,42186583:199932 -k1,12880:27227988,42186583:199931 -k1,12880:28694076,42186583:199932 -k1,12880:30768337,42186583:199931 -k1,12880:32583029,42186583:0 -) -(1,12881:6630773,43028071:25952256,513147,134348 -k1,12880:9790264,43028071:172360 -k1,12880:11741925,43028071:172359 -k1,12880:12933370,43028071:172360 -k1,12880:15630176,43028071:172359 -k1,12880:17149956,43028071:172360 -k1,12880:19020353,43028071:172359 -k1,12880:20211798,43028071:172360 -k1,12880:22908605,43028071:172360 -k1,12880:24428384,43028071:172359 -k1,12880:25132241,43028071:172360 -k1,12880:29621457,43028071:172359 -k1,12880:30728360,43028071:172360 -k1,12880:32583029,43028071:0 -) -(1,12881:6630773,43869559:25952256,513147,134348 -k1,12880:7629308,43869559:189165 -k1,12880:8837558,43869559:189165 -k1,12880:10807336,43869559:189165 -k1,12880:11655792,43869559:189164 -k1,12880:12864042,43869559:189165 -k1,12880:15270290,43869559:189165 -k1,12880:17481241,43869559:189165 -k1,12880:21181825,43869559:189165 -k1,12880:22390075,43869559:189165 -k1,12880:25386802,43869559:189165 -k1,12880:26227394,43869559:189164 -k1,12880:28427204,43869559:189165 -k1,12880:29275661,43869559:189165 -k1,12880:29820686,43869559:189165 -k1,12880:32583029,43869559:0 -) -(1,12881:6630773,44711047:25952256,513147,134348 -k1,12880:10000886,44711047:195549 -k1,12880:11533370,44711047:195550 -k1,12880:13969595,44711047:195549 -k1,12880:15863182,44711047:195549 -k1,12880:16414592,44711047:195550 -k1,12880:18690254,44711047:195549 -k1,12880:19545095,44711047:195549 -k1,12880:20759729,44711047:195549 -k1,12880:22344642,44711047:195550 -k1,12880:23531751,44711047:195549 -k1,12880:26315972,44711047:195549 -k1,12880:27273050,44711047:195550 -k1,12880:30401335,44711047:195549 -k1,12880:32583029,44711047:0 -) -(1,12881:6630773,45552535:25952256,513147,7863 -g1,12880:7849087,45552535 -g1,12880:9863008,45552535 -g1,12880:10721529,45552535 -g1,12880:11276618,45552535 -k1,12881:32583029,45552535:19560532 -g1,12881:32583029,45552535 -) -] -(1,12883:32583029,45706769:0,0,0 -g1,12883:32583029,45706769 -) -) -] -(1,12883:6630773,47279633:25952256,0,0 -h1,12883:6630773,47279633:25952256,0,0 -) -] -(1,12883:4262630,4025873:0,0,0 -[1,12883:-473656,4025873:0,0,0 -(1,12883:-473656,-710413:0,0,0 -(1,12883:-473656,-710413:0,0,0 -g1,12883:-473656,-710413 -) -g1,12883:-473656,-710413 -) -] -) -] -!17592 -}242 -Input:1808:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!104 -{243 -[1,12923:4262630,47279633:28320399,43253760,0 -(1,12923:4262630,4025873:0,0,0 -[1,12923:-473656,4025873:0,0,0 -(1,12923:-473656,-710413:0,0,0 -(1,12923:-473656,-644877:0,0,0 -k1,12923:-473656,-644877:-65536 -) -(1,12923:-473656,4736287:0,0,0 -k1,12923:-473656,4736287:5209943 -) -g1,12923:-473656,-710413 -) -] -) -[1,12923:6630773,47279633:25952256,43253760,0 -[1,12923:6630773,4812305:25952256,786432,0 -(1,12923:6630773,4812305:25952256,513147,134348 -(1,12923:6630773,4812305:25952256,513147,134348 -g1,12923:3078558,4812305 -[1,12923:3078558,4812305:0,0,0 -(1,12923:3078558,2439708:0,1703936,0 -k1,12923:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,12923:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,12923:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,12923:3078558,4812305:0,0,0 -(1,12923:3078558,2439708:0,1703936,0 -g1,12923:29030814,2439708 -g1,12923:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,12923:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,12923:37855564,2439708:1179648,16384,0 -) -) -k1,12923:3078556,2439708:-34777008 -) -] -[1,12923:3078558,4812305:0,0,0 -(1,12923:3078558,49800853:0,16384,2228224 -k1,12923:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,12923:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,12923:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,12923:3078558,4812305:0,0,0 -(1,12923:3078558,49800853:0,16384,2228224 -g1,12923:29030814,49800853 -g1,12923:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,12923:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,12923:37855564,49800853:1179648,16384,0 -) -) -k1,12923:3078556,49800853:-34777008 -) -] -g1,12923:6630773,4812305 -k1,12923:25712890,4812305:17886740 -g1,12923:29057847,4812305 -g1,12923:29873114,4812305 -) -) -] -[1,12923:6630773,45706769:25952256,40108032,0 -(1,12923:6630773,45706769:25952256,40108032,0 -(1,12923:6630773,45706769:0,0,0 -g1,12923:6630773,45706769 -) -[1,12923:6630773,45706769:25952256,40108032,0 -(1,12883:6630773,6254097:25952256,513147,126483 -h1,12882:6630773,6254097:983040,0,0 -k1,12882:8440373,6254097:198725 -k1,12882:11270370,6254097:198726 -k1,12882:12120523,6254097:198725 -k1,12882:13854101,6254097:198725 -k1,12882:15934365,6254097:198726 -k1,12882:19777547,6254097:198725 -k1,12882:22671768,6254097:198725 -k1,12882:23556655,6254097:198725 -k1,12882:24111241,6254097:198726 -k1,12882:26751837,6254097:198725 -k1,12882:28408738,6254097:198725 -k1,12882:29874930,6254097:198726 -k1,12882:31092740,6254097:198725 -k1,12883:32583029,6254097:0 -) -(1,12883:6630773,7095585:25952256,513147,134348 -k1,12882:8111382,7095585:233459 -k1,12882:9865933,7095585:233460 -k1,12882:11290837,7095585:233459 -k1,12882:12339564,7095585:233459 -k1,12882:13639295,7095585:233460 -k1,12882:15652056,7095585:233459 -k1,12882:17770986,7095585:233459 -k1,12882:22076197,7095585:233459 -k1,12882:23301217,7095585:233460 -k1,12882:25577433,7095585:233459 -k1,12882:26462320,7095585:233459 -k1,12882:29528901,7095585:233460 -k1,12882:30959047,7095585:233459 -k1,12883:32583029,7095585:0 -) -(1,12883:6630773,7937073:25952256,505283,134348 -k1,12882:8811930,7937073:184275 -k1,12882:11415795,7937073:184276 -k1,12882:12286232,7937073:184275 -k1,12882:15483197,7937073:184275 -k1,12882:16198969,7937073:184275 -k1,12882:17669061,7937073:184276 -k1,12882:21518109,7937073:184275 -k1,12882:22463912,7937073:184275 -k1,12882:23851428,7937073:184275 -k1,12882:26938294,7937073:184276 -k1,12882:31714677,7937073:184275 -k1,12882:32583029,7937073:0 -) -(1,12883:6630773,8778561:25952256,513147,138281 -k1,12882:7885071,8778561:161813 -k1,12882:10931124,8778561:161814 -k1,12882:14831111,8778561:161813 -k1,12882:16878396,8778561:161814 -k1,12882:18031769,8778561:161813 -k1,12882:19212667,8778561:161813 -k1,12882:21813731,8778561:161814 -k1,12882:23047713,8778561:161813 -k1,12882:24077878,8778561:161813 -k1,12882:27172428,8778561:161814 -k1,12882:28268784,8778561:161813 -$1,12882:28268784,8778561 -$1,12882:28820597,8778561 -k1,12882:28982411,8778561:161814 -k1,12882:31132586,8778561:161813 -k1,12882:32583029,8778561:0 -) -(1,12883:6630773,9620049:25952256,505283,120913 -$1,12882:7238292,9620049 -g1,12882:7424676,9620049 -g1,12882:8565395,9620049 -$1,12882:8565395,9620049 -$1,12882:9172914,9620049 -g1,12882:9359298,9620049 -g1,12882:10612674,9620049 -$1,12882:10612674,9620049 -$1,12882:11220193,9620049 -g1,12882:11406577,9620049 -g1,12882:13202001,9620049 -$1,12882:13202001,9620049 -$1,12882:13809520,9620049 -g1,12882:13995904,9620049 -g1,12882:17232268,9620049 -$1,12882:17232268,9620049 -$1,12882:17839787,9620049 -g1,12882:18026171,9620049 -g1,12882:20006800,9620049 -$1,12882:20006800,9620049 -$1,12882:20614319,9620049 -g1,12882:20800703,9620049 -g1,12882:22793128,9620049 -k1,12883:32583029,9620049:7831620 -g1,12883:32583029,9620049 -) -v1,12885:6630773,10709862:0,393216,0 -(1,12893:6630773,13683379:25952256,3366733,196608 -g1,12893:6630773,13683379 -g1,12893:6630773,13683379 -g1,12893:6434165,13683379 -(1,12893:6434165,13683379:0,3366733,196608 -r1,12923:32779637,13683379:26345472,3563341,196608 -k1,12893:6434165,13683379:-26345472 -) -(1,12893:6434165,13683379:26345472,3366733,196608 -[1,12893:6630773,13683379:25952256,3170125,0 -(1,12887:6630773,10917480:25952256,404226,107478 -(1,12886:6630773,10917480:0,0,0 -g1,12886:6630773,10917480 -g1,12886:6630773,10917480 -g1,12886:6303093,10917480 -(1,12886:6303093,10917480:0,0,0 -) -g1,12886:6630773,10917480 -) -k1,12887:6630773,10917480:0 -g1,12887:10424522,10917480 -g1,12887:11056814,10917480 -k1,12887:11056814,10917480:0 -h1,12887:13269834,10917480:0,0,0 -k1,12887:32583030,10917480:19313196 -g1,12887:32583030,10917480 -) -(1,12888:6630773,11583658:25952256,404226,107478 -h1,12888:6630773,11583658:0,0,0 -g1,12888:6946919,11583658 -g1,12888:7263065,11583658 -g1,12888:7579211,11583658 -g1,12888:7895357,11583658 -g1,12888:8211503,11583658 -g1,12888:8527649,11583658 -g1,12888:8843795,11583658 -g1,12888:10740670,11583658 -g1,12888:11372962,11583658 -g1,12888:13269837,11583658 -g1,12888:13902129,11583658 -g1,12888:14534421,11583658 -g1,12888:16431295,11583658 -h1,12888:16747441,11583658:0,0,0 -k1,12888:32583029,11583658:15835588 -g1,12888:32583029,11583658 -) -(1,12889:6630773,12249836:25952256,404226,107478 -h1,12889:6630773,12249836:0,0,0 -g1,12889:6946919,12249836 -g1,12889:7263065,12249836 -g1,12889:11372959,12249836 -h1,12889:11689105,12249836:0,0,0 -k1,12889:32583029,12249836:20893924 -g1,12889:32583029,12249836 -) -(1,12890:6630773,12916014:25952256,410518,107478 -h1,12890:6630773,12916014:0,0,0 -g1,12890:6946919,12916014 -g1,12890:7263065,12916014 -g1,12890:12637542,12916014 -g1,12890:13269834,12916014 -g1,12890:15799000,12916014 -g1,12890:18012020,12916014 -g1,12890:18644312,12916014 -g1,12890:20541187,12916014 -g1,12890:23070353,12916014 -g1,12890:23702645,12916014 -g1,12890:24334937,12916014 -g1,12890:24967229,12916014 -g1,12890:25915666,12916014 -h1,12890:26231812,12916014:0,0,0 -k1,12890:32583029,12916014:6351217 -g1,12890:32583029,12916014 -) -(1,12891:6630773,13582192:25952256,404226,101187 -h1,12891:6630773,13582192:0,0,0 -g1,12891:6946919,13582192 -g1,12891:7263065,13582192 -g1,12891:13902125,13582192 -g1,12891:14534417,13582192 -g1,12891:16431292,13582192 -h1,12891:17695874,13582192:0,0,0 -k1,12891:32583029,13582192:14887155 -g1,12891:32583029,13582192 -) -] -) -g1,12893:32583029,13683379 -g1,12893:6630773,13683379 -g1,12893:6630773,13683379 -g1,12893:32583029,13683379 -g1,12893:32583029,13683379 -) -h1,12893:6630773,13879987:0,0,0 -(1,12896:6630773,23452823:25952256,9083666,0 -k1,12896:10523651,23452823:3892878 -h1,12895:10523651,23452823:0,0,0 -(1,12895:10523651,23452823:18166500,9083666,0 -(1,12895:10523651,23452823:18167376,9083688,0 -(1,12895:10523651,23452823:18167376,9083688,0 -(1,12895:10523651,23452823:0,9083688,0 -(1,12895:10523651,23452823:0,14208860,0 -(1,12895:10523651,23452823:28417720,14208860,0 -) -k1,12895:10523651,23452823:-28417720 -) -) -g1,12895:28691027,23452823 -) -) -) -g1,12896:28690151,23452823 -k1,12896:32583029,23452823:3892878 -) -(1,12903:6630773,24294311:25952256,513147,126483 -h1,12902:6630773,24294311:983040,0,0 -k1,12902:9072710,24294311:262210 -k1,12902:10719039,24294311:262209 -k1,12902:13642666,24294311:262210 -k1,12902:15327662,24294311:262209 -k1,12902:15945732,24294311:262210 -k1,12902:19615813,24294311:262209 -k1,12902:22123942,24294311:262210 -k1,12902:27397034,24294311:262209 -k1,12902:29442479,24294311:262210 -k1,12902:30723773,24294311:262209 -k1,12903:32583029,24294311:0 -) -(1,12903:6630773,25135799:25952256,513147,134348 -k1,12902:10041813,25135799:220092 -k1,12902:10793401,25135799:220091 -k1,12902:13385241,25135799:220092 -k1,12902:14256760,25135799:220091 -k1,12902:15495937,25135799:220092 -k1,12902:19123901,25135799:220092 -k1,12902:21763581,25135799:220091 -k1,12902:22441770,25135799:220092 -k1,12902:24771465,25135799:220091 -k1,12902:26367158,25135799:220092 -k1,12902:27606334,25135799:220091 -k1,12902:31464329,25135799:220092 -k1,12902:32583029,25135799:0 -) -(1,12903:6630773,25977287:25952256,513147,134348 -k1,12902:9485891,25977287:219915 -k1,12902:10724890,25977287:219914 -(1,12902:10724890,25977287:0,414482,122846 -r1,12923:12138291,25977287:1413401,537328,122846 -k1,12902:10724890,25977287:-1413401 -) -(1,12902:10724890,25977287:1413401,414482,122846 -k1,12902:10724890,25977287:3277 -h1,12902:12135014,25977287:0,411205,112570 -) -k1,12902:12358206,25977287:219915 -k1,12902:13769565,25977287:219914 -k1,12902:15008565,25977287:219915 -k1,12902:18325711,25977287:219915 -k1,12902:19204917,25977287:219914 -k1,12902:20443917,25977287:219915 -k1,12902:22114799,25977287:219915 -k1,12902:23531400,25977287:219914 -k1,12902:28588527,25977287:219915 -k1,12902:29339938,25977287:219914 -k1,12902:31931601,25977287:219915 -k1,12902:32583029,25977287:0 -) -(1,12903:6630773,26818775:25952256,513147,134348 -k1,12902:7816975,26818775:167117 -k1,12902:9994736,26818775:167116 -k1,12902:12940580,26818775:167117 -k1,12902:13869225,26818775:167117 -k1,12902:15168148,26818775:167116 -k1,12902:18168386,26818775:167117 -k1,12902:19532189,26818775:167116 -k1,12902:22177878,26818775:167117 -k1,12902:23513502,26818775:167117 -k1,12902:25393074,26818775:167116 -k1,12902:26091688,26818775:167117 -k1,12902:28561085,26818775:167117 -k1,12902:29537571,26818775:167116 -k1,12902:30723773,26818775:167117 -k1,12903:32583029,26818775:0 -) -(1,12903:6630773,27660263:25952256,513147,102891 -k1,12902:9131736,27660263:165260 -k1,12902:13035170,27660263:165260 -k1,12902:13886591,27660263:165259 -k1,12902:14407711,27660263:165260 -k1,12902:16487933,27660263:165260 -k1,12902:19182883,27660263:165260 -k1,12902:20367228,27660263:165260 -k1,12902:22520195,27660263:165260 -k1,12902:23892627,27660263:165259 -k1,12902:25770343,27660263:165260 -k1,12902:26587031,27660263:165260 -k1,12902:27771376,27660263:165260 -k1,12902:32583029,27660263:0 -) -(1,12903:6630773,28501751:25952256,513147,126483 -k1,12902:8286048,28501751:265912 -k1,12902:9743405,28501751:265912 -k1,12902:11212559,28501751:265913 -k1,12902:13190927,28501751:265912 -k1,12902:15444546,28501751:265912 -k1,12902:16241955,28501751:265912 -k1,12902:20824724,28501751:265912 -k1,12902:22603862,28501751:265912 -k1,12902:23521203,28501751:265913 -k1,12902:25810867,28501751:265912 -k1,12902:27095864,28501751:265912 -k1,12902:30398714,28501751:265912 -k1,12902:32583029,28501751:0 -) -(1,12903:6630773,29343239:25952256,513147,126483 -k1,12902:8729740,29343239:213496 -k1,12902:9934796,29343239:213496 -k1,12902:11582220,29343239:213496 -k1,12902:14097996,29343239:213496 -k1,12902:15824718,29343239:213496 -k1,12902:17057299,29343239:213496 -k1,12902:22108007,29343239:213496 -k1,12902:22853000,29343239:213496 -k1,12902:25438244,29343239:213496 -k1,12902:26303168,29343239:213496 -k1,12902:28329390,29343239:213496 -k1,12902:29496435,29343239:213496 -k1,12902:31185146,29343239:213496 -k1,12902:32583029,29343239:0 -) -(1,12903:6630773,30184727:25952256,505283,126483 -k1,12902:9970925,30184727:250129 -k1,12902:11596655,30184727:250129 -k1,12902:14731023,30184727:250129 -k1,12902:18389024,30184727:250129 -k1,12902:21215373,30184727:250129 -k1,12902:23155020,30184727:250129 -k1,12902:25107119,30184727:250129 -k1,12902:28765120,30184727:250129 -k1,12902:31591469,30184727:250129 -k1,12902:32583029,30184727:0 -) -(1,12903:6630773,31026215:25952256,505283,134348 -g1,12902:9920025,31026215 -g1,12902:10735292,31026215 -g1,12902:13543509,31026215 -h1,12902:15086227,31026215:0,0,0 -g1,12902:15285456,31026215 -g1,12902:16676130,31026215 -h1,12902:18045177,31026215:0,0,0 -g1,12902:18244406,31026215 -g1,12902:19253005,31026215 -g1,12902:21280688,31026215 -h1,12902:22476065,31026215:0,0,0 -g1,12902:22675294,31026215 -g1,12902:24065968,31026215 -h1,12902:25261345,31026215:0,0,0 -g1,12902:25634244,31026215 -k1,12903:32583029,31026215:2978614 -g1,12903:32583029,31026215 -) -v1,12905:6630773,32116028:0,393216,0 -(1,12913:6630773,35095836:25952256,3373024,196608 -g1,12913:6630773,35095836 -g1,12913:6630773,35095836 -g1,12913:6434165,35095836 -(1,12913:6434165,35095836:0,3373024,196608 -r1,12923:32779637,35095836:26345472,3569632,196608 -k1,12913:6434165,35095836:-26345472 -) -(1,12913:6434165,35095836:26345472,3373024,196608 -[1,12913:6630773,35095836:25952256,3176416,0 -(1,12907:6630773,32323646:25952256,404226,107478 -(1,12906:6630773,32323646:0,0,0 -g1,12906:6630773,32323646 -g1,12906:6630773,32323646 -g1,12906:6303093,32323646 -(1,12906:6303093,32323646:0,0,0 -) -g1,12906:6630773,32323646 -) -k1,12907:6630773,32323646:0 -g1,12907:10424522,32323646 -g1,12907:11056814,32323646 -k1,12907:11056814,32323646:0 -h1,12907:13269834,32323646:0,0,0 -k1,12907:32583030,32323646:19313196 -g1,12907:32583030,32323646 -) -(1,12908:6630773,32989824:25952256,404226,107478 -h1,12908:6630773,32989824:0,0,0 -g1,12908:6946919,32989824 -g1,12908:7263065,32989824 -g1,12908:7579211,32989824 -g1,12908:7895357,32989824 -g1,12908:8211503,32989824 -g1,12908:8527649,32989824 -g1,12908:8843795,32989824 -g1,12908:10740670,32989824 -g1,12908:11372962,32989824 -g1,12908:13269837,32989824 -g1,12908:13902129,32989824 -g1,12908:14534421,32989824 -g1,12908:16431295,32989824 -h1,12908:16747441,32989824:0,0,0 -k1,12908:32583029,32989824:15835588 -g1,12908:32583029,32989824 -) -(1,12909:6630773,33656002:25952256,404226,107478 -h1,12909:6630773,33656002:0,0,0 -g1,12909:6946919,33656002 -g1,12909:7263065,33656002 -g1,12909:11372959,33656002 -h1,12909:11689105,33656002:0,0,0 -k1,12909:32583029,33656002:20893924 -g1,12909:32583029,33656002 -) -(1,12910:6630773,34322180:25952256,410518,107478 -h1,12910:6630773,34322180:0,0,0 -g1,12910:6946919,34322180 -g1,12910:7263065,34322180 -g1,12910:12637542,34322180 -g1,12910:13269834,34322180 -g1,12910:15799000,34322180 -g1,12910:18012020,34322180 -g1,12910:18644312,34322180 -g1,12910:20541187,34322180 -g1,12910:23070353,34322180 -g1,12910:23702645,34322180 -g1,12910:24334937,34322180 -g1,12910:24967229,34322180 -g1,12910:25915666,34322180 -h1,12910:26231812,34322180:0,0,0 -k1,12910:32583029,34322180:6351217 -g1,12910:32583029,34322180 -) -(1,12911:6630773,34988358:25952256,404226,107478 -h1,12911:6630773,34988358:0,0,0 -g1,12911:6946919,34988358 -g1,12911:7263065,34988358 -g1,12911:11689105,34988358 -g1,12911:12321397,34988358 -h1,12911:14850563,34988358:0,0,0 -k1,12911:32583029,34988358:17732466 -g1,12911:32583029,34988358 -) -] -) -g1,12913:32583029,35095836 -g1,12913:6630773,35095836 -g1,12913:6630773,35095836 -g1,12913:32583029,35095836 -g1,12913:32583029,35095836 -) -h1,12913:6630773,35292444:0,0,0 -(1,12916:6630773,44865281:25952256,9083666,0 -k1,12916:10523651,44865281:3892878 -h1,12915:10523651,44865281:0,0,0 -(1,12915:10523651,44865281:18166500,9083666,0 -(1,12915:10523651,44865281:18167376,9083688,0 -(1,12915:10523651,44865281:18167376,9083688,0 -(1,12915:10523651,44865281:0,9083688,0 -(1,12915:10523651,44865281:0,14208860,0 -(1,12915:10523651,44865281:28417720,14208860,0 -) -k1,12915:10523651,44865281:-28417720 -) -) -g1,12915:28691027,44865281 -) -) -) -g1,12916:28690151,44865281 -k1,12916:32583029,44865281:3892878 -) -(1,12923:6630773,45706769:25952256,513147,134348 -h1,12922:6630773,45706769:983040,0,0 -k1,12922:10452778,45706769:344665 -k1,12922:12576745,45706769:344665 -k1,12922:13940494,45706769:344664 -k1,12922:17382390,45706769:344665 -k1,12922:18386347,45706769:344665 -k1,12922:20338610,45706769:344665 -k1,12922:21296036,45706769:344664 -k1,12922:22659786,45706769:344665 -k1,12922:24429859,45706769:344665 -k1,12922:25433816,45706769:344665 -k1,12922:30386316,45706769:344664 -k1,12922:31835263,45706769:344665 -k1,12922:32583029,45706769:0 -) -] -(1,12923:32583029,45706769:0,0,0 -g1,12923:32583029,45706769 -) -) -] -(1,12923:6630773,47279633:25952256,0,0 -h1,12923:6630773,47279633:25952256,0,0 -) -] -(1,12923:4262630,4025873:0,0,0 -[1,12923:-473656,4025873:0,0,0 -(1,12923:-473656,-710413:0,0,0 -(1,12923:-473656,-710413:0,0,0 -g1,12923:-473656,-710413 -) -g1,12923:-473656,-710413 -) -] -) -] -!17698 -}243 -Input:1809:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1810:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1811:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1812:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1813:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1814:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1815:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1816:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1817:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1818:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!932 -{244 -[1,12963:4262630,47279633:28320399,43253760,0 -(1,12963:4262630,4025873:0,0,0 -[1,12963:-473656,4025873:0,0,0 -(1,12963:-473656,-710413:0,0,0 -(1,12963:-473656,-644877:0,0,0 -k1,12963:-473656,-644877:-65536 -) -(1,12963:-473656,4736287:0,0,0 -k1,12963:-473656,4736287:5209943 -) -g1,12963:-473656,-710413 -) -] -) -[1,12963:6630773,47279633:25952256,43253760,0 -[1,12963:6630773,4812305:25952256,786432,0 -(1,12963:6630773,4812305:25952256,513147,134348 -(1,12963:6630773,4812305:25952256,513147,134348 -g1,12963:3078558,4812305 -[1,12963:3078558,4812305:0,0,0 -(1,12963:3078558,2439708:0,1703936,0 -k1,12963:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,12963:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,12963:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,12963:3078558,4812305:0,0,0 -(1,12963:3078558,2439708:0,1703936,0 -g1,12963:29030814,2439708 -g1,12963:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,12963:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,12963:37855564,2439708:1179648,16384,0 -) -) -k1,12963:3078556,2439708:-34777008 -) -] -[1,12963:3078558,4812305:0,0,0 -(1,12963:3078558,49800853:0,16384,2228224 -k1,12963:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,12963:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,12963:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,12963:3078558,4812305:0,0,0 -(1,12963:3078558,49800853:0,16384,2228224 -g1,12963:29030814,49800853 -g1,12963:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,12963:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,12963:37855564,49800853:1179648,16384,0 -) -) -k1,12963:3078556,49800853:-34777008 -) -] -g1,12963:6630773,4812305 -g1,12963:6630773,4812305 -g1,12963:10697281,4812305 -g1,12963:11496164,4812305 -g1,12963:12681054,4812305 -g1,12963:15925086,4812305 -g1,12963:16740353,4812305 -g1,12963:19649496,4812305 -k1,12963:31387652,4812305:11738156 -) -) -] -[1,12963:6630773,45706769:25952256,40108032,0 -(1,12963:6630773,45706769:25952256,40108032,0 -(1,12963:6630773,45706769:0,0,0 -g1,12963:6630773,45706769 -) -[1,12963:6630773,45706769:25952256,40108032,0 -(1,12923:6630773,6254097:25952256,513147,134348 -k1,12922:9325061,6254097:167220 -k1,12922:10151573,6254097:167220 -k1,12922:11004955,6254097:167220 -k1,12922:12672949,6254097:167220 -k1,12922:14867198,6254097:167220 -k1,12922:17638163,6254097:167220 -k1,12922:18824468,6254097:167220 -k1,12922:21380475,6254097:167220 -k1,12922:23809999,6254097:167221 -k1,12922:24464775,6254097:167188 -k1,12922:27557522,6254097:167220 -k1,12922:29711138,6254097:167220 -k1,12922:30982640,6254097:167220 -k1,12923:32583029,6254097:0 -) -(1,12923:6630773,7095585:25952256,513147,134348 -k1,12922:8051997,7095585:163588 -k1,12922:9234669,7095585:163587 -k1,12922:11663837,7095585:163588 -k1,12922:13206958,7095585:163588 -k1,12922:15530612,7095585:163587 -k1,12922:16890887,7095585:163588 -k1,12922:18331772,7095585:163588 -k1,12922:19026857,7095585:163588 -k1,12922:20209529,7095585:163587 -k1,12922:22200261,7095585:163588 -k1,12922:23382934,7095585:163588 -k1,12922:27618273,7095585:163587 -k1,12922:28773421,7095585:163588 -k1,12922:32583029,7095585:0 -) -(1,12923:6630773,7937073:25952256,513147,126483 -k1,12922:7479682,7937073:232871 -k1,12922:8731638,7937073:232871 -k1,12922:10617982,7937073:232871 -k1,12922:12262499,7937073:232871 -k1,12922:13514456,7937073:232872 -k1,12922:15562019,7937073:232871 -k1,12922:16454182,7937073:232871 -k1,12922:17706138,7937073:232871 -k1,12922:19337547,7937073:232871 -k1,12922:20561978,7937073:232871 -k1,12922:21813934,7937073:232871 -k1,12922:23700278,7937073:232871 -k1,12922:25124594,7937073:232871 -k1,12922:26123582,7937073:232872 -k1,12922:27582632,7937073:232871 -k1,12922:28347000,7937073:232871 -k1,12922:29598956,7937073:232871 -k1,12922:31658971,7937073:232871 -k1,12922:32583029,7937073:0 -) -(1,12923:6630773,8778561:25952256,513147,126483 -k1,12922:7833510,8778561:183652 -k1,12922:9892802,8778561:183652 -k1,12922:11682741,8778561:183652 -k1,12922:13196774,8778561:183652 -k1,12922:15077153,8778561:183652 -k1,12922:18129971,8778561:183652 -k1,12922:19305182,8778561:183651 -k1,12922:22363898,8778561:183652 -k1,12922:23309078,8778561:183652 -k1,12922:26255073,8778561:183652 -k1,12922:28755423,8778561:183652 -k1,12922:30043357,8778561:183652 -k1,12922:30974775,8778561:183652 -k1,12923:32583029,8778561:0 -) -(1,12923:6630773,9620049:25952256,513147,126483 -g1,12922:8748896,9620049 -g1,12922:11884138,9620049 -g1,12922:13520965,9620049 -$1,12922:13520965,9620049 -$1,12922:14128484,9620049 -g1,12922:14314868,9620049 -g1,12922:15455587,9620049 -$1,12922:15455587,9620049 -$1,12922:16063106,9620049 -g1,12922:16249490,9620049 -$1,12922:16249490,9620049 -$1,12922:16857009,9620049 -g1,12922:17043393,9620049 -g1,12922:18838817,9620049 -$1,12922:18838817,9620049 -$1,12922:19446336,9620049 -g1,12922:19632720,9620049 -g1,12922:21613349,9620049 -$1,12922:21613349,9620049 -$1,12922:22220868,9620049 -g1,12922:22407252,9620049 -g1,12922:24399677,9620049 -k1,12923:32583029,9620049:6432165 -g1,12923:32583029,9620049 -) -v1,12925:6630773,10810515:0,393216,0 -(1,12932:6630773,13092688:25952256,2675389,196608 -g1,12932:6630773,13092688 -g1,12932:6630773,13092688 -g1,12932:6434165,13092688 -(1,12932:6434165,13092688:0,2675389,196608 -r1,12963:32779637,13092688:26345472,2871997,196608 -k1,12932:6434165,13092688:-26345472 -) -(1,12932:6434165,13092688:26345472,2675389,196608 -[1,12932:6630773,13092688:25952256,2478781,0 -(1,12927:6630773,11018133:25952256,404226,107478 -(1,12926:6630773,11018133:0,0,0 -g1,12926:6630773,11018133 -g1,12926:6630773,11018133 -g1,12926:6303093,11018133 -(1,12926:6303093,11018133:0,0,0 -) -g1,12926:6630773,11018133 -) -k1,12927:6630773,11018133:0 -g1,12927:10424522,11018133 -g1,12927:11056814,11018133 -k1,12927:11056814,11018133:0 -h1,12927:13269834,11018133:0,0,0 -k1,12927:32583030,11018133:19313196 -g1,12927:32583030,11018133 -) -(1,12928:6630773,11684311:25952256,404226,107478 -h1,12928:6630773,11684311:0,0,0 -g1,12928:6946919,11684311 -g1,12928:7263065,11684311 -g1,12928:7579211,11684311 -g1,12928:7895357,11684311 -g1,12928:8211503,11684311 -g1,12928:8527649,11684311 -g1,12928:8843795,11684311 -g1,12928:10740670,11684311 -g1,12928:11372962,11684311 -g1,12928:13269837,11684311 -g1,12928:13902129,11684311 -g1,12928:14534421,11684311 -g1,12928:16431295,11684311 -h1,12928:16747441,11684311:0,0,0 -k1,12928:32583029,11684311:15835588 -g1,12928:32583029,11684311 -) -(1,12929:6630773,12350489:25952256,404226,107478 -h1,12929:6630773,12350489:0,0,0 -g1,12929:6946919,12350489 -g1,12929:7263065,12350489 -g1,12929:11372959,12350489 -h1,12929:11689105,12350489:0,0,0 -k1,12929:32583029,12350489:20893924 -g1,12929:32583029,12350489 -) -(1,12930:6630773,13016667:25952256,404226,76021 -h1,12930:6630773,13016667:0,0,0 -g1,12930:6946919,13016667 -g1,12930:7263065,13016667 -k1,12930:7263065,13016667:0 -h1,12930:12005250,13016667:0,0,0 -k1,12930:32583030,13016667:20577780 -g1,12930:32583030,13016667 -) -] -) -g1,12932:32583029,13092688 -g1,12932:6630773,13092688 -g1,12932:6630773,13092688 -g1,12932:32583029,13092688 -g1,12932:32583029,13092688 -) -h1,12932:6630773,13289296:0,0,0 -(1,12935:6630773,22962786:25952256,9083666,0 -k1,12935:10523651,22962786:3892878 -h1,12934:10523651,22962786:0,0,0 -(1,12934:10523651,22962786:18166500,9083666,0 -(1,12934:10523651,22962786:18167376,9083688,0 -(1,12934:10523651,22962786:18167376,9083688,0 -(1,12934:10523651,22962786:0,9083688,0 -(1,12934:10523651,22962786:0,14208860,0 -(1,12934:10523651,22962786:28417720,14208860,0 -) -k1,12934:10523651,22962786:-28417720 -) -) -g1,12934:28691027,22962786 -) -) -) -g1,12935:28690151,22962786 -k1,12935:32583029,22962786:3892878 -) -(1,12942:6630773,23804274:25952256,513147,126483 -h1,12941:6630773,23804274:983040,0,0 -k1,12941:8753091,23804274:185729 -k1,12941:10043102,23804274:185729 -k1,12941:11514647,23804274:185729 -k1,12941:14345408,23804274:185728 -k1,12941:15550222,23804274:185729 -k1,12941:17169879,23804274:185729 -k1,12941:18686644,23804274:185729 -k1,12941:20141150,23804274:185729 -k1,12941:21518324,23804274:185729 -k1,12941:23035089,23804274:185729 -k1,12941:25402512,23804274:185729 -k1,12941:26969084,23804274:185728 -k1,12941:29264417,23804274:185729 -k1,12941:30469231,23804274:185729 -k1,12941:31923737,23804274:185729 -k1,12941:32583029,23804274:0 -) -(1,12942:6630773,24645762:25952256,513147,102891 -k1,12941:7588213,24645762:191324 -k1,12941:9005716,24645762:191324 -k1,12941:12239877,24645762:191324 -k1,12941:13117363,24645762:191324 -k1,12941:14817326,24645762:191324 -k1,12941:16277427,24645762:191324 -k1,12941:17000248,24645762:191324 -k1,12941:19573150,24645762:191324 -k1,12941:22123770,24645762:191324 -k1,12941:22966522,24645762:191324 -k1,12941:24176931,24645762:191324 -k1,12941:25802183,24645762:191324 -k1,12941:27435954,24645762:191324 -k1,12941:29115601,24645762:191324 -k1,12941:30175277,24645762:191324 -k1,12941:31563944,24645762:191324 -k1,12941:32583029,24645762:0 -) -(1,12942:6630773,25487250:25952256,513147,126483 -k1,12941:8492323,25487250:208077 -k1,12941:10686796,25487250:208077 -k1,12941:11581035,25487250:208077 -k1,12941:13302337,25487250:208076 -k1,12941:14126452,25487250:208077 -k1,12941:15353614,25487250:208077 -k1,12941:18316169,25487250:208077 -k1,12941:21359333,25487250:208077 -k1,12941:22639579,25487250:208077 -k1,12941:24241607,25487250:208077 -k1,12941:24805543,25487250:208076 -k1,12941:27775963,25487250:208077 -k1,12941:29417968,25487250:208077 -k1,12941:31314252,25487250:208077 -k1,12941:32583029,25487250:0 -) -(1,12942:6630773,26328738:25952256,513147,7863 -g1,12941:7777653,26328738 -k1,12942:32583030,26328738:23405528 -g1,12942:32583030,26328738 -) -v1,12944:6630773,27519204:0,393216,0 -(1,12951:6630773,29826543:25952256,2700555,196608 -g1,12951:6630773,29826543 -g1,12951:6630773,29826543 -g1,12951:6434165,29826543 -(1,12951:6434165,29826543:0,2700555,196608 -r1,12963:32779637,29826543:26345472,2897163,196608 -k1,12951:6434165,29826543:-26345472 -) -(1,12951:6434165,29826543:26345472,2700555,196608 -[1,12951:6630773,29826543:25952256,2503947,0 -(1,12946:6630773,27726822:25952256,404226,107478 -(1,12945:6630773,27726822:0,0,0 -g1,12945:6630773,27726822 -g1,12945:6630773,27726822 -g1,12945:6303093,27726822 -(1,12945:6303093,27726822:0,0,0 -) -g1,12945:6630773,27726822 -) -k1,12946:6630773,27726822:0 -g1,12946:10424522,27726822 -g1,12946:11056814,27726822 -k1,12946:11056814,27726822:0 -h1,12946:13269834,27726822:0,0,0 -k1,12946:32583030,27726822:19313196 -g1,12946:32583030,27726822 -) -(1,12947:6630773,28393000:25952256,404226,107478 -h1,12947:6630773,28393000:0,0,0 -g1,12947:6946919,28393000 -g1,12947:7263065,28393000 -g1,12947:7579211,28393000 -g1,12947:7895357,28393000 -g1,12947:8211503,28393000 -g1,12947:8527649,28393000 -g1,12947:8843795,28393000 -g1,12947:10740670,28393000 -g1,12947:11372962,28393000 -g1,12947:13269837,28393000 -g1,12947:13902129,28393000 -g1,12947:14534421,28393000 -g1,12947:16431295,28393000 -h1,12947:16747441,28393000:0,0,0 -k1,12947:32583029,28393000:15835588 -g1,12947:32583029,28393000 -) -(1,12948:6630773,29059178:25952256,404226,107478 -h1,12948:6630773,29059178:0,0,0 -g1,12948:6946919,29059178 -g1,12948:7263065,29059178 -g1,12948:11372959,29059178 -h1,12948:11689105,29059178:0,0,0 -k1,12948:32583029,29059178:20893924 -g1,12948:32583029,29059178 -) -(1,12949:6630773,29725356:25952256,410518,101187 -h1,12949:6630773,29725356:0,0,0 -g1,12949:6946919,29725356 -g1,12949:7263065,29725356 -g1,12949:14850562,29725356 -g1,12949:15482854,29725356 -g1,12949:16747437,29725356 -g1,12949:20541185,29725356 -g1,12949:21173477,29725356 -h1,12949:23702643,29725356:0,0,0 -k1,12949:32583029,29725356:8880386 -g1,12949:32583029,29725356 -) -] -) -g1,12951:32583029,29826543 -g1,12951:6630773,29826543 -g1,12951:6630773,29826543 -g1,12951:32583029,29826543 -g1,12951:32583029,29826543 -) -h1,12951:6630773,30023151:0,0,0 -(1,12954:6630773,39696641:25952256,9083666,0 -k1,12954:10523651,39696641:3892878 -h1,12953:10523651,39696641:0,0,0 -(1,12953:10523651,39696641:18166500,9083666,0 -(1,12953:10523651,39696641:18167376,9083688,0 -(1,12953:10523651,39696641:18167376,9083688,0 -(1,12953:10523651,39696641:0,9083688,0 -(1,12953:10523651,39696641:0,14208860,0 -(1,12953:10523651,39696641:28417720,14208860,0 -) -k1,12953:10523651,39696641:-28417720 -) -) -g1,12953:28691027,39696641 -) -) -) -g1,12954:28690151,39696641 -k1,12954:32583029,39696641:3892878 -) -(1,12961:6630773,40538129:25952256,513147,126483 -h1,12960:6630773,40538129:983040,0,0 -k1,12960:9038172,40538129:227672 -k1,12960:11383312,40538129:227672 -k1,12960:12270276,40538129:227672 -k1,12960:13828329,40538129:227672 -k1,12960:14707429,40538129:227672 -k1,12960:15869644,40538129:227672 -k1,12960:17349709,40538129:227672 -k1,12960:19595234,40538129:227671 -k1,12960:21007142,40538129:227672 -k1,12960:24179347,40538129:227672 -k1,12960:25598464,40538129:227672 -k1,12960:27010372,40538129:227672 -k1,12960:29082227,40538129:227672 -k1,12960:30442361,40538129:227672 -k1,12960:31417799,40538129:227672 -k1,12961:32583029,40538129:0 -) -(1,12961:6630773,41379617:25952256,513147,126483 -k1,12960:9021713,41379617:213834 -k1,12960:9851585,41379617:213834 -k1,12960:11925985,41379617:213833 -k1,12960:12755857,41379617:213834 -k1,12960:15248378,41379617:213834 -h1,12960:16218966,41379617:0,0,0 -k1,12960:16606470,41379617:213834 -k1,12960:20365146,41379617:213834 -k1,12960:21447331,41379617:213833 -k1,12960:22793627,41379617:213834 -k1,12960:24099946,41379617:213834 -k1,12960:27009276,41379617:213834 -(1,12960:27009276,41379617:0,452978,115847 -r1,12963:29126101,41379617:2116825,568825,115847 -k1,12960:27009276,41379617:-2116825 -) -(1,12960:27009276,41379617:2116825,452978,115847 -k1,12960:27009276,41379617:3277 -h1,12960:29122824,41379617:0,411205,112570 -) -k1,12960:29339934,41379617:213833 -k1,12960:31439239,41379617:213834 -k1,12960:32184570,41379617:213834 -k1,12960:32583029,41379617:0 -) -(1,12961:6630773,42221105:25952256,513147,134348 -k1,12960:10689885,42221105:239674 -k1,12960:13528063,42221105:239675 -k1,12960:16439640,42221105:239674 -k1,12960:17424459,42221105:239675 -k1,12960:18315561,42221105:239674 -k1,12960:20356165,42221105:239675 -k1,12960:21530382,42221105:239674 -k1,12960:22789141,42221105:239674 -k1,12960:24296282,42221105:239675 -k1,12960:25727401,42221105:239674 -k1,12960:28380112,42221105:239675 -k1,12960:29279078,42221105:239674 -k1,12960:29874613,42221105:239675 -k1,12960:31391584,42221105:239674 -k1,12960:32583029,42221105:0 -) -(1,12961:6630773,43062593:25952256,513147,126483 -k1,12960:7531534,43062593:249333 -k1,12960:10079214,43062593:249332 -k1,12960:11347632,43062593:249333 -k1,12960:13862545,43062593:249333 -(1,12960:13862545,43062593:0,414482,115847 -r1,12963:15275946,43062593:1413401,530329,115847 -k1,12960:13862545,43062593:-1413401 -) -(1,12960:13862545,43062593:1413401,414482,115847 -k1,12960:13862545,43062593:3277 -h1,12960:15272669,43062593:0,411205,112570 -) -k1,12960:15525278,43062593:249332 -k1,12960:16433903,43062593:249333 -k1,12960:18759417,43062593:249333 -k1,12960:19624787,43062593:249332 -k1,12960:21077361,43062593:249333 -k1,12960:22867444,43062593:249332 -k1,12960:24860690,43062593:249333 -k1,12960:26623249,43062593:249333 -k1,12960:27820232,43062593:249332 -k1,12960:29321958,43062593:249333 -k1,12960:32583029,43062593:0 -) -(1,12961:6630773,43904081:25952256,513147,134348 -k1,12960:9089960,43904081:193607 -k1,12960:10302653,43904081:193608 -(1,12960:10302653,43904081:0,414482,115847 -r1,12963:11716054,43904081:1413401,530329,115847 -k1,12960:10302653,43904081:-1413401 -) -(1,12960:10302653,43904081:1413401,414482,115847 -k1,12960:10302653,43904081:3277 -h1,12960:11712777,43904081:0,411205,112570 -) -k1,12960:11909661,43904081:193607 -k1,12960:12762560,43904081:193607 -k1,12960:14858677,43904081:193607 -k1,12960:15583782,43904081:193608 -k1,12960:16711932,43904081:193607 -k1,12960:17556967,43904081:193607 -k1,12960:18769659,43904081:193607 -k1,12960:20701282,43904081:193608 -k1,12960:21554181,43904081:193607 -k1,12960:22766873,43904081:193607 -k1,12960:25545875,43904081:193607 -k1,12960:28424493,43904081:193608 -k1,12960:30401335,43904081:193607 -k1,12960:32583029,43904081:0 -) -(1,12961:6630773,44745569:25952256,513147,126483 -k1,12960:7838396,44745569:188538 -(1,12960:7838396,44745569:0,414482,115847 -r1,12963:9251797,44745569:1413401,530329,115847 -k1,12960:7838396,44745569:-1413401 -) -(1,12960:7838396,44745569:1413401,414482,115847 -k1,12960:7838396,44745569:3277 -h1,12960:9248520,44745569:0,411205,112570 -) -k1,12960:9440336,44745569:188539 -k1,12960:10288166,44745569:188538 -k1,12960:12379215,44745569:188539 -k1,12960:13961704,44745569:188538 -(1,12960:13961704,44745569:0,452978,115847 -r1,12963:16078529,44745569:2116825,568825,115847 -k1,12960:13961704,44745569:-2116825 -) -(1,12960:13961704,44745569:2116825,452978,115847 -k1,12960:13961704,44745569:3277 -h1,12960:16075252,44745569:0,411205,112570 -) -k1,12960:16440738,44745569:188539 -k1,12960:17497628,44745569:188538 -k1,12960:18778652,44745569:188539 -k1,12960:19653352,44745569:188538 -k1,12960:23122623,44745569:188539 -k1,12960:25379477,44745569:188538 -k1,12960:26184054,44745569:188539 -k1,12960:27391677,44745569:188538 -k1,12960:30275712,44745569:188539 -k1,12960:31563944,44745569:188538 -k1,12960:32583029,44745569:0 -) -(1,12961:6630773,45587057:25952256,513147,134348 -k1,12960:8844817,45587057:145728 -k1,12960:9649837,45587057:145728 -k1,12960:12970128,45587057:145727 -k1,12960:14307301,45587057:145728 -k1,12960:15890234,45587057:145728 -k1,12960:16722124,45587057:145728 -k1,12960:17638555,45587057:145728 -k1,12960:20856610,45587057:145727 -k1,12960:21358198,45587057:145728 -k1,12960:24478605,45587057:145728 -k1,12960:26663813,45587057:145728 -k1,12960:27492426,45587057:145728 -k1,12960:28408856,45587057:145727 -k1,12960:28969374,45587057:145675 -k1,12960:32583029,45587057:0 -) -] -(1,12963:32583029,45706769:0,0,0 -g1,12963:32583029,45706769 -) -) -] -(1,12963:6630773,47279633:25952256,0,0 -h1,12963:6630773,47279633:25952256,0,0 -) -] -(1,12963:4262630,4025873:0,0,0 -[1,12963:-473656,4025873:0,0,0 -(1,12963:-473656,-710413:0,0,0 -(1,12963:-473656,-710413:0,0,0 -g1,12963:-473656,-710413 -) -g1,12963:-473656,-710413 -) -] -) -] -!18970 -}244 -Input:1819:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1820:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1821:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1822:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1823:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1824:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1825:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1826:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!748 -{245 -[1,13007:4262630,47279633:28320399,43253760,0 -(1,13007:4262630,4025873:0,0,0 -[1,13007:-473656,4025873:0,0,0 -(1,13007:-473656,-710413:0,0,0 -(1,13007:-473656,-644877:0,0,0 -k1,13007:-473656,-644877:-65536 -) -(1,13007:-473656,4736287:0,0,0 -k1,13007:-473656,4736287:5209943 -) -g1,13007:-473656,-710413 -) -] -) -[1,13007:6630773,47279633:25952256,43253760,0 -[1,13007:6630773,4812305:25952256,786432,0 -(1,13007:6630773,4812305:25952256,513147,134348 -(1,13007:6630773,4812305:25952256,513147,134348 -g1,13007:3078558,4812305 -[1,13007:3078558,4812305:0,0,0 -(1,13007:3078558,2439708:0,1703936,0 -k1,13007:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,13007:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,13007:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,13007:3078558,4812305:0,0,0 -(1,13007:3078558,2439708:0,1703936,0 -g1,13007:29030814,2439708 -g1,13007:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,13007:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,13007:37855564,2439708:1179648,16384,0 -) -) -k1,13007:3078556,2439708:-34777008 -) -] -[1,13007:3078558,4812305:0,0,0 -(1,13007:3078558,49800853:0,16384,2228224 -k1,13007:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,13007:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,13007:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,13007:3078558,4812305:0,0,0 -(1,13007:3078558,49800853:0,16384,2228224 -g1,13007:29030814,49800853 -g1,13007:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,13007:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,13007:37855564,49800853:1179648,16384,0 -) -) -k1,13007:3078556,49800853:-34777008 -) -] -g1,13007:6630773,4812305 -k1,13007:25712890,4812305:17886740 -g1,13007:29057847,4812305 -g1,13007:29873114,4812305 -) -) -] -[1,13007:6630773,45706769:25952256,40108032,0 -(1,13007:6630773,45706769:25952256,40108032,0 -(1,13007:6630773,45706769:0,0,0 -g1,13007:6630773,45706769 -) -[1,13007:6630773,45706769:25952256,40108032,0 -(1,12961:6630773,6254097:25952256,513147,126483 -k1,12960:8366153,6254097:247057 -k1,12960:9481561,6254097:247056 -k1,12960:10821103,6254097:247057 -(1,12960:10821103,6254097:0,414482,115847 -r1,13007:11179369,6254097:358266,530329,115847 -k1,12960:10821103,6254097:-358266 -) -(1,12960:10821103,6254097:358266,414482,115847 -k1,12960:10821103,6254097:3277 -h1,12960:11176092,6254097:0,411205,112570 -) -k1,12960:11426426,6254097:247057 -k1,12960:12864927,6254097:247056 -(1,12960:12864927,6254097:0,414482,115847 -r1,13007:13223193,6254097:358266,530329,115847 -k1,12960:12864927,6254097:-358266 -) -(1,12960:12864927,6254097:358266,414482,115847 -k1,12960:12864927,6254097:3277 -h1,12960:13219916,6254097:0,411205,112570 -) -k1,12960:13643920,6254097:247057 -k1,12960:14910062,6254097:247057 -k1,12960:17225435,6254097:247057 -k1,12960:18131783,6254097:247056 -k1,12960:19397925,6254097:247057 -k1,12960:20817421,6254097:247057 -k1,12960:24128941,6254097:247056 -k1,12960:25027426,6254097:247057 -k1,12960:27159954,6254097:247057 -k1,12960:28275362,6254097:247056 -k1,12960:29997634,6254097:247057 -k1,12960:32583029,6254097:0 -) -(1,12961:6630773,7095585:25952256,505283,122846 -g1,12960:8002441,7095585 -g1,12960:11043311,7095585 -g1,12960:11858578,7095585 -(1,12960:11858578,7095585:0,452978,115847 -r1,13007:13271979,7095585:1413401,568825,115847 -k1,12960:11858578,7095585:-1413401 -) -(1,12960:11858578,7095585:1413401,452978,115847 -k1,12960:11858578,7095585:3277 -h1,12960:13268702,7095585:0,411205,112570 -) -g1,12960:13644878,7095585 -(1,12960:13644878,7095585:0,452978,115847 -r1,13007:15058279,7095585:1413401,568825,115847 -k1,12960:13644878,7095585:-1413401 -) -(1,12960:13644878,7095585:1413401,452978,115847 -k1,12960:13644878,7095585:3277 -h1,12960:15055002,7095585:0,411205,112570 -) -g1,12960:15257508,7095585 -g1,12960:16648182,7095585 -(1,12960:16648182,7095585:0,414482,122846 -r1,13007:17709871,7095585:1061689,537328,122846 -k1,12960:16648182,7095585:-1061689 -) -(1,12960:16648182,7095585:1061689,414482,122846 -k1,12960:16648182,7095585:3277 -h1,12960:17706594,7095585:0,411205,112570 -) -k1,12961:32583029,7095585:14699488 -g1,12961:32583029,7095585 -) -v1,12963:6630773,8286051:0,393216,0 -(1,12973:6630773,12598215:25952256,4705380,196608 -g1,12973:6630773,12598215 -g1,12973:6630773,12598215 -g1,12973:6434165,12598215 -(1,12973:6434165,12598215:0,4705380,196608 -r1,13007:32779637,12598215:26345472,4901988,196608 -k1,12973:6434165,12598215:-26345472 -) -(1,12973:6434165,12598215:26345472,4705380,196608 -[1,12973:6630773,12598215:25952256,4508772,0 -(1,12965:6630773,8493669:25952256,404226,107478 -(1,12964:6630773,8493669:0,0,0 -g1,12964:6630773,8493669 -g1,12964:6630773,8493669 -g1,12964:6303093,8493669 -(1,12964:6303093,8493669:0,0,0 -) -g1,12964:6630773,8493669 -) -k1,12965:6630773,8493669:0 -g1,12965:10424522,8493669 -g1,12965:11056814,8493669 -k1,12965:11056814,8493669:0 -h1,12965:13269834,8493669:0,0,0 -k1,12965:32583030,8493669:19313196 -g1,12965:32583030,8493669 -) -(1,12966:6630773,9159847:25952256,404226,107478 -h1,12966:6630773,9159847:0,0,0 -g1,12966:6946919,9159847 -g1,12966:7263065,9159847 -g1,12966:7579211,9159847 -g1,12966:7895357,9159847 -g1,12966:8211503,9159847 -g1,12966:8527649,9159847 -g1,12966:8843795,9159847 -g1,12966:10740670,9159847 -g1,12966:11372962,9159847 -g1,12966:13269837,9159847 -g1,12966:13902129,9159847 -g1,12966:14534421,9159847 -g1,12966:16431295,9159847 -h1,12966:16747441,9159847:0,0,0 -k1,12966:32583029,9159847:15835588 -g1,12966:32583029,9159847 -) -(1,12967:6630773,9826025:25952256,404226,107478 -h1,12967:6630773,9826025:0,0,0 -g1,12967:6946919,9826025 -g1,12967:7263065,9826025 -g1,12967:11372959,9826025 -h1,12967:11689105,9826025:0,0,0 -k1,12967:32583029,9826025:20893924 -g1,12967:32583029,9826025 -) -(1,12968:6630773,10492203:25952256,404226,107478 -h1,12968:6630773,10492203:0,0,0 -g1,12968:6946919,10492203 -g1,12968:7263065,10492203 -g1,12968:9476086,10492203 -g1,12968:10108378,10492203 -g1,12968:12637544,10492203 -g1,12968:16747438,10492203 -g1,12968:18960458,10492203 -k1,12968:18960458,10492203:0 -h1,12968:21805769,10492203:0,0,0 -k1,12968:32583029,10492203:10777260 -g1,12968:32583029,10492203 -) -(1,12969:6630773,11158381:25952256,410518,107478 -h1,12969:6630773,11158381:0,0,0 -g1,12969:6946919,11158381 -g1,12969:7263065,11158381 -g1,12969:7579211,11158381 -g1,12969:7895357,11158381 -g1,12969:8211503,11158381 -g1,12969:8527649,11158381 -g1,12969:8843795,11158381 -g1,12969:9476087,11158381 -g1,12969:10108379,11158381 -g1,12969:12005253,11158381 -g1,12969:13269836,11158381 -g1,12969:19276604,11158381 -g1,12969:20541187,11158381 -k1,12969:20541187,11158381:0 -h1,12969:23386498,11158381:0,0,0 -k1,12969:32583029,11158381:9196531 -g1,12969:32583029,11158381 -) -(1,12970:6630773,11824559:25952256,404226,82312 -h1,12970:6630773,11824559:0,0,0 -g1,12970:6946919,11824559 -g1,12970:7263065,11824559 -g1,12970:7579211,11824559 -g1,12970:7895357,11824559 -g1,12970:8211503,11824559 -g1,12970:8527649,11824559 -g1,12970:8843795,11824559 -g1,12970:10740669,11824559 -g1,12970:11372961,11824559 -g1,12970:13585981,11824559 -g1,12970:15482855,11824559 -g1,12970:16747438,11824559 -g1,12970:18328167,11824559 -k1,12970:18328167,11824559:0 -h1,12970:20541187,11824559:0,0,0 -k1,12970:32583029,11824559:12041842 -g1,12970:32583029,11824559 -) -(1,12971:6630773,12490737:25952256,404226,107478 -h1,12971:6630773,12490737:0,0,0 -g1,12971:6946919,12490737 -g1,12971:7263065,12490737 -g1,12971:7579211,12490737 -g1,12971:7895357,12490737 -g1,12971:8211503,12490737 -g1,12971:8527649,12490737 -g1,12971:8843795,12490737 -g1,12971:11689106,12490737 -g1,12971:12321398,12490737 -g1,12971:15166709,12490737 -g1,12971:16747438,12490737 -g1,12971:18644312,12490737 -g1,12971:20541186,12490737 -g1,12971:21489623,12490737 -h1,12971:24651080,12490737:0,0,0 -k1,12971:32583029,12490737:7931949 -g1,12971:32583029,12490737 -) -] -) -g1,12973:32583029,12598215 -g1,12973:6630773,12598215 -g1,12973:6630773,12598215 -g1,12973:32583029,12598215 -g1,12973:32583029,12598215 -) -h1,12973:6630773,12794823:0,0,0 -(1,12976:6630773,22468313:25952256,9083666,0 -k1,12976:10523651,22468313:3892878 -h1,12975:10523651,22468313:0,0,0 -(1,12975:10523651,22468313:18166500,9083666,0 -(1,12975:10523651,22468313:18167376,9083688,0 -(1,12975:10523651,22468313:18167376,9083688,0 -(1,12975:10523651,22468313:0,9083688,0 -(1,12975:10523651,22468313:0,14208860,0 -(1,12975:10523651,22468313:28417720,14208860,0 -) -k1,12975:10523651,22468313:-28417720 -) -) -g1,12975:28691027,22468313 -) -) -) -g1,12976:28690151,22468313 -k1,12976:32583029,22468313:3892878 -) -v1,12983:6630773,23834089:0,393216,0 -(1,13000:6630773,41738789:25952256,18297916,616038 -g1,13000:6630773,41738789 -(1,13000:6630773,41738789:25952256,18297916,616038 -(1,13000:6630773,42354827:25952256,18913954,0 -[1,13000:6630773,42354827:25952256,18913954,0 -(1,13000:6630773,42328613:25952256,18861526,0 -r1,13007:6656987,42328613:26214,18861526,0 -[1,13000:6656987,42328613:25899828,18861526,0 -(1,13000:6656987,41738789:25899828,17681878,0 -[1,13000:7246811,41738789:24720180,17681878,0 -(1,12984:7246811,25079257:24720180,1022346,126483 -k1,12983:8776494,25079257:274170 -k1,12983:9868552,25079257:274169 -k1,12983:13291727,25079257:274170 -k1,12983:14181934,25079257:274169 -k1,12983:15044617,25079257:274170 -k1,12983:17016824,25079257:274169 -k1,12983:17646854,25079257:274170 -k1,12983:19601366,25079257:274169 -k1,12983:20407033,25079257:274170 -k1,12983:23693892,25079257:274169 -k1,12983:25824042,25079257:274170 -k1,12983:26454071,25079257:274169 -k1,12983:28408584,25079257:274170 -k1,12983:30720924,25079257:274170 -k1,12983:31611131,25079257:274169 -k1,12983:31966991,25079257:0 -) -(1,12984:7246811,25920745:24720180,505283,134348 -k1,12983:9928217,25920745:170066 -k1,12983:10781168,25920745:170066 -k1,12983:11307093,25920745:170065 -k1,12983:13127356,25920745:170066 -k1,12983:15983743,25920745:170066 -k1,12983:19340169,25920745:170066 -k1,12983:22511129,25920745:170066 -k1,12983:23037055,25920745:170066 -k1,12983:25719115,25920745:170065 -k1,12983:27569524,25920745:170066 -k1,12983:28843872,25920745:170066 -k1,12983:29761704,25920745:170066 -k1,12983:31966991,25920745:0 -) -(1,12984:7246811,26762233:24720180,505283,134348 -k1,12983:8130979,26762233:198006 -k1,12983:9099688,26762233:198006 -k1,12983:12370022,26762233:198006 -k1,12983:13219457,26762233:198007 -k1,12983:14165229,26762233:198006 -k1,12983:16948630,26762233:198006 -k1,12983:17798064,26762233:198006 -k1,12983:18766773,26762233:198006 -k1,12983:21891616,26762233:198006 -k1,12983:22717457,26762233:198006 -k1,12983:24617433,26762233:198006 -k1,12983:26944049,26762233:198007 -k1,12983:28161140,26762233:198006 -k1,12983:30369791,26762233:198006 -k1,12983:31219225,26762233:198006 -k1,12983:31966991,26762233:0 -) -(1,12984:7246811,27603721:24720180,513147,126483 -k1,12983:9786940,27603721:237849 -k1,12983:10840057,27603721:237849 -k1,12983:12144176,27603721:237848 -k1,12983:13912291,27603721:237849 -k1,12983:14801568,27603721:237849 -k1,12983:15787183,27603721:237849 -k1,12983:18063202,27603721:237849 -k1,12983:18987212,27603721:237848 -k1,12983:22066702,27603721:237849 -k1,12983:23194530,27603721:237849 -k1,12983:26352663,27603721:237849 -k1,12983:27206549,27603721:237848 -k1,12983:28463483,27603721:237849 -k1,12983:30090695,27603721:237849 -k1,12983:31966991,27603721:0 -) -(1,12984:7246811,28445209:24720180,513147,134348 -k1,12983:9716444,28445209:264346 -k1,12983:10666952,28445209:264346 -k1,12983:11702001,28445209:264346 -k1,12983:15038675,28445209:264346 -k1,12983:15954449,28445209:264346 -k1,12983:19499528,28445209:264347 -(1,12983:19499528,28445209:0,452978,115847 -r1,13007:20912929,28445209:1413401,568825,115847 -k1,12983:19499528,28445209:-1413401 -) -(1,12983:19499528,28445209:1413401,452978,115847 -k1,12983:19499528,28445209:3277 -h1,12983:20909652,28445209:0,411205,112570 -) -k1,12983:21350945,28445209:264346 -k1,12983:22995479,28445209:264346 -k1,12983:24364107,28445209:264346 -k1,12983:25914269,28445209:264346 -k1,12983:26926381,28445209:264346 -k1,12983:30399370,28445209:264346 -k1,12983:31966991,28445209:0 -) -(1,12984:7246811,29286697:24720180,505283,134348 -k1,12983:9125596,29286697:182058 -k1,12983:12322966,29286697:182059 -k1,12983:13993347,29286697:182058 -k1,12983:15043757,29286697:182058 -k1,12983:16503112,29286697:182058 -k1,12983:21994898,29286697:182059 -(1,12983:21994898,29286697:0,414482,122846 -r1,13007:23056587,29286697:1061689,537328,122846 -k1,12983:21994898,29286697:-1061689 -) -(1,12983:21994898,29286697:1061689,414482,122846 -k1,12983:21994898,29286697:3277 -h1,12983:23053310,29286697:0,411205,112570 -) -k1,12983:23238645,29286697:182058 -k1,12983:24230073,29286697:182058 -k1,12983:25431217,29286697:182059 -k1,12983:27713049,29286697:182058 -k1,12983:31966991,29286697:0 -) -(1,12984:7246811,30128185:24720180,505283,134348 -g1,12983:8502480,30128185 -g1,12983:11273997,30128185 -g1,12983:12234754,30128185 -g1,12983:15025277,30128185 -(1,12983:15025277,30128185:0,452978,115847 -r1,13007:16438678,30128185:1413401,568825,115847 -k1,12983:15025277,30128185:-1413401 -) -(1,12983:15025277,30128185:1413401,452978,115847 -k1,12983:15025277,30128185:3277 -h1,12983:16435401,30128185:0,411205,112570 -) -g1,12983:16637907,30128185 -g1,12983:17598664,30128185 -(1,12983:17598664,30128185:0,452978,115847 -r1,13007:18660353,30128185:1061689,568825,115847 -k1,12983:17598664,30128185:-1061689 -) -(1,12983:17598664,30128185:1061689,452978,115847 -k1,12983:17598664,30128185:3277 -h1,12983:18657076,30128185:0,411205,112570 -) -g1,12983:18859582,30128185 -g1,12983:21068800,30128185 -g1,12983:22287114,30128185 -g1,12983:23586037,30128185 -g1,12983:24436694,30128185 -(1,12983:24436694,30128185:0,452978,115847 -r1,13007:26201807,30128185:1765113,568825,115847 -k1,12983:24436694,30128185:-1765113 -) -(1,12983:24436694,30128185:1765113,452978,115847 -k1,12983:24436694,30128185:3277 -h1,12983:26198530,30128185:0,411205,112570 -) -k1,12984:31966991,30128185:5591514 -g1,12984:31966991,30128185 -) -v1,12986:7246811,31318651:0,393216,0 -(1,12991:7246811,32299925:24720180,1374490,196608 -g1,12991:7246811,32299925 -g1,12991:7246811,32299925 -g1,12991:7050203,32299925 -(1,12991:7050203,32299925:0,1374490,196608 -r1,13007:32163599,32299925:25113396,1571098,196608 -k1,12991:7050203,32299925:-25113396 -) -(1,12991:7050203,32299925:25113396,1374490,196608 -[1,12991:7246811,32299925:24720180,1177882,0 -(1,12988:7246811,31526269:24720180,404226,107478 -(1,12987:7246811,31526269:0,0,0 -g1,12987:7246811,31526269 -g1,12987:7246811,31526269 -g1,12987:6919131,31526269 -(1,12987:6919131,31526269:0,0,0 -) -g1,12987:7246811,31526269 -) -k1,12988:7246811,31526269:0 -g1,12988:11040560,31526269 -g1,12988:11672852,31526269 -g1,12988:14202018,31526269 -g1,12988:16098893,31526269 -g1,12988:16731185,31526269 -g1,12988:18311914,31526269 -g1,12988:18944206,31526269 -g1,12988:20524935,31526269 -g1,12988:21157227,31526269 -g1,12988:21789519,31526269 -g1,12988:23686393,31526269 -h1,12988:24002539,31526269:0,0,0 -k1,12988:31966991,31526269:7964452 -g1,12988:31966991,31526269 -) -(1,12989:7246811,32192447:24720180,404226,107478 -h1,12989:7246811,32192447:0,0,0 -g1,12989:7562957,32192447 -g1,12989:7879103,32192447 -k1,12989:7879103,32192447:0 -h1,12989:11672851,32192447:0,0,0 -k1,12989:31966991,32192447:20294140 -g1,12989:31966991,32192447 -) -] -) -g1,12991:31966991,32299925 -g1,12991:7246811,32299925 -g1,12991:7246811,32299925 -g1,12991:31966991,32299925 -g1,12991:31966991,32299925 -) -h1,12991:7246811,32496533:0,0,0 -(1,12994:7246811,41738789:24720180,8652432,0 -k1,12994:10954876,41738789:3708065 -h1,12993:10954876,41738789:0,0,0 -(1,12993:10954876,41738789:17304050,8652432,0 -(1,12993:10954876,41738789:17304906,8652453,0 -(1,12993:10954876,41738789:17304906,8652453,0 -(1,12993:10954876,41738789:0,8652453,0 -(1,12993:10954876,41738789:0,14208860,0 -(1,12993:10954876,41738789:28417720,14208860,0 -) -k1,12993:10954876,41738789:-28417720 -) -) -g1,12993:28259782,41738789 -) -) -) -g1,12994:28258926,41738789 -k1,12994:31966991,41738789:3708065 -) -] -) -] -r1,13007:32583029,42328613:26214,18861526,0 -) -] -) -) -g1,13000:32583029,41738789 -) -h1,13000:6630773,42354827:0,0,0 -(1,13004:6630773,43720603:25952256,513147,126483 -h1,13002:6630773,43720603:983040,0,0 -k1,13002:8804841,43720603:237479 -k1,13002:10146601,43720603:237478 -k1,13002:13951860,43720603:237479 -k1,13002:15208423,43720603:237478 -k1,13002:16835265,43720603:237479 -k1,13002:21909955,43720603:237478 -k1,13002:23833020,43720603:237479 -k1,13002:27160521,43720603:237478 -k1,13002:29253324,43720603:237479 -k1,13002:30176964,43720603:237478 -k1,13002:30770303,43720603:237479 -k1,13002:32583029,43720603:0 -) -(1,13004:6630773,44562091:25952256,505283,120913 -k1,13003:8733915,44562091:209152 -k1,13003:10172931,44562091:195667 -$1,13003:10172931,44562091 -$1,13003:10780450,44562091 -k1,13003:10976117,44562091:195667 -k1,13003:12126119,44562091:195667 -$1,13003:12126119,44562091 -$1,13003:12733638,44562091 -k1,13003:12929305,44562091:195667 -k1,13003:14191964,44562091:195667 -$1,13003:14191964,44562091 -$1,13003:14799483,44562091 -k1,13003:14995150,44562091:195667 -k1,13003:16145152,44562091:195667 -$1,13003:16145152,44562091 -$1,13003:16752671,44562091 -k1,13003:16948338,44562091:195667 -k1,13003:18753045,44562091:195667 -$1,13003:18753045,44562091 -$1,13003:19360564,44562091 -k1,13003:19556231,44562091:195667 -k1,13003:21178683,44562091:195668 -$1,13003:21178683,44562091 -$1,13003:21786202,44562091 -k1,13003:21981869,44562091:195667 -k1,13003:23131871,44562091:195667 -$1,13003:23131871,44562091 -$1,13003:23739390,44562091 -k1,13003:23935057,44562091:195667 -k1,13003:27180704,44562091:195667 -$1,13003:27180704,44562091 -$1,13003:27788223,44562091 -k1,13003:27983890,44562091:195667 -k1,13003:29973802,44562091:195667 -$1,13003:29973802,44562091 -$1,13003:30581321,44562091 -k1,13003:30776988,44562091:195667 -k1,13003:32583029,44562091:0 -) -(1,13004:6630773,45403579:25952256,454754,120913 -k1,13004:32583028,45403579:24201068 -g1,13004:32583028,45403579 -) -] -(1,13007:32583029,45706769:0,0,0 -g1,13007:32583029,45706769 -) -) -] -(1,13007:6630773,47279633:25952256,0,0 -h1,13007:6630773,47279633:25952256,0,0 -) -] -(1,13007:4262630,4025873:0,0,0 -[1,13007:-473656,4025873:0,0,0 -(1,13007:-473656,-710413:0,0,0 -(1,13007:-473656,-710413:0,0,0 -g1,13007:-473656,-710413 -) -g1,13007:-473656,-710413 -) -] -) -] -!19121 -}245 -Input:1827:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1828:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1829:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1830:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1831:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1832:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1833:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1834:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1835:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1836:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1837:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1024 -{246 -[1,13059:4262630,47279633:28320399,43253760,0 -(1,13059:4262630,4025873:0,0,0 -[1,13059:-473656,4025873:0,0,0 -(1,13059:-473656,-710413:0,0,0 -(1,13059:-473656,-644877:0,0,0 -k1,13059:-473656,-644877:-65536 -) -(1,13059:-473656,4736287:0,0,0 -k1,13059:-473656,4736287:5209943 -) -g1,13059:-473656,-710413 -) -] -) -[1,13059:6630773,47279633:25952256,43253760,0 -[1,13059:6630773,4812305:25952256,786432,0 -(1,13059:6630773,4812305:25952256,513147,134348 -(1,13059:6630773,4812305:25952256,513147,134348 -g1,13059:3078558,4812305 -[1,13059:3078558,4812305:0,0,0 -(1,13059:3078558,2439708:0,1703936,0 -k1,13059:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,13059:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,13059:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,13059:3078558,4812305:0,0,0 -(1,13059:3078558,2439708:0,1703936,0 -g1,13059:29030814,2439708 -g1,13059:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,13059:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,13059:37855564,2439708:1179648,16384,0 -) -) -k1,13059:3078556,2439708:-34777008 -) -] -[1,13059:3078558,4812305:0,0,0 -(1,13059:3078558,49800853:0,16384,2228224 -k1,13059:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,13059:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,13059:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,13059:3078558,4812305:0,0,0 -(1,13059:3078558,49800853:0,16384,2228224 -g1,13059:29030814,49800853 -g1,13059:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,13059:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,13059:37855564,49800853:1179648,16384,0 -) -) -k1,13059:3078556,49800853:-34777008 -) -] -g1,13059:6630773,4812305 -g1,13059:6630773,4812305 -g1,13059:10697281,4812305 -g1,13059:11496164,4812305 -g1,13059:12681054,4812305 -g1,13059:15925086,4812305 -g1,13059:16740353,4812305 -g1,13059:19649496,4812305 -k1,13059:31387652,4812305:11738156 -) -) -] -[1,13059:6630773,45706769:25952256,40108032,0 -(1,13059:6630773,45706769:25952256,40108032,0 -(1,13059:6630773,45706769:0,0,0 -g1,13059:6630773,45706769 -) -[1,13059:6630773,45706769:25952256,40108032,0 -(1,13007:6630773,6254097:25952256,513147,134348 -h1,13005:6630773,6254097:983040,0,0 -k1,13005:9335384,6254097:246356 -k1,13005:10241031,6254097:246355 -k1,13005:11506472,6254097:246356 -k1,13005:14621994,6254097:246356 -k1,13005:15527641,6254097:246355 -k1,13005:16793082,6254097:246356 -k1,13005:19942027,6254097:246355 -k1,13005:23893789,6254097:246356 -k1,13005:25995469,6254097:246356 -k1,13005:27342829,6254097:246355 -k1,13005:29820686,6254097:246356 -k1,13005:32583029,6254097:0 -) -(1,13007:6630773,7095585:25952256,513147,134348 -k1,13005:9444710,7095585:190531 -k1,13005:12834709,7095585:190531 -k1,13005:14216684,7095585:190530 -k1,13005:16158992,7095585:190531 -k1,13005:17008815,7095585:190531 -k1,13005:18218431,7095585:190531 -k1,13005:21601876,7095585:190531 -k1,13005:25232392,7095585:190531 -k1,13005:26614367,7095585:190530 -k1,13005:29487287,7095585:190531 -k1,13005:31725818,7095585:190531 -k1,13007:32583029,7095585:0 -) -(1,13007:6630773,7937073:25952256,513147,134348 -k1,13005:9572784,7937073:183601 -k1,13005:11040892,7937073:183602 -k1,13005:12328775,7937073:183601 -k1,13005:13260143,7937073:183602 -k1,13005:14956970,7937073:183601 -k1,13005:15792000,7937073:183602 -k1,13005:18237904,7937073:183601 -k1,13005:19930145,7937073:183602 -k1,13005:23047137,7937073:183601 -k1,13005:25063126,7937073:183602 -k1,13005:26238287,7937073:183601 -k1,13005:27707705,7937073:183602 -k1,13005:29541503,7937073:183601 -k1,13007:32583029,7937073:0 -) -(1,13007:6630773,8778561:25952256,505283,134348 -k1,13005:8306801,8778561:233581 -k1,13005:10284295,8778561:233581 -k1,13005:12593402,8778561:233582 -k1,13005:14855978,8778561:233581 -k1,13005:17704446,8778561:233581 -k1,13005:19327390,8778561:233581 -k1,13005:21850799,8778561:233581 -k1,13005:22770542,8778561:233581 -k1,13005:24282731,8778561:233582 -k1,13005:25202474,8778561:233581 -k1,13005:28107302,8778561:233581 -k1,13005:31478747,8778561:233581 -k1,13005:32583029,8778561:0 -) -(1,13007:6630773,9620049:25952256,513147,134348 -k1,13005:9033899,9620049:174247 -k1,13005:11218135,9620049:174247 -k1,13005:11748242,9620049:174247 -k1,13005:13795508,9620049:174247 -(1,13005:13795508,9620049:0,452978,122846 -r1,13059:15208909,9620049:1413401,575824,122846 -k1,13005:13795508,9620049:-1413401 -) -(1,13005:13795508,9620049:1413401,452978,122846 -k1,13005:13795508,9620049:3277 -h1,13005:15205632,9620049:0,411205,112570 -) -k1,13005:15383156,9620049:174247 -k1,13005:16834700,9620049:174247 -k1,13005:19142144,9620049:174247 -k1,13005:22181626,9620049:174248 -k1,13005:23547318,9620049:174247 -k1,13005:25102409,9620049:174247 -k1,13005:26772843,9620049:174247 -k1,13005:28051372,9620049:174247 -k1,13005:30186456,9620049:174247 -k1,13005:31643898,9620049:174247 -k1,13007:32583029,9620049:0 -) -(1,13007:6630773,10461537:25952256,505283,134348 -k1,13005:9650937,10461537:163450 -k1,13005:12647508,10461537:163450 -k1,13005:16455414,10461537:163449 -k1,13005:17810309,10461537:163450 -k1,13005:19440455,10461537:163450 -k1,13005:23037336,10461537:163450 -k1,13005:24483980,10461537:163449 -k1,13005:27862626,10461537:163450 -k1,13005:29762780,10461537:163450 -(1,13005:29762780,10461537:0,452978,122846 -r1,13059:32583029,10461537:2820249,575824,122846 -k1,13005:29762780,10461537:-2820249 -) -(1,13005:29762780,10461537:2820249,452978,122846 -k1,13005:29762780,10461537:3277 -h1,13005:32579752,10461537:0,411205,112570 -) -k1,13005:32583029,10461537:0 -) -(1,13007:6630773,11303025:25952256,513147,134348 -k1,13005:7597149,11303025:195673 -k1,13005:8546485,11303025:195672 -k1,13005:11370152,11303025:195673 -k1,13005:16304733,11303025:195673 -k1,13005:17448057,11303025:195673 -k1,13005:19933557,11303025:195672 -k1,13005:20788522,11303025:195673 -k1,13005:23217007,11303025:195673 -k1,13005:26175023,11303025:195673 -k1,13005:27938316,11303025:195672 -(1,13005:27938316,11303025:0,459977,115847 -r1,13059:31461988,11303025:3523672,575824,115847 -k1,13005:27938316,11303025:-3523672 -) -(1,13005:27938316,11303025:3523672,459977,115847 -k1,13005:27938316,11303025:3277 -h1,13005:31458711,11303025:0,411205,112570 -) -k1,13005:31657661,11303025:195673 -k1,13007:32583029,11303025:0 -) -(1,13007:6630773,12144513:25952256,513147,126483 -k1,13005:7767319,12144513:174477 -k1,13005:11146507,12144513:174477 -k1,13005:14190150,12144513:174477 -k1,13005:14980665,12144513:174477 -k1,13005:15511002,12144513:174477 -k1,13005:17671875,12144513:174477 -k1,13005:18950633,12144513:174476 -k1,13005:20410926,12144513:174477 -k1,13005:21333169,12144513:174477 -k1,13005:24342733,12144513:174477 -k1,13005:25708655,12144513:174477 -k1,13005:27166327,12144513:174477 -k1,13005:30266331,12144513:174477 -k1,13005:32583029,12144513:0 -) -(1,13007:6630773,12986001:25952256,513147,134348 -k1,13005:9443250,12986001:288686 -k1,13005:12093854,12986001:288686 -k1,13005:13573985,12986001:288686 -k1,13005:16193787,12986001:288686 -k1,13005:17436022,12986001:288686 -k1,13005:18857170,12986001:288686 -k1,13005:21815137,12986001:288686 -k1,13005:22719861,12986001:288686 -k1,13005:24027632,12986001:288686 -k1,13005:27534136,12986001:288686 -k1,13005:30431810,12986001:288686 -k1,13005:31379788,12986001:288686 -k1,13005:32583029,12986001:0 -) -(1,13007:6630773,13827489:25952256,513147,134348 -k1,13005:9237442,13827489:189046 -k1,13005:10756869,13827489:189046 -k1,13005:11597343,13827489:189046 -k1,13005:12878874,13827489:189046 -k1,13005:14087005,13827489:189046 -k1,13005:17178641,13827489:189046 -k1,13005:18026980,13827489:189047 -k1,13005:20935115,13827489:189046 -k1,13005:21775589,13827489:189046 -k1,13005:24988466,13827489:189046 -k1,13005:26879482,13827489:189046 -k1,13005:28784916,13827489:189046 -k1,13005:29633254,13827489:189046 -k1,13005:32583029,13827489:0 -) -(1,13007:6630773,14668977:25952256,505283,134348 -g1,13005:11189457,14668977 -g1,13005:14369263,14668977 -g1,13005:16218689,14668977 -g1,13005:19104239,14668977 -g1,13005:20911066,14668977 -g1,13005:22552742,14668977 -g1,13005:24495884,14668977 -g1,13005:25311151,14668977 -g1,13005:26529465,14668977 -g1,13005:29720413,14668977 -g1,13005:31948637,14668977 -k1,13007:32583029,14668977:634392 -g1,13007:32583029,14668977 -) -(1,13008:6630773,16760237:25952256,555811,147783 -(1,13008:6630773,16760237:2899444,534184,12975 -g1,13008:6630773,16760237 -g1,13008:9530217,16760237 -) -g1,13008:11535029,16760237 -g1,13008:12538517,16760237 -g1,13008:13260855,16760237 -k1,13008:32583029,16760237:16706763 -g1,13008:32583029,16760237 -) -(1,13011:6630773,17994941:25952256,505283,134348 -k1,13010:7852078,17994941:267756 -k1,13010:9224116,17994941:267756 -k1,13010:13084555,17994941:267755 -(1,13010:13084555,17994941:0,452978,122846 -r1,13059:14497956,17994941:1413401,575824,122846 -k1,13010:13084555,17994941:-1413401 -) -(1,13010:13084555,17994941:1413401,452978,122846 -k1,13010:13084555,17994941:3277 -h1,13010:14494679,17994941:0,411205,112570 -) -k1,13010:14765712,17994941:267756 -k1,13010:16310765,17994941:267756 -k1,13010:18868349,17994941:267756 -k1,13010:20327549,17994941:267755 -k1,13010:22103944,17994941:267756 -k1,13010:26299273,17994941:267756 -k1,13010:27183067,17994941:267756 -k1,13010:28469907,17994941:267755 -k1,13010:30391136,17994941:267756 -k1,13010:31896867,17994941:267756 -k1,13010:32583029,17994941:0 -) -(1,13011:6630773,18836429:25952256,513147,134348 -k1,13010:8507020,18836429:174277 -k1,13010:9096115,18836429:174252 -k1,13010:11733891,18836429:174278 -k1,13010:12861717,18836429:174277 -k1,13010:14140276,18836429:174277 -k1,13010:16725623,18836429:174277 -k1,13010:17709270,18836429:174277 -k1,13010:19522602,18836429:174277 -k1,13010:21432272,18836429:174277 -k1,13010:22625635,18836429:174278 -k1,13010:25876827,18836429:174277 -k1,13010:27242549,18836429:174277 -k1,13010:30201451,18836429:174277 -k1,13010:32583029,18836429:0 -) -(1,13011:6630773,19677917:25952256,513147,134348 -g1,13010:7777653,19677917 -g1,13010:8995967,19677917 -(1,13010:8995967,19677917:0,452978,122846 -r1,13059:10409368,19677917:1413401,575824,122846 -k1,13010:8995967,19677917:-1413401 -) -(1,13010:8995967,19677917:1413401,452978,122846 -k1,13010:8995967,19677917:3277 -h1,13010:10406091,19677917:0,411205,112570 -) -g1,13010:10608597,19677917 -g1,13010:12362995,19677917 -g1,13010:13942412,19677917 -g1,13010:16278115,19677917 -g1,13010:17302442,19677917 -g1,13010:18455220,19677917 -g1,13010:20142772,19677917 -g1,13010:21103529,19677917 -g1,13010:23336340,19677917 -g1,13010:23891429,19677917 -g1,13010:26116376,19677917 -g1,13010:27583071,19677917 -g1,13010:28138160,19677917 -k1,13011:32583029,19677917:1759859 -g1,13011:32583029,19677917 -) -v1,13013:6630773,20868383:0,393216,0 -(1,13019:6630773,22515835:25952256,2040668,196608 -g1,13019:6630773,22515835 -g1,13019:6630773,22515835 -g1,13019:6434165,22515835 -(1,13019:6434165,22515835:0,2040668,196608 -r1,13059:32779637,22515835:26345472,2237276,196608 -k1,13019:6434165,22515835:-26345472 -) -(1,13019:6434165,22515835:26345472,2040668,196608 -[1,13019:6630773,22515835:25952256,1844060,0 -(1,13015:6630773,21076001:25952256,404226,107478 -(1,13014:6630773,21076001:0,0,0 -g1,13014:6630773,21076001 -g1,13014:6630773,21076001 -g1,13014:6303093,21076001 -(1,13014:6303093,21076001:0,0,0 -) -g1,13014:6630773,21076001 -) -g1,13015:7263065,21076001 -g1,13015:8211503,21076001 -g1,13015:12005252,21076001 -g1,13015:12637544,21076001 -k1,13015:12637544,21076001:0 -h1,13015:14850564,21076001:0,0,0 -k1,13015:32583028,21076001:17732464 -g1,13015:32583028,21076001 -) -(1,13016:6630773,21742179:25952256,404226,107478 -h1,13016:6630773,21742179:0,0,0 -g1,13016:6946919,21742179 -g1,13016:7263065,21742179 -g1,13016:7579211,21742179 -g1,13016:7895357,21742179 -g1,13016:8211503,21742179 -g1,13016:8527649,21742179 -g1,13016:8843795,21742179 -g1,13016:10740670,21742179 -g1,13016:11372962,21742179 -g1,13016:13269837,21742179 -g1,13016:13902129,21742179 -g1,13016:14534421,21742179 -g1,13016:16431295,21742179 -h1,13016:16747441,21742179:0,0,0 -k1,13016:32583029,21742179:15835588 -g1,13016:32583029,21742179 -) -(1,13017:6630773,22408357:25952256,404226,107478 -h1,13017:6630773,22408357:0,0,0 -g1,13017:6946919,22408357 -g1,13017:7263065,22408357 -k1,13017:7263065,22408357:0 -h1,13017:11056813,22408357:0,0,0 -k1,13017:32583029,22408357:21526216 -g1,13017:32583029,22408357 -) -] -) -g1,13019:32583029,22515835 -g1,13019:6630773,22515835 -g1,13019:6630773,22515835 -g1,13019:32583029,22515835 -g1,13019:32583029,22515835 -) -h1,13019:6630773,22712443:0,0,0 -v1,13023:6630773,24602507:0,393216,0 -(1,13039:6630773,38228888:25952256,14019597,616038 -g1,13039:6630773,38228888 -(1,13039:6630773,38228888:25952256,14019597,616038 -(1,13039:6630773,38844926:25952256,14635635,0 -[1,13039:6630773,38844926:25952256,14635635,0 -(1,13039:6630773,38818712:25952256,14583207,0 -r1,13059:6656987,38818712:26214,14583207,0 -[1,13039:6656987,38818712:25899828,14583207,0 -(1,13039:6656987,38228888:25899828,13403559,0 -[1,13039:7246811,38228888:24720180,13403559,0 -(1,13025:7246811,25910865:24720180,1085536,298548 -(1,13023:7246811,25910865:0,1085536,298548 -r1,13059:8753226,25910865:1506415,1384084,298548 -k1,13023:7246811,25910865:-1506415 -) -(1,13023:7246811,25910865:1506415,1085536,298548 -) -k1,13023:9005893,25910865:252667 -k1,13023:9005893,25910865:0 -k1,13024:10455247,25910865:252667 -k1,13024:14073843,25910865:252667 -k1,13024:14985802,25910865:252667 -k1,13024:16515767,25910865:252668 -k1,13024:20802830,25910865:252667 -k1,13024:22246942,25910865:252667 -k1,13024:25596840,25910865:252667 -k1,13024:26381004,25910865:252667 -k1,13024:29437301,25910865:252667 -k1,13025:31966991,25910865:0 -) -(1,13025:7246811,26752353:24720180,513147,134348 -(1,13024:7246811,26752353:0,452978,122846 -r1,13059:8660212,26752353:1413401,575824,122846 -k1,13024:7246811,26752353:-1413401 -) -(1,13024:7246811,26752353:1413401,452978,122846 -k1,13024:7246811,26752353:3277 -h1,13024:8656935,26752353:0,411205,112570 -) -k1,13024:8929644,26752353:269432 -k1,13024:11488903,26752353:269431 -k1,13024:12749895,26752353:269432 -k1,13024:17693355,26752353:269432 -k1,13024:19508126,26752353:269432 -k1,13024:23726756,26752353:269431 -k1,13024:24352048,26752353:269432 -k1,13024:26131430,26752353:269432 -k1,13024:27060154,26752353:269432 -k1,13024:28348670,26752353:269431 -k1,13024:30007465,26752353:269432 -k1,13024:31966991,26752353:0 -) -(1,13025:7246811,27593841:24720180,505283,134348 -k1,13024:9704277,27593841:252179 -k1,13024:10642618,27593841:252179 -k1,13024:13967125,27593841:252179 -k1,13024:14750800,27593841:252178 -k1,13024:16814394,27593841:252179 -k1,13024:19076562,27593841:252179 -k1,13024:20347826,27593841:252179 -k1,13024:21877302,27593841:252179 -k1,13024:24262678,27593841:252179 -k1,13024:25142691,27593841:252178 -k1,13024:26413955,27593841:252179 -k1,13024:29327551,27593841:252179 -k1,13024:31608725,27593841:252179 -(1,13024:31608725,27593841:0,414482,115847 -r1,13059:31966991,27593841:358266,530329,115847 -k1,13024:31608725,27593841:-358266 -) -(1,13024:31608725,27593841:358266,414482,115847 -k1,13024:31608725,27593841:3277 -h1,13024:31963714,27593841:0,411205,112570 -) -k1,13024:31966991,27593841:0 -) -(1,13025:7246811,28435329:24720180,513147,126483 -k1,13024:8278802,28435329:270463 -k1,13024:10154898,28435329:270464 -k1,13024:12194178,28435329:270463 -k1,13024:13212407,28435329:270463 -k1,13024:15294286,28435329:270464 -k1,13024:16216177,28435329:270463 -k1,13024:16842500,28435329:270463 -k1,13024:18096004,28435329:270464 -k1,13024:19175837,28435329:270463 -k1,13024:20791099,28435329:270463 -k1,13024:22253008,28435329:270464 -k1,13024:24667809,28435329:270463 -k1,13024:26205739,28435329:270464 -k1,13024:26832062,28435329:270463 -k1,13024:28759275,28435329:270463 -k1,13024:29444510,28435329:270392 -k1,13024:31966991,28435329:0 -) -(1,13025:7246811,29276817:24720180,505283,134348 -k1,13024:8922294,29276817:208787 -k1,13024:9940451,29276817:208787 -k1,13024:12621911,29276817:208787 -k1,13024:16080627,29276817:208786 -k1,13024:17480859,29276817:208787 -k1,13024:20564710,29276817:208787 -k1,13024:21459659,29276817:208787 -k1,13024:23057154,29276817:208787 -k1,13024:23952103,29276817:208787 -k1,13024:26741041,29276817:208786 -k1,13024:29778361,29276817:208787 -k1,13024:31178593,29276817:208787 -k1,13024:31966991,29276817:0 -) -(1,13025:7246811,30118305:24720180,513147,134348 -k1,13024:11764446,30118305:171287 -k1,13024:12927293,30118305:171287 -k1,13024:16056221,30118305:171288 -k1,13024:18831909,30118305:171287 -k1,13024:23086089,30118305:171287 -k1,13024:23916668,30118305:171287 -k1,13024:26348292,30118305:171287 -k1,13024:26875439,30118305:171287 -k1,13024:28556677,30118305:171288 -k1,13024:29387256,30118305:171287 -k1,13024:30577628,30118305:171287 -k1,13024:31966991,30118305:0 -) -(1,13025:7246811,30959793:24720180,513147,134348 -k1,13024:8110895,30959793:248046 -k1,13024:9378026,30959793:248046 -k1,13024:10903369,30959793:248046 -k1,13024:13284612,30959793:248046 -k1,13024:14064155,30959793:248046 -k1,13024:15596707,30959793:248046 -k1,13024:18061181,30959793:248046 -k1,13024:19822453,30959793:248046 -k1,13024:21089584,30959793:248046 -k1,13024:23930234,30959793:248046 -k1,13024:24837572,30959793:248046 -k1,13024:25441478,30959793:248046 -(1,13024:25441478,30959793:0,452978,122846 -r1,13059:26854879,30959793:1413401,575824,122846 -k1,13024:25441478,30959793:-1413401 -) -(1,13024:25441478,30959793:1413401,452978,122846 -k1,13024:25441478,30959793:3277 -h1,13024:26851602,30959793:0,411205,112570 -) -k1,13024:27102925,30959793:248046 -k1,13024:29310497,30959793:248046 -k1,13024:30577628,30959793:248046 -k1,13024:31966991,30959793:0 -) -(1,13025:7246811,31801281:24720180,513147,134348 -k1,13024:9337829,31801281:214722 -k1,13024:11757838,31801281:214722 -k1,13024:12658722,31801281:214722 -k1,13024:15945772,31801281:214722 -k1,13024:16811922,31801281:214722 -(1,13024:16811922,31801281:0,452978,115847 -r1,13059:18225323,31801281:1413401,568825,115847 -k1,13024:16811922,31801281:-1413401 -) -(1,13024:16811922,31801281:1413401,452978,115847 -k1,13024:16811922,31801281:3277 -h1,13024:18222046,31801281:0,411205,112570 -) -k1,13024:18440045,31801281:214722 -k1,13024:20352806,31801281:214723 -k1,13024:21025625,31801281:214722 -k1,13024:22447520,31801281:214722 -k1,13024:25012363,31801281:214722 -k1,13024:26719995,31801281:214722 -k1,13024:27997711,31801281:214722 -k1,13024:29190886,31801281:214722 -k1,13024:31966991,31801281:0 -) -(1,13025:7246811,32642769:24720180,505283,134348 -g1,13024:8062078,32642769 -g1,13024:10110733,32642769 -g1,13024:13185026,32642769 -g1,13024:14991853,32642769 -g1,13024:17233839,32642769 -g1,13024:18301420,32642769 -g1,13024:21065728,32642769 -g1,13024:22284042,32642769 -g1,13024:23832002,32642769 -k1,13025:31966991,32642769:6001792 -g1,13025:31966991,32642769 -) -(1,13027:7246811,33484257:24720180,513147,134348 -h1,13026:7246811,33484257:983040,0,0 -k1,13026:9899641,33484257:190642 -(1,13026:9899641,33484257:0,452978,115847 -r1,13059:11664754,33484257:1765113,568825,115847 -k1,13026:9899641,33484257:-1765113 -) -(1,13026:9899641,33484257:1765113,452978,115847 -k1,13026:9899641,33484257:3277 -h1,13026:11661477,33484257:0,411205,112570 -) -k1,13026:11855397,33484257:190643 -k1,13026:12914391,33484257:190642 -k1,13026:14209316,33484257:190643 -k1,13026:16768429,33484257:190642 -k1,13026:17978157,33484257:190643 -k1,13026:21100224,33484257:190642 -k1,13026:21950158,33484257:190642 -k1,13026:23272608,33484257:190643 -k1,13026:23878085,33484257:190634 -k1,13026:26201924,33484257:190642 -k1,13026:29373144,33484257:190643 -k1,13026:31307699,33484257:190642 -k1,13026:31966991,33484257:0 -) -(1,13027:7246811,34325745:24720180,513147,134348 -k1,13026:9061735,34325745:259755 -(1,13026:9061735,34325745:0,452978,122846 -r1,13059:10475136,34325745:1413401,575824,122846 -k1,13026:9061735,34325745:-1413401 -) -(1,13026:9061735,34325745:1413401,452978,122846 -k1,13026:9061735,34325745:3277 -h1,13026:10471859,34325745:0,411205,112570 -) -k1,13026:10908562,34325745:259756 -k1,13026:12121866,34325745:259755 -k1,13026:13474106,34325745:259755 -(1,13026:13474106,34325745:0,452978,115847 -r1,13059:18052914,34325745:4578808,568825,115847 -k1,13026:13474106,34325745:-4578808 -) -(1,13026:13474106,34325745:4578808,452978,115847 -g1,13026:16994501,34325745 -g1,13026:17697925,34325745 -h1,13026:18049637,34325745:0,411205,112570 -) -k1,13026:18312670,34325745:259756 -k1,13026:19223853,34325745:259755 -k1,13026:21635810,34325745:259755 -k1,13026:22914650,34325745:259755 -k1,13026:25187672,34325745:259756 -k1,13026:26106719,34325745:259755 -k1,13026:28698900,34325745:259755 -k1,13026:30030825,34325745:259756 -k1,13026:30942008,34325745:259755 -k1,13026:31966991,34325745:0 -) -(1,13027:7246811,35167233:24720180,505283,134348 -k1,13026:9635850,35167233:217176 -k1,13026:11120492,35167233:217176 -k1,13026:12356753,35167233:217176 -k1,13026:14691398,35167233:217177 -k1,13026:15902100,35167233:217176 -k1,13026:17289749,35167233:217176 -k1,13026:18611207,35167233:217176 -k1,13026:21447202,35167233:217176 -k1,13026:22683463,35167233:217176 -k1,13026:24580983,35167233:217177 -k1,13026:27003446,35167233:217176 -k1,13026:27906784,35167233:217176 -k1,13026:28894663,35167233:217176 -k1,13026:31966991,35167233:0 -) -(1,13027:7246811,36008721:24720180,513147,126483 -g1,13026:8097468,36008721 -(1,13026:8097468,36008721:0,452978,115847 -r1,13059:11269428,36008721:3171960,568825,115847 -k1,13026:8097468,36008721:-3171960 -) -(1,13026:8097468,36008721:3171960,452978,115847 -k1,13026:8097468,36008721:3277 -h1,13026:11266151,36008721:0,411205,112570 -) -g1,13026:11468657,36008721 -g1,13026:12350771,36008721 -g1,13026:14688440,36008721 -g1,13026:16935669,36008721 -g1,13026:17923296,36008721 -k1,13027:31966991,36008721:11604445 -g1,13027:31966991,36008721 -) -v1,13032:7246811,37199187:0,393216,0 -(1,13036:7246811,37507992:24720180,702021,196608 -g1,13036:7246811,37507992 -g1,13036:7246811,37507992 -g1,13036:7050203,37507992 -(1,13036:7050203,37507992:0,702021,196608 -r1,13059:32163599,37507992:25113396,898629,196608 -k1,13036:7050203,37507992:-25113396 -) -(1,13036:7050203,37507992:25113396,702021,196608 -[1,13036:7246811,37507992:24720180,505413,0 -(1,13034:7246811,37406805:24720180,404226,101187 -(1,13033:7246811,37406805:0,0,0 -g1,13033:7246811,37406805 -g1,13033:7246811,37406805 -g1,13033:6919131,37406805 -(1,13033:6919131,37406805:0,0,0 -) -g1,13033:7246811,37406805 -) -k1,13034:7246811,37406805:0 -g1,13034:9459831,37406805 -g1,13034:12621288,37406805 -g1,13034:13253580,37406805 -h1,13034:13885872,37406805:0,0,0 -k1,13034:31966992,37406805:18081120 -g1,13034:31966992,37406805 -) -] -) -g1,13036:31966991,37507992 -g1,13036:7246811,37507992 -g1,13036:7246811,37507992 -g1,13036:31966991,37507992 -g1,13036:31966991,37507992 -) -h1,13036:7246811,37704600:0,0,0 -] -) -] -r1,13059:32583029,38818712:26214,14583207,0 -) -] -) -) -g1,13039:32583029,38228888 -) -h1,13039:6630773,38844926:0,0,0 -(1,13042:6630773,40210702:25952256,505283,126483 -h1,13041:6630773,40210702:983040,0,0 -k1,13041:9559218,40210702:162170 -k1,13041:10589740,40210702:162170 -k1,13041:12265136,40210702:162170 -k1,13041:13043345,40210702:162171 -k1,13041:14224600,40210702:162170 -k1,13041:17141248,40210702:162170 -k1,13041:19582105,40210702:162170 -k1,13041:22490889,40210702:162170 -(1,13041:22490889,40210702:0,414482,115847 -r1,13059:22849155,40210702:358266,530329,115847 -k1,13041:22490889,40210702:-358266 -) -(1,13041:22490889,40210702:358266,414482,115847 -k1,13041:22490889,40210702:3277 -h1,13041:22845878,40210702:0,411205,112570 -) -k1,13041:23011325,40210702:162170 -k1,13041:23824923,40210702:162170 -k1,13041:26923762,40210702:162171 -k1,13041:28105017,40210702:162170 -k1,13041:30048456,40210702:162170 -k1,13041:31078978,40210702:162170 -k1,13041:32583029,40210702:0 -) -(1,13042:6630773,41052190:25952256,505283,134348 -k1,13041:9864040,41052190:179289 -k1,13041:10852699,41052190:179289 -k1,13041:15333116,41052190:179289 -k1,13041:15927228,41052190:179269 -k1,13041:18570015,41052190:179289 -k1,13041:19377139,41052190:179289 -k1,13041:20575513,41052190:179289 -k1,13041:22408275,41052190:179289 -k1,13041:23999210,41052190:179289 -k1,13041:25046851,41052190:179289 -k1,13041:26330422,41052190:179289 -k1,13041:28920781,41052190:179289 -k1,13041:29909440,41052190:179289 -k1,13041:31900144,41052190:179289 -k1,13041:32583029,41052190:0 -) -(1,13042:6630773,41893678:25952256,505283,134348 -g1,13041:9589068,41893678 -k1,13042:32583030,41893678:20530464 -g1,13042:32583030,41893678 -) -v1,13044:6630773,43084144:0,393216,0 -(1,13049:6630773,43954793:25952256,1263865,196608 -g1,13049:6630773,43954793 -g1,13049:6630773,43954793 -g1,13049:6434165,43954793 -(1,13049:6434165,43954793:0,1263865,196608 -r1,13059:32779637,43954793:26345472,1460473,196608 -k1,13049:6434165,43954793:-26345472 -) -(1,13049:6434165,43954793:26345472,1263865,196608 -[1,13049:6630773,43954793:25952256,1067257,0 -(1,13046:6630773,43181137:25952256,293601,101187 -(1,13045:6630773,43181137:0,0,0 -g1,13045:6630773,43181137 -g1,13045:6630773,43181137 -g1,13045:6303093,43181137 -(1,13045:6303093,43181137:0,0,0 -) -g1,13045:6630773,43181137 -) -g1,13046:7263065,43181137 -h1,13046:7579211,43181137:0,0,0 -k1,13046:32583029,43181137:25003818 -g1,13046:32583029,43181137 -) -(1,13047:6630773,43847315:25952256,410518,107478 -h1,13047:6630773,43847315:0,0,0 -g1,13047:6946919,43847315 -g1,13047:7263065,43847315 -g1,13047:12637542,43847315 -g1,13047:13269834,43847315 -g1,13047:15799000,43847315 -g1,13047:18012020,43847315 -g1,13047:18644312,43847315 -g1,13047:20541187,43847315 -g1,13047:23070353,43847315 -g1,13047:23702645,43847315 -g1,13047:24334937,43847315 -g1,13047:24967229,43847315 -h1,13047:25599520,43847315:0,0,0 -k1,13047:32583029,43847315:6983509 -g1,13047:32583029,43847315 -) -] -) -g1,13049:32583029,43954793 -g1,13049:6630773,43954793 -g1,13049:6630773,43954793 -g1,13049:32583029,43954793 -g1,13049:32583029,43954793 -) -h1,13049:6630773,44151401:0,0,0 -] -(1,13059:32583029,45706769:0,0,0 -g1,13059:32583029,45706769 -) -) -] -(1,13059:6630773,47279633:25952256,0,0 -h1,13059:6630773,47279633:25952256,0,0 -) -] -(1,13059:4262630,4025873:0,0,0 -[1,13059:-473656,4025873:0,0,0 -(1,13059:-473656,-710413:0,0,0 -(1,13059:-473656,-710413:0,0,0 -g1,13059:-473656,-710413 -) -g1,13059:-473656,-710413 -) -] -) -] -!26847 -}246 -Input:1838:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1839:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1840:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1841:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1842:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1843:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!564 -{247 -[1,13098:4262630,47279633:28320399,43253760,0 -(1,13098:4262630,4025873:0,0,0 -[1,13098:-473656,4025873:0,0,0 -(1,13098:-473656,-710413:0,0,0 -(1,13098:-473656,-644877:0,0,0 -k1,13098:-473656,-644877:-65536 -) -(1,13098:-473656,4736287:0,0,0 -k1,13098:-473656,4736287:5209943 -) -g1,13098:-473656,-710413 -) -] -) -[1,13098:6630773,47279633:25952256,43253760,0 -[1,13098:6630773,4812305:25952256,786432,0 -(1,13098:6630773,4812305:25952256,513147,134348 -(1,13098:6630773,4812305:25952256,513147,134348 -g1,13098:3078558,4812305 -[1,13098:3078558,4812305:0,0,0 -(1,13098:3078558,2439708:0,1703936,0 -k1,13098:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,13098:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,13098:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,13098:3078558,4812305:0,0,0 -(1,13098:3078558,2439708:0,1703936,0 -g1,13098:29030814,2439708 -g1,13098:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,13098:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,13098:37855564,2439708:1179648,16384,0 -) -) -k1,13098:3078556,2439708:-34777008 -) -] -[1,13098:3078558,4812305:0,0,0 -(1,13098:3078558,49800853:0,16384,2228224 -k1,13098:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,13098:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,13098:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,13098:3078558,4812305:0,0,0 -(1,13098:3078558,49800853:0,16384,2228224 -g1,13098:29030814,49800853 -g1,13098:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,13098:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,13098:37855564,49800853:1179648,16384,0 -) -) -k1,13098:3078556,49800853:-34777008 -) -] -g1,13098:6630773,4812305 -k1,13098:25712890,4812305:17886740 -g1,13098:29057847,4812305 -g1,13098:29873114,4812305 -) -) -] -[1,13098:6630773,45706769:25952256,40108032,0 -(1,13098:6630773,45706769:25952256,40108032,0 -(1,13098:6630773,45706769:0,0,0 -g1,13098:6630773,45706769 -) -[1,13098:6630773,45706769:25952256,40108032,0 -(1,13052:6630773,14682403:25952256,9083666,0 -k1,13052:10523651,14682403:3892878 -h1,13051:10523651,14682403:0,0,0 -(1,13051:10523651,14682403:18166500,9083666,0 -(1,13051:10523651,14682403:18167376,9083688,0 -(1,13051:10523651,14682403:18167376,9083688,0 -(1,13051:10523651,14682403:0,9083688,0 -(1,13051:10523651,14682403:0,14208860,0 -(1,13051:10523651,14682403:28417720,14208860,0 -) -k1,13051:10523651,14682403:-28417720 -) -) -g1,13051:28691027,14682403 -) -) -) -g1,13052:28690151,14682403 -k1,13052:32583029,14682403:3892878 -) -v1,13059:6630773,16048179:0,393216,0 -(1,13060:6630773,18334211:25952256,2679248,616038 -g1,13060:6630773,18334211 -(1,13060:6630773,18334211:25952256,2679248,616038 -(1,13060:6630773,18950249:25952256,3295286,0 -[1,13060:6630773,18950249:25952256,3295286,0 -(1,13060:6630773,18924035:25952256,3242858,0 -r1,13098:6656987,18924035:26214,3242858,0 -[1,13060:6656987,18924035:25899828,3242858,0 -(1,13060:6656987,18334211:25899828,2063210,0 -[1,13060:7246811,18334211:24720180,2063210,0 -(1,13060:7246811,17358375:24720180,1087374,134348 -k1,13059:8642225,17358375:185711 -k1,13059:12240396,17358375:185711 -k1,13059:13445192,17358375:185711 -k1,13059:16622622,17358375:185711 -k1,13059:17424371,17358375:185711 -k1,13059:18629167,17358375:185711 -k1,13059:21569356,17358375:185711 -k1,13059:24207424,17358375:185711 -k1,13059:26128528,17358375:185711 -(1,13059:26128528,17358375:0,414482,115847 -r1,13098:26486794,17358375:358266,530329,115847 -k1,13059:26128528,17358375:-358266 -) -(1,13059:26128528,17358375:358266,414482,115847 -k1,13059:26128528,17358375:3277 -h1,13059:26483517,17358375:0,411205,112570 -) -k1,13059:26672505,17358375:185711 -k1,13059:29239794,17358375:185711 -k1,13059:31280829,17358375:185711 -k1,13059:31966991,17358375:0 -) -(1,13060:7246811,18199863:24720180,513147,134348 -g1,13059:7801900,18199863 -g1,13059:9619213,18199863 -g1,13059:12145625,18199863 -g1,13059:13004146,18199863 -g1,13059:15835956,18199863 -g1,13059:17486807,18199863 -g1,13059:18963333,18199863 -g1,13059:20730183,18199863 -k1,13060:31966991,18199863:8749717 -g1,13060:31966991,18199863 -) -] -) -] -r1,13098:32583029,18924035:26214,3242858,0 -) -] -) -) -g1,13060:32583029,18334211 -) -h1,13060:6630773,18950249:0,0,0 -v1,13063:6630773,20316025:0,393216,0 -(1,13089:6630773,39424094:25952256,19501285,616038 -g1,13089:6630773,39424094 -(1,13089:6630773,39424094:25952256,19501285,616038 -(1,13089:6630773,40040132:25952256,20117323,0 -[1,13089:6630773,40040132:25952256,20117323,0 -(1,13089:6630773,40013918:25952256,20064895,0 -r1,13098:6656987,40013918:26214,20064895,0 -[1,13089:6656987,40013918:25899828,20064895,0 -(1,13089:6656987,39424094:25899828,18885247,0 -[1,13089:7246811,39424094:24720180,18885247,0 -(1,13064:7246811,21561193:24720180,1022346,134348 -k1,13063:8738971,21561193:236647 -k1,13063:9603454,21561193:236648 -k1,13063:10859186,21561193:236647 -k1,13063:14087553,21561193:236648 -k1,13063:16179524,21561193:236647 -k1,13063:17284524,21561193:236648 -k1,13063:18996386,21561193:236647 -k1,13063:20742984,21561193:236648 -k1,13063:23167223,21561193:236647 -k1,13063:26273037,21561193:236648 -k1,13063:27666394,21561193:236647 -k1,13063:28664570,21561193:236648 -k1,13063:30231598,21561193:236647 -k1,13063:31966991,21561193:0 -) -(1,13064:7246811,22402681:24720180,505283,134348 -k1,13063:8493368,22402681:227472 -(1,13063:8493368,22402681:0,414482,115847 -r1,13098:8851634,22402681:358266,530329,115847 -k1,13063:8493368,22402681:-358266 -) -(1,13063:8493368,22402681:358266,414482,115847 -k1,13063:8493368,22402681:3277 -h1,13063:8848357,22402681:0,411205,112570 -) -k1,13063:9079106,22402681:227472 -k1,13063:12226863,22402681:227473 -k1,13063:12924228,22402681:227472 -k1,13063:13683197,22402681:227472 -k1,13063:15196485,22402681:227472 -k1,13063:18053918,22402681:227473 -k1,13063:18932818,22402681:227472 -k1,13063:20357633,22402681:227472 -k1,13063:23256352,22402681:227472 -k1,13063:27411397,22402681:227472 -k1,13063:28254908,22402681:227473 -k1,13063:28838240,22402681:227472 -k1,13063:30938731,22402681:227472 -k1,13064:31966991,22402681:0 -) -(1,13064:7246811,23244169:24720180,513147,134348 -k1,13063:9729455,23244169:223618 -k1,13063:11688466,23244169:223618 -k1,13063:12267944,23244169:223618 -k1,13063:13658759,23244169:223619 -k1,13063:15263221,23244169:223618 -k1,13063:16018336,23244169:223618 -k1,13063:18392846,23244169:223618 -k1,13063:20314502,23244169:223618 -k1,13063:21406472,23244169:223618 -k1,13063:23178706,23244169:223618 -k1,13063:24053753,23244169:223619 -k1,13063:25668045,23244169:223618 -k1,13063:27156508,23244169:223618 -k1,13063:28039418,23244169:223618 -k1,13063:31966991,23244169:0 -) -(1,13064:7246811,24085657:24720180,505283,134348 -k1,13063:8074343,24085657:211494 -k1,13063:8641697,24085657:211494 -k1,13063:11364531,24085657:211494 -k1,13063:12300854,24085657:211495 -k1,13063:13198510,24085657:211494 -k1,13063:14061432,24085657:211494 -k1,13063:16001110,24085657:211494 -k1,13063:17851659,24085657:211494 -k1,13063:18679191,24085657:211494 -k1,13063:21561932,24085657:211494 -k1,13063:23554696,24085657:211495 -k1,13063:25147034,24085657:211494 -k1,13063:27079503,24085657:211494 -k1,13063:29493662,24085657:211494 -k1,13063:31966991,24085657:0 -) -(1,13064:7246811,24927145:24720180,513147,126483 -g1,13063:11164553,24927145 -g1,13063:12555227,24927145 -g1,13063:13858738,24927145 -g1,13063:15773700,24927145 -g1,13063:19380146,24927145 -g1,13063:20230803,24927145 -g1,13063:20785892,24927145 -g1,13063:21919664,24927145 -g1,13063:22778185,24927145 -g1,13063:25179424,24927145 -g1,13063:26986251,24927145 -g1,13063:28968715,24927145 -k1,13064:31966991,24927145:954208 -g1,13064:31966991,24927145 -) -v1,13066:7246811,26117611:0,393216,0 -(1,13072:7246811,27765063:24720180,2040668,196608 -g1,13072:7246811,27765063 -g1,13072:7246811,27765063 -g1,13072:7050203,27765063 -(1,13072:7050203,27765063:0,2040668,196608 -r1,13098:32163599,27765063:25113396,2237276,196608 -k1,13072:7050203,27765063:-25113396 -) -(1,13072:7050203,27765063:25113396,2040668,196608 -[1,13072:7246811,27765063:24720180,1844060,0 -(1,13068:7246811,26325229:24720180,404226,101187 -(1,13067:7246811,26325229:0,0,0 -g1,13067:7246811,26325229 -g1,13067:7246811,26325229 -g1,13067:6919131,26325229 -(1,13067:6919131,26325229:0,0,0 -) -g1,13067:7246811,26325229 -) -g1,13068:10092122,26325229 -g1,13068:11040560,26325229 -k1,13068:11040560,26325229:0 -h1,13068:12621289,26325229:0,0,0 -k1,13068:31966991,26325229:19345702 -g1,13068:31966991,26325229 -) -(1,13069:7246811,26991407:24720180,410518,107478 -h1,13069:7246811,26991407:0,0,0 -g1,13069:7562957,26991407 -g1,13069:7879103,26991407 -g1,13069:13253580,26991407 -g1,13069:13885872,26991407 -g1,13069:16415038,26991407 -g1,13069:18628058,26991407 -g1,13069:19260350,26991407 -g1,13069:21157225,26991407 -g1,13069:23686391,26991407 -g1,13069:24318683,26991407 -g1,13069:24950975,26991407 -g1,13069:25583267,26991407 -k1,13069:25583267,26991407:0 -h1,13069:26531704,26991407:0,0,0 -k1,13069:31966991,26991407:5435287 -g1,13069:31966991,26991407 -) -(1,13070:7246811,27657585:24720180,404226,107478 -h1,13070:7246811,27657585:0,0,0 -g1,13070:7562957,27657585 -g1,13070:7879103,27657585 -k1,13070:7879103,27657585:0 -h1,13070:12937434,27657585:0,0,0 -k1,13070:31966990,27657585:19029556 -g1,13070:31966990,27657585 -) -] -) -g1,13072:31966991,27765063 -g1,13072:7246811,27765063 -g1,13072:7246811,27765063 -g1,13072:31966991,27765063 -g1,13072:31966991,27765063 -) -h1,13072:7246811,27961671:0,0,0 -v1,13076:7246811,29676425:0,393216,0 -(1,13080:7246811,29985230:24720180,702021,196608 -g1,13080:7246811,29985230 -g1,13080:7246811,29985230 -g1,13080:7050203,29985230 -(1,13080:7050203,29985230:0,702021,196608 -r1,13098:32163599,29985230:25113396,898629,196608 -k1,13080:7050203,29985230:-25113396 -) -(1,13080:7050203,29985230:25113396,702021,196608 -[1,13080:7246811,29985230:24720180,505413,0 -(1,13078:7246811,29884043:24720180,404226,101187 -(1,13077:7246811,29884043:0,0,0 -g1,13077:7246811,29884043 -g1,13077:7246811,29884043 -g1,13077:6919131,29884043 -(1,13077:6919131,29884043:0,0,0 -) -g1,13077:7246811,29884043 -) -g1,13078:7879103,29884043 -g1,13078:8511395,29884043 -h1,13078:11040560,29884043:0,0,0 -k1,13078:31966992,29884043:20926432 -g1,13078:31966992,29884043 -) -] -) -g1,13080:31966991,29985230 -g1,13080:7246811,29985230 -g1,13080:7246811,29985230 -g1,13080:31966991,29985230 -g1,13080:31966991,29985230 -) -h1,13080:7246811,30181838:0,0,0 -(1,13083:7246811,39424094:24720180,8652432,0 -k1,13083:10954876,39424094:3708065 -h1,13082:10954876,39424094:0,0,0 -(1,13082:10954876,39424094:17304050,8652432,0 -(1,13082:10954876,39424094:17304906,8652453,0 -(1,13082:10954876,39424094:17304906,8652453,0 -(1,13082:10954876,39424094:0,8652453,0 -(1,13082:10954876,39424094:0,14208860,0 -(1,13082:10954876,39424094:28417720,14208860,0 -) -k1,13082:10954876,39424094:-28417720 -) -) -g1,13082:28259782,39424094 -) -) -) -g1,13083:28258926,39424094 -k1,13083:31966991,39424094:3708065 -) -] -) -] -r1,13098:32583029,40013918:26214,20064895,0 -) -] -) -) -g1,13089:32583029,39424094 -) -h1,13089:6630773,40040132:0,0,0 -(1,13092:6630773,42655680:25952256,555811,147783 -(1,13092:6630773,42655680:2899444,534184,12975 -g1,13092:6630773,42655680 -g1,13092:9530217,42655680 -) -g1,13092:13263017,42655680 -g1,13092:14213158,42655680 -k1,13092:32583029,42655680:14746648 -g1,13092:32583029,42655680 -) -(1,13096:6630773,43890384:25952256,513147,134348 -k1,13095:7393325,43890384:134717 -k1,13095:8547128,43890384:134718 -k1,13095:10048926,43890384:134717 -k1,13095:10842936,43890384:134718 -k1,13095:13102330,43890384:134717 -k1,13095:15018317,43890384:134718 -k1,13095:17007703,43890384:134717 -k1,13095:17951791,43890384:134718 -k1,13095:19475871,43890384:134717 -k1,13095:22750418,43890384:134717 -k1,13095:23501174,43890384:134718 -k1,13095:23991751,43890384:134717 -k1,13095:25999488,43890384:134718 -k1,13095:27523568,43890384:134717 -k1,13095:29708252,43890384:134718 -k1,13095:30862054,43890384:134717 -k1,13095:32583029,43890384:0 -) -(1,13096:6630773,44731872:25952256,505283,134348 -k1,13095:8378710,44731872:247163 -k1,13095:9157371,44731872:247164 -k1,13095:10055962,44731872:247163 -k1,13095:11799313,44731872:247164 -k1,13095:12402336,44731872:247163 -k1,13095:13926797,44731872:247164 -k1,13095:14860122,44731872:247163 -k1,13095:18197308,44731872:247163 -k1,13095:20473467,44731872:247164 -k1,13095:23148084,44731872:247163 -k1,13095:24165951,44731872:247164 -k1,13095:27659112,44731872:247163 -(1,13095:27659112,44731872:0,414482,115847 -r1,13098:29775937,44731872:2116825,530329,115847 -k1,13095:27659112,44731872:-2116825 -) -(1,13095:27659112,44731872:2116825,414482,115847 -k1,13095:27659112,44731872:3277 -h1,13095:29772660,44731872:0,411205,112570 -) -k1,13095:30023101,44731872:247164 -k1,13095:30886302,44731872:247163 -k1,13095:32583029,44731872:0 -) -(1,13096:6630773,45573360:25952256,513147,126483 -k1,13095:10067261,45573360:271099 -k1,13095:10989787,45573360:271098 -k1,13095:12279971,45573360:271099 -(1,13095:12279971,45573360:0,452978,115847 -r1,13098:13693372,45573360:1413401,568825,115847 -k1,13095:12279971,45573360:-1413401 -) -(1,13095:12279971,45573360:1413401,452978,115847 -k1,13095:12279971,45573360:3277 -h1,13095:13690095,45573360:0,411205,112570 -) -k1,13095:13964470,45573360:271098 -k1,13095:17516301,45573360:271099 -k1,13095:18454555,45573360:271098 -(1,13095:18454555,45573360:0,452978,122846 -r1,13098:21274804,45573360:2820249,575824,122846 -k1,13095:18454555,45573360:-2820249 -) -(1,13095:18454555,45573360:2820249,452978,122846 -k1,13095:18454555,45573360:3277 -h1,13095:21271527,45573360:0,411205,112570 -) -k1,13095:21719573,45573360:271099 -k1,13095:23462610,45573360:271098 -k1,13095:25938996,45573360:271099 -k1,13095:26826132,45573360:271098 -k1,13095:28300472,45573360:271099 -k1,13095:29809545,45573360:271098 -k1,13095:32583029,45573360:0 -) -] -(1,13098:32583029,45706769:0,0,0 -g1,13098:32583029,45706769 -) -) -] -(1,13098:6630773,47279633:25952256,0,0 -h1,13098:6630773,47279633:25952256,0,0 -) -] -(1,13098:4262630,4025873:0,0,0 -[1,13098:-473656,4025873:0,0,0 -(1,13098:-473656,-710413:0,0,0 -(1,13098:-473656,-710413:0,0,0 -g1,13098:-473656,-710413 -) -g1,13098:-473656,-710413 -) -] -) -] -!15047 -}247 -Input:1844:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1845:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1846:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1847:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1848:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1849:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!564 -{248 -[1,13173:4262630,47279633:28320399,43253760,0 -(1,13173:4262630,4025873:0,0,0 -[1,13173:-473656,4025873:0,0,0 -(1,13173:-473656,-710413:0,0,0 -(1,13173:-473656,-644877:0,0,0 -k1,13173:-473656,-644877:-65536 -) -(1,13173:-473656,4736287:0,0,0 -k1,13173:-473656,4736287:5209943 -) -g1,13173:-473656,-710413 -) -] -) -[1,13173:6630773,47279633:25952256,43253760,0 -[1,13173:6630773,4812305:25952256,786432,0 -(1,13173:6630773,4812305:25952256,513147,134348 -(1,13173:6630773,4812305:25952256,513147,134348 -g1,13173:3078558,4812305 -[1,13173:3078558,4812305:0,0,0 -(1,13173:3078558,2439708:0,1703936,0 -k1,13173:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,13173:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,13173:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,13173:3078558,4812305:0,0,0 -(1,13173:3078558,2439708:0,1703936,0 -g1,13173:29030814,2439708 -g1,13173:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,13173:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,13173:37855564,2439708:1179648,16384,0 -) -) -k1,13173:3078556,2439708:-34777008 -) -] -[1,13173:3078558,4812305:0,0,0 -(1,13173:3078558,49800853:0,16384,2228224 -k1,13173:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,13173:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,13173:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,13173:3078558,4812305:0,0,0 -(1,13173:3078558,49800853:0,16384,2228224 -g1,13173:29030814,49800853 -g1,13173:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,13173:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,13173:37855564,49800853:1179648,16384,0 -) -) -k1,13173:3078556,49800853:-34777008 -) -] -g1,13173:6630773,4812305 -g1,13173:6630773,4812305 -g1,13173:10697281,4812305 -g1,13173:11496164,4812305 -g1,13173:12681054,4812305 -g1,13173:15925086,4812305 -g1,13173:16740353,4812305 -g1,13173:19649496,4812305 -k1,13173:31387652,4812305:11738156 -) -) -] -[1,13173:6630773,45706769:25952256,40108032,0 -(1,13173:6630773,45706769:25952256,40108032,0 -(1,13173:6630773,45706769:0,0,0 -g1,13173:6630773,45706769 -) -[1,13173:6630773,45706769:25952256,40108032,0 -(1,13096:6630773,6254097:25952256,513147,134348 -k1,13095:7866433,6254097:216575 -k1,13095:10348587,6254097:216574 -k1,13095:11512813,6254097:216575 -k1,13095:12495503,6254097:216574 -k1,13095:14600170,6254097:216575 -k1,13095:15432782,6254097:216574 -k1,13095:16668442,6254097:216575 -k1,13095:18335983,6254097:216574 -k1,13095:19749245,6254097:216575 -k1,13095:21619292,6254097:216574 -k1,13095:24117175,6254097:216575 -k1,13095:24985177,6254097:216574 -k1,13095:26220837,6254097:216575 -k1,13095:29509739,6254097:216574 -k1,13095:31931601,6254097:216575 -k1,13096:32583029,6254097:0 -) -(1,13096:6630773,7095585:25952256,452978,122846 -(1,13095:6630773,7095585:0,452978,122846 -r1,13173:9099310,7095585:2468537,575824,122846 -k1,13095:6630773,7095585:-2468537 -) -(1,13095:6630773,7095585:2468537,452978,122846 -k1,13095:6630773,7095585:3277 -h1,13095:9096033,7095585:0,411205,112570 -) -k1,13096:32583028,7095585:23310048 -g1,13096:32583028,7095585 -) -v1,13098:6630773,8286051:0,393216,0 -(1,13104:6630773,9933503:25952256,2040668,196608 -g1,13104:6630773,9933503 -g1,13104:6630773,9933503 -g1,13104:6434165,9933503 -(1,13104:6434165,9933503:0,2040668,196608 -r1,13173:32779637,9933503:26345472,2237276,196608 -k1,13104:6434165,9933503:-26345472 -) -(1,13104:6434165,9933503:26345472,2040668,196608 -[1,13104:6630773,9933503:25952256,1844060,0 -(1,13100:6630773,8493669:25952256,404226,107478 -(1,13099:6630773,8493669:0,0,0 -g1,13099:6630773,8493669 -g1,13099:6630773,8493669 -g1,13099:6303093,8493669 -(1,13099:6303093,8493669:0,0,0 -) -g1,13099:6630773,8493669 -) -k1,13100:6630773,8493669:0 -g1,13100:10424522,8493669 -g1,13100:11056814,8493669 -k1,13100:11056814,8493669:0 -h1,13100:13269834,8493669:0,0,0 -k1,13100:32583030,8493669:19313196 -g1,13100:32583030,8493669 -) -(1,13101:6630773,9159847:25952256,404226,107478 -h1,13101:6630773,9159847:0,0,0 -g1,13101:6946919,9159847 -g1,13101:7263065,9159847 -g1,13101:7579211,9159847 -g1,13101:7895357,9159847 -g1,13101:8211503,9159847 -g1,13101:8527649,9159847 -g1,13101:8843795,9159847 -g1,13101:11372961,9159847 -g1,13101:12005253,9159847 -g1,13101:13902128,9159847 -g1,13101:14534420,9159847 -g1,13101:16431295,9159847 -g1,13101:17063587,9159847 -g1,13101:17695879,9159847 -g1,13101:19592753,9159847 -h1,13101:19908899,9159847:0,0,0 -k1,13101:32583029,9159847:12674130 -g1,13101:32583029,9159847 -) -(1,13102:6630773,9826025:25952256,404226,107478 -h1,13102:6630773,9826025:0,0,0 -g1,13102:6946919,9826025 -g1,13102:7263065,9826025 -k1,13102:7263065,9826025:0 -h1,13102:11056813,9826025:0,0,0 -k1,13102:32583029,9826025:21526216 -g1,13102:32583029,9826025 -) -] -) -g1,13104:32583029,9933503 -g1,13104:6630773,9933503 -g1,13104:6630773,9933503 -g1,13104:32583029,9933503 -g1,13104:32583029,9933503 -) -h1,13104:6630773,10130111:0,0,0 -(1,13108:6630773,11495887:25952256,513147,134348 -h1,13107:6630773,11495887:983040,0,0 -k1,13107:10837398,11495887:288883 -k1,13107:12145365,11495887:288882 -k1,13107:15336838,11495887:288883 -k1,13107:16285012,11495887:288882 -k1,13107:19292984,11495887:288883 -k1,13107:23865299,11495887:288882 -k1,13107:25173267,11495887:288883 -k1,13107:28765164,11495887:288882 -k1,13107:29713339,11495887:288883 -k1,13107:31391584,11495887:288882 -k1,13107:32583029,11495887:0 -) -(1,13108:6630773,12337375:25952256,505283,134348 -k1,13107:9906459,12337375:137822 -k1,13107:13115298,12337375:137822 -k1,13107:13904548,12337375:137822 -k1,13107:17235284,12337375:137822 -k1,13107:19434868,12337375:137821 -k1,13107:21777977,12337375:137822 -k1,13107:22567227,12337375:137822 -k1,13107:25558487,12337375:137822 -k1,13107:26379194,12337375:137822 -k1,13107:30024503,12337375:137822 -k1,13107:32583029,12337375:0 -) -(1,13108:6630773,13178863:25952256,513147,134348 -k1,13107:8433079,13178863:293667 -(1,13107:8433079,13178863:0,452978,122846 -r1,13173:10901616,13178863:2468537,575824,122846 -k1,13107:8433079,13178863:-2468537 -) -(1,13107:8433079,13178863:2468537,452978,122846 -k1,13107:8433079,13178863:3277 -h1,13107:10898339,13178863:0,411205,112570 -) -k1,13107:11195284,13178863:293668 -k1,13107:13617560,13178863:293667 -k1,13107:17365631,13178863:293668 -k1,13107:18287133,13178863:293667 -k1,13107:19784041,13178863:293667 -k1,13107:21618460,13178863:293668 -k1,13107:23656040,13178863:293667 -k1,13107:27087571,13178863:293667 -k1,13107:28315782,13178863:293668 -k1,13107:29225487,13178863:293667 -k1,13107:30538240,13178863:293668 -k1,13107:31931601,13178863:293667 -k1,13108:32583029,13178863:0 -) -(1,13108:6630773,14020351:25952256,513147,134348 -(1,13107:6630773,14020351:0,452978,122846 -r1,13173:9451022,14020351:2820249,575824,122846 -k1,13107:6630773,14020351:-2820249 -) -(1,13107:6630773,14020351:2820249,452978,122846 -k1,13107:6630773,14020351:3277 -h1,13107:9447745,14020351:0,411205,112570 -) -k1,13107:9768671,14020351:143979 -k1,13107:10378611,14020351:143979 -k1,13107:13102087,14020351:143979 -k1,13107:14237626,14020351:143979 -k1,13107:17862222,14020351:143979 -k1,13107:18767729,14020351:143979 -k1,13107:22314337,14020351:143979 -k1,13107:24663603,14020351:143979 -k1,13107:25459010,14020351:143979 -k1,13107:28795903,14020351:143979 -k1,13107:31001645,14020351:143979 -k1,13108:32583029,14020351:0 -) -(1,13108:6630773,14861839:25952256,513147,134348 -g1,13107:7820251,14861839 -g1,13107:8477577,14861839 -g1,13107:11306766,14861839 -g1,13107:12157423,14861839 -g1,13107:13852839,14861839 -g1,13107:15071153,14861839 -g1,13107:16923855,14861839 -g1,13107:18400381,14861839 -g1,13107:19285772,14861839 -k1,13108:32583029,14861839:10808200 -g1,13108:32583029,14861839 -) -v1,13110:6630773,16052305:0,393216,0 -(1,13116:6630773,17699757:25952256,2040668,196608 -g1,13116:6630773,17699757 -g1,13116:6630773,17699757 -g1,13116:6434165,17699757 -(1,13116:6434165,17699757:0,2040668,196608 -r1,13173:32779637,17699757:26345472,2237276,196608 -k1,13116:6434165,17699757:-26345472 -) -(1,13116:6434165,17699757:26345472,2040668,196608 -[1,13116:6630773,17699757:25952256,1844060,0 -(1,13112:6630773,16259923:25952256,404226,107478 -(1,13111:6630773,16259923:0,0,0 -g1,13111:6630773,16259923 -g1,13111:6630773,16259923 -g1,13111:6303093,16259923 -(1,13111:6303093,16259923:0,0,0 -) -g1,13111:6630773,16259923 -) -k1,13112:6630773,16259923:0 -g1,13112:9476084,16259923 -h1,13112:9792230,16259923:0,0,0 -k1,13112:32583030,16259923:22790800 -g1,13112:32583030,16259923 -) -(1,13113:6630773,16926101:25952256,404226,107478 -h1,13113:6630773,16926101:0,0,0 -g1,13113:6946919,16926101 -g1,13113:7263065,16926101 -g1,13113:12321397,16926101 -g1,13113:12953689,16926101 -k1,13113:12953689,16926101:0 -h1,13113:15166709,16926101:0,0,0 -k1,13113:32583029,16926101:17416320 -g1,13113:32583029,16926101 -) -(1,13114:6630773,17592279:25952256,404226,107478 -h1,13114:6630773,17592279:0,0,0 -g1,13114:6946919,17592279 -g1,13114:7263065,17592279 -g1,13114:7579211,17592279 -g1,13114:7895357,17592279 -g1,13114:8211503,17592279 -g1,13114:8527649,17592279 -g1,13114:8843795,17592279 -g1,13114:9159941,17592279 -g1,13114:9476087,17592279 -g1,13114:9792233,17592279 -g1,13114:10108379,17592279 -g1,13114:10424525,17592279 -g1,13114:10740671,17592279 -g1,13114:13269837,17592279 -g1,13114:13902129,17592279 -g1,13114:15799004,17592279 -g1,13114:16431296,17592279 -g1,13114:18328171,17592279 -g1,13114:18960463,17592279 -g1,13114:19592755,17592279 -h1,13114:21173483,17592279:0,0,0 -k1,13114:32583029,17592279:11409546 -g1,13114:32583029,17592279 -) -] -) -g1,13116:32583029,17699757 -g1,13116:6630773,17699757 -g1,13116:6630773,17699757 -g1,13116:32583029,17699757 -g1,13116:32583029,17699757 -) -h1,13116:6630773,17896365:0,0,0 -(1,13120:6630773,19262141:25952256,513147,134348 -h1,13119:6630773,19262141:983040,0,0 -k1,13119:9003092,19262141:192592 -k1,13119:11461263,19262141:192591 -k1,13119:14461417,19262141:192592 -k1,13119:15758290,19262141:192591 -k1,13119:17236698,19262141:192592 -k1,13119:18177056,19262141:192592 -k1,13119:20335072,19262141:192591 -k1,13119:22942010,19262141:192592 -k1,13119:24528553,19262141:192592 -k1,13119:25740229,19262141:192591 -(1,13119:25740229,19262141:0,414482,115847 -r1,13173:26098495,19262141:358266,530329,115847 -k1,13119:25740229,19262141:-358266 -) -(1,13119:25740229,19262141:358266,414482,115847 -k1,13119:25740229,19262141:3277 -h1,13119:26095218,19262141:0,411205,112570 -) -k1,13119:26291087,19262141:192592 -k1,13119:29403962,19262141:192591 -k1,13119:31923737,19262141:192592 -k1,13119:32583029,19262141:0 -) -(1,13120:6630773,20103629:25952256,505283,134348 -g1,13119:8568017,20103629 -g1,13119:10972533,20103629 -g1,13119:11857924,20103629 -g1,13119:12827856,20103629 -g1,13119:16099413,20103629 -g1,13119:16950070,20103629 -(1,13119:16950070,20103629:0,452978,122846 -r1,13173:19770319,20103629:2820249,575824,122846 -k1,13119:16950070,20103629:-2820249 -) -(1,13119:16950070,20103629:2820249,452978,122846 -k1,13119:16950070,20103629:3277 -h1,13119:19767042,20103629:0,411205,112570 -) -k1,13120:32583029,20103629:12639040 -g1,13120:32583029,20103629 -) -v1,13122:6630773,21294095:0,393216,0 -(1,13128:6630773,22941547:25952256,2040668,196608 -g1,13128:6630773,22941547 -g1,13128:6630773,22941547 -g1,13128:6434165,22941547 -(1,13128:6434165,22941547:0,2040668,196608 -r1,13173:32779637,22941547:26345472,2237276,196608 -k1,13128:6434165,22941547:-26345472 -) -(1,13128:6434165,22941547:26345472,2040668,196608 -[1,13128:6630773,22941547:25952256,1844060,0 -(1,13124:6630773,21501713:25952256,404226,107478 -(1,13123:6630773,21501713:0,0,0 -g1,13123:6630773,21501713 -g1,13123:6630773,21501713 -g1,13123:6303093,21501713 -(1,13123:6303093,21501713:0,0,0 -) -g1,13123:6630773,21501713 -) -k1,13124:6630773,21501713:0 -g1,13124:10424522,21501713 -g1,13124:11056814,21501713 -g1,13124:13585980,21501713 -h1,13124:13902126,21501713:0,0,0 -k1,13124:32583030,21501713:18680904 -g1,13124:32583030,21501713 -) -(1,13125:6630773,22167891:25952256,404226,107478 -h1,13125:6630773,22167891:0,0,0 -g1,13125:6946919,22167891 -g1,13125:7263065,22167891 -g1,13125:9159940,22167891 -g1,13125:9792232,22167891 -g1,13125:11689107,22167891 -g1,13125:12321399,22167891 -g1,13125:12953691,22167891 -g1,13125:14534420,22167891 -h1,13125:14850566,22167891:0,0,0 -k1,13125:32583030,22167891:17732464 -g1,13125:32583030,22167891 -) -(1,13126:6630773,22834069:25952256,404226,107478 -h1,13126:6630773,22834069:0,0,0 -g1,13126:6946919,22834069 -g1,13126:7263065,22834069 -k1,13126:7263065,22834069:0 -h1,13126:11056813,22834069:0,0,0 -k1,13126:32583029,22834069:21526216 -g1,13126:32583029,22834069 -) -] -) -g1,13128:32583029,22941547 -g1,13128:6630773,22941547 -g1,13128:6630773,22941547 -g1,13128:32583029,22941547 -g1,13128:32583029,22941547 -) -h1,13128:6630773,23138155:0,0,0 -(1,13132:6630773,24503931:25952256,513147,134348 -h1,13131:6630773,24503931:983040,0,0 -k1,13131:8274896,24503931:191190 -k1,13131:8997584,24503931:191191 -k1,13131:10655470,24503931:191190 -k1,13131:13476620,24503931:191190 -k1,13131:14319238,24503931:191190 -k1,13131:15985644,24503931:191191 -k1,13131:16532694,24503931:191190 -k1,13131:18989464,24503931:191190 -k1,13131:21988216,24503931:191190 -k1,13131:23127058,24503931:191191 -k1,13131:24337333,24503931:191190 -k1,13131:26411372,24503931:191190 -k1,13131:28053529,24503931:191190 -k1,13131:29316889,24503931:191191 -k1,13131:30317449,24503931:191190 -k1,13131:32583029,24503931:0 -) -(1,13132:6630773,25345419:25952256,505283,7863 -k1,13132:32583029,25345419:24389222 -g1,13132:32583029,25345419 -) -v1,13134:6630773,26535885:0,393216,0 -(1,13140:6630773,28183337:25952256,2040668,196608 -g1,13140:6630773,28183337 -g1,13140:6630773,28183337 -g1,13140:6434165,28183337 -(1,13140:6434165,28183337:0,2040668,196608 -r1,13173:32779637,28183337:26345472,2237276,196608 -k1,13140:6434165,28183337:-26345472 -) -(1,13140:6434165,28183337:26345472,2040668,196608 -[1,13140:6630773,28183337:25952256,1844060,0 -(1,13136:6630773,26743503:25952256,404226,107478 -(1,13135:6630773,26743503:0,0,0 -g1,13135:6630773,26743503 -g1,13135:6630773,26743503 -g1,13135:6303093,26743503 -(1,13135:6303093,26743503:0,0,0 -) -g1,13135:6630773,26743503 -) -k1,13136:6630773,26743503:0 -g1,13136:9476084,26743503 -h1,13136:9792230,26743503:0,0,0 -k1,13136:32583030,26743503:22790800 -g1,13136:32583030,26743503 -) -(1,13137:6630773,27409681:25952256,404226,107478 -h1,13137:6630773,27409681:0,0,0 -g1,13137:6946919,27409681 -g1,13137:7263065,27409681 -g1,13137:9159940,27409681 -g1,13137:9792232,27409681 -g1,13137:11689107,27409681 -g1,13137:12321399,27409681 -g1,13137:12953691,27409681 -g1,13137:14534420,27409681 -h1,13137:14850566,27409681:0,0,0 -k1,13137:32583030,27409681:17732464 -g1,13137:32583030,27409681 -) -(1,13138:6630773,28075859:25952256,404226,107478 -h1,13138:6630773,28075859:0,0,0 -g1,13138:6946919,28075859 -g1,13138:7263065,28075859 -g1,13138:12321397,28075859 -g1,13138:12953689,28075859 -h1,13138:15166709,28075859:0,0,0 -k1,13138:32583029,28075859:17416320 -g1,13138:32583029,28075859 -) -] -) -g1,13140:32583029,28183337 -g1,13140:6630773,28183337 -g1,13140:6630773,28183337 -g1,13140:32583029,28183337 -g1,13140:32583029,28183337 -) -h1,13140:6630773,28379945:0,0,0 -(1,13144:6630773,29745721:25952256,513147,134348 -h1,13143:6630773,29745721:983040,0,0 -k1,13143:8427006,29745721:185358 -k1,13143:10309090,29745721:185357 -k1,13143:13659837,29745721:185358 -k1,13143:14864279,29745721:185357 -k1,13143:16326934,29745721:185358 -k1,13143:19070161,29745721:185357 -k1,13143:22920292,29745721:185358 -k1,13143:24177819,29745721:185358 -k1,13143:25566417,29745721:185357 -k1,13143:28725799,29745721:185358 -k1,13143:29527194,29745721:185357 -k1,13143:30731637,29745721:185358 -k1,13144:32583029,29745721:0 -) -(1,13144:6630773,30587209:25952256,513147,134348 -k1,13143:8074279,30587209:179316 -k1,13143:10439222,30587209:179317 -k1,13143:11234576,30587209:179316 -k1,13143:13021491,30587209:179317 -k1,13143:16562804,30587209:179316 -k1,13143:19413368,30587209:179317 -k1,13143:21654447,30587209:179316 -k1,13143:22781415,30587209:179317 -k1,13143:24412353,30587209:179316 -k1,13143:26149461,30587209:179317 -k1,13143:26980205,30587209:179316 -k1,13143:28252007,30587209:179317 -k1,13143:31193666,30587209:179316 -k1,13143:32583029,30587209:0 -) -(1,13144:6630773,31428697:25952256,513147,134348 -g1,13143:7512887,31428697 -g1,13143:8067976,31428697 -g1,13143:11029548,31428697 -k1,13144:32583029,31428697:18572248 -g1,13144:32583029,31428697 -) -v1,13146:6630773,32794473:0,393216,0 -(1,13173:6630773,45077420:25952256,12676163,589824 -g1,13173:6630773,45077420 -(1,13173:6630773,45077420:25952256,12676163,589824 -(1,13173:6630773,45667244:25952256,13265987,0 -[1,13173:6630773,45667244:25952256,13265987,0 -(1,13173:6630773,45667244:25952256,13239773,0 -r1,13173:6656987,45667244:26214,13239773,0 -[1,13173:6656987,45667244:25899828,13239773,0 -(1,13173:6656987,45077420:25899828,12060125,0 -[1,13173:7246811,45077420:24720180,12060125,0 -(1,13147:7246811,34179180:24720180,1161885,196608 -(1,13146:7246811,34179180:0,1161885,196608 -r1,13173:8794447,34179180:1547636,1358493,196608 -k1,13146:7246811,34179180:-1547636 -) -(1,13146:7246811,34179180:1547636,1161885,196608 -) -k1,13146:8941707,34179180:147260 -k1,13146:10285654,34179180:147260 -k1,13146:13505242,34179180:147260 -k1,13146:15857790,34179180:147261 -k1,13146:16656478,34179180:147260 -k1,13146:20084470,34179180:147260 -(1,13146:20084470,34179180:0,452978,115847 -r1,13173:21497871,34179180:1413401,568825,115847 -k1,13146:20084470,34179180:-1413401 -) -(1,13146:20084470,34179180:1413401,452978,115847 -k1,13146:20084470,34179180:3277 -h1,13146:21494594,34179180:0,411205,112570 -) -k1,13146:21645131,34179180:147260 -k1,13146:22451683,34179180:147260 -k1,13146:22954803,34179180:147260 -k1,13146:24659854,34179180:147260 -k1,13146:27676281,34179180:147261 -k1,13146:28927823,34179180:147260 -k1,13146:29822849,34179180:147260 -k1,13146:30325969,34179180:147260 -k1,13147:31966991,34179180:0 -) -(1,13147:7246811,35020668:24720180,513147,126483 -k1,13146:8724997,35020668:210720 -k1,13146:11262900,35020668:210720 -k1,13146:12132912,35020668:210720 -k1,13146:12699493,35020668:210721 -k1,13146:14299576,35020668:210720 -k1,13146:16386592,35020668:210720 -k1,13146:17063273,35020668:210720 -k1,13146:18293078,35020668:210720 -k1,13146:19781095,35020668:210720 -k1,13146:22693864,35020668:210720 -k1,13146:25170164,35020668:210720 -k1,13146:26943919,35020668:210721 -k1,13146:27782474,35020668:210720 -k1,13146:29196435,35020668:210720 -k1,13146:30947906,35020668:210720 -k1,13146:31966991,35020668:0 -) -(1,13147:7246811,35862156:24720180,513147,134348 -k1,13146:10095258,35862156:152951 -k1,13146:10779706,35862156:152951 -k1,13146:13304405,35862156:152951 -k1,13146:14108783,35862156:152950 -k1,13146:15280819,35862156:152951 -k1,13146:17699350,35862156:152951 -k1,13146:19241664,35862156:152951 -k1,13146:20586060,35862156:152951 -k1,13146:22361027,35862156:152951 -k1,13146:24524622,35862156:152950 -k1,13146:25033433,35862156:152951 -k1,13146:26575747,35862156:152951 -k1,13146:28604994,35862156:152951 -k1,13146:31966991,35862156:0 -) -(1,13147:7246811,36703644:24720180,513147,126483 -k1,13146:8817476,36703644:181302 -k1,13146:9650206,36703644:181302 -k1,13146:10579274,36703644:181302 -k1,13146:12273802,36703644:181302 -k1,13146:13071142,36703644:181302 -k1,13146:14271529,36703644:181302 -k1,13146:16184292,36703644:181302 -k1,13146:17853917,36703644:181302 -k1,13146:18248193,36703644:181284 -k1,13146:19521980,36703644:181302 -k1,13146:20473985,36703644:181302 -k1,13146:24356105,36703644:181302 -k1,13146:27232903,36703644:181302 -k1,13146:29795783,36703644:181302 -k1,13146:31966991,36703644:0 -) -(1,13147:7246811,37545132:24720180,513147,134348 -g1,13146:8518209,37545132 -g1,13146:9073298,37545132 -g1,13146:11968023,37545132 -g1,13146:13271534,37545132 -g1,13146:14756579,37545132 -g1,13146:15703574,37545132 -g1,13146:18108090,37545132 -g1,13146:18993481,37545132 -g1,13146:22265038,37545132 -g1,13146:23225795,37545132 -k1,13147:31966991,37545132:6829511 -g1,13147:31966991,37545132 -) -v1,13149:7246811,38735598:0,393216,0 -(1,13157:7246811,41683949:24720180,3341567,196608 -g1,13157:7246811,41683949 -g1,13157:7246811,41683949 -g1,13157:7050203,41683949 -(1,13157:7050203,41683949:0,3341567,196608 -r1,13173:32163599,41683949:25113396,3538175,196608 -k1,13157:7050203,41683949:-25113396 -) -(1,13157:7050203,41683949:25113396,3341567,196608 -[1,13157:7246811,41683949:24720180,3144959,0 -(1,13151:7246811,38943216:24720180,404226,107478 -(1,13150:7246811,38943216:0,0,0 -g1,13150:7246811,38943216 -g1,13150:7246811,38943216 -g1,13150:6919131,38943216 -(1,13150:6919131,38943216:0,0,0 -) -g1,13150:7246811,38943216 -) -k1,13151:7246811,38943216:0 -g1,13151:11040560,38943216 -g1,13151:11672852,38943216 -k1,13151:11672852,38943216:0 -h1,13151:13885872,38943216:0,0,0 -k1,13151:31966992,38943216:18081120 -g1,13151:31966992,38943216 -) -(1,13152:7246811,39609394:24720180,404226,107478 -h1,13152:7246811,39609394:0,0,0 -g1,13152:7562957,39609394 -g1,13152:7879103,39609394 -g1,13152:8195249,39609394 -g1,13152:8511395,39609394 -g1,13152:8827541,39609394 -g1,13152:9143687,39609394 -g1,13152:9459833,39609394 -g1,13152:11988999,39609394 -g1,13152:12621291,39609394 -g1,13152:14518166,39609394 -g1,13152:15150458,39609394 -g1,13152:17047333,39609394 -g1,13152:17679625,39609394 -g1,13152:18311917,39609394 -g1,13152:20208791,39609394 -h1,13152:20524937,39609394:0,0,0 -k1,13152:31966991,39609394:11442054 -g1,13152:31966991,39609394 -) -(1,13153:7246811,40275572:24720180,404226,107478 -h1,13153:7246811,40275572:0,0,0 -g1,13153:7562957,40275572 -g1,13153:7879103,40275572 -g1,13153:12937435,40275572 -g1,13153:13569727,40275572 -g1,13153:14518165,40275572 -h1,13153:14834311,40275572:0,0,0 -k1,13153:31966991,40275572:17132680 -g1,13153:31966991,40275572 -) -(1,13154:7246811,40941750:24720180,410518,107478 -h1,13154:7246811,40941750:0,0,0 -g1,13154:7562957,40941750 -g1,13154:7879103,40941750 -g1,13154:12937435,40941750 -g1,13154:13569727,40941750 -g1,13154:20524932,40941750 -g1,13154:21789515,40941750 -g1,13154:22737952,40941750 -g1,13154:24318681,40941750 -g1,13154:26215555,40941750 -g1,13154:26847847,40941750 -k1,13154:26847847,40941750:0 -h1,13154:29693158,40941750:0,0,0 -k1,13154:31966991,40941750:2273833 -g1,13154:31966991,40941750 -) -(1,13155:7246811,41607928:24720180,404226,76021 -h1,13155:7246811,41607928:0,0,0 -g1,13155:7562957,41607928 -g1,13155:7879103,41607928 -g1,13155:8195249,41607928 -g1,13155:8511395,41607928 -g1,13155:8827541,41607928 -g1,13155:9143687,41607928 -g1,13155:9459833,41607928 -g1,13155:9775979,41607928 -g1,13155:10092125,41607928 -g1,13155:10408271,41607928 -g1,13155:10724417,41607928 -g1,13155:11040563,41607928 -g1,13155:11356709,41607928 -g1,13155:12937438,41607928 -g1,13155:13569730,41607928 -h1,13155:14834313,41607928:0,0,0 -k1,13155:31966991,41607928:17132678 -g1,13155:31966991,41607928 -) -] -) -g1,13157:31966991,41683949 -g1,13157:7246811,41683949 -g1,13157:7246811,41683949 -g1,13157:31966991,41683949 -g1,13157:31966991,41683949 -) -h1,13157:7246811,41880557:0,0,0 -(1,13162:7246811,43071023:24720180,513147,134348 -h1,13160:7246811,43071023:983040,0,0 -k1,13160:9624620,43071023:198082 -k1,13160:11603972,43071023:198083 -k1,13160:14067634,43071023:198082 -k1,13160:15655080,43071023:198083 -k1,13160:16957444,43071023:198082 -k1,13160:18441343,43071023:198083 -k1,13160:19387191,43071023:198082 -k1,13160:22417085,43071023:198083 -k1,13160:24260121,43071023:198082 -k1,13160:26193597,43071023:198083 -k1,13160:27410764,43071023:198082 -k1,13160:30576972,43071023:198083 -k1,13160:31966991,43071023:0 -) -(1,13162:7246811,43737201:24720180,505283,126483 -k1,13160:10417732,43737201:250637 -k1,13160:11740537,43737201:250636 -k1,13160:13057445,43737201:250637 -k1,13160:14327167,43737201:250637 -k1,13160:15967822,43737201:250636 -k1,13160:18965073,43737201:250637 -k1,13160:21149022,43737201:250637 -k1,13160:22051086,43737201:250636 -k1,13160:22716514,43737201:250585 -(1,13160:22923608,43737201:0,452978,115847 -r1,13173:23633586,43737201:709978,568825,115847 -k1,13160:22923608,43737201:-709978 -) -(1,13160:22923608,43737201:709978,452978,115847 -k1,13160:22923608,43737201:3277 -h1,13160:23630309,43737201:0,411205,112570 -) -k1,13160:24091317,43737201:250637 -k1,13160:25024839,43737201:250637 -k1,13160:26294560,43737201:250636 -k1,13160:29220377,43737201:250637 -k1,13160:31966991,43737201:0 -) -(1,13162:7246811,44403379:24720180,513147,134348 -k1,13160:8978412,44403379:163980 -k1,13160:11305080,44403379:163981 -k1,13160:12701137,44403379:163980 -k1,13160:15143805,44403379:163981 -h1,13160:16114393,44403379:0,0,0 -k1,13160:16278373,44403379:163980 -k1,13160:17251724,44403379:163981 -k1,13160:18913857,44403379:163980 -h1,13160:20109234,44403379:0,0,0 -k1,13160:20653979,44403379:163981 -k1,13160:22609713,44403379:163980 -k1,13160:23129554,44403379:163981 -k1,13160:25989030,44403379:163980 -k1,13160:26839173,44403379:163981 -k1,13160:28858477,44403379:163980 -k1,13160:29553955,44403379:163981 -k1,13160:31966991,44403379:0 -) -(1,13162:7246811,45069557:24720180,505283,7863 -g1,13160:8637485,45069557 -g1,13160:11176349,45069557 -k1,13162:31966991,45069557:20790642 -g1,13162:31966991,45069557 -) -] -) -] -r1,13173:32583029,45667244:26214,13239773,0 -) -] -) -) -g1,13173:32583029,45077420 -) -] -(1,13173:32583029,45706769:0,0,0 -g1,13173:32583029,45706769 -) -) -] -(1,13173:6630773,47279633:25952256,0,0 -h1,13173:6630773,47279633:25952256,0,0 -) -] -(1,13173:4262630,4025873:0,0,0 -[1,13173:-473656,4025873:0,0,0 -(1,13173:-473656,-710413:0,0,0 -(1,13173:-473656,-710413:0,0,0 -g1,13173:-473656,-710413 -) -g1,13173:-473656,-710413 -) -] -) -] -!26187 -}248 -Input:1850:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1851:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1852:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1853:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1854:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1855:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1856:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1857:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1858:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1859:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1860:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1861:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1862:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1863:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1864:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1865:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1484 -{249 -[1,13187:4262630,47279633:28320399,43253760,0 -(1,13187:4262630,4025873:0,0,0 -[1,13187:-473656,4025873:0,0,0 -(1,13187:-473656,-710413:0,0,0 -(1,13187:-473656,-644877:0,0,0 -k1,13187:-473656,-644877:-65536 -) -(1,13187:-473656,4736287:0,0,0 -k1,13187:-473656,4736287:5209943 -) -g1,13187:-473656,-710413 -) -] -) -[1,13187:6630773,47279633:25952256,43253760,0 -[1,13187:6630773,4812305:25952256,786432,0 -(1,13187:6630773,4812305:25952256,513147,134348 -(1,13187:6630773,4812305:25952256,513147,134348 -g1,13187:3078558,4812305 -[1,13187:3078558,4812305:0,0,0 -(1,13187:3078558,2439708:0,1703936,0 -k1,13187:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,13187:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,13187:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,13187:3078558,4812305:0,0,0 -(1,13187:3078558,2439708:0,1703936,0 -g1,13187:29030814,2439708 -g1,13187:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,13187:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,13187:37855564,2439708:1179648,16384,0 -) -) -k1,13187:3078556,2439708:-34777008 -) -] -[1,13187:3078558,4812305:0,0,0 -(1,13187:3078558,49800853:0,16384,2228224 -k1,13187:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,13187:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,13187:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,13187:3078558,4812305:0,0,0 -(1,13187:3078558,49800853:0,16384,2228224 -g1,13187:29030814,49800853 -g1,13187:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,13187:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,13187:37855564,49800853:1179648,16384,0 -) -) -k1,13187:3078556,49800853:-34777008 -) -] -g1,13187:6630773,4812305 -k1,13187:25712890,4812305:17886740 -g1,13187:29057847,4812305 -g1,13187:29873114,4812305 -) -) -] -[1,13187:6630773,45706769:25952256,40108032,0 -(1,13187:6630773,45706769:25952256,40108032,0 -(1,13187:6630773,45706769:0,0,0 -g1,13187:6630773,45706769 -) -[1,13187:6630773,45706769:25952256,40108032,0 -v1,13173:6630773,6254097:0,393216,0 -(1,13173:6630773,10513168:25952256,4652287,616038 -g1,13173:6630773,10513168 -(1,13173:6630773,10513168:25952256,4652287,616038 -(1,13173:6630773,11129206:25952256,5268325,0 -[1,13173:6630773,11129206:25952256,5268325,0 -(1,13173:6630773,11102992:25952256,5242111,0 -r1,13187:6656987,11102992:26214,5242111,0 -[1,13173:6656987,11102992:25899828,5242111,0 -(1,13173:6656987,10513168:25899828,4062463,0 -[1,13173:7246811,10513168:24720180,4062463,0 -v1,13162:7246811,6843921:0,393216,0 -(1,13170:7246811,9792272:24720180,3341567,196608 -g1,13170:7246811,9792272 -g1,13170:7246811,9792272 -g1,13170:7050203,9792272 -(1,13170:7050203,9792272:0,3341567,196608 -r1,13187:32163599,9792272:25113396,3538175,196608 -k1,13170:7050203,9792272:-25113396 -) -(1,13170:7050203,9792272:25113396,3341567,196608 -[1,13170:7246811,9792272:24720180,3144959,0 -(1,13164:7246811,7051539:24720180,404226,107478 -(1,13163:7246811,7051539:0,0,0 -g1,13163:7246811,7051539 -g1,13163:7246811,7051539 -g1,13163:6919131,7051539 -(1,13163:6919131,7051539:0,0,0 -) -g1,13163:7246811,7051539 -) -k1,13164:7246811,7051539:0 -g1,13164:11040560,7051539 -g1,13164:11672852,7051539 -k1,13164:11672852,7051539:0 -h1,13164:13885872,7051539:0,0,0 -k1,13164:31966992,7051539:18081120 -g1,13164:31966992,7051539 -) -(1,13165:7246811,7717717:24720180,404226,107478 -h1,13165:7246811,7717717:0,0,0 -g1,13165:7562957,7717717 -g1,13165:7879103,7717717 -g1,13165:8195249,7717717 -g1,13165:8511395,7717717 -g1,13165:8827541,7717717 -g1,13165:9143687,7717717 -g1,13165:9459833,7717717 -g1,13165:11988999,7717717 -g1,13165:12621291,7717717 -g1,13165:14518166,7717717 -g1,13165:15150458,7717717 -g1,13165:17047333,7717717 -g1,13165:17679625,7717717 -g1,13165:18311917,7717717 -g1,13165:20208791,7717717 -h1,13165:20524937,7717717:0,0,0 -k1,13165:31966991,7717717:11442054 -g1,13165:31966991,7717717 -) -(1,13166:7246811,8383895:24720180,404226,107478 -h1,13166:7246811,8383895:0,0,0 -g1,13166:7562957,8383895 -g1,13166:7879103,8383895 -g1,13166:12937435,8383895 -g1,13166:13569727,8383895 -g1,13166:14518165,8383895 -h1,13166:14834311,8383895:0,0,0 -k1,13166:31966991,8383895:17132680 -g1,13166:31966991,8383895 -) -(1,13167:7246811,9050073:24720180,404226,107478 -h1,13167:7246811,9050073:0,0,0 -g1,13167:7562957,9050073 -g1,13167:7879103,9050073 -g1,13167:12937435,9050073 -g1,13167:13569727,9050073 -g1,13167:14202019,9050073 -g1,13167:15466602,9050073 -g1,13167:18311914,9050073 -g1,13167:18944206,9050073 -g1,13167:19892644,9050073 -g1,13167:21157227,9050073 -g1,13167:22105664,9050073 -g1,13167:23370248,9050073 -g1,13167:25267122,9050073 -g1,13167:25899414,9050073 -k1,13167:25899414,9050073:0 -h1,13167:28744725,9050073:0,0,0 -k1,13167:31966991,9050073:3222266 -g1,13167:31966991,9050073 -) -(1,13168:7246811,9716251:24720180,404226,76021 -h1,13168:7246811,9716251:0,0,0 -g1,13168:7562957,9716251 -g1,13168:7879103,9716251 -g1,13168:8195249,9716251 -g1,13168:8511395,9716251 -g1,13168:8827541,9716251 -g1,13168:9143687,9716251 -g1,13168:9459833,9716251 -g1,13168:9775979,9716251 -g1,13168:10092125,9716251 -g1,13168:10408271,9716251 -g1,13168:10724417,9716251 -g1,13168:11040563,9716251 -g1,13168:11356709,9716251 -g1,13168:12937438,9716251 -g1,13168:13569730,9716251 -h1,13168:14834313,9716251:0,0,0 -k1,13168:31966991,9716251:17132678 -g1,13168:31966991,9716251 -) -] -) -g1,13170:31966991,9792272 -g1,13170:7246811,9792272 -g1,13170:7246811,9792272 -g1,13170:31966991,9792272 -g1,13170:31966991,9792272 -) -h1,13170:7246811,9988880:0,0,0 -] -) -] -r1,13187:32583029,11102992:26214,5242111,0 -) -] -) -) -g1,13173:32583029,10513168 -) -h1,13173:6630773,11129206:0,0,0 -(1,13176:6630773,12494982:25952256,513147,134348 -h1,13175:6630773,12494982:983040,0,0 -k1,13175:9249810,12494982:290543 -k1,13175:12361678,12494982:290543 -k1,13175:13311513,12494982:290543 -k1,13175:16443697,12494982:290543 -k1,13175:17385668,12494982:290543 -k1,13175:20850775,12494982:290543 -k1,13175:22242322,12494982:290542 -k1,13175:24042815,12494982:290543 -k1,13175:26963318,12494982:290543 -k1,13175:27869899,12494982:290543 -k1,13175:30988975,12494982:290543 -k1,13175:32227169,12494982:290543 -k1,13175:32583029,12494982:0 -) -(1,13176:6630773,13336470:25952256,513147,134348 -k1,13175:8313176,13336470:293695 -k1,13175:10032279,13336470:293695 -k1,13175:12061367,13336470:293695 -k1,13175:13041223,13336470:293694 -k1,13175:16024516,13336470:293695 -k1,13175:19394471,13336470:293695 -k1,13175:20347458,13336470:293695 -k1,13175:21660238,13336470:293695 -k1,13175:23691948,13336470:293695 -k1,13175:24644935,13336470:293695 -k1,13175:25294489,13336470:293694 -k1,13175:28099524,13336470:293695 -k1,13175:31171946,13336470:293695 -k1,13175:32227169,13336470:293695 -k1,13175:32583029,13336470:0 -) -(1,13176:6630773,14177958:25952256,505283,134348 -k1,13175:9404747,14177958:250838 -k1,13175:12290789,14177958:250839 -(1,13175:12290789,14177958:0,414482,115847 -r1,13187:13352478,14177958:1061689,530329,115847 -k1,13175:12290789,14177958:-1061689 -) -(1,13175:12290789,14177958:1061689,414482,115847 -k1,13175:12290789,14177958:3277 -h1,13175:13349201,14177958:0,411205,112570 -) -k1,13175:13776986,14177958:250838 -k1,13175:15099993,14177958:250838 -k1,13175:16554073,14177958:250839 -k1,13175:19494509,14177958:250838 -k1,13175:20846352,14177958:250838 -k1,13175:22607141,14177958:250839 -k1,13175:26396923,14177958:250838 -k1,13175:28339901,14177958:250838 -k1,13175:30016148,14177958:250839 -k1,13175:31391584,14177958:250838 -k1,13175:32583029,14177958:0 -) -(1,13176:6630773,15019446:25952256,505283,126483 -k1,13175:9570818,15019446:220956 -k1,13175:10553302,15019446:220956 -(1,13175:10553302,15019446:0,452978,115847 -r1,13187:12670127,15019446:2116825,568825,115847 -k1,13175:10553302,15019446:-2116825 -) -(1,13175:10553302,15019446:2116825,452978,115847 -k1,13175:10553302,15019446:3277 -h1,13175:12666850,15019446:0,411205,112570 -) -k1,13175:13064753,15019446:220956 -k1,13175:13913545,15019446:220957 -k1,13175:15601197,15019446:220956 -k1,13175:17693206,15019446:220956 -k1,13175:19117403,15019446:220956 -k1,13175:22073176,15019446:220956 -k1,13175:22649992,15019446:220956 -k1,13175:26152337,15019446:220957 -k1,13175:26831390,15019446:220956 -k1,13175:28259519,15019446:220956 -k1,13175:31931601,15019446:220956 -k1,13175:32583029,15019446:0 -) -(1,13176:6630773,15860934:25952256,505283,126483 -k1,13175:8304515,15860934:277170 -k1,13175:8937546,15860934:277171 -k1,13175:12423359,15860934:277170 -k1,13175:15211869,15860934:277170 -k1,13175:16140467,15860934:277170 -k1,13175:17436723,15860934:277171 -k1,13175:19367366,15860934:277170 -k1,13175:22488799,15860934:277170 -k1,13175:23452132,15860934:277171 -k1,13175:25437826,15860934:277170 -k1,13175:26366424,15860934:277170 -k1,13175:27662679,15860934:277170 -k1,13175:30462986,15860934:277171 -k1,13175:31931601,15860934:277170 -k1,13175:32583029,15860934:0 -) -(1,13176:6630773,16702422:25952256,505283,134348 -k1,13175:7833712,16702422:183854 -k1,13175:11007317,16702422:183853 -k1,13175:11807209,16702422:183854 -k1,13175:13010148,16702422:183854 -k1,13175:14847474,16702422:183853 -k1,13175:16762789,16702422:183854 -k1,13175:18779030,16702422:183854 -k1,13175:20466935,16702422:183854 -k1,13175:21936604,16702422:183853 -k1,13175:23812598,16702422:183854 -k1,13175:25698422,16702422:183854 -k1,13175:27913891,16702422:183853 -k1,13175:29382251,16702422:183854 -k1,13175:32583029,16702422:0 -) -(1,13176:6630773,17543910:25952256,513147,134348 -k1,13175:9344237,17543910:286010 -k1,13175:11322386,17543910:286009 -k1,13175:15011025,17543910:286010 -k1,13175:15948462,17543910:286009 -k1,13175:17253557,17543910:286010 -k1,13175:20529318,17543910:286009 -k1,13175:23373854,17543910:286010 -k1,13175:24678948,17543910:286009 -k1,13175:26367428,17543910:286010 -(1,13175:26367428,17543910:0,414482,115847 -r1,13187:27429117,17543910:1061689,530329,115847 -k1,13175:26367428,17543910:-1061689 -) -(1,13175:26367428,17543910:1061689,414482,115847 -k1,13175:26367428,17543910:3277 -h1,13175:27425840,17543910:0,411205,112570 -) -k1,13175:27715126,17543910:286009 -k1,13175:31281868,17543910:286010 -k1,13175:32227169,17543910:286009 -k1,13175:32583029,17543910:0 -) -(1,13176:6630773,18385398:25952256,473825,7863 -k1,13176:32583028,18385398:23255448 -g1,13176:32583028,18385398 -) -(1,13179:6630773,19226886:25952256,513147,134348 -h1,13177:6630773,19226886:983040,0,0 -k1,13177:8403140,19226886:161492 -k1,13177:10898368,19226886:161491 -k1,13177:12602578,19226886:161492 -k1,13177:13423361,19226886:161491 -k1,13177:16413386,19226886:161492 -k1,13177:17593962,19226886:161491 -k1,13177:19839499,19226886:161492 -k1,13177:21514217,19226886:161492 -k1,13177:22623359,19226886:161491 -k1,13177:25592413,19226886:161492 -k1,13177:28595545,19226886:161491 -k1,13177:29408465,19226886:161492 -k1,13177:32583029,19226886:0 -) -(1,13179:6630773,20068374:25952256,513147,134348 -k1,13177:7996344,20068374:158398 -k1,13177:10816159,20068374:158398 -k1,13177:13162149,20068374:158398 -k1,13177:16346343,20068374:158397 -(1,13177:16346343,20068374:0,452978,122846 -r1,13187:18814880,20068374:2468537,575824,122846 -k1,13177:16346343,20068374:-2468537 -) -(1,13177:16346343,20068374:2468537,452978,122846 -k1,13177:16346343,20068374:3277 -h1,13177:18811603,20068374:0,411205,112570 -) -k1,13177:19146948,20068374:158398 -(1,13177:19146948,20068374:0,459977,115847 -r1,13187:23374044,20068374:4227096,575824,115847 -k1,13177:19146948,20068374:-4227096 -) -(1,13177:19146948,20068374:4227096,459977,115847 -k1,13177:19146948,20068374:3277 -h1,13177:23370767,20068374:0,411205,112570 -) -k1,13177:23532442,20068374:158398 -k1,13177:24882285,20068374:158398 -(1,13177:24882285,20068374:0,459977,115847 -r1,13187:29461093,20068374:4578808,575824,115847 -k1,13177:24882285,20068374:-4578808 -) -(1,13177:24882285,20068374:4578808,459977,115847 -k1,13177:24882285,20068374:3277 -h1,13177:29457816,20068374:0,411205,112570 -) -k1,13177:29793161,20068374:158398 -k1,13179:32583029,20068374:0 -) -(1,13179:6630773,20909862:25952256,513147,134348 -(1,13177:6630773,20909862:0,459977,115847 -r1,13187:10857869,20909862:4227096,575824,115847 -k1,13177:6630773,20909862:-4227096 -) -(1,13177:6630773,20909862:4227096,459977,115847 -k1,13177:6630773,20909862:3277 -h1,13177:10854592,20909862:0,411205,112570 -) -k1,13177:11009808,20909862:151939 -k1,13177:13790396,20909862:151939 -(1,13177:13790396,20909862:0,452978,115847 -r1,13187:15907221,20909862:2116825,568825,115847 -k1,13177:13790396,20909862:-2116825 -) -(1,13177:13790396,20909862:2116825,452978,115847 -k1,13177:13790396,20909862:3277 -h1,13177:15903944,20909862:0,411205,112570 -) -k1,13177:16059161,20909862:151940 -k1,13177:17402545,20909862:151939 -k1,13177:18573569,20909862:151939 -(1,13177:18573569,20909862:0,414482,115847 -r1,13187:19635258,20909862:1061689,530329,115847 -k1,13177:18573569,20909862:-1061689 -) -(1,13177:18573569,20909862:1061689,414482,115847 -k1,13177:18573569,20909862:3277 -h1,13177:19631981,20909862:0,411205,112570 -) -k1,13177:19787197,20909862:151939 -k1,13177:22628735,20909862:151940 -k1,13177:23673930,20909862:151939 -k1,13177:24485161,20909862:151939 -k1,13177:27408618,20909862:151939 -k1,13177:28696952,20909862:151940 -k1,13177:30391609,20909862:151939 -k1,13177:31562633,20909862:151939 -k1,13177:32583029,20909862:0 -) -(1,13179:6630773,21751350:25952256,513147,134348 -k1,13177:9513047,21751350:192676 -k1,13177:10237220,21751350:192676 -k1,13177:11628549,21751350:192675 -k1,13177:15018071,21751350:192676 -k1,13177:16028636,21751350:192676 -k1,13177:18296837,21751350:192676 -k1,13177:19105550,21751350:192675 -k1,13177:20317311,21751350:192676 -k1,13177:23126184,21751350:192676 -k1,13177:24886481,21751350:192676 -k1,13177:27357844,21751350:192676 -h1,13177:28328432,21751350:0,0,0 -k1,13177:28521107,21751350:192675 -k1,13177:29523153,21751350:192676 -k1,13177:31213982,21751350:192676 -h1,13177:32409359,21751350:0,0,0 -k1,13177:32583029,21751350:0 -) -(1,13179:6630773,22592838:25952256,505283,126483 -g1,13177:10506572,22592838 -g1,13177:12277354,22592838 -g1,13177:15323467,22592838 -g1,13177:18041900,22592838 -g1,13177:18857167,22592838 -g1,13177:20711180,22592838 -k1,13177:32583029,22592838:9705229 -g1,13179:32583029,22592838 -) -(1,13179:6630773,23851134:25952256,454754,120913 -g1,13178:8060506,23851134 -$1,13178:8060506,23851134 -$1,13178:8668025,23851134 -g1,13178:8854409,23851134 -g1,13178:9995128,23851134 -$1,13178:9995128,23851134 -$1,13178:10602647,23851134 -g1,13178:10789031,23851134 -g1,13178:12042407,23851134 -$1,13178:12042407,23851134 -$1,13178:12649926,23851134 -g1,13178:12836310,23851134 -g1,13178:13977029,23851134 -$1,13178:13977029,23851134 -$1,13178:14584548,23851134 -g1,13178:14770932,23851134 -g1,13178:16566356,23851134 -$1,13178:16566356,23851134 -$1,13178:17173875,23851134 -g1,13178:17360259,23851134 -g1,13178:18973427,23851134 -$1,13178:18973427,23851134 -$1,13178:19580946,23851134 -g1,13178:19767330,23851134 -g1,13178:20908049,23851134 -$1,13178:20908049,23851134 -$1,13178:21515568,23851134 -g1,13178:21701952,23851134 -g1,13178:24938316,23851134 -$1,13178:24938316,23851134 -$1,13178:25545835,23851134 -g1,13178:25732219,23851134 -g1,13178:27712848,23851134 -$1,13178:27712848,23851134 -$1,13178:28320367,23851134 -g1,13178:28506751,23851134 -g1,13178:30499176,23851134 -k1,13179:32583029,23851134:332666 -g1,13179:32583029,23851134 -) -(1,13181:6630773,24692622:25952256,513147,134348 -h1,13180:6630773,24692622:983040,0,0 -k1,13180:10736872,24692622:180492 -k1,13180:11533402,24692622:180492 -k1,13180:12732979,24692622:180492 -k1,13180:14302834,24692622:180492 -k1,13180:16359622,24692622:180492 -k1,13180:18745401,24692622:180492 -k1,13180:19612056,24692622:180493 -k1,13180:22864876,24692622:180492 -k1,13180:23696796,24692622:180492 -(1,13180:23696796,24692622:0,452978,115847 -r1,13187:25110197,24692622:1413401,568825,115847 -k1,13180:23696796,24692622:-1413401 -) -(1,13180:23696796,24692622:1413401,452978,115847 -k1,13180:23696796,24692622:3277 -h1,13180:25106920,24692622:0,411205,112570 -) -k1,13180:25290689,24692622:180492 -k1,13180:26462741,24692622:180492 -k1,13180:29228628,24692622:180492 -k1,13180:30060548,24692622:180492 -k1,13181:32583029,24692622:0 -) -(1,13181:6630773,25534110:25952256,513147,126483 -k1,13180:7686173,25534110:190325 -k1,13180:9919255,25534110:190325 -k1,13180:11489768,25534110:190325 -k1,13180:12671653,25534110:190325 -k1,13180:15505045,25534110:190325 -k1,13180:16381532,25534110:190325 -k1,13180:18280382,25534110:190326 -k1,13180:19232235,25534110:190325 -k1,13180:19778420,25534110:190325 -k1,13180:22491881,25534110:190325 -k1,13180:25533022,25534110:190325 -(1,13180:25533022,25534110:0,452978,115847 -r1,13187:30815253,25534110:5282231,568825,115847 -k1,13180:25533022,25534110:-5282231 -) -(1,13180:25533022,25534110:5282231,452978,115847 -k1,13180:25533022,25534110:3277 -h1,13180:30811976,25534110:0,411205,112570 -) -k1,13180:31386342,25534110:190325 -k1,13180:32583029,25534110:0 -) -(1,13181:6630773,26375598:25952256,513147,134348 -k1,13180:9956444,26375598:187807 -k1,13180:10803544,26375598:187808 -k1,13180:13832992,26375598:187807 -k1,13180:14636837,26375598:187807 -k1,13180:15843729,26375598:187807 -k1,13180:17420900,26375598:187808 -k1,13180:19485003,26375598:187807 -k1,13180:22451537,26375598:187807 -k1,13180:23400873,26375598:187808 -k1,13180:26442118,26375598:187807 -k1,13180:27621485,26375598:187807 -k1,13180:28828377,26375598:187807 -k1,13180:30724709,26375598:187808 -k1,13180:31563944,26375598:187807 -k1,13180:32583029,26375598:0 -) -(1,13181:6630773,27217086:25952256,513147,134348 -k1,13180:9951810,27217086:157614 -k1,13180:12030940,27217086:157614 -k1,13180:15041991,27217086:157613 -k1,13180:16484111,27217086:157614 -k1,13180:19052795,27217086:157614 -k1,13180:20019779,27217086:157614 -k1,13180:20541774,27217086:157614 -k1,13180:22909262,27217086:157614 -(1,13180:22909262,27217086:361103,347341,126483 -) -k1,13180:23427978,27217086:157613 -k1,13180:25596237,27217086:157614 -k1,13180:26109711,27217086:157614 -k1,13180:30249292,27217086:157614 -k1,13180:32583029,27217086:0 -) -(1,13181:6630773,28058574:25952256,513147,126483 -k1,13180:7526213,28058574:236148 -k1,13180:9459088,28058574:236148 -k1,13180:12710548,28058574:236149 -k1,13180:13708224,28058574:236148 -k1,13180:16209952,28058574:236148 -k1,13180:17731916,28058574:236148 -k1,13180:20553459,28058574:236148 -k1,13180:21441035,28058574:236148 -k1,13180:23373911,28058574:236149 -k1,13180:26958293,28058574:236148 -k1,13180:30129143,28058574:236148 -k1,13180:30981329,28058574:236148 -k1,13180:32583029,28058574:0 -) -(1,13181:6630773,28900062:25952256,505283,126483 -k1,13180:8495067,28900062:166912 -k1,13180:10363950,28900062:166913 -k1,13180:13372503,28900062:166912 -k1,13180:14155453,28900062:166912 -k1,13180:16988371,28900062:166913 -k1,13180:17806711,28900062:166912 -k1,13180:18338004,28900062:166912 -k1,13180:20714791,28900062:166913 -(1,13180:20714791,28900062:361103,347341,126483 -) -k1,13180:21242806,28900062:166912 -k1,13180:22401278,28900062:166912 -k1,13180:25326601,28900062:166913 -k1,13180:26109551,28900062:166912 -k1,13180:27295548,28900062:166912 -(1,13180:27295548,28900062:0,452978,115847 -r1,13187:28708949,28900062:1413401,568825,115847 -k1,13180:27295548,28900062:-1413401 -) -(1,13180:27295548,28900062:1413401,452978,115847 -k1,13180:27295548,28900062:3277 -h1,13180:28705672,28900062:0,411205,112570 -) -k1,13180:28875862,28900062:166913 -k1,13180:31821501,28900062:166912 -k1,13180:32583029,28900062:0 -) -(1,13181:6630773,29741550:25952256,513147,134348 -k1,13180:7191215,29741550:204582 -k1,13180:9940559,29741550:204581 -k1,13180:13108024,29741550:204582 -k1,13180:14821244,29741550:204581 -k1,13180:17291406,29741550:204582 -k1,13180:20303549,29741550:204581 -k1,13180:21039628,29741550:204582 -k1,13180:23161137,29741550:204581 -k1,13180:23981757,29741550:204582 -k1,13180:25205423,29741550:204581 -k1,13180:27933141,29741550:204582 -k1,13180:31337190,29741550:204581 -k1,13181:32583029,29741550:0 -) -(1,13181:6630773,30583038:25952256,513147,134348 -k1,13180:9414926,30583038:195481 -k1,13180:10629492,30583038:195481 -k1,13180:12205818,30583038:195482 -k1,13180:13505581,30583038:195481 -k1,13180:15963365,30583038:195481 -k1,13180:17362087,30583038:195481 -k1,13180:19823149,30583038:195482 -k1,13180:22826192,30583038:195481 -k1,13180:25919020,30583038:195481 -k1,13180:28124490,30583038:195481 -k1,13180:28675832,30583038:195482 -k1,13180:29971007,30583038:195481 -k1,13180:30817916,30583038:195481 -(1,13180:30817916,30583038:0,452978,115847 -r1,13187:32583029,30583038:1765113,568825,115847 -k1,13180:30817916,30583038:-1765113 -) -(1,13180:30817916,30583038:1765113,452978,115847 -k1,13180:30817916,30583038:3277 -h1,13180:32579752,30583038:0,411205,112570 -) -k1,13180:32583029,30583038:0 -) -(1,13181:6630773,31424526:25952256,513147,134348 -k1,13180:8610285,31424526:244119 -(1,13180:8610285,31424526:0,459977,115847 -r1,13187:12837381,31424526:4227096,575824,115847 -k1,13180:8610285,31424526:-4227096 -) -(1,13180:8610285,31424526:4227096,459977,115847 -k1,13180:8610285,31424526:3277 -h1,13180:12834104,31424526:0,411205,112570 -) -k1,13180:13255170,31424526:244119 -k1,13180:15384761,31424526:244120 -k1,13180:16768551,31424526:244119 -k1,13180:17757814,31424526:244119 -k1,13180:21925573,31424526:244119 -k1,13180:24804895,31424526:244119 -k1,13180:26068100,31424526:244120 -k1,13180:27701582,31424526:244119 -k1,13180:29821997,31424526:244119 -k1,13180:32583029,31424526:0 -) -(1,13181:6630773,32266014:25952256,505283,134348 -k1,13180:7617792,32266014:225491 -k1,13180:8862367,32266014:225490 -k1,13180:10468702,32266014:225491 -k1,13180:11885637,32266014:225490 -k1,13180:13395634,32266014:225491 -k1,13180:16399851,32266014:225490 -k1,13180:17386870,32266014:225491 -k1,13180:18631445,32266014:225490 -k1,13180:21553743,32266014:225491 -k1,13180:22975920,32266014:225490 -k1,13180:24783450,32266014:225491 -k1,13180:26673554,32266014:225490 -k1,13180:28106218,32266014:225491 -k1,13180:29397979,32266014:225490 -k1,13180:32583029,32266014:0 -) -(1,13181:6630773,33107502:25952256,513147,134348 -k1,13180:7424632,33107502:177821 -k1,13180:9636035,33107502:177821 -k1,13180:12477895,33107502:177821 -k1,13180:13315008,33107502:177821 -k1,13180:16495032,33107502:177821 -k1,13180:17745022,33107502:177821 -k1,13180:19209970,33107502:177821 -k1,13180:20047083,33107502:177821 -k1,13180:22255865,33107502:177821 -k1,13180:23640859,33107502:177821 -k1,13180:26105887,33107502:177821 -k1,13180:27349979,33107502:177821 -k1,13180:32583029,33107502:0 -) -(1,13181:6630773,33948990:25952256,505283,134348 -g1,13180:8237715,33948990 -g1,13180:9640185,33948990 -g1,13180:11421453,33948990 -g1,13180:13285296,33948990 -g1,13180:14588807,33948990 -g1,13180:15535802,33948990 -g1,13180:18534074,33948990 -g1,13180:20127254,33948990 -(1,13180:20127254,33948990:0,459977,115847 -r1,13187:24706062,33948990:4578808,575824,115847 -k1,13180:20127254,33948990:-4578808 -) -(1,13180:20127254,33948990:4578808,459977,115847 -k1,13180:20127254,33948990:3277 -h1,13180:24702785,33948990:0,411205,112570 -) -g1,13180:24905291,33948990 -g1,13180:27463161,33948990 -g1,13180:29801485,33948990 -k1,13181:32583029,33948990:194838 -g1,13181:32583029,33948990 -) -(1,13183:6630773,34790478:25952256,513147,134348 -h1,13182:6630773,34790478:983040,0,0 -k1,13182:11318181,34790478:137243 -k1,13182:16622938,34790478:137243 -k1,13182:17419474,34790478:137244 -k1,13182:18575802,34790478:137243 -k1,13182:20102408,34790478:137243 -k1,13182:21231211,34790478:137243 -k1,13182:22703423,34790478:137244 -k1,13182:25420163,34790478:137243 -k1,13182:26170168,34790478:137243 -k1,13182:27326496,34790478:137243 -k1,13182:29045779,34790478:137244 -k1,13182:30847636,34790478:137243 -k1,13182:32583029,34790478:0 -) -(1,13183:6630773,35631966:25952256,513147,134348 -k1,13182:8344003,35631966:141021 -k1,13182:13826209,35631966:141022 -k1,13182:16901932,35631966:141021 -k1,13182:18740991,35631966:141021 -k1,13182:19901098,35631966:141022 -k1,13182:22944709,35631966:141021 -k1,13182:23617228,35631966:141022 -k1,13182:24409677,35631966:141021 -k1,13182:26611150,35631966:141021 -k1,13182:29047243,35631966:141022 -k1,13182:29871149,35631966:141021 -k1,13182:32583029,35631966:0 -) -(1,13183:6630773,36473454:25952256,513147,126483 -k1,13182:9673173,36473454:280057 -k1,13182:13161873,36473454:280057 -k1,13182:16283571,36473454:280057 -k1,13182:19342355,36473454:280057 -k1,13182:20383940,36473454:280057 -k1,13182:21019858,36473454:280058 -k1,13182:23823051,36473454:280057 -k1,13182:24971460,36473454:280057 -k1,13182:26781783,36473454:280057 -k1,13182:27713268,36473454:280057 -k1,13182:28927868,36473454:280057 -k1,13182:30227010,36473454:280057 -k1,13182:32583029,36473454:0 -) -(1,13183:6630773,37314942:25952256,513147,134348 -k1,13182:9628498,37314942:190163 -k1,13182:10477954,37314942:190164 -k1,13182:13103435,37314942:190163 -k1,13182:14485044,37314942:190164 -k1,13182:17883850,37314942:190163 -k1,13182:20915655,37314942:190164 -k1,13182:21757246,37314942:190163 -k1,13182:25121974,37314942:190164 -k1,13182:25924899,37314942:190163 -k1,13182:27765260,37314942:190164 -k1,13182:29397870,37314942:190163 -k1,13182:30744744,37314942:190164 -k1,13183:32583029,37314942:0 -k1,13183:32583029,37314942:0 -) -(1,13185:6630773,38156430:25952256,513147,134348 -h1,13184:6630773,38156430:983040,0,0 -k1,13184:8989354,38156430:178854 -k1,13184:13994278,38156430:178853 -k1,13184:14832424,38156430:178854 -k1,13184:17839811,38156430:178854 -k1,13184:19628885,38156430:178854 -k1,13184:22039239,38156430:178853 -k1,13184:23802098,38156430:178854 -k1,13184:26972671,38156430:178854 -k1,13184:27810817,38156430:178854 -k1,13184:29687052,38156430:178853 -k1,13184:31563944,38156430:178854 -k1,13184:32583029,38156430:0 -) -(1,13185:6630773,38997918:25952256,513147,134348 -k1,13184:8182062,38997918:268094 -k1,13184:10534201,38997918:268094 -k1,13184:11333792,38997918:268094 -k1,13184:13752778,38997918:268094 -k1,13184:14233795,38997918:268025 -k1,13184:15781807,38997918:268094 -k1,13184:17447783,38997918:268093 -k1,13184:18071737,38997918:268094 -k1,13184:21102174,38997918:268094 -k1,13184:24205355,38997918:268094 -k1,13184:25426998,38997918:268094 -k1,13184:26382565,38997918:268094 -k1,13184:27006519,38997918:268094 -k1,13184:30847636,38997918:268094 -k1,13185:32583029,38997918:0 -) -(1,13185:6630773,39839406:25952256,513147,134348 -(1,13184:6630773,39839406:0,452978,115847 -r1,13187:8395886,39839406:1765113,568825,115847 -k1,13184:6630773,39839406:-1765113 -) -(1,13184:6630773,39839406:1765113,452978,115847 -k1,13184:6630773,39839406:3277 -h1,13184:8392609,39839406:0,411205,112570 -) -k1,13184:8706094,39839406:136538 -k1,13184:10216205,39839406:136476 -k1,13184:10884240,39839406:136538 -k1,13184:11376637,39839406:136537 -k1,13184:14769004,39839406:136538 -k1,13184:16190048,39839406:136538 -k1,13184:20643443,39839406:136538 -k1,13184:23116995,39839406:136538 -k1,13184:25296290,39839406:136538 -k1,13184:28863638,39839406:136538 -k1,13184:30019261,39839406:136538 -k1,13184:32583029,39839406:0 -) -(1,13185:6630773,40680894:25952256,513147,134348 -k1,13184:8547650,40680894:221461 -k1,13184:9428403,40680894:221461 -k1,13184:12294898,40680894:221462 -k1,13184:14962163,40680894:221461 -k1,13184:15835052,40680894:221461 -k1,13184:17075598,40680894:221461 -k1,13184:20489974,40680894:221462 -k1,13184:23605505,40680894:221461 -k1,13184:24443004,40680894:221461 -k1,13184:25435168,40680894:221461 -k1,13184:28171246,40680894:221462 -k1,13184:29044135,40680894:221461 -k1,13184:31563944,40680894:221461 -k1,13184:32583029,40680894:0 -) -(1,13185:6630773,41522382:25952256,513147,134348 -k1,13184:9996047,41522382:228721 -k1,13184:10912240,41522382:228720 -k1,13184:12708582,41522382:228721 -k1,13184:13956387,41522382:228720 -k1,13184:17093596,41522382:228721 -k1,13184:17981608,41522382:228720 -k1,13184:20782617,41522382:228721 -k1,13184:25083089,41522382:228720 -k1,13184:25994695,41522382:228721 -k1,13184:28835680,41522382:228720 -k1,13184:30847636,41522382:228721 -k1,13184:32583029,41522382:0 -) -(1,13185:6630773,42363870:25952256,513147,134348 -k1,13184:8087123,42363870:253109 -k1,13184:9531677,42363870:253109 -k1,13184:11986796,42363870:253109 -k1,13184:15024531,42363870:253110 -k1,13184:15735737,42363870:253109 -k1,13184:16520343,42363870:253109 -k1,13184:17432744,42363870:253109 -k1,13184:20129035,42363870:253109 -k1,13184:21033572,42363870:253109 -k1,13184:22563978,42363870:253109 -k1,13184:23836173,42363870:253110 -k1,13184:26983352,42363870:253109 -k1,13184:29916884,42363870:253109 -k1,13184:31563944,42363870:253109 -k1,13184:32583029,42363870:0 -) -(1,13185:6630773,43205358:25952256,513147,134348 -k1,13184:9410813,43205358:160566 -k1,13184:10058928,43205358:160527 -k1,13184:12958244,43205358:160566 -k1,13184:16103320,43205358:160566 -k1,13184:16795383,43205358:160566 -k1,13184:17607377,43205358:160566 -k1,13184:19164515,43205358:160566 -k1,13184:21770885,43205358:160566 -k1,13184:22582879,43205358:160566 -k1,13184:23099305,43205358:160566 -k1,13184:25919322,43205358:160566 -k1,13184:28715091,43205358:160566 -k1,13184:30048096,43205358:160566 -k1,13184:32583029,43205358:0 -) -(1,13185:6630773,44046846:25952256,513147,134348 -g1,13184:7783551,44046846 -g1,13184:9471103,44046846 -g1,13184:10431860,44046846 -g1,13184:14006193,44046846 -g1,13184:15897562,44046846 -g1,13184:18725440,44046846 -g1,13184:20314032,44046846 -g1,13184:23875258,44046846 -k1,13185:32583029,44046846:6095506 -g1,13185:32583029,44046846 -) -] -(1,13187:32583029,45706769:0,0,0 -g1,13187:32583029,45706769 -) -) -] -(1,13187:6630773,47279633:25952256,0,0 -h1,13187:6630773,47279633:25952256,0,0 -) -] -(1,13187:4262630,4025873:0,0,0 -[1,13187:-473656,4025873:0,0,0 -(1,13187:-473656,-710413:0,0,0 -(1,13187:-473656,-710413:0,0,0 -g1,13187:-473656,-710413 -) -g1,13187:-473656,-710413 -) -] -) -] -!30262 -}249 -Input:1866:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1867:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1868:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1869:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1870:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1871:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1872:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1873:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1874:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1875:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1876:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1877:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1878:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1879:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1880:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1881:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1882:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1576 -{250 -[1,13248:4262630,47279633:28320399,43253760,0 -(1,13248:4262630,4025873:0,0,0 -[1,13248:-473656,4025873:0,0,0 -(1,13248:-473656,-710413:0,0,0 -(1,13248:-473656,-644877:0,0,0 -k1,13248:-473656,-644877:-65536 -) -(1,13248:-473656,4736287:0,0,0 -k1,13248:-473656,4736287:5209943 -) -g1,13248:-473656,-710413 -) -] -) -[1,13248:6630773,47279633:25952256,43253760,0 -[1,13248:6630773,4812305:25952256,786432,0 -(1,13248:6630773,4812305:25952256,513147,134348 -(1,13248:6630773,4812305:25952256,513147,134348 -g1,13248:3078558,4812305 -[1,13248:3078558,4812305:0,0,0 -(1,13248:3078558,2439708:0,1703936,0 -k1,13248:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,13248:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,13248:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,13248:3078558,4812305:0,0,0 -(1,13248:3078558,2439708:0,1703936,0 -g1,13248:29030814,2439708 -g1,13248:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,13248:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,13248:37855564,2439708:1179648,16384,0 -) -) -k1,13248:3078556,2439708:-34777008 -) -] -[1,13248:3078558,4812305:0,0,0 -(1,13248:3078558,49800853:0,16384,2228224 -k1,13248:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,13248:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,13248:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,13248:3078558,4812305:0,0,0 -(1,13248:3078558,49800853:0,16384,2228224 -g1,13248:29030814,49800853 -g1,13248:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,13248:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,13248:37855564,49800853:1179648,16384,0 -) -) -k1,13248:3078556,49800853:-34777008 -) -] -g1,13248:6630773,4812305 -g1,13248:6630773,4812305 -g1,13248:10697281,4812305 -g1,13248:11496164,4812305 -g1,13248:12681054,4812305 -g1,13248:15925086,4812305 -g1,13248:16740353,4812305 -g1,13248:19649496,4812305 -k1,13248:31387652,4812305:11738156 -) -) -] -[1,13248:6630773,45706769:25952256,40108032,0 -(1,13248:6630773,45706769:25952256,40108032,0 -(1,13248:6630773,45706769:0,0,0 -g1,13248:6630773,45706769 -) -[1,13248:6630773,45706769:25952256,40108032,0 -v1,13187:6630773,6254097:0,393216,0 -(1,13198:6630773,11226148:25952256,5365267,196608 -g1,13198:6630773,11226148 -g1,13198:6630773,11226148 -g1,13198:6434165,11226148 -(1,13198:6434165,11226148:0,5365267,196608 -r1,13248:32779637,11226148:26345472,5561875,196608 -k1,13198:6434165,11226148:-26345472 -) -(1,13198:6434165,11226148:26345472,5365267,196608 -[1,13198:6630773,11226148:25952256,5168659,0 -(1,13189:6630773,6461715:25952256,404226,107478 -(1,13188:6630773,6461715:0,0,0 -g1,13188:6630773,6461715 -g1,13188:6630773,6461715 -g1,13188:6303093,6461715 -(1,13188:6303093,6461715:0,0,0 -) -g1,13188:6630773,6461715 -) -g1,13189:7263065,6461715 -g1,13189:8211502,6461715 -g1,13189:9476085,6461715 -g1,13189:12005251,6461715 -g1,13189:14534417,6461715 -g1,13189:15166709,6461715 -g1,13189:16431292,6461715 -g1,13189:17063584,6461715 -g1,13189:18012021,6461715 -g1,13189:20857332,6461715 -g1,13189:22754206,6461715 -g1,13189:23702643,6461715 -k1,13189:23702643,6461715:0 -h1,13189:27180245,6461715:0,0,0 -k1,13189:32583029,6461715:5402784 -g1,13189:32583029,6461715 -) -(1,13190:6630773,7127893:25952256,410518,101187 -h1,13190:6630773,7127893:0,0,0 -g1,13190:7263065,7127893 -g1,13190:8843794,7127893 -g1,13190:10424523,7127893 -g1,13190:11689106,7127893 -g1,13190:12321398,7127893 -g1,13190:13585981,7127893 -g1,13190:14218273,7127893 -k1,13190:14218273,7127893:0 -h1,13190:17379730,7127893:0,0,0 -k1,13190:32583029,7127893:15203299 -g1,13190:32583029,7127893 -) -(1,13191:6630773,7794071:25952256,404226,76021 -h1,13191:6630773,7794071:0,0,0 -k1,13191:6630773,7794071:0 -h1,13191:11056813,7794071:0,0,0 -k1,13191:32583029,7794071:21526216 -g1,13191:32583029,7794071 -) -(1,13192:6630773,8460249:25952256,388497,9436 -h1,13192:6630773,8460249:0,0,0 -g1,13192:7263065,8460249 -g1,13192:8211503,8460249 -h1,13192:9476086,8460249:0,0,0 -k1,13192:32583030,8460249:23106944 -g1,13192:32583030,8460249 -) -(1,13193:6630773,9126427:25952256,404226,107478 -h1,13193:6630773,9126427:0,0,0 -g1,13193:7263065,9126427 -g1,13193:8211503,9126427 -g1,13193:9159940,9126427 -g1,13193:9792232,9126427 -g1,13193:11056816,9126427 -g1,13193:11689108,9126427 -g1,13193:13269838,9126427 -g1,13193:13902130,9126427 -g1,13193:19276607,9126427 -g1,13193:20857336,9126427 -g1,13193:21489628,9126427 -g1,13193:22438066,9126427 -g1,13193:23386503,9126427 -g1,13193:24018795,9126427 -g1,13193:27180253,9126427 -g1,13193:27812545,9126427 -h1,13193:28444837,9126427:0,0,0 -k1,13193:32583029,9126427:4138192 -g1,13193:32583029,9126427 -) -(1,13194:6630773,9792605:25952256,410518,101187 -h1,13194:6630773,9792605:0,0,0 -g1,13194:9159939,9792605 -g1,13194:10108377,9792605 -g1,13194:14534417,9792605 -h1,13194:15166708,9792605:0,0,0 -k1,13194:32583028,9792605:17416320 -g1,13194:32583028,9792605 -) -(1,13195:6630773,10458783:25952256,404226,101187 -h1,13195:6630773,10458783:0,0,0 -g1,13195:11689104,10458783 -g1,13195:12637542,10458783 -h1,13195:14850562,10458783:0,0,0 -k1,13195:32583030,10458783:17732468 -g1,13195:32583030,10458783 -) -(1,13196:6630773,11124961:25952256,404226,101187 -h1,13196:6630773,11124961:0,0,0 -g1,13196:12637542,11124961 -g1,13196:14218271,11124961 -g1,13196:15166709,11124961 -g1,13196:21173478,11124961 -g1,13196:22754207,11124961 -g1,13196:23386499,11124961 -h1,13196:24018790,11124961:0,0,0 -k1,13196:32583029,11124961:8564239 -g1,13196:32583029,11124961 -) -] -) -g1,13198:32583029,11226148 -g1,13198:6630773,11226148 -g1,13198:6630773,11226148 -g1,13198:32583029,11226148 -g1,13198:32583029,11226148 -) -h1,13198:6630773,11422756:0,0,0 -(1,13202:6630773,12732233:25952256,513147,134348 -h1,13201:6630773,12732233:983040,0,0 -k1,13201:8647010,12732233:215308 -k1,13201:9320414,12732233:215307 -k1,13201:10668184,12732233:215308 -k1,13201:11631257,12732233:215307 -k1,13201:13359791,12732233:215308 -k1,13201:14191137,12732233:215308 -k1,13201:17077691,12732233:215307 -k1,13201:20458388,12732233:215308 -k1,13201:21542047,12732233:215307 -k1,13201:23037273,12732233:215308 -k1,13201:23608441,12732233:215308 -k1,13201:25561763,12732233:215307 -k1,13201:26428499,12732233:215308 -k1,13201:27662891,12732233:215307 -k1,13201:29865906,12732233:215308 -k1,13201:32583029,12732233:0 -) -(1,13202:6630773,13573721:25952256,513147,134348 -g1,13201:7783551,13573721 -g1,13201:8798048,13573721 -g1,13201:10200518,13573721 -g1,13201:11628547,13573721 -g1,13201:12775427,13573721 -g1,13201:16881257,13573721 -g1,13201:18152655,13573721 -g1,13201:19637700,13573721 -g1,13201:20488357,13573721 -g1,13201:22830613,13573721 -g1,13201:26748355,13573721 -g1,13201:27563622,13573721 -g1,13201:28781936,13573721 -g1,13201:30968872,13573721 -k1,13202:32583029,13573721:422712 -g1,13202:32583029,13573721 -) -v1,13204:6630773,14707887:0,393216,0 -(1,13208:6630773,15022984:25952256,708313,196608 -g1,13208:6630773,15022984 -g1,13208:6630773,15022984 -g1,13208:6434165,15022984 -(1,13208:6434165,15022984:0,708313,196608 -r1,13248:32779637,15022984:26345472,904921,196608 -k1,13208:6434165,15022984:-26345472 -) -(1,13208:6434165,15022984:26345472,708313,196608 -[1,13208:6630773,15022984:25952256,511705,0 -(1,13206:6630773,14921797:25952256,410518,101187 -(1,13205:6630773,14921797:0,0,0 -g1,13205:6630773,14921797 -g1,13205:6630773,14921797 -g1,13205:6303093,14921797 -(1,13205:6303093,14921797:0,0,0 -) -g1,13205:6630773,14921797 -) -g1,13206:10108376,14921797 -g1,13206:11056814,14921797 -g1,13206:11689106,14921797 -g1,13206:12321398,14921797 -g1,13206:14850564,14921797 -g1,13206:15799002,14921797 -g1,13206:17063585,14921797 -g1,13206:17695877,14921797 -h1,13206:19276606,14921797:0,0,0 -k1,13206:32583029,14921797:13306423 -g1,13206:32583029,14921797 -) -] -) -g1,13208:32583029,15022984 -g1,13208:6630773,15022984 -g1,13208:6630773,15022984 -g1,13208:32583029,15022984 -g1,13208:32583029,15022984 -) -h1,13208:6630773,15219592:0,0,0 -(1,13212:6630773,16529069:25952256,513147,134348 -h1,13211:6630773,16529069:983040,0,0 -k1,13211:8793079,16529069:137244 -k1,13211:9949409,16529069:137245 -k1,13211:11392786,16529069:137244 -k1,13211:12807327,16529069:137244 -k1,13211:13402668,16529069:137244 -k1,13211:14071410,16529069:137245 -k1,13211:16569261,16529069:137244 -k1,13211:17357933,16529069:137244 -k1,13211:18587662,16529069:137244 -(1,13211:18587662,16529069:0,459977,115847 -r1,13248:22814758,16529069:4227096,575824,115847 -k1,13211:18587662,16529069:-4227096 -) -(1,13211:18587662,16529069:4227096,459977,115847 -k1,13211:18587662,16529069:3277 -h1,13211:22811481,16529069:0,411205,112570 -) -k1,13211:22952003,16529069:137245 -k1,13211:23740675,16529069:137244 -k1,13211:25274491,16529069:137244 -k1,13211:25767595,16529069:137244 -k1,13211:28416180,16529069:137245 -(1,13211:28416180,16529069:0,452978,122846 -r1,13248:30884717,16529069:2468537,575824,122846 -k1,13211:28416180,16529069:-2468537 -) -(1,13211:28416180,16529069:2468537,452978,122846 -k1,13211:28416180,16529069:3277 -h1,13211:30881440,16529069:0,411205,112570 -) -k1,13211:31021961,16529069:137244 -k1,13212:32583029,16529069:0 -) -(1,13212:6630773,17370557:25952256,513147,126483 -k1,13211:8665261,17370557:173921 -k1,13211:9600710,17370557:173921 -k1,13211:10793716,17370557:173921 -k1,13211:13490773,17370557:173921 -k1,13211:14316122,17370557:173921 -k1,13211:15509127,17370557:173920 -(1,13211:15509127,17370557:0,452978,115847 -r1,13248:17625952,17370557:2116825,568825,115847 -k1,13211:15509127,17370557:-2116825 -) -(1,13211:15509127,17370557:2116825,452978,115847 -k1,13211:15509127,17370557:3277 -h1,13211:17622675,17370557:0,411205,112570 -) -k1,13211:17799873,17370557:173921 -k1,13211:20991727,17370557:173921 -k1,13211:21793483,17370557:173921 -k1,13211:22986489,17370557:173921 -k1,13211:24527491,17370557:173921 -k1,13211:25368568,17370557:173921 -(1,13211:25368568,17370557:0,459977,115847 -r1,13248:32409359,17370557:7040791,575824,115847 -k1,13211:25368568,17370557:-7040791 -) -(1,13211:25368568,17370557:7040791,459977,115847 -k1,13211:25368568,17370557:3277 -h1,13211:32406082,17370557:0,411205,112570 -) -k1,13212:32583029,17370557:0 -) -(1,13212:6630773,18212045:25952256,513147,134348 -(1,13211:6630773,18212045:0,452978,122846 -r1,13248:10857869,18212045:4227096,575824,122846 -k1,13211:6630773,18212045:-4227096 -) -(1,13211:6630773,18212045:4227096,452978,122846 -k1,13211:6630773,18212045:3277 -h1,13211:10854592,18212045:0,411205,112570 -) -k1,13211:11012805,18212045:154936 -k1,13211:11699238,18212045:154936 -k1,13211:13367400,18212045:154936 -k1,13211:14283864,18212045:154936 -k1,13211:16878050,18212045:154936 -k1,13211:18413829,18212045:154935 -k1,13211:20424089,18212045:154936 -k1,13211:22570009,18212045:154936 -k1,13211:23744030,18212045:154936 -k1,13211:26793036,18212045:154936 -k1,13211:28990729,18212045:154936 -k1,13211:31591469,18212045:154936 -k1,13211:32583029,18212045:0 -) -(1,13212:6630773,19053533:25952256,505283,134348 -k1,13211:9335947,19053533:159756 -k1,13211:10889655,19053533:159757 -k1,13211:12068496,19053533:159756 -k1,13211:15436896,19053533:159757 -k1,13211:18042456,19053533:159756 -k1,13211:19803258,19053533:159757 -k1,13211:21743627,19053533:159756 -k1,13211:22301843,19053533:159757 -k1,13211:23113027,19053533:159756 -k1,13211:23878337,19053533:159757 -k1,13211:26717205,19053533:159756 -k1,13211:27638490,19053533:159757 -k1,13211:30159508,19053533:159756 -k1,13211:32583029,19053533:0 -) -(1,13212:6630773,19895021:25952256,505283,7863 -g1,13211:9465205,19895021 -g1,13211:10720874,19895021 -g1,13211:12111548,19895021 -k1,13212:32583029,19895021:18930074 -g1,13212:32583029,19895021 -) -v1,13214:6630773,21029188:0,393216,0 -(1,13223:6630773,24675174:25952256,4039202,196608 -g1,13223:6630773,24675174 -g1,13223:6630773,24675174 -g1,13223:6434165,24675174 -(1,13223:6434165,24675174:0,4039202,196608 -r1,13248:32779637,24675174:26345472,4235810,196608 -k1,13223:6434165,24675174:-26345472 -) -(1,13223:6434165,24675174:26345472,4039202,196608 -[1,13223:6630773,24675174:25952256,3842594,0 -(1,13216:6630773,21236806:25952256,404226,107478 -(1,13215:6630773,21236806:0,0,0 -g1,13215:6630773,21236806 -g1,13215:6630773,21236806 -g1,13215:6303093,21236806 -(1,13215:6303093,21236806:0,0,0 -) -g1,13215:6630773,21236806 -) -k1,13216:6630773,21236806:0 -g1,13216:14218270,21236806 -g1,13216:16115145,21236806 -g1,13216:16747437,21236806 -g1,13216:17695875,21236806 -g1,13216:18328167,21236806 -g1,13216:18960459,21236806 -g1,13216:20225042,21236806 -h1,13216:20541188,21236806:0,0,0 -k1,13216:32583029,21236806:12041841 -g1,13216:32583029,21236806 -) -(1,13217:6630773,21902984:25952256,410518,101187 -h1,13217:6630773,21902984:0,0,0 -g1,13217:6946919,21902984 -g1,13217:7263065,21902984 -g1,13217:15798999,21902984 -g1,13217:16431291,21902984 -g1,13217:20225040,21902984 -g1,13217:22438060,21902984 -g1,13217:23070352,21902984 -k1,13217:23070352,21902984:0 -h1,13217:24967226,21902984:0,0,0 -k1,13217:32583029,21902984:7615803 -g1,13217:32583029,21902984 -) -(1,13218:6630773,22569162:25952256,410518,107478 -h1,13218:6630773,22569162:0,0,0 -g1,13218:6946919,22569162 -g1,13218:7263065,22569162 -g1,13218:7579211,22569162 -g1,13218:7895357,22569162 -g1,13218:8211503,22569162 -g1,13218:8527649,22569162 -g1,13218:8843795,22569162 -g1,13218:9159941,22569162 -g1,13218:9476087,22569162 -g1,13218:9792233,22569162 -g1,13218:10108379,22569162 -g1,13218:10424525,22569162 -g1,13218:10740671,22569162 -g1,13218:11056817,22569162 -g1,13218:11372963,22569162 -g1,13218:11689109,22569162 -g1,13218:12005255,22569162 -g1,13218:12321401,22569162 -g1,13218:12637547,22569162 -g1,13218:12953693,22569162 -g1,13218:13269839,22569162 -g1,13218:15799005,22569162 -g1,13218:16431297,22569162 -g1,13218:19908900,22569162 -g1,13218:20541192,22569162 -k1,13218:20541192,22569162:0 -h1,13218:27180252,22569162:0,0,0 -k1,13218:32583029,22569162:5402777 -g1,13218:32583029,22569162 -) -(1,13219:6630773,23235340:25952256,404226,107478 -h1,13219:6630773,23235340:0,0,0 -g1,13219:6946919,23235340 -g1,13219:7263065,23235340 -g1,13219:7579211,23235340 -g1,13219:7895357,23235340 -g1,13219:8211503,23235340 -g1,13219:8527649,23235340 -g1,13219:8843795,23235340 -g1,13219:9159941,23235340 -g1,13219:9476087,23235340 -g1,13219:9792233,23235340 -g1,13219:10108379,23235340 -g1,13219:10424525,23235340 -g1,13219:10740671,23235340 -g1,13219:11056817,23235340 -g1,13219:11372963,23235340 -g1,13219:11689109,23235340 -g1,13219:12005255,23235340 -g1,13219:12321401,23235340 -g1,13219:12637547,23235340 -g1,13219:12953693,23235340 -g1,13219:13269839,23235340 -g1,13219:17063587,23235340 -g1,13219:17695879,23235340 -g1,13219:19592754,23235340 -h1,13219:19908900,23235340:0,0,0 -k1,13219:32583029,23235340:12674129 -g1,13219:32583029,23235340 -) -(1,13220:6630773,23901518:25952256,404226,107478 -h1,13220:6630773,23901518:0,0,0 -g1,13220:6946919,23901518 -g1,13220:7263065,23901518 -g1,13220:15166708,23901518 -g1,13220:15799000,23901518 -g1,13220:18012020,23901518 -g1,13220:19592749,23901518 -g1,13220:20225041,23901518 -g1,13220:22754207,23901518 -g1,13220:24967227,23901518 -g1,13220:25599519,23901518 -g1,13220:27180249,23901518 -k1,13220:27180249,23901518:0 -h1,13220:28128687,23901518:0,0,0 -k1,13220:32583029,23901518:4454342 -g1,13220:32583029,23901518 -) -(1,13221:6630773,24567696:25952256,404226,107478 -h1,13221:6630773,24567696:0,0,0 -g1,13221:6946919,24567696 -g1,13221:7263065,24567696 -g1,13221:7579211,24567696 -g1,13221:7895357,24567696 -g1,13221:8211503,24567696 -g1,13221:8527649,24567696 -g1,13221:8843795,24567696 -g1,13221:9159941,24567696 -g1,13221:9476087,24567696 -g1,13221:9792233,24567696 -g1,13221:10108379,24567696 -g1,13221:10424525,24567696 -g1,13221:10740671,24567696 -g1,13221:11056817,24567696 -g1,13221:11372963,24567696 -g1,13221:11689109,24567696 -g1,13221:12005255,24567696 -g1,13221:12321401,24567696 -g1,13221:12637547,24567696 -g1,13221:12953693,24567696 -g1,13221:13269839,24567696 -g1,13221:13585985,24567696 -g1,13221:13902131,24567696 -g1,13221:15799005,24567696 -g1,13221:16431297,24567696 -h1,13221:20225045,24567696:0,0,0 -k1,13221:32583029,24567696:12357984 -g1,13221:32583029,24567696 -) -] -) -g1,13223:32583029,24675174 -g1,13223:6630773,24675174 -g1,13223:6630773,24675174 -g1,13223:32583029,24675174 -g1,13223:32583029,24675174 -) -h1,13223:6630773,24871782:0,0,0 -(1,13226:6630773,34488972:25952256,9083666,0 -k1,13226:10523651,34488972:3892878 -h1,13225:10523651,34488972:0,0,0 -(1,13225:10523651,34488972:18166500,9083666,0 -(1,13225:10523651,34488972:18167376,9083688,0 -(1,13225:10523651,34488972:18167376,9083688,0 -(1,13225:10523651,34488972:0,9083688,0 -(1,13225:10523651,34488972:0,14208860,0 -(1,13225:10523651,34488972:28417720,14208860,0 -) -k1,13225:10523651,34488972:-28417720 -) -) -g1,13225:28691027,34488972 -) -) -) -g1,13226:28690151,34488972 -k1,13226:32583029,34488972:3892878 -) -(1,13233:6630773,35330460:25952256,513147,134348 -h1,13232:6630773,35330460:983040,0,0 -k1,13232:8395002,35330460:153354 -k1,13232:9567441,35330460:153354 -k1,13232:11962126,35330460:153354 -k1,13232:13392777,35330460:153354 -k1,13232:14414483,35330460:153354 -k1,13232:15845134,35330460:153354 -k1,13232:17017574,35330460:153355 -k1,13232:20054512,35330460:153354 -k1,13232:23275606,35330460:153354 -k1,13232:25130930,35330460:153354 -k1,13232:26678235,35330460:153354 -k1,13232:28862550,35330460:153354 -k1,13232:29963555,35330460:153354 -k1,13232:32583029,35330460:0 -) -(1,13233:6630773,36171948:25952256,505283,134348 -k1,13232:7492061,36171948:233453 -k1,13232:8928754,36171948:233452 -k1,13232:10529288,36171948:233453 -k1,13232:11631093,36171948:233453 -k1,13232:13394812,36171948:233453 -k1,13232:14279692,36171948:233452 -k1,13232:15605630,36171948:233453 -(1,13232:15605630,36171948:0,452978,122846 -r1,13248:18074167,36171948:2468537,575824,122846 -k1,13232:15605630,36171948:-2468537 -) -(1,13232:15605630,36171948:2468537,452978,122846 -k1,13232:15605630,36171948:3277 -h1,13232:18070890,36171948:0,411205,112570 -) -k1,13232:18307620,36171948:233453 -k1,13232:19192501,36171948:233453 -k1,13232:20173719,36171948:233452 -k1,13232:21715926,36171948:233453 -k1,13232:22600807,36171948:233453 -k1,13232:26394831,36171948:233453 -k1,13232:27647368,36171948:233452 -k1,13232:30688383,36171948:233453 -k1,13232:32583029,36171948:0 -) -(1,13233:6630773,37013436:25952256,513147,134348 -k1,13232:7485112,37013436:195047 -k1,13232:8699243,37013436:195046 -k1,13232:11417426,37013436:195047 -(1,13232:11624520,37013436:0,414482,115847 -r1,13248:13389633,37013436:1765113,530329,115847 -k1,13232:11624520,37013436:-1765113 -) -(1,13232:11624520,37013436:1765113,414482,115847 -k1,13232:11624520,37013436:3277 -h1,13232:13386356,37013436:0,411205,112570 -) -k1,13232:13791774,37013436:195047 -k1,13232:15554442,37013436:195047 -k1,13232:17033994,37013436:195046 -k1,13232:18742267,37013436:195047 -k1,13232:19956399,37013436:195047 -k1,13232:22848252,37013436:195046 -k1,13232:24112847,37013436:195047 -k1,13232:26202540,37013436:195047 -k1,13232:27056879,37013436:195047 -k1,13232:28271010,37013436:195046 -k1,13232:31629480,37013436:195047 -k1,13232:32583029,37013436:0 -) -(1,13233:6630773,37854924:25952256,513147,134348 -k1,13232:7978787,37854924:255529 -k1,13232:8920477,37854924:255528 -k1,13232:11205001,37854924:255529 -k1,13232:12479615,37854924:255529 -k1,13232:15000723,37854924:255528 -k1,13232:18419675,37854924:255529 -(1,13232:18419675,37854924:0,452978,122846 -r1,13248:22646771,37854924:4227096,575824,122846 -k1,13232:18419675,37854924:-4227096 -) -(1,13232:18419675,37854924:4227096,452978,122846 -k1,13232:18419675,37854924:3277 -h1,13232:22643494,37854924:0,411205,112570 -) -k1,13232:23075969,37854924:255528 -k1,13232:24528185,37854924:255529 -k1,13232:27591276,37854924:255529 -k1,13232:28462842,37854924:255528 -k1,13232:29921612,37854924:255529 -k1,13232:32583029,37854924:0 -) -(1,13233:6630773,38696412:25952256,513147,126483 -k1,13232:7951946,38696412:216891 -k1,13232:8916602,38696412:216890 -k1,13232:10545794,38696412:216891 -k1,13232:11622516,38696412:216890 -k1,13232:12858492,38696412:216891 -k1,13232:15586722,38696412:216890 -(1,13232:15586722,38696412:0,414482,115847 -r1,13248:15944988,38696412:358266,530329,115847 -k1,13232:15586722,38696412:-358266 -) -(1,13232:15586722,38696412:358266,414482,115847 -k1,13232:15586722,38696412:3277 -h1,13232:15941711,38696412:0,411205,112570 -) -k1,13232:16161879,38696412:216891 -k1,13232:17946391,38696412:216891 -k1,13232:19182366,38696412:216890 -k1,13232:20788620,38696412:216891 -k1,13232:22881806,38696412:216890 -(1,13232:22881806,38696412:0,452978,115847 -r1,13248:28164037,38696412:5282231,568825,115847 -k1,13232:22881806,38696412:-5282231 -) -(1,13232:22881806,38696412:5282231,452978,115847 -k1,13232:22881806,38696412:3277 -h1,13232:28160760,38696412:0,411205,112570 -) -k1,13232:28380928,38696412:216891 -k1,13232:29129315,38696412:216890 -k1,13232:31931601,38696412:216891 -k1,13232:32583029,38696412:0 -) -(1,13233:6630773,39537900:25952256,513147,134348 -k1,13232:7922199,39537900:272341 -k1,13232:8558922,39537900:272342 -k1,13232:11675526,39537900:272341 -k1,13232:12560630,39537900:272342 -k1,13232:13599087,39537900:272341 -k1,13232:16040015,39537900:272342 -k1,13232:18924621,39537900:272341 -(1,13232:18924621,39537900:0,414482,115847 -r1,13248:19282887,39537900:358266,530329,115847 -k1,13232:18924621,39537900:-358266 -) -(1,13232:18924621,39537900:358266,414482,115847 -k1,13232:18924621,39537900:3277 -h1,13232:19279610,39537900:0,411205,112570 -) -k1,13232:19555229,39537900:272342 -k1,13232:21395191,39537900:272341 -k1,13232:22686618,39537900:272342 -k1,13232:24348322,39537900:272341 -k1,13232:26496960,39537900:272342 -(1,13232:26496960,39537900:0,452978,115847 -r1,13248:31779191,39537900:5282231,568825,115847 -k1,13232:26496960,39537900:-5282231 -) -(1,13232:26496960,39537900:5282231,452978,115847 -k1,13232:26496960,39537900:3277 -h1,13232:31775914,39537900:0,411205,112570 -) -k1,13232:32051532,39537900:272341 -k1,13232:32583029,39537900:0 -) -(1,13233:6630773,40379388:25952256,513147,126483 -k1,13232:9480842,40379388:264674 -k1,13232:10396944,40379388:264674 -k1,13232:11680703,40379388:264674 -k1,13232:12353011,40379388:264674 -k1,13232:15461948,40379388:264674 -k1,13232:17621268,40379388:264674 -k1,13232:18545234,40379388:264674 -k1,13232:19828993,40379388:264674 -k1,13232:24487856,40379388:264674 -k1,13232:25368568,40379388:264674 -(1,13232:25368568,40379388:0,459977,115847 -r1,13248:32409359,40379388:7040791,575824,115847 -k1,13232:25368568,40379388:-7040791 -) -(1,13232:25368568,40379388:7040791,459977,115847 -k1,13232:25368568,40379388:3277 -h1,13232:32406082,40379388:0,411205,112570 -) -k1,13232:32583029,40379388:0 -) -(1,13233:6630773,41220876:25952256,513147,126483 -k1,13232:8560680,41220876:284953 -k1,13232:9864717,41220876:284952 -k1,13232:14717529,41220876:284953 -k1,13232:17844123,41220876:284953 -(1,13232:17844123,41220876:0,414482,115847 -r1,13248:18202389,41220876:358266,530329,115847 -k1,13232:17844123,41220876:-358266 -) -(1,13232:17844123,41220876:358266,414482,115847 -k1,13232:17844123,41220876:3277 -h1,13232:18199112,41220876:0,411205,112570 -) -k1,13232:18487341,41220876:284952 -k1,13232:19963739,41220876:284953 -(1,13232:19963739,41220876:0,452978,122846 -r1,13248:22432276,41220876:2468537,575824,122846 -k1,13232:19963739,41220876:-2468537 -) -(1,13232:19963739,41220876:2468537,452978,122846 -k1,13232:19963739,41220876:3277 -h1,13232:22428999,41220876:0,411205,112570 -) -k1,13232:22717229,41220876:284953 -k1,13232:23618219,41220876:284952 -k1,13232:24922257,41220876:284953 -k1,13232:26596573,41220876:284953 -k1,13232:28757821,41220876:284952 -k1,13232:31821501,41220876:284953 -k1,13233:32583029,41220876:0 -) -(1,13233:6630773,42062364:25952256,513147,126483 -(1,13232:6630773,42062364:0,459977,115847 -r1,13248:13671564,42062364:7040791,575824,115847 -k1,13232:6630773,42062364:-7040791 -) -(1,13232:6630773,42062364:7040791,459977,115847 -k1,13232:6630773,42062364:3277 -h1,13232:13668287,42062364:0,411205,112570 -) -k1,13232:13852481,42062364:180917 -k1,13232:15024957,42062364:180916 -k1,13232:18499058,42062364:180917 -k1,13232:19871419,42062364:180916 -k1,13232:22637731,42062364:180917 -k1,13232:23470076,42062364:180917 -k1,13232:24670077,42062364:180916 -k1,13232:25258628,42062364:180917 -k1,13232:27334190,42062364:180916 -k1,13232:28182263,42062364:180917 -(1,13232:28182263,42062364:0,452978,122846 -r1,13248:32409359,42062364:4227096,575824,122846 -k1,13232:28182263,42062364:-4227096 -) -(1,13232:28182263,42062364:4227096,452978,122846 -k1,13232:28182263,42062364:3277 -h1,13232:32406082,42062364:0,411205,112570 -) -k1,13233:32583029,42062364:0 -k1,13233:32583029,42062364:0 -) -v1,13235:6630773,43196531:0,393216,0 -(1,13248:6630773,45510161:25952256,2706846,196608 -g1,13248:6630773,45510161 -g1,13248:6630773,45510161 -g1,13248:6434165,45510161 -(1,13248:6434165,45510161:0,2706846,196608 -r1,13248:32779637,45510161:26345472,2903454,196608 -k1,13248:6434165,45510161:-26345472 -) -(1,13248:6434165,45510161:26345472,2706846,196608 -[1,13248:6630773,45510161:25952256,2510238,0 -(1,13237:6630773,43404149:25952256,404226,107478 -(1,13236:6630773,43404149:0,0,0 -g1,13236:6630773,43404149 -g1,13236:6630773,43404149 -g1,13236:6303093,43404149 -(1,13236:6303093,43404149:0,0,0 -) -g1,13236:6630773,43404149 -) -k1,13237:6630773,43404149:0 -g1,13237:14218270,43404149 -h1,13237:14534416,43404149:0,0,0 -k1,13237:32583028,43404149:18048612 -g1,13237:32583028,43404149 -) -(1,13238:6630773,44070327:25952256,410518,101187 -h1,13238:6630773,44070327:0,0,0 -g1,13238:6946919,44070327 -g1,13238:7263065,44070327 -g1,13238:15798999,44070327 -g1,13238:16431291,44070327 -k1,13238:16431291,44070327:0 -h1,13238:19908894,44070327:0,0,0 -k1,13238:32583029,44070327:12674135 -g1,13238:32583029,44070327 -) -(1,13239:6630773,44736505:25952256,404226,82312 -h1,13239:6630773,44736505:0,0,0 -g1,13239:6946919,44736505 -g1,13239:7263065,44736505 -g1,13239:7579211,44736505 -g1,13239:7895357,44736505 -g1,13239:8211503,44736505 -g1,13239:8527649,44736505 -g1,13239:8843795,44736505 -g1,13239:9159941,44736505 -g1,13239:9476087,44736505 -g1,13239:9792233,44736505 -g1,13239:10108379,44736505 -g1,13239:10424525,44736505 -g1,13239:10740671,44736505 -g1,13239:11056817,44736505 -g1,13239:11372963,44736505 -g1,13239:11689109,44736505 -g1,13239:12005255,44736505 -g1,13239:12321401,44736505 -g1,13239:12637547,44736505 -g1,13239:12953693,44736505 -g1,13239:13269839,44736505 -g1,13239:15482859,44736505 -g1,13239:16115151,44736505 -k1,13239:16115151,44736505:0 -h1,13239:18012025,44736505:0,0,0 -k1,13239:32583029,44736505:14571004 -g1,13239:32583029,44736505 -) -(1,13240:6630773,45402683:25952256,404226,107478 -h1,13240:6630773,45402683:0,0,0 -g1,13240:6946919,45402683 -g1,13240:7263065,45402683 -g1,13240:7579211,45402683 -g1,13240:7895357,45402683 -g1,13240:8211503,45402683 -g1,13240:8527649,45402683 -g1,13240:8843795,45402683 -g1,13240:9159941,45402683 -g1,13240:9476087,45402683 -g1,13240:9792233,45402683 -g1,13240:10108379,45402683 -g1,13240:10424525,45402683 -g1,13240:10740671,45402683 -g1,13240:11056817,45402683 -g1,13240:11372963,45402683 -g1,13240:11689109,45402683 -g1,13240:12005255,45402683 -g1,13240:12321401,45402683 -g1,13240:12637547,45402683 -g1,13240:12953693,45402683 -g1,13240:13269839,45402683 -g1,13240:15799005,45402683 -g1,13240:16431297,45402683 -g1,13240:18328172,45402683 -g1,13240:18960464,45402683 -k1,13240:18960464,45402683:0 -h1,13240:19592756,45402683:0,0,0 -k1,13240:32583029,45402683:12990273 -g1,13240:32583029,45402683 -) -] -) -g1,13248:32583029,45510161 -g1,13248:6630773,45510161 -g1,13248:6630773,45510161 -g1,13248:32583029,45510161 -g1,13248:32583029,45510161 -) -] -(1,13248:32583029,45706769:0,0,0 -g1,13248:32583029,45706769 -) -) -] -(1,13248:6630773,47279633:25952256,0,0 -h1,13248:6630773,47279633:25952256,0,0 -) -] -(1,13248:4262630,4025873:0,0,0 -[1,13248:-473656,4025873:0,0,0 -(1,13248:-473656,-710413:0,0,0 -(1,13248:-473656,-710413:0,0,0 -g1,13248:-473656,-710413 -) -g1,13248:-473656,-710413 -) -] -) -] -!28435 -}250 -Input:1883:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1884:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1885:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1886:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1887:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1888:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1889:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1890:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1891:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1892:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1893:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1894:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1895:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1896:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1897:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1392 -{251 -[1,13278:4262630,47279633:28320399,43253760,0 -(1,13278:4262630,4025873:0,0,0 -[1,13278:-473656,4025873:0,0,0 -(1,13278:-473656,-710413:0,0,0 -(1,13278:-473656,-644877:0,0,0 -k1,13278:-473656,-644877:-65536 -) -(1,13278:-473656,4736287:0,0,0 -k1,13278:-473656,4736287:5209943 -) -g1,13278:-473656,-710413 -) -] -) -[1,13278:6630773,47279633:25952256,43253760,0 -[1,13278:6630773,4812305:25952256,786432,0 -(1,13278:6630773,4812305:25952256,513147,134348 -(1,13278:6630773,4812305:25952256,513147,134348 -g1,13278:3078558,4812305 -[1,13278:3078558,4812305:0,0,0 -(1,13278:3078558,2439708:0,1703936,0 -k1,13278:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,13278:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,13278:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,13278:3078558,4812305:0,0,0 -(1,13278:3078558,2439708:0,1703936,0 -g1,13278:29030814,2439708 -g1,13278:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,13278:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,13278:37855564,2439708:1179648,16384,0 -) -) -k1,13278:3078556,2439708:-34777008 -) -] -[1,13278:3078558,4812305:0,0,0 -(1,13278:3078558,49800853:0,16384,2228224 -k1,13278:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,13278:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,13278:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,13278:3078558,4812305:0,0,0 -(1,13278:3078558,49800853:0,16384,2228224 -g1,13278:29030814,49800853 -g1,13278:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,13278:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,13278:37855564,49800853:1179648,16384,0 -) -) -k1,13278:3078556,49800853:-34777008 -) -] -g1,13278:6630773,4812305 -k1,13278:25712890,4812305:17886740 -g1,13278:29057847,4812305 -g1,13278:29873114,4812305 -) -) -] -[1,13278:6630773,45706769:25952256,40108032,0 -(1,13278:6630773,45706769:25952256,40108032,0 -(1,13278:6630773,45706769:0,0,0 -g1,13278:6630773,45706769 -) -[1,13278:6630773,45706769:25952256,40108032,0 -v1,13248:6630773,6254097:0,393216,0 -(1,13248:6630773,9900083:25952256,4039202,196608 -g1,13248:6630773,9900083 -g1,13248:6630773,9900083 -g1,13248:6434165,9900083 -(1,13248:6434165,9900083:0,4039202,196608 -r1,13278:32779637,9900083:26345472,4235810,196608 -k1,13248:6434165,9900083:-26345472 -) -(1,13248:6434165,9900083:26345472,4039202,196608 -[1,13248:6630773,9900083:25952256,3842594,0 -(1,13241:6630773,6461715:25952256,404226,107478 -h1,13241:6630773,6461715:0,0,0 -g1,13241:6946919,6461715 -g1,13241:7263065,6461715 -g1,13241:7579211,6461715 -g1,13241:7895357,6461715 -g1,13241:8211503,6461715 -g1,13241:8527649,6461715 -g1,13241:8843795,6461715 -g1,13241:9159941,6461715 -g1,13241:9476087,6461715 -g1,13241:9792233,6461715 -g1,13241:10108379,6461715 -g1,13241:10424525,6461715 -g1,13241:10740671,6461715 -g1,13241:11056817,6461715 -g1,13241:11372963,6461715 -g1,13241:11689109,6461715 -g1,13241:12005255,6461715 -g1,13241:12321401,6461715 -g1,13241:12637547,6461715 -g1,13241:12953693,6461715 -g1,13241:13269839,6461715 -g1,13241:13585985,6461715 -g1,13241:13902131,6461715 -g1,13241:14218277,6461715 -g1,13241:14534423,6461715 -g1,13241:14850569,6461715 -g1,13241:15166715,6461715 -g1,13241:15482861,6461715 -g1,13241:15799007,6461715 -g1,13241:16115153,6461715 -g1,13241:16431299,6461715 -g1,13241:16747445,6461715 -g1,13241:17063591,6461715 -g1,13241:17379737,6461715 -g1,13241:17695883,6461715 -g1,13241:18328175,6461715 -g1,13241:18960467,6461715 -g1,13241:22754215,6461715 -g1,13241:23386507,6461715 -k1,13241:23386507,6461715:0 -h1,13241:24018799,6461715:0,0,0 -k1,13241:32583029,6461715:8564230 -g1,13241:32583029,6461715 -) -(1,13242:6630773,7127893:25952256,410518,107478 -h1,13242:6630773,7127893:0,0,0 -g1,13242:6946919,7127893 -g1,13242:7263065,7127893 -g1,13242:7579211,7127893 -g1,13242:7895357,7127893 -g1,13242:8211503,7127893 -g1,13242:8527649,7127893 -g1,13242:8843795,7127893 -g1,13242:9159941,7127893 -g1,13242:9476087,7127893 -g1,13242:9792233,7127893 -g1,13242:10108379,7127893 -g1,13242:10424525,7127893 -g1,13242:10740671,7127893 -g1,13242:11056817,7127893 -g1,13242:11372963,7127893 -g1,13242:11689109,7127893 -g1,13242:12005255,7127893 -g1,13242:12321401,7127893 -g1,13242:12637547,7127893 -g1,13242:12953693,7127893 -g1,13242:13269839,7127893 -g1,13242:13585985,7127893 -g1,13242:13902131,7127893 -g1,13242:14218277,7127893 -g1,13242:14534423,7127893 -g1,13242:14850569,7127893 -g1,13242:15166715,7127893 -g1,13242:15482861,7127893 -g1,13242:15799007,7127893 -g1,13242:16115153,7127893 -g1,13242:16431299,7127893 -g1,13242:16747445,7127893 -g1,13242:17063591,7127893 -g1,13242:17379737,7127893 -g1,13242:17695883,7127893 -g1,13242:18012029,7127893 -g1,13242:18328175,7127893 -g1,13242:18644321,7127893 -g1,13242:18960467,7127893 -g1,13242:19276613,7127893 -g1,13242:19592759,7127893 -g1,13242:19908905,7127893 -g1,13242:20225051,7127893 -g1,13242:20541197,7127893 -g1,13242:20857343,7127893 -g1,13242:24334946,7127893 -g1,13242:24967238,7127893 -g1,13242:25599530,7127893 -g1,13242:26231822,7127893 -k1,13242:26231822,7127893:0 -h1,13242:29077133,7127893:0,0,0 -k1,13242:32583029,7127893:3505896 -g1,13242:32583029,7127893 -) -(1,13243:6630773,7794071:25952256,410518,107478 -h1,13243:6630773,7794071:0,0,0 -g1,13243:6946919,7794071 -g1,13243:7263065,7794071 -g1,13243:7579211,7794071 -g1,13243:7895357,7794071 -g1,13243:8211503,7794071 -g1,13243:8527649,7794071 -g1,13243:8843795,7794071 -g1,13243:9159941,7794071 -g1,13243:9476087,7794071 -g1,13243:9792233,7794071 -g1,13243:10108379,7794071 -g1,13243:10424525,7794071 -g1,13243:10740671,7794071 -g1,13243:11056817,7794071 -g1,13243:11372963,7794071 -g1,13243:11689109,7794071 -g1,13243:12005255,7794071 -g1,13243:12321401,7794071 -g1,13243:12637547,7794071 -g1,13243:12953693,7794071 -g1,13243:13269839,7794071 -g1,13243:13585985,7794071 -g1,13243:13902131,7794071 -g1,13243:14218277,7794071 -g1,13243:14534423,7794071 -g1,13243:14850569,7794071 -g1,13243:15166715,7794071 -g1,13243:15482861,7794071 -g1,13243:15799007,7794071 -g1,13243:16115153,7794071 -g1,13243:16431299,7794071 -g1,13243:16747445,7794071 -g1,13243:17063591,7794071 -g1,13243:17379737,7794071 -g1,13243:17695883,7794071 -g1,13243:19908903,7794071 -g1,13243:20541195,7794071 -k1,13243:20541195,7794071:0 -h1,13243:27180255,7794071:0,0,0 -k1,13243:32583029,7794071:5402774 -g1,13243:32583029,7794071 -) -(1,13244:6630773,8460249:25952256,404226,107478 -h1,13244:6630773,8460249:0,0,0 -g1,13244:6946919,8460249 -g1,13244:7263065,8460249 -g1,13244:7579211,8460249 -g1,13244:7895357,8460249 -g1,13244:8211503,8460249 -g1,13244:8527649,8460249 -g1,13244:8843795,8460249 -g1,13244:9159941,8460249 -g1,13244:9476087,8460249 -g1,13244:9792233,8460249 -g1,13244:10108379,8460249 -g1,13244:10424525,8460249 -g1,13244:10740671,8460249 -g1,13244:11056817,8460249 -g1,13244:11372963,8460249 -g1,13244:11689109,8460249 -g1,13244:12005255,8460249 -g1,13244:12321401,8460249 -g1,13244:12637547,8460249 -g1,13244:12953693,8460249 -g1,13244:13269839,8460249 -g1,13244:17063587,8460249 -g1,13244:17695879,8460249 -g1,13244:19592754,8460249 -h1,13244:19908900,8460249:0,0,0 -k1,13244:32583029,8460249:12674129 -g1,13244:32583029,8460249 -) -(1,13245:6630773,9126427:25952256,404226,107478 -h1,13245:6630773,9126427:0,0,0 -g1,13245:6946919,9126427 -g1,13245:7263065,9126427 -g1,13245:15166708,9126427 -g1,13245:15799000,9126427 -g1,13245:18012020,9126427 -g1,13245:19592749,9126427 -g1,13245:20225041,9126427 -g1,13245:22754207,9126427 -g1,13245:24967227,9126427 -g1,13245:25599519,9126427 -g1,13245:27180249,9126427 -k1,13245:27180249,9126427:0 -h1,13245:28128687,9126427:0,0,0 -k1,13245:32583029,9126427:4454342 -g1,13245:32583029,9126427 -) -(1,13246:6630773,9792605:25952256,404226,107478 -h1,13246:6630773,9792605:0,0,0 -g1,13246:6946919,9792605 -g1,13246:7263065,9792605 -g1,13246:7579211,9792605 -g1,13246:7895357,9792605 -g1,13246:8211503,9792605 -g1,13246:8527649,9792605 -g1,13246:8843795,9792605 -g1,13246:9159941,9792605 -g1,13246:9476087,9792605 -g1,13246:9792233,9792605 -g1,13246:10108379,9792605 -g1,13246:10424525,9792605 -g1,13246:10740671,9792605 -g1,13246:11056817,9792605 -g1,13246:11372963,9792605 -g1,13246:11689109,9792605 -g1,13246:12005255,9792605 -g1,13246:12321401,9792605 -g1,13246:12637547,9792605 -g1,13246:12953693,9792605 -g1,13246:13269839,9792605 -g1,13246:13585985,9792605 -g1,13246:13902131,9792605 -g1,13246:15799005,9792605 -g1,13246:16431297,9792605 -h1,13246:20225045,9792605:0,0,0 -k1,13246:32583029,9792605:12357984 -g1,13246:32583029,9792605 -) -] -) -g1,13248:32583029,9900083 -g1,13248:6630773,9900083 -g1,13248:6630773,9900083 -g1,13248:32583029,9900083 -g1,13248:32583029,9900083 -) -h1,13248:6630773,10096691:0,0,0 -(1,13251:6630773,19770181:25952256,9083666,0 -k1,13251:10523651,19770181:3892878 -h1,13250:10523651,19770181:0,0,0 -(1,13250:10523651,19770181:18166500,9083666,0 -(1,13250:10523651,19770181:18167376,9083688,0 -(1,13250:10523651,19770181:18167376,9083688,0 -(1,13250:10523651,19770181:0,9083688,0 -(1,13250:10523651,19770181:0,14208860,0 -(1,13250:10523651,19770181:28417720,14208860,0 -) -k1,13250:10523651,19770181:-28417720 -) -) -g1,13250:28691027,19770181 -) -) -) -g1,13251:28690151,19770181 -k1,13251:32583029,19770181:3892878 -) -(1,13258:6630773,20611669:25952256,513147,134348 -h1,13257:6630773,20611669:983040,0,0 -k1,13257:8519224,20611669:277576 -k1,13257:9725366,20611669:277497 -k1,13257:11194388,20611669:277577 -k1,13257:12491049,20611669:277576 -k1,13257:14133740,20611669:277576 -k1,13257:15070608,20611669:277576 -k1,13257:17819547,20611669:277576 -k1,13257:18756415,20611669:277576 -k1,13257:20053076,20611669:277576 -k1,13257:24256914,20611669:277576 -k1,13257:27428560,20611669:277576 -k1,13257:28237633,20611669:277576 -k1,13257:31931601,20611669:277576 -k1,13257:32583029,20611669:0 -) -(1,13258:6630773,21453157:25952256,513147,134348 -k1,13257:9534580,21453157:187995 -k1,13257:10741659,21453157:187994 -k1,13257:12609997,21453157:187995 -k1,13257:13457284,21453157:187995 -k1,13257:17256312,21453157:187994 -k1,13257:18391958,21453157:187995 -k1,13257:19599037,21453157:187994 -k1,13257:21122000,21453157:187995 -k1,13257:23244618,21453157:187995 -k1,13257:25593989,21453157:187994 -k1,13257:27471502,21453157:187995 -k1,13257:28275535,21453157:187995 -k1,13257:30010834,21453157:187994 -k1,13257:31217914,21453157:187995 -k1,13257:32583029,21453157:0 -) -(1,13258:6630773,22294645:25952256,513147,134348 -g1,13257:7489294,22294645 -g1,13257:10159886,22294645 -g1,13257:11018407,22294645 -g1,13257:12236721,22294645 -g1,13257:15319534,22294645 -g1,13257:18412833,22294645 -g1,13257:19143559,22294645 -g1,13257:22759180,22294645 -k1,13258:32583029,22294645:7322995 -g1,13258:32583029,22294645 -) -(1,13262:6630773,25102213:25952256,32768,229376 -(1,13262:6630773,25102213:0,32768,229376 -(1,13262:6630773,25102213:5505024,32768,229376 -r1,13278:12135797,25102213:5505024,262144,229376 -) -k1,13262:6630773,25102213:-5505024 -) -(1,13262:6630773,25102213:25952256,32768,0 -r1,13278:32583029,25102213:25952256,32768,0 -) -) -(1,13262:6630773,26706541:25952256,606339,14155 -(1,13262:6630773,26706541:1974731,575668,0 -g1,13262:6630773,26706541 -g1,13262:8605504,26706541 -) -k1,13262:32583029,26706541:19476774 -g1,13262:32583029,26706541 -) -(1,13266:6630773,27941245:25952256,513147,134348 -k1,13265:9795316,27941245:319625 -k1,13265:13622428,27941245:319625 -k1,13265:16468466,27941245:319625 -k1,13265:19550433,27941245:319624 -k1,13265:23085254,27941245:319625 -k1,13265:25179594,27941245:319625 -(1,13265:25179594,27941245:0,452978,122846 -r1,13278:29406690,27941245:4227096,575824,122846 -k1,13265:25179594,27941245:-4227096 -) -(1,13265:25179594,27941245:4227096,452978,122846 -k1,13265:25179594,27941245:3277 -h1,13265:29403413,27941245:0,411205,112570 -) -k1,13265:29726315,27941245:319625 -k1,13266:32583029,27941245:0 -) -(1,13266:6630773,28782733:25952256,505283,126483 -(1,13265:6630773,28782733:0,452978,115847 -r1,13278:8395886,28782733:1765113,568825,115847 -k1,13265:6630773,28782733:-1765113 -) -(1,13265:6630773,28782733:1765113,452978,115847 -k1,13265:6630773,28782733:3277 -h1,13265:8392609,28782733:0,411205,112570 -) -k1,13265:8808520,28782733:238964 -k1,13265:10238929,28782733:238964 -(1,13265:10238929,28782733:0,452978,122846 -r1,13278:14114313,28782733:3875384,575824,122846 -k1,13265:10238929,28782733:-3875384 -) -(1,13265:10238929,28782733:3875384,452978,122846 -k1,13265:10238929,28782733:3277 -h1,13265:14111036,28782733:0,411205,112570 -) -k1,13265:14353277,28782733:238964 -k1,13265:17448954,28782733:238963 -(1,13265:17448954,28782733:0,452978,115847 -r1,13278:20269203,28782733:2820249,568825,115847 -k1,13265:17448954,28782733:-2820249 -) -(1,13265:17448954,28782733:2820249,452978,115847 -k1,13265:17448954,28782733:3277 -h1,13265:20265926,28782733:0,411205,112570 -) -k1,13265:20681837,28782733:238964 -k1,13265:22387497,28782733:238964 -k1,13265:25152874,28782733:238964 -(1,13265:25152874,28782733:0,414482,115847 -r1,13278:25511140,28782733:358266,530329,115847 -k1,13265:25152874,28782733:-358266 -) -(1,13265:25152874,28782733:358266,414482,115847 -k1,13265:25152874,28782733:3277 -h1,13265:25507863,28782733:0,411205,112570 -) -k1,13265:25923774,28782733:238964 -(1,13265:25923774,28782733:0,414482,115847 -r1,13278:26282040,28782733:358266,530329,115847 -k1,13265:25923774,28782733:-358266 -) -(1,13265:25923774,28782733:358266,414482,115847 -k1,13265:25923774,28782733:3277 -h1,13265:26278763,28782733:0,411205,112570 -) -k1,13265:26694674,28782733:238964 -(1,13265:26694674,28782733:0,452978,115847 -r1,13278:28459787,28782733:1765113,568825,115847 -k1,13265:26694674,28782733:-1765113 -) -(1,13265:26694674,28782733:1765113,452978,115847 -k1,13265:26694674,28782733:3277 -h1,13265:28456510,28782733:0,411205,112570 -) -k1,13265:28698750,28782733:238963 -k1,13265:30129159,28782733:238964 -(1,13265:30129159,28782733:0,452978,115847 -r1,13278:31542560,28782733:1413401,568825,115847 -k1,13265:30129159,28782733:-1413401 -) -(1,13265:30129159,28782733:1413401,452978,115847 -k1,13265:30129159,28782733:3277 -h1,13265:31539283,28782733:0,411205,112570 -) -k1,13265:31955194,28782733:238964 -k1,13265:32583029,28782733:0 -) -(1,13266:6630773,29624221:25952256,513147,134348 -k1,13265:7987327,29624221:153313 -k1,13265:10419327,29624221:153313 -k1,13265:11440991,29624221:153312 -k1,13265:12726766,29624221:153313 -k1,13265:15549360,29624221:153313 -k1,13265:16721758,29624221:153313 -k1,13265:19637414,29624221:153313 -(1,13265:19637414,29624221:0,452978,122846 -r1,13278:23161086,29624221:3523672,575824,122846 -k1,13265:19637414,29624221:-3523672 -) -(1,13265:19637414,29624221:3523672,452978,122846 -k1,13265:19637414,29624221:3277 -h1,13265:23157809,29624221:0,411205,112570 -) -k1,13265:23314399,29624221:153313 -k1,13265:26251680,29624221:153312 -k1,13265:27021031,29624221:153313 -k1,13265:29754496,29624221:153313 -k1,13265:32583029,29624221:0 -) -(1,13266:6630773,30465709:25952256,513147,134348 -k1,13265:7990228,30465709:168010 -k1,13265:9850379,30465709:168011 -k1,13265:13010108,30465709:168010 -k1,13265:14745740,30465709:168011 -k1,13265:17824204,30465709:168010 -k1,13265:19276721,30465709:168011 -k1,13265:21596933,30465709:168010 -k1,13265:24767147,30465709:168011 -k1,13265:26131844,30465709:168010 -k1,13265:28688642,30465709:168011 -k1,13265:31015408,30465709:168010 -k1,13265:32583029,30465709:0 -) -(1,13266:6630773,31307197:25952256,505283,126483 -k1,13265:8436038,31307197:203565 -k1,13265:10135789,31307197:203564 -k1,13265:13331073,31307197:203565 -k1,13265:14667100,31307197:203565 -k1,13265:15936935,31307197:203564 -k1,13265:16888266,31307197:203565 -k1,13265:19341027,31307197:203565 -k1,13265:20938543,31307197:203565 -k1,13265:22161192,31307197:203564 -k1,13265:26059021,31307197:203565 -k1,13265:27547092,31307197:203565 -k1,13265:30128958,31307197:203564 -k1,13265:31464985,31307197:203565 -k1,13265:32583029,31307197:0 -) -(1,13266:6630773,32148685:25952256,505283,126483 -g1,13265:8469057,32148685 -g1,13265:9319714,32148685 -g1,13265:10543926,32148685 -g1,13265:11762240,32148685 -k1,13266:32583029,32148685:19039520 -g1,13266:32583029,32148685 -) -(1,13268:6630773,32990173:25952256,513147,134348 -h1,13267:6630773,32990173:983040,0,0 -k1,13267:9858531,32990173:142978 -k1,13267:10949159,32990173:142977 -k1,13267:14074025,32990173:142978 -k1,13267:16852205,32990173:142977 -k1,13267:20435168,32990173:142978 -k1,13267:22626145,32990173:142977 -k1,13267:23124983,32990173:142978 -k1,13267:25673133,32990173:142978 -k1,13267:26502272,32990173:142977 -k1,13267:27415953,32990173:142978 -k1,13267:30804928,32990173:142977 -k1,13267:31563944,32990173:142978 -k1,13267:32583029,32990173:0 -) -(1,13268:6630773,33831661:25952256,505283,134348 -k1,13267:8423707,33831661:139461 -k1,13267:9801142,33831661:139460 -k1,13267:10626765,33831661:139461 -k1,13267:13448614,33831661:139460 -k1,13267:15636075,33831661:139461 -k1,13267:16131396,33831661:139461 -k1,13267:19278303,33831661:139460 -k1,13267:20103926,33831661:139461 -k1,13267:21014089,33831661:139460 -k1,13267:24399548,33831661:139461 -k1,13267:25166844,33831661:139461 -k1,13267:26509545,33831661:139460 -k1,13267:28927693,33831661:139461 -k1,13267:29935505,33831661:139460 -k1,13267:31207428,33831661:139461 -k1,13267:32583029,33831661:0 -) -(1,13268:6630773,34673149:25952256,513147,134348 -k1,13267:9519094,34673149:219040 -k1,13267:13178120,34673149:219041 -k1,13267:15282631,34673149:219040 -k1,13267:16976887,34673149:219041 -k1,13267:17882089,34673149:219040 -k1,13267:18456989,34673149:219040 -k1,13267:20941610,34673149:219041 -k1,13267:23565822,34673149:219040 -(1,13267:23565822,34673149:0,452978,115847 -r1,13278:28144630,34673149:4578808,568825,115847 -k1,13267:23565822,34673149:-4578808 -) -(1,13267:23565822,34673149:4578808,452978,115847 -k1,13267:23565822,34673149:3277 -h1,13267:28141353,34673149:0,411205,112570 -) -k1,13267:28363671,34673149:219041 -k1,13267:30468182,34673149:219040 -k1,13267:32583029,34673149:0 -) -(1,13268:6630773,35514637:25952256,513147,134348 -k1,13267:8837917,35514637:196499 -k1,13267:11448761,35514637:196498 -k1,13267:12331422,35514637:196499 -k1,13267:15286986,35514637:196498 -k1,13267:16680172,35514637:196499 -k1,13267:20316655,35514637:196498 -k1,13267:21797660,35514637:196499 -k1,13267:23469374,35514637:196499 -k1,13267:25367842,35514637:196498 -k1,13267:28246730,35514637:196499 -k1,13267:29129390,35514637:196498 -k1,13267:31591469,35514637:196499 -k1,13267:32583029,35514637:0 -) -(1,13268:6630773,36356125:25952256,505283,134348 -g1,13267:9920025,36356125 -g1,13267:10735292,36356125 -g1,13267:13213208,36356125 -h1,13267:14755926,36356125:0,0,0 -g1,13267:14955155,36356125 -g1,13267:17834807,36356125 -g1,13267:19427987,36356125 -g1,13267:20646301,36356125 -g1,13267:25469095,36356125 -k1,13268:32583029,36356125:4280813 -g1,13268:32583029,36356125 -) -(1,13269:6630773,38447385:25952256,555811,8650 -(1,13269:6630773,38447385:2450326,527696,0 -g1,13269:6630773,38447385 -g1,13269:9081099,38447385 -) -k1,13269:32583028,38447385:21628320 -g1,13269:32583028,38447385 -) -(1,13273:6630773,39682089:25952256,505283,126483 -k1,13272:7627617,39682089:178955 -k1,13272:9882098,39682089:178956 -k1,13272:12094635,39682089:178955 -k1,13272:12889628,39682089:178955 -k1,13272:14271825,39682089:178956 -k1,13272:17042074,39682089:178955 -(1,13272:17042074,39682089:0,452978,122846 -r1,13278:21269170,39682089:4227096,575824,122846 -k1,13272:17042074,39682089:-4227096 -) -(1,13272:17042074,39682089:4227096,452978,122846 -k1,13272:17042074,39682089:3277 -h1,13272:21265893,39682089:0,411205,112570 -) -k1,13272:21621795,39682089:178955 -k1,13272:22905033,39682089:178956 -k1,13272:23831754,39682089:178955 -k1,13272:25523935,39682089:178955 -k1,13272:26354319,39682089:178956 -k1,13272:27730617,39682089:178955 -k1,13272:28265432,39682089:178955 -k1,13272:30002179,39682089:178956 -k1,13272:31575085,39682089:178955 -k1,13273:32583029,39682089:0 -) -(1,13273:6630773,40523577:25952256,505283,126483 -k1,13272:10055421,40523577:147848 -k1,13272:14012878,40523577:147849 -k1,13272:14922254,40523577:147848 -k1,13272:17688922,40523577:147849 -k1,13272:18519655,40523577:147848 -k1,13272:21482931,40523577:147849 -k1,13272:24243044,40523577:147848 -(1,13272:24243044,40523577:0,452978,115847 -r1,13278:25304733,40523577:1061689,568825,115847 -k1,13272:24243044,40523577:-1061689 -) -(1,13272:24243044,40523577:1061689,452978,115847 -k1,13272:24243044,40523577:3277 -h1,13272:25301456,40523577:0,411205,112570 -) -k1,13272:25452582,40523577:147849 -k1,13272:28600013,40523577:147848 -k1,13272:29766947,40523577:147849 -k1,13272:32583029,40523577:0 -) -(1,13273:6630773,41365065:25952256,513147,134348 -k1,13272:7491916,41365065:201851 -k1,13272:10596357,41365065:201851 -k1,13272:11414246,41365065:201851 -k1,13272:12635181,41365065:201850 -k1,13272:15267107,41365065:201851 -k1,13272:16128250,41365065:201851 -k1,13272:17349186,41365065:201851 -k1,13272:19032806,41365065:201851 -k1,13272:19704550,41365065:201851 -k1,13272:20437898,41365065:201851 -k1,13272:20995609,41365065:201851 -k1,13272:23817588,41365065:201850 -k1,13272:26704449,41365065:201851 -k1,13272:28097745,41365065:201851 -k1,13272:29997634,41365065:201851 -k1,13272:32583029,41365065:0 -) -(1,13273:6630773,42206553:25952256,505283,126483 -g1,13272:7481430,42206553 -g1,13272:9470447,42206553 -g1,13272:10025536,42206553 -g1,13272:13795166,42206553 -g1,13272:15610513,42206553 -g1,13272:17381951,42206553 -g1,13272:18112677,42206553 -g1,13272:19825132,42206553 -g1,13272:20675789,42206553 -g1,13272:23916544,42206553 -g1,13272:25319014,42206553 -k1,13273:32583029,42206553:4579005 -g1,13273:32583029,42206553 -) -(1,13276:6630773,43048041:25952256,513147,126483 -h1,13274:6630773,43048041:983040,0,0 -k1,13274:8961590,43048041:151090 -k1,13274:10418813,43048041:151090 -k1,13274:13561622,43048041:151090 -k1,13274:15355044,43048041:151090 -k1,13274:17675376,43048041:151090 -k1,13274:19607736,43048041:151091 -k1,13274:22288516,43048041:151090 -k1,13274:25059735,43048041:151090 -k1,13274:28052466,43048041:151090 -k1,13274:29195116,43048041:151090 -k1,13274:31931601,43048041:151090 -k1,13274:32583029,43048041:0 -) -(1,13276:6630773,43889529:25952256,513147,115847 -k1,13274:8293566,43889529:196097 -(1,13274:8293566,43889529:0,414482,115847 -r1,13278:8651832,43889529:358266,530329,115847 -k1,13274:8293566,43889529:-358266 -) -(1,13274:8293566,43889529:358266,414482,115847 -k1,13274:8293566,43889529:3277 -h1,13274:8648555,43889529:0,411205,112570 -) -k1,13274:8847930,43889529:196098 -k1,13274:10235472,43889529:196097 -(1,13274:10235472,43889529:0,414482,115847 -r1,13278:10593738,43889529:358266,530329,115847 -k1,13274:10235472,43889529:-358266 -) -(1,13274:10235472,43889529:358266,414482,115847 -k1,13274:10235472,43889529:3277 -h1,13274:10590461,43889529:0,411205,112570 -) -k1,13274:10963505,43889529:196097 -k1,13275:12876645,43889529:196097 -k1,13275:15148924,43889529:196098 -k1,13275:16491246,43889529:196097 -k1,13275:18431256,43889529:196097 -k1,13275:19575004,43889529:196097 -(1,13275:19575004,43889529:0,452978,115847 -r1,13278:21340117,43889529:1765113,568825,115847 -k1,13275:19575004,43889529:-1765113 -) -(1,13275:19575004,43889529:1765113,452978,115847 -k1,13275:19575004,43889529:3277 -h1,13275:21336840,43889529:0,411205,112570 -) -k1,13275:21709885,43889529:196098 -k1,13275:23406756,43889529:196097 -k1,13275:24218891,43889529:196097 -k1,13275:25587427,43889529:196097 -k1,13275:28718227,43889529:196098 -k1,13275:30071034,43889529:196097 -k1,13275:32583029,43889529:0 -) -(1,13276:6630773,44731017:25952256,513147,95026 -g1,13275:7777653,44731017 -g1,13275:10597011,44731017 -g1,13275:13637881,44731017 -g1,13275:17821699,44731017 -g1,13275:19212373,44731017 -g1,13275:21884275,44731017 -g1,13275:23031155,44731017 -g1,13275:25454676,44731017 -k1,13276:32583029,44731017:4014738 -g1,13276:32583029,44731017 -) -] -(1,13278:32583029,45706769:0,0,0 -g1,13278:32583029,45706769 -) -) -] -(1,13278:6630773,47279633:25952256,0,0 -h1,13278:6630773,47279633:25952256,0,0 -) -] -(1,13278:4262630,4025873:0,0,0 -[1,13278:-473656,4025873:0,0,0 -(1,13278:-473656,-710413:0,0,0 -(1,13278:-473656,-710413:0,0,0 -g1,13278:-473656,-710413 -) -g1,13278:-473656,-710413 -) -] -) -] -!24704 -}251 -Input:1898:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1899:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1900:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1901:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1902:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1903:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1904:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1905:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!748 -{252 -[1,13337:4262630,47279633:28320399,43253760,0 -(1,13337:4262630,4025873:0,0,0 -[1,13337:-473656,4025873:0,0,0 -(1,13337:-473656,-710413:0,0,0 -(1,13337:-473656,-644877:0,0,0 -k1,13337:-473656,-644877:-65536 -) -(1,13337:-473656,4736287:0,0,0 -k1,13337:-473656,4736287:5209943 -) -g1,13337:-473656,-710413 -) -] -) -[1,13337:6630773,47279633:25952256,43253760,0 -[1,13337:6630773,4812305:25952256,786432,0 -(1,13337:6630773,4812305:25952256,485622,11795 -(1,13337:6630773,4812305:25952256,485622,11795 -g1,13337:3078558,4812305 -[1,13337:3078558,4812305:0,0,0 -(1,13337:3078558,2439708:0,1703936,0 -k1,13337:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,13337:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,13337:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,13337:3078558,4812305:0,0,0 -(1,13337:3078558,2439708:0,1703936,0 -g1,13337:29030814,2439708 -g1,13337:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,13337:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,13337:37855564,2439708:1179648,16384,0 -) -) -k1,13337:3078556,2439708:-34777008 -) -] -[1,13337:3078558,4812305:0,0,0 -(1,13337:3078558,49800853:0,16384,2228224 -k1,13337:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,13337:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,13337:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,13337:3078558,4812305:0,0,0 -(1,13337:3078558,49800853:0,16384,2228224 -g1,13337:29030814,49800853 -g1,13337:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,13337:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,13337:37855564,49800853:1179648,16384,0 -) -) -k1,13337:3078556,49800853:-34777008 -) -] -g1,13337:6630773,4812305 -g1,13337:6630773,4812305 -g1,13337:10347975,4812305 -k1,13337:31387651,4812305:21039676 -) -) -] -[1,13337:6630773,45706769:25952256,40108032,0 -(1,13337:6630773,45706769:25952256,40108032,0 -(1,13337:6630773,45706769:0,0,0 -g1,13337:6630773,45706769 -) -[1,13337:6630773,45706769:25952256,40108032,0 -v1,13278:6630773,6254097:0,393216,0 -(1,13284:6630773,7901549:25952256,2040668,196608 -g1,13284:6630773,7901549 -g1,13284:6630773,7901549 -g1,13284:6434165,7901549 -(1,13284:6434165,7901549:0,2040668,196608 -r1,13337:32779637,7901549:26345472,2237276,196608 -k1,13284:6434165,7901549:-26345472 -) -(1,13284:6434165,7901549:26345472,2040668,196608 -[1,13284:6630773,7901549:25952256,1844060,0 -(1,13280:6630773,6461715:25952256,404226,107478 -(1,13279:6630773,6461715:0,0,0 -g1,13279:6630773,6461715 -g1,13279:6630773,6461715 -g1,13279:6303093,6461715 -(1,13279:6303093,6461715:0,0,0 -) -g1,13279:6630773,6461715 -) -k1,13280:6630773,6461715:0 -g1,13280:10424522,6461715 -g1,13280:11056814,6461715 -k1,13280:11056814,6461715:0 -h1,13280:13269834,6461715:0,0,0 -k1,13280:32583030,6461715:19313196 -g1,13280:32583030,6461715 -) -(1,13281:6630773,7127893:25952256,404226,107478 -h1,13281:6630773,7127893:0,0,0 -g1,13281:6946919,7127893 -g1,13281:7263065,7127893 -g1,13281:7579211,7127893 -g1,13281:7895357,7127893 -g1,13281:8211503,7127893 -g1,13281:8527649,7127893 -g1,13281:8843795,7127893 -g1,13281:10740670,7127893 -g1,13281:11372962,7127893 -g1,13281:13269837,7127893 -g1,13281:13902129,7127893 -g1,13281:14534421,7127893 -g1,13281:16115150,7127893 -g1,13281:18012024,7127893 -g1,13281:18644316,7127893 -g1,13281:20541190,7127893 -h1,13281:20857336,7127893:0,0,0 -k1,13281:32583029,7127893:11725693 -g1,13281:32583029,7127893 -) -(1,13282:6630773,7794071:25952256,404226,107478 -h1,13282:6630773,7794071:0,0,0 -g1,13282:6946919,7794071 -g1,13282:7263065,7794071 -k1,13282:7263065,7794071:0 -h1,13282:11056813,7794071:0,0,0 -k1,13282:32583029,7794071:21526216 -g1,13282:32583029,7794071 -) -] -) -g1,13284:32583029,7901549 -g1,13284:6630773,7901549 -g1,13284:6630773,7901549 -g1,13284:32583029,7901549 -g1,13284:32583029,7901549 -) -h1,13284:6630773,8098157:0,0,0 -(1,13287:6630773,17771647:25952256,9083666,0 -k1,13287:10523651,17771647:3892878 -h1,13286:10523651,17771647:0,0,0 -(1,13286:10523651,17771647:18166500,9083666,0 -(1,13286:10523651,17771647:18167376,9083688,0 -(1,13286:10523651,17771647:18167376,9083688,0 -(1,13286:10523651,17771647:0,9083688,0 -(1,13286:10523651,17771647:0,14208860,0 -(1,13286:10523651,17771647:28417720,14208860,0 -) -k1,13286:10523651,17771647:-28417720 -) -) -g1,13286:28691027,17771647 -) -) -) -g1,13287:28690151,17771647 -k1,13287:32583029,17771647:3892878 -) -(1,13294:6630773,18613135:25952256,513147,115847 -h1,13293:6630773,18613135:983040,0,0 -k1,13293:8320618,18613135:229048 -k1,13293:9418018,18613135:229048 -k1,13293:12039785,18613135:229048 -(1,13293:12039785,18613135:0,452978,115847 -r1,13337:13101474,18613135:1061689,568825,115847 -k1,13293:12039785,18613135:-1061689 -) -(1,13293:12039785,18613135:1061689,452978,115847 -k1,13293:12039785,18613135:3277 -h1,13293:13098197,18613135:0,411205,112570 -) -k1,13293:13330522,18613135:229048 -k1,13293:14827036,18613135:229048 -k1,13293:15411944,18613135:229048 -k1,13293:17708653,18613135:229048 -k1,13293:18293561,18613135:229048 -k1,13293:21048368,18613135:229049 -k1,13293:22893534,18613135:229048 -k1,13293:24694791,18613135:229048 -k1,13293:25455336,18613135:229048 -k1,13293:27197610,18613135:229048 -k1,13293:29753841,18613135:229048 -k1,13293:30642181,18613135:229048 -k1,13293:31227089,18613135:229048 -k1,13294:32583029,18613135:0 -) -(1,13294:6630773,19454623:25952256,473825,7863 -g1,13293:9257456,19454623 -k1,13294:32583029,19454623:21995192 -g1,13294:32583029,19454623 -) -v1,13296:6630773,20645089:0,393216,0 -(1,13302:6630773,22292541:25952256,2040668,196608 -g1,13302:6630773,22292541 -g1,13302:6630773,22292541 -g1,13302:6434165,22292541 -(1,13302:6434165,22292541:0,2040668,196608 -r1,13337:32779637,22292541:26345472,2237276,196608 -k1,13302:6434165,22292541:-26345472 -) -(1,13302:6434165,22292541:26345472,2040668,196608 -[1,13302:6630773,22292541:25952256,1844060,0 -(1,13298:6630773,20852707:25952256,404226,107478 -(1,13297:6630773,20852707:0,0,0 -g1,13297:6630773,20852707 -g1,13297:6630773,20852707 -g1,13297:6303093,20852707 -(1,13297:6303093,20852707:0,0,0 -) -g1,13297:6630773,20852707 -) -k1,13298:6630773,20852707:0 -g1,13298:10424522,20852707 -g1,13298:11056814,20852707 -k1,13298:11056814,20852707:0 -h1,13298:13269834,20852707:0,0,0 -k1,13298:32583030,20852707:19313196 -g1,13298:32583030,20852707 -) -(1,13299:6630773,21518885:25952256,410518,107478 -h1,13299:6630773,21518885:0,0,0 -g1,13299:6946919,21518885 -g1,13299:7263065,21518885 -g1,13299:7579211,21518885 -g1,13299:7895357,21518885 -g1,13299:8211503,21518885 -g1,13299:8527649,21518885 -g1,13299:8843795,21518885 -g1,13299:10740670,21518885 -g1,13299:11372962,21518885 -g1,13299:13269837,21518885 -g1,13299:13902129,21518885 -g1,13299:14534421,21518885 -g1,13299:16115150,21518885 -g1,13299:18012024,21518885 -g1,13299:18644316,21518885 -g1,13299:23070356,21518885 -h1,13299:23386502,21518885:0,0,0 -k1,13299:32583029,21518885:9196527 -g1,13299:32583029,21518885 -) -(1,13300:6630773,22185063:25952256,404226,107478 -h1,13300:6630773,22185063:0,0,0 -g1,13300:6946919,22185063 -g1,13300:7263065,22185063 -k1,13300:7263065,22185063:0 -h1,13300:11056813,22185063:0,0,0 -k1,13300:32583029,22185063:21526216 -g1,13300:32583029,22185063 -) -] -) -g1,13302:32583029,22292541 -g1,13302:6630773,22292541 -g1,13302:6630773,22292541 -g1,13302:32583029,22292541 -g1,13302:32583029,22292541 -) -h1,13302:6630773,22489149:0,0,0 -(1,13306:6630773,23854925:25952256,513147,115847 -h1,13305:6630773,23854925:983040,0,0 -k1,13305:8282888,23854925:191318 -k1,13305:9342558,23854925:191318 -k1,13305:11926595,23854925:191318 -(1,13305:11926595,23854925:0,452978,115847 -r1,13337:12988284,23854925:1061689,568825,115847 -k1,13305:11926595,23854925:-1061689 -) -(1,13305:11926595,23854925:1061689,452978,115847 -k1,13305:11926595,23854925:3277 -h1,13305:12985007,23854925:0,411205,112570 -) -k1,13305:13179602,23854925:191318 -k1,13305:14638386,23854925:191318 -k1,13305:15600407,23854925:191318 -k1,13305:18299131,23854925:191317 -k1,13305:20558110,23854925:191318 -k1,13305:21105288,23854925:191318 -k1,13305:24058949,23854925:191318 -k1,13305:26776025,23854925:191318 -k1,13305:28583461,23854925:191318 -k1,13305:30346988,23854925:191318 -k1,13305:31069803,23854925:191318 -k1,13305:32583029,23854925:0 -) -(1,13306:6630773,24696413:25952256,513147,126483 -g1,13305:7591530,24696413 -k1,13306:32583028,24696413:22552248 -g1,13306:32583028,24696413 -) -v1,13308:6630773,25886879:0,393216,0 -(1,13314:6630773,27534331:25952256,2040668,196608 -g1,13314:6630773,27534331 -g1,13314:6630773,27534331 -g1,13314:6434165,27534331 -(1,13314:6434165,27534331:0,2040668,196608 -r1,13337:32779637,27534331:26345472,2237276,196608 -k1,13314:6434165,27534331:-26345472 -) -(1,13314:6434165,27534331:26345472,2040668,196608 -[1,13314:6630773,27534331:25952256,1844060,0 -(1,13310:6630773,26094497:25952256,404226,107478 -(1,13309:6630773,26094497:0,0,0 -g1,13309:6630773,26094497 -g1,13309:6630773,26094497 -g1,13309:6303093,26094497 -(1,13309:6303093,26094497:0,0,0 -) -g1,13309:6630773,26094497 -) -k1,13310:6630773,26094497:0 -g1,13310:10424522,26094497 -g1,13310:11056814,26094497 -k1,13310:11056814,26094497:0 -h1,13310:13269834,26094497:0,0,0 -k1,13310:32583030,26094497:19313196 -g1,13310:32583030,26094497 -) -(1,13311:6630773,26760675:25952256,404226,107478 -h1,13311:6630773,26760675:0,0,0 -g1,13311:6946919,26760675 -g1,13311:7263065,26760675 -g1,13311:7579211,26760675 -g1,13311:7895357,26760675 -g1,13311:8211503,26760675 -g1,13311:8527649,26760675 -g1,13311:8843795,26760675 -g1,13311:10740670,26760675 -g1,13311:11372962,26760675 -g1,13311:13269837,26760675 -g1,13311:13902129,26760675 -g1,13311:14534421,26760675 -g1,13311:16115150,26760675 -g1,13311:18012024,26760675 -g1,13311:18644316,26760675 -g1,13311:23386502,26760675 -h1,13311:23702648,26760675:0,0,0 -k1,13311:32583029,26760675:8880381 -g1,13311:32583029,26760675 -) -(1,13312:6630773,27426853:25952256,404226,107478 -h1,13312:6630773,27426853:0,0,0 -g1,13312:6946919,27426853 -g1,13312:7263065,27426853 -k1,13312:7263065,27426853:0 -h1,13312:11056813,27426853:0,0,0 -k1,13312:32583029,27426853:21526216 -g1,13312:32583029,27426853 -) -] -) -g1,13314:32583029,27534331 -g1,13314:6630773,27534331 -g1,13314:6630773,27534331 -g1,13314:32583029,27534331 -g1,13314:32583029,27534331 -) -h1,13314:6630773,27730939:0,0,0 -v1,13318:6630773,29621003:0,393216,0 -(1,13319:6630773,32748523:25952256,3520736,616038 -g1,13319:6630773,32748523 -(1,13319:6630773,32748523:25952256,3520736,616038 -(1,13319:6630773,33364561:25952256,4136774,0 -[1,13319:6630773,33364561:25952256,4136774,0 -(1,13319:6630773,33338347:25952256,4084346,0 -r1,13337:6656987,33338347:26214,4084346,0 -[1,13319:6656987,33338347:25899828,4084346,0 -(1,13319:6656987,32748523:25899828,2904698,0 -[1,13319:7246811,32748523:24720180,2904698,0 -(1,13319:7246811,30931199:24720180,1087374,134348 -k1,13318:8813001,30931199:356487 -k1,13318:10253455,30931199:356488 -k1,13318:10965802,30931199:356487 -k1,13318:14084632,30931199:356487 -k1,13318:17422353,30931199:356488 -(1,13318:17422353,30931199:0,452978,115847 -r1,13337:18835754,30931199:1413401,568825,115847 -k1,13318:17422353,30931199:-1413401 -) -(1,13318:17422353,30931199:1413401,452978,115847 -k1,13318:17422353,30931199:3277 -h1,13318:18832477,30931199:0,411205,112570 -) -k1,13318:19192241,30931199:356487 -$1,13318:19192241,30931199 -$1,13318:19867262,30931199 -k1,13318:20223749,30931199:356487 -(1,13318:20223749,30931199:0,452978,115847 -r1,13337:21988862,30931199:1765113,568825,115847 -k1,13318:20223749,30931199:-1765113 -) -(1,13318:20223749,30931199:1765113,452978,115847 -k1,13318:20223749,30931199:3277 -h1,13318:21985585,30931199:0,411205,112570 -) -k1,13318:22519020,30931199:356488 -(1,13318:22519020,30931199:0,452978,115847 -r1,13337:23580709,30931199:1061689,568825,115847 -k1,13318:22519020,30931199:-1061689 -) -(1,13318:22519020,30931199:1061689,452978,115847 -k1,13318:22519020,30931199:3277 -h1,13318:23577432,30931199:0,411205,112570 -) -k1,13318:23937196,30931199:356487 -$1,13318:23937196,30931199 -$1,13318:24612217,30931199 -k1,13318:24968704,30931199:356487 -(1,13318:24968704,30931199:0,414482,115847 -r1,13337:25326970,30931199:358266,530329,115847 -k1,13318:24968704,30931199:-358266 -) -(1,13318:24968704,30931199:358266,414482,115847 -k1,13318:24968704,30931199:3277 -h1,13318:25323693,30931199:0,411205,112570 -) -k1,13318:25857128,30931199:356488 -k1,13318:29113583,30931199:356487 -k1,13318:30231598,30931199:356487 -k1,13319:31966991,30931199:0 -) -(1,13319:7246811,31772687:24720180,505283,115847 -(1,13318:7246811,31772687:0,452978,115847 -r1,13337:11473907,31772687:4227096,568825,115847 -k1,13318:7246811,31772687:-4227096 -) -(1,13318:7246811,31772687:4227096,452978,115847 -k1,13318:7246811,31772687:3277 -h1,13318:11470630,31772687:0,411205,112570 -) -k1,13318:11751361,31772687:277454 -k1,13318:14238690,31772687:277455 -(1,13318:14238690,31772687:0,452978,115847 -r1,13337:18817498,31772687:4578808,568825,115847 -k1,13318:14238690,31772687:-4578808 -) -(1,13318:14238690,31772687:4578808,452978,115847 -k1,13318:14238690,31772687:3277 -h1,13318:18814221,31772687:0,411205,112570 -) -k1,13318:19094952,31772687:277454 -k1,13318:20023834,31772687:277454 -k1,13318:21326272,31772687:277455 -k1,13318:23152342,31772687:277454 -k1,13318:26271437,31772687:277454 -k1,13318:27540452,31772687:277455 -k1,13318:30775546,31772687:277454 -k1,13318:31966991,31772687:0 -) -(1,13319:7246811,32614175:24720180,505283,134348 -g1,13318:8879968,32614175 -g1,13318:9985560,32614175 -g1,13318:11203874,32614175 -g1,13318:15721270,32614175 -g1,13318:17205005,32614175 -g1,13318:19534809,32614175 -g1,13318:21192869,32614175 -g1,13318:25899009,32614175 -g1,13318:28466709,32614175 -g1,13318:29685023,32614175 -k1,13319:31966991,32614175:718934 -g1,13319:31966991,32614175 -) -] -) -] -r1,13337:32583029,33338347:26214,4084346,0 -) -] -) -) -g1,13319:32583029,32748523 -) -h1,13319:6630773,33364561:0,0,0 -(1,13322:6630773,34730337:25952256,505283,134348 -h1,13321:6630773,34730337:983040,0,0 -k1,13321:9015330,34730337:204830 -k1,13321:12027721,34730337:204829 -k1,13321:14867754,34730337:204830 -k1,13321:16461947,34730337:204830 -k1,13321:18677421,34730337:204829 -k1,13321:20073696,34730337:204830 -k1,13321:23122788,34730337:204829 -k1,13321:25338263,34730337:204830 -k1,13321:26074590,34730337:204830 -k1,13321:29540490,34730337:204829 -k1,13321:30506848,34730337:204830 -k1,13321:32583029,34730337:0 -) -(1,13322:6630773,35571825:25952256,513147,134348 -k1,13321:9770007,35571825:294316 -k1,13321:11680441,35571825:294316 -k1,13321:14050938,35571825:294316 -k1,13321:15536699,35571825:294316 -k1,13321:17297711,35571825:294316 -k1,13321:20112542,35571825:294316 -k1,13321:22416847,35571825:294316 -k1,13321:23067023,35571825:294316 -k1,13321:25056100,35571825:294316 -k1,13321:27096295,35571825:294316 -k1,13321:29820686,35571825:294316 -k1,13321:32583029,35571825:0 -) -(1,13322:6630773,36413313:25952256,505283,134348 -g1,13321:9967866,36413313 -g1,13321:12802298,36413313 -g1,13321:14390890,36413313 -g1,13321:16600764,36413313 -g1,13321:17991438,36413313 -g1,13321:21065731,36413313 -k1,13322:32583029,36413313:8982365 -g1,13322:32583029,36413313 -) -v1,13324:6630773,37603779:0,393216,0 -(1,13331:6630773,39911118:25952256,2700555,196608 -g1,13331:6630773,39911118 -g1,13331:6630773,39911118 -g1,13331:6434165,39911118 -(1,13331:6434165,39911118:0,2700555,196608 -r1,13337:32779637,39911118:26345472,2897163,196608 -k1,13331:6434165,39911118:-26345472 -) -(1,13331:6434165,39911118:26345472,2700555,196608 -[1,13331:6630773,39911118:25952256,2503947,0 -(1,13326:6630773,37811397:25952256,404226,107478 -(1,13325:6630773,37811397:0,0,0 -g1,13325:6630773,37811397 -g1,13325:6630773,37811397 -g1,13325:6303093,37811397 -(1,13325:6303093,37811397:0,0,0 -) -g1,13325:6630773,37811397 -) -k1,13326:6630773,37811397:0 -g1,13326:10424522,37811397 -g1,13326:11056814,37811397 -k1,13326:11056814,37811397:0 -h1,13326:13269834,37811397:0,0,0 -k1,13326:32583030,37811397:19313196 -g1,13326:32583030,37811397 -) -(1,13327:6630773,38477575:25952256,410518,107478 -h1,13327:6630773,38477575:0,0,0 -g1,13327:6946919,38477575 -g1,13327:7263065,38477575 -g1,13327:7579211,38477575 -g1,13327:7895357,38477575 -g1,13327:8211503,38477575 -g1,13327:8527649,38477575 -g1,13327:8843795,38477575 -g1,13327:10740670,38477575 -g1,13327:11372962,38477575 -g1,13327:13269837,38477575 -g1,13327:13902129,38477575 -g1,13327:14534421,38477575 -g1,13327:16115150,38477575 -g1,13327:18012024,38477575 -g1,13327:18644316,38477575 -g1,13327:23070356,38477575 -h1,13327:23386502,38477575:0,0,0 -k1,13327:32583029,38477575:9196527 -g1,13327:32583029,38477575 -) -(1,13328:6630773,39143753:25952256,404226,107478 -h1,13328:6630773,39143753:0,0,0 -g1,13328:6946919,39143753 -g1,13328:7263065,39143753 -g1,13328:11372959,39143753 -h1,13328:11689105,39143753:0,0,0 -k1,13328:32583029,39143753:20893924 -g1,13328:32583029,39143753 -) -(1,13329:6630773,39809931:25952256,404226,101187 -h1,13329:6630773,39809931:0,0,0 -g1,13329:6946919,39809931 -g1,13329:7263065,39809931 -g1,13329:14850562,39809931 -g1,13329:15482854,39809931 -g1,13329:18012020,39809931 -g1,13329:20541186,39809931 -g1,13329:21173478,39809931 -h1,13329:21805770,39809931:0,0,0 -k1,13329:32583029,39809931:10777259 -g1,13329:32583029,39809931 -) -] -) -g1,13331:32583029,39911118 -g1,13331:6630773,39911118 -g1,13331:6630773,39911118 -g1,13331:32583029,39911118 -g1,13331:32583029,39911118 -) -h1,13331:6630773,40107726:0,0,0 -(1,13335:6630773,41473502:25952256,505283,134348 -h1,13334:6630773,41473502:983040,0,0 -k1,13334:9006726,41473502:196226 -k1,13334:10765985,41473502:196225 -k1,13334:14136775,41473502:196226 -k1,13334:17644535,41473502:196226 -k1,13334:19032205,41473502:196225 -k1,13334:22735918,41473502:196226 -k1,13334:23923704,41473502:196226 -k1,13334:25139014,41473502:196225 -k1,13334:26988713,41473502:196226 -k1,13334:27871101,41473502:196226 -k1,13334:28683364,41473502:196225 -k1,13334:30913172,41473502:196226 -k1,13334:32583029,41473502:0 -) -(1,13335:6630773,42314990:25952256,513147,134348 -k1,13334:7516558,42314990:234357 -k1,13334:9204503,42314990:234356 -k1,13334:10769241,42314990:234357 -k1,13334:12022682,42314990:234356 -k1,13334:13534336,42314990:234357 -k1,13334:15659406,42314990:234356 -k1,13334:16762115,42314990:234357 -k1,13334:18471686,42314990:234356 -k1,13334:21367460,42314990:234357 -k1,13334:22977417,42314990:234356 -k1,13334:24230859,42314990:234357 -k1,13334:26037424,42314990:234356 -k1,13334:27463226,42314990:234357 -k1,13334:29887795,42314990:234356 -k1,13334:31635378,42314990:234357 -k1,13334:32583029,42314990:0 -) -(1,13335:6630773,43156478:25952256,505283,126483 -k1,13334:7830233,43156478:180375 -k1,13334:9626726,43156478:180375 -k1,13334:12825034,43156478:180375 -k1,13334:17170877,43156478:180375 -k1,13334:17809349,43156478:180375 -k1,13334:18521221,43156478:180375 -k1,13334:19900251,43156478:180376 -k1,13334:22305573,43156478:180375 -k1,13334:23505033,43156478:180375 -k1,13334:25338881,43156478:180375 -k1,13334:26796553,43156478:180375 -k1,13334:27845280,43156478:180375 -k1,13334:30375776,43156478:180375 -k1,13334:32583029,43156478:0 -) -(1,13335:6630773,43997966:25952256,513147,126483 -k1,13334:8880725,43997966:179014 -k1,13334:10007390,43997966:179014 -k1,13334:11205489,43997966:179014 -k1,13334:13745765,43997966:179014 -k1,13334:15611676,43997966:179014 -k1,13334:17171534,43997966:179014 -k1,13334:17882044,43997966:179013 -k1,13334:18416918,43997966:179014 -k1,13334:19949906,43997966:179014 -k1,13334:23338218,43997966:179014 -k1,13334:25205439,43997966:179014 -k1,13334:26035881,43997966:179014 -k1,13334:30053339,43997966:179014 -k1,13334:32583029,43997966:0 -) -(1,13335:6630773,44839454:25952256,513147,126483 -k1,13334:7371876,44839454:283006 -k1,13334:9666837,44839454:283006 -k1,13334:10694988,44839454:283007 -k1,13334:11629422,44839454:283006 -k1,13334:14615133,44839454:283006 -k1,13334:16070578,44839454:283006 -k1,13334:19115927,44839454:283006 -k1,13334:22429973,44839454:283006 -k1,13334:23732065,44839454:283007 -k1,13334:26875062,44839454:283006 -k1,13334:30089493,44839454:283006 -k1,13334:31563944,44839454:283006 -k1,13334:32583029,44839454:0 -) -(1,13335:6630773,45680942:25952256,505283,134348 -g1,13334:9218789,45680942 -k1,13335:32583028,45680942:21101936 -g1,13335:32583028,45680942 -) -] -(1,13337:32583029,45706769:0,0,0 -g1,13337:32583029,45706769 -) -) -] -(1,13337:6630773,47279633:25952256,0,0 -h1,13337:6630773,47279633:25952256,0,0 -) -] -(1,13337:4262630,4025873:0,0,0 -[1,13337:-473656,4025873:0,0,0 -(1,13337:-473656,-710413:0,0,0 -(1,13337:-473656,-710413:0,0,0 -g1,13337:-473656,-710413 -) -g1,13337:-473656,-710413 -) -] -) -] -!21294 -}252 -Input:1906:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1907:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1908:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1909:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1910:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1911:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!564 -{253 -[1,13404:4262630,47279633:28320399,43253760,0 -(1,13404:4262630,4025873:0,0,0 -[1,13404:-473656,4025873:0,0,0 -(1,13404:-473656,-710413:0,0,0 -(1,13404:-473656,-644877:0,0,0 -k1,13404:-473656,-644877:-65536 -) -(1,13404:-473656,4736287:0,0,0 -k1,13404:-473656,4736287:5209943 -) -g1,13404:-473656,-710413 -) -] -) -[1,13404:6630773,47279633:25952256,43253760,0 -[1,13404:6630773,4812305:25952256,786432,0 -(1,13404:6630773,4812305:25952256,513147,134348 -(1,13404:6630773,4812305:25952256,513147,134348 -g1,13404:3078558,4812305 -[1,13404:3078558,4812305:0,0,0 -(1,13404:3078558,2439708:0,1703936,0 -k1,13404:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,13404:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,13404:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,13404:3078558,4812305:0,0,0 -(1,13404:3078558,2439708:0,1703936,0 -g1,13404:29030814,2439708 -g1,13404:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,13404:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,13404:37855564,2439708:1179648,16384,0 -) -) -k1,13404:3078556,2439708:-34777008 -) -] -[1,13404:3078558,4812305:0,0,0 -(1,13404:3078558,49800853:0,16384,2228224 -k1,13404:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,13404:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,13404:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,13404:3078558,4812305:0,0,0 -(1,13404:3078558,49800853:0,16384,2228224 -g1,13404:29030814,49800853 -g1,13404:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,13404:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,13404:37855564,49800853:1179648,16384,0 -) -) -k1,13404:3078556,49800853:-34777008 -) -] -g1,13404:6630773,4812305 -k1,13404:25712890,4812305:17886740 -g1,13404:29057847,4812305 -g1,13404:29873114,4812305 -) -) -] -[1,13404:6630773,45706769:25952256,40108032,0 -(1,13404:6630773,45706769:25952256,40108032,0 -(1,13404:6630773,45706769:0,0,0 -g1,13404:6630773,45706769 -) -[1,13404:6630773,45706769:25952256,40108032,0 -v1,13337:6630773,6254097:0,393216,0 -(1,13348:6630773,13943073:25952256,8082192,616038 -g1,13348:6630773,13943073 -(1,13348:6630773,13943073:25952256,8082192,616038 -(1,13348:6630773,14559111:25952256,8698230,0 -[1,13348:6630773,14559111:25952256,8698230,0 -(1,13348:6630773,14532897:25952256,8645802,0 -r1,13404:6656987,14532897:26214,8645802,0 -[1,13348:6656987,14532897:25899828,8645802,0 -(1,13348:6656987,13943073:25899828,7466154,0 -[1,13348:7246811,13943073:24720180,7466154,0 -(1,13338:7246811,7564293:24720180,1087374,134348 -k1,13337:8633469,7564293:176955 -k1,13337:9894389,7564293:176954 -k1,13337:11090429,7564293:176955 -k1,13337:14029726,7564293:176954 -k1,13337:16727196,7564293:176955 -k1,13337:19688119,7564293:176954 -k1,13337:22423600,7564293:176955 -k1,13337:23619640,7564293:176955 -k1,13337:25989429,7564293:176954 -k1,13337:27912263,7564293:176955 -k1,13337:29342921,7564293:176954 -k1,13337:30624158,7564293:176955 -k1,13337:31966991,7564293:0 -) -(1,13338:7246811,8405781:24720180,513147,134348 -k1,13337:9916745,8405781:255588 -k1,13337:11566284,8405781:255588 -k1,13337:12840957,8405781:255588 -k1,13337:15617060,8405781:255588 -k1,13337:17608040,8405781:255587 -k1,13337:20559124,8405781:255588 -(1,13337:20559124,8405781:0,452978,115847 -r1,13404:24786220,8405781:4227096,568825,115847 -k1,13337:20559124,8405781:-4227096 -) -(1,13337:20559124,8405781:4227096,452978,115847 -k1,13337:20559124,8405781:3277 -h1,13337:24782943,8405781:0,411205,112570 -) -k1,13337:25041808,8405781:255588 -k1,13337:26865017,8405781:255588 -k1,13337:29700757,8405781:255588 -k1,13337:31966991,8405781:0 -) -(1,13338:7246811,9247269:24720180,505283,134348 -g1,13337:10126463,9247269 -g1,13337:11719643,9247269 -(1,13337:11719643,9247269:0,452978,115847 -r1,13404:15243315,9247269:3523672,568825,115847 -k1,13337:11719643,9247269:-3523672 -) -(1,13337:11719643,9247269:3523672,452978,115847 -k1,13337:11719643,9247269:3277 -h1,13337:15240038,9247269:0,411205,112570 -) -k1,13338:31966991,9247269:16342912 -g1,13338:31966991,9247269 -) -v1,13340:7246811,10437735:0,393216,0 -(1,13345:7246811,11412718:24720180,1368199,196608 -g1,13345:7246811,11412718 -g1,13345:7246811,11412718 -g1,13345:7050203,11412718 -(1,13345:7050203,11412718:0,1368199,196608 -r1,13404:32163599,11412718:25113396,1564807,196608 -k1,13345:7050203,11412718:-25113396 -) -(1,13345:7050203,11412718:25113396,1368199,196608 -[1,13345:7246811,11412718:24720180,1171591,0 -(1,13342:7246811,10645353:24720180,404226,101187 -(1,13341:7246811,10645353:0,0,0 -g1,13341:7246811,10645353 -g1,13341:7246811,10645353 -g1,13341:6919131,10645353 -(1,13341:6919131,10645353:0,0,0 -) -g1,13341:7246811,10645353 -) -k1,13342:7246811,10645353:0 -k1,13342:7246811,10645353:0 -h1,13342:15150453,10645353:0,0,0 -k1,13342:31966991,10645353:16816538 -g1,13342:31966991,10645353 -) -(1,13343:7246811,11311531:24720180,404226,101187 -h1,13343:7246811,11311531:0,0,0 -g1,13343:15150454,11311531 -g1,13343:15782746,11311531 -g1,13343:18311912,11311531 -g1,13343:20841078,11311531 -g1,13343:21473370,11311531 -g1,13343:22421808,11311531 -g1,13343:25583265,11311531 -g1,13343:26215557,11311531 -h1,13343:28112431,11311531:0,0,0 -k1,13343:31966991,11311531:3854560 -g1,13343:31966991,11311531 -) -] -) -g1,13345:31966991,11412718 -g1,13345:7246811,11412718 -g1,13345:7246811,11412718 -g1,13345:31966991,11412718 -g1,13345:31966991,11412718 -) -h1,13345:7246811,11609326:0,0,0 -(1,13348:7246811,12975102:24720180,513147,126483 -h1,13347:7246811,12975102:983040,0,0 -k1,13347:10043182,12975102:208354 -k1,13347:11422009,12975102:208354 -k1,13347:13105578,12975102:208354 -k1,13347:15223651,12975102:208354 -k1,13347:15787865,12975102:208354 -k1,13347:18508214,12975102:208354 -k1,13347:20906782,12975102:208355 -k1,13347:22062787,12975102:208354 -k1,13347:23967868,12975102:208354 -k1,13347:25739256,12975102:208354 -k1,13347:27398577,12975102:208354 -k1,13347:28626016,12975102:208354 -k1,13347:30111667,12975102:208354 -k1,13347:31966991,12975102:0 -) -(1,13348:7246811,13816590:24720180,505283,126483 -g1,13347:8839991,13816590 -g1,13347:10058305,13816590 -g1,13347:12492967,13816590 -k1,13348:31966991,13816590:17110140 -g1,13348:31966991,13816590 -) -] -) -] -r1,13404:32583029,14532897:26214,8645802,0 -) -] -) -) -g1,13348:32583029,13943073 -) -h1,13348:6630773,14559111:0,0,0 -(1,13351:6630773,15924887:25952256,513147,134348 -h1,13350:6630773,15924887:983040,0,0 -k1,13350:9663303,15924887:266255 -k1,13350:10995828,15924887:266254 -k1,13350:13454262,15924887:266255 -k1,13350:14529887,15924887:266255 -k1,13350:16916232,15924887:266255 -k1,13350:18201571,15924887:266254 -k1,13350:20069526,15924887:266255 -k1,13350:23113197,15924887:266255 -k1,13350:24617427,15924887:266255 -k1,13350:25542973,15924887:266254 -k1,13350:30360048,15924887:266255 -k1,13350:32583029,15924887:0 -) -(1,13351:6630773,16766375:25952256,513147,126483 -k1,13350:7535941,16766375:245876 -k1,13350:11853569,16766375:245876 -k1,13350:12715483,16766375:245876 -k1,13350:15130600,16766375:245875 -k1,13350:16984074,16766375:245876 -k1,13350:17761447,16766375:245876 -k1,13350:18658751,16766375:245876 -k1,13350:19997112,16766375:245876 -k1,13350:21262073,16766375:245876 -(1,13350:21262073,16766375:0,452978,115847 -r1,13404:23027186,16766375:1765113,568825,115847 -k1,13350:21262073,16766375:-1765113 -) -(1,13350:21262073,16766375:1765113,452978,115847 -k1,13350:21262073,16766375:3277 -h1,13350:23023909,16766375:0,411205,112570 -) -k1,13350:23273062,16766375:245876 -k1,13350:24178230,16766375:245876 -k1,13350:25443190,16766375:245875 -k1,13350:27707575,16766375:245876 -k1,13350:28639613,16766375:245876 -k1,13350:29656192,16766375:245876 -k1,13350:32583029,16766375:0 -) -(1,13351:6630773,17607863:25952256,513147,134348 -k1,13350:7786501,17607863:202179 -k1,13350:9518945,17607863:202178 -k1,13350:10372552,17607863:202179 -k1,13350:12815406,17607863:202178 -k1,13350:13373445,17607863:202179 -k1,13350:15448642,17607863:202178 -k1,13350:17875768,17607863:202179 -k1,13350:18693984,17607863:202178 -k1,13350:19915248,17607863:202179 -k1,13350:21613613,17607863:202178 -k1,13350:25002152,17607863:202179 -k1,13350:25855758,17607863:202178 -k1,13350:28415267,17607863:202179 -k1,13350:29820686,17607863:202178 -k1,13350:32583029,17607863:0 -) -(1,13351:6630773,18449351:25952256,473825,134348 -k1,13351:32583030,18449351:22971024 -g1,13351:32583030,18449351 -) -v1,13353:6630773,19639817:0,393216,0 -(1,13358:6630773,20627383:25952256,1380782,196608 -g1,13358:6630773,20627383 -g1,13358:6630773,20627383 -g1,13358:6434165,20627383 -(1,13358:6434165,20627383:0,1380782,196608 -r1,13404:32779637,20627383:26345472,1577390,196608 -k1,13358:6434165,20627383:-26345472 -) -(1,13358:6434165,20627383:26345472,1380782,196608 -[1,13358:6630773,20627383:25952256,1184174,0 -(1,13355:6630773,19853727:25952256,410518,107478 -(1,13354:6630773,19853727:0,0,0 -g1,13354:6630773,19853727 -g1,13354:6630773,19853727 -g1,13354:6303093,19853727 -(1,13354:6303093,19853727:0,0,0 -) -g1,13354:6630773,19853727 -) -k1,13355:6630773,19853727:0 -g1,13355:10424522,19853727 -g1,13355:11056814,19853727 -g1,13355:13585980,19853727 -g1,13355:15482855,19853727 -g1,13355:16115147,19853727 -g1,13355:18012022,19853727 -g1,13355:18644314,19853727 -g1,13355:19276606,19853727 -g1,13355:20857335,19853727 -g1,13355:22754209,19853727 -g1,13355:23386501,19853727 -g1,13355:27812541,19853727 -h1,13355:28128687,19853727:0,0,0 -k1,13355:32583029,19853727:4454342 -g1,13355:32583029,19853727 -) -(1,13356:6630773,20519905:25952256,404226,107478 -h1,13356:6630773,20519905:0,0,0 -g1,13356:6946919,20519905 -g1,13356:7263065,20519905 -k1,13356:7263065,20519905:0 -h1,13356:11056813,20519905:0,0,0 -k1,13356:32583029,20519905:21526216 -g1,13356:32583029,20519905 -) -] -) -g1,13358:32583029,20627383 -g1,13358:6630773,20627383 -g1,13358:6630773,20627383 -g1,13358:32583029,20627383 -g1,13358:32583029,20627383 -) -h1,13358:6630773,20823991:0,0,0 -(1,13362:6630773,22189767:25952256,505283,126483 -h1,13361:6630773,22189767:983040,0,0 -k1,13361:8772386,22189767:205024 -k1,13361:10081692,22189767:205024 -k1,13361:11379201,22189767:205024 -(1,13361:11379201,22189767:0,452978,115847 -r1,13404:17716568,22189767:6337367,568825,115847 -k1,13361:11379201,22189767:-6337367 -) -(1,13361:11379201,22189767:6337367,452978,115847 -k1,13361:11379201,22189767:3277 -h1,13361:17713291,22189767:0,411205,112570 -) -k1,13361:17921592,22189767:205024 -k1,13361:18778044,22189767:205024 -k1,13361:21198185,22189767:205024 -k1,13361:22854831,22189767:205024 -k1,13361:24928942,22189767:205024 -k1,13361:25785394,22189767:205024 -k1,13361:26738184,22189767:205024 -k1,13361:28630105,22189767:205024 -k1,13361:29788678,22189767:205024 -k1,13361:30928245,22189767:205024 -k1,13361:32583029,22189767:0 -) -(1,13362:6630773,23031255:25952256,513147,126483 -k1,13361:9041565,23031255:233031 -k1,13361:11473983,23031255:233030 -k1,13361:12991520,23031255:233031 -k1,13361:14092903,23031255:233031 -k1,13361:15458395,23031255:233030 -k1,13361:16716409,23031255:233031 -k1,13361:18403029,23031255:233031 -k1,13361:19627619,23031255:233030 -k1,13361:21214624,23031255:233031 -k1,13361:23424876,23031255:233031 -k1,13361:24344068,23031255:233030 -k1,13361:25957287,23031255:233031 -k1,13361:27693714,23031255:233031 -k1,13361:29393440,23031255:233030 -(1,13361:29393440,23031255:0,452978,115847 -r1,13404:31158553,23031255:1765113,568825,115847 -k1,13361:29393440,23031255:-1765113 -) -(1,13361:29393440,23031255:1765113,452978,115847 -k1,13361:29393440,23031255:3277 -h1,13361:31155276,23031255:0,411205,112570 -) -k1,13361:31391584,23031255:233031 -k1,13362:32583029,23031255:0 -) -(1,13362:6630773,23872743:25952256,505283,115847 -(1,13361:6630773,23872743:0,459977,115847 -r1,13404:8044174,23872743:1413401,575824,115847 -k1,13361:6630773,23872743:-1413401 -) -(1,13361:6630773,23872743:1413401,459977,115847 -k1,13361:6630773,23872743:3277 -h1,13361:8040897,23872743:0,411205,112570 -) -g1,13361:8243403,23872743 -k1,13362:32583029,23872743:21124430 -g1,13362:32583029,23872743 -) -v1,13364:6630773,25063209:0,393216,0 -(1,13370:6630773,26710662:25952256,2040669,196608 -g1,13370:6630773,26710662 -g1,13370:6630773,26710662 -g1,13370:6434165,26710662 -(1,13370:6434165,26710662:0,2040669,196608 -r1,13404:32779637,26710662:26345472,2237277,196608 -k1,13370:6434165,26710662:-26345472 -) -(1,13370:6434165,26710662:26345472,2040669,196608 -[1,13370:6630773,26710662:25952256,1844061,0 -(1,13366:6630773,25277119:25952256,410518,107478 -(1,13365:6630773,25277119:0,0,0 -g1,13365:6630773,25277119 -g1,13365:6630773,25277119 -g1,13365:6303093,25277119 -(1,13365:6303093,25277119:0,0,0 -) -g1,13365:6630773,25277119 -) -k1,13366:6630773,25277119:0 -g1,13366:10424522,25277119 -g1,13366:11056814,25277119 -g1,13366:13585980,25277119 -g1,13366:15482855,25277119 -g1,13366:16115147,25277119 -g1,13366:18012022,25277119 -g1,13366:18644314,25277119 -g1,13366:19276606,25277119 -g1,13366:20857335,25277119 -g1,13366:22754209,25277119 -g1,13366:23386501,25277119 -g1,13366:27812541,25277119 -h1,13366:28128687,25277119:0,0,0 -k1,13366:32583029,25277119:4454342 -g1,13366:32583029,25277119 -) -(1,13367:6630773,25943297:25952256,404226,107478 -h1,13367:6630773,25943297:0,0,0 -g1,13367:6946919,25943297 -g1,13367:7263065,25943297 -g1,13367:11372959,25943297 -h1,13367:11689105,25943297:0,0,0 -k1,13367:32583029,25943297:20893924 -g1,13367:32583029,25943297 -) -(1,13368:6630773,26609475:25952256,404226,101187 -h1,13368:6630773,26609475:0,0,0 -g1,13368:6946919,26609475 -g1,13368:7263065,26609475 -g1,13368:15482853,26609475 -g1,13368:16115145,26609475 -g1,13368:18012020,26609475 -g1,13368:19276603,26609475 -h1,13368:20541185,26609475:0,0,0 -k1,13368:32583029,26609475:12041844 -g1,13368:32583029,26609475 -) -] -) -g1,13370:32583029,26710662 -g1,13370:6630773,26710662 -g1,13370:6630773,26710662 -g1,13370:32583029,26710662 -g1,13370:32583029,26710662 -) -h1,13370:6630773,26907270:0,0,0 -(1,13374:6630773,28273046:25952256,505283,126483 -h1,13373:6630773,28273046:983040,0,0 -k1,13373:8273433,28273046:189727 -k1,13373:8994656,28273046:189726 -k1,13373:10470199,28273046:189727 -k1,13373:13289886,28273046:189727 -k1,13373:14131040,28273046:189726 -k1,13373:15413252,28273046:189727 -k1,13373:18907959,28273046:189726 -k1,13373:19783848,28273046:189727 -k1,13373:22346634,28273046:189727 -k1,13373:23733047,28273046:189726 -k1,13373:26897453,28273046:189727 -k1,13373:27618677,28273046:189727 -k1,13373:30564847,28273046:189726 -k1,13373:31563944,28273046:189727 -k1,13373:32583029,28273046:0 -) -(1,13374:6630773,29114534:25952256,513147,126483 -k1,13373:9423083,29114534:178079 -k1,13373:10260454,29114534:178079 -k1,13373:11457618,29114534:178079 -k1,13373:15550818,29114534:178079 -k1,13373:16546786,29114534:178079 -k1,13373:17743951,29114534:178080 -k1,13373:20738112,29114534:178079 -k1,13373:22429417,29114534:178079 -k1,13373:23293658,29114534:178079 -k1,13373:26113493,29114534:178079 -k1,13373:27283132,29114534:178079 -k1,13373:32583029,29114534:0 -) -(1,13374:6630773,29956022:25952256,513147,134348 -g1,13373:7698354,29956022 -g1,13373:10780512,29956022 -g1,13373:11998826,29956022 -g1,13373:14463635,29956022 -g1,13373:16421195,29956022 -g1,13373:17303309,29956022 -k1,13374:32583029,29956022:14005045 -g1,13374:32583029,29956022 -) -v1,13376:6630773,31146488:0,393216,0 -(1,13382:6630773,32800232:25952256,2046960,196608 -g1,13382:6630773,32800232 -g1,13382:6630773,32800232 -g1,13382:6434165,32800232 -(1,13382:6434165,32800232:0,2046960,196608 -r1,13404:32779637,32800232:26345472,2243568,196608 -k1,13382:6434165,32800232:-26345472 -) -(1,13382:6434165,32800232:26345472,2046960,196608 -[1,13382:6630773,32800232:25952256,1850352,0 -(1,13378:6630773,31360398:25952256,410518,107478 -(1,13377:6630773,31360398:0,0,0 -g1,13377:6630773,31360398 -g1,13377:6630773,31360398 -g1,13377:6303093,31360398 -(1,13377:6303093,31360398:0,0,0 -) -g1,13377:6630773,31360398 -) -k1,13378:6630773,31360398:0 -g1,13378:10424522,31360398 -g1,13378:11056814,31360398 -g1,13378:13585980,31360398 -g1,13378:15482855,31360398 -g1,13378:16115147,31360398 -g1,13378:18012022,31360398 -g1,13378:18644314,31360398 -g1,13378:19276606,31360398 -g1,13378:20857335,31360398 -g1,13378:22754209,31360398 -g1,13378:23386501,31360398 -g1,13378:27812541,31360398 -h1,13378:28128687,31360398:0,0,0 -k1,13378:32583029,31360398:4454342 -g1,13378:32583029,31360398 -) -(1,13379:6630773,32026576:25952256,404226,107478 -h1,13379:6630773,32026576:0,0,0 -g1,13379:6946919,32026576 -g1,13379:7263065,32026576 -g1,13379:12321397,32026576 -g1,13379:12953689,32026576 -g1,13379:14534418,32026576 -h1,13379:14850564,32026576:0,0,0 -k1,13379:32583028,32026576:17732464 -g1,13379:32583028,32026576 -) -(1,13380:6630773,32692754:25952256,404226,107478 -h1,13380:6630773,32692754:0,0,0 -g1,13380:6946919,32692754 -g1,13380:7263065,32692754 -g1,13380:15482853,32692754 -g1,13380:16115145,32692754 -g1,13380:18328166,32692754 -g1,13380:19908895,32692754 -g1,13380:21805770,32692754 -g1,13380:23702644,32692754 -g1,13380:24334936,32692754 -h1,13380:26547956,32692754:0,0,0 -k1,13380:32583029,32692754:6035073 -g1,13380:32583029,32692754 -) -] -) -g1,13382:32583029,32800232 -g1,13382:6630773,32800232 -g1,13382:6630773,32800232 -g1,13382:32583029,32800232 -g1,13382:32583029,32800232 -) -h1,13382:6630773,32996840:0,0,0 -(1,13385:6630773,42670330:25952256,9083666,0 -k1,13385:10523651,42670330:3892878 -h1,13384:10523651,42670330:0,0,0 -(1,13384:10523651,42670330:18166500,9083666,0 -(1,13384:10523651,42670330:18167376,9083688,0 -(1,13384:10523651,42670330:18167376,9083688,0 -(1,13384:10523651,42670330:0,9083688,0 -(1,13384:10523651,42670330:0,14208860,0 -(1,13384:10523651,42670330:28417720,14208860,0 -) -k1,13384:10523651,42670330:-28417720 -) -) -g1,13384:28691027,42670330 -) -) -) -g1,13385:28690151,42670330 -k1,13385:32583029,42670330:3892878 -) -v1,13392:6630773,44036106:0,393216,0 -] -(1,13404:32583029,45706769:0,0,0 -g1,13404:32583029,45706769 -) -) -] -(1,13404:6630773,47279633:25952256,0,0 -h1,13404:6630773,47279633:25952256,0,0 -) -] -(1,13404:4262630,4025873:0,0,0 -[1,13404:-473656,4025873:0,0,0 -(1,13404:-473656,-710413:0,0,0 -(1,13404:-473656,-710413:0,0,0 -g1,13404:-473656,-710413 -) -g1,13404:-473656,-710413 -) -] -) -] -!18897 -}253 -Input:1912:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1913:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1914:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1915:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1916:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1917:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!564 -{254 -[1,13457:4262630,47279633:28320399,43253760,0 -(1,13457:4262630,4025873:0,0,0 -[1,13457:-473656,4025873:0,0,0 -(1,13457:-473656,-710413:0,0,0 -(1,13457:-473656,-644877:0,0,0 -k1,13457:-473656,-644877:-65536 -) -(1,13457:-473656,4736287:0,0,0 -k1,13457:-473656,4736287:5209943 -) -g1,13457:-473656,-710413 -) -] -) -[1,13457:6630773,47279633:25952256,43253760,0 -[1,13457:6630773,4812305:25952256,786432,0 -(1,13457:6630773,4812305:25952256,485622,11795 -(1,13457:6630773,4812305:25952256,485622,11795 -g1,13457:3078558,4812305 -[1,13457:3078558,4812305:0,0,0 -(1,13457:3078558,2439708:0,1703936,0 -k1,13457:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,13457:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,13457:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,13457:3078558,4812305:0,0,0 -(1,13457:3078558,2439708:0,1703936,0 -g1,13457:29030814,2439708 -g1,13457:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,13457:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,13457:37855564,2439708:1179648,16384,0 -) -) -k1,13457:3078556,2439708:-34777008 -) -] -[1,13457:3078558,4812305:0,0,0 -(1,13457:3078558,49800853:0,16384,2228224 -k1,13457:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,13457:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,13457:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,13457:3078558,4812305:0,0,0 -(1,13457:3078558,49800853:0,16384,2228224 -g1,13457:29030814,49800853 -g1,13457:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,13457:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,13457:37855564,49800853:1179648,16384,0 -) -) -k1,13457:3078556,49800853:-34777008 -) -] -g1,13457:6630773,4812305 -g1,13457:6630773,4812305 -g1,13457:10347975,4812305 -k1,13457:31387651,4812305:21039676 -) -) -] -[1,13457:6630773,45706769:25952256,40108032,0 -(1,13457:6630773,45706769:25952256,40108032,0 -(1,13457:6630773,45706769:0,0,0 -g1,13457:6630773,45706769 -) -[1,13457:6630773,45706769:25952256,40108032,0 -v1,13404:6630773,6254097:0,393216,0 -(1,13404:6630773,14248721:25952256,8387840,616038 -g1,13404:6630773,14248721 -(1,13404:6630773,14248721:25952256,8387840,616038 -(1,13404:6630773,14864759:25952256,9003878,0 -[1,13404:6630773,14864759:25952256,9003878,0 -(1,13404:6630773,14838545:25952256,8951450,0 -r1,13457:6656987,14838545:26214,8951450,0 -[1,13404:6656987,14838545:25899828,8951450,0 -(1,13404:6656987,14248721:25899828,7771802,0 -[1,13404:7246811,14248721:24720180,7771802,0 -(1,13393:7246811,7499265:24720180,1022346,126483 -k1,13392:8674227,7499265:171903 -k1,13392:10117528,7499265:171903 -k1,13392:12800770,7499265:171902 -k1,13392:13588711,7499265:171903 -k1,13392:14779699,7499265:171903 -k1,13392:16340965,7499265:171903 -k1,13392:17617149,7499265:171902 -k1,13392:18536818,7499265:171903 -k1,13392:21294116,7499265:171903 -k1,13392:22117447,7499265:171903 -k1,13392:23939547,7499265:171903 -k1,13392:25553896,7499265:171902 -k1,13392:26882509,7499265:171903 -k1,13392:30072345,7499265:171903 -k1,13393:31966991,7499265:0 -) -(1,13393:7246811,8340753:24720180,513147,134348 -k1,13392:8476803,8340753:239743 -k1,13392:12051017,8340753:239742 -k1,13392:15638994,8340753:239743 -k1,13392:17259580,8340753:239742 -k1,13392:18836257,8340753:239743 -k1,13392:20720953,8340753:239742 -k1,13392:23830518,8340753:239743 -k1,13392:25142429,8340753:239742 -k1,13392:25840269,8340753:239743 -k1,13392:26611508,8340753:239742 -k1,13392:29989770,8340753:239743 -k1,13392:31966991,8340753:0 -) -(1,13393:7246811,9182241:24720180,513147,134348 -k1,13392:8117082,9182241:184109 -k1,13392:8759289,9182241:184110 -k1,13392:10955353,9182241:184109 -k1,13392:12296172,9182241:184109 -k1,13392:13131709,9182241:184109 -k1,13392:15935948,9182241:184110 -k1,13392:18305683,9182241:184109 -k1,13392:19947968,9182241:184109 -k1,13392:21598774,9182241:184110 -k1,13392:23480921,9182241:184109 -k1,13392:26705901,9182241:184109 -k1,13392:27506048,9182241:184109 -k1,13392:29479946,9182241:184110 -k1,13392:30768337,9182241:184109 -k1,13392:31966991,9182241:0 -) -(1,13393:7246811,10023729:24720180,513147,134348 -g1,13392:8193806,10023729 -g1,13392:9805336,10023729 -g1,13392:10470526,10023729 -g1,13392:14346325,10023729 -g1,13392:15231716,10023729 -g1,13392:20477217,10023729 -k1,13393:31966991,10023729:9087224 -g1,13393:31966991,10023729 -) -v1,13395:7246811,11214195:0,393216,0 -(1,13402:7246811,13527825:24720180,2706846,196608 -g1,13402:7246811,13527825 -g1,13402:7246811,13527825 -g1,13402:7050203,13527825 -(1,13402:7050203,13527825:0,2706846,196608 -r1,13457:32163599,13527825:25113396,2903454,196608 -k1,13402:7050203,13527825:-25113396 -) -(1,13402:7050203,13527825:25113396,2706846,196608 -[1,13402:7246811,13527825:24720180,2510238,0 -(1,13397:7246811,11421813:24720180,404226,107478 -(1,13396:7246811,11421813:0,0,0 -g1,13396:7246811,11421813 -g1,13396:7246811,11421813 -g1,13396:6919131,11421813 -(1,13396:6919131,11421813:0,0,0 -) -g1,13396:7246811,11421813 -) -k1,13397:7246811,11421813:0 -g1,13397:11040560,11421813 -g1,13397:11672852,11421813 -g1,13397:14202018,11421813 -g1,13397:16098893,11421813 -g1,13397:16731185,11421813 -g1,13397:18628060,11421813 -g1,13397:19260352,11421813 -g1,13397:19892644,11421813 -k1,13397:19892644,11421813:0 -h1,13397:21157227,11421813:0,0,0 -k1,13397:31966991,11421813:10809764 -g1,13397:31966991,11421813 -) -(1,13398:7246811,12087991:24720180,410518,101187 -h1,13398:7246811,12087991:0,0,0 -g1,13398:7562957,12087991 -g1,13398:7879103,12087991 -g1,13398:8195249,12087991 -g1,13398:8511395,12087991 -g1,13398:8827541,12087991 -g1,13398:9143687,12087991 -g1,13398:9459833,12087991 -g1,13398:9775979,12087991 -g1,13398:10092125,12087991 -g1,13398:10408271,12087991 -g1,13398:10724417,12087991 -g1,13398:11040563,12087991 -g1,13398:11356709,12087991 -g1,13398:11672855,12087991 -g1,13398:11989001,12087991 -g1,13398:12305147,12087991 -g1,13398:12621293,12087991 -g1,13398:12937439,12087991 -g1,13398:13253585,12087991 -g1,13398:13569731,12087991 -g1,13398:13885877,12087991 -g1,13398:14202023,12087991 -g1,13398:14518169,12087991 -g1,13398:14834315,12087991 -g1,13398:15150461,12087991 -g1,13398:15466607,12087991 -g1,13398:17363481,12087991 -g1,13398:17995773,12087991 -k1,13398:17995773,12087991:0 -h1,13398:21789521,12087991:0,0,0 -k1,13398:31966991,12087991:10177470 -g1,13398:31966991,12087991 -) -(1,13399:7246811,12754169:24720180,410518,101187 -h1,13399:7246811,12754169:0,0,0 -g1,13399:7562957,12754169 -g1,13399:7879103,12754169 -g1,13399:8195249,12754169 -g1,13399:8511395,12754169 -g1,13399:8827541,12754169 -g1,13399:9143687,12754169 -g1,13399:9459833,12754169 -g1,13399:9775979,12754169 -g1,13399:10092125,12754169 -g1,13399:10408271,12754169 -g1,13399:10724417,12754169 -g1,13399:11040563,12754169 -g1,13399:11356709,12754169 -g1,13399:11672855,12754169 -g1,13399:11989001,12754169 -g1,13399:12305147,12754169 -g1,13399:12621293,12754169 -g1,13399:12937439,12754169 -g1,13399:13253585,12754169 -g1,13399:13569731,12754169 -g1,13399:13885877,12754169 -g1,13399:14202023,12754169 -g1,13399:14518169,12754169 -g1,13399:14834315,12754169 -g1,13399:15150461,12754169 -g1,13399:15466607,12754169 -g1,13399:17363481,12754169 -g1,13399:17995773,12754169 -g1,13399:22421813,12754169 -h1,13399:22737959,12754169:0,0,0 -k1,13399:31966991,12754169:9229032 -g1,13399:31966991,12754169 -) -(1,13400:7246811,13420347:24720180,404226,107478 -h1,13400:7246811,13420347:0,0,0 -g1,13400:7562957,13420347 -g1,13400:7879103,13420347 -k1,13400:7879103,13420347:0 -h1,13400:11672851,13420347:0,0,0 -k1,13400:31966991,13420347:20294140 -g1,13400:31966991,13420347 -) -] -) -g1,13402:31966991,13527825 -g1,13402:7246811,13527825 -g1,13402:7246811,13527825 -g1,13402:31966991,13527825 -g1,13402:31966991,13527825 -) -h1,13402:7246811,13724433:0,0,0 -] -) -] -r1,13457:32583029,14838545:26214,8951450,0 -) -] -) -) -g1,13404:32583029,14248721 -) -h1,13404:6630773,14864759:0,0,0 -(1,13408:6630773,16101027:25952256,513147,126483 -h1,13407:6630773,16101027:983040,0,0 -k1,13407:8992212,16101027:223655 -k1,13407:10823465,16101027:223655 -k1,13407:12038680,16101027:223655 -k1,13407:14464345,16101027:223655 -k1,13407:15339428,16101027:223655 -k1,13407:17732325,16101027:223655 -k1,13407:19563578,16101027:223655 -k1,13407:20859403,16101027:223656 -k1,13407:21438918,16101027:223655 -k1,13407:23556563,16101027:223655 -k1,13407:24311715,16101027:223655 -k1,13407:27120765,16101027:223655 -k1,13407:27995848,16101027:223655 -k1,13407:30075483,16101027:223655 -k1,13407:31318223,16101027:223655 -(1,13407:31318223,16101027:0,414482,115847 -r1,13457:31676489,16101027:358266,530329,115847 -k1,13407:31318223,16101027:-358266 -) -(1,13407:31318223,16101027:358266,414482,115847 -k1,13407:31318223,16101027:3277 -h1,13407:31673212,16101027:0,411205,112570 -) -k1,13407:31900144,16101027:223655 -k1,13408:32583029,16101027:0 -) -(1,13408:6630773,16942515:25952256,505283,134348 -(1,13407:6630773,16942515:0,414482,115847 -r1,13457:6989039,16942515:358266,530329,115847 -k1,13407:6630773,16942515:-358266 -) -(1,13407:6630773,16942515:358266,414482,115847 -k1,13407:6630773,16942515:3277 -h1,13407:6985762,16942515:0,411205,112570 -) -k1,13407:7264800,16942515:275761 -k1,13407:10467398,16942515:275761 -k1,13407:11897902,16942515:275760 -k1,13407:13781261,16942515:275761 -k1,13407:15048582,16942515:275761 -k1,13407:17190153,16942515:275761 -k1,13407:18117341,16942515:275760 -k1,13407:19868317,16942515:275761 -k1,13407:23924195,16942515:275761 -k1,13407:28445378,16942515:275761 -k1,13407:29912583,16942515:275760 -k1,13407:31345054,16942515:275761 -k1,13407:32583029,16942515:0 -) -(1,13408:6630773,17784003:25952256,513147,134348 -k1,13407:7576306,17784003:286241 -k1,13407:10221188,17784003:286241 -k1,13407:12204156,17784003:286241 -k1,13407:14508906,17784003:286241 -k1,13407:16837904,17784003:286241 -k1,13407:17655642,17784003:286241 -k1,13407:18593312,17784003:286242 -k1,13407:20595286,17784003:286241 -k1,13407:22520582,17784003:286241 -k1,13407:24694915,17784003:286241 -k1,13407:28711465,17784003:286241 -k1,13407:29759234,17784003:286241 -k1,13407:32227169,17784003:286241 -k1,13407:32583029,17784003:0 -) -(1,13408:6630773,18625491:25952256,513147,115847 -g1,13407:9587757,18625491 -g1,13407:11467329,18625491 -g1,13407:14018645,18625491 -g1,13407:15660321,18625491 -g1,13407:17016260,18625491 -g1,13407:18163140,18625491 -g1,13407:19381454,18625491 -(1,13407:19381454,18625491:0,452978,115847 -r1,13457:21146567,18625491:1765113,568825,115847 -k1,13407:19381454,18625491:-1765113 -) -(1,13407:19381454,18625491:1765113,452978,115847 -k1,13407:19381454,18625491:3277 -h1,13407:21143290,18625491:0,411205,112570 -) -g1,13407:21345796,18625491 -k1,13408:32583029,18625491:8310396 -g1,13408:32583029,18625491 -) -v1,13410:6630773,19686448:0,393216,0 -(1,13415:6630773,20674014:25952256,1380782,196608 -g1,13415:6630773,20674014 -g1,13415:6630773,20674014 -g1,13415:6434165,20674014 -(1,13415:6434165,20674014:0,1380782,196608 -r1,13457:32779637,20674014:26345472,1577390,196608 -k1,13415:6434165,20674014:-26345472 -) -(1,13415:6434165,20674014:26345472,1380782,196608 -[1,13415:6630773,20674014:25952256,1184174,0 -(1,13412:6630773,19900358:25952256,410518,107478 -(1,13411:6630773,19900358:0,0,0 -g1,13411:6630773,19900358 -g1,13411:6630773,19900358 -g1,13411:6303093,19900358 -(1,13411:6303093,19900358:0,0,0 -) -g1,13411:6630773,19900358 -) -k1,13412:6630773,19900358:0 -g1,13412:10424522,19900358 -g1,13412:11056814,19900358 -g1,13412:13585980,19900358 -g1,13412:15482855,19900358 -g1,13412:16115147,19900358 -g1,13412:20225041,19900358 -g1,13412:20857333,19900358 -g1,13412:21489625,19900358 -g1,13412:23386499,19900358 -h1,13412:23702645,19900358:0,0,0 -k1,13412:32583029,19900358:8880384 -g1,13412:32583029,19900358 -) -(1,13413:6630773,20566536:25952256,404226,107478 -h1,13413:6630773,20566536:0,0,0 -g1,13413:6946919,20566536 -g1,13413:7263065,20566536 -g1,13413:12637542,20566536 -g1,13413:13269834,20566536 -h1,13413:14534418,20566536:0,0,0 -k1,13413:32583030,20566536:18048612 -g1,13413:32583030,20566536 -) -] -) -g1,13415:32583029,20674014 -g1,13415:6630773,20674014 -g1,13415:6630773,20674014 -g1,13415:32583029,20674014 -g1,13415:32583029,20674014 -) -h1,13415:6630773,20870622:0,0,0 -(1,13418:6630773,30414604:25952256,9083666,0 -k1,13418:10523651,30414604:3892878 -h1,13417:10523651,30414604:0,0,0 -(1,13417:10523651,30414604:18166500,9083666,0 -(1,13417:10523651,30414604:18167376,9083688,0 -(1,13417:10523651,30414604:18167376,9083688,0 -(1,13417:10523651,30414604:0,9083688,0 -(1,13417:10523651,30414604:0,14208860,0 -(1,13417:10523651,30414604:28417720,14208860,0 -) -k1,13417:10523651,30414604:-28417720 -) -) -g1,13417:28691027,30414604 -) -) -) -g1,13418:28690151,30414604 -k1,13418:32583029,30414604:3892878 -) -(1,13425:6630773,31256092:25952256,513147,134348 -h1,13424:6630773,31256092:983040,0,0 -k1,13424:10141274,31256092:188481 -k1,13424:10989048,31256092:188482 -k1,13424:13536170,31256092:188481 -k1,13424:14743737,31256092:188482 -k1,13424:16950727,31256092:188481 -k1,13424:22541996,31256092:188481 -k1,13424:23598830,31256092:188482 -k1,13424:24891593,31256092:188481 -k1,13424:28140606,31256092:188482 -k1,13424:30943974,31256092:188481 -k1,13424:32583029,31256092:0 -) -(1,13425:6630773,32097580:25952256,505283,134348 -k1,13424:7489492,32097580:207291 -k1,13424:9426278,32097580:207291 -k1,13424:12506667,32097580:207291 -k1,13424:14094802,32097580:207291 -k1,13424:14833590,32097580:207291 -k1,13424:16908658,32097580:207292 -k1,13424:18816608,32097580:207291 -k1,13424:20215344,32097580:207291 -k1,13424:21526917,32097580:207291 -k1,13424:22481974,32097580:207291 -k1,13424:24654690,32097580:207291 -k1,13424:26597374,32097580:207291 -(1,13424:26597374,32097580:0,452978,122846 -r1,13457:32583029,32097580:5985655,575824,122846 -k1,13424:26597374,32097580:-5985655 -) -(1,13424:26597374,32097580:5985655,452978,122846 -k1,13424:26597374,32097580:3277 -h1,13424:32579752,32097580:0,411205,112570 -) -k1,13424:32583029,32097580:0 -) -(1,13425:6630773,32939068:25952256,513147,134348 -k1,13424:8012607,32939068:190389 -k1,13424:9222080,32939068:190388 -k1,13424:11869414,32939068:190389 -k1,13424:12719094,32939068:190388 -k1,13424:14486935,32939068:190389 -k1,13424:15611866,32939068:190388 -k1,13424:17196206,32939068:190389 -(1,13424:17196206,32939068:0,452978,115847 -r1,13457:18961319,32939068:1765113,568825,115847 -k1,13424:17196206,32939068:-1765113 -) -(1,13424:17196206,32939068:1765113,452978,115847 -k1,13424:17196206,32939068:3277 -h1,13424:18958042,32939068:0,411205,112570 -) -k1,13424:19151707,32939068:190388 -k1,13424:20028258,32939068:190389 -k1,13424:20574506,32939068:190388 -k1,13424:23274924,32939068:190389 -k1,13424:24124604,32939068:190388 -k1,13424:25334078,32939068:190389 -k1,13424:28185228,32939068:190388 -k1,13424:31010820,32939068:190389 -k1,13425:32583029,32939068:0 -) -(1,13425:6630773,33780556:25952256,513147,126483 -g1,13424:8182665,33780556 -g1,13424:10275884,33780556 -g1,13424:12267523,33780556 -g1,13424:13082790,33780556 -g1,13424:14301104,33780556 -k1,13425:32583029,33780556:16830958 -g1,13425:32583029,33780556 -) -v1,13427:6630773,34841514:0,393216,0 -(1,13432:6630773,35829080:25952256,1380782,196608 -g1,13432:6630773,35829080 -g1,13432:6630773,35829080 -g1,13432:6434165,35829080 -(1,13432:6434165,35829080:0,1380782,196608 -r1,13457:32779637,35829080:26345472,1577390,196608 -k1,13432:6434165,35829080:-26345472 -) -(1,13432:6434165,35829080:26345472,1380782,196608 -[1,13432:6630773,35829080:25952256,1184174,0 -(1,13429:6630773,35055424:25952256,410518,107478 -(1,13428:6630773,35055424:0,0,0 -g1,13428:6630773,35055424 -g1,13428:6630773,35055424 -g1,13428:6303093,35055424 -(1,13428:6303093,35055424:0,0,0 -) -g1,13428:6630773,35055424 -) -k1,13429:6630773,35055424:0 -g1,13429:10424522,35055424 -g1,13429:11056814,35055424 -g1,13429:13585980,35055424 -g1,13429:15482855,35055424 -g1,13429:16115147,35055424 -g1,13429:20225041,35055424 -g1,13429:20857333,35055424 -g1,13429:21489625,35055424 -g1,13429:23386499,35055424 -h1,13429:23702645,35055424:0,0,0 -k1,13429:32583029,35055424:8880384 -g1,13429:32583029,35055424 -) -(1,13430:6630773,35721602:25952256,404226,107478 -h1,13430:6630773,35721602:0,0,0 -g1,13430:6946919,35721602 -g1,13430:7263065,35721602 -g1,13430:13585979,35721602 -g1,13430:14218271,35721602 -g1,13430:21173476,35721602 -g1,13430:21805768,35721602 -h1,13430:23702642,35721602:0,0,0 -k1,13430:32583029,35721602:8880387 -g1,13430:32583029,35721602 -) -] -) -g1,13432:32583029,35829080 -g1,13432:6630773,35829080 -g1,13432:6630773,35829080 -g1,13432:32583029,35829080 -g1,13432:32583029,35829080 -) -h1,13432:6630773,36025688:0,0,0 -(1,13437:6630773,37261955:25952256,505283,134348 -h1,13436:6630773,37261955:983040,0,0 -k1,13436:8814550,37261955:247188 -k1,13436:10166020,37261955:247188 -k1,13436:12342587,37261955:247187 -k1,13436:12945635,37261955:247188 -k1,13436:15961719,37261955:247188 -k1,13436:17486204,37261955:247188 -k1,13436:18494919,37261955:247187 -k1,13436:21549669,37261955:247188 -k1,13436:22815942,37261955:247188 -(1,13436:22815942,37261955:0,452978,115847 -r1,13457:24229343,37261955:1413401,568825,115847 -k1,13436:22815942,37261955:-1413401 -) -(1,13436:22815942,37261955:1413401,452978,115847 -k1,13436:22815942,37261955:3277 -h1,13436:24226066,37261955:0,411205,112570 -) -k1,13436:24476531,37261955:247188 -k1,13436:27510965,37261955:247188 -k1,13436:28409580,37261955:247187 -k1,13436:29012628,37261955:247188 -k1,13436:32583029,37261955:0 -) -(1,13437:6630773,38103443:25952256,513147,134348 -k1,13436:9500040,38103443:184257 -k1,13436:10312132,38103443:184257 -k1,13436:11699630,38103443:184257 -k1,13436:13424638,38103443:184257 -k1,13436:14765605,38103443:184257 -k1,13436:16050867,38103443:184257 -k1,13436:16886551,38103443:184256 -k1,13436:18751151,38103443:184257 -k1,13436:20484024,38103443:184257 -k1,13436:21199778,38103443:184257 -k1,13436:23814765,38103443:184257 -k1,13436:25649219,38103443:184257 -k1,13436:29620146,38103443:184257 -k1,13436:32583029,38103443:0 -) -(1,13437:6630773,38944931:25952256,513147,126483 -k1,13436:7793533,38944931:143675 -k1,13436:9948508,38944931:143675 -k1,13436:10751475,38944931:143675 -k1,13436:11914234,38944931:143674 -k1,13436:13926996,38944931:143675 -k1,13436:14602168,38944931:143675 -k1,13436:18050824,38944931:143675 -k1,13436:20953565,38944931:143675 -k1,13436:22280165,38944931:143675 -k1,13436:23075267,38944931:143674 -k1,13436:24549323,38944931:143675 -k1,13436:26913358,38944931:143675 -k1,13436:30482600,38944931:143675 -k1,13436:32583029,38944931:0 -) -(1,13437:6630773,39786419:25952256,513147,134348 -k1,13436:9659519,39786419:221184 -k1,13436:10236563,39786419:221184 -k1,13436:12969087,39786419:221184 -k1,13436:13841699,39786419:221184 -k1,13436:15081968,39786419:221184 -k1,13436:16650572,39786419:221184 -k1,13436:17531048,39786419:221184 -k1,13436:18771316,39786419:221183 -k1,13436:20861587,39786419:221184 -k1,13436:21614268,39786419:221184 -k1,13436:23485649,39786419:221184 -k1,13436:25684054,39786419:221184 -k1,13436:26666766,39786419:221184 -k1,13436:28625965,39786419:221184 -k1,13436:32583029,39786419:0 -) -(1,13437:6630773,40627907:25952256,505283,134348 -k1,13436:8705683,40627907:175677 -k1,13436:9532789,40627907:175678 -k1,13436:10064326,40627907:175677 -k1,13436:12052730,40627907:175678 -k1,13436:15209640,40627907:175677 -k1,13436:16427340,40627907:175678 -k1,13436:17806258,40627907:175677 -k1,13436:20643352,40627907:175677 -k1,13436:21687382,40627907:175678 -k1,13436:23060402,40627907:175677 -k1,13436:23591940,40627907:175678 -k1,13436:25050812,40627907:175677 -k1,13436:27737830,40627907:175678 -k1,13436:28564935,40627907:175677 -k1,13436:29759698,40627907:175678 -k1,13436:31386342,40627907:175677 -k1,13436:32583029,40627907:0 -) -(1,13437:6630773,41469395:25952256,513147,134348 -g1,13436:8945504,41469395 -g1,13436:9804025,41469395 -g1,13436:11022339,41469395 -g1,13436:12199365,41469395 -g1,13436:13014632,41469395 -g1,13436:14610433,41469395 -g1,13436:16001107,41469395 -g1,13436:17596908,41469395 -g1,13436:18254234,41469395 -g1,13436:19104891,41469395 -g1,13436:20323205,41469395 -g1,13436:21869854,41469395 -g1,13436:22728375,41469395 -g1,13436:23946689,41469395 -k1,13437:32583029,41469395:6444161 -g1,13437:32583029,41469395 -) -v1,13439:6630773,42530353:0,393216,0 -(1,13447:6630773,45510161:25952256,3373024,196608 -g1,13447:6630773,45510161 -g1,13447:6630773,45510161 -g1,13447:6434165,45510161 -(1,13447:6434165,45510161:0,3373024,196608 -r1,13457:32779637,45510161:26345472,3569632,196608 -k1,13447:6434165,45510161:-26345472 -) -(1,13447:6434165,45510161:26345472,3373024,196608 -[1,13447:6630773,45510161:25952256,3176416,0 -(1,13441:6630773,42737971:25952256,404226,107478 -(1,13440:6630773,42737971:0,0,0 -g1,13440:6630773,42737971 -g1,13440:6630773,42737971 -g1,13440:6303093,42737971 -(1,13440:6303093,42737971:0,0,0 -) -g1,13440:6630773,42737971 -) -k1,13441:6630773,42737971:0 -g1,13441:10424522,42737971 -g1,13441:11056814,42737971 -g1,13441:13585980,42737971 -g1,13441:15482855,42737971 -g1,13441:16115147,42737971 -g1,13441:18012022,42737971 -g1,13441:18644314,42737971 -g1,13441:19276606,42737971 -k1,13441:19276606,42737971:0 -h1,13441:20541189,42737971:0,0,0 -k1,13441:32583029,42737971:12041840 -g1,13441:32583029,42737971 -) -(1,13442:6630773,43404149:25952256,410518,101187 -h1,13442:6630773,43404149:0,0,0 -g1,13442:6946919,43404149 -g1,13442:7263065,43404149 -g1,13442:7579211,43404149 -g1,13442:7895357,43404149 -g1,13442:8211503,43404149 -g1,13442:8527649,43404149 -g1,13442:8843795,43404149 -g1,13442:9159941,43404149 -g1,13442:9476087,43404149 -g1,13442:9792233,43404149 -g1,13442:10108379,43404149 -g1,13442:10424525,43404149 -g1,13442:10740671,43404149 -g1,13442:11056817,43404149 -g1,13442:11372963,43404149 -g1,13442:11689109,43404149 -g1,13442:12005255,43404149 -g1,13442:12321401,43404149 -g1,13442:12637547,43404149 -g1,13442:12953693,43404149 -g1,13442:13269839,43404149 -g1,13442:13585985,43404149 -g1,13442:13902131,43404149 -g1,13442:14218277,43404149 -g1,13442:14534423,43404149 -g1,13442:14850569,43404149 -g1,13442:16747443,43404149 -g1,13442:17379735,43404149 -k1,13442:17379735,43404149:0 -h1,13442:21173483,43404149:0,0,0 -k1,13442:32583029,43404149:11409546 -g1,13442:32583029,43404149 -) -(1,13443:6630773,44070327:25952256,404226,76021 -h1,13443:6630773,44070327:0,0,0 -g1,13443:6946919,44070327 -g1,13443:7263065,44070327 -g1,13443:7579211,44070327 -g1,13443:7895357,44070327 -g1,13443:8211503,44070327 -g1,13443:8527649,44070327 -g1,13443:8843795,44070327 -g1,13443:9159941,44070327 -g1,13443:9476087,44070327 -g1,13443:9792233,44070327 -g1,13443:10108379,44070327 -g1,13443:10424525,44070327 -g1,13443:10740671,44070327 -g1,13443:11056817,44070327 -g1,13443:11372963,44070327 -g1,13443:11689109,44070327 -g1,13443:12005255,44070327 -g1,13443:12321401,44070327 -g1,13443:12637547,44070327 -g1,13443:12953693,44070327 -g1,13443:13269839,44070327 -g1,13443:13585985,44070327 -g1,13443:13902131,44070327 -g1,13443:14218277,44070327 -g1,13443:14534423,44070327 -g1,13443:14850569,44070327 -g1,13443:16431298,44070327 -g1,13443:17063590,44070327 -g1,13443:18644319,44070327 -h1,13443:18960465,44070327:0,0,0 -k1,13443:32583029,44070327:13622564 -g1,13443:32583029,44070327 -) -(1,13444:6630773,44736505:25952256,404226,76021 -h1,13444:6630773,44736505:0,0,0 -g1,13444:6946919,44736505 -g1,13444:7263065,44736505 -g1,13444:12953687,44736505 -h1,13444:13269833,44736505:0,0,0 -k1,13444:32583029,44736505:19313196 -g1,13444:32583029,44736505 -) -(1,13445:6630773,45402683:25952256,404226,107478 -h1,13445:6630773,45402683:0,0,0 -g1,13445:6946919,45402683 -g1,13445:7263065,45402683 -k1,13445:7263065,45402683:0 -h1,13445:11056813,45402683:0,0,0 -k1,13445:32583029,45402683:21526216 -g1,13445:32583029,45402683 -) -] -) -g1,13447:32583029,45510161 -g1,13447:6630773,45510161 -g1,13447:6630773,45510161 -g1,13447:32583029,45510161 -g1,13447:32583029,45510161 -) -h1,13447:6630773,45706769:0,0,0 -] -(1,13457:32583029,45706769:0,0,0 -g1,13457:32583029,45706769 -) -) -] -(1,13457:6630773,47279633:25952256,0,0 -h1,13457:6630773,47279633:25952256,0,0 -) -] -(1,13457:4262630,4025873:0,0,0 -[1,13457:-473656,4025873:0,0,0 -(1,13457:-473656,-710413:0,0,0 -(1,13457:-473656,-710413:0,0,0 -g1,13457:-473656,-710413 -) -g1,13457:-473656,-710413 -) -] -) -] -!24786 -}254 -Input:1918:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!104 -{255 -[1,13500:4262630,47279633:28320399,43253760,0 -(1,13500:4262630,4025873:0,0,0 -[1,13500:-473656,4025873:0,0,0 -(1,13500:-473656,-710413:0,0,0 -(1,13500:-473656,-644877:0,0,0 -k1,13500:-473656,-644877:-65536 -) -(1,13500:-473656,4736287:0,0,0 -k1,13500:-473656,4736287:5209943 -) -g1,13500:-473656,-710413 -) -] -) -[1,13500:6630773,47279633:25952256,43253760,0 -[1,13500:6630773,4812305:25952256,786432,0 -(1,13500:6630773,4812305:25952256,513147,134348 -(1,13500:6630773,4812305:25952256,513147,134348 -g1,13500:3078558,4812305 -[1,13500:3078558,4812305:0,0,0 -(1,13500:3078558,2439708:0,1703936,0 -k1,13500:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,13500:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,13500:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,13500:3078558,4812305:0,0,0 -(1,13500:3078558,2439708:0,1703936,0 -g1,13500:29030814,2439708 -g1,13500:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,13500:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,13500:37855564,2439708:1179648,16384,0 -) -) -k1,13500:3078556,2439708:-34777008 -) -] -[1,13500:3078558,4812305:0,0,0 -(1,13500:3078558,49800853:0,16384,2228224 -k1,13500:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,13500:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,13500:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,13500:3078558,4812305:0,0,0 -(1,13500:3078558,49800853:0,16384,2228224 -g1,13500:29030814,49800853 -g1,13500:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,13500:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,13500:37855564,49800853:1179648,16384,0 -) -) -k1,13500:3078556,49800853:-34777008 -) -] -g1,13500:6630773,4812305 -k1,13500:25712890,4812305:17886740 -g1,13500:29057847,4812305 -g1,13500:29873114,4812305 -) -) -] -[1,13500:6630773,45706769:25952256,40108032,0 -(1,13500:6630773,45706769:25952256,40108032,0 -(1,13500:6630773,45706769:0,0,0 -g1,13500:6630773,45706769 -) -[1,13500:6630773,45706769:25952256,40108032,0 -(1,13450:6630773,14682403:25952256,9083666,0 -k1,13450:10523651,14682403:3892878 -h1,13449:10523651,14682403:0,0,0 -(1,13449:10523651,14682403:18166500,9083666,0 -(1,13449:10523651,14682403:18167376,9083688,0 -(1,13449:10523651,14682403:18167376,9083688,0 -(1,13449:10523651,14682403:0,9083688,0 -(1,13449:10523651,14682403:0,14208860,0 -(1,13449:10523651,14682403:28417720,14208860,0 -) -k1,13449:10523651,14682403:-28417720 -) -) -g1,13449:28691027,14682403 -) -) -) -g1,13450:28690151,14682403 -k1,13450:32583029,14682403:3892878 -) -v1,13457:6630773,16048179:0,393216,0 -(1,13472:6630773,24781872:25952256,9126909,616038 -g1,13472:6630773,24781872 -(1,13472:6630773,24781872:25952256,9126909,616038 -(1,13472:6630773,25397910:25952256,9742947,0 -[1,13472:6630773,25397910:25952256,9742947,0 -(1,13472:6630773,25371696:25952256,9690519,0 -r1,13500:6656987,25371696:26214,9690519,0 -[1,13472:6656987,25371696:25899828,9690519,0 -(1,13472:6656987,24781872:25899828,8510871,0 -[1,13472:7246811,24781872:24720180,8510871,0 -(1,13458:7246811,17358375:24720180,1087374,126483 -g1,13457:8655743,17358375 -g1,13457:9332729,17358375 -g1,13457:10400310,17358375 -g1,13457:11692024,17358375 -g1,13457:12247113,17358375 -g1,13457:16525303,17358375 -g1,13457:18296741,17358375 -g1,13457:19515055,17358375 -g1,13457:23863368,17358375 -g1,13457:24594094,17358375 -k1,13458:31966991,17358375:4436884 -g1,13458:31966991,17358375 -) -v1,13460:7246811,18548841:0,393216,0 -(1,13468:7246811,21528649:24720180,3373024,196608 -g1,13468:7246811,21528649 -g1,13468:7246811,21528649 -g1,13468:7050203,21528649 -(1,13468:7050203,21528649:0,3373024,196608 -r1,13500:32163599,21528649:25113396,3569632,196608 -k1,13468:7050203,21528649:-25113396 -) -(1,13468:7050203,21528649:25113396,3373024,196608 -[1,13468:7246811,21528649:24720180,3176416,0 -(1,13462:7246811,18756459:24720180,404226,107478 -(1,13461:7246811,18756459:0,0,0 -g1,13461:7246811,18756459 -g1,13461:7246811,18756459 -g1,13461:6919131,18756459 -(1,13461:6919131,18756459:0,0,0 -) -g1,13461:7246811,18756459 -) -k1,13462:7246811,18756459:0 -g1,13462:11040560,18756459 -g1,13462:11672852,18756459 -g1,13462:14202018,18756459 -g1,13462:16098893,18756459 -g1,13462:16731185,18756459 -g1,13462:18628060,18756459 -g1,13462:19260352,18756459 -g1,13462:19892644,18756459 -k1,13462:19892644,18756459:0 -h1,13462:21157227,18756459:0,0,0 -k1,13462:31966991,18756459:10809764 -g1,13462:31966991,18756459 -) -(1,13463:7246811,19422637:24720180,410518,101187 -h1,13463:7246811,19422637:0,0,0 -g1,13463:7562957,19422637 -g1,13463:7879103,19422637 -g1,13463:8195249,19422637 -g1,13463:8511395,19422637 -g1,13463:8827541,19422637 -g1,13463:9143687,19422637 -g1,13463:9459833,19422637 -g1,13463:9775979,19422637 -g1,13463:10092125,19422637 -g1,13463:10408271,19422637 -g1,13463:10724417,19422637 -g1,13463:11040563,19422637 -g1,13463:11356709,19422637 -g1,13463:11672855,19422637 -g1,13463:11989001,19422637 -g1,13463:12305147,19422637 -g1,13463:12621293,19422637 -g1,13463:12937439,19422637 -g1,13463:13253585,19422637 -g1,13463:13569731,19422637 -g1,13463:13885877,19422637 -g1,13463:14202023,19422637 -g1,13463:14518169,19422637 -g1,13463:14834315,19422637 -g1,13463:15150461,19422637 -g1,13463:15466607,19422637 -g1,13463:17363481,19422637 -g1,13463:17995773,19422637 -k1,13463:17995773,19422637:0 -h1,13463:21789521,19422637:0,0,0 -k1,13463:31966991,19422637:10177470 -g1,13463:31966991,19422637 -) -(1,13464:7246811,20088815:24720180,404226,76021 -h1,13464:7246811,20088815:0,0,0 -g1,13464:7562957,20088815 -g1,13464:7879103,20088815 -g1,13464:8195249,20088815 -g1,13464:8511395,20088815 -g1,13464:8827541,20088815 -g1,13464:9143687,20088815 -g1,13464:9459833,20088815 -g1,13464:9775979,20088815 -g1,13464:10092125,20088815 -g1,13464:10408271,20088815 -g1,13464:10724417,20088815 -g1,13464:11040563,20088815 -g1,13464:11356709,20088815 -g1,13464:11672855,20088815 -g1,13464:11989001,20088815 -g1,13464:12305147,20088815 -g1,13464:12621293,20088815 -g1,13464:12937439,20088815 -g1,13464:13253585,20088815 -g1,13464:13569731,20088815 -g1,13464:13885877,20088815 -g1,13464:14202023,20088815 -g1,13464:14518169,20088815 -g1,13464:14834315,20088815 -g1,13464:15150461,20088815 -g1,13464:15466607,20088815 -g1,13464:17047336,20088815 -g1,13464:17679628,20088815 -g1,13464:19260357,20088815 -h1,13464:19576503,20088815:0,0,0 -k1,13464:31966991,20088815:12390488 -g1,13464:31966991,20088815 -) -(1,13465:7246811,20754993:24720180,404226,76021 -h1,13465:7246811,20754993:0,0,0 -g1,13465:7562957,20754993 -g1,13465:7879103,20754993 -g1,13465:11988997,20754993 -h1,13465:12305143,20754993:0,0,0 -k1,13465:31966991,20754993:19661848 -g1,13465:31966991,20754993 -) -(1,13466:7246811,21421171:24720180,404226,107478 -h1,13466:7246811,21421171:0,0,0 -g1,13466:7562957,21421171 -g1,13466:7879103,21421171 -k1,13466:7879103,21421171:0 -h1,13466:11672851,21421171:0,0,0 -k1,13466:31966991,21421171:20294140 -g1,13466:31966991,21421171 -) -] -) -g1,13468:31966991,21528649 -g1,13468:7246811,21528649 -g1,13468:7246811,21528649 -g1,13468:31966991,21528649 -g1,13468:31966991,21528649 -) -h1,13468:7246811,21725257:0,0,0 -(1,13472:7246811,23091033:24720180,513147,126483 -h1,13471:7246811,23091033:983040,0,0 -k1,13471:10122682,23091033:233459 -k1,13471:11375226,23091033:233459 -k1,13471:13059653,23091033:233460 -k1,13471:14679854,23091033:233459 -k1,13471:15526075,23091033:233459 -k1,13471:16217631,23091033:233459 -k1,13471:19400866,23091033:233460 -k1,13471:21578123,23091033:233459 -k1,13471:22830667,23091033:233459 -k1,13471:26245244,23091033:233459 -k1,13471:28489349,23091033:233460 -k1,13471:29382100,23091033:233459 -k1,13471:31307699,23091033:233459 -k1,13471:31966991,23091033:0 -) -(1,13472:7246811,23932521:24720180,513147,134348 -k1,13471:8521377,23932521:255481 -k1,13471:11396332,23932521:255481 -k1,13471:12843258,23932521:255481 -k1,13471:15123146,23932521:255481 -k1,13471:15844588,23932521:255481 -k1,13471:17558901,23932521:255482 -k1,13471:21239949,23932521:255481 -k1,13471:22154722,23932521:255481 -k1,13471:23429288,23932521:255481 -k1,13471:24962066,23932521:255481 -k1,13471:27876343,23932521:255481 -k1,13471:29150909,23932521:255481 -k1,13471:31966991,23932521:0 -) -(1,13472:7246811,24774009:24720180,505283,7863 -g1,13471:9645428,24774009 -k1,13472:31966991,24774009:21689796 -g1,13472:31966991,24774009 -) -] -) -] -r1,13500:32583029,25371696:26214,9690519,0 -) -] -) -) -g1,13472:32583029,24781872 -) -h1,13472:6630773,25397910:0,0,0 -(1,13477:6630773,26763686:25952256,513147,134348 -h1,13476:6630773,26763686:983040,0,0 -k1,13476:8613056,26763686:181354 -k1,13476:9150270,26763686:181354 -k1,13476:10738026,26763686:181353 -k1,13476:13580797,26763686:181354 -k1,13476:17972839,26763686:181354 -k1,13476:19173278,26763686:181354 -k1,13476:20447117,26763686:181354 -k1,13476:21295627,26763686:181354 -(1,13476:21295627,26763686:0,452978,122846 -r1,13500:25522723,26763686:4227096,575824,122846 -k1,13476:21295627,26763686:-4227096 -) -(1,13476:21295627,26763686:4227096,452978,122846 -k1,13476:21295627,26763686:3277 -h1,13476:25519446,26763686:0,411205,112570 -) -k1,13476:25877746,26763686:181353 -k1,13476:26927452,26763686:181354 -k1,13476:29820686,26763686:181354 -k1,13476:32583029,26763686:0 -) -(1,13477:6630773,27605174:25952256,505283,126483 -g1,13476:9894466,27605174 -g1,13476:11285140,27605174 -g1,13476:13330519,27605174 -g1,13476:14145786,27605174 -g1,13476:15364100,27605174 -g1,13476:17216802,27605174 -g1,13476:19585273,27605174 -k1,13477:32583029,27605174:11546789 -g1,13477:32583029,27605174 -) -v1,13479:6630773,28795640:0,393216,0 -(1,13489:6630773,33101513:25952256,4699089,196608 -g1,13489:6630773,33101513 -g1,13489:6630773,33101513 -g1,13489:6434165,33101513 -(1,13489:6434165,33101513:0,4699089,196608 -r1,13500:32779637,33101513:26345472,4895697,196608 -k1,13489:6434165,33101513:-26345472 -) -(1,13489:6434165,33101513:26345472,4699089,196608 -[1,13489:6630773,33101513:25952256,4502481,0 -(1,13481:6630773,29003258:25952256,404226,107478 -(1,13480:6630773,29003258:0,0,0 -g1,13480:6630773,29003258 -g1,13480:6630773,29003258 -g1,13480:6303093,29003258 -(1,13480:6303093,29003258:0,0,0 -) -g1,13480:6630773,29003258 -) -k1,13481:6630773,29003258:0 -g1,13481:10424522,29003258 -g1,13481:11056814,29003258 -g1,13481:13585980,29003258 -g1,13481:15482855,29003258 -g1,13481:16115147,29003258 -g1,13481:18012022,29003258 -g1,13481:18644314,29003258 -g1,13481:19276606,29003258 -k1,13481:19276606,29003258:0 -h1,13481:20541189,29003258:0,0,0 -k1,13481:32583029,29003258:12041840 -g1,13481:32583029,29003258 -) -(1,13482:6630773,29669436:25952256,410518,101187 -h1,13482:6630773,29669436:0,0,0 -g1,13482:6946919,29669436 -g1,13482:7263065,29669436 -g1,13482:7579211,29669436 -g1,13482:7895357,29669436 -g1,13482:8211503,29669436 -g1,13482:8527649,29669436 -g1,13482:8843795,29669436 -g1,13482:9159941,29669436 -g1,13482:9476087,29669436 -g1,13482:9792233,29669436 -g1,13482:10108379,29669436 -g1,13482:10424525,29669436 -g1,13482:10740671,29669436 -g1,13482:11056817,29669436 -g1,13482:11372963,29669436 -g1,13482:11689109,29669436 -g1,13482:12005255,29669436 -g1,13482:12321401,29669436 -g1,13482:12637547,29669436 -g1,13482:12953693,29669436 -g1,13482:13269839,29669436 -g1,13482:13585985,29669436 -g1,13482:13902131,29669436 -g1,13482:14218277,29669436 -g1,13482:14534423,29669436 -g1,13482:14850569,29669436 -g1,13482:16747443,29669436 -g1,13482:17379735,29669436 -k1,13482:17379735,29669436:0 -h1,13482:21173483,29669436:0,0,0 -k1,13482:32583029,29669436:11409546 -g1,13482:32583029,29669436 -) -(1,13483:6630773,30335614:25952256,410518,101187 -h1,13483:6630773,30335614:0,0,0 -g1,13483:6946919,30335614 -g1,13483:7263065,30335614 -g1,13483:7579211,30335614 -g1,13483:7895357,30335614 -g1,13483:8211503,30335614 -g1,13483:8527649,30335614 -g1,13483:8843795,30335614 -g1,13483:9159941,30335614 -g1,13483:9476087,30335614 -g1,13483:9792233,30335614 -g1,13483:10108379,30335614 -g1,13483:10424525,30335614 -g1,13483:10740671,30335614 -g1,13483:11056817,30335614 -g1,13483:11372963,30335614 -g1,13483:11689109,30335614 -g1,13483:12005255,30335614 -g1,13483:12321401,30335614 -g1,13483:12637547,30335614 -g1,13483:12953693,30335614 -g1,13483:13269839,30335614 -g1,13483:13585985,30335614 -g1,13483:13902131,30335614 -g1,13483:14218277,30335614 -g1,13483:14534423,30335614 -g1,13483:14850569,30335614 -g1,13483:16431298,30335614 -g1,13483:17063590,30335614 -k1,13483:17063590,30335614:0 -h1,13483:20857338,30335614:0,0,0 -k1,13483:32583029,30335614:11725691 -g1,13483:32583029,30335614 -) -(1,13484:6630773,31001792:25952256,404226,76021 -h1,13484:6630773,31001792:0,0,0 -g1,13484:6946919,31001792 -g1,13484:7263065,31001792 -g1,13484:7579211,31001792 -g1,13484:7895357,31001792 -g1,13484:8211503,31001792 -g1,13484:8527649,31001792 -g1,13484:8843795,31001792 -g1,13484:9159941,31001792 -g1,13484:9476087,31001792 -g1,13484:9792233,31001792 -g1,13484:10108379,31001792 -g1,13484:10424525,31001792 -g1,13484:10740671,31001792 -g1,13484:11056817,31001792 -g1,13484:11372963,31001792 -g1,13484:11689109,31001792 -g1,13484:12005255,31001792 -g1,13484:12321401,31001792 -g1,13484:12637547,31001792 -g1,13484:12953693,31001792 -g1,13484:13269839,31001792 -g1,13484:13585985,31001792 -g1,13484:13902131,31001792 -g1,13484:14218277,31001792 -g1,13484:14534423,31001792 -g1,13484:14850569,31001792 -g1,13484:16431298,31001792 -g1,13484:17063590,31001792 -g1,13484:18644319,31001792 -h1,13484:18960465,31001792:0,0,0 -k1,13484:32583029,31001792:13622564 -g1,13484:32583029,31001792 -) -(1,13485:6630773,31667970:25952256,404226,107478 -h1,13485:6630773,31667970:0,0,0 -g1,13485:6946919,31667970 -g1,13485:7263065,31667970 -g1,13485:12637542,31667970 -g1,13485:13269834,31667970 -g1,13485:15166709,31667970 -g1,13485:17063583,31667970 -g1,13485:17695875,31667970 -g1,13485:20541187,31667970 -h1,13485:20857333,31667970:0,0,0 -k1,13485:32583029,31667970:11725696 -g1,13485:32583029,31667970 -) -(1,13486:6630773,32334148:25952256,404226,76021 -h1,13486:6630773,32334148:0,0,0 -g1,13486:6946919,32334148 -g1,13486:7263065,32334148 -g1,13486:12953687,32334148 -h1,13486:13269833,32334148:0,0,0 -k1,13486:32583029,32334148:19313196 -g1,13486:32583029,32334148 -) -(1,13487:6630773,33000326:25952256,404226,101187 -h1,13487:6630773,33000326:0,0,0 -g1,13487:6946919,33000326 -g1,13487:7263065,33000326 -g1,13487:15482853,33000326 -g1,13487:16115145,33000326 -g1,13487:18012020,33000326 -g1,13487:19276603,33000326 -h1,13487:20541185,33000326:0,0,0 -k1,13487:32583029,33000326:12041844 -g1,13487:32583029,33000326 -) -] -) -g1,13489:32583029,33101513 -g1,13489:6630773,33101513 -g1,13489:6630773,33101513 -g1,13489:32583029,33101513 -g1,13489:32583029,33101513 -) -h1,13489:6630773,33298121:0,0,0 -(1,13492:6630773,42971611:25952256,9083666,0 -k1,13492:10523651,42971611:3892878 -h1,13491:10523651,42971611:0,0,0 -(1,13491:10523651,42971611:18166500,9083666,0 -(1,13491:10523651,42971611:18167376,9083688,0 -(1,13491:10523651,42971611:18167376,9083688,0 -(1,13491:10523651,42971611:0,9083688,0 -(1,13491:10523651,42971611:0,14208860,0 -(1,13491:10523651,42971611:28417720,14208860,0 -) -k1,13491:10523651,42971611:-28417720 -) -) -g1,13491:28691027,42971611 -) -) -) -g1,13492:28690151,42971611 -k1,13492:32583029,42971611:3892878 -) -v1,13499:6630773,44337387:0,393216,0 -] -(1,13500:32583029,45706769:0,0,0 -g1,13500:32583029,45706769 -) -) -] -(1,13500:6630773,47279633:25952256,0,0 -h1,13500:6630773,47279633:25952256,0,0 -) -] -(1,13500:4262630,4025873:0,0,0 -[1,13500:-473656,4025873:0,0,0 -(1,13500:-473656,-710413:0,0,0 -(1,13500:-473656,-710413:0,0,0 -g1,13500:-473656,-710413 -) -g1,13500:-473656,-710413 -) -] -) -] -!16359 -}255 -Input:1919:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1920:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1921:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1922:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1923:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1924:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1925:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1926:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1927:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1928:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1929:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1930:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1931:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1932:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1933:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1934:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1935:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1936:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1937:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1760 -{256 -[1,13537:4262630,47279633:28320399,43253760,0 -(1,13537:4262630,4025873:0,0,0 -[1,13537:-473656,4025873:0,0,0 -(1,13537:-473656,-710413:0,0,0 -(1,13537:-473656,-644877:0,0,0 -k1,13537:-473656,-644877:-65536 -) -(1,13537:-473656,4736287:0,0,0 -k1,13537:-473656,4736287:5209943 -) -g1,13537:-473656,-710413 -) -] -) -[1,13537:6630773,47279633:25952256,43253760,0 -[1,13537:6630773,4812305:25952256,786432,0 -(1,13537:6630773,4812305:25952256,485622,11795 -(1,13537:6630773,4812305:25952256,485622,11795 -g1,13537:3078558,4812305 -[1,13537:3078558,4812305:0,0,0 -(1,13537:3078558,2439708:0,1703936,0 -k1,13537:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,13537:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,13537:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,13537:3078558,4812305:0,0,0 -(1,13537:3078558,2439708:0,1703936,0 -g1,13537:29030814,2439708 -g1,13537:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,13537:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,13537:37855564,2439708:1179648,16384,0 -) -) -k1,13537:3078556,2439708:-34777008 -) -] -[1,13537:3078558,4812305:0,0,0 -(1,13537:3078558,49800853:0,16384,2228224 -k1,13537:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,13537:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,13537:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,13537:3078558,4812305:0,0,0 -(1,13537:3078558,49800853:0,16384,2228224 -g1,13537:29030814,49800853 -g1,13537:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,13537:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,13537:37855564,49800853:1179648,16384,0 -) -) -k1,13537:3078556,49800853:-34777008 -) -] -g1,13537:6630773,4812305 -g1,13537:6630773,4812305 -g1,13537:10347975,4812305 -k1,13537:31387651,4812305:21039676 -) -) -] -[1,13537:6630773,45706769:25952256,40108032,0 -(1,13537:6630773,45706769:25952256,40108032,0 -(1,13537:6630773,45706769:0,0,0 -g1,13537:6630773,45706769 -) -[1,13537:6630773,45706769:25952256,40108032,0 -v1,13500:6630773,6254097:0,393216,0 -(1,13500:6630773,10938108:25952256,5077227,616038 -g1,13500:6630773,10938108 -(1,13500:6630773,10938108:25952256,5077227,616038 -(1,13500:6630773,11554146:25952256,5693265,0 -[1,13500:6630773,11554146:25952256,5693265,0 -(1,13500:6630773,11527932:25952256,5640837,0 -r1,13537:6656987,11527932:26214,5640837,0 -[1,13500:6656987,11527932:25899828,5640837,0 -(1,13500:6656987,10938108:25899828,4461189,0 -[1,13500:7246811,10938108:24720180,4461189,0 -(1,13500:7246811,7564293:24720180,1087374,134348 -k1,13499:8622807,7564293:166293 -k1,13499:10086712,7564293:166292 -k1,13499:11646956,7564293:166293 -k1,13499:12832334,7564293:166293 -k1,13499:14494814,7564293:166293 -k1,13499:15277144,7564293:166292 -k1,13499:16462522,7564293:166293 -k1,13499:18599483,7564293:166293 -k1,13499:20794771,7564293:166293 -k1,13499:23472403,7564293:166292 -k1,13499:24321581,7564293:166293 -k1,13499:26728550,7564293:166293 -k1,13499:28346465,7564293:166293 -k1,13499:29172049,7564293:166292 -k1,13499:30357427,7564293:166293 -k1,13500:31966991,7564293:0 -) -(1,13500:7246811,8405781:24720180,505283,134348 -k1,13499:9252962,8405781:264859 -k1,13499:10709266,8405781:264859 -k1,13499:11993210,8405781:264859 -k1,13499:14003948,8405781:264859 -k1,13499:16563878,8405781:264859 -k1,13499:17847822,8405781:264859 -k1,13499:19395876,8405781:264859 -k1,13499:21111701,8405781:264858 -k1,13499:22568005,8405781:264859 -k1,13499:25593240,8405781:264859 -k1,13499:26316196,8405781:264859 -k1,13499:27232483,8405781:264859 -k1,13499:28516427,8405781:264859 -k1,13499:29937996,8405781:264859 -k1,13499:31966991,8405781:0 -) -(1,13500:7246811,9247269:24720180,505283,134348 -k1,13499:10321050,9247269:174271 -k1,13499:12828403,9247269:174271 -k1,13499:14396625,9247269:174271 -k1,13499:15589981,9247269:174271 -k1,13499:17260439,9247269:174271 -k1,13499:18927620,9247269:174271 -k1,13499:20272364,9247269:174271 -k1,13499:21438195,9247269:174271 -k1,13499:22993310,9247269:174271 -k1,13499:24338054,9247269:174271 -k1,13499:28177098,9247269:174271 -k1,13499:29899985,9247269:174271 -k1,13500:31966991,9247269:0 -) -(1,13500:7246811,10088757:24720180,513147,134348 -k1,13499:8573109,10088757:230536 -k1,13499:11342509,10088757:230535 -k1,13499:12189083,10088757:230536 -k1,13499:13438703,10088757:230535 -k1,13499:14946536,10088757:230536 -k1,13499:15708568,10088757:230535 -k1,13499:17904529,10088757:230536 -k1,13499:18817949,10088757:230535 -k1,13499:21883572,10088757:230536 -k1,13499:22875635,10088757:230535 -k1,13499:24557793,10088757:230536 -k1,13499:27981242,10088757:230535 -k1,13499:31284106,10088757:230536 -k1,13499:31966991,10088757:0 -) -(1,13500:7246811,10930245:24720180,505283,7863 -g1,13499:9670987,10930245 -g1,13499:10486254,10930245 -g1,13499:11704568,10930245 -g1,13499:13399984,10930245 -k1,13500:31966991,10930245:15206976 -g1,13500:31966991,10930245 -) -] -) -] -r1,13537:32583029,11527932:26214,5640837,0 -) -] -) -) -g1,13500:32583029,10938108 -) -h1,13500:6630773,11554146:0,0,0 -(1,13504:6630773,12919922:25952256,505283,134348 -h1,13503:6630773,12919922:983040,0,0 -k1,13503:8341645,12919922:257939 -k1,13503:9131080,12919922:257938 -k1,13503:12166435,12919922:257939 -k1,13503:13075802,12919922:257939 -k1,13503:14919711,12919922:257938 -k1,13503:16784593,12919922:257939 -k1,13503:18417477,12919922:257939 -k1,13503:21355838,12919922:257938 -k1,13503:23007728,12919922:257939 -k1,13503:25284176,12919922:257939 -k1,13503:29573889,12919922:257938 -k1,13503:31900144,12919922:257939 -k1,13503:32583029,12919922:0 -) -(1,13504:6630773,13761410:25952256,513147,122846 -k1,13503:9565450,13761410:244424 -k1,13503:10469166,13761410:244424 -k1,13503:14785342,13761410:244424 -k1,13503:16221211,13761410:244424 -(1,13503:16221211,13761410:0,452978,122846 -r1,13537:22206866,13761410:5985655,575824,122846 -k1,13503:16221211,13761410:-5985655 -) -(1,13503:16221211,13761410:5985655,452978,122846 -k1,13503:16221211,13761410:3277 -h1,13503:22203589,13761410:0,411205,112570 -) -k1,13503:22451290,13761410:244424 -k1,13503:25383344,13761410:244423 -k1,13503:26831009,13761410:244424 -k1,13503:28411057,13761410:244424 -k1,13503:30510150,13761410:244424 -k1,13503:31563944,13761410:244424 -k1,13503:32583029,13761410:0 -) -(1,13504:6630773,14602898:25952256,513147,134348 -k1,13503:8915712,14602898:274294 -k1,13503:11775401,14602898:274294 -k1,13503:12701123,14602898:274294 -k1,13503:13994502,14602898:274294 -(1,13503:13994502,14602898:0,414482,115847 -r1,13537:14352768,14602898:358266,530329,115847 -k1,13503:13994502,14602898:-358266 -) -(1,13503:13994502,14602898:358266,414482,115847 -k1,13503:13994502,14602898:3277 -h1,13503:14349491,14602898:0,411205,112570 -) -k1,13503:14800732,14602898:274294 -(1,13503:14800732,14602898:0,414482,115847 -r1,13537:15158998,14602898:358266,530329,115847 -k1,13503:14800732,14602898:-358266 -) -(1,13503:14800732,14602898:358266,414482,115847 -k1,13503:14800732,14602898:3277 -h1,13503:15155721,14602898:0,411205,112570 -) -k1,13503:15606962,14602898:274294 -(1,13503:15606962,14602898:0,452978,115847 -r1,13537:17020363,14602898:1413401,568825,115847 -k1,13503:15606962,14602898:-1413401 -) -(1,13503:15606962,14602898:1413401,452978,115847 -k1,13503:15606962,14602898:3277 -h1,13503:17017086,14602898:0,411205,112570 -) -k1,13503:17294657,14602898:274294 -k1,13503:18760396,14602898:274294 -(1,13503:18760396,14602898:0,414482,115847 -r1,13537:20173797,14602898:1413401,530329,115847 -k1,13503:18760396,14602898:-1413401 -) -(1,13503:18760396,14602898:1413401,414482,115847 -k1,13503:18760396,14602898:3277 -h1,13503:20170520,14602898:0,411205,112570 -) -k1,13503:20621761,14602898:274294 -k1,13503:22631448,14602898:274294 -(1,13503:22631448,14602898:0,414482,115847 -r1,13537:22989714,14602898:358266,530329,115847 -k1,13503:22631448,14602898:-358266 -) -(1,13503:22631448,14602898:358266,414482,115847 -k1,13503:22631448,14602898:3277 -h1,13503:22986437,14602898:0,411205,112570 -) -k1,13503:23264008,14602898:274294 -k1,13503:24485953,14602898:274294 -k1,13503:25779332,14602898:274294 -k1,13503:28667857,14602898:274294 -k1,13503:29601443,14602898:274294 -k1,13503:30894822,14602898:274294 -k1,13503:32583029,14602898:0 -) -(1,13504:6630773,15444386:25952256,513147,134348 -k1,13503:8003169,15444386:180951 -(1,13503:8003169,15444386:0,452978,115847 -r1,13537:9416570,15444386:1413401,568825,115847 -k1,13503:8003169,15444386:-1413401 -) -(1,13503:8003169,15444386:1413401,452978,115847 -k1,13503:8003169,15444386:3277 -h1,13503:9413293,15444386:0,411205,112570 -) -k1,13503:9597521,15444386:180951 -k1,13503:10969917,15444386:180951 -(1,13503:10969917,15444386:0,414482,115847 -r1,13537:12383318,15444386:1413401,530329,115847 -k1,13503:10969917,15444386:-1413401 -) -(1,13503:10969917,15444386:1413401,414482,115847 -k1,13503:10969917,15444386:3277 -h1,13503:12380041,15444386:0,411205,112570 -) -k1,13503:12564269,15444386:180951 -k1,13503:13692871,15444386:180951 -k1,13503:14892907,15444386:180951 -k1,13503:18018391,15444386:180951 -k1,13503:18858634,15444386:180951 -k1,13503:20058670,15444386:180951 -k1,13503:21752847,15444386:180951 -k1,13503:22593090,15444386:180951 -k1,13503:23793126,15444386:180951 -k1,13503:25142584,15444386:180951 -k1,13503:28014443,15444386:180951 -k1,13503:32227169,15444386:180951 -k1,13503:32583029,15444386:0 -) -(1,13504:6630773,16285874:25952256,505283,134348 -k1,13503:8720012,16285874:134955 -k1,13503:10205010,16285874:134956 -k1,13503:12041935,16285874:134955 -k1,13503:15767608,16285874:134956 -(1,13503:15767608,16285874:0,452978,122846 -r1,13537:19994704,16285874:4227096,575824,122846 -k1,13503:15767608,16285874:-4227096 -) -(1,13503:15767608,16285874:4227096,452978,122846 -k1,13503:15767608,16285874:3277 -h1,13503:19991427,16285874:0,411205,112570 -) -k1,13503:20129659,16285874:134955 -k1,13503:21456059,16285874:134955 -(1,13503:21456059,16285874:0,452978,122846 -r1,13537:26034867,16285874:4578808,575824,122846 -k1,13503:21456059,16285874:-4578808 -) -(1,13503:21456059,16285874:4578808,452978,122846 -k1,13503:21456059,16285874:3277 -h1,13503:26031590,16285874:0,411205,112570 -) -k1,13503:26169823,16285874:134956 -k1,13503:27890749,16285874:134955 -k1,13503:29401306,16285874:134956 -k1,13503:29892121,16285874:134955 -k1,13503:32583029,16285874:0 -) -(1,13504:6630773,17127362:25952256,513147,134348 -k1,13503:7542105,17127362:228447 -k1,13503:8126413,17127362:228448 -k1,13503:11045768,17127362:228447 -k1,13503:12668167,17127362:228448 -k1,13503:15195617,17127362:228447 -k1,13503:17110962,17127362:228448 -k1,13503:18897200,17127362:228447 -k1,13503:20117207,17127362:228447 -k1,13503:23650636,17127362:228448 -k1,13503:25392309,17127362:228447 -k1,13503:28301180,17127362:228448 -k1,13503:29923578,17127362:228447 -k1,13504:32583029,17127362:0 -) -(1,13504:6630773,17968850:25952256,513147,126483 -k1,13503:8534032,17968850:205221 -k1,13503:12247395,17968850:205221 -k1,13503:13444177,17968850:205222 -k1,13503:16878357,17968850:205221 -k1,13503:17892948,17968850:205221 -k1,13503:19117254,17968850:205221 -k1,13503:20291753,17968850:205222 -k1,13503:21569143,17968850:205221 -k1,13503:22878646,17968850:205221 -k1,13503:24369683,17968850:205221 -k1,13503:25322670,17968850:205221 -k1,13503:27041118,17968850:205222 -k1,13503:29660685,17968850:205221 -k1,13503:31563944,17968850:205221 -k1,13503:32583029,17968850:0 -) -(1,13504:6630773,18810338:25952256,513147,134348 -g1,13503:8219365,18810338 -g1,13503:11926736,18810338 -g1,13503:13117525,18810338 -g1,13503:15354924,18810338 -g1,13503:16170191,18810338 -g1,13503:16725280,18810338 -g1,13503:18313872,18810338 -g1,13503:20389397,18810338 -g1,13503:22793913,18810338 -g1,13503:23679304,18810338 -g1,13503:24649236,18810338 -g1,13503:27920793,18810338 -g1,13503:28771450,18810338 -(1,13503:28771450,18810338:0,452978,115847 -r1,13537:30184851,18810338:1413401,568825,115847 -k1,13503:28771450,18810338:-1413401 -) -(1,13503:28771450,18810338:1413401,452978,115847 -k1,13503:28771450,18810338:3277 -h1,13503:30181574,18810338:0,411205,112570 -) -k1,13504:32583029,18810338:2224508 -g1,13504:32583029,18810338 -) -(1,13505:6630773,20901598:25952256,534184,147783 -(1,13505:6630773,20901598:2450326,534184,0 -g1,13505:6630773,20901598 -g1,13505:9081099,20901598 -) -k1,13505:32583029,20901598:22079602 -g1,13505:32583029,20901598 -) -(1,13510:6630773,22136302:25952256,505283,134348 -k1,13508:9038616,22136302:231392 -k1,13508:10347421,22136302:231393 -k1,13508:12186411,22136302:231392 -k1,13508:13409364,22136302:231393 -k1,13508:15153982,22136302:231392 -k1,13508:16146902,22136302:231392 -k1,13508:20108604,22136302:231393 -k1,13508:22678976,22136302:231392 -k1,13508:24290556,22136302:231392 -k1,13508:25513509,22136302:231393 -k1,13508:28032108,22136302:231392 -k1,13508:29034204,22136302:231393 -k1,13508:31931601,22136302:231392 -k1,13508:32583029,22136302:0 -) -(1,13510:6630773,22977790:25952256,513147,126483 -k1,13508:8995279,22977790:195264 -k1,13508:10971813,22977790:195265 -k1,13508:12069508,22977790:195264 -k1,13508:14926190,22977790:195265 -k1,13508:15780746,22977790:195264 -k1,13508:16995096,22977790:195265 -k1,13508:18282845,22977790:195264 -k1,13508:19145266,22977790:195265 -(1,13508:19145266,22977790:0,452978,122846 -r1,13537:22668938,22977790:3523672,575824,122846 -k1,13508:19145266,22977790:-3523672 -) -(1,13508:19145266,22977790:3523672,452978,122846 -k1,13508:19145266,22977790:3277 -h1,13508:22665661,22977790:0,411205,112570 -) -k1,13508:22864202,22977790:195264 -k1,13508:25548524,22977790:195265 -k1,13508:27301579,22977790:195264 -k1,13508:29212577,22977790:195265 -k1,13508:29865938,22977790:195264 -k1,13508:31931601,22977790:195265 -k1,13508:32583029,22977790:0 -) -(1,13510:6630773,23819278:25952256,513147,138281 -g1,13508:7854985,23819278 -g1,13508:9073299,23819278 -g1,13508:13053955,23819278 -g1,13508:13912476,23819278 -g1,13508:18183457,23819278 -g1,13509:20127254,23819278 -g1,13509:21345568,23819278 -$1,13509:21345568,23819278 -$1,13509:21848229,23819278 -g1,13509:22260450,23819278 -g1,13509:23651124,23819278 -$1,13509:23651124,23819278 -$1,13509:24202937,23819278 -k1,13510:32583029,23819278:6594891 -g1,13510:32583029,23819278 -) -v1,13512:6630773,25009744:0,393216,0 -(1,13519:6630773,27323374:25952256,2706846,196608 -g1,13519:6630773,27323374 -g1,13519:6630773,27323374 -g1,13519:6434165,27323374 -(1,13519:6434165,27323374:0,2706846,196608 -r1,13537:32779637,27323374:26345472,2903454,196608 -k1,13519:6434165,27323374:-26345472 -) -(1,13519:6434165,27323374:26345472,2706846,196608 -[1,13519:6630773,27323374:25952256,2510238,0 -(1,13514:6630773,25217362:25952256,404226,107478 -(1,13513:6630773,25217362:0,0,0 -g1,13513:6630773,25217362 -g1,13513:6630773,25217362 -g1,13513:6303093,25217362 -(1,13513:6303093,25217362:0,0,0 -) -g1,13513:6630773,25217362 -) -k1,13514:6630773,25217362:0 -g1,13514:10424522,25217362 -g1,13514:11056814,25217362 -k1,13514:11056814,25217362:0 -h1,13514:13269834,25217362:0,0,0 -k1,13514:32583030,25217362:19313196 -g1,13514:32583030,25217362 -) -(1,13515:6630773,25883540:25952256,410518,107478 -h1,13515:6630773,25883540:0,0,0 -g1,13515:6946919,25883540 -g1,13515:7263065,25883540 -g1,13515:7579211,25883540 -g1,13515:7895357,25883540 -g1,13515:8211503,25883540 -g1,13515:8527649,25883540 -g1,13515:8843795,25883540 -g1,13515:10740670,25883540 -g1,13515:11372962,25883540 -g1,13515:13269837,25883540 -g1,13515:13902129,25883540 -g1,13515:14534421,25883540 -g1,13515:16115150,25883540 -g1,13515:18012024,25883540 -g1,13515:18644316,25883540 -g1,13515:23070356,25883540 -h1,13515:23386502,25883540:0,0,0 -k1,13515:32583029,25883540:9196527 -g1,13515:32583029,25883540 -) -(1,13516:6630773,26549718:25952256,404226,107478 -h1,13516:6630773,26549718:0,0,0 -g1,13516:6946919,26549718 -g1,13516:7263065,26549718 -g1,13516:11372959,26549718 -h1,13516:11689105,26549718:0,0,0 -k1,13516:32583029,26549718:20893924 -g1,13516:32583029,26549718 -) -(1,13517:6630773,27215896:25952256,404226,107478 -h1,13517:6630773,27215896:0,0,0 -g1,13517:6946919,27215896 -g1,13517:7263065,27215896 -k1,13517:7263065,27215896:0 -h1,13517:10424521,27215896:0,0,0 -k1,13517:32583029,27215896:22158508 -g1,13517:32583029,27215896 -) -] -) -g1,13519:32583029,27323374 -g1,13519:6630773,27323374 -g1,13519:6630773,27323374 -g1,13519:32583029,27323374 -g1,13519:32583029,27323374 -) -h1,13519:6630773,27519982:0,0,0 -(1,13522:6630773,37193472:25952256,9083666,0 -k1,13522:10523651,37193472:3892878 -h1,13521:10523651,37193472:0,0,0 -(1,13521:10523651,37193472:18166500,9083666,0 -(1,13521:10523651,37193472:18167376,9083688,0 -(1,13521:10523651,37193472:18167376,9083688,0 -(1,13521:10523651,37193472:0,9083688,0 -(1,13521:10523651,37193472:0,14208860,0 -(1,13521:10523651,37193472:28417720,14208860,0 -) -k1,13521:10523651,37193472:-28417720 -) -) -g1,13521:28691027,37193472 -) -) -) -g1,13522:28690151,37193472 -k1,13522:32583029,37193472:3892878 -) -v1,13529:6630773,38559248:0,393216,0 -(1,13530:6630773,44209394:25952256,6043362,616038 -g1,13530:6630773,44209394 -(1,13530:6630773,44209394:25952256,6043362,616038 -(1,13530:6630773,44825432:25952256,6659400,0 -[1,13530:6630773,44825432:25952256,6659400,0 -(1,13530:6630773,44799218:25952256,6606972,0 -r1,13537:6656987,44799218:26214,6606972,0 -[1,13530:6656987,44799218:25899828,6606972,0 -(1,13530:6656987,44209394:25899828,5427324,0 -[1,13530:7246811,44209394:24720180,5427324,0 -(1,13530:7246811,39867606:24720180,1085536,298548 -(1,13529:7246811,39867606:0,1085536,298548 -r1,13537:8753226,39867606:1506415,1384084,298548 -k1,13529:7246811,39867606:-1506415 -) -(1,13529:7246811,39867606:1506415,1085536,298548 -) -k1,13529:8887734,39867606:134508 -k1,13529:10256284,39867606:134507 -k1,13529:11998390,39867606:134508 -k1,13529:13124457,39867606:134507 -k1,13529:14860665,39867606:134508 -k1,13529:16972393,39867606:134507 -k1,13529:18804939,39867606:134508 -k1,13529:19958532,39867606:134508 -k1,13529:21587260,39867606:134507 -k1,13529:24054194,39867606:134508 -k1,13529:24847993,39867606:134507 -k1,13529:29054253,39867606:134508 -k1,13529:29720257,39867606:134507 -k1,13529:30921036,39867606:134508 -k1,13529:31966991,39867606:0 -) -(1,13530:7246811,40709094:24720180,505283,134348 -k1,13529:9015508,40709094:189935 -k1,13529:12307263,40709094:189936 -k1,13529:13904911,40709094:189935 -k1,13529:16538028,40709094:189935 -k1,13529:17773918,40709094:189935 -k1,13529:20834986,40709094:189936 -k1,13529:22216366,40709094:189935 -k1,13529:23425386,40709094:189935 -k1,13529:24992888,40709094:189935 -k1,13529:27897325,40709094:189936 -k1,13529:29424194,40709094:189935 -k1,13529:31966991,40709094:0 -) -(1,13530:7246811,41550582:24720180,505283,134348 -k1,13529:9281194,41550582:251148 -k1,13529:11901469,41550582:251148 -k1,13529:12684115,41550582:251149 -k1,13529:16139974,41550582:251148 -k1,13529:18749763,41550582:251148 -k1,13529:20019996,41550582:251148 -k1,13529:23292355,41550582:251149 -k1,13529:28772621,41550582:251148 -k1,13529:29785297,41550582:251148 -k1,13529:31966991,41550582:0 -) -(1,13530:7246811,42392070:24720180,505283,115847 -k1,13529:8489810,42392070:223914 -(1,13529:8489810,42392070:0,452978,115847 -r1,13537:10254923,42392070:1765113,568825,115847 -k1,13529:8489810,42392070:-1765113 -) -(1,13529:8489810,42392070:1765113,452978,115847 -k1,13529:8489810,42392070:3277 -h1,13529:10251646,42392070:0,411205,112570 -) -k1,13529:10478837,42392070:223914 -k1,13529:13547014,42392070:223914 -k1,13529:14422355,42392070:223913 -k1,13529:15002129,42392070:223914 -k1,13529:17983798,42392070:223914 -k1,13529:19888055,42392070:223914 -k1,13529:22464056,42392070:223914 -k1,13529:24130417,42392070:223914 -k1,13529:25684711,42392070:223913 -k1,13529:27012907,42392070:223914 -k1,13529:28952554,42392070:223914 -k1,13529:30195553,42392070:223914 -k1,13530:31966991,42392070:0 -) -(1,13530:7246811,43233558:24720180,513147,134348 -k1,13529:8696412,43233558:182135 -k1,13529:9494586,43233558:182136 -k1,13529:12009147,43233558:182135 -k1,13529:14061681,43233558:182136 -k1,13529:14895244,43233558:182135 -k1,13529:18578968,43233558:182135 -k1,13529:20544339,43233558:182136 -k1,13529:21745559,43233558:182135 -k1,13529:24413476,43233558:182136 -k1,13529:25254903,43233558:182135 -k1,13529:29508791,43233558:182136 -k1,13529:30222423,43233558:182135 -k1,13529:31966991,43233558:0 -) -(1,13530:7246811,44075046:24720180,513147,134348 -g1,13529:10261467,44075046 -g1,13529:12793122,44075046 -g1,13529:14599949,44075046 -g1,13529:16979561,44075046 -g1,13529:17926556,44075046 -k1,13530:31966991,44075046:10853419 -g1,13530:31966991,44075046 -) -] -) -] -r1,13537:32583029,44799218:26214,6606972,0 -) -] -) -) -g1,13530:32583029,44209394 -) -h1,13530:6630773,44825432:0,0,0 -] -(1,13537:32583029,45706769:0,0,0 -g1,13537:32583029,45706769 -) -) -] -(1,13537:6630773,47279633:25952256,0,0 -h1,13537:6630773,47279633:25952256,0,0 -) -] -(1,13537:4262630,4025873:0,0,0 -[1,13537:-473656,4025873:0,0,0 -(1,13537:-473656,-710413:0,0,0 -(1,13537:-473656,-710413:0,0,0 -g1,13537:-473656,-710413 -) -g1,13537:-473656,-710413 -) -] -) -] -!21602 -}256 -Input:1938:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1939:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1940:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1941:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1942:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1943:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1944:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1945:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1946:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1947:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1948:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1949:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1950:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1951:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1952:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1953:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1954:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1576 -{257 -[1,13577:4262630,47279633:28320399,43253760,0 -(1,13577:4262630,4025873:0,0,0 -[1,13577:-473656,4025873:0,0,0 -(1,13577:-473656,-710413:0,0,0 -(1,13577:-473656,-644877:0,0,0 -k1,13577:-473656,-644877:-65536 -) -(1,13577:-473656,4736287:0,0,0 -k1,13577:-473656,4736287:5209943 -) -g1,13577:-473656,-710413 -) -] -) -[1,13577:6630773,47279633:25952256,43253760,0 -[1,13577:6630773,4812305:25952256,786432,0 -(1,13577:6630773,4812305:25952256,513147,134348 -(1,13577:6630773,4812305:25952256,513147,134348 -g1,13577:3078558,4812305 -[1,13577:3078558,4812305:0,0,0 -(1,13577:3078558,2439708:0,1703936,0 -k1,13577:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,13577:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,13577:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,13577:3078558,4812305:0,0,0 -(1,13577:3078558,2439708:0,1703936,0 -g1,13577:29030814,2439708 -g1,13577:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,13577:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,13577:37855564,2439708:1179648,16384,0 -) -) -k1,13577:3078556,2439708:-34777008 -) -] -[1,13577:3078558,4812305:0,0,0 -(1,13577:3078558,49800853:0,16384,2228224 -k1,13577:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,13577:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,13577:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,13577:3078558,4812305:0,0,0 -(1,13577:3078558,49800853:0,16384,2228224 -g1,13577:29030814,49800853 -g1,13577:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,13577:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,13577:37855564,49800853:1179648,16384,0 -) -) -k1,13577:3078556,49800853:-34777008 -) -] -g1,13577:6630773,4812305 -k1,13577:25712890,4812305:17886740 -g1,13577:29057847,4812305 -g1,13577:29873114,4812305 -) -) -] -[1,13577:6630773,45706769:25952256,40108032,0 -(1,13577:6630773,45706769:25952256,40108032,0 -(1,13577:6630773,45706769:0,0,0 -g1,13577:6630773,45706769 -) -[1,13577:6630773,45706769:25952256,40108032,0 -(1,13533:6630773,6254097:25952256,555811,12975 -(1,13533:6630773,6254097:2450326,534184,12975 -g1,13533:6630773,6254097 -g1,13533:9081099,6254097 -) -g1,13533:10837923,6254097 -g1,13533:12405151,6254097 -k1,13533:32583029,6254097:18638044 -g1,13533:32583029,6254097 -) -(1,13537:6630773,7488801:25952256,513147,126483 -k1,13536:7927114,7488801:254319 -k1,13536:9349940,7488801:254319 -k1,13536:11211857,7488801:254319 -k1,13536:12334528,7488801:254319 -k1,13536:13681331,7488801:254318 -(1,13536:13681331,7488801:0,452978,122846 -r1,13577:17556715,7488801:3875384,575824,122846 -k1,13536:13681331,7488801:-3875384 -) -(1,13536:13681331,7488801:3875384,452978,122846 -k1,13536:13681331,7488801:3277 -h1,13536:17553438,7488801:0,411205,112570 -) -k1,13536:17984704,7488801:254319 -k1,13536:19435710,7488801:254319 -(1,13536:19435710,7488801:0,452978,115847 -r1,13577:20849111,7488801:1413401,568825,115847 -k1,13536:19435710,7488801:-1413401 -) -(1,13536:19435710,7488801:1413401,452978,115847 -k1,13536:19435710,7488801:3277 -h1,13536:20845834,7488801:0,411205,112570 -) -k1,13536:21103430,7488801:254319 -k1,13536:22017041,7488801:254319 -k1,13536:22627220,7488801:254319 -k1,13536:24050046,7488801:254319 -k1,13536:24835862,7488801:254319 -k1,13536:25878578,7488801:254318 -k1,13536:29328432,7488801:254319 -k1,13536:30774196,7488801:254319 -k1,13536:31714677,7488801:254319 -k1,13536:32583029,7488801:0 -) -(1,13537:6630773,8330289:25952256,513147,126483 -k1,13536:8092287,8330289:270069 -(1,13536:8092287,8330289:0,452978,115847 -r1,13577:9857400,8330289:1765113,568825,115847 -k1,13536:8092287,8330289:-1765113 -) -(1,13536:8092287,8330289:1765113,452978,115847 -k1,13536:8092287,8330289:3277 -h1,13536:9854123,8330289:0,411205,112570 -) -k1,13536:10127469,8330289:270069 -k1,13536:11345188,8330289:270068 -k1,13536:13807436,8330289:270069 -k1,13536:14945857,8330289:270069 -k1,13536:16691141,8330289:270069 -(1,13536:16691141,8330289:0,452978,115847 -r1,13577:19511390,8330289:2820249,568825,115847 -k1,13536:16691141,8330289:-2820249 -) -(1,13536:16691141,8330289:2820249,452978,115847 -k1,13536:16691141,8330289:3277 -h1,13536:19508113,8330289:0,411205,112570 -) -k1,13536:19781459,8330289:270069 -k1,13536:20999178,8330289:270068 -k1,13536:22941726,8330289:270069 -k1,13536:23839630,8330289:270069 -k1,13536:24465559,8330289:270069 -k1,13536:25904134,8330289:270068 -k1,13536:27625170,8330289:270069 -k1,13536:31966991,8330289:270069 -k1,13536:32583029,8330289:0 -) -(1,13537:6630773,9171777:25952256,513147,134348 -k1,13536:10226229,9171777:269504 -k1,13536:12029931,9171777:269504 -k1,13536:12958727,9171777:269504 -k1,13536:14247317,9171777:269505 -k1,13536:15906184,9171777:269504 -k1,13536:18225654,9171777:269504 -k1,13536:19178043,9171777:269504 -k1,13536:20466632,9171777:269504 -k1,13536:22816249,9171777:269504 -k1,13536:27709319,9171777:269505 -k1,13536:28630251,9171777:269504 -k1,13536:29255615,9171777:269504 -k1,13536:31591469,9171777:269504 -k1,13536:32583029,9171777:0 -) -(1,13537:6630773,10013265:25952256,513147,134348 -k1,13536:8803466,10013265:167291 -k1,13536:9732285,10013265:167291 -k1,13536:12378147,10013265:167290 -k1,13536:14217917,10013265:167291 -k1,13536:15338757,10013265:167291 -k1,13536:16598533,10013265:167291 -k1,13536:17121684,10013265:167291 -k1,13536:20051317,10013265:167290 -k1,13536:21607971,10013265:167291 -k1,13536:22709805,10013265:167291 -k1,13536:25635506,10013265:167291 -k1,13536:26418835,10013265:167291 -k1,13536:27174638,10013265:167290 -(1,13536:27174638,10013265:0,414482,122846 -r1,13577:29291463,10013265:2116825,537328,122846 -k1,13536:27174638,10013265:-2116825 -) -(1,13536:27174638,10013265:2116825,414482,122846 -k1,13536:27174638,10013265:3277 -h1,13536:29288186,10013265:0,411205,112570 -) -k1,13536:29632424,10013265:167291 -k1,13536:31193666,10013265:167291 -k1,13536:32583029,10013265:0 -) -(1,13537:6630773,10854753:25952256,513147,134348 -g1,13536:7639372,10854753 -g1,13536:8857686,10854753 -g1,13536:11306766,10854753 -g1,13536:12165287,10854753 -g1,13536:13499600,10854753 -g1,13536:15873969,10854753 -g1,13536:17817111,10854753 -g1,13536:19066227,10854753 -g1,13536:20284541,10854753 -g1,13536:21871823,10854753 -g1,13536:23569205,10854753 -g1,13536:24716085,10854753 -(1,13536:24716085,10854753:0,414482,122846 -r1,13577:26832910,10854753:2116825,537328,122846 -k1,13536:24716085,10854753:-2116825 -) -(1,13536:24716085,10854753:2116825,414482,122846 -k1,13536:24716085,10854753:3277 -h1,13536:26829633,10854753:0,411205,112570 -) -g1,13536:27032139,10854753 -g1,13536:28179019,10854753 -k1,13537:32583029,10854753:2112871 -g1,13537:32583029,10854753 -) -v1,13540:6630773,11879751:0,393216,0 -(1,13546:6630773,13527203:25952256,2040668,196608 -g1,13546:6630773,13527203 -g1,13546:6630773,13527203 -g1,13546:6434165,13527203 -(1,13546:6434165,13527203:0,2040668,196608 -r1,13577:32779637,13527203:26345472,2237276,196608 -k1,13546:6434165,13527203:-26345472 -) -(1,13546:6434165,13527203:26345472,2040668,196608 -[1,13546:6630773,13527203:25952256,1844060,0 -(1,13542:6630773,12087369:25952256,404226,107478 -(1,13541:6630773,12087369:0,0,0 -g1,13541:6630773,12087369 -g1,13541:6630773,12087369 -g1,13541:6303093,12087369 -(1,13541:6303093,12087369:0,0,0 -) -g1,13541:6630773,12087369 -) -k1,13542:6630773,12087369:0 -g1,13542:10424522,12087369 -g1,13542:11056814,12087369 -k1,13542:11056814,12087369:0 -h1,13542:13269834,12087369:0,0,0 -k1,13542:32583030,12087369:19313196 -g1,13542:32583030,12087369 -) -(1,13543:6630773,12753547:25952256,410518,107478 -h1,13543:6630773,12753547:0,0,0 -g1,13543:6946919,12753547 -g1,13543:7263065,12753547 -g1,13543:7579211,12753547 -g1,13543:7895357,12753547 -g1,13543:8211503,12753547 -g1,13543:8527649,12753547 -g1,13543:8843795,12753547 -g1,13543:10740670,12753547 -g1,13543:11372962,12753547 -g1,13543:12953691,12753547 -g1,13543:13585983,12753547 -g1,13543:14218275,12753547 -g1,13543:18960461,12753547 -g1,13543:21805772,12753547 -g1,13543:22438064,12753547 -g1,13543:24651084,12753547 -h1,13543:24967230,12753547:0,0,0 -k1,13543:32583029,12753547:7615799 -g1,13543:32583029,12753547 -) -(1,13544:6630773,13419725:25952256,404226,107478 -h1,13544:6630773,13419725:0,0,0 -g1,13544:6946919,13419725 -g1,13544:7263065,13419725 -k1,13544:7263065,13419725:0 -h1,13544:10740667,13419725:0,0,0 -k1,13544:32583029,13419725:21842362 -g1,13544:32583029,13419725 -) -] -) -g1,13546:32583029,13527203 -g1,13546:6630773,13527203 -g1,13546:6630773,13527203 -g1,13546:32583029,13527203 -g1,13546:32583029,13527203 -) -h1,13546:6630773,13723811:0,0,0 -(1,13549:6630773,23231833:25952256,9083666,0 -k1,13549:10523651,23231833:3892878 -h1,13548:10523651,23231833:0,0,0 -(1,13548:10523651,23231833:18166500,9083666,0 -(1,13548:10523651,23231833:18167376,9083688,0 -(1,13548:10523651,23231833:18167376,9083688,0 -(1,13548:10523651,23231833:0,9083688,0 -(1,13548:10523651,23231833:0,14208860,0 -(1,13548:10523651,23231833:28417720,14208860,0 -) -k1,13548:10523651,23231833:-28417720 -) -) -g1,13548:28691027,23231833 -) -) -) -g1,13549:28690151,23231833 -k1,13549:32583029,23231833:3892878 -) -(1,13558:6630773,24073321:25952256,513147,134348 -h1,13557:6630773,24073321:983040,0,0 -k1,13557:10173376,24073321:220583 -k1,13557:11053252,24073321:220584 -k1,13557:13850055,24073321:220583 -k1,13557:14426498,24073321:220583 -k1,13557:15815588,24073321:220583 -k1,13557:18263741,24073321:220584 -k1,13557:19503409,24073321:220583 -k1,13557:23049944,24073321:220583 -k1,13557:27515949,24073321:220583 -k1,13557:28604885,24073321:220584 -k1,13557:30162402,24073321:220583 -k1,13557:31931601,24073321:220583 -k1,13557:32583029,24073321:0 -) -(1,13558:6630773,24914809:25952256,513147,134348 -k1,13557:8384898,24914809:168154 -k1,13557:8908913,24914809:168155 -k1,13557:13292998,24914809:168154 -k1,13557:17321224,24914809:168155 -k1,13557:20180286,24914809:168154 -k1,13557:21296092,24914809:168155 -k1,13557:22915868,24914809:168154 -k1,13557:26825473,24914809:168155 -k1,13557:27676512,24914809:168154 -k1,13557:29048563,24914809:168155 -k1,13557:29832755,24914809:168154 -k1,13557:31019995,24914809:168155 -k1,13557:32583029,24914809:0 -) -(1,13558:6630773,25756297:25952256,505283,126483 -k1,13557:7478010,25756297:219402 -k1,13557:8900652,25756297:219401 -k1,13557:10660805,25756297:219402 -k1,13557:11748559,25756297:219402 -k1,13557:13060445,25756297:219401 -(1,13557:13060445,25756297:0,452978,122846 -r1,13577:17990965,25756297:4930520,575824,122846 -k1,13557:13060445,25756297:-4930520 -) -(1,13557:13060445,25756297:4930520,452978,122846 -k1,13557:13060445,25756297:3277 -h1,13557:17987688,25756297:0,411205,112570 -) -k1,13557:18210367,25756297:219402 -k1,13557:20315240,25756297:219402 -k1,13557:22912943,25756297:219401 -(1,13557:22912943,25756297:0,414482,115847 -r1,13577:23271209,25756297:358266,530329,115847 -k1,13557:22912943,25756297:-358266 -) -(1,13557:22912943,25756297:358266,414482,115847 -k1,13557:22912943,25756297:3277 -h1,13557:23267932,25756297:0,411205,112570 -) -k1,13557:23664281,25756297:219402 -(1,13557:23664281,25756297:0,452978,115847 -r1,13577:25077682,25756297:1413401,568825,115847 -k1,13557:23664281,25756297:-1413401 -) -(1,13557:23664281,25756297:1413401,452978,115847 -k1,13557:23664281,25756297:3277 -h1,13557:25074405,25756297:0,411205,112570 -) -k1,13557:25470753,25756297:219401 -(1,13557:25470753,25756297:0,414482,115847 -r1,13577:25829019,25756297:358266,530329,115847 -k1,13557:25470753,25756297:-358266 -) -(1,13557:25470753,25756297:358266,414482,115847 -k1,13557:25470753,25756297:3277 -h1,13557:25825742,25756297:0,411205,112570 -) -k1,13557:26048421,25756297:219402 -k1,13557:27459268,25756297:219402 -(1,13557:27459268,25756297:0,452978,115847 -r1,13577:28872669,25756297:1413401,568825,115847 -k1,13557:27459268,25756297:-1413401 -) -(1,13557:27459268,25756297:1413401,452978,115847 -k1,13557:27459268,25756297:3277 -h1,13557:28869392,25756297:0,411205,112570 -) -k1,13557:29092070,25756297:219401 -k1,13557:29997634,25756297:219402 -k1,13557:32583029,25756297:0 -) -(1,13558:6630773,26597785:25952256,505283,126483 -k1,13557:10130327,26597785:151320 -(1,13557:10130327,26597785:0,452978,122846 -r1,13577:14357423,26597785:4227096,575824,122846 -k1,13557:10130327,26597785:-4227096 -) -(1,13557:10130327,26597785:4227096,452978,122846 -k1,13557:10130327,26597785:3277 -h1,13557:14354146,26597785:0,411205,112570 -) -k1,13557:14508743,26597785:151320 -k1,13557:16576336,26597785:151320 -k1,13557:18889689,26597785:151320 -k1,13557:20713488,26597785:151320 -k1,13557:22056253,26597785:151320 -k1,13557:23226658,26597785:151320 -k1,13557:26608903,26597785:151320 -k1,13557:29048085,26597785:151320 -k1,13557:31391584,26597785:151320 -k1,13557:32583029,26597785:0 -) -(1,13558:6630773,27439273:25952256,505283,134348 -k1,13557:8852968,27439273:194511 -k1,13557:10151760,27439273:194510 -k1,13557:11094037,27439273:194511 -k1,13557:14549618,27439273:194510 -k1,13557:17302655,27439273:194511 -k1,13557:20724159,27439273:194511 -k1,13557:24133865,27439273:194510 -k1,13557:26202706,27439273:194511 -k1,13557:27569655,27439273:194510 -k1,13557:31204151,27439273:194511 -k1,13558:32583029,27439273:0 -) -(1,13558:6630773,28280761:25952256,513147,134348 -k1,13557:8211450,28280761:220150 -k1,13557:10279716,28280761:220151 -k1,13557:12368953,28280761:220150 -k1,13557:13201866,28280761:220151 -k1,13557:14930655,28280761:220150 -k1,13557:16837703,28280761:220151 -k1,13557:18874511,28280761:220150 -k1,13557:22534647,28280761:220151 -k1,13557:24732018,28280761:220150 -k1,13557:25899820,28280761:220151 -k1,13557:28696190,28280761:220150 -k1,13557:30415149,28280761:220151 -k1,13557:31318184,28280761:220150 -k1,13558:32583029,28280761:0 -) -(1,13558:6630773,29122249:25952256,513147,134348 -k1,13557:8794186,29122249:194056 -k1,13557:9979801,29122249:194055 -(1,13557:9979801,29122249:0,452978,122846 -r1,13577:13855185,29122249:3875384,575824,122846 -k1,13557:9979801,29122249:-3875384 -) -(1,13557:9979801,29122249:3875384,452978,122846 -k1,13557:9979801,29122249:3277 -h1,13557:13851908,29122249:0,411205,112570 -) -k1,13557:14222911,29122249:194056 -k1,13557:16302438,29122249:194056 -k1,13557:17027990,29122249:194055 -k1,13557:19424056,29122249:194056 -k1,13557:20269540,29122249:194056 -(1,13557:20269540,29122249:0,452978,122846 -r1,13577:24144924,29122249:3875384,575824,122846 -k1,13557:20269540,29122249:-3875384 -) -(1,13557:20269540,29122249:3875384,452978,122846 -k1,13557:20269540,29122249:3277 -h1,13557:24141647,29122249:0,411205,112570 -) -k1,13557:24512649,29122249:194055 -k1,13557:25778874,29122249:194056 -k1,13557:28300113,29122249:194056 -k1,13557:29153460,29122249:194055 -k1,13557:31575085,29122249:194056 -k1,13558:32583029,29122249:0 -) -(1,13558:6630773,29963737:25952256,505283,134348 -k1,13557:10151182,29963737:243609 -k1,13557:13511683,29963737:243609 -k1,13557:14406720,29963737:243609 -k1,13557:15669413,29963737:243608 -k1,13557:17923667,29963737:243609 -k1,13557:20752671,29963737:243609 -k1,13557:21647708,29963737:243609 -(1,13557:21647708,29963737:0,414482,115847 -r1,13577:22005974,29963737:358266,530329,115847 -k1,13557:21647708,29963737:-358266 -) -(1,13557:21647708,29963737:358266,414482,115847 -k1,13557:21647708,29963737:3277 -h1,13557:22002697,29963737:0,411205,112570 -) -k1,13557:22423253,29963737:243609 -k1,13557:23124959,29963737:243609 -k1,13557:24936188,29963737:243608 -k1,13557:26818852,29963737:243609 -k1,13557:30179353,29963737:243609 -k1,13557:31074390,29963737:243609 -k1,13557:32583029,29963737:0 -) -(1,13558:6630773,30805225:25952256,505283,134348 -k1,13557:9968099,30805225:181112 -k1,13557:10765249,30805225:181112 -(1,13557:10765249,30805225:0,452978,115847 -r1,13577:12178650,30805225:1413401,568825,115847 -k1,13557:10765249,30805225:-1413401 -) -(1,13557:10765249,30805225:1413401,452978,115847 -k1,13557:10765249,30805225:3277 -h1,13557:12175373,30805225:0,411205,112570 -) -k1,13557:12533433,30805225:181113 -k1,13557:13905990,30805225:181112 -(1,13557:13905990,30805225:0,452978,122846 -r1,13577:18133086,30805225:4227096,575824,122846 -k1,13557:13905990,30805225:-4227096 -) -(1,13557:13905990,30805225:4227096,452978,122846 -k1,13557:13905990,30805225:3277 -h1,13557:18129809,30805225:0,411205,112570 -) -k1,13557:18487868,30805225:181112 -k1,13557:20554451,30805225:181112 -k1,13557:21267060,30805225:181112 -k1,13557:23650182,30805225:181112 -k1,13557:24482723,30805225:181113 -(1,13557:24482723,30805225:0,452978,122846 -r1,13577:29413243,30805225:4930520,575824,122846 -k1,13557:24482723,30805225:-4930520 -) -(1,13557:24482723,30805225:4930520,452978,122846 -k1,13557:24482723,30805225:3277 -h1,13557:29409966,30805225:0,411205,112570 -) -k1,13557:29594355,30805225:181112 -k1,13557:30847636,30805225:181112 -k1,13557:32583029,30805225:0 -) -(1,13558:6630773,31646713:25952256,513147,134348 -k1,13557:7260119,31646713:273486 -k1,13557:9198219,31646713:273486 -k1,13557:14793228,31646713:273486 -k1,13557:16921383,31646713:273486 -k1,13557:18004239,31646713:273486 -(1,13557:18004239,31646713:0,414482,115847 -r1,13577:18362505,31646713:358266,530329,115847 -k1,13557:18004239,31646713:-358266 -) -(1,13557:18004239,31646713:358266,414482,115847 -k1,13557:18004239,31646713:3277 -h1,13557:18359228,31646713:0,411205,112570 -) -k1,13557:18809661,31646713:273486 -(1,13557:18809661,31646713:0,414482,115847 -r1,13577:19167927,31646713:358266,530329,115847 -k1,13557:18809661,31646713:-358266 -) -(1,13557:18809661,31646713:358266,414482,115847 -k1,13557:18809661,31646713:3277 -h1,13557:19164650,31646713:0,411205,112570 -) -k1,13557:19441412,31646713:273485 -k1,13557:20662549,31646713:273486 -k1,13557:22984035,31646713:273486 -k1,13557:24448966,31646713:273486 -(1,13557:24448966,31646713:0,452978,122846 -r1,13577:26214079,31646713:1765113,575824,122846 -k1,13557:24448966,31646713:-1765113 -) -(1,13557:24448966,31646713:1765113,452978,122846 -k1,13557:24448966,31646713:3277 -h1,13557:26210802,31646713:0,411205,112570 -) -k1,13557:26487565,31646713:273486 -k1,13557:27952496,31646713:273486 -(1,13557:27952496,31646713:0,452978,115847 -r1,13577:30069321,31646713:2116825,568825,115847 -k1,13557:27952496,31646713:-2116825 -) -(1,13557:27952496,31646713:2116825,452978,115847 -k1,13557:27952496,31646713:3277 -h1,13557:30066044,31646713:0,411205,112570 -) -k1,13557:30342807,31646713:273486 -k1,13557:31563944,31646713:273486 -k1,13557:32583029,31646713:0 -) -(1,13558:6630773,32488201:25952256,505283,134348 -k1,13557:9740196,32488201:244844 -k1,13557:12261106,32488201:244845 -(1,13557:12261106,32488201:0,452978,122846 -r1,13577:16136490,32488201:3875384,575824,122846 -k1,13557:12261106,32488201:-3875384 -) -(1,13557:12261106,32488201:3875384,452978,122846 -k1,13557:12261106,32488201:3277 -h1,13557:16133213,32488201:0,411205,112570 -) -k1,13557:16381334,32488201:244844 -k1,13557:18233776,32488201:244844 -k1,13557:19854221,32488201:244844 -k1,13557:22444600,32488201:244845 -k1,13557:23880889,32488201:244844 -k1,13557:27441855,32488201:244844 -k1,13557:29185507,32488201:244844 -k1,13557:30081780,32488201:244845 -k1,13557:31563944,32488201:244844 -k1,13557:32583029,32488201:0 -) -(1,13558:6630773,33329689:25952256,505283,134348 -g1,13557:11075424,33329689 -g1,13557:13846941,33329689 -g1,13557:14402030,33329689 -g1,13557:17145367,33329689 -k1,13558:32583029,33329689:14095485 -g1,13558:32583029,33329689 -) -v1,13560:6630773,34354687:0,393216,0 -(1,13566:6630773,36002139:25952256,2040668,196608 -g1,13566:6630773,36002139 -g1,13566:6630773,36002139 -g1,13566:6434165,36002139 -(1,13566:6434165,36002139:0,2040668,196608 -r1,13577:32779637,36002139:26345472,2237276,196608 -k1,13566:6434165,36002139:-26345472 -) -(1,13566:6434165,36002139:26345472,2040668,196608 -[1,13566:6630773,36002139:25952256,1844060,0 -(1,13562:6630773,34562305:25952256,404226,107478 -(1,13561:6630773,34562305:0,0,0 -g1,13561:6630773,34562305 -g1,13561:6630773,34562305 -g1,13561:6303093,34562305 -(1,13561:6303093,34562305:0,0,0 -) -g1,13561:6630773,34562305 -) -k1,13562:6630773,34562305:0 -g1,13562:10424522,34562305 -g1,13562:11056814,34562305 -k1,13562:11056814,34562305:0 -h1,13562:13269834,34562305:0,0,0 -k1,13562:32583030,34562305:19313196 -g1,13562:32583030,34562305 -) -(1,13563:6630773,35228483:25952256,410518,107478 -h1,13563:6630773,35228483:0,0,0 -g1,13563:6946919,35228483 -g1,13563:7263065,35228483 -g1,13563:7579211,35228483 -g1,13563:7895357,35228483 -g1,13563:8211503,35228483 -g1,13563:8527649,35228483 -g1,13563:8843795,35228483 -g1,13563:10740670,35228483 -g1,13563:11372962,35228483 -g1,13563:12953691,35228483 -g1,13563:13585983,35228483 -g1,13563:14218275,35228483 -g1,13563:18960461,35228483 -g1,13563:21805772,35228483 -g1,13563:22438064,35228483 -g1,13563:24651084,35228483 -h1,13563:24967230,35228483:0,0,0 -k1,13563:32583029,35228483:7615799 -g1,13563:32583029,35228483 -) -(1,13564:6630773,35894661:25952256,404226,107478 -h1,13564:6630773,35894661:0,0,0 -g1,13564:6946919,35894661 -g1,13564:7263065,35894661 -k1,13564:7263065,35894661:0 -h1,13564:10740667,35894661:0,0,0 -k1,13564:32583029,35894661:21842362 -g1,13564:32583029,35894661 -) -] -) -g1,13566:32583029,36002139 -g1,13566:6630773,36002139 -g1,13566:6630773,36002139 -g1,13566:32583029,36002139 -g1,13566:32583029,36002139 -) -h1,13566:6630773,36198747:0,0,0 -(1,13569:6630773,45706769:25952256,9083666,0 -k1,13569:10523651,45706769:3892878 -h1,13568:10523651,45706769:0,0,0 -(1,13568:10523651,45706769:18166500,9083666,0 -(1,13568:10523651,45706769:18167376,9083688,0 -(1,13568:10523651,45706769:18167376,9083688,0 -(1,13568:10523651,45706769:0,9083688,0 -(1,13568:10523651,45706769:0,14208860,0 -(1,13568:10523651,45706769:28417720,14208860,0 -) -k1,13568:10523651,45706769:-28417720 -) -) -g1,13568:28691027,45706769 -) -) -) -g1,13569:28690151,45706769 -k1,13569:32583029,45706769:3892878 -) -] -(1,13577:32583029,45706769:0,0,0 -g1,13577:32583029,45706769 -) -) -] -(1,13577:6630773,47279633:25952256,0,0 -h1,13577:6630773,47279633:25952256,0,0 -) -] -(1,13577:4262630,4025873:0,0,0 -[1,13577:-473656,4025873:0,0,0 -(1,13577:-473656,-710413:0,0,0 -(1,13577:-473656,-710413:0,0,0 -g1,13577:-473656,-710413 -) -g1,13577:-473656,-710413 -) -] -) -] -!22685 -}257 -Input:1955:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1956:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1957:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1958:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1959:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1960:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1961:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1962:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1963:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1964:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1965:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1966:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1967:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1968:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1969:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1970:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1971:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1972:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1973:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1974:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1975:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1976:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1977:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1978:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1979:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1980:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1981:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1982:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1983:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1984:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!2772 -{258 -[1,13624:4262630,47279633:28320399,43253760,0 -(1,13624:4262630,4025873:0,0,0 -[1,13624:-473656,4025873:0,0,0 -(1,13624:-473656,-710413:0,0,0 -(1,13624:-473656,-644877:0,0,0 -k1,13624:-473656,-644877:-65536 -) -(1,13624:-473656,4736287:0,0,0 -k1,13624:-473656,4736287:5209943 -) -g1,13624:-473656,-710413 -) -] -) -[1,13624:6630773,47279633:25952256,43253760,0 -[1,13624:6630773,4812305:25952256,786432,0 -(1,13624:6630773,4812305:25952256,485622,11795 -(1,13624:6630773,4812305:25952256,485622,11795 -g1,13624:3078558,4812305 -[1,13624:3078558,4812305:0,0,0 -(1,13624:3078558,2439708:0,1703936,0 -k1,13624:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,13624:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,13624:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,13624:3078558,4812305:0,0,0 -(1,13624:3078558,2439708:0,1703936,0 -g1,13624:29030814,2439708 -g1,13624:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,13624:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,13624:37855564,2439708:1179648,16384,0 -) -) -k1,13624:3078556,2439708:-34777008 -) -] -[1,13624:3078558,4812305:0,0,0 -(1,13624:3078558,49800853:0,16384,2228224 -k1,13624:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,13624:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,13624:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,13624:3078558,4812305:0,0,0 -(1,13624:3078558,49800853:0,16384,2228224 -g1,13624:29030814,49800853 -g1,13624:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,13624:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,13624:37855564,49800853:1179648,16384,0 -) -) -k1,13624:3078556,49800853:-34777008 -) -] -g1,13624:6630773,4812305 -g1,13624:6630773,4812305 -g1,13624:10347975,4812305 -k1,13624:31387651,4812305:21039676 -) -) -] -[1,13624:6630773,45706769:25952256,40108032,0 -(1,13624:6630773,45706769:25952256,40108032,0 -(1,13624:6630773,45706769:0,0,0 -g1,13624:6630773,45706769 -) -[1,13624:6630773,45706769:25952256,40108032,0 -v1,13577:6630773,6254097:0,393216,0 -(1,13586:6630773,10632240:25952256,4771359,616038 -g1,13586:6630773,10632240 -(1,13586:6630773,10632240:25952256,4771359,616038 -(1,13586:6630773,11248278:25952256,5387397,0 -[1,13586:6630773,11248278:25952256,5387397,0 -(1,13586:6630773,11222064:25952256,5334969,0 -r1,13624:6656987,11222064:26214,5334969,0 -[1,13586:6656987,11222064:25899828,5334969,0 -(1,13586:6656987,10632240:25899828,4155321,0 -[1,13586:7246811,10632240:24720180,4155321,0 -(1,13578:7246811,7564293:24720180,1087374,134348 -k1,13577:8895132,7564293:438618 -k1,13577:11125503,7564293:438617 -k1,13577:12583206,7564293:438618 -k1,13577:15997158,7564293:438617 -k1,13577:17448307,7564293:438618 -k1,13577:19449959,7564293:438618 -k1,13577:21604309,7564293:438617 -k1,13577:23697711,7564293:438618 -k1,13577:25743927,7564293:438618 -k1,13577:27917937,7564293:438617 -(1,13577:27917937,7564293:0,452978,122846 -r1,13624:31793321,7564293:3875384,575824,122846 -k1,13577:27917937,7564293:-3875384 -) -(1,13577:27917937,7564293:3875384,452978,122846 -k1,13577:27917937,7564293:3277 -h1,13577:31790044,7564293:0,411205,112570 -) -k1,13578:31966991,7564293:0 -) -(1,13578:7246811,8405781:24720180,505283,126483 -(1,13577:7246811,8405781:0,452978,122846 -r1,13624:11122195,8405781:3875384,575824,122846 -k1,13577:7246811,8405781:-3875384 -) -(1,13577:7246811,8405781:3875384,452978,122846 -k1,13577:7246811,8405781:3277 -h1,13577:11118918,8405781:0,411205,112570 -) -g1,13577:11495094,8405781 -g1,13577:12885768,8405781 -(1,13577:12885768,8405781:0,414482,122846 -r1,13624:16057728,8405781:3171960,537328,122846 -k1,13577:12885768,8405781:-3171960 -) -(1,13577:12885768,8405781:3171960,414482,122846 -k1,13577:12885768,8405781:3277 -h1,13577:16054451,8405781:0,411205,112570 -) -g1,13577:16256957,8405781 -g1,13577:17107614,8405781 -g1,13577:18504186,8405781 -g1,13577:19059275,8405781 -k1,13578:31966991,8405781:11176255 -g1,13578:31966991,8405781 -) -v1,13580:7246811,9596247:0,393216,0 -(1,13584:7246811,9911344:24720180,708313,196608 -g1,13584:7246811,9911344 -g1,13584:7246811,9911344 -g1,13584:7050203,9911344 -(1,13584:7050203,9911344:0,708313,196608 -r1,13624:32163599,9911344:25113396,904921,196608 -k1,13584:7050203,9911344:-25113396 -) -(1,13584:7050203,9911344:25113396,708313,196608 -[1,13584:7246811,9911344:24720180,511705,0 -(1,13582:7246811,9810157:24720180,410518,101187 -(1,13581:7246811,9810157:0,0,0 -g1,13581:7246811,9810157 -g1,13581:7246811,9810157 -g1,13581:6919131,9810157 -(1,13581:6919131,9810157:0,0,0 -) -g1,13581:7246811,9810157 -) -g1,13582:9459831,9810157 -g1,13582:10408269,9810157 -g1,13582:14518164,9810157 -g1,13582:15150456,9810157 -g1,13582:18944208,9810157 -g1,13582:19576500,9810157 -g1,13582:20208792,9810157 -k1,13582:20208792,9810157:0 -h1,13582:23686397,9810157:0,0,0 -k1,13582:31966991,9810157:8280594 -g1,13582:31966991,9810157 -) -] -) -g1,13584:31966991,9911344 -g1,13584:7246811,9911344 -g1,13584:7246811,9911344 -g1,13584:31966991,9911344 -g1,13584:31966991,9911344 -) -h1,13584:7246811,10107952:0,0,0 -] -) -] -r1,13624:32583029,11222064:26214,5334969,0 -) -] -) -) -g1,13586:32583029,10632240 -) -h1,13586:6630773,11248278:0,0,0 -(1,13590:6630773,12614054:25952256,513147,134348 -h1,13589:6630773,12614054:983040,0,0 -k1,13589:9568480,12614054:179952 -(1,13589:9568480,12614054:0,452978,122846 -r1,13624:13443864,12614054:3875384,575824,122846 -k1,13589:9568480,12614054:-3875384 -) -(1,13589:9568480,12614054:3875384,452978,122846 -k1,13589:9568480,12614054:3277 -h1,13589:13440587,12614054:0,411205,112570 -) -k1,13589:13623816,12614054:179952 -k1,13589:15720041,12614054:179952 -k1,13589:16255853,12614054:179952 -k1,13589:17604313,12614054:179953 -k1,13589:20011834,12614054:179952 -k1,13589:24437208,12614054:179952 -(1,13589:24437208,12614054:0,452978,122846 -r1,13624:28312592,12614054:3875384,575824,122846 -k1,13589:24437208,12614054:-3875384 -) -(1,13589:24437208,12614054:3875384,452978,122846 -k1,13589:24437208,12614054:3277 -h1,13589:28309315,12614054:0,411205,112570 -) -k1,13589:28492544,12614054:179952 -k1,13589:31529210,12614054:179952 -k1,13590:32583029,12614054:0 -) -(1,13590:6630773,13455542:25952256,505283,134348 -k1,13589:7796202,13455542:175180 -k1,13589:8990468,13455542:175181 -k1,13589:10513068,13455542:175180 -k1,13589:12556680,13455542:175181 -k1,13589:13750945,13455542:175180 -k1,13589:15094633,13455542:175181 -k1,13589:18386705,13455542:175180 -k1,13589:19213314,13455542:175181 -k1,13589:20407579,13455542:175180 -(1,13589:20407579,13455542:0,459977,115847 -r1,13624:21820980,13455542:1413401,575824,115847 -k1,13589:20407579,13455542:-1413401 -) -(1,13589:20407579,13455542:1413401,459977,115847 -k1,13589:20407579,13455542:3277 -h1,13589:21817703,13455542:0,411205,112570 -) -k1,13589:21996161,13455542:175181 -k1,13589:25098178,13455542:175180 -k1,13589:25901194,13455542:175181 -k1,13589:28707645,13455542:175180 -(1,13589:28707645,13455542:0,452978,122846 -r1,13624:32583029,13455542:3875384,575824,122846 -k1,13589:28707645,13455542:-3875384 -) -(1,13589:28707645,13455542:3875384,452978,122846 -k1,13589:28707645,13455542:3277 -h1,13589:32579752,13455542:0,411205,112570 -) -k1,13589:32583029,13455542:0 -) -(1,13590:6630773,14297030:25952256,505283,126483 -k1,13589:8767058,14297030:220012 -k1,13589:10159510,14297030:220013 -k1,13589:11878330,14297030:220012 -k1,13589:13953011,14297030:220012 -k1,13589:14982393,14297030:220012 -k1,13589:16221491,14297030:220013 -(1,13589:16221491,14297030:0,414482,115847 -r1,13624:16579757,14297030:358266,530329,115847 -k1,13589:16221491,14297030:-358266 -) -(1,13589:16221491,14297030:358266,414482,115847 -k1,13589:16221491,14297030:3277 -h1,13589:16576480,14297030:0,411205,112570 -) -k1,13589:16973439,14297030:220012 -(1,13589:16973439,14297030:0,452978,115847 -r1,13624:18386840,14297030:1413401,568825,115847 -k1,13589:16973439,14297030:-1413401 -) -(1,13589:16973439,14297030:1413401,452978,115847 -k1,13589:16973439,14297030:3277 -h1,13589:18383563,14297030:0,411205,112570 -) -k1,13589:18606852,14297030:220012 -k1,13589:20018310,14297030:220013 -(1,13589:20018310,14297030:0,414482,115847 -r1,13624:21431711,14297030:1413401,530329,115847 -k1,13589:20018310,14297030:-1413401 -) -(1,13589:20018310,14297030:1413401,414482,115847 -k1,13589:20018310,14297030:3277 -h1,13589:21428434,14297030:0,411205,112570 -) -k1,13589:21651723,14297030:220012 -k1,13589:25086931,14297030:220012 -k1,13589:26700894,14297030:220012 -k1,13589:27939992,14297030:220013 -k1,13589:29947826,14297030:220012 -k1,13589:32583029,14297030:0 -) -(1,13590:6630773,15138518:25952256,513147,134348 -k1,13589:7884001,15138518:234143 -k1,13589:9616952,15138518:234143 -k1,13589:11460004,15138518:234143 -k1,13589:14811039,15138518:234143 -k1,13589:15696610,15138518:234143 -k1,13589:16949838,15138518:234143 -(1,13589:16949838,15138518:0,459977,115847 -r1,13624:18363239,15138518:1413401,575824,115847 -k1,13589:16949838,15138518:-1413401 -) -(1,13589:16949838,15138518:1413401,459977,115847 -k1,13589:16949838,15138518:3277 -h1,13589:18359962,15138518:0,411205,112570 -) -k1,13589:18597381,15138518:234142 -k1,13589:21758361,15138518:234143 -k1,13589:24268569,15138518:234143 -(1,13589:24268569,15138518:0,452978,122846 -r1,13624:28495665,15138518:4227096,575824,122846 -k1,13589:24268569,15138518:-4227096 -) -(1,13589:24268569,15138518:4227096,452978,122846 -k1,13589:24268569,15138518:3277 -h1,13589:28492388,15138518:0,411205,112570 -) -k1,13589:28729808,15138518:234143 -k1,13589:29495448,15138518:234143 -k1,13589:31931601,15138518:234143 -k1,13590:32583029,15138518:0 -) -(1,13590:6630773,15980006:25952256,513147,134348 -(1,13589:6630773,15980006:0,452978,122846 -r1,13624:10506157,15980006:3875384,575824,122846 -k1,13589:6630773,15980006:-3875384 -) -(1,13589:6630773,15980006:3875384,452978,122846 -k1,13589:6630773,15980006:3277 -h1,13589:10502880,15980006:0,411205,112570 -) -k1,13589:10678230,15980006:172073 -k1,13589:11922473,15980006:172074 -k1,13589:14920458,15980006:172073 -k1,13589:16111617,15980006:172074 -k1,13589:18855978,15980006:172073 -k1,13589:23099804,15980006:172074 -k1,13589:25829747,15980006:172073 -k1,13589:26357681,15980006:172074 -k1,13589:28561370,15980006:172073 -k1,13589:31298523,15980006:172074 -k1,13589:32583029,15980006:0 -) -(1,13590:6630773,16821494:25952256,459977,126483 -g1,13589:9686716,16821494 -(1,13589:9686716,16821494:0,459977,115847 -r1,13624:11100117,16821494:1413401,575824,115847 -k1,13589:9686716,16821494:-1413401 -) -(1,13589:9686716,16821494:1413401,459977,115847 -k1,13589:9686716,16821494:3277 -h1,13589:11096840,16821494:0,411205,112570 -) -k1,13590:32583029,16821494:21309242 -g1,13590:32583029,16821494 -) -(1,13592:6630773,17662982:25952256,513147,126483 -h1,13591:6630773,17662982:983040,0,0 -k1,13591:9505962,17662982:165275 -k1,13591:10330529,17662982:165275 -k1,13591:12044420,17662982:165275 -k1,13591:13416868,17662982:165275 -k1,13591:16672166,17662982:165275 -k1,13591:18692764,17662982:165274 -k1,13591:19805690,17662982:165275 -(1,13591:19805690,17662982:0,452978,122846 -r1,13624:23329362,17662982:3523672,575824,122846 -k1,13591:19805690,17662982:-3523672 -) -(1,13591:19805690,17662982:3523672,452978,122846 -k1,13591:19805690,17662982:3277 -h1,13591:23326085,17662982:0,411205,112570 -) -k1,13591:23494637,17662982:165275 -k1,13591:24764194,17662982:165275 -k1,13591:25677235,17662982:165275 -k1,13591:28420696,17662982:165275 -k1,13591:29237399,17662982:165275 -(1,13591:29237399,17662982:0,452978,122846 -r1,13624:32409359,17662982:3171960,575824,122846 -k1,13591:29237399,17662982:-3171960 -) -(1,13591:29237399,17662982:3171960,452978,122846 -k1,13591:29237399,17662982:3277 -h1,13591:32406082,17662982:0,411205,112570 -) -k1,13592:32583029,17662982:0 -) -(1,13592:6630773,18504470:25952256,505283,134348 -(1,13591:6630773,18504470:0,452978,122846 -r1,13624:10506157,18504470:3875384,575824,122846 -k1,13591:6630773,18504470:-3875384 -) -(1,13591:6630773,18504470:3875384,452978,122846 -k1,13591:6630773,18504470:3277 -h1,13591:10502880,18504470:0,411205,112570 -) -k1,13591:10951448,18504470:271621 -(1,13591:10951448,18504470:0,414482,122846 -r1,13624:14123408,18504470:3171960,537328,122846 -k1,13591:10951448,18504470:-3171960 -) -(1,13591:10951448,18504470:3171960,414482,122846 -k1,13591:10951448,18504470:3277 -h1,13591:14120131,18504470:0,411205,112570 -) -k1,13591:14395029,18504470:271621 -k1,13591:15858094,18504470:271620 -k1,13591:17831685,18504470:271621 -k1,13591:21543291,18504470:271621 -k1,13591:24904935,18504470:271621 -k1,13591:25792594,18504470:271621 -k1,13591:27267455,18504470:271620 -k1,13591:29991433,18504470:271621 -k1,13591:30890889,18504470:271621 -k1,13591:32583029,18504470:0 -) -(1,13592:6630773,19345958:25952256,513147,134348 -k1,13591:8770570,19345958:268744 -k1,13591:9497412,19345958:268745 -k1,13591:10297653,19345958:268744 -k1,13591:12543618,19345958:268744 -k1,13591:13463790,19345958:268744 -k1,13591:15401737,19345958:268745 -k1,13591:16689566,19345958:268744 -k1,13591:20533954,19345958:268744 -k1,13591:22500737,19345958:268745 -k1,13591:23788566,19345958:268744 -k1,13591:26067955,19345958:268744 -k1,13591:29378225,19345958:268744 -k1,13591:31299133,19345958:268745 -k1,13591:32227169,19345958:268744 -k1,13591:32583029,19345958:0 -) -(1,13592:6630773,20187446:25952256,513147,134348 -k1,13591:8803796,20187446:187282 -k1,13591:11047597,20187446:187281 -k1,13591:11862714,20187446:187282 -k1,13591:13069080,20187446:187281 -k1,13591:14814153,20187446:187282 -k1,13591:18189761,20187446:187281 -k1,13591:21212130,20187446:187282 -k1,13591:22267763,20187446:187281 -k1,13591:24124247,20187446:187282 -k1,13591:25330613,20187446:187281 -k1,13591:27767746,20187446:187282 -k1,13591:28614319,20187446:187281 -k1,13591:29820686,20187446:187282 -k1,13591:32583029,20187446:0 -) -(1,13592:6630773,21028934:25952256,513147,134348 -k1,13591:8414817,21028934:213801 -k1,13591:9390147,21028934:213802 -k1,13591:11339341,21028934:213801 -(1,13591:11339341,21028934:0,452978,115847 -r1,13624:17676709,21028934:6337368,568825,115847 -k1,13591:11339341,21028934:-6337368 -) -(1,13591:11339341,21028934:6337368,452978,115847 -g1,13591:14508025,21028934 -g1,13591:15211449,21028934 -h1,13591:17673432,21028934:0,411205,112570 -) -k1,13591:17890511,21028934:213802 -k1,13591:20431495,21028934:213801 -k1,13591:21304588,21028934:213801 -k1,13591:22537475,21028934:213802 -k1,13591:25016856,21028934:213801 -(1,13591:25016856,21028934:0,452978,115847 -r1,13624:32409359,21028934:7392503,568825,115847 -k1,13591:25016856,21028934:-7392503 -) -(1,13591:25016856,21028934:7392503,452978,115847 -g1,13591:28185540,21028934 -g1,13591:28888964,21028934 -h1,13591:32406082,21028934:0,411205,112570 -) -k1,13591:32583029,21028934:0 -) -(1,13592:6630773,21870422:25952256,513147,138281 -k1,13591:9969129,21870422:248989 -k1,13591:11237202,21870422:248988 -$1,13591:11237202,21870422 -$1,13591:11789015,21870422 -k1,13591:12038004,21870422:248989 -k1,13591:13539386,21870422:248989 -k1,13591:14447667,21870422:248989 -k1,13591:15715740,21870422:248988 -k1,13591:17820053,21870422:248989 -k1,13591:19937473,21870422:248989 -k1,13591:20837889,21870422:248988 -k1,13591:22371384,21870422:248989 -k1,13591:24621187,21870422:248989 -k1,13591:26605569,21870422:248989 -(1,13591:26605569,21870422:0,452978,122846 -r1,13624:29777529,21870422:3171960,575824,122846 -k1,13591:26605569,21870422:-3171960 -) -(1,13591:26605569,21870422:3171960,452978,122846 -k1,13591:26605569,21870422:3277 -h1,13591:29774252,21870422:0,411205,112570 -) -k1,13591:30026517,21870422:248988 -k1,13591:31084876,21870422:248989 -k1,13591:32583029,21870422:0 -) -(1,13592:6630773,22711910:25952256,505283,95026 -h1,13591:7826150,22711910:0,0,0 -k1,13592:32583030,22711910:24376116 -g1,13592:32583030,22711910 -) -v1,13594:6630773,23902376:0,393216,0 -(1,13600:6630773,25549828:25952256,2040668,196608 -g1,13600:6630773,25549828 -g1,13600:6630773,25549828 -g1,13600:6434165,25549828 -(1,13600:6434165,25549828:0,2040668,196608 -r1,13624:32779637,25549828:26345472,2237276,196608 -k1,13600:6434165,25549828:-26345472 -) -(1,13600:6434165,25549828:26345472,2040668,196608 -[1,13600:6630773,25549828:25952256,1844060,0 -(1,13596:6630773,24109994:25952256,404226,107478 -(1,13595:6630773,24109994:0,0,0 -g1,13595:6630773,24109994 -g1,13595:6630773,24109994 -g1,13595:6303093,24109994 -(1,13595:6303093,24109994:0,0,0 -) -g1,13595:6630773,24109994 -) -k1,13596:6630773,24109994:0 -g1,13596:10424522,24109994 -g1,13596:11056814,24109994 -k1,13596:11056814,24109994:0 -h1,13596:13269834,24109994:0,0,0 -k1,13596:32583030,24109994:19313196 -g1,13596:32583030,24109994 -) -(1,13597:6630773,24776172:25952256,410518,107478 -h1,13597:6630773,24776172:0,0,0 -g1,13597:6946919,24776172 -g1,13597:7263065,24776172 -g1,13597:7579211,24776172 -g1,13597:7895357,24776172 -g1,13597:8211503,24776172 -g1,13597:8527649,24776172 -g1,13597:8843795,24776172 -g1,13597:10740670,24776172 -g1,13597:11372962,24776172 -g1,13597:12953691,24776172 -g1,13597:13585983,24776172 -g1,13597:14218275,24776172 -g1,13597:18960461,24776172 -g1,13597:20541190,24776172 -g1,13597:21173482,24776172 -g1,13597:23386502,24776172 -h1,13597:23702648,24776172:0,0,0 -k1,13597:32583029,24776172:8880381 -g1,13597:32583029,24776172 -) -(1,13598:6630773,25442350:25952256,404226,107478 -h1,13598:6630773,25442350:0,0,0 -g1,13598:6946919,25442350 -g1,13598:7263065,25442350 -g1,13598:13269833,25442350 -g1,13598:13902125,25442350 -h1,13598:16431291,25442350:0,0,0 -k1,13598:32583029,25442350:16151738 -g1,13598:32583029,25442350 -) -] -) -g1,13600:32583029,25549828 -g1,13600:6630773,25549828 -g1,13600:6630773,25549828 -g1,13600:32583029,25549828 -g1,13600:32583029,25549828 -) -h1,13600:6630773,25746436:0,0,0 -(1,13603:6630773,35419926:25952256,9083666,0 -k1,13603:10523651,35419926:3892878 -h1,13602:10523651,35419926:0,0,0 -(1,13602:10523651,35419926:18166500,9083666,0 -(1,13602:10523651,35419926:18167376,9083688,0 -(1,13602:10523651,35419926:18167376,9083688,0 -(1,13602:10523651,35419926:0,9083688,0 -(1,13602:10523651,35419926:0,14208860,0 -(1,13602:10523651,35419926:28417720,14208860,0 -) -k1,13602:10523651,35419926:-28417720 -) -) -g1,13602:28691027,35419926 -) -) -) -g1,13603:28690151,35419926 -k1,13603:32583029,35419926:3892878 -) -(1,13612:6630773,36261414:25952256,513147,134348 -h1,13611:6630773,36261414:983040,0,0 -k1,13611:10249408,36261414:359530 -k1,13611:12263723,36261414:359531 -k1,13611:16063238,36261414:359530 -k1,13611:17370420,36261414:359531 -k1,13611:20306170,36261414:359530 -k1,13611:22164508,36261414:359530 -k1,13611:24556966,36261414:359531 -k1,13611:25935581,36261414:359530 -k1,13611:28177961,36261414:359531 -k1,13611:31061938,36261414:359530 -k1,13612:32583029,36261414:0 -) -(1,13612:6630773,37102902:25952256,513147,122846 -(1,13611:6630773,37102902:0,452978,122846 -r1,13624:10154445,37102902:3523672,575824,122846 -k1,13611:6630773,37102902:-3523672 -) -(1,13611:6630773,37102902:3523672,452978,122846 -k1,13611:6630773,37102902:3277 -h1,13611:10151168,37102902:0,411205,112570 -) -k1,13611:10579723,37102902:251608 -(1,13611:10579723,37102902:0,452978,122846 -r1,13624:14103395,37102902:3523672,575824,122846 -k1,13611:10579723,37102902:-3523672 -) -(1,13611:10579723,37102902:3523672,452978,122846 -k1,13611:10579723,37102902:3277 -h1,13611:14100118,37102902:0,411205,112570 -) -k1,13611:14355004,37102902:251609 -k1,13611:15798057,37102902:251608 -(1,13611:15798057,37102902:0,452978,122846 -r1,13624:19673441,37102902:3875384,575824,122846 -k1,13611:15798057,37102902:-3875384 -) -(1,13611:15798057,37102902:3875384,452978,122846 -k1,13611:15798057,37102902:3277 -h1,13611:19670164,37102902:0,411205,112570 -) -k1,13611:20098720,37102902:251609 -k1,13611:21547015,37102902:251608 -k1,13611:23104756,37102902:251608 -k1,13611:24528804,37102902:251609 -k1,13611:26366383,37102902:251608 -k1,13611:29934114,37102902:251609 -k1,13611:31377167,37102902:251608 -k1,13612:32583029,37102902:0 -) -(1,13612:6630773,37944390:25952256,505283,134348 -k1,13611:8219147,37944390:235711 -k1,13611:10127337,37944390:235711 -k1,13611:14333219,37944390:235711 -k1,13611:16258448,37944390:235711 -k1,13611:17513244,37944390:235711 -k1,13611:19330995,37944390:235712 -k1,13611:20723416,37944390:235711 -k1,13611:22875400,37944390:235711 -k1,13611:25589683,37944390:235711 -k1,13611:27324202,37944390:235711 -k1,13611:30676805,37944390:235711 -k1,13611:31563944,37944390:235711 -k1,13611:32583029,37944390:0 -) -(1,13612:6630773,38785878:25952256,505283,134348 -k1,13611:9992746,38785878:297509 -(1,13611:9992746,38785878:0,452978,115847 -r1,13624:11757859,38785878:1765113,568825,115847 -k1,13611:9992746,38785878:-1765113 -) -(1,13611:9992746,38785878:1765113,452978,115847 -k1,13611:9992746,38785878:3277 -h1,13611:11754582,38785878:0,411205,112570 -) -k1,13611:12055367,38785878:297508 -k1,13611:13544321,38785878:297509 -(1,13611:13544321,38785878:0,452978,115847 -r1,13624:16716281,38785878:3171960,568825,115847 -k1,13611:13544321,38785878:-3171960 -) -(1,13611:13544321,38785878:3171960,452978,115847 -k1,13611:13544321,38785878:3277 -h1,13611:16713004,38785878:0,411205,112570 -) -k1,13611:17013790,38785878:297509 -k1,13611:21198239,38785878:297509 -k1,13611:22514832,38785878:297508 -k1,13611:25600243,38785878:297509 -k1,13611:27094439,38785878:297509 -k1,13611:28890755,38785878:297508 -k1,13611:31189078,38785878:297509 -k1,13611:32583029,38785878:0 -) -(1,13612:6630773,39627366:25952256,513147,134348 -g1,13611:8526729,39627366 -g1,13611:10380742,39627366 -g1,13611:12646321,39627366 -g1,13611:14997752,39627366 -g1,13611:15848409,39627366 -g1,13611:17066723,39627366 -g1,13611:18755585,39627366 -g1,13611:19614106,39627366 -g1,13611:20832420,39627366 -g1,13611:23556096,39627366 -k1,13612:32583029,39627366:7505842 -g1,13612:32583029,39627366 -) -(1,13614:6630773,40468854:25952256,505283,134348 -h1,13613:6630773,40468854:983040,0,0 -(1,13613:7613813,40468854:0,452978,122846 -r1,13624:11137485,40468854:3523672,575824,122846 -k1,13613:7613813,40468854:-3523672 -) -(1,13613:7613813,40468854:3523672,452978,122846 -k1,13613:7613813,40468854:3277 -h1,13613:11134208,40468854:0,411205,112570 -) -k1,13613:11697073,40468854:559588 -k1,13613:13448106,40468854:559588 -(1,13613:13448106,40468854:0,452978,122846 -r1,13624:16971778,40468854:3523672,575824,122846 -k1,13613:13448106,40468854:-3523672 -) -(1,13613:13448106,40468854:3523672,452978,122846 -k1,13613:13448106,40468854:3277 -h1,13613:16968501,40468854:0,411205,112570 -) -k1,13613:17531366,40468854:559588 -k1,13613:20382748,40468854:559588 -k1,13613:21298196,40468854:559588 -k1,13613:23730803,40468854:559588 -k1,13613:27308324,40468854:559588 -(1,13613:27308324,40468854:0,452978,115847 -r1,13624:30831996,40468854:3523672,568825,115847 -k1,13613:27308324,40468854:-3523672 -) -(1,13613:27308324,40468854:3523672,452978,115847 -k1,13613:27308324,40468854:3277 -h1,13613:30828719,40468854:0,411205,112570 -) -k1,13613:31391584,40468854:559588 -k1,13614:32583029,40468854:0 -) -(1,13614:6630773,41310342:25952256,513147,134348 -(1,13613:6630773,41310342:0,452978,115847 -r1,13624:10154445,41310342:3523672,568825,115847 -k1,13613:6630773,41310342:-3523672 -) -(1,13613:6630773,41310342:3523672,452978,115847 -k1,13613:6630773,41310342:3277 -h1,13613:10151168,41310342:0,411205,112570 -) -k1,13613:10498397,41310342:170282 -k1,13613:14638851,41310342:170283 -k1,13613:17654051,41310342:170282 -k1,13613:19391954,41310342:170282 -k1,13613:21264206,41310342:170282 -k1,13613:23674510,41310342:170283 -k1,13613:24863877,41310342:170282 -k1,13613:26423522,41310342:170282 -k1,13613:27541456,41310342:170283 -k1,13613:29408465,41310342:170282 -k1,13613:32583029,41310342:0 -) -(1,13614:6630773,42151830:25952256,513147,134348 -k1,13613:7877530,42151830:142475 -k1,13613:9305821,42151830:142475 -k1,13613:10196063,42151830:142476 -k1,13613:12543825,42151830:142475 -k1,13613:13372462,42151830:142475 -k1,13613:16272692,42151830:142475 -k1,13613:19035296,42151830:142475 -k1,13613:21659620,42151830:142476 -k1,13613:22998782,42151830:142475 -k1,13613:25272488,42151830:142475 -k1,13613:26362614,42151830:142475 -k1,13613:27708330,42151830:142475 -k1,13613:28382303,42151830:142476 -k1,13613:29809284,42151830:142475 -k1,13613:31648486,42151830:142475 -k1,13614:32583029,42151830:0 -) -(1,13614:6630773,42993318:25952256,513147,134348 -k1,13613:8155200,42993318:179628 -k1,13613:9326388,42993318:179628 -k1,13613:11107716,42993318:179628 -k1,13613:14592325,42993318:179628 -k1,13613:16285179,42993318:179628 -k1,13613:17116236,42993318:179629 -k1,13613:20092941,42993318:179628 -k1,13613:21880167,42993318:179628 -k1,13613:24011457,42993318:179628 -k1,13613:25633532,42993318:179628 -k1,13613:28337607,42993318:179628 -k1,13613:32583029,42993318:0 -) -(1,13614:6630773,43834806:25952256,513147,134348 -g1,13613:8303251,43834806 -g1,13613:10901098,43834806 -g1,13613:12384833,43834806 -g1,13613:13452414,43834806 -g1,13613:15200259,43834806 -g1,13613:16050916,43834806 -g1,13613:19107515,43834806 -g1,13613:20077447,43834806 -g1,13613:22000273,43834806 -g1,13613:22812264,43834806 -g1,13613:24030578,43834806 -g1,13613:25307219,43834806 -g1,13613:26165740,43834806 -g1,13613:27958805,43834806 -k1,13614:32583029,43834806:2982547 -g1,13614:32583029,43834806 -) -v1,13616:6630773,45025272:0,393216,0 -] -(1,13624:32583029,45706769:0,0,0 -g1,13624:32583029,45706769 -) -) -] -(1,13624:6630773,47279633:25952256,0,0 -h1,13624:6630773,47279633:25952256,0,0 -) -] -(1,13624:4262630,4025873:0,0,0 -[1,13624:-473656,4025873:0,0,0 -(1,13624:-473656,-710413:0,0,0 -(1,13624:-473656,-710413:0,0,0 -g1,13624:-473656,-710413 -) -g1,13624:-473656,-710413 -) -] -) -] -!26096 -}258 -Input:1985:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1986:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1987:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1988:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1989:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1990:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1991:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!656 -{259 -[1,13680:4262630,47279633:28320399,43253760,0 -(1,13680:4262630,4025873:0,0,0 -[1,13680:-473656,4025873:0,0,0 -(1,13680:-473656,-710413:0,0,0 -(1,13680:-473656,-644877:0,0,0 -k1,13680:-473656,-644877:-65536 -) -(1,13680:-473656,4736287:0,0,0 -k1,13680:-473656,4736287:5209943 -) -g1,13680:-473656,-710413 -) -] -) -[1,13680:6630773,47279633:25952256,43253760,0 -[1,13680:6630773,4812305:25952256,786432,0 -(1,13680:6630773,4812305:25952256,513147,134348 -(1,13680:6630773,4812305:25952256,513147,134348 -g1,13680:3078558,4812305 -[1,13680:3078558,4812305:0,0,0 -(1,13680:3078558,2439708:0,1703936,0 -k1,13680:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,13680:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,13680:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,13680:3078558,4812305:0,0,0 -(1,13680:3078558,2439708:0,1703936,0 -g1,13680:29030814,2439708 -g1,13680:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,13680:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,13680:37855564,2439708:1179648,16384,0 -) -) -k1,13680:3078556,2439708:-34777008 -) -] -[1,13680:3078558,4812305:0,0,0 -(1,13680:3078558,49800853:0,16384,2228224 -k1,13680:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,13680:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,13680:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,13680:3078558,4812305:0,0,0 -(1,13680:3078558,49800853:0,16384,2228224 -g1,13680:29030814,49800853 -g1,13680:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,13680:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,13680:37855564,49800853:1179648,16384,0 -) -) -k1,13680:3078556,49800853:-34777008 -) -] -g1,13680:6630773,4812305 -k1,13680:25712890,4812305:17886740 -g1,13680:29057847,4812305 -g1,13680:29873114,4812305 -) -) -] -[1,13680:6630773,45706769:25952256,40108032,0 -(1,13680:6630773,45706769:25952256,40108032,0 -(1,13680:6630773,45706769:0,0,0 -g1,13680:6630773,45706769 -) -[1,13680:6630773,45706769:25952256,40108032,0 -v1,13624:6630773,6254097:0,393216,0 -(1,13624:6630773,9233905:25952256,3373024,196608 -g1,13624:6630773,9233905 -g1,13624:6630773,9233905 -g1,13624:6434165,9233905 -(1,13624:6434165,9233905:0,3373024,196608 -r1,13680:32779637,9233905:26345472,3569632,196608 -k1,13624:6434165,9233905:-26345472 -) -(1,13624:6434165,9233905:26345472,3373024,196608 -[1,13624:6630773,9233905:25952256,3176416,0 -(1,13618:6630773,6461715:25952256,404226,107478 -(1,13617:6630773,6461715:0,0,0 -g1,13617:6630773,6461715 -g1,13617:6630773,6461715 -g1,13617:6303093,6461715 -(1,13617:6303093,6461715:0,0,0 -) -g1,13617:6630773,6461715 -) -k1,13618:6630773,6461715:0 -g1,13618:10424522,6461715 -g1,13618:11056814,6461715 -k1,13618:11056814,6461715:0 -h1,13618:13269834,6461715:0,0,0 -k1,13618:32583030,6461715:19313196 -g1,13618:32583030,6461715 -) -(1,13619:6630773,7127893:25952256,410518,107478 -h1,13619:6630773,7127893:0,0,0 -g1,13619:6946919,7127893 -g1,13619:7263065,7127893 -g1,13619:7579211,7127893 -g1,13619:7895357,7127893 -g1,13619:8211503,7127893 -g1,13619:8527649,7127893 -g1,13619:8843795,7127893 -g1,13619:10740670,7127893 -g1,13619:11372962,7127893 -g1,13619:12953691,7127893 -g1,13619:13585983,7127893 -g1,13619:14218275,7127893 -g1,13619:18960461,7127893 -g1,13619:20541190,7127893 -g1,13619:21173482,7127893 -g1,13619:23386502,7127893 -h1,13619:23702648,7127893:0,0,0 -k1,13619:32583029,7127893:8880381 -g1,13619:32583029,7127893 -) -(1,13620:6630773,7794071:25952256,404226,107478 -h1,13620:6630773,7794071:0,0,0 -g1,13620:6946919,7794071 -g1,13620:7263065,7794071 -g1,13620:13269833,7794071 -g1,13620:13902125,7794071 -g1,13620:16747437,7794071 -h1,13620:17063583,7794071:0,0,0 -k1,13620:32583029,7794071:15519446 -g1,13620:32583029,7794071 -) -(1,13621:6630773,8460249:25952256,404226,107478 -h1,13621:6630773,8460249:0,0,0 -g1,13621:6946919,8460249 -g1,13621:7263065,8460249 -g1,13621:14218271,8460249 -g1,13621:14850563,8460249 -g1,13621:16747438,8460249 -g1,13621:18644312,8460249 -g1,13621:19276604,8460249 -g1,13621:22438061,8460249 -h1,13621:22754207,8460249:0,0,0 -k1,13621:32583029,8460249:9828822 -g1,13621:32583029,8460249 -) -(1,13622:6630773,9126427:25952256,404226,107478 -h1,13622:6630773,9126427:0,0,0 -g1,13622:6946919,9126427 -g1,13622:7263065,9126427 -g1,13622:14218271,9126427 -g1,13622:14850563,9126427 -g1,13622:16747438,9126427 -g1,13622:19592749,9126427 -g1,13622:20225041,9126427 -h1,13622:23070352,9126427:0,0,0 -k1,13622:32583029,9126427:9512677 -g1,13622:32583029,9126427 -) -] -) -g1,13624:32583029,9233905 -g1,13624:6630773,9233905 -g1,13624:6630773,9233905 -g1,13624:32583029,9233905 -g1,13624:32583029,9233905 -) -h1,13624:6630773,9430513:0,0,0 -(1,13627:6630773,19071652:25952256,9083666,0 -k1,13627:10523651,19071652:3892878 -h1,13626:10523651,19071652:0,0,0 -(1,13626:10523651,19071652:18166500,9083666,0 -(1,13626:10523651,19071652:18167376,9083688,0 -(1,13626:10523651,19071652:18167376,9083688,0 -(1,13626:10523651,19071652:0,9083688,0 -(1,13626:10523651,19071652:0,14208860,0 -(1,13626:10523651,19071652:28417720,14208860,0 -) -k1,13626:10523651,19071652:-28417720 -) -) -g1,13626:28691027,19071652 -) -) -) -g1,13627:28690151,19071652 -k1,13627:32583029,19071652:3892878 -) -v1,13634:6630773,20405077:0,393216,0 -(1,13635:6630773,23524732:25952256,3512871,616038 -g1,13635:6630773,23524732 -(1,13635:6630773,23524732:25952256,3512871,616038 -(1,13635:6630773,24140770:25952256,4128909,0 -[1,13635:6630773,24140770:25952256,4128909,0 -(1,13635:6630773,24114556:25952256,4076481,0 -r1,13680:6656987,24114556:26214,4076481,0 -[1,13635:6656987,24114556:25899828,4076481,0 -(1,13635:6656987,23524732:25899828,2896833,0 -[1,13635:7246811,23524732:24720180,2896833,0 -(1,13635:7246811,21715273:24720180,1087374,134348 -k1,13634:8696523,21715273:240009 -k1,13634:11299104,21715273:240008 -k1,13634:12558198,21715273:240009 -k1,13634:14537533,21715273:240009 -k1,13634:15436833,21715273:240008 -k1,13634:16695927,21715273:240009 -k1,13634:18590720,21715273:240009 -k1,13634:20718820,21715273:240008 -k1,13634:21574867,21715273:240009 -k1,13634:22833960,21715273:240008 -k1,13634:25735386,21715273:240009 -k1,13634:28004390,21715273:240009 -k1,13634:29665219,21715273:240008 -k1,13634:30947906,21715273:240009 -k1,13634:31966991,21715273:0 -) -(1,13635:7246811,22556761:24720180,513147,134348 -k1,13634:9378697,22556761:276562 -k1,13634:12222960,22556761:276562 -k1,13634:14133335,22556761:276562 -k1,13634:16149222,22556761:276561 -k1,13634:16957281,22556761:276562 -k1,13634:18895836,22556761:276562 -k1,13634:21213844,22556761:276562 -k1,13634:22509491,22556761:276562 -k1,13634:24439526,22556761:276562 -k1,13634:26455414,22556761:276562 -k1,13634:27479741,22556761:276561 -k1,13634:28775388,22556761:276562 -k1,13634:30386918,22556761:276562 -k1,13634:31611131,22556761:276562 -k1,13634:31966991,22556761:0 -) -(1,13635:7246811,23398249:24720180,505283,126483 -g1,13634:9615282,23398249 -g1,13634:11418832,23398249 -g1,13634:12941233,23398249 -g1,13634:15096712,23398249 -g1,13634:15754038,23398249 -g1,13634:16701033,23398249 -g1,13634:20009290,23398249 -g1,13634:20859947,23398249 -g1,13634:22256519,23398249 -g1,13634:23628187,23398249 -(1,13634:23628187,23398249:0,452978,122846 -r1,13680:27855283,23398249:4227096,575824,122846 -k1,13634:23628187,23398249:-4227096 -) -(1,13634:23628187,23398249:4227096,452978,122846 -k1,13634:23628187,23398249:3277 -h1,13634:27852006,23398249:0,411205,112570 -) -g1,13634:28054512,23398249 -k1,13635:31966991,23398249:1697362 -g1,13635:31966991,23398249 -) -] -) -] -r1,13680:32583029,24114556:26214,4076481,0 -) -] -) -) -g1,13635:32583029,23524732 -) -h1,13635:6630773,24140770:0,0,0 -(1,13639:6630773,26723967:25952256,555811,12975 -(1,13639:6630773,26723967:2450326,527696,0 -g1,13639:6630773,26723967 -g1,13639:9081099,26723967 -) -k1,13639:32583029,26723967:20670250 -g1,13639:32583029,26723967 -) -(1,13644:6630773,27958671:25952256,505283,134348 -k1,13643:8040871,27958671:213411 -k1,13643:11261728,27958671:213410 -(1,13643:11261728,27958671:0,452978,122846 -r1,13680:14785400,27958671:3523672,575824,122846 -k1,13643:11261728,27958671:-3523672 -) -(1,13643:11261728,27958671:3523672,452978,122846 -k1,13643:11261728,27958671:3277 -h1,13643:14782123,27958671:0,411205,112570 -) -k1,13643:14998811,27958671:213411 -k1,13643:16316503,27958671:213410 -k1,13643:17277680,27958671:213411 -k1,13643:19004316,27958671:213410 -k1,13643:19869155,27958671:213411 -k1,13643:22011945,27958671:213410 -k1,13643:24545986,27958671:213411 -k1,13643:26258205,27958671:213410 -k1,13643:28390510,27958671:213411 -k1,13643:30055542,27958671:213410 -k1,13643:31313597,27958671:213411 -k1,13644:32583029,27958671:0 -) -(1,13644:6630773,28800159:25952256,505283,7863 -g1,13643:9145389,28800159 -g1,13643:10115321,28800159 -g1,13643:14056000,28800159 -g1,13643:14938114,28800159 -g1,13643:16504424,28800159 -g1,13643:17319691,28800159 -g1,13643:18538005,28800159 -k1,13644:32583029,28800159:12481990 -g1,13644:32583029,28800159 -) -v1,13646:6630773,30133583:0,393216,0 -(1,13647:6630773,34089251:25952256,4348884,616038 -g1,13647:6630773,34089251 -(1,13647:6630773,34089251:25952256,4348884,616038 -(1,13647:6630773,34705289:25952256,4964922,0 -[1,13647:6630773,34705289:25952256,4964922,0 -(1,13647:6630773,34679075:25952256,4912494,0 -r1,13680:6656987,34679075:26214,4912494,0 -[1,13647:6656987,34679075:25899828,4912494,0 -(1,13647:6656987,34089251:25899828,3732846,0 -[1,13647:7246811,34089251:24720180,3732846,0 -(1,13647:7246811,31441941:24720180,1085536,298548 -(1,13646:7246811,31441941:0,1085536,298548 -r1,13680:8753226,31441941:1506415,1384084,298548 -k1,13646:7246811,31441941:-1506415 -) -(1,13646:7246811,31441941:1506415,1085536,298548 -) -k1,13646:9021732,31441941:268506 -k1,13646:9705012,31441941:268437 -k1,13646:11684664,31441941:268507 -k1,13646:13019441,31441941:268506 -k1,13646:15780282,31441941:268507 -k1,13646:17014133,31441941:268506 -k1,13646:18676591,31441941:268507 -k1,13646:21773630,31441941:268506 -k1,13646:23033697,31441941:268507 -k1,13646:26607184,31441941:268506 -k1,13646:29917872,31441941:268507 -k1,13646:30947906,31441941:268506 -k1,13646:31966991,31441941:0 -) -(1,13647:7246811,32283429:24720180,513147,134348 -k1,13646:9664450,32283429:152059 -k1,13646:12576231,32283429:152060 -k1,13646:13395446,32283429:152059 -(1,13646:13395446,32283429:0,452978,122846 -r1,13680:16919118,32283429:3523672,575824,122846 -k1,13646:13395446,32283429:-3523672 -) -(1,13646:13395446,32283429:3523672,452978,122846 -k1,13646:13395446,32283429:3277 -h1,13646:16915841,32283429:0,411205,112570 -) -k1,13646:17071178,32283429:152060 -k1,13646:17909399,32283429:152059 -k1,13646:18519556,32283429:152060 -k1,13646:20094402,32283429:152059 -(1,13646:20094402,32283429:0,452978,115847 -r1,13680:24321498,32283429:4227096,568825,115847 -k1,13646:20094402,32283429:-4227096 -) -(1,13646:20094402,32283429:4227096,452978,115847 -k1,13646:20094402,32283429:3277 -h1,13646:24318221,32283429:0,411205,112570 -) -k1,13646:24473558,32283429:152060 -k1,13646:25277045,32283429:152059 -k1,13646:28049234,32283429:152060 -k1,13646:28557153,32283429:152059 -k1,13646:31966991,32283429:0 -) -(1,13647:7246811,33124917:24720180,505283,134348 -k1,13646:9397012,33124917:198539 -k1,13646:11037998,33124917:198539 -k1,13646:13760984,33124917:198539 -k1,13646:15970167,33124917:198538 -k1,13646:16854868,33124917:198539 -k1,13646:17584904,33124917:198539 -k1,13646:19015520,33124917:198539 -k1,13646:21492746,33124917:198539 -h1,13646:23035464,33124917:0,0,0 -k1,13646:23234003,33124917:198539 -k1,13646:24241911,33124917:198538 -k1,13646:25938603,33124917:198539 -h1,13646:27133980,33124917:0,0,0 -k1,13646:27713283,33124917:198539 -(1,13646:27713283,33124917:0,452978,122846 -r1,13680:31236955,33124917:3523672,575824,122846 -k1,13646:27713283,33124917:-3523672 -) -(1,13646:27713283,33124917:3523672,452978,122846 -k1,13646:27713283,33124917:3277 -h1,13646:31233678,33124917:0,411205,112570 -) -k1,13646:31435494,33124917:198539 -k1,13646:31966991,33124917:0 -) -(1,13647:7246811,33966405:24720180,513147,122846 -g1,13646:10182823,33966405 -g1,13646:11033480,33966405 -(1,13646:11033480,33966405:0,452978,122846 -r1,13680:14557152,33966405:3523672,575824,122846 -k1,13646:11033480,33966405:-3523672 -) -(1,13646:11033480,33966405:3523672,452978,122846 -k1,13646:11033480,33966405:3277 -h1,13646:14553875,33966405:0,411205,112570 -) -g1,13646:14756381,33966405 -g1,13646:16027779,33966405 -g1,13646:17620959,33966405 -(1,13646:17620959,33966405:0,452978,115847 -r1,13680:21144631,33966405:3523672,568825,115847 -k1,13646:17620959,33966405:-3523672 -) -(1,13646:17620959,33966405:3523672,452978,115847 -k1,13646:17620959,33966405:3277 -h1,13646:21141354,33966405:0,411205,112570 -) -g1,13646:21343860,33966405 -g1,13646:22229251,33966405 -g1,13646:23447565,33966405 -g1,13646:25912374,33966405 -k1,13647:31966991,33966405:3357810 -g1,13647:31966991,33966405 -) -] -) -] -r1,13680:32583029,34679075:26214,4912494,0 -) -] -) -) -g1,13647:32583029,34089251 -) -h1,13647:6630773,34705289:0,0,0 -(1,13650:6630773,36038714:25952256,513147,126483 -h1,13649:6630773,36038714:983040,0,0 -k1,13649:8840345,36038714:272983 -k1,13649:11042707,36038714:272982 -k1,13649:13944339,36038714:272983 -k1,13649:15606685,36038714:272983 -k1,13649:17164173,36038714:272982 -k1,13649:18305508,36038714:272983 -k1,13649:19710953,36038714:272983 -k1,13649:21712120,36038714:272983 -k1,13649:22601140,36038714:272982 -k1,13649:25545370,36038714:272983 -k1,13649:28974567,36038714:272983 -k1,13649:29906841,36038714:272982 -k1,13649:31198909,36038714:272983 -k1,13649:32583029,36038714:0 -) -(1,13650:6630773,36880202:25952256,513147,134348 -k1,13650:32583028,36880202:23923260 -g1,13650:32583028,36880202 -) -v1,13652:6630773,38038317:0,393216,0 -(1,13659:6630773,40326781:25952256,2681680,196608 -g1,13659:6630773,40326781 -g1,13659:6630773,40326781 -g1,13659:6434165,40326781 -(1,13659:6434165,40326781:0,2681680,196608 -r1,13680:32779637,40326781:26345472,2878288,196608 -k1,13659:6434165,40326781:-26345472 -) -(1,13659:6434165,40326781:26345472,2681680,196608 -[1,13659:6630773,40326781:25952256,2485072,0 -(1,13654:6630773,38245935:25952256,404226,76021 -(1,13653:6630773,38245935:0,0,0 -g1,13653:6630773,38245935 -g1,13653:6630773,38245935 -g1,13653:6303093,38245935 -(1,13653:6303093,38245935:0,0,0 -) -g1,13653:6630773,38245935 -) -k1,13654:6630773,38245935:0 -h1,13654:11689104,38245935:0,0,0 -k1,13654:32583028,38245935:20893924 -g1,13654:32583028,38245935 -) -(1,13655:6630773,38912113:25952256,410518,101187 -h1,13655:6630773,38912113:0,0,0 -g1,13655:10424521,38912113 -g1,13655:11372959,38912113 -g1,13655:18012019,38912113 -g1,13655:18644311,38912113 -g1,13655:24334935,38912113 -g1,13655:25915664,38912113 -g1,13655:27812539,38912113 -k1,13655:27812539,38912113:0 -h1,13655:29077122,38912113:0,0,0 -k1,13655:32583029,38912113:3505907 -g1,13655:32583029,38912113 -) -(1,13656:6630773,39578291:25952256,410518,107478 -h1,13656:6630773,39578291:0,0,0 -g1,13656:6946919,39578291 -g1,13656:7263065,39578291 -g1,13656:7579211,39578291 -g1,13656:7895357,39578291 -g1,13656:8211503,39578291 -g1,13656:8527649,39578291 -g1,13656:8843795,39578291 -g1,13656:9159941,39578291 -g1,13656:9476087,39578291 -g1,13656:9792233,39578291 -g1,13656:10108379,39578291 -g1,13656:10424525,39578291 -g1,13656:10740671,39578291 -g1,13656:11056817,39578291 -g1,13656:11372963,39578291 -g1,13656:11689109,39578291 -g1,13656:12005255,39578291 -g1,13656:12321401,39578291 -g1,13656:12637547,39578291 -g1,13656:12953693,39578291 -g1,13656:13269839,39578291 -g1,13656:13585985,39578291 -g1,13656:13902131,39578291 -g1,13656:14218277,39578291 -g1,13656:14534423,39578291 -g1,13656:14850569,39578291 -g1,13656:16747443,39578291 -g1,13656:17379735,39578291 -g1,13656:24018796,39578291 -g1,13656:27496399,39578291 -g1,13656:29077129,39578291 -k1,13656:29077129,39578291:0 -h1,13656:30657858,39578291:0,0,0 -k1,13656:32583029,39578291:1925171 -g1,13656:32583029,39578291 -) -(1,13657:6630773,40244469:25952256,404226,82312 -h1,13657:6630773,40244469:0,0,0 -g1,13657:6946919,40244469 -g1,13657:7263065,40244469 -g1,13657:7579211,40244469 -g1,13657:7895357,40244469 -g1,13657:8211503,40244469 -g1,13657:8527649,40244469 -g1,13657:8843795,40244469 -g1,13657:9159941,40244469 -g1,13657:9476087,40244469 -g1,13657:9792233,40244469 -g1,13657:10108379,40244469 -g1,13657:10424525,40244469 -g1,13657:10740671,40244469 -g1,13657:11056817,40244469 -g1,13657:11372963,40244469 -g1,13657:11689109,40244469 -g1,13657:12005255,40244469 -g1,13657:12321401,40244469 -g1,13657:12637547,40244469 -g1,13657:12953693,40244469 -g1,13657:13269839,40244469 -g1,13657:13585985,40244469 -g1,13657:13902131,40244469 -g1,13657:14218277,40244469 -g1,13657:14534423,40244469 -g1,13657:14850569,40244469 -g1,13657:18644317,40244469 -g1,13657:19276609,40244469 -g1,13657:22121921,40244469 -g1,13657:22754213,40244469 -g1,13657:24967234,40244469 -g1,13657:25915672,40244469 -h1,13657:26864109,40244469:0,0,0 -k1,13657:32583029,40244469:5718920 -g1,13657:32583029,40244469 -) -] -) -g1,13659:32583029,40326781 -g1,13659:6630773,40326781 -g1,13659:6630773,40326781 -g1,13659:32583029,40326781 -g1,13659:32583029,40326781 -) -h1,13659:6630773,40523389:0,0,0 -(1,13663:6630773,41856814:25952256,513147,134348 -h1,13662:6630773,41856814:983040,0,0 -k1,13662:9307213,41856814:257506 -k1,13662:10433071,41856814:257506 -k1,13662:11967874,41856814:257506 -k1,13662:13614743,41856814:257506 -k1,13662:14819900,41856814:257506 -k1,13662:17548113,41856814:257506 -k1,13662:19354889,41856814:257505 -k1,13662:21347788,41856814:257506 -k1,13662:24201175,41856814:257506 -k1,13662:25406332,41856814:257506 -k1,13662:26429954,41856814:257506 -k1,13662:29751924,41856814:257506 -k1,13662:32080368,41856814:257506 -$1,13662:32080368,41856814 -$1,13662:32583029,41856814 -k1,13663:32583029,41856814:0 -) -(1,13663:6630773,42698302:25952256,505283,138281 -g1,13662:8021447,42698302 -$1,13662:8021447,42698302 -$1,13662:8573260,42698302 -g1,13662:8772489,42698302 -g1,13662:10857189,42698302 -g1,13662:11924770,42698302 -g1,13662:15021346,42698302 -g1,13662:16617147,42698302 -g1,13662:17467804,42698302 -k1,13663:32583029,42698302:12099914 -g1,13663:32583029,42698302 -) -v1,13665:6630773,43856417:0,393216,0 -(1,13671:6630773,45510161:25952256,2046960,196608 -g1,13671:6630773,45510161 -g1,13671:6630773,45510161 -g1,13671:6434165,45510161 -(1,13671:6434165,45510161:0,2046960,196608 -r1,13680:32779637,45510161:26345472,2243568,196608 -k1,13671:6434165,45510161:-26345472 -) -(1,13671:6434165,45510161:26345472,2046960,196608 -[1,13671:6630773,45510161:25952256,1850352,0 -(1,13667:6630773,44070327:25952256,410518,107478 -(1,13666:6630773,44070327:0,0,0 -g1,13666:6630773,44070327 -g1,13666:6630773,44070327 -g1,13666:6303093,44070327 -(1,13666:6303093,44070327:0,0,0 -) -g1,13666:6630773,44070327 -) -k1,13667:6630773,44070327:0 -g1,13667:15166707,44070327 -g1,13667:17063581,44070327 -g1,13667:18012018,44070327 -k1,13667:18012018,44070327:0 -h1,13667:21173475,44070327:0,0,0 -k1,13667:32583029,44070327:11409554 -g1,13667:32583029,44070327 -) -(1,13668:6630773,44736505:25952256,404226,101187 -h1,13668:6630773,44736505:0,0,0 -g1,13668:6946919,44736505 -g1,13668:7263065,44736505 -g1,13668:7579211,44736505 -g1,13668:7895357,44736505 -g1,13668:8211503,44736505 -g1,13668:8527649,44736505 -g1,13668:8843795,44736505 -g1,13668:10740670,44736505 -g1,13668:11372962,44736505 -g1,13668:14850565,44736505 -g1,13668:15482857,44736505 -g1,13668:16115149,44736505 -g1,13668:20541189,44736505 -h1,13668:20857335,44736505:0,0,0 -k1,13668:32583029,44736505:11725694 -g1,13668:32583029,44736505 -) -(1,13669:6630773,45402683:25952256,404226,107478 -h1,13669:6630773,45402683:0,0,0 -g1,13669:6946919,45402683 -g1,13669:7263065,45402683 -g1,13669:7579211,45402683 -k1,13669:7579211,45402683:0 -h1,13669:10740667,45402683:0,0,0 -k1,13669:32583029,45402683:21842362 -g1,13669:32583029,45402683 -) -] -) -g1,13671:32583029,45510161 -g1,13671:6630773,45510161 -g1,13671:6630773,45510161 -g1,13671:32583029,45510161 -g1,13671:32583029,45510161 -) -h1,13671:6630773,45706769:0,0,0 -] -(1,13680:32583029,45706769:0,0,0 -g1,13680:32583029,45706769 -) -) -] -(1,13680:6630773,47279633:25952256,0,0 -h1,13680:6630773,47279633:25952256,0,0 -) -] -(1,13680:4262630,4025873:0,0,0 -[1,13680:-473656,4025873:0,0,0 -(1,13680:-473656,-710413:0,0,0 -(1,13680:-473656,-710413:0,0,0 -g1,13680:-473656,-710413 -) -g1,13680:-473656,-710413 -) -] -) -] -!21022 -}259 -Input:1992:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1993:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1994:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1995:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1996:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!472 -{260 -[1,13717:4262630,47279633:28320399,43253760,0 -(1,13717:4262630,4025873:0,0,0 -[1,13717:-473656,4025873:0,0,0 -(1,13717:-473656,-710413:0,0,0 -(1,13717:-473656,-644877:0,0,0 -k1,13717:-473656,-644877:-65536 -) -(1,13717:-473656,4736287:0,0,0 -k1,13717:-473656,4736287:5209943 -) -g1,13717:-473656,-710413 -) -] -) -[1,13717:6630773,47279633:25952256,43253760,0 -[1,13717:6630773,4812305:25952256,786432,0 -(1,13717:6630773,4812305:25952256,485622,11795 -(1,13717:6630773,4812305:25952256,485622,11795 -g1,13717:3078558,4812305 -[1,13717:3078558,4812305:0,0,0 -(1,13717:3078558,2439708:0,1703936,0 -k1,13717:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,13717:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,13717:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,13717:3078558,4812305:0,0,0 -(1,13717:3078558,2439708:0,1703936,0 -g1,13717:29030814,2439708 -g1,13717:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,13717:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,13717:37855564,2439708:1179648,16384,0 -) -) -k1,13717:3078556,2439708:-34777008 -) -] -[1,13717:3078558,4812305:0,0,0 -(1,13717:3078558,49800853:0,16384,2228224 -k1,13717:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,13717:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,13717:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,13717:3078558,4812305:0,0,0 -(1,13717:3078558,49800853:0,16384,2228224 -g1,13717:29030814,49800853 -g1,13717:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,13717:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,13717:37855564,49800853:1179648,16384,0 -) -) -k1,13717:3078556,49800853:-34777008 -) -] -g1,13717:6630773,4812305 -g1,13717:6630773,4812305 -g1,13717:10347975,4812305 -k1,13717:31387651,4812305:21039676 -) -) -] -[1,13717:6630773,45706769:25952256,40108032,0 -(1,13717:6630773,45706769:25952256,40108032,0 -(1,13717:6630773,45706769:0,0,0 -g1,13717:6630773,45706769 -) -[1,13717:6630773,45706769:25952256,40108032,0 -(1,13674:6630773,14682403:25952256,9083666,0 -k1,13674:10523651,14682403:3892878 -h1,13673:10523651,14682403:0,0,0 -(1,13673:10523651,14682403:18166500,9083666,0 -(1,13673:10523651,14682403:18167376,9083688,0 -(1,13673:10523651,14682403:18167376,9083688,0 -(1,13673:10523651,14682403:0,9083688,0 -(1,13673:10523651,14682403:0,14208860,0 -(1,13673:10523651,14682403:28417720,14208860,0 -) -k1,13673:10523651,14682403:-28417720 -) -) -g1,13673:28691027,14682403 -) -) -) -g1,13674:28690151,14682403 -k1,13674:32583029,14682403:3892878 -) -(1,13681:6630773,15523891:25952256,513147,134348 -h1,13680:6630773,15523891:983040,0,0 -k1,13680:8718095,15523891:150733 -k1,13680:10211660,15523891:150732 -k1,13680:11756344,15523891:150733 -k1,13680:14971541,15523891:150733 -k1,13680:15773701,15523891:150732 -k1,13680:18544563,15523891:150733 -k1,13680:19051156,15523891:150733 -k1,13680:20479185,15523891:150732 -k1,13680:22023869,15523891:150733 -k1,13680:22530462,15523891:150733 -k1,13680:26521604,15523891:150732 -k1,13680:30071034,15523891:150733 -k1,13680:32583029,15523891:0 -) -(1,13681:6630773,16365379:25952256,513147,126483 -k1,13680:7817882,16365379:239458 -k1,13680:8413201,16365379:239459 -k1,13680:10960837,16365379:239458 -k1,13680:15914955,16365379:239458 -k1,13680:18142776,16365379:239459 -k1,13680:19065119,16365379:239458 -k1,13680:21060287,16365379:239458 -k1,13680:22349632,16365379:239458 -k1,13680:24867778,16365379:239459 -h1,13680:25838366,16365379:0,0,0 -k1,13680:26077824,16365379:239458 -k1,13680:27508727,16365379:239458 -k1,13680:30026873,16365379:239459 -h1,13680:31395920,16365379:0,0,0 -k1,13680:31635378,16365379:239458 -k1,13680:32583029,16365379:0 -) -(1,13681:6630773,17206867:25952256,513147,126483 -k1,13680:10677003,17206867:239244 -k1,13680:11725617,17206867:239244 -k1,13680:13867371,17206867:239244 -k1,13680:15298060,17206867:239244 -k1,13680:18027672,17206867:239244 -k1,13680:22237087,17206867:239244 -k1,13680:23429880,17206867:239244 -k1,13680:24603667,17206867:239244 -(1,13680:24603667,17206867:0,452978,115847 -r1,13717:28479051,17206867:3875384,568825,115847 -k1,13680:24603667,17206867:-3875384 -) -(1,13680:24603667,17206867:3875384,452978,115847 -g1,13680:26717215,17206867 -g1,13680:27420639,17206867 -h1,13680:28475774,17206867:0,411205,112570 -) -k1,13680:28718295,17206867:239244 -k1,13680:29608967,17206867:239244 -k1,13680:31563944,17206867:239244 -k1,13680:32583029,17206867:0 -) -(1,13681:6630773,18048355:25952256,513147,134348 -k1,13680:8302003,18048355:296285 -k1,13680:11670616,18048355:296285 -k1,13680:14173498,18048355:296285 -(1,13680:14173498,18048355:0,452978,115847 -r1,13717:19455730,18048355:5282232,568825,115847 -k1,13680:14173498,18048355:-5282232 -) -(1,13680:14173498,18048355:5282232,452978,115847 -g1,13680:16287046,18048355 -g1,13680:16990470,18048355 -h1,13680:19452453,18048355:0,411205,112570 -) -k1,13680:19752015,18048355:296285 -k1,13680:23023636,18048355:296286 -k1,13680:24339006,18048355:296285 -k1,13680:26900871,18048355:296285 -k1,13680:28813274,18048355:296285 -k1,13680:29768851,18048355:296285 -k1,13680:31084221,18048355:296285 -k1,13680:32583029,18048355:0 -) -(1,13681:6630773,18889843:25952256,505283,134348 -g1,13680:9960001,18889843 -g1,13680:11178315,18889843 -k1,13681:32583029,18889843:19856098 -g1,13681:32583029,18889843 -) -v1,13683:6630773,20080309:0,393216,0 -(1,13689:6630773,21734053:25952256,2046960,196608 -g1,13689:6630773,21734053 -g1,13689:6630773,21734053 -g1,13689:6434165,21734053 -(1,13689:6434165,21734053:0,2046960,196608 -r1,13717:32779637,21734053:26345472,2243568,196608 -k1,13689:6434165,21734053:-26345472 -) -(1,13689:6434165,21734053:26345472,2046960,196608 -[1,13689:6630773,21734053:25952256,1850352,0 -(1,13685:6630773,20294219:25952256,410518,107478 -(1,13684:6630773,20294219:0,0,0 -g1,13684:6630773,20294219 -g1,13684:6630773,20294219 -g1,13684:6303093,20294219 -(1,13684:6303093,20294219:0,0,0 -) -g1,13684:6630773,20294219 -) -k1,13685:6630773,20294219:0 -g1,13685:12953687,20294219 -g1,13685:14850562,20294219 -g1,13685:15482854,20294219 -g1,13685:18960457,20294219 -g1,13685:19592749,20294219 -g1,13685:20225041,20294219 -g1,13685:24334935,20294219 -g1,13685:25915664,20294219 -g1,13685:26547956,20294219 -g1,13685:29077122,20294219 -h1,13685:29393268,20294219:0,0,0 -k1,13685:32583029,20294219:3189761 -g1,13685:32583029,20294219 -) -(1,13686:6630773,20960397:25952256,404226,107478 -h1,13686:6630773,20960397:0,0,0 -g1,13686:6946919,20960397 -g1,13686:7263065,20960397 -g1,13686:7579211,20960397 -g1,13686:7895357,20960397 -g1,13686:8211503,20960397 -g1,13686:12953688,20960397 -g1,13686:13585980,20960397 -g1,13686:16431292,20960397 -g1,13686:18328166,20960397 -g1,13686:18960458,20960397 -g1,13686:20541187,20960397 -h1,13686:20857333,20960397:0,0,0 -k1,13686:32583029,20960397:11725696 -g1,13686:32583029,20960397 -) -(1,13687:6630773,21626575:25952256,410518,107478 -h1,13687:6630773,21626575:0,0,0 -g1,13687:6946919,21626575 -g1,13687:7263065,21626575 -g1,13687:7579211,21626575 -g1,13687:7895357,21626575 -g1,13687:8211503,21626575 -g1,13687:13902125,21626575 -g1,13687:14534417,21626575 -k1,13687:14534417,21626575:0 -h1,13687:18328165,21626575:0,0,0 -k1,13687:32583029,21626575:14254864 -g1,13687:32583029,21626575 -) -] -) -g1,13689:32583029,21734053 -g1,13689:6630773,21734053 -g1,13689:6630773,21734053 -g1,13689:32583029,21734053 -g1,13689:32583029,21734053 -) -h1,13689:6630773,21930661:0,0,0 -(1,13692:6630773,31604151:25952256,9083666,0 -k1,13692:10523651,31604151:3892878 -h1,13691:10523651,31604151:0,0,0 -(1,13691:10523651,31604151:18166500,9083666,0 -(1,13691:10523651,31604151:18167376,9083688,0 -(1,13691:10523651,31604151:18167376,9083688,0 -(1,13691:10523651,31604151:0,9083688,0 -(1,13691:10523651,31604151:0,14208860,0 -(1,13691:10523651,31604151:28417720,14208860,0 -) -k1,13691:10523651,31604151:-28417720 -) -) -g1,13691:28691027,31604151 -) -) -) -g1,13692:28690151,31604151 -k1,13692:32583029,31604151:3892878 -) -(1,13699:6630773,32445639:25952256,513147,126483 -h1,13698:6630773,32445639:983040,0,0 -k1,13698:8908979,32445639:341617 -k1,13698:10634717,32445639:341618 -k1,13698:12068819,32445639:341617 -k1,13698:12766297,32445639:341618 -k1,13698:15236523,32445639:341617 -k1,13698:17252585,32445639:341617 -k1,13698:18785648,32445639:341618 -k1,13698:19743303,32445639:341617 -k1,13698:22924596,32445639:341618 -k1,13698:24358698,32445639:341617 -k1,13698:25719400,32445639:341617 -k1,13698:27435963,32445639:341618 -k1,13698:29077159,32445639:341617 -k1,13698:30180305,32445639:341618 -k1,13698:31821501,32445639:341617 -k1,13698:32583029,32445639:0 -) -(1,13699:6630773,33287127:25952256,513147,134348 -k1,13698:9117386,33287127:304919 -(1,13698:9117386,33287127:0,452978,122846 -r1,13717:15454754,33287127:6337368,575824,122846 -k1,13698:9117386,33287127:-6337368 -) -(1,13698:9117386,33287127:6337368,452978,122846 -g1,13698:12286070,33287127 -g1,13698:12989494,33287127 -h1,13698:15451477,33287127:0,411205,112570 -) -k1,13698:15759673,33287127:304919 -k1,13698:16716020,33287127:304919 -k1,13698:19665972,33287127:304919 -k1,13698:20989976,33287127:304919 -k1,13698:23560475,33287127:304919 -(1,13698:23560475,33287127:0,452978,115847 -r1,13717:29897843,33287127:6337368,568825,115847 -k1,13698:23560475,33287127:-6337368 -) -(1,13698:23560475,33287127:6337368,452978,115847 -g1,13698:26729159,33287127 -g1,13698:27432583,33287127 -h1,13698:29894566,33287127:0,411205,112570 -) -k1,13698:30376432,33287127:304919 -k1,13699:32583029,33287127:0 -) -(1,13699:6630773,34128615:25952256,505283,134348 -(1,13698:6630773,34128615:0,452978,115847 -r1,13717:10154446,34128615:3523673,568825,115847 -k1,13698:6630773,34128615:-3523673 -) -(1,13698:6630773,34128615:3523673,452978,115847 -g1,13698:8744321,34128615 -g1,13698:9447745,34128615 -h1,13698:10151169,34128615:0,411205,112570 -) -g1,13698:10353675,34128615 -g1,13698:13237914,34128615 -g1,13698:14456228,34128615 -g1,13698:16154265,34128615 -g1,13698:19483493,34128615 -g1,13698:20701807,34128615 -k1,13699:32583029,34128615:10332606 -g1,13699:32583029,34128615 -) -v1,13701:6630773,35319081:0,393216,0 -(1,13707:6630773,36972825:25952256,2046960,196608 -g1,13707:6630773,36972825 -g1,13707:6630773,36972825 -g1,13707:6434165,36972825 -(1,13707:6434165,36972825:0,2046960,196608 -r1,13717:32779637,36972825:26345472,2243568,196608 -k1,13707:6434165,36972825:-26345472 -) -(1,13707:6434165,36972825:26345472,2046960,196608 -[1,13707:6630773,36972825:25952256,1850352,0 -(1,13703:6630773,35532991:25952256,410518,107478 -(1,13702:6630773,35532991:0,0,0 -g1,13702:6630773,35532991 -g1,13702:6630773,35532991 -g1,13702:6303093,35532991 -(1,13702:6303093,35532991:0,0,0 -) -g1,13702:6630773,35532991 -) -k1,13703:6630773,35532991:0 -g1,13703:12953687,35532991 -g1,13703:14850562,35532991 -g1,13703:15482854,35532991 -g1,13703:18960457,35532991 -g1,13703:19592749,35532991 -g1,13703:20225041,35532991 -g1,13703:24334935,35532991 -g1,13703:25915664,35532991 -g1,13703:26547956,35532991 -g1,13703:29077122,35532991 -h1,13703:29393268,35532991:0,0,0 -k1,13703:32583029,35532991:3189761 -g1,13703:32583029,35532991 -) -(1,13704:6630773,36199169:25952256,404226,107478 -h1,13704:6630773,36199169:0,0,0 -g1,13704:6946919,36199169 -g1,13704:7263065,36199169 -g1,13704:7579211,36199169 -g1,13704:7895357,36199169 -g1,13704:8211503,36199169 -g1,13704:12953688,36199169 -g1,13704:13585980,36199169 -g1,13704:14850563,36199169 -g1,13704:17695874,36199169 -g1,13704:18328166,36199169 -g1,13704:21173478,36199169 -h1,13704:21489624,36199169:0,0,0 -k1,13704:32583029,36199169:11093405 -g1,13704:32583029,36199169 -) -(1,13705:6630773,36865347:25952256,410518,107478 -h1,13705:6630773,36865347:0,0,0 -g1,13705:6946919,36865347 -g1,13705:7263065,36865347 -g1,13705:7579211,36865347 -g1,13705:7895357,36865347 -g1,13705:8211503,36865347 -g1,13705:13902125,36865347 -g1,13705:14534417,36865347 -k1,13705:14534417,36865347:0 -h1,13705:19276602,36865347:0,0,0 -k1,13705:32583029,36865347:13306427 -g1,13705:32583029,36865347 -) -] -) -g1,13707:32583029,36972825 -g1,13707:6630773,36972825 -g1,13707:6630773,36972825 -g1,13707:32583029,36972825 -g1,13707:32583029,36972825 -) -h1,13707:6630773,37169433:0,0,0 -] -(1,13717:32583029,45706769:0,0,0 -g1,13717:32583029,45706769 -) -) -] -(1,13717:6630773,47279633:25952256,0,0 -h1,13717:6630773,47279633:25952256,0,0 -) -] -(1,13717:4262630,4025873:0,0,0 -[1,13717:-473656,4025873:0,0,0 -(1,13717:-473656,-710413:0,0,0 -(1,13717:-473656,-710413:0,0,0 -g1,13717:-473656,-710413 -) -g1,13717:-473656,-710413 -) -] -) -] -!13365 -}260 -Input:1997:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1998:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1999:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2000:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2001:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2002:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2003:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2004:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2005:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2006:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2007:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2008:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2009:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2010:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2011:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2012:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1484 -{261 -[1,13762:4262630,47279633:28320399,43253760,0 -(1,13762:4262630,4025873:0,0,0 -[1,13762:-473656,4025873:0,0,0 -(1,13762:-473656,-710413:0,0,0 -(1,13762:-473656,-644877:0,0,0 -k1,13762:-473656,-644877:-65536 -) -(1,13762:-473656,4736287:0,0,0 -k1,13762:-473656,4736287:5209943 -) -g1,13762:-473656,-710413 -) -] -) -[1,13762:6630773,47279633:25952256,43253760,0 -[1,13762:6630773,4812305:25952256,786432,0 -(1,13762:6630773,4812305:25952256,513147,134348 -(1,13762:6630773,4812305:25952256,513147,134348 -g1,13762:3078558,4812305 -[1,13762:3078558,4812305:0,0,0 -(1,13762:3078558,2439708:0,1703936,0 -k1,13762:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,13762:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,13762:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,13762:3078558,4812305:0,0,0 -(1,13762:3078558,2439708:0,1703936,0 -g1,13762:29030814,2439708 -g1,13762:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,13762:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,13762:37855564,2439708:1179648,16384,0 -) -) -k1,13762:3078556,2439708:-34777008 -) -] -[1,13762:3078558,4812305:0,0,0 -(1,13762:3078558,49800853:0,16384,2228224 -k1,13762:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,13762:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,13762:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,13762:3078558,4812305:0,0,0 -(1,13762:3078558,49800853:0,16384,2228224 -g1,13762:29030814,49800853 -g1,13762:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,13762:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,13762:37855564,49800853:1179648,16384,0 -) -) -k1,13762:3078556,49800853:-34777008 -) -] -g1,13762:6630773,4812305 -k1,13762:25712890,4812305:17886740 -g1,13762:29057847,4812305 -g1,13762:29873114,4812305 -) -) -] -[1,13762:6630773,45706769:25952256,40108032,0 -(1,13762:6630773,45706769:25952256,40108032,0 -(1,13762:6630773,45706769:0,0,0 -g1,13762:6630773,45706769 -) -[1,13762:6630773,45706769:25952256,40108032,0 -(1,13710:6630773,14682403:25952256,9083666,0 -k1,13710:10523651,14682403:3892878 -h1,13709:10523651,14682403:0,0,0 -(1,13709:10523651,14682403:18166500,9083666,0 -(1,13709:10523651,14682403:18167376,9083688,0 -(1,13709:10523651,14682403:18167376,9083688,0 -(1,13709:10523651,14682403:0,9083688,0 -(1,13709:10523651,14682403:0,14208860,0 -(1,13709:10523651,14682403:28417720,14208860,0 -) -k1,13709:10523651,14682403:-28417720 -) -) -g1,13709:28691027,14682403 -) -) -) -g1,13710:28690151,14682403 -k1,13710:32583029,14682403:3892878 -) -v1,13717:6630773,16048179:0,393216,0 -(1,13718:6630773,19164197:25952256,3509234,616038 -g1,13718:6630773,19164197 -(1,13718:6630773,19164197:25952256,3509234,616038 -(1,13718:6630773,19780235:25952256,4125272,0 -[1,13718:6630773,19780235:25952256,4125272,0 -(1,13718:6630773,19754021:25952256,4072844,0 -r1,13762:6656987,19754021:26214,4072844,0 -[1,13718:6656987,19754021:25899828,4072844,0 -(1,13718:6656987,19164197:25899828,2893196,0 -[1,13718:7246811,19164197:24720180,2893196,0 -(1,13718:7246811,17358375:24720180,1087374,134348 -k1,13717:8702465,17358375:245951 -k1,13717:11310988,17358375:245950 -k1,13717:12576024,17358375:245951 -k1,13717:15894302,17358375:245950 -k1,13717:16791681,17358375:245951 -(1,13717:16791681,17358375:0,452978,115847 -r1,13762:19611930,17358375:2820249,568825,115847 -k1,13717:16791681,17358375:-2820249 -) -(1,13717:16791681,17358375:2820249,452978,115847 -k1,13717:16791681,17358375:3277 -h1,13717:19608653,17358375:0,411205,112570 -) -k1,13717:20031550,17358375:245950 -k1,13717:20960386,17358375:245951 -k1,13717:22015706,17358375:245950 -k1,13717:23280742,17358375:245951 -k1,13717:25792272,17358375:245950 -k1,13717:26785989,17358375:245951 -k1,13717:29057657,17358375:245950 -k1,13717:30796518,17358375:245951 -k1,13717:31966991,17358375:0 -) -(1,13718:7246811,18199863:24720180,513147,134348 -k1,13717:11175098,18199863:263514 -k1,13717:12227010,18199863:263514 -k1,13717:14261308,18199863:263515 -k1,13717:15334192,18199863:263514 -k1,13717:16616791,18199863:263514 -k1,13717:18909300,18199863:263514 -k1,13717:20806627,18199863:263514 -k1,13717:21601638,18199863:263514 -k1,13717:22884238,18199863:263515 -k1,13717:26334112,18199863:263514 -k1,13717:29232829,18199863:263514 -k1,13718:31966991,18199863:0 -) -(1,13718:7246811,19041351:24720180,505283,122846 -(1,13717:7246811,19041351:0,452978,115847 -r1,13762:10770483,19041351:3523672,568825,115847 -k1,13717:7246811,19041351:-3523672 -) -(1,13717:7246811,19041351:3523672,452978,115847 -k1,13717:7246811,19041351:3277 -h1,13717:10767206,19041351:0,411205,112570 -) -g1,13717:11143382,19041351 -(1,13717:11143382,19041351:0,452978,122846 -r1,13762:13611919,19041351:2468537,575824,122846 -k1,13717:11143382,19041351:-2468537 -) -(1,13717:11143382,19041351:2468537,452978,122846 -k1,13717:11143382,19041351:3277 -h1,13717:13608642,19041351:0,411205,112570 -) -g1,13717:13811148,19041351 -g1,13717:15201822,19041351 -(1,13717:15201822,19041351:0,452978,115847 -r1,13762:17670359,19041351:2468537,568825,115847 -k1,13717:15201822,19041351:-2468537 -) -(1,13717:15201822,19041351:2468537,452978,115847 -k1,13717:15201822,19041351:3277 -h1,13717:17667082,19041351:0,411205,112570 -) -k1,13718:31966991,19041351:13969607 -g1,13718:31966991,19041351 -) -] -) -] -r1,13762:32583029,19754021:26214,4072844,0 -) -] -) -) -g1,13718:32583029,19164197 -) -h1,13718:6630773,19780235:0,0,0 -v1,13721:6630773,21146011:0,393216,0 -(1,13722:6630773,24255030:25952256,3502235,616038 -g1,13722:6630773,24255030 -(1,13722:6630773,24255030:25952256,3502235,616038 -(1,13722:6630773,24871068:25952256,4118273,0 -[1,13722:6630773,24871068:25952256,4118273,0 -(1,13722:6630773,24844854:25952256,4065845,0 -r1,13762:6656987,24844854:26214,4065845,0 -[1,13722:6656987,24844854:25899828,4065845,0 -(1,13722:6656987,24255030:25899828,2886197,0 -[1,13722:7246811,24255030:24720180,2886197,0 -(1,13722:7246811,22456207:24720180,1087374,134348 -k1,13721:8589995,22456207:133481 -k1,13721:9872322,22456207:133481 -k1,13721:13093859,22456207:133481 -k1,13721:13913503,22456207:133482 -k1,13721:17449613,22456207:133481 -k1,13721:18530745,22456207:133481 -k1,13721:21728690,22456207:133481 -k1,13721:22545056,22456207:133481 -k1,13721:24075109,22456207:133481 -k1,13721:26719931,22456207:133482 -(1,13721:26719931,22456207:0,414482,115847 -r1,13762:29891891,22456207:3171960,530329,115847 -k1,13721:26719931,22456207:-3171960 -) -(1,13721:26719931,22456207:3171960,414482,115847 -k1,13721:26719931,22456207:3277 -h1,13721:29888614,22456207:0,411205,112570 -) -k1,13721:30025372,22456207:133481 -k1,13721:30810281,22456207:133481 -k1,13721:31966991,22456207:0 -) -(1,13722:7246811,23297695:24720180,513147,126483 -k1,13721:8177418,23297695:247722 -k1,13721:10075336,23297695:247721 -k1,13721:10982350,23297695:247722 -k1,13721:12249157,23297695:247722 -k1,13721:15561342,23297695:247721 -k1,13721:17322290,23297695:247722 -k1,13721:18331540,23297695:247722 -(1,13721:18331540,23297695:0,452978,122846 -r1,13762:21855212,23297695:3523672,575824,122846 -k1,13721:18331540,23297695:-3523672 -) -(1,13721:18331540,23297695:3523672,452978,122846 -k1,13721:18331540,23297695:3277 -h1,13721:21851935,23297695:0,411205,112570 -) -k1,13721:22276603,23297695:247721 -k1,13721:24017891,23297695:247722 -k1,13721:24951775,23297695:247722 -(1,13721:24951775,23297695:0,452978,115847 -r1,13762:26716888,23297695:1765113,568825,115847 -k1,13721:24951775,23297695:-1765113 -) -(1,13721:24951775,23297695:1765113,452978,115847 -k1,13721:24951775,23297695:3277 -h1,13721:26713611,23297695:0,411205,112570 -) -k1,13721:27138279,23297695:247721 -(1,13721:27138279,23297695:0,459977,115847 -r1,13762:28551680,23297695:1413401,575824,115847 -k1,13721:27138279,23297695:-1413401 -) -(1,13721:27138279,23297695:1413401,459977,115847 -k1,13721:27138279,23297695:3277 -h1,13721:28548403,23297695:0,411205,112570 -) -k1,13721:28973072,23297695:247722 -(1,13721:28973072,23297695:0,452978,115847 -r1,13762:31793321,23297695:2820249,568825,115847 -k1,13721:28973072,23297695:-2820249 -) -(1,13721:28973072,23297695:2820249,452978,115847 -k1,13721:28973072,23297695:3277 -h1,13721:31790044,23297695:0,411205,112570 -) -k1,13722:31966991,23297695:0 -) -(1,13722:7246811,24139183:24720180,505283,115847 -(1,13721:7246811,24139183:0,452978,115847 -r1,13762:8660212,24139183:1413401,568825,115847 -k1,13721:7246811,24139183:-1413401 -) -(1,13721:7246811,24139183:1413401,452978,115847 -k1,13721:7246811,24139183:3277 -h1,13721:8656935,24139183:0,411205,112570 -) -g1,13721:9033111,24139183 -(1,13721:9033111,24139183:0,452978,115847 -r1,13762:10798224,24139183:1765113,568825,115847 -k1,13721:9033111,24139183:-1765113 -) -(1,13721:9033111,24139183:1765113,452978,115847 -k1,13721:9033111,24139183:3277 -h1,13721:10794947,24139183:0,411205,112570 -) -g1,13721:10997453,24139183 -g1,13721:12388127,24139183 -(1,13721:12388127,24139183:0,452978,115847 -r1,13762:14153240,24139183:1765113,568825,115847 -k1,13721:12388127,24139183:-1765113 -) -(1,13721:12388127,24139183:1765113,452978,115847 -k1,13721:12388127,24139183:3277 -h1,13721:14149963,24139183:0,411205,112570 -) -k1,13722:31966990,24139183:17640080 -g1,13722:31966990,24139183 -) -] -) -] -r1,13762:32583029,24844854:26214,4065845,0 -) -] -) -) -g1,13722:32583029,24255030 -) -h1,13722:6630773,24871068:0,0,0 -(1,13727:6630773,27486616:25952256,555811,12975 -(1,13727:6630773,27486616:2450326,527696,12975 -g1,13727:6630773,27486616 -g1,13727:9081099,27486616 -) -k1,13727:32583030,27486616:21735736 -g1,13727:32583030,27486616 -) -(1,13731:6630773,28721320:25952256,505283,134348 -k1,13730:7807234,28721320:222912 -k1,13730:9134427,28721320:222911 -k1,13730:10943310,28721320:222912 -k1,13730:13307282,28721320:222911 -k1,13730:14213079,28721320:222912 -k1,13730:18071272,28721320:222911 -k1,13730:19635051,28721320:222912 -k1,13730:21251913,28721320:222911 -(1,13730:21251913,28721320:0,452978,122846 -r1,13762:25127297,28721320:3875384,575824,122846 -k1,13730:21251913,28721320:-3875384 -) -(1,13730:21251913,28721320:3875384,452978,122846 -k1,13730:21251913,28721320:3277 -h1,13730:25124020,28721320:0,411205,112570 -) -k1,13730:25350209,28721320:222912 -k1,13730:28836158,28721320:222911 -k1,13730:30069635,28721320:222912 -k1,13730:31900144,28721320:222911 -k1,13730:32583029,28721320:0 -) -(1,13731:6630773,29562808:25952256,505283,126483 -g1,13730:8954679,29562808 -g1,13730:10528853,29562808 -k1,13731:32583029,29562808:20153632 -g1,13731:32583029,29562808 -) -(1,13733:6630773,30404296:25952256,513147,134348 -h1,13732:6630773,30404296:983040,0,0 -k1,13732:8813832,30404296:246470 -k1,13732:10458185,30404296:246470 -k1,13732:13436851,30404296:246470 -k1,13732:14878698,30404296:246470 -k1,13732:17619468,30404296:246470 -k1,13732:19782211,30404296:246470 -k1,13732:21596301,30404296:246469 -k1,13732:22861856,30404296:246470 -$1,13732:22861856,30404296 -$1,13732:23306845,30404296 -k1,13732:23553315,30404296:246470 -k1,13732:27581212,30404296:246470 -k1,13732:29221633,30404296:246470 -k1,13732:31923737,30404296:246470 -k1,13732:32583029,30404296:0 -) -(1,13733:6630773,31245784:25952256,513147,102892 -g1,13732:9513046,31245784 -$1,13732:9513046,31245784 -(1,13732:9919371,31344098:311689,334430,0 -) -g1,13732:10413120,31245784 -g1,13732:11163377,31245784 -g1,13732:11860471,31245784 -(1,13732:12266796,31344098:311689,339935,0 -) -g1,13732:12760545,31245784 -g1,13732:13510802,31245784 -$1,13732:14307720,31245784 -k1,13733:32583030,31245784:18101640 -g1,13733:32583030,31245784 -) -v1,13735:6630773,32436250:0,393216,0 -(1,13742:6630773,34743589:25952256,2700555,196608 -g1,13742:6630773,34743589 -g1,13742:6630773,34743589 -g1,13742:6434165,34743589 -(1,13742:6434165,34743589:0,2700555,196608 -r1,13762:32779637,34743589:26345472,2897163,196608 -k1,13742:6434165,34743589:-26345472 -) -(1,13742:6434165,34743589:26345472,2700555,196608 -[1,13742:6630773,34743589:25952256,2503947,0 -(1,13737:6630773,32643868:25952256,404226,76021 -(1,13736:6630773,32643868:0,0,0 -g1,13736:6630773,32643868 -g1,13736:6630773,32643868 -g1,13736:6303093,32643868 -(1,13736:6303093,32643868:0,0,0 -) -g1,13736:6630773,32643868 -) -k1,13737:6630773,32643868:0 -h1,13737:11056813,32643868:0,0,0 -k1,13737:32583029,32643868:21526216 -g1,13737:32583029,32643868 -) -(1,13738:6630773,33310046:25952256,410518,82312 -h1,13738:6630773,33310046:0,0,0 -g1,13738:10108376,33310046 -g1,13738:11056814,33310046 -g1,13738:17063583,33310046 -g1,13738:17695875,33310046 -g1,13738:20225041,33310046 -g1,13738:21489624,33310046 -g1,13738:22121916,33310046 -g1,13738:23070354,33310046 -g1,13738:24334937,33310046 -g1,13738:24967229,33310046 -k1,13738:24967229,33310046:0 -h1,13738:26231812,33310046:0,0,0 -k1,13738:32583029,33310046:6351217 -g1,13738:32583029,33310046 -) -(1,13739:6630773,33976224:25952256,404226,101187 -h1,13739:6630773,33976224:0,0,0 -g1,13739:6946919,33976224 -g1,13739:7263065,33976224 -g1,13739:7579211,33976224 -g1,13739:7895357,33976224 -g1,13739:8211503,33976224 -g1,13739:8527649,33976224 -g1,13739:8843795,33976224 -g1,13739:9159941,33976224 -g1,13739:9476087,33976224 -g1,13739:9792233,33976224 -g1,13739:10108379,33976224 -g1,13739:10424525,33976224 -g1,13739:10740671,33976224 -g1,13739:11056817,33976224 -g1,13739:11372963,33976224 -g1,13739:11689109,33976224 -g1,13739:12005255,33976224 -g1,13739:12321401,33976224 -g1,13739:12637547,33976224 -g1,13739:12953693,33976224 -g1,13739:13269839,33976224 -g1,13739:13585985,33976224 -g1,13739:13902131,33976224 -g1,13739:14218277,33976224 -g1,13739:14534423,33976224 -g1,13739:15166715,33976224 -g1,13739:15799007,33976224 -g1,13739:21805776,33976224 -k1,13739:21805776,33976224:0 -h1,13739:23070359,33976224:0,0,0 -k1,13739:32583029,33976224:9512670 -g1,13739:32583029,33976224 -) -(1,13740:6630773,34642402:25952256,404226,101187 -h1,13740:6630773,34642402:0,0,0 -g1,13740:6946919,34642402 -g1,13740:7263065,34642402 -g1,13740:7579211,34642402 -g1,13740:7895357,34642402 -g1,13740:8211503,34642402 -g1,13740:8527649,34642402 -g1,13740:8843795,34642402 -g1,13740:9159941,34642402 -g1,13740:9476087,34642402 -g1,13740:9792233,34642402 -g1,13740:10108379,34642402 -g1,13740:10424525,34642402 -g1,13740:10740671,34642402 -g1,13740:11056817,34642402 -g1,13740:11372963,34642402 -g1,13740:11689109,34642402 -g1,13740:12005255,34642402 -g1,13740:12321401,34642402 -g1,13740:12637547,34642402 -g1,13740:12953693,34642402 -g1,13740:13269839,34642402 -g1,13740:13585985,34642402 -g1,13740:13902131,34642402 -g1,13740:14218277,34642402 -g1,13740:14534423,34642402 -g1,13740:15166715,34642402 -g1,13740:15799007,34642402 -g1,13740:21489630,34642402 -g1,13740:24018796,34642402 -h1,13740:25915670,34642402:0,0,0 -k1,13740:32583029,34642402:6667359 -g1,13740:32583029,34642402 -) -] -) -g1,13742:32583029,34743589 -g1,13742:6630773,34743589 -g1,13742:6630773,34743589 -g1,13742:32583029,34743589 -g1,13742:32583029,34743589 -) -h1,13742:6630773,34940197:0,0,0 -(1,13746:6630773,36305973:25952256,513147,138281 -h1,13745:6630773,36305973:983040,0,0 -(1,13745:7613813,36305973:0,452978,122846 -r1,13762:11489197,36305973:3875384,575824,122846 -k1,13745:7613813,36305973:-3875384 -) -(1,13745:7613813,36305973:3875384,452978,122846 -k1,13745:7613813,36305973:3277 -h1,13745:11485920,36305973:0,411205,112570 -) -k1,13745:11625854,36305973:136657 -k1,13745:14384606,36305973:136657 -k1,13745:17695827,36305973:136657 -$1,13745:17695827,36305973 -$1,13745:18198488,36305973 -k1,13745:18335145,36305973:136657 -k1,13745:19663247,36305973:136657 -$1,13745:19663247,36305973 -$1,13745:20215060,36305973 -k1,13745:20525387,36305973:136657 -k1,13745:22055995,36305973:136657 -k1,13745:23002022,36305973:136657 -k1,13745:25908230,36305973:136657 -k1,13745:27236332,36305973:136657 -(1,13745:27236332,36305973:0,452978,115847 -r1,13762:29001445,36305973:1765113,568825,115847 -k1,13745:27236332,36305973:-1765113 -) -(1,13745:27236332,36305973:1765113,452978,115847 -k1,13745:27236332,36305973:3277 -h1,13745:28998168,36305973:0,411205,112570 -) -k1,13745:29138102,36305973:136657 -k1,13745:30466204,36305973:136657 -(1,13745:30466204,36305973:0,452978,122846 -r1,13762:32583029,36305973:2116825,575824,122846 -k1,13745:30466204,36305973:-2116825 -) -(1,13745:30466204,36305973:2116825,452978,122846 -k1,13745:30466204,36305973:3277 -h1,13745:32579752,36305973:0,411205,112570 -) -k1,13745:32583029,36305973:0 -) -(1,13746:6630773,37147461:25952256,513147,134348 -g1,13745:8223953,37147461 -g1,13745:11019063,37147461 -g1,13745:12502798,37147461 -g1,13745:14417760,37147461 -g1,13745:15383105,37147461 -g1,13745:16923201,37147461 -g1,13745:17781722,37147461 -g1,13745:19708480,37147461 -g1,13745:21176486,37147461 -g1,13745:23206791,37147461 -g1,13745:24425105,37147461 -g1,13745:27148781,37147461 -k1,13746:32583029,37147461:3913157 -g1,13746:32583029,37147461 -) -v1,13748:6630773,38337927:0,393216,0 -(1,13753:6630773,39325493:25952256,1380782,196608 -g1,13753:6630773,39325493 -g1,13753:6630773,39325493 -g1,13753:6434165,39325493 -(1,13753:6434165,39325493:0,1380782,196608 -r1,13762:32779637,39325493:26345472,1577390,196608 -k1,13753:6434165,39325493:-26345472 -) -(1,13753:6434165,39325493:26345472,1380782,196608 -[1,13753:6630773,39325493:25952256,1184174,0 -(1,13750:6630773,38551837:25952256,410518,107478 -(1,13749:6630773,38551837:0,0,0 -g1,13749:6630773,38551837 -g1,13749:6630773,38551837 -g1,13749:6303093,38551837 -(1,13749:6303093,38551837:0,0,0 -) -g1,13749:6630773,38551837 -) -k1,13750:6630773,38551837:0 -g1,13750:12637541,38551837 -g1,13750:14850561,38551837 -g1,13750:15798999,38551837 -g1,13750:17379728,38551837 -g1,13750:18012020,38551837 -g1,13750:21173477,38551837 -h1,13750:21489623,38551837:0,0,0 -k1,13750:32583029,38551837:11093406 -g1,13750:32583029,38551837 -) -(1,13751:6630773,39218015:25952256,404226,107478 -h1,13751:6630773,39218015:0,0,0 -g1,13751:6946919,39218015 -g1,13751:7263065,39218015 -k1,13751:7263065,39218015:0 -h1,13751:10740667,39218015:0,0,0 -k1,13751:32583029,39218015:21842362 -g1,13751:32583029,39218015 -) -] -) -g1,13753:32583029,39325493 -g1,13753:6630773,39325493 -g1,13753:6630773,39325493 -g1,13753:32583029,39325493 -g1,13753:32583029,39325493 -) -h1,13753:6630773,39522101:0,0,0 -] -(1,13762:32583029,45706769:0,0,0 -g1,13762:32583029,45706769 -) -) -] -(1,13762:6630773,47279633:25952256,0,0 -h1,13762:6630773,47279633:25952256,0,0 -) -] -(1,13762:4262630,4025873:0,0,0 -[1,13762:-473656,4025873:0,0,0 -(1,13762:-473656,-710413:0,0,0 -(1,13762:-473656,-710413:0,0,0 -g1,13762:-473656,-710413 -) -g1,13762:-473656,-710413 -) -] -) -] -!19171 -}261 -Input:2013:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2014:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2015:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2016:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2017:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2018:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2019:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2020:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2021:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2022:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2023:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2024:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2025:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2026:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2027:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2028:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2029:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1576 -{262 -[1,13805:4262630,47279633:28320399,43253760,0 -(1,13805:4262630,4025873:0,0,0 -[1,13805:-473656,4025873:0,0,0 -(1,13805:-473656,-710413:0,0,0 -(1,13805:-473656,-644877:0,0,0 -k1,13805:-473656,-644877:-65536 -) -(1,13805:-473656,4736287:0,0,0 -k1,13805:-473656,4736287:5209943 -) -g1,13805:-473656,-710413 -) -] -) -[1,13805:6630773,47279633:25952256,43253760,0 -[1,13805:6630773,4812305:25952256,786432,0 -(1,13805:6630773,4812305:25952256,485622,11795 -(1,13805:6630773,4812305:25952256,485622,11795 -g1,13805:3078558,4812305 -[1,13805:3078558,4812305:0,0,0 -(1,13805:3078558,2439708:0,1703936,0 -k1,13805:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,13805:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,13805:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,13805:3078558,4812305:0,0,0 -(1,13805:3078558,2439708:0,1703936,0 -g1,13805:29030814,2439708 -g1,13805:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,13805:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,13805:37855564,2439708:1179648,16384,0 -) -) -k1,13805:3078556,2439708:-34777008 -) -] -[1,13805:3078558,4812305:0,0,0 -(1,13805:3078558,49800853:0,16384,2228224 -k1,13805:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,13805:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,13805:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,13805:3078558,4812305:0,0,0 -(1,13805:3078558,49800853:0,16384,2228224 -g1,13805:29030814,49800853 -g1,13805:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,13805:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,13805:37855564,49800853:1179648,16384,0 -) -) -k1,13805:3078556,49800853:-34777008 -) -] -g1,13805:6630773,4812305 -g1,13805:6630773,4812305 -g1,13805:10347975,4812305 -k1,13805:31387651,4812305:21039676 -) -) -] -[1,13805:6630773,45706769:25952256,40108032,0 -(1,13805:6630773,45706769:25952256,40108032,0 -(1,13805:6630773,45706769:0,0,0 -g1,13805:6630773,45706769 -) -[1,13805:6630773,45706769:25952256,40108032,0 -(1,13756:6630773,14682403:25952256,9083666,0 -k1,13756:10523651,14682403:3892878 -h1,13755:10523651,14682403:0,0,0 -(1,13755:10523651,14682403:18166500,9083666,0 -(1,13755:10523651,14682403:18167376,9083688,0 -(1,13755:10523651,14682403:18167376,9083688,0 -(1,13755:10523651,14682403:0,9083688,0 -(1,13755:10523651,14682403:0,14208860,0 -(1,13755:10523651,14682403:28417720,14208860,0 -) -k1,13755:10523651,14682403:-28417720 -) -) -g1,13755:28691027,14682403 -) -) -) -g1,13756:28690151,14682403 -k1,13756:32583029,14682403:3892878 -) -(1,13763:6630773,15523891:25952256,505283,122846 -h1,13762:6630773,15523891:983040,0,0 -k1,13762:8714978,15523891:147616 -k1,13762:9966875,15523891:147615 -k1,13762:11049034,15523891:147616 -(1,13762:11049034,15523891:0,452978,122846 -r1,13805:16682978,15523891:5633944,575824,122846 -k1,13762:11049034,15523891:-5633944 -) -(1,13762:11049034,15523891:5633944,452978,122846 -g1,13762:13162582,15523891 -g1,13762:13866006,15523891 -h1,13762:16679701,15523891:0,411205,112570 -) -k1,13762:16830593,15523891:147615 -k1,13762:18169654,15523891:147616 -(1,13762:18169654,15523891:0,452978,115847 -r1,13805:20989903,15523891:2820249,568825,115847 -k1,13762:18169654,15523891:-2820249 -) -(1,13762:18169654,15523891:2820249,452978,115847 -g1,13762:19931490,15523891 -g1,13762:20634914,15523891 -h1,13762:20986626,15523891:0,411205,112570 -) -k1,13762:21137518,15523891:147615 -k1,13762:21936562,15523891:147616 -k1,13762:23799911,15523891:147616 -k1,13762:24966611,15523891:147615 -k1,13762:26124792,15523891:147616 -k1,13762:28742459,15523891:147615 -k1,13762:30540272,15523891:147616 -k1,13762:32583029,15523891:0 -) -(1,13763:6630773,16365379:25952256,505283,134348 -k1,13762:7491963,16365379:175028 -k1,13762:8283029,16365379:175028 -k1,13762:9477142,16365379:175028 -k1,13762:12313587,16365379:175028 -k1,13762:14530717,16365379:175028 -k1,13762:15388630,16365379:175028 -k1,13762:16656143,16365379:175028 -k1,13762:17187031,16365379:175028 -k1,13762:20983578,16365379:175028 -k1,13762:22948394,16365379:175028 -k1,13762:23774850,16365379:175028 -k1,13762:25847145,16365379:175028 -k1,13762:28918864,16365379:175028 -k1,13762:30112977,16365379:175028 -k1,13762:32583029,16365379:0 -) -(1,13763:6630773,17206867:25952256,513147,134348 -k1,13762:7441078,17206867:151013 -k1,13762:8611177,17206867:151014 -k1,13762:10276727,17206867:151013 -k1,13762:12061554,17206867:151014 -k1,13762:12863995,17206867:151013 -k1,13762:14107494,17206867:151014 -k1,13762:15390969,17206867:151013 -k1,13762:17913731,17206867:151014 -k1,13762:18874114,17206867:151013 -k1,13762:21615766,17206867:151014 -k1,13762:22785864,17206867:151013 -k1,13762:26129792,17206867:151014 -k1,13762:27621672,17206867:151013 -k1,13762:28970029,17206867:151014 -k1,13762:32583029,17206867:0 -) -(1,13763:6630773,18048355:25952256,513147,134348 -k1,13762:10843482,18048355:232052 -k1,13762:11703369,18048355:232052 -k1,13762:13632803,18048355:232052 -k1,13762:15011079,18048355:232051 -k1,13762:16941169,18048355:232052 -k1,13762:18707419,18048355:232052 -k1,13762:19598763,18048355:232052 -k1,13762:21171682,18048355:232052 -k1,13762:25037050,18048355:232052 -k1,13762:25920529,18048355:232051 -k1,13762:29345495,18048355:232052 -k1,13762:31391584,18048355:232052 -k1,13762:32583029,18048355:0 -) -(1,13763:6630773,18889843:25952256,513147,134348 -k1,13762:9505783,18889843:161819 -k1,13762:10319030,18889843:161819 -k1,13762:13006608,18889843:161820 -k1,13762:16816816,18889843:161819 -k1,13762:17997720,18889843:161819 -k1,13762:19252024,18889843:161819 -k1,13762:20073136,18889843:161820 -k1,13762:23856474,18889843:161819 -k1,13762:25028858,18889843:161819 -k1,13762:27660729,18889843:161819 -k1,13762:28354046,18889843:161820 -k1,13762:31955194,18889843:161819 -k1,13762:32583029,18889843:0 -) -(1,13763:6630773,19731331:25952256,513147,126483 -k1,13762:9645127,19731331:209413 -k1,13762:10470577,19731331:209412 -k1,13762:11699075,19731331:209413 -k1,13762:13275569,19731331:209413 -k1,13762:15183019,19731331:209412 -k1,13762:16411517,19731331:209413 -k1,13762:17961797,19731331:209413 -k1,13762:19162770,19731331:209413 -k1,13762:20142885,19731331:209412 -k1,13762:25042054,19731331:209413 -k1,13762:25902895,19731331:209413 -k1,13762:26468167,19731331:209412 -k1,13762:30247981,19731331:209413 -k1,13762:32583029,19731331:0 -) -(1,13763:6630773,20572819:25952256,505283,134348 -k1,13762:8423417,20572819:299078 -k1,13762:9408657,20572819:299078 -k1,13762:14381107,20572819:299078 -k1,13762:15489556,20572819:299079 -k1,13762:16144494,20572819:299078 -k1,13762:18717671,20572819:299078 -k1,13762:21142737,20572819:299078 -k1,13762:22899991,20572819:299078 -k1,13762:23657166,20572819:299078 -k1,13762:24487742,20572819:299079 -k1,13762:26121788,20572819:299078 -k1,13762:27072294,20572819:299078 -k1,13762:30254301,20572819:299078 -k1,13762:31572464,20572819:299078 -k1,13762:32583029,20572819:0 -) -(1,13763:6630773,21414307:25952256,505283,7863 -k1,13763:32583029,21414307:23308534 -g1,13763:32583029,21414307 -) -v1,13765:6630773,22552692:0,393216,0 -(1,13770:6630773,23540258:25952256,1380782,196608 -g1,13770:6630773,23540258 -g1,13770:6630773,23540258 -g1,13770:6434165,23540258 -(1,13770:6434165,23540258:0,1380782,196608 -r1,13805:32779637,23540258:26345472,1577390,196608 -k1,13770:6434165,23540258:-26345472 -) -(1,13770:6434165,23540258:26345472,1380782,196608 -[1,13770:6630773,23540258:25952256,1184174,0 -(1,13767:6630773,22766602:25952256,410518,107478 -(1,13766:6630773,22766602:0,0,0 -g1,13766:6630773,22766602 -g1,13766:6630773,22766602 -g1,13766:6303093,22766602 -(1,13766:6303093,22766602:0,0,0 -) -g1,13766:6630773,22766602 -) -k1,13767:6630773,22766602:0 -g1,13767:12637541,22766602 -g1,13767:14850561,22766602 -g1,13767:15798999,22766602 -g1,13767:17379728,22766602 -g1,13767:18012020,22766602 -g1,13767:21173477,22766602 -h1,13767:21489623,22766602:0,0,0 -k1,13767:32583029,22766602:11093406 -g1,13767:32583029,22766602 -) -(1,13768:6630773,23432780:25952256,404226,107478 -h1,13768:6630773,23432780:0,0,0 -g1,13768:6946919,23432780 -g1,13768:7263065,23432780 -g1,13768:12321396,23432780 -g1,13768:12953688,23432780 -g1,13768:16115145,23432780 -g1,13768:17695874,23432780 -g1,13768:18328166,23432780 -h1,13768:19908895,23432780:0,0,0 -k1,13768:32583029,23432780:12674134 -g1,13768:32583029,23432780 -) -] -) -g1,13770:32583029,23540258 -g1,13770:6630773,23540258 -g1,13770:6630773,23540258 -g1,13770:32583029,23540258 -g1,13770:32583029,23540258 -) -h1,13770:6630773,23736866:0,0,0 -(1,13773:6630773,33358276:25952256,9083666,0 -k1,13773:10523651,33358276:3892878 -h1,13772:10523651,33358276:0,0,0 -(1,13772:10523651,33358276:18166500,9083666,0 -(1,13772:10523651,33358276:18167376,9083688,0 -(1,13772:10523651,33358276:18167376,9083688,0 -(1,13772:10523651,33358276:0,9083688,0 -(1,13772:10523651,33358276:0,14208860,0 -(1,13772:10523651,33358276:28417720,14208860,0 -) -k1,13772:10523651,33358276:-28417720 -) -) -g1,13772:28691027,33358276 -) -) -) -g1,13773:28690151,33358276 -k1,13773:32583029,33358276:3892878 -) -v1,13780:6630773,34671971:0,393216,0 -(1,13781:6630773,37791626:25952256,3512871,616038 -g1,13781:6630773,37791626 -(1,13781:6630773,37791626:25952256,3512871,616038 -(1,13781:6630773,38407664:25952256,4128909,0 -[1,13781:6630773,38407664:25952256,4128909,0 -(1,13781:6630773,38381450:25952256,4076481,0 -r1,13805:6656987,38381450:26214,4076481,0 -[1,13781:6656987,38381450:25899828,4076481,0 -(1,13781:6656987,37791626:25899828,2896833,0 -[1,13781:7246811,37791626:24720180,2896833,0 -(1,13781:7246811,35982167:24720180,1087374,134348 -k1,13780:8687206,35982167:230692 -k1,13780:10215512,35982167:230693 -k1,13780:11840155,35982167:230692 -k1,13780:13089932,35982167:230692 -k1,13780:16723254,35982167:230693 -k1,13780:19159233,35982167:230692 -k1,13780:20041353,35982167:230692 -k1,13780:23883079,35982167:230692 -(1,13780:23883079,35982167:0,452978,115847 -r1,13805:25648192,35982167:1765113,568825,115847 -k1,13780:23883079,35982167:-1765113 -) -(1,13780:23883079,35982167:1765113,452978,115847 -k1,13780:23883079,35982167:3277 -h1,13780:25644915,35982167:0,411205,112570 -) -k1,13780:25878885,35982167:230693 -k1,13780:27301022,35982167:230692 -(1,13780:27301022,35982167:0,452978,115847 -r1,13805:28714423,35982167:1413401,568825,115847 -k1,13780:27301022,35982167:-1413401 -) -(1,13780:27301022,35982167:1413401,452978,115847 -k1,13780:27301022,35982167:3277 -h1,13780:28711146,35982167:0,411205,112570 -) -k1,13780:28945115,35982167:230692 -k1,13780:29791846,35982167:230693 -k1,13780:31041623,35982167:230692 -k1,13781:31966991,35982167:0 -) -(1,13781:7246811,36823655:24720180,513147,134348 -k1,13780:9381795,36823655:185943 -k1,13780:11596734,36823655:185944 -k1,13780:15503811,36823655:185943 -k1,13780:17238371,36823655:185944 -k1,13780:20030025,36823655:185943 -k1,13780:20875261,36823655:185944 -k1,13780:22080289,36823655:185943 -k1,13780:23655596,36823655:185944 -k1,13780:24833099,36823655:185943 -k1,13780:26620743,36823655:185944 -k1,13780:28903183,36823655:185943 -k1,13780:31966991,36823655:0 -) -(1,13781:7246811,37665143:24720180,513147,126483 -g1,13780:8062078,37665143 -g1,13780:9712929,37665143 -g1,13780:10571450,37665143 -g1,13780:11789764,37665143 -g1,13780:13596591,37665143 -g1,13780:14966293,37665143 -k1,13781:31966991,37665143:14897648 -g1,13781:31966991,37665143 -) -] -) -] -r1,13805:32583029,38381450:26214,4076481,0 -) -] -) -) -g1,13781:32583029,37791626 -) -h1,13781:6630773,38407664:0,0,0 -(1,13784:6630773,39721360:25952256,513147,126483 -h1,13783:6630773,39721360:983040,0,0 -k1,13783:9074812,39721360:197465 -k1,13783:12842678,39721360:197465 -k1,13783:13880970,39721360:197465 -k1,13783:15650644,39721360:197465 -k1,13783:16952391,39721360:197465 -k1,13783:17897622,39721360:197465 -k1,13783:19608312,39721360:197464 -k1,13783:20457205,39721360:197465 -k1,13783:22942532,39721360:197465 -k1,13783:24159082,39721360:197465 -k1,13783:28170742,39721360:197465 -k1,13783:29856530,39721360:197465 -k1,13783:30922347,39721360:197465 -k1,13783:32583029,39721360:0 -) -(1,13784:6630773,40562848:25952256,505283,134348 -g1,13783:7185862,40562848 -g1,13783:8395656,40562848 -g1,13783:9872182,40562848 -g1,13783:11806804,40562848 -g1,13783:12361893,40562848 -g1,13783:13940655,40562848 -g1,13783:16973005,40562848 -g1,13783:18566185,40562848 -g1,13783:21237432,40562848 -g1,13783:23447306,40562848 -g1,13783:24262573,40562848 -k1,13784:32583029,40562848:7090345 -g1,13784:32583029,40562848 -) -v1,13786:6630773,41701233:0,393216,0 -(1,13792:6630773,43354977:25952256,2046960,196608 -g1,13792:6630773,43354977 -g1,13792:6630773,43354977 -g1,13792:6434165,43354977 -(1,13792:6434165,43354977:0,2046960,196608 -r1,13805:32779637,43354977:26345472,2243568,196608 -k1,13792:6434165,43354977:-26345472 -) -(1,13792:6434165,43354977:26345472,2046960,196608 -[1,13792:6630773,43354977:25952256,1850352,0 -(1,13788:6630773,41915143:25952256,410518,107478 -(1,13787:6630773,41915143:0,0,0 -g1,13787:6630773,41915143 -g1,13787:6630773,41915143 -g1,13787:6303093,41915143 -(1,13787:6303093,41915143:0,0,0 -) -g1,13787:6630773,41915143 -) -k1,13788:6630773,41915143:0 -g1,13788:12637541,41915143 -g1,13788:14850561,41915143 -g1,13788:15798999,41915143 -g1,13788:17379728,41915143 -g1,13788:18012020,41915143 -g1,13788:20857331,41915143 -h1,13788:21173477,41915143:0,0,0 -k1,13788:32583029,41915143:11409552 -g1,13788:32583029,41915143 -) -(1,13789:6630773,42581321:25952256,404226,107478 -h1,13789:6630773,42581321:0,0,0 -g1,13789:6946919,42581321 -g1,13789:7263065,42581321 -g1,13789:12321396,42581321 -g1,13789:12953688,42581321 -g1,13789:15799000,42581321 -h1,13789:16115146,42581321:0,0,0 -k1,13789:32583029,42581321:16467883 -g1,13789:32583029,42581321 -) -(1,13790:6630773,43247499:25952256,410518,107478 -h1,13790:6630773,43247499:0,0,0 -g1,13790:6946919,43247499 -g1,13790:7263065,43247499 -g1,13790:14850562,43247499 -g1,13790:15482854,43247499 -g1,13790:18644311,43247499 -g1,13790:20225040,43247499 -g1,13790:20857332,43247499 -g1,13790:24018789,43247499 -g1,13790:26864100,43247499 -g1,13790:27496392,43247499 -h1,13790:29393266,43247499:0,0,0 -k1,13790:32583029,43247499:3189763 -g1,13790:32583029,43247499 -) -] -) -g1,13792:32583029,43354977 -g1,13792:6630773,43354977 -g1,13792:6630773,43354977 -g1,13792:32583029,43354977 -g1,13792:32583029,43354977 -) -h1,13792:6630773,43551585:0,0,0 -(1,13796:6630773,44865281:25952256,505283,134348 -h1,13795:6630773,44865281:983040,0,0 -k1,13795:8497518,44865281:255870 -k1,13795:11384659,44865281:255870 -k1,13795:12291956,44865281:255869 -(1,13795:12291956,44865281:0,452978,122846 -r1,13805:16167340,44865281:3875384,575824,122846 -k1,13795:12291956,44865281:-3875384 -) -(1,13795:12291956,44865281:3875384,452978,122846 -k1,13795:12291956,44865281:3277 -h1,13795:16164063,44865281:0,411205,112570 -) -k1,13795:16596880,44865281:255870 -(1,13795:16596880,44865281:0,452978,122846 -r1,13805:20472264,44865281:3875384,575824,122846 -k1,13795:16596880,44865281:-3875384 -) -(1,13795:16596880,44865281:3875384,452978,122846 -k1,13795:16596880,44865281:3277 -h1,13795:20468987,44865281:0,411205,112570 -) -k1,13795:20728134,44865281:255870 -k1,13795:22900277,44865281:255870 -k1,13795:26791429,44865281:255870 -k1,13795:28388165,44865281:255869 -k1,13795:30498704,44865281:255870 -k1,13795:31563944,44865281:255870 -k1,13795:32583029,44865281:0 -) -(1,13796:6630773,45706769:25952256,513147,126483 -g1,13795:9444233,45706769 -g1,13795:10302754,45706769 -g1,13795:11521068,45706769 -g1,13795:14291274,45706769 -g1,13795:17075898,45706769 -g1,13795:17926555,45706769 -g1,13795:21300348,45706769 -(1,13795:21300348,45706769:0,452978,115847 -r1,13805:22713749,45706769:1413401,568825,115847 -k1,13795:21300348,45706769:-1413401 -) -(1,13795:21300348,45706769:1413401,452978,115847 -k1,13795:21300348,45706769:3277 -h1,13795:22710472,45706769:0,411205,112570 -) -g1,13795:23086648,45706769 -(1,13795:23086648,45706769:0,414482,115847 -r1,13805:24500049,45706769:1413401,530329,115847 -k1,13795:23086648,45706769:-1413401 -) -(1,13795:23086648,45706769:1413401,414482,115847 -k1,13795:23086648,45706769:3277 -h1,13795:24496772,45706769:0,411205,112570 -) -g1,13795:24872948,45706769 -(1,13795:24872948,45706769:0,452978,115847 -r1,13805:26286349,45706769:1413401,568825,115847 -k1,13795:24872948,45706769:-1413401 -) -(1,13795:24872948,45706769:1413401,452978,115847 -k1,13795:24872948,45706769:3277 -h1,13795:26283072,45706769:0,411205,112570 -) -g1,13795:26485578,45706769 -g1,13795:27876252,45706769 -(1,13795:27876252,45706769:0,414482,115847 -r1,13805:29289653,45706769:1413401,530329,115847 -k1,13795:27876252,45706769:-1413401 -) -(1,13795:27876252,45706769:1413401,414482,115847 -k1,13795:27876252,45706769:3277 -h1,13795:29286376,45706769:0,411205,112570 -) -k1,13796:32583029,45706769:3119706 -g1,13796:32583029,45706769 -) -] -(1,13805:32583029,45706769:0,0,0 -g1,13805:32583029,45706769 -) -) -] -(1,13805:6630773,47279633:25952256,0,0 -h1,13805:6630773,47279633:25952256,0,0 -) -] -(1,13805:4262630,4025873:0,0,0 -[1,13805:-473656,4025873:0,0,0 -(1,13805:-473656,-710413:0,0,0 -(1,13805:-473656,-710413:0,0,0 -g1,13805:-473656,-710413 -) -g1,13805:-473656,-710413 -) -] -) -] -!17867 -}262 -Input:2030:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2031:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2032:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2033:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2034:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2035:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2036:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2037:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2038:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!840 -{263 -[1,13850:4262630,47279633:28320399,43253760,0 -(1,13850:4262630,4025873:0,0,0 -[1,13850:-473656,4025873:0,0,0 -(1,13850:-473656,-710413:0,0,0 -(1,13850:-473656,-644877:0,0,0 -k1,13850:-473656,-644877:-65536 -) -(1,13850:-473656,4736287:0,0,0 -k1,13850:-473656,4736287:5209943 -) -g1,13850:-473656,-710413 -) -] -) -[1,13850:6630773,47279633:25952256,43253760,0 -[1,13850:6630773,4812305:25952256,786432,0 -(1,13850:6630773,4812305:25952256,513147,134348 -(1,13850:6630773,4812305:25952256,513147,134348 -g1,13850:3078558,4812305 -[1,13850:3078558,4812305:0,0,0 -(1,13850:3078558,2439708:0,1703936,0 -k1,13850:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,13850:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,13850:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,13850:3078558,4812305:0,0,0 -(1,13850:3078558,2439708:0,1703936,0 -g1,13850:29030814,2439708 -g1,13850:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,13850:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,13850:37855564,2439708:1179648,16384,0 -) -) -k1,13850:3078556,2439708:-34777008 -) -] -[1,13850:3078558,4812305:0,0,0 -(1,13850:3078558,49800853:0,16384,2228224 -k1,13850:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,13850:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,13850:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,13850:3078558,4812305:0,0,0 -(1,13850:3078558,49800853:0,16384,2228224 -g1,13850:29030814,49800853 -g1,13850:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,13850:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,13850:37855564,49800853:1179648,16384,0 -) -) -k1,13850:3078556,49800853:-34777008 -) -] -g1,13850:6630773,4812305 -k1,13850:25712890,4812305:17886740 -g1,13850:29057847,4812305 -g1,13850:29873114,4812305 -) -) -] -[1,13850:6630773,45706769:25952256,40108032,0 -(1,13850:6630773,45706769:25952256,40108032,0 -(1,13850:6630773,45706769:0,0,0 -g1,13850:6630773,45706769 -) -[1,13850:6630773,45706769:25952256,40108032,0 -(1,13800:6630773,6254097:25952256,564462,139132 -(1,13800:6630773,6254097:2450326,534184,12975 -g1,13800:6630773,6254097 -g1,13800:9081099,6254097 -) -g1,13800:11747694,6254097 -g1,13800:14946310,6254097 -k1,13800:32583029,6254097:16487611 -g1,13800:32583029,6254097 -) -(1,13805:6630773,7488801:25952256,513147,134348 -k1,13804:9683943,7488801:224637 -k1,13804:12242317,7488801:224637 -k1,13804:14009672,7488801:224637 -k1,13804:14917195,7488801:224638 -k1,13804:16595421,7488801:224637 -k1,13804:19676772,7488801:224637 -k1,13804:20920494,7488801:224637 -k1,13804:23669578,7488801:224637 -k1,13804:24553507,7488801:224637 -k1,13804:26647232,7488801:224638 -k1,13804:28261232,7488801:224637 -k1,13804:30687879,7488801:224637 -k1,13804:31563944,7488801:224637 -k1,13804:32583029,7488801:0 -) -(1,13805:6630773,8330289:25952256,513147,134348 -k1,13804:9374241,8330289:219021 -k1,13804:10209301,8330289:219022 -k1,13804:13933187,8330289:219021 -k1,13804:17959195,8330289:219022 -k1,13804:20754436,8330289:219021 -k1,13804:22435546,8330289:219002 -k1,13804:25213094,8330289:219022 -(1,13804:25213094,8330289:0,459977,122846 -r1,13850:28385054,8330289:3171960,582823,122846 -k1,13804:25213094,8330289:-3171960 -) -(1,13804:25213094,8330289:3171960,459977,122846 -k1,13804:25213094,8330289:3277 -h1,13804:28381777,8330289:0,411205,112570 -) -k1,13804:28604075,8330289:219021 -k1,13804:30014542,8330289:219022 -k1,13804:31021961,8330289:219021 -k1,13805:32583029,8330289:0 -) -(1,13805:6630773,9171777:25952256,505283,126483 -k1,13804:9541027,9171777:204272 -(1,13804:9541027,9171777:0,459977,122846 -r1,13850:14471547,9171777:4930520,582823,122846 -k1,13804:9541027,9171777:-4930520 -) -(1,13804:9541027,9171777:4930520,459977,122846 -k1,13804:9541027,9171777:3277 -h1,13804:14468270,9171777:0,411205,112570 -) -k1,13804:14849488,9171777:204271 -(1,13804:14849488,9171777:0,459977,122846 -r1,13850:20131719,9171777:5282231,582823,122846 -k1,13804:14849488,9171777:-5282231 -) -(1,13804:14849488,9171777:5282231,459977,122846 -k1,13804:14849488,9171777:3277 -h1,13804:20128442,9171777:0,411205,112570 -) -k1,13804:20509661,9171777:204272 -k1,13804:21905378,9171777:204272 -(1,13804:21905378,9171777:0,459977,115847 -r1,13850:25077338,9171777:3171960,575824,115847 -k1,13804:21905378,9171777:-3171960 -) -(1,13804:21905378,9171777:3171960,459977,115847 -k1,13804:21905378,9171777:3277 -h1,13804:25074061,9171777:0,411205,112570 -) -k1,13804:25455279,9171777:204271 -k1,13804:27040395,9171777:204272 -k1,13804:29290700,9171777:204271 -k1,13804:29953069,9171777:204272 -k1,13804:32583029,9171777:0 -) -(1,13805:6630773,10013265:25952256,513147,134348 -k1,13804:7529574,10013265:247373 -k1,13804:10072018,10013265:247373 -k1,13804:11708754,10013265:247373 -k1,13804:12765497,10013265:247373 -k1,13804:14913414,10013265:247373 -k1,13804:16108438,10013265:247373 -k1,13804:19190898,10013265:247373 -k1,13804:21173664,10013265:247373 -k1,13804:24183380,10013265:247373 -k1,13804:25271580,10013265:247373 -k1,13804:27529598,10013265:247373 -k1,13804:28724622,10013265:247373 -k1,13804:31734338,10013265:247373 -k1,13805:32583029,10013265:0 -) -(1,13805:6630773,10854753:25952256,513147,134348 -k1,13804:8686000,10854753:166479 -k1,13804:11071529,10854753:166480 -k1,13804:14571169,10854753:166479 -(1,13804:14571169,10854753:0,459977,115847 -r1,13850:18094841,10854753:3523672,575824,115847 -k1,13804:14571169,10854753:-3523672 -) -(1,13804:14571169,10854753:3523672,459977,115847 -k1,13804:14571169,10854753:3277 -h1,13804:18091564,10854753:0,411205,112570 -) -k1,13804:18261320,10854753:166479 -k1,13804:19532081,10854753:166479 -k1,13804:20446327,10854753:166480 -k1,13804:22126032,10854753:166479 -k1,13804:22943939,10854753:166479 -k1,13804:24931008,10854753:166479 -k1,13804:27859831,10854753:166480 -k1,13804:31635378,10854753:166479 -k1,13804:32583029,10854753:0 -) -(1,13805:6630773,11696241:25952256,505283,126483 -k1,13804:8695693,11696241:164376 -k1,13804:10056757,11696241:164377 -k1,13804:13008379,11696241:164376 -k1,13804:14685982,11696241:164377 -k1,13804:15381855,11696241:164376 -k1,13804:17414007,11696241:164376 -(1,13804:17414007,11696241:0,414482,122846 -r1,13850:20234256,11696241:2820249,537328,122846 -k1,13804:17414007,11696241:-2820249 -) -(1,13804:17414007,11696241:2820249,414482,122846 -k1,13804:17414007,11696241:3277 -h1,13804:20230979,11696241:0,411205,112570 -) -k1,13804:20398633,11696241:164377 -k1,13804:21754454,11696241:164376 -k1,13804:24612360,11696241:164376 -k1,13804:25428165,11696241:164377 -k1,13804:26358657,11696241:164376 -k1,13804:27542119,11696241:164377 -k1,13804:29408465,11696241:164376 -k1,13804:32583029,11696241:0 -) -(1,13805:6630773,12537729:25952256,513147,134348 -k1,13804:7666067,12537729:166942 -k1,13804:9308223,12537729:166941 -k1,13804:10914991,12537729:166942 -k1,13804:12574842,12537729:166941 -k1,13804:14245835,12537729:166942 -k1,13804:15431862,12537729:166942 -k1,13804:17609448,12537729:166941 -k1,13804:18427818,12537729:166942 -k1,13804:19342525,12537729:166941 -k1,13804:22094862,12537729:166942 -k1,13804:23253364,12537729:166942 -k1,13804:24079597,12537729:166941 -k1,13804:25801708,12537729:166942 -(1,13804:25801708,12537729:0,459977,115847 -r1,13850:26863397,12537729:1061689,575824,115847 -k1,13804:25801708,12537729:-1061689 -) -(1,13804:25801708,12537729:1061689,459977,115847 -k1,13804:25801708,12537729:3277 -h1,13804:26860120,12537729:0,411205,112570 -) -k1,13804:27030338,12537729:166941 -k1,13804:30559277,12537729:166942 -k1,13804:32583029,12537729:0 -) -(1,13805:6630773,13379217:25952256,513147,126483 -k1,13804:9451574,13379217:229507 -k1,13804:11070444,13379217:229507 -k1,13804:12693902,13379217:229507 -k1,13804:15594656,13379217:229507 -k1,13804:19925407,13379217:229508 -k1,13804:24354461,13379217:229507 -k1,13804:25243260,13379217:229507 -k1,13804:27597444,13379217:229507 -k1,13804:30432662,13379217:229507 -k1,13804:32051532,13379217:229507 -k1,13804:32583029,13379217:0 -) -(1,13805:6630773,14220705:25952256,513147,134348 -k1,13804:10111063,14220705:185795 -k1,13804:11058385,14220705:185794 -k1,13804:13824332,14220705:185795 -k1,13804:15124893,14220705:185795 -k1,13804:16691531,14220705:185794 -k1,13804:19187470,14220705:185795 -k1,13804:21864943,14220705:185794 -k1,13804:23069823,14220705:185795 -k1,13804:25082106,14220705:185795 -k1,13804:25927192,14220705:185794 -k1,13804:27316228,14220705:185795 -k1,13804:29257733,14220705:185795 -k1,13804:30168355,14220705:185794 -k1,13804:30710010,14220705:185795 -k1,13804:32583029,14220705:0 -) -(1,13805:6630773,15062193:25952256,513147,126483 -g1,13804:8021447,15062193 -g1,13804:9574650,15062193 -g1,13804:11898556,15062193 -g1,13804:14759202,15062193 -k1,13805:32583029,15062193:15334770 -g1,13805:32583029,15062193 -) -v1,13807:6630773,16252659:0,393216,0 -(1,13813:6630773,17906403:25952256,2046960,196608 -g1,13813:6630773,17906403 -g1,13813:6630773,17906403 -g1,13813:6434165,17906403 -(1,13813:6434165,17906403:0,2046960,196608 -r1,13850:32779637,17906403:26345472,2243568,196608 -k1,13813:6434165,17906403:-26345472 -) -(1,13813:6434165,17906403:26345472,2046960,196608 -[1,13813:6630773,17906403:25952256,1850352,0 -(1,13809:6630773,16466569:25952256,410518,107478 -(1,13808:6630773,16466569:0,0,0 -g1,13808:6630773,16466569 -g1,13808:6630773,16466569 -g1,13808:6303093,16466569 -(1,13808:6303093,16466569:0,0,0 -) -g1,13808:6630773,16466569 -) -g1,13809:7579210,16466569 -g1,13809:8527648,16466569 -g1,13809:21173476,16466569 -g1,13809:23702642,16466569 -g1,13809:24334934,16466569 -g1,13809:26547955,16466569 -g1,13809:28444829,16466569 -g1,13809:29077121,16466569 -h1,13809:30657850,16466569:0,0,0 -k1,13809:32583029,16466569:1925179 -g1,13809:32583029,16466569 -) -(1,13810:6630773,17132747:25952256,404226,107478 -h1,13810:6630773,17132747:0,0,0 -g1,13810:10108376,17132747 -h1,13810:10424522,17132747:0,0,0 -k1,13810:32583030,17132747:22158508 -g1,13810:32583030,17132747 -) -(1,13811:6630773,17798925:25952256,410518,107478 -h1,13811:6630773,17798925:0,0,0 -g1,13811:6946919,17798925 -g1,13811:7263065,17798925 -g1,13811:12637543,17798925 -g1,13811:13269835,17798925 -g1,13811:15482855,17798925 -g1,13811:17379729,17798925 -g1,13811:18012021,17798925 -h1,13811:20857332,17798925:0,0,0 -k1,13811:32583029,17798925:11725697 -g1,13811:32583029,17798925 -) -] -) -g1,13813:32583029,17906403 -g1,13813:6630773,17906403 -g1,13813:6630773,17906403 -g1,13813:32583029,17906403 -g1,13813:32583029,17906403 -) -h1,13813:6630773,18103011:0,0,0 -(1,13816:6630773,27776501:25952256,9083666,0 -k1,13816:10523651,27776501:3892878 -h1,13815:10523651,27776501:0,0,0 -(1,13815:10523651,27776501:18166500,9083666,0 -(1,13815:10523651,27776501:18167376,9083688,0 -(1,13815:10523651,27776501:18167376,9083688,0 -(1,13815:10523651,27776501:0,9083688,0 -(1,13815:10523651,27776501:0,14208860,0 -(1,13815:10523651,27776501:28417720,14208860,0 -) -k1,13815:10523651,27776501:-28417720 -) -) -g1,13815:28691027,27776501 -) -) -) -g1,13816:28690151,27776501 -k1,13816:32583029,27776501:3892878 -) -(1,13824:6630773,29867761:25952256,527696,8650 -(1,13824:6630773,29867761:2450326,527696,0 -g1,13824:6630773,29867761 -g1,13824:9081099,29867761 -) -k1,13824:32583028,29867761:21863332 -g1,13824:32583028,29867761 -) -(1,13829:6630773,31102465:25952256,505283,122846 -k1,13828:7847536,31102465:263214 -k1,13828:9215032,31102465:263214 -k1,13828:10570732,31102465:263215 -(1,13828:10570732,31102465:0,452978,122846 -r1,13850:14446116,31102465:3875384,575824,122846 -k1,13828:10570732,31102465:-3875384 -) -(1,13828:10570732,31102465:3875384,452978,122846 -k1,13828:10570732,31102465:3277 -h1,13828:14442839,31102465:0,411205,112570 -) -k1,13828:14709330,31102465:263214 -k1,13828:15655429,31102465:263214 -(1,13828:15655429,31102465:0,452978,122846 -r1,13850:19882525,31102465:4227096,575824,122846 -k1,13828:15655429,31102465:-4227096 -) -(1,13828:15655429,31102465:4227096,452978,122846 -k1,13828:15655429,31102465:3277 -h1,13828:19879248,31102465:0,411205,112570 -) -k1,13828:20145739,31102465:263214 -k1,13828:21060381,31102465:263214 -k1,13828:22520938,31102465:263214 -k1,13828:24010332,31102465:263215 -k1,13828:26117729,31102465:263214 -k1,13828:27032371,31102465:263214 -k1,13828:31541007,31102465:263214 -k1,13829:32583029,31102465:0 -) -(1,13829:6630773,31943953:25952256,505283,126483 -(1,13828:6630773,31943953:0,452978,122846 -r1,13850:10506157,31943953:3875384,575824,122846 -k1,13828:6630773,31943953:-3875384 -) -(1,13828:6630773,31943953:3875384,452978,122846 -k1,13828:6630773,31943953:3277 -h1,13828:10502880,31943953:0,411205,112570 -) -k1,13828:10701528,31943953:195371 -k1,13828:12088345,31943953:195372 -(1,13828:12088345,31943953:0,452978,122846 -r1,13850:16315441,31943953:4227096,575824,122846 -k1,13828:12088345,31943953:-4227096 -) -(1,13828:12088345,31943953:4227096,452978,122846 -k1,13828:12088345,31943953:3277 -h1,13828:16312164,31943953:0,411205,112570 -) -k1,13828:16684482,31943953:195371 -k1,13828:17898939,31943953:195372 -k1,13828:20938573,31943953:195371 -(1,13828:20938573,31943953:0,452978,115847 -r1,13850:22703686,31943953:1765113,568825,115847 -k1,13828:20938573,31943953:-1765113 -) -(1,13828:20938573,31943953:1765113,452978,115847 -k1,13828:20938573,31943953:3277 -h1,13828:22700409,31943953:0,411205,112570 -) -k1,13828:22899058,31943953:195372 -k1,13828:25854805,31943953:195371 -k1,13828:27069262,31943953:195372 -k1,13828:28490812,31943953:195371 -k1,13828:29337612,31943953:195372 -k1,13828:30280749,31943953:195371 -k1,13828:32583029,31943953:0 -) -(1,13829:6630773,32785441:25952256,513147,126483 -k1,13828:8043365,32785441:221147 -k1,13828:9283597,32785441:221147 -k1,13828:11225720,32785441:221148 -k1,13828:14621431,32785441:221147 -(1,13828:14621431,32785441:0,414482,115847 -r1,13850:14979697,32785441:358266,530329,115847 -k1,13828:14621431,32785441:-358266 -) -(1,13828:14621431,32785441:358266,414482,115847 -k1,13828:14621431,32785441:3277 -h1,13828:14976420,32785441:0,411205,112570 -) -k1,13828:15200844,32785441:221147 -k1,13828:16613436,32785441:221147 -(1,13828:16613436,32785441:0,414482,115847 -r1,13850:16971702,32785441:358266,530329,115847 -k1,13828:16613436,32785441:-358266 -) -(1,13828:16613436,32785441:358266,414482,115847 -k1,13828:16613436,32785441:3277 -h1,13828:16968425,32785441:0,411205,112570 -) -k1,13828:17366519,32785441:221147 -k1,13828:18606752,32785441:221148 -k1,13828:21384458,32785441:221147 -k1,13828:22264897,32785441:221147 -k1,13828:23505129,32785441:221147 -k1,13828:25744130,32785441:221147 -k1,13828:26783167,32785441:221148 -k1,13828:28161024,32785441:221147 -k1,13828:30338421,32785441:221147 -k1,13828:32583029,32785441:0 -) -(1,13829:6630773,33626929:25952256,513147,115847 -g1,13828:7849087,33626929 -(1,13828:7849087,33626929:0,452978,115847 -r1,13850:9614200,33626929:1765113,568825,115847 -k1,13828:7849087,33626929:-1765113 -) -(1,13828:7849087,33626929:1765113,452978,115847 -k1,13828:7849087,33626929:3277 -h1,13828:9610923,33626929:0,411205,112570 -) -g1,13828:9813429,33626929 -g1,13828:11204103,33626929 -(1,13828:11204103,33626929:0,452978,115847 -r1,13850:12617504,33626929:1413401,568825,115847 -k1,13828:11204103,33626929:-1413401 -) -(1,13828:11204103,33626929:1413401,452978,115847 -k1,13828:11204103,33626929:3277 -h1,13828:12614227,33626929:0,411205,112570 -) -g1,13828:12816733,33626929 -g1,13828:16190526,33626929 -g1,13828:17494037,33626929 -g1,13828:18979082,33626929 -g1,13828:19926077,33626929 -g1,13828:21638532,33626929 -g1,13828:22785412,33626929 -g1,13828:24003726,33626929 -k1,13829:32583029,33626929:7179454 -g1,13829:32583029,33626929 -) -v1,13831:6630773,34817395:0,393216,0 -(1,13841:6630773,39129559:25952256,4705380,196608 -g1,13841:6630773,39129559 -g1,13841:6630773,39129559 -g1,13841:6434165,39129559 -(1,13841:6434165,39129559:0,4705380,196608 -r1,13850:32779637,39129559:26345472,4901988,196608 -k1,13841:6434165,39129559:-26345472 -) -(1,13841:6434165,39129559:26345472,4705380,196608 -[1,13841:6630773,39129559:25952256,4508772,0 -(1,13833:6630773,35025013:25952256,404226,107478 -(1,13832:6630773,35025013:0,0,0 -g1,13832:6630773,35025013 -g1,13832:6630773,35025013 -g1,13832:6303093,35025013 -(1,13832:6303093,35025013:0,0,0 -) -g1,13832:6630773,35025013 -) -k1,13833:6630773,35025013:0 -g1,13833:10424522,35025013 -g1,13833:11056814,35025013 -g1,13833:13585980,35025013 -g1,13833:15482855,35025013 -g1,13833:16115147,35025013 -g1,13833:18012022,35025013 -g1,13833:18644314,35025013 -g1,13833:19276606,35025013 -k1,13833:19276606,35025013:0 -h1,13833:20541189,35025013:0,0,0 -k1,13833:32583029,35025013:12041840 -g1,13833:32583029,35025013 -) -(1,13834:6630773,35691191:25952256,410518,101187 -h1,13834:6630773,35691191:0,0,0 -g1,13834:6946919,35691191 -g1,13834:7263065,35691191 -g1,13834:7579211,35691191 -g1,13834:7895357,35691191 -g1,13834:8211503,35691191 -g1,13834:8527649,35691191 -g1,13834:8843795,35691191 -g1,13834:9159941,35691191 -g1,13834:9476087,35691191 -g1,13834:9792233,35691191 -g1,13834:10108379,35691191 -g1,13834:10424525,35691191 -g1,13834:10740671,35691191 -g1,13834:11056817,35691191 -g1,13834:11372963,35691191 -g1,13834:11689109,35691191 -g1,13834:12005255,35691191 -g1,13834:12321401,35691191 -g1,13834:12637547,35691191 -g1,13834:12953693,35691191 -g1,13834:13269839,35691191 -g1,13834:13585985,35691191 -g1,13834:13902131,35691191 -g1,13834:14218277,35691191 -g1,13834:14534423,35691191 -g1,13834:14850569,35691191 -g1,13834:16747443,35691191 -g1,13834:17379735,35691191 -k1,13834:17379735,35691191:0 -h1,13834:21173483,35691191:0,0,0 -k1,13834:32583029,35691191:11409546 -g1,13834:32583029,35691191 -) -(1,13835:6630773,36357369:25952256,404226,82312 -h1,13835:6630773,36357369:0,0,0 -g1,13835:6946919,36357369 -g1,13835:7263065,36357369 -g1,13835:7579211,36357369 -g1,13835:7895357,36357369 -g1,13835:8211503,36357369 -g1,13835:8527649,36357369 -g1,13835:8843795,36357369 -g1,13835:9159941,36357369 -g1,13835:9476087,36357369 -g1,13835:9792233,36357369 -g1,13835:10108379,36357369 -g1,13835:10424525,36357369 -g1,13835:10740671,36357369 -g1,13835:11056817,36357369 -g1,13835:11372963,36357369 -g1,13835:11689109,36357369 -g1,13835:12005255,36357369 -g1,13835:12321401,36357369 -g1,13835:12637547,36357369 -g1,13835:12953693,36357369 -g1,13835:13269839,36357369 -g1,13835:13585985,36357369 -g1,13835:13902131,36357369 -g1,13835:14218277,36357369 -g1,13835:14534423,36357369 -g1,13835:14850569,36357369 -g1,13835:16431298,36357369 -g1,13835:17063590,36357369 -k1,13835:17063590,36357369:0 -h1,13835:18012027,36357369:0,0,0 -k1,13835:32583029,36357369:14571002 -g1,13835:32583029,36357369 -) -(1,13836:6630773,37023547:25952256,404226,101187 -h1,13836:6630773,37023547:0,0,0 -g1,13836:6946919,37023547 -g1,13836:7263065,37023547 -g1,13836:7579211,37023547 -g1,13836:7895357,37023547 -g1,13836:8211503,37023547 -g1,13836:8527649,37023547 -g1,13836:8843795,37023547 -g1,13836:9159941,37023547 -g1,13836:9476087,37023547 -g1,13836:9792233,37023547 -g1,13836:10108379,37023547 -g1,13836:10424525,37023547 -g1,13836:10740671,37023547 -g1,13836:11056817,37023547 -g1,13836:11372963,37023547 -g1,13836:11689109,37023547 -g1,13836:12005255,37023547 -g1,13836:12321401,37023547 -g1,13836:12637547,37023547 -g1,13836:12953693,37023547 -g1,13836:13269839,37023547 -g1,13836:13585985,37023547 -g1,13836:13902131,37023547 -g1,13836:14218277,37023547 -g1,13836:14534423,37023547 -g1,13836:14850569,37023547 -g1,13836:16747443,37023547 -g1,13836:17379735,37023547 -g1,13836:19276609,37023547 -h1,13836:19592755,37023547:0,0,0 -k1,13836:32583029,37023547:12990274 -g1,13836:32583029,37023547 -) -(1,13837:6630773,37689725:25952256,404226,76021 -h1,13837:6630773,37689725:0,0,0 -g1,13837:6946919,37689725 -g1,13837:7263065,37689725 -g1,13837:11372959,37689725 -h1,13837:11689105,37689725:0,0,0 -k1,13837:32583029,37689725:20893924 -g1,13837:32583029,37689725 -) -(1,13838:6630773,38355903:25952256,404226,107478 -h1,13838:6630773,38355903:0,0,0 -g1,13838:6946919,38355903 -g1,13838:7263065,38355903 -g1,13838:11372959,38355903 -h1,13838:11689105,38355903:0,0,0 -k1,13838:32583029,38355903:20893924 -g1,13838:32583029,38355903 -) -(1,13839:6630773,39022081:25952256,404226,107478 -h1,13839:6630773,39022081:0,0,0 -g1,13839:6946919,39022081 -g1,13839:7263065,39022081 -g1,13839:12321396,39022081 -g1,13839:12953688,39022081 -g1,13839:16747437,39022081 -g1,13839:18328166,39022081 -g1,13839:18960458,39022081 -h1,13839:19592750,39022081:0,0,0 -k1,13839:32583029,39022081:12990279 -g1,13839:32583029,39022081 -) -] -) -g1,13841:32583029,39129559 -g1,13841:6630773,39129559 -g1,13841:6630773,39129559 -g1,13841:32583029,39129559 -g1,13841:32583029,39129559 -) -h1,13841:6630773,39326167:0,0,0 -] -(1,13850:32583029,45706769:0,0,0 -g1,13850:32583029,45706769 -) -) -] -(1,13850:6630773,47279633:25952256,0,0 -h1,13850:6630773,47279633:25952256,0,0 -) -] -(1,13850:4262630,4025873:0,0,0 -[1,13850:-473656,4025873:0,0,0 -(1,13850:-473656,-710413:0,0,0 -(1,13850:-473656,-710413:0,0,0 -g1,13850:-473656,-710413 -) -g1,13850:-473656,-710413 -) -] -) -] -!21568 -}263 -Input:2039:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2040:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2041:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2042:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2043:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2044:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2045:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2046:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2047:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2048:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2049:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2050:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2051:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2052:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2053:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2054:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2055:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2056:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2057:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2058:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2059:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2060:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2061:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2062:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2063:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!2312 -{264 -[1,13859:4262630,47279633:28320399,43253760,0 -(1,13859:4262630,4025873:0,0,0 -[1,13859:-473656,4025873:0,0,0 -(1,13859:-473656,-710413:0,0,0 -(1,13859:-473656,-644877:0,0,0 -k1,13859:-473656,-644877:-65536 -) -(1,13859:-473656,4736287:0,0,0 -k1,13859:-473656,4736287:5209943 -) -g1,13859:-473656,-710413 -) -] -) -[1,13859:6630773,47279633:25952256,43253760,0 -[1,13859:6630773,4812305:25952256,786432,0 -(1,13859:6630773,4812305:25952256,485622,11795 -(1,13859:6630773,4812305:25952256,485622,11795 -g1,13859:3078558,4812305 -[1,13859:3078558,4812305:0,0,0 -(1,13859:3078558,2439708:0,1703936,0 -k1,13859:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,13859:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,13859:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,13859:3078558,4812305:0,0,0 -(1,13859:3078558,2439708:0,1703936,0 -g1,13859:29030814,2439708 -g1,13859:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,13859:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,13859:37855564,2439708:1179648,16384,0 -) -) -k1,13859:3078556,2439708:-34777008 -) -] -[1,13859:3078558,4812305:0,0,0 -(1,13859:3078558,49800853:0,16384,2228224 -k1,13859:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,13859:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,13859:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,13859:3078558,4812305:0,0,0 -(1,13859:3078558,49800853:0,16384,2228224 -g1,13859:29030814,49800853 -g1,13859:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,13859:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,13859:37855564,49800853:1179648,16384,0 -) -) -k1,13859:3078556,49800853:-34777008 -) -] -g1,13859:6630773,4812305 -g1,13859:6630773,4812305 -g1,13859:10347975,4812305 -k1,13859:31387651,4812305:21039676 -) -) -] -[1,13859:6630773,45706769:25952256,40108032,0 -(1,13859:6630773,45706769:25952256,40108032,0 -(1,13859:6630773,45706769:0,0,0 -g1,13859:6630773,45706769 -) -[1,13859:6630773,45706769:25952256,40108032,0 -(1,13844:6630773,14682403:25952256,9083666,0 -k1,13844:10523651,14682403:3892878 -h1,13843:10523651,14682403:0,0,0 -(1,13843:10523651,14682403:18166500,9083666,0 -(1,13843:10523651,14682403:18167376,9083688,0 -(1,13843:10523651,14682403:18167376,9083688,0 -(1,13843:10523651,14682403:0,9083688,0 -(1,13843:10523651,14682403:0,14208860,0 -(1,13843:10523651,14682403:28417720,14208860,0 -) -k1,13843:10523651,14682403:-28417720 -) -) -g1,13843:28691027,14682403 -) -) -) -g1,13844:28690151,14682403 -k1,13844:32583029,14682403:3892878 -) -(1,13851:6630773,15523891:25952256,505283,134348 -h1,13850:6630773,15523891:983040,0,0 -k1,13850:8405966,15523891:164318 -k1,13850:11409960,15523891:164319 -(1,13850:11409960,15523891:0,452978,122846 -r1,13859:13175073,15523891:1765113,575824,122846 -k1,13850:11409960,15523891:-1765113 -) -(1,13850:11409960,15523891:1765113,452978,122846 -k1,13850:11409960,15523891:3277 -h1,13850:13171796,15523891:0,411205,112570 -) -k1,13850:13339391,15523891:164318 -k1,13850:14695154,15523891:164318 -(1,13850:14695154,15523891:0,452978,122846 -r1,13859:16460267,15523891:1765113,575824,122846 -k1,13850:14695154,15523891:-1765113 -) -(1,13850:14695154,15523891:1765113,452978,122846 -k1,13850:14695154,15523891:3277 -h1,13850:16456990,15523891:0,411205,112570 -) -k1,13850:16624586,15523891:164319 -k1,13850:17980349,15523891:164318 -(1,13850:17980349,15523891:0,452978,122846 -r1,13859:19745462,15523891:1765113,575824,122846 -k1,13850:17980349,15523891:-1765113 -) -(1,13850:17980349,15523891:1765113,452978,122846 -k1,13850:17980349,15523891:3277 -h1,13850:19742185,15523891:0,411205,112570 -) -k1,13850:19909780,15523891:164318 -k1,13850:21178381,15523891:164319 -k1,13850:22090465,15523891:164318 -k1,13850:23768009,15523891:164318 -k1,13850:24583756,15523891:164319 -k1,13850:26647963,15523891:164318 -k1,13850:27831366,15523891:164318 -k1,13850:29221864,15523891:164319 -k1,13850:30577627,15523891:164318 -k1,13850:32583029,15523891:0 -) -(1,13851:6630773,16365379:25952256,513147,126483 -k1,13850:7576470,16365379:157299 -k1,13850:10521670,16365379:157298 -k1,13850:11875656,16365379:157299 -k1,13850:14298535,16365379:157299 -k1,13850:16136176,16365379:157298 -k1,13850:16952767,16365379:157299 -k1,13850:18080654,16365379:157299 -k1,13850:19185603,16365379:157298 -k1,13850:20809598,16365379:157299 -(1,13850:20809598,16365379:0,452978,122846 -r1,13859:22574711,16365379:1765113,575824,122846 -k1,13850:20809598,16365379:-1765113 -) -(1,13850:20809598,16365379:1765113,452978,122846 -k1,13850:20809598,16365379:3277 -h1,13850:22571434,16365379:0,411205,112570 -) -k1,13850:22732010,16365379:157299 -k1,13850:24080754,16365379:157299 -(1,13850:24080754,16365379:0,452978,122846 -r1,13859:25845867,16365379:1765113,575824,122846 -k1,13850:24080754,16365379:-1765113 -) -(1,13850:24080754,16365379:1765113,452978,122846 -k1,13850:24080754,16365379:3277 -h1,13850:25842590,16365379:0,411205,112570 -) -k1,13850:26003165,16365379:157298 -k1,13850:27425309,16365379:157299 -k1,13850:28601693,16365379:157299 -k1,13850:30747353,16365379:157298 -k1,13850:31563944,16365379:157299 -k1,13850:32583029,16365379:0 -) -(1,13851:6630773,17206867:25952256,513147,134348 -k1,13850:8077626,17206867:220674 -k1,13850:8911061,17206867:220673 -k1,13850:10150820,17206867:220674 -k1,13850:13132525,17206867:220673 -(1,13850:13132525,17206867:0,414482,115847 -r1,13859:13490791,17206867:358266,530329,115847 -k1,13850:13132525,17206867:-358266 -) -(1,13850:13132525,17206867:358266,414482,115847 -k1,13850:13132525,17206867:3277 -h1,13850:13487514,17206867:0,411205,112570 -) -k1,13850:13711465,17206867:220674 -k1,13850:15123584,17206867:220674 -(1,13850:15123584,17206867:0,414482,115847 -r1,13859:15481850,17206867:358266,530329,115847 -k1,13850:15123584,17206867:-358266 -) -(1,13850:15123584,17206867:358266,414482,115847 -k1,13850:15123584,17206867:3277 -h1,13850:15478573,17206867:0,411205,112570 -) -k1,13850:15702523,17206867:220673 -k1,13850:19835041,17206867:220674 -k1,13850:23102483,17206867:220673 -k1,13850:24514602,17206867:220674 -k1,13850:28651706,17206867:220673 -k1,13850:29820031,17206867:220674 -k1,13851:32583029,17206867:0 -) -(1,13851:6630773,18048355:25952256,513147,126483 -k1,13850:8104618,18048355:206379 -k1,13850:9847162,18048355:206380 -k1,13850:10704969,18048355:206379 -k1,13850:11930433,18048355:206379 -k1,13850:13536662,18048355:206380 -k1,13850:14809312,18048355:206379 -k1,13850:16034776,18048355:206379 -k1,13850:17692123,18048355:206380 -k1,13850:19279346,18048355:206379 -k1,13850:20017222,18048355:206379 -k1,13850:23432900,18048355:206380 -k1,13850:25337317,18048355:206379 -(1,13850:25337317,18048355:0,452978,122846 -r1,13859:27102430,18048355:1765113,575824,122846 -k1,13850:25337317,18048355:-1765113 -) -(1,13850:25337317,18048355:1765113,452978,122846 -k1,13850:25337317,18048355:3277 -h1,13850:27099153,18048355:0,411205,112570 -) -k1,13850:27308809,18048355:206379 -k1,13850:28046686,18048355:206380 -k1,13850:31015408,18048355:206379 -k1,13850:32583029,18048355:0 -) -(1,13851:6630773,18889843:25952256,513147,134348 -k1,13850:8459977,18889843:235368 -k1,13850:10806915,18889843:235368 -k1,13850:12901539,18889843:235368 -k1,13850:14579353,18889843:235367 -k1,13850:15785309,18889843:235368 -k1,13850:17488683,18889843:235368 -k1,13850:18743136,18889843:235368 -k1,13850:20492386,18889843:235368 -k1,13850:21801889,18889843:235368 -k1,13850:22720142,18889843:235368 -k1,13850:24880301,18889843:235367 -k1,13850:26307114,18889843:235368 -k1,13850:28553127,18889843:235368 -k1,13850:31140582,18889843:235368 -k1,13850:32583029,18889843:0 -) -(1,13851:6630773,19731331:25952256,513147,134348 -k1,13850:7922971,19731331:147939 -k1,13850:9606418,19731331:147938 -k1,13850:10437242,19731331:147939 -k1,13850:11420765,19731331:147939 -k1,13850:12962655,19731331:147939 -k1,13850:15435155,19731331:147938 -k1,13850:16234522,19731331:147939 -k1,13850:17170859,19731331:147939 -(1,13850:17170859,19731331:0,414482,115847 -r1,13859:17529125,19731331:358266,530329,115847 -k1,13850:17170859,19731331:-358266 -) -(1,13850:17170859,19731331:358266,414482,115847 -k1,13850:17170859,19731331:3277 -h1,13850:17525848,19731331:0,411205,112570 -) -k1,13850:17677064,19731331:147939 -k1,13850:19016447,19731331:147938 -(1,13850:19016447,19731331:0,414482,115847 -r1,13859:19374713,19731331:358266,530329,115847 -k1,13850:19016447,19731331:-358266 -) -(1,13850:19016447,19731331:358266,414482,115847 -k1,13850:19016447,19731331:3277 -h1,13850:19371436,19731331:0,411205,112570 -) -k1,13850:19522652,19731331:147939 -k1,13850:23582435,19731331:147939 -k1,13850:24217911,19731331:147888 -k1,13850:26046192,19731331:147938 -k1,13850:26853423,19731331:147939 -k1,13850:27399821,19731331:147939 -k1,13850:28230645,19731331:147939 -k1,13850:28777042,19731331:147938 -k1,13850:30189826,19731331:147939 -k1,13850:31356850,19731331:147939 -k1,13850:32583029,19731331:0 -) -(1,13851:6630773,20572819:25952256,513147,134348 -k1,13850:7551537,20572819:195936 -k1,13850:9031978,20572819:195935 -k1,13850:10016312,20572819:195936 -k1,13850:11701880,20572819:195935 -k1,13850:12429313,20572819:195936 -k1,13850:13238010,20572819:195935 -k1,13850:14453031,20572819:195936 -k1,13850:17409999,20572819:195936 -k1,13850:21187477,20572819:195935 -k1,13850:23494983,20572819:195936 -k1,13850:26056768,20572819:195935 -k1,13850:27271789,20572819:195936 -k1,13850:29248337,20572819:195935 -$1,13850:29248337,20572819 -k1,13850:29756032,20572819:109236 -k1,13850:30520628,20572819:109236 -$1,13850:30919087,20572819 -k1,13850:31115023,20572819:195936 -k1,13850:32583029,20572819:0 -) -(1,13851:6630773,21414307:25952256,513147,134348 -k1,13850:7826384,21414307:176526 -k1,13850:9229088,21414307:176525 -k1,13850:10872310,21414307:176526 -k1,13850:13265264,21414307:176526 -k1,13850:15209295,21414307:176525 -k1,13850:18230084,21414307:176526 -k1,13850:19605263,21414307:176525 -k1,13850:21517182,21414307:176526 -k1,13850:23311792,21414307:176526 -k1,13850:25342986,21414307:176525 -k1,13850:26328882,21414307:176526 -k1,13850:27524493,21414307:176526 -k1,13850:29714284,21414307:176525 -k1,13850:30573695,21414307:176526 -k1,13850:32583029,21414307:0 -) -(1,13851:6630773,22255795:25952256,513147,134348 -k1,13850:7577768,22255795:287703 -k1,13850:8884556,22255795:287703 -k1,13850:10398438,22255795:287703 -k1,13850:12373693,22255795:287703 -k1,13850:14806389,22255795:287703 -k1,13850:17758131,22255795:287703 -k1,13850:18705126,22255795:287703 -k1,13850:21821362,22255795:287703 -k1,13850:23824798,22255795:287703 -k1,13850:26742461,22255795:287703 -k1,13850:30847636,22255795:287703 -k1,13850:32583029,22255795:0 -) -(1,13851:6630773,23097283:25952256,513147,134348 -k1,13850:9835092,23097283:229640 -k1,13850:13152788,23097283:229640 -k1,13850:14330078,23097283:229639 -k1,13850:17923681,23097283:229640 -(1,13850:17923681,23097283:0,459977,115847 -r1,13859:20040506,23097283:2116825,575824,115847 -k1,13850:17923681,23097283:-2116825 -) -(1,13850:17923681,23097283:2116825,459977,115847 -k1,13850:17923681,23097283:3277 -h1,13850:20037229,23097283:0,411205,112570 -) -k1,13850:20443816,23097283:229640 -(1,13850:20443816,23097283:0,452978,115847 -r1,13859:23264065,23097283:2820249,568825,115847 -k1,13850:20443816,23097283:-2820249 -) -(1,13850:20443816,23097283:2820249,452978,115847 -k1,13850:20443816,23097283:3277 -h1,13850:23260788,23097283:0,411205,112570 -) -k1,13850:23667375,23097283:229640 -(1,13850:23667375,23097283:0,452978,122846 -r1,13859:26135912,23097283:2468537,575824,122846 -k1,13850:23667375,23097283:-2468537 -) -(1,13850:23667375,23097283:2468537,452978,122846 -k1,13850:23667375,23097283:3277 -h1,13850:26132635,23097283:0,411205,112570 -) -k1,13850:26539221,23097283:229639 -(1,13850:26539221,23097283:0,452978,115847 -r1,13859:29359470,23097283:2820249,568825,115847 -k1,13850:26539221,23097283:-2820249 -) -(1,13850:26539221,23097283:2820249,452978,115847 -k1,13850:26539221,23097283:3277 -h1,13850:29356193,23097283:0,411205,112570 -) -k1,13850:29762780,23097283:229640 -(1,13850:29762780,23097283:0,452978,115847 -r1,13859:32583029,23097283:2820249,568825,115847 -k1,13850:29762780,23097283:-2820249 -) -(1,13850:29762780,23097283:2820249,452978,115847 -k1,13850:29762780,23097283:3277 -h1,13850:32579752,23097283:0,411205,112570 -) -k1,13850:32583029,23097283:0 -) -(1,13851:6630773,23938771:25952256,505283,134348 -k1,13850:7983323,23938771:161105 -(1,13850:7983323,23938771:0,452978,115847 -r1,13859:9748436,23938771:1765113,568825,115847 -k1,13850:7983323,23938771:-1765113 -) -(1,13850:7983323,23938771:1765113,452978,115847 -k1,13850:7983323,23938771:3277 -h1,13850:9745159,23938771:0,411205,112570 -) -k1,13850:10083211,23938771:161105 -k1,13850:11435760,23938771:161104 -k1,13850:12769304,23938771:161105 -k1,13850:15124554,23938771:161105 -k1,13850:18979923,23938771:161105 -(1,13850:18979923,23938771:0,452978,115847 -r1,13859:21800172,23938771:2820249,568825,115847 -k1,13850:18979923,23938771:-2820249 -) -(1,13850:18979923,23938771:2820249,452978,115847 -k1,13850:18979923,23938771:3277 -h1,13850:21796895,23938771:0,411205,112570 -) -k1,13850:21961277,23938771:161105 -k1,13850:23313826,23938771:161104 -(1,13850:23313826,23938771:0,452978,115847 -r1,13859:26485786,23938771:3171960,568825,115847 -k1,13850:23313826,23938771:-3171960 -) -(1,13850:23313826,23938771:3171960,452978,115847 -k1,13850:23313826,23938771:3277 -h1,13850:26482509,23938771:0,411205,112570 -) -k1,13850:26820561,23938771:161105 -k1,13850:28266172,23938771:161105 -k1,13850:32583029,23938771:0 -) -(1,13851:6630773,24780259:25952256,505283,134348 -g1,13850:8192496,24780259 -g1,13850:10246394,24780259 -g1,13850:11254993,24780259 -g1,13850:12473307,24780259 -g1,13850:15286767,24780259 -g1,13850:16102034,24780259 -g1,13850:17320348,24780259 -g1,13850:20044024,24780259 -k1,13851:32583029,24780259:11017914 -g1,13851:32583029,24780259 -) -(1,13853:6630773,25621747:25952256,513147,126483 -h1,13852:6630773,25621747:983040,0,0 -k1,13852:8443861,25621747:202213 -k1,13852:9665159,25621747:202213 -k1,13852:11234452,25621747:202212 -k1,13852:12103821,25621747:202213 -(1,13852:12103821,25621747:0,452978,122846 -r1,13859:16330917,25621747:4227096,575824,122846 -k1,13852:12103821,25621747:-4227096 -) -(1,13852:12103821,25621747:4227096,452978,122846 -k1,13852:12103821,25621747:3277 -h1,13852:16327640,25621747:0,411205,112570 -) -k1,13852:16533130,25621747:202213 -k1,13852:17754428,25621747:202213 -k1,13852:19182820,25621747:202213 -k1,13852:19916529,25621747:202212 -k1,13852:22912542,25621747:202213 -k1,13852:23730793,25621747:202213 -k1,13852:24288866,25621747:202213 -k1,13852:25824737,25621747:202213 -k1,13852:27912420,25621747:202212 -k1,13852:29948330,25621747:202213 -k1,13852:31169628,25621747:202213 -(1,13852:31169628,25621747:0,459977,115847 -r1,13859:32583029,25621747:1413401,575824,115847 -k1,13852:31169628,25621747:-1413401 -) -(1,13852:31169628,25621747:1413401,459977,115847 -k1,13852:31169628,25621747:3277 -h1,13852:32579752,25621747:0,411205,112570 -) -k1,13852:32583029,25621747:0 -) -(1,13853:6630773,26463235:25952256,505283,134348 -k1,13852:9567179,26463235:149160 -k1,13852:10907783,26463235:149159 -k1,13852:12739908,26463235:149160 -k1,13852:16116060,26463235:149159 -k1,13852:19876254,26463235:149160 -k1,13852:23322530,26463235:149160 -k1,13852:25950261,26463235:149159 -k1,13852:26712183,26463235:149160 -k1,13852:28359495,26463235:149159 -h1,13852:29554872,26463235:0,0,0 -k1,13852:29911126,26463235:149160 -k1,13852:32583029,26463235:0 -) -(1,13853:6630773,27304723:25952256,513147,126483 -k1,13852:9103041,27304723:184406 -k1,13852:9946739,27304723:184406 -k1,13852:11150231,27304723:184407 -k1,13852:13203724,27304723:184406 -k1,13852:14579575,27304723:184406 -k1,13852:16032758,27304723:184406 -k1,13852:16876457,27304723:184407 -k1,13852:18079948,27304723:184406 -k1,13852:19598012,27304723:184406 -k1,13852:22717120,27304723:184406 -(1,13852:22717120,27304723:0,452978,122846 -r1,13859:26944216,27304723:4227096,575824,122846 -k1,13852:22717120,27304723:-4227096 -) -(1,13852:22717120,27304723:4227096,452978,122846 -k1,13852:22717120,27304723:3277 -h1,13852:26940939,27304723:0,411205,112570 -) -k1,13852:27128623,27304723:184407 -k1,13852:28805939,27304723:184406 -k1,13852:30056616,27304723:184406 -k1,13852:32583029,27304723:0 -) -(1,13853:6630773,28146211:25952256,505283,122846 -g1,13852:9393115,28146211 -g1,13852:10986295,28146211 -g1,13852:12204609,28146211 -(1,13852:12204609,28146211:0,452978,122846 -r1,13859:13969722,28146211:1765113,575824,122846 -k1,13852:12204609,28146211:-1765113 -) -(1,13852:12204609,28146211:1765113,452978,122846 -k1,13852:12204609,28146211:3277 -h1,13852:13966445,28146211:0,411205,112570 -) -g1,13852:14168951,28146211 -k1,13853:32583029,28146211:15396145 -g1,13853:32583029,28146211 -) -v1,13855:6630773,29374186:0,393216,0 -(1,13856:6630773,45090731:25952256,16109761,616038 -g1,13856:6630773,45090731 -(1,13856:6630773,45090731:25952256,16109761,616038 -(1,13856:6630773,45706769:25952256,16725799,0 -[1,13856:6630773,45706769:25952256,16725799,0 -(1,13856:6630773,45680555:25952256,16673371,0 -r1,13859:6656987,45680555:26214,16673371,0 -[1,13856:6656987,45680555:25899828,16673371,0 -(1,13856:6656987,45090731:25899828,15493723,0 -[1,13856:7246811,45090731:24720180,15493723,0 -(1,13856:7246811,30682544:24720180,1085536,298548 -(1,13855:7246811,30682544:0,1085536,298548 -r1,13859:8753226,30682544:1506415,1384084,298548 -k1,13855:7246811,30682544:-1506415 -) -(1,13855:7246811,30682544:1506415,1085536,298548 -) -k1,13855:8980759,30682544:227533 -k1,13855:10461996,30682544:227533 -k1,13855:12869911,30682544:227532 -k1,13855:13845210,30682544:227533 -k1,13855:15941174,30682544:227533 -k1,13855:17453213,30682544:227533 -k1,13855:18095560,30682544:227504 -k1,13855:19514538,30682544:227533 -k1,13855:22570604,30682544:227533 -k1,13855:25324550,30682544:227533 -k1,13855:26571167,30682544:227532 -k1,13855:27891185,30682544:227533 -k1,13855:28778010,30682544:227533 -k1,13855:31966991,30682544:0 -) -(1,13856:7246811,31524032:24720180,513147,134348 -k1,13855:9008097,31524032:267720 -k1,13855:9961980,31524032:267721 -k1,13855:11893004,31524032:267720 -k1,13855:15135404,31524032:267721 -k1,13855:18634704,31524032:267720 -k1,13855:19518462,31524032:267720 -k1,13855:22155965,31524032:267721 -k1,13855:22901442,31524032:267720 -k1,13855:24627994,31524032:267721 -k1,13855:26804778,31524032:267720 -k1,13855:27755383,31524032:267720 -k1,13855:29110277,31524032:267652 -k1,13855:31966991,31524032:0 -) -(1,13856:7246811,32365520:24720180,505283,126483 -k1,13855:8958721,32365520:203271 -k1,13855:10428147,32365520:203270 -k1,13855:12065346,32365520:203271 -k1,13855:13439090,32365520:203271 -k1,13855:14746643,32365520:203271 -k1,13855:16336000,32365520:203271 -k1,13855:18394594,32365520:203270 -k1,13855:20630136,32365520:203271 -k1,13855:22024852,32365520:203271 -k1,13855:24352800,32365520:203271 -k1,13855:26533947,32365520:203270 -k1,13855:29378974,32365520:203271 -k1,13855:31966991,32365520:0 -) -(1,13856:7246811,33207008:24720180,513147,126483 -k1,13855:8675977,33207008:237721 -k1,13855:10293886,33207008:237721 -k1,13855:11956360,33207008:237721 -k1,13855:13854763,33207008:237721 -k1,13855:16901357,33207008:237721 -k1,13855:17755116,33207008:237721 -k1,13855:19837020,33207008:237721 -k1,13855:20540702,33207008:237721 -k1,13855:21134283,33207008:237721 -k1,13855:23883999,33207008:237721 -k1,13855:25452756,33207008:237721 -k1,13855:26221974,33207008:237721 -k1,13855:28604033,33207008:237721 -k1,13855:30033199,33207008:237721 -k1,13855:31041623,33207008:237721 -k1,13856:31966991,33207008:0 -) -(1,13856:7246811,34048496:24720180,513147,134348 -k1,13855:9680163,34048496:225444 -k1,13855:12806886,34048496:225444 -k1,13855:14178554,34048496:225443 -k1,13855:16067302,34048496:225444 -k1,13855:16824243,34048496:225444 -k1,13855:17665725,34048496:225444 -k1,13855:18983653,34048496:225443 -k1,13855:19970625,34048496:225444 -k1,13855:21215154,34048496:225444 -k1,13855:24494576,34048496:225444 -k1,13855:27139609,34048496:225444 -k1,13855:28855341,34048496:225443 -k1,13855:29546746,34048496:225444 -k1,13855:31435494,34048496:225444 -k1,13855:31966991,34048496:0 -) -(1,13856:7246811,34889984:24720180,513147,126483 -k1,13855:8112148,34889984:249299 -k1,13855:9627603,34889984:249299 -k1,13855:11103081,34889984:249299 -k1,13855:11883877,34889984:249299 -k1,13855:13199447,34889984:249299 -k1,13855:14899713,34889984:249299 -k1,13855:17818293,34889984:249299 -k1,13855:20110349,34889984:249299 -k1,13855:21378733,34889984:249299 -k1,13855:23281505,34889984:249299 -k1,13855:24861840,34889984:249299 -k1,13855:25642636,34889984:249299 -k1,13855:28849574,34889984:249299 -k1,13855:29785035,34889984:249299 -k1,13855:31501030,34889984:249299 -k1,13855:31966991,34889984:0 -) -(1,13856:7246811,35731472:24720180,513147,134348 -k1,13855:8479762,35731472:213866 -k1,13855:11668307,35731472:213866 -k1,13855:14826705,35731472:213865 -k1,13855:16032131,35731472:213866 -k1,13855:20448821,35731472:213866 -k1,13855:21610338,35731472:213866 -k1,13855:23575980,35731472:213865 -k1,13855:27136114,35731472:213866 -k1,13855:28951680,35731472:213866 -k1,13855:31966991,35731472:0 -) -(1,13856:7246811,36572960:24720180,513147,134348 -k1,13855:9134299,36572960:226150 -k1,13855:11886861,36572960:226149 -k1,13855:12725773,36572960:226150 -k1,13855:14553622,36572960:226149 -k1,13855:15135632,36572960:226150 -k1,13855:17078170,36572960:226150 -k1,13855:19790100,36572960:226149 -k1,13855:20675542,36572960:226150 -k1,13855:24247960,36572960:226150 -k1,13855:25101944,36572960:226149 -k1,13855:28161215,36572960:226150 -k1,13855:29544074,36572960:226149 -k1,13855:30874506,36572960:226150 -k1,13855:31966991,36572960:0 -) -(1,13856:7246811,37414448:24720180,505283,134348 -k1,13855:8668823,37414448:218771 -k1,13855:12525497,37414448:218771 -k1,13855:13395696,37414448:218771 -k1,13855:15089682,37414448:218771 -k1,13855:17152636,37414448:218771 -k1,13855:18838104,37414448:218772 -k1,13855:20792268,37414448:218771 -k1,13855:22713009,37414448:218771 -k1,13855:26019181,37414448:218771 -k1,13855:27429397,37414448:218771 -k1,13855:30820766,37414448:218771 -k1,13855:31966991,37414448:0 -) -(1,13856:7246811,38255936:24720180,513147,134348 -k1,13855:9955545,38255936:197394 -k1,13855:11546891,38255936:197395 -k1,13855:13252924,38255936:197394 -k1,13855:16675345,38255936:197394 -k1,13855:19514495,38255936:197394 -k1,13855:21666174,38255936:197395 -k1,13855:22479606,38255936:197394 -k1,13855:23696085,38255936:197394 -k1,13855:25546953,38255936:197395 -k1,13855:27773342,38255936:197394 -k1,13855:31966991,38255936:0 -) -(1,13856:7246811,39097424:24720180,513147,126483 -k1,13855:8431486,39097424:165590 -k1,13855:11123490,39097424:165591 -k1,13855:12236731,39097424:165590 -k1,13855:14063659,39097424:165590 -k1,13855:15420694,39097424:165590 -k1,13855:19811391,39097424:165591 -k1,13855:22951660,39097424:165590 -k1,13855:24382095,39097424:165590 -k1,13855:25163724,39097424:165591 -k1,13855:25744123,39097424:165556 -k1,13855:26441211,39097424:165591 -k1,13855:30985917,39097424:165590 -k1,13856:31966991,39097424:0 -) -(1,13856:7246811,39938912:24720180,513147,134348 -k1,13855:10207881,39938912:164649 -k1,13855:11569218,39938912:164650 -k1,13855:13064903,39938912:164649 -k1,13855:16130831,39938912:164649 -k1,13855:17808706,39938912:164649 -k1,13855:18734884,39938912:164650 -k1,13855:19314341,39938912:164614 -k1,13855:20240519,39938912:164650 -k1,13855:22670748,39938912:164649 -k1,13855:25537446,39938912:164649 -k1,13855:26511465,39938912:164649 -k1,13855:27695200,39938912:164650 -k1,13855:30125429,39938912:164649 -k1,13855:31966991,39938912:0 -) -(1,13856:7246811,40780400:24720180,513147,134348 -k1,13855:9934442,40780400:175636 -k1,13855:10769371,40780400:175637 -k1,13855:11964092,40780400:175636 -k1,13855:15193707,40780400:175637 -k1,13855:17788932,40780400:175636 -k1,13855:19850040,40780400:175637 -k1,13855:21129958,40780400:175636 -k1,13855:22591411,40780400:175637 -k1,13855:24096117,40780400:175636 -k1,13855:24923182,40780400:175637 -k1,13855:27595084,40780400:175636 -k1,13855:30120842,40780400:175637 -k1,13855:30947906,40780400:175636 -k1,13855:31966991,40780400:0 -) -(1,13856:7246811,41621888:24720180,513147,134348 -k1,13855:9872511,41621888:205455 -k1,13855:10760852,41621888:205456 -k1,13855:12959257,41621888:205455 -k1,13855:16469693,41621888:205455 -k1,13855:18413163,41621888:205455 -k1,13855:20920899,41621888:205456 -k1,13855:23649490,41621888:205455 -k1,13855:24874030,41621888:205455 -k1,13855:26732958,41621888:205455 -k1,13855:28434600,41621888:205455 -k1,13855:29449426,41621888:205456 -k1,13855:30010741,41621888:205455 -k1,13856:31966991,41621888:0 -) -(1,13856:7246811,42463376:24720180,513147,134348 -k1,13855:8406755,42463376:140859 -k1,13855:11623874,42463376:140859 -k1,13855:13332353,42463376:140858 -k1,13855:14492297,42463376:140859 -k1,13855:15789866,42463376:140859 -k1,13855:17849619,42463376:140859 -k1,13855:18346338,42463376:140859 -k1,13855:20318272,42463376:140858 -k1,13855:21666304,42463376:140859 -k1,13855:24330954,42463376:140859 -k1,13855:25615416,42463376:140859 -k1,13855:26522391,42463376:140859 -k1,13855:27194746,42463376:140858 -k1,13855:28696132,42463376:140859 -k1,13855:31280829,42463376:140859 -k1,13856:31966991,42463376:0 -) -(1,13856:7246811,43304864:24720180,513147,134348 -k1,13855:7816833,43304864:155179 -k1,13855:9076338,43304864:155223 -k1,13855:9979327,43304864:155223 -k1,13855:12600013,43304864:155222 -k1,13855:13406664,43304864:155223 -k1,13855:14654372,43304864:155223 -k1,13855:17055513,43304864:155222 -k1,13855:18872074,43304864:155223 -k1,13855:20218742,43304864:155223 -k1,13855:22569421,43304864:155223 -k1,13855:24385981,43304864:155222 -k1,13855:25935155,43304864:155223 -k1,13855:29116175,43304864:155223 -k1,13855:31966991,43304864:0 -) -(1,13856:7246811,44146352:24720180,513147,134348 -k1,13855:8222736,44146352:214397 -k1,13855:11347586,44146352:214396 -k1,13855:14813223,44146352:214397 -k1,13855:16219065,44146352:214397 -k1,13855:19890485,44146352:214397 -k1,13855:25464415,44146352:214396 -k1,13855:28859274,44146352:214397 -k1,13855:31966991,44146352:0 -) -(1,13856:7246811,44987840:24720180,505283,102891 -g1,13855:8062078,44987840 -g1,13855:12455611,44987840 -g1,13855:13646400,44987840 -k1,13856:31966991,44987840:15369505 -g1,13856:31966991,44987840 -) -] -) -] -r1,13859:32583029,45680555:26214,16673371,0 -) -] -) -) -g1,13856:32583029,45090731 -) -h1,13856:6630773,45706769:0,0,0 -] -(1,13859:32583029,45706769:0,0,0 -g1,13859:32583029,45706769 -) -) -] -(1,13859:6630773,47279633:25952256,0,0 -h1,13859:6630773,47279633:25952256,0,0 -) -] -(1,13859:4262630,4025873:0,0,0 -[1,13859:-473656,4025873:0,0,0 -(1,13859:-473656,-710413:0,0,0 -(1,13859:-473656,-710413:0,0,0 -g1,13859:-473656,-710413 -) -g1,13859:-473656,-710413 -) -] -) -] -!27287 -}264 -Input:2064:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2065:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2066:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2067:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2068:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2069:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2070:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2071:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2072:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2073:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2074:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2075:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2076:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2077:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1300 -{265 -[1,13920:4262630,47279633:28320399,43253760,0 -(1,13920:4262630,4025873:0,0,0 -[1,13920:-473656,4025873:0,0,0 -(1,13920:-473656,-710413:0,0,0 -(1,13920:-473656,-644877:0,0,0 -k1,13920:-473656,-644877:-65536 -) -(1,13920:-473656,4736287:0,0,0 -k1,13920:-473656,4736287:5209943 -) -g1,13920:-473656,-710413 -) -] -) -[1,13920:6630773,47279633:25952256,43253760,0 -[1,13920:6630773,4812305:25952256,786432,0 -(1,13920:6630773,4812305:25952256,513147,134348 -(1,13920:6630773,4812305:25952256,513147,134348 -g1,13920:3078558,4812305 -[1,13920:3078558,4812305:0,0,0 -(1,13920:3078558,2439708:0,1703936,0 -k1,13920:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,13920:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,13920:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,13920:3078558,4812305:0,0,0 -(1,13920:3078558,2439708:0,1703936,0 -g1,13920:29030814,2439708 -g1,13920:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,13920:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,13920:37855564,2439708:1179648,16384,0 -) -) -k1,13920:3078556,2439708:-34777008 -) -] -[1,13920:3078558,4812305:0,0,0 -(1,13920:3078558,49800853:0,16384,2228224 -k1,13920:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,13920:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,13920:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,13920:3078558,4812305:0,0,0 -(1,13920:3078558,49800853:0,16384,2228224 -g1,13920:29030814,49800853 -g1,13920:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,13920:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,13920:37855564,49800853:1179648,16384,0 -) -) -k1,13920:3078556,49800853:-34777008 -) -] -g1,13920:6630773,4812305 -k1,13920:25712890,4812305:17886740 -g1,13920:29057847,4812305 -g1,13920:29873114,4812305 -) -) -] -[1,13920:6630773,45706769:25952256,40108032,0 -(1,13920:6630773,45706769:25952256,40108032,0 -(1,13920:6630773,45706769:0,0,0 -g1,13920:6630773,45706769 -) -[1,13920:6630773,45706769:25952256,40108032,0 -(1,13859:6630773,6254097:25952256,505283,134348 -h1,13858:6630773,6254097:983040,0,0 -k1,13858:8628487,6254097:386839 -k1,13858:10034412,6254097:386840 -k1,13858:13639069,6254097:386839 -k1,13858:17191298,6254097:386840 -k1,13858:18972088,6254097:386839 -k1,13858:21517683,6254097:386839 -k1,13858:22970794,6254097:386840 -k1,13858:25606829,6254097:386839 -k1,13858:26862020,6254097:386839 -k1,13858:28341345,6254097:386840 -(1,13858:28341345,6254097:0,414482,122846 -r1,13920:31513305,6254097:3171960,537328,122846 -k1,13858:28341345,6254097:-3171960 -) -(1,13858:28341345,6254097:3171960,414482,122846 -k1,13858:28341345,6254097:3277 -h1,13858:31510028,6254097:0,411205,112570 -) -k1,13858:31900144,6254097:386839 -k1,13859:32583029,6254097:0 -) -(1,13859:6630773,7095585:25952256,505283,134348 -(1,13858:6630773,7095585:0,452978,122846 -r1,13920:10154445,7095585:3523672,575824,122846 -k1,13858:6630773,7095585:-3523672 -) -(1,13858:6630773,7095585:3523672,452978,122846 -k1,13858:6630773,7095585:3277 -h1,13858:10151168,7095585:0,411205,112570 -) -k1,13858:10363580,7095585:209135 -k1,13858:13253138,7095585:209135 -k1,13858:14856224,7095585:209135 -(1,13858:14856224,7095585:0,452978,122846 -r1,13920:18379896,7095585:3523672,575824,122846 -k1,13858:14856224,7095585:-3523672 -) -(1,13858:14856224,7095585:3523672,452978,122846 -k1,13858:14856224,7095585:3277 -h1,13858:18376619,7095585:0,411205,112570 -) -k1,13858:18589031,7095585:209135 -k1,13858:19484328,7095585:209135 -k1,13858:20896704,7095585:209135 -k1,13858:21637336,7095585:209135 -k1,13858:23176851,7095585:209134 -k1,13858:24766174,7095585:209135 -k1,13858:26312243,7095585:209135 -k1,13858:27269144,7095585:209135 -k1,13858:28991505,7095585:209135 -k1,13858:29852068,7095585:209135 -k1,13858:31575085,7095585:209135 -k1,13859:32583029,7095585:0 -) -(1,13859:6630773,7937073:25952256,473825,7863 -k1,13859:32583028,7937073:22501784 -g1,13859:32583028,7937073 -) -v1,13861:6630773,9127539:0,393216,0 -(1,13872:6630773,14105881:25952256,5371558,196608 -g1,13872:6630773,14105881 -g1,13872:6630773,14105881 -g1,13872:6434165,14105881 -(1,13872:6434165,14105881:0,5371558,196608 -r1,13920:32779637,14105881:26345472,5568166,196608 -k1,13872:6434165,14105881:-26345472 -) -(1,13872:6434165,14105881:26345472,5371558,196608 -[1,13872:6630773,14105881:25952256,5174950,0 -(1,13863:6630773,9335157:25952256,404226,101187 -(1,13862:6630773,9335157:0,0,0 -g1,13862:6630773,9335157 -g1,13862:6630773,9335157 -g1,13862:6303093,9335157 -(1,13862:6303093,9335157:0,0,0 -) -g1,13862:6630773,9335157 -) -g1,13863:9159939,9335157 -k1,13863:9159939,9335157:0 -h1,13863:9792231,9335157:0,0,0 -k1,13863:32583029,9335157:22790798 -g1,13863:32583029,9335157 -) -(1,13864:6630773,10001335:25952256,410518,82312 -h1,13864:6630773,10001335:0,0,0 -g1,13864:6946919,10001335 -g1,13864:7263065,10001335 -g1,13864:11372960,10001335 -g1,13864:12005252,10001335 -k1,13864:12005252,10001335:0 -h1,13864:13269836,10001335:0,0,0 -k1,13864:32583028,10001335:19313192 -g1,13864:32583028,10001335 -) -(1,13865:6630773,10667513:25952256,404226,101187 -h1,13865:6630773,10667513:0,0,0 -g1,13865:6946919,10667513 -g1,13865:7263065,10667513 -g1,13865:7579211,10667513 -g1,13865:7895357,10667513 -g1,13865:8211503,10667513 -g1,13865:8527649,10667513 -g1,13865:8843795,10667513 -g1,13865:9159941,10667513 -g1,13865:9476087,10667513 -g1,13865:9792233,10667513 -g1,13865:10108379,10667513 -g1,13865:10424525,10667513 -g1,13865:10740671,10667513 -g1,13865:11372963,10667513 -g1,13865:12005255,10667513 -g1,13865:14218276,10667513 -k1,13865:14218276,10667513:0 -h1,13865:15166714,10667513:0,0,0 -k1,13865:32583030,10667513:17416316 -g1,13865:32583030,10667513 -) -(1,13866:6630773,11333691:25952256,404226,82312 -h1,13866:6630773,11333691:0,0,0 -g1,13866:6946919,11333691 -g1,13866:7263065,11333691 -g1,13866:7579211,11333691 -g1,13866:7895357,11333691 -g1,13866:8211503,11333691 -g1,13866:8527649,11333691 -g1,13866:8843795,11333691 -g1,13866:9159941,11333691 -g1,13866:9476087,11333691 -g1,13866:9792233,11333691 -g1,13866:10108379,11333691 -g1,13866:10424525,11333691 -g1,13866:10740671,11333691 -g1,13866:12637545,11333691 -g1,13866:13269837,11333691 -g1,13866:15482858,11333691 -g1,13866:17063587,11333691 -g1,13866:18644316,11333691 -g1,13866:20225045,11333691 -h1,13866:21805773,11333691:0,0,0 -k1,13866:32583029,11333691:10777256 -g1,13866:32583029,11333691 -) -(1,13867:6630773,11999869:25952256,0,0 -h1,13867:6630773,11999869:0,0,0 -h1,13867:6630773,11999869:0,0,0 -k1,13867:32583029,11999869:25952256 -g1,13867:32583029,11999869 -) -(1,13868:6630773,12666047:25952256,404226,107478 -h1,13868:6630773,12666047:0,0,0 -g1,13868:11689104,12666047 -g1,13868:13902124,12666047 -g1,13868:14850562,12666047 -g1,13868:16747436,12666047 -g1,13868:17379728,12666047 -g1,13868:19908894,12666047 -h1,13868:20225040,12666047:0,0,0 -k1,13868:32583029,12666047:12357989 -g1,13868:32583029,12666047 -) -(1,13869:6630773,13332225:25952256,404226,107478 -h1,13869:6630773,13332225:0,0,0 -g1,13869:6946919,13332225 -g1,13869:7263065,13332225 -g1,13869:12321396,13332225 -g1,13869:12953688,13332225 -g1,13869:14218271,13332225 -g1,13869:16115145,13332225 -g1,13869:16747437,13332225 -g1,13869:18328166,13332225 -g1,13869:19908895,13332225 -g1,13869:20541187,13332225 -g1,13869:21489625,13332225 -h1,13869:21805771,13332225:0,0,0 -k1,13869:32583029,13332225:10777258 -g1,13869:32583029,13332225 -) -(1,13870:6630773,13998403:25952256,404226,107478 -h1,13870:6630773,13998403:0,0,0 -g1,13870:6946919,13998403 -g1,13870:7263065,13998403 -k1,13870:7263065,13998403:0 -h1,13870:11056813,13998403:0,0,0 -k1,13870:32583029,13998403:21526216 -g1,13870:32583029,13998403 -) -] -) -g1,13872:32583029,14105881 -g1,13872:6630773,14105881 -g1,13872:6630773,14105881 -g1,13872:32583029,14105881 -g1,13872:32583029,14105881 -) -h1,13872:6630773,14302489:0,0,0 -v1,13876:6630773,16192553:0,393216,0 -(1,13877:6630773,18478585:25952256,2679248,616038 -g1,13877:6630773,18478585 -(1,13877:6630773,18478585:25952256,2679248,616038 -(1,13877:6630773,19094623:25952256,3295286,0 -[1,13877:6630773,19094623:25952256,3295286,0 -(1,13877:6630773,19068409:25952256,3242858,0 -r1,13920:6656987,19068409:26214,3242858,0 -[1,13877:6656987,19068409:25899828,3242858,0 -(1,13877:6656987,18478585:25899828,2063210,0 -[1,13877:7246811,18478585:24720180,2063210,0 -(1,13877:7246811,17502749:24720180,1087374,126483 -k1,13876:8749312,17502749:292798 -k1,13876:11248051,17502749:292797 -k1,13876:12559934,17502749:292798 -k1,13876:15514149,17502749:292798 -k1,13876:17662271,17502749:292798 -k1,13876:18606496,17502749:292797 -k1,13876:19991779,17502749:292798 -(1,13876:19991779,17502749:0,452978,122846 -r1,13920:24218875,17502749:4227096,575824,122846 -k1,13876:19991779,17502749:-4227096 -) -(1,13876:19991779,17502749:4227096,452978,122846 -k1,13876:19991779,17502749:3277 -h1,13876:24215598,17502749:0,411205,112570 -) -k1,13876:24511673,17502749:292798 -k1,13876:27131653,17502749:292797 -k1,13876:28091607,17502749:292798 -(1,13876:28091607,17502749:0,452978,122846 -r1,13920:31966991,17502749:3875384,575824,122846 -k1,13876:28091607,17502749:-3875384 -) -(1,13876:28091607,17502749:3875384,452978,122846 -k1,13876:28091607,17502749:3277 -h1,13876:31963714,17502749:0,411205,112570 -) -k1,13876:31966991,17502749:0 -) -(1,13877:7246811,18344237:24720180,505283,134348 -g1,13876:9355104,18344237 -g1,13876:10170371,18344237 -g1,13876:13209275,18344237 -g1,13876:14427589,18344237 -(1,13876:14427589,18344237:0,459977,115847 -r1,13920:15840990,18344237:1413401,575824,115847 -k1,13876:14427589,18344237:-1413401 -) -(1,13876:14427589,18344237:1413401,459977,115847 -k1,13876:14427589,18344237:3277 -h1,13876:15837713,18344237:0,411205,112570 -) -g1,13876:16040219,18344237 -k1,13877:31966991,18344237:12908839 -g1,13877:31966991,18344237 -) -] -) -] -r1,13920:32583029,19068409:26214,3242858,0 -) -] -) -) -g1,13877:32583029,18478585 -) -h1,13877:6630773,19094623:0,0,0 -(1,13880:6630773,20460399:25952256,513147,134348 -h1,13879:6630773,20460399:983040,0,0 -k1,13879:8414260,20460399:172612 -k1,13879:9605956,20460399:172611 -k1,13879:11162688,20460399:172612 -k1,13879:13996717,20460399:172612 -k1,13879:15037680,20460399:172611 -k1,13879:17030882,20460399:172612 -k1,13879:17559354,20460399:172612 -k1,13879:20494309,20460399:172612 -k1,13879:21997956,20460399:172611 -k1,13879:24352262,20460399:172612 -k1,13879:26260267,20460399:172612 -k1,13879:27451963,20460399:172611 -k1,13879:29278048,20460399:172612 -k1,13879:32583029,20460399:0 -) -(1,13880:6630773,21301887:25952256,513147,126483 -k1,13879:7507932,21301887:261121 -k1,13879:8788139,21301887:261122 -k1,13879:11279450,21301887:261121 -k1,13879:14471341,21301887:261121 -k1,13879:15929149,21301887:261121 -k1,13879:18258587,21301887:261122 -(1,13879:18258587,21301887:0,452978,115847 -r1,13920:20375412,21301887:2116825,568825,115847 -k1,13879:18258587,21301887:-2116825 -) -(1,13879:18258587,21301887:2116825,452978,115847 -k1,13879:18258587,21301887:3277 -h1,13879:20372135,21301887:0,411205,112570 -) -k1,13879:20636533,21301887:261121 -k1,13879:22123833,21301887:261121 -k1,13879:25031298,21301887:261121 -(1,13879:25031298,21301887:0,459977,115847 -r1,13920:27499835,21301887:2468537,575824,115847 -k1,13879:25031298,21301887:-2468537 -) -(1,13879:25031298,21301887:2468537,459977,115847 -k1,13879:25031298,21301887:3277 -h1,13879:27496558,21301887:0,411205,112570 -) -k1,13879:27760957,21301887:261122 -k1,13879:29213523,21301887:261121 -(1,13879:29213523,21301887:0,452978,115847 -r1,13920:31330348,21301887:2116825,568825,115847 -k1,13879:29213523,21301887:-2116825 -) -(1,13879:29213523,21301887:2116825,452978,115847 -k1,13879:29213523,21301887:3277 -h1,13879:31327071,21301887:0,411205,112570 -) -k1,13879:31591469,21301887:261121 -k1,13879:32583029,21301887:0 -) -(1,13880:6630773,22143375:25952256,513147,134348 -k1,13879:10366920,22143375:224073 -k1,13879:11352522,22143375:224074 -k1,13879:12342711,22143375:224073 -k1,13879:15285873,22143375:224073 -k1,13879:17847616,22143375:224074 -k1,13879:18881059,22143375:224073 -k1,13879:19871249,22143375:224074 -k1,13879:23149300,22143375:224073 -k1,13879:26123264,22143375:224073 -k1,13879:29706058,22143375:224074 -k1,13879:31591469,22143375:224073 -k1,13879:32583029,22143375:0 -) -(1,13880:6630773,22984863:25952256,513147,134348 -k1,13879:9713374,22984863:298632 -k1,13879:10959658,22984863:298633 -k1,13879:13655597,22984863:298632 -k1,13879:16343017,22984863:298633 -k1,13879:19152989,22984863:298632 -k1,13879:20945188,22984863:298633 -k1,13879:21929982,22984863:298632 -k1,13879:23247700,22984863:298633 -k1,13879:24343250,22984863:298632 -k1,13879:26480068,22984863:298533 -k1,13879:28440038,22984863:298632 -k1,13879:29500199,22984863:298633 -k1,13879:30817916,22984863:298632 -(1,13879:30817916,22984863:0,459977,115847 -r1,13920:32583029,22984863:1765113,575824,115847 -k1,13879:30817916,22984863:-1765113 -) -(1,13879:30817916,22984863:1765113,459977,115847 -k1,13879:30817916,22984863:3277 -h1,13879:32579752,22984863:0,411205,112570 -) -k1,13879:32583029,22984863:0 -) -(1,13880:6630773,23826351:25952256,505283,126483 -g1,13879:9011040,23826351 -g1,13879:9838104,23826351 -g1,13879:11240574,23826351 -g1,13879:12980554,23826351 -g1,13879:14688422,23826351 -g1,13879:16955967,23826351 -g1,13879:18259478,23826351 -g1,13879:19206473,23826351 -g1,13879:21829879,23826351 -g1,13879:23423059,23826351 -(1,13879:23423059,23826351:0,459977,115847 -r1,13920:29408714,23826351:5985655,575824,115847 -k1,13879:23423059,23826351:-5985655 -) -(1,13879:23423059,23826351:5985655,459977,115847 -k1,13879:23423059,23826351:3277 -h1,13879:29405437,23826351:0,411205,112570 -) -k1,13880:32583029,23826351:3000645 -g1,13880:32583029,23826351 -) -v1,13882:6630773,25016817:0,393216,0 -(1,13888:6630773,26664269:25952256,2040668,196608 -g1,13888:6630773,26664269 -g1,13888:6630773,26664269 -g1,13888:6434165,26664269 -(1,13888:6434165,26664269:0,2040668,196608 -r1,13920:32779637,26664269:26345472,2237276,196608 -k1,13888:6434165,26664269:-26345472 -) -(1,13888:6434165,26664269:26345472,2040668,196608 -[1,13888:6630773,26664269:25952256,1844060,0 -(1,13884:6630773,25224435:25952256,404226,107478 -(1,13883:6630773,25224435:0,0,0 -g1,13883:6630773,25224435 -g1,13883:6630773,25224435 -g1,13883:6303093,25224435 -(1,13883:6303093,25224435:0,0,0 -) -g1,13883:6630773,25224435 -) -k1,13884:6630773,25224435:0 -g1,13884:11689104,25224435 -g1,13884:13902124,25224435 -g1,13884:14850562,25224435 -g1,13884:16747436,25224435 -g1,13884:17379728,25224435 -g1,13884:19908894,25224435 -h1,13884:20225040,25224435:0,0,0 -k1,13884:32583029,25224435:12357989 -g1,13884:32583029,25224435 -) -(1,13885:6630773,25890613:25952256,410518,107478 -h1,13885:6630773,25890613:0,0,0 -g1,13885:6946919,25890613 -g1,13885:7263065,25890613 -g1,13885:12321396,25890613 -g1,13885:12953688,25890613 -g1,13885:14218271,25890613 -g1,13885:16115145,25890613 -g1,13885:16747437,25890613 -g1,13885:18328166,25890613 -g1,13885:19908895,25890613 -g1,13885:20541187,25890613 -g1,13885:21489625,25890613 -g1,13885:23702645,25890613 -g1,13885:24334937,25890613 -g1,13885:27180249,25890613 -h1,13885:27496395,25890613:0,0,0 -k1,13885:32583029,25890613:5086634 -g1,13885:32583029,25890613 -) -(1,13886:6630773,26556791:25952256,404226,107478 -h1,13886:6630773,26556791:0,0,0 -g1,13886:6946919,26556791 -g1,13886:7263065,26556791 -k1,13886:7263065,26556791:0 -h1,13886:11056813,26556791:0,0,0 -k1,13886:32583029,26556791:21526216 -g1,13886:32583029,26556791 -) -] -) -g1,13888:32583029,26664269 -g1,13888:6630773,26664269 -g1,13888:6630773,26664269 -g1,13888:32583029,26664269 -g1,13888:32583029,26664269 -) -h1,13888:6630773,26860877:0,0,0 -v1,13892:6630773,28750941:0,393216,0 -(1,13893:6630773,32719949:25952256,4362224,616038 -g1,13893:6630773,32719949 -(1,13893:6630773,32719949:25952256,4362224,616038 -(1,13893:6630773,33335987:25952256,4978262,0 -[1,13893:6630773,33335987:25952256,4978262,0 -(1,13893:6630773,33309773:25952256,4925834,0 -r1,13920:6656987,33309773:26214,4925834,0 -[1,13893:6656987,33309773:25899828,4925834,0 -(1,13893:6656987,32719949:25899828,3746186,0 -[1,13893:7246811,32719949:24720180,3746186,0 -(1,13893:7246811,30061137:24720180,1087374,134348 -k1,13892:8690182,30061137:233668 -k1,13892:9551685,30061137:233668 -k1,13892:10804438,30061137:233668 -k1,13892:14029826,30061137:233669 -k1,13892:16118818,30061137:233668 -k1,13892:17371571,30061137:233668 -k1,13892:20579918,30061137:233668 -k1,13892:23009697,30061137:233668 -k1,13892:24747416,30061137:233668 -k1,13892:25747201,30061137:233669 -k1,13892:26640161,30061137:233668 -k1,13892:27892914,30061137:233668 -k1,13892:29780055,30061137:233668 -k1,13892:31966991,30061137:0 -) -(1,13893:7246811,30902625:24720180,505283,134348 -k1,13892:10958639,30902625:349831 -k1,13892:11664330,30902625:349831 -k1,13892:13887181,30902625:349832 -k1,13892:17385362,30902625:349831 -k1,13892:19342791,30902625:349831 -k1,13892:20711707,30902625:349831 -k1,13892:22669136,30902625:349831 -k1,13892:24874292,30902625:349832 -k1,13892:26618074,30902625:349831 -k1,13892:28992312,30902625:349831 -k1,13892:31966991,30902625:0 -) -(1,13893:7246811,31744113:24720180,513147,134348 -k1,13892:9718810,31744113:275888 -k1,13892:10653989,31744113:275887 -k1,13892:13272134,31744113:275888 -k1,13892:15891589,31744113:275888 -k1,13892:18752871,31744113:275887 -k1,13892:19680187,31744113:275888 -k1,13892:20975160,31744113:275888 -(1,13892:20975160,31744113:0,452978,115847 -r1,13920:22740273,31744113:1765113,568825,115847 -k1,13892:20975160,31744113:-1765113 -) -(1,13892:20975160,31744113:1765113,452978,115847 -k1,13892:20975160,31744113:3277 -h1,13892:22736996,31744113:0,411205,112570 -) -k1,13892:23016160,31744113:275887 -k1,13892:26218885,31744113:275888 -k1,13892:27392616,31744113:275888 -k1,13892:28954319,31744113:275887 -k1,13892:30573040,31744113:275888 -k1,13892:31966991,31744113:0 -) -(1,13893:7246811,32585601:24720180,513147,134348 -g1,13892:11263512,32585601 -g1,13892:12122033,32585601 -g1,13892:14017989,32585601 -k1,13893:31966991,32585601:15931148 -g1,13893:31966991,32585601 -) -] -) -] -r1,13920:32583029,33309773:26214,4925834,0 -) -] -) -) -g1,13893:32583029,32719949 -) -h1,13893:6630773,33335987:0,0,0 -(1,13896:6630773,34701763:25952256,505283,134348 -h1,13895:6630773,34701763:983040,0,0 -k1,13895:10378912,34701763:285872 -k1,13895:15402382,34701763:285872 -k1,13895:19458540,34701763:285872 -k1,13895:22352090,34701763:285872 -k1,13895:25445524,34701763:285872 -k1,13895:26382824,34701763:285872 -k1,13895:27687781,34701763:285872 -(1,13895:27687781,34701763:0,452978,115847 -r1,13920:29452894,34701763:1765113,568825,115847 -k1,13895:27687781,34701763:-1765113 -) -(1,13895:27687781,34701763:1765113,452978,115847 -k1,13895:27687781,34701763:3277 -h1,13895:29449617,34701763:0,411205,112570 -) -k1,13895:29738766,34701763:285872 -k1,13895:32583029,34701763:0 -) -(1,13896:6630773,35543251:25952256,505283,134348 -k1,13895:9789010,35543251:183558 -k1,13895:12168679,35543251:183558 -k1,13895:13636743,35543251:183558 -k1,13895:14924583,35543251:183558 -k1,13895:15855907,35543251:183558 -k1,13895:18202808,35543251:183558 -k1,13895:19072528,35543251:183558 -k1,13895:23200043,35543251:183558 -k1,13895:24575046,35543251:183558 -k1,13895:26940298,35543251:183558 -(1,13895:26940298,35543251:0,414482,115847 -r1,13920:31167394,35543251:4227096,530329,115847 -k1,13895:26940298,35543251:-4227096 -) -(1,13895:26940298,35543251:4227096,414482,115847 -g1,13895:29053846,35543251 -g1,13895:29757270,35543251 -h1,13895:31164117,35543251:0,411205,112570 -) -k1,13895:31350952,35543251:183558 -k1,13895:32583029,35543251:0 -) -(1,13896:6630773,36384739:25952256,513147,134348 -k1,13895:9048692,36384739:139232 -h1,13895:10417739,36384739:0,0,0 -k1,13895:10556971,36384739:139232 -k1,13895:11505572,36384739:139231 -k1,13895:13142957,36384739:139232 -h1,13895:14338334,36384739:0,0,0 -k1,13895:14858330,36384739:139232 -k1,13895:16659555,36384739:139232 -k1,13895:17667138,36384739:139231 -k1,13895:19448702,36384739:139232 -k1,13895:20607019,36384739:139232 -k1,13895:23720930,36384739:139232 -k1,13895:26056273,36384739:139232 -k1,13895:27930897,36384739:139231 -(1,13895:27930897,36384739:0,452978,115847 -r1,13920:30399434,36384739:2468537,568825,115847 -k1,13895:27930897,36384739:-2468537 -) -(1,13895:27930897,36384739:2468537,452978,115847 -k1,13895:27930897,36384739:3277 -h1,13895:30396157,36384739:0,411205,112570 -) -k1,13895:30538666,36384739:139232 -k1,13895:31923737,36384739:139232 -k1,13895:32583029,36384739:0 -) -(1,13896:6630773,37226227:25952256,513147,126483 -k1,13895:9071161,37226227:157769 -k1,13895:10609118,37226227:157769 -k1,13895:12535704,37226227:157769 -k1,13895:13979290,37226227:157770 -k1,13895:15612274,37226227:157769 -k1,13895:17279993,37226227:157769 -k1,13895:19860628,37226227:157769 -k1,13895:21175107,37226227:157769 -k1,13895:22094404,37226227:157769 -k1,13895:23582554,37226227:157769 -k1,13895:25121168,37226227:157770 -k1,13895:26371422,37226227:157769 -k1,13895:27196347,37226227:157769 -(1,13895:27196347,37226227:0,452978,115847 -r1,13920:29664884,37226227:2468537,568825,115847 -k1,13895:27196347,37226227:-2468537 -) -(1,13895:27196347,37226227:2468537,452978,115847 -k1,13895:27196347,37226227:3277 -h1,13895:29661607,37226227:0,411205,112570 -) -k1,13895:29822653,37226227:157769 -k1,13895:32583029,37226227:0 -) -(1,13896:6630773,38067715:25952256,513147,134348 -g1,13895:7600705,38067715 -g1,13895:10461351,38067715 -g1,13895:11319872,38067715 -g1,13895:14378437,38067715 -g1,13895:15236958,38067715 -g1,13895:17756817,38067715 -g1,13895:20264224,38067715 -g1,13895:21695530,38067715 -g1,13895:24173446,38067715 -h1,13895:25542493,38067715:0,0,0 -g1,13895:25741722,38067715 -g1,13895:26750321,38067715 -g1,13895:28447703,38067715 -h1,13895:29244621,38067715:0,0,0 -k1,13896:32583029,38067715:2957644 -g1,13896:32583029,38067715 -) -v1,13898:6630773,39258181:0,393216,0 -(1,13907:6630773,41631056:25952256,2766091,196608 -g1,13907:6630773,41631056 -g1,13907:6630773,41631056 -g1,13907:6434165,41631056 -(1,13907:6434165,41631056:0,2766091,196608 -r1,13920:32779637,41631056:26345472,2962699,196608 -k1,13907:6434165,41631056:-26345472 -) -(1,13907:6434165,41631056:26345472,2766091,196608 -[1,13907:6630773,41631056:25952256,2569483,0 -(1,13900:6630773,39465799:25952256,404226,101187 -(1,13899:6630773,39465799:0,0,0 -g1,13899:6630773,39465799 -g1,13899:6630773,39465799 -g1,13899:6303093,39465799 -(1,13899:6303093,39465799:0,0,0 -) -g1,13899:6630773,39465799 -) -g1,13900:9159939,39465799 -k1,13900:9159939,39465799:0 -h1,13900:9792231,39465799:0,0,0 -k1,13900:32583029,39465799:22790798 -g1,13900:32583029,39465799 -) -(1,13901:6630773,40131977:25952256,410518,101187 -h1,13901:6630773,40131977:0,0,0 -g1,13901:6946919,40131977 -g1,13901:7263065,40131977 -g1,13901:11372960,40131977 -g1,13901:12005252,40131977 -g1,13901:13585982,40131977 -g1,13901:14218274,40131977 -g1,13901:14850566,40131977 -g1,13901:17063587,40131977 -g1,13901:18328171,40131977 -g1,13901:20225045,40131977 -g1,13901:20857337,40131977 -g1,13901:25915668,40131977 -g1,13901:27496398,40131977 -g1,13901:29077127,40131977 -g1,13901:30341710,40131977 -g1,13901:30974002,40131977 -h1,13901:32238584,40131977:0,0,0 -k1,13901:32583029,40131977:344445 -g1,13901:32583029,40131977 -) -(1,13902:6630773,40798155:25952256,410518,101187 -h1,13902:6630773,40798155:0,0,0 -h1,13902:10740667,40798155:0,0,0 -k1,13902:32583029,40798155:21842362 -g1,13902:32583029,40798155 -) -(1,13906:6630773,41529869:25952256,404226,101187 -(1,13904:6630773,41529869:0,0,0 -g1,13904:6630773,41529869 -g1,13904:6630773,41529869 -g1,13904:6303093,41529869 -(1,13904:6303093,41529869:0,0,0 -) -g1,13904:6630773,41529869 -) -g1,13906:7579210,41529869 -g1,13906:8843793,41529869 -g1,13906:12321396,41529869 -g1,13906:15798999,41529869 -g1,13906:19276602,41529869 -g1,13906:22754205,41529869 -h1,13906:25915662,41529869:0,0,0 -k1,13906:32583029,41529869:6667367 -g1,13906:32583029,41529869 -) -] -) -g1,13907:32583029,41631056 -g1,13907:6630773,41631056 -g1,13907:6630773,41631056 -g1,13907:32583029,41631056 -g1,13907:32583029,41631056 -) -h1,13907:6630773,41827664:0,0,0 -(1,13911:6630773,43193440:25952256,505283,134348 -h1,13910:6630773,43193440:983040,0,0 -k1,13910:9169965,43193440:152371 -k1,13910:10513781,43193440:152371 -k1,13910:12510335,43193440:152371 -k1,13910:13477974,43193440:152371 -k1,13910:14696616,43193440:152371 -k1,13910:19165844,43193440:152371 -k1,13910:21642777,43193440:152371 -k1,13910:22814233,43193440:152371 -k1,13910:25491051,43193440:152371 -k1,13910:26990842,43193440:152371 -k1,13910:28507017,43193440:152371 -k1,13910:30168027,43193440:152371 -k1,13911:32583029,43193440:0 -) -(1,13911:6630773,44034928:25952256,505283,134348 -k1,13910:7828823,44034928:207801 -k1,13910:11948468,44034928:207801 -k1,13910:12784105,44034928:207802 -k1,13910:14010991,44034928:207801 -k1,13910:16880209,44034928:207801 -k1,13910:19117005,44034928:207801 -k1,13910:20193158,44034928:207801 -k1,13910:21931225,44034928:207801 -k1,13910:22790455,44034928:207802 -k1,13910:24090741,44034928:207801 -(1,13910:24090741,44034928:0,452978,115847 -r1,13920:29372972,44034928:5282231,568825,115847 -k1,13910:24090741,44034928:-5282231 -) -(1,13910:24090741,44034928:5282231,452978,115847 -k1,13910:24090741,44034928:3277 -h1,13910:29369695,44034928:0,411205,112570 -) -k1,13910:29580773,44034928:207801 -k1,13910:30440002,44034928:207801 -k1,13910:32583029,44034928:0 -) -(1,13911:6630773,44876416:25952256,513147,134348 -g1,13910:8114508,44876416 -g1,13910:9332822,44876416 -g1,13910:10758230,44876416 -g1,13910:11488956,44876416 -g1,13910:12754456,44876416 -g1,13910:15303151,44876416 -g1,13910:16115142,44876416 -g1,13910:17333456,44876416 -g1,13910:19022318,44876416 -g1,13910:19880839,44876416 -g1,13910:21099153,44876416 -g1,13910:23822829,44876416 -k1,13911:32583029,44876416:7239109 -g1,13911:32583029,44876416 -) -v1,13913:6630773,46066882:0,393216,0 -] -(1,13920:32583029,45706769:0,0,0 -g1,13920:32583029,45706769 -) -) -] -(1,13920:6630773,47279633:25952256,0,0 -h1,13920:6630773,47279633:25952256,0,0 -) -] -(1,13920:4262630,4025873:0,0,0 -[1,13920:-473656,4025873:0,0,0 -(1,13920:-473656,-710413:0,0,0 -(1,13920:-473656,-710413:0,0,0 -g1,13920:-473656,-710413 -) -g1,13920:-473656,-710413 -) -] -) -] -!26728 -}265 -Input:2078:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2079:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2080:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2081:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2082:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2083:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2084:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2085:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2086:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2087:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2088:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2089:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1116 -{266 -[1,13970:4262630,47279633:28320399,43253760,0 -(1,13970:4262630,4025873:0,0,0 -[1,13970:-473656,4025873:0,0,0 -(1,13970:-473656,-710413:0,0,0 -(1,13970:-473656,-644877:0,0,0 -k1,13970:-473656,-644877:-65536 -) -(1,13970:-473656,4736287:0,0,0 -k1,13970:-473656,4736287:5209943 -) -g1,13970:-473656,-710413 -) -] -) -[1,13970:6630773,47279633:25952256,43253760,0 -[1,13970:6630773,4812305:25952256,786432,0 -(1,13970:6630773,4812305:25952256,485622,11795 -(1,13970:6630773,4812305:25952256,485622,11795 -g1,13970:3078558,4812305 -[1,13970:3078558,4812305:0,0,0 -(1,13970:3078558,2439708:0,1703936,0 -k1,13970:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,13970:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,13970:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,13970:3078558,4812305:0,0,0 -(1,13970:3078558,2439708:0,1703936,0 -g1,13970:29030814,2439708 -g1,13970:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,13970:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,13970:37855564,2439708:1179648,16384,0 -) -) -k1,13970:3078556,2439708:-34777008 -) -] -[1,13970:3078558,4812305:0,0,0 -(1,13970:3078558,49800853:0,16384,2228224 -k1,13970:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,13970:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,13970:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,13970:3078558,4812305:0,0,0 -(1,13970:3078558,49800853:0,16384,2228224 -g1,13970:29030814,49800853 -g1,13970:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,13970:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,13970:37855564,49800853:1179648,16384,0 -) -) -k1,13970:3078556,49800853:-34777008 -) -] -g1,13970:6630773,4812305 -g1,13970:6630773,4812305 -g1,13970:10347975,4812305 -k1,13970:31387651,4812305:21039676 -) -) -] -[1,13970:6630773,45706769:25952256,40108032,0 -(1,13970:6630773,45706769:25952256,40108032,0 -(1,13970:6630773,45706769:0,0,0 -g1,13970:6630773,45706769 -) -[1,13970:6630773,45706769:25952256,40108032,0 -v1,13920:6630773,6254097:0,393216,0 -(1,13920:6630773,8561436:25952256,2700555,196608 -g1,13920:6630773,8561436 -g1,13920:6630773,8561436 -g1,13920:6434165,8561436 -(1,13920:6434165,8561436:0,2700555,196608 -r1,13970:32779637,8561436:26345472,2897163,196608 -k1,13920:6434165,8561436:-26345472 -) -(1,13920:6434165,8561436:26345472,2700555,196608 -[1,13920:6630773,8561436:25952256,2503947,0 -(1,13915:6630773,6461715:25952256,404226,107478 -(1,13914:6630773,6461715:0,0,0 -g1,13914:6630773,6461715 -g1,13914:6630773,6461715 -g1,13914:6303093,6461715 -(1,13914:6303093,6461715:0,0,0 -) -g1,13914:6630773,6461715 -) -k1,13915:6630773,6461715:0 -g1,13915:11689104,6461715 -g1,13915:13902124,6461715 -g1,13915:14850562,6461715 -g1,13915:16747436,6461715 -g1,13915:17379728,6461715 -g1,13915:19908894,6461715 -h1,13915:20225040,6461715:0,0,0 -k1,13915:32583029,6461715:12357989 -g1,13915:32583029,6461715 -) -(1,13916:6630773,7127893:25952256,404226,107478 -h1,13916:6630773,7127893:0,0,0 -g1,13916:6946919,7127893 -g1,13916:7263065,7127893 -g1,13916:12321396,7127893 -g1,13916:12953688,7127893 -g1,13916:14850563,7127893 -g1,13916:16747437,7127893 -g1,13916:17379729,7127893 -g1,13916:19276604,7127893 -g1,13916:20857333,7127893 -g1,13916:21489625,7127893 -g1,13916:22438063,7127893 -h1,13916:22754209,7127893:0,0,0 -k1,13916:32583029,7127893:9828820 -g1,13916:32583029,7127893 -) -(1,13917:6630773,7794071:25952256,404226,107478 -h1,13917:6630773,7794071:0,0,0 -g1,13917:6946919,7794071 -g1,13917:7263065,7794071 -g1,13917:11372959,7794071 -h1,13917:11689105,7794071:0,0,0 -k1,13917:32583029,7794071:20893924 -g1,13917:32583029,7794071 -) -(1,13918:6630773,8460249:25952256,404226,101187 -h1,13918:6630773,8460249:0,0,0 -g1,13918:6946919,8460249 -g1,13918:7263065,8460249 -g1,13918:12321397,8460249 -g1,13918:12953689,8460249 -h1,13918:14218272,8460249:0,0,0 -k1,13918:32583028,8460249:18364756 -g1,13918:32583028,8460249 -) -] -) -g1,13920:32583029,8561436 -g1,13920:6630773,8561436 -g1,13920:6630773,8561436 -g1,13920:32583029,8561436 -g1,13920:32583029,8561436 -) -h1,13920:6630773,8758044:0,0,0 -(1,13923:6630773,18431534:25952256,9083666,0 -k1,13923:10523651,18431534:3892878 -h1,13922:10523651,18431534:0,0,0 -(1,13922:10523651,18431534:18166500,9083666,0 -(1,13922:10523651,18431534:18167376,9083688,0 -(1,13922:10523651,18431534:18167376,9083688,0 -(1,13922:10523651,18431534:0,9083688,0 -(1,13922:10523651,18431534:0,14208860,0 -(1,13922:10523651,18431534:28417720,14208860,0 -) -k1,13922:10523651,18431534:-28417720 -) -) -g1,13922:28691027,18431534 -) -) -) -g1,13923:28690151,18431534 -k1,13923:32583029,18431534:3892878 -) -(1,13930:6630773,19273022:25952256,505283,126483 -h1,13929:6630773,19273022:983040,0,0 -k1,13929:8453247,19273022:211599 -k1,13929:9683932,19273022:211600 -k1,13929:12556948,19273022:211599 -k1,13929:14797542,19273022:211599 -k1,13929:15877493,19273022:211599 -k1,13929:18674488,19273022:211600 -k1,13929:19537515,19273022:211599 -k1,13929:21262996,19273022:211599 -k1,13929:22493680,19273022:211599 -k1,13929:23931459,19273022:211600 -k1,13929:24794486,19273022:211599 -k1,13929:25753851,19273022:211599 -k1,13929:28302464,19273022:211599 -k1,13929:28983957,19273022:211600 -k1,13929:29727053,19273022:211599 -k1,13929:31224468,19273022:211599 -k1,13930:32583029,19273022:0 -) -(1,13930:6630773,20114510:25952256,513147,126483 -k1,13929:8491070,20114510:202236 -k1,13929:9884752,20114510:202237 -k1,13929:12374195,20114510:202236 -k1,13929:16015761,20114510:202237 -k1,13929:16869425,20114510:202236 -k1,13929:18713994,20114510:202237 -k1,13929:21428225,20114510:202236 -k1,13929:23474645,20114510:202237 -k1,13929:24486251,20114510:202236 -k1,13929:25707573,20114510:202237 -k1,13929:26705416,20114510:202236 -k1,13929:28917642,20114510:202237 -(1,13929:28917642,20114510:0,452978,115847 -r1,13970:30682755,20114510:1765113,568825,115847 -k1,13929:28917642,20114510:-1765113 -) -(1,13929:28917642,20114510:1765113,452978,115847 -k1,13929:28917642,20114510:3277 -h1,13929:30679478,20114510:0,411205,112570 -) -k1,13929:30884991,20114510:202236 -k1,13929:32583029,20114510:0 -) -(1,13930:6630773,20955998:25952256,513147,134348 -k1,13929:9010955,20955998:198488 -k1,13929:10228527,20955998:198487 -k1,13929:13234577,20955998:198488 -k1,13929:14380715,20955998:198487 -(1,13929:14380715,20955998:0,452978,115847 -r1,13970:16145828,20955998:1765113,568825,115847 -k1,13929:14380715,20955998:-1765113 -) -(1,13929:14380715,20955998:1765113,452978,115847 -k1,13929:14380715,20955998:3277 -h1,13929:16142551,20955998:0,411205,112570 -) -k1,13929:16517986,20955998:198488 -k1,13929:18204796,20955998:198487 -k1,13929:19271636,20955998:198488 -k1,13929:20562608,20955998:198487 -(1,13929:20562608,20955998:0,452978,122846 -r1,13970:24437992,20955998:3875384,575824,122846 -k1,13929:20562608,20955998:-3875384 -) -(1,13929:20562608,20955998:3875384,452978,122846 -k1,13929:20562608,20955998:3277 -h1,13929:24434715,20955998:0,411205,112570 -) -k1,13929:24636480,20955998:198488 -k1,13929:26228918,20955998:198487 -k1,13929:28623517,20955998:198488 -k1,13929:29473432,20955998:198487 -k1,13929:30419686,20955998:198488 -k1,13929:32583029,20955998:0 -) -(1,13930:6630773,21797486:25952256,513147,126483 -k1,13929:8061267,21797486:163028 -k1,13929:11994581,21797486:163028 -k1,13929:14507730,21797486:163028 -k1,13929:15480127,21797486:163027 -k1,13929:16662240,21797486:163028 -k1,13929:17620875,21797486:163028 -k1,13929:19793892,21797486:163028 -k1,13929:20976005,21797486:163028 -k1,13929:22238727,21797486:163028 -k1,13929:23053183,21797486:163028 -(1,13929:23053183,21797486:0,452978,115847 -r1,13970:24818296,21797486:1765113,568825,115847 -k1,13929:23053183,21797486:-1765113 -) -(1,13929:23053183,21797486:1765113,452978,115847 -k1,13929:23053183,21797486:3277 -h1,13929:24815019,21797486:0,411205,112570 -) -k1,13929:25154993,21797486:163027 -k1,13929:26514708,21797486:163028 -k1,13929:28331209,21797486:163028 -k1,13929:31478747,21797486:163028 -k1,13929:32583029,21797486:0 -) -(1,13930:6630773,22638974:25952256,513147,134348 -g1,13929:7577768,22638974 -g1,13929:9290223,22638974 -g1,13929:10437103,22638974 -g1,13929:12910431,22638974 -g1,13929:16084339,22638974 -g1,13929:18479679,22638974 -g1,13929:19745179,22638974 -g1,13929:22879110,22638974 -k1,13930:32583029,22638974:7144738 -g1,13930:32583029,22638974 -) -v1,13932:6630773,23829440:0,393216,0 -(1,13938:6630773,25476892:25952256,2040668,196608 -g1,13938:6630773,25476892 -g1,13938:6630773,25476892 -g1,13938:6434165,25476892 -(1,13938:6434165,25476892:0,2040668,196608 -r1,13970:32779637,25476892:26345472,2237276,196608 -k1,13938:6434165,25476892:-26345472 -) -(1,13938:6434165,25476892:26345472,2040668,196608 -[1,13938:6630773,25476892:25952256,1844060,0 -(1,13934:6630773,24037058:25952256,404226,107478 -(1,13933:6630773,24037058:0,0,0 -g1,13933:6630773,24037058 -g1,13933:6630773,24037058 -g1,13933:6303093,24037058 -(1,13933:6303093,24037058:0,0,0 -) -g1,13933:6630773,24037058 -) -k1,13934:6630773,24037058:0 -g1,13934:11689104,24037058 -g1,13934:13902124,24037058 -g1,13934:14850562,24037058 -g1,13934:16747436,24037058 -g1,13934:17379728,24037058 -g1,13934:22438059,24037058 -g1,13934:23386497,24037058 -g1,13934:24967226,24037058 -g1,13934:26231809,24037058 -g1,13934:26864101,24037058 -g1,13934:28760975,24037058 -h1,13934:29077121,24037058:0,0,0 -k1,13934:32583029,24037058:3505908 -g1,13934:32583029,24037058 -) -(1,13935:6630773,24703236:25952256,404226,107478 -h1,13935:6630773,24703236:0,0,0 -g1,13935:6946919,24703236 -g1,13935:7263065,24703236 -g1,13935:12321396,24703236 -g1,13935:12953688,24703236 -g1,13935:14850563,24703236 -g1,13935:16747437,24703236 -g1,13935:17379729,24703236 -g1,13935:19276604,24703236 -g1,13935:20857333,24703236 -g1,13935:21489625,24703236 -g1,13935:22438063,24703236 -h1,13935:22754209,24703236:0,0,0 -k1,13935:32583029,24703236:9828820 -g1,13935:32583029,24703236 -) -(1,13936:6630773,25369414:25952256,404226,107478 -h1,13936:6630773,25369414:0,0,0 -g1,13936:6946919,25369414 -g1,13936:7263065,25369414 -k1,13936:7263065,25369414:0 -h1,13936:11056813,25369414:0,0,0 -k1,13936:32583029,25369414:21526216 -g1,13936:32583029,25369414 -) -] -) -g1,13938:32583029,25476892 -g1,13938:6630773,25476892 -g1,13938:6630773,25476892 -g1,13938:32583029,25476892 -g1,13938:32583029,25476892 -) -h1,13938:6630773,25673500:0,0,0 -(1,13942:6630773,27039276:25952256,513147,126483 -h1,13941:6630773,27039276:983040,0,0 -k1,13941:8660504,27039276:228802 -(1,13941:8660504,27039276:0,452978,122846 -r1,13970:12887600,27039276:4227096,575824,122846 -k1,13941:8660504,27039276:-4227096 -) -(1,13941:8660504,27039276:4227096,452978,122846 -k1,13941:8660504,27039276:3277 -h1,13941:12884323,27039276:0,411205,112570 -) -k1,13941:13116403,27039276:228803 -k1,13941:15178902,27039276:228802 -k1,13941:16426790,27039276:228803 -k1,13941:18309065,27039276:228802 -k1,13941:22148901,27039276:228802 -k1,13941:23063866,27039276:228803 -(1,13941:23063866,27039276:0,452978,122846 -r1,13970:26939250,27039276:3875384,575824,122846 -k1,13941:23063866,27039276:-3875384 -) -(1,13941:23063866,27039276:3875384,452978,122846 -k1,13941:23063866,27039276:3277 -h1,13941:26935973,27039276:0,411205,112570 -) -k1,13941:27168052,27039276:228802 -k1,13941:29467793,27039276:228803 -k1,13941:30644246,27039276:228802 -(1,13941:30644246,27039276:0,452978,122846 -r1,13970:32409359,27039276:1765113,575824,122846 -k1,13941:30644246,27039276:-1765113 -) -(1,13941:30644246,27039276:1765113,452978,122846 -k1,13941:30644246,27039276:3277 -h1,13941:32406082,27039276:0,411205,112570 -) -k1,13941:32583029,27039276:0 -) -(1,13942:6630773,27880764:25952256,513147,126483 -k1,13941:7639020,27880764:139895 -k1,13941:9811842,27880764:139895 -k1,13941:12621019,27880764:139896 -k1,13941:14629345,27880764:139895 -k1,13941:16144841,27880764:139895 -k1,13941:17303821,27880764:139895 -k1,13941:20670709,27880764:139895 -k1,13941:24421639,27880764:139896 -k1,13941:27742652,27880764:139895 -k1,13941:28533975,27880764:139895 -(1,13941:28533975,27880764:0,452978,122846 -r1,13970:32409359,27880764:3875384,575824,122846 -k1,13941:28533975,27880764:-3875384 -) -(1,13941:28533975,27880764:3875384,452978,122846 -k1,13941:28533975,27880764:3277 -h1,13941:32406082,27880764:0,411205,112570 -) -k1,13941:32583029,27880764:0 -) -(1,13942:6630773,28722252:25952256,513147,126483 -k1,13941:7762322,28722252:178000 -k1,13941:9277257,28722252:178001 -k1,13941:11003873,28722252:178000 -k1,13941:11833301,28722252:178000 -k1,13941:13464890,28722252:178000 -k1,13941:14661976,28722252:178001 -k1,13941:17105556,28722252:178000 -k1,13941:19098248,28722252:178000 -k1,13941:19935541,28722252:178001 -k1,13941:21132626,28722252:178000 -k1,13941:23450377,28722252:178000 -k1,13941:24796885,28722252:178001 -k1,13941:25657770,28722252:178000 -k1,13941:26854855,28722252:178000 -k1,13941:28648973,28722252:178000 -k1,13941:30340200,28722252:178001 -k1,13941:31169628,28722252:178000 -(1,13941:31169628,28722252:0,459977,115847 -r1,13970:32583029,28722252:1413401,575824,115847 -k1,13941:31169628,28722252:-1413401 -) -(1,13941:31169628,28722252:1413401,459977,115847 -k1,13941:31169628,28722252:3277 -h1,13941:32579752,28722252:0,411205,112570 -) -k1,13941:32583029,28722252:0 -) -(1,13942:6630773,29563740:25952256,513147,134348 -k1,13941:7816420,29563740:166562 -k1,13941:11080213,29563740:166562 -k1,13941:11929661,29563740:166563 -k1,13941:12747651,29563740:166562 -k1,13941:15154889,29563740:166562 -k1,13941:16340536,29563740:166562 -k1,13941:20463507,29563740:166563 -k1,13941:21289361,29563740:166562 -k1,13941:22475008,29563740:166562 -k1,13941:25212547,29563740:166562 -k1,13941:26208140,29563740:166563 -k1,13941:29257631,29563740:166562 -k1,13941:30443278,29563740:166562 -k1,13941:32583029,29563740:0 -) -(1,13942:6630773,30405228:25952256,505283,126483 -k1,13941:8257954,30405228:285004 -k1,13941:9635443,30405228:285004 -(1,13941:9635443,30405228:0,452978,115847 -r1,13970:14565963,30405228:4930520,568825,115847 -k1,13941:9635443,30405228:-4930520 -) -(1,13941:9635443,30405228:4930520,452978,115847 -g1,13941:13507550,30405228 -g1,13941:14210974,30405228 -h1,13941:14562686,30405228:0,411205,112570 -) -k1,13941:15024637,30405228:285004 -k1,13941:17498544,30405228:285004 -k1,13941:21139648,30405228:285005 -k1,13941:21956149,30405228:285004 -k1,13941:25502224,30405228:285004 -k1,13941:26548756,30405228:285004 -k1,13941:30114492,30405228:285004 -(1,13941:30114492,30405228:0,452978,115847 -r1,13970:32583029,30405228:2468537,568825,115847 -k1,13941:30114492,30405228:-2468537 -) -(1,13941:30114492,30405228:2468537,452978,115847 -k1,13941:30114492,30405228:3277 -h1,13941:32579752,30405228:0,411205,112570 -) -k1,13941:32583029,30405228:0 -) -(1,13942:6630773,31246716:25952256,513147,134348 -g1,13941:8021447,31246716 -g1,13941:9239761,31246716 -g1,13941:10707767,31246716 -g1,13941:11566288,31246716 -g1,13941:12784602,31246716 -g1,13941:15238270,31246716 -g1,13941:17726672,31246716 -g1,13941:18944986,31246716 -g1,13941:20370394,31246716 -g1,13941:21331151,31246716 -(1,13941:21331151,31246716:0,452978,122846 -r1,13970:25909959,31246716:4578808,575824,122846 -k1,13941:21331151,31246716:-4578808 -) -(1,13941:21331151,31246716:4578808,452978,122846 -k1,13941:21331151,31246716:3277 -h1,13941:25906682,31246716:0,411205,112570 -) -k1,13942:32583029,31246716:6499400 -g1,13942:32583029,31246716 -) -v1,13945:6630773,32437182:0,393216,0 -(1,13960:6630773,40073945:25952256,8029979,196608 -g1,13960:6630773,40073945 -g1,13960:6630773,40073945 -g1,13960:6434165,40073945 -(1,13960:6434165,40073945:0,8029979,196608 -r1,13970:32779637,40073945:26345472,8226587,196608 -k1,13960:6434165,40073945:-26345472 -) -(1,13960:6434165,40073945:26345472,8029979,196608 -[1,13960:6630773,40073945:25952256,7833371,0 -(1,13947:6630773,32644800:25952256,404226,101187 -(1,13946:6630773,32644800:0,0,0 -g1,13946:6630773,32644800 -g1,13946:6630773,32644800 -g1,13946:6303093,32644800 -(1,13946:6303093,32644800:0,0,0 -) -g1,13946:6630773,32644800 -) -g1,13947:9159939,32644800 -k1,13947:9159939,32644800:0 -h1,13947:9792231,32644800:0,0,0 -k1,13947:32583029,32644800:22790798 -g1,13947:32583029,32644800 -) -(1,13948:6630773,33310978:25952256,410518,101187 -h1,13948:6630773,33310978:0,0,0 -g1,13948:6946919,33310978 -g1,13948:7263065,33310978 -g1,13948:11372960,33310978 -g1,13948:12005252,33310978 -g1,13948:13585982,33310978 -g1,13948:14218274,33310978 -g1,13948:14850566,33310978 -g1,13948:17063587,33310978 -k1,13948:17063587,33310978:0 -h1,13948:18012025,33310978:0,0,0 -k1,13948:32583029,33310978:14571004 -g1,13948:32583029,33310978 -) -(1,13949:6630773,33977156:25952256,410518,82312 -h1,13949:6630773,33977156:0,0,0 -g1,13949:6946919,33977156 -g1,13949:7263065,33977156 -g1,13949:7579211,33977156 -g1,13949:7895357,33977156 -g1,13949:8211503,33977156 -g1,13949:8527649,33977156 -g1,13949:8843795,33977156 -g1,13949:9159941,33977156 -g1,13949:9476087,33977156 -g1,13949:9792233,33977156 -g1,13949:10108379,33977156 -g1,13949:10424525,33977156 -g1,13949:10740671,33977156 -g1,13949:12637545,33977156 -g1,13949:13269837,33977156 -g1,13949:16115149,33977156 -g1,13949:18328169,33977156 -g1,13949:21173481,33977156 -g1,13949:23702647,33977156 -h1,13949:26231812,33977156:0,0,0 -k1,13949:32583029,33977156:6351217 -g1,13949:32583029,33977156 -) -(1,13950:6630773,34643334:25952256,0,0 -h1,13950:6630773,34643334:0,0,0 -h1,13950:6630773,34643334:0,0,0 -k1,13950:32583029,34643334:25952256 -g1,13950:32583029,34643334 -) -(1,13951:6630773,35309512:25952256,404226,107478 -h1,13951:6630773,35309512:0,0,0 -g1,13951:11689104,35309512 -g1,13951:13902124,35309512 -g1,13951:14850562,35309512 -g1,13951:16747436,35309512 -g1,13951:17379728,35309512 -g1,13951:19908894,35309512 -h1,13951:20225040,35309512:0,0,0 -k1,13951:32583029,35309512:12357989 -g1,13951:32583029,35309512 -) -(1,13952:6630773,35975690:25952256,404226,107478 -h1,13952:6630773,35975690:0,0,0 -g1,13952:6946919,35975690 -g1,13952:7263065,35975690 -g1,13952:12637542,35975690 -g1,13952:13269834,35975690 -g1,13952:15166709,35975690 -g1,13952:16747438,35975690 -g1,13952:17379730,35975690 -k1,13952:17379730,35975690:0 -h1,13952:18012022,35975690:0,0,0 -k1,13952:32583029,35975690:14571007 -g1,13952:32583029,35975690 -) -(1,13953:6630773,36641868:25952256,404226,82312 -h1,13953:6630773,36641868:0,0,0 -g1,13953:6946919,36641868 -g1,13953:7263065,36641868 -g1,13953:7579211,36641868 -g1,13953:7895357,36641868 -g1,13953:8211503,36641868 -g1,13953:8527649,36641868 -g1,13953:8843795,36641868 -g1,13953:9159941,36641868 -g1,13953:9476087,36641868 -g1,13953:9792233,36641868 -g1,13953:10108379,36641868 -g1,13953:10424525,36641868 -g1,13953:10740671,36641868 -g1,13953:14218274,36641868 -g1,13953:14850566,36641868 -k1,13953:14850566,36641868:0 -h1,13953:15799003,36641868:0,0,0 -k1,13953:32583029,36641868:16784026 -g1,13953:32583029,36641868 -) -(1,13954:6630773,37308046:25952256,404226,82312 -h1,13954:6630773,37308046:0,0,0 -g1,13954:6946919,37308046 -g1,13954:7263065,37308046 -g1,13954:7579211,37308046 -g1,13954:7895357,37308046 -g1,13954:8211503,37308046 -g1,13954:8527649,37308046 -g1,13954:8843795,37308046 -g1,13954:9159941,37308046 -g1,13954:9476087,37308046 -g1,13954:9792233,37308046 -g1,13954:10108379,37308046 -g1,13954:10424525,37308046 -g1,13954:10740671,37308046 -g1,13954:13269837,37308046 -g1,13954:13902129,37308046 -g1,13954:16431296,37308046 -k1,13954:16431296,37308046:0 -h1,13954:19276608,37308046:0,0,0 -k1,13954:32583029,37308046:13306421 -g1,13954:32583029,37308046 -) -(1,13955:6630773,37974224:25952256,404226,107478 -h1,13955:6630773,37974224:0,0,0 -g1,13955:6946919,37974224 -g1,13955:7263065,37974224 -g1,13955:7579211,37974224 -g1,13955:7895357,37974224 -g1,13955:8211503,37974224 -g1,13955:8527649,37974224 -g1,13955:8843795,37974224 -g1,13955:9159941,37974224 -g1,13955:9476087,37974224 -g1,13955:9792233,37974224 -g1,13955:10108379,37974224 -g1,13955:10424525,37974224 -g1,13955:10740671,37974224 -g1,13955:15166711,37974224 -g1,13955:15799003,37974224 -g1,13955:19276607,37974224 -k1,13955:19276607,37974224:0 -h1,13955:22121919,37974224:0,0,0 -k1,13955:32583029,37974224:10461110 -g1,13955:32583029,37974224 -) -(1,13956:6630773,38640402:25952256,410518,101187 -h1,13956:6630773,38640402:0,0,0 -g1,13956:6946919,38640402 -g1,13956:7263065,38640402 -g1,13956:7579211,38640402 -g1,13956:7895357,38640402 -g1,13956:8211503,38640402 -g1,13956:8527649,38640402 -g1,13956:8843795,38640402 -g1,13956:9159941,38640402 -g1,13956:9476087,38640402 -g1,13956:9792233,38640402 -g1,13956:10108379,38640402 -g1,13956:10424525,38640402 -g1,13956:10740671,38640402 -g1,13956:12321400,38640402 -g1,13956:12953692,38640402 -g1,13956:16115149,38640402 -g1,13956:18012023,38640402 -g1,13956:18644315,38640402 -g1,13956:20225044,38640402 -h1,13956:20541190,38640402:0,0,0 -k1,13956:32583029,38640402:12041839 -g1,13956:32583029,38640402 -) -(1,13957:6630773,39306580:25952256,404226,107478 -h1,13957:6630773,39306580:0,0,0 -g1,13957:6946919,39306580 -g1,13957:7263065,39306580 -g1,13957:11372959,39306580 -h1,13957:11689105,39306580:0,0,0 -k1,13957:32583029,39306580:20893924 -g1,13957:32583029,39306580 -) -(1,13958:6630773,39972758:25952256,404226,101187 -h1,13958:6630773,39972758:0,0,0 -g1,13958:6946919,39972758 -g1,13958:7263065,39972758 -g1,13958:12321397,39972758 -g1,13958:12953689,39972758 -h1,13958:14218272,39972758:0,0,0 -k1,13958:32583028,39972758:18364756 -g1,13958:32583028,39972758 -) -] -) -g1,13960:32583029,40073945 -g1,13960:6630773,40073945 -g1,13960:6630773,40073945 -g1,13960:32583029,40073945 -g1,13960:32583029,40073945 -) -h1,13960:6630773,40270553:0,0,0 -] -(1,13970:32583029,45706769:0,0,0 -g1,13970:32583029,45706769 -) -) -] -(1,13970:6630773,47279633:25952256,0,0 -h1,13970:6630773,47279633:25952256,0,0 -) -] -(1,13970:4262630,4025873:0,0,0 -[1,13970:-473656,4025873:0,0,0 -(1,13970:-473656,-710413:0,0,0 -(1,13970:-473656,-710413:0,0,0 -g1,13970:-473656,-710413 -) -g1,13970:-473656,-710413 -) -] -) -] -!22486 -}266 -Input:2090:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2091:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2092:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2093:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2094:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2095:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2096:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2097:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2098:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2099:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2100:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2101:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2102:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2103:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2104:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2105:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2106:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2107:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2108:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1760 -{267 -[1,14002:4262630,47279633:28320399,43253760,0 -(1,14002:4262630,4025873:0,0,0 -[1,14002:-473656,4025873:0,0,0 -(1,14002:-473656,-710413:0,0,0 -(1,14002:-473656,-644877:0,0,0 -k1,14002:-473656,-644877:-65536 -) -(1,14002:-473656,4736287:0,0,0 -k1,14002:-473656,4736287:5209943 -) -g1,14002:-473656,-710413 -) -] -) -[1,14002:6630773,47279633:25952256,43253760,0 -[1,14002:6630773,4812305:25952256,786432,0 -(1,14002:6630773,4812305:25952256,513147,134348 -(1,14002:6630773,4812305:25952256,513147,134348 -g1,14002:3078558,4812305 -[1,14002:3078558,4812305:0,0,0 -(1,14002:3078558,2439708:0,1703936,0 -k1,14002:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,14002:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,14002:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,14002:3078558,4812305:0,0,0 -(1,14002:3078558,2439708:0,1703936,0 -g1,14002:29030814,2439708 -g1,14002:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,14002:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,14002:37855564,2439708:1179648,16384,0 -) -) -k1,14002:3078556,2439708:-34777008 -) -] -[1,14002:3078558,4812305:0,0,0 -(1,14002:3078558,49800853:0,16384,2228224 -k1,14002:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,14002:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,14002:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,14002:3078558,4812305:0,0,0 -(1,14002:3078558,49800853:0,16384,2228224 -g1,14002:29030814,49800853 -g1,14002:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,14002:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,14002:37855564,49800853:1179648,16384,0 -) -) -k1,14002:3078556,49800853:-34777008 -) -] -g1,14002:6630773,4812305 -k1,14002:25712890,4812305:17886740 -g1,14002:29057847,4812305 -g1,14002:29873114,4812305 -) -) -] -[1,14002:6630773,45706769:25952256,40108032,0 -(1,14002:6630773,45706769:25952256,40108032,0 -(1,14002:6630773,45706769:0,0,0 -g1,14002:6630773,45706769 -) -[1,14002:6630773,45706769:25952256,40108032,0 -(1,13963:6630773,14682403:25952256,9083666,0 -k1,13963:10523651,14682403:3892878 -h1,13962:10523651,14682403:0,0,0 -(1,13962:10523651,14682403:18166500,9083666,0 -(1,13962:10523651,14682403:18167376,9083688,0 -(1,13962:10523651,14682403:18167376,9083688,0 -(1,13962:10523651,14682403:0,9083688,0 -(1,13962:10523651,14682403:0,14208860,0 -(1,13962:10523651,14682403:28417720,14208860,0 -) -k1,13962:10523651,14682403:-28417720 -) -) -g1,13962:28691027,14682403 -) -) -) -g1,13963:28690151,14682403 -k1,13963:32583029,14682403:3892878 -) -v1,13970:6630773,16016013:0,393216,0 -(1,13971:6630773,20700024:25952256,5077227,616038 -g1,13971:6630773,20700024 -(1,13971:6630773,20700024:25952256,5077227,616038 -(1,13971:6630773,21316062:25952256,5693265,0 -[1,13971:6630773,21316062:25952256,5693265,0 -(1,13971:6630773,21289848:25952256,5640837,0 -r1,14002:6656987,21289848:26214,5640837,0 -[1,13971:6656987,21289848:25899828,5640837,0 -(1,13971:6656987,20700024:25899828,4461189,0 -[1,13971:7246811,20700024:24720180,4461189,0 -(1,13971:7246811,17326209:24720180,1087374,134348 -k1,13970:8648105,17326209:191591 -k1,13970:10137309,17326209:191591 -k1,13970:11722851,17326209:191591 -k1,13970:12933527,17326209:191591 -k1,13970:16527747,17326209:191591 -k1,13970:17370766,17326209:191591 -k1,13970:18581442,17326209:191591 -k1,13970:21535376,17326209:191591 -k1,13970:25338001,17326209:191591 -k1,13970:26721037,17326209:191591 -k1,13970:28306579,17326209:191591 -k1,13970:29517255,17326209:191591 -k1,13971:31966991,17326209:0 -) -(1,13971:7246811,18167697:24720180,513147,134348 -k1,13970:8341743,18167697:275076 -k1,13970:9268248,18167697:275077 -k1,13970:10521777,18167697:275076 -k1,13970:11567556,18167697:275076 -k1,13970:13167771,18167697:275077 -k1,13970:14102139,18167697:275076 -k1,13970:15925831,18167697:275076 -k1,13970:17305190,18167697:275077 -k1,13970:18328032,18167697:275076 -k1,13970:20180560,18167697:275076 -k1,13970:21849588,18167697:275077 -k1,13970:23937390,18167697:275076 -k1,13970:25254488,18167697:275076 -k1,13970:28364652,18167697:275077 -k1,13970:29732213,18167697:275076 -k1,13970:31966991,18167697:0 -) -(1,13971:7246811,19009185:24720180,505283,134348 -k1,13970:9592762,19009185:206200 -k1,13970:11297770,19009185:206200 -k1,13970:12695415,19009185:206200 -k1,13970:15520434,19009185:206200 -k1,13970:16745719,19009185:206200 -k1,13970:19560252,19009185:206200 -k1,13970:20491280,19009185:206200 -k1,13970:21981986,19009185:206200 -k1,13970:22544046,19009185:206200 -k1,13970:25180976,19009185:206200 -k1,13970:29712552,19009185:206200 -k1,13970:31966991,19009185:0 -) -(1,13971:7246811,19850673:24720180,513147,134348 -k1,13970:7967756,19850673:189448 -k1,13970:10963456,19850673:189448 -k1,13970:12406608,19850673:189448 -k1,13970:13932990,19850673:189448 -k1,13970:15408254,19850673:189448 -k1,13970:16504065,19850673:189448 -k1,13970:19501075,19850673:189448 -k1,13970:20709608,19850673:189448 -(1,13970:20709608,19850673:0,459977,115847 -r1,14002:22123009,19850673:1413401,575824,115847 -k1,13970:20709608,19850673:-1413401 -) -(1,13970:20709608,19850673:1413401,459977,115847 -k1,13970:20709608,19850673:3277 -h1,13970:22119732,19850673:0,411205,112570 -) -k1,13970:22312457,19850673:189448 -k1,13970:23693350,19850673:189448 -(1,13970:23693350,19850673:0,452978,115847 -r1,14002:25458463,19850673:1765113,568825,115847 -k1,13970:23693350,19850673:-1765113 -) -(1,13970:23693350,19850673:1765113,452978,115847 -k1,13970:23693350,19850673:3277 -h1,13970:25455186,19850673:0,411205,112570 -) -k1,13970:25647911,19850673:189448 -k1,13970:28901823,19850673:189448 -k1,13970:29742699,19850673:189448 -k1,13970:31966991,19850673:0 -) -(1,13971:7246811,20692161:24720180,505283,7863 -g1,13970:8062078,20692161 -g1,13970:9280392,20692161 -k1,13971:31966990,20692161:21123564 -g1,13971:31966990,20692161 -) -] -) -] -r1,14002:32583029,21289848:26214,5640837,0 -) -] -) -) -g1,13971:32583029,20700024 -) -h1,13971:6630773,21316062:0,0,0 -(1,13974:6630773,22649671:25952256,513147,126483 -h1,13973:6630773,22649671:983040,0,0 -k1,13973:8434338,22649671:342768 -k1,13973:9796191,22649671:342768 -k1,13973:13419691,22649671:342768 -(1,13973:13419691,22649671:0,452978,115847 -r1,14002:17998499,22649671:4578808,568825,115847 -k1,13973:13419691,22649671:-4578808 -) -(1,13973:13419691,22649671:4578808,452978,115847 -k1,13973:13419691,22649671:3277 -h1,13973:17995222,22649671:0,411205,112570 -) -k1,13973:18341267,22649671:342768 -k1,13973:19351192,22649671:342769 -(1,13973:19351192,22649671:0,452978,122846 -r1,14002:23226576,22649671:3875384,575824,122846 -k1,13973:19351192,22649671:-3875384 -) -(1,13973:19351192,22649671:3875384,452978,122846 -k1,13973:19351192,22649671:3277 -h1,13973:23223299,22649671:0,411205,112570 -) -k1,13973:23569344,22649671:342768 -k1,13973:24443609,22649671:342768 -k1,13973:25720920,22649671:342768 -k1,13973:26715116,22649671:342768 -(1,13973:26715116,22649671:0,414482,115847 -r1,14002:28128517,22649671:1413401,530329,115847 -k1,13973:26715116,22649671:-1413401 -) -(1,13973:26715116,22649671:1413401,414482,115847 -k1,13973:26715116,22649671:3277 -h1,13973:28125240,22649671:0,411205,112570 -) -k1,13973:28644955,22649671:342768 -k1,13973:30213902,22649671:342768 -k1,13973:32583029,22649671:0 -) -(1,13974:6630773,23491159:25952256,505283,134348 -k1,13973:8152399,23491159:389164 -k1,13973:9289330,23491159:389165 -k1,13973:12176071,23491159:389164 -k1,13973:13326764,23491159:389165 -k1,13973:17589106,23491159:389164 -k1,13973:18997356,23491159:389165 -k1,13973:20612699,23491159:389164 -k1,13973:22286370,23491159:389165 -k1,13973:24631784,23491159:389164 -k1,13973:28122768,23491159:389165 -k1,13973:30881059,23491159:389164 -k1,13973:32583029,23491159:0 -) -(1,13974:6630773,24332647:25952256,513147,126483 -k1,13973:8231098,24332647:200476 -k1,13973:11404286,24332647:200475 -k1,13973:14268801,24332647:200476 -k1,13973:15136432,24332647:200475 -(1,13973:15136432,24332647:0,452978,122846 -r1,14002:19011816,24332647:3875384,575824,122846 -k1,13973:15136432,24332647:-3875384 -) -(1,13973:15136432,24332647:3875384,452978,122846 -k1,13973:15136432,24332647:3277 -h1,13973:19008539,24332647:0,411205,112570 -) -k1,13973:19212292,24332647:200476 -k1,13973:20604212,24332647:200475 -(1,13973:20604212,24332647:0,452978,122846 -r1,14002:24831308,24332647:4227096,575824,122846 -k1,13973:20604212,24332647:-4227096 -) -(1,13973:20604212,24332647:4227096,452978,122846 -k1,13973:20604212,24332647:3277 -h1,13973:24828031,24332647:0,411205,112570 -) -k1,13973:25205454,24332647:200476 -(1,13973:25205454,24332647:0,452978,122846 -r1,14002:31191109,24332647:5985655,575824,122846 -k1,13973:25205454,24332647:-5985655 -) -(1,13973:25205454,24332647:5985655,452978,122846 -k1,13973:25205454,24332647:3277 -h1,13973:31187832,24332647:0,411205,112570 -) -k1,13973:31391584,24332647:200475 -k1,13974:32583029,24332647:0 -) -(1,13974:6630773,25174135:25952256,505283,134348 -(1,13973:6630773,25174135:0,452978,122846 -r1,14002:12968140,25174135:6337367,575824,122846 -k1,13973:6630773,25174135:-6337367 -) -(1,13973:6630773,25174135:6337367,452978,122846 -k1,13973:6630773,25174135:3277 -h1,13973:12964863,25174135:0,411205,112570 -) -k1,13973:13452774,25174135:310964 -k1,13973:14755298,25174135:310964 -k1,13973:17850231,25174135:310964 -k1,13973:18777233,25174135:310964 -k1,13973:21668349,25174135:310964 -k1,13973:24917291,25174135:310964 -k1,13973:27102585,25174135:310964 -k1,13973:30853534,25174135:310964 -k1,13973:32583029,25174135:0 -) -(1,13974:6630773,26015623:25952256,505283,134348 -k1,13973:9513404,26015623:183203 -k1,13973:10458134,26015623:183202 -k1,13973:14958194,26015623:183203 -k1,13973:19381576,26015623:183203 -k1,13973:20583864,26015623:183203 -k1,13973:21993245,26015623:183202 -k1,13973:22859333,26015623:183203 -k1,13973:25060390,26015623:183203 -k1,13973:27205086,26015623:183203 -k1,13973:28800589,26015623:183202 -k1,13973:30002877,26015623:183203 -k1,13973:32583029,26015623:0 -) -(1,13974:6630773,26857111:25952256,513147,134348 -k1,13973:11655775,26857111:198931 -k1,13973:12802358,26857111:198932 -k1,13973:15118757,26857111:198931 -k1,13973:15976980,26857111:198931 -k1,13973:17506293,26857111:198932 -k1,13973:18356652,26857111:198931 -k1,13973:20843446,26857111:198932 -k1,13973:22061462,26857111:198931 -k1,13973:25277671,26857111:198931 -k1,13973:28160302,26857111:198932 -k1,13973:29550678,26857111:198931 -k1,13973:32583029,26857111:0 -) -(1,13974:6630773,27698599:25952256,513147,134348 -k1,13973:8024865,27698599:202647 -k1,13973:9246596,27698599:202646 -k1,13973:12745049,27698599:202647 -k1,13973:13606987,27698599:202646 -k1,13973:14828719,27698599:202647 -k1,13973:18052575,27698599:202646 -k1,13973:20459198,27698599:202647 -k1,13973:21680929,27698599:202646 -k1,13973:23727759,27698599:202647 -k1,13973:24581833,27698599:202646 -k1,13973:25803565,27698599:202647 -k1,13973:28620442,27698599:202646 -k1,13973:29482381,27698599:202647 -k1,13973:31193666,27698599:202646 -k1,13973:32583029,27698599:0 -) -(1,13974:6630773,28540087:25952256,505283,126483 -k1,13973:10732423,28540087:189806 -k1,13973:12972196,28540087:189807 -k1,13973:13928118,28540087:189806 -k1,13973:17292489,28540087:189807 -k1,13973:20776790,28540087:189806 -k1,13973:21728125,28540087:189807 -(1,13973:21728125,28540087:0,452978,122846 -r1,14002:25603509,28540087:3875384,575824,122846 -k1,13973:21728125,28540087:-3875384 -) -(1,13973:21728125,28540087:3875384,452978,122846 -k1,13973:21728125,28540087:3277 -h1,13973:25600232,28540087:0,411205,112570 -) -k1,13973:25793315,28540087:189806 -k1,13973:27174567,28540087:189807 -(1,13973:27174567,28540087:0,452978,122846 -r1,14002:31401663,28540087:4227096,575824,122846 -k1,13973:27174567,28540087:-4227096 -) -(1,13973:27174567,28540087:4227096,452978,122846 -k1,13973:27174567,28540087:3277 -h1,13973:31398386,28540087:0,411205,112570 -) -k1,13973:31591469,28540087:189806 -k1,13973:32583029,28540087:0 -) -(1,13974:6630773,29381575:25952256,505283,134348 -k1,13973:10136294,29381575:211026 -k1,13973:11108848,29381575:211026 -k1,13973:12338959,29381575:211026 -k1,13973:15462405,29381575:211026 -k1,13973:18511140,29381575:211026 -k1,13973:21656867,29381575:211025 -k1,13973:23562654,29381575:211026 -k1,13973:25058186,29381575:211026 -k1,13973:25625072,29381575:211026 -k1,13973:28527006,29381575:211026 -k1,13973:31563944,29381575:211026 -k1,13973:32583029,29381575:0 -) -(1,13974:6630773,30223063:25952256,513147,134348 -k1,13973:8357740,30223063:213085 -k1,13973:9253711,30223063:213086 -k1,13973:10692975,30223063:213085 -k1,13973:11557489,30223063:213086 -k1,13973:12558972,30223063:213085 -k1,13973:14974068,30223063:213086 -k1,13973:17049031,30223063:213085 -k1,13973:19493617,30223063:213085 -k1,13973:23002509,30223063:213086 -k1,13973:23874886,30223063:213085 -k1,13973:25784699,30223063:213086 -k1,13973:29018994,30223063:213085 -k1,13973:30336362,30223063:213086 -k1,13973:31835263,30223063:213085 -k1,13973:32583029,30223063:0 -) -(1,13974:6630773,31064551:25952256,505283,134348 -g1,13973:10091073,31064551 -g1,13973:11684253,31064551 -g1,13973:15058046,31064551 -g1,13973:15940160,31064551 -k1,13974:32583029,31064551:13066569 -g1,13974:32583029,31064551 -) -v1,13976:6630773,32222851:0,393216,0 -(1,13985:6630773,35868837:25952256,4039202,196608 -g1,13985:6630773,35868837 -g1,13985:6630773,35868837 -g1,13985:6434165,35868837 -(1,13985:6434165,35868837:0,4039202,196608 -r1,14002:32779637,35868837:26345472,4235810,196608 -k1,13985:6434165,35868837:-26345472 -) -(1,13985:6434165,35868837:26345472,4039202,196608 -[1,13985:6630773,35868837:25952256,3842594,0 -(1,13978:6630773,32430469:25952256,404226,107478 -(1,13977:6630773,32430469:0,0,0 -g1,13977:6630773,32430469 -g1,13977:6630773,32430469 -g1,13977:6303093,32430469 -(1,13977:6303093,32430469:0,0,0 -) -g1,13977:6630773,32430469 -) -k1,13978:6630773,32430469:0 -g1,13978:10424522,32430469 -g1,13978:11056814,32430469 -k1,13978:11056814,32430469:0 -h1,13978:13269834,32430469:0,0,0 -k1,13978:32583030,32430469:19313196 -g1,13978:32583030,32430469 -) -(1,13979:6630773,33096647:25952256,410518,107478 -h1,13979:6630773,33096647:0,0,0 -g1,13979:6946919,33096647 -g1,13979:7263065,33096647 -g1,13979:7579211,33096647 -g1,13979:7895357,33096647 -g1,13979:8211503,33096647 -g1,13979:8527649,33096647 -g1,13979:8843795,33096647 -g1,13979:10740670,33096647 -g1,13979:11372962,33096647 -g1,13979:13269837,33096647 -g1,13979:13902129,33096647 -g1,13979:14534421,33096647 -g1,13979:16115150,33096647 -g1,13979:18012024,33096647 -g1,13979:18644316,33096647 -g1,13979:22754210,33096647 -g1,13979:24334939,33096647 -g1,13979:24967231,33096647 -g1,13979:26231814,33096647 -g1,13979:28128688,33096647 -g1,13979:28760980,33096647 -g1,13979:30657854,33096647 -h1,13979:30974000,33096647:0,0,0 -k1,13979:32583029,33096647:1609029 -g1,13979:32583029,33096647 -) -(1,13980:6630773,33762825:25952256,404226,76021 -h1,13980:6630773,33762825:0,0,0 -g1,13980:6946919,33762825 -g1,13980:7263065,33762825 -g1,13980:11372959,33762825 -h1,13980:11689105,33762825:0,0,0 -k1,13980:32583029,33762825:20893924 -g1,13980:32583029,33762825 -) -(1,13981:6630773,34429003:25952256,404226,107478 -h1,13981:6630773,34429003:0,0,0 -g1,13981:6946919,34429003 -g1,13981:7263065,34429003 -g1,13981:12637542,34429003 -g1,13981:13269834,34429003 -g1,13981:14850564,34429003 -h1,13981:15166710,34429003:0,0,0 -k1,13981:32583030,34429003:17416320 -g1,13981:32583030,34429003 -) -(1,13982:6630773,35095181:25952256,404226,107478 -h1,13982:6630773,35095181:0,0,0 -g1,13982:6946919,35095181 -g1,13982:7263065,35095181 -g1,13982:14218270,35095181 -g1,13982:14850562,35095181 -g1,13982:17695874,35095181 -g1,13982:19276603,35095181 -g1,13982:19908895,35095181 -k1,13982:19908895,35095181:0 -h1,13982:20541187,35095181:0,0,0 -k1,13982:32583029,35095181:12041842 -g1,13982:32583029,35095181 -) -(1,13983:6630773,35761359:25952256,404226,107478 -h1,13983:6630773,35761359:0,0,0 -g1,13983:6946919,35761359 -g1,13983:7263065,35761359 -g1,13983:7579211,35761359 -g1,13983:7895357,35761359 -g1,13983:8211503,35761359 -g1,13983:8527649,35761359 -g1,13983:8843795,35761359 -g1,13983:9159941,35761359 -g1,13983:9476087,35761359 -g1,13983:9792233,35761359 -g1,13983:10108379,35761359 -g1,13983:10424525,35761359 -g1,13983:10740671,35761359 -g1,13983:11056817,35761359 -g1,13983:11372963,35761359 -g1,13983:11689109,35761359 -g1,13983:12005255,35761359 -g1,13983:12321401,35761359 -g1,13983:18328169,35761359 -g1,13983:18960461,35761359 -g1,13983:20541190,35761359 -g1,13983:24967230,35761359 -g1,13983:25599522,35761359 -h1,13983:26864105,35761359:0,0,0 -k1,13983:32583029,35761359:5718924 -g1,13983:32583029,35761359 -) -] -) -g1,13985:32583029,35868837 -g1,13985:6630773,35868837 -g1,13985:6630773,35868837 -g1,13985:32583029,35868837 -g1,13985:32583029,35868837 -) -h1,13985:6630773,36065445:0,0,0 -(1,13988:6630773,45706769:25952256,9083666,0 -k1,13988:10523651,45706769:3892878 -h1,13987:10523651,45706769:0,0,0 -(1,13987:10523651,45706769:18166500,9083666,0 -(1,13987:10523651,45706769:18167376,9083688,0 -(1,13987:10523651,45706769:18167376,9083688,0 -(1,13987:10523651,45706769:0,9083688,0 -(1,13987:10523651,45706769:0,14208860,0 -(1,13987:10523651,45706769:28417720,14208860,0 -) -k1,13987:10523651,45706769:-28417720 -) -) -g1,13987:28691027,45706769 -) -) -) -g1,13988:28690151,45706769 -k1,13988:32583029,45706769:3892878 -) -] -(1,14002:32583029,45706769:0,0,0 -g1,14002:32583029,45706769 -) -) -] -(1,14002:6630773,47279633:25952256,0,0 -h1,14002:6630773,47279633:25952256,0,0 -) -] -(1,14002:4262630,4025873:0,0,0 -[1,14002:-473656,4025873:0,0,0 -(1,14002:-473656,-710413:0,0,0 -(1,14002:-473656,-710413:0,0,0 -g1,14002:-473656,-710413 -) -g1,14002:-473656,-710413 -) -] -) -] -!18385 -}267 -Input:2109:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2110:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2111:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2112:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2113:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2114:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2115:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2116:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2117:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2118:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2119:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2120:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2121:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2122:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1300 -{268 -[1,14048:4262630,47279633:28320399,43253760,0 -(1,14048:4262630,4025873:0,0,0 -[1,14048:-473656,4025873:0,0,0 -(1,14048:-473656,-710413:0,0,0 -(1,14048:-473656,-644877:0,0,0 -k1,14048:-473656,-644877:-65536 -) -(1,14048:-473656,4736287:0,0,0 -k1,14048:-473656,4736287:5209943 -) -g1,14048:-473656,-710413 -) -] -) -[1,14048:6630773,47279633:25952256,43253760,0 -[1,14048:6630773,4812305:25952256,786432,0 -(1,14048:6630773,4812305:25952256,485622,11795 -(1,14048:6630773,4812305:25952256,485622,11795 -g1,14048:3078558,4812305 -[1,14048:3078558,4812305:0,0,0 -(1,14048:3078558,2439708:0,1703936,0 -k1,14048:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,14048:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,14048:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,14048:3078558,4812305:0,0,0 -(1,14048:3078558,2439708:0,1703936,0 -g1,14048:29030814,2439708 -g1,14048:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,14048:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,14048:37855564,2439708:1179648,16384,0 -) -) -k1,14048:3078556,2439708:-34777008 -) -] -[1,14048:3078558,4812305:0,0,0 -(1,14048:3078558,49800853:0,16384,2228224 -k1,14048:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,14048:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,14048:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,14048:3078558,4812305:0,0,0 -(1,14048:3078558,49800853:0,16384,2228224 -g1,14048:29030814,49800853 -g1,14048:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,14048:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,14048:37855564,49800853:1179648,16384,0 -) -) -k1,14048:3078556,49800853:-34777008 -) -] -g1,14048:6630773,4812305 -g1,14048:6630773,4812305 -g1,14048:10347975,4812305 -k1,14048:31387651,4812305:21039676 -) -) -] -[1,14048:6630773,45706769:25952256,40108032,0 -(1,14048:6630773,45706769:25952256,40108032,0 -(1,14048:6630773,45706769:0,0,0 -g1,14048:6630773,45706769 -) -[1,14048:6630773,45706769:25952256,40108032,0 -(1,13997:6630773,6254097:25952256,555811,12975 -(1,13997:6630773,6254097:2450326,534184,12975 -g1,13997:6630773,6254097 -g1,13997:9081099,6254097 -) -g1,13997:10708162,6254097 -k1,13997:32583030,6254097:19728040 -g1,13997:32583030,6254097 -) -(1,14002:6630773,7488801:25952256,513147,134348 -k1,14001:8030638,7488801:203178 -k1,14001:10760229,7488801:203178 -k1,14001:11911059,7488801:203179 -k1,14001:13995120,7488801:203178 -k1,14001:14814336,7488801:203178 -k1,14001:17846047,7488801:203178 -k1,14001:18580722,7488801:203178 -k1,14001:21540344,7488801:203178 -k1,14001:22394951,7488801:203179 -(1,14001:22394951,7488801:0,452978,115847 -r1,14048:29084029,7488801:6689078,568825,115847 -k1,14001:22394951,7488801:-6689078 -) -(1,14001:22394951,7488801:6689078,452978,115847 -k1,14001:22394951,7488801:3277 -h1,14001:29080752,7488801:0,411205,112570 -) -k1,14001:29287207,7488801:203178 -k1,14001:31375856,7488801:203178 -k1,14001:32583029,7488801:0 -) -(1,14002:6630773,8330289:25952256,513147,134348 -k1,14001:9700900,8330289:213413 -k1,14001:10565742,8330289:213414 -k1,14001:11526921,8330289:213413 -k1,14001:13253560,8330289:213413 -k1,14001:14414624,8330289:213413 -k1,14001:16362776,8330289:213414 -k1,14001:20366791,8330289:213413 -k1,14001:23419224,8330289:213413 -k1,14001:24284066,8330289:213414 -k1,14001:25245245,8330289:213413 -k1,14001:26477743,8330289:213413 -k1,14001:28344629,8330289:213413 -k1,14001:29174081,8330289:213414 -k1,14001:30839116,8330289:213413 -k1,14001:32583029,8330289:0 -) -(1,14002:6630773,9171777:25952256,513147,134348 -k1,14001:7554780,9171777:264715 -k1,14001:8175355,9171777:264715 -k1,14001:9717367,9171777:264715 -k1,14001:11208261,9171777:264715 -k1,14001:12565461,9171777:264715 -k1,14001:13489468,9171777:264715 -k1,14001:17544786,9171777:264716 -k1,14001:18340998,9171777:264715 -k1,14001:21695736,9171777:264715 -k1,14001:22576489,9171777:264715 -k1,14001:25119891,9171777:264715 -h1,14001:26090479,9171777:0,0,0 -k1,14001:26735958,9171777:264715 -k1,14001:29535606,9171777:264715 -k1,14001:32583029,9171777:0 -) -(1,14002:6630773,10013265:25952256,505283,134348 -k1,14001:9568731,10013265:177582 -k1,14001:11812664,10013265:177583 -k1,14001:13274752,10013265:177582 -k1,14001:15428245,10013265:177583 -(1,14001:15428245,10013265:0,452978,122846 -r1,14048:19303629,10013265:3875384,575824,122846 -k1,14001:15428245,10013265:-3875384 -) -(1,14001:15428245,10013265:3875384,452978,122846 -k1,14001:15428245,10013265:3277 -h1,14001:19300352,10013265:0,411205,112570 -) -k1,14001:19481211,10013265:177582 -k1,14001:20274831,10013265:177582 -k1,14001:22916568,10013265:177583 -k1,14001:23745578,10013265:177582 -k1,14001:24942246,10013265:177583 -k1,14001:28184292,10013265:177582 -k1,14001:30048772,10013265:177583 -k1,14001:31298523,10013265:177582 -k1,14001:32583029,10013265:0 -) -(1,14002:6630773,10854753:25952256,505283,126483 -k1,14001:9541829,10854753:142815 -k1,14001:10336072,10854753:142815 -(1,14001:10336072,10854753:0,459977,122846 -r1,14048:13508032,10854753:3171960,582823,122846 -k1,14001:10336072,10854753:-3171960 -) -(1,14001:10336072,10854753:3171960,459977,122846 -k1,14001:10336072,10854753:3277 -h1,14001:13504755,10854753:0,411205,112570 -) -k1,14001:13824518,10854753:142816 -k1,14001:16038271,10854753:142815 -k1,14001:17465592,10854753:142815 -k1,14001:18627492,10854753:142815 -k1,14001:21153197,10854753:142816 -k1,14001:21912050,10854753:142815 -(1,14001:21912050,10854753:0,452978,115847 -r1,14048:23325451,10854753:1413401,568825,115847 -k1,14001:21912050,10854753:-1413401 -) -(1,14001:21912050,10854753:1413401,452978,115847 -k1,14001:21912050,10854753:3277 -h1,14001:23322174,10854753:0,411205,112570 -) -k1,14001:23468266,10854753:142815 -k1,14001:26196476,10854753:142815 -k1,14001:26990720,10854753:142816 -k1,14001:28152620,10854753:142815 -(1,14001:28152620,10854753:0,452978,115847 -r1,14048:29917733,10854753:1765113,568825,115847 -k1,14001:28152620,10854753:-1765113 -) -(1,14001:28152620,10854753:1765113,452978,115847 -k1,14001:28152620,10854753:3277 -h1,14001:29914456,10854753:0,411205,112570 -) -k1,14001:30060548,10854753:142815 -k1,14002:32583029,10854753:0 -) -(1,14002:6630773,11696241:25952256,513147,134348 -k1,14001:7630251,11696241:134403 -k1,14001:8756215,11696241:134404 -k1,14001:10214445,11696241:134403 -k1,14001:11008141,11696241:134404 -k1,14001:13432372,11696241:134403 -k1,14001:16928772,11696241:134403 -k1,14001:19734423,11696241:134404 -k1,14001:21849324,11696241:134403 -k1,14001:22643020,11696241:134404 -k1,14001:26758080,11696241:134403 -k1,14001:28844146,11696241:134404 -k1,14001:30420996,11696241:134403 -k1,14001:32583029,11696241:0 -) -(1,14002:6630773,12537729:25952256,505283,134348 -k1,14001:9338032,12537729:225411 -k1,14001:11395829,12537729:225410 -k1,14001:15128727,12537729:225411 -k1,14001:16345697,12537729:225410 -k1,14001:19481562,12537729:225411 -k1,14001:22664613,12537729:225411 -(1,14001:22664613,12537729:0,452978,122846 -r1,14048:26891709,12537729:4227096,575824,122846 -k1,14001:22664613,12537729:-4227096 -) -(1,14001:22664613,12537729:4227096,452978,122846 -k1,14001:22664613,12537729:3277 -h1,14001:26888432,12537729:0,411205,112570 -) -k1,14001:27290789,12537729:225410 -(1,14001:27290789,12537729:0,452978,122846 -r1,14048:31166173,12537729:3875384,575824,122846 -k1,14001:27290789,12537729:-3875384 -) -(1,14001:27290789,12537729:3875384,452978,122846 -k1,14001:27290789,12537729:3277 -h1,14001:31162896,12537729:0,411205,112570 -) -k1,14001:31391584,12537729:225411 -k1,14002:32583029,12537729:0 -) -(1,14002:6630773,13379217:25952256,452978,122846 -(1,14001:6630773,13379217:0,452978,122846 -r1,14048:10506157,13379217:3875384,575824,122846 -k1,14001:6630773,13379217:-3875384 -) -(1,14001:6630773,13379217:3875384,452978,122846 -k1,14001:6630773,13379217:3277 -h1,14001:10502880,13379217:0,411205,112570 -) -k1,14002:32583029,13379217:21903202 -g1,14002:32583029,13379217 -) -v1,14004:6630773,14744993:0,393216,0 -(1,14005:6630773,18704298:25952256,4352521,616038 -g1,14005:6630773,18704298 -(1,14005:6630773,18704298:25952256,4352521,616038 -(1,14005:6630773,19320336:25952256,4968559,0 -[1,14005:6630773,19320336:25952256,4968559,0 -(1,14005:6630773,19294122:25952256,4916131,0 -r1,14048:6656987,19294122:26214,4916131,0 -[1,14005:6656987,19294122:25899828,4916131,0 -(1,14005:6656987,18704298:25899828,3736483,0 -[1,14005:7246811,18704298:24720180,3736483,0 -(1,14005:7246811,16053351:24720180,1085536,298548 -(1,14004:7246811,16053351:0,1085536,298548 -r1,14048:8753226,16053351:1506415,1384084,298548 -k1,14004:7246811,16053351:-1506415 -) -(1,14004:7246811,16053351:1506415,1085536,298548 -) -k1,14004:8989131,16053351:235905 -k1,14004:11025310,16053351:235905 -k1,14004:12545721,16053351:235905 -(1,14004:12545721,16053351:0,452978,122846 -r1,14048:16772817,16053351:4227096,575824,122846 -k1,14004:12545721,16053351:-4227096 -) -(1,14004:12545721,16053351:4227096,452978,122846 -k1,14004:12545721,16053351:3277 -h1,14004:16769540,16053351:0,411205,112570 -) -k1,14004:17182392,16053351:235905 -(1,14004:17182392,16053351:0,452978,122846 -r1,14048:21057776,16053351:3875384,575824,122846 -k1,14004:17182392,16053351:-3875384 -) -(1,14004:17182392,16053351:3875384,452978,122846 -k1,14004:17182392,16053351:3277 -h1,14004:21054499,16053351:0,411205,112570 -) -k1,14004:21293681,16053351:235905 -k1,14004:22721031,16053351:235905 -(1,14004:22721031,16053351:0,452978,122846 -r1,14048:26596415,16053351:3875384,575824,122846 -k1,14004:22721031,16053351:-3875384 -) -(1,14004:22721031,16053351:3875384,452978,122846 -k1,14004:22721031,16053351:3277 -h1,14004:26593138,16053351:0,411205,112570 -) -k1,14004:26832320,16053351:235905 -k1,14004:28200687,16053351:235905 -k1,14004:30282741,16053351:235905 -k1,14004:31611131,16053351:235905 -k1,14004:31966991,16053351:0 -) -(1,14005:7246811,16894839:24720180,513147,134348 -k1,14004:10221641,16894839:167268 -k1,14004:13281668,16894839:167268 -k1,14004:15016557,16894839:167268 -k1,14004:16202910,16894839:167268 -k1,14004:18253027,16894839:167268 -k1,14004:19871262,16894839:167268 -k1,14004:20800059,16894839:167269 -k1,14004:23232907,16894839:167268 -k1,14004:24780363,16894839:167268 -k1,14004:25762899,16894839:167268 -k1,14004:26996438,16894839:167268 -k1,14004:29288383,16894839:167268 -k1,14004:30087418,16894839:167268 -k1,14004:31966991,16894839:0 -) -(1,14005:7246811,17736327:24720180,513147,134348 -k1,14004:8525036,17736327:259140 -k1,14004:11591739,17736327:259141 -k1,14004:14031262,17736327:259140 -k1,14004:15038168,17736327:259140 -k1,14004:18058340,17736327:259140 -k1,14004:19003643,17736327:259141 -k1,14004:20033486,17736327:259140 -k1,14004:23364954,17736327:259140 -k1,14004:24275522,17736327:259140 -k1,14004:26231390,17736327:259141 -k1,14004:29516327,17736327:259140 -k1,14004:30458352,17736327:259140 -k1,14004:31966991,17736327:0 -) -(1,14005:7246811,18577815:24720180,505283,126483 -g1,14004:10726772,18577815 -(1,14004:10726772,18577815:0,452978,115847 -r1,14048:14602156,18577815:3875384,568825,115847 -k1,14004:10726772,18577815:-3875384 -) -(1,14004:10726772,18577815:3875384,452978,115847 -k1,14004:10726772,18577815:3277 -h1,14004:14598879,18577815:0,411205,112570 -) -g1,14004:14801385,18577815 -g1,14004:17897961,18577815 -g1,14004:19031733,18577815 -g1,14004:19882390,18577815 -(1,14004:19882390,18577815:0,414482,115847 -r1,14048:21295791,18577815:1413401,530329,115847 -k1,14004:19882390,18577815:-1413401 -) -(1,14004:19882390,18577815:1413401,414482,115847 -k1,14004:19882390,18577815:3277 -h1,14004:21292514,18577815:0,411205,112570 -) -k1,14005:31966991,18577815:10497530 -g1,14005:31966991,18577815 -) -] -) -] -r1,14048:32583029,19294122:26214,4916131,0 -) -] -) -) -g1,14005:32583029,18704298 -) -h1,14005:6630773,19320336:0,0,0 -(1,14009:6630773,20686112:25952256,513147,134348 -h1,14008:6630773,20686112:983040,0,0 -k1,14008:8994816,20686112:184316 -k1,14008:11703578,20686112:184315 -k1,14008:12547186,20686112:184316 -k1,14008:14627459,20686112:184316 -k1,14008:15573303,20686112:184316 -k1,14008:18565180,20686112:184315 -k1,14008:19105356,20686112:184316 -k1,14008:20283198,20686112:184316 -k1,14008:21126806,20686112:184316 -k1,14008:22700484,20686112:184315 -k1,14008:25091397,20686112:184316 -k1,14008:25927141,20686112:184316 -k1,14008:27130542,20686112:184316 -(1,14008:27130542,20686112:0,452978,115847 -r1,14048:28895655,20686112:1765113,568825,115847 -k1,14008:27130542,20686112:-1765113 -) -(1,14008:27130542,20686112:1765113,452978,115847 -k1,14008:27130542,20686112:3277 -h1,14008:28892378,20686112:0,411205,112570 -) -k1,14008:29079970,20686112:184315 -k1,14008:32051532,20686112:184316 -k1,14008:32583029,20686112:0 -) -(1,14009:6630773,21527600:25952256,513147,134348 -k1,14008:8435063,21527600:226838 -k1,14008:10055852,21527600:226838 -(1,14008:10055852,21527600:0,452978,122846 -r1,14048:13579524,21527600:3523672,575824,122846 -k1,14008:10055852,21527600:-3523672 -) -(1,14008:10055852,21527600:3523672,452978,122846 -k1,14008:10055852,21527600:3277 -h1,14008:13576247,21527600:0,411205,112570 -) -k1,14008:13980032,21527600:226838 -k1,14008:17939801,21527600:226838 -k1,14008:22157782,21527600:226838 -k1,14008:23576065,21527600:226838 -k1,14008:25500285,21527600:226838 -k1,14008:27323580,21527600:226838 -k1,14008:28236580,21527600:226838 -k1,14008:29411069,21527600:226838 -(1,14008:29411069,21527600:0,414482,122846 -r1,14048:32583029,21527600:3171960,537328,122846 -k1,14008:29411069,21527600:-3171960 -) -(1,14008:29411069,21527600:3171960,414482,122846 -k1,14008:29411069,21527600:3277 -h1,14008:32579752,21527600:0,411205,112570 -) -k1,14008:32583029,21527600:0 -) -(1,14009:6630773,22369088:25952256,513147,134348 -k1,14008:8113087,22369088:290869 -k1,14008:9395517,22369088:290870 -k1,14008:12058134,22369088:290869 -k1,14008:13000432,22369088:290870 -k1,14008:14310386,22369088:290869 -k1,14008:16484105,22369088:290870 -k1,14008:18514300,22369088:290869 -k1,14008:20295458,22369088:290869 -(1,14008:20295458,22369088:0,452978,115847 -r1,14048:22412283,22369088:2116825,568825,115847 -k1,14008:20295458,22369088:-2116825 -) -(1,14008:20295458,22369088:2116825,452978,115847 -k1,14008:20295458,22369088:3277 -h1,14008:22409006,22369088:0,411205,112570 -) -k1,14008:22703153,22369088:290870 -k1,14008:25283850,22369088:290869 -k1,14008:26806797,22369088:290870 -k1,14008:31923737,22369088:290869 -k1,14008:32583029,22369088:0 -) -(1,14009:6630773,23210576:25952256,513147,134348 -k1,14008:9461382,23210576:250457 -k1,14008:12080965,23210576:250457 -k1,14008:13435704,23210576:250457 -k1,14008:16231578,23210576:250456 -k1,14008:17168197,23210576:250457 -k1,14008:20433965,23210576:250457 -k1,14008:22008249,23210576:250457 -k1,14008:22917998,23210576:250457 -k1,14008:24557818,23210576:250457 -k1,14008:27188542,23210576:250456 -k1,14008:28163827,23210576:250457 -k1,14008:29617525,23210576:250457 -k1,14009:32583029,23210576:0 -) -(1,14009:6630773,24052064:25952256,513147,134348 -k1,14008:9521377,24052064:268509 -k1,14008:10808972,24052064:268510 -k1,14008:12169966,24052064:268509 -k1,14008:13105632,24052064:268510 -(1,14008:13105632,24052064:0,452978,115847 -r1,14048:15222457,24052064:2116825,568825,115847 -k1,14008:13105632,24052064:-2116825 -) -(1,14008:13105632,24052064:2116825,452978,115847 -k1,14008:13105632,24052064:3277 -h1,14008:15219180,24052064:0,411205,112570 -) -k1,14008:15490966,24052064:268509 -k1,14008:18049304,24052064:268510 -k1,14008:18969241,24052064:268509 -k1,14008:20855179,24052064:268509 -k1,14008:22142774,24052064:268510 -k1,14008:23974317,24052064:268509 -k1,14008:25439514,24052064:268510 -k1,14008:28018167,24052064:268509 -k1,14008:29278237,24052064:268510 -k1,14008:31896867,24052064:268509 -k1,14008:32583029,24052064:0 -) -(1,14009:6630773,24893552:25952256,505283,134348 -k1,14008:8539850,24893552:277231 -(1,14008:8539850,24893552:0,452978,122846 -r1,14048:9953251,24893552:1413401,575824,122846 -k1,14008:8539850,24893552:-1413401 -) -(1,14008:8539850,24893552:1413401,452978,122846 -k1,14008:8539850,24893552:3277 -h1,14008:9949974,24893552:0,411205,112570 -) -k1,14008:10230481,24893552:277230 -k1,14008:12971210,24893552:277231 -k1,14008:16092703,24893552:277230 -k1,14008:16985972,24893552:277231 -k1,14008:17619062,24893552:277230 -k1,14008:19136234,24893552:277231 -k1,14008:20604909,24893552:277230 -k1,14008:22847565,24893552:277231 -k1,14008:23776223,24893552:277230 -k1,14008:25072539,24893552:277231 -(1,14008:25072539,24893552:0,452978,122846 -r1,14048:27189364,24893552:2116825,575824,122846 -k1,14008:25072539,24893552:-2116825 -) -(1,14008:25072539,24893552:2116825,452978,122846 -k1,14008:25072539,24893552:3277 -h1,14008:27186087,24893552:0,411205,112570 -) -k1,14008:27466594,24893552:277230 -k1,14008:29703351,24893552:277231 -k1,14008:30666744,24893552:277231 -k1,14008:31299834,24893552:277230 -k1,14008:32583029,24893552:0 -) -(1,14009:6630773,25735040:25952256,505283,126483 -k1,14009:32583030,25735040:24220796 -g1,14009:32583030,25735040 -) -(1,14011:6630773,26576528:25952256,513147,134348 -h1,14010:6630773,26576528:983040,0,0 -k1,14010:8803112,26576528:235750 -k1,14010:10344994,26576528:235749 -k1,14010:13312940,26576528:235750 -k1,14010:13904550,26576528:235750 -(1,14010:13904550,26576528:0,452978,115847 -r1,14048:16021375,26576528:2116825,568825,115847 -k1,14010:13904550,26576528:-2116825 -) -(1,14010:13904550,26576528:2116825,452978,115847 -k1,14010:13904550,26576528:3277 -h1,14010:16018098,26576528:0,411205,112570 -) -k1,14010:16257124,26576528:235749 -k1,14010:19854871,26576528:235750 -k1,14010:23598762,26576528:235749 -k1,14010:25402133,26576528:235750 -k1,14010:26656968,26576528:235750 -k1,14010:28455751,26576528:235749 -k1,14010:31896867,26576528:235750 -k1,14010:32583029,26576528:0 -) -(1,14011:6630773,27418016:25952256,505283,134348 -k1,14010:9845314,27418016:239862 -k1,14010:12454958,27418016:239862 -k1,14010:14280790,27418016:239861 -k1,14010:15723893,27418016:239862 -k1,14010:17775170,27418016:239862 -k1,14010:18631070,27418016:239862 -k1,14010:19226792,27418016:239862 -k1,14010:20633850,27418016:239862 -k1,14010:22065156,27418016:239861 -k1,14010:23922447,27418016:239862 -k1,14010:25365550,27418016:239862 -k1,14010:26598938,27418016:239862 -k1,14010:27524962,27418016:239862 -k1,14010:28120683,27418016:239861 -k1,14010:30743434,27418016:239862 -k1,14010:31599334,27418016:239862 -k1,14011:32583029,27418016:0 -) -(1,14011:6630773,28259504:25952256,513147,126483 -k1,14010:8539359,28259504:206616 -(1,14010:8539359,28259504:0,452978,115847 -r1,14048:10656184,28259504:2116825,568825,115847 -k1,14010:8539359,28259504:-2116825 -) -(1,14010:8539359,28259504:2116825,452978,115847 -k1,14010:8539359,28259504:3277 -h1,14010:10652907,28259504:0,411205,112570 -) -k1,14010:11036470,28259504:206616 -k1,14010:12072116,28259504:206616 -k1,14010:15888455,28259504:206616 -k1,14010:17471982,28259504:206616 -k1,14010:18546951,28259504:206617 -k1,14010:19846052,28259504:206616 -k1,14010:23078465,28259504:206616 -k1,14010:24852702,28259504:206616 -k1,14010:26078403,28259504:206616 -k1,14010:29493006,28259504:206616 -k1,14010:32583029,28259504:0 -) -(1,14011:6630773,29100992:25952256,505283,126483 -g1,14010:7446040,29100992 -g1,14010:10062892,29100992 -h1,14010:10461351,29100992:0,0,0 -k1,14011:32583029,29100992:21948008 -g1,14011:32583029,29100992 -) -v1,14013:6630773,30291458:0,393216,0 -(1,14023:6630773,34581602:25952256,4683360,196608 -g1,14023:6630773,34581602 -g1,14023:6630773,34581602 -g1,14023:6434165,34581602 -(1,14023:6434165,34581602:0,4683360,196608 -r1,14048:32779637,34581602:26345472,4879968,196608 -k1,14023:6434165,34581602:-26345472 -) -(1,14023:6434165,34581602:26345472,4683360,196608 -[1,14023:6630773,34581602:25952256,4486752,0 -(1,14015:6630773,30483347:25952256,388497,9436 -(1,14014:6630773,30483347:0,0,0 -g1,14014:6630773,30483347 -g1,14014:6630773,30483347 -g1,14014:6303093,30483347 -(1,14014:6303093,30483347:0,0,0 -) -g1,14014:6630773,30483347 -) -g1,14015:8843793,30483347 -k1,14015:8843793,30483347:0 -h1,14015:10108375,30483347:0,0,0 -k1,14015:32583029,30483347:22474654 -g1,14015:32583029,30483347 -) -(1,14016:6630773,31149525:25952256,404226,107478 -h1,14016:6630773,31149525:0,0,0 -g1,14016:6946919,31149525 -g1,14016:7263065,31149525 -g1,14016:11056813,31149525 -g1,14016:12637542,31149525 -k1,14016:12637542,31149525:0 -h1,14016:13902124,31149525:0,0,0 -k1,14016:32583028,31149525:18680904 -g1,14016:32583028,31149525 -) -(1,14017:6630773,31815703:25952256,404226,82312 -h1,14017:6630773,31815703:0,0,0 -g1,14017:6946919,31815703 -g1,14017:7263065,31815703 -k1,14017:7263065,31815703:0 -h1,14017:11056813,31815703:0,0,0 -k1,14017:32583029,31815703:21526216 -g1,14017:32583029,31815703 -) -(1,14018:6630773,32481881:25952256,410518,107478 -h1,14018:6630773,32481881:0,0,0 -g1,14018:6946919,32481881 -g1,14018:7263065,32481881 -g1,14018:7579211,32481881 -g1,14018:7895357,32481881 -g1,14018:8211503,32481881 -g1,14018:8527649,32481881 -g1,14018:8843795,32481881 -g1,14018:9159941,32481881 -g1,14018:9476087,32481881 -g1,14018:9792233,32481881 -g1,14018:10108379,32481881 -g1,14018:10424525,32481881 -g1,14018:12321399,32481881 -g1,14018:13585982,32481881 -g1,14018:14218274,32481881 -g1,14018:19592752,32481881 -g1,14018:21805772,32481881 -g1,14018:22438064,32481881 -k1,14018:22438064,32481881:0 -h1,14018:23386502,32481881:0,0,0 -k1,14018:32583029,32481881:9196527 -g1,14018:32583029,32481881 -) -(1,14019:6630773,33148059:25952256,410518,107478 -h1,14019:6630773,33148059:0,0,0 -g1,14019:6946919,33148059 -g1,14019:7263065,33148059 -g1,14019:7579211,33148059 -g1,14019:7895357,33148059 -g1,14019:8211503,33148059 -g1,14019:8527649,33148059 -g1,14019:8843795,33148059 -g1,14019:9159941,33148059 -g1,14019:9476087,33148059 -g1,14019:9792233,33148059 -g1,14019:10108379,33148059 -g1,14019:10424525,33148059 -g1,14019:12321399,33148059 -g1,14019:14218273,33148059 -g1,14019:14850565,33148059 -g1,14019:20857334,33148059 -g1,14019:23070354,33148059 -g1,14019:23702646,33148059 -k1,14019:23702646,33148059:0 -h1,14019:24651084,33148059:0,0,0 -k1,14019:32583029,33148059:7931945 -g1,14019:32583029,33148059 -) -(1,14020:6630773,33814237:25952256,410518,107478 -h1,14020:6630773,33814237:0,0,0 -g1,14020:6946919,33814237 -g1,14020:7263065,33814237 -g1,14020:7579211,33814237 -g1,14020:7895357,33814237 -g1,14020:8211503,33814237 -g1,14020:8527649,33814237 -g1,14020:8843795,33814237 -g1,14020:9159941,33814237 -g1,14020:9476087,33814237 -g1,14020:9792233,33814237 -g1,14020:10108379,33814237 -g1,14020:10424525,33814237 -g1,14020:12321399,33814237 -g1,14020:13902128,33814237 -g1,14020:14534420,33814237 -g1,14020:20225043,33814237 -g1,14020:22438063,33814237 -g1,14020:23070355,33814237 -g1,14020:24334938,33814237 -g1,14020:25283376,33814237 -h1,14020:27812541,33814237:0,0,0 -k1,14020:32583029,33814237:4770488 -g1,14020:32583029,33814237 -) -(1,14021:6630773,34480415:25952256,404226,101187 -h1,14021:6630773,34480415:0,0,0 -g1,14021:9476084,34480415 -g1,14021:10424522,34480415 -g1,14021:13269834,34480415 -g1,14021:13902126,34480415 -g1,14021:15482855,34480415 -g1,14021:16115147,34480415 -g1,14021:16747439,34480415 -g1,14021:18012022,34480415 -g1,14021:21805770,34480415 -g1,14021:22438062,34480415 -k1,14021:22438062,34480415:0 -h1,14021:27180247,34480415:0,0,0 -k1,14021:32583029,34480415:5402782 -g1,14021:32583029,34480415 -) -] -) -g1,14023:32583029,34581602 -g1,14023:6630773,34581602 -g1,14023:6630773,34581602 -g1,14023:32583029,34581602 -g1,14023:32583029,34581602 -) -h1,14023:6630773,34778210:0,0,0 -v1,14027:6630773,36492964:0,393216,0 -(1,14039:6630773,42112318:25952256,6012570,196608 -g1,14039:6630773,42112318 -g1,14039:6630773,42112318 -g1,14039:6434165,42112318 -(1,14039:6434165,42112318:0,6012570,196608 -r1,14048:32779637,42112318:26345472,6209178,196608 -k1,14039:6434165,42112318:-26345472 -) -(1,14039:6434165,42112318:26345472,6012570,196608 -[1,14039:6630773,42112318:25952256,5815962,0 -(1,14029:6630773,36700582:25952256,404226,107478 -(1,14028:6630773,36700582:0,0,0 -g1,14028:6630773,36700582 -g1,14028:6630773,36700582 -g1,14028:6303093,36700582 -(1,14028:6303093,36700582:0,0,0 -) -g1,14028:6630773,36700582 -) -k1,14029:6630773,36700582:0 -g1,14029:10424522,36700582 -g1,14029:11056814,36700582 -g1,14029:13585980,36700582 -g1,14029:15482855,36700582 -g1,14029:16115147,36700582 -g1,14029:18012022,36700582 -g1,14029:18644314,36700582 -g1,14029:19276606,36700582 -k1,14029:19276606,36700582:0 -h1,14029:20541189,36700582:0,0,0 -k1,14029:32583029,36700582:12041840 -g1,14029:32583029,36700582 -) -(1,14030:6630773,37366760:25952256,410518,101187 -h1,14030:6630773,37366760:0,0,0 -g1,14030:6946919,37366760 -g1,14030:7263065,37366760 -g1,14030:7579211,37366760 -g1,14030:7895357,37366760 -g1,14030:8211503,37366760 -g1,14030:8527649,37366760 -g1,14030:8843795,37366760 -g1,14030:9159941,37366760 -g1,14030:9476087,37366760 -g1,14030:9792233,37366760 -g1,14030:10108379,37366760 -g1,14030:10424525,37366760 -g1,14030:10740671,37366760 -g1,14030:11056817,37366760 -g1,14030:11372963,37366760 -g1,14030:11689109,37366760 -g1,14030:12005255,37366760 -g1,14030:12321401,37366760 -g1,14030:12637547,37366760 -g1,14030:12953693,37366760 -g1,14030:13269839,37366760 -g1,14030:13585985,37366760 -g1,14030:13902131,37366760 -g1,14030:14218277,37366760 -g1,14030:14534423,37366760 -g1,14030:14850569,37366760 -g1,14030:16747443,37366760 -g1,14030:17379735,37366760 -k1,14030:17379735,37366760:0 -h1,14030:21173483,37366760:0,0,0 -k1,14030:32583029,37366760:11409546 -g1,14030:32583029,37366760 -) -(1,14031:6630773,38032938:25952256,404226,82312 -h1,14031:6630773,38032938:0,0,0 -g1,14031:6946919,38032938 -g1,14031:7263065,38032938 -g1,14031:7579211,38032938 -g1,14031:7895357,38032938 -g1,14031:8211503,38032938 -g1,14031:8527649,38032938 -g1,14031:8843795,38032938 -g1,14031:9159941,38032938 -g1,14031:9476087,38032938 -g1,14031:9792233,38032938 -g1,14031:10108379,38032938 -g1,14031:10424525,38032938 -g1,14031:10740671,38032938 -g1,14031:11056817,38032938 -g1,14031:11372963,38032938 -g1,14031:11689109,38032938 -g1,14031:12005255,38032938 -g1,14031:12321401,38032938 -g1,14031:12637547,38032938 -g1,14031:12953693,38032938 -g1,14031:13269839,38032938 -g1,14031:13585985,38032938 -g1,14031:13902131,38032938 -g1,14031:14218277,38032938 -g1,14031:14534423,38032938 -g1,14031:14850569,38032938 -g1,14031:16431298,38032938 -g1,14031:17063590,38032938 -k1,14031:17063590,38032938:0 -h1,14031:18012027,38032938:0,0,0 -k1,14031:32583029,38032938:14571002 -g1,14031:32583029,38032938 -) -(1,14032:6630773,38699116:25952256,404226,101187 -h1,14032:6630773,38699116:0,0,0 -g1,14032:6946919,38699116 -g1,14032:7263065,38699116 -g1,14032:7579211,38699116 -g1,14032:7895357,38699116 -g1,14032:8211503,38699116 -g1,14032:8527649,38699116 -g1,14032:8843795,38699116 -g1,14032:9159941,38699116 -g1,14032:9476087,38699116 -g1,14032:9792233,38699116 -g1,14032:10108379,38699116 -g1,14032:10424525,38699116 -g1,14032:10740671,38699116 -g1,14032:11056817,38699116 -g1,14032:11372963,38699116 -g1,14032:11689109,38699116 -g1,14032:12005255,38699116 -g1,14032:12321401,38699116 -g1,14032:12637547,38699116 -g1,14032:12953693,38699116 -g1,14032:13269839,38699116 -g1,14032:13585985,38699116 -g1,14032:13902131,38699116 -g1,14032:14218277,38699116 -g1,14032:14534423,38699116 -g1,14032:14850569,38699116 -g1,14032:16747443,38699116 -g1,14032:17379735,38699116 -g1,14032:19276609,38699116 -h1,14032:19592755,38699116:0,0,0 -k1,14032:32583029,38699116:12990274 -g1,14032:32583029,38699116 -) -(1,14033:6630773,39365294:25952256,404226,76021 -h1,14033:6630773,39365294:0,0,0 -g1,14033:6946919,39365294 -g1,14033:7263065,39365294 -g1,14033:11372959,39365294 -h1,14033:11689105,39365294:0,0,0 -k1,14033:32583029,39365294:20893924 -g1,14033:32583029,39365294 -) -(1,14034:6630773,40031472:25952256,404226,107478 -h1,14034:6630773,40031472:0,0,0 -g1,14034:6946919,40031472 -g1,14034:7263065,40031472 -g1,14034:11372959,40031472 -h1,14034:11689105,40031472:0,0,0 -k1,14034:32583029,40031472:20893924 -g1,14034:32583029,40031472 -) -(1,14035:6630773,40697650:25952256,404226,107478 -h1,14035:6630773,40697650:0,0,0 -g1,14035:6946919,40697650 -g1,14035:7263065,40697650 -g1,14035:12321397,40697650 -g1,14035:12953689,40697650 -k1,14035:12953689,40697650:0 -h1,14035:15799000,40697650:0,0,0 -k1,14035:32583028,40697650:16784028 -g1,14035:32583028,40697650 -) -(1,14036:6630773,41363828:25952256,404226,101187 -h1,14036:6630773,41363828:0,0,0 -g1,14036:6946919,41363828 -g1,14036:7263065,41363828 -g1,14036:7579211,41363828 -g1,14036:7895357,41363828 -g1,14036:8211503,41363828 -g1,14036:8527649,41363828 -g1,14036:8843795,41363828 -g1,14036:9159941,41363828 -g1,14036:9476087,41363828 -g1,14036:9792233,41363828 -g1,14036:10108379,41363828 -g1,14036:10424525,41363828 -g1,14036:10740671,41363828 -g1,14036:12637546,41363828 -g1,14036:13269838,41363828 -g1,14036:14218276,41363828 -g1,14036:14850568,41363828 -g1,14036:15482860,41363828 -g1,14036:16431298,41363828 -g1,14036:18328172,41363828 -g1,14036:18960464,41363828 -k1,14036:18960464,41363828:0 -h1,14036:23070358,41363828:0,0,0 -k1,14036:32583029,41363828:9512671 -g1,14036:32583029,41363828 -) -(1,14037:6630773,42030006:25952256,404226,82312 -h1,14037:6630773,42030006:0,0,0 -g1,14037:6946919,42030006 -g1,14037:7263065,42030006 -g1,14037:7579211,42030006 -g1,14037:7895357,42030006 -g1,14037:8211503,42030006 -g1,14037:8527649,42030006 -g1,14037:8843795,42030006 -g1,14037:9159941,42030006 -g1,14037:9476087,42030006 -g1,14037:9792233,42030006 -g1,14037:10108379,42030006 -g1,14037:10424525,42030006 -g1,14037:10740671,42030006 -g1,14037:12637545,42030006 -g1,14037:13269837,42030006 -g1,14037:16115149,42030006 -g1,14037:17695878,42030006 -g1,14037:18328170,42030006 -h1,14037:18960462,42030006:0,0,0 -k1,14037:32583029,42030006:13622567 -g1,14037:32583029,42030006 -) -] -) -g1,14039:32583029,42112318 -g1,14039:6630773,42112318 -g1,14039:6630773,42112318 -g1,14039:32583029,42112318 -g1,14039:32583029,42112318 -) -h1,14039:6630773,42308926:0,0,0 -] -(1,14048:32583029,45706769:0,0,0 -g1,14048:32583029,45706769 -) -) -] -(1,14048:6630773,47279633:25952256,0,0 -h1,14048:6630773,47279633:25952256,0,0 -) -] -(1,14048:4262630,4025873:0,0,0 -[1,14048:-473656,4025873:0,0,0 -(1,14048:-473656,-710413:0,0,0 -(1,14048:-473656,-710413:0,0,0 -g1,14048:-473656,-710413 -) -g1,14048:-473656,-710413 -) -] -) -] -!30627 -}268 -Input:2123:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2124:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2125:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2126:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2127:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2128:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2129:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2130:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2131:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2132:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2133:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2134:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2135:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2136:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2137:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2138:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2139:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1576 -{269 -[1,14088:4262630,47279633:28320399,43253760,0 -(1,14088:4262630,4025873:0,0,0 -[1,14088:-473656,4025873:0,0,0 -(1,14088:-473656,-710413:0,0,0 -(1,14088:-473656,-644877:0,0,0 -k1,14088:-473656,-644877:-65536 -) -(1,14088:-473656,4736287:0,0,0 -k1,14088:-473656,4736287:5209943 -) -g1,14088:-473656,-710413 -) -] -) -[1,14088:6630773,47279633:25952256,43253760,0 -[1,14088:6630773,4812305:25952256,786432,0 -(1,14088:6630773,4812305:25952256,513147,134348 -(1,14088:6630773,4812305:25952256,513147,134348 -g1,14088:3078558,4812305 -[1,14088:3078558,4812305:0,0,0 -(1,14088:3078558,2439708:0,1703936,0 -k1,14088:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,14088:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,14088:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,14088:3078558,4812305:0,0,0 -(1,14088:3078558,2439708:0,1703936,0 -g1,14088:29030814,2439708 -g1,14088:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,14088:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,14088:37855564,2439708:1179648,16384,0 -) -) -k1,14088:3078556,2439708:-34777008 -) -] -[1,14088:3078558,4812305:0,0,0 -(1,14088:3078558,49800853:0,16384,2228224 -k1,14088:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,14088:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,14088:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,14088:3078558,4812305:0,0,0 -(1,14088:3078558,49800853:0,16384,2228224 -g1,14088:29030814,49800853 -g1,14088:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,14088:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,14088:37855564,49800853:1179648,16384,0 -) -) -k1,14088:3078556,49800853:-34777008 -) -] -g1,14088:6630773,4812305 -k1,14088:25712890,4812305:17886740 -g1,14088:29057847,4812305 -g1,14088:29873114,4812305 -) -) -] -[1,14088:6630773,45706769:25952256,40108032,0 -(1,14088:6630773,45706769:25952256,40108032,0 -(1,14088:6630773,45706769:0,0,0 -g1,14088:6630773,45706769 -) -[1,14088:6630773,45706769:25952256,40108032,0 -(1,14042:6630773,14682403:25952256,9083666,0 -k1,14042:10523651,14682403:3892878 -h1,14041:10523651,14682403:0,0,0 -(1,14041:10523651,14682403:18166500,9083666,0 -(1,14041:10523651,14682403:18167376,9083688,0 -(1,14041:10523651,14682403:18167376,9083688,0 -(1,14041:10523651,14682403:0,9083688,0 -(1,14041:10523651,14682403:0,14208860,0 -(1,14041:10523651,14682403:28417720,14208860,0 -) -k1,14041:10523651,14682403:-28417720 -) -) -g1,14041:28691027,14682403 -) -) -) -g1,14042:28690151,14682403 -k1,14042:32583029,14682403:3892878 -) -(1,14050:6630773,15523891:25952256,505283,115847 -h1,14048:6630773,15523891:983040,0,0 -k1,14048:9053812,15523891:243312 -(1,14048:9053812,15523891:0,452978,115847 -r1,14088:10818925,15523891:1765113,568825,115847 -k1,14048:9053812,15523891:-1765113 -) -(1,14048:9053812,15523891:1765113,452978,115847 -k1,14048:9053812,15523891:3277 -h1,14048:10815648,15523891:0,411205,112570 -) -k1,14048:11062237,15523891:243312 -k1,14048:12496994,15523891:243312 -(1,14048:12496994,15523891:0,452978,115847 -r1,14088:13910395,15523891:1413401,568825,115847 -k1,14048:12496994,15523891:-1413401 -) -(1,14048:12496994,15523891:1413401,452978,115847 -k1,14048:12496994,15523891:3277 -h1,14048:13907118,15523891:0,411205,112570 -) -k1,14048:14153707,15523891:243312 -k1,14048:17571583,15523891:243312 -k1,14048:20102757,15523891:243312 -k1,14048:21365154,15523891:243312 -k1,14048:22834646,15523891:243313 -k1,14048:23693996,15523891:243312 -k1,14048:24956393,15523891:243312 -k1,14048:27509849,15523891:243312 -k1,14048:28439323,15523891:243312 -k1,14048:29038495,15523891:243312 -k1,14048:31338327,15523891:243312 -k1,14049:32051532,15523891:243312 -k1,14049:32583029,15523891:0 -) -(1,14050:6630773,16365379:25952256,513147,134348 -k1,14049:8122506,16365379:205917 -k1,14049:10958382,16365379:205916 -k1,14049:11815727,16365379:205917 -k1,14049:13921532,16365379:205916 -k1,14049:15146534,16365379:205917 -k1,14049:17662595,16365379:205917 -k1,14049:19603904,16365379:205916 -(1,14049:19603904,16365379:0,452978,122846 -r1,14088:21369017,16365379:1765113,575824,122846 -k1,14049:19603904,16365379:-1765113 -) -(1,14049:19603904,16365379:1765113,452978,122846 -k1,14049:19603904,16365379:3277 -h1,14049:21365740,16365379:0,411205,112570 -) -k1,14049:21748604,16365379:205917 -k1,14049:22772410,16365379:205917 -k1,14049:24372277,16365379:205916 -k1,14049:25804373,16365379:205917 -k1,14049:28028143,16365379:205916 -k1,14049:32051532,16365379:205917 -k1,14049:32583029,16365379:0 -) -(1,14050:6630773,17206867:25952256,505283,126483 -k1,14049:10468941,17206867:248106 -k1,14049:11333085,17206867:248106 -k1,14049:14045346,17206867:248107 -k1,14049:14944880,17206867:248106 -k1,14049:18197812,17206867:248106 -k1,14049:22146081,17206867:248106 -k1,14049:23347736,17206867:248106 -k1,14049:24530385,17206867:248106 -k1,14049:25797577,17206867:248107 -(1,14049:25797577,17206867:0,435480,115847 -r1,14088:27562691,17206867:1765114,551327,115847 -k1,14049:25797577,17206867:-1765114 -) -(1,14049:25797577,17206867:1765114,435480,115847 -g1,14049:26504278,17206867 -g1,14049:27207702,17206867 -h1,14049:27559414,17206867:0,411205,112570 -) -k1,14049:27810797,17206867:248106 -k1,14049:28674941,17206867:248106 -(1,14049:28674941,17206867:0,452978,115847 -r1,14088:31143478,17206867:2468537,568825,115847 -k1,14049:28674941,17206867:-2468537 -) -(1,14049:28674941,17206867:2468537,452978,115847 -k1,14049:28674941,17206867:3277 -h1,14049:31140201,17206867:0,411205,112570 -) -k1,14049:31391584,17206867:248106 -k1,14049:32583029,17206867:0 -) -(1,14050:6630773,18048355:25952256,513147,126483 -g1,14049:8263930,18048355 -g1,14049:9555644,18048355 -(1,14049:9555644,18048355:0,452978,122846 -r1,14088:12727605,18048355:3171961,575824,122846 -k1,14049:9555644,18048355:-3171961 -) -(1,14049:9555644,18048355:3171961,452978,122846 -g1,14049:11669192,18048355 -g1,14049:12372616,18048355 -h1,14049:12724328,18048355:0,411205,112570 -) -g1,14049:12926834,18048355 -g1,14049:13777491,18048355 -g1,14049:16590951,18048355 -g1,14049:17809265,18048355 -g1,14049:19080663,18048355 -g1,14049:19939184,18048355 -g1,14049:21157498,18048355 -g1,14049:22922382,18048355 -g1,14049:23734373,18048355 -g1,14049:25136843,18048355 -g1,14049:28743944,18048355 -k1,14050:32583029,18048355:1985071 -g1,14050:32583029,18048355 -) -v1,14052:6630773,19238821:0,393216,0 -(1,14061:6630773,22891099:25952256,4045494,196608 -g1,14061:6630773,22891099 -g1,14061:6630773,22891099 -g1,14061:6434165,22891099 -(1,14061:6434165,22891099:0,4045494,196608 -r1,14088:32779637,22891099:26345472,4242102,196608 -k1,14061:6434165,22891099:-26345472 -) -(1,14061:6434165,22891099:26345472,4045494,196608 -[1,14061:6630773,22891099:25952256,3848886,0 -(1,14054:6630773,19452731:25952256,410518,107478 -(1,14053:6630773,19452731:0,0,0 -g1,14053:6630773,19452731 -g1,14053:6630773,19452731 -g1,14053:6303093,19452731 -(1,14053:6303093,19452731:0,0,0 -) -g1,14053:6630773,19452731 -) -k1,14054:6630773,19452731:0 -g1,14054:10424522,19452731 -g1,14054:11056814,19452731 -g1,14054:13585980,19452731 -g1,14054:15482855,19452731 -g1,14054:16115147,19452731 -g1,14054:18012022,19452731 -g1,14054:18644314,19452731 -g1,14054:19276606,19452731 -g1,14054:20857335,19452731 -g1,14054:22754209,19452731 -g1,14054:23386501,19452731 -g1,14054:27812541,19452731 -h1,14054:28128687,19452731:0,0,0 -k1,14054:32583029,19452731:4454342 -g1,14054:32583029,19452731 -) -(1,14055:6630773,20118909:25952256,404226,107478 -h1,14055:6630773,20118909:0,0,0 -g1,14055:6946919,20118909 -g1,14055:7263065,20118909 -g1,14055:11372959,20118909 -h1,14055:11689105,20118909:0,0,0 -k1,14055:32583029,20118909:20893924 -g1,14055:32583029,20118909 -) -(1,14056:6630773,20785087:25952256,404226,107478 -h1,14056:6630773,20785087:0,0,0 -g1,14056:6946919,20785087 -g1,14056:7263065,20785087 -g1,14056:12321397,20785087 -g1,14056:12953689,20785087 -k1,14056:12953689,20785087:0 -h1,14056:15799000,20785087:0,0,0 -k1,14056:32583028,20785087:16784028 -g1,14056:32583028,20785087 -) -(1,14057:6630773,21451265:25952256,404226,101187 -h1,14057:6630773,21451265:0,0,0 -g1,14057:6946919,21451265 -g1,14057:7263065,21451265 -g1,14057:7579211,21451265 -g1,14057:7895357,21451265 -g1,14057:8211503,21451265 -g1,14057:8527649,21451265 -g1,14057:8843795,21451265 -g1,14057:9159941,21451265 -g1,14057:9476087,21451265 -g1,14057:9792233,21451265 -g1,14057:10108379,21451265 -g1,14057:10424525,21451265 -g1,14057:10740671,21451265 -g1,14057:12637546,21451265 -g1,14057:13269838,21451265 -g1,14057:14218276,21451265 -g1,14057:14850568,21451265 -g1,14057:15482860,21451265 -g1,14057:16431298,21451265 -g1,14057:18328172,21451265 -g1,14057:18960464,21451265 -k1,14057:18960464,21451265:0 -h1,14057:23070358,21451265:0,0,0 -k1,14057:32583029,21451265:9512671 -g1,14057:32583029,21451265 -) -(1,14058:6630773,22117443:25952256,404226,82312 -h1,14058:6630773,22117443:0,0,0 -g1,14058:6946919,22117443 -g1,14058:7263065,22117443 -g1,14058:7579211,22117443 -g1,14058:7895357,22117443 -g1,14058:8211503,22117443 -g1,14058:8527649,22117443 -g1,14058:8843795,22117443 -g1,14058:9159941,22117443 -g1,14058:9476087,22117443 -g1,14058:9792233,22117443 -g1,14058:10108379,22117443 -g1,14058:10424525,22117443 -g1,14058:10740671,22117443 -g1,14058:12637545,22117443 -g1,14058:13269837,22117443 -g1,14058:15799003,22117443 -g1,14058:17379732,22117443 -g1,14058:18012024,22117443 -k1,14058:18012024,22117443:0 -h1,14058:18644316,22117443:0,0,0 -k1,14058:32583029,22117443:13938713 -g1,14058:32583029,22117443 -) -(1,14059:6630773,22783621:25952256,404226,107478 -h1,14059:6630773,22783621:0,0,0 -g1,14059:6946919,22783621 -g1,14059:7263065,22783621 -g1,14059:7579211,22783621 -g1,14059:7895357,22783621 -g1,14059:8211503,22783621 -g1,14059:8527649,22783621 -g1,14059:8843795,22783621 -g1,14059:9159941,22783621 -g1,14059:9476087,22783621 -g1,14059:9792233,22783621 -g1,14059:10108379,22783621 -g1,14059:10424525,22783621 -g1,14059:10740671,22783621 -g1,14059:12637545,22783621 -g1,14059:13269837,22783621 -g1,14059:14218275,22783621 -g1,14059:16115149,22783621 -g1,14059:16747441,22783621 -g1,14059:17695879,22783621 -g1,14059:19592753,22783621 -g1,14059:20225045,22783621 -h1,14059:21173482,22783621:0,0,0 -k1,14059:32583029,22783621:11409547 -g1,14059:32583029,22783621 -) -] -) -g1,14061:32583029,22891099 -g1,14061:6630773,22891099 -g1,14061:6630773,22891099 -g1,14061:32583029,22891099 -g1,14061:32583029,22891099 -) -h1,14061:6630773,23087707:0,0,0 -(1,14065:6630773,24453483:25952256,513147,134348 -h1,14064:6630773,24453483:983040,0,0 -k1,14064:9891290,24453483:159353 -k1,14064:11450492,24453483:159353 -k1,14064:13345238,24453483:159353 -k1,14064:14453553,24453483:159354 -k1,14064:17465033,24453483:159353 -k1,14064:19708431,24453483:159353 -k1,14064:20399281,24453483:159353 -k1,14064:23853129,24453483:159353 -k1,14064:24628520,24453483:159353 -k1,14064:25806959,24453483:159354 -k1,14064:27705638,24453483:159353 -k1,14064:29258942,24453483:159353 -k1,14064:31931601,24453483:159353 -k1,14064:32583029,24453483:0 -) -(1,14065:6630773,25294971:25952256,513147,134348 -k1,14064:8405226,25294971:176685 -k1,14064:9808090,25294971:176685 -k1,14064:10600813,25294971:176685 -k1,14064:12144579,25294971:176685 -k1,14064:12980556,25294971:176685 -k1,14064:15542752,25294971:176685 -k1,14064:17830352,25294971:176685 -k1,14064:18816406,25294971:176684 -k1,14064:19348951,25294971:176685 -k1,14064:22895497,25294971:176685 -k1,14064:24863936,25294971:176685 -k1,14064:25994170,25294971:176685 -k1,14064:27353780,25294971:176685 -k1,14064:28733706,25294971:176685 -k1,14064:31189078,25294971:176685 -k1,14064:32583029,25294971:0 -) -(1,14065:6630773,26136459:25952256,513147,126483 -k1,14064:7202304,26136459:215671 -k1,14064:9542651,26136459:215670 -k1,14064:12593409,26136459:215671 -k1,14064:14694551,26136459:215671 -k1,14064:16376918,26136459:215671 -k1,14064:17058549,26136459:215670 -k1,14064:18340491,26136459:215671 -k1,14064:19910136,26136459:215671 -k1,14064:22276699,26136459:215671 -k1,14064:26855756,26136459:215670 -k1,14064:28355933,26136459:215671 -(1,14064:28355933,26136459:0,452978,122846 -r1,14088:32583029,26136459:4227096,575824,122846 -k1,14064:28355933,26136459:-4227096 -) -(1,14064:28355933,26136459:4227096,452978,122846 -k1,14064:28355933,26136459:3277 -h1,14064:32579752,26136459:0,411205,112570 -) -k1,14064:32583029,26136459:0 -) -(1,14065:6630773,26977947:25952256,505283,134348 -k1,14064:9359733,26977947:175677 -k1,14064:10681636,26977947:175678 -k1,14064:11213173,26977947:175677 -k1,14064:14267847,26977947:175677 -k1,14064:16469243,26977947:175678 -k1,14064:19652367,26977947:175677 -k1,14064:21019489,26977947:175677 -k1,14064:22479672,26977947:175677 -k1,14064:23011210,26977947:175678 -k1,14064:24752542,26977947:175677 -k1,14064:26032501,26977947:175677 -k1,14064:26955945,26977947:175678 -k1,14064:28150707,26977947:175677 -k1,14064:29701985,26977947:175677 -k1,14064:31435454,26977947:175678 -k1,14064:32227169,26977947:175677 -k1,14064:32583029,26977947:0 -) -(1,14065:6630773,27819435:25952256,513147,134348 -k1,14064:8828849,27819435:172358 -k1,14064:9467168,27819435:172358 -k1,14064:12169215,27819435:172357 -k1,14064:13538260,27819435:172358 -k1,14064:16376623,27819435:172358 -k1,14064:17208273,27819435:172358 -k1,14064:20051877,27819435:172357 -k1,14064:22120192,27819435:172358 -k1,14064:23686501,27819435:172358 -k1,14064:24214719,27819435:172358 -k1,14064:26260095,27819435:172357 -k1,14064:27532147,27819435:172358 -k1,14064:28355933,27819435:172358 -(1,14064:28355933,27819435:0,452978,122846 -r1,14088:32583029,27819435:4227096,575824,122846 -k1,14064:28355933,27819435:-4227096 -) -(1,14064:28355933,27819435:4227096,452978,122846 -k1,14064:28355933,27819435:3277 -h1,14064:32579752,27819435:0,411205,112570 -) -k1,14064:32583029,27819435:0 -) -(1,14065:6630773,28660923:25952256,513147,134348 -g1,14064:7591530,28660923 -g1,14064:10218213,28660923 -g1,14064:10773302,28660923 -(1,14064:10773302,28660923:0,452978,115847 -r1,14088:12890127,28660923:2116825,568825,115847 -k1,14064:10773302,28660923:-2116825 -) -(1,14064:10773302,28660923:2116825,452978,115847 -k1,14064:10773302,28660923:3277 -h1,14064:12886850,28660923:0,411205,112570 -) -g1,14064:13089356,28660923 -g1,14064:14682536,28660923 -g1,14064:17553012,28660923 -g1,14064:19286439,28660923 -g1,14064:20171830,28660923 -g1,14064:21141762,28660923 -g1,14064:24413319,28660923 -g1,14064:25560199,28660923 -(1,14064:25560199,28660923:0,452978,115847 -r1,14088:26973600,28660923:1413401,568825,115847 -k1,14064:25560199,28660923:-1413401 -) -(1,14064:25560199,28660923:1413401,452978,115847 -k1,14064:25560199,28660923:3277 -h1,14064:26970323,28660923:0,411205,112570 -) -g1,14064:27172829,28660923 -g1,14064:27903555,28660923 -g1,14064:29388600,28660923 -k1,14065:32583029,28660923:390799 -g1,14065:32583029,28660923 -) -v1,14067:6630773,29851389:0,393216,0 -(1,14078:6630773,34798274:25952256,5340101,196608 -g1,14078:6630773,34798274 -g1,14078:6630773,34798274 -g1,14078:6434165,34798274 -(1,14078:6434165,34798274:0,5340101,196608 -r1,14088:32779637,34798274:26345472,5536709,196608 -k1,14078:6434165,34798274:-26345472 -) -(1,14078:6434165,34798274:26345472,5340101,196608 -[1,14078:6630773,34798274:25952256,5143493,0 -(1,14069:6630773,30059007:25952256,404226,101187 -(1,14068:6630773,30059007:0,0,0 -g1,14068:6630773,30059007 -g1,14068:6630773,30059007 -g1,14068:6303093,30059007 -(1,14068:6303093,30059007:0,0,0 -) -g1,14068:6630773,30059007 -) -g1,14069:8527647,30059007 -g1,14069:9476085,30059007 -g1,14069:13585980,30059007 -g1,14069:14218272,30059007 -k1,14069:14218272,30059007:0 -h1,14069:14850564,30059007:0,0,0 -k1,14069:32583028,30059007:17732464 -g1,14069:32583028,30059007 -) -(1,14070:6630773,30725185:25952256,404226,82312 -h1,14070:6630773,30725185:0,0,0 -g1,14070:6946919,30725185 -g1,14070:7263065,30725185 -g1,14070:7579211,30725185 -g1,14070:7895357,30725185 -g1,14070:8211503,30725185 -g1,14070:8527649,30725185 -g1,14070:8843795,30725185 -g1,14070:9159941,30725185 -g1,14070:9476087,30725185 -g1,14070:9792233,30725185 -g1,14070:10108379,30725185 -g1,14070:10424525,30725185 -g1,14070:10740671,30725185 -g1,14070:11056817,30725185 -g1,14070:11372963,30725185 -g1,14070:11689109,30725185 -g1,14070:13585984,30725185 -g1,14070:14218276,30725185 -k1,14070:14218276,30725185:0 -h1,14070:15482860,30725185:0,0,0 -k1,14070:32583028,30725185:17100168 -g1,14070:32583028,30725185 -) -(1,14071:6630773,31391363:25952256,404226,82312 -h1,14071:6630773,31391363:0,0,0 -g1,14071:6946919,31391363 -g1,14071:7263065,31391363 -g1,14071:7579211,31391363 -g1,14071:7895357,31391363 -g1,14071:8211503,31391363 -g1,14071:8527649,31391363 -g1,14071:8843795,31391363 -g1,14071:9159941,31391363 -g1,14071:9476087,31391363 -g1,14071:9792233,31391363 -g1,14071:10108379,31391363 -g1,14071:10424525,31391363 -g1,14071:10740671,31391363 -g1,14071:11056817,31391363 -g1,14071:11372963,31391363 -g1,14071:11689109,31391363 -g1,14071:13585984,31391363 -g1,14071:14218276,31391363 -k1,14071:14218276,31391363:0 -h1,14071:16747444,31391363:0,0,0 -k1,14071:32583029,31391363:15835585 -g1,14071:32583029,31391363 -) -(1,14072:6630773,32057541:25952256,404226,76021 -h1,14072:6630773,32057541:0,0,0 -g1,14072:6946919,32057541 -g1,14072:7263065,32057541 -g1,14072:7579211,32057541 -g1,14072:7895357,32057541 -g1,14072:8211503,32057541 -g1,14072:8527649,32057541 -g1,14072:8843795,32057541 -g1,14072:9159941,32057541 -g1,14072:9476087,32057541 -g1,14072:9792233,32057541 -g1,14072:10108379,32057541 -g1,14072:10424525,32057541 -g1,14072:10740671,32057541 -g1,14072:11056817,32057541 -g1,14072:11372963,32057541 -g1,14072:11689109,32057541 -g1,14072:13585984,32057541 -g1,14072:14218276,32057541 -h1,14072:16747444,32057541:0,0,0 -k1,14072:32583029,32057541:15835585 -g1,14072:32583029,32057541 -) -(1,14073:6630773,32723719:25952256,404226,101187 -h1,14073:6630773,32723719:0,0,0 -g1,14073:9159939,32723719 -g1,14073:10108377,32723719 -g1,14073:12953689,32723719 -g1,14073:13585981,32723719 -g1,14073:14534419,32723719 -g1,14073:15166711,32723719 -g1,14073:15799003,32723719 -g1,14073:16747441,32723719 -g1,14073:20541189,32723719 -g1,14073:21173481,32723719 -k1,14073:21173481,32723719:0 -h1,14073:24967229,32723719:0,0,0 -k1,14073:32583029,32723719:7615800 -g1,14073:32583029,32723719 -) -(1,14074:6630773,33389897:25952256,404226,107478 -h1,14074:6630773,33389897:0,0,0 -g1,14074:11689104,33389897 -g1,14074:14218270,33389897 -g1,14074:14850562,33389897 -g1,14074:17063582,33389897 -g1,14074:18012020,33389897 -g1,14074:19908894,33389897 -g1,14074:20541186,33389897 -g1,14074:24967226,33389897 -h1,14074:25283372,33389897:0,0,0 -k1,14074:32583029,33389897:7299657 -g1,14074:32583029,33389897 -) -(1,14075:6630773,34056075:25952256,404226,107478 -h1,14075:6630773,34056075:0,0,0 -g1,14075:6946919,34056075 -g1,14075:7263065,34056075 -g1,14075:14534416,34056075 -g1,14075:15166708,34056075 -g1,14075:17063583,34056075 -g1,14075:18644312,34056075 -g1,14075:19276604,34056075 -g1,14075:20225042,34056075 -g1,14075:22121916,34056075 -g1,14075:22754208,34056075 -g1,14075:24651083,34056075 -h1,14075:24967229,34056075:0,0,0 -k1,14075:32583029,34056075:7615800 -g1,14075:32583029,34056075 -) -(1,14076:6630773,34722253:25952256,404226,76021 -h1,14076:6630773,34722253:0,0,0 -g1,14076:6946919,34722253 -g1,14076:7263065,34722253 -k1,14076:7263065,34722253:0 -h1,14076:11056813,34722253:0,0,0 -k1,14076:32583029,34722253:21526216 -g1,14076:32583029,34722253 -) -] -) -g1,14078:32583029,34798274 -g1,14078:6630773,34798274 -g1,14078:6630773,34798274 -g1,14078:32583029,34798274 -g1,14078:32583029,34798274 -) -h1,14078:6630773,34994882:0,0,0 -v1,14082:6630773,36884946:0,393216,0 -(1,14083:6630773,40086977:25952256,3595247,616038 -g1,14083:6630773,40086977 -(1,14083:6630773,40086977:25952256,3595247,616038 -(1,14083:6630773,40703015:25952256,4211285,0 -[1,14083:6630773,40703015:25952256,4211285,0 -(1,14083:6630773,40676801:25952256,4158857,0 -r1,14088:6656987,40676801:26214,4158857,0 -[1,14083:6656987,40676801:25899828,4158857,0 -(1,14083:6656987,40086977:25899828,2979209,0 -[1,14083:7246811,40086977:24720180,2979209,0 -(1,14083:7246811,38269653:24720180,1161885,196608 -(1,14082:7246811,38269653:0,1161885,196608 -r1,14088:8794447,38269653:1547636,1358493,196608 -k1,14082:7246811,38269653:-1547636 -) -(1,14082:7246811,38269653:1547636,1161885,196608 -) -k1,14082:9042862,38269653:248415 -k1,14082:10487964,38269653:248415 -k1,14082:13743826,38269653:248415 -(1,14082:13743826,38269653:0,452978,122846 -r1,14088:17970922,38269653:4227096,575824,122846 -k1,14082:13743826,38269653:-4227096 -) -(1,14082:13743826,38269653:4227096,452978,122846 -k1,14082:13743826,38269653:3277 -h1,14082:17967645,38269653:0,411205,112570 -) -k1,14082:18219337,38269653:248415 -k1,14082:19890539,38269653:248415 -k1,14082:23164751,38269653:248415 -k1,14082:24980787,38269653:248415 -k1,14082:27809354,38269653:248415 -k1,14082:31315563,38269653:248415 -k1,14082:31966991,38269653:0 -) -(1,14083:7246811,39111141:24720180,513147,134348 -k1,14082:9177502,39111141:288359 -k1,14082:9821720,39111141:288358 -k1,14082:13059854,39111141:288359 -k1,14082:15307738,39111141:288358 -k1,14082:16543748,39111141:288359 -k1,14082:17851191,39111141:288358 -k1,14082:19878876,39111141:288359 -k1,14082:21363921,39111141:288358 -k1,14082:22744765,39111141:288359 -k1,14082:23692415,39111141:288358 -k1,14082:25546429,39111141:288359 -k1,14082:28151485,39111141:288358 -k1,14082:29647017,39111141:288359 -k1,14082:31001646,39111141:288358 -k1,14082:31966991,39111141:0 -) -(1,14083:7246811,39952629:24720180,513147,134348 -g1,14082:10740535,39952629 -g1,14082:11701292,39952629 -g1,14082:13103762,39952629 -g1,14082:16292743,39952629 -g1,14082:17104734,39952629 -g1,14082:18323048,39952629 -g1,14082:19947685,39952629 -g1,14082:20806206,39952629 -k1,14083:31966991,39952629:8729399 -g1,14083:31966991,39952629 -) -] -) -] -r1,14088:32583029,40676801:26214,4158857,0 -) -] -) -) -g1,14083:32583029,40086977 -) -h1,14083:6630773,40703015:0,0,0 -(1,14088:6630773,42068791:25952256,513147,134348 -h1,14087:6630773,42068791:983040,0,0 -k1,14087:10889273,42068791:180195 -(1,14087:10889273,42068791:0,452978,122846 -r1,14088:14764657,42068791:3875384,575824,122846 -k1,14087:10889273,42068791:-3875384 -) -(1,14087:10889273,42068791:3875384,452978,122846 -k1,14087:10889273,42068791:3277 -h1,14087:14761380,42068791:0,411205,112570 -) -k1,14087:14944851,42068791:180194 -k1,14087:17051804,42068791:180195 -k1,14087:19015234,42068791:180195 -k1,14087:20341653,42068791:180194 -(1,14087:20341653,42068791:0,452978,122846 -r1,14088:24568749,42068791:4227096,575824,122846 -k1,14087:20341653,42068791:-4227096 -) -(1,14087:20341653,42068791:4227096,452978,122846 -k1,14087:20341653,42068791:3277 -h1,14087:24565472,42068791:0,411205,112570 -) -k1,14087:24922614,42068791:180195 -k1,14087:26174978,42068791:180195 -k1,14087:28682355,42068791:180194 -k1,14087:29521842,42068791:180195 -k1,14087:32583029,42068791:0 -) -(1,14088:6630773,42910279:25952256,513147,126483 -k1,14087:7136389,42910279:149756 -k1,14087:8279670,42910279:149755 -k1,14087:9088718,42910279:149756 -k1,14087:10627836,42910279:149755 -k1,14087:12984189,42910279:149756 -k1,14087:13816830,42910279:149756 -k1,14087:16108302,42910279:149755 -k1,14087:16909486,42910279:149756 -k1,14087:17807007,42910279:149755 -k1,14087:20542158,42910279:149756 -k1,14087:21343341,42910279:149755 -k1,14087:22512182,42910279:149756 -(1,14087:22512182,42910279:0,452978,115847 -r1,14088:24277295,42910279:1765113,568825,115847 -k1,14087:22512182,42910279:-1765113 -) -(1,14087:22512182,42910279:1765113,452978,115847 -k1,14087:22512182,42910279:3277 -h1,14087:24274018,42910279:0,411205,112570 -) -k1,14087:24427051,42910279:149756 -k1,14087:27925040,42910279:149755 -k1,14087:28532893,42910279:149756 -k1,14087:31083887,42910279:149755 -k1,14087:31589503,42910279:149756 -k1,14087:32583029,42910279:0 -) -(1,14088:6630773,43751767:25952256,513147,134348 -k1,14087:7481241,43751767:191176 -k1,14087:10028435,43751767:191175 -k1,14087:12716533,43751767:191176 -k1,14087:13567000,43751767:191175 -k1,14087:15313345,43751767:191176 -(1,14087:15313345,43751767:0,414482,122846 -r1,14088:16023323,43751767:709978,537328,122846 -k1,14087:15313345,43751767:-709978 -) -(1,14087:15313345,43751767:709978,414482,122846 -k1,14087:15313345,43751767:3277 -h1,14087:16020046,43751767:0,411205,112570 -) -k1,14087:16595262,43751767:191175 -k1,14087:18167282,43751767:191176 -k1,14087:20370412,43751767:191175 -k1,14087:22749180,43751767:191176 -k1,14087:23626517,43751767:191175 -k1,14087:24588396,43751767:191176 -k1,14087:26330153,43751767:191175 -k1,14087:27172757,43751767:191176 -k1,14087:27719792,43751767:191175 -k1,14087:30110356,43751767:191176 -k1,14087:32583029,43751767:0 -) -(1,14088:6630773,44593255:25952256,513147,134348 -k1,14087:9006409,44593255:176248 -k1,14087:9810492,44593255:176248 -k1,14087:11005825,44593255:176248 -k1,14087:12937783,44593255:176248 -k1,14087:14812069,44593255:176248 -k1,14087:16595915,44593255:176248 -k1,14087:18276214,44593255:176248 -k1,14087:20058750,44593255:176249 -k1,14087:22589707,44593255:176248 -k1,14087:24159906,44593255:176248 -k1,14087:25941786,44593255:176248 -k1,14087:27126633,44593255:176248 -k1,14087:28112251,44593255:176248 -k1,14087:30295211,44593255:176248 -k1,14087:31490544,44593255:176248 -k1,14087:32583029,44593255:0 -) -(1,14088:6630773,45434743:25952256,513147,126483 -k1,14087:7552763,45434743:262698 -k1,14087:9366044,45434743:262699 -k1,14087:11236340,45434743:262698 -k1,14087:12706212,45434743:262699 -k1,14087:14619107,45434743:262698 -k1,14087:17620556,45434743:262699 -k1,14087:19325701,45434743:262698 -k1,14087:22916318,45434743:262699 -k1,14087:24741394,45434743:262698 -k1,14087:26611691,45434743:262699 -k1,14087:27978671,45434743:262698 -k1,14087:28989136,45434743:262699 -k1,14087:30605808,45434743:262698 -k1,14087:32583029,45434743:0 -) -] -(1,14088:32583029,45706769:0,0,0 -g1,14088:32583029,45706769 -) -) -] -(1,14088:6630773,47279633:25952256,0,0 -h1,14088:6630773,47279633:25952256,0,0 -) -] -(1,14088:4262630,4025873:0,0,0 -[1,14088:-473656,4025873:0,0,0 -(1,14088:-473656,-710413:0,0,0 -(1,14088:-473656,-710413:0,0,0 -g1,14088:-473656,-710413 -) -g1,14088:-473656,-710413 -) -] -) -] -!26661 -}269 -Input:2140:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!104 -{270 -[1,14147:4262630,47279633:28320399,43253760,0 -(1,14147:4262630,4025873:0,0,0 -[1,14147:-473656,4025873:0,0,0 -(1,14147:-473656,-710413:0,0,0 -(1,14147:-473656,-644877:0,0,0 -k1,14147:-473656,-644877:-65536 -) -(1,14147:-473656,4736287:0,0,0 -k1,14147:-473656,4736287:5209943 -) -g1,14147:-473656,-710413 -) -] -) -[1,14147:6630773,47279633:25952256,43253760,0 -[1,14147:6630773,4812305:25952256,786432,0 -(1,14147:6630773,4812305:25952256,485622,11795 -(1,14147:6630773,4812305:25952256,485622,11795 -g1,14147:3078558,4812305 -[1,14147:3078558,4812305:0,0,0 -(1,14147:3078558,2439708:0,1703936,0 -k1,14147:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,14147:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,14147:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,14147:3078558,4812305:0,0,0 -(1,14147:3078558,2439708:0,1703936,0 -g1,14147:29030814,2439708 -g1,14147:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,14147:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,14147:37855564,2439708:1179648,16384,0 -) -) -k1,14147:3078556,2439708:-34777008 -) -] -[1,14147:3078558,4812305:0,0,0 -(1,14147:3078558,49800853:0,16384,2228224 -k1,14147:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,14147:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,14147:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,14147:3078558,4812305:0,0,0 -(1,14147:3078558,49800853:0,16384,2228224 -g1,14147:29030814,49800853 -g1,14147:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,14147:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,14147:37855564,49800853:1179648,16384,0 -) -) -k1,14147:3078556,49800853:-34777008 -) -] -g1,14147:6630773,4812305 -g1,14147:6630773,4812305 -g1,14147:10347975,4812305 -k1,14147:31387651,4812305:21039676 -) -) -] -[1,14147:6630773,45706769:25952256,40108032,0 -(1,14147:6630773,45706769:25952256,40108032,0 -(1,14147:6630773,45706769:0,0,0 -g1,14147:6630773,45706769 -) -[1,14147:6630773,45706769:25952256,40108032,0 -(1,14088:6630773,6254097:25952256,513147,134348 -k1,14087:7824032,6254097:245608 -k1,14087:11687884,6254097:245609 -k1,14087:12742862,6254097:245608 -k1,14087:14640634,6254097:245609 -k1,14087:15545534,6254097:245608 -k1,14087:16147003,6254097:245609 -k1,14087:17984481,6254097:245608 -k1,14087:19507387,6254097:245609 -k1,14087:21671889,6254097:245608 -k1,14087:25989250,6254097:245609 -k1,14087:27226418,6254097:245608 -k1,14087:30198325,6254097:245609 -k1,14087:31635378,6254097:245608 -k1,14087:32583029,6254097:0 -) -(1,14088:6630773,7095585:25952256,505283,134348 -k1,14087:10074690,7095585:158597 -k1,14087:13741429,7095585:158597 -k1,14087:15754695,7095585:158597 -k1,14087:16722662,7095585:158597 -k1,14087:17900344,7095585:158597 -k1,14087:22130693,7095585:158597 -k1,14087:24364815,7095585:158597 -k1,14087:25139450,7095585:158597 -k1,14087:26317132,7095585:158597 -k1,14087:28067599,7095585:158597 -k1,14087:29677163,7095585:158597 -k1,14087:31032447,7095585:158597 -k1,14087:32583029,7095585:0 -) -(1,14088:6630773,7937073:25952256,513147,126483 -k1,14087:8450909,7937073:212538 -k1,14087:9655007,7937073:212538 -k1,14087:11985013,7937073:212538 -k1,14087:12813590,7937073:212539 -k1,14087:16143676,7937073:212538 -k1,14087:18241685,7937073:212538 -k1,14087:20742085,7937073:212538 -k1,14087:21973708,7937073:212538 -k1,14087:25861505,7937073:212538 -k1,14087:26733336,7937073:212539 -k1,14087:27964959,7937073:212538 -k1,14087:29728079,7937073:212538 -k1,14087:31391584,7937073:212538 -k1,14087:32583029,7937073:0 -) -(1,14088:6630773,8778561:25952256,513147,122846 -k1,14087:9994713,8778561:189376 -(1,14087:9994713,8778561:0,452978,122846 -r1,14147:13166673,8778561:3171960,575824,122846 -k1,14087:9994713,8778561:-3171960 -) -(1,14087:9994713,8778561:3171960,452978,122846 -k1,14087:9994713,8778561:3277 -h1,14087:13163396,8778561:0,411205,112570 -) -k1,14087:13356049,8778561:189376 -k1,14087:14736870,8778561:189376 -(1,14087:14736870,8778561:0,452978,115847 -r1,14147:17557119,8778561:2820249,568825,115847 -k1,14087:14736870,8778561:-2820249 -) -(1,14087:14736870,8778561:2820249,452978,115847 -k1,14087:14736870,8778561:3277 -h1,14087:17553842,8778561:0,411205,112570 -) -k1,14087:17746495,8778561:189376 -k1,14087:20223733,8778561:189376 -k1,14087:21921748,8778561:189376 -k1,14087:25759513,8778561:189376 -k1,14087:28544770,8778561:189376 -k1,14087:29393438,8778561:189376 -k1,14087:30715276,8778561:189376 -k1,14087:31563944,8778561:189376 -k1,14087:32583029,8778561:0 -) -(1,14088:6630773,9620049:25952256,513147,134348 -k1,14087:8922052,9620049:281945 -k1,14087:10395442,9620049:281945 -k1,14087:12492079,9620049:281945 -k1,14087:13433316,9620049:281945 -k1,14087:14734346,9620049:281945 -k1,14087:17540738,9620049:281945 -k1,14087:19170104,9620049:281946 -k1,14087:20111341,9620049:281945 -k1,14087:21412371,9620049:281945 -k1,14087:23286186,9620049:281945 -k1,14087:25019098,9620049:281945 -k1,14087:27795343,9620049:281945 -k1,14087:29181570,9620049:281945 -k1,14087:30211281,9620049:281945 -k1,14087:32583029,9620049:0 -) -(1,14088:6630773,10461537:25952256,505283,126483 -g1,14087:10098938,10461537 -g1,14087:10949595,10461537 -g1,14087:12167909,10461537 -g1,14087:13959008,10461537 -g1,14087:15349682,10461537 -g1,14087:17099493,10461537 -k1,14088:32583029,10461537:13702267 -g1,14088:32583029,10461537 -) -(1,14090:6630773,11303025:25952256,513147,126483 -h1,14089:6630773,11303025:983040,0,0 -k1,14089:8529250,11303025:287602 -k1,14089:9835937,11303025:287602 -k1,14089:11429672,11303025:287602 -k1,14089:14378692,11303025:287603 -k1,14089:15325586,11303025:287602 -k1,14089:17163770,11303025:287602 -k1,14089:19232641,11303025:287602 -k1,14089:20388595,11303025:287602 -k1,14089:23013866,11303025:287602 -k1,14089:24458179,11303025:287603 -k1,14089:25405073,11303025:287602 -k1,14089:26711760,11303025:287602 -k1,14089:30507504,11303025:287602 -k1,14089:32583029,11303025:0 -) -(1,14090:6630773,12144513:25952256,513147,134348 -g1,14089:8685326,12144513 -g1,14089:9570717,12144513 -g1,14089:10540649,12144513 -g1,14089:12290460,12144513 -g1,14089:14229015,12144513 -g1,14089:15381793,12144513 -g1,14089:16887155,12144513 -g1,14089:19015764,12144513 -g1,14089:19570853,12144513 -g1,14089:21581497,12144513 -g1,14089:25142723,12144513 -g1,14089:26361037,12144513 -g1,14089:27837563,12144513 -g1,14089:28688220,12144513 -g1,14089:29635215,12144513 -k1,14090:32583029,12144513:1223562 -g1,14090:32583029,12144513 -) -v1,14092:6630773,13334979:0,393216,0 -(1,14105:6630773,19623657:25952256,6681894,196608 -g1,14105:6630773,19623657 -g1,14105:6630773,19623657 -g1,14105:6434165,19623657 -(1,14105:6434165,19623657:0,6681894,196608 -r1,14147:32779637,19623657:26345472,6878502,196608 -k1,14105:6434165,19623657:-26345472 -) -(1,14105:6434165,19623657:26345472,6681894,196608 -[1,14105:6630773,19623657:25952256,6485286,0 -(1,14094:6630773,13526868:25952256,388497,9436 -(1,14093:6630773,13526868:0,0,0 -g1,14093:6630773,13526868 -g1,14093:6630773,13526868 -g1,14093:6303093,13526868 -(1,14093:6303093,13526868:0,0,0 -) -g1,14093:6630773,13526868 -) -g1,14094:8843793,13526868 -k1,14094:8843793,13526868:0 -h1,14094:10108375,13526868:0,0,0 -k1,14094:32583029,13526868:22474654 -g1,14094:32583029,13526868 -) -(1,14095:6630773,14193046:25952256,404226,107478 -h1,14095:6630773,14193046:0,0,0 -g1,14095:6946919,14193046 -g1,14095:7263065,14193046 -g1,14095:11056813,14193046 -g1,14095:12637542,14193046 -k1,14095:12637542,14193046:0 -h1,14095:13902124,14193046:0,0,0 -k1,14095:32583028,14193046:18680904 -g1,14095:32583028,14193046 -) -(1,14096:6630773,14859224:25952256,404226,107478 -h1,14096:6630773,14859224:0,0,0 -g1,14096:6946919,14859224 -g1,14096:7263065,14859224 -g1,14096:11372959,14859224 -g1,14096:14218270,14859224 -g1,14096:14850562,14859224 -g1,14096:18328165,14859224 -k1,14096:18328165,14859224:0 -h1,14096:19592747,14859224:0,0,0 -k1,14096:32583029,14859224:12990282 -g1,14096:32583029,14859224 -) -(1,14097:6630773,15525402:25952256,404226,107478 -h1,14097:6630773,15525402:0,0,0 -g1,14097:6946919,15525402 -g1,14097:7263065,15525402 -g1,14097:11056814,15525402 -g1,14097:11689106,15525402 -k1,14097:11689106,15525402:0 -h1,14097:12321398,15525402:0,0,0 -k1,14097:32583030,15525402:20261632 -g1,14097:32583030,15525402 -) -(1,14098:6630773,16191580:25952256,410518,107478 -h1,14098:6630773,16191580:0,0,0 -g1,14098:6946919,16191580 -g1,14098:7263065,16191580 -g1,14098:7579211,16191580 -g1,14098:7895357,16191580 -g1,14098:8211503,16191580 -g1,14098:8527649,16191580 -g1,14098:8843795,16191580 -g1,14098:9159941,16191580 -g1,14098:9476087,16191580 -g1,14098:14850564,16191580 -g1,14098:18012021,16191580 -g1,14098:19592750,16191580 -g1,14098:20225042,16191580 -g1,14098:24651082,16191580 -h1,14098:24967228,16191580:0,0,0 -k1,14098:32583029,16191580:7615801 -g1,14098:32583029,16191580 -) -(1,14099:6630773,16857758:25952256,410518,107478 -h1,14099:6630773,16857758:0,0,0 -g1,14099:6946919,16857758 -g1,14099:7263065,16857758 -g1,14099:15482853,16857758 -g1,14099:16115145,16857758 -g1,14099:18644311,16857758 -h1,14099:18960457,16857758:0,0,0 -k1,14099:32583029,16857758:13622572 -g1,14099:32583029,16857758 -) -(1,14100:6630773,17523936:25952256,404226,101187 -h1,14100:6630773,17523936:0,0,0 -g1,14100:6946919,17523936 -g1,14100:7263065,17523936 -g1,14100:14850562,17523936 -g1,14100:15482854,17523936 -g1,14100:17379729,17523936 -h1,14100:17695875,17523936:0,0,0 -k1,14100:32583029,17523936:14887154 -g1,14100:32583029,17523936 -) -(1,14101:6630773,18190114:25952256,404226,107478 -h1,14101:6630773,18190114:0,0,0 -g1,14101:6946919,18190114 -g1,14101:7263065,18190114 -g1,14101:7579211,18190114 -g1,14101:7895357,18190114 -g1,14101:11372959,18190114 -h1,14101:11689105,18190114:0,0,0 -k1,14101:32583029,18190114:20893924 -g1,14101:32583029,18190114 -) -(1,14102:6630773,18856292:25952256,404226,101187 -h1,14102:6630773,18856292:0,0,0 -g1,14102:6946919,18856292 -g1,14102:7263065,18856292 -g1,14102:7579211,18856292 -g1,14102:7895357,18856292 -g1,14102:11689106,18856292 -g1,14102:12637544,18856292 -h1,14102:14850564,18856292:0,0,0 -k1,14102:32583028,18856292:17732464 -g1,14102:32583028,18856292 -) -(1,14103:6630773,19522470:25952256,404226,101187 -h1,14103:6630773,19522470:0,0,0 -g1,14103:9159939,19522470 -g1,14103:10108377,19522470 -g1,14103:12953689,19522470 -g1,14103:13585981,19522470 -g1,14103:15166710,19522470 -g1,14103:15799002,19522470 -g1,14103:16431294,19522470 -g1,14103:17695877,19522470 -g1,14103:21173480,19522470 -g1,14103:21805772,19522470 -k1,14103:21805772,19522470:0 -h1,14103:26231812,19522470:0,0,0 -k1,14103:32583029,19522470:6351217 -g1,14103:32583029,19522470 -) -] -) -g1,14105:32583029,19623657 -g1,14105:6630773,19623657 -g1,14105:6630773,19623657 -g1,14105:32583029,19623657 -g1,14105:32583029,19623657 -) -h1,14105:6630773,19820265:0,0,0 -v1,14109:6630773,21535019:0,393216,0 -(1,14119:6630773,25847183:25952256,4705380,196608 -g1,14119:6630773,25847183 -g1,14119:6630773,25847183 -g1,14119:6434165,25847183 -(1,14119:6434165,25847183:0,4705380,196608 -r1,14147:32779637,25847183:26345472,4901988,196608 -k1,14119:6434165,25847183:-26345472 -) -(1,14119:6434165,25847183:26345472,4705380,196608 -[1,14119:6630773,25847183:25952256,4508772,0 -(1,14111:6630773,21742637:25952256,404226,107478 -(1,14110:6630773,21742637:0,0,0 -g1,14110:6630773,21742637 -g1,14110:6630773,21742637 -g1,14110:6303093,21742637 -(1,14110:6303093,21742637:0,0,0 -) -g1,14110:6630773,21742637 -) -k1,14111:6630773,21742637:0 -g1,14111:10424522,21742637 -g1,14111:11056814,21742637 -g1,14111:13585980,21742637 -g1,14111:15482855,21742637 -g1,14111:16115147,21742637 -g1,14111:18012022,21742637 -g1,14111:18644314,21742637 -g1,14111:19276606,21742637 -k1,14111:19276606,21742637:0 -h1,14111:20541189,21742637:0,0,0 -k1,14111:32583029,21742637:12041840 -g1,14111:32583029,21742637 -) -(1,14112:6630773,22408815:25952256,410518,101187 -h1,14112:6630773,22408815:0,0,0 -g1,14112:6946919,22408815 -g1,14112:7263065,22408815 -g1,14112:7579211,22408815 -g1,14112:7895357,22408815 -g1,14112:8211503,22408815 -g1,14112:8527649,22408815 -g1,14112:8843795,22408815 -g1,14112:9159941,22408815 -g1,14112:9476087,22408815 -g1,14112:9792233,22408815 -g1,14112:10108379,22408815 -g1,14112:10424525,22408815 -g1,14112:10740671,22408815 -g1,14112:11056817,22408815 -g1,14112:11372963,22408815 -g1,14112:11689109,22408815 -g1,14112:12005255,22408815 -g1,14112:12321401,22408815 -g1,14112:12637547,22408815 -g1,14112:12953693,22408815 -g1,14112:13269839,22408815 -g1,14112:13585985,22408815 -g1,14112:13902131,22408815 -g1,14112:14218277,22408815 -g1,14112:14534423,22408815 -g1,14112:14850569,22408815 -g1,14112:16747443,22408815 -g1,14112:17379735,22408815 -g1,14112:21805775,22408815 -h1,14112:22121921,22408815:0,0,0 -k1,14112:32583029,22408815:10461108 -g1,14112:32583029,22408815 -) -(1,14113:6630773,23074993:25952256,404226,107478 -h1,14113:6630773,23074993:0,0,0 -g1,14113:6946919,23074993 -g1,14113:7263065,23074993 -g1,14113:11372959,23074993 -h1,14113:11689105,23074993:0,0,0 -k1,14113:32583029,23074993:20893924 -g1,14113:32583029,23074993 -) -(1,14114:6630773,23741171:25952256,404226,107478 -h1,14114:6630773,23741171:0,0,0 -g1,14114:6946919,23741171 -g1,14114:7263065,23741171 -g1,14114:12005251,23741171 -g1,14114:12637543,23741171 -k1,14114:12637543,23741171:0 -h1,14114:15166709,23741171:0,0,0 -k1,14114:32583029,23741171:17416320 -g1,14114:32583029,23741171 -) -(1,14115:6630773,24407349:25952256,404226,101187 -h1,14115:6630773,24407349:0,0,0 -g1,14115:6946919,24407349 -g1,14115:7263065,24407349 -g1,14115:7579211,24407349 -g1,14115:7895357,24407349 -g1,14115:8211503,24407349 -g1,14115:8527649,24407349 -g1,14115:8843795,24407349 -g1,14115:9159941,24407349 -g1,14115:9476087,24407349 -g1,14115:9792233,24407349 -g1,14115:10108379,24407349 -g1,14115:10424525,24407349 -g1,14115:12321400,24407349 -g1,14115:12953692,24407349 -g1,14115:13902130,24407349 -g1,14115:14534422,24407349 -g1,14115:15166714,24407349 -g1,14115:16115152,24407349 -g1,14115:18012026,24407349 -g1,14115:18644318,24407349 -k1,14115:18644318,24407349:0 -h1,14115:22438066,24407349:0,0,0 -k1,14115:32583029,24407349:10144963 -g1,14115:32583029,24407349 -) -(1,14116:6630773,25073527:25952256,404226,101187 -h1,14116:6630773,25073527:0,0,0 -g1,14116:6946919,25073527 -g1,14116:7263065,25073527 -g1,14116:7579211,25073527 -g1,14116:7895357,25073527 -g1,14116:8211503,25073527 -g1,14116:8527649,25073527 -g1,14116:8843795,25073527 -g1,14116:9159941,25073527 -g1,14116:9476087,25073527 -g1,14116:9792233,25073527 -g1,14116:10108379,25073527 -g1,14116:10424525,25073527 -g1,14116:13269836,25073527 -g1,14116:13902128,25073527 -k1,14116:13902128,25073527:0 -h1,14116:15166712,25073527:0,0,0 -k1,14116:32583028,25073527:17416316 -g1,14116:32583028,25073527 -) -(1,14117:6630773,25739705:25952256,404226,107478 -h1,14117:6630773,25739705:0,0,0 -g1,14117:6946919,25739705 -g1,14117:7263065,25739705 -g1,14117:7579211,25739705 -g1,14117:7895357,25739705 -g1,14117:8211503,25739705 -g1,14117:8527649,25739705 -g1,14117:8843795,25739705 -g1,14117:9159941,25739705 -g1,14117:9476087,25739705 -g1,14117:9792233,25739705 -g1,14117:10108379,25739705 -g1,14117:10424525,25739705 -g1,14117:12321399,25739705 -g1,14117:12953691,25739705 -g1,14117:16115148,25739705 -g1,14117:18012022,25739705 -g1,14117:18644314,25739705 -h1,14117:21489625,25739705:0,0,0 -k1,14117:32583029,25739705:11093404 -g1,14117:32583029,25739705 -) -] -) -g1,14119:32583029,25847183 -g1,14119:6630773,25847183 -g1,14119:6630773,25847183 -g1,14119:32583029,25847183 -g1,14119:32583029,25847183 -) -h1,14119:6630773,26043791:0,0,0 -(1,14122:6630773,35717281:25952256,9083666,0 -k1,14122:10523651,35717281:3892878 -h1,14121:10523651,35717281:0,0,0 -(1,14121:10523651,35717281:18166500,9083666,0 -(1,14121:10523651,35717281:18167376,9083688,0 -(1,14121:10523651,35717281:18167376,9083688,0 -(1,14121:10523651,35717281:0,9083688,0 -(1,14121:10523651,35717281:0,14208860,0 -(1,14121:10523651,35717281:28417720,14208860,0 -) -k1,14121:10523651,35717281:-28417720 -) -) -g1,14121:28691027,35717281 -) -) -) -g1,14122:28690151,35717281 -k1,14122:32583029,35717281:3892878 -) -(1,14129:6630773,36558769:25952256,513147,126483 -h1,14128:6630773,36558769:983040,0,0 -k1,14128:8417896,36558769:176248 -k1,14128:9613229,36558769:176248 -k1,14128:12030808,36558769:176248 -k1,14128:14868474,36558769:176249 -k1,14128:15913074,36558769:176248 -k1,14128:17286665,36558769:176248 -k1,14128:18481998,36558769:176248 -k1,14128:21225291,36558769:176248 -k1,14128:23735276,36558769:176248 -k1,14128:24570816,36558769:176248 -k1,14128:25766149,36558769:176248 -k1,14128:27595871,36558769:176249 -k1,14128:29049416,36558769:176248 -k1,14128:29911826,36558769:176248 -k1,14128:30858777,36558769:176248 -k1,14128:32583029,36558769:0 -) -(1,14129:6630773,37400257:25952256,513147,134348 -k1,14128:7469459,37400257:233133 -k1,14128:10578968,37400257:233134 -k1,14128:11746644,37400257:233133 -k1,14128:13794469,37400257:233133 -k1,14128:14679031,37400257:233134 -k1,14128:15931249,37400257:233133 -k1,14128:19902556,37400257:233133 -k1,14128:20787118,37400257:233134 -k1,14128:22819214,37400257:233133 -k1,14128:24319813,37400257:233133 -k1,14128:24908807,37400257:233134 -k1,14128:27162415,37400257:233133 -k1,14128:28054840,37400257:233133 -k1,14128:29307059,37400257:233134 -k1,14128:31132062,37400257:233133 -k1,14128:32583029,37400257:0 -) -(1,14129:6630773,38241745:25952256,513147,126483 -k1,14128:7527923,38241745:291597 -k1,14128:8754062,38241745:291596 -k1,14128:10064744,38241745:291597 -k1,14128:12300138,38241745:291596 -k1,14128:13251027,38241745:291597 -k1,14128:14561709,38241745:291597 -k1,14128:16577557,38241745:291596 -k1,14128:17474707,38241745:291597 -k1,14128:20121012,38241745:291596 -k1,14128:21665002,38241745:291597 -k1,14128:23800782,38241745:291597 -k1,14128:24778540,38241745:291596 -k1,14128:26450325,38241745:291597 -k1,14128:27733481,38241745:291596 -k1,14128:29044163,38241745:291597 -k1,14128:30989232,38241745:291596 -k1,14128:31966991,38241745:291597 -k1,14128:32583029,38241745:0 -) -(1,14129:6630773,39083233:25952256,505283,134348 -k1,14128:7945285,39083233:295427 -k1,14128:9832581,39083233:295426 -k1,14128:11578975,39083233:295427 -k1,14128:12479955,39083233:295427 -k1,14128:13966826,39083233:295426 -k1,14128:14867806,39083233:295427 -k1,14128:18020603,39083233:295427 -k1,14128:19335114,39083233:295426 -k1,14128:23026617,39083233:295427 -k1,14128:25342518,39083233:295426 -k1,14128:26253983,39083233:295427 -k1,14128:27568495,39083233:295427 -k1,14128:29455791,39083233:295426 -k1,14128:31202185,39083233:295427 -k1,14128:32583029,39083233:0 -) -(1,14129:6630773,39924721:25952256,513147,134348 -k1,14128:8489647,39924721:182463 -k1,14128:11358431,39924721:182463 -k1,14128:14202311,39924721:182463 -k1,14128:16375758,39924721:182463 -k1,14128:17888602,39924721:182463 -k1,14128:18426925,39924721:182463 -k1,14128:19892584,39924721:182464 -k1,14128:23147375,39924721:182463 -k1,14128:23981266,39924721:182463 -k1,14128:26992262,39924721:182463 -k1,14128:28279007,39924721:182463 -k1,14128:31304422,39924721:182463 -k1,14128:32583029,39924721:0 -) -(1,14129:6630773,40766209:25952256,513147,134348 -k1,14128:8151426,40766209:253187 -k1,14128:9423699,40766209:253188 -k1,14128:12579476,40766209:253187 -k1,14128:13491955,40766209:253187 -k1,14128:16464232,40766209:253188 -k1,14128:19928028,40766209:253187 -k1,14128:20809050,40766209:253187 -k1,14128:22265479,40766209:253188 -k1,14128:25353753,40766209:253187 -k1,14128:26258368,40766209:253187 -k1,14128:28172238,40766209:253188 -k1,14128:29196128,40766209:253187 -k1,14128:32583029,40766209:0 -) -(1,14129:6630773,41607697:25952256,513147,134348 -k1,14128:10056743,41607697:267790 -k1,14128:12651716,41607697:267790 -k1,14128:13578799,41607697:267791 -k1,14128:16913019,41607697:267790 -k1,14128:17946925,41607697:267790 -k1,14128:19233800,41607697:267790 -k1,14128:20890954,41607697:267791 -k1,14128:22426210,41607697:267790 -k1,14128:23049860,41607697:267790 -k1,14128:24707013,41607697:267790 -k1,14128:27024770,41607697:267791 -k1,14128:28160912,41607697:267790 -k1,14128:29825274,41607697:267790 -k1,14128:32583029,41607697:0 -) -(1,14129:6630773,42449185:25952256,505283,134348 -k1,14128:8809534,42449185:168116 -k1,14128:11391996,42449185:168116 -k1,14128:12211541,42449185:168117 -k1,14128:13398742,42449185:168116 -k1,14128:15909115,42449185:168116 -k1,14128:19251795,42449185:168116 -k1,14128:21429901,42449185:168117 -(1,14128:21429901,42449185:0,452978,115847 -r1,14147:24953573,42449185:3523672,568825,115847 -k1,14128:21429901,42449185:-3523672 -) -(1,14128:21429901,42449185:3523672,452978,115847 -k1,14128:21429901,42449185:3277 -h1,14128:24950296,42449185:0,411205,112570 -) -k1,14128:25121689,42449185:168116 -k1,14128:26521882,42449185:168116 -k1,14128:28968685,42449185:168116 -h1,14128:29939273,42449185:0,0,0 -k1,14128:30107390,42449185:168117 -k1,14128:31084876,42449185:168116 -k1,14128:32583029,42449185:0 -) -(1,14129:6630773,43290673:25952256,505283,95026 -h1,14128:7826150,43290673:0,0,0 -k1,14129:32583030,43290673:24376116 -g1,14129:32583030,43290673 -) -v1,14131:6630773,44481139:0,393216,0 -(1,14147:6630773,45468705:25952256,1380782,196608 -g1,14147:6630773,45468705 -g1,14147:6630773,45468705 -g1,14147:6434165,45468705 -(1,14147:6434165,45468705:0,1380782,196608 -r1,14147:32779637,45468705:26345472,1577390,196608 -k1,14147:6434165,45468705:-26345472 -) -(1,14147:6434165,45468705:26345472,1380782,196608 -[1,14147:6630773,45468705:25952256,1184174,0 -(1,14133:6630773,44695049:25952256,410518,107478 -(1,14132:6630773,44695049:0,0,0 -g1,14132:6630773,44695049 -g1,14132:6630773,44695049 -g1,14132:6303093,44695049 -(1,14132:6303093,44695049:0,0,0 -) -g1,14132:6630773,44695049 -) -g1,14133:8843793,44695049 -g1,14133:9792231,44695049 -g1,14133:13585980,44695049 -g1,14133:14218272,44695049 -g1,14133:16747438,44695049 -g1,14133:18644313,44695049 -g1,14133:19276605,44695049 -g1,14133:21173480,44695049 -g1,14133:21805772,44695049 -g1,14133:22438064,44695049 -g1,14133:24018793,44695049 -g1,14133:25915667,44695049 -g1,14133:26547959,44695049 -g1,14133:30973999,44695049 -h1,14133:31290145,44695049:0,0,0 -k1,14133:32583029,44695049:1292884 -g1,14133:32583029,44695049 -) -(1,14134:6630773,45361227:25952256,404226,107478 -h1,14134:6630773,45361227:0,0,0 -g1,14134:6946919,45361227 -g1,14134:7263065,45361227 -k1,14134:7263065,45361227:0 -h1,14134:11056813,45361227:0,0,0 -k1,14134:32583029,45361227:21526216 -g1,14134:32583029,45361227 -) -] -) -g1,14147:32583029,45468705 -g1,14147:6630773,45468705 -g1,14147:6630773,45468705 -g1,14147:32583029,45468705 -g1,14147:32583029,45468705 -) -] -(1,14147:32583029,45706769:0,0,0 -g1,14147:32583029,45706769 -) -) -] -(1,14147:6630773,47279633:25952256,0,0 -h1,14147:6630773,47279633:25952256,0,0 -) -] -(1,14147:4262630,4025873:0,0,0 -[1,14147:-473656,4025873:0,0,0 -(1,14147:-473656,-710413:0,0,0 -(1,14147:-473656,-710413:0,0,0 -g1,14147:-473656,-710413 -) -g1,14147:-473656,-710413 -) -] -) -] -!23491 -}270 -Input:2141:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2142:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2143:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2144:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2145:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!472 -{271 -[1,14188:4262630,47279633:28320399,43253760,0 -(1,14188:4262630,4025873:0,0,0 -[1,14188:-473656,4025873:0,0,0 -(1,14188:-473656,-710413:0,0,0 -(1,14188:-473656,-644877:0,0,0 -k1,14188:-473656,-644877:-65536 -) -(1,14188:-473656,4736287:0,0,0 -k1,14188:-473656,4736287:5209943 -) -g1,14188:-473656,-710413 -) -] -) -[1,14188:6630773,47279633:25952256,43253760,0 -[1,14188:6630773,4812305:25952256,786432,0 -(1,14188:6630773,4812305:25952256,513147,134348 -(1,14188:6630773,4812305:25952256,513147,134348 -g1,14188:3078558,4812305 -[1,14188:3078558,4812305:0,0,0 -(1,14188:3078558,2439708:0,1703936,0 -k1,14188:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,14188:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,14188:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,14188:3078558,4812305:0,0,0 -(1,14188:3078558,2439708:0,1703936,0 -g1,14188:29030814,2439708 -g1,14188:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,14188:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,14188:37855564,2439708:1179648,16384,0 -) -) -k1,14188:3078556,2439708:-34777008 -) -] -[1,14188:3078558,4812305:0,0,0 -(1,14188:3078558,49800853:0,16384,2228224 -k1,14188:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,14188:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,14188:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,14188:3078558,4812305:0,0,0 -(1,14188:3078558,49800853:0,16384,2228224 -g1,14188:29030814,49800853 -g1,14188:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,14188:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,14188:37855564,49800853:1179648,16384,0 -) -) -k1,14188:3078556,49800853:-34777008 -) -] -g1,14188:6630773,4812305 -k1,14188:25712890,4812305:17886740 -g1,14188:29057847,4812305 -g1,14188:29873114,4812305 -) -) -] -[1,14188:6630773,45706769:25952256,40108032,0 -(1,14188:6630773,45706769:25952256,40108032,0 -(1,14188:6630773,45706769:0,0,0 -g1,14188:6630773,45706769 -) -[1,14188:6630773,45706769:25952256,40108032,0 -v1,14147:6630773,6254097:0,393216,0 -(1,14147:6630773,13224682:25952256,7363801,196608 -g1,14147:6630773,13224682 -g1,14147:6630773,13224682 -g1,14147:6434165,13224682 -(1,14147:6434165,13224682:0,7363801,196608 -r1,14188:32779637,13224682:26345472,7560409,196608 -k1,14147:6434165,13224682:-26345472 -) -(1,14147:6434165,13224682:26345472,7363801,196608 -[1,14147:6630773,13224682:25952256,7167193,0 -(1,14135:6630773,6461715:25952256,404226,101187 -h1,14135:6630773,6461715:0,0,0 -g1,14135:9159939,6461715 -g1,14135:10108377,6461715 -g1,14135:12321397,6461715 -h1,14135:12637543,6461715:0,0,0 -k1,14135:32583029,6461715:19945486 -g1,14135:32583029,6461715 -) -(1,14136:6630773,7127893:25952256,404226,101187 -h1,14136:6630773,7127893:0,0,0 -g1,14136:6946919,7127893 -g1,14136:7263065,7127893 -g1,14136:13902125,7127893 -g1,14136:14534417,7127893 -g1,14136:16747438,7127893 -g1,14136:18644313,7127893 -g1,14136:20225042,7127893 -g1,14136:20857334,7127893 -g1,14136:22754209,7127893 -g1,14136:24334937,7127893 -h1,14136:24651083,7127893:0,0,0 -k1,14136:32583029,7127893:7931946 -g1,14136:32583029,7127893 -) -(1,14137:6630773,7794071:25952256,404226,101187 -h1,14137:6630773,7794071:0,0,0 -g1,14137:6946919,7794071 -g1,14137:7263065,7794071 -g1,14137:9476086,7794071 -g1,14137:10108378,7794071 -g1,14137:12005253,7794071 -g1,14137:12637545,7794071 -g1,14137:13269837,7794071 -g1,14137:15166712,7794071 -h1,14137:15482858,7794071:0,0,0 -k1,14137:32583030,7794071:17100172 -g1,14137:32583030,7794071 -) -(1,14138:6630773,8460249:25952256,404226,107478 -h1,14138:6630773,8460249:0,0,0 -g1,14138:6946919,8460249 -g1,14138:7263065,8460249 -g1,14138:15798999,8460249 -g1,14138:16431291,8460249 -g1,14138:18960457,8460249 -h1,14138:19276603,8460249:0,0,0 -k1,14138:32583029,8460249:13306426 -g1,14138:32583029,8460249 -) -(1,14139:6630773,9126427:25952256,404226,101187 -h1,14139:6630773,9126427:0,0,0 -g1,14139:6946919,9126427 -g1,14139:7263065,9126427 -g1,14139:11056814,9126427 -g1,14139:11689106,9126427 -g1,14139:17695874,9126427 -g1,14139:18328166,9126427 -h1,14139:18960458,9126427:0,0,0 -k1,14139:32583029,9126427:13622571 -g1,14139:32583029,9126427 -) -(1,14140:6630773,9792605:25952256,404226,101187 -h1,14140:6630773,9792605:0,0,0 -g1,14140:8843793,9792605 -h1,14140:9159939,9792605:0,0,0 -k1,14140:32583029,9792605:23423090 -g1,14140:32583029,9792605 -) -(1,14141:6630773,10458783:25952256,404226,107478 -h1,14141:6630773,10458783:0,0,0 -g1,14141:6946919,10458783 -g1,14141:7263065,10458783 -g1,14141:11056814,10458783 -g1,14141:11689106,10458783 -g1,14141:13269835,10458783 -g1,14141:13902127,10458783 -g1,14141:14534419,10458783 -g1,14141:15799002,10458783 -g1,14141:17695876,10458783 -g1,14141:18328168,10458783 -g1,14141:23070354,10458783 -g1,14141:26231811,10458783 -g1,14141:26864103,10458783 -k1,14141:26864103,10458783:0 -h1,14141:28128687,10458783:0,0,0 -k1,14141:32583029,10458783:4454342 -g1,14141:32583029,10458783 -) -(1,14142:6630773,11124961:25952256,404226,107478 -h1,14142:6630773,11124961:0,0,0 -g1,14142:6946919,11124961 -g1,14142:7263065,11124961 -g1,14142:7579211,11124961 -g1,14142:7895357,11124961 -g1,14142:8211503,11124961 -g1,14142:8527649,11124961 -g1,14142:8843795,11124961 -g1,14142:9159941,11124961 -g1,14142:9476087,11124961 -g1,14142:9792233,11124961 -g1,14142:10108379,11124961 -g1,14142:10424525,11124961 -g1,14142:12321399,11124961 -g1,14142:12953691,11124961 -g1,14142:16115148,11124961 -g1,14142:18012022,11124961 -g1,14142:18644314,11124961 -g1,14142:21805771,11124961 -h1,14142:22121917,11124961:0,0,0 -k1,14142:32583029,11124961:10461112 -g1,14142:32583029,11124961 -) -(1,14143:6630773,11791139:25952256,410518,107478 -h1,14143:6630773,11791139:0,0,0 -g1,14143:6946919,11791139 -g1,14143:7263065,11791139 -g1,14143:11689105,11791139 -g1,14143:12321397,11791139 -g1,14143:14850563,11791139 -g1,14143:16431292,11791139 -g1,14143:17063584,11791139 -g1,14143:18328167,11791139 -g1,14143:20225041,11791139 -g1,14143:20857333,11791139 -k1,14143:20857333,11791139:0 -h1,14143:23386499,11791139:0,0,0 -k1,14143:32583029,11791139:9196530 -g1,14143:32583029,11791139 -) -(1,14144:6630773,12457317:25952256,404226,101187 -h1,14144:6630773,12457317:0,0,0 -g1,14144:6946919,12457317 -g1,14144:7263065,12457317 -g1,14144:7579211,12457317 -g1,14144:7895357,12457317 -g1,14144:8211503,12457317 -g1,14144:8527649,12457317 -g1,14144:8843795,12457317 -g1,14144:9159941,12457317 -g1,14144:9476087,12457317 -g1,14144:9792233,12457317 -g1,14144:10108379,12457317 -g1,14144:11689108,12457317 -g1,14144:12321400,12457317 -g1,14144:13902129,12457317 -g1,14144:15482858,12457317 -g1,14144:16115150,12457317 -g1,14144:17695879,12457317 -g1,14144:19276608,12457317 -g1,14144:19908900,12457317 -g1,14144:21173483,12457317 -g1,14144:22754212,12457317 -g1,14144:23386504,12457317 -k1,14144:23386504,12457317:0 -h1,14144:24334941,12457317:0,0,0 -k1,14144:32583029,12457317:8248088 -g1,14144:32583029,12457317 -) -(1,14145:6630773,13123495:25952256,404226,101187 -h1,14145:6630773,13123495:0,0,0 -g1,14145:6946919,13123495 -g1,14145:7263065,13123495 -g1,14145:7579211,13123495 -g1,14145:7895357,13123495 -g1,14145:8211503,13123495 -g1,14145:8527649,13123495 -g1,14145:8843795,13123495 -g1,14145:9159941,13123495 -g1,14145:9476087,13123495 -g1,14145:9792233,13123495 -g1,14145:10108379,13123495 -g1,14145:12953690,13123495 -g1,14145:13585982,13123495 -h1,14145:16431293,13123495:0,0,0 -k1,14145:32583029,13123495:16151736 -g1,14145:32583029,13123495 -) -] -) -g1,14147:32583029,13224682 -g1,14147:6630773,13224682 -g1,14147:6630773,13224682 -g1,14147:32583029,13224682 -g1,14147:32583029,13224682 -) -h1,14147:6630773,13421290:0,0,0 -(1,14150:6630773,23094780:25952256,9083666,0 -k1,14150:10523651,23094780:3892878 -h1,14149:10523651,23094780:0,0,0 -(1,14149:10523651,23094780:18166500,9083666,0 -(1,14149:10523651,23094780:18167376,9083688,0 -(1,14149:10523651,23094780:18167376,9083688,0 -(1,14149:10523651,23094780:0,9083688,0 -(1,14149:10523651,23094780:0,14208860,0 -(1,14149:10523651,23094780:28417720,14208860,0 -) -k1,14149:10523651,23094780:-28417720 -) -) -g1,14149:28691027,23094780 -) -) -) -g1,14150:28690151,23094780 -k1,14150:32583029,23094780:3892878 -) -(1,14158:6630773,23936268:25952256,505283,126483 -h1,14157:6630773,23936268:983040,0,0 -k1,14157:11056110,23936268:347032 -(1,14157:11056110,23936268:0,452978,122846 -r1,14188:14931494,23936268:3875384,575824,122846 -k1,14157:11056110,23936268:-3875384 -) -(1,14157:11056110,23936268:3875384,452978,122846 -k1,14157:11056110,23936268:3277 -h1,14157:14928217,23936268:0,411205,112570 -) -k1,14157:15278526,23936268:347032 -k1,14157:17552316,23936268:347032 -k1,14157:19682583,23936268:347032 -k1,14157:21175839,23936268:347031 -(1,14157:21175839,23936268:0,452978,122846 -r1,14188:25402935,23936268:4227096,575824,122846 -k1,14157:21175839,23936268:-4227096 -) -(1,14157:21175839,23936268:4227096,452978,122846 -k1,14157:21175839,23936268:3277 -h1,14157:25399658,23936268:0,411205,112570 -) -k1,14157:25749967,23936268:347032 -k1,14157:27288444,23936268:347032 -(1,14157:27288444,23936268:0,452978,122846 -r1,14188:31163828,23936268:3875384,575824,122846 -k1,14157:27288444,23936268:-3875384 -) -(1,14157:27288444,23936268:3875384,452978,122846 -k1,14157:27288444,23936268:3277 -h1,14157:31160551,23936268:0,411205,112570 -) -k1,14157:31510860,23936268:347032 -k1,14157:32583029,23936268:0 -) -(1,14158:6630773,24777756:25952256,513147,134348 -k1,14157:9351844,24777756:319832 -k1,14157:10027536,24777756:319832 -k1,14157:11340894,24777756:319832 -k1,14157:12320018,24777756:319832 -k1,14157:14265797,24777756:319832 -k1,14157:17535404,24777756:319832 -k1,14157:20318734,24777756:319832 -k1,14157:22506342,24777756:319832 -(1,14157:22506342,24777756:0,452978,122846 -r1,14188:23919743,24777756:1413401,575824,122846 -k1,14157:22506342,24777756:-1413401 -) -(1,14157:22506342,24777756:1413401,452978,122846 -k1,14157:22506342,24777756:3277 -h1,14157:23916466,24777756:0,411205,112570 -) -k1,14157:24239575,24777756:319832 -k1,14157:25507058,24777756:319832 -k1,14157:27685491,24777756:319832 -k1,14157:29386167,24777756:319832 -k1,14157:31233643,24777756:319832 -k1,14158:32583029,24777756:0 -) -(1,14158:6630773,25619244:25952256,513147,134348 -k1,14157:9038838,25619244:392178 -k1,14157:10043779,25619244:392179 -k1,14157:11455042,25619244:392178 -k1,14157:14420163,25619244:392178 -k1,14157:15471633,25619244:392178 -k1,14157:17981936,25619244:392179 -k1,14157:19025542,25619244:392178 -k1,14157:22686656,25619244:392178 -k1,14157:25008214,25619244:392178 -k1,14157:26419478,25619244:392179 -k1,14157:28599478,25619244:392178 -k1,14157:30847636,25619244:392178 -k1,14157:32583029,25619244:0 -) -(1,14158:6630773,26460732:25952256,513147,134348 -k1,14157:8541550,26460732:284830 -k1,14157:9509264,26460732:284829 -k1,14157:10555622,26460732:284830 -k1,14157:14223419,26460732:284829 -k1,14157:16210219,26460732:284830 -k1,14157:18784877,26460732:284830 -k1,14157:20337172,26460732:284829 -k1,14157:22583495,26460732:284830 -k1,14157:24249169,26460732:284830 -k1,14157:27523750,26460732:284829 -k1,14157:28340077,26460732:284830 -k1,14157:29311068,26460732:284829 -k1,14157:31896867,26460732:284830 -k1,14158:32583029,26460732:0 -) -(1,14158:6630773,27302220:25952256,505283,134348 -(1,14157:6630773,27302220:0,452978,115847 -r1,14188:13319851,27302220:6689078,568825,115847 -k1,14157:6630773,27302220:-6689078 -) -(1,14157:6630773,27302220:6689078,452978,115847 -k1,14157:6630773,27302220:3277 -h1,14157:13316574,27302220:0,411205,112570 -) -k1,14157:13606438,27302220:286587 -k1,14157:15286977,27302220:286588 -k1,14157:17898126,27302220:286587 -k1,14157:18836142,27302220:286588 -k1,14157:20141814,27302220:286587 -k1,14157:22389895,27302220:286588 -k1,14157:23748651,27302220:286587 -k1,14157:26588522,27302220:286588 -k1,14157:27561271,27302220:286587 -k1,14157:28203719,27302220:286588 -k1,14157:31629480,27302220:286587 -k1,14157:32583029,27302220:0 -) -(1,14158:6630773,28143708:25952256,513147,126483 -k1,14157:8535343,28143708:243888 -k1,14157:9549933,28143708:243887 -k1,14157:12455238,28143708:243888 -k1,14157:13983631,28143708:243887 -k1,14157:15755163,28143708:243888 -k1,14157:17171489,28143708:243887 -k1,14157:20000772,28143708:243888 -k1,14157:20896088,28143708:243888 -k1,14157:22159060,28143708:243887 -k1,14157:23853915,28143708:243888 -k1,14157:25294489,28143708:243887 -k1,14157:28123772,28143708:243888 -k1,14157:29359219,28143708:243887 -k1,14157:31015408,28143708:243888 -k1,14157:32583029,28143708:0 -) -(1,14158:6630773,28985196:25952256,513147,134348 -k1,14157:8246302,28985196:268109 -k1,14157:10001492,28985196:268178 -k1,14157:13430470,28985196:268177 -k1,14157:14966114,28985196:268178 -k1,14157:17195785,28985196:268178 -k1,14157:18655408,28985196:268178 -k1,14157:20889011,28985196:268178 -k1,14157:21808617,28985196:268178 -k1,14157:23095880,28985196:268178 -k1,14157:24641355,28985196:268178 -k1,14157:25595695,28985196:268178 -k1,14157:26219732,28985196:268177 -k1,14157:27771105,28985196:268178 -k1,14157:29770744,28985196:268178 -k1,14157:31235609,28985196:268178 -k1,14157:32583029,28985196:0 -) -(1,14158:6630773,29826684:25952256,505283,134348 -g1,14157:9415397,29826684 -g1,14157:11127852,29826684 -g1,14157:12802296,29826684 -g1,14157:13357385,29826684 -g1,14157:17286923,29826684 -k1,14158:32583029,29826684:11332489 -g1,14158:32583029,29826684 -) -v1,14160:6630773,31017150:0,393216,0 -(1,14177:6630773,39998852:25952256,9374918,196608 -g1,14177:6630773,39998852 -g1,14177:6630773,39998852 -g1,14177:6434165,39998852 -(1,14177:6434165,39998852:0,9374918,196608 -r1,14188:32779637,39998852:26345472,9571526,196608 -k1,14177:6434165,39998852:-26345472 -) -(1,14177:6434165,39998852:26345472,9374918,196608 -[1,14177:6630773,39998852:25952256,9178310,0 -(1,14162:6630773,31231060:25952256,410518,6290 -(1,14161:6630773,31231060:0,0,0 -g1,14161:6630773,31231060 -g1,14161:6630773,31231060 -g1,14161:6303093,31231060 -(1,14161:6303093,31231060:0,0,0 -) -g1,14161:6630773,31231060 -) -g1,14162:10108376,31231060 -k1,14162:10108376,31231060:0 -h1,14162:10740668,31231060:0,0,0 -k1,14162:32583028,31231060:21842360 -g1,14162:32583028,31231060 -) -(1,14163:6630773,31897238:25952256,410518,107478 -h1,14163:6630773,31897238:0,0,0 -g1,14163:6946919,31897238 -g1,14163:7263065,31897238 -g1,14163:14534416,31897238 -g1,14163:20857330,31897238 -g1,14163:23386496,31897238 -g1,14163:24018788,31897238 -g1,14163:27496391,31897238 -g1,14163:30341702,31897238 -g1,14163:30973994,31897238 -h1,14163:32554723,31897238:0,0,0 -k1,14163:32583029,31897238:28306 -g1,14163:32583029,31897238 -) -(1,14164:6630773,32563416:25952256,410518,107478 -h1,14164:6630773,32563416:0,0,0 -g1,14164:10740667,32563416 -g1,14164:11689105,32563416 -k1,14164:11689105,32563416:0 -h1,14164:21173475,32563416:0,0,0 -k1,14164:32583029,32563416:11409554 -g1,14164:32583029,32563416 -) -(1,14165:6630773,33229594:25952256,410518,6290 -h1,14165:6630773,33229594:0,0,0 -g1,14165:10108376,33229594 -k1,14165:10108376,33229594:0 -h1,14165:10740668,33229594:0,0,0 -k1,14165:32583028,33229594:21842360 -g1,14165:32583028,33229594 -) -(1,14166:6630773,33895772:25952256,410518,107478 -h1,14166:6630773,33895772:0,0,0 -g1,14166:6946919,33895772 -g1,14166:7263065,33895772 -g1,14166:14534416,33895772 -g1,14166:19276602,33895772 -g1,14166:21805768,33895772 -g1,14166:22438060,33895772 -g1,14166:25915663,33895772 -g1,14166:28760974,33895772 -g1,14166:29393266,33895772 -h1,14166:30973995,33895772:0,0,0 -k1,14166:32583029,33895772:1609034 -g1,14166:32583029,33895772 -) -(1,14167:6630773,34561950:25952256,410518,107478 -h1,14167:6630773,34561950:0,0,0 -g1,14167:9159939,34561950 -g1,14167:10108377,34561950 -k1,14167:10108377,34561950:0 -h1,14167:19592747,34561950:0,0,0 -k1,14167:32583029,34561950:12990282 -g1,14167:32583029,34561950 -) -(1,14168:6630773,35228128:25952256,404226,107478 -h1,14168:6630773,35228128:0,0,0 -g1,14168:9159939,35228128 -g1,14168:10108377,35228128 -g1,14168:12953689,35228128 -g1,14168:13585981,35228128 -g1,14168:15166711,35228128 -g1,14168:17063586,35228128 -g1,14168:17695878,35228128 -g1,14168:18328170,35228128 -g1,14168:20225045,35228128 -g1,14168:21805774,35228128 -g1,14168:24018794,35228128 -g1,14168:24651086,35228128 -g1,14168:26231816,35228128 -g1,14168:28128690,35228128 -g1,14168:28760982,35228128 -k1,14168:28760982,35228128:0 -h1,14168:30974004,35228128:0,0,0 -k1,14168:32583029,35228128:1609025 -g1,14168:32583029,35228128 -) -(1,14169:6630773,35894306:25952256,404226,107478 -h1,14169:6630773,35894306:0,0,0 -g1,14169:6946919,35894306 -g1,14169:7263065,35894306 -g1,14169:7579211,35894306 -g1,14169:7895357,35894306 -g1,14169:8211503,35894306 -g1,14169:8527649,35894306 -g1,14169:8843795,35894306 -g1,14169:9159941,35894306 -g1,14169:9476087,35894306 -g1,14169:9792233,35894306 -g1,14169:10108379,35894306 -g1,14169:10424525,35894306 -g1,14169:10740671,35894306 -g1,14169:11056817,35894306 -g1,14169:11372963,35894306 -g1,14169:11689109,35894306 -g1,14169:12005255,35894306 -g1,14169:12321401,35894306 -g1,14169:14218275,35894306 -g1,14169:14850567,35894306 -g1,14169:23702646,35894306 -g1,14169:24334938,35894306 -k1,14169:24334938,35894306:0 -h1,14169:28760978,35894306:0,0,0 -k1,14169:32583029,35894306:3822051 -g1,14169:32583029,35894306 -) -(1,14170:6630773,36560484:25952256,404226,107478 -h1,14170:6630773,36560484:0,0,0 -g1,14170:6946919,36560484 -g1,14170:7263065,36560484 -g1,14170:7579211,36560484 -g1,14170:7895357,36560484 -g1,14170:8211503,36560484 -g1,14170:8527649,36560484 -g1,14170:8843795,36560484 -g1,14170:9159941,36560484 -g1,14170:9476087,36560484 -g1,14170:9792233,36560484 -g1,14170:10108379,36560484 -g1,14170:10424525,36560484 -g1,14170:10740671,36560484 -g1,14170:11056817,36560484 -g1,14170:11372963,36560484 -g1,14170:11689109,36560484 -g1,14170:12005255,36560484 -g1,14170:12321401,36560484 -g1,14170:12637547,36560484 -g1,14170:12953693,36560484 -g1,14170:13269839,36560484 -g1,14170:13585985,36560484 -g1,14170:13902131,36560484 -g1,14170:14218277,36560484 -g1,14170:14534423,36560484 -g1,14170:14850569,36560484 -g1,14170:15166715,36560484 -g1,14170:15482861,36560484 -g1,14170:15799007,36560484 -g1,14170:16115153,36560484 -g1,14170:16431299,36560484 -g1,14170:23702650,36560484 -g1,14170:24334942,36560484 -h1,14170:27496399,36560484:0,0,0 -k1,14170:32583029,36560484:5086630 -g1,14170:32583029,36560484 -) -(1,14171:6630773,37226662:25952256,0,0 -h1,14171:6630773,37226662:0,0,0 -h1,14171:6630773,37226662:0,0,0 -k1,14171:32583029,37226662:25952256 -g1,14171:32583029,37226662 -) -(1,14172:6630773,37892840:25952256,404226,107478 -h1,14172:6630773,37892840:0,0,0 -g1,14172:9476084,37892840 -h1,14172:9792230,37892840:0,0,0 -k1,14172:32583030,37892840:22790800 -g1,14172:32583030,37892840 -) -(1,14173:6630773,38559018:25952256,404226,107478 -h1,14173:6630773,38559018:0,0,0 -g1,14173:6946919,38559018 -g1,14173:7263065,38559018 -g1,14173:12005251,38559018 -g1,14173:12637543,38559018 -k1,14173:12637543,38559018:0 -h1,14173:15166709,38559018:0,0,0 -k1,14173:32583029,38559018:17416320 -g1,14173:32583029,38559018 -) -(1,14174:6630773,39225196:25952256,404226,107478 -h1,14174:6630773,39225196:0,0,0 -k1,14174:6935848,39225196:305075 -k1,14174:7240923,39225196:305075 -k1,14174:7545998,39225196:305075 -k1,14174:7851073,39225196:305075 -k1,14174:8156148,39225196:305075 -k1,14174:8461223,39225196:305075 -k1,14174:8766298,39225196:305075 -k1,14174:9071373,39225196:305075 -k1,14174:9376448,39225196:305075 -k1,14174:9681523,39225196:305075 -k1,14174:9986598,39225196:305075 -k1,14174:10291673,39225196:305075 -k1,14174:12177476,39225196:305074 -k1,14174:12798697,39225196:305075 -k1,14174:13736064,39225196:305075 -k1,14174:14357285,39225196:305075 -k1,14174:14978506,39225196:305075 -k1,14174:15915873,39225196:305075 -k1,14174:17801676,39225196:305075 -k1,14174:18422897,39225196:305075 -k1,14174:20624846,39225196:305075 -k1,14174:23775232,39225196:305075 -k1,14174:24396453,39225196:305075 -k1,14174:26914548,39225196:305075 -k1,14174:29748788,39225196:305075 -k1,14174:30370009,39225196:305075 -k1,14174:30370009,39225196:0 -h1,14174:32583029,39225196:0,0,0 -k1,14174:32583029,39225196:0 -k1,14174:32583029,39225196:0 -) -(1,14175:6630773,39891374:25952256,404226,107478 -h1,14175:6630773,39891374:0,0,0 -g1,14175:6946919,39891374 -g1,14175:7263065,39891374 -g1,14175:7579211,39891374 -g1,14175:7895357,39891374 -g1,14175:8211503,39891374 -g1,14175:8527649,39891374 -g1,14175:8843795,39891374 -g1,14175:9159941,39891374 -g1,14175:9476087,39891374 -g1,14175:9792233,39891374 -g1,14175:10108379,39891374 -g1,14175:10424525,39891374 -g1,14175:10740671,39891374 -g1,14175:11056817,39891374 -g1,14175:11372963,39891374 -g1,14175:11689109,39891374 -g1,14175:13585983,39891374 -g1,14175:14218275,39891374 -g1,14175:17379732,39891374 -g1,14175:19276606,39891374 -g1,14175:19908898,39891374 -h1,14175:22754209,39891374:0,0,0 -k1,14175:32583029,39891374:9828820 -g1,14175:32583029,39891374 -) -] -) -g1,14177:32583029,39998852 -g1,14177:6630773,39998852 -g1,14177:6630773,39998852 -g1,14177:32583029,39998852 -g1,14177:32583029,39998852 -) -h1,14177:6630773,40195460:0,0,0 -] -(1,14188:32583029,45706769:0,0,0 -g1,14188:32583029,45706769 -) -) -] -(1,14188:6630773,47279633:25952256,0,0 -h1,14188:6630773,47279633:25952256,0,0 -) -] -(1,14188:4262630,4025873:0,0,0 -[1,14188:-473656,4025873:0,0,0 -(1,14188:-473656,-710413:0,0,0 -(1,14188:-473656,-710413:0,0,0 -g1,14188:-473656,-710413 -) -g1,14188:-473656,-710413 -) -] -) -] -!21988 -}271 -Input:2146:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2147:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2148:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2149:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2150:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2151:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2152:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2153:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2154:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2155:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2156:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1024 -{272 -[1,14218:4262630,47279633:28320399,43253760,0 -(1,14218:4262630,4025873:0,0,0 -[1,14218:-473656,4025873:0,0,0 -(1,14218:-473656,-710413:0,0,0 -(1,14218:-473656,-644877:0,0,0 -k1,14218:-473656,-644877:-65536 -) -(1,14218:-473656,4736287:0,0,0 -k1,14218:-473656,4736287:5209943 -) -g1,14218:-473656,-710413 -) -] -) -[1,14218:6630773,47279633:25952256,43253760,0 -[1,14218:6630773,4812305:25952256,786432,0 -(1,14218:6630773,4812305:25952256,485622,11795 -(1,14218:6630773,4812305:25952256,485622,11795 -g1,14218:3078558,4812305 -[1,14218:3078558,4812305:0,0,0 -(1,14218:3078558,2439708:0,1703936,0 -k1,14218:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,14218:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,14218:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,14218:3078558,4812305:0,0,0 -(1,14218:3078558,2439708:0,1703936,0 -g1,14218:29030814,2439708 -g1,14218:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,14218:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,14218:37855564,2439708:1179648,16384,0 -) -) -k1,14218:3078556,2439708:-34777008 -) -] -[1,14218:3078558,4812305:0,0,0 -(1,14218:3078558,49800853:0,16384,2228224 -k1,14218:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,14218:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,14218:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,14218:3078558,4812305:0,0,0 -(1,14218:3078558,49800853:0,16384,2228224 -g1,14218:29030814,49800853 -g1,14218:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,14218:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,14218:37855564,49800853:1179648,16384,0 -) -) -k1,14218:3078556,49800853:-34777008 -) -] -g1,14218:6630773,4812305 -g1,14218:6630773,4812305 -g1,14218:10347975,4812305 -k1,14218:31387651,4812305:21039676 -) -) -] -[1,14218:6630773,45706769:25952256,40108032,0 -(1,14218:6630773,45706769:25952256,40108032,0 -(1,14218:6630773,45706769:0,0,0 -g1,14218:6630773,45706769 -) -[1,14218:6630773,45706769:25952256,40108032,0 -(1,14180:6630773,14682403:25952256,9083666,0 -k1,14180:10523651,14682403:3892878 -h1,14179:10523651,14682403:0,0,0 -(1,14179:10523651,14682403:18166500,9083666,0 -(1,14179:10523651,14682403:18167376,9083688,0 -(1,14179:10523651,14682403:18167376,9083688,0 -(1,14179:10523651,14682403:0,9083688,0 -(1,14179:10523651,14682403:0,14208860,0 -(1,14179:10523651,14682403:28417720,14208860,0 -) -k1,14179:10523651,14682403:-28417720 -) -) -g1,14179:28691027,14682403 -) -) -) -g1,14180:28690151,14682403 -k1,14180:32583029,14682403:3892878 -) -v1,14188:6630773,16048179:0,393216,0 -(1,14208:6630773,44021256:25952256,28366293,616038 -g1,14208:6630773,44021256 -(1,14208:6630773,44021256:25952256,28366293,616038 -(1,14208:6630773,44637294:25952256,28982331,0 -[1,14208:6630773,44637294:25952256,28982331,0 -(1,14208:6630773,44611080:25952256,28929903,0 -r1,14218:6656987,44611080:26214,28929903,0 -[1,14208:6656987,44611080:25899828,28929903,0 -(1,14208:6656987,44021256:25899828,27750255,0 -[1,14208:7246811,44021256:24720180,27750255,0 -(1,14189:7246811,17432886:24720180,1161885,196608 -(1,14188:7246811,17432886:0,1161885,196608 -r1,14218:8794447,17432886:1547636,1358493,196608 -k1,14188:7246811,17432886:-1547636 -) -(1,14188:7246811,17432886:1547636,1161885,196608 -) -k1,14188:9096600,17432886:302153 -k1,14188:10788773,17432886:302154 -k1,14188:13810015,17432886:302153 -k1,14188:16542243,17432886:302153 -k1,14188:17863482,17432886:302154 -k1,14188:20961401,17432886:302153 -k1,14188:24289351,17432886:302153 -k1,14188:25876010,17432886:302153 -k1,14188:27644860,17432886:302154 -k1,14188:30775546,17432886:302153 -k1,14188:31966991,17432886:0 -) -(1,14189:7246811,18274374:24720180,513147,126483 -k1,14188:9696546,18274374:171049 -k1,14188:10960080,18274374:171049 -k1,14188:13017255,18274374:171049 -k1,14188:14207389,18274374:171049 -k1,14188:16176746,18274374:171049 -k1,14188:17737813,18274374:171048 -k1,14188:20765576,18274374:171049 -k1,14188:23698968,18274374:171049 -k1,14188:25586405,18274374:171049 -k1,14188:26416746,18274374:171049 -k1,14188:28205879,18274374:171049 -k1,14188:29324579,18274374:171049 -k1,14189:31966991,18274374:0 -) -(1,14189:7246811,19115862:24720180,513147,134348 -k1,14188:8422408,19115862:185348 -k1,14188:9626840,19115862:185347 -k1,14188:13550362,19115862:185348 -k1,14188:14395001,19115862:185347 -k1,14188:17524882,19115862:185348 -k1,14188:19720218,19115862:185347 -k1,14188:20924651,19115862:185348 -k1,14188:23634445,19115862:185347 -k1,14188:25340884,19115862:185348 -k1,14188:26424074,19115862:185347 -k1,14188:29601141,19115862:185348 -k1,14188:31966991,19115862:0 -) -(1,14189:7246811,19957350:24720180,505283,115847 -k1,14188:8649737,19957350:199685 -k1,14188:10075600,19957350:199684 -k1,14188:11435272,19957350:199685 -k1,14188:12727442,19957350:199685 -(1,14188:12727442,19957350:0,452978,115847 -r1,14218:15547691,19957350:2820249,568825,115847 -k1,14188:12727442,19957350:-2820249 -) -(1,14188:12727442,19957350:2820249,452978,115847 -k1,14188:12727442,19957350:3277 -h1,14188:15544414,19957350:0,411205,112570 -) -k1,14188:15747375,19957350:199684 -k1,14188:17336423,19957350:199685 -k1,14188:21447951,19957350:199684 -k1,14188:24491899,19957350:199685 -k1,14188:28429758,19957350:199685 -k1,14188:29733724,19957350:199684 -k1,14188:30681175,19957350:199685 -k1,14188:31966991,19957350:0 -) -(1,14189:7246811,20798838:24720180,513147,134348 -k1,14188:9111928,20798838:170356 -k1,14188:9898323,20798838:170357 -k1,14188:12691430,20798838:170356 -k1,14188:14479871,20798838:170357 -k1,14188:15796452,20798838:170356 -(1,14188:15796452,20798838:0,452978,115847 -r1,14218:17209853,20798838:1413401,568825,115847 -k1,14188:15796452,20798838:-1413401 -) -(1,14188:15796452,20798838:1413401,452978,115847 -k1,14188:15796452,20798838:3277 -h1,14188:17206576,20798838:0,411205,112570 -) -k1,14188:17553880,20798838:170357 -k1,14188:19318072,20798838:170356 -k1,14188:21465650,20798838:170357 -k1,14188:23334044,20798838:170356 -k1,14188:26091107,20798838:170357 -k1,14188:27655414,20798838:170356 -k1,14188:30359393,20798838:170357 -k1,14188:31966991,20798838:0 -) -(1,14189:7246811,21640326:24720180,505283,126483 -k1,14188:8032171,21640326:253863 -k1,14188:8937461,21640326:253862 -k1,14188:10283809,21640326:253863 -k1,14188:12307144,21640326:253863 -k1,14188:16134685,21640326:253863 -k1,14188:18479145,21640326:253862 -k1,14188:22528197,21640326:253863 -k1,14188:24667531,21640326:253863 -k1,14188:25912954,21640326:253863 -k1,14188:29364318,21640326:253862 -k1,14188:30304343,21640326:253863 -k1,14189:31966991,21640326:0 -) -(1,14189:7246811,22481814:24720180,513147,134348 -k1,14188:8818242,22481814:205005 -k1,14188:9639285,22481814:205005 -k1,14188:10863374,22481814:205004 -k1,14188:12848992,22481814:205005 -k1,14188:13452456,22481814:205005 -k1,14188:14308889,22481814:205005 -k1,14188:15086023,22481814:205005 -k1,14188:17650324,22481814:205005 -k1,14188:18506756,22481814:205004 -k1,14188:19730846,22481814:205005 -k1,14188:23611110,22481814:205005 -k1,14188:24475407,22481814:205005 -k1,14188:25699497,22481814:205005 -k1,14188:27534381,22481814:205004 -k1,14188:28398678,22481814:205005 -k1,14188:29622768,22481814:205005 -k1,14188:31966991,22481814:0 -) -(1,14189:7246811,23323302:24720180,513147,134348 -g1,14188:10347974,23323302 -g1,14188:11941154,23323302 -g1,14188:14014713,23323302 -g1,14188:14826704,23323302 -g1,14188:16045018,23323302 -g1,14188:18000612,23323302 -g1,14188:19273976,23323302 -k1,14189:31966991,23323302:10452339 -g1,14189:31966991,23323302 -) -(1,14191:7246811,24164790:24720180,505283,138281 -h1,14190:7246811,24164790:983040,0,0 -k1,14190:11043551,24164790:278767 -k1,14190:14150850,24164790:278766 -k1,14190:17581899,24164790:278767 -$1,14190:17581899,24164790 -$1,14190:18084560,24164790 -k1,14190:18363327,24164790:278767 -k1,14190:19833539,24164790:278767 -$1,14190:19833539,24164790 -$1,14190:20385352,24164790 -k1,14190:20664118,24164790:278766 -k1,14190:24681059,24164790:278767 -k1,14190:25575864,24164790:278767 -(1,14190:25575864,24164790:0,452978,115847 -r1,14218:28396113,24164790:2820249,568825,115847 -k1,14190:25575864,24164790:-2820249 -) -(1,14190:25575864,24164790:2820249,452978,115847 -k1,14190:25575864,24164790:3277 -h1,14190:28392836,24164790:0,411205,112570 -) -k1,14190:28674879,24164790:278766 -k1,14190:30343009,24164790:278767 -k1,14191:31966991,24164790:0 -) -(1,14191:7246811,25006278:24720180,505283,134348 -k1,14190:10080533,25006278:332868 -k1,14190:11604846,25006278:332868 -k1,14190:14407111,25006278:332868 -k1,14190:16715234,25006278:332868 -k1,14190:17699530,25006278:332868 -k1,14190:18780164,25006278:332868 -k1,14190:21411380,25006278:332868 -k1,14190:22395676,25006278:332868 -k1,14190:23706997,25006278:332868 -k1,14190:26329038,25006278:332868 -k1,14190:27865147,25006278:332868 -k1,14190:31479403,25006278:332868 -k1,14190:31966991,25006278:0 -) -(1,14191:7246811,25847766:24720180,505283,134348 -k1,14190:9536639,25847766:338166 -k1,14190:12207887,25847766:338166 -k1,14190:15158318,25847766:338166 -k1,14190:16027981,25847766:338166 -k1,14190:19216962,25847766:338165 -k1,14190:20316656,25847766:338166 -k1,14190:23234974,25847766:338166 -k1,14190:26620563,25847766:338166 -k1,14190:29517255,25847766:338166 -k1,14191:31966991,25847766:0 -) -(1,14191:7246811,26689254:24720180,513147,134348 -k1,14190:8324155,26689254:257488 -(1,14190:8324155,26689254:0,414482,115847 -r1,14218:9737556,26689254:1413401,530329,115847 -k1,14190:8324155,26689254:-1413401 -) -(1,14190:8324155,26689254:1413401,414482,115847 -k1,14190:8324155,26689254:3277 -h1,14190:9734279,26689254:0,411205,112570 -) -k1,14190:9995044,26689254:257488 -k1,14190:11443977,26689254:257488 -(1,14190:11443977,26689254:0,414482,115847 -r1,14218:12857378,26689254:1413401,530329,115847 -k1,14190:11443977,26689254:-1413401 -) -(1,14190:11443977,26689254:1413401,414482,115847 -k1,14190:11443977,26689254:3277 -h1,14190:12854101,26689254:0,411205,112570 -) -k1,14190:13114865,26689254:257487 -k1,14190:14563798,26689254:257488 -k1,14190:18261271,26689254:257488 -k1,14190:19803265,26689254:257488 -k1,14190:22587166,26689254:257488 -k1,14190:24657380,26689254:257488 -k1,14190:25659356,26689254:257487 -k1,14190:26935929,26689254:257488 -k1,14190:28618825,26689254:257488 -k1,14190:29535605,26689254:257488 -k1,14191:31966991,26689254:0 -) -(1,14191:7246811,27530742:24720180,505283,122846 -(1,14190:7246811,27530742:0,452978,122846 -r1,14218:12529042,27530742:5282231,575824,122846 -k1,14190:7246811,27530742:-5282231 -) -(1,14190:7246811,27530742:5282231,452978,122846 -k1,14190:7246811,27530742:3277 -h1,14190:12525765,27530742:0,411205,112570 -) -k1,14190:12996556,27530742:293844 -(1,14190:12996556,27530742:0,452978,122846 -r1,14218:18630499,27530742:5633943,575824,122846 -k1,14190:12996556,27530742:-5633943 -) -(1,14190:12996556,27530742:5633943,452978,122846 -k1,14190:12996556,27530742:3277 -h1,14190:18627222,27530742:0,411205,112570 -) -k1,14190:19098014,27530742:293845 -(1,14190:19098014,27530742:0,452978,122846 -r1,14218:24731957,27530742:5633943,575824,122846 -k1,14190:19098014,27530742:-5633943 -) -(1,14190:19098014,27530742:5633943,452978,122846 -k1,14190:19098014,27530742:3277 -h1,14190:24728680,27530742:0,411205,112570 -) -k1,14190:25199471,27530742:293844 -(1,14190:25199471,27530742:0,452978,122846 -r1,14218:30481702,27530742:5282231,575824,122846 -k1,14190:25199471,27530742:-5282231 -) -(1,14190:25199471,27530742:5282231,452978,122846 -k1,14190:25199471,27530742:3277 -h1,14190:30478425,27530742:0,411205,112570 -) -k1,14190:30775546,27530742:293844 -k1,14191:31966991,27530742:0 -) -(1,14191:7246811,28372230:24720180,513147,134348 -(1,14190:7246811,28372230:0,452978,122846 -r1,14218:12529042,28372230:5282231,575824,122846 -k1,14190:7246811,28372230:-5282231 -) -(1,14190:7246811,28372230:5282231,452978,122846 -k1,14190:7246811,28372230:3277 -h1,14190:12525765,28372230:0,411205,112570 -) -k1,14190:12881258,28372230:178546 -k1,14190:14934134,28372230:178546 -k1,14190:18552664,28372230:178545 -k1,14190:19722770,28372230:178546 -k1,14190:21878537,28372230:178546 -k1,14190:23004734,28372230:178546 -k1,14190:26623264,28372230:178545 -k1,14190:28409408,28372230:178546 -k1,14190:29779399,28372230:178546 -k1,14190:31966991,28372230:0 -) -(1,14191:7246811,29213718:24720180,505283,134348 -k1,14190:9351172,29213718:223478 -k1,14190:10187411,29213718:223477 -k1,14190:13355422,29213718:223478 -k1,14190:15938196,29213718:223478 -k1,14190:16813101,29213718:223477 -k1,14190:18055664,29213718:223478 -k1,14190:20803588,29213718:223477 -k1,14190:22374486,29213718:223478 -k1,14190:23882470,29213718:223478 -k1,14190:26333516,29213718:223477 -k1,14190:28686259,29213718:223478 -k1,14190:31966991,29213718:0 -) -(1,14191:7246811,30055206:24720180,513147,134348 -k1,14190:9521238,30055206:241500 -k1,14190:12525081,30055206:241500 -k1,14190:14547850,30055206:241500 -k1,14190:15472235,30055206:241500 -k1,14190:17746662,30055206:241500 -k1,14190:20062376,30055206:241500 -k1,14190:22001914,30055206:241500 -k1,14190:23978807,30055206:241500 -k1,14190:26109055,30055206:241500 -k1,14190:27744506,30055206:241500 -k1,14190:29233812,30055206:241500 -k1,14190:30727705,30055206:241500 -k1,14191:31966991,30055206:0 -) -(1,14191:7246811,30896694:24720180,513147,134348 -k1,14190:8403164,30896694:194284 -k1,14190:10334153,30896694:194285 -k1,14190:14035924,30896694:194284 -k1,14190:15610396,30896694:194284 -k1,14190:18234756,30896694:194285 -k1,14190:21112084,30896694:194284 -k1,14190:21922407,30896694:194285 -k1,14190:23135776,30896694:194284 -k1,14190:26199226,30896694:194284 -k1,14190:28358936,30896694:194285 -k1,14190:29204648,30896694:194284 -k1,14190:31966991,30896694:0 -) -(1,14191:7246811,31738182:24720180,505283,126483 -g1,14190:9520254,31738182 -g1,14190:10910928,31738182 -g1,14190:12618796,31738182 -k1,14191:31966991,31738182:16229992 -g1,14191:31966991,31738182 -) -v1,14193:7246811,32928648:0,393216,0 -(1,14199:7246811,34582392:24720180,2046960,196608 -g1,14199:7246811,34582392 -g1,14199:7246811,34582392 -g1,14199:7050203,34582392 -(1,14199:7050203,34582392:0,2046960,196608 -r1,14218:32163599,34582392:25113396,2243568,196608 -k1,14199:7050203,34582392:-25113396 -) -(1,14199:7050203,34582392:25113396,2046960,196608 -[1,14199:7246811,34582392:24720180,1850352,0 -(1,14195:7246811,33142558:24720180,410518,107478 -(1,14194:7246811,33142558:0,0,0 -g1,14194:7246811,33142558 -g1,14194:7246811,33142558 -g1,14194:6919131,33142558 -(1,14194:6919131,33142558:0,0,0 -) -g1,14194:7246811,33142558 -) -k1,14195:7246811,33142558:0 -g1,14195:11040560,33142558 -g1,14195:11672852,33142558 -g1,14195:14202018,33142558 -g1,14195:16098893,33142558 -g1,14195:16731185,33142558 -g1,14195:18628060,33142558 -g1,14195:19260352,33142558 -g1,14195:19892644,33142558 -g1,14195:21473373,33142558 -g1,14195:23370247,33142558 -g1,14195:24002539,33142558 -g1,14195:28428579,33142558 -h1,14195:28744725,33142558:0,0,0 -k1,14195:31966991,33142558:3222266 -g1,14195:31966991,33142558 -) -(1,14196:7246811,33808736:24720180,404226,107478 -h1,14196:7246811,33808736:0,0,0 -g1,14196:7562957,33808736 -g1,14196:7879103,33808736 -g1,14196:11988997,33808736 -h1,14196:12305143,33808736:0,0,0 -k1,14196:31966991,33808736:19661848 -g1,14196:31966991,33808736 -) -(1,14197:7246811,34474914:24720180,404226,107478 -h1,14197:7246811,34474914:0,0,0 -g1,14197:7562957,34474914 -g1,14197:7879103,34474914 -g1,14197:14202018,34474914 -g1,14197:14834310,34474914 -g1,14197:16415039,34474914 -g1,14197:17995768,34474914 -g1,14197:18628060,34474914 -g1,14197:20208789,34474914 -g1,14197:22105663,34474914 -g1,14197:22737955,34474914 -g1,14197:23686392,34474914 -g1,14197:26215558,34474914 -g1,14197:28112432,34474914 -g1,14197:28744724,34474914 -h1,14197:31273890,34474914:0,0,0 -k1,14197:31966991,34474914:693101 -g1,14197:31966991,34474914 -) -] -) -g1,14199:31966991,34582392 -g1,14199:7246811,34582392 -g1,14199:7246811,34582392 -g1,14199:31966991,34582392 -g1,14199:31966991,34582392 -) -h1,14199:7246811,34779000:0,0,0 -(1,14202:7246811,44021256:24720180,8652432,0 -k1,14202:10954876,44021256:3708065 -h1,14201:10954876,44021256:0,0,0 -(1,14201:10954876,44021256:17304050,8652432,0 -(1,14201:10954876,44021256:17304906,8652453,0 -(1,14201:10954876,44021256:17304906,8652453,0 -(1,14201:10954876,44021256:0,8652453,0 -(1,14201:10954876,44021256:0,14208860,0 -(1,14201:10954876,44021256:28417720,14208860,0 -) -k1,14201:10954876,44021256:-28417720 -) -) -g1,14201:28259782,44021256 -) -) -) -g1,14202:28258926,44021256 -k1,14202:31966991,44021256:3708065 -) -] -) -] -r1,14218:32583029,44611080:26214,28929903,0 -) -] -) -) -g1,14208:32583029,44021256 -) -h1,14208:6630773,44637294:0,0,0 -] -(1,14218:32583029,45706769:0,0,0 -g1,14218:32583029,45706769 -) -) -] -(1,14218:6630773,47279633:25952256,0,0 -h1,14218:6630773,47279633:25952256,0,0 -) -] -(1,14218:4262630,4025873:0,0,0 -[1,14218:-473656,4025873:0,0,0 -(1,14218:-473656,-710413:0,0,0 -(1,14218:-473656,-710413:0,0,0 -g1,14218:-473656,-710413 -) -g1,14218:-473656,-710413 -) -] -) -] -!17726 -}272 -Input:2157:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2158:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2159:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2160:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2161:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2162:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2163:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2164:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2165:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2166:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2167:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1024 -{273 -[1,14259:4262630,47279633:28320399,43253760,0 -(1,14259:4262630,4025873:0,0,0 -[1,14259:-473656,4025873:0,0,0 -(1,14259:-473656,-710413:0,0,0 -(1,14259:-473656,-644877:0,0,0 -k1,14259:-473656,-644877:-65536 -) -(1,14259:-473656,4736287:0,0,0 -k1,14259:-473656,4736287:5209943 -) -g1,14259:-473656,-710413 -) -] -) -[1,14259:6630773,47279633:25952256,43253760,0 -[1,14259:6630773,4812305:25952256,786432,0 -(1,14259:6630773,4812305:25952256,513147,134348 -(1,14259:6630773,4812305:25952256,513147,134348 -g1,14259:3078558,4812305 -[1,14259:3078558,4812305:0,0,0 -(1,14259:3078558,2439708:0,1703936,0 -k1,14259:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,14259:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,14259:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,14259:3078558,4812305:0,0,0 -(1,14259:3078558,2439708:0,1703936,0 -g1,14259:29030814,2439708 -g1,14259:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,14259:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,14259:37855564,2439708:1179648,16384,0 -) -) -k1,14259:3078556,2439708:-34777008 -) -] -[1,14259:3078558,4812305:0,0,0 -(1,14259:3078558,49800853:0,16384,2228224 -k1,14259:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,14259:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,14259:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,14259:3078558,4812305:0,0,0 -(1,14259:3078558,49800853:0,16384,2228224 -g1,14259:29030814,49800853 -g1,14259:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,14259:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,14259:37855564,49800853:1179648,16384,0 -) -) -k1,14259:3078556,49800853:-34777008 -) -] -g1,14259:6630773,4812305 -k1,14259:25712890,4812305:17886740 -g1,14259:29057847,4812305 -g1,14259:29873114,4812305 -) -) -] -[1,14259:6630773,45706769:25952256,40108032,0 -(1,14259:6630773,45706769:25952256,40108032,0 -(1,14259:6630773,45706769:0,0,0 -g1,14259:6630773,45706769 -) -[1,14259:6630773,45706769:25952256,40108032,0 -(1,14214:6630773,6254097:25952256,32768,229376 -(1,14214:6630773,6254097:0,32768,229376 -(1,14214:6630773,6254097:5505024,32768,229376 -r1,14259:12135797,6254097:5505024,262144,229376 -) -k1,14214:6630773,6254097:-5505024 -) -(1,14214:6630773,6254097:25952256,32768,0 -r1,14259:32583029,6254097:25952256,32768,0 -) -) -(1,14214:6630773,7858425:25952256,606339,14155 -(1,14214:6630773,7858425:1974731,568590,14155 -g1,14214:6630773,7858425 -g1,14214:8605504,7858425 -) -k1,14214:32583028,7858425:20424424 -g1,14214:32583028,7858425 -) -(1,14218:6630773,9093129:25952256,513147,134348 -k1,14217:8826834,9093129:154615 -k1,14217:11583227,9093129:154614 -k1,14217:13560398,9093129:154615 -k1,14217:16543545,9093129:154614 -k1,14217:19531281,9093129:154615 -k1,14217:20143993,9093129:154615 -k1,14217:20830104,9093129:154614 -k1,14217:24194017,9093129:154615 -k1,14217:25000060,9093129:154615 -k1,14217:26629889,9093129:154614 -k1,14217:28314770,9093129:154615 -k1,14217:29799765,9093129:154614 -k1,14217:30973465,9093129:154615 -k1,14218:32583029,9093129:0 -) -(1,14218:6630773,9934617:25952256,513147,134348 -k1,14217:8194960,9934617:153197 -k1,14217:9007450,9934617:153198 -k1,14217:11384939,9934617:153197 -k1,14217:12189565,9934617:153198 -k1,14217:15407226,9934617:153197 -k1,14217:17660853,9934617:153198 -k1,14217:19597285,9934617:153197 -k1,14217:20106342,9934617:153197 -k1,14217:22327201,9934617:153198 -k1,14217:23428049,9934617:153197 -k1,14217:26416334,9934617:153198 -k1,14217:27101028,9934617:153197 -k1,14217:29839621,9934617:153198 -k1,14217:30644246,9934617:153197 -(1,14217:30644246,9934617:0,452978,115847 -r1,14259:32409359,9934617:1765113,568825,115847 -k1,14217:30644246,9934617:-1765113 -) -(1,14217:30644246,9934617:1765113,452978,115847 -k1,14217:30644246,9934617:3277 -h1,14217:32406082,9934617:0,411205,112570 -) -k1,14217:32583029,9934617:0 -) -(1,14218:6630773,10776105:25952256,513147,134348 -k1,14217:7283465,10776105:194595 -k1,14217:9737741,10776105:194595 -k1,14217:10288196,10776105:194595 -k1,14217:11765987,10776105:194596 -k1,14217:15017181,10776105:194595 -k1,14217:16605727,10776105:194595 -k1,14217:17819407,10776105:194595 -k1,14217:22085754,10776105:194595 -k1,14217:25251751,10776105:194595 -k1,14217:25802206,10776105:194595 -k1,14217:27691563,10776105:194596 -k1,14217:29348266,10776105:194595 -k1,14217:30202153,10776105:194595 -k1,14217:31415833,10776105:194595 -k1,14218:32583029,10776105:0 -) -(1,14218:6630773,11617593:25952256,513147,134348 -k1,14217:7924922,11617593:180692 -k1,14217:12729179,11617593:180692 -k1,14217:13561299,11617593:180692 -k1,14217:14097851,11617593:180692 -k1,14217:16344893,11617593:180692 -k1,14217:18070924,11617593:180692 -k1,14217:20934005,11617593:180692 -k1,14217:23525767,11617593:180692 -k1,14217:24515829,11617593:180692 -k1,14217:25715606,11617593:180692 -k1,14217:27285661,11617593:180692 -k1,14217:28414004,11617593:180692 -k1,14217:30046318,11617593:180692 -k1,14217:30886302,11617593:180692 -k1,14217:32583029,11617593:0 -) -(1,14218:6630773,12459081:25952256,513147,134348 -k1,14217:9043317,12459081:189563 -k1,14217:12675486,12459081:189563 -k1,14217:15865943,12459081:189563 -k1,14217:16411365,12459081:189562 -k1,14217:19591336,12459081:189563 -k1,14217:20728550,12459081:189563 -k1,14217:22369735,12459081:189563 -k1,14217:24625648,12459081:189563 -k1,14217:25762861,12459081:189562 -k1,14217:28787511,12459081:189563 -k1,14217:29996159,12459081:189563 -k1,14217:31923737,12459081:189563 -k1,14217:32583029,12459081:0 -) -(1,14218:6630773,13300569:25952256,505283,134348 -g1,14217:7849087,13300569 -g1,14217:12120068,13300569 -g1,14217:12935335,13300569 -g1,14217:13490424,13300569 -k1,14218:32583030,13300569:17026256 -g1,14218:32583030,13300569 -) -(1,14219:6630773,15391829:25952256,555811,12975 -(1,14219:6630773,15391829:2450326,525533,12975 -g1,14219:6630773,15391829 -g1,14219:9081099,15391829 -) -k1,14219:32583029,15391829:19939262 -g1,14219:32583029,15391829 -) -(1,14223:6630773,16626533:25952256,513147,138281 -k1,14222:7405177,16626533:146569 -k1,14222:10217751,16626533:146569 -k1,14222:11015749,16626533:146570 -k1,14222:13686765,16626533:146569 -k1,14222:15222697,16626533:146569 -k1,14222:16936887,16626533:146569 -k1,14222:17439317,16626533:146570 -k1,14222:18975249,16626533:146569 -k1,14222:20998114,16626533:146569 -k1,14222:22538634,16626533:146569 -k1,14222:25526845,16626533:146570 -k1,14222:26324842,16626533:146569 -k1,14222:27867983,16626533:146569 -k1,14222:28665980,16626533:146569 -$1,14222:28665980,16626533 -$1,14222:29168641,16626533 -k1,14222:29315211,16626533:146570 -k1,14222:30653225,16626533:146569 -$1,14222:30653225,16626533 -$1,14222:31205038,16626533 -k1,14222:31351607,16626533:146569 -k1,14223:32583029,16626533:0 -) -(1,14223:6630773,17468021:25952256,505283,126483 -k1,14222:8996011,17468021:176336 -k1,14222:9630445,17468021:176337 -k1,14222:10338278,17468021:176336 -k1,14222:13144575,17468021:176337 -k1,14222:13972339,17468021:176336 -k1,14222:15623891,17468021:176337 -k1,14222:17175828,17468021:176336 -k1,14222:17708025,17468021:176337 -k1,14222:20395701,17468021:176336 -k1,14222:23157433,17468021:176337 -k1,14222:23985197,17468021:176336 -$1,14222:23985197,17468021 -$1,14222:24487858,17468021 -k1,14222:24664195,17468021:176337 -k1,14222:26031976,17468021:176336 -k1,14222:27300798,17468021:176337 -(1,14222:27300798,17468021:0,459977,115847 -r1,14259:32583029,17468021:5282231,575824,115847 -k1,14222:27300798,17468021:-5282231 -) -(1,14222:27300798,17468021:5282231,459977,115847 -k1,14222:27300798,17468021:3277 -h1,14222:32579752,17468021:0,411205,112570 -) -k1,14222:32583029,17468021:0 -) -(1,14223:6630773,18309509:25952256,513147,138281 -k1,14222:7439408,18309509:157207 -k1,14222:10384517,18309509:157207 -k1,14222:11560809,18309509:157207 -k1,14222:13728661,18309509:157207 -k1,14222:14537296,18309509:157207 -k1,14222:15442269,18309509:157207 -k1,14222:18184870,18309509:157206 -k1,14222:18993505,18309509:157207 -$1,14222:18993505,18309509 -$1,14222:19545318,18309509 -k1,14222:19702525,18309509:157207 -k1,14222:21595125,18309509:157207 -k1,14222:22523035,18309509:157207 -k1,14222:23095043,18309509:157165 -k1,14222:26121416,18309509:157207 -k1,14222:27659467,18309509:157207 -k1,14222:29876471,18309509:157207 -k1,14222:31052763,18309509:157207 -k1,14222:32583029,18309509:0 -) -(1,14223:6630773,19150997:25952256,513147,134348 -k1,14222:7435695,19150997:153494 -k1,14222:10321386,19150997:153495 -k1,14222:11864243,19150997:153494 -k1,14222:15666783,19150997:153495 -k1,14222:16506440,19150997:153495 -k1,14222:18126630,19150997:153494 -k1,14222:19299209,19150997:153494 -k1,14222:21938485,19150997:153495 -k1,14222:22751272,19150997:153495 -k1,14222:24294129,19150997:153494 -k1,14222:26466133,19150997:153495 -k1,14222:27271055,19150997:153494 -k1,14222:28172315,19150997:153494 -k1,14222:31478747,19150997:153495 -k1,14222:32583029,19150997:0 -) -(1,14223:6630773,19992485:25952256,513147,134348 -k1,14222:7546879,19992485:168340 -k1,14222:8649762,19992485:168340 -k1,14222:9434141,19992485:168341 -(1,14222:9434141,19992485:0,459977,122846 -r1,14259:14716372,19992485:5282231,582823,122846 -k1,14222:9434141,19992485:-5282231 -) -(1,14222:9434141,19992485:5282231,459977,122846 -k1,14222:9434141,19992485:3277 -h1,14222:14713095,19992485:0,411205,112570 -) -k1,14222:15058382,19992485:168340 -k1,14222:16490256,19992485:168340 -k1,14222:17073409,19992485:168310 -k1,14222:20110915,19992485:168340 -k1,14222:21660099,19992485:168340 -k1,14222:24210018,19992485:168341 -k1,14222:25061243,19992485:168340 -k1,14222:26469524,19992485:168340 -k1,14222:27742146,19992485:168340 -k1,14222:28658252,19992485:168340 -k1,14222:30339819,19992485:168341 -k1,14222:31194321,19992485:168340 -k1,14222:32583029,19992485:0 -) -(1,14223:6630773,20833973:25952256,513147,134348 -k1,14222:7572525,20833973:255590 -k1,14222:8286212,20833973:255590 -k1,14222:9073300,20833973:255591 -k1,14222:12839654,20833973:255590 -k1,14222:14489195,20833973:255590 -k1,14222:15763870,20833973:255590 -k1,14222:18032726,20833973:255590 -k1,14222:18947609,20833973:255591 -k1,14222:20222284,20833973:255590 -k1,14222:23256601,20833973:255590 -k1,14222:25490068,20833973:255590 -k1,14222:27473187,20833973:255590 -k1,14222:28380206,20833973:255591 -k1,14222:29654881,20833973:255590 -k1,14222:31923737,20833973:255590 -k1,14222:32583029,20833973:0 -) -(1,14223:6630773,21675461:25952256,513147,134348 -k1,14222:7828833,21675461:178975 -k1,14222:9985686,21675461:178976 -k1,14222:12369948,21675461:178975 -k1,14222:13235085,21675461:178975 -k1,14222:14720193,21675461:178975 -k1,14222:17971497,21675461:178976 -k1,14222:18801900,21675461:178975 -k1,14222:19612642,21675461:178975 -k1,14222:20988305,21675461:178976 -k1,14222:23678620,21675461:178975 -k1,14222:26442990,21675461:178975 -k1,14222:27273393,21675461:178975 -(1,14222:27273393,21675461:0,414482,115847 -r1,14259:27631659,21675461:358266,530329,115847 -k1,14222:27273393,21675461:-358266 -) -(1,14222:27273393,21675461:358266,414482,115847 -k1,14222:27273393,21675461:3277 -h1,14222:27628382,21675461:0,411205,112570 -) -k1,14222:27810635,21675461:178976 -k1,14222:31563944,21675461:178975 -k1,14222:32583029,21675461:0 -) -(1,14223:6630773,22516949:25952256,513147,134348 -k1,14222:8770841,22516949:185784 -k1,14222:10148069,22516949:185783 -k1,14222:11352938,22516949:185784 -k1,14222:14611049,22516949:185783 -k1,14222:15448261,22516949:185784 -k1,14222:18914777,22516949:185784 -(1,14222:18914777,22516949:0,414482,115847 -r1,14259:19273043,22516949:358266,530329,115847 -k1,14222:18914777,22516949:-358266 -) -(1,14222:18914777,22516949:358266,414482,115847 -k1,14222:18914777,22516949:3277 -h1,14222:19269766,22516949:0,411205,112570 -) -k1,14222:19458826,22516949:185783 -k1,14222:20311766,22516949:185784 -(1,14222:20311766,22516949:0,459977,122846 -r1,14259:25593997,22516949:5282231,582823,122846 -k1,14222:20311766,22516949:-5282231 -) -(1,14222:20311766,22516949:5282231,459977,122846 -k1,14222:20311766,22516949:3277 -h1,14222:25590720,22516949:0,411205,112570 -) -k1,14222:25779781,22516949:185784 -k1,14222:26984649,22516949:185783 -k1,14222:29183699,22516949:185784 -k1,14222:30028774,22516949:185783 -k1,14222:31233643,22516949:185784 -k1,14223:32583029,22516949:0 -) -(1,14223:6630773,23358437:25952256,513147,134348 -k1,14222:8861968,23358437:214652 -k1,14222:11054496,23358437:214651 -k1,14222:12553654,23358437:214652 -k1,14222:13299802,23358437:214651 -k1,14222:15719741,23358437:214652 -k1,14222:16620555,23358437:214652 -k1,14222:18141339,23358437:214651 -k1,14222:21428319,23358437:214652 -k1,14222:22294398,23358437:214651 -(1,14222:22294398,23358437:0,459977,115847 -r1,14259:23356087,23358437:1061689,575824,115847 -k1,14222:22294398,23358437:-1061689 -) -(1,14222:22294398,23358437:1061689,459977,115847 -k1,14222:22294398,23358437:3277 -h1,14222:23352810,23358437:0,411205,112570 -) -k1,14222:23570739,23358437:214652 -k1,14222:25483429,23358437:214652 -k1,14222:26156177,23358437:214651 -k1,14222:26902326,23358437:214652 -k1,14222:28984753,23358437:214651 -k1,14222:29850833,23358437:214652 -k1,14222:32583029,23358437:0 -) -(1,14223:6630773,24199925:25952256,505283,138281 -g1,14222:7849087,24199925 -g1,14222:10058961,24199925 -g1,14222:10909618,24199925 -g1,14222:13489115,24199925 -g1,14222:14339772,24199925 -(1,14222:14339772,24199925:0,414482,115847 -r1,14259:14698038,24199925:358266,530329,115847 -k1,14222:14339772,24199925:-358266 -) -(1,14222:14339772,24199925:358266,414482,115847 -k1,14222:14339772,24199925:3277 -h1,14222:14694761,24199925:0,411205,112570 -) -g1,14222:15070937,24199925 -g1,14222:17144496,24199925 -g1,14222:18335285,24199925 -g1,14222:19553599,24199925 -$1,14222:19553599,24199925 -$1,14222:20056260,24199925 -g1,14222:20255489,24199925 -g1,14222:21646163,24199925 -$1,14222:21646163,24199925 -$1,14222:22197976,24199925 -g1,14222:22397205,24199925 -g1,14222:24607079,24199925 -g1,14222:27011595,24199925 -g1,14222:27862252,24199925 -g1,14222:29080566,24199925 -k1,14223:32583029,24199925:363289 -g1,14223:32583029,24199925 -) -(1,14225:6630773,25041413:25952256,513147,126483 -h1,14224:6630773,25041413:983040,0,0 -k1,14224:8738974,25041413:171612 -k1,14224:10398909,25041413:171612 -k1,14224:11964472,25041413:171612 -k1,14224:13155169,25041413:171612 -k1,14224:15682800,25041413:171612 -k1,14224:19635839,25041413:171612 -k1,14224:22676617,25041413:171612 -k1,14224:23801778,25041413:171612 -k1,14224:25175320,25041413:171612 -k1,14224:26156302,25041413:171612 -k1,14224:27346999,25041413:171612 -k1,14224:30114492,25041413:171612 -(1,14224:30114492,25041413:0,435480,115847 -r1,14259:32583029,25041413:2468537,551327,115847 -k1,14224:30114492,25041413:-2468537 -) -(1,14224:30114492,25041413:2468537,435480,115847 -g1,14224:30821193,25041413 -g1,14224:31524617,25041413 -h1,14224:32579752,25041413:0,411205,112570 -) -k1,14224:32583029,25041413:0 -) -(1,14225:6630773,25882901:25952256,505283,122846 -g1,14224:8021447,25882901 -(1,14224:8021447,25882901:0,452978,122846 -r1,14259:12600255,25882901:4578808,575824,122846 -k1,14224:8021447,25882901:-4578808 -) -(1,14224:8021447,25882901:4578808,452978,122846 -g1,14224:9783283,25882901 -g1,14224:10486707,25882901 -h1,14224:12596978,25882901:0,411205,112570 -) -k1,14225:32583029,25882901:19809104 -g1,14225:32583029,25882901 -) -v1,14227:6630773,26868556:0,393216,0 -(1,14232:6630773,27824665:25952256,1349325,196608 -g1,14232:6630773,27824665 -g1,14232:6630773,27824665 -g1,14232:6434165,27824665 -(1,14232:6434165,27824665:0,1349325,196608 -r1,14259:32779637,27824665:26345472,1545933,196608 -k1,14232:6434165,27824665:-26345472 -) -(1,14232:6434165,27824665:26345472,1349325,196608 -[1,14232:6630773,27824665:25952256,1152717,0 -(1,14229:6630773,27082466:25952256,410518,107478 -(1,14228:6630773,27082466:0,0,0 -g1,14228:6630773,27082466 -g1,14228:6630773,27082466 -g1,14228:6303093,27082466 -(1,14228:6303093,27082466:0,0,0 -) -g1,14228:6630773,27082466 -) -k1,14229:6630773,27082466:0 -g1,14229:12953688,27082466 -g1,14229:13585980,27082466 -g1,14229:15799002,27082466 -g1,14229:17695877,27082466 -g1,14229:18328169,27082466 -g1,14229:19592752,27082466 -h1,14229:19908898,27082466:0,0,0 -k1,14229:32583029,27082466:12674131 -g1,14229:32583029,27082466 -) -(1,14230:6630773,27748644:25952256,410518,76021 -h1,14230:6630773,27748644:0,0,0 -g1,14230:6946919,27748644 -g1,14230:7263065,27748644 -g1,14230:12953688,27748644 -g1,14230:13585980,27748644 -h1,14230:15482854,27748644:0,0,0 -k1,14230:32583030,27748644:17100176 -g1,14230:32583030,27748644 -) -] -) -g1,14232:32583029,27824665 -g1,14232:6630773,27824665 -g1,14232:6630773,27824665 -g1,14232:32583029,27824665 -g1,14232:32583029,27824665 -) -h1,14232:6630773,28021273:0,0,0 -(1,14235:6630773,37489952:25952256,9083666,0 -k1,14235:10523651,37489952:3892878 -h1,14234:10523651,37489952:0,0,0 -(1,14234:10523651,37489952:18166500,9083666,0 -(1,14234:10523651,37489952:18167376,9083688,0 -(1,14234:10523651,37489952:18167376,9083688,0 -(1,14234:10523651,37489952:0,9083688,0 -(1,14234:10523651,37489952:0,14208860,0 -(1,14234:10523651,37489952:28417720,14208860,0 -) -k1,14234:10523651,37489952:-28417720 -) -) -g1,14234:28691027,37489952 -) -) -) -g1,14235:28690151,37489952 -k1,14235:32583029,37489952:3892878 -) -(1,14242:6630773,38331440:25952256,505283,134348 -h1,14241:6630773,38331440:983040,0,0 -k1,14241:9645663,38331440:240096 -k1,14241:10241618,38331440:240095 -k1,14241:11475240,38331440:240096 -k1,14241:12583688,38331440:240096 -k1,14241:13928066,38331440:240096 -k1,14241:15634857,38331440:240095 -k1,14241:17312158,38331440:240096 -k1,14241:18313782,38331440:240096 -k1,14241:20291892,38331440:240095 -k1,14241:23758981,38331440:240096 -k1,14241:27401706,38331440:240096 -k1,14241:28293230,38331440:240096 -k1,14241:29625810,38331440:240095 -k1,14241:31563944,38331440:240096 -k1,14241:32583029,38331440:0 -) -(1,14242:6630773,39172928:25952256,513147,7863 -g1,14241:9525498,39172928 -g1,14241:10256224,39172928 -k1,14242:32583030,39172928:20285360 -g1,14242:32583030,39172928 -) -v1,14244:6630773,40158584:0,393216,0 -(1,14249:6630773,41146150:25952256,1380782,196608 -g1,14249:6630773,41146150 -g1,14249:6630773,41146150 -g1,14249:6434165,41146150 -(1,14249:6434165,41146150:0,1380782,196608 -r1,14259:32779637,41146150:26345472,1577390,196608 -k1,14249:6434165,41146150:-26345472 -) -(1,14249:6434165,41146150:26345472,1380782,196608 -[1,14249:6630773,41146150:25952256,1184174,0 -(1,14246:6630773,40372494:25952256,410518,107478 -(1,14245:6630773,40372494:0,0,0 -g1,14245:6630773,40372494 -g1,14245:6630773,40372494 -g1,14245:6303093,40372494 -(1,14245:6303093,40372494:0,0,0 -) -g1,14245:6630773,40372494 -) -k1,14246:6630773,40372494:0 -g1,14246:12953688,40372494 -g1,14246:13585980,40372494 -g1,14246:15799002,40372494 -g1,14246:17695877,40372494 -g1,14246:18328169,40372494 -g1,14246:19592752,40372494 -h1,14246:19908898,40372494:0,0,0 -k1,14246:32583029,40372494:12674131 -g1,14246:32583029,40372494 -) -(1,14247:6630773,41038672:25952256,410518,107478 -h1,14247:6630773,41038672:0,0,0 -g1,14247:6946919,41038672 -g1,14247:7263065,41038672 -g1,14247:12953688,41038672 -g1,14247:13585980,41038672 -g1,14247:15799000,41038672 -g1,14247:17379729,41038672 -g1,14247:18012021,41038672 -g1,14247:21173479,41038672 -g1,14247:21805771,41038672 -g1,14247:22754209,41038672 -g1,14247:23702646,41038672 -g1,14247:24334938,41038672 -h1,14247:25599520,41038672:0,0,0 -k1,14247:32583029,41038672:6983509 -g1,14247:32583029,41038672 -) -] -) -g1,14249:32583029,41146150 -g1,14249:6630773,41146150 -g1,14249:6630773,41146150 -g1,14249:32583029,41146150 -g1,14249:32583029,41146150 -) -h1,14249:6630773,41342758:0,0,0 -v1,14253:6630773,42823200:0,393216,0 -(1,14254:6630773,45090731:25952256,2660747,616038 -g1,14254:6630773,45090731 -(1,14254:6630773,45090731:25952256,2660747,616038 -(1,14254:6630773,45706769:25952256,3276785,0 -[1,14254:6630773,45706769:25952256,3276785,0 -(1,14254:6630773,45680555:25952256,3224357,0 -r1,14259:6656987,45680555:26214,3224357,0 -[1,14254:6656987,45680555:25899828,3224357,0 -(1,14254:6656987,45090731:25899828,2044709,0 -[1,14254:7246811,45090731:24720180,2044709,0 -(1,14254:7246811,44133396:24720180,1087374,134348 -k1,14253:8625439,44133396:168925 -k1,14253:10044135,44133396:168924 -k1,14253:11232145,44133396:168925 -k1,14253:12897257,44133396:168925 -k1,14253:14921506,44133396:168925 -k1,14253:15815258,44133396:168924 -k1,14253:16670345,44133396:168925 -k1,14253:17490698,44133396:168925 -k1,14253:18936920,44133396:168925 -k1,14253:19721882,44133396:168924 -k1,14253:20909892,44133396:168925 -k1,14253:22732290,44133396:168925 -k1,14253:24756539,44133396:168925 -k1,14253:26580247,44133396:168924 -k1,14253:28994435,44133396:168925 -k1,14253:31019340,44133396:168925 -k1,14253:31966991,44133396:0 -) -(1,14254:7246811,44974884:24720180,513147,115847 -g1,14253:9100824,44974884 -g1,14253:12062396,44974884 -g1,14253:14272270,44974884 -g1,14253:15419150,44974884 -(1,14253:15419150,44974884:0,414482,115847 -r1,14259:16832551,44974884:1413401,530329,115847 -k1,14253:15419150,44974884:-1413401 -) -(1,14253:15419150,44974884:1413401,414482,115847 -k1,14253:15419150,44974884:3277 -h1,14253:16829274,44974884:0,411205,112570 -) -g1,14253:17031780,44974884 -g1,14253:17913894,44974884 -g1,14253:19060774,44974884 -g1,14253:20914787,44974884 -g1,14253:23876359,44974884 -g1,14253:26086233,44974884 -g1,14253:27233113,44974884 -(1,14253:27233113,44974884:0,452978,115847 -r1,14259:27943091,44974884:709978,568825,115847 -k1,14253:27233113,44974884:-709978 -) -(1,14253:27233113,44974884:709978,452978,115847 -k1,14253:27233113,44974884:3277 -h1,14253:27939814,44974884:0,411205,112570 -) -k1,14254:31966991,44974884:3850230 -g1,14254:31966991,44974884 -) -] -) -] -r1,14259:32583029,45680555:26214,3224357,0 -) -] -) -) -g1,14254:32583029,45090731 -) -h1,14254:6630773,45706769:0,0,0 -] -(1,14259:32583029,45706769:0,0,0 -g1,14259:32583029,45706769 -) -) -] -(1,14259:6630773,47279633:25952256,0,0 -h1,14259:6630773,47279633:25952256,0,0 -) -] -(1,14259:4262630,4025873:0,0,0 -[1,14259:-473656,4025873:0,0,0 -(1,14259:-473656,-710413:0,0,0 -(1,14259:-473656,-710413:0,0,0 -g1,14259:-473656,-710413 -) -g1,14259:-473656,-710413 -) -] -) -] -!22767 -}273 -Input:2168:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2169:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2170:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2171:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2172:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2173:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2174:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2175:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2176:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2177:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2178:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2179:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2180:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2181:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2182:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1392 -{274 -[1,14316:4262630,47279633:28320399,43253760,0 -(1,14316:4262630,4025873:0,0,0 -[1,14316:-473656,4025873:0,0,0 -(1,14316:-473656,-710413:0,0,0 -(1,14316:-473656,-644877:0,0,0 -k1,14316:-473656,-644877:-65536 -) -(1,14316:-473656,4736287:0,0,0 -k1,14316:-473656,4736287:5209943 -) -g1,14316:-473656,-710413 -) -] -) -[1,14316:6630773,47279633:25952256,43253760,0 -[1,14316:6630773,4812305:25952256,786432,0 -(1,14316:6630773,4812305:25952256,485622,11795 -(1,14316:6630773,4812305:25952256,485622,11795 -g1,14316:3078558,4812305 -[1,14316:3078558,4812305:0,0,0 -(1,14316:3078558,2439708:0,1703936,0 -k1,14316:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,14316:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,14316:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,14316:3078558,4812305:0,0,0 -(1,14316:3078558,2439708:0,1703936,0 -g1,14316:29030814,2439708 -g1,14316:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,14316:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,14316:37855564,2439708:1179648,16384,0 -) -) -k1,14316:3078556,2439708:-34777008 -) -] -[1,14316:3078558,4812305:0,0,0 -(1,14316:3078558,49800853:0,16384,2228224 -k1,14316:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,14316:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,14316:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,14316:3078558,4812305:0,0,0 -(1,14316:3078558,49800853:0,16384,2228224 -g1,14316:29030814,49800853 -g1,14316:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,14316:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,14316:37855564,49800853:1179648,16384,0 -) -) -k1,14316:3078556,49800853:-34777008 -) -] -g1,14316:6630773,4812305 -g1,14316:6630773,4812305 -g1,14316:9560887,4812305 -k1,14316:31387651,4812305:21826764 -) -) -] -[1,14316:6630773,45706769:25952256,40108032,0 -(1,14316:6630773,45706769:25952256,40108032,0 -(1,14316:6630773,45706769:0,0,0 -g1,14316:6630773,45706769 -) -[1,14316:6630773,45706769:25952256,40108032,0 -(1,14257:6630773,6254097:25952256,513147,126483 -h1,14256:6630773,6254097:983040,0,0 -k1,14256:10075099,6254097:225198 -k1,14256:14275711,6254097:225198 -k1,14256:17526706,6254097:225198 -k1,14256:19025269,6254097:225198 -k1,14256:21706756,6254097:225198 -k1,14256:23123399,6254097:225198 -k1,14256:27049415,6254097:225198 -k1,14256:30300410,6254097:225198 -k1,14256:32583029,6254097:0 -) -(1,14257:6630773,7095585:25952256,505283,7863 -g1,14256:7934284,7095585 -g1,14256:9419329,7095585 -g1,14256:10366324,7095585 -k1,14257:32583029,7095585:20529808 -g1,14257:32583029,7095585 -) -v1,14259:6630773,8162270:0,393216,0 -(1,14265:6630773,9816014:25952256,2046960,196608 -g1,14265:6630773,9816014 -g1,14265:6630773,9816014 -g1,14265:6434165,9816014 -(1,14265:6434165,9816014:0,2046960,196608 -r1,14316:32779637,9816014:26345472,2243568,196608 -k1,14265:6434165,9816014:-26345472 -) -(1,14265:6434165,9816014:26345472,2046960,196608 -[1,14265:6630773,9816014:25952256,1850352,0 -(1,14261:6630773,8376180:25952256,410518,107478 -(1,14260:6630773,8376180:0,0,0 -g1,14260:6630773,8376180 -g1,14260:6630773,8376180 -g1,14260:6303093,8376180 -(1,14260:6303093,8376180:0,0,0 -) -g1,14260:6630773,8376180 -) -k1,14261:6630773,8376180:0 -g1,14261:12953688,8376180 -g1,14261:13585980,8376180 -g1,14261:15482856,8376180 -g1,14261:17379731,8376180 -g1,14261:18012023,8376180 -g1,14261:19276606,8376180 -h1,14261:19592752,8376180:0,0,0 -k1,14261:32583029,8376180:12990277 -g1,14261:32583029,8376180 -) -(1,14262:6630773,9042358:25952256,410518,82312 -h1,14262:6630773,9042358:0,0,0 -g1,14262:6946919,9042358 -g1,14262:7263065,9042358 -g1,14262:12953688,9042358 -g1,14262:13585980,9042358 -g1,14262:17379729,9042358 -g1,14262:18328167,9042358 -g1,14262:19908896,9042358 -g1,14262:20541188,9042358 -g1,14262:21173480,9042358 -g1,14262:21805772,9042358 -k1,14262:21805772,9042358:0 -h1,14262:23386502,9042358:0,0,0 -k1,14262:32583029,9042358:9196527 -g1,14262:32583029,9042358 -) -(1,14263:6630773,9708536:25952256,404226,107478 -h1,14263:6630773,9708536:0,0,0 -g1,14263:6946919,9708536 -g1,14263:7263065,9708536 -g1,14263:7579211,9708536 -g1,14263:7895357,9708536 -g1,14263:8211503,9708536 -g1,14263:8527649,9708536 -g1,14263:8843795,9708536 -g1,14263:9159941,9708536 -g1,14263:9476087,9708536 -g1,14263:9792233,9708536 -g1,14263:10108379,9708536 -g1,14263:10424525,9708536 -g1,14263:10740671,9708536 -g1,14263:11056817,9708536 -g1,14263:11372963,9708536 -g1,14263:11689109,9708536 -g1,14263:13269838,9708536 -g1,14263:13902130,9708536 -g1,14263:16115151,9708536 -g1,14263:16747443,9708536 -g1,14263:17695881,9708536 -g1,14263:18328173,9708536 -g1,14263:18960465,9708536 -h1,14263:20541193,9708536:0,0,0 -k1,14263:32583029,9708536:12041836 -g1,14263:32583029,9708536 -) -] -) -g1,14265:32583029,9816014 -g1,14265:6630773,9816014 -g1,14265:6630773,9816014 -g1,14265:32583029,9816014 -g1,14265:32583029,9816014 -) -h1,14265:6630773,10012622:0,0,0 -v1,14269:6630773,11655123:0,393216,0 -(1,14270:6630773,15497646:25952256,4235739,616038 -g1,14270:6630773,15497646 -(1,14270:6630773,15497646:25952256,4235739,616038 -(1,14270:6630773,16113684:25952256,4851777,0 -[1,14270:6630773,16113684:25952256,4851777,0 -(1,14270:6630773,16087470:25952256,4799349,0 -r1,14316:6656987,16087470:26214,4799349,0 -[1,14270:6656987,16087470:25899828,4799349,0 -(1,14270:6656987,15497646:25899828,3619701,0 -[1,14270:7246811,15497646:24720180,3619701,0 -(1,14270:7246811,12965319:24720180,1087374,134348 -k1,14269:8625051,12965319:168537 -k1,14269:10043360,12965319:168537 -k1,14269:11230982,12965319:168537 -k1,14269:12895706,12965319:168537 -k1,14269:14919567,12965319:168537 -k1,14269:15739532,12965319:168537 -k1,14269:17000553,12965319:168536 -k1,14269:17524950,12965319:168537 -k1,14269:20455830,12965319:168537 -k1,14269:23493533,12965319:168537 -k1,14269:25155636,12965319:168537 -k1,14269:26010335,12965319:168537 -$1,14269:26010335,12965319 -(1,14269:26370128,12690038:1071383,353698,7340 -) -$1,14269:27441511,12965319 -k1,14269:27783718,12965319:168537 -k1,14269:30947906,12965319:168537 -k1,14269:31966991,12965319:0 -) -(1,14270:7246811,13806807:24720180,513147,134348 -k1,14269:11277652,13806807:214024 -k1,14269:13696963,13806807:214024 -k1,14269:16469513,13806807:214024 -(1,14269:16469513,13806807:0,414482,122846 -r1,14316:17882914,13806807:1413401,537328,122846 -k1,14269:16469513,13806807:-1413401 -) -(1,14269:16469513,13806807:1413401,414482,122846 -k1,14269:16469513,13806807:3277 -h1,14269:17879637,13806807:0,411205,112570 -) -k1,14269:18096938,13806807:214024 -k1,14269:22167756,13806807:214024 -k1,14269:23279623,13806807:214024 -k1,14269:24696888,13806807:214024 -k1,14269:25672440,13806807:214024 -k1,14269:27954780,13806807:214024 -k1,14269:28828096,13806807:214024 -k1,14269:29812823,13806807:214024 -k1,14270:31966991,13806807:0 -) -(1,14270:7246811,14648295:24720180,513147,126483 -k1,14269:9163029,14648295:156576 -k1,14269:12188772,14648295:156577 -k1,14269:13536794,14648295:156577 -k1,14269:14454898,14648295:156576 -k1,14269:16679790,14648295:156576 -k1,14269:17495659,14648295:156577 -k1,14269:18422938,14648295:156576 -k1,14269:21884496,14648295:156577 -k1,14269:24199828,14648295:156576 -k1,14269:27051901,14648295:156577 -k1,14269:29590056,14648295:156577 -k1,14269:30508160,14648295:156576 -k1,14269:31966991,14648295:0 -) -(1,14270:7246811,15489783:24720180,505283,7863 -k1,14270:31966992,15489783:23050324 -g1,14270:31966992,15489783 -) -] -) -] -r1,14316:32583029,16087470:26214,4799349,0 -) -] -) -) -g1,14270:32583029,15497646 -) -h1,14270:6630773,16113684:0,0,0 -(1,14275:6630773,18605451:25952256,555811,12975 -(1,14275:6630773,18605451:2450326,534184,12975 -g1,14275:6630773,18605451 -g1,14275:9081099,18605451 -) -k1,14275:32583029,18605451:19484376 -g1,14275:32583029,18605451 -) -(1,14280:6630773,19840155:25952256,505283,126483 -k1,14279:8034663,19840155:207203 -k1,14279:11750008,19840155:207203 -k1,14279:15086555,19840155:207203 -k1,14279:15909796,19840155:207203 -k1,14279:17320240,19840155:207203 -k1,14279:19806130,19840155:207203 -k1,14279:21117614,19840155:207202 -k1,14279:22072583,19840155:207203 -k1,14279:26816188,19840155:207203 -k1,14279:27832761,19840155:207203 -k1,14279:29205194,19840155:207203 -k1,14279:30801760,19840155:207203 -k1,14279:32583029,19840155:0 -) -(1,14280:6630773,20681643:25952256,513147,126483 -k1,14279:7457603,20681643:143945 -k1,14279:9903828,20681643:143945 -k1,14279:10857143,20681643:143945 -k1,14279:12509727,20681643:143945 -k1,14279:14157723,20681643:143945 -k1,14279:16734364,20681643:143945 -k1,14279:18162815,20681643:143945 -k1,14279:18772721,20681643:143945 -k1,14279:20488875,20681643:143945 -k1,14279:22447512,20681643:143945 -k1,14279:23583017,20681643:143945 -k1,14279:26659698,20681643:143945 -k1,14279:27911857,20681643:143945 -k1,14279:29074887,20681643:143945 -k1,14279:32583029,20681643:0 -) -(1,14280:6630773,21523131:25952256,513147,11795 -k1,14279:7958095,21523131:194860 -k1,14279:8900722,21523131:194861 -k1,14279:12324541,21523131:194860 -k1,14279:14087022,21523131:194860 -k1,14279:15300968,21523131:194861 -k1,14279:17575941,21523131:194860 -k1,14279:18430093,21523131:194860 -k1,14279:22696706,21523131:194861 -k1,14279:24901555,21523131:194860 -k1,14279:26793142,21523131:194860 -k1,14279:28976365,21523131:194861 -k1,14279:30768337,21523131:194860 -k1,14279:32583029,21523131:0 -) -(1,14280:6630773,22364619:25952256,513147,134348 -k1,14279:7895430,22364619:160375 -k1,14279:8803571,22364619:160375 -k1,14279:11185617,22364619:160375 -k1,14279:13044030,22364619:160375 -k1,14279:16101752,22364619:160375 -k1,14279:18865872,22364619:160375 -k1,14279:19382107,22364619:160375 -k1,14279:21114691,22364619:160375 -k1,14279:21957951,22364619:160375 -k1,14279:22879854,22364619:160375 -k1,14279:25108545,22364619:160375 -k1,14279:25928212,22364619:160375 -k1,14279:29114384,22364619:160375 -(1,14279:29114384,22364619:0,452978,115847 -r1,14316:31231209,22364619:2116825,568825,115847 -k1,14279:29114384,22364619:-2116825 -) -(1,14279:29114384,22364619:2116825,452978,115847 -k1,14279:29114384,22364619:3277 -h1,14279:31227932,22364619:0,411205,112570 -) -k1,14279:31391584,22364619:160375 -k1,14280:32583029,22364619:0 -) -(1,14280:6630773,23206107:25952256,513147,134348 -(1,14279:6630773,23206107:0,452978,115847 -r1,14316:8747598,23206107:2116825,568825,115847 -k1,14279:6630773,23206107:-2116825 -) -(1,14279:6630773,23206107:2116825,452978,115847 -k1,14279:6630773,23206107:3277 -h1,14279:8744321,23206107:0,411205,112570 -) -k1,14279:9136528,23206107:215260 -k1,14279:10401674,23206107:215259 -k1,14279:12895621,23206107:215260 -h1,14279:14264668,23206107:0,0,0 -k1,14279:14479927,23206107:215259 -k1,14279:15504557,23206107:215260 -k1,14279:17217969,23206107:215259 -h1,14279:18413346,23206107:0,0,0 -k1,14279:18628606,23206107:215260 -k1,14279:19791516,23206107:215259 -k1,14279:20777479,23206107:215260 -k1,14279:24725013,23206107:215259 -k1,14279:25599565,23206107:215260 -k1,14279:27145205,23206107:215259 -k1,14279:30768337,23206107:215260 -k1,14279:32583029,23206107:0 -) -(1,14280:6630773,24047595:25952256,513147,138281 -k1,14279:7997322,24047595:262267 -k1,14279:9007355,24047595:262267 -k1,14279:10782847,24047595:262266 -k1,14279:11696542,24047595:262267 -k1,14279:13757772,24047595:262267 -k1,14279:15287505,24047595:262267 -k1,14279:15905632,24047595:262267 -k1,14279:17445195,24047595:262266 -k1,14279:20167684,24047595:262267 -k1,14279:23506866,24047595:262267 -k1,14279:24428425,24047595:262267 -$1,14279:24428425,24047595 -$1,14279:24931086,24047595 -k1,14279:25193353,24047595:262267 -k1,14279:26647065,24047595:262267 -$1,14279:26647065,24047595 -$1,14279:27198878,24047595 -k1,14279:27461144,24047595:262266 -k1,14279:29734056,24047595:262267 -k1,14279:31563944,24047595:262267 -k1,14279:32583029,24047595:0 -) -(1,14280:6630773,24889083:25952256,505283,7863 -k1,14280:32583029,24889083:24389222 -g1,14280:32583029,24889083 -) -(1,14282:6630773,25730571:25952256,513147,134348 -h1,14281:6630773,25730571:983040,0,0 -k1,14281:8330215,25730571:246509 -k1,14281:9108221,25730571:246509 -k1,14281:11984690,25730571:246509 -k1,14281:12882627,25730571:246509 -k1,14281:16696916,25730571:246509 -k1,14281:18332788,25730571:246509 -k1,14281:19388667,25730571:246509 -k1,14281:20654260,25730571:246508 -k1,14281:21696376,25730571:246509 -k1,14281:23640923,25730571:246509 -k1,14281:26585549,25730571:246509 -k1,14281:27785607,25730571:246509 -k1,14281:30701397,25730571:246509 -k1,14281:31563944,25730571:246509 -k1,14281:32583029,25730571:0 -) -(1,14282:6630773,26572059:25952256,513147,126483 -k1,14281:8496036,26572059:211790 -k1,14281:10986514,26572059:211791 -k1,14281:12217389,26572059:211790 -k1,14281:15900622,26572059:211791 -k1,14281:16771704,26572059:211790 -k1,14281:20017812,26572059:211791 -k1,14281:20888894,26572059:211790 -k1,14281:23302694,26572059:211790 -k1,14281:26411176,26572059:211791 -k1,14281:27814411,26572059:211790 -k1,14281:28685494,26572059:211791 -k1,14281:31896867,26572059:211790 -k1,14282:32583029,26572059:0 -) -(1,14282:6630773,27413547:25952256,505283,134348 -(1,14281:6630773,27413547:0,452978,115847 -r1,14316:11561293,27413547:4930520,568825,115847 -k1,14281:6630773,27413547:-4930520 -) -(1,14281:6630773,27413547:4930520,452978,115847 -k1,14281:6630773,27413547:3277 -h1,14281:11558016,27413547:0,411205,112570 -) -k1,14281:11789403,27413547:228110 -k1,14281:14029469,27413547:228111 -k1,14281:15896634,27413547:228110 -k1,14281:16776173,27413547:228111 -k1,14281:17752049,27413547:228110 -k1,14281:21209119,27413547:228111 -k1,14281:26289515,27413547:228110 -k1,14281:27709071,27413547:228111 -k1,14281:29902606,27413547:228110 -k1,14281:32583029,27413547:0 -) -(1,14282:6630773,28255035:25952256,505283,134348 -g1,14281:8223953,28255035 -g1,14281:8779042,28255035 -g1,14281:10851290,28255035 -k1,14282:32583029,28255035:20000278 -g1,14282:32583029,28255035 -) -(1,14284:6630773,29096523:25952256,513147,134348 -h1,14283:6630773,29096523:983040,0,0 -k1,14283:8852741,29096523:196906 -k1,14283:10142132,29096523:196906 -k1,14283:10955075,29096523:196905 -k1,14283:12171066,29096523:196906 -k1,14283:15533361,29096523:196906 -k1,14283:16598619,29096523:196906 -k1,14283:19527721,29096523:196906 -k1,14283:21416767,29096523:196906 -k1,14283:24458590,29096523:196905 -k1,14283:28194440,29096523:196906 -k1,14283:31019995,29096523:196906 -k1,14284:32583029,29096523:0 -k1,14284:32583029,29096523:0 -) -v1,14286:6630773,30163208:0,393216,0 -(1,14294:6630773,33117851:25952256,3347859,196608 -g1,14294:6630773,33117851 -g1,14294:6630773,33117851 -g1,14294:6434165,33117851 -(1,14294:6434165,33117851:0,3347859,196608 -r1,14316:32779637,33117851:26345472,3544467,196608 -k1,14294:6434165,33117851:-26345472 -) -(1,14294:6434165,33117851:26345472,3347859,196608 -[1,14294:6630773,33117851:25952256,3151251,0 -(1,14288:6630773,30377118:25952256,410518,76021 -(1,14287:6630773,30377118:0,0,0 -g1,14287:6630773,30377118 -g1,14287:6630773,30377118 -g1,14287:6303093,30377118 -(1,14287:6303093,30377118:0,0,0 -) -g1,14287:6630773,30377118 -) -g1,14288:9792230,30377118 -g1,14288:10740668,30377118 -k1,14288:10740668,30377118:0 -h1,14288:14218271,30377118:0,0,0 -k1,14288:32583029,30377118:18364758 -g1,14288:32583029,30377118 -) -(1,14289:6630773,31043296:25952256,404226,101187 -h1,14289:6630773,31043296:0,0,0 -g1,14289:6946919,31043296 -g1,14289:7263065,31043296 -g1,14289:7895357,31043296 -g1,14289:8527649,31043296 -g1,14289:12321398,31043296 -g1,14289:13902127,31043296 -g1,14289:14534419,31043296 -g1,14289:15482857,31043296 -g1,14289:16431294,31043296 -g1,14289:17063586,31043296 -k1,14289:17063586,31043296:0 -h1,14289:18644315,31043296:0,0,0 -k1,14289:32583029,31043296:13938714 -g1,14289:32583029,31043296 -) -(1,14290:6630773,31709474:25952256,404226,82312 -h1,14290:6630773,31709474:0,0,0 -g1,14290:6946919,31709474 -g1,14290:7263065,31709474 -g1,14290:7579211,31709474 -g1,14290:7895357,31709474 -g1,14290:8211503,31709474 -g1,14290:8527649,31709474 -g1,14290:8843795,31709474 -g1,14290:9159941,31709474 -g1,14290:12321398,31709474 -g1,14290:13902127,31709474 -g1,14290:14534419,31709474 -g1,14290:15482857,31709474 -g1,14290:16431294,31709474 -g1,14290:17063586,31709474 -k1,14290:17063586,31709474:0 -h1,14290:18960460,31709474:0,0,0 -k1,14290:32583029,31709474:13622569 -g1,14290:32583029,31709474 -) -(1,14291:6630773,32375652:25952256,410518,107478 -h1,14291:6630773,32375652:0,0,0 -g1,14291:6946919,32375652 -g1,14291:7263065,32375652 -g1,14291:9159939,32375652 -g1,14291:9792231,32375652 -g1,14291:15482855,32375652 -g1,14291:17063584,32375652 -g1,14291:19908896,32375652 -h1,14291:21489624,32375652:0,0,0 -k1,14291:32583029,32375652:11093405 -g1,14291:32583029,32375652 -) -(1,14292:6630773,33041830:25952256,404226,76021 -h1,14292:6630773,33041830:0,0,0 -g1,14292:6946919,33041830 -g1,14292:7263065,33041830 -h1,14292:7579211,33041830:0,0,0 -k1,14292:32583029,33041830:25003818 -g1,14292:32583029,33041830 -) -] -) -g1,14294:32583029,33117851 -g1,14294:6630773,33117851 -g1,14294:6630773,33117851 -g1,14294:32583029,33117851 -g1,14294:32583029,33117851 -) -h1,14294:6630773,33314459:0,0,0 -(1,14298:6630773,34556453:25952256,513147,126483 -h1,14297:6630773,34556453:983040,0,0 -k1,14297:8813515,34556453:246153 -k1,14297:10192130,34556453:246153 -k1,14297:12166468,34556453:246154 -k1,14297:12768481,34556453:246153 -k1,14297:15048872,34556453:246153 -k1,14297:17464267,34556453:246153 -k1,14297:18987717,34556453:246153 -k1,14297:19849909,34556453:246154 -k1,14297:20451922,34556453:246153 -k1,14297:22542913,34556453:246153 -k1,14297:23448358,34556453:246153 -k1,14297:26859900,34556453:246153 -k1,14297:27830882,34556453:246154 -k1,14297:29361541,34556453:246153 -k1,14297:30626779,34556453:246153 -k1,14298:32583029,34556453:0 -) -(1,14298:6630773,35397941:25952256,513147,134348 -k1,14297:8655966,35397941:251789 -k1,14297:9899315,35397941:251789 -k1,14297:12021502,35397941:251789 -k1,14297:12924720,35397941:251790 -k1,14297:16678098,35397941:251789 -k1,14297:17883436,35397941:251789 -k1,14297:19441358,35397941:251789 -k1,14297:20890490,35397941:251789 -k1,14297:22371079,35397941:251789 -k1,14297:23641953,35397941:251789 -k1,14297:25805428,35397941:251790 -k1,14297:26685052,35397941:251789 -k1,14297:28140082,35397941:251789 -k1,14297:29932622,35397941:251789 -k1,14297:31052763,35397941:251789 -k1,14297:32583029,35397941:0 -) -(1,14298:6630773,36239429:25952256,513147,134348 -k1,14297:7562739,36239429:280538 -k1,14297:9280482,36239429:280538 -k1,14297:10247182,36239429:280538 -k1,14297:11298424,36239429:280539 -k1,14297:14651290,36239429:280538 -k1,14297:15583256,36239429:280538 -(1,14297:15583256,36239429:0,452978,115847 -r1,14316:20513776,36239429:4930520,568825,115847 -k1,14297:15583256,36239429:-4930520 -) -(1,14297:15583256,36239429:4930520,452978,115847 -k1,14297:15583256,36239429:3277 -h1,14297:20510499,36239429:0,411205,112570 -) -k1,14297:20967984,36239429:280538 -k1,14297:22267607,36239429:280538 -(1,14297:22267607,36239429:0,414482,122846 -r1,14316:23681008,36239429:1413401,537328,122846 -k1,14297:22267607,36239429:-1413401 -) -(1,14297:22267607,36239429:1413401,414482,122846 -k1,14297:22267607,36239429:3277 -h1,14297:23677731,36239429:0,411205,112570 -) -k1,14297:23961546,36239429:280538 -k1,14297:24893512,36239429:280538 -k1,14297:26440207,36239429:280539 -k1,14297:27406907,36239429:280538 -k1,14297:28706530,36239429:280538 -k1,14297:31252648,36239429:280538 -k1,14298:32583029,36239429:0 -) -(1,14298:6630773,37080917:25952256,513147,134348 -(1,14297:6630773,37080917:0,452978,122846 -r1,14316:12616428,37080917:5985655,575824,122846 -k1,14297:6630773,37080917:-5985655 -) -(1,14297:6630773,37080917:5985655,452978,122846 -k1,14297:6630773,37080917:3277 -h1,14297:12613151,37080917:0,411205,112570 -) -k1,14297:13034107,37080917:244009 -k1,14297:15679356,37080917:244010 -k1,14297:17312728,37080917:244009 -k1,14297:18504388,37080917:244009 -k1,14297:21272844,37080917:244009 -k1,14297:23123797,37080917:244010 -k1,14297:24742751,37080917:244009 -k1,14297:25602798,37080917:244009 -k1,14297:28512812,37080917:244009 -k1,14297:29408250,37080917:244010 -k1,14297:30671344,37080917:244009 -k1,14297:32583029,37080917:0 -) -(1,14298:6630773,37922405:25952256,513147,126483 -k1,14297:8158401,37922405:146784 -k1,14297:10966603,37922405:146785 -k1,14297:12536174,37922405:146784 -k1,14297:13038818,37922405:146784 -k1,14297:15559316,37922405:146784 -k1,14297:18680780,37922405:146785 -k1,14297:19513726,37922405:146784 -k1,14297:20679595,37922405:146784 -k1,14297:23584135,37922405:146785 -k1,14297:25411262,37922405:146784 -k1,14297:26225202,37922405:146784 -(1,14297:26225202,37922405:0,452978,115847 -r1,14316:27990315,37922405:1765113,568825,115847 -k1,14297:26225202,37922405:-1765113 -) -(1,14297:26225202,37922405:1765113,452978,115847 -k1,14297:26225202,37922405:3277 -h1,14297:27987038,37922405:0,411205,112570 -) -k1,14297:28137099,37922405:146784 -k1,14297:29515961,37922405:146785 -k1,14297:30681830,37922405:146784 -k1,14298:32583029,37922405:0 -) -(1,14298:6630773,38763893:25952256,513147,134348 -k1,14297:7834391,38763893:230408 -k1,14297:9012449,38763893:230407 -(1,14297:9012449,38763893:0,452978,122846 -r1,14316:13239545,38763893:4227096,575824,122846 -k1,14297:9012449,38763893:-4227096 -) -(1,14297:9012449,38763893:4227096,452978,122846 -k1,14297:9012449,38763893:3277 -h1,14297:13236268,38763893:0,411205,112570 -) -k1,14297:13469953,38763893:230408 -k1,14297:14509730,38763893:230407 -k1,14297:16238291,38763893:230408 -h1,14297:17433668,38763893:0,0,0 -k1,14297:17664076,38763893:230408 -k1,14297:18703853,38763893:230407 -k1,14297:19953346,38763893:230408 -k1,14297:21276238,38763893:230407 -k1,14297:22165938,38763893:230408 -k1,14297:24180891,38763893:230408 -k1,14297:25097460,38763893:230407 -(1,14297:25097460,38763893:0,452978,115847 -r1,14316:26862573,38763893:1765113,568825,115847 -k1,14297:25097460,38763893:-1765113 -) -(1,14297:25097460,38763893:1765113,452978,115847 -k1,14297:25097460,38763893:3277 -h1,14297:26859296,38763893:0,411205,112570 -) -k1,14297:27473745,38763893:230408 -k1,14297:30043132,38763893:230407 -k1,14297:30932832,38763893:230408 -k1,14298:32583029,38763893:0 -) -(1,14298:6630773,39605381:25952256,505283,134348 -k1,14297:7889045,39605381:268023 -(1,14297:7889045,39605381:0,452978,115847 -r1,14316:10005870,39605381:2116825,568825,115847 -k1,14297:7889045,39605381:-2116825 -) -(1,14297:7889045,39605381:2116825,452978,115847 -k1,14297:7889045,39605381:3277 -h1,14297:10002593,39605381:0,411205,112570 -) -k1,14297:10273893,39605381:268023 -k1,14297:11228079,39605381:268024 -k1,14297:12266805,39605381:268023 -k1,14297:15607156,39605381:268023 -k1,14297:16526607,39605381:268023 -k1,14297:20075363,39605381:268024 -(1,14297:20075363,39605381:0,459977,115847 -r1,14316:21137052,39605381:1061689,575824,115847 -k1,14297:20075363,39605381:-1061689 -) -(1,14297:20075363,39605381:1061689,459977,115847 -k1,14297:20075363,39605381:3277 -h1,14297:21133775,39605381:0,411205,112570 -) -k1,14297:21405075,39605381:268023 -k1,14297:23913774,39605381:268023 -k1,14297:26049573,39605381:268023 -(1,14297:26049573,39605381:0,459977,115847 -r1,14316:27814686,39605381:1765113,575824,115847 -k1,14297:26049573,39605381:-1765113 -) -(1,14297:26049573,39605381:1765113,459977,115847 -k1,14297:26049573,39605381:3277 -h1,14297:27811409,39605381:0,411205,112570 -) -k1,14297:28463474,39605381:268024 -k1,14297:29599849,39605381:268023 -k1,14297:30972154,39605381:268023 -k1,14297:32583029,39605381:0 -) -(1,14298:6630773,40446869:25952256,513147,126483 -k1,14297:7321940,40446869:225206 -k1,14297:10076835,40446869:225205 -k1,14297:12004011,40446869:225206 -k1,14297:15219625,40446869:225206 -k1,14297:18470628,40446869:225206 -k1,14297:19842059,40446869:225206 -(1,14297:19842059,40446869:0,452978,115847 -r1,14316:22662308,40446869:2820249,568825,115847 -k1,14297:19842059,40446869:-2820249 -) -(1,14297:19842059,40446869:2820249,452978,115847 -k1,14297:19842059,40446869:3277 -h1,14297:22659031,40446869:0,411205,112570 -) -k1,14297:23061183,40446869:225205 -k1,14297:23914224,40446869:225206 -k1,14297:25158515,40446869:225206 -k1,14297:26750801,40446869:225205 -k1,14297:27635299,40446869:225206 -k1,14297:29557232,40446869:225206 -k1,14297:32583029,40446869:0 -) -(1,14298:6630773,41288357:25952256,505283,134348 -k1,14297:8106896,41288357:191617 -k1,14297:10309158,41288357:191617 -k1,14297:10856635,41288357:191617 -k1,14297:12921271,41288357:191617 -k1,14297:16321531,41288357:191617 -k1,14297:18367162,41288357:191617 -k1,14297:19427131,41288357:191617 -k1,14297:21055953,41288357:191617 -k1,14297:23060296,41288357:191617 -k1,14297:23934798,41288357:191617 -k1,14297:27101094,41288357:191617 -k1,14297:29488822,41288357:191617 -k1,14297:31074390,41288357:191617 -k1,14297:32583029,41288357:0 -) -(1,14298:6630773,42129845:25952256,459977,134348 -g1,14297:9071989,42129845 -g1,14297:9957380,42129845 -g1,14297:10927312,42129845 -g1,14297:14198869,42129845 -g1,14297:15049526,42129845 -g1,14297:18529487,42129845 -(1,14297:18529487,42129845:0,459977,115847 -r1,14316:19591176,42129845:1061689,575824,115847 -k1,14297:18529487,42129845:-1061689 -) -(1,14297:18529487,42129845:1061689,459977,115847 -k1,14297:18529487,42129845:3277 -h1,14297:19587899,42129845:0,411205,112570 -) -k1,14298:32583029,42129845:12818183 -g1,14298:32583029,42129845 -) -v1,14300:6630773,43196530:0,393216,0 -(1,14307:6630773,45510161:25952256,2706847,196608 -g1,14307:6630773,45510161 -g1,14307:6630773,45510161 -g1,14307:6434165,45510161 -(1,14307:6434165,45510161:0,2706847,196608 -r1,14316:32779637,45510161:26345472,2903455,196608 -k1,14307:6434165,45510161:-26345472 -) -(1,14307:6434165,45510161:26345472,2706847,196608 -[1,14307:6630773,45510161:25952256,2510239,0 -(1,14302:6630773,43410440:25952256,410518,107478 -(1,14301:6630773,43410440:0,0,0 -g1,14301:6630773,43410440 -g1,14301:6630773,43410440 -g1,14301:6303093,43410440 -(1,14301:6303093,43410440:0,0,0 -) -g1,14301:6630773,43410440 -) -k1,14302:6630773,43410440:0 -g1,14302:10424522,43410440 -g1,14302:11056814,43410440 -g1,14302:14534417,43410440 -g1,14302:16431292,43410440 -g1,14302:17063584,43410440 -g1,14302:18012022,43410440 -g1,14302:18644314,43410440 -g1,14302:19276606,43410440 -g1,14302:21805772,43410440 -h1,14302:22121918,43410440:0,0,0 -k1,14302:32583029,43410440:10461111 -g1,14302:32583029,43410440 -) -(1,14303:6630773,44076618:25952256,404226,107478 -h1,14303:6630773,44076618:0,0,0 -g1,14303:6946919,44076618 -g1,14303:7263065,44076618 -g1,14303:12637542,44076618 -g1,14303:13269834,44076618 -g1,14303:14534417,44076618 -h1,14303:14850563,44076618:0,0,0 -k1,14303:32583029,44076618:17732466 -g1,14303:32583029,44076618 -) -(1,14304:6630773,44742796:25952256,410518,107478 -h1,14304:6630773,44742796:0,0,0 -g1,14304:6946919,44742796 -g1,14304:7263065,44742796 -g1,14304:12637542,44742796 -g1,14304:13269834,44742796 -g1,14304:15799000,44742796 -g1,14304:17379729,44742796 -g1,14304:18012021,44742796 -k1,14304:18012021,44742796:0 -h1,14304:20541187,44742796:0,0,0 -k1,14304:32583029,44742796:12041842 -g1,14304:32583029,44742796 -) -(1,14305:6630773,45408974:25952256,404226,101187 -h1,14305:6630773,45408974:0,0,0 -g1,14305:6946919,45408974 -g1,14305:7263065,45408974 -g1,14305:7579211,45408974 -g1,14305:7895357,45408974 -g1,14305:8211503,45408974 -g1,14305:8527649,45408974 -g1,14305:8843795,45408974 -g1,14305:9159941,45408974 -g1,14305:9476087,45408974 -g1,14305:9792233,45408974 -g1,14305:10108379,45408974 -g1,14305:10424525,45408974 -g1,14305:10740671,45408974 -g1,14305:11056817,45408974 -g1,14305:11372963,45408974 -g1,14305:13269837,45408974 -g1,14305:13902129,45408974 -g1,14305:16115149,45408974 -g1,14305:18012023,45408974 -g1,14305:18644315,45408974 -g1,14305:20225044,45408974 -g1,14305:21805773,45408974 -g1,14305:22438065,45408974 -h1,14305:23386502,45408974:0,0,0 -k1,14305:32583029,45408974:9196527 -g1,14305:32583029,45408974 -) -] -) -g1,14307:32583029,45510161 -g1,14307:6630773,45510161 -g1,14307:6630773,45510161 -g1,14307:32583029,45510161 -g1,14307:32583029,45510161 -) -h1,14307:6630773,45706769:0,0,0 -] -(1,14316:32583029,45706769:0,0,0 -g1,14316:32583029,45706769 -) -) -] -(1,14316:6630773,47279633:25952256,0,0 -h1,14316:6630773,47279633:25952256,0,0 -) -] -(1,14316:4262630,4025873:0,0,0 -[1,14316:-473656,4025873:0,0,0 -(1,14316:-473656,-710413:0,0,0 -(1,14316:-473656,-710413:0,0,0 -g1,14316:-473656,-710413 -) -g1,14316:-473656,-710413 -) -] -) -] -!28798 -}274 -Input:2183:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2184:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2185:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2186:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2187:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2188:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2189:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2190:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2191:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2192:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2193:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2194:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2195:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2196:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2197:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1392 -{275 -[1,14364:4262630,47279633:28320399,43253760,0 -(1,14364:4262630,4025873:0,0,0 -[1,14364:-473656,4025873:0,0,0 -(1,14364:-473656,-710413:0,0,0 -(1,14364:-473656,-644877:0,0,0 -k1,14364:-473656,-644877:-65536 -) -(1,14364:-473656,4736287:0,0,0 -k1,14364:-473656,4736287:5209943 -) -g1,14364:-473656,-710413 -) -] -) -[1,14364:6630773,47279633:25952256,43253760,0 -[1,14364:6630773,4812305:25952256,786432,0 -(1,14364:6630773,4812305:25952256,513147,134348 -(1,14364:6630773,4812305:25952256,513147,134348 -g1,14364:3078558,4812305 -[1,14364:3078558,4812305:0,0,0 -(1,14364:3078558,2439708:0,1703936,0 -k1,14364:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,14364:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,14364:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,14364:3078558,4812305:0,0,0 -(1,14364:3078558,2439708:0,1703936,0 -g1,14364:29030814,2439708 -g1,14364:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,14364:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,14364:37855564,2439708:1179648,16384,0 -) -) -k1,14364:3078556,2439708:-34777008 -) -] -[1,14364:3078558,4812305:0,0,0 -(1,14364:3078558,49800853:0,16384,2228224 -k1,14364:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,14364:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,14364:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,14364:3078558,4812305:0,0,0 -(1,14364:3078558,49800853:0,16384,2228224 -g1,14364:29030814,49800853 -g1,14364:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,14364:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,14364:37855564,49800853:1179648,16384,0 -) -) -k1,14364:3078556,49800853:-34777008 -) -] -g1,14364:6630773,4812305 -k1,14364:25712890,4812305:17886740 -g1,14364:29057847,4812305 -g1,14364:29873114,4812305 -) -) -] -[1,14364:6630773,45706769:25952256,40108032,0 -(1,14364:6630773,45706769:25952256,40108032,0 -(1,14364:6630773,45706769:0,0,0 -g1,14364:6630773,45706769 -) -[1,14364:6630773,45706769:25952256,40108032,0 -(1,14310:6630773,14682403:25952256,9083666,0 -k1,14310:10523651,14682403:3892878 -h1,14309:10523651,14682403:0,0,0 -(1,14309:10523651,14682403:18166500,9083666,0 -(1,14309:10523651,14682403:18167376,9083688,0 -(1,14309:10523651,14682403:18167376,9083688,0 -(1,14309:10523651,14682403:0,9083688,0 -(1,14309:10523651,14682403:0,14208860,0 -(1,14309:10523651,14682403:28417720,14208860,0 -) -k1,14309:10523651,14682403:-28417720 -) -) -g1,14309:28691027,14682403 -) -) -) -g1,14310:28690151,14682403 -k1,14310:32583029,14682403:3892878 -) -(1,14317:6630773,15523891:25952256,513147,134348 -h1,14316:6630773,15523891:983040,0,0 -k1,14316:8682517,15523891:239674 -k1,14316:10359397,15523891:239675 -k1,14316:11285233,15523891:239674 -k1,14316:12295611,15523891:239675 -k1,14316:15607613,15523891:239674 -k1,14316:16203148,15523891:239675 -k1,14316:19138318,15523891:239674 -k1,14316:20662498,15523891:239674 -k1,14316:23243119,15523891:239675 -k1,14316:23838653,15523891:239674 -k1,14316:26280338,15523891:239675 -k1,14316:28200355,15523891:239674 -k1,14316:29586255,15523891:239675 -k1,14316:30845014,15523891:239674 -k1,14316:32583029,15523891:0 -) -(1,14317:6630773,16365379:25952256,513147,126483 -k1,14316:8219650,16365379:217864 -k1,14316:11874876,16365379:217863 -k1,14316:12775625,16365379:217864 -k1,14316:14695458,16365379:217863 -k1,14316:16901684,16365379:217864 -k1,14316:17987900,16365379:217864 -k1,14316:19298248,16365379:217863 -k1,14316:22796844,16365379:217864 -(1,14316:22796844,16365379:0,459977,115847 -r1,14364:25617093,16365379:2820249,575824,115847 -k1,14316:22796844,16365379:-2820249 -) -(1,14316:22796844,16365379:2820249,459977,115847 -k1,14316:22796844,16365379:3277 -h1,14316:25613816,16365379:0,411205,112570 -) -k1,14316:25834957,16365379:217864 -k1,14316:28380003,16365379:217863 -k1,14316:29265023,16365379:217864 -(1,14316:29265023,16365379:0,459977,115847 -r1,14364:30326712,16365379:1061689,575824,115847 -k1,14316:29265023,16365379:-1061689 -) -(1,14316:29265023,16365379:1061689,459977,115847 -k1,14316:29265023,16365379:3277 -h1,14316:30323435,16365379:0,411205,112570 -) -k1,14316:30718245,16365379:217863 -k1,14316:31563944,16365379:217864 -k1,14316:32583029,16365379:0 -) -(1,14317:6630773,17206867:25952256,513147,138281 -k1,14316:8266237,17206867:251344 -k1,14316:11178998,17206867:251344 -k1,14316:12298693,17206867:251343 -k1,14316:13747380,17206867:251344 -k1,14316:16067040,17206867:251344 -k1,14316:17509829,17206867:251344 -k1,14316:21198535,17206867:251343 -k1,14316:24206979,17206867:251344 -k1,14316:25405974,17206867:251344 -$1,14316:25405974,17206867 -k1,14316:26151209,17206867:277308 -k1,14316:26996714,17206867:277308 -$1,14316:28381490,17206867 -k1,14316:28632833,17206867:251343 -k1,14316:30110356,17206867:251344 -k1,14316:32583029,17206867:0 -) -(1,14317:6630773,18048355:25952256,505283,134348 -g1,14316:9871528,18048355 -k1,14317:32583029,18048355:19439944 -g1,14317:32583029,18048355 -) -v1,14319:6630773,19238821:0,393216,0 -(1,14323:6630773,19553918:25952256,708313,196608 -g1,14323:6630773,19553918 -g1,14323:6630773,19553918 -g1,14323:6434165,19553918 -(1,14323:6434165,19553918:0,708313,196608 -r1,14364:32779637,19553918:26345472,904921,196608 -k1,14323:6434165,19553918:-26345472 -) -(1,14323:6434165,19553918:26345472,708313,196608 -[1,14323:6630773,19553918:25952256,511705,0 -(1,14321:6630773,19452731:25952256,410518,101187 -(1,14320:6630773,19452731:0,0,0 -g1,14320:6630773,19452731 -g1,14320:6630773,19452731 -g1,14320:6303093,19452731 -(1,14320:6303093,19452731:0,0,0 -) -g1,14320:6630773,19452731 -) -g1,14321:6946919,19452731 -g1,14321:7263065,19452731 -g1,14321:14218270,19452731 -g1,14321:14850562,19452731 -g1,14321:20541185,19452731 -g1,14321:22438059,19452731 -g1,14321:23070351,19452731 -g1,14321:25283371,19452731 -g1,14321:26864100,19452731 -g1,14321:27496392,19452731 -g1,14321:28444830,19452731 -g1,14321:30341704,19452731 -g1,14321:30973996,19452731 -h1,14321:32238579,19452731:0,0,0 -k1,14321:32583029,19452731:344450 -g1,14321:32583029,19452731 -) -] -) -g1,14323:32583029,19553918 -g1,14323:6630773,19553918 -g1,14323:6630773,19553918 -g1,14323:32583029,19553918 -g1,14323:32583029,19553918 -) -h1,14323:6630773,19750526:0,0,0 -(1,14327:6630773,21116302:25952256,513147,138281 -h1,14326:6630773,21116302:983040,0,0 -k1,14326:8761588,21116302:194226 -k1,14326:10060097,21116302:194227 -k1,14326:12899356,21116302:194226 -k1,14326:14112668,21116302:194227 -k1,14326:16572474,21116302:194226 -k1,14326:17425993,21116302:194227 -$1,14326:17425993,21116302 -k1,14326:18075980,21116302:182060 -k1,14326:18826237,21116302:182060 -$1,14326:20211013,21116302 -k1,14326:20405239,21116302:194226 -k1,14326:21547117,21116302:194227 -k1,14326:25178706,21116302:194226 -k1,14326:28130033,21116302:194227 -k1,14326:29085787,21116302:194226 -k1,14326:31635378,21116302:194227 -k1,14326:32583029,21116302:0 -) -(1,14327:6630773,21957790:25952256,513147,134348 -k1,14326:9663667,21957790:197807 -(1,14326:9663667,21957790:0,459977,115847 -r1,14364:14945899,21957790:5282232,575824,115847 -k1,14326:9663667,21957790:-5282232 -) -(1,14326:9663667,21957790:5282232,459977,115847 -g1,14326:12832351,21957790 -g1,14326:13535775,21957790 -h1,14326:14942622,21957790:0,411205,112570 -) -k1,14326:15143706,21957790:197807 -k1,14326:15957551,21957790:197807 -k1,14326:17174443,21957790:197807 -k1,14326:18365776,21957790:197807 -k1,14326:19222875,21957790:197807 -k1,14326:22823311,21957790:197807 -k1,14326:25226405,21957790:197807 -k1,14326:26075640,21957790:197807 -k1,14326:27292532,21957790:197807 -k1,14326:30359505,21957790:197807 -k1,14326:31753999,21957790:197807 -k1,14327:32583029,21957790:0 -) -(1,14327:6630773,22799278:25952256,505283,134348 -k1,14326:8935316,22799278:163482 -k1,14326:10203081,22799278:163483 -k1,14326:11652379,22799278:163482 -k1,14326:12563628,22799278:163483 -k1,14326:15935753,22799278:163482 -k1,14326:18559458,22799278:163483 -k1,14326:21764466,22799278:163482 -k1,14326:25199506,22799278:163483 -k1,14326:27098381,22799278:163482 -k1,14326:28280949,22799278:163483 -k1,14326:31417799,22799278:163482 -k1,14327:32583029,22799278:0 -) -(1,14327:6630773,23640766:25952256,513147,126483 -k1,14326:9599183,23640766:139221 -k1,14326:12874956,23640766:139220 -k1,14326:14581798,23640766:139221 -k1,14326:15740104,23640766:139221 -k1,14326:17268687,23640766:139220 -k1,14326:18169436,23640766:139221 -k1,14326:21580870,23640766:139221 -k1,14326:22549121,23640766:139221 -k1,14326:25045671,23640766:139220 -k1,14326:26388133,23640766:139221 -k1,14326:27395706,23640766:139221 -k1,14326:28972131,23640766:139220 -k1,14326:29762780,23640766:139221 -(1,14326:29762780,23640766:0,459977,115847 -r1,14364:32583029,23640766:2820249,575824,115847 -k1,14326:29762780,23640766:-2820249 -) -(1,14326:29762780,23640766:2820249,459977,115847 -k1,14326:29762780,23640766:3277 -h1,14326:32579752,23640766:0,411205,112570 -) -k1,14326:32583029,23640766:0 -) -(1,14327:6630773,24482254:25952256,513147,134348 -g1,14326:7849087,24482254 -g1,14326:11120644,24482254 -(1,14326:11120644,24482254:0,452978,115847 -r1,14364:16051164,24482254:4930520,568825,115847 -k1,14326:11120644,24482254:-4930520 -) -(1,14326:11120644,24482254:4930520,452978,115847 -k1,14326:11120644,24482254:3277 -h1,14326:16047887,24482254:0,411205,112570 -) -g1,14326:16250393,24482254 -g1,14326:18776805,24482254 -g1,14326:19643190,24482254 -(1,14326:19643190,24482254:0,452978,115847 -r1,14364:25277133,24482254:5633943,568825,115847 -k1,14326:19643190,24482254:-5633943 -) -(1,14326:19643190,24482254:5633943,452978,115847 -k1,14326:19643190,24482254:3277 -h1,14326:25273856,24482254:0,411205,112570 -) -k1,14327:32583029,24482254:7132226 -g1,14327:32583029,24482254 -) -v1,14329:6630773,25672720:0,393216,0 -(1,14335:6630773,27320173:25952256,2040669,196608 -g1,14335:6630773,27320173 -g1,14335:6630773,27320173 -g1,14335:6434165,27320173 -(1,14335:6434165,27320173:0,2040669,196608 -r1,14364:32779637,27320173:26345472,2237277,196608 -k1,14335:6434165,27320173:-26345472 -) -(1,14335:6434165,27320173:26345472,2040669,196608 -[1,14335:6630773,27320173:25952256,1844061,0 -(1,14331:6630773,25886630:25952256,410518,101187 -(1,14330:6630773,25886630:0,0,0 -g1,14330:6630773,25886630 -g1,14330:6630773,25886630 -g1,14330:6303093,25886630 -(1,14330:6303093,25886630:0,0,0 -) -g1,14330:6630773,25886630 -) -g1,14331:6946919,25886630 -g1,14331:7263065,25886630 -g1,14331:14218270,25886630 -g1,14331:14850562,25886630 -k1,14331:14850562,25886630:0 -h1,14331:19592748,25886630:0,0,0 -k1,14331:32583029,25886630:12990281 -g1,14331:32583029,25886630 -) -(1,14332:6630773,26552808:25952256,410518,107478 -h1,14332:6630773,26552808:0,0,0 -g1,14332:6946919,26552808 -g1,14332:7263065,26552808 -g1,14332:7579211,26552808 -g1,14332:7895357,26552808 -g1,14332:8211503,26552808 -g1,14332:8527649,26552808 -g1,14332:8843795,26552808 -g1,14332:9159941,26552808 -g1,14332:9476087,26552808 -g1,14332:9792233,26552808 -g1,14332:10108379,26552808 -g1,14332:10424525,26552808 -g1,14332:10740671,26552808 -g1,14332:11056817,26552808 -g1,14332:11372963,26552808 -g1,14332:14218274,26552808 -g1,14332:14850566,26552808 -g1,14332:19276606,26552808 -g1,14332:19908898,26552808 -k1,14332:19908898,26552808:0 -h1,14332:21805773,26552808:0,0,0 -k1,14332:32583029,26552808:10777256 -g1,14332:32583029,26552808 -) -(1,14333:6630773,27218986:25952256,404226,101187 -h1,14333:6630773,27218986:0,0,0 -g1,14333:6946919,27218986 -g1,14333:7263065,27218986 -g1,14333:7579211,27218986 -g1,14333:7895357,27218986 -g1,14333:8211503,27218986 -g1,14333:8527649,27218986 -g1,14333:8843795,27218986 -g1,14333:9159941,27218986 -g1,14333:9476087,27218986 -g1,14333:9792233,27218986 -g1,14333:10108379,27218986 -g1,14333:10424525,27218986 -g1,14333:10740671,27218986 -g1,14333:11056817,27218986 -g1,14333:11372963,27218986 -g1,14333:13269837,27218986 -g1,14333:13902129,27218986 -g1,14333:16115149,27218986 -g1,14333:17695878,27218986 -g1,14333:18328170,27218986 -g1,14333:19276608,27218986 -g1,14333:21173482,27218986 -g1,14333:21805774,27218986 -h1,14333:23070357,27218986:0,0,0 -k1,14333:32583029,27218986:9512672 -g1,14333:32583029,27218986 -) -] -) -g1,14335:32583029,27320173 -g1,14335:6630773,27320173 -g1,14335:6630773,27320173 -g1,14335:32583029,27320173 -g1,14335:32583029,27320173 -) -h1,14335:6630773,27516781:0,0,0 -(1,14339:6630773,28882557:25952256,513147,126483 -h1,14338:6630773,28882557:983040,0,0 -g1,14338:8855064,28882557 -$1,14338:8855064,28882557 -[1,14338:8855064,28882557:502661,458096,7864 -(1,14338:9325611,28874693:0,450232,0 -) -(1,14338:8855064,28882557:502661,355205,7864 -) -] -g1,14338:9503373,28882557 -g1,14338:10217218,28882557 -(1,14338:10217218,28882557:1056440,355205,7864 -) -$1,14338:11273658,28882557 -g1,14338:11472887,28882557 -g1,14338:12540468,28882557 -g1,14338:14920080,28882557 -g1,14338:16556514,28882557 -(1,14338:16556514,28882557:0,452978,115847 -r1,14364:19728474,28882557:3171960,568825,115847 -k1,14338:16556514,28882557:-3171960 -) -(1,14338:16556514,28882557:3171960,452978,115847 -k1,14338:16556514,28882557:3277 -h1,14338:19725197,28882557:0,411205,112570 -) -g1,14338:19927703,28882557 -g1,14338:21318377,28882557 -g1,14338:22465257,28882557 -$1,14338:22465257,28882557 -[1,14338:22465257,28882557:502661,458096,7864 -(1,14338:22935804,28874693:0,450232,0 -) -(1,14338:22465257,28882557:502661,355205,7864 -) -] -g1,14338:23113566,28882557 -g1,14338:23827411,28882557 -(1,14338:23827411,28882557:1129840,505283,7864 -) -$1,14338:24957251,28882557 -g1,14338:25156480,28882557 -(1,14338:25156480,28882557:0,452978,115847 -r1,14364:28680152,28882557:3523672,568825,115847 -k1,14338:25156480,28882557:-3523672 -) -(1,14338:25156480,28882557:3523672,452978,115847 -k1,14338:25156480,28882557:3277 -h1,14338:28676875,28882557:0,411205,112570 -) -k1,14339:32583029,28882557:3729207 -g1,14339:32583029,28882557 -) -v1,14341:6630773,30073023:0,393216,0 -(1,14346:6630773,31054298:25952256,1374491,196608 -g1,14346:6630773,31054298 -g1,14346:6630773,31054298 -g1,14346:6434165,31054298 -(1,14346:6434165,31054298:0,1374491,196608 -r1,14364:32779637,31054298:26345472,1571099,196608 -k1,14346:6434165,31054298:-26345472 -) -(1,14346:6434165,31054298:26345472,1374491,196608 -[1,14346:6630773,31054298:25952256,1177883,0 -(1,14343:6630773,30286933:25952256,410518,101187 -(1,14342:6630773,30286933:0,0,0 -g1,14342:6630773,30286933 -g1,14342:6630773,30286933 -g1,14342:6303093,30286933 -(1,14342:6303093,30286933:0,0,0 -) -g1,14342:6630773,30286933 -) -g1,14343:6946919,30286933 -g1,14343:7263065,30286933 -g1,14343:14218270,30286933 -g1,14343:14850562,30286933 -k1,14343:14850562,30286933:0 -h1,14343:18012019,30286933:0,0,0 -k1,14343:32583029,30286933:14571010 -g1,14343:32583029,30286933 -) -(1,14344:6630773,30953111:25952256,404226,101187 -h1,14344:6630773,30953111:0,0,0 -g1,14344:6946919,30953111 -g1,14344:7263065,30953111 -g1,14344:7579211,30953111 -g1,14344:7895357,30953111 -g1,14344:8211503,30953111 -g1,14344:8527649,30953111 -g1,14344:8843795,30953111 -g1,14344:9159941,30953111 -g1,14344:9476087,30953111 -g1,14344:9792233,30953111 -g1,14344:10108379,30953111 -g1,14344:10424525,30953111 -g1,14344:10740671,30953111 -g1,14344:11056817,30953111 -g1,14344:11372963,30953111 -g1,14344:13269837,30953111 -g1,14344:13902129,30953111 -g1,14344:16115149,30953111 -g1,14344:17695878,30953111 -g1,14344:18328170,30953111 -g1,14344:19276608,30953111 -g1,14344:21173482,30953111 -g1,14344:21805774,30953111 -h1,14344:23070357,30953111:0,0,0 -k1,14344:32583029,30953111:9512672 -g1,14344:32583029,30953111 -) -] -) -g1,14346:32583029,31054298 -g1,14346:6630773,31054298 -g1,14346:6630773,31054298 -g1,14346:32583029,31054298 -g1,14346:32583029,31054298 -) -h1,14346:6630773,31250906:0,0,0 -(1,14350:6630773,32616682:25952256,513147,134348 -h1,14349:6630773,32616682:983040,0,0 -k1,14349:8838681,32616682:271319 -k1,14349:9925268,32616682:271319 -k1,14349:11262858,32616682:271319 -k1,14349:12814095,32616682:271319 -k1,14349:13856117,32616682:271319 -k1,14349:16788853,32616682:271319 -k1,14349:18631724,32616682:271318 -k1,14349:19975212,32616682:271319 -k1,14349:20704628,32616682:271319 -k1,14349:21507444,32616682:271319 -k1,14349:24408723,32616682:271319 -k1,14349:25331470,32616682:271319 -k1,14349:26695274,32616682:271319 -k1,14349:30942007,32616682:271319 -k1,14350:32583029,32616682:0 -) -(1,14350:6630773,33458170:25952256,513147,134348 -k1,14349:8485278,33458170:256737 -k1,14349:11069199,33458170:256738 -k1,14349:11985228,33458170:256737 -k1,14349:13261050,33458170:256737 -k1,14349:16543585,33458170:256738 -k1,14349:19641308,33458170:256737 -k1,14349:20659573,33458170:256737 -k1,14349:23496463,33458170:256738 -k1,14349:26581733,33458170:256737 -k1,14349:28900233,33458170:256737 -k1,14349:29966341,33458170:256738 -k1,14349:31966991,33458170:256737 -k1,14349:32583029,33458170:0 -) -(1,14350:6630773,34299658:25952256,513147,134348 -k1,14349:9394863,34299658:183938 -k1,14349:12259222,34299658:183937 -k1,14349:14971539,34299658:183938 -k1,14349:18558105,34299658:183937 -k1,14349:19393471,34299658:183938 -k1,14349:20596493,34299658:183937 -k1,14349:23475927,34299658:183938 -k1,14349:25346762,34299658:183938 -k1,14349:27601637,34299658:183937 -k1,14349:28733226,34299658:183938 -k1,14349:29936248,34299658:183937 -k1,14349:31426319,34299658:183938 -k1,14349:32583029,34299658:0 -) -(1,14350:6630773,35141146:25952256,505283,138281 -k1,14349:10153582,35141146:160812 -k1,14349:11333479,35141146:160812 -k1,14349:14005632,35141146:160813 -k1,14349:14782482,35141146:160812 -(1,14349:14782482,35141146:0,452978,115847 -r1,14364:16195883,35141146:1413401,568825,115847 -k1,14349:14782482,35141146:-1413401 -) -(1,14349:14782482,35141146:1413401,452978,115847 -k1,14349:14782482,35141146:3277 -h1,14349:16192606,35141146:0,411205,112570 -) -k1,14349:16356695,35141146:160812 -k1,14349:19102902,35141146:160812 -k1,14349:19915142,35141146:160812 -k1,14349:21095040,35141146:160813 -$1,14349:21095040,35141146 -$1,14349:21646853,35141146 -k1,14349:21807665,35141146:160812 -k1,14349:24986410,35141146:160812 -k1,14349:26138782,35141146:160812 -k1,14349:29060627,35141146:160813 -k1,14349:29907601,35141146:160812 -k1,14349:30424273,35141146:160812 -k1,14349:32583029,35141146:0 -) -(1,14350:6630773,35982634:25952256,513147,134348 -k1,14349:7863901,35982634:239602 -k1,14349:10662029,35982634:239602 -k1,14349:14182363,35982634:239602 -(1,14349:14182363,35982634:0,459977,122846 -r1,14364:17002612,35982634:2820249,582823,122846 -k1,14349:14182363,35982634:-2820249 -) -(1,14349:14182363,35982634:2820249,459977,122846 -k1,14349:14182363,35982634:3277 -h1,14349:16999335,35982634:0,411205,112570 -) -k1,14349:17415884,35982634:239602 -k1,14349:18674571,35982634:239602 -k1,14349:20982489,35982634:239602 -k1,14349:22735317,35982634:239602 -k1,14349:23922570,35982634:239602 -k1,14349:27773206,35982634:239602 -k1,14349:28628846,35982634:239602 -k1,14349:29887533,35982634:239602 -k1,14349:32583029,35982634:0 -) -(1,14350:6630773,36824122:25952256,513147,126483 -g1,14349:9912160,36824122 -g1,14349:11641655,36824122 -g1,14349:13216485,36824122 -g1,14349:15396867,36824122 -g1,14349:16615181,36824122 -g1,14349:18882726,36824122 -g1,14349:19697993,36824122 -g1,14349:21100463,36824122 -k1,14350:32583029,36824122:10315370 -g1,14350:32583029,36824122 -) -(1,14352:6630773,37665610:25952256,505283,126483 -h1,14351:6630773,37665610:983040,0,0 -k1,14351:10043778,37665610:153900 -k1,14351:11066031,37665610:153901 -k1,14351:12497228,37665610:153900 -k1,14351:13670213,37665610:153900 -k1,14351:15892430,37665610:153901 -k1,14351:16662368,37665610:153900 -k1,14351:17172128,37665610:153900 -k1,14351:19495271,37665610:153901 -k1,14351:21100138,37665610:153900 -k1,14351:22647989,37665610:153900 -k1,14351:23820975,37665610:153901 -k1,14351:28046627,37665610:153900 -k1,14351:32583029,37665610:0 -) -(1,14352:6630773,38507098:25952256,513147,126483 -k1,14351:7626374,38507098:186231 -k1,14351:8831691,38507098:186232 -k1,14351:10624865,38507098:186231 -k1,14351:12186042,38507098:186232 -k1,14351:13058435,38507098:186231 -k1,14351:13600526,38507098:186231 -k1,14351:15629630,38507098:186232 -k1,14351:16475153,38507098:186231 -k1,14351:17680469,38507098:186231 -k1,14351:19606027,38507098:186232 -k1,14351:20408296,38507098:186231 -k1,14351:22479999,38507098:186232 -k1,14351:23685315,38507098:186231 -k1,14351:25759638,38507098:186231 -k1,14351:26937430,38507098:186232 -k1,14351:29089086,38507098:186231 -k1,14351:29926746,38507098:186232 -k1,14351:31132062,38507098:186231 -k1,14351:32583029,38507098:0 -) -(1,14352:6630773,39348586:25952256,505283,126483 -k1,14351:7446819,39348586:188211 -k1,14351:8838271,39348586:188211 -k1,14351:10567233,39348586:188211 -k1,14351:11623797,39348586:188212 -k1,14351:12746551,39348586:188211 -(1,14351:12746551,39348586:0,459977,115847 -r1,14364:14159952,39348586:1413401,575824,115847 -k1,14351:12746551,39348586:-1413401 -) -(1,14351:12746551,39348586:1413401,459977,115847 -k1,14351:12746551,39348586:3277 -h1,14351:14156675,39348586:0,411205,112570 -) -k1,14351:14521833,39348586:188211 -(1,14351:14521833,39348586:0,452978,115847 -r1,14364:16286946,39348586:1765113,568825,115847 -k1,14351:14521833,39348586:-1765113 -) -(1,14351:14521833,39348586:1765113,452978,115847 -k1,14351:14521833,39348586:3277 -h1,14351:16283669,39348586:0,411205,112570 -) -k1,14351:16475157,39348586:188211 -k1,14351:17854813,39348586:188211 -(1,14351:17854813,39348586:0,452978,115847 -r1,14364:19619926,39348586:1765113,568825,115847 -k1,14351:17854813,39348586:-1765113 -) -(1,14351:17854813,39348586:1765113,452978,115847 -k1,14351:17854813,39348586:3277 -h1,14351:19616649,39348586:0,411205,112570 -) -k1,14351:19808137,39348586:188211 -k1,14351:24578625,39348586:188211 -k1,14351:25418265,39348586:188212 -k1,14351:28868203,39348586:188211 -k1,14351:30128583,39348586:188211 -k1,14351:30932832,39348586:188211 -k1,14351:32583029,39348586:0 -) -(1,14352:6630773,40190074:25952256,513147,134348 -k1,14351:9547889,40190074:230795 -k1,14351:11168048,40190074:230796 -k1,14351:12837358,40190074:230795 -k1,14351:15875715,40190074:230795 -k1,14351:17745566,40190074:230796 -k1,14351:18627789,40190074:230795 -k1,14351:21082877,40190074:230796 -k1,14351:21929710,40190074:230795 -(1,14351:21929710,40190074:0,452978,115847 -r1,14364:23343111,40190074:1413401,568825,115847 -k1,14351:21929710,40190074:-1413401 -) -(1,14351:21929710,40190074:1413401,452978,115847 -k1,14351:21929710,40190074:3277 -h1,14351:23339834,40190074:0,411205,112570 -) -k1,14351:23573906,40190074:230795 -k1,14351:24908984,40190074:230796 -k1,14351:25887545,40190074:230795 -k1,14351:27631566,40190074:230795 -k1,14351:28810013,40190074:230796 -k1,14351:31923737,40190074:230795 -k1,14351:32583029,40190074:0 -) -(1,14352:6630773,41031562:25952256,505283,134348 -k1,14351:11104297,41031562:228102 -k1,14351:12994393,41031562:228103 -k1,14351:15410087,41031562:228102 -k1,14351:16810628,41031562:228102 -k1,14351:18316028,41031562:228103 -k1,14351:20432222,41031562:228102 -k1,14351:22054276,41031562:228103 -(1,14351:22054276,41031562:0,452978,115847 -r1,14364:26984796,41031562:4930520,568825,115847 -k1,14351:22054276,41031562:-4930520 -) -(1,14351:22054276,41031562:4930520,452978,115847 -k1,14351:22054276,41031562:3277 -h1,14351:26981519,41031562:0,411205,112570 -) -k1,14351:27212898,41031562:228102 -k1,14351:29452955,41031562:228102 -k1,14351:30426202,41031562:228103 -k1,14351:31305732,41031562:228102 -k1,14351:32583029,41031562:0 -) -(1,14352:6630773,41873050:25952256,513147,134348 -g1,14351:7849087,41873050 -g1,14351:9786331,41873050 -g1,14351:11177005,41873050 -g1,14351:12395319,41873050 -g1,14351:14201491,41873050 -g1,14351:15775665,41873050 -g1,14351:17710287,41873050 -g1,14351:20671859,41873050 -k1,14352:32583029,41873050:9791080 -g1,14352:32583029,41873050 -) -v1,14354:6630773,43063516:0,393216,0 -(1,14364:6630773,45377147:25952256,2706847,196608 -g1,14364:6630773,45377147 -g1,14364:6630773,45377147 -g1,14364:6434165,45377147 -(1,14364:6434165,45377147:0,2706847,196608 -r1,14364:32779637,45377147:26345472,2903455,196608 -k1,14364:6434165,45377147:-26345472 -) -(1,14364:6434165,45377147:26345472,2706847,196608 -[1,14364:6630773,45377147:25952256,2510239,0 -(1,14356:6630773,43277426:25952256,410518,107478 -(1,14355:6630773,43277426:0,0,0 -g1,14355:6630773,43277426 -g1,14355:6630773,43277426 -g1,14355:6303093,43277426 -(1,14355:6303093,43277426:0,0,0 -) -g1,14355:6630773,43277426 -) -k1,14356:6630773,43277426:0 -g1,14356:10424522,43277426 -g1,14356:11056814,43277426 -g1,14356:14534417,43277426 -g1,14356:16431292,43277426 -g1,14356:17063584,43277426 -g1,14356:18012022,43277426 -g1,14356:18644314,43277426 -g1,14356:19276606,43277426 -g1,14356:21805772,43277426 -h1,14356:22121918,43277426:0,0,0 -k1,14356:32583029,43277426:10461111 -g1,14356:32583029,43277426 -) -(1,14357:6630773,43943604:25952256,410518,107478 -h1,14357:6630773,43943604:0,0,0 -g1,14357:6946919,43943604 -g1,14357:7263065,43943604 -g1,14357:12637542,43943604 -g1,14357:13269834,43943604 -g1,14357:15799000,43943604 -g1,14357:17379729,43943604 -g1,14357:18012021,43943604 -k1,14357:18012021,43943604:0 -h1,14357:20541187,43943604:0,0,0 -k1,14357:32583029,43943604:12041842 -g1,14357:32583029,43943604 -) -(1,14358:6630773,44609782:25952256,410518,82312 -h1,14358:6630773,44609782:0,0,0 -g1,14358:6946919,44609782 -g1,14358:7263065,44609782 -g1,14358:7579211,44609782 -g1,14358:7895357,44609782 -g1,14358:8211503,44609782 -g1,14358:8527649,44609782 -g1,14358:8843795,44609782 -g1,14358:9159941,44609782 -g1,14358:9476087,44609782 -g1,14358:9792233,44609782 -g1,14358:10108379,44609782 -g1,14358:10424525,44609782 -g1,14358:10740671,44609782 -g1,14358:11056817,44609782 -g1,14358:11372963,44609782 -g1,14358:12953692,44609782 -g1,14358:13585984,44609782 -g1,14358:16431296,44609782 -g1,14358:18328170,44609782 -g1,14358:18960462,44609782 -g1,14358:21805774,44609782 -h1,14358:22121920,44609782:0,0,0 -k1,14358:32583029,44609782:10461109 -g1,14358:32583029,44609782 -) -(1,14359:6630773,45275960:25952256,410518,101187 -h1,14359:6630773,45275960:0,0,0 -g1,14359:6946919,45275960 -g1,14359:7263065,45275960 -g1,14359:14218270,45275960 -g1,14359:14850562,45275960 -k1,14359:14850562,45275960:0 -h1,14359:19592748,45275960:0,0,0 -k1,14359:32583029,45275960:12990281 -g1,14359:32583029,45275960 -) -] -) -g1,14364:32583029,45377147 -g1,14364:6630773,45377147 -g1,14364:6630773,45377147 -g1,14364:32583029,45377147 -g1,14364:32583029,45377147 -) -] -(1,14364:32583029,45706769:0,0,0 -g1,14364:32583029,45706769 -) -) -] -(1,14364:6630773,47279633:25952256,0,0 -h1,14364:6630773,47279633:25952256,0,0 -) -] -(1,14364:4262630,4025873:0,0,0 -[1,14364:-473656,4025873:0,0,0 -(1,14364:-473656,-710413:0,0,0 -(1,14364:-473656,-710413:0,0,0 -g1,14364:-473656,-710413 -) -g1,14364:-473656,-710413 -) -] -) -] -!27205 -}275 -Input:2198:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2199:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2200:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2201:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2202:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2203:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2204:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2205:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2206:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2207:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2208:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2209:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2210:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2211:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2212:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2213:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2214:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2215:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2216:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2217:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2218:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2219:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2220:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2221:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!2220 -{276 -[1,14419:4262630,47279633:28320399,43253760,0 -(1,14419:4262630,4025873:0,0,0 -[1,14419:-473656,4025873:0,0,0 -(1,14419:-473656,-710413:0,0,0 -(1,14419:-473656,-644877:0,0,0 -k1,14419:-473656,-644877:-65536 -) -(1,14419:-473656,4736287:0,0,0 -k1,14419:-473656,4736287:5209943 -) -g1,14419:-473656,-710413 -) -] -) -[1,14419:6630773,47279633:25952256,43253760,0 -[1,14419:6630773,4812305:25952256,786432,0 -(1,14419:6630773,4812305:25952256,485622,11795 -(1,14419:6630773,4812305:25952256,485622,11795 -g1,14419:3078558,4812305 -[1,14419:3078558,4812305:0,0,0 -(1,14419:3078558,2439708:0,1703936,0 -k1,14419:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,14419:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,14419:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,14419:3078558,4812305:0,0,0 -(1,14419:3078558,2439708:0,1703936,0 -g1,14419:29030814,2439708 -g1,14419:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,14419:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,14419:37855564,2439708:1179648,16384,0 -) -) -k1,14419:3078556,2439708:-34777008 -) -] -[1,14419:3078558,4812305:0,0,0 -(1,14419:3078558,49800853:0,16384,2228224 -k1,14419:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,14419:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,14419:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,14419:3078558,4812305:0,0,0 -(1,14419:3078558,49800853:0,16384,2228224 -g1,14419:29030814,49800853 -g1,14419:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,14419:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,14419:37855564,49800853:1179648,16384,0 -) -) -k1,14419:3078556,49800853:-34777008 -) -] -g1,14419:6630773,4812305 -g1,14419:6630773,4812305 -g1,14419:9560887,4812305 -k1,14419:31387651,4812305:21826764 -) -) -] -[1,14419:6630773,45706769:25952256,40108032,0 -(1,14419:6630773,45706769:25952256,40108032,0 -(1,14419:6630773,45706769:0,0,0 -g1,14419:6630773,45706769 -) -[1,14419:6630773,45706769:25952256,40108032,0 -v1,14364:6630773,6254097:0,393216,0 -(1,14364:6630773,7901549:25952256,2040668,196608 -g1,14364:6630773,7901549 -g1,14364:6630773,7901549 -g1,14364:6434165,7901549 -(1,14364:6434165,7901549:0,2040668,196608 -r1,14419:32779637,7901549:26345472,2237276,196608 -k1,14364:6434165,7901549:-26345472 -) -(1,14364:6434165,7901549:26345472,2040668,196608 -[1,14364:6630773,7901549:25952256,1844060,0 -(1,14360:6630773,6461715:25952256,404226,107478 -h1,14360:6630773,6461715:0,0,0 -g1,14360:6946919,6461715 -g1,14360:7263065,6461715 -g1,14360:7579211,6461715 -g1,14360:7895357,6461715 -g1,14360:8211503,6461715 -g1,14360:8527649,6461715 -g1,14360:8843795,6461715 -g1,14360:9159941,6461715 -g1,14360:9476087,6461715 -g1,14360:9792233,6461715 -g1,14360:10108379,6461715 -g1,14360:10424525,6461715 -g1,14360:10740671,6461715 -g1,14360:11056817,6461715 -g1,14360:11372963,6461715 -g1,14360:12953692,6461715 -g1,14360:13585984,6461715 -k1,14360:13585984,6461715:0 -h1,14360:17063587,6461715:0,0,0 -k1,14360:32583029,6461715:15519442 -g1,14360:32583029,6461715 -) -(1,14361:6630773,7127893:25952256,404226,82312 -h1,14361:6630773,7127893:0,0,0 -g1,14361:6946919,7127893 -g1,14361:7263065,7127893 -g1,14361:7579211,7127893 -g1,14361:7895357,7127893 -g1,14361:8211503,7127893 -g1,14361:8527649,7127893 -g1,14361:8843795,7127893 -g1,14361:9159941,7127893 -g1,14361:9476087,7127893 -g1,14361:9792233,7127893 -g1,14361:10108379,7127893 -g1,14361:10424525,7127893 -g1,14361:10740671,7127893 -g1,14361:11056817,7127893 -g1,14361:11372963,7127893 -g1,14361:13269837,7127893 -g1,14361:13902129,7127893 -g1,14361:15482858,7127893 -g1,14361:17063587,7127893 -g1,14361:17695879,7127893 -g1,14361:18644317,7127893 -g1,14361:20541191,7127893 -g1,14361:21173483,7127893 -g1,14361:23386503,7127893 -h1,14361:23702649,7127893:0,0,0 -k1,14361:32583029,7127893:8880380 -g1,14361:32583029,7127893 -) -(1,14362:6630773,7794071:25952256,404226,107478 -h1,14362:6630773,7794071:0,0,0 -g1,14362:6946919,7794071 -g1,14362:7263065,7794071 -g1,14362:12321397,7794071 -g1,14362:12953689,7794071 -g1,14362:13902127,7794071 -g1,14362:15799001,7794071 -g1,14362:16431293,7794071 -h1,14362:17695876,7794071:0,0,0 -k1,14362:32583029,7794071:14887153 -g1,14362:32583029,7794071 -) -] -) -g1,14364:32583029,7901549 -g1,14364:6630773,7901549 -g1,14364:6630773,7901549 -g1,14364:32583029,7901549 -g1,14364:32583029,7901549 -) -h1,14364:6630773,8098157:0,0,0 -(1,14368:6630773,9463933:25952256,505283,134348 -h1,14367:6630773,9463933:983040,0,0 -k1,14367:8801980,9463933:234618 -k1,14367:10140880,9463933:234618 -k1,14367:11652795,9463933:234618 -k1,14367:14129399,9463933:234617 -k1,14367:15046902,9463933:234618 -k1,14367:16983490,9463933:234618 -k1,14367:20899921,9463933:234618 -k1,14367:21896067,9463933:234618 -k1,14367:24023365,9463933:234618 -k1,14367:26843378,9463933:234618 -k1,14367:27729423,9463933:234617 -(1,14367:27729423,9463933:0,414482,115847 -r1,14419:28087689,9463933:358266,530329,115847 -k1,14367:27729423,9463933:-358266 -) -(1,14367:27729423,9463933:358266,414482,115847 -k1,14367:27729423,9463933:3277 -h1,14367:28084412,9463933:0,411205,112570 -) -k1,14367:28322307,9463933:234618 -(1,14367:28529401,9463933:0,452978,115847 -r1,14419:30294514,9463933:1765113,568825,115847 -k1,14367:28529401,9463933:-1765113 -) -(1,14367:28529401,9463933:1765113,452978,115847 -k1,14367:28529401,9463933:3277 -h1,14367:30291237,9463933:0,411205,112570 -) -k1,14367:30529132,9463933:234618 -k1,14367:31379788,9463933:234618 -k1,14367:32583029,9463933:0 -) -(1,14368:6630773,10305421:25952256,505283,134348 -k1,14367:9652331,10305421:153047 -k1,14367:10491540,10305421:153047 -k1,14367:13357778,10305421:153047 -k1,14367:14272354,10305421:153048 -k1,14367:16852855,10305421:153047 -(1,14367:16852855,10305421:0,452978,115847 -r1,14419:18617968,10305421:1765113,568825,115847 -k1,14367:16852855,10305421:-1765113 -) -(1,14367:16852855,10305421:1765113,452978,115847 -k1,14367:16852855,10305421:3277 -h1,14367:18614691,10305421:0,411205,112570 -) -k1,14367:18771015,10305421:153047 -k1,14367:19610224,10305421:153047 -k1,14367:20533974,10305421:153047 -k1,14367:23759349,10305421:153047 -k1,14367:24563824,10305421:153047 -(1,14367:24563824,10305421:0,414482,122846 -r1,14419:25977225,10305421:1413401,537328,122846 -k1,14367:24563824,10305421:-1413401 -) -(1,14367:24563824,10305421:1413401,414482,122846 -k1,14367:24563824,10305421:3277 -h1,14367:25973948,10305421:0,411205,112570 -) -k1,14367:26303942,10305421:153047 -k1,14367:27084825,10305421:153048 -k1,14367:28441113,10305421:153047 -k1,14367:29832135,10305421:153047 -k1,14367:30853534,10305421:153047 -k1,14367:32583029,10305421:0 -) -(1,14368:6630773,11146909:25952256,505283,126483 -g1,14367:7849087,11146909 -g1,14367:9578582,11146909 -g1,14367:10429239,11146909 -g1,14367:13416370,11146909 -g1,14367:14634684,11146909 -g1,14367:18342055,11146909 -g1,14367:19157322,11146909 -k1,14368:32583029,11146909:10666641 -g1,14368:32583029,11146909 -) -v1,14370:6630773,12337375:0,393216,0 -(1,14375:6630773,13318649:25952256,1374490,196608 -g1,14375:6630773,13318649 -g1,14375:6630773,13318649 -g1,14375:6434165,13318649 -(1,14375:6434165,13318649:0,1374490,196608 -r1,14419:32779637,13318649:26345472,1571098,196608 -k1,14375:6434165,13318649:-26345472 -) -(1,14375:6434165,13318649:26345472,1374490,196608 -[1,14375:6630773,13318649:25952256,1177882,0 -(1,14372:6630773,12544993:25952256,404226,107478 -(1,14371:6630773,12544993:0,0,0 -g1,14371:6630773,12544993 -g1,14371:6630773,12544993 -g1,14371:6303093,12544993 -(1,14371:6303093,12544993:0,0,0 -) -g1,14371:6630773,12544993 -) -k1,14372:6630773,12544993:0 -g1,14372:10424522,12544993 -g1,14372:13902125,12544993 -g1,14372:15798999,12544993 -h1,14372:16115145,12544993:0,0,0 -k1,14372:32583029,12544993:16467884 -g1,14372:32583029,12544993 -) -(1,14373:6630773,13211171:25952256,410518,107478 -h1,14373:6630773,13211171:0,0,0 -g1,14373:6946919,13211171 -g1,14373:7263065,13211171 -g1,14373:12953688,13211171 -g1,14373:13585980,13211171 -g1,14373:15799000,13211171 -g1,14373:17063583,13211171 -g1,14373:17695875,13211171 -h1,14373:19276603,13211171:0,0,0 -k1,14373:32583029,13211171:13306426 -g1,14373:32583029,13211171 -) -] -) -g1,14375:32583029,13318649 -g1,14375:6630773,13318649 -g1,14375:6630773,13318649 -g1,14375:32583029,13318649 -g1,14375:32583029,13318649 -) -h1,14375:6630773,13515257:0,0,0 -(1,14378:6630773,23188747:25952256,9083666,0 -k1,14378:10523651,23188747:3892878 -h1,14377:10523651,23188747:0,0,0 -(1,14377:10523651,23188747:18166500,9083666,0 -(1,14377:10523651,23188747:18167376,9083688,0 -(1,14377:10523651,23188747:18167376,9083688,0 -(1,14377:10523651,23188747:0,9083688,0 -(1,14377:10523651,23188747:0,14208860,0 -(1,14377:10523651,23188747:28417720,14208860,0 -) -k1,14377:10523651,23188747:-28417720 -) -) -g1,14377:28691027,23188747 -) -) -) -g1,14378:28690151,23188747 -k1,14378:32583029,23188747:3892878 -) -(1,14385:6630773,24030235:25952256,505283,126483 -h1,14384:6630773,24030235:983040,0,0 -k1,14384:8967381,24030235:400019 -k1,14384:10471681,24030235:400018 -k1,14384:12672629,24030235:400019 -k1,14384:14269990,24030235:400018 -k1,14384:16276952,24030235:400019 -k1,14384:18051916,24030235:400019 -k1,14384:19103362,24030235:400018 -k1,14384:20522466,24030235:400019 -k1,14384:23305373,24030235:400018 -k1,14384:25156359,24030235:400019 -k1,14384:26509926,24030235:400018 -k1,14384:28002430,24030235:400019 -(1,14384:28002430,24030235:0,452978,115847 -r1,14419:29415831,24030235:1413401,568825,115847 -k1,14384:28002430,24030235:-1413401 -) -(1,14384:28002430,24030235:1413401,452978,115847 -k1,14384:28002430,24030235:3277 -h1,14384:29412554,24030235:0,411205,112570 -) -k1,14384:29815850,24030235:400019 -k1,14384:30867296,24030235:400018 -k1,14384:32583029,24030235:0 -) -(1,14385:6630773,24871723:25952256,513147,134348 -k1,14384:7968015,24871723:318157 -k1,14384:9784980,24871723:318157 -k1,14384:10762428,24871723:318156 -k1,14384:12099670,24871723:318157 -k1,14384:14024770,24871723:318157 -k1,14384:15717872,24871723:318157 -k1,14384:18444476,24871723:318156 -k1,14384:19959320,24871723:318157 -k1,14384:22543057,24871723:318157 -k1,14384:25868661,24871723:318157 -k1,14384:26802855,24871723:318156 -(1,14384:26802855,24871723:0,452978,115847 -r1,14419:31733375,24871723:4930520,568825,115847 -k1,14384:26802855,24871723:-4930520 -) -(1,14384:26802855,24871723:4930520,452978,115847 -k1,14384:26802855,24871723:3277 -h1,14384:31730098,24871723:0,411205,112570 -) -k1,14384:32051532,24871723:318157 -k1,14385:32583029,24871723:0 -) -(1,14385:6630773,25713211:25952256,513147,134348 -(1,14384:6630773,25713211:0,452978,122846 -r1,14419:12616428,25713211:5985655,575824,122846 -k1,14384:6630773,25713211:-5985655 -) -(1,14384:6630773,25713211:5985655,452978,122846 -k1,14384:6630773,25713211:3277 -h1,14384:12613151,25713211:0,411205,112570 -) -k1,14384:12994547,25713211:204449 -k1,14384:13923824,25713211:204449 -k1,14384:14996624,25713211:204448 -k1,14384:16305355,25713211:204449 -k1,14384:17947009,25713211:204449 -(1,14384:17947009,25713211:0,452978,122846 -r1,14419:21822393,25713211:3875384,575824,122846 -k1,14384:17947009,25713211:-3875384 -) -(1,14384:17947009,25713211:3875384,452978,122846 -k1,14384:17947009,25713211:3277 -h1,14384:21819116,25713211:0,411205,112570 -) -k1,14384:22026842,25713211:204449 -k1,14384:22917452,25713211:204448 -k1,14384:23892604,25713211:204449 -k1,14384:27169381,25713211:204449 -k1,14384:28321481,25713211:204449 -(1,14384:28321481,25713211:0,414482,122846 -r1,14419:29734882,25713211:1413401,537328,122846 -k1,14384:28321481,25713211:-1413401 -) -(1,14384:28321481,25713211:1413401,414482,122846 -k1,14384:28321481,25713211:3277 -h1,14384:29731605,25713211:0,411205,112570 -) -k1,14384:29939330,25713211:204448 -k1,14384:30795207,25713211:204449 -k1,14385:32583029,25713211:0 -) -(1,14385:6630773,26554699:25952256,505283,126483 -g1,14384:8204947,26554699 -g1,14384:9423261,26554699 -k1,14385:32583029,26554699:21297890 -g1,14385:32583029,26554699 -) -v1,14387:6630773,27745165:0,393216,0 -(1,14392:6630773,28707565:25952256,1355616,196608 -g1,14392:6630773,28707565 -g1,14392:6630773,28707565 -g1,14392:6434165,28707565 -(1,14392:6434165,28707565:0,1355616,196608 -r1,14419:32779637,28707565:26345472,1552224,196608 -k1,14392:6434165,28707565:-26345472 -) -(1,14392:6434165,28707565:26345472,1355616,196608 -[1,14392:6630773,28707565:25952256,1159008,0 -(1,14389:6630773,27959075:25952256,410518,107478 -(1,14388:6630773,27959075:0,0,0 -g1,14388:6630773,27959075 -g1,14388:6630773,27959075 -g1,14388:6303093,27959075 -(1,14388:6303093,27959075:0,0,0 -) -g1,14388:6630773,27959075 -) -g1,14389:6946919,27959075 -g1,14389:7263065,27959075 -g1,14389:12953688,27959075 -g1,14389:13585980,27959075 -g1,14389:17695874,27959075 -g1,14389:20541185,27959075 -g1,14389:21173477,27959075 -k1,14389:21173477,27959075:0 -h1,14389:24334934,27959075:0,0,0 -k1,14389:32583029,27959075:8248095 -g1,14389:32583029,27959075 -) -(1,14390:6630773,28625253:25952256,404226,82312 -h1,14390:6630773,28625253:0,0,0 -g1,14390:6946919,28625253 -g1,14390:7263065,28625253 -g1,14390:7579211,28625253 -g1,14390:7895357,28625253 -g1,14390:8211503,28625253 -g1,14390:8527649,28625253 -g1,14390:8843795,28625253 -g1,14390:9159941,28625253 -g1,14390:9476087,28625253 -g1,14390:9792233,28625253 -g1,14390:10108379,28625253 -g1,14390:10424525,28625253 -g1,14390:10740671,28625253 -g1,14390:11056817,28625253 -g1,14390:11372963,28625253 -g1,14390:12953692,28625253 -g1,14390:13585984,28625253 -g1,14390:14534422,28625253 -g1,14390:16431296,28625253 -g1,14390:17063588,28625253 -h1,14390:18960462,28625253:0,0,0 -k1,14390:32583029,28625253:13622567 -g1,14390:32583029,28625253 -) -] -) -g1,14392:32583029,28707565 -g1,14392:6630773,28707565 -g1,14392:6630773,28707565 -g1,14392:32583029,28707565 -g1,14392:32583029,28707565 -) -h1,14392:6630773,28904173:0,0,0 -(1,14396:6630773,30269949:25952256,513147,134348 -h1,14395:6630773,30269949:983040,0,0 -k1,14395:10439162,30269949:443115 -(1,14395:10439162,30269949:0,452978,115847 -r1,14419:13962834,30269949:3523672,568825,115847 -k1,14395:10439162,30269949:-3523672 -) -(1,14395:10439162,30269949:3523672,452978,115847 -k1,14395:10439162,30269949:3277 -h1,14395:13959557,30269949:0,411205,112570 -) -k1,14395:14405949,30269949:443115 -k1,14395:17176247,30269949:443115 -k1,14395:18286518,30269949:443115 -(1,14395:18286518,30269949:0,452978,122846 -r1,14419:22161902,30269949:3875384,575824,122846 -k1,14395:18286518,30269949:-3875384 -) -(1,14395:18286518,30269949:3875384,452978,122846 -k1,14395:18286518,30269949:3277 -h1,14395:22158625,30269949:0,411205,112570 -) -k1,14395:22605017,30269949:443115 -k1,14395:23699560,30269949:443115 -(1,14395:23699560,30269949:0,414482,122846 -r1,14419:25112961,30269949:1413401,537328,122846 -k1,14395:23699560,30269949:-1413401 -) -(1,14395:23699560,30269949:1413401,414482,122846 -k1,14395:23699560,30269949:3277 -h1,14395:25109684,30269949:0,411205,112570 -) -k1,14395:25556076,30269949:443115 -k1,14395:28172365,30269949:443115 -k1,14395:29231518,30269949:443115 -k1,14395:32583029,30269949:0 -) -(1,14396:6630773,31111437:25952256,513147,134348 -k1,14395:9730374,31111437:200288 -k1,14395:11537605,31111437:200288 -k1,14395:13286509,31111437:200288 -k1,14395:16421499,31111437:200288 -k1,14395:17825028,31111437:200288 -k1,14395:19411402,31111437:200288 -k1,14395:20270981,31111437:200287 -k1,14395:22078212,31111437:200288 -k1,14395:23323144,31111437:200288 -k1,14395:24624437,31111437:200288 -k1,14395:26334675,31111437:200288 -k1,14395:29508987,31111437:200288 -k1,14395:30395437,31111437:200288 -k1,14395:32583029,31111437:0 -) -(1,14396:6630773,31952925:25952256,513147,126483 -k1,14395:10750857,31952925:181370 -k1,14395:13035277,31952925:181370 -k1,14395:13868076,31952925:181371 -k1,14395:15657044,31952925:181370 -k1,14395:17763862,31952925:181370 -k1,14395:19919939,31952925:181477 -k1,14395:21054858,31952925:181370 -k1,14395:22340511,31952925:181371 -k1,14395:23614366,31952925:181370 -(1,14395:23614366,31952925:0,452978,115847 -r1,14419:25379479,31952925:1765113,568825,115847 -k1,14395:23614366,31952925:-1765113 -) -(1,14395:23614366,31952925:1765113,452978,115847 -k1,14395:23614366,31952925:3277 -h1,14395:25376202,31952925:0,411205,112570 -) -k1,14395:25560849,31952925:181370 -k1,14395:26393647,31952925:181370 -k1,14395:28727220,31952925:181371 -k1,14395:29927675,31952925:181370 -k1,14395:31923737,31952925:181370 -k1,14395:32583029,31952925:0 -) -(1,14396:6630773,32794413:25952256,513147,126483 -g1,14395:7849087,32794413 -g1,14395:9488797,32794413 -g1,14395:10300788,32794413 -g1,14395:11519102,32794413 -g1,14395:13231557,32794413 -g1,14395:14090078,32794413 -g1,14395:15308392,32794413 -g1,14395:17114564,32794413 -k1,14396:32583029,32794413:13919849 -g1,14396:32583029,32794413 -) -(1,14398:6630773,33635901:25952256,513147,126483 -h1,14397:6630773,33635901:983040,0,0 -k1,14397:8300126,33635901:208556 -k1,14397:9377033,33635901:208555 -k1,14397:11060804,33635901:208556 -k1,14397:13603751,33635901:208555 -k1,14397:17041266,33635901:208556 -k1,14397:19260466,33635901:208555 -k1,14397:20416673,33635901:208556 -k1,14397:21644313,33635901:208555 -k1,14397:25534682,33635901:208556 -k1,14397:26611589,33635901:208555 -k1,14397:27924427,33635901:208556 -k1,14397:29331636,33635901:208555 -k1,14397:31563944,33635901:208556 -k1,14397:32583029,33635901:0 -) -(1,14398:6630773,34477389:25952256,505283,134348 -k1,14397:8563164,34477389:278918 -k1,14397:10449681,34477389:278919 -k1,14397:11490127,34477389:278918 -k1,14397:14576607,34477389:278918 -k1,14397:17697167,34477389:278919 -k1,14397:18627513,34477389:278918 -k1,14397:19925516,34477389:278918 -k1,14397:23268898,34477389:278918 -k1,14397:26260352,34477389:278919 -k1,14397:27300798,34477389:278918 -(1,14397:27300798,34477389:0,452978,122846 -r1,14419:32583029,34477389:5282231,575824,122846 -k1,14397:27300798,34477389:-5282231 -) -(1,14397:27300798,34477389:5282231,452978,122846 -k1,14397:27300798,34477389:3277 -h1,14397:32579752,34477389:0,411205,112570 -) -k1,14397:32583029,34477389:0 -) -(1,14398:6630773,35318877:25952256,505283,122846 -g1,14397:8021447,35318877 -(1,14397:8021447,35318877:0,452978,122846 -r1,14419:13655390,35318877:5633943,575824,122846 -k1,14397:8021447,35318877:-5633943 -) -(1,14397:8021447,35318877:5633943,452978,122846 -k1,14397:8021447,35318877:3277 -h1,14397:13652113,35318877:0,411205,112570 -) -g1,14397:14028289,35318877 -(1,14397:14028289,35318877:0,414482,115847 -r1,14419:14386555,35318877:358266,530329,115847 -k1,14397:14028289,35318877:-358266 -) -(1,14397:14028289,35318877:358266,414482,115847 -k1,14397:14028289,35318877:3277 -h1,14397:14383278,35318877:0,411205,112570 -) -g1,14397:14759454,35318877 -(1,14397:14759454,35318877:0,414482,115847 -r1,14419:15117720,35318877:358266,530329,115847 -k1,14397:14759454,35318877:-358266 -) -(1,14397:14759454,35318877:358266,414482,115847 -k1,14397:14759454,35318877:3277 -h1,14397:15114443,35318877:0,411205,112570 -) -g1,14397:15490619,35318877 -(1,14397:15490619,35318877:0,414482,115847 -r1,14419:16904020,35318877:1413401,530329,115847 -k1,14397:15490619,35318877:-1413401 -) -(1,14397:15490619,35318877:1413401,414482,115847 -k1,14397:15490619,35318877:3277 -h1,14397:16900743,35318877:0,411205,112570 -) -g1,14397:17103249,35318877 -g1,14397:18493923,35318877 -(1,14397:18493923,35318877:0,452978,115847 -r1,14419:19907324,35318877:1413401,568825,115847 -k1,14397:18493923,35318877:-1413401 -) -(1,14397:18493923,35318877:1413401,452978,115847 -k1,14397:18493923,35318877:3277 -h1,14397:19904047,35318877:0,411205,112570 -) -k1,14398:32583029,35318877:12502035 -g1,14398:32583029,35318877 -) -v1,14400:6630773,36684653:0,393216,0 -(1,14410:6630773,42644972:25952256,6353535,616038 -g1,14410:6630773,42644972 -(1,14410:6630773,42644972:25952256,6353535,616038 -(1,14410:6630773,43261010:25952256,6969573,0 -[1,14410:6630773,43261010:25952256,6969573,0 -(1,14410:6630773,43234796:25952256,6917145,0 -r1,14419:6656987,43234796:26214,6917145,0 -[1,14410:6656987,43234796:25899828,6917145,0 -(1,14410:6656987,42644972:25899828,5737497,0 -[1,14410:7246811,42644972:24720180,5737497,0 -(1,14401:7246811,38069360:24720180,1161885,196608 -(1,14400:7246811,38069360:0,1161885,196608 -r1,14419:8794447,38069360:1547636,1358493,196608 -k1,14400:7246811,38069360:-1547636 -) -(1,14400:7246811,38069360:1547636,1161885,196608 -) -k1,14400:8969362,38069360:174915 -k1,14400:10340965,38069360:174916 -k1,14400:13422402,38069360:174915 -k1,14400:15681362,38069360:174915 -k1,14400:16387775,38069360:174916 -k1,14400:17848506,38069360:174915 -k1,14400:19737187,38069360:174915 -k1,14400:20598265,38069360:174916 -k1,14400:21641532,38069360:174915 -k1,14400:22920729,38069360:174915 -k1,14400:24292988,38069360:174916 -k1,14400:25486988,38069360:174915 -k1,14400:28669350,38069360:174915 -k1,14400:29495694,38069360:174916 -k1,14400:30689694,38069360:174915 -k1,14400:31966991,38069360:0 -) -(1,14401:7246811,38910848:24720180,505283,134348 -k1,14400:9432174,38910848:225837 -k1,14400:10849456,38910848:225837 -k1,14400:12512498,38910848:225837 -k1,14400:13757420,38910848:225837 -k1,14400:16665646,38910848:225837 -k1,14400:17577645,38910848:225837 -k1,14400:18574185,38910848:225837 -k1,14400:21872350,38910848:225837 -k1,14400:22749615,38910848:225837 -k1,14400:23607219,38910848:225837 -k1,14400:24460891,38910848:225837 -k1,14400:27019810,38910848:225837 -k1,14400:27861685,38910848:225837 -k1,14400:29290763,38910848:225837 -k1,14400:31098639,38910848:225837 -k1,14400:31966991,38910848:0 -) -(1,14401:7246811,39752336:24720180,513147,126483 -g1,14400:9175535,39752336 -g1,14400:10578005,39752336 -g1,14400:14164135,39752336 -g1,14400:16447409,39752336 -g1,14400:17594289,39752336 -g1,14400:18812603,39752336 -g1,14400:20437895,39752336 -g1,14400:21296416,39752336 -k1,14401:31966991,39752336:6778392 -g1,14401:31966991,39752336 -) -v1,14403:7246811,40942802:0,393216,0 -(1,14408:7246811,41924076:24720180,1374490,196608 -g1,14408:7246811,41924076 -g1,14408:7246811,41924076 -g1,14408:7050203,41924076 -(1,14408:7050203,41924076:0,1374490,196608 -r1,14419:32163599,41924076:25113396,1571098,196608 -k1,14408:7050203,41924076:-25113396 -) -(1,14408:7050203,41924076:25113396,1374490,196608 -[1,14408:7246811,41924076:24720180,1177882,0 -(1,14405:7246811,41150420:24720180,404226,107478 -(1,14404:7246811,41150420:0,0,0 -g1,14404:7246811,41150420 -g1,14404:7246811,41150420 -g1,14404:6919131,41150420 -(1,14404:6919131,41150420:0,0,0 -) -g1,14404:7246811,41150420 -) -k1,14405:7246811,41150420:0 -g1,14405:11040560,41150420 -g1,14405:14518163,41150420 -g1,14405:16415037,41150420 -h1,14405:16731183,41150420:0,0,0 -k1,14405:31966991,41150420:15235808 -g1,14405:31966991,41150420 -) -(1,14406:7246811,41816598:24720180,410518,107478 -h1,14406:7246811,41816598:0,0,0 -g1,14406:7562957,41816598 -g1,14406:7879103,41816598 -g1,14406:12305143,41816598 -g1,14406:12937435,41816598 -g1,14406:16415038,41816598 -g1,14406:17679621,41816598 -g1,14406:18311913,41816598 -h1,14406:19892641,41816598:0,0,0 -k1,14406:31966991,41816598:12074350 -g1,14406:31966991,41816598 -) -] -) -g1,14408:31966991,41924076 -g1,14408:7246811,41924076 -g1,14408:7246811,41924076 -g1,14408:31966991,41924076 -g1,14408:31966991,41924076 -) -h1,14408:7246811,42120684:0,0,0 -] -) -] -r1,14419:32583029,43234796:26214,6917145,0 -) -] -) -) -g1,14410:32583029,42644972 -) -h1,14410:6630773,43261010:0,0,0 -] -(1,14419:32583029,45706769:0,0,0 -g1,14419:32583029,45706769 -) -) -] -(1,14419:6630773,47279633:25952256,0,0 -h1,14419:6630773,47279633:25952256,0,0 -) -] -(1,14419:4262630,4025873:0,0,0 -[1,14419:-473656,4025873:0,0,0 -(1,14419:-473656,-710413:0,0,0 -(1,14419:-473656,-710413:0,0,0 -g1,14419:-473656,-710413 -) -g1,14419:-473656,-710413 -) -] -) -] -!24244 -}276 -Input:2222:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2223:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2224:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!288 -{277 -[1,14477:4262630,47279633:28320399,43253760,0 -(1,14477:4262630,4025873:0,0,0 -[1,14477:-473656,4025873:0,0,0 -(1,14477:-473656,-710413:0,0,0 -(1,14477:-473656,-644877:0,0,0 -k1,14477:-473656,-644877:-65536 -) -(1,14477:-473656,4736287:0,0,0 -k1,14477:-473656,4736287:5209943 -) -g1,14477:-473656,-710413 -) -] -) -[1,14477:6630773,47279633:25952256,43253760,0 -[1,14477:6630773,4812305:25952256,786432,0 -(1,14477:6630773,4812305:25952256,513147,134348 -(1,14477:6630773,4812305:25952256,513147,134348 -g1,14477:3078558,4812305 -[1,14477:3078558,4812305:0,0,0 -(1,14477:3078558,2439708:0,1703936,0 -k1,14477:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,14477:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,14477:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,14477:3078558,4812305:0,0,0 -(1,14477:3078558,2439708:0,1703936,0 -g1,14477:29030814,2439708 -g1,14477:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,14477:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,14477:37855564,2439708:1179648,16384,0 -) -) -k1,14477:3078556,2439708:-34777008 -) -] -[1,14477:3078558,4812305:0,0,0 -(1,14477:3078558,49800853:0,16384,2228224 -k1,14477:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,14477:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,14477:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,14477:3078558,4812305:0,0,0 -(1,14477:3078558,49800853:0,16384,2228224 -g1,14477:29030814,49800853 -g1,14477:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,14477:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,14477:37855564,49800853:1179648,16384,0 -) -) -k1,14477:3078556,49800853:-34777008 -) -] -g1,14477:6630773,4812305 -k1,14477:25712890,4812305:17886740 -g1,14477:29057847,4812305 -g1,14477:29873114,4812305 -) -) -] -[1,14477:6630773,45706769:25952256,40108032,0 -(1,14477:6630773,45706769:25952256,40108032,0 -(1,14477:6630773,45706769:0,0,0 -g1,14477:6630773,45706769 -) -[1,14477:6630773,45706769:25952256,40108032,0 -(1,14414:6630773,6254097:25952256,555811,12975 -(1,14414:6630773,6254097:2450326,534184,12975 -g1,14414:6630773,6254097 -g1,14414:9081099,6254097 -) -g1,14414:13161371,6254097 -g1,14414:14728599,6254097 -k1,14414:32583029,6254097:15225322 -g1,14414:32583029,6254097 -) -(1,14419:6630773,7488801:25952256,513147,115847 -k1,14418:8062641,7488801:235181 -k1,14418:10702994,7488801:235181 -(1,14418:10702994,7488801:0,452978,115847 -r1,14477:15281802,7488801:4578808,568825,115847 -k1,14418:10702994,7488801:-4578808 -) -(1,14418:10702994,7488801:4578808,452978,115847 -k1,14418:10702994,7488801:3277 -h1,14418:15278525,7488801:0,411205,112570 -) -k1,14418:15516983,7488801:235181 -k1,14418:16769938,7488801:235181 -k1,14418:17360979,7488801:235181 -k1,14418:20007230,7488801:235181 -k1,14418:21983702,7488801:235180 -k1,14418:22870311,7488801:235181 -k1,14418:27177244,7488801:235181 -k1,14418:28028463,7488801:235181 -k1,14418:29282729,7488801:235181 -k1,14418:30884991,7488801:235181 -k1,14418:32583029,7488801:0 -) -(1,14419:6630773,8330289:25952256,513147,138281 -k1,14418:7788944,8330289:139086 -k1,14418:9830541,8330289:139087 -k1,14418:10917278,8330289:139086 -$1,14418:10917278,8330289 -$1,14418:11419939,8330289 -k1,14418:11559026,8330289:139087 -k1,14418:12889557,8330289:139086 -$1,14418:12889557,8330289 -$1,14418:13441370,8330289 -k1,14418:13580457,8330289:139087 -k1,14418:14711103,8330289:139086 -k1,14418:20095036,8330289:139087 -k1,14418:24857687,8330289:139086 -k1,14418:28004221,8330289:139087 -(1,14418:28004221,8330289:0,452978,122846 -r1,14477:32583029,8330289:4578808,575824,122846 -k1,14418:28004221,8330289:-4578808 -) -(1,14418:28004221,8330289:4578808,452978,122846 -k1,14418:28004221,8330289:3277 -h1,14418:32579752,8330289:0,411205,112570 -) -k1,14418:32583029,8330289:0 -) -(1,14419:6630773,9171777:25952256,513147,134348 -k1,14418:8250571,9171777:197011 -k1,14418:9650823,9171777:197011 -k1,14418:12392597,9171777:197011 -k1,14418:13781054,9171777:197012 -k1,14418:16051624,9171777:197011 -k1,14418:17624236,9171777:197011 -k1,14418:18437285,9171777:197011 -k1,14418:19964677,9171777:197011 -k1,14418:23564317,9171777:197011 -k1,14418:24752889,9171777:197012 -k1,14418:27155187,9171777:197011 -k1,14418:28003626,9171777:197011 -k1,14418:30329246,9171777:197011 -k1,14419:32583029,9171777:0 -) -(1,14419:6630773,10013265:25952256,513147,126483 -k1,14418:8642307,10013265:267621 -k1,14418:9951951,10013265:267622 -k1,14418:11238657,10013265:267621 -k1,14418:12812411,10013265:267621 -k1,14418:15915120,10013265:267622 -k1,14418:17051093,10013265:267621 -k1,14418:18411199,10013265:267621 -(1,14418:18411199,10013265:0,452978,115847 -r1,14477:22990007,10013265:4578808,568825,115847 -k1,14418:18411199,10013265:-4578808 -) -(1,14418:18411199,10013265:4578808,452978,115847 -k1,14418:18411199,10013265:3277 -h1,14418:22986730,10013265:0,411205,112570 -) -k1,14418:23257629,10013265:267622 -k1,14418:24919201,10013265:267621 -k1,14418:26205907,10013265:267621 -k1,14418:28739109,10013265:267622 -k1,14418:32227169,10013265:267621 -k1,14418:32583029,10013265:0 -) -(1,14419:6630773,10854753:25952256,513147,126483 -k1,14418:8940262,10854753:216269 -k1,14418:10353217,10854753:216268 -k1,14418:11955572,10854753:216269 -k1,14418:12831133,10854753:216269 -k1,14418:14966951,10854753:216268 -k1,14418:15714717,10854753:216269 -k1,14418:20247843,10854753:216269 -k1,14418:22699545,10854753:216269 -k1,14418:24770482,10854753:216268 -k1,14418:25796121,10854753:216269 -k1,14418:27031475,10854753:216269 -k1,14418:29733524,10854753:216268 -k1,14418:30609085,10854753:216269 -k1,14419:32583029,10854753:0 -) -(1,14419:6630773,11696241:25952256,513147,134348 -k1,14418:9147421,11696241:205849 -k1,14418:10544715,11696241:205849 -k1,14418:13702306,11696241:205849 -k1,14418:14669684,11696241:205850 -k1,14418:15231393,11696241:205849 -k1,14418:18316239,11696241:205849 -k1,14418:19718775,11696241:205849 -(1,14418:19718775,11696241:0,459977,115847 -r1,14477:22187312,11696241:2468537,575824,115847 -k1,14418:19718775,11696241:-2468537 -) -(1,14418:19718775,11696241:2468537,459977,115847 -k1,14418:19718775,11696241:3277 -h1,14418:22184035,11696241:0,411205,112570 -) -k1,14418:22393161,11696241:205849 -k1,14418:24221026,11696241:205849 -k1,14418:25174642,11696241:205850 -k1,14418:27348537,11696241:205849 -k1,14418:29289779,11696241:205849 -k1,14418:30514713,11696241:205849 -k1,14418:32583029,11696241:0 -) -(1,14419:6630773,12537729:25952256,513147,138281 -g1,14418:7489294,12537729 -g1,14418:8707608,12537729 -$1,14418:8707608,12537729 -$1,14418:9210269,12537729 -g1,14418:9409498,12537729 -g1,14418:10800172,12537729 -$1,14418:10800172,12537729 -$1,14418:11351985,12537729 -g1,14418:11551214,12537729 -g1,14418:15098677,12537729 -g1,14418:17249568,12537729 -g1,14418:18467882,12537729 -g1,14418:20735427,12537729 -g1,14418:21593948,12537729 -g1,14418:22812262,12537729 -g1,14418:25596886,12537729 -g1,14418:28637756,12537729 -g1,14418:29453023,12537729 -(1,14418:29453023,12537729:0,414482,115847 -r1,14477:31569848,12537729:2116825,530329,115847 -k1,14418:29453023,12537729:-2116825 -) -(1,14418:29453023,12537729:2116825,414482,115847 -k1,14418:29453023,12537729:3277 -h1,14418:31566571,12537729:0,411205,112570 -) -k1,14419:32583029,12537729:839511 -g1,14419:32583029,12537729 -) -v1,14421:6630773,13728195:0,393216,0 -(1,14426:6630773,14703178:25952256,1368199,196608 -g1,14426:6630773,14703178 -g1,14426:6630773,14703178 -g1,14426:6434165,14703178 -(1,14426:6434165,14703178:0,1368199,196608 -r1,14477:32779637,14703178:26345472,1564807,196608 -k1,14426:6434165,14703178:-26345472 -) -(1,14426:6434165,14703178:26345472,1368199,196608 -[1,14426:6630773,14703178:25952256,1171591,0 -(1,14423:6630773,13935813:25952256,404226,107478 -(1,14422:6630773,13935813:0,0,0 -g1,14422:6630773,13935813 -g1,14422:6630773,13935813 -g1,14422:6303093,13935813 -(1,14422:6303093,13935813:0,0,0 -) -g1,14422:6630773,13935813 -) -k1,14423:6630773,13935813:0 -g1,14423:10424522,13935813 -g1,14423:11056814,13935813 -g1,14423:13585980,13935813 -g1,14423:15482855,13935813 -g1,14423:16115147,13935813 -g1,14423:18012022,13935813 -g1,14423:18644314,13935813 -g1,14423:19276606,13935813 -g1,14423:21173480,13935813 -h1,14423:21489626,13935813:0,0,0 -k1,14423:32583029,13935813:11093403 -g1,14423:32583029,13935813 -) -(1,14424:6630773,14601991:25952256,410518,101187 -h1,14424:6630773,14601991:0,0,0 -g1,14424:6946919,14601991 -g1,14424:7263065,14601991 -g1,14424:7579211,14601991 -g1,14424:7895357,14601991 -g1,14424:8211503,14601991 -g1,14424:8527649,14601991 -g1,14424:8843795,14601991 -g1,14424:15166709,14601991 -g1,14424:15799001,14601991 -g1,14424:16431293,14601991 -g1,14424:17063585,14601991 -h1,14424:17695876,14601991:0,0,0 -k1,14424:32583029,14601991:14887153 -g1,14424:32583029,14601991 -) -] -) -g1,14426:32583029,14703178 -g1,14426:6630773,14703178 -g1,14426:6630773,14703178 -g1,14426:32583029,14703178 -g1,14426:32583029,14703178 -) -h1,14426:6630773,14899786:0,0,0 -(1,14430:6630773,16265562:25952256,505283,134348 -h1,14429:6630773,16265562:983040,0,0 -k1,14429:8432732,16265562:191084 -k1,14429:10225516,16265562:191084 -k1,14429:12113982,16265562:191084 -k1,14429:13173418,16265562:191084 -k1,14429:14496964,16265562:191084 -k1,14429:16236664,16265562:191084 -k1,14429:17079176,16265562:191084 -k1,14429:18547558,16265562:191085 -k1,14429:19757727,16265562:191084 -k1,14429:24020563,16265562:191084 -k1,14429:24897809,16265562:191084 -k1,14429:27107402,16265562:191084 -k1,14429:29978909,16265562:191084 -k1,14429:31563944,16265562:191084 -k1,14429:32583029,16265562:0 -) -(1,14430:6630773,17107050:25952256,513147,126483 -k1,14429:10089623,17107050:238411 -k1,14429:11281582,17107050:238410 -k1,14429:12624275,17107050:238411 -k1,14429:14139982,17107050:238410 -k1,14429:15397478,17107050:238411 -k1,14429:19377338,17107050:238410 -k1,14429:20425119,17107050:238411 -k1,14429:21735698,17107050:238410 -k1,14429:22633401,17107050:238411 -k1,14429:23890896,17107050:238410 -k1,14429:27349746,17107050:238411 -k1,14429:28274318,17107050:238410 -k1,14429:30090181,17107050:238411 -k1,14429:31900144,17107050:238410 -k1,14429:32583029,17107050:0 -) -(1,14430:6630773,17948538:25952256,513147,126483 -g1,14429:7849087,17948538 -g1,14429:11095085,17948538 -g1,14429:12103684,17948538 -g1,14429:13375082,17948538 -g1,14429:14233603,17948538 -g1,14429:15451917,17948538 -k1,14430:32583029,17948538:12885690 -g1,14430:32583029,17948538 -) -v1,14432:6630773,19139004:0,393216,0 -(1,14440:6630773,22107994:25952256,3362206,196608 -g1,14440:6630773,22107994 -g1,14440:6630773,22107994 -g1,14440:6434165,22107994 -(1,14440:6434165,22107994:0,3362206,196608 -r1,14477:32779637,22107994:26345472,3558814,196608 -k1,14440:6434165,22107994:-26345472 -) -(1,14440:6434165,22107994:26345472,3362206,196608 -[1,14440:6630773,22107994:25952256,3165598,0 -(1,14434:6630773,19346622:25952256,404226,107478 -(1,14433:6630773,19346622:0,0,0 -g1,14433:6630773,19346622 -g1,14433:6630773,19346622 -g1,14433:6303093,19346622 -(1,14433:6303093,19346622:0,0,0 -) -g1,14433:6630773,19346622 -) -k1,14434:6630773,19346622:0 -g1,14434:10424522,19346622 -g1,14434:11056814,19346622 -g1,14434:13585980,19346622 -g1,14434:15482855,19346622 -g1,14434:16115147,19346622 -g1,14434:18012022,19346622 -g1,14434:18644314,19346622 -g1,14434:19276606,19346622 -g1,14434:21173480,19346622 -h1,14434:21489626,19346622:0,0,0 -k1,14434:32583029,19346622:11093403 -g1,14434:32583029,19346622 -) -(1,14435:6630773,20012800:25952256,410518,101187 -h1,14435:6630773,20012800:0,0,0 -g1,14435:6946919,20012800 -g1,14435:7263065,20012800 -g1,14435:13585979,20012800 -g1,14435:14218271,20012800 -g1,14435:14850563,20012800 -g1,14435:15482855,20012800 -g1,14435:16431292,20012800 -h1,14435:16747438,20012800:0,0,0 -k1,14435:32583029,20012800:15835591 -g1,14435:32583029,20012800 -) -(1,14436:6630773,20678978:25952256,404226,107478 -h1,14436:6630773,20678978:0,0,0 -g1,14436:6946919,20678978 -g1,14436:7263065,20678978 -k1,14436:7263065,20678978:0 -h1,14436:11056813,20678978:0,0,0 -k1,14436:32583029,20678978:21526216 -g1,14436:32583029,20678978 -) -(1,14440:6630773,22000516:25952256,410518,107478 -g1,14440:7579210,22000516 -g1,14440:12637541,22000516 -g1,14440:14534415,22000516 -g1,14440:16747435,22000516 -g1,14440:17379727,22000516 -k1,14440:32583029,22000516:12990282 -g1,14440:32583029,22000516 -) -] -) -g1,14440:32583029,22107994 -g1,14440:6630773,22107994 -g1,14440:6630773,22107994 -g1,14440:32583029,22107994 -g1,14440:32583029,22107994 -) -h1,14440:6630773,22304602:0,0,0 -(1,14443:6630773,31978092:25952256,9083666,0 -k1,14443:10523651,31978092:3892878 -h1,14442:10523651,31978092:0,0,0 -(1,14442:10523651,31978092:18166500,9083666,0 -(1,14442:10523651,31978092:18167376,9083688,0 -(1,14442:10523651,31978092:18167376,9083688,0 -(1,14442:10523651,31978092:0,9083688,0 -(1,14442:10523651,31978092:0,14208860,0 -(1,14442:10523651,31978092:28417720,14208860,0 -) -k1,14442:10523651,31978092:-28417720 -) -) -g1,14442:28691027,31978092 -) -) -) -g1,14443:28690151,31978092 -k1,14443:32583029,31978092:3892878 -) -(1,14450:6630773,32819580:25952256,513147,134348 -h1,14449:6630773,32819580:983040,0,0 -k1,14449:10126042,32819580:173249 -k1,14449:10958583,32819580:173249 -k1,14449:12867225,32819580:173249 -k1,14449:14059559,32819580:173249 -k1,14449:16498388,32819580:173249 -k1,14449:18764857,32819580:173249 -k1,14449:19806458,32819580:173249 -k1,14449:21083989,32819580:173249 -k1,14449:21944711,32819580:173249 -k1,14449:22473820,32819580:173249 -k1,14449:25409412,32819580:173249 -k1,14449:27744038,32819580:173249 -k1,14449:28545122,32819580:173249 -k1,14449:29921612,32819580:173249 -k1,14449:32583029,32819580:0 -) -(1,14450:6630773,33661068:25952256,513147,126483 -g1,14449:7698354,33661068 -g1,14449:8990068,33661068 -g1,14449:9545157,33661068 -g1,14449:11557112,33661068 -g1,14449:13744048,33661068 -g1,14449:14629439,33661068 -g1,14449:18049107,33661068 -g1,14449:19960792,33661068 -g1,14449:20921549,33661068 -(1,14449:20921549,33661068:0,452978,115847 -r1,14477:22334950,33661068:1413401,568825,115847 -k1,14449:20921549,33661068:-1413401 -) -(1,14449:20921549,33661068:1413401,452978,115847 -k1,14449:20921549,33661068:3277 -h1,14449:22331673,33661068:0,411205,112570 -) -k1,14450:32583029,33661068:10074409 -g1,14450:32583029,33661068 -) -v1,14452:6630773,34851534:0,393216,0 -(1,14456:6630773,35166631:25952256,708313,196608 -g1,14456:6630773,35166631 -g1,14456:6630773,35166631 -g1,14456:6434165,35166631 -(1,14456:6434165,35166631:0,708313,196608 -r1,14477:32779637,35166631:26345472,904921,196608 -k1,14456:6434165,35166631:-26345472 -) -(1,14456:6434165,35166631:26345472,708313,196608 -[1,14456:6630773,35166631:25952256,511705,0 -(1,14454:6630773,35065444:25952256,410518,101187 -(1,14453:6630773,35065444:0,0,0 -g1,14453:6630773,35065444 -g1,14453:6630773,35065444 -g1,14453:6303093,35065444 -(1,14453:6303093,35065444:0,0,0 -) -g1,14453:6630773,35065444 -) -g1,14454:6946919,35065444 -g1,14454:7263065,35065444 -g1,14454:13269833,35065444 -g1,14454:13902125,35065444 -g1,14454:15799000,35065444 -g1,14454:18328166,35065444 -g1,14454:18960458,35065444 -g1,14454:19592750,35065444 -g1,14454:20225042,35065444 -g1,14454:21173479,35065444 -h1,14454:21489625,35065444:0,0,0 -k1,14454:32583029,35065444:11093404 -g1,14454:32583029,35065444 -) -] -) -g1,14456:32583029,35166631 -g1,14456:6630773,35166631 -g1,14456:6630773,35166631 -g1,14456:32583029,35166631 -g1,14456:32583029,35166631 -) -h1,14456:6630773,35363239:0,0,0 -(1,14460:6630773,36729015:25952256,505283,134348 -h1,14459:6630773,36729015:983040,0,0 -k1,14459:9733633,36729015:245490 -k1,14459:11368486,36729015:245490 -k1,14459:12605536,36729015:245490 -k1,14459:14613944,36729015:245490 -k1,14459:17693866,36729015:245490 -k1,14459:18664184,36729015:245490 -k1,14459:19778025,36729015:245489 -k1,14459:21420087,36729015:245490 -k1,14459:24176917,36729015:245490 -(1,14459:24176917,36729015:0,452978,115847 -r1,14477:25238606,36729015:1061689,568825,115847 -k1,14459:24176917,36729015:-1061689 -) -(1,14459:24176917,36729015:1061689,452978,115847 -k1,14459:24176917,36729015:3277 -h1,14459:25235329,36729015:0,411205,112570 -) -k1,14459:25484096,36729015:245490 -k1,14459:26381014,36729015:245490 -k1,14459:27645589,36729015:245490 -(1,14459:27645589,36729015:0,452978,115847 -r1,14477:29410702,36729015:1765113,568825,115847 -k1,14459:27645589,36729015:-1765113 -) -(1,14459:27645589,36729015:1765113,452978,115847 -k1,14459:27645589,36729015:3277 -h1,14459:29407425,36729015:0,411205,112570 -) -k1,14459:29656192,36729015:245490 -k1,14459:32583029,36729015:0 -) -(1,14460:6630773,37570503:25952256,513147,134348 -k1,14459:8262266,37570503:223780 -k1,14459:9354398,37570503:223780 -k1,14459:10556631,37570503:223780 -k1,14459:12435196,37570503:223781 -k1,14459:14881957,37570503:223780 -k1,14459:15765029,37570503:223780 -k1,14459:18007318,37570503:223780 -k1,14459:19625049,37570503:223780 -k1,14459:22611172,37570503:223780 -k1,14459:25196215,37570503:223781 -k1,14459:26492164,37570503:223780 -k1,14459:28001760,37570503:223780 -k1,14459:29880324,37570503:223780 -k1,14459:32583029,37570503:0 -) -(1,14460:6630773,38411991:25952256,505283,7863 -g1,14459:9241072,38411991 -k1,14460:32583029,38411991:21669478 -g1,14460:32583029,38411991 -) -v1,14462:6630773,39602457:0,393216,0 -(1,14468:6630773,41256201:25952256,2046960,196608 -g1,14468:6630773,41256201 -g1,14468:6630773,41256201 -g1,14468:6434165,41256201 -(1,14468:6434165,41256201:0,2046960,196608 -r1,14477:32779637,41256201:26345472,2243568,196608 -k1,14468:6434165,41256201:-26345472 -) -(1,14468:6434165,41256201:26345472,2046960,196608 -[1,14468:6630773,41256201:25952256,1850352,0 -(1,14464:6630773,39816367:25952256,410518,107478 -(1,14463:6630773,39816367:0,0,0 -g1,14463:6630773,39816367 -g1,14463:6630773,39816367 -g1,14463:6303093,39816367 -(1,14463:6303093,39816367:0,0,0 -) -g1,14463:6630773,39816367 -) -k1,14464:6630773,39816367:0 -g1,14464:10424522,39816367 -g1,14464:11056814,39816367 -g1,14464:13585980,39816367 -g1,14464:15482855,39816367 -g1,14464:16115147,39816367 -g1,14464:18012022,39816367 -g1,14464:18644314,39816367 -g1,14464:19276606,39816367 -g1,14464:20857335,39816367 -g1,14464:22754209,39816367 -g1,14464:23386501,39816367 -g1,14464:27812541,39816367 -h1,14464:28128687,39816367:0,0,0 -k1,14464:32583029,39816367:4454342 -g1,14464:32583029,39816367 -) -(1,14465:6630773,40482545:25952256,410518,101187 -h1,14465:6630773,40482545:0,0,0 -g1,14465:6946919,40482545 -g1,14465:7263065,40482545 -g1,14465:13269833,40482545 -g1,14465:13902125,40482545 -g1,14465:15799000,40482545 -g1,14465:18328166,40482545 -g1,14465:18960458,40482545 -g1,14465:19592750,40482545 -g1,14465:20225042,40482545 -g1,14465:21173479,40482545 -h1,14465:21489625,40482545:0,0,0 -k1,14465:32583029,40482545:11093404 -g1,14465:32583029,40482545 -) -(1,14466:6630773,41148723:25952256,404226,107478 -h1,14466:6630773,41148723:0,0,0 -g1,14466:6946919,41148723 -g1,14466:7263065,41148723 -k1,14466:7263065,41148723:0 -h1,14466:11056813,41148723:0,0,0 -k1,14466:32583029,41148723:21526216 -g1,14466:32583029,41148723 -) -] -) -g1,14468:32583029,41256201 -g1,14468:6630773,41256201 -g1,14468:6630773,41256201 -g1,14468:32583029,41256201 -g1,14468:32583029,41256201 -) -h1,14468:6630773,41452809:0,0,0 -] -(1,14477:32583029,45706769:0,0,0 -g1,14477:32583029,45706769 -) -) -] -(1,14477:6630773,47279633:25952256,0,0 -h1,14477:6630773,47279633:25952256,0,0 -) -] -(1,14477:4262630,4025873:0,0,0 -[1,14477:-473656,4025873:0,0,0 -(1,14477:-473656,-710413:0,0,0 -(1,14477:-473656,-710413:0,0,0 -g1,14477:-473656,-710413 -) -g1,14477:-473656,-710413 -) -] -) -] -!20239 -}277 -Input:2225:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2226:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2227:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2228:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2229:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2230:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2231:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2232:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2233:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2234:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2235:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2236:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2237:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2238:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2239:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2240:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1484 -{278 -[1,14510:4262630,47279633:28320399,43253760,0 -(1,14510:4262630,4025873:0,0,0 -[1,14510:-473656,4025873:0,0,0 -(1,14510:-473656,-710413:0,0,0 -(1,14510:-473656,-644877:0,0,0 -k1,14510:-473656,-644877:-65536 -) -(1,14510:-473656,4736287:0,0,0 -k1,14510:-473656,4736287:5209943 -) -g1,14510:-473656,-710413 -) -] -) -[1,14510:6630773,47279633:25952256,43253760,0 -[1,14510:6630773,4812305:25952256,786432,0 -(1,14510:6630773,4812305:25952256,485622,11795 -(1,14510:6630773,4812305:25952256,485622,11795 -g1,14510:3078558,4812305 -[1,14510:3078558,4812305:0,0,0 -(1,14510:3078558,2439708:0,1703936,0 -k1,14510:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,14510:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,14510:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,14510:3078558,4812305:0,0,0 -(1,14510:3078558,2439708:0,1703936,0 -g1,14510:29030814,2439708 -g1,14510:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,14510:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,14510:37855564,2439708:1179648,16384,0 -) -) -k1,14510:3078556,2439708:-34777008 -) -] -[1,14510:3078558,4812305:0,0,0 -(1,14510:3078558,49800853:0,16384,2228224 -k1,14510:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,14510:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,14510:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,14510:3078558,4812305:0,0,0 -(1,14510:3078558,49800853:0,16384,2228224 -g1,14510:29030814,49800853 -g1,14510:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,14510:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,14510:37855564,49800853:1179648,16384,0 -) -) -k1,14510:3078556,49800853:-34777008 -) -] -g1,14510:6630773,4812305 -g1,14510:6630773,4812305 -g1,14510:9560887,4812305 -k1,14510:31387651,4812305:21826764 -) -) -] -[1,14510:6630773,45706769:25952256,40108032,0 -(1,14510:6630773,45706769:25952256,40108032,0 -(1,14510:6630773,45706769:0,0,0 -g1,14510:6630773,45706769 -) -[1,14510:6630773,45706769:25952256,40108032,0 -(1,14471:6630773,14682403:25952256,9083666,0 -k1,14471:10523651,14682403:3892878 -h1,14470:10523651,14682403:0,0,0 -(1,14470:10523651,14682403:18166500,9083666,0 -(1,14470:10523651,14682403:18167376,9083688,0 -(1,14470:10523651,14682403:18167376,9083688,0 -(1,14470:10523651,14682403:0,9083688,0 -(1,14470:10523651,14682403:0,14208860,0 -(1,14470:10523651,14682403:28417720,14208860,0 -) -k1,14470:10523651,14682403:-28417720 -) -) -g1,14470:28691027,14682403 -) -) -) -g1,14471:28690151,14682403 -k1,14471:32583029,14682403:3892878 -) -(1,14478:6630773,15523891:25952256,513147,134348 -h1,14477:6630773,15523891:983040,0,0 -k1,14477:8657941,15523891:215098 -k1,14477:10896792,15523891:215099 -k1,14477:11467750,15523891:215098 -k1,14477:13555868,15523891:215099 -k1,14477:16817735,15523891:215098 -k1,14477:17980485,15523891:215099 -k1,14477:19214668,15523891:215098 -k1,14477:21084550,15523891:215098 -k1,14477:23696301,15523891:215099 -k1,14477:24779751,15523891:215098 -k1,14477:26525116,15523891:215099 -k1,14477:27391642,15523891:215098 -k1,14477:28541284,15523891:215099 -k1,14477:29775467,15523891:215098 -k1,14477:32583029,15523891:0 -) -(1,14478:6630773,16365379:25952256,513147,115847 -k1,14477:7487289,16365379:197224 -k1,14477:8703598,16365379:197224 -(1,14477:8703598,16365379:0,452978,115847 -r1,14510:10468711,16365379:1765113,568825,115847 -k1,14477:8703598,16365379:-1765113 -) -(1,14477:8703598,16365379:1765113,452978,115847 -k1,14477:8703598,16365379:3277 -h1,14477:10465434,16365379:0,411205,112570 -) -k1,14477:10665936,16365379:197225 -k1,14477:13650406,16365379:197224 -k1,14477:14499058,16365379:197224 -k1,14477:15052142,16365379:197224 -k1,14477:18007122,16365379:197225 -k1,14477:20214335,16365379:197224 -(1,14477:20214335,16365379:0,452978,115847 -r1,14510:24089719,16365379:3875384,568825,115847 -k1,14477:20214335,16365379:-3875384 -) -(1,14477:20214335,16365379:3875384,452978,115847 -k1,14477:20214335,16365379:3277 -h1,14477:24086442,16365379:0,411205,112570 -) -k1,14477:24460613,16365379:197224 -k1,14477:26038681,16365379:197224 -k1,14477:27730127,16365379:197225 -k1,14477:29607694,16365379:197224 -k1,14477:32583029,16365379:0 -) -(1,14478:6630773,17206867:25952256,513147,134348 -k1,14477:7851363,17206867:201505 -k1,14477:10318447,17206867:201504 -(1,14477:10318447,17206867:0,452978,115847 -r1,14510:12083560,17206867:1765113,568825,115847 -k1,14477:10318447,17206867:-1765113 -) -(1,14477:10318447,17206867:1765113,452978,115847 -k1,14477:10318447,17206867:3277 -h1,14477:12080283,17206867:0,411205,112570 -) -k1,14477:12285065,17206867:201505 -k1,14477:15294132,17206867:201505 -k1,14477:16430179,17206867:201504 -k1,14477:17247722,17206867:201505 -(1,14477:17247722,17206867:0,452978,122846 -r1,14510:20067971,17206867:2820249,575824,122846 -k1,14477:17247722,17206867:-2820249 -) -(1,14477:17247722,17206867:2820249,452978,122846 -k1,14477:17247722,17206867:3277 -h1,14477:20064694,17206867:0,411205,112570 -) -k1,14477:20269476,17206867:201505 -k1,14477:21699780,17206867:201504 -k1,14477:22848936,17206867:201505 -k1,14477:24253681,17206867:201504 -k1,14477:25732483,17206867:201505 -k1,14477:27665449,17206867:201505 -k1,14477:28820502,17206867:201504 -k1,14477:30114492,17206867:201505 -(1,14477:30114492,17206867:0,452978,115847 -r1,14510:32583029,17206867:2468537,568825,115847 -k1,14477:30114492,17206867:-2468537 -) -(1,14477:30114492,17206867:2468537,452978,115847 -k1,14477:30114492,17206867:3277 -h1,14477:32579752,17206867:0,411205,112570 -) -k1,14477:32583029,17206867:0 -) -(1,14478:6630773,18048355:25952256,513147,126483 -g1,14477:7902171,18048355 -g1,14477:9304641,18048355 -g1,14477:11272687,18048355 -g1,14477:12219682,18048355 -g1,14477:15138000,18048355 -g1,14477:16098757,18048355 -g1,14477:17429793,18048355 -g1,14477:19330992,18048355 -g1,14477:21146339,18048355 -g1,14477:24427726,18048355 -g1,14477:26764739,18048355 -g1,14477:27615396,18048355 -k1,14478:32583029,18048355:4379120 -g1,14478:32583029,18048355 -) -v1,14480:6630773,19238821:0,393216,0 -(1,14486:6630773,20892565:25952256,2046960,196608 -g1,14486:6630773,20892565 -g1,14486:6630773,20892565 -g1,14486:6434165,20892565 -(1,14486:6434165,20892565:0,2046960,196608 -r1,14510:32779637,20892565:26345472,2243568,196608 -k1,14486:6434165,20892565:-26345472 -) -(1,14486:6434165,20892565:26345472,2046960,196608 -[1,14486:6630773,20892565:25952256,1850352,0 -(1,14482:6630773,19452731:25952256,410518,107478 -(1,14481:6630773,19452731:0,0,0 -g1,14481:6630773,19452731 -g1,14481:6630773,19452731 -g1,14481:6303093,19452731 -(1,14481:6303093,19452731:0,0,0 -) -g1,14481:6630773,19452731 -) -k1,14482:6630773,19452731:0 -g1,14482:10424522,19452731 -g1,14482:11056814,19452731 -g1,14482:13585980,19452731 -g1,14482:15482855,19452731 -g1,14482:16115147,19452731 -g1,14482:18012022,19452731 -g1,14482:18644314,19452731 -g1,14482:19276606,19452731 -g1,14482:20857335,19452731 -g1,14482:22754209,19452731 -g1,14482:23386501,19452731 -g1,14482:27812541,19452731 -h1,14482:28128687,19452731:0,0,0 -k1,14482:32583029,19452731:4454342 -g1,14482:32583029,19452731 -) -(1,14483:6630773,20118909:25952256,410518,101187 -h1,14483:6630773,20118909:0,0,0 -g1,14483:6946919,20118909 -g1,14483:7263065,20118909 -g1,14483:13269833,20118909 -g1,14483:13902125,20118909 -g1,14483:15799000,20118909 -g1,14483:18328166,20118909 -g1,14483:18960458,20118909 -g1,14483:19592750,20118909 -g1,14483:20225042,20118909 -g1,14483:21173480,20118909 -g1,14483:23070354,20118909 -g1,14483:23702646,20118909 -g1,14483:26547958,20118909 -h1,14483:26864104,20118909:0,0,0 -k1,14483:32583029,20118909:5718925 -g1,14483:32583029,20118909 -) -(1,14484:6630773,20785087:25952256,404226,107478 -h1,14484:6630773,20785087:0,0,0 -g1,14484:6946919,20785087 -g1,14484:7263065,20785087 -k1,14484:7263065,20785087:0 -h1,14484:11056813,20785087:0,0,0 -k1,14484:32583029,20785087:21526216 -g1,14484:32583029,20785087 -) -] -) -g1,14486:32583029,20892565 -g1,14486:6630773,20892565 -g1,14486:6630773,20892565 -g1,14486:32583029,20892565 -g1,14486:32583029,20892565 -) -h1,14486:6630773,21089173:0,0,0 -(1,14490:6630773,22454949:25952256,513147,134348 -h1,14489:6630773,22454949:983040,0,0 -k1,14489:10241016,22454949:288223 -k1,14489:11188531,22454949:288223 -k1,14489:13212147,22454949:288223 -k1,14489:14519454,22454949:288222 -(1,14489:14519454,22454949:0,459977,115847 -r1,14510:16987991,22454949:2468537,575824,115847 -k1,14489:14519454,22454949:-2468537 -) -(1,14489:14519454,22454949:2468537,459977,115847 -k1,14489:14519454,22454949:3277 -h1,14489:16984714,22454949:0,411205,112570 -) -k1,14489:17276214,22454949:288223 -k1,14489:18512088,22454949:288223 -k1,14489:19156171,22454949:288223 -k1,14489:21257120,22454949:288223 -k1,14489:24862120,22454949:288223 -k1,14489:25836505,22454949:288223 -k1,14489:29345166,22454949:288222 -k1,14489:30501741,22454949:288223 -k1,14489:32227169,22454949:288223 -k1,14489:32583029,22454949:0 -) -(1,14490:6630773,23296437:25952256,513147,134348 -k1,14489:9583513,23296437:190397 -(1,14489:9583513,23296437:0,459977,115847 -r1,14510:12052050,23296437:2468537,575824,115847 -k1,14489:9583513,23296437:-2468537 -) -(1,14489:9583513,23296437:2468537,459977,115847 -k1,14489:9583513,23296437:3277 -h1,14489:12048773,23296437:0,411205,112570 -) -k1,14489:12242446,23296437:190396 -k1,14489:13119005,23296437:190397 -k1,14489:14080105,23296437:190397 -k1,14489:17516499,23296437:190396 -k1,14489:18334731,23296437:190397 -k1,14489:19728368,23296437:190396 -k1,14489:22580182,23296437:190397 -k1,14489:23638931,23296437:190397 -k1,14489:24921812,23296437:190396 -k1,14489:25468069,23296437:190397 -k1,14489:29231489,23296437:190397 -k1,14489:30081177,23296437:190396 -k1,14489:32010900,23296437:190397 -k1,14490:32583029,23296437:0 -k1,14490:32583029,23296437:0 -) -v1,14492:6630773,24486903:0,393216,0 -(1,14498:6630773,26140647:25952256,2046960,196608 -g1,14498:6630773,26140647 -g1,14498:6630773,26140647 -g1,14498:6434165,26140647 -(1,14498:6434165,26140647:0,2046960,196608 -r1,14510:32779637,26140647:26345472,2243568,196608 -k1,14498:6434165,26140647:-26345472 -) -(1,14498:6434165,26140647:26345472,2046960,196608 -[1,14498:6630773,26140647:25952256,1850352,0 -(1,14494:6630773,24700813:25952256,410518,107478 -(1,14493:6630773,24700813:0,0,0 -g1,14493:6630773,24700813 -g1,14493:6630773,24700813 -g1,14493:6303093,24700813 -(1,14493:6303093,24700813:0,0,0 -) -g1,14493:6630773,24700813 -) -k1,14494:6630773,24700813:0 -g1,14494:10424522,24700813 -g1,14494:11056814,24700813 -g1,14494:13585980,24700813 -g1,14494:15482855,24700813 -g1,14494:16115147,24700813 -g1,14494:18012022,24700813 -g1,14494:18644314,24700813 -g1,14494:19276606,24700813 -g1,14494:20857335,24700813 -g1,14494:22754209,24700813 -g1,14494:23386501,24700813 -g1,14494:27812541,24700813 -h1,14494:28128687,24700813:0,0,0 -k1,14494:32583029,24700813:4454342 -g1,14494:32583029,24700813 -) -(1,14495:6630773,25366991:25952256,410518,101187 -h1,14495:6630773,25366991:0,0,0 -g1,14495:6946919,25366991 -g1,14495:7263065,25366991 -g1,14495:13269833,25366991 -g1,14495:13902125,25366991 -g1,14495:15799000,25366991 -g1,14495:18328166,25366991 -g1,14495:18960458,25366991 -g1,14495:19592750,25366991 -g1,14495:20225042,25366991 -g1,14495:22754208,25366991 -g1,14495:24018792,25366991 -g1,14495:25915666,25366991 -g1,14495:26547958,25366991 -g1,14495:29393270,25366991 -h1,14495:29709416,25366991:0,0,0 -k1,14495:32583029,25366991:2873613 -g1,14495:32583029,25366991 -) -(1,14496:6630773,26033169:25952256,404226,107478 -h1,14496:6630773,26033169:0,0,0 -g1,14496:6946919,26033169 -g1,14496:7263065,26033169 -k1,14496:7263065,26033169:0 -h1,14496:11056813,26033169:0,0,0 -k1,14496:32583029,26033169:21526216 -g1,14496:32583029,26033169 -) -] -) -g1,14498:32583029,26140647 -g1,14498:6630773,26140647 -g1,14498:6630773,26140647 -g1,14498:32583029,26140647 -g1,14498:32583029,26140647 -) -h1,14498:6630773,26337255:0,0,0 -(1,14501:6630773,36010745:25952256,9083666,0 -k1,14501:10523651,36010745:3892878 -h1,14500:10523651,36010745:0,0,0 -(1,14500:10523651,36010745:18166500,9083666,0 -(1,14500:10523651,36010745:18167376,9083688,0 -(1,14500:10523651,36010745:18167376,9083688,0 -(1,14500:10523651,36010745:0,9083688,0 -(1,14500:10523651,36010745:0,14208860,0 -(1,14500:10523651,36010745:28417720,14208860,0 -) -k1,14500:10523651,36010745:-28417720 -) -) -g1,14500:28691027,36010745 -) -) -) -g1,14501:28690151,36010745 -k1,14501:32583029,36010745:3892878 -) -(1,14508:6630773,36852233:25952256,513147,134348 -h1,14507:6630773,36852233:983040,0,0 -k1,14507:8472450,36852233:388744 -k1,14507:9392691,36852233:388744 -k1,14507:12411395,36852233:388744 -k1,14507:13451566,36852233:388743 -k1,14507:14932795,36852233:388744 -k1,14507:17023509,36852233:388744 -k1,14507:19128641,36852233:388744 -k1,14507:20176677,36852233:388744 -k1,14507:23057100,36852233:388744 -k1,14507:26426421,36852233:388744 -k1,14507:28345895,36852233:388553 -k1,14507:29926084,36852233:388744 -k1,14507:31896867,36852233:388744 -k1,14507:32583029,36852233:0 -) -(1,14508:6630773,37693721:25952256,513147,134348 -k1,14507:10437657,37693721:256143 -k1,14507:11765969,37693721:256143 -k1,14507:12890464,37693721:256143 -k1,14507:14279069,37693721:256143 -k1,14507:15815130,37693721:256143 -k1,14507:17446874,37693721:256143 -k1,14507:18875456,37693721:256143 -k1,14507:21256277,37693721:256144 -k1,14507:24504139,37693721:256143 -k1,14507:25419574,37693721:256143 -k1,14507:26694802,37693721:256143 -k1,14507:28043430,37693721:256143 -k1,14507:28966729,37693721:256143 -(1,14507:28966729,37693721:0,452978,115847 -r1,14510:30731842,37693721:1765113,568825,115847 -k1,14507:28966729,37693721:-1765113 -) -(1,14507:28966729,37693721:1765113,452978,115847 -k1,14507:28966729,37693721:3277 -h1,14507:30728565,37693721:0,411205,112570 -) -k1,14507:30987985,37693721:256143 -k1,14507:31895556,37693721:256143 -k1,14507:32583029,37693721:0 -) -(1,14508:6630773,38535209:25952256,513147,134348 -k1,14507:7163159,38535209:176526 -k1,14507:9327392,38535209:176526 -k1,14507:12753848,38535209:176526 -k1,14507:13546411,38535209:176525 -k1,14507:14511335,38535209:176526 -k1,14507:18298895,38535209:176526 -k1,14507:19707498,38535209:176526 -k1,14507:22162711,38535209:176526 -h1,14507:23133299,38535209:0,0,0 -k1,14507:23309825,38535209:176526 -k1,14507:24295721,38535209:176526 -k1,14507:25970399,38535209:176525 -h1,14507:27165776,38535209:0,0,0 -k1,14507:27342302,38535209:176526 -k1,14507:28466479,38535209:176526 -k1,14507:30760473,38535209:176526 -k1,14507:32583029,38535209:0 -) -(1,14508:6630773,39376697:25952256,513147,134348 -k1,14507:8734369,39376697:168973 -k1,14507:10106583,39376697:168973 -k1,14507:11929029,39376697:168973 -k1,14507:14085709,39376697:168973 -k1,14507:15648633,39376697:168973 -(1,14507:15648633,39376697:0,452978,115847 -r1,14510:17413746,39376697:1765113,568825,115847 -k1,14507:15648633,39376697:-1765113 -) -(1,14507:15648633,39376697:1765113,452978,115847 -k1,14507:15648633,39376697:3277 -h1,14507:17410469,39376697:0,411205,112570 -) -k1,14507:17963483,39376697:168973 -k1,14507:18760290,39376697:168972 -k1,14507:19948348,39376697:168973 -k1,14507:21423454,39376697:168973 -k1,14507:22749137,39376697:168973 -k1,14507:23786462,39376697:168973 -k1,14507:24642908,39376697:168973 -k1,14507:25167741,39376697:168973 -k1,14507:30847636,39376697:168973 -k1,14508:32583029,39376697:0 -) -(1,14508:6630773,40218185:25952256,505283,115847 -k1,14507:8190864,40218185:292625 -k1,14507:9134917,40218185:292625 -k1,14507:12020146,40218185:292625 -k1,14507:13561232,40218185:292625 -(1,14507:13768326,40218185:0,414482,115847 -r1,14510:15181727,40218185:1413401,530329,115847 -k1,14507:13768326,40218185:-1413401 -) -(1,14507:13768326,40218185:1413401,414482,115847 -k1,14507:13768326,40218185:3277 -h1,14507:15178450,40218185:0,411205,112570 -) -k1,14507:15681446,40218185:292625 -k1,14507:18042388,40218185:292626 -k1,14507:20944657,40218185:292625 -k1,14507:25644578,40218185:292625 -(1,14507:25851672,40218185:0,414482,115847 -r1,14510:27265073,40218185:1413401,530329,115847 -k1,14507:25851672,40218185:-1413401 -) -(1,14507:25851672,40218185:1413401,414482,115847 -k1,14507:25851672,40218185:3277 -h1,14507:27261796,40218185:0,411205,112570 -) -k1,14507:27938462,40218185:292625 -(1,14507:27938462,40218185:0,452978,115847 -r1,14510:31110422,40218185:3171960,568825,115847 -k1,14507:27938462,40218185:-3171960 -) -(1,14507:27938462,40218185:3171960,452978,115847 -k1,14507:27938462,40218185:3277 -h1,14507:31107145,40218185:0,411205,112570 -) -k1,14507:31403047,40218185:292625 -k1,14507:32227169,40218185:292625 -k1,14507:32583029,40218185:0 -) -(1,14508:6630773,41059673:25952256,513147,115847 -k1,14507:8224061,41059673:203925 -k1,14507:9362529,41059673:203925 -k1,14507:12324864,41059673:203925 -k1,14507:13144827,41059673:203925 -k1,14507:14367838,41059673:203926 -k1,14507:14986601,41059673:203920 -k1,14507:19145624,41059673:203925 -k1,14507:22139417,41059673:203925 -(1,14507:22139417,41059673:0,452978,115847 -r1,14510:25663089,41059673:3523672,568825,115847 -k1,14507:22139417,41059673:-3523672 -) -(1,14507:22139417,41059673:3523672,452978,115847 -k1,14507:22139417,41059673:3277 -h1,14507:25659812,41059673:0,411205,112570 -) -k1,14507:25867014,41059673:203925 -k1,14507:26602437,41059673:203926 -k1,14507:28092178,41059673:203925 -k1,14507:29863724,41059673:203925 -k1,14507:30656162,41059673:203925 -k1,14507:32051532,41059673:203925 -k1,14507:32583029,41059673:0 -) -(1,14508:6630773,41901161:25952256,513147,134348 -k1,14507:7239602,41901161:252969 -k1,14507:11231400,41901161:252969 -k1,14507:16541127,41901161:252969 -k1,14507:17453388,41901161:252969 -k1,14507:18725442,41901161:252969 -k1,14507:24489333,41901161:252969 -k1,14507:27705840,41901161:252969 -k1,14507:30301721,41901161:252969 -k1,14507:31206118,41901161:252969 -k1,14507:32583029,41901161:0 -) -(1,14508:6630773,42742649:25952256,513147,134348 -k1,14507:8264760,42742649:167291 -k1,14507:10702219,42742649:167292 -k1,14507:11888595,42742649:167291 -k1,14507:12743360,42742649:167292 -k1,14507:13442148,42742649:167291 -k1,14507:15186891,42742649:167291 -k1,14507:16748134,42742649:167292 -k1,14507:17686128,42742649:167291 -k1,14507:20465685,42742649:167292 -k1,14507:23917640,42742649:167291 -k1,14507:24953283,42742649:167291 -k1,14507:25935843,42742649:167292 -k1,14507:27169405,42742649:167291 -k1,14507:28866963,42742649:167292 -k1,14507:29685682,42742649:167291 -k1,14507:32583029,42742649:0 -) -(1,14508:6630773,43584137:25952256,513147,134348 -k1,14507:9259034,43584137:198186 -k1,14507:11935792,43584137:198186 -k1,14507:14144622,43584137:198185 -k1,14507:15290459,43584137:198186 -k1,14507:16507730,43584137:198186 -k1,14507:20316950,43584137:198186 -k1,14507:21166563,43584137:198185 -k1,14507:22112515,43584137:198186 -k1,14507:24196827,43584137:198186 -k1,14507:25348562,43584137:198186 -k1,14507:27077013,43584137:198185 -k1,14507:27926627,43584137:198186 -k1,14507:29059356,43584137:198186 -(1,14507:29059356,43584137:0,414482,115847 -r1,14510:32583029,43584137:3523673,530329,115847 -k1,14507:29059356,43584137:-3523673 -) -(1,14507:29059356,43584137:3523673,414482,115847 -g1,14507:30117769,43584137 -g1,14507:30821193,43584137 -h1,14507:32579752,43584137:0,411205,112570 -) -k1,14507:32583029,43584137:0 -) -(1,14508:6630773,44425625:25952256,513147,126483 -k1,14507:9340521,44425625:180058 -k1,14507:12364186,44425625:180058 -k1,14507:14481488,44425625:180058 -k1,14507:15653106,44425625:180058 -k1,14507:16899435,44425625:180058 -k1,14507:20373988,44425625:180058 -k1,14507:21315575,44425625:180059 -k1,14507:22514718,44425625:180058 -(1,14507:22514718,44425625:0,452978,115847 -r1,14510:25686678,44425625:3171960,568825,115847 -k1,14507:22514718,44425625:-3171960 -) -(1,14507:22514718,44425625:3171960,452978,115847 -k1,14507:22514718,44425625:3277 -h1,14507:25683401,44425625:0,411205,112570 -) -k1,14507:25866736,44425625:180058 -k1,14507:28501117,44425625:180058 -k1,14507:29628826,44425625:180058 -(1,14507:29628826,44425625:0,452978,115847 -r1,14510:30690515,44425625:1061689,568825,115847 -k1,14507:29628826,44425625:-1061689 -) -(1,14507:29628826,44425625:1061689,452978,115847 -k1,14507:29628826,44425625:3277 -h1,14507:30687238,44425625:0,411205,112570 -) -k1,14507:30870573,44425625:180058 -k1,14507:32583029,44425625:0 -) -(1,14508:6630773,45267113:25952256,505283,7863 -k1,14508:32583028,45267113:23460576 -g1,14508:32583028,45267113 -) -] -(1,14510:32583029,45706769:0,0,0 -g1,14510:32583029,45706769 -) -) -] -(1,14510:6630773,47279633:25952256,0,0 -h1,14510:6630773,47279633:25952256,0,0 -) -] -(1,14510:4262630,4025873:0,0,0 -[1,14510:-473656,4025873:0,0,0 -(1,14510:-473656,-710413:0,0,0 -(1,14510:-473656,-710413:0,0,0 -g1,14510:-473656,-710413 -) -g1,14510:-473656,-710413 -) -] -) -] -!21338 -}278 -Input:2241:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2242:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2243:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2244:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2245:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!472 -{279 -[1,14576:4262630,47279633:28320399,43253760,0 -(1,14576:4262630,4025873:0,0,0 -[1,14576:-473656,4025873:0,0,0 -(1,14576:-473656,-710413:0,0,0 -(1,14576:-473656,-644877:0,0,0 -k1,14576:-473656,-644877:-65536 -) -(1,14576:-473656,4736287:0,0,0 -k1,14576:-473656,4736287:5209943 -) -g1,14576:-473656,-710413 -) -] -) -[1,14576:6630773,47279633:25952256,43253760,0 -[1,14576:6630773,4812305:25952256,786432,0 -(1,14576:6630773,4812305:25952256,513147,134348 -(1,14576:6630773,4812305:25952256,513147,134348 -g1,14576:3078558,4812305 -[1,14576:3078558,4812305:0,0,0 -(1,14576:3078558,2439708:0,1703936,0 -k1,14576:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,14576:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,14576:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,14576:3078558,4812305:0,0,0 -(1,14576:3078558,2439708:0,1703936,0 -g1,14576:29030814,2439708 -g1,14576:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,14576:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,14576:37855564,2439708:1179648,16384,0 -) -) -k1,14576:3078556,2439708:-34777008 -) -] -[1,14576:3078558,4812305:0,0,0 -(1,14576:3078558,49800853:0,16384,2228224 -k1,14576:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,14576:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,14576:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,14576:3078558,4812305:0,0,0 -(1,14576:3078558,49800853:0,16384,2228224 -g1,14576:29030814,49800853 -g1,14576:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,14576:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,14576:37855564,49800853:1179648,16384,0 -) -) -k1,14576:3078556,49800853:-34777008 -) -] -g1,14576:6630773,4812305 -k1,14576:25712890,4812305:17886740 -g1,14576:29057847,4812305 -g1,14576:29873114,4812305 -) -) -] -[1,14576:6630773,45706769:25952256,40108032,0 -(1,14576:6630773,45706769:25952256,40108032,0 -(1,14576:6630773,45706769:0,0,0 -g1,14576:6630773,45706769 -) -[1,14576:6630773,45706769:25952256,40108032,0 -v1,14510:6630773,6254097:0,393216,0 -(1,14518:6630773,9202448:25952256,3341567,196608 -g1,14518:6630773,9202448 -g1,14518:6630773,9202448 -g1,14518:6434165,9202448 -(1,14518:6434165,9202448:0,3341567,196608 -r1,14576:32779637,9202448:26345472,3538175,196608 -k1,14518:6434165,9202448:-26345472 -) -(1,14518:6434165,9202448:26345472,3341567,196608 -[1,14518:6630773,9202448:25952256,3144959,0 -(1,14512:6630773,6461715:25952256,404226,107478 -(1,14511:6630773,6461715:0,0,0 -g1,14511:6630773,6461715 -g1,14511:6630773,6461715 -g1,14511:6303093,6461715 -(1,14511:6303093,6461715:0,0,0 -) -g1,14511:6630773,6461715 -) -k1,14512:6630773,6461715:0 -g1,14512:12321396,6461715 -g1,14512:15482853,6461715 -g1,14512:17379728,6461715 -g1,14512:19276602,6461715 -g1,14512:19908894,6461715 -g1,14512:22438060,6461715 -h1,14512:22754206,6461715:0,0,0 -k1,14512:32583029,6461715:9828823 -g1,14512:32583029,6461715 -) -(1,14513:6630773,7127893:25952256,404226,107478 -h1,14513:6630773,7127893:0,0,0 -g1,14513:6946919,7127893 -g1,14513:7263065,7127893 -g1,14513:11372959,7127893 -h1,14513:11689105,7127893:0,0,0 -k1,14513:32583029,7127893:20893924 -g1,14513:32583029,7127893 -) -(1,14514:6630773,7794071:25952256,404226,107478 -h1,14514:6630773,7794071:0,0,0 -g1,14514:6946919,7794071 -g1,14514:7263065,7794071 -g1,14514:13269833,7794071 -g1,14514:13902125,7794071 -k1,14514:13902125,7794071:0 -h1,14514:15798999,7794071:0,0,0 -k1,14514:32583029,7794071:16784030 -g1,14514:32583029,7794071 -) -(1,14515:6630773,8460249:25952256,410518,101187 -h1,14515:6630773,8460249:0,0,0 -g1,14515:6946919,8460249 -g1,14515:7263065,8460249 -g1,14515:7579211,8460249 -g1,14515:7895357,8460249 -g1,14515:8211503,8460249 -g1,14515:8527649,8460249 -g1,14515:8843795,8460249 -g1,14515:9159941,8460249 -g1,14515:9476087,8460249 -g1,14515:9792233,8460249 -g1,14515:10108379,8460249 -g1,14515:10424525,8460249 -g1,14515:10740671,8460249 -g1,14515:11056817,8460249 -g1,14515:13585983,8460249 -g1,14515:14218275,8460249 -g1,14515:14534421,8460249 -g1,14515:15166713,8460249 -g1,14515:15799005,8460249 -g1,14515:19592753,8460249 -g1,14515:20857336,8460249 -k1,14515:20857336,8460249:0 -h1,14515:21805773,8460249:0,0,0 -k1,14515:32583029,8460249:10777256 -g1,14515:32583029,8460249 -) -(1,14516:6630773,9126427:25952256,404226,76021 -h1,14516:6630773,9126427:0,0,0 -g1,14516:6946919,9126427 -g1,14516:7263065,9126427 -g1,14516:7579211,9126427 -g1,14516:7895357,9126427 -g1,14516:8211503,9126427 -g1,14516:8527649,9126427 -g1,14516:8843795,9126427 -g1,14516:9159941,9126427 -g1,14516:9476087,9126427 -g1,14516:9792233,9126427 -g1,14516:10108379,9126427 -g1,14516:10424525,9126427 -g1,14516:10740671,9126427 -g1,14516:11056817,9126427 -g1,14516:12005254,9126427 -g1,14516:12637546,9126427 -h1,14516:14534420,9126427:0,0,0 -k1,14516:32583028,9126427:18048608 -g1,14516:32583028,9126427 -) -] -) -g1,14518:32583029,9202448 -g1,14518:6630773,9202448 -g1,14518:6630773,9202448 -g1,14518:32583029,9202448 -g1,14518:32583029,9202448 -) -h1,14518:6630773,9399056:0,0,0 -(1,14522:6630773,10696692:25952256,513147,126483 -h1,14521:6630773,10696692:983040,0,0 -k1,14521:8409017,10696692:167369 -k1,14521:9595471,10696692:167369 -k1,14521:12004171,10696692:167369 -k1,14521:14832956,10696692:167368 -k1,14521:15868677,10696692:167369 -k1,14521:17996883,10696692:167369 -k1,14521:19183337,10696692:167369 -k1,14521:21004179,10696692:167369 -k1,14521:23159255,10696692:167369 -k1,14521:25740969,10696692:167368 -k1,14521:26524376,10696692:167369 -k1,14521:27710830,10696692:167369 -k1,14521:29865906,10696692:167369 -k1,14521:32583029,10696692:0 -) -(1,14522:6630773,11538180:25952256,513147,134348 -k1,14521:8050884,11538180:228666 -k1,14521:10709625,11538180:228666 -k1,14521:11957376,11538180:228666 -k1,14521:14664613,11538180:228665 -k1,14521:16903924,11538180:228666 -k1,14521:20203607,11538180:228666 -k1,14521:21628960,11538180:228666 -k1,14521:23925942,11538180:228666 -k1,14521:25667834,11538180:228666 -k1,14521:26844150,11538180:228665 -k1,14521:28091901,11538180:228666 -k1,14521:31931601,11538180:228666 -k1,14521:32583029,11538180:0 -) -(1,14522:6630773,12379668:25952256,513147,134348 -k1,14521:7643352,12379668:264813 -k1,14521:9620622,12379668:264814 -k1,14521:10989717,12379668:264813 -k1,14521:12002296,12379668:264813 -k1,14521:14502543,12379668:264814 -k1,14521:15380118,12379668:264813 -k1,14521:16951064,12379668:264813 -k1,14521:19225867,12379668:264814 -k1,14521:20509765,12379668:264813 -k1,14521:24418380,12379668:264813 -k1,14521:25342486,12379668:264814 -k1,14521:26626384,12379668:264813 -k1,14521:27305974,12379668:264747 -k1,14521:30586755,12379668:264814 -k1,14521:31923737,12379668:264813 -k1,14521:32583029,12379668:0 -) -(1,14522:6630773,13221156:25952256,505283,115847 -g1,14521:8938951,13221156 -g1,14521:10157265,13221156 -g1,14521:12424810,13221156 -g1,14521:14137265,13221156 -g1,14521:14952532,13221156 -(1,14521:14952532,13221156:0,459977,115847 -r1,14576:17421069,13221156:2468537,575824,115847 -k1,14521:14952532,13221156:-2468537 -) -(1,14521:14952532,13221156:2468537,459977,115847 -k1,14521:14952532,13221156:3277 -h1,14521:17417792,13221156:0,411205,112570 -) -g1,14521:17620298,13221156 -g1,14521:19010972,13221156 -(1,14521:19010972,13221156:0,414482,115847 -r1,14576:20776085,13221156:1765113,530329,115847 -k1,14521:19010972,13221156:-1765113 -) -(1,14521:19010972,13221156:1765113,414482,115847 -k1,14521:19010972,13221156:3277 -h1,14521:20772808,13221156:0,411205,112570 -) -g1,14521:20975314,13221156 -g1,14521:22796559,13221156 -g1,14521:24976941,13221156 -g1,14521:26627792,13221156 -k1,14522:32583029,13221156:4079597 -g1,14522:32583029,13221156 -) -v1,14524:6630773,14343483:0,393216,0 -(1,14533:6630773,17958012:25952256,4007745,196608 -g1,14533:6630773,17958012 -g1,14533:6630773,17958012 -g1,14533:6434165,17958012 -(1,14533:6434165,17958012:0,4007745,196608 -r1,14576:32779637,17958012:26345472,4204353,196608 -k1,14533:6434165,17958012:-26345472 -) -(1,14533:6434165,17958012:26345472,4007745,196608 -[1,14533:6630773,17958012:25952256,3811137,0 -(1,14526:6630773,14551101:25952256,404226,107478 -(1,14525:6630773,14551101:0,0,0 -g1,14525:6630773,14551101 -g1,14525:6630773,14551101 -g1,14525:6303093,14551101 -(1,14525:6303093,14551101:0,0,0 -) -g1,14525:6630773,14551101 -) -k1,14526:6630773,14551101:0 -g1,14526:12321396,14551101 -g1,14526:15482853,14551101 -g1,14526:17379728,14551101 -g1,14526:19276602,14551101 -g1,14526:19908894,14551101 -g1,14526:22438060,14551101 -h1,14526:22754206,14551101:0,0,0 -k1,14526:32583029,14551101:9828823 -g1,14526:32583029,14551101 -) -(1,14527:6630773,15217279:25952256,404226,107478 -h1,14527:6630773,15217279:0,0,0 -g1,14527:6946919,15217279 -g1,14527:7263065,15217279 -g1,14527:11372959,15217279 -h1,14527:11689105,15217279:0,0,0 -k1,14527:32583029,15217279:20893924 -g1,14527:32583029,15217279 -) -(1,14528:6630773,15883457:25952256,404226,107478 -h1,14528:6630773,15883457:0,0,0 -g1,14528:6946919,15883457 -g1,14528:7263065,15883457 -g1,14528:13269833,15883457 -g1,14528:13902125,15883457 -k1,14528:13902125,15883457:0 -h1,14528:15798999,15883457:0,0,0 -k1,14528:32583029,15883457:16784030 -g1,14528:32583029,15883457 -) -(1,14529:6630773,16549635:25952256,410518,107478 -h1,14529:6630773,16549635:0,0,0 -g1,14529:6946919,16549635 -g1,14529:7263065,16549635 -g1,14529:7579211,16549635 -g1,14529:7895357,16549635 -g1,14529:8211503,16549635 -g1,14529:8527649,16549635 -g1,14529:8843795,16549635 -g1,14529:9159941,16549635 -g1,14529:9476087,16549635 -g1,14529:9792233,16549635 -g1,14529:10108379,16549635 -g1,14529:10424525,16549635 -g1,14529:10740671,16549635 -g1,14529:11056817,16549635 -g1,14529:14850565,16549635 -g1,14529:15482857,16549635 -g1,14529:19592752,16549635 -g1,14529:20225044,16549635 -g1,14529:20541190,16549635 -g1,14529:21173482,16549635 -g1,14529:21805774,16549635 -g1,14529:23702648,16549635 -g1,14529:24334940,16549635 -g1,14529:25283377,16549635 -g1,14529:25915669,16549635 -g1,14529:26864106,16549635 -g1,14529:27496398,16549635 -k1,14529:27496398,16549635:0 -h1,14529:28444835,16549635:0,0,0 -k1,14529:32583029,16549635:4138194 -g1,14529:32583029,16549635 -) -(1,14530:6630773,17215813:25952256,404226,82312 -h1,14530:6630773,17215813:0,0,0 -g1,14530:6946919,17215813 -g1,14530:7263065,17215813 -g1,14530:7579211,17215813 -g1,14530:7895357,17215813 -g1,14530:8211503,17215813 -g1,14530:8527649,17215813 -g1,14530:8843795,17215813 -g1,14530:9159941,17215813 -g1,14530:9476087,17215813 -g1,14530:9792233,17215813 -g1,14530:10108379,17215813 -g1,14530:10424525,17215813 -g1,14530:10740671,17215813 -g1,14530:11056817,17215813 -g1,14530:11372963,17215813 -g1,14530:11689109,17215813 -g1,14530:12005255,17215813 -g1,14530:12321401,17215813 -g1,14530:12637547,17215813 -g1,14530:12953693,17215813 -g1,14530:13269839,17215813 -g1,14530:13585985,17215813 -g1,14530:13902131,17215813 -g1,14530:14218277,17215813 -g1,14530:14534423,17215813 -g1,14530:14850569,17215813 -g1,14530:15166715,17215813 -g1,14530:15482861,17215813 -g1,14530:15799007,17215813 -g1,14530:16115153,17215813 -g1,14530:16431299,17215813 -g1,14530:16747445,17215813 -g1,14530:17063591,17215813 -g1,14530:18960465,17215813 -g1,14530:19592757,17215813 -g1,14530:22754215,17215813 -g1,14530:23386507,17215813 -g1,14530:24967236,17215813 -g1,14530:25599528,17215813 -g1,14530:26231820,17215813 -k1,14530:26231820,17215813:0 -h1,14530:28444840,17215813:0,0,0 -k1,14530:32583029,17215813:4138189 -g1,14530:32583029,17215813 -) -(1,14531:6630773,17881991:25952256,404226,76021 -h1,14531:6630773,17881991:0,0,0 -g1,14531:6946919,17881991 -g1,14531:7263065,17881991 -g1,14531:7579211,17881991 -g1,14531:7895357,17881991 -g1,14531:8211503,17881991 -g1,14531:8527649,17881991 -g1,14531:8843795,17881991 -g1,14531:9159941,17881991 -g1,14531:9476087,17881991 -g1,14531:9792233,17881991 -g1,14531:10108379,17881991 -g1,14531:10424525,17881991 -g1,14531:10740671,17881991 -g1,14531:11056817,17881991 -g1,14531:12005254,17881991 -g1,14531:12637546,17881991 -h1,14531:14534420,17881991:0,0,0 -k1,14531:32583028,17881991:18048608 -g1,14531:32583028,17881991 -) -] -) -g1,14533:32583029,17958012 -g1,14533:6630773,17958012 -g1,14533:6630773,17958012 -g1,14533:32583029,17958012 -g1,14533:32583029,17958012 -) -h1,14533:6630773,18154620:0,0,0 -(1,14537:6630773,19452256:25952256,513147,126483 -h1,14536:6630773,19452256:983040,0,0 -k1,14536:8481056,19452256:239408 -k1,14536:10412604,19452256:239408 -k1,14536:12349394,19452256:239408 -k1,14536:13046899,19452256:239408 -k1,14536:13817804,19452256:239408 -k1,14536:16953903,19452256:239408 -k1,14536:17844738,19452256:239407 -k1,14536:20881223,19452256:239408 -k1,14536:22728229,19452256:239408 -k1,14536:24361588,19452256:239408 -k1,14536:26313452,19452256:239408 -k1,14536:28540567,19452256:239408 -k1,14536:31900144,19452256:239408 -k1,14536:32583029,19452256:0 -) -(1,14537:6630773,20293744:25952256,513147,134348 -k1,14536:8578784,20293744:235555 -k1,14536:12599043,20293744:235555 -k1,14536:14105996,20293744:235555 -k1,14536:15579526,20293744:235555 -k1,14536:16474373,20293744:235555 -k1,14536:19710166,20293744:235555 -k1,14536:21148963,20293744:235556 -k1,14536:21916015,20293744:235555 -k1,14536:22913098,20293744:235555 -k1,14536:25083276,20293744:235555 -k1,14536:26337916,20293744:235555 -k1,14536:28561178,20293744:235555 -k1,14536:29988178,20293744:235555 -k1,14536:31657661,20293744:235555 -k1,14537:32583029,20293744:0 -) -(1,14537:6630773,21135232:25952256,513147,134348 -k1,14536:9319967,21135232:207346 -k1,14536:10546397,21135232:207345 -k1,14536:14364777,21135232:207346 -k1,14536:15223551,21135232:207346 -k1,14536:18363632,21135232:207345 -k1,14536:21594809,21135232:207346 -k1,14536:23028334,21135232:207346 -k1,14536:25431791,21135232:207346 -k1,14536:26290564,21135232:207345 -k1,14536:27590395,21135232:207346 -k1,14536:28745392,21135232:207346 -k1,14536:30178916,21135232:207345 -k1,14536:31069147,21135232:207346 -k1,14536:32583029,21135232:0 -) -(1,14537:6630773,21976720:25952256,505283,134348 -k1,14536:10811118,21976720:216072 -k1,14536:13961892,21976720:216072 -k1,14536:16758117,21976720:216073 -k1,14536:20021612,21976720:216072 -k1,14536:22283718,21976720:216072 -k1,14536:22957887,21976720:216072 -k1,14536:25803919,21976720:216072 -k1,14536:26671420,21976720:216073 -k1,14536:29889696,21976720:216072 -k1,14536:31599334,21976720:216072 -k1,14537:32583029,21976720:0 -) -(1,14537:6630773,22818208:25952256,505283,134348 -k1,14536:9914211,22818208:263539 -k1,14536:10793788,22818208:263539 -k1,14536:12809104,22818208:263539 -k1,14536:14943696,22818208:263539 -k1,14536:16588079,22818208:263539 -k1,14536:19431770,22818208:263539 -k1,14536:20981125,22818208:263539 -k1,14536:24005040,22818208:263539 -(1,14536:24005040,22818208:0,452978,115847 -r1,14576:29638983,22818208:5633943,568825,115847 -k1,14536:24005040,22818208:-5633943 -) -(1,14536:24005040,22818208:5633943,452978,115847 -k1,14536:24005040,22818208:3277 -h1,14536:29635706,22818208:0,411205,112570 -) -k1,14536:29902522,22818208:263539 -k1,14536:32051532,22818208:263539 -k1,14536:32583029,22818208:0 -) -(1,14537:6630773,23659696:25952256,513147,126483 -k1,14536:9087756,23659696:254973 -k1,14536:9994158,23659696:254974 -(1,14536:9994158,23659696:0,452978,115847 -r1,14576:14572966,23659696:4578808,568825,115847 -k1,14536:9994158,23659696:-4578808 -) -(1,14536:9994158,23659696:4578808,452978,115847 -k1,14536:9994158,23659696:3277 -h1,14536:14569689,23659696:0,411205,112570 -) -k1,14536:14827939,23659696:254973 -k1,14536:16155082,23659696:254974 -k1,14536:17804006,23659696:254973 -(1,14536:17804006,23659696:0,452978,115847 -r1,14576:22382814,23659696:4578808,568825,115847 -k1,14536:17804006,23659696:-4578808 -) -(1,14536:17804006,23659696:4578808,452978,115847 -g1,14536:20269266,23659696 -g1,14536:20972690,23659696 -h1,14536:22379537,23659696:0,411205,112570 -) -k1,14536:22637787,23659696:254973 -k1,14536:26739724,23659696:254974 -k1,14536:27680859,23659696:254973 -k1,14536:28724231,23659696:254974 -k1,14536:31244784,23659696:254973 -k1,14537:32583029,23659696:0 -) -(1,14537:6630773,24501184:25952256,513147,126483 -g1,14536:9424572,24501184 -g1,14536:10283093,24501184 -g1,14536:11501407,24501184 -g1,14536:14186417,24501184 -g1,14536:15044938,24501184 -k1,14537:32583029,24501184:13292669 -g1,14537:32583029,24501184 -) -v1,14539:6630773,25623510:0,393216,0 -(1,14548:6630773,29275788:25952256,4045494,196608 -g1,14548:6630773,29275788 -g1,14548:6630773,29275788 -g1,14548:6434165,29275788 -(1,14548:6434165,29275788:0,4045494,196608 -r1,14576:32779637,29275788:26345472,4242102,196608 -k1,14548:6434165,29275788:-26345472 -) -(1,14548:6434165,29275788:26345472,4045494,196608 -[1,14548:6630773,29275788:25952256,3848886,0 -(1,14541:6630773,25837420:25952256,410518,101187 -(1,14540:6630773,25837420:0,0,0 -g1,14540:6630773,25837420 -g1,14540:6630773,25837420 -g1,14540:6303093,25837420 -(1,14540:6303093,25837420:0,0,0 -) -g1,14540:6630773,25837420 -) -g1,14541:10108376,25837420 -g1,14541:11056814,25837420 -g1,14541:11689106,25837420 -g1,14541:12321398,25837420 -g1,14541:14850564,25837420 -h1,14541:15482856,25837420:0,0,0 -k1,14541:32583028,25837420:17100172 -g1,14541:32583028,25837420 -) -(1,14542:6630773,26503598:25952256,410518,107478 -h1,14542:6630773,26503598:0,0,0 -g1,14542:10424522,26503598 -g1,14542:11056814,26503598 -g1,14542:13585980,26503598 -g1,14542:15482855,26503598 -g1,14542:16115147,26503598 -g1,14542:18012022,26503598 -g1,14542:18644314,26503598 -g1,14542:19276606,26503598 -g1,14542:20857335,26503598 -g1,14542:22754209,26503598 -g1,14542:23386501,26503598 -g1,14542:27812541,26503598 -h1,14542:28128687,26503598:0,0,0 -k1,14542:32583029,26503598:4454342 -g1,14542:32583029,26503598 -) -(1,14543:6630773,27169776:25952256,410518,101187 -h1,14543:6630773,27169776:0,0,0 -g1,14543:6946919,27169776 -g1,14543:7263065,27169776 -g1,14543:14534417,27169776 -g1,14543:15166709,27169776 -g1,14543:18960458,27169776 -g1,14543:20857332,27169776 -g1,14543:21489624,27169776 -g1,14543:24334936,27169776 -h1,14543:24651082,27169776:0,0,0 -k1,14543:32583029,27169776:7931947 -g1,14543:32583029,27169776 -) -(1,14544:6630773,27835954:25952256,410518,101187 -h1,14544:6630773,27835954:0,0,0 -g1,14544:6946919,27835954 -g1,14544:7263065,27835954 -g1,14544:13902125,27835954 -g1,14544:14534417,27835954 -g1,14544:18328166,27835954 -g1,14544:21489623,27835954 -g1,14544:22121915,27835954 -k1,14544:22121915,27835954:0 -h1,14544:26547955,27835954:0,0,0 -k1,14544:32583029,27835954:6035074 -g1,14544:32583029,27835954 -) -(1,14545:6630773,28502132:25952256,404226,101187 -h1,14545:6630773,28502132:0,0,0 -g1,14545:6946919,28502132 -g1,14545:7263065,28502132 -g1,14545:7579211,28502132 -g1,14545:7895357,28502132 -g1,14545:8211503,28502132 -g1,14545:8527649,28502132 -g1,14545:8843795,28502132 -g1,14545:9159941,28502132 -g1,14545:9476087,28502132 -g1,14545:9792233,28502132 -g1,14545:10108379,28502132 -g1,14545:10424525,28502132 -g1,14545:10740671,28502132 -g1,14545:11056817,28502132 -g1,14545:11372963,28502132 -g1,14545:13269837,28502132 -g1,14545:13902129,28502132 -g1,14545:16747441,28502132 -g1,14545:18644315,28502132 -g1,14545:19276607,28502132 -g1,14545:21173482,28502132 -g1,14545:24967230,28502132 -g1,14545:25599522,28502132 -g1,14545:27180251,28502132 -h1,14545:27496397,28502132:0,0,0 -k1,14545:32583029,28502132:5086632 -g1,14545:32583029,28502132 -) -(1,14546:6630773,29168310:25952256,404226,107478 -h1,14546:6630773,29168310:0,0,0 -g1,14546:6946919,29168310 -g1,14546:7263065,29168310 -k1,14546:7263065,29168310:0 -h1,14546:11056813,29168310:0,0,0 -k1,14546:32583029,29168310:21526216 -g1,14546:32583029,29168310 -) -] -) -g1,14548:32583029,29275788 -g1,14548:6630773,29275788 -g1,14548:6630773,29275788 -g1,14548:32583029,29275788 -g1,14548:32583029,29275788 -) -h1,14548:6630773,29472396:0,0,0 -(1,14551:6630773,39077747:25952256,9083666,0 -k1,14551:10523651,39077747:3892878 -h1,14550:10523651,39077747:0,0,0 -(1,14550:10523651,39077747:18166500,9083666,0 -(1,14550:10523651,39077747:18167376,9083688,0 -(1,14550:10523651,39077747:18167376,9083688,0 -(1,14550:10523651,39077747:0,9083688,0 -(1,14550:10523651,39077747:0,14208860,0 -(1,14550:10523651,39077747:28417720,14208860,0 -) -k1,14550:10523651,39077747:-28417720 -) -) -g1,14550:28691027,39077747 -) -) -) -g1,14551:28690151,39077747 -k1,14551:32583029,39077747:3892878 -) -(1,14558:6630773,39919235:25952256,505283,134348 -h1,14557:6630773,39919235:983040,0,0 -k1,14557:9256860,39919235:262203 -k1,14557:11172537,39919235:262204 -k1,14557:14014892,39919235:262203 -k1,14557:16323129,39919235:262203 -k1,14557:17043430,39919235:262204 -k1,14557:19935593,39919235:262203 -k1,14557:20849225,39919235:262204 -k1,14557:23908505,39919235:262203 -k1,14557:25778306,39919235:262203 -k1,14557:27434461,39919235:262204 -k1,14557:30687072,39919235:262203 -k1,14557:32583029,39919235:0 -) -(1,14558:6630773,40760723:25952256,513147,7863 -g1,14557:8397623,40760723 -g1,14557:8952712,40760723 -g1,14557:11139648,40760723 -k1,14558:32583029,40760723:20582238 -g1,14558:32583029,40760723 -) -v1,14560:6630773,41883049:0,393216,0 -(1,14576:6630773,45510161:25952256,4020328,196608 -g1,14576:6630773,45510161 -g1,14576:6630773,45510161 -g1,14576:6434165,45510161 -(1,14576:6434165,45510161:0,4020328,196608 -r1,14576:32779637,45510161:26345472,4216936,196608 -k1,14576:6434165,45510161:-26345472 -) -(1,14576:6434165,45510161:26345472,4020328,196608 -[1,14576:6630773,45510161:25952256,3823720,0 -(1,14562:6630773,42096959:25952256,410518,101187 -(1,14561:6630773,42096959:0,0,0 -g1,14561:6630773,42096959 -g1,14561:6630773,42096959 -g1,14561:6303093,42096959 -(1,14561:6303093,42096959:0,0,0 -) -g1,14561:6630773,42096959 -) -g1,14562:10108376,42096959 -g1,14562:11056814,42096959 -g1,14562:11689106,42096959 -g1,14562:12321398,42096959 -g1,14562:14850564,42096959 -h1,14562:15482856,42096959:0,0,0 -k1,14562:32583028,42096959:17100172 -g1,14562:32583028,42096959 -) -(1,14563:6630773,42763137:25952256,410518,107478 -h1,14563:6630773,42763137:0,0,0 -g1,14563:10424522,42763137 -g1,14563:11056814,42763137 -g1,14563:13585980,42763137 -g1,14563:15482855,42763137 -g1,14563:16115147,42763137 -g1,14563:18012022,42763137 -g1,14563:18644314,42763137 -g1,14563:19276606,42763137 -g1,14563:20857335,42763137 -g1,14563:22754209,42763137 -g1,14563:23386501,42763137 -g1,14563:27812541,42763137 -h1,14563:28128687,42763137:0,0,0 -k1,14563:32583029,42763137:4454342 -g1,14563:32583029,42763137 -) -(1,14564:6630773,43429315:25952256,410518,101187 -h1,14564:6630773,43429315:0,0,0 -g1,14564:6946919,43429315 -g1,14564:7263065,43429315 -g1,14564:14534417,43429315 -g1,14564:15166709,43429315 -g1,14564:18960458,43429315 -g1,14564:20857332,43429315 -g1,14564:21489624,43429315 -g1,14564:24334936,43429315 -h1,14564:24651082,43429315:0,0,0 -k1,14564:32583029,43429315:7931947 -g1,14564:32583029,43429315 -) -(1,14565:6630773,44095493:25952256,410518,107478 -h1,14565:6630773,44095493:0,0,0 -g1,14565:6946919,44095493 -g1,14565:7263065,44095493 -g1,14565:14850561,44095493 -g1,14565:15482853,44095493 -g1,14565:19592748,44095493 -g1,14565:20225040,44095493 -k1,14565:20225040,44095493:0 -h1,14565:24018788,44095493:0,0,0 -k1,14565:32583029,44095493:8564241 -g1,14565:32583029,44095493 -) -(1,14566:6630773,44761671:25952256,404226,82312 -h1,14566:6630773,44761671:0,0,0 -g1,14566:6946919,44761671 -g1,14566:7263065,44761671 -g1,14566:7579211,44761671 -g1,14566:7895357,44761671 -g1,14566:8211503,44761671 -g1,14566:8527649,44761671 -g1,14566:8843795,44761671 -g1,14566:9159941,44761671 -g1,14566:9476087,44761671 -g1,14566:9792233,44761671 -g1,14566:10108379,44761671 -g1,14566:10424525,44761671 -g1,14566:10740671,44761671 -g1,14566:11056817,44761671 -g1,14566:12953691,44761671 -g1,14566:13585983,44761671 -k1,14566:13585983,44761671:0 -h1,14566:16115149,44761671:0,0,0 -k1,14566:32583029,44761671:16467880 -g1,14566:32583029,44761671 -) -(1,14567:6630773,45427849:25952256,404226,82312 -h1,14567:6630773,45427849:0,0,0 -g1,14567:6946919,45427849 -g1,14567:7263065,45427849 -g1,14567:7579211,45427849 -g1,14567:7895357,45427849 -g1,14567:8211503,45427849 -g1,14567:8527649,45427849 -g1,14567:8843795,45427849 -g1,14567:9159941,45427849 -g1,14567:9476087,45427849 -g1,14567:9792233,45427849 -g1,14567:10108379,45427849 -g1,14567:10424525,45427849 -g1,14567:10740671,45427849 -g1,14567:11056817,45427849 -g1,14567:13585983,45427849 -g1,14567:14218275,45427849 -g1,14567:18012024,45427849 -g1,14567:18644316,45427849 -k1,14567:18644316,45427849:0 -h1,14567:20857336,45427849:0,0,0 -k1,14567:32583029,45427849:11725693 -g1,14567:32583029,45427849 -) -] -) -g1,14576:32583029,45510161 -g1,14576:6630773,45510161 -g1,14576:6630773,45510161 -g1,14576:32583029,45510161 -g1,14576:32583029,45510161 -) -] -(1,14576:32583029,45706769:0,0,0 -g1,14576:32583029,45706769 -) -) -] -(1,14576:6630773,47279633:25952256,0,0 -h1,14576:6630773,47279633:25952256,0,0 -) -] -(1,14576:4262630,4025873:0,0,0 -[1,14576:-473656,4025873:0,0,0 -(1,14576:-473656,-710413:0,0,0 -(1,14576:-473656,-710413:0,0,0 -g1,14576:-473656,-710413 -) -g1,14576:-473656,-710413 -) -] -) -] -!25467 -}279 -Input:2246:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2247:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2248:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2249:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2250:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2251:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2252:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2253:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!748 -{280 -[1,14608:4262630,47279633:28320399,43253760,0 -(1,14608:4262630,4025873:0,0,0 -[1,14608:-473656,4025873:0,0,0 -(1,14608:-473656,-710413:0,0,0 -(1,14608:-473656,-644877:0,0,0 -k1,14608:-473656,-644877:-65536 -) -(1,14608:-473656,4736287:0,0,0 -k1,14608:-473656,4736287:5209943 -) -g1,14608:-473656,-710413 -) -] -) -[1,14608:6630773,47279633:25952256,43253760,0 -[1,14608:6630773,4812305:25952256,786432,0 -(1,14608:6630773,4812305:25952256,485622,11795 -(1,14608:6630773,4812305:25952256,485622,11795 -g1,14608:3078558,4812305 -[1,14608:3078558,4812305:0,0,0 -(1,14608:3078558,2439708:0,1703936,0 -k1,14608:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,14608:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,14608:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,14608:3078558,4812305:0,0,0 -(1,14608:3078558,2439708:0,1703936,0 -g1,14608:29030814,2439708 -g1,14608:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,14608:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,14608:37855564,2439708:1179648,16384,0 -) -) -k1,14608:3078556,2439708:-34777008 -) -] -[1,14608:3078558,4812305:0,0,0 -(1,14608:3078558,49800853:0,16384,2228224 -k1,14608:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,14608:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,14608:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,14608:3078558,4812305:0,0,0 -(1,14608:3078558,49800853:0,16384,2228224 -g1,14608:29030814,49800853 -g1,14608:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,14608:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,14608:37855564,49800853:1179648,16384,0 -) -) -k1,14608:3078556,49800853:-34777008 -) -] -g1,14608:6630773,4812305 -g1,14608:6630773,4812305 -g1,14608:9560887,4812305 -k1,14608:31387651,4812305:21826764 -) -) -] -[1,14608:6630773,45706769:25952256,40108032,0 -(1,14608:6630773,45706769:25952256,40108032,0 -(1,14608:6630773,45706769:0,0,0 -g1,14608:6630773,45706769 -) -[1,14608:6630773,45706769:25952256,40108032,0 -v1,14576:6630773,6254097:0,393216,0 -(1,14576:6630773,10566261:25952256,4705380,196608 -g1,14576:6630773,10566261 -g1,14576:6630773,10566261 -g1,14576:6434165,10566261 -(1,14576:6434165,10566261:0,4705380,196608 -r1,14608:32779637,10566261:26345472,4901988,196608 -k1,14576:6434165,10566261:-26345472 -) -(1,14576:6434165,10566261:26345472,4705380,196608 -[1,14576:6630773,10566261:25952256,4508772,0 -(1,14568:6630773,6461715:25952256,404226,82312 -h1,14568:6630773,6461715:0,0,0 -g1,14568:6946919,6461715 -g1,14568:7263065,6461715 -g1,14568:7579211,6461715 -g1,14568:7895357,6461715 -g1,14568:8211503,6461715 -g1,14568:8527649,6461715 -g1,14568:8843795,6461715 -g1,14568:9159941,6461715 -g1,14568:9476087,6461715 -g1,14568:9792233,6461715 -g1,14568:10108379,6461715 -g1,14568:10424525,6461715 -g1,14568:10740671,6461715 -g1,14568:11056817,6461715 -g1,14568:11372963,6461715 -g1,14568:11689109,6461715 -g1,14568:12005255,6461715 -g1,14568:12321401,6461715 -g1,14568:12637547,6461715 -g1,14568:12953693,6461715 -g1,14568:13269839,6461715 -g1,14568:13585985,6461715 -g1,14568:13902131,6461715 -g1,14568:14218277,6461715 -g1,14568:14534423,6461715 -g1,14568:14850569,6461715 -g1,14568:17695880,6461715 -g1,14568:18328172,6461715 -k1,14568:18328172,6461715:0 -h1,14568:21805775,6461715:0,0,0 -k1,14568:32583029,6461715:10777254 -g1,14568:32583029,6461715 -) -(1,14569:6630773,7127893:25952256,404226,82312 -h1,14569:6630773,7127893:0,0,0 -g1,14569:6946919,7127893 -g1,14569:7263065,7127893 -g1,14569:7579211,7127893 -g1,14569:7895357,7127893 -g1,14569:8211503,7127893 -g1,14569:8527649,7127893 -g1,14569:8843795,7127893 -g1,14569:9159941,7127893 -g1,14569:9476087,7127893 -g1,14569:9792233,7127893 -g1,14569:10108379,7127893 -g1,14569:10424525,7127893 -g1,14569:10740671,7127893 -g1,14569:11056817,7127893 -g1,14569:11372963,7127893 -g1,14569:11689109,7127893 -g1,14569:12005255,7127893 -g1,14569:12321401,7127893 -g1,14569:12637547,7127893 -g1,14569:12953693,7127893 -g1,14569:13269839,7127893 -g1,14569:13585985,7127893 -g1,14569:13902131,7127893 -g1,14569:14218277,7127893 -g1,14569:14534423,7127893 -g1,14569:14850569,7127893 -g1,14569:17063589,7127893 -g1,14569:17695881,7127893 -k1,14569:17695881,7127893:0 -h1,14569:21489629,7127893:0,0,0 -k1,14569:32583029,7127893:11093400 -g1,14569:32583029,7127893 -) -(1,14570:6630773,7794071:25952256,404226,82312 -h1,14570:6630773,7794071:0,0,0 -g1,14570:6946919,7794071 -g1,14570:7263065,7794071 -g1,14570:7579211,7794071 -g1,14570:7895357,7794071 -g1,14570:8211503,7794071 -g1,14570:8527649,7794071 -g1,14570:8843795,7794071 -g1,14570:9159941,7794071 -g1,14570:9476087,7794071 -g1,14570:9792233,7794071 -g1,14570:10108379,7794071 -g1,14570:10424525,7794071 -g1,14570:10740671,7794071 -g1,14570:11056817,7794071 -g1,14570:11372963,7794071 -g1,14570:11689109,7794071 -g1,14570:12005255,7794071 -g1,14570:12321401,7794071 -g1,14570:12637547,7794071 -g1,14570:12953693,7794071 -g1,14570:13269839,7794071 -g1,14570:13585985,7794071 -g1,14570:13902131,7794071 -g1,14570:14218277,7794071 -g1,14570:14534423,7794071 -g1,14570:14850569,7794071 -g1,14570:18644317,7794071 -g1,14570:19276609,7794071 -k1,14570:19276609,7794071:0 -h1,14570:23070357,7794071:0,0,0 -k1,14570:32583029,7794071:9512672 -g1,14570:32583029,7794071 -) -(1,14571:6630773,8460249:25952256,404226,101187 -h1,14571:6630773,8460249:0,0,0 -g1,14571:6946919,8460249 -g1,14571:7263065,8460249 -g1,14571:7579211,8460249 -g1,14571:7895357,8460249 -g1,14571:8211503,8460249 -g1,14571:8527649,8460249 -g1,14571:8843795,8460249 -g1,14571:9159941,8460249 -g1,14571:9476087,8460249 -g1,14571:9792233,8460249 -g1,14571:10108379,8460249 -g1,14571:10424525,8460249 -g1,14571:10740671,8460249 -g1,14571:11056817,8460249 -g1,14571:11372963,8460249 -g1,14571:11689109,8460249 -g1,14571:12005255,8460249 -g1,14571:12321401,8460249 -g1,14571:12637547,8460249 -g1,14571:12953693,8460249 -g1,14571:13269839,8460249 -g1,14571:13585985,8460249 -g1,14571:13902131,8460249 -g1,14571:14218277,8460249 -g1,14571:14534423,8460249 -g1,14571:14850569,8460249 -g1,14571:18644317,8460249 -g1,14571:19276609,8460249 -k1,14571:19276609,8460249:0 -h1,14571:22754212,8460249:0,0,0 -k1,14571:32583029,8460249:9828817 -g1,14571:32583029,8460249 -) -(1,14572:6630773,9126427:25952256,404226,107478 -h1,14572:6630773,9126427:0,0,0 -g1,14572:6946919,9126427 -g1,14572:7263065,9126427 -g1,14572:7579211,9126427 -g1,14572:7895357,9126427 -g1,14572:8211503,9126427 -g1,14572:8527649,9126427 -g1,14572:8843795,9126427 -g1,14572:9159941,9126427 -g1,14572:9476087,9126427 -g1,14572:9792233,9126427 -g1,14572:10108379,9126427 -g1,14572:10424525,9126427 -g1,14572:10740671,9126427 -g1,14572:11056817,9126427 -g1,14572:14850565,9126427 -g1,14572:15482857,9126427 -g1,14572:17695877,9126427 -g1,14572:21489625,9126427 -g1,14572:22121917,9126427 -k1,14572:22121917,9126427:0 -h1,14572:24651083,9126427:0,0,0 -k1,14572:32583029,9126427:7931946 -g1,14572:32583029,9126427 -) -(1,14573:6630773,9792605:25952256,404226,101187 -h1,14573:6630773,9792605:0,0,0 -g1,14573:6946919,9792605 -g1,14573:7263065,9792605 -g1,14573:7579211,9792605 -g1,14573:7895357,9792605 -g1,14573:8211503,9792605 -g1,14573:8527649,9792605 -g1,14573:8843795,9792605 -g1,14573:9159941,9792605 -g1,14573:9476087,9792605 -g1,14573:9792233,9792605 -g1,14573:10108379,9792605 -g1,14573:10424525,9792605 -g1,14573:10740671,9792605 -g1,14573:11056817,9792605 -g1,14573:12953691,9792605 -g1,14573:13585983,9792605 -g1,14573:15482858,9792605 -h1,14573:15799004,9792605:0,0,0 -k1,14573:32583028,9792605:16784024 -g1,14573:32583028,9792605 -) -(1,14574:6630773,10458783:25952256,404226,107478 -h1,14574:6630773,10458783:0,0,0 -g1,14574:6946919,10458783 -g1,14574:7263065,10458783 -k1,14574:7263065,10458783:0 -h1,14574:11056813,10458783:0,0,0 -k1,14574:32583029,10458783:21526216 -g1,14574:32583029,10458783 -) -] -) -g1,14576:32583029,10566261 -g1,14576:6630773,10566261 -g1,14576:6630773,10566261 -g1,14576:32583029,10566261 -g1,14576:32583029,10566261 -) -h1,14576:6630773,10762869:0,0,0 -(1,14579:6630773,20436359:25952256,9083666,0 -k1,14579:10523651,20436359:3892878 -h1,14578:10523651,20436359:0,0,0 -(1,14578:10523651,20436359:18166500,9083666,0 -(1,14578:10523651,20436359:18167376,9083688,0 -(1,14578:10523651,20436359:18167376,9083688,0 -(1,14578:10523651,20436359:0,9083688,0 -(1,14578:10523651,20436359:0,14208860,0 -(1,14578:10523651,20436359:28417720,14208860,0 -) -k1,14578:10523651,20436359:-28417720 -) -) -g1,14578:28691027,20436359 -) -) -) -g1,14579:28690151,20436359 -k1,14579:32583029,20436359:3892878 -) -(1,14586:6630773,21277847:25952256,513147,134348 -h1,14585:6630773,21277847:983040,0,0 -k1,14585:10484654,21277847:335908 -k1,14585:13867986,21277847:335909 -k1,14585:16964270,21277847:335908 -k1,14585:20527171,21277847:335908 -k1,14585:23545469,21277847:335909 -k1,14585:24829028,21277847:335908 -k1,14585:26184021,21277847:335908 -k1,14585:29980231,21277847:335909 -k1,14585:30975431,21277847:335908 -k1,14585:32583029,21277847:0 -) -(1,14586:6630773,22119335:25952256,513147,134348 -k1,14585:8724157,22119335:238715 -k1,14585:9772242,22119335:238715 -k1,14585:11723413,22119335:238715 -k1,14585:14280136,22119335:238715 -k1,14585:17813346,22119335:238715 -k1,14585:18813589,22119335:238715 -k1,14585:21632455,22119335:238714 -k1,14585:24316317,22119335:238715 -k1,14585:25746477,22119335:238715 -k1,14585:26773590,22119335:238715 -k1,14585:30588605,22119335:238715 -k1,14585:31297213,22119335:238715 -k1,14585:32583029,22119335:0 -) -(1,14586:6630773,22960823:25952256,513147,134348 -k1,14585:9747534,22960823:260047 -k1,14585:11506388,22960823:260046 -k1,14585:12957880,22960823:260047 -k1,14585:16338096,22960823:260047 -k1,14585:17545794,22960823:260047 -k1,14585:20406309,22960823:260046 -k1,14585:23983133,22960823:260047 -k1,14585:25434625,22960823:260047 -k1,14585:27580142,22960823:260046 -k1,14585:29092582,22960823:260047 -k1,14585:32583029,22960823:0 -) -(1,14586:6630773,23802311:25952256,513147,134348 -g1,14585:8791495,23802311 -g1,14585:10015707,23802311 -g1,14585:11234021,23802311 -g1,14585:14013402,23802311 -g1,14585:19038702,23802311 -g1,14585:20185582,23802311 -k1,14586:32583029,23802311:10106308 -g1,14586:32583029,23802311 -) -(1,14590:6630773,25893571:25952256,555811,139132 -(1,14590:6630773,25893571:2450326,527696,12975 -g1,14590:6630773,25893571 -g1,14590:9081099,25893571 -) -g1,14590:13681858,25893571 -g1,14590:15249086,25893571 -k1,14590:32583029,25893571:14898035 -g1,14590:32583029,25893571 -) -(1,14594:6630773,27128275:25952256,513147,126483 -k1,14593:8668662,27128275:254654 -k1,14593:9942401,27128275:254654 -k1,14593:12682836,27128275:254654 -k1,14593:13596782,27128275:254654 -k1,14593:17923188,27128275:254654 -k1,14593:18709339,27128275:254654 -k1,14593:20915656,27128275:254655 -k1,14593:23060368,27128275:254654 -k1,14593:24183374,27128275:254654 -k1,14593:25542310,27128275:254654 -k1,14593:26998894,27128275:254654 -k1,14593:28062918,27128275:254654 -k1,14593:29336657,27128275:254654 -k1,14593:31923737,27128275:254654 -k1,14593:32583029,27128275:0 -) -(1,14594:6630773,27969763:25952256,513147,134348 -k1,14593:9819755,27969763:239207 -k1,14593:12928127,27969763:239206 -k1,14593:13818762,27969763:239207 -k1,14593:16266531,27969763:239206 -k1,14593:17524823,27969763:239207 -k1,14593:20096455,27969763:239206 -k1,14593:20994954,27969763:239207 -k1,14593:22253245,27969763:239206 -k1,14593:26737874,27969763:239207 -k1,14593:28019102,27969763:239206 -k1,14593:31093396,27969763:239207 -k1,14594:32583029,27969763:0 -) -(1,14594:6630773,28811251:25952256,513147,134348 -k1,14593:7739077,28811251:215704 -k1,14593:9562378,28811251:215703 -k1,14593:11513475,28811251:215704 -k1,14593:15456210,28811251:215703 -k1,14593:17682559,28811251:215704 -k1,14593:18845914,28811251:215704 -(1,14593:18845914,28811251:0,452978,115847 -r1,14608:20611027,28811251:1765113,568825,115847 -k1,14593:18845914,28811251:-1765113 -) -(1,14593:18845914,28811251:1765113,452978,115847 -k1,14593:18845914,28811251:3277 -h1,14593:20607750,28811251:0,411205,112570 -) -k1,14593:20826730,28811251:215703 -k1,14593:22146716,28811251:215704 -k1,14593:23642337,28811251:215703 -k1,14593:24213901,28811251:215704 -k1,14593:28159258,28811251:215703 -k1,14593:31923737,28811251:215704 -k1,14593:32583029,28811251:0 -) -(1,14594:6630773,29652739:25952256,513147,134348 -k1,14593:7844046,29652739:194188 -k1,14593:10544331,29652739:194188 -k1,14593:11972562,29652739:194188 -k1,14593:13948019,29652739:194188 -k1,14593:17232230,29652739:194188 -k1,14593:18042456,29652739:194188 -k1,14593:20515331,29652739:194188 -h1,14593:22058049,29652739:0,0,0 -k1,14593:22252237,29652739:194188 -k1,14593:23255795,29652739:194188 -k1,14593:24948136,29652739:194188 -h1,14593:26143513,29652739:0,0,0 -k1,14593:26511371,29652739:194188 -k1,14593:27809841,29652739:194188 -k1,14593:29289845,29652739:194188 -k1,14594:32583029,29652739:0 -) -(1,14594:6630773,30494227:25952256,513147,138281 -k1,14593:7923525,30494227:236967 -k1,14593:10369056,30494227:236968 -k1,14593:11625108,30494227:236967 -k1,14593:14194501,30494227:236967 -k1,14593:15090760,30494227:236967 -k1,14593:19399479,30494227:236967 -k1,14593:21381015,30494227:236968 -$1,14593:21381015,30494227 -$1,14593:21883676,30494227 -k1,14593:22120643,30494227:236967 -k1,14593:24567484,30494227:236967 -$1,14593:24567484,30494227 -$1,14593:25119297,30494227 -k1,14593:25356265,30494227:236968 -k1,14593:27165441,30494227:236967 -k1,14593:28920877,30494227:236967 -k1,14593:32583029,30494227:0 -) -(1,14594:6630773,31335715:25952256,505283,126483 -k1,14593:7650186,31335715:204145 -k1,14593:8920601,31335715:204144 -k1,14593:11402122,31335715:204145 -k1,14593:16174125,31335715:204144 -k1,14593:18067788,31335715:204145 -k1,14593:19291017,31335715:204144 -k1,14593:22177551,31335715:204145 -k1,14593:25471718,31335715:204144 -k1,14593:26291901,31335715:204145 -k1,14593:27699286,31335715:204144 -k1,14593:30182118,31335715:204145 -k1,14593:31375200,31335715:204144 -k1,14594:32583029,31335715:0 -) -(1,14594:6630773,32177203:25952256,513147,134348 -k1,14593:9650213,32177203:225640 -k1,14593:10637382,32177203:225641 -k1,14593:14536970,32177203:225640 -k1,14593:15652590,32177203:225641 -k1,14593:17432089,32177203:225640 -k1,14593:18849174,32177203:225640 -k1,14593:22048183,32177203:225641 -k1,14593:24606249,32177203:225640 -k1,14593:27857687,32177203:225641 -k1,14593:29074887,32177203:225640 -k1,14593:32583029,32177203:0 -) -(1,14594:6630773,33018691:25952256,513147,134348 -k1,14593:9935813,33018691:197323 -k1,14593:12110357,33018691:197323 -k1,14593:14005717,33018691:197322 -k1,14593:15222125,33018691:197323 -k1,14593:17905229,33018691:197323 -k1,14593:18761844,33018691:197323 -k1,14593:23030919,33018691:197323 -k1,14593:23759739,33018691:197323 -k1,14593:25701629,33018691:197322 -k1,14593:27773282,33018691:197323 -k1,14593:31478747,33018691:197323 -k1,14593:32583029,33018691:0 -) -(1,14594:6630773,33860179:25952256,505283,126483 -g1,14593:7577768,33860179 -g1,14593:10985640,33860179 -g1,14593:11800907,33860179 -g1,14593:13156846,33860179 -g1,14593:14038960,33860179 -g1,14593:15888386,33860179 -k1,14594:32583029,33860179:12845714 -g1,14594:32583029,33860179 -) -(1,14596:6630773,34701667:25952256,513147,134348 -h1,14595:6630773,34701667:983040,0,0 -k1,14595:11452435,34701667:181713 -k1,14595:12625709,34701667:181714 -k1,14595:15189000,34701667:181713 -k1,14595:16132241,34701667:181713 -k1,14595:17644335,34701667:181713 -k1,14595:18845134,34701667:181714 -k1,14595:21329127,34701667:181713 -k1,14595:23521485,34701667:181713 -k1,14595:24694758,34701667:181713 -k1,14595:28279101,34701667:181714 -k1,14595:31423697,34701667:181713 -k1,14596:32583029,34701667:0 -) -(1,14596:6630773,35543155:25952256,513147,134348 -k1,14595:9546688,35543155:295786 -k1,14595:10834033,35543155:295785 -k1,14595:12731519,35543155:295786 -k1,14595:16332286,35543155:295786 -k1,14595:18930351,35543155:295785 -k1,14595:19912299,35543155:295786 -k1,14595:21252729,35543155:295786 -k1,14595:23329783,35543155:295785 -k1,14595:25377346,35543155:295786 -k1,14595:26717776,35543155:295786 -k1,14595:27696446,35543155:295785 -k1,14595:30975431,35543155:295786 -k1,14595:32583029,35543155:0 -) -(1,14596:6630773,36384643:25952256,505283,134348 -k1,14595:7859136,36384643:236803 -k1,14595:9162211,36384643:236804 -k1,14595:13139154,36384643:236803 -k1,14595:16338840,36384643:236803 -k1,14595:18421792,36384643:236803 -k1,14595:20236048,36384643:236804 -k1,14595:21088889,36384643:236803 -k1,14595:24036916,36384643:236803 -k1,14595:24629579,36384643:236803 -k1,14595:28102551,36384643:236804 -k1,14595:30108171,36384643:236803 -k1,14595:31092740,36384643:236803 -k1,14596:32583029,36384643:0 -) -(1,14596:6630773,37226131:25952256,513147,134348 -k1,14595:7898037,37226131:242281 -k1,14595:9875712,37226131:242282 -k1,14595:10473853,37226131:242281 -k1,14595:13478477,37226131:242281 -k1,14595:16728206,37226131:242282 -k1,14595:18705880,37226131:242281 -(1,14595:18705880,37226131:0,452978,115847 -r1,14608:22229552,37226131:3523672,568825,115847 -k1,14595:18705880,37226131:-3523672 -) -(1,14595:18705880,37226131:3523672,452978,115847 -k1,14595:18705880,37226131:3277 -h1,14595:22226275,37226131:0,411205,112570 -) -k1,14595:22645503,37226131:242281 -k1,14595:23906870,37226131:242282 -k1,14595:26554323,37226131:242281 -k1,14595:28309830,37226131:242281 -k1,14595:29313640,37226131:242282 -k1,14595:31821501,37226131:242281 -k1,14596:32583029,37226131:0 -) -(1,14596:6630773,38067619:25952256,513147,134348 -(1,14595:6630773,38067619:0,452978,122846 -r1,14608:12264716,38067619:5633943,575824,122846 -k1,14595:6630773,38067619:-5633943 -) -(1,14595:6630773,38067619:5633943,452978,122846 -k1,14595:6630773,38067619:3277 -h1,14595:12261439,38067619:0,411205,112570 -) -k1,14595:12718330,38067619:279944 -k1,14595:14379118,38067619:279944 -k1,14595:17064234,38067619:279944 -k1,14595:18837088,38067619:279944 -k1,14595:21538586,38067619:279943 -k1,14595:22477822,38067619:279944 -k1,14595:26829518,38067619:279944 -k1,14595:29152219,38067619:279944 -k1,14595:32583029,38067619:0 -) -(1,14596:6630773,38909107:25952256,513147,126483 -k1,14595:10671504,38909107:172796 -k1,14595:12035746,38909107:172797 -k1,14595:12740039,38909107:172796 -k1,14595:15424830,38909107:172796 -k1,14595:16545278,38909107:172797 -k1,14595:20288475,38909107:172796 -$1,14595:20288475,38909107 -$1,14595:20791136,38909107 -k1,14595:20963932,38909107:172796 -k1,14595:23212910,38909107:172797 -k1,14595:25168941,38909107:172796 -k1,14595:25697598,38909107:172797 -k1,14595:27764384,38909107:172796 -k1,14595:28468677,38909107:172796 -k1,14595:31226869,38909107:172797 -k1,14595:32051093,38909107:172796 -(1,14595:32051093,38909107:0,414482,115847 -r1,14608:32409359,38909107:358266,530329,115847 -k1,14595:32051093,38909107:-358266 -) -(1,14595:32051093,38909107:358266,414482,115847 -k1,14595:32051093,38909107:3277 -h1,14595:32406082,38909107:0,411205,112570 -) -k1,14596:32583029,38909107:0 -) -(1,14596:6630773,39750595:25952256,513147,122846 -(1,14595:6630773,39750595:0,452978,115847 -r1,14608:10857869,39750595:4227096,568825,115847 -k1,14595:6630773,39750595:-4227096 -) -(1,14595:6630773,39750595:4227096,452978,115847 -k1,14595:6630773,39750595:3277 -h1,14595:10854592,39750595:0,411205,112570 -) -k1,14595:11049812,39750595:191943 -k1,14595:13422138,39750595:191943 -k1,14595:14361847,39750595:191943 -k1,14595:16240688,39750595:191944 -k1,14595:18318102,39750595:191943 -k1,14595:19041542,39750595:191943 -k1,14595:20252570,39750595:191943 -k1,14595:22710093,39750595:191943 -(1,14595:22710093,39750595:0,414482,115847 -r1,14608:24123494,39750595:1413401,530329,115847 -k1,14595:22710093,39750595:-1413401 -) -(1,14595:22710093,39750595:1413401,414482,115847 -k1,14595:22710093,39750595:3277 -h1,14595:24120217,39750595:0,411205,112570 -) -k1,14595:24315437,39750595:191943 -k1,14595:25455032,39750595:191944 -(1,14595:25455032,39750595:0,452978,122846 -r1,14608:28978704,39750595:3523672,575824,122846 -k1,14595:25455032,39750595:-3523672 -) -(1,14595:25455032,39750595:3523672,452978,122846 -k1,14595:25455032,39750595:3277 -h1,14595:28975427,39750595:0,411205,112570 -) -k1,14595:29344317,39750595:191943 -k1,14595:31410590,39750595:191943 -k1,14595:32583029,39750595:0 -) -(1,14596:6630773,40592083:25952256,513147,134348 -k1,14595:10312228,40592083:241470 -k1,14595:11545258,40592083:241470 -k1,14595:14876752,40592083:241471 -k1,14595:15734260,40592083:241470 -k1,14595:17178971,40592083:241470 -k1,14595:19699128,40592083:241470 -k1,14595:21763154,40592083:241470 -k1,14595:25031732,40592083:241470 -k1,14595:27802893,40592083:241471 -k1,14595:29424551,40592083:241470 -k1,14595:31931601,40592083:241470 -k1,14595:32583029,40592083:0 -) -(1,14596:6630773,41433571:25952256,513147,134348 -k1,14595:8584643,41433571:218477 -k1,14595:11656558,41433571:218477 -k1,14595:14637377,41433571:218476 -k1,14595:16423475,41433571:218477 -(1,14595:16423475,41433571:0,452978,115847 -r1,14608:21705706,41433571:5282231,568825,115847 -k1,14595:16423475,41433571:-5282231 -) -(1,14595:16423475,41433571:5282231,452978,115847 -k1,14595:16423475,41433571:3277 -h1,14595:21702429,41433571:0,411205,112570 -) -k1,14595:21924183,41433571:218477 -k1,14595:23334105,41433571:218477 -k1,14595:27777687,41433571:218476 -k1,14595:31563944,41433571:218477 -k1,14595:32583029,41433571:0 -) -(1,14596:6630773,42275059:25952256,505283,7863 -k1,14596:32583029,42275059:24389222 -g1,14596:32583029,42275059 -) -(1,14598:6630773,43116547:25952256,513147,134348 -h1,14597:6630773,43116547:983040,0,0 -g1,14597:8630931,43116547 -g1,14597:11046588,43116547 -g1,14597:12114169,43116547 -g1,14597:15045594,43116547 -g1,14597:17756818,43116547 -g1,14597:20584696,43116547 -k1,14598:32583029,43116547:10435299 -g1,14598:32583029,43116547 -) -v1,14600:6630773,44307013:0,393216,0 -(1,14608:6630773,45281996:25952256,1368199,196608 -g1,14608:6630773,45281996 -g1,14608:6630773,45281996 -g1,14608:6434165,45281996 -(1,14608:6434165,45281996:0,1368199,196608 -r1,14608:32779637,45281996:26345472,1564807,196608 -k1,14608:6434165,45281996:-26345472 -) -(1,14608:6434165,45281996:26345472,1368199,196608 -[1,14608:6630773,45281996:25952256,1171591,0 -(1,14602:6630773,44514631:25952256,404226,76021 -(1,14601:6630773,44514631:0,0,0 -g1,14601:6630773,44514631 -g1,14601:6630773,44514631 -g1,14601:6303093,44514631 -(1,14601:6303093,44514631:0,0,0 -) -g1,14601:6630773,44514631 -) -k1,14602:6630773,44514631:0 -h1,14602:11372958,44514631:0,0,0 -k1,14602:32583030,44514631:21210072 -g1,14602:32583030,44514631 -) -(1,14603:6630773,45180809:25952256,404226,101187 -h1,14603:6630773,45180809:0,0,0 -g1,14603:9159939,45180809 -k1,14603:9159939,45180809:0 -h1,14603:9792231,45180809:0,0,0 -k1,14603:32583029,45180809:22790798 -g1,14603:32583029,45180809 -) -] -) -g1,14608:32583029,45281996 -g1,14608:6630773,45281996 -g1,14608:6630773,45281996 -g1,14608:32583029,45281996 -g1,14608:32583029,45281996 -) -] -(1,14608:32583029,45706769:0,0,0 -g1,14608:32583029,45706769 -) -) -] -(1,14608:6630773,47279633:25952256,0,0 -h1,14608:6630773,47279633:25952256,0,0 -) -] -(1,14608:4262630,4025873:0,0,0 -[1,14608:-473656,4025873:0,0,0 -(1,14608:-473656,-710413:0,0,0 -(1,14608:-473656,-710413:0,0,0 -g1,14608:-473656,-710413 -) -g1,14608:-473656,-710413 -) -] -) -] -!23754 -}280 -Input:2254:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2255:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2256:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2257:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2258:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2259:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2260:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2261:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2262:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2263:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2264:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2265:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2266:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1208 -{281 -[1,14656:4262630,47279633:28320399,43253760,0 -(1,14656:4262630,4025873:0,0,0 -[1,14656:-473656,4025873:0,0,0 -(1,14656:-473656,-710413:0,0,0 -(1,14656:-473656,-644877:0,0,0 -k1,14656:-473656,-644877:-65536 -) -(1,14656:-473656,4736287:0,0,0 -k1,14656:-473656,4736287:5209943 -) -g1,14656:-473656,-710413 -) -] -) -[1,14656:6630773,47279633:25952256,43253760,0 -[1,14656:6630773,4812305:25952256,786432,0 -(1,14656:6630773,4812305:25952256,513147,134348 -(1,14656:6630773,4812305:25952256,513147,134348 -g1,14656:3078558,4812305 -[1,14656:3078558,4812305:0,0,0 -(1,14656:3078558,2439708:0,1703936,0 -k1,14656:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,14656:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,14656:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,14656:3078558,4812305:0,0,0 -(1,14656:3078558,2439708:0,1703936,0 -g1,14656:29030814,2439708 -g1,14656:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,14656:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,14656:37855564,2439708:1179648,16384,0 -) -) -k1,14656:3078556,2439708:-34777008 -) -] -[1,14656:3078558,4812305:0,0,0 -(1,14656:3078558,49800853:0,16384,2228224 -k1,14656:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,14656:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,14656:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,14656:3078558,4812305:0,0,0 -(1,14656:3078558,49800853:0,16384,2228224 -g1,14656:29030814,49800853 -g1,14656:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,14656:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,14656:37855564,49800853:1179648,16384,0 -) -) -k1,14656:3078556,49800853:-34777008 -) -] -g1,14656:6630773,4812305 -k1,14656:25712890,4812305:17886740 -g1,14656:29057847,4812305 -g1,14656:29873114,4812305 -) -) -] -[1,14656:6630773,45706769:25952256,40108032,0 -(1,14656:6630773,45706769:25952256,40108032,0 -(1,14656:6630773,45706769:0,0,0 -g1,14656:6630773,45706769 -) -[1,14656:6630773,45706769:25952256,40108032,0 -v1,14608:6630773,6254097:0,393216,0 -(1,14608:6630773,7907841:25952256,2046960,196608 -g1,14608:6630773,7907841 -g1,14608:6630773,7907841 -g1,14608:6434165,7907841 -(1,14608:6434165,7907841:0,2046960,196608 -r1,14656:32779637,7907841:26345472,2243568,196608 -k1,14608:6434165,7907841:-26345472 -) -(1,14608:6434165,7907841:26345472,2046960,196608 -[1,14608:6630773,7907841:25952256,1850352,0 -(1,14604:6630773,6468007:25952256,410518,82312 -h1,14604:6630773,6468007:0,0,0 -g1,14604:6946919,6468007 -g1,14604:7263065,6468007 -g1,14604:11372960,6468007 -g1,14604:12005252,6468007 -k1,14604:12005252,6468007:0 -h1,14604:15482855,6468007:0,0,0 -k1,14604:32583029,6468007:17100174 -g1,14604:32583029,6468007 -) -(1,14605:6630773,7134185:25952256,404226,101187 -h1,14605:6630773,7134185:0,0,0 -g1,14605:6946919,7134185 -g1,14605:7263065,7134185 -g1,14605:7579211,7134185 -g1,14605:7895357,7134185 -g1,14605:8211503,7134185 -g1,14605:8527649,7134185 -g1,14605:8843795,7134185 -g1,14605:9159941,7134185 -g1,14605:9476087,7134185 -g1,14605:9792233,7134185 -g1,14605:10108379,7134185 -g1,14605:10424525,7134185 -g1,14605:10740671,7134185 -g1,14605:11372963,7134185 -g1,14605:12005255,7134185 -g1,14605:16115150,7134185 -g1,14605:17379734,7134185 -g1,14605:18644318,7134185 -g1,14605:22121921,7134185 -g1,14605:23070359,7134185 -k1,14605:23070359,7134185:0 -h1,14605:24334942,7134185:0,0,0 -k1,14605:32583029,7134185:8248087 -g1,14605:32583029,7134185 -) -(1,14606:6630773,7800363:25952256,410518,107478 -h1,14606:6630773,7800363:0,0,0 -g1,14606:6946919,7800363 -g1,14606:7263065,7800363 -g1,14606:7579211,7800363 -g1,14606:7895357,7800363 -g1,14606:8211503,7800363 -g1,14606:8527649,7800363 -g1,14606:8843795,7800363 -g1,14606:9159941,7800363 -g1,14606:9476087,7800363 -g1,14606:9792233,7800363 -g1,14606:10108379,7800363 -g1,14606:10424525,7800363 -g1,14606:10740671,7800363 -g1,14606:12637545,7800363 -g1,14606:13269837,7800363 -g1,14606:18960461,7800363 -g1,14606:20857336,7800363 -g1,14606:23070357,7800363 -g1,14606:25283377,7800363 -h1,14606:25599523,7800363:0,0,0 -k1,14606:32583029,7800363:6983506 -g1,14606:32583029,7800363 -) -] -) -g1,14608:32583029,7907841 -g1,14608:6630773,7907841 -g1,14608:6630773,7907841 -g1,14608:32583029,7907841 -g1,14608:32583029,7907841 -) -h1,14608:6630773,8104449:0,0,0 -(1,14612:6630773,9470225:25952256,513147,126483 -h1,14611:6630773,9470225:983040,0,0 -k1,14611:8826467,9470225:259105 -k1,14611:10854390,9470225:259106 -k1,14611:12588710,9470225:259105 -k1,14611:14657919,9470225:259105 -k1,14611:15726394,9470225:259105 -k1,14611:17004585,9470225:259106 -k1,14611:19529270,9470225:259105 -k1,14611:22274156,9470225:259105 -k1,14611:23192553,9470225:259105 -k1,14611:24798424,9470225:259106 -k1,14611:29374386,9470225:259105 -k1,14611:32583029,9470225:0 -) -(1,14612:6630773,10311713:25952256,505283,126483 -k1,14611:7607271,10311713:214970 -k1,14611:8841326,10311713:214970 -(1,14611:8841326,10311713:0,452978,115847 -r1,14656:12364998,10311713:3523672,568825,115847 -k1,14611:8841326,10311713:-3523672 -) -(1,14611:8841326,10311713:3523672,452978,115847 -k1,14611:8841326,10311713:3277 -h1,14611:12361721,10311713:0,411205,112570 -) -k1,14611:12579968,10311713:214970 -k1,14611:15491745,10311713:214970 -k1,14611:18550978,10311713:214970 -k1,14611:19634300,10311713:214970 -k1,14611:21247153,10311713:214970 -k1,14611:22396666,10311713:214970 -k1,14611:23069733,10311713:214970 -k1,14611:23936131,10311713:214970 -k1,14611:24948019,10311713:214970 -k1,14611:26556940,10311713:214970 -(1,14611:26556940,10311713:0,452978,115847 -r1,14656:29728901,10311713:3171961,568825,115847 -k1,14611:26556940,10311713:-3171961 -) -(1,14611:26556940,10311713:3171961,452978,115847 -g1,14611:28318776,10311713 -g1,14611:29022200,10311713 -h1,14611:29725624,10311713:0,411205,112570 -) -k1,14611:30117541,10311713:214970 -k1,14611:30802404,10311713:214970 -k1,14611:31548871,10311713:214970 -k1,14612:32583029,10311713:0 -) -(1,14612:6630773,11153201:25952256,505283,126483 -k1,14611:9277407,11153201:258502 -k1,14611:10187338,11153201:258503 -k1,14611:13704945,11153201:258502 -k1,14611:15247953,11153201:258502 -k1,14611:16122494,11153201:258503 -k1,14611:17584237,11153201:258502 -k1,14611:19209820,11153201:258502 -k1,14611:20277693,11153201:258503 -k1,14611:23047535,11153201:258502 -k1,14611:23922075,11153201:258502 -(1,14611:23922075,11153201:0,452978,115847 -r1,14656:25335476,11153201:1413401,568825,115847 -k1,14611:23922075,11153201:-1413401 -) -(1,14611:23922075,11153201:1413401,452978,115847 -k1,14611:23922075,11153201:3277 -h1,14611:25332199,11153201:0,411205,112570 -) -k1,14611:25593979,11153201:258503 -k1,14611:26383978,11153201:258502 -k1,14611:29227875,11153201:258502 -k1,14611:30947176,11153201:258503 -k1,14611:32224763,11153201:258502 -(1,14611:32224763,11153201:0,414482,115847 -r1,14656:32583029,11153201:358266,530329,115847 -k1,14611:32224763,11153201:-358266 -) -(1,14611:32224763,11153201:358266,414482,115847 -k1,14611:32224763,11153201:3277 -h1,14611:32579752,11153201:0,411205,112570 -) -k1,14611:32583029,11153201:0 -) -(1,14612:6630773,11994689:25952256,505283,7863 -k1,14612:32583030,11994689:23025420 -g1,14612:32583030,11994689 -) -v1,14614:6630773,13185155:0,393216,0 -(1,14619:6630773,14166429:25952256,1374490,196608 -g1,14619:6630773,14166429 -g1,14619:6630773,14166429 -g1,14619:6434165,14166429 -(1,14619:6434165,14166429:0,1374490,196608 -r1,14656:32779637,14166429:26345472,1571098,196608 -k1,14619:6434165,14166429:-26345472 -) -(1,14619:6434165,14166429:26345472,1374490,196608 -[1,14619:6630773,14166429:25952256,1177882,0 -(1,14616:6630773,13392773:25952256,404226,107478 -(1,14615:6630773,13392773:0,0,0 -g1,14615:6630773,13392773 -g1,14615:6630773,13392773 -g1,14615:6303093,13392773 -(1,14615:6303093,13392773:0,0,0 -) -g1,14615:6630773,13392773 -) -k1,14616:6630773,13392773:0 -g1,14616:11689104,13392773 -g1,14616:14218270,13392773 -h1,14616:14534416,13392773:0,0,0 -k1,14616:32583028,13392773:18048612 -g1,14616:32583028,13392773 -) -(1,14617:6630773,14058951:25952256,404226,107478 -h1,14617:6630773,14058951:0,0,0 -g1,14617:6946919,14058951 -g1,14617:7263065,14058951 -g1,14617:13585980,14058951 -g1,14617:14218272,14058951 -h1,14617:15166709,14058951:0,0,0 -k1,14617:32583029,14058951:17416320 -g1,14617:32583029,14058951 -) -] -) -g1,14619:32583029,14166429 -g1,14619:6630773,14166429 -g1,14619:6630773,14166429 -g1,14619:32583029,14166429 -g1,14619:32583029,14166429 -) -h1,14619:6630773,14363037:0,0,0 -(1,14622:6630773,24036527:25952256,9083666,0 -k1,14622:10523651,24036527:3892878 -h1,14621:10523651,24036527:0,0,0 -(1,14621:10523651,24036527:18166500,9083666,0 -(1,14621:10523651,24036527:18167376,9083688,0 -(1,14621:10523651,24036527:18167376,9083688,0 -(1,14621:10523651,24036527:0,9083688,0 -(1,14621:10523651,24036527:0,14208860,0 -(1,14621:10523651,24036527:28417720,14208860,0 -) -k1,14621:10523651,24036527:-28417720 -) -) -g1,14621:28691027,24036527 -) -) -) -g1,14622:28690151,24036527 -k1,14622:32583029,24036527:3892878 -) -(1,14629:6630773,24878015:25952256,513147,134348 -h1,14628:6630773,24878015:983040,0,0 -k1,14628:8295153,24878015:203583 -k1,14628:9367088,24878015:203583 -k1,14628:11500051,24878015:203583 -k1,14628:12059494,24878015:203583 -k1,14628:15146006,24878015:203583 -k1,14628:16111117,24878015:203583 -k1,14628:19122262,24878015:203583 -k1,14628:19681705,24878015:203583 -k1,14628:21779278,24878015:203583 -k1,14628:22634289,24878015:203583 -k1,14628:23608575,24878015:203583 -k1,14628:27039151,24878015:203583 -k1,14628:30029980,24878015:203583 -k1,14628:31563944,24878015:203583 -k1,14628:32583029,24878015:0 -) -(1,14629:6630773,25719503:25952256,505283,126483 -k1,14628:8235039,25719503:229321 -k1,14628:10814482,25719503:229322 -k1,14628:12035363,25719503:229321 -k1,14628:15646997,25719503:229321 -k1,14628:17270269,25719503:229321 -k1,14628:19824153,25719503:229322 -k1,14628:20704902,25719503:229321 -k1,14628:22385845,25719503:229321 -k1,14628:24317136,25719503:229321 -k1,14628:27319942,25719503:229322 -k1,14628:30295877,25719503:229321 -k1,14628:31478747,25719503:229321 -k1,14628:32583029,25719503:0 -) -(1,14629:6630773,26560991:25952256,505283,126483 -k1,14628:8265620,26560991:200919 -k1,14628:9743837,26560991:200920 -k1,14628:11244335,26560991:200919 -k1,14628:12206782,26560991:200919 -k1,14628:13707281,26560991:200920 -k1,14628:15302151,26560991:200919 -(1,14628:15302151,26560991:0,452978,122846 -r1,14656:21639519,26560991:6337368,575824,122846 -k1,14628:15302151,26560991:-6337368 -) -(1,14628:15302151,26560991:6337368,452978,122846 -g1,14628:18470835,26560991 -g1,14628:19174259,26560991 -h1,14628:21636242,26560991:0,411205,112570 -) -k1,14628:22014108,26560991:200919 -k1,14628:24652312,26560991:200920 -k1,14628:26009941,26560991:200919 -k1,14628:28066184,26560991:200919 -k1,14628:29286189,26560991:200920 -k1,14628:31189078,26560991:200919 -k1,14629:32583029,26560991:0 -) -(1,14629:6630773,27402479:25952256,505283,134348 -(1,14628:6630773,27402479:0,452978,115847 -r1,14656:12968141,27402479:6337368,568825,115847 -k1,14628:6630773,27402479:-6337368 -) -(1,14628:6630773,27402479:6337368,452978,115847 -g1,14628:9799457,27402479 -g1,14628:10502881,27402479 -h1,14628:12964864,27402479:0,411205,112570 -) -k1,14628:13252181,27402479:284040 -k1,14628:14727667,27402479:284041 -k1,14628:18791824,27402479:284040 -k1,14628:20469815,27402479:284040 -(1,14628:20469815,27402479:0,452978,115847 -r1,14656:27862318,27402479:7392503,568825,115847 -k1,14628:20469815,27402479:-7392503 -) -(1,14628:20469815,27402479:7392503,452978,115847 -g1,14628:23638499,27402479 -g1,14628:24341923,27402479 -h1,14628:27859041,27402479:0,411205,112570 -) -k1,14628:28146358,27402479:284040 -k1,14628:29046437,27402479:284041 -k1,14628:31215948,27402479:284040 -k1,14628:32583029,27402479:0 -) -(1,14629:6630773,28243967:25952256,505283,126483 -k1,14628:7703523,28243967:204398 -k1,14628:9438186,28243967:204397 -k1,14628:10294012,28243967:204398 -k1,14628:12214142,28243967:204397 -k1,14628:14057595,28243967:204398 -k1,14628:19704102,28243967:204397 -k1,14628:21302451,28243967:204398 -(1,14628:21302451,28243967:0,452978,115847 -r1,14656:25177835,28243967:3875384,568825,115847 -k1,14628:21302451,28243967:-3875384 -) -(1,14628:21302451,28243967:3875384,452978,115847 -g1,14628:23415999,28243967 -g1,14628:24119423,28243967 -h1,14628:25174558,28243967:0,411205,112570 -) -k1,14628:25382232,28243967:204397 -k1,14628:26311458,28243967:204398 -k1,14628:27800361,28243967:204397 -k1,14628:29384947,28243967:204398 -k1,14628:30355460,28243967:204397 -k1,14628:32583029,28243967:0 -) -(1,14629:6630773,29085455:25952256,505283,7863 -k1,14629:32583029,29085455:23735828 -g1,14629:32583029,29085455 -) -v1,14631:6630773,30275921:0,393216,0 -(1,14636:6630773,31263487:25952256,1380782,196608 -g1,14636:6630773,31263487 -g1,14636:6630773,31263487 -g1,14636:6434165,31263487 -(1,14636:6434165,31263487:0,1380782,196608 -r1,14656:32779637,31263487:26345472,1577390,196608 -k1,14636:6434165,31263487:-26345472 -) -(1,14636:6434165,31263487:26345472,1380782,196608 -[1,14636:6630773,31263487:25952256,1184174,0 -(1,14633:6630773,30489831:25952256,410518,107478 -(1,14632:6630773,30489831:0,0,0 -g1,14632:6630773,30489831 -g1,14632:6630773,30489831 -g1,14632:6303093,30489831 -(1,14632:6303093,30489831:0,0,0 -) -g1,14632:6630773,30489831 -) -k1,14633:6630773,30489831:0 -g1,14633:11689104,30489831 -g1,14633:13902124,30489831 -g1,14633:15482853,30489831 -g1,14633:16115145,30489831 -g1,14633:18644311,30489831 -h1,14633:18960457,30489831:0,0,0 -k1,14633:32583029,30489831:13622572 -g1,14633:32583029,30489831 -) -(1,14634:6630773,31156009:25952256,404226,107478 -h1,14634:6630773,31156009:0,0,0 -g1,14634:6946919,31156009 -g1,14634:7263065,31156009 -g1,14634:13585980,31156009 -g1,14634:14218272,31156009 -g1,14634:15482855,31156009 -g1,14634:18328166,31156009 -g1,14634:18960458,31156009 -h1,14634:21489624,31156009:0,0,0 -k1,14634:32583029,31156009:11093405 -g1,14634:32583029,31156009 -) -] -) -g1,14636:32583029,31263487 -g1,14636:6630773,31263487 -g1,14636:6630773,31263487 -g1,14636:32583029,31263487 -g1,14636:32583029,31263487 -) -h1,14636:6630773,31460095:0,0,0 -(1,14640:6630773,32825871:25952256,505283,134348 -h1,14639:6630773,32825871:983040,0,0 -k1,14639:9074987,32825871:264487 -k1,14639:12548116,32825871:264486 -k1,14639:14823248,32825871:264487 -k1,14639:16079294,32825871:264486 -k1,14639:19483611,32825871:264487 -k1,14639:20364135,32825871:264486 -k1,14639:21647707,32825871:264487 -(1,14639:21647707,32825871:0,452978,115847 -r1,14656:23061108,32825871:1413401,568825,115847 -k1,14639:21647707,32825871:-1413401 -) -(1,14639:21647707,32825871:1413401,452978,115847 -k1,14639:21647707,32825871:3277 -h1,14639:23057831,32825871:0,411205,112570 -) -k1,14639:23325594,32825871:264486 -k1,14639:24874587,32825871:264487 -k1,14639:26158158,32825871:264486 -k1,14639:29430092,32825871:264487 -k1,14639:32583029,32825871:0 -) -(1,14640:6630773,33667359:25952256,513147,126483 -k1,14639:8409181,33667359:210787 -k1,14639:9639054,33667359:210788 -k1,14639:12394604,33667359:210787 -k1,14639:14300807,33667359:210787 -k1,14639:17365033,33667359:210788 -k1,14639:20363722,33667359:210787 -k1,14639:23801503,33667359:210788 -k1,14639:26022935,33667359:210787 -k1,14639:27518228,33667359:210787 -k1,14639:28720576,33667359:210788 -k1,14639:29997634,33667359:210787 -k1,14639:32583029,33667359:0 -) -(1,14640:6630773,34508847:25952256,513147,134348 -k1,14639:7582339,34508847:190038 -k1,14639:10211628,34508847:190039 -k1,14639:12275996,34508847:190038 -k1,14639:13570317,34508847:190039 -k1,14639:14508121,34508847:190038 -k1,14639:17283554,34508847:190038 -k1,14639:18867544,34508847:190039 -(1,14639:18867544,34508847:0,452978,115847 -r1,14656:20632657,34508847:1765113,568825,115847 -k1,14639:18867544,34508847:-1765113 -) -(1,14639:18867544,34508847:1765113,452978,115847 -k1,14639:18867544,34508847:3277 -h1,14639:20629380,34508847:0,411205,112570 -) -k1,14639:20822695,34508847:190038 -k1,14639:21774262,34508847:190039 -k1,14639:24980267,34508847:190038 -k1,14639:26809360,34508847:190038 -k1,14639:27615437,34508847:190039 -k1,14639:28161335,34508847:190038 -k1,14639:29451068,34508847:190039 -k1,14639:30292534,34508847:190038 -(1,14639:30292534,34508847:0,452978,115847 -r1,14656:32409359,34508847:2116825,568825,115847 -k1,14639:30292534,34508847:-2116825 -) -(1,14639:30292534,34508847:2116825,452978,115847 -k1,14639:30292534,34508847:3277 -h1,14639:32406082,34508847:0,411205,112570 -) -k1,14639:32583029,34508847:0 -) -(1,14640:6630773,35350335:25952256,505283,134348 -k1,14639:8491150,35350335:198384 -k1,14639:9708619,35350335:198384 -k1,14639:11295056,35350335:198384 -k1,14639:12991593,35350335:198384 -k1,14639:14058329,35350335:198384 -k1,14639:15360995,35350335:198384 -k1,14639:17170909,35350335:198384 -k1,14639:18653799,35350335:198384 -k1,14639:19468221,35350335:198384 -k1,14639:22332610,35350335:198384 -k1,14639:23182422,35350335:198384 -k1,14639:25525799,35350335:198384 -k1,14639:26340221,35350335:198384 -k1,14639:29049945,35350335:198384 -(1,14639:29049945,35350335:0,414482,115847 -r1,14656:30815058,35350335:1765113,530329,115847 -k1,14639:29049945,35350335:-1765113 -) -(1,14639:29049945,35350335:1765113,414482,115847 -k1,14639:29049945,35350335:3277 -h1,14639:30811781,35350335:0,411205,112570 -) -k1,14639:31187112,35350335:198384 -k1,14640:32583029,35350335:0 -) -(1,14640:6630773,36191823:25952256,505283,126483 -k1,14639:8014638,36191823:234363 -k1,14639:8780497,36191823:234362 -k1,14639:11793587,36191823:234363 -k1,14639:12643987,36191823:234362 -k1,14639:15389690,36191823:234363 -(1,14639:15389690,36191823:0,452978,115847 -r1,14656:17858227,36191823:2468537,568825,115847 -k1,14639:15389690,36191823:-2468537 -) -(1,14639:15389690,36191823:2468537,452978,115847 -k1,14639:15389690,36191823:3277 -h1,14639:17854950,36191823:0,411205,112570 -) -k1,14639:18092590,36191823:234363 -k1,14639:19088480,36191823:234362 -k1,14639:20526084,36191823:234363 -k1,14639:23457253,36191823:234362 -k1,14639:28212290,36191823:234363 -k1,14639:29315004,36191823:234362 -k1,14639:30653649,36191823:234363 -k1,14639:32583029,36191823:0 -) -(1,14640:6630773,37033311:25952256,505283,134348 -k1,14639:7206279,37033311:219646 -k1,14639:10662094,37033311:219647 -k1,14639:12275691,37033311:219646 -k1,14639:13514423,37033311:219647 -k1,14639:15879062,37033311:219646 -k1,14639:17155148,37033311:219646 -k1,14639:18391258,37033311:219647 -k1,14639:21808406,37033311:219646 -k1,14639:22714214,37033311:219646 -k1,14639:25784022,37033311:219647 -k1,14639:28011691,37033311:219646 -k1,14639:30675176,37033311:219647 -k1,14639:31426319,37033311:219646 -k1,14639:32583029,37033311:0 -) -(1,14640:6630773,37874799:25952256,513147,102891 -k1,14639:8987857,37874799:198328 -k1,14639:10628632,37874799:198328 -k1,14639:12335600,37874799:198329 -k1,14639:14072713,37874799:198328 -k1,14639:14957203,37874799:198328 -k1,14639:16174616,37874799:198328 -k1,14639:18187637,37874799:198329 -k1,14639:19045257,37874799:198328 -k1,14639:20262670,37874799:198328 -k1,14639:21807763,37874799:198328 -k1,14639:22537589,37874799:198329 -k1,14639:23351955,37874799:198328 -k1,14639:24753524,37874799:198328 -k1,14639:26318933,37874799:198328 -k1,14639:29279605,37874799:198329 -k1,14639:31045554,37874799:198328 -k1,14639:32583029,37874799:0 -) -(1,14640:6630773,38716287:25952256,513147,7863 -g1,14639:7516164,38716287 -k1,14640:32583029,38716287:22577808 -g1,14640:32583029,38716287 -) -v1,14642:6630773,39906753:0,393216,0 -(1,14647:6630773,40894319:25952256,1380782,196608 -g1,14647:6630773,40894319 -g1,14647:6630773,40894319 -g1,14647:6434165,40894319 -(1,14647:6434165,40894319:0,1380782,196608 -r1,14656:32779637,40894319:26345472,1577390,196608 -k1,14647:6434165,40894319:-26345472 -) -(1,14647:6434165,40894319:26345472,1380782,196608 -[1,14647:6630773,40894319:25952256,1184174,0 -(1,14644:6630773,40120663:25952256,410518,107478 -(1,14643:6630773,40120663:0,0,0 -g1,14643:6630773,40120663 -g1,14643:6630773,40120663 -g1,14643:6303093,40120663 -(1,14643:6303093,40120663:0,0,0 -) -g1,14643:6630773,40120663 -) -k1,14644:6630773,40120663:0 -g1,14644:11689104,40120663 -g1,14644:13902124,40120663 -g1,14644:15482853,40120663 -g1,14644:16115145,40120663 -g1,14644:18644311,40120663 -h1,14644:18960457,40120663:0,0,0 -k1,14644:32583029,40120663:13622572 -g1,14644:32583029,40120663 -) -(1,14645:6630773,40786841:25952256,404226,107478 -h1,14645:6630773,40786841:0,0,0 -g1,14645:6946919,40786841 -g1,14645:7263065,40786841 -g1,14645:14534417,40786841 -g1,14645:15166709,40786841 -g1,14645:17063584,40786841 -g1,14645:17695876,40786841 -g1,14645:22754208,40786841 -g1,14645:24334937,40786841 -g1,14645:24967229,40786841 -g1,14645:26231812,40786841 -g1,14645:29077123,40786841 -g1,14645:29709415,40786841 -h1,14645:32238581,40786841:0,0,0 -k1,14645:32583029,40786841:344448 -g1,14645:32583029,40786841 -) -] -) -g1,14647:32583029,40894319 -g1,14647:6630773,40894319 -g1,14647:6630773,40894319 -g1,14647:32583029,40894319 -g1,14647:32583029,40894319 -) -h1,14647:6630773,41090927:0,0,0 -] -(1,14656:32583029,45706769:0,0,0 -g1,14656:32583029,45706769 -) -) -] -(1,14656:6630773,47279633:25952256,0,0 -h1,14656:6630773,47279633:25952256,0,0 -) -] -(1,14656:4262630,4025873:0,0,0 -[1,14656:-473656,4025873:0,0,0 -(1,14656:-473656,-710413:0,0,0 -(1,14656:-473656,-710413:0,0,0 -g1,14656:-473656,-710413 -) -g1,14656:-473656,-710413 -) -] -) -] -!21998 -}281 -Input:2267:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2268:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2269:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2270:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2271:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2272:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2273:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2274:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2275:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2276:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2277:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2278:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2279:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2280:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2281:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2282:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2283:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2284:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2285:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2286:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1852 -{282 -[1,14694:4262630,47279633:28320399,43253760,0 -(1,14694:4262630,4025873:0,0,0 -[1,14694:-473656,4025873:0,0,0 -(1,14694:-473656,-710413:0,0,0 -(1,14694:-473656,-644877:0,0,0 -k1,14694:-473656,-644877:-65536 -) -(1,14694:-473656,4736287:0,0,0 -k1,14694:-473656,4736287:5209943 -) -g1,14694:-473656,-710413 -) -] -) -[1,14694:6630773,47279633:25952256,43253760,0 -[1,14694:6630773,4812305:25952256,786432,0 -(1,14694:6630773,4812305:25952256,485622,11795 -(1,14694:6630773,4812305:25952256,485622,11795 -g1,14694:3078558,4812305 -[1,14694:3078558,4812305:0,0,0 -(1,14694:3078558,2439708:0,1703936,0 -k1,14694:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,14694:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,14694:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,14694:3078558,4812305:0,0,0 -(1,14694:3078558,2439708:0,1703936,0 -g1,14694:29030814,2439708 -g1,14694:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,14694:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,14694:37855564,2439708:1179648,16384,0 -) -) -k1,14694:3078556,2439708:-34777008 -) -] -[1,14694:3078558,4812305:0,0,0 -(1,14694:3078558,49800853:0,16384,2228224 -k1,14694:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,14694:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,14694:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,14694:3078558,4812305:0,0,0 -(1,14694:3078558,49800853:0,16384,2228224 -g1,14694:29030814,49800853 -g1,14694:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,14694:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,14694:37855564,49800853:1179648,16384,0 -) -) -k1,14694:3078556,49800853:-34777008 -) -] -g1,14694:6630773,4812305 -g1,14694:6630773,4812305 -g1,14694:9560887,4812305 -k1,14694:31387651,4812305:21826764 -) -) -] -[1,14694:6630773,45706769:25952256,40108032,0 -(1,14694:6630773,45706769:25952256,40108032,0 -(1,14694:6630773,45706769:0,0,0 -g1,14694:6630773,45706769 -) -[1,14694:6630773,45706769:25952256,40108032,0 -(1,14650:6630773,14682403:25952256,9083666,0 -k1,14650:10523651,14682403:3892878 -h1,14649:10523651,14682403:0,0,0 -(1,14649:10523651,14682403:18166500,9083666,0 -(1,14649:10523651,14682403:18167376,9083688,0 -(1,14649:10523651,14682403:18167376,9083688,0 -(1,14649:10523651,14682403:0,9083688,0 -(1,14649:10523651,14682403:0,14208860,0 -(1,14649:10523651,14682403:28417720,14208860,0 -) -k1,14649:10523651,14682403:-28417720 -) -) -g1,14649:28691027,14682403 -) -) -) -g1,14650:28690151,14682403 -k1,14650:32583029,14682403:3892878 -) -(1,14657:6630773,15523891:25952256,513147,134348 -h1,14656:6630773,15523891:983040,0,0 -k1,14656:8268179,15523891:176609 -k1,14656:8902884,15523891:176608 -k1,14656:10583544,15523891:176609 -k1,14656:11826423,15523891:176608 -k1,14656:12950683,15523891:176609 -k1,14656:14146377,15523891:176609 -k1,14656:16193383,15523891:176608 -k1,14656:17021420,15523891:176609 -k1,14656:20457134,15523891:176609 -k1,14656:22371757,15523891:176608 -k1,14656:23215522,15523891:176609 -(1,14656:23215522,15523891:0,452978,122846 -r1,14694:28849465,15523891:5633943,575824,122846 -k1,14656:23215522,15523891:-5633943 -) -(1,14656:23215522,15523891:5633943,452978,122846 -k1,14656:23215522,15523891:3277 -h1,14656:28846188,15523891:0,411205,112570 -) -k1,14656:29199743,15523891:176608 -k1,14656:31563944,15523891:176609 -k1,14656:32583029,15523891:0 -) -(1,14657:6630773,16365379:25952256,513147,126483 -k1,14656:8707350,16365379:188485 -k1,14656:10289786,16365379:188485 -(1,14656:10289786,16365379:0,452978,115847 -r1,14694:13813458,16365379:3523672,568825,115847 -k1,14656:10289786,16365379:-3523672 -) -(1,14656:10289786,16365379:3523672,452978,115847 -k1,14656:10289786,16365379:3277 -h1,14656:13810181,16365379:0,411205,112570 -) -k1,14656:14001943,16365379:188485 -k1,14656:14873313,16365379:188485 -(1,14656:14873313,16365379:0,452978,115847 -r1,14694:19100409,16365379:4227096,568825,115847 -k1,14656:14873313,16365379:-4227096 -) -(1,14656:14873313,16365379:4227096,452978,115847 -k1,14656:14873313,16365379:3277 -h1,14656:19097132,16365379:0,411205,112570 -) -k1,14656:19288894,16365379:188485 -k1,14656:21433629,16365379:188485 -k1,14656:22369880,16365379:188485 -k1,14656:25824024,16365379:188485 -k1,14656:26698671,16365379:188485 -k1,14656:27345253,16365379:188485 -k1,14656:29579772,16365379:188485 -k1,14656:31298523,16365379:188485 -k1,14656:32583029,16365379:0 -) -(1,14657:6630773,17206867:25952256,505283,126483 -g1,14656:11224191,17206867 -g1,14656:12232790,17206867 -g1,14656:13451104,17206867 -g1,14656:15039696,17206867 -g1,14656:16230485,17206867 -k1,14657:32583029,17206867:13480756 -g1,14657:32583029,17206867 -) -v1,14659:6630773,18397333:0,393216,0 -(1,14664:6630773,19384899:25952256,1380782,196608 -g1,14664:6630773,19384899 -g1,14664:6630773,19384899 -g1,14664:6434165,19384899 -(1,14664:6434165,19384899:0,1380782,196608 -r1,14694:32779637,19384899:26345472,1577390,196608 -k1,14664:6434165,19384899:-26345472 -) -(1,14664:6434165,19384899:26345472,1380782,196608 -[1,14664:6630773,19384899:25952256,1184174,0 -(1,14661:6630773,18611243:25952256,410518,107478 -(1,14660:6630773,18611243:0,0,0 -g1,14660:6630773,18611243 -g1,14660:6630773,18611243 -g1,14660:6303093,18611243 -(1,14660:6303093,18611243:0,0,0 -) -g1,14660:6630773,18611243 -) -k1,14661:6630773,18611243:0 -g1,14661:11689104,18611243 -g1,14661:13902124,18611243 -g1,14661:15482853,18611243 -g1,14661:16115145,18611243 -g1,14661:18644311,18611243 -h1,14661:18960457,18611243:0,0,0 -k1,14661:32583029,18611243:13622572 -g1,14661:32583029,18611243 -) -(1,14662:6630773,19277421:25952256,404226,107478 -h1,14662:6630773,19277421:0,0,0 -g1,14662:6946919,19277421 -g1,14662:7263065,19277421 -g1,14662:11689105,19277421 -g1,14662:12321397,19277421 -g1,14662:13585980,19277421 -g1,14662:16431291,19277421 -g1,14662:17063583,19277421 -h1,14662:19592749,19277421:0,0,0 -k1,14662:32583029,19277421:12990280 -g1,14662:32583029,19277421 -) -] -) -g1,14664:32583029,19384899 -g1,14664:6630773,19384899 -g1,14664:6630773,19384899 -g1,14664:32583029,19384899 -g1,14664:32583029,19384899 -) -h1,14664:6630773,19581507:0,0,0 -(1,14668:6630773,20947283:25952256,513147,134348 -h1,14667:6630773,20947283:983040,0,0 -k1,14667:9064217,20947283:253717 -k1,14667:11723105,20947283:253716 -(1,14667:11723105,20947283:0,452978,115847 -r1,14694:15246777,20947283:3523672,568825,115847 -k1,14667:11723105,20947283:-3523672 -) -(1,14667:11723105,20947283:3523672,452978,115847 -k1,14667:11723105,20947283:3277 -h1,14667:15243500,20947283:0,411205,112570 -) -k1,14667:15674164,20947283:253717 -k1,14667:17119325,20947283:253716 -k1,14667:18161440,20947283:253717 -k1,14667:21386558,20947283:253716 -k1,14667:24647722,20947283:253717 -(1,14667:24647722,20947283:0,452978,122846 -r1,14694:28874818,20947283:4227096,575824,122846 -k1,14667:24647722,20947283:-4227096 -) -(1,14667:24647722,20947283:4227096,452978,122846 -k1,14667:24647722,20947283:3277 -h1,14667:28871541,20947283:0,411205,112570 -) -k1,14667:29302204,20947283:253716 -k1,14667:30317449,20947283:253717 -k1,14667:32583029,20947283:0 -) -(1,14668:6630773,21788771:25952256,513147,134348 -k1,14667:9721760,21788771:303085 -k1,14667:10380706,21788771:303086 -k1,14667:13860321,21788771:303085 -k1,14667:17399574,21788771:303085 -k1,14667:18318698,21788771:303086 -k1,14667:19794222,21788771:303085 -k1,14667:23946236,21788771:303085 -k1,14667:25993890,21788771:303086 -k1,14667:27316060,21788771:303085 -(1,14667:27316060,21788771:0,414482,115847 -r1,14694:27674326,21788771:358266,530329,115847 -k1,14667:27316060,21788771:-358266 -) -(1,14667:27316060,21788771:358266,414482,115847 -k1,14667:27316060,21788771:3277 -h1,14667:27671049,21788771:0,411205,112570 -) -k1,14667:27977411,21788771:303085 -k1,14667:29471942,21788771:303086 -(1,14667:29471942,21788771:0,414482,115847 -r1,14694:29830208,21788771:358266,530329,115847 -k1,14667:29471942,21788771:-358266 -) -(1,14667:29471942,21788771:358266,414482,115847 -k1,14667:29471942,21788771:3277 -h1,14667:29826931,21788771:0,411205,112570 -) -k1,14667:30133293,21788771:303085 -k1,14668:32583029,21788771:0 -) -(1,14668:6630773,22630259:25952256,513147,134348 -k1,14667:7866001,22630259:264640 -k1,14667:9327328,22630259:264640 -k1,14667:12768498,22630259:264640 -k1,14667:13980789,22630259:264640 -k1,14667:15697051,22630259:264640 -k1,14667:19596973,22630259:264640 -k1,14667:20872179,22630259:264641 -k1,14667:21668316,22630259:264640 -k1,14667:24518351,22630259:264640 -k1,14667:26243789,22630259:264640 -k1,14667:26864289,22630259:264640 -(1,14667:26864289,22630259:0,459977,115847 -r1,14694:28277690,22630259:1413401,575824,115847 -k1,14667:26864289,22630259:-1413401 -) -(1,14667:26864289,22630259:1413401,459977,115847 -k1,14667:26864289,22630259:3277 -h1,14667:28274413,22630259:0,411205,112570 -) -k1,14667:28542330,22630259:264640 -k1,14667:30552849,22630259:264640 -k1,14667:31635378,22630259:264640 -k1,14668:32583029,22630259:0 -) -(1,14668:6630773,23471747:25952256,505283,126483 -(1,14667:6630773,23471747:0,452978,115847 -r1,14694:10154445,23471747:3523672,568825,115847 -k1,14667:6630773,23471747:-3523672 -) -(1,14667:6630773,23471747:3523672,452978,115847 -k1,14667:6630773,23471747:3277 -h1,14667:10151168,23471747:0,411205,112570 -) -k1,14667:10510066,23471747:181951 -(1,14667:10510066,23471747:0,452978,115847 -r1,14694:12978603,23471747:2468537,568825,115847 -k1,14667:10510066,23471747:-2468537 -) -(1,14667:10510066,23471747:2468537,452978,115847 -k1,14667:10510066,23471747:3277 -h1,14667:12975326,23471747:0,411205,112570 -) -k1,14667:13160553,23471747:181950 -k1,14667:13874001,23471747:181951 -k1,14667:15341767,23471747:181950 -k1,14667:18732361,23471747:181951 -k1,14667:20105756,23471747:181950 -k1,14667:23071676,23471747:181951 -k1,14667:23905055,23471747:181951 -k1,14667:24834771,23471747:181950 -k1,14667:27602117,23471747:181951 -k1,14667:28470229,23471747:181950 -k1,14667:30727705,23471747:181951 -k1,14667:32583029,23471747:0 -) -(1,14668:6630773,24313235:25952256,513147,126483 -k1,14667:7861974,24313235:283550 -(1,14667:7861974,24313235:0,452978,122846 -r1,14694:12792494,24313235:4930520,575824,122846 -k1,14667:7861974,24313235:-4930520 -) -(1,14667:7861974,24313235:4930520,452978,122846 -k1,14667:7861974,24313235:3277 -h1,14667:12789217,24313235:0,411205,112570 -) -k1,14667:13249713,24313235:283549 -k1,14667:14161098,24313235:283550 -k1,14667:15647889,24313235:283550 -k1,14667:18766526,24313235:283550 -k1,14667:19701503,24313235:283549 -k1,14667:22745429,24313235:283550 -k1,14667:26378524,24313235:283550 -k1,14667:27278111,24313235:283549 -k1,14667:28734100,24313235:283550 -k1,14667:32583029,24313235:0 -) -(1,14668:6630773,25154723:25952256,505283,138281 -k1,14667:8510965,25154723:152663 -$1,14667:8510965,25154723 -$1,14667:9013626,25154723 -k1,14667:9166289,25154723:152663 -k1,14667:10510398,25154723:152664 -$1,14667:10510398,25154723 -$1,14667:11062211,25154723 -k1,14667:11214874,25154723:152663 -k1,14667:13270047,25154723:152663 -k1,14667:14414270,25154723:152663 -k1,14667:16168634,25154723:152664 -k1,14667:19006962,25154723:152663 -k1,14667:21045096,25154723:152663 -k1,14667:22066111,25154723:152663 -k1,14667:24576105,25154723:152664 -k1,14667:25490296,25154723:152663 -k1,14667:27830551,25154723:152663 -(1,14667:27830551,25154723:0,459977,115847 -r1,14694:32409359,25154723:4578808,575824,115847 -k1,14667:27830551,25154723:-4578808 -) -(1,14667:27830551,25154723:4578808,459977,115847 -k1,14667:27830551,25154723:3277 -h1,14667:32406082,25154723:0,411205,112570 -) -k1,14667:32583029,25154723:0 -) -(1,14668:6630773,25996211:25952256,513147,134348 -k1,14667:8673259,25996211:157015 -k1,14667:9361771,25996211:157015 -k1,14667:9874646,25996211:157015 -k1,14667:12857572,25996211:157014 -k1,14667:13673879,25996211:157015 -k1,14667:14849979,25996211:157015 -k1,14667:17272574,25996211:157015 -(1,14667:17272574,25996211:0,452978,115847 -r1,14694:23258229,25996211:5985655,568825,115847 -k1,14667:17272574,25996211:-5985655 -) -(1,14667:17272574,25996211:5985655,452978,115847 -k1,14667:17272574,25996211:3277 -h1,14667:23254952,25996211:0,411205,112570 -) -k1,14667:23415244,25996211:157015 -k1,14667:24804336,25996211:157015 -k1,14667:27240037,25996211:157014 -h1,14667:28609084,25996211:0,0,0 -k1,14667:28766099,25996211:157015 -k1,14667:29732484,25996211:157015 -k1,14667:31387652,25996211:157015 -h1,14667:32583029,25996211:0,0,0 -k1,14667:32583029,25996211:0 -) -(1,14668:6630773,26837699:25952256,513147,126483 -g1,14667:7777653,26837699 -g1,14667:10094350,26837699 -g1,14667:11102949,26837699 -g1,14667:13004148,26837699 -g1,14667:15779597,26837699 -g1,14667:16638118,26837699 -k1,14668:32583029,26837699:11825973 -g1,14668:32583029,26837699 -) -v1,14670:6630773,28028165:0,393216,0 -(1,14676:6630773,29644160:25952256,2009211,196608 -g1,14676:6630773,29644160 -g1,14676:6630773,29644160 -g1,14676:6434165,29644160 -(1,14676:6434165,29644160:0,2009211,196608 -r1,14694:32779637,29644160:26345472,2205819,196608 -k1,14676:6434165,29644160:-26345472 -) -(1,14676:6434165,29644160:26345472,2009211,196608 -[1,14676:6630773,29644160:25952256,1812603,0 -(1,14672:6630773,28235783:25952256,404226,107478 -(1,14671:6630773,28235783:0,0,0 -g1,14671:6630773,28235783 -g1,14671:6630773,28235783 -g1,14671:6303093,28235783 -(1,14671:6303093,28235783:0,0,0 -) -g1,14671:6630773,28235783 -) -k1,14672:6630773,28235783:0 -g1,14672:11689104,28235783 -g1,14672:13902124,28235783 -g1,14672:15166707,28235783 -h1,14672:15482853,28235783:0,0,0 -k1,14672:32583029,28235783:17100176 -g1,14672:32583029,28235783 -) -(1,14673:6630773,28901961:25952256,404226,76021 -h1,14673:6630773,28901961:0,0,0 -g1,14673:6946919,28901961 -g1,14673:7263065,28901961 -g1,14673:12321397,28901961 -g1,14673:12953689,28901961 -g1,14673:13902127,28901961 -h1,14673:14218273,28901961:0,0,0 -k1,14673:32583029,28901961:18364756 -g1,14673:32583029,28901961 -) -(1,14674:6630773,29568139:25952256,410518,76021 -h1,14674:6630773,29568139:0,0,0 -g1,14674:6946919,29568139 -g1,14674:7263065,29568139 -g1,14674:12953687,29568139 -g1,14674:13585979,29568139 -h1,14674:14218271,29568139:0,0,0 -k1,14674:32583029,29568139:18364758 -g1,14674:32583029,29568139 -) -] -) -g1,14676:32583029,29644160 -g1,14676:6630773,29644160 -g1,14676:6630773,29644160 -g1,14676:32583029,29644160 -g1,14676:32583029,29644160 -) -h1,14676:6630773,29840768:0,0,0 -(1,14679:6630773,39514258:25952256,9083666,0 -k1,14679:10523651,39514258:3892878 -h1,14678:10523651,39514258:0,0,0 -(1,14678:10523651,39514258:18166500,9083666,0 -(1,14678:10523651,39514258:18167376,9083688,0 -(1,14678:10523651,39514258:18167376,9083688,0 -(1,14678:10523651,39514258:0,9083688,0 -(1,14678:10523651,39514258:0,14208860,0 -(1,14678:10523651,39514258:28417720,14208860,0 -) -k1,14678:10523651,39514258:-28417720 -) -) -g1,14678:28691027,39514258 -) -) -) -g1,14679:28690151,39514258 -k1,14679:32583029,39514258:3892878 -) -(1,14686:6630773,40355746:25952256,513147,134348 -h1,14685:6630773,40355746:983040,0,0 -k1,14685:9168484,40355746:357984 -k1,14685:11931641,40355746:357985 -(1,14685:11931641,40355746:0,452978,115847 -r1,14694:16862161,40355746:4930520,568825,115847 -k1,14685:11931641,40355746:-4930520 -) -(1,14685:11931641,40355746:4930520,452978,115847 -k1,14685:11931641,40355746:3277 -h1,14685:16858884,40355746:0,411205,112570 -) -k1,14685:17393815,40355746:357984 -k1,14685:18943245,40355746:357985 -k1,14685:20089627,40355746:357984 -k1,14685:23419013,40355746:357984 -k1,14685:26784445,40355746:357985 -(1,14685:26784445,40355746:0,452978,122846 -r1,14694:30308117,40355746:3523672,575824,122846 -k1,14685:26784445,40355746:-3523672 -) -(1,14685:26784445,40355746:3523672,452978,122846 -k1,14685:26784445,40355746:3277 -h1,14685:30304840,40355746:0,411205,112570 -) -k1,14685:30839771,40355746:357984 -k1,14685:32583029,40355746:0 -) -(1,14686:6630773,41197234:25952256,513147,134348 -k1,14685:8587567,41197234:389173 -(1,14685:8587567,41197234:0,452978,115847 -r1,14694:12814663,41197234:4227096,568825,115847 -k1,14685:8587567,41197234:-4227096 -) -(1,14685:8587567,41197234:4227096,452978,115847 -k1,14685:8587567,41197234:3277 -h1,14685:12811386,41197234:0,411205,112570 -) -k1,14685:13203835,41197234:389172 -k1,14685:14209046,41197234:389173 -k1,14685:16106858,41197234:389173 -k1,14685:17588515,41197234:389172 -k1,14685:18636980,41197234:389173 -k1,14685:22253801,41197234:389173 -k1,14685:24970156,41197234:389172 -k1,14685:26018621,41197234:389173 -k1,14685:28548855,41197234:389173 -k1,14685:30452564,41197234:389172 -k1,14685:31601955,41197234:389173 -k1,14686:32583029,41197234:0 -) -(1,14686:6630773,42038722:25952256,513147,134348 -k1,14685:8399538,42038722:271267 -k1,14685:9689890,42038722:271267 -k1,14685:13137687,42038722:271267 -k1,14685:14091840,42038722:271268 -(1,14685:14091840,42038722:0,414482,115847 -r1,14694:15856953,42038722:1765113,530329,115847 -k1,14685:14091840,42038722:-1765113 -) -(1,14685:14091840,42038722:1765113,414482,115847 -k1,14685:14091840,42038722:3277 -h1,14685:15853676,42038722:0,411205,112570 -) -k1,14685:16128220,42038722:271267 -k1,14685:17347138,42038722:271267 -k1,14685:19070027,42038722:271267 -k1,14685:22007954,42038722:271267 -k1,14685:22810718,42038722:271267 -k1,14685:25667381,42038722:271268 -k1,14685:26590076,42038722:271267 -k1,14685:27880428,42038722:271267 -(1,14685:27880428,42038722:0,459977,115847 -r1,14694:29293829,42038722:1413401,575824,115847 -k1,14685:27880428,42038722:-1413401 -) -(1,14685:27880428,42038722:1413401,459977,115847 -k1,14685:27880428,42038722:3277 -h1,14685:29290552,42038722:0,411205,112570 -) -k1,14685:29565096,42038722:271267 -k1,14685:32583029,42038722:0 -) -(1,14686:6630773,42880210:25952256,505283,126483 -k1,14685:8025778,42880210:322836 -k1,14685:10493608,42880210:322837 -k1,14685:14013946,42880210:322836 -k1,14685:15022944,42880210:322836 -(1,14685:15022944,42880210:0,452978,115847 -r1,14694:17491481,42880210:2468537,568825,115847 -k1,14685:15022944,42880210:-2468537 -) -(1,14685:15022944,42880210:2468537,452978,115847 -k1,14685:15022944,42880210:3277 -h1,14685:17488204,42880210:0,411205,112570 -) -k1,14685:17814317,42880210:322836 -k1,14685:19128714,42880210:322837 -k1,14685:20737366,42880210:322836 -k1,14685:24268845,42880210:322836 -k1,14685:25783126,42880210:322836 -k1,14685:27210245,42880210:322837 -k1,14685:28280847,42880210:322836 -k1,14685:31189078,42880210:322836 -k1,14686:32583029,42880210:0 -) -(1,14686:6630773,43721698:25952256,459977,115847 -(1,14685:6630773,43721698:0,459977,115847 -r1,14694:15430124,43721698:8799351,575824,115847 -k1,14685:6630773,43721698:-8799351 -) -(1,14685:6630773,43721698:8799351,459977,115847 -g1,14685:9799457,43721698 -g1,14685:10502881,43721698 -h1,14685:15426847,43721698:0,411205,112570 -) -k1,14686:32583030,43721698:16979236 -g1,14686:32583030,43721698 -) -v1,14688:6630773,44912164:0,393216,0 -] -(1,14694:32583029,45706769:0,0,0 -g1,14694:32583029,45706769 -) -) -] -(1,14694:6630773,47279633:25952256,0,0 -h1,14694:6630773,47279633:25952256,0,0 -) -] -(1,14694:4262630,4025873:0,0,0 -[1,14694:-473656,4025873:0,0,0 -(1,14694:-473656,-710413:0,0,0 -(1,14694:-473656,-710413:0,0,0 -g1,14694:-473656,-710413 -) -g1,14694:-473656,-710413 -) -] -) -] -!19829 -}282 -Input:2287:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2288:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2289:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2290:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2291:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2292:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!564 -{283 -[1,14749:4262630,47279633:28320399,43253760,0 -(1,14749:4262630,4025873:0,0,0 -[1,14749:-473656,4025873:0,0,0 -(1,14749:-473656,-710413:0,0,0 -(1,14749:-473656,-644877:0,0,0 -k1,14749:-473656,-644877:-65536 -) -(1,14749:-473656,4736287:0,0,0 -k1,14749:-473656,4736287:5209943 -) -g1,14749:-473656,-710413 -) -] -) -[1,14749:6630773,47279633:25952256,43253760,0 -[1,14749:6630773,4812305:25952256,786432,0 -(1,14749:6630773,4812305:25952256,513147,134348 -(1,14749:6630773,4812305:25952256,513147,134348 -g1,14749:3078558,4812305 -[1,14749:3078558,4812305:0,0,0 -(1,14749:3078558,2439708:0,1703936,0 -k1,14749:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,14749:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,14749:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,14749:3078558,4812305:0,0,0 -(1,14749:3078558,2439708:0,1703936,0 -g1,14749:29030814,2439708 -g1,14749:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,14749:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,14749:37855564,2439708:1179648,16384,0 -) -) -k1,14749:3078556,2439708:-34777008 -) -] -[1,14749:3078558,4812305:0,0,0 -(1,14749:3078558,49800853:0,16384,2228224 -k1,14749:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,14749:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,14749:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,14749:3078558,4812305:0,0,0 -(1,14749:3078558,49800853:0,16384,2228224 -g1,14749:29030814,49800853 -g1,14749:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,14749:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,14749:37855564,49800853:1179648,16384,0 -) -) -k1,14749:3078556,49800853:-34777008 -) -] -g1,14749:6630773,4812305 -k1,14749:25712890,4812305:17886740 -g1,14749:29057847,4812305 -g1,14749:29873114,4812305 -) -) -] -[1,14749:6630773,45706769:25952256,40108032,0 -(1,14749:6630773,45706769:25952256,40108032,0 -(1,14749:6630773,45706769:0,0,0 -g1,14749:6630773,45706769 -) -[1,14749:6630773,45706769:25952256,40108032,0 -v1,14694:6630773,6254097:0,393216,0 -(1,14694:6630773,7870092:25952256,2009211,196608 -g1,14694:6630773,7870092 -g1,14694:6630773,7870092 -g1,14694:6434165,7870092 -(1,14694:6434165,7870092:0,2009211,196608 -r1,14749:32779637,7870092:26345472,2205819,196608 -k1,14694:6434165,7870092:-26345472 -) -(1,14694:6434165,7870092:26345472,2009211,196608 -[1,14694:6630773,7870092:25952256,1812603,0 -(1,14690:6630773,6461715:25952256,404226,107478 -(1,14689:6630773,6461715:0,0,0 -g1,14689:6630773,6461715 -g1,14689:6630773,6461715 -g1,14689:6303093,6461715 -(1,14689:6303093,6461715:0,0,0 -) -g1,14689:6630773,6461715 -) -k1,14690:6630773,6461715:0 -g1,14690:11689104,6461715 -g1,14690:13902124,6461715 -g1,14690:15166707,6461715 -h1,14690:15482853,6461715:0,0,0 -k1,14690:32583029,6461715:17100176 -g1,14690:32583029,6461715 -) -(1,14691:6630773,7127893:25952256,404226,76021 -h1,14691:6630773,7127893:0,0,0 -g1,14691:6946919,7127893 -g1,14691:7263065,7127893 -g1,14691:12953688,7127893 -g1,14691:13585980,7127893 -g1,14691:14534418,7127893 -h1,14691:14850564,7127893:0,0,0 -k1,14691:32583028,7127893:17732464 -g1,14691:32583028,7127893 -) -(1,14692:6630773,7794071:25952256,410518,76021 -h1,14692:6630773,7794071:0,0,0 -g1,14692:6946919,7794071 -g1,14692:7263065,7794071 -g1,14692:12953687,7794071 -g1,14692:13585979,7794071 -h1,14692:14218271,7794071:0,0,0 -k1,14692:32583029,7794071:18364758 -g1,14692:32583029,7794071 -) -] -) -g1,14694:32583029,7870092 -g1,14694:6630773,7870092 -g1,14694:6630773,7870092 -g1,14694:32583029,7870092 -g1,14694:32583029,7870092 -) -h1,14694:6630773,8066700:0,0,0 -(1,14697:6630773,17740190:25952256,9083666,0 -k1,14697:10523651,17740190:3892878 -h1,14696:10523651,17740190:0,0,0 -(1,14696:10523651,17740190:18166500,9083666,0 -(1,14696:10523651,17740190:18167376,9083688,0 -(1,14696:10523651,17740190:18167376,9083688,0 -(1,14696:10523651,17740190:0,9083688,0 -(1,14696:10523651,17740190:0,14208860,0 -(1,14696:10523651,17740190:28417720,14208860,0 -) -k1,14696:10523651,17740190:-28417720 -) -) -g1,14696:28691027,17740190 -) -) -) -g1,14697:28690151,17740190 -k1,14697:32583029,17740190:3892878 -) -(1,14704:6630773,19831450:25952256,564462,139132 -(1,14704:6630773,19831450:2450326,521208,12975 -g1,14704:6630773,19831450 -g1,14704:9081099,19831450 -) -g1,14704:12118955,19831450 -k1,14704:32583029,19831450:17022516 -g1,14704:32583029,19831450 -) -(1,14708:6630773,21066154:25952256,513147,134348 -k1,14707:9829764,21066154:202030 -k1,14707:12364219,21066154:202029 -k1,14707:15592046,21066154:202030 -k1,14707:16785636,21066154:202030 -k1,14707:18006750,21066154:202029 -k1,14707:21513761,21066154:202030 -k1,14707:22375082,21066154:202029 -k1,14707:22932972,21066154:202030 -k1,14707:26544840,21066154:202030 -k1,14707:27819038,21066154:202029 -k1,14707:29012628,21066154:202030 -k1,14707:32583029,21066154:0 -) -(1,14708:6630773,21907642:25952256,505283,134348 -k1,14707:8092460,21907642:270242 -k1,14707:9428974,21907642:270243 -k1,14707:12928175,21907642:270242 -k1,14707:14933810,21907642:270242 -k1,14707:16724487,21907642:270242 -k1,14707:18552521,21907642:270243 -k1,14707:19927045,21907642:270242 -k1,14707:20945053,21907642:270242 -k1,14707:24351849,21907642:270243 -k1,14707:25238129,21907642:270242 -k1,14707:25906830,21907642:270242 -k1,14707:26859957,21907642:270242 -k1,14707:27528659,21907642:270243 -k1,14707:31474160,21907642:270242 -k1,14707:32583029,21907642:0 -) -(1,14708:6630773,22749130:25952256,513147,138281 -k1,14707:7583789,22749130:270131 -k1,14707:9136460,22749130:270131 -k1,14707:10354242,22749130:270131 -$1,14707:10354242,22749130 -$1,14707:10856903,22749130 -k1,14707:11127035,22749130:270132 -k1,14707:12080051,22749130:270131 -$1,14707:12080051,22749130 -$1,14707:12582712,22749130 -k1,14707:12852843,22749130:270131 -k1,14707:14314419,22749130:270131 -$1,14707:14314419,22749130 -$1,14707:14866232,22749130 -k1,14707:15310033,22749130:270131 -k1,14707:19550335,22749130:270131 -k1,14707:20638355,22749130:270131 -k1,14707:22302437,22749130:270131 -k1,14707:26139038,22749130:270132 -k1,14707:26867266,22749130:270131 -k1,14707:27668894,22749130:270131 -k1,14707:30568985,22749130:270131 -k1,14707:31490544,22749130:270131 -k1,14707:32583029,22749130:0 -) -(1,14708:6630773,23590618:25952256,513147,134348 -k1,14707:9615618,23590618:222502 -k1,14707:13278105,23590618:222502 -k1,14707:14152035,23590618:222502 -k1,14707:17177512,23590618:222502 -k1,14707:19212740,23590618:222502 -k1,14707:22450553,23590618:222502 -k1,14707:23332347,23590618:222502 -k1,14707:24573934,23590618:222502 -k1,14707:25888921,23590618:222502 -k1,14707:26778579,23590618:222502 -(1,14707:26778579,23590618:0,452978,122846 -r1,14749:31709099,23590618:4930520,575824,122846 -k1,14707:26778579,23590618:-4930520 -) -(1,14707:26778579,23590618:4930520,452978,122846 -k1,14707:26778579,23590618:3277 -h1,14707:31705822,23590618:0,411205,112570 -) -k1,14707:31931601,23590618:222502 -k1,14707:32583029,23590618:0 -) -(1,14708:6630773,24432106:25952256,513147,126483 -g1,14707:8759382,24432106 -g1,14707:9860386,24432106 -g1,14707:12392041,24432106 -g1,14707:14198868,24432106 -k1,14708:32583029,24432106:16225405 -g1,14708:32583029,24432106 -) -v1,14710:6630773,25622572:0,393216,0 -(1,14715:6630773,26603846:25952256,1374490,196608 -g1,14715:6630773,26603846 -g1,14715:6630773,26603846 -g1,14715:6434165,26603846 -(1,14715:6434165,26603846:0,1374490,196608 -r1,14749:32779637,26603846:26345472,1571098,196608 -k1,14715:6434165,26603846:-26345472 -) -(1,14715:6434165,26603846:26345472,1374490,196608 -[1,14715:6630773,26603846:25952256,1177882,0 -(1,14712:6630773,25830190:25952256,404226,107478 -(1,14711:6630773,25830190:0,0,0 -g1,14711:6630773,25830190 -g1,14711:6630773,25830190 -g1,14711:6303093,25830190 -(1,14711:6303093,25830190:0,0,0 -) -g1,14711:6630773,25830190 -) -k1,14712:6630773,25830190:0 -g1,14712:11689104,25830190 -g1,14712:13902124,25830190 -g1,14712:15798998,25830190 -g1,14712:16431290,25830190 -g1,14712:18960456,25830190 -h1,14712:19276602,25830190:0,0,0 -k1,14712:32583029,25830190:13306427 -g1,14712:32583029,25830190 -) -(1,14713:6630773,26496368:25952256,404226,107478 -h1,14713:6630773,26496368:0,0,0 -g1,14713:6946919,26496368 -g1,14713:7263065,26496368 -k1,14713:7263065,26496368:0 -h1,14713:11689104,26496368:0,0,0 -k1,14713:32583028,26496368:20893924 -g1,14713:32583028,26496368 -) -] -) -g1,14715:32583029,26603846 -g1,14715:6630773,26603846 -g1,14715:6630773,26603846 -g1,14715:32583029,26603846 -g1,14715:32583029,26603846 -) -h1,14715:6630773,26800454:0,0,0 -(1,14718:6630773,36473944:25952256,9083666,0 -k1,14718:10523651,36473944:3892878 -h1,14717:10523651,36473944:0,0,0 -(1,14717:10523651,36473944:18166500,9083666,0 -(1,14717:10523651,36473944:18167376,9083688,0 -(1,14717:10523651,36473944:18167376,9083688,0 -(1,14717:10523651,36473944:0,9083688,0 -(1,14717:10523651,36473944:0,14208860,0 -(1,14717:10523651,36473944:28417720,14208860,0 -) -k1,14717:10523651,36473944:-28417720 -) -) -g1,14717:28691027,36473944 -) -) -) -g1,14718:28690151,36473944 -k1,14718:32583029,36473944:3892878 -) -(1,14725:6630773,37315432:25952256,513147,126483 -h1,14724:6630773,37315432:983040,0,0 -g1,14724:8300630,37315432 -g1,14724:13728977,37315432 -g1,14724:14769033,37315432 -g1,14724:16072544,37315432 -g1,14724:17019539,37315432 -g1,14724:18731994,37315432 -g1,14724:21258406,37315432 -g1,14724:22116927,37315432 -g1,14724:25115199,37315432 -k1,14725:32583029,37315432:5795351 -g1,14725:32583029,37315432 -) -v1,14727:6630773,38505898:0,393216,0 -(1,14732:6630773,39493464:25952256,1380782,196608 -g1,14732:6630773,39493464 -g1,14732:6630773,39493464 -g1,14732:6434165,39493464 -(1,14732:6434165,39493464:0,1380782,196608 -r1,14749:32779637,39493464:26345472,1577390,196608 -k1,14732:6434165,39493464:-26345472 -) -(1,14732:6434165,39493464:26345472,1380782,196608 -[1,14732:6630773,39493464:25952256,1184174,0 -(1,14729:6630773,38719808:25952256,410518,107478 -(1,14728:6630773,38719808:0,0,0 -g1,14728:6630773,38719808 -g1,14728:6630773,38719808 -g1,14728:6303093,38719808 -(1,14728:6303093,38719808:0,0,0 -) -g1,14728:6630773,38719808 -) -k1,14729:6630773,38719808:0 -g1,14729:11689104,38719808 -g1,14729:13902124,38719808 -g1,14729:15482853,38719808 -g1,14729:16115145,38719808 -g1,14729:18644311,38719808 -h1,14729:18960457,38719808:0,0,0 -k1,14729:32583029,38719808:13622572 -g1,14729:32583029,38719808 -) -(1,14730:6630773,39385986:25952256,404226,107478 -h1,14730:6630773,39385986:0,0,0 -g1,14730:6946919,39385986 -g1,14730:7263065,39385986 -g1,14730:13269833,39385986 -g1,14730:13902125,39385986 -h1,14730:15166708,39385986:0,0,0 -k1,14730:32583028,39385986:17416320 -g1,14730:32583028,39385986 -) -] -) -g1,14732:32583029,39493464 -g1,14732:6630773,39493464 -g1,14732:6630773,39493464 -g1,14732:32583029,39493464 -g1,14732:32583029,39493464 -) -h1,14732:6630773,39690072:0,0,0 -(1,14740:6630773,41055848:25952256,513147,134348 -h1,14739:6630773,41055848:983040,0,0 -k1,14739:10881593,41055848:252469 -k1,14739:11793354,41055848:252469 -k1,14739:12947544,41055848:252415 -k1,14739:15532439,41055848:252469 -k1,14739:17392506,41055848:252469 -k1,14739:19803731,41055848:252469 -k1,14739:20684035,41055848:252469 -k1,14739:21955589,41055848:252469 -k1,14739:23514191,41055848:252469 -k1,14739:26428077,41055848:252469 -k1,14739:27548898,41055848:252469 -k1,14739:28893852,41055848:252469 -k1,14739:30318760,41055848:252469 -k1,14740:32583029,41055848:0 -) -(1,14740:6630773,41897336:25952256,505283,126483 -k1,14739:8267342,41897336:255725 -k1,14739:10408539,41897336:255726 -k1,14739:12168315,41897336:255725 -k1,14739:14457622,41897336:255725 -k1,14739:17977040,41897336:255725 -(1,14739:17977040,41897336:0,452978,122846 -r1,14749:22204136,41897336:4227096,575824,122846 -k1,14739:17977040,41897336:-4227096 -) -(1,14739:17977040,41897336:4227096,452978,122846 -k1,14739:17977040,41897336:3277 -h1,14739:22200859,41897336:0,411205,112570 -) -k1,14739:22459862,41897336:255726 -k1,14739:23907032,41897336:255725 -(1,14739:23907032,41897336:0,452978,122846 -r1,14749:27430704,41897336:3523672,575824,122846 -k1,14739:23907032,41897336:-3523672 -) -(1,14739:23907032,41897336:3523672,452978,122846 -k1,14739:23907032,41897336:3277 -h1,14739:27427427,41897336:0,411205,112570 -) -k1,14739:27860099,41897336:255725 -k1,14739:28767252,41897336:255725 -k1,14739:30300275,41897336:255726 -k1,14739:31575085,41897336:255725 -k1,14740:32583029,41897336:0 -) -(1,14740:6630773,42738824:25952256,505283,134348 -k1,14739:10118571,42738824:210998 -k1,14739:10945607,42738824:210998 -k1,14739:12175690,42738824:210998 -k1,14739:16350305,42738824:210998 -k1,14739:18040450,42738824:210997 -(1,14739:18040450,42738824:0,452978,115847 -r1,14749:24026105,42738824:5985655,568825,115847 -k1,14739:18040450,42738824:-5985655 -) -(1,14739:18040450,42738824:5985655,452978,115847 -k1,14739:18040450,42738824:3277 -h1,14739:24022828,42738824:0,411205,112570 -) -k1,14739:24237103,42738824:210998 -k1,14739:25316453,42738824:210998 -k1,14739:26724794,42738824:210998 -k1,14739:27291652,42738824:210998 -k1,14739:32583029,42738824:0 -) -(1,14740:6630773,43580312:25952256,505283,134348 -g1,14739:9162428,43580312 -g1,14739:11358539,43580312 -g1,14739:15367376,43580312 -g1,14739:17301998,43580312 -g1,14739:20099730,43580312 -g1,14739:21252508,43580312 -g1,14739:22848309,43580312 -(1,14739:22848309,43580312:0,414482,122846 -r1,14749:24613422,43580312:1765113,537328,122846 -k1,14739:22848309,43580312:-1765113 -) -(1,14739:22848309,43580312:1765113,414482,122846 -k1,14739:22848309,43580312:3277 -h1,14739:24610145,43580312:0,411205,112570 -) -g1,14739:24812651,43580312 -g1,14739:25663308,43580312 -g1,14739:26881622,43580312 -(1,14739:26881622,43580312:0,452978,115847 -r1,14749:28646735,43580312:1765113,568825,115847 -k1,14739:26881622,43580312:-1765113 -) -(1,14739:26881622,43580312:1765113,452978,115847 -k1,14739:26881622,43580312:3277 -h1,14739:28643458,43580312:0,411205,112570 -) -g1,14739:28845964,43580312 -k1,14740:32583029,43580312:810228 -g1,14740:32583029,43580312 -) -v1,14742:6630773,44770778:0,393216,0 -] -(1,14749:32583029,45706769:0,0,0 -g1,14749:32583029,45706769 -) -) -] -(1,14749:6630773,47279633:25952256,0,0 -h1,14749:6630773,47279633:25952256,0,0 -) -] -(1,14749:4262630,4025873:0,0,0 -[1,14749:-473656,4025873:0,0,0 -(1,14749:-473656,-710413:0,0,0 -(1,14749:-473656,-710413:0,0,0 -g1,14749:-473656,-710413 -) -g1,14749:-473656,-710413 -) -] -) -] -!15181 -}283 -Input:2293:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2294:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2295:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2296:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2297:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2298:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!564 -{284 -[1,14803:4262630,47279633:28320399,43253760,0 -(1,14803:4262630,4025873:0,0,0 -[1,14803:-473656,4025873:0,0,0 -(1,14803:-473656,-710413:0,0,0 -(1,14803:-473656,-644877:0,0,0 -k1,14803:-473656,-644877:-65536 -) -(1,14803:-473656,4736287:0,0,0 -k1,14803:-473656,4736287:5209943 -) -g1,14803:-473656,-710413 -) -] -) -[1,14803:6630773,47279633:25952256,43253760,0 -[1,14803:6630773,4812305:25952256,786432,0 -(1,14803:6630773,4812305:25952256,485622,11795 -(1,14803:6630773,4812305:25952256,485622,11795 -g1,14803:3078558,4812305 -[1,14803:3078558,4812305:0,0,0 -(1,14803:3078558,2439708:0,1703936,0 -k1,14803:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,14803:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,14803:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,14803:3078558,4812305:0,0,0 -(1,14803:3078558,2439708:0,1703936,0 -g1,14803:29030814,2439708 -g1,14803:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,14803:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,14803:37855564,2439708:1179648,16384,0 -) -) -k1,14803:3078556,2439708:-34777008 -) -] -[1,14803:3078558,4812305:0,0,0 -(1,14803:3078558,49800853:0,16384,2228224 -k1,14803:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,14803:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,14803:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,14803:3078558,4812305:0,0,0 -(1,14803:3078558,49800853:0,16384,2228224 -g1,14803:29030814,49800853 -g1,14803:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,14803:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,14803:37855564,49800853:1179648,16384,0 -) -) -k1,14803:3078556,49800853:-34777008 -) -] -g1,14803:6630773,4812305 -g1,14803:6630773,4812305 -g1,14803:9560887,4812305 -k1,14803:31387651,4812305:21826764 -) -) -] -[1,14803:6630773,45706769:25952256,40108032,0 -(1,14803:6630773,45706769:25952256,40108032,0 -(1,14803:6630773,45706769:0,0,0 -g1,14803:6630773,45706769 -) -[1,14803:6630773,45706769:25952256,40108032,0 -v1,14749:6630773,6254097:0,393216,0 -(1,14749:6630773,8561436:25952256,2700555,196608 -g1,14749:6630773,8561436 -g1,14749:6630773,8561436 -g1,14749:6434165,8561436 -(1,14749:6434165,8561436:0,2700555,196608 -r1,14803:32779637,8561436:26345472,2897163,196608 -k1,14749:6434165,8561436:-26345472 -) -(1,14749:6434165,8561436:26345472,2700555,196608 -[1,14749:6630773,8561436:25952256,2503947,0 -(1,14744:6630773,6461715:25952256,404226,107478 -(1,14743:6630773,6461715:0,0,0 -g1,14743:6630773,6461715 -g1,14743:6630773,6461715 -g1,14743:6303093,6461715 -(1,14743:6303093,6461715:0,0,0 -) -g1,14743:6630773,6461715 -) -k1,14744:6630773,6461715:0 -g1,14744:11689104,6461715 -g1,14744:13902124,6461715 -g1,14744:14850562,6461715 -g1,14744:16747436,6461715 -g1,14744:17379728,6461715 -g1,14744:19908894,6461715 -h1,14744:20225040,6461715:0,0,0 -k1,14744:32583029,6461715:12357989 -g1,14744:32583029,6461715 -) -(1,14745:6630773,7127893:25952256,404226,107478 -h1,14745:6630773,7127893:0,0,0 -g1,14745:6946919,7127893 -g1,14745:7263065,7127893 -g1,14745:11372959,7127893 -h1,14745:11689105,7127893:0,0,0 -k1,14745:32583029,7127893:20893924 -g1,14745:32583029,7127893 -) -(1,14746:6630773,7794071:25952256,404226,107478 -h1,14746:6630773,7794071:0,0,0 -g1,14746:6946919,7794071 -g1,14746:7263065,7794071 -g1,14746:10740667,7794071 -h1,14746:11056813,7794071:0,0,0 -k1,14746:32583029,7794071:21526216 -g1,14746:32583029,7794071 -) -(1,14747:6630773,8460249:25952256,404226,101187 -h1,14747:6630773,8460249:0,0,0 -g1,14747:6946919,8460249 -g1,14747:7263065,8460249 -k1,14747:7263065,8460249:0 -h1,14747:12637541,8460249:0,0,0 -k1,14747:32583029,8460249:19945488 -g1,14747:32583029,8460249 -) -] -) -g1,14749:32583029,8561436 -g1,14749:6630773,8561436 -g1,14749:6630773,8561436 -g1,14749:32583029,8561436 -g1,14749:32583029,8561436 -) -h1,14749:6630773,8758044:0,0,0 -(1,14752:6630773,18431534:25952256,9083666,0 -k1,14752:10523651,18431534:3892878 -h1,14751:10523651,18431534:0,0,0 -(1,14751:10523651,18431534:18166500,9083666,0 -(1,14751:10523651,18431534:18167376,9083688,0 -(1,14751:10523651,18431534:18167376,9083688,0 -(1,14751:10523651,18431534:0,9083688,0 -(1,14751:10523651,18431534:0,14208860,0 -(1,14751:10523651,18431534:28417720,14208860,0 -) -k1,14751:10523651,18431534:-28417720 -) -) -g1,14751:28691027,18431534 -) -) -) -g1,14752:28690151,18431534 -k1,14752:32583029,18431534:3892878 -) -(1,14759:6630773,19273022:25952256,505283,126483 -h1,14758:6630773,19273022:983040,0,0 -k1,14758:8464552,19273022:222904 -k1,14758:9890696,19273022:222903 -k1,14758:11654351,19273022:222904 -(1,14758:11654351,19273022:0,452978,122846 -r1,14803:17640006,19273022:5985655,575824,122846 -k1,14758:11654351,19273022:-5985655 -) -(1,14758:11654351,19273022:5985655,452978,122846 -k1,14758:11654351,19273022:3277 -h1,14758:17636729,19273022:0,411205,112570 -) -k1,14758:17862910,19273022:222904 -k1,14758:18617310,19273022:222903 -k1,14758:22318865,19273022:222904 -k1,14758:23733214,19273022:222904 -k1,14758:24824470,19273022:222904 -k1,14758:26151655,19273022:222903 -k1,14758:28672907,19273022:222904 -k1,14758:29353908,19273022:222904 -k1,14758:30192849,19273022:222903 -k1,14758:31434838,19273022:222904 -k1,14758:32583029,19273022:0 -) -(1,14759:6630773,20114510:25952256,505283,7863 -g1,14758:7998509,20114510 -g1,14758:8813776,20114510 -g1,14758:10032090,20114510 -g1,14758:12201987,20114510 -k1,14759:32583030,20114510:18352048 -g1,14759:32583030,20114510 -) -v1,14761:6630773,21304976:0,393216,0 -(1,14765:6630773,21620072:25952256,708312,196608 -g1,14765:6630773,21620072 -g1,14765:6630773,21620072 -g1,14765:6434165,21620072 -(1,14765:6434165,21620072:0,708312,196608 -r1,14803:32779637,21620072:26345472,904920,196608 -k1,14765:6434165,21620072:-26345472 -) -(1,14765:6434165,21620072:26345472,708312,196608 -[1,14765:6630773,21620072:25952256,511704,0 -(1,14763:6630773,21512594:25952256,404226,107478 -(1,14762:6630773,21512594:0,0,0 -g1,14762:6630773,21512594 -g1,14762:6630773,21512594 -g1,14762:6303093,21512594 -(1,14762:6303093,21512594:0,0,0 -) -g1,14762:6630773,21512594 -) -g1,14763:6946919,21512594 -g1,14763:7263065,21512594 -k1,14763:7263065,21512594:0 -h1,14763:12637541,21512594:0,0,0 -k1,14763:32583029,21512594:19945488 -g1,14763:32583029,21512594 -) -] -) -g1,14765:32583029,21620072 -g1,14765:6630773,21620072 -g1,14765:6630773,21620072 -g1,14765:32583029,21620072 -g1,14765:32583029,21620072 -) -h1,14765:6630773,21816680:0,0,0 -(1,14769:6630773,23182456:25952256,505283,134348 -h1,14768:6630773,23182456:983040,0,0 -k1,14768:8435728,23182456:194080 -k1,14768:9648893,23182456:194080 -k1,14768:11227093,23182456:194080 -k1,14768:14082591,23182456:194081 -k1,14768:15145023,23182456:194080 -k1,14768:16616400,23182456:194080 -k1,14768:17829565,23182456:194080 -k1,14768:20246626,23182456:194080 -k1,14768:21056744,23182456:194080 -k1,14768:23953529,23182456:194080 -k1,14768:26395495,23182456:194081 -k1,14768:27781020,23182456:194080 -k1,14768:29067585,23182456:194080 -k1,14768:29617525,23182456:194080 -k1,14769:32583029,23182456:0 -) -(1,14769:6630773,24023944:25952256,505283,134348 -k1,14768:10394403,24023944:246968 -k1,14768:11660457,24023944:246969 -(1,14768:11660457,24023944:0,459977,115847 -r1,14803:13073858,24023944:1413401,575824,115847 -k1,14768:11660457,24023944:-1413401 -) -(1,14768:11660457,24023944:1413401,459977,115847 -k1,14768:11660457,24023944:3277 -h1,14768:13070581,24023944:0,411205,112570 -) -k1,14768:13320826,24023944:246968 -k1,14768:16355041,24023944:246969 -k1,14768:17793454,24023944:246968 -k1,14768:18908774,24023944:246968 -k1,14768:20552315,24023944:246969 -k1,14768:21450711,24023944:246968 -k1,14768:22155776,24023944:246968 -k1,14768:23421830,24023944:246969 -k1,14768:26180138,24023944:246968 -(1,14768:26180138,24023944:0,452978,115847 -r1,14803:27945251,24023944:1765113,568825,115847 -k1,14768:26180138,24023944:-1765113 -) -(1,14768:26180138,24023944:1765113,452978,115847 -k1,14768:26180138,24023944:3277 -h1,14768:27941974,24023944:0,411205,112570 -) -k1,14768:28365890,24023944:246969 -k1,14768:31821501,24023944:246968 -k1,14769:32583029,24023944:0 -) -(1,14769:6630773,24865432:25952256,452978,115847 -(1,14768:6630773,24865432:0,452978,115847 -r1,14803:12616428,24865432:5985655,568825,115847 -k1,14768:6630773,24865432:-5985655 -) -(1,14768:6630773,24865432:5985655,452978,115847 -k1,14768:6630773,24865432:3277 -h1,14768:12613151,24865432:0,411205,112570 -) -k1,14769:32583028,24865432:19966600 -g1,14769:32583028,24865432 -) -v1,14773:6630773,26055898:0,393216,0 -(1,14779:6630773,27703350:25952256,2040668,196608 -g1,14779:6630773,27703350 -g1,14779:6630773,27703350 -g1,14779:6434165,27703350 -(1,14779:6434165,27703350:0,2040668,196608 -r1,14803:32779637,27703350:26345472,2237276,196608 -k1,14779:6434165,27703350:-26345472 -) -(1,14779:6434165,27703350:26345472,2040668,196608 -[1,14779:6630773,27703350:25952256,1844060,0 -(1,14775:6630773,26263516:25952256,404226,107478 -(1,14774:6630773,26263516:0,0,0 -g1,14774:6630773,26263516 -g1,14774:6630773,26263516 -g1,14774:6303093,26263516 -(1,14774:6303093,26263516:0,0,0 -) -g1,14774:6630773,26263516 -) -k1,14775:6630773,26263516:0 -g1,14775:11689104,26263516 -g1,14775:13902124,26263516 -g1,14775:15166707,26263516 -h1,14775:15482853,26263516:0,0,0 -k1,14775:32583029,26263516:17100176 -g1,14775:32583029,26263516 -) -(1,14776:6630773,26929694:25952256,410518,107478 -h1,14776:6630773,26929694:0,0,0 -g1,14776:14534416,26929694 -g1,14776:15166708,26929694 -g1,14776:19592748,26929694 -g1,14776:21173477,26929694 -g1,14776:21805769,26929694 -g1,14776:25283372,26929694 -h1,14776:25599518,26929694:0,0,0 -k1,14776:32583029,26929694:6983511 -g1,14776:32583029,26929694 -) -(1,14777:6630773,27595872:25952256,410518,107478 -h1,14777:6630773,27595872:0,0,0 -g1,14777:6946919,27595872 -g1,14777:7263065,27595872 -k1,14777:7263065,27595872:0 -h1,14777:12953688,27595872:0,0,0 -k1,14777:32583028,27595872:19629340 -g1,14777:32583028,27595872 -) -] -) -g1,14779:32583029,27703350 -g1,14779:6630773,27703350 -g1,14779:6630773,27703350 -g1,14779:32583029,27703350 -g1,14779:32583029,27703350 -) -h1,14779:6630773,27899958:0,0,0 -(1,14782:6630773,37573448:25952256,9083666,0 -k1,14782:10523651,37573448:3892878 -h1,14781:10523651,37573448:0,0,0 -(1,14781:10523651,37573448:18166500,9083666,0 -(1,14781:10523651,37573448:18167376,9083688,0 -(1,14781:10523651,37573448:18167376,9083688,0 -(1,14781:10523651,37573448:0,9083688,0 -(1,14781:10523651,37573448:0,14208860,0 -(1,14781:10523651,37573448:28417720,14208860,0 -) -k1,14781:10523651,37573448:-28417720 -) -) -g1,14781:28691027,37573448 -) -) -) -g1,14782:28690151,37573448 -k1,14782:32583029,37573448:3892878 -) -(1,14791:6630773,39664708:25952256,555811,139132 -(1,14791:6630773,39664708:2450326,534184,12975 -g1,14791:6630773,39664708 -g1,14791:9081099,39664708 -) -g1,14791:10649769,39664708 -g1,14791:12216997,39664708 -g1,14791:15747225,39664708 -k1,14791:32583029,39664708:15028518 -g1,14791:32583029,39664708 -) -(1,14796:6630773,40899412:25952256,513147,134348 -k1,14795:8032286,40899412:242836 -k1,14795:9466567,40899412:242836 -k1,14795:12535315,40899412:242836 -k1,14795:14559420,40899412:242836 -k1,14795:16088072,40899412:242836 -k1,14795:17684882,40899412:242836 -k1,14795:21232698,40899412:242835 -k1,14795:23343310,40899412:242836 -k1,14795:24814946,40899412:242836 -k1,14795:26217769,40899412:242836 -k1,14795:28241874,40899412:242836 -k1,14795:29476270,40899412:242836 -k1,14795:31004922,40899412:242836 -k1,14796:32583029,40899412:0 -) -(1,14796:6630773,41740900:25952256,513147,126483 -k1,14795:9015573,41740900:241773 -k1,14795:10541852,41740900:241773 -k1,14795:12992188,41740900:241773 -k1,14795:14926101,41740900:241773 -k1,14795:15827166,41740900:241773 -k1,14795:17088025,41740900:241774 -k1,14795:20625604,41740900:241773 -k1,14795:21526669,41740900:241773 -k1,14795:22124302,41740900:241773 -k1,14795:26321173,41740900:241773 -k1,14795:28120737,41740900:241773 -k1,14795:29354070,41740900:241773 -k1,14795:32583029,41740900:0 -) -(1,14796:6630773,42582388:25952256,513147,134348 -k1,14795:7974343,42582388:152125 -k1,14795:10428749,42582388:152126 -k1,14795:11342402,42582388:152125 -k1,14795:13562843,42582388:152125 -k1,14795:14382124,42582388:152125 -(1,14795:14382124,42582388:0,452978,115847 -r1,14803:19312644,42582388:4930520,568825,115847 -k1,14795:14382124,42582388:-4930520 -) -(1,14795:14382124,42582388:4930520,452978,115847 -k1,14795:14382124,42582388:3277 -h1,14795:19309367,42582388:0,411205,112570 -) -k1,14795:19464770,42582388:152126 -k1,14795:20299780,42582388:152125 -k1,14795:21240303,42582388:152125 -k1,14795:24363831,42582388:152126 -(1,14795:24363831,42582388:0,452978,122846 -r1,14803:29294351,42582388:4930520,575824,122846 -k1,14795:24363831,42582388:-4930520 -) -(1,14795:24363831,42582388:4930520,452978,122846 -k1,14795:24363831,42582388:3277 -h1,14795:29291074,42582388:0,411205,112570 -) -k1,14795:29620146,42582388:152125 -k1,14795:32583029,42582388:0 -) -(1,14796:6630773,43423876:25952256,513147,134348 -k1,14795:8220395,43423876:209434 -k1,14795:9534111,43423876:209434 -k1,14795:10491311,43423876:209434 -k1,14795:13929705,43423876:209435 -k1,14795:15330584,43423876:209434 -k1,14795:17842298,43423876:209434 -k1,14795:19906401,43423876:209434 -k1,14795:20925205,43423876:209434 -k1,14795:22363439,43423876:209434 -k1,14795:22928733,43423876:209434 -k1,14795:24271286,43423876:209435 -k1,14795:28726142,43423876:209434 -k1,14795:30315764,43423876:209434 -k1,14795:31516758,43423876:209434 -k1,14795:32583029,43423876:0 -) -(1,14796:6630773,44265364:25952256,513147,126483 -g1,14795:8807223,44265364 -g1,14795:11049209,44265364 -g1,14795:12700060,44265364 -g1,14795:14059276,44265364 -g1,14795:15535802,44265364 -g1,14795:16266528,44265364 -g1,14795:18320426,44265364 -g1,14795:19329025,44265364 -g1,14795:21178451,44265364 -g1,14795:22820127,44265364 -g1,14795:23816274,44265364 -g1,14795:24666931,44265364 -g1,14795:25663078,44265364 -k1,14796:32583029,44265364:2674529 -g1,14796:32583029,44265364 -) -v1,14798:6630773,45455830:0,393216,0 -] -(1,14803:32583029,45706769:0,0,0 -g1,14803:32583029,45706769 -) -) -] -(1,14803:6630773,47279633:25952256,0,0 -h1,14803:6630773,47279633:25952256,0,0 -) -] -(1,14803:4262630,4025873:0,0,0 -[1,14803:-473656,4025873:0,0,0 -(1,14803:-473656,-710413:0,0,0 -(1,14803:-473656,-710413:0,0,0 -g1,14803:-473656,-710413 -) -g1,14803:-473656,-710413 -) -] -) -] -!15176 -}284 -Input:2299:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2300:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2301:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2302:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2303:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2304:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2305:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2306:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2307:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2308:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2309:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2310:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2311:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1208 -{285 -[1,14838:4262630,47279633:28320399,43253760,0 -(1,14838:4262630,4025873:0,0,0 -[1,14838:-473656,4025873:0,0,0 -(1,14838:-473656,-710413:0,0,0 -(1,14838:-473656,-644877:0,0,0 -k1,14838:-473656,-644877:-65536 -) -(1,14838:-473656,4736287:0,0,0 -k1,14838:-473656,4736287:5209943 -) -g1,14838:-473656,-710413 -) -] -) -[1,14838:6630773,47279633:25952256,43253760,0 -[1,14838:6630773,4812305:25952256,786432,0 -(1,14838:6630773,4812305:25952256,513147,134348 -(1,14838:6630773,4812305:25952256,513147,134348 -g1,14838:3078558,4812305 -[1,14838:3078558,4812305:0,0,0 -(1,14838:3078558,2439708:0,1703936,0 -k1,14838:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,14838:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,14838:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,14838:3078558,4812305:0,0,0 -(1,14838:3078558,2439708:0,1703936,0 -g1,14838:29030814,2439708 -g1,14838:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,14838:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,14838:37855564,2439708:1179648,16384,0 -) -) -k1,14838:3078556,2439708:-34777008 -) -] -[1,14838:3078558,4812305:0,0,0 -(1,14838:3078558,49800853:0,16384,2228224 -k1,14838:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,14838:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,14838:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,14838:3078558,4812305:0,0,0 -(1,14838:3078558,49800853:0,16384,2228224 -g1,14838:29030814,49800853 -g1,14838:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,14838:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,14838:37855564,49800853:1179648,16384,0 -) -) -k1,14838:3078556,49800853:-34777008 -) -] -g1,14838:6630773,4812305 -k1,14838:25712890,4812305:17886740 -g1,14838:29057847,4812305 -g1,14838:29873114,4812305 -) -) -] -[1,14838:6630773,45706769:25952256,40108032,0 -(1,14838:6630773,45706769:25952256,40108032,0 -(1,14838:6630773,45706769:0,0,0 -g1,14838:6630773,45706769 -) -[1,14838:6630773,45706769:25952256,40108032,0 -v1,14803:6630773,6254097:0,393216,0 -(1,14803:6630773,7229080:25952256,1368199,196608 -g1,14803:6630773,7229080 -g1,14803:6630773,7229080 -g1,14803:6434165,7229080 -(1,14803:6434165,7229080:0,1368199,196608 -r1,14838:32779637,7229080:26345472,1564807,196608 -k1,14803:6434165,7229080:-26345472 -) -(1,14803:6434165,7229080:26345472,1368199,196608 -[1,14803:6630773,7229080:25952256,1171591,0 -(1,14800:6630773,6461715:25952256,404226,107478 -(1,14799:6630773,6461715:0,0,0 -g1,14799:6630773,6461715 -g1,14799:6630773,6461715 -g1,14799:6303093,6461715 -(1,14799:6303093,6461715:0,0,0 -) -g1,14799:6630773,6461715 -) -k1,14800:6630773,6461715:0 -g1,14800:11689104,6461715 -g1,14800:15166707,6461715 -g1,14800:16431290,6461715 -h1,14800:16747436,6461715:0,0,0 -k1,14800:32583029,6461715:15835593 -g1,14800:32583029,6461715 -) -(1,14801:6630773,7127893:25952256,404226,101187 -h1,14801:6630773,7127893:0,0,0 -g1,14801:6946919,7127893 -g1,14801:7263065,7127893 -k1,14801:7263065,7127893:0 -h1,14801:11689104,7127893:0,0,0 -k1,14801:32583028,7127893:20893924 -g1,14801:32583028,7127893 -) -] -) -g1,14803:32583029,7229080 -g1,14803:6630773,7229080 -g1,14803:6630773,7229080 -g1,14803:32583029,7229080 -g1,14803:32583029,7229080 -) -h1,14803:6630773,7425688:0,0,0 -(1,14806:6630773,18402134:25952256,10510489,0 -k1,14806:12599879,18402134:5969106 -h1,14805:12599879,18402134:0,0,0 -(1,14805:12599879,18402134:14014044,10510489,0 -(1,14805:12599879,18402134:14014019,10510515,0 -(1,14805:12599879,18402134:14014019,10510515,0 -(1,14805:12599879,18402134:0,10510515,0 -(1,14805:12599879,18402134:0,14208860,0 -(1,14805:12599879,18402134:18945146,14208860,0 -) -k1,14805:12599879,18402134:-18945146 -) -) -g1,14805:26613898,18402134 -) -) -) -g1,14806:26613923,18402134 -k1,14806:32583029,18402134:5969106 -) -(1,14813:6630773,19243622:25952256,505283,126483 -h1,14812:6630773,19243622:983040,0,0 -k1,14812:8830816,19243622:399114 -k1,14812:10623881,19243622:399114 -k1,14812:12724966,19243622:399115 -k1,14812:15957201,19243622:399114 -k1,14812:17864954,19243622:399114 -k1,14812:21904593,19243622:399114 -k1,14812:24137404,19243622:399114 -k1,14812:26003215,19243622:399115 -k1,14812:27421414,19243622:399114 -k1,14812:29541503,19243622:399114 -k1,14813:32583029,19243622:0 -) -(1,14813:6630773,20085110:25952256,513147,126483 -k1,14812:8490784,20085110:366445 -k1,14812:9543390,20085110:366444 -(1,14812:9543390,20085110:0,452978,115847 -r1,14838:11308503,20085110:1765113,568825,115847 -k1,14812:9543390,20085110:-1765113 -) -(1,14812:9543390,20085110:1765113,452978,115847 -k1,14812:9543390,20085110:3277 -h1,14812:11305226,20085110:0,411205,112570 -) -k1,14812:11848618,20085110:366445 -k1,14812:13406507,20085110:366444 -k1,14812:17383986,20085110:366445 -k1,14812:20147737,20085110:366444 -k1,14812:21165610,20085110:366445 -k1,14812:22735295,20085110:366444 -k1,14812:24487826,20085110:366445 -k1,14812:25513563,20085110:366445 -k1,14812:27744506,20085110:366444 -k1,14813:32583029,20085110:0 -) -(1,14813:6630773,20926598:25952256,505283,115847 -(1,14812:6630773,20926598:0,452978,115847 -r1,14838:11209581,20926598:4578808,568825,115847 -k1,14812:6630773,20926598:-4578808 -) -(1,14812:6630773,20926598:4578808,452978,115847 -k1,14812:6630773,20926598:3277 -h1,14812:11206304,20926598:0,411205,112570 -) -k1,14812:11688012,20926598:304761 -(1,14812:11688012,20926598:0,459977,115847 -r1,14838:15915108,20926598:4227096,575824,115847 -k1,14812:11688012,20926598:-4227096 -) -(1,14812:11688012,20926598:4227096,459977,115847 -k1,14812:11688012,20926598:3277 -h1,14812:15911831,20926598:0,411205,112570 -) -k1,14812:16393538,20926598:304760 -(1,14812:16393538,20926598:0,452978,115847 -r1,14838:20972346,20926598:4578808,568825,115847 -k1,14812:16393538,20926598:-4578808 -) -(1,14812:16393538,20926598:4578808,452978,115847 -k1,14812:16393538,20926598:3277 -h1,14812:20969069,20926598:0,411205,112570 -) -k1,14812:21450777,20926598:304761 -(1,14812:21450777,20926598:0,452978,115847 -r1,14838:25677873,20926598:4227096,568825,115847 -k1,14812:21450777,20926598:-4227096 -) -(1,14812:21450777,20926598:4227096,452978,115847 -k1,14812:21450777,20926598:3277 -h1,14812:25674596,20926598:0,411205,112570 -) -k1,14812:26156303,20926598:304760 -(1,14812:26156303,20926598:0,452978,115847 -r1,14838:31086823,20926598:4930520,568825,115847 -k1,14812:26156303,20926598:-4930520 -) -(1,14812:26156303,20926598:4930520,452978,115847 -k1,14812:26156303,20926598:3277 -h1,14812:31083546,20926598:0,411205,112570 -) -k1,14812:31391584,20926598:304761 -k1,14813:32583029,20926598:0 -) -(1,14813:6630773,21768086:25952256,513147,126483 -(1,14812:6630773,21768086:0,452978,115847 -r1,14838:11209581,21768086:4578808,568825,115847 -k1,14812:6630773,21768086:-4578808 -) -(1,14812:6630773,21768086:4578808,452978,115847 -k1,14812:6630773,21768086:3277 -h1,14812:11206304,21768086:0,411205,112570 -) -k1,14812:11809610,21768086:426359 -k1,14812:14121440,21768086:426359 -k1,14812:16327101,21768086:426359 -k1,14812:17772545,21768086:426359 -k1,14812:20637499,21768086:426359 -k1,14812:21679896,21768086:426359 -k1,14812:22462114,21768086:426358 -k1,14812:24126448,21768086:426359 -k1,14812:26754817,21768086:426359 -k1,14812:27832604,21768086:426359 -k1,14812:29278048,21768086:426359 -k1,14813:32583029,21768086:0 -) -(1,14813:6630773,22609574:25952256,513147,134348 -(1,14812:6630773,22609574:0,452978,115847 -r1,14838:9802733,22609574:3171960,568825,115847 -k1,14812:6630773,22609574:-3171960 -) -(1,14812:6630773,22609574:3171960,452978,115847 -k1,14812:6630773,22609574:3277 -h1,14812:9799456,22609574:0,411205,112570 -) -k1,14812:9974535,22609574:171802 -k1,14812:10762375,22609574:171802 -(1,14812:10762375,22609574:0,452978,122846 -r1,14838:14989471,22609574:4227096,575824,122846 -k1,14812:10762375,22609574:-4227096 -) -(1,14812:10762375,22609574:4227096,452978,122846 -k1,14812:10762375,22609574:3277 -h1,14812:14986194,22609574:0,411205,112570 -) -k1,14812:15334943,22609574:171802 -k1,14812:16703431,22609574:171801 -k1,14812:18744320,22609574:171802 -k1,14812:20107567,22609574:171802 -k1,14812:22094061,22609574:171802 -k1,14812:22925155,22609574:171802 -k1,14812:24116042,22609574:171802 -k1,14812:26048140,22609574:171801 -k1,14812:27324224,22609574:171802 -k1,14812:28243792,22609574:171802 -k1,14812:31189078,22609574:171802 -k1,14813:32583029,22609574:0 -) -(1,14813:6630773,23451062:25952256,513147,126483 -(1,14812:6630773,23451062:0,452978,115847 -r1,14838:8395886,23451062:1765113,568825,115847 -k1,14812:6630773,23451062:-1765113 -) -(1,14812:6630773,23451062:1765113,452978,115847 -k1,14812:6630773,23451062:3277 -h1,14812:8392609,23451062:0,411205,112570 -) -k1,14812:8750566,23451062:181010 -(1,14812:8750566,23451062:0,452978,115847 -r1,14838:12274238,23451062:3523672,568825,115847 -k1,14812:8750566,23451062:-3523672 -) -(1,14812:8750566,23451062:3523672,452978,115847 -k1,14812:8750566,23451062:3277 -h1,14812:12270961,23451062:0,411205,112570 -) -k1,14812:12455248,23451062:181010 -k1,14812:13827703,23451062:181010 -(1,14812:13827703,23451062:0,452978,115847 -r1,14838:16647952,23451062:2820249,568825,115847 -k1,14812:13827703,23451062:-2820249 -) -(1,14812:13827703,23451062:2820249,452978,115847 -k1,14812:13827703,23451062:3277 -h1,14812:16644675,23451062:0,411205,112570 -) -k1,14812:17002633,23451062:181011 -k1,14812:19753310,23451062:181010 -k1,14812:20550358,23451062:181010 -k1,14812:21087228,23451062:181010 -k1,14812:23705522,23451062:181010 -k1,14812:25557045,23451062:181010 -k1,14812:26093916,23451062:181011 -k1,14812:28476936,23451062:181010 -k1,14812:29893300,23451062:181010 -k1,14812:31021961,23451062:181010 -k1,14813:32583029,23451062:0 -) -(1,14813:6630773,24292550:25952256,513147,134348 -g1,14812:8885211,24292550 -g1,14812:11774693,24292550 -g1,14812:12660084,24292550 -g1,14812:16296676,24292550 -g1,14812:18310597,24292550 -g1,14812:20180339,24292550 -g1,14812:22077606,24292550 -g1,14812:25680120,24292550 -k1,14813:32583029,24292550:4660922 -g1,14813:32583029,24292550 -) -v1,14815:6630773,25359150:0,393216,0 -(1,14821:6630773,27000311:25952256,2034377,196608 -g1,14821:6630773,27000311 -g1,14821:6630773,27000311 -g1,14821:6434165,27000311 -(1,14821:6434165,27000311:0,2034377,196608 -r1,14838:32779637,27000311:26345472,2230985,196608 -k1,14821:6434165,27000311:-26345472 -) -(1,14821:6434165,27000311:26345472,2034377,196608 -[1,14821:6630773,27000311:25952256,1837769,0 -(1,14817:6630773,25566768:25952256,404226,107478 -(1,14816:6630773,25566768:0,0,0 -g1,14816:6630773,25566768 -g1,14816:6630773,25566768 -g1,14816:6303093,25566768 -(1,14816:6303093,25566768:0,0,0 -) -g1,14816:6630773,25566768 -) -k1,14817:6630773,25566768:0 -g1,14817:11689104,25566768 -g1,14817:15166707,25566768 -g1,14817:16431290,25566768 -h1,14817:16747436,25566768:0,0,0 -k1,14817:32583029,25566768:15835593 -g1,14817:32583029,25566768 -) -(1,14818:6630773,26232946:25952256,404226,101187 -h1,14818:6630773,26232946:0,0,0 -g1,14818:6946919,26232946 -g1,14818:7263065,26232946 -g1,14818:13269833,26232946 -g1,14818:13902125,26232946 -g1,14818:15799000,26232946 -g1,14818:17695874,26232946 -g1,14818:18328166,26232946 -k1,14818:18328166,26232946:0 -h1,14818:19592749,26232946:0,0,0 -k1,14818:32583029,26232946:12990280 -g1,14818:32583029,26232946 -) -(1,14819:6630773,26899124:25952256,404226,101187 -h1,14819:6630773,26899124:0,0,0 -g1,14819:6946919,26899124 -g1,14819:7263065,26899124 -g1,14819:7579211,26899124 -g1,14819:7895357,26899124 -g1,14819:8211503,26899124 -g1,14819:8527649,26899124 -g1,14819:8843795,26899124 -g1,14819:9159941,26899124 -g1,14819:9476087,26899124 -g1,14819:9792233,26899124 -g1,14819:10108379,26899124 -g1,14819:10424525,26899124 -g1,14819:10740671,26899124 -g1,14819:11056817,26899124 -g1,14819:11372963,26899124 -g1,14819:15799003,26899124 -g1,14819:16431295,26899124 -g1,14819:18644315,26899124 -g1,14819:23070355,26899124 -g1,14819:23702647,26899124 -g1,14819:25283376,26899124 -g1,14819:29393270,26899124 -g1,14819:30025562,26899124 -h1,14819:30657854,26899124:0,0,0 -k1,14819:32583029,26899124:1925175 -g1,14819:32583029,26899124 -) -] -) -g1,14821:32583029,27000311 -g1,14821:6630773,27000311 -g1,14821:6630773,27000311 -g1,14821:32583029,27000311 -g1,14821:32583029,27000311 -) -h1,14821:6630773,27196919:0,0,0 -(1,14824:6630773,38173365:25952256,10510489,0 -k1,14824:12599879,38173365:5969106 -h1,14823:12599879,38173365:0,0,0 -(1,14823:12599879,38173365:14014044,10510489,0 -(1,14823:12599879,38173365:14014019,10510515,0 -(1,14823:12599879,38173365:14014019,10510515,0 -(1,14823:12599879,38173365:0,10510515,0 -(1,14823:12599879,38173365:0,14208860,0 -(1,14823:12599879,38173365:18945146,14208860,0 -) -k1,14823:12599879,38173365:-18945146 -) -) -g1,14823:26613898,38173365 -) -) -) -g1,14824:26613923,38173365 -k1,14824:32583029,38173365:5969106 -) -(1,14832:6630773,40264625:25952256,555811,139132 -(1,14832:6630773,40264625:2450326,521208,12975 -g1,14832:6630773,40264625 -g1,14832:9081099,40264625 -) -g1,14832:11467986,40264625 -k1,14832:32583028,40264625:19307756 -g1,14832:32583028,40264625 -) -(1,14836:6630773,41499329:25952256,505283,126483 -k1,14835:8757668,41499329:251910 -k1,14835:10617176,41499329:251910 -k1,14835:11860647,41499329:251911 -k1,14835:12468417,41499329:251910 -k1,14835:14370524,41499329:251910 -k1,14835:16610796,41499329:251910 -k1,14835:20994752,41499329:251911 -k1,14835:22689109,41499329:251910 -k1,14835:24101006,41499329:251910 -k1,14835:26134185,41499329:251910 -k1,14835:27577541,41499329:251911 -k1,14835:29883349,41499329:251910 -k1,14835:31529210,41499329:251910 -k1,14836:32583029,41499329:0 -) -(1,14836:6630773,42340817:25952256,513147,134348 -k1,14835:8966627,42340817:251154 -k1,14835:10788679,42340817:251154 -k1,14835:13855915,42340817:251154 -k1,14835:14766361,42340817:251154 -k1,14835:19262937,42340817:251154 -k1,14835:21071882,42340817:251154 -k1,14835:23091854,42340817:251155 -k1,14835:24090774,42340817:251154 -k1,14835:26868996,42340817:251154 -k1,14835:27779442,42340817:251154 -k1,14835:28716758,42340817:251154 -k1,14835:30705927,42340817:251154 -k1,14835:31312941,42340817:251154 -k1,14835:32583029,42340817:0 -) -(1,14836:6630773,43182305:25952256,513147,134348 -k1,14835:7543034,43182305:252969 -k1,14835:9882669,43182305:252969 -k1,14835:12770841,43182305:252969 -k1,14835:13794512,43182305:252968 -k1,14835:17020849,43182305:252969 -k1,14835:19606244,43182305:252969 -k1,14835:22554709,43182305:252969 -k1,14835:24039755,43182305:252969 -k1,14835:26571411,43182305:252969 -h1,14835:28114129,43182305:0,0,0 -k1,14835:28367097,43182305:252968 -k1,14835:29429436,43182305:252969 -k1,14835:31180558,43182305:252969 -h1,14835:32375935,43182305:0,0,0 -k1,14835:32583029,43182305:0 -) -(1,14836:6630773,44023793:25952256,505283,134348 -k1,14835:8032781,44023793:210563 -k1,14835:8599204,44023793:210563 -k1,14835:9969755,44023793:210564 -k1,14835:11457615,44023793:210563 -k1,14835:12900255,44023793:210563 -k1,14835:15389505,44023793:210563 -h1,14835:16932223,44023793:0,0,0 -k1,14835:17142786,44023793:210563 -k1,14835:18162719,44023793:210563 -k1,14835:19871436,44023793:210564 -h1,14835:21066813,44023793:0,0,0 -k1,14835:21658140,44023793:210563 -k1,14835:22686592,44023793:210563 -k1,14835:23428652,44023793:210563 -k1,14835:24658300,44023793:210563 -k1,14835:26235944,44023793:210563 -k1,14835:27840459,44023793:210564 -k1,14835:29211009,44023793:210563 -k1,14835:31202841,44023793:210563 -k1,14835:32583029,44023793:0 -) -(1,14836:6630773,44865281:25952256,513147,134348 -k1,14835:7813698,44865281:191365 -k1,14835:11692118,44865281:191365 -k1,14835:13860704,44865281:191365 -k1,14835:15750107,44865281:191365 -k1,14835:19344757,44865281:191365 -k1,14835:23647851,44865281:191365 -k1,14835:24498508,44865281:191365 -k1,14835:26911544,44865281:191365 -k1,14835:28665943,44865281:191365 -k1,14835:30156887,44865281:191365 -k1,14835:31109780,44865281:191365 -k1,14835:32583029,44865281:0 -) -(1,14836:6630773,45706769:25952256,505283,126483 -g1,14835:8387793,45706769 -g1,14835:9691304,45706769 -g1,14835:10638299,45706769 -g1,14835:13187649,45706769 -g1,14835:14780829,45706769 -(1,14835:14780829,45706769:0,452978,122846 -r1,14838:19359637,45706769:4578808,575824,122846 -k1,14835:14780829,45706769:-4578808 -) -(1,14835:14780829,45706769:4578808,452978,122846 -k1,14835:14780829,45706769:3277 -h1,14835:19356360,45706769:0,411205,112570 -) -g1,14835:19558866,45706769 -g1,14835:20444257,45706769 -g1,14835:22719011,45706769 -g1,14835:23534278,45706769 -g1,14835:24752592,45706769 -g1,14835:27943540,45706769 -k1,14836:32583029,45706769:2597387 -g1,14836:32583029,45706769 -) -] -(1,14838:32583029,45706769:0,0,0 -g1,14838:32583029,45706769 -) -) -] -(1,14838:6630773,47279633:25952256,0,0 -h1,14838:6630773,47279633:25952256,0,0 -) -] -(1,14838:4262630,4025873:0,0,0 -[1,14838:-473656,4025873:0,0,0 -(1,14838:-473656,-710413:0,0,0 -(1,14838:-473656,-710413:0,0,0 -g1,14838:-473656,-710413 -) -g1,14838:-473656,-710413 -) -] -) -] -!17631 -}285 -Input:2312:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2313:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2314:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!288 -{286 -[1,14893:4262630,47279633:28320399,43253760,0 -(1,14893:4262630,4025873:0,0,0 -[1,14893:-473656,4025873:0,0,0 -(1,14893:-473656,-710413:0,0,0 -(1,14893:-473656,-644877:0,0,0 -k1,14893:-473656,-644877:-65536 -) -(1,14893:-473656,4736287:0,0,0 -k1,14893:-473656,4736287:5209943 -) -g1,14893:-473656,-710413 -) -] -) -[1,14893:6630773,47279633:25952256,43253760,0 -[1,14893:6630773,4812305:25952256,786432,0 -(1,14893:6630773,4812305:25952256,485622,11795 -(1,14893:6630773,4812305:25952256,485622,11795 -g1,14893:3078558,4812305 -[1,14893:3078558,4812305:0,0,0 -(1,14893:3078558,2439708:0,1703936,0 -k1,14893:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,14893:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,14893:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,14893:3078558,4812305:0,0,0 -(1,14893:3078558,2439708:0,1703936,0 -g1,14893:29030814,2439708 -g1,14893:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,14893:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,14893:37855564,2439708:1179648,16384,0 -) -) -k1,14893:3078556,2439708:-34777008 -) -] -[1,14893:3078558,4812305:0,0,0 -(1,14893:3078558,49800853:0,16384,2228224 -k1,14893:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,14893:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,14893:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,14893:3078558,4812305:0,0,0 -(1,14893:3078558,49800853:0,16384,2228224 -g1,14893:29030814,49800853 -g1,14893:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,14893:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,14893:37855564,49800853:1179648,16384,0 -) -) -k1,14893:3078556,49800853:-34777008 -) -] -g1,14893:6630773,4812305 -g1,14893:6630773,4812305 -g1,14893:9560887,4812305 -k1,14893:31387651,4812305:21826764 -) -) -] -[1,14893:6630773,45706769:25952256,40108032,0 -(1,14893:6630773,45706769:25952256,40108032,0 -(1,14893:6630773,45706769:0,0,0 -g1,14893:6630773,45706769 -) -[1,14893:6630773,45706769:25952256,40108032,0 -v1,14838:6630773,6254097:0,393216,0 -(1,14843:6630773,7235371:25952256,1374490,196608 -g1,14843:6630773,7235371 -g1,14843:6630773,7235371 -g1,14843:6434165,7235371 -(1,14843:6434165,7235371:0,1374490,196608 -r1,14893:32779637,7235371:26345472,1571098,196608 -k1,14843:6434165,7235371:-26345472 -) -(1,14843:6434165,7235371:26345472,1374490,196608 -[1,14843:6630773,7235371:25952256,1177882,0 -(1,14840:6630773,6461715:25952256,404226,107478 -(1,14839:6630773,6461715:0,0,0 -g1,14839:6630773,6461715 -g1,14839:6630773,6461715 -g1,14839:6303093,6461715 -(1,14839:6303093,6461715:0,0,0 -) -g1,14839:6630773,6461715 -) -k1,14840:6630773,6461715:0 -g1,14840:11689104,6461715 -g1,14840:15166707,6461715 -g1,14840:16431290,6461715 -h1,14840:16747436,6461715:0,0,0 -k1,14840:32583029,6461715:15835593 -g1,14840:32583029,6461715 -) -(1,14841:6630773,7127893:25952256,404226,107478 -h1,14841:6630773,7127893:0,0,0 -g1,14841:6946919,7127893 -g1,14841:7263065,7127893 -k1,14841:7263065,7127893:0 -h1,14841:11372958,7127893:0,0,0 -k1,14841:32583030,7127893:21210072 -g1,14841:32583030,7127893 -) -] -) -g1,14843:32583029,7235371 -g1,14843:6630773,7235371 -g1,14843:6630773,7235371 -g1,14843:32583029,7235371 -g1,14843:32583029,7235371 -) -h1,14843:6630773,7431979:0,0,0 -v1,14847:6630773,9146733:0,393216,0 -(1,14854:6630773,11460364:25952256,2706847,196608 -g1,14854:6630773,11460364 -g1,14854:6630773,11460364 -g1,14854:6434165,11460364 -(1,14854:6434165,11460364:0,2706847,196608 -r1,14893:32779637,11460364:26345472,2903455,196608 -k1,14854:6434165,11460364:-26345472 -) -(1,14854:6434165,11460364:26345472,2706847,196608 -[1,14854:6630773,11460364:25952256,2510239,0 -(1,14849:6630773,9360643:25952256,410518,107478 -(1,14848:6630773,9360643:0,0,0 -g1,14848:6630773,9360643 -g1,14848:6630773,9360643 -g1,14848:6303093,9360643 -(1,14848:6303093,9360643:0,0,0 -) -g1,14848:6630773,9360643 -) -k1,14849:6630773,9360643:0 -g1,14849:11689104,9360643 -g1,14849:15166707,9360643 -g1,14849:16115145,9360643 -g1,14849:17695874,9360643 -g1,14849:18328166,9360643 -g1,14849:20857332,9360643 -h1,14849:21173478,9360643:0,0,0 -k1,14849:32583029,9360643:11409551 -g1,14849:32583029,9360643 -) -(1,14850:6630773,10026821:25952256,404226,107478 -h1,14850:6630773,10026821:0,0,0 -g1,14850:6946919,10026821 -g1,14850:7263065,10026821 -g1,14850:12953687,10026821 -g1,14850:13585979,10026821 -g1,14850:15482854,10026821 -h1,14850:15799000,10026821:0,0,0 -k1,14850:32583028,10026821:16784028 -g1,14850:32583028,10026821 -) -(1,14851:6630773,10692999:25952256,404226,107478 -h1,14851:6630773,10692999:0,0,0 -g1,14851:6946919,10692999 -g1,14851:7263065,10692999 -g1,14851:12637542,10692999 -g1,14851:13269834,10692999 -g1,14851:15166709,10692999 -g1,14851:16747438,10692999 -g1,14851:17379730,10692999 -k1,14851:17379730,10692999:0 -h1,14851:18644313,10692999:0,0,0 -k1,14851:32583029,10692999:13938716 -g1,14851:32583029,10692999 -) -(1,14852:6630773,11359177:25952256,404226,101187 -h1,14852:6630773,11359177:0,0,0 -g1,14852:6946919,11359177 -g1,14852:7263065,11359177 -g1,14852:7579211,11359177 -g1,14852:7895357,11359177 -g1,14852:8211503,11359177 -g1,14852:8527649,11359177 -g1,14852:8843795,11359177 -g1,14852:9159941,11359177 -g1,14852:9476087,11359177 -g1,14852:9792233,11359177 -g1,14852:10108379,11359177 -g1,14852:10424525,11359177 -g1,14852:10740671,11359177 -g1,14852:12637545,11359177 -g1,14852:13269837,11359177 -g1,14852:16115149,11359177 -g1,14852:18012023,11359177 -g1,14852:18644315,11359177 -h1,14852:19592752,11359177:0,0,0 -k1,14852:32583029,11359177:12990277 -g1,14852:32583029,11359177 -) -] -) -g1,14854:32583029,11460364 -g1,14854:6630773,11460364 -g1,14854:6630773,11460364 -g1,14854:32583029,11460364 -g1,14854:32583029,11460364 -) -h1,14854:6630773,11656972:0,0,0 -(1,14857:6630773,22757285:25952256,10510489,0 -k1,14857:12599879,22757285:5969106 -h1,14856:12599879,22757285:0,0,0 -(1,14856:12599879,22757285:14014044,10510489,0 -(1,14856:12599879,22757285:14014019,10510515,0 -(1,14856:12599879,22757285:14014019,10510515,0 -(1,14856:12599879,22757285:0,10510515,0 -(1,14856:12599879,22757285:0,14208860,0 -(1,14856:12599879,22757285:18945146,14208860,0 -) -k1,14856:12599879,22757285:-18945146 -) -) -g1,14856:26613898,22757285 -) -) -) -g1,14857:26613923,22757285 -k1,14857:32583029,22757285:5969106 -) -(1,14864:6630773,23598773:25952256,505283,134348 -h1,14863:6630773,23598773:983040,0,0 -k1,14863:8587797,23598773:156095 -k1,14863:10137842,23598773:156094 -k1,14863:11995907,23598773:156095 -k1,14863:15742719,23598773:156095 -k1,14863:17407453,23598773:156095 -k1,14863:21204072,23598773:156094 -k1,14863:23193864,23598773:156095 -k1,14863:24816655,23598773:156095 -k1,14863:25991835,23598773:156095 -k1,14863:27868904,23598773:156094 -k1,14863:31089463,23598773:156095 -k1,14863:32583029,23598773:0 -) -(1,14864:6630773,24440261:25952256,513147,126483 -g1,14863:7516164,24440261 -g1,14863:9505181,24440261 -g1,14863:10895855,24440261 -g1,14863:13127355,24440261 -g1,14863:15723891,24440261 -g1,14863:16574548,24440261 -g1,14863:18470504,24440261 -g1,14863:20386121,24440261 -g1,14863:21244642,24440261 -g1,14863:23308370,24440261 -k1,14864:32583029,24440261:4436136 -g1,14864:32583029,24440261 -) -(1,14866:6630773,25281749:25952256,513147,126483 -h1,14865:6630773,25281749:983040,0,0 -k1,14865:9730844,25281749:300373 -k1,14865:11747605,25281749:300373 -k1,14865:12707270,25281749:300373 -k1,14865:15633015,25281749:300373 -k1,14865:18155059,25281749:300373 -k1,14865:19106861,25281749:300374 -k1,14865:21181294,25281749:300373 -k1,14865:23089265,25281749:300373 -k1,14865:24381198,25281749:300373 -k1,14865:27893491,25281749:300373 -k1,14865:29801462,25281749:300373 -k1,14865:31293280,25281749:300373 -k1,14866:32583029,25281749:0 -) -(1,14866:6630773,26123237:25952256,513147,134348 -k1,14865:8572605,26123237:160563 -k1,14865:9924613,26123237:160563 -k1,14865:11189458,26123237:160563 -k1,14865:12097787,26123237:160563 -k1,14865:15299221,26123237:160563 -k1,14865:16853735,26123237:160563 -k1,14865:20454283,26123237:160563 -k1,14865:22996424,26123237:160563 -k1,14865:23773025,26123237:160563 -k1,14865:26844042,26123237:160563 -k1,14865:31391584,26123237:160563 -k1,14865:32583029,26123237:0 -) -(1,14866:6630773,26964725:25952256,513147,134348 -k1,14865:9751872,26964725:171980 -k1,14865:13894022,26964725:171979 -k1,14865:14553563,26964725:171953 -k1,14865:17343706,26964725:171980 -k1,14865:20177102,26964725:171979 -k1,14865:21008374,26964725:171980 -k1,14865:21536214,26964725:171980 -k1,14865:24918802,26964725:171979 -k1,14865:26368079,26964725:171980 -k1,14865:27071556,26964725:171980 -k1,14865:29319060,26964725:171979 -k1,14865:31533142,26964725:171980 -k1,14865:32583029,26964725:0 -) -(1,14866:6630773,27806213:25952256,513147,134348 -k1,14865:7808001,27806213:158143 -k1,14865:12792216,27806213:158144 -k1,14865:13609651,27806213:158143 -k1,14865:14786879,27806213:158143 -k1,14865:17855477,27806213:158144 -k1,14865:18961271,27806213:158143 -k1,14865:21236882,27806213:158143 -k1,14865:23217581,27806213:158143 -k1,14865:24394810,27806213:158144 -k1,14865:26304730,27806213:158143 -k1,14865:28875909,27806213:158143 -k1,14865:29650091,27806213:158144 -k1,14865:31316873,27806213:158143 -k1,14866:32583029,27806213:0 -k1,14866:32583029,27806213:0 -) -v1,14868:6630773,28996679:0,393216,0 -(1,14873:6630773,29977953:25952256,1374490,196608 -g1,14873:6630773,29977953 -g1,14873:6630773,29977953 -g1,14873:6434165,29977953 -(1,14873:6434165,29977953:0,1374490,196608 -r1,14893:32779637,29977953:26345472,1571098,196608 -k1,14873:6434165,29977953:-26345472 -) -(1,14873:6434165,29977953:26345472,1374490,196608 -[1,14873:6630773,29977953:25952256,1177882,0 -(1,14870:6630773,29204297:25952256,404226,107478 -(1,14869:6630773,29204297:0,0,0 -g1,14869:6630773,29204297 -g1,14869:6630773,29204297 -g1,14869:6303093,29204297 -(1,14869:6303093,29204297:0,0,0 -) -g1,14869:6630773,29204297 -) -k1,14870:6630773,29204297:0 -g1,14870:11689104,29204297 -g1,14870:15166707,29204297 -g1,14870:16431290,29204297 -h1,14870:16747436,29204297:0,0,0 -k1,14870:32583029,29204297:15835593 -g1,14870:32583029,29204297 -) -(1,14871:6630773,29870475:25952256,404226,107478 -h1,14871:6630773,29870475:0,0,0 -g1,14871:6946919,29870475 -g1,14871:7263065,29870475 -k1,14871:7263065,29870475:0 -h1,14871:12953687,29870475:0,0,0 -k1,14871:32583029,29870475:19629342 -g1,14871:32583029,29870475 -) -] -) -g1,14873:32583029,29977953 -g1,14873:6630773,29977953 -g1,14873:6630773,29977953 -g1,14873:32583029,29977953 -g1,14873:32583029,29977953 -) -h1,14873:6630773,30174561:0,0,0 -(1,14876:6630773,41274874:25952256,10510489,0 -k1,14876:12599879,41274874:5969106 -h1,14875:12599879,41274874:0,0,0 -(1,14875:12599879,41274874:14014044,10510489,0 -(1,14875:12599879,41274874:14014019,10510515,0 -(1,14875:12599879,41274874:14014019,10510515,0 -(1,14875:12599879,41274874:0,10510515,0 -(1,14875:12599879,41274874:0,14208860,0 -(1,14875:12599879,41274874:18945146,14208860,0 -) -k1,14875:12599879,41274874:-18945146 -) -) -g1,14875:26613898,41274874 -) -) -) -g1,14876:26613923,41274874 -k1,14876:32583029,41274874:5969106 -) -] -(1,14893:32583029,45706769:0,0,0 -g1,14893:32583029,45706769 -) -) -] -(1,14893:6630773,47279633:25952256,0,0 -h1,14893:6630773,47279633:25952256,0,0 -) -] -(1,14893:4262630,4025873:0,0,0 -[1,14893:-473656,4025873:0,0,0 -(1,14893:-473656,-710413:0,0,0 -(1,14893:-473656,-710413:0,0,0 -g1,14893:-473656,-710413 -) -g1,14893:-473656,-710413 -) -] -) -] -!12301 -}286 -Input:2315:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2316:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2317:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2318:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!380 -{287 -[1,14937:4262630,47279633:28320399,43253760,0 -(1,14937:4262630,4025873:0,0,0 -[1,14937:-473656,4025873:0,0,0 -(1,14937:-473656,-710413:0,0,0 -(1,14937:-473656,-644877:0,0,0 -k1,14937:-473656,-644877:-65536 -) -(1,14937:-473656,4736287:0,0,0 -k1,14937:-473656,4736287:5209943 -) -g1,14937:-473656,-710413 -) -] -) -[1,14937:6630773,47279633:25952256,43253760,0 -[1,14937:6630773,4812305:25952256,786432,0 -(1,14937:6630773,4812305:25952256,513147,134348 -(1,14937:6630773,4812305:25952256,513147,134348 -g1,14937:3078558,4812305 -[1,14937:3078558,4812305:0,0,0 -(1,14937:3078558,2439708:0,1703936,0 -k1,14937:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,14937:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,14937:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,14937:3078558,4812305:0,0,0 -(1,14937:3078558,2439708:0,1703936,0 -g1,14937:29030814,2439708 -g1,14937:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,14937:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,14937:37855564,2439708:1179648,16384,0 -) -) -k1,14937:3078556,2439708:-34777008 -) -] -[1,14937:3078558,4812305:0,0,0 -(1,14937:3078558,49800853:0,16384,2228224 -k1,14937:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,14937:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,14937:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,14937:3078558,4812305:0,0,0 -(1,14937:3078558,49800853:0,16384,2228224 -g1,14937:29030814,49800853 -g1,14937:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,14937:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,14937:37855564,49800853:1179648,16384,0 -) -) -k1,14937:3078556,49800853:-34777008 -) -] -g1,14937:6630773,4812305 -k1,14937:25712890,4812305:17886740 -g1,14937:29057847,4812305 -g1,14937:29873114,4812305 -) -) -] -[1,14937:6630773,45706769:25952256,40108032,0 -(1,14937:6630773,45706769:25952256,40108032,0 -(1,14937:6630773,45706769:0,0,0 -g1,14937:6630773,45706769 -) -[1,14937:6630773,45706769:25952256,40108032,0 -(1,14885:6630773,6254097:25952256,32768,229376 -(1,14885:6630773,6254097:0,32768,229376 -(1,14885:6630773,6254097:5505024,32768,229376 -r1,14937:12135797,6254097:5505024,262144,229376 -) -k1,14885:6630773,6254097:-5505024 -) -(1,14885:6630773,6254097:25952256,32768,0 -r1,14937:32583029,6254097:25952256,32768,0 -) -) -(1,14885:6630773,7858425:25952256,606339,151780 -(1,14885:6630773,7858425:1974731,582746,14155 -g1,14885:6630773,7858425 -g1,14885:8605504,7858425 -) -g1,14885:11801564,7858425 -g1,14885:13606426,7858425 -k1,14885:32583029,7858425:16552033 -g1,14885:32583029,7858425 -) -(1,14893:6630773,9093129:25952256,505283,134348 -k1,14892:9750287,9093129:156631 -k1,14892:10365015,9093129:156631 -k1,14892:11053143,9093129:156631 -k1,14892:12228858,9093129:156630 -k1,14892:14103188,9093129:156631 -k1,14892:14911247,9093129:156631 -k1,14892:17156510,9093129:156631 -k1,14892:18920739,9093129:156631 -k1,14892:19802198,9093129:156631 -k1,14892:21243335,9093129:156631 -k1,14892:22419051,9093129:156631 -k1,14892:26582553,9093129:156631 -k1,14892:29250523,9093129:156630 -k1,14892:29938651,9093129:156631 -k1,14892:30904652,9093129:156631 -k1,14892:32080368,9093129:156631 -$1,14892:32080368,9093129 -$1,14892:32583029,9093129 -k1,14893:32583029,9093129:0 -) -(1,14893:6630773,9934617:25952256,505283,134348 -k1,14892:8247512,9934617:190676 -k1,14892:9507736,9934617:190676 -k1,14892:12283807,9934617:190676 -k1,14892:13125911,9934617:190676 -k1,14892:14335672,9934617:190676 -(1,14892:14335672,9934617:0,414482,115847 -r1,14937:14693938,9934617:358266,530329,115847 -k1,14892:14335672,9934617:-358266 -) -(1,14892:14335672,9934617:358266,414482,115847 -k1,14892:14335672,9934617:3277 -h1,14892:14690661,9934617:0,411205,112570 -) -k1,14892:14884614,9934617:190676 -k1,14892:18093222,9934617:190675 -k1,14892:19938682,9934617:190676 -k1,14892:21120918,9934617:190676 -k1,14892:24468463,9934617:190676 -k1,14892:26578033,9934617:190676 -k1,14892:29807613,9934617:190676 -k1,14892:31017374,9934617:190676 -k1,14892:32583029,9934617:0 -) -(1,14893:6630773,10776105:25952256,513147,138281 -k1,14892:7514731,10776105:224666 -$1,14892:7514731,10776105 -$1,14892:8017392,10776105 -k1,14892:8242057,10776105:224665 -k1,14892:9658168,10776105:224666 -$1,14892:9658168,10776105 -$1,14892:10209981,10776105 -k1,14892:10434646,10776105:224665 -k1,14892:11190809,10776105:224666 -k1,14892:13566366,10776105:224665 -k1,14892:14418867,10776105:224666 -k1,14892:17415050,10776105:224665 -k1,14892:18842957,10776105:224666 -k1,14892:19599119,10776105:224665 -k1,14892:22913808,10776105:224666 -k1,14892:23824635,10776105:224665 -k1,14892:26455783,10776105:224666 -k1,14892:27666109,10776105:224665 -k1,14892:31343212,10776105:224666 -k1,14892:32227169,10776105:224665 -k1,14892:32583029,10776105:0 -) -(1,14893:6630773,11617593:25952256,513147,134348 -k1,14892:8276634,11617593:194894 -k1,14892:9099363,11617593:194894 -k1,14892:10313343,11617593:194895 -k1,14892:12914064,11617593:194894 -k1,14892:15387645,11617593:194894 -k1,14892:15795527,11617593:194890 -k1,14892:19123042,11617593:194894 -k1,14892:20784632,11617593:194894 -k1,14892:22676908,11617593:194894 -k1,14892:24790696,11617593:194894 -k1,14892:26004676,11617593:194895 -k1,14892:28667001,11617593:194894 -k1,14892:29393392,11617593:194894 -k1,14892:32583029,11617593:0 -) -(1,14893:6630773,12459081:25952256,505283,134348 -k1,14892:8094452,12459081:272234 -k1,14892:10285580,12459081:272234 -k1,14892:11015911,12459081:272234 -k1,14892:13910240,12459081:272234 -k1,14892:15563318,12459081:272234 -k1,14892:19904682,12459081:272234 -k1,14892:21893959,12459081:272234 -k1,14892:25673680,12459081:272234 -k1,14892:27092139,12459081:272234 -(1,14892:27092139,12459081:0,452978,122846 -r1,14937:31319235,12459081:4227096,575824,122846 -k1,14892:27092139,12459081:-4227096 -) -(1,14892:27092139,12459081:4227096,452978,122846 -k1,14892:27092139,12459081:3277 -h1,14892:31315958,12459081:0,411205,112570 -) -k1,14892:31591469,12459081:272234 -k1,14892:32583029,12459081:0 -) -(1,14893:6630773,13300569:25952256,513147,126483 -k1,14892:10236161,13300569:246668 -k1,14892:11292199,13300569:246668 -k1,14892:12557953,13300569:246669 -k1,14892:13169002,13300569:246668 -k1,14892:14607115,13300569:246668 -k1,14892:15261417,13300569:246668 -k1,14892:18856319,13300569:246668 -k1,14892:20175156,13300569:246668 -k1,14892:22454096,13300569:246669 -k1,14892:23846989,13300569:246668 -(1,14892:23846989,13300569:0,452978,122846 -r1,14937:27722373,13300569:3875384,575824,122846 -k1,14892:23846989,13300569:-3875384 -) -(1,14892:23846989,13300569:3875384,452978,122846 -k1,14892:23846989,13300569:3277 -h1,14892:27719096,13300569:0,411205,112570 -) -k1,14892:27969041,13300569:246668 -k1,14892:30626779,13300569:246668 -k1,14893:32583029,13300569:0 -) -(1,14893:6630773,14142057:25952256,513147,126483 -g1,14892:8415318,14142057 -g1,14892:9423917,14142057 -g1,14892:9987527,14142057 -g1,14892:11378201,14142057 -g1,14892:12116791,14142057 -g1,14892:13696864,14142057 -g1,14892:14427590,14142057 -g1,14892:15912635,14142057 -g1,14892:17130949,14142057 -g1,14892:19027560,14142057 -g1,14892:20174440,14142057 -g1,14892:22536357,14142057 -g1,14892:23501702,14142057 -k1,14893:32583029,14142057:6248206 -g1,14893:32583029,14142057 -) -(1,14895:6630773,14983545:25952256,513147,134348 -h1,14894:6630773,14983545:983040,0,0 -k1,14894:10775269,14983545:332923 -k1,14894:13441929,14983545:332923 -k1,14894:15491239,14983545:332922 -k1,14894:18680876,14983545:332923 -k1,14894:21481230,14983545:332923 -k1,14894:22430191,14983545:332923 -k1,14894:24364813,14983545:332922 -k1,14894:28205223,14983545:332923 -k1,14894:29729591,14983545:332923 -k1,14894:32583029,14983545:0 -) -(1,14895:6630773,15825033:25952256,513147,134348 -k1,14894:8859753,15825033:310086 -k1,14894:9627936,15825033:310086 -k1,14894:10469519,15825033:310086 -k1,14894:14566275,15825033:310086 -k1,14894:16611754,15825033:310086 -k1,14894:17277700,15825033:310086 -k1,14894:18870981,15825033:310086 -k1,14894:21438782,15825033:310086 -k1,14894:23129712,15825033:310086 -k1,14894:24722993,15825033:310086 -k1,14894:28017589,15825033:310086 -k1,14894:28859172,15825033:310086 -k1,14894:31931601,15825033:310086 -k1,14894:32583029,15825033:0 -) -(1,14895:6630773,16666521:25952256,513147,134348 -k1,14894:7941384,16666521:291526 -k1,14894:9289350,16666521:291526 -k1,14894:10240168,16666521:291526 -k1,14894:11550779,16666521:291526 -k1,14894:15250177,16666521:291526 -k1,14894:17961292,16666521:291526 -k1,14894:19444262,16666521:291525 -k1,14894:21937798,16666521:291526 -k1,14894:22880752,16666521:291526 -k1,14894:24456784,16666521:291526 -k1,14894:28949823,16666521:291526 -k1,14894:30002877,16666521:291526 -k1,14894:32583029,16666521:0 -) -(1,14895:6630773,17508009:25952256,513147,134348 -k1,14894:10371436,17508009:355730 -k1,14894:13661867,17508009:355729 -k1,14894:16344780,17508009:355730 -k1,14894:17359801,17508009:355729 -k1,14894:20319276,17508009:355730 -k1,14894:21958201,17508009:355730 -k1,14894:25630052,17508009:355729 -k1,14894:27543573,17508009:355730 -k1,14894:30925099,17508009:355729 -k1,14894:31966991,17508009:355730 -k1,14894:32583029,17508009:0 -) -(1,14895:6630773,18349497:25952256,513147,134348 -k1,14894:10329207,18349497:313501 -k1,14894:11973088,18349497:313500 -k1,14894:13305674,18349497:313501 -k1,14894:17145666,18349497:313500 -k1,14894:18118459,18349497:313501 -k1,14894:20183736,18349497:313500 -k1,14894:22055028,18349497:313501 -k1,14894:25394325,18349497:313500 -k1,14894:27275447,18349497:313501 -k1,14894:30417481,18349497:313501 -k1,14894:31835263,18349497:313500 -k1,14894:32583029,18349497:0 -) -(1,14895:6630773,19190985:25952256,505283,134348 -k1,14894:9595458,19190985:303268 -k1,14894:10660254,19190985:303268 -k1,14894:11982606,19190985:303267 -k1,14894:13840388,19190985:303268 -k1,14894:15524500,19190985:303268 -k1,14894:16928773,19190985:303268 -k1,14894:18975953,19190985:303267 -k1,14894:22490484,19190985:303268 -k1,14894:24766386,19190985:303268 -k1,14894:28404126,19190985:303268 -k1,14894:29898838,19190985:303267 -k1,14894:31221191,19190985:303268 -k1,14895:32583029,19190985:0 -) -(1,14895:6630773,20032473:25952256,513147,134348 -k1,14894:7960677,20032473:339655 -k1,14894:8959624,20032473:339655 -k1,14894:11544542,20032473:339655 -k1,14894:13491795,20032473:339655 -k1,14894:15701848,20032473:339655 -k1,14894:17232949,20032473:339656 -k1,14894:19222801,20032473:339655 -k1,14894:22387713,20032473:339655 -k1,14894:25690251,20032473:339655 -k1,14894:28858439,20032473:339655 -k1,14894:30299099,20032473:339655 -k1,14895:32583029,20032473:0 -) -(1,14895:6630773,20873961:25952256,513147,134348 -(1,14894:6630773,20873961:0,459977,115847 -r1,14937:10857869,20873961:4227096,575824,115847 -k1,14894:6630773,20873961:-4227096 -) -(1,14894:6630773,20873961:4227096,459977,115847 -k1,14894:6630773,20873961:3277 -h1,14894:10854592,20873961:0,411205,112570 -) -k1,14894:11137433,20873961:279564 -k1,14894:12364647,20873961:279563 -k1,14894:13000071,20873961:279564 -k1,14894:14668343,20873961:279564 -k1,14894:16546984,20873961:279563 -k1,14894:18029789,20873961:279564 -k1,14894:20418957,20873961:279564 -k1,14894:21717605,20873961:279563 -k1,14894:23880018,20873961:279564 -k1,14894:25436879,20873961:279564 -k1,14894:27668104,20873961:279563 -k1,14894:29390115,20873961:279564 -k1,14894:32583029,20873961:0 -) -(1,14895:6630773,21715449:25952256,505283,126483 -k1,14895:32583028,21715449:23890492 -g1,14895:32583028,21715449 -) -(1,14897:6630773,22556937:25952256,513147,138281 -h1,14896:6630773,22556937:983040,0,0 -k1,14896:9543983,22556937:146935 -k1,14896:10046778,22556937:146935 -k1,14896:12087704,22556937:146936 -k1,14896:12766136,22556937:146935 -k1,14896:15498466,22556937:146935 -k1,14896:16296829,22556937:146935 -$1,14896:16296829,22556937 -$1,14896:16799490,22556937 -k1,14896:16946425,22556937:146935 -k1,14896:17776246,22556937:146936 -$1,14896:17776246,22556937 -$1,14896:18328059,22556937 -k1,14896:18474994,22556937:146935 -k1,14896:21089360,22556937:146935 -k1,14896:21767792,22556937:146935 -k1,14896:25278035,22556937:146935 -k1,14896:25912507,22556937:146884 -k1,14896:27953432,22556937:146935 -k1,14896:30360048,22556937:146935 -k1,14896:32583029,22556937:0 -) -(1,14897:6630773,23398425:25952256,513147,134348 -k1,14896:8006072,23398425:183854 -k1,14896:11698067,23398425:183853 -k1,14896:12873481,23398425:183854 -k1,14896:16265978,23398425:183854 -k1,14896:17506271,23398425:183853 -k1,14896:19756475,23398425:183854 -k1,14896:21009877,23398425:183854 -k1,14896:22250171,23398425:183854 -k1,14896:23896132,23398425:183853 -k1,14896:24739278,23398425:183854 -k1,14896:25942217,23398425:183854 -k1,14896:28020060,23398425:183853 -k1,14896:31923737,23398425:183854 -k1,14896:32583029,23398425:0 -) -(1,14897:6630773,24239913:25952256,513147,138281 -k1,14896:7878273,24239913:228415 -k1,14896:10000677,24239913:228414 -k1,14896:11967107,24239913:228415 -k1,14896:14780917,24239913:228415 -k1,14896:15660759,24239913:228414 -k1,14896:16908259,24239913:228415 -$1,14896:16908259,24239913 -$1,14896:17410920,24239913 -k1,14896:17639335,24239913:228415 -k1,14896:18550634,24239913:228414 -$1,14896:18550634,24239913 -$1,14896:19102447,24239913 -k1,14896:19330862,24239913:228415 -k1,14896:22577210,24239913:228415 -k1,14896:25488668,24239913:228414 -k1,14896:26908528,24239913:228415 -k1,14896:28714395,24239913:228415 -k1,14896:29758077,24239913:228414 -k1,14896:31052763,24239913:228415 -k1,14896:32583029,24239913:0 -) -(1,14897:6630773,25081401:25952256,505283,134348 -g1,14896:7961809,25081401 -g1,14896:10355183,25081401 -g1,14896:12638457,25081401 -g1,14896:13523848,25081401 -g1,14896:14181174,25081401 -g1,14896:15587576,25081401 -g1,14896:16805890,25081401 -g1,14896:18372200,25081401 -g1,14896:19965380,25081401 -g1,14896:22744761,25081401 -k1,14897:32583029,25081401:6453335 -g1,14897:32583029,25081401 -) -(1,14899:6630773,25922889:25952256,513147,134348 -h1,14898:6630773,25922889:983040,0,0 -k1,14898:9643404,25922889:197204 -k1,14898:10832167,25922889:197203 -k1,14898:12315187,25922889:197204 -k1,14898:14209773,25922889:197204 -k1,14898:15691483,25922889:197204 -k1,14898:18180480,25922889:197203 -k1,14898:19758528,25922889:197204 -k1,14898:24024862,25922889:197204 -k1,14898:25264088,25922889:197204 -k1,14898:28296378,25922889:197203 -k1,14898:30961013,25922889:197204 -k1,14898:32583029,25922889:0 -) -(1,14899:6630773,26764377:25952256,513147,138281 -k1,14898:7589363,26764377:210824 -k1,14898:10957712,26764377:210824 -k1,14898:14101272,26764377:210824 -k1,14898:14778058,26764377:210825 -k1,14898:16455578,26764377:210824 -$1,14898:16455578,26764377 -$1,14898:16958239,26764377 -k1,14898:17169063,26764377:210824 -k1,14898:18571332,26764377:210824 -$1,14898:18571332,26764377 -$1,14898:19123145,26764377 -k1,14898:19333969,26764377:210824 -k1,14898:20536353,26764377:210824 -k1,14898:23332573,26764377:210825 -k1,14898:24194825,26764377:210824 -k1,14898:27976050,26764377:210824 -k1,14898:31202185,26764377:210824 -k1,14898:32583029,26764377:0 -) -(1,14899:6630773,27605865:25952256,513147,138281 -g1,14898:7535169,27605865 -g1,14898:8682049,27605865 -g1,14898:11716365,27605865 -g1,14898:12934679,27605865 -g1,14898:14500989,27605865 -g1,14898:16094169,27605865 -(1,14898:16094169,27605865:0,452978,115847 -r1,14937:20672977,27605865:4578808,568825,115847 -k1,14898:16094169,27605865:-4578808 -) -(1,14898:16094169,27605865:4578808,452978,115847 -k1,14898:16094169,27605865:3277 -h1,14898:20669700,27605865:0,411205,112570 -) -g1,14898:20872206,27605865 -g1,14898:22262880,27605865 -g1,14898:22817969,27605865 -g1,14898:23704671,27605865 -g1,14898:24563192,27605865 -$1,14898:24563192,27605865 -$1,14898:25065853,27605865 -g1,14898:25265082,27605865 -g1,14898:26273681,27605865 -$1,14898:26273681,27605865 -$1,14898:26825494,27605865 -k1,14899:32583029,27605865:5583865 -g1,14899:32583029,27605865 -) -v1,14901:6630773,28971641:0,393216,0 -(1,14937:6630773,44089244:25952256,15510819,589824 -g1,14937:6630773,44089244 -(1,14937:6630773,44089244:25952256,15510819,589824 -(1,14937:6630773,44679068:25952256,16100643,0 -[1,14937:6630773,44679068:25952256,16100643,0 -(1,14937:6630773,44679068:25952256,16074429,0 -r1,14937:6656987,44679068:26214,16074429,0 -[1,14937:6656987,44679068:25899828,16074429,0 -(1,14937:6656987,44089244:25899828,14894781,0 -[1,14937:7246811,44089244:24720180,14894781,0 -(1,14902:7246811,30356348:24720180,1161885,196608 -(1,14901:7246811,30356348:0,1161885,196608 -r1,14937:8794447,30356348:1547636,1358493,196608 -k1,14901:7246811,30356348:-1547636 -) -(1,14901:7246811,30356348:1547636,1161885,196608 -) -k1,14901:9024615,30356348:230168 -k1,14901:9882617,30356348:230167 -k1,14901:12138503,30356348:230168 -k1,14901:15395778,30356348:230167 -k1,14901:18053400,30356348:230168 -k1,14901:21810060,30356348:230168 -k1,14901:22608424,30356348:230167 -k1,14901:23800005,30356348:230168 -k1,14901:26203346,30356348:230167 -k1,14901:27049552,30356348:230168 -k1,14901:29920820,30356348:230167 -k1,14901:31435494,30356348:230168 -k1,14901:31966991,30356348:0 -) -(1,14902:7246811,31197836:24720180,513147,138281 -k1,14901:10166440,31197836:165806 -k1,14901:11351331,31197836:165806 -k1,14901:15318880,31197836:165806 -k1,14901:16997912,31197836:165806 -k1,14901:20202622,31197836:165806 -k1,14901:21387513,31197836:165806 -k1,14901:24691184,31197836:165807 -k1,14901:25516282,31197836:165806 -k1,14901:26701173,31197836:165806 -$1,14901:26701173,31197836 -$1,14901:27203834,31197836 -k1,14901:27369640,31197836:165806 -k1,14901:28726891,31197836:165806 -$1,14901:28726891,31197836 -$1,14901:29278704,31197836 -k1,14901:29444510,31197836:165806 -k1,14902:31966991,31197836:0 -) -(1,14902:7246811,32039324:24720180,513147,138281 -k1,14901:8455900,32039324:170343 -k1,14901:10271197,32039324:170343 -k1,14901:13195363,32039324:170343 -k1,14901:14384791,32039324:170343 -k1,14901:18356877,32039324:170343 -k1,14901:19546305,32039324:170343 -k1,14901:22854513,32039324:170344 -k1,14901:23684148,32039324:170343 -k1,14901:24873576,32039324:170343 -$1,14901:24873576,32039324 -$1,14901:25376237,32039324 -k1,14901:25546580,32039324:170343 -k1,14901:26908368,32039324:170343 -$1,14901:26908368,32039324 -$1,14901:27460181,32039324 -k1,14901:27630524,32039324:170343 -k1,14901:30975431,32039324:170343 -k1,14901:31966991,32039324:0 -) -(1,14902:7246811,32880812:24720180,505283,134348 -g1,14901:10262777,32880812 -g1,14901:12163976,32880812 -g1,14901:15186496,32880812 -k1,14902:31966991,32880812:14531299 -g1,14902:31966991,32880812 -) -(1,14917:7246811,36536175:24720180,2587127,0 -h1,14906:7246811,36536175:0,0,0 -(1,14916:7246811,36536175:24721261,2587127,0 -(1,14916:7246811,36536175:0,2587127,0 -(1,14916:7246811,36536175:0,2673868,0 -(1,14916:7246811,36536175:25550112,2673868,0 -(1,14916:7246811,36536175:25550112,2673868,0 -(1,14916:7246811,36536175:25550112,2673868,0 -g1,14916:9457535,36536175 -(1,14916:9457535,35199241:0,0,0 -(1,14916:9457535,35199241:0,0,0 -g1,14916:9457535,35199241 -(1,14916:9457535,35199241:0,0,0 -(1,14916:9457535,35199241:0,0,0 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -(1,14916:9457535,35199241:0,0,0 -(1,14916:9457535,35199241:3932160,505283,7863 -(1,14916:9457535,35199241:3932160,505283,7863 -[1,14916:9457535,35199241:3932160,505283,7863 -(1,14916:9457535,35199241:3932160,505283,7863 -k1,14916:10732866,35199241:1275331 -h1,14916:10732866,35199241:0,0,0 -h1,14916:10732866,35199241:0,0,0 -k1,14916:12114365,35199241:0 -k1,14916:13389695,35199241:1275330 -) -] -) -g1,14916:13389695,35199241 -) -) -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -) -) -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -(1,14916:9457535,35199241:0,0,0 -(1,14916:9457535,35199241:0,0,0 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -(1,14916:9457535,35199241:0,0,0 -(1,14916:9457535,35199241:3932160,473825,7863 -(1,14916:9457535,35199241:3932160,473825,7863 -[1,14916:9457535,35199241:3932160,473825,7863 -(1,14916:9457535,35199241:3932160,473825,7863 -k1,14916:10184329,35199241:726794 -h1,14916:10184329,35199241:0,0,0 -h1,14916:10184329,35199241:0,0,0 -k1,14916:12662901,35199241:0 -k1,14916:13389695,35199241:726794 -) -] -) -g1,14916:13389695,35199241 -) -) -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -) -) -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -(1,14916:9457535,35199241:0,0,0 -(1,14916:9457535,35199241:0,0,0 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -(1,14916:9457535,35199241:0,0,0 -(1,14916:9457535,35199241:3932160,416809,134348 -(1,14916:9457535,35199241:3932160,416809,134348 -[1,14916:9457535,35199241:3932160,416809,134348 -(1,14916:9457535,35199241:3932160,416809,134348 -k1,14916:9919564,35199241:462029 -h1,14916:9919564,35199241:0,0,0 -h1,14916:9919564,35199241:0,0,0 -k1,14916:12927667,35199241:0 -k1,14916:13389695,35199241:462028 -) -] -) -g1,14916:13389695,35199241 -) -) -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -) -) -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -(1,14916:9457535,35199241:0,0,0 -(1,14916:9457535,35199241:0,0,0 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -(1,14916:9457535,35199241:0,0,0 -(1,14916:9457535,35199241:3932160,505283,967971 -(1,14916:9457535,35199241:3932160,505283,967971 -[1,14916:9457535,35199241:3932160,505283,967971 -(1,14916:9457535,35199241:3932160,505283,7863 -k1,14916:9991981,35199241:534446 -h1,14916:9991981,35199241:0,0,0 -h1,14916:9991981,35199241:0,0,0 -k1,14916:12855249,35199241:0 -k1,14916:13389695,35199241:534446 -) -(1,14916:9457535,36040729:3932160,505283,126483 -k1,14916:10798729,36040729:1341194 -h1,14916:10798729,36040729:0,0,0 -k1,14916:12048501,36040729:0 -k1,14916:13389695,36040729:1341194 -) -] -) -g1,14916:13389695,35199241 -) -) -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -) -) -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -(1,14916:9457535,35199241:0,0,0 -(1,14916:9457535,35199241:0,0,0 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -(1,14916:9457535,35199241:0,0,0 -(1,14916:9457535,35199241:2093615,513147,138281 -(1,14916:9457535,35199241:2093615,513147,138281 -$1,14916:9457535,35199241 -g1,14916:10142256,35199241 -g1,14916:10999337,35199241 -$1,14916:11551150,35199241 -) -g1,14916:11551150,35199241 -) -) -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -) -) -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -(1,14916:9457535,35199241:0,0,0 -(1,14916:9457535,35199241:0,0,0 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -(1,14916:9457535,35199241:0,0,0 -(1,14916:9457535,35199241:2093615,513147,138281 -(1,14916:9457535,35199241:2093615,513147,138281 -$1,14916:9457535,35199241 -g1,14916:10191408,35199241 -g1,14916:11048489,35199241 -$1,14916:11551150,35199241 -) -g1,14916:11551150,35199241 -) -) -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -) -) -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -(1,14916:9457535,35199241:0,0,0 -(1,14916:9457535,35199241:0,0,0 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -(1,14916:9457535,35199241:0,0,0 -(1,14916:9457535,35199241:0,0,0 -h1,14916:9457535,35199241:0,0,0 -g1,14916:9457535,35199241 -) -) -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -) -) -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -g1,14916:9457535,35199241 -) -g1,14916:9457535,35199241 -) -) -) -) -k1,14916:7246811,36536175:-25550112 -) -) -g1,14916:31968072,36536175 -) -g1,14917:31968072,36536175 -g1,14917:31968072,36536175 -) -(1,14919:7246811,38072345:24720180,513147,134348 -h1,14918:7246811,38072345:983040,0,0 -k1,14918:9024505,38072345:166819 -k1,14918:12872481,38072345:166819 -k1,14918:15466754,38072345:166819 -k1,14918:19160065,38072345:166819 -k1,14918:19895081,38072345:166819 -k1,14918:21023312,38072345:166818 -k1,14918:23363305,38072345:166819 -k1,14918:24146162,38072345:166819 -k1,14918:26780412,38072345:166819 -k1,14918:27606523,38072345:166819 -k1,14918:28792427,38072345:166819 -k1,14918:31966991,38072345:0 -) -(1,14919:7246811,38913833:24720180,513147,134348 -k1,14918:8512564,38913833:193584 -k1,14918:10100100,38913833:193585 -k1,14918:10649544,38913833:193584 -k1,14918:12583110,38913833:193585 -k1,14918:13818716,38913833:193584 -k1,14918:16847387,38913833:193584 -k1,14918:17657010,38913833:193585 -(1,14918:17657010,38913833:0,452978,122846 -r1,14937:21532394,38913833:3875384,575824,122846 -k1,14918:17657010,38913833:-3875384 -) -(1,14918:17657010,38913833:3875384,452978,122846 -k1,14918:17657010,38913833:3277 -h1,14918:21529117,38913833:0,411205,112570 -) -k1,14918:21899648,38913833:193584 -k1,14918:24560664,38913833:193585 -k1,14918:27325225,38913833:193584 -k1,14918:28537895,38913833:193585 -k1,14918:31307699,38913833:193584 -k1,14918:31966991,38913833:0 -) -(1,14919:7246811,39755321:24720180,513147,134348 -k1,14918:8511164,39755321:245268 -k1,14918:10428912,39755321:245269 -k1,14918:13596430,39755321:245268 -k1,14918:17913451,39755321:245269 -k1,14918:19150279,39755321:245268 -k1,14918:21433718,39755321:245269 -k1,14918:23423554,39755321:245268 -k1,14918:24687907,39755321:245268 -$1,14918:24687907,39755321 -$1,14918:25190568,39755321 -k1,14918:25435837,39755321:245269 -k1,14918:26933498,39755321:245268 -k1,14918:28126418,39755321:245269 -k1,14918:30947906,39755321:245268 -k1,14918:31966991,39755321:0 -) -(1,14919:7246811,40596809:24720180,513147,134348 -k1,14918:10469574,40596809:201553 -k1,14918:14156987,40596809:201553 -k1,14918:16171266,40596809:201553 -k1,14918:16850576,40596809:201553 -k1,14918:17920481,40596809:201553 -k1,14918:19178474,40596809:201553 -k1,14918:20583268,40596809:201553 -k1,14918:22516282,40596809:201553 -k1,14918:26789587,40596809:201553 -k1,14918:27982700,40596809:201553 -k1,14918:30222423,40596809:201553 -k1,14918:31966991,40596809:0 -) -(1,14919:7246811,41438297:24720180,513147,138281 -k1,14918:8485169,41438297:219273 -$1,14918:8485169,41438297 -$1,14918:9036982,41438297 -k1,14918:9256254,41438297:219272 -k1,14918:10727920,41438297:219273 -k1,14918:12989949,41438297:219272 -k1,14918:15785442,41438297:219273 -k1,14918:17023799,41438297:219272 -k1,14918:20728932,41438297:219273 -k1,14918:24143084,41438297:219272 -k1,14918:26247828,41438297:219273 -k1,14918:27571382,41438297:219272 -k1,14918:29506388,41438297:219273 -k1,14918:30081520,41438297:219272 -k1,14918:31966991,41438297:0 -) -(1,14919:7246811,42279785:24720180,513147,102891 -k1,14918:10895255,42279785:288413 -k1,14918:12380355,42279785:288413 -k1,14918:15510409,42279785:288413 -k1,14918:17874347,42279785:288413 -k1,14918:18972130,42279785:288413 -k1,14918:20712165,42279785:288413 -k1,14918:22252971,42279785:288413 -k1,14918:24768953,42279785:288413 -k1,14918:26076451,42279785:288413 -k1,14918:28192008,42279785:288413 -k1,14918:29166583,42279785:288413 -k1,14918:30947906,42279785:288413 -k1,14918:31966991,42279785:0 -) -(1,14919:7246811,43121273:24720180,513147,134348 -k1,14918:10003849,43121273:142807 -k1,14918:10805947,43121273:142806 -k1,14918:12967263,43121273:142807 -k1,14918:15110884,43121273:142807 -k1,14918:16647642,43121273:142807 -(1,14918:16647642,43121273:0,452978,122846 -r1,14937:20874738,43121273:4227096,575824,122846 -k1,14918:16647642,43121273:-4227096 -) -(1,14918:16647642,43121273:4227096,452978,122846 -k1,14918:16647642,43121273:3277 -h1,14918:20871461,43121273:0,411205,112570 -) -k1,14918:21191214,43121273:142806 -k1,14918:21961856,43121273:142807 -k1,14918:23307904,43121273:142807 -k1,14918:26112128,43121273:142807 -k1,14918:27630535,43121273:142806 -k1,14918:28945781,43121273:142807 -k1,14918:31966991,43121273:0 -) -(1,14919:7246811,43962761:24720180,513147,126483 -g1,14918:8437600,43962761 -g1,14918:9655914,43962761 -g1,14918:11508616,43962761 -g1,14918:12323883,43962761 -g1,14918:13542197,43962761 -g1,14918:15986689,43962761 -g1,14918:17463215,43962761 -g1,14918:18853889,43962761 -g1,14918:20072203,43962761 -g1,14918:23795958,43962761 -k1,14919:31966991,43962761:6840652 -g1,14919:31966991,43962761 -) -] -) -] -r1,14937:32583029,44679068:26214,16074429,0 -) -] -) -) -g1,14937:32583029,44089244 -) -] -(1,14937:32583029,45706769:0,0,0 -g1,14937:32583029,45706769 -) -) -] -(1,14937:6630773,47279633:25952256,0,0 -h1,14937:6630773,47279633:25952256,0,0 -) -] -(1,14937:4262630,4025873:0,0,0 -[1,14937:-473656,4025873:0,0,0 -(1,14937:-473656,-710413:0,0,0 -(1,14937:-473656,-710413:0,0,0 -g1,14937:-473656,-710413 -) -g1,14937:-473656,-710413 -) -] -) -] -!29561 -}287 -Input:2319:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2320:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2321:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2322:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2323:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2324:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!564 -{288 -[1,14971:4262630,47279633:28320399,43253760,0 -(1,14971:4262630,4025873:0,0,0 -[1,14971:-473656,4025873:0,0,0 -(1,14971:-473656,-710413:0,0,0 -(1,14971:-473656,-644877:0,0,0 -k1,14971:-473656,-644877:-65536 -) -(1,14971:-473656,4736287:0,0,0 -k1,14971:-473656,4736287:5209943 -) -g1,14971:-473656,-710413 -) -] -) -[1,14971:6630773,47279633:25952256,43253760,0 -[1,14971:6630773,4812305:25952256,786432,0 -(1,14971:6630773,4812305:25952256,505283,126483 -(1,14971:6630773,4812305:25952256,505283,126483 -g1,14971:3078558,4812305 -[1,14971:3078558,4812305:0,0,0 -(1,14971:3078558,2439708:0,1703936,0 -k1,14971:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,14971:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,14971:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,14971:3078558,4812305:0,0,0 -(1,14971:3078558,2439708:0,1703936,0 -g1,14971:29030814,2439708 -g1,14971:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,14971:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,14971:37855564,2439708:1179648,16384,0 -) -) -k1,14971:3078556,2439708:-34777008 -) -] -[1,14971:3078558,4812305:0,0,0 -(1,14971:3078558,49800853:0,16384,2228224 -k1,14971:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,14971:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,14971:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,14971:3078558,4812305:0,0,0 -(1,14971:3078558,49800853:0,16384,2228224 -g1,14971:29030814,49800853 -g1,14971:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,14971:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,14971:37855564,49800853:1179648,16384,0 -) -) -k1,14971:3078556,49800853:-34777008 -) -] -g1,14971:6630773,4812305 -g1,14971:6630773,4812305 -g1,14971:9104757,4812305 -g1,14971:10491498,4812305 -g1,14971:12580130,4812305 -k1,14971:31387652,4812305:18807522 -) -) -] -[1,14971:6630773,45706769:25952256,40108032,0 -(1,14971:6630773,45706769:25952256,40108032,0 -(1,14971:6630773,45706769:0,0,0 -g1,14971:6630773,45706769 -) -[1,14971:6630773,45706769:25952256,40108032,0 -v1,14937:6630773,6254097:0,393216,0 -(1,14937:6630773,19955376:25952256,14094495,616038 -g1,14937:6630773,19955376 -(1,14937:6630773,19955376:25952256,14094495,616038 -(1,14937:6630773,20571414:25952256,14710533,0 -[1,14937:6630773,20571414:25952256,14710533,0 -(1,14937:6630773,20545200:25952256,14684319,0 -r1,14971:6656987,20545200:26214,14684319,0 -[1,14937:6656987,20545200:25899828,14684319,0 -(1,14937:6656987,19955376:25899828,13504671,0 -[1,14937:7246811,19955376:24720180,13504671,0 -v1,14921:7246811,6843921:0,393216,0 -(1,14928:7246811,9157551:24720180,2706846,196608 -g1,14928:7246811,9157551 -g1,14928:7246811,9157551 -g1,14928:7050203,9157551 -(1,14928:7050203,9157551:0,2706846,196608 -r1,14971:32163599,9157551:25113396,2903454,196608 -k1,14928:7050203,9157551:-25113396 -) -(1,14928:7050203,9157551:25113396,2706846,196608 -[1,14928:7246811,9157551:24720180,2510238,0 -(1,14923:7246811,7051539:24720180,404226,107478 -(1,14922:7246811,7051539:0,0,0 -g1,14922:7246811,7051539 -g1,14922:7246811,7051539 -g1,14922:6919131,7051539 -(1,14922:6919131,7051539:0,0,0 -) -g1,14922:7246811,7051539 -) -k1,14923:7246811,7051539:0 -g1,14923:13253580,7051539 -g1,14923:14202018,7051539 -g1,14923:16098893,7051539 -g1,14923:16731185,7051539 -g1,14923:17995768,7051539 -g1,14923:18628060,7051539 -g1,14923:19260352,7051539 -g1,14923:21157226,7051539 -h1,14923:21473372,7051539:0,0,0 -k1,14923:31966991,7051539:10493619 -g1,14923:31966991,7051539 -) -(1,14924:7246811,7717717:24720180,404226,107478 -h1,14924:7246811,7717717:0,0,0 -g1,14924:7562957,7717717 -g1,14924:7879103,7717717 -g1,14924:8195249,7717717 -g1,14924:8511395,7717717 -g1,14924:12621289,7717717 -h1,14924:12937435,7717717:0,0,0 -k1,14924:31966991,7717717:19029556 -g1,14924:31966991,7717717 -) -(1,14925:7246811,8383895:24720180,404226,107478 -h1,14925:7246811,8383895:0,0,0 -g1,14925:7562957,8383895 -g1,14925:7879103,8383895 -g1,14925:8195249,8383895 -g1,14925:8511395,8383895 -g1,14925:13569726,8383895 -g1,14925:14202018,8383895 -g1,14925:15782747,8383895 -h1,14925:16098893,8383895:0,0,0 -k1,14925:31966991,8383895:15868098 -g1,14925:31966991,8383895 -) -(1,14926:7246811,9050073:24720180,404226,107478 -h1,14926:7246811,9050073:0,0,0 -g1,14926:7562957,9050073 -g1,14926:7879103,9050073 -g1,14926:8195249,9050073 -g1,14926:8511395,9050073 -g1,14926:13569726,9050073 -g1,14926:14202018,9050073 -g1,14926:15782747,9050073 -g1,14926:19576495,9050073 -g1,14926:20208787,9050073 -g1,14926:21789516,9050073 -g1,14926:24002536,9050073 -g1,14926:24634828,9050073 -h1,14926:26531702,9050073:0,0,0 -k1,14926:31966991,9050073:5435289 -g1,14926:31966991,9050073 -) -] -) -g1,14928:31966991,9157551 -g1,14928:7246811,9157551 -g1,14928:7246811,9157551 -g1,14928:31966991,9157551 -g1,14928:31966991,9157551 -) -h1,14928:7246811,9354159:0,0,0 -(1,14931:7246811,19955376:24720180,10011393,0 -k1,14931:12932536,19955376:5685725 -h1,14930:12932536,19955376:0,0,0 -(1,14930:12932536,19955376:13348731,10011393,0 -(1,14930:12932536,19955376:13348557,10011418,0 -(1,14930:12932536,19955376:13348557,10011418,0 -(1,14930:12932536,19955376:0,10011418,0 -(1,14930:12932536,19955376:0,14208860,0 -(1,14930:12932536,19955376:18945146,14208860,0 -) -k1,14930:12932536,19955376:-18945146 -) -) -g1,14930:26281093,19955376 -) -) -) -g1,14931:26281267,19955376 -k1,14931:31966991,19955376:5685724 -) -] -) -] -r1,14971:32583029,20545200:26214,14684319,0 -) -] -) -) -g1,14937:32583029,19955376 -) -h1,14937:6630773,20571414:0,0,0 -(1,14940:6630773,21937190:25952256,513147,134348 -h1,14939:6630773,21937190:983040,0,0 -k1,14939:9015163,21937190:204663 -k1,14939:10603947,21937190:204664 -k1,14939:12074766,21937190:204663 -k1,14939:12938721,21937190:204663 -k1,14939:16135104,21937190:204664 -k1,14939:19472388,21937190:204663 -k1,14939:22866688,21937190:204663 -k1,14939:25538783,21937190:204664 -k1,14939:27478839,21937190:204663 -(1,14939:27478839,21937190:0,452978,115847 -r1,14971:32409359,21937190:4930520,568825,115847 -k1,14939:27478839,21937190:-4930520 -) -(1,14939:27478839,21937190:4930520,452978,115847 -k1,14939:27478839,21937190:3277 -h1,14939:32406082,21937190:0,411205,112570 -) -k1,14939:32583029,21937190:0 -) -(1,14940:6630773,22778678:25952256,513147,138281 -k1,14939:8255577,22778678:136481 -k1,14939:9260410,22778678:136481 -k1,14939:10793463,22778678:136481 -k1,14939:11949029,22778678:136481 -k1,14939:13979500,22778678:136481 -(1,14939:13979500,22778678:0,452978,115847 -r1,14971:16448037,22778678:2468537,568825,115847 -k1,14939:13979500,22778678:-2468537 -) -(1,14939:13979500,22778678:2468537,452978,115847 -k1,14939:13979500,22778678:3277 -h1,14939:16444760,22778678:0,411205,112570 -) -k1,14939:16584518,22778678:136481 -k1,14939:18027132,22778678:136481 -k1,14939:18815041,22778678:136481 -$1,14939:18815041,22778678 -$1,14939:19317702,22778678 -k1,14939:19454183,22778678:136481 -k1,14939:20782110,22778678:136482 -k1,14939:22352519,22778678:136481 -k1,14939:23140428,22778678:136481 -$1,14939:23140428,22778678 -$1,14939:23692241,22778678 -k1,14939:24002392,22778678:136481 -k1,14939:24766708,22778678:136481 -k1,14939:26369885,22778678:136481 -k1,14939:28203748,22778678:136481 -k1,14939:31107814,22778678:136481 -k1,14939:32583029,22778678:0 -) -(1,14940:6630773,23620166:25952256,513147,126483 -k1,14939:8336176,23620166:195453 -k1,14939:11740273,23620166:195454 -k1,14939:13127171,23620166:195453 -k1,14939:15624905,23620166:195454 -k1,14939:16768009,23620166:195453 -k1,14939:18415085,23620166:195454 -k1,14939:20072646,23620166:195453 -k1,14939:20927392,23620166:195454 -k1,14939:22141930,23620166:195453 -k1,14939:24405045,23620166:195454 -k1,14939:27478839,23620166:195453 -(1,14939:27478839,23620166:0,452978,115847 -r1,14971:32409359,23620166:4930520,568825,115847 -k1,14939:27478839,23620166:-4930520 -) -(1,14939:27478839,23620166:4930520,452978,115847 -k1,14939:27478839,23620166:3277 -h1,14939:32406082,23620166:0,411205,112570 -) -k1,14940:32583029,23620166:0 -) -(1,14940:6630773,24461654:25952256,505283,126483 -(1,14939:6630773,24461654:0,414482,115847 -r1,14971:10857869,24461654:4227096,530329,115847 -k1,14939:6630773,24461654:-4227096 -) -(1,14939:6630773,24461654:4227096,414482,115847 -k1,14939:6630773,24461654:3277 -h1,14939:10854592,24461654:0,411205,112570 -) -k1,14939:11186660,24461654:155121 -(1,14939:11186660,24461654:0,452978,122846 -r1,14971:16820603,24461654:5633943,575824,122846 -k1,14939:11186660,24461654:-5633943 -) -(1,14939:11186660,24461654:5633943,452978,122846 -k1,14939:11186660,24461654:3277 -h1,14939:16817326,24461654:0,411205,112570 -) -k1,14939:16975724,24461654:155121 -k1,14939:18322290,24461654:155121 -(1,14939:18322290,24461654:0,452978,115847 -r1,14971:23252810,24461654:4930520,568825,115847 -k1,14939:18322290,24461654:-4930520 -) -(1,14939:18322290,24461654:4930520,452978,115847 -k1,14939:18322290,24461654:3277 -h1,14939:23249533,24461654:0,411205,112570 -) -k1,14939:23407931,24461654:155121 -k1,14939:25786033,24461654:155121 -k1,14939:28709395,24461654:155121 -k1,14939:30258467,24461654:155121 -k1,14939:32583029,24461654:0 -) -(1,14940:6630773,25303142:25952256,513147,134348 -g1,14939:7481430,25303142 -k1,14940:32583029,25303142:22460498 -g1,14940:32583029,25303142 -) -v1,14942:6630773,26493608:0,393216,0 -(1,14947:6630773,27468591:25952256,1368199,196608 -g1,14947:6630773,27468591 -g1,14947:6630773,27468591 -g1,14947:6434165,27468591 -(1,14947:6434165,27468591:0,1368199,196608 -r1,14971:32779637,27468591:26345472,1564807,196608 -k1,14947:6434165,27468591:-26345472 -) -(1,14947:6434165,27468591:26345472,1368199,196608 -[1,14947:6630773,27468591:25952256,1171591,0 -(1,14944:6630773,26701226:25952256,404226,107478 -(1,14943:6630773,26701226:0,0,0 -g1,14943:6630773,26701226 -g1,14943:6630773,26701226 -g1,14943:6303093,26701226 -(1,14943:6303093,26701226:0,0,0 -) -g1,14943:6630773,26701226 -) -k1,14944:6630773,26701226:0 -g1,14944:10740667,26701226 -g1,14944:12637542,26701226 -g1,14944:13269834,26701226 -g1,14944:16115146,26701226 -g1,14944:16747438,26701226 -g1,14944:17379730,26701226 -g1,14944:22121916,26701226 -h1,14944:22438062,26701226:0,0,0 -k1,14944:32583029,26701226:10144967 -g1,14944:32583029,26701226 -) -(1,14945:6630773,27367404:25952256,404226,101187 -h1,14945:6630773,27367404:0,0,0 -g1,14945:6946919,27367404 -g1,14945:7263065,27367404 -g1,14945:7579211,27367404 -g1,14945:7895357,27367404 -k1,14945:7895357,27367404:0 -h1,14945:12321396,27367404:0,0,0 -k1,14945:32583028,27367404:20261632 -g1,14945:32583028,27367404 -) -] -) -g1,14947:32583029,27468591 -g1,14947:6630773,27468591 -g1,14947:6630773,27468591 -g1,14947:32583029,27468591 -g1,14947:32583029,27468591 -) -h1,14947:6630773,27665199:0,0,0 -(1,14950:6630773,38765512:25952256,10510489,0 -k1,14950:12599879,38765512:5969106 -h1,14949:12599879,38765512:0,0,0 -(1,14949:12599879,38765512:14014044,10510489,0 -(1,14949:12599879,38765512:14014019,10510515,0 -(1,14949:12599879,38765512:14014019,10510515,0 -(1,14949:12599879,38765512:0,10510515,0 -(1,14949:12599879,38765512:0,14208860,0 -(1,14949:12599879,38765512:18945146,14208860,0 -) -k1,14949:12599879,38765512:-18945146 -) -) -g1,14949:26613898,38765512 -) -) -) -g1,14950:26613923,38765512 -k1,14950:32583029,38765512:5969106 -) -v1,14957:6630773,39955978:0,393216,0 -(1,14962:6630773,40930961:25952256,1368199,196608 -g1,14962:6630773,40930961 -g1,14962:6630773,40930961 -g1,14962:6434165,40930961 -(1,14962:6434165,40930961:0,1368199,196608 -r1,14971:32779637,40930961:26345472,1564807,196608 -k1,14962:6434165,40930961:-26345472 -) -(1,14962:6434165,40930961:26345472,1368199,196608 -[1,14962:6630773,40930961:25952256,1171591,0 -(1,14959:6630773,40163596:25952256,404226,107478 -(1,14958:6630773,40163596:0,0,0 -g1,14958:6630773,40163596 -g1,14958:6630773,40163596 -g1,14958:6303093,40163596 -(1,14958:6303093,40163596:0,0,0 -) -g1,14958:6630773,40163596 -) -k1,14959:6630773,40163596:0 -g1,14959:10740667,40163596 -g1,14959:12637542,40163596 -g1,14959:13269834,40163596 -g1,14959:17695874,40163596 -g1,14959:18328166,40163596 -g1,14959:18960458,40163596 -g1,14959:22121915,40163596 -h1,14959:22438061,40163596:0,0,0 -k1,14959:32583029,40163596:10144968 -g1,14959:32583029,40163596 -) -(1,14960:6630773,40829774:25952256,404226,101187 -h1,14960:6630773,40829774:0,0,0 -g1,14960:6946919,40829774 -g1,14960:7263065,40829774 -g1,14960:7579211,40829774 -g1,14960:7895357,40829774 -k1,14960:7895357,40829774:0 -h1,14960:12321396,40829774:0,0,0 -k1,14960:32583028,40829774:20261632 -g1,14960:32583028,40829774 -) -] -) -g1,14962:32583029,40930961 -g1,14962:6630773,40930961 -g1,14962:6630773,40930961 -g1,14962:32583029,40930961 -g1,14962:32583029,40930961 -) -h1,14962:6630773,41127569:0,0,0 -] -(1,14971:32583029,45706769:0,0,0 -g1,14971:32583029,45706769 -) -) -] -(1,14971:6630773,47279633:25952256,0,0 -h1,14971:6630773,47279633:25952256,0,0 -) -] -(1,14971:4262630,4025873:0,0,0 -[1,14971:-473656,4025873:0,0,0 -(1,14971:-473656,-710413:0,0,0 -(1,14971:-473656,-710413:0,0,0 -g1,14971:-473656,-710413 -) -g1,14971:-473656,-710413 -) -] -) -] -!13868 -}288 -!12 -{289 -[1,15004:4262630,47279633:28320399,43253760,0 -(1,15004:4262630,4025873:0,0,0 -[1,15004:-473656,4025873:0,0,0 -(1,15004:-473656,-710413:0,0,0 -(1,15004:-473656,-644877:0,0,0 -k1,15004:-473656,-644877:-65536 -) -(1,15004:-473656,4736287:0,0,0 -k1,15004:-473656,4736287:5209943 -) -g1,15004:-473656,-710413 -) -] -) -[1,15004:6630773,47279633:25952256,43253760,0 -[1,15004:6630773,4812305:25952256,786432,0 -(1,15004:6630773,4812305:25952256,513147,134348 -(1,15004:6630773,4812305:25952256,513147,134348 -g1,15004:3078558,4812305 -[1,15004:3078558,4812305:0,0,0 -(1,15004:3078558,2439708:0,1703936,0 -k1,15004:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,15004:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,15004:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,15004:3078558,4812305:0,0,0 -(1,15004:3078558,2439708:0,1703936,0 -g1,15004:29030814,2439708 -g1,15004:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,15004:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,15004:37855564,2439708:1179648,16384,0 -) -) -k1,15004:3078556,2439708:-34777008 -) -] -[1,15004:3078558,4812305:0,0,0 -(1,15004:3078558,49800853:0,16384,2228224 -k1,15004:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,15004:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,15004:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,15004:3078558,4812305:0,0,0 -(1,15004:3078558,49800853:0,16384,2228224 -g1,15004:29030814,49800853 -g1,15004:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,15004:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,15004:37855564,49800853:1179648,16384,0 -) -) -k1,15004:3078556,49800853:-34777008 -) -] -g1,15004:6630773,4812305 -k1,15004:25712890,4812305:17886740 -g1,15004:29057847,4812305 -g1,15004:29873114,4812305 -) -) -] -[1,15004:6630773,45706769:25952256,40108032,0 -(1,15004:6630773,45706769:25952256,40108032,0 -(1,15004:6630773,45706769:0,0,0 -g1,15004:6630773,45706769 -) -[1,15004:6630773,45706769:25952256,40108032,0 -(1,14965:6630773,16109226:25952256,10510489,0 -k1,14965:12599879,16109226:5969106 -h1,14964:12599879,16109226:0,0,0 -(1,14964:12599879,16109226:14014044,10510489,0 -(1,14964:12599879,16109226:14014019,10510515,0 -(1,14964:12599879,16109226:14014019,10510515,0 -(1,14964:12599879,16109226:0,10510515,0 -(1,14964:12599879,16109226:0,14208860,0 -(1,14964:12599879,16109226:18945146,14208860,0 -) -k1,14964:12599879,16109226:-18945146 -) -) -g1,14964:26613898,16109226 -) -) -) -g1,14965:26613923,16109226 -k1,14965:32583029,16109226:5969106 -) -(1,14972:6630773,16950714:25952256,513147,138281 -h1,14971:6630773,16950714:983040,0,0 -g1,14971:9596277,16950714 -g1,14971:10663858,16950714 -g1,14971:12259659,16950714 -g1,14971:12814748,16950714 -g1,14971:15525317,16950714 -g1,14971:16375974,16950714 -g1,14971:17950804,16950714 -g1,14971:19306743,16950714 -g1,14971:20165264,16950714 -$1,14971:20165264,16950714 -$1,14971:20667925,16950714 -g1,14971:20867154,16950714 -g1,14971:21749268,16950714 -$1,14971:21749268,16950714 -$1,14971:22301081,16950714 -g1,14971:22500310,16950714 -g1,14971:23718624,16950714 -g1,14971:24974293,16950714 -g1,14971:25705019,16950714 -g1,14971:27190064,16950714 -k1,14972:32583029,16950714:2029657 -g1,14972:32583029,16950714 -) -v1,14974:6630773,18141180:0,393216,0 -(1,14979:6630773,19116163:25952256,1368199,196608 -g1,14979:6630773,19116163 -g1,14979:6630773,19116163 -g1,14979:6434165,19116163 -(1,14979:6434165,19116163:0,1368199,196608 -r1,15004:32779637,19116163:26345472,1564807,196608 -k1,14979:6434165,19116163:-26345472 -) -(1,14979:6434165,19116163:26345472,1368199,196608 -[1,14979:6630773,19116163:25952256,1171591,0 -(1,14976:6630773,18348798:25952256,404226,107478 -(1,14975:6630773,18348798:0,0,0 -g1,14975:6630773,18348798 -g1,14975:6630773,18348798 -g1,14975:6303093,18348798 -(1,14975:6303093,18348798:0,0,0 -) -g1,14975:6630773,18348798 -) -k1,14976:6630773,18348798:0 -g1,14976:10740667,18348798 -g1,14976:12637542,18348798 -g1,14976:13269834,18348798 -g1,14976:17695874,18348798 -g1,14976:19592748,18348798 -g1,14976:20225040,18348798 -g1,14976:23386497,18348798 -h1,14976:23702643,18348798:0,0,0 -k1,14976:32583029,18348798:8880386 -g1,14976:32583029,18348798 -) -(1,14977:6630773,19014976:25952256,410518,101187 -h1,14977:6630773,19014976:0,0,0 -g1,14977:6946919,19014976 -g1,14977:7263065,19014976 -g1,14977:7579211,19014976 -g1,14977:7895357,19014976 -g1,14977:13585980,19014976 -g1,14977:14218272,19014976 -h1,14977:15166709,19014976:0,0,0 -k1,14977:32583029,19014976:17416320 -g1,14977:32583029,19014976 -) -] -) -g1,14979:32583029,19116163 -g1,14979:6630773,19116163 -g1,14979:6630773,19116163 -g1,14979:32583029,19116163 -g1,14979:32583029,19116163 -) -h1,14979:6630773,19312771:0,0,0 -(1,14982:6630773,30413084:25952256,10510489,0 -k1,14982:12599879,30413084:5969106 -h1,14981:12599879,30413084:0,0,0 -(1,14981:12599879,30413084:14014044,10510489,0 -(1,14981:12599879,30413084:14014019,10510515,0 -(1,14981:12599879,30413084:14014019,10510515,0 -(1,14981:12599879,30413084:0,10510515,0 -(1,14981:12599879,30413084:0,14208860,0 -(1,14981:12599879,30413084:18945146,14208860,0 -) -k1,14981:12599879,30413084:-18945146 -) -) -g1,14981:26613898,30413084 -) -) -) -g1,14982:26613923,30413084 -k1,14982:32583029,30413084:5969106 -) -v1,14989:6630773,31603550:0,393216,0 -(1,14994:6630773,32578533:25952256,1368199,196608 -g1,14994:6630773,32578533 -g1,14994:6630773,32578533 -g1,14994:6434165,32578533 -(1,14994:6434165,32578533:0,1368199,196608 -r1,15004:32779637,32578533:26345472,1564807,196608 -k1,14994:6434165,32578533:-26345472 -) -(1,14994:6434165,32578533:26345472,1368199,196608 -[1,14994:6630773,32578533:25952256,1171591,0 -(1,14991:6630773,31811168:25952256,404226,107478 -(1,14990:6630773,31811168:0,0,0 -g1,14990:6630773,31811168 -g1,14990:6630773,31811168 -g1,14990:6303093,31811168 -(1,14990:6303093,31811168:0,0,0 -) -g1,14990:6630773,31811168 -) -k1,14991:6630773,31811168:0 -g1,14991:10740667,31811168 -g1,14991:12637542,31811168 -g1,14991:13269834,31811168 -g1,14991:17695874,31811168 -g1,14991:19592748,31811168 -g1,14991:20225040,31811168 -g1,14991:23386497,31811168 -h1,14991:23702643,31811168:0,0,0 -k1,14991:32583029,31811168:8880386 -g1,14991:32583029,31811168 -) -(1,14992:6630773,32477346:25952256,410518,101187 -h1,14992:6630773,32477346:0,0,0 -g1,14992:6946919,32477346 -g1,14992:7263065,32477346 -g1,14992:7579211,32477346 -g1,14992:7895357,32477346 -g1,14992:13585980,32477346 -g1,14992:14218272,32477346 -h1,14992:15166709,32477346:0,0,0 -k1,14992:32583029,32477346:17416320 -g1,14992:32583029,32477346 -) -] -) -g1,14994:32583029,32578533 -g1,14994:6630773,32578533 -g1,14994:6630773,32578533 -g1,14994:32583029,32578533 -g1,14994:32583029,32578533 -) -h1,14994:6630773,32775141:0,0,0 -(1,14997:6630773,43875454:25952256,10510489,0 -k1,14997:12599879,43875454:5969106 -h1,14996:12599879,43875454:0,0,0 -(1,14996:12599879,43875454:14014044,10510489,0 -(1,14996:12599879,43875454:14014019,10510515,0 -(1,14996:12599879,43875454:14014019,10510515,0 -(1,14996:12599879,43875454:0,10510515,0 -(1,14996:12599879,43875454:0,14208860,0 -(1,14996:12599879,43875454:18945146,14208860,0 -) -k1,14996:12599879,43875454:-18945146 -) -) -g1,14996:26613898,43875454 -) -) -) -g1,14997:26613923,43875454 -k1,14997:32583029,43875454:5969106 -) -] -(1,15004:32583029,45706769:0,0,0 -g1,15004:32583029,45706769 -) -) -] -(1,15004:6630773,47279633:25952256,0,0 -h1,15004:6630773,47279633:25952256,0,0 -) -] -(1,15004:4262630,4025873:0,0,0 -[1,15004:-473656,4025873:0,0,0 -(1,15004:-473656,-710413:0,0,0 -(1,15004:-473656,-710413:0,0,0 -g1,15004:-473656,-710413 -) -g1,15004:-473656,-710413 -) -] -) -] -!8623 -}289 -Input:2325:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2326:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2327:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2328:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!379 -{290 -[1,15048:4262630,47279633:28320399,43253760,0 -(1,15048:4262630,4025873:0,0,0 -[1,15048:-473656,4025873:0,0,0 -(1,15048:-473656,-710413:0,0,0 -(1,15048:-473656,-644877:0,0,0 -k1,15048:-473656,-644877:-65536 -) -(1,15048:-473656,4736287:0,0,0 -k1,15048:-473656,4736287:5209943 -) -g1,15048:-473656,-710413 -) -] -) -[1,15048:6630773,47279633:25952256,43253760,0 -[1,15048:6630773,4812305:25952256,786432,0 -(1,15048:6630773,4812305:25952256,505283,126483 -(1,15048:6630773,4812305:25952256,505283,126483 -g1,15048:3078558,4812305 -[1,15048:3078558,4812305:0,0,0 -(1,15048:3078558,2439708:0,1703936,0 -k1,15048:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,15048:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,15048:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,15048:3078558,4812305:0,0,0 -(1,15048:3078558,2439708:0,1703936,0 -g1,15048:29030814,2439708 -g1,15048:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,15048:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,15048:37855564,2439708:1179648,16384,0 -) -) -k1,15048:3078556,2439708:-34777008 -) -] -[1,15048:3078558,4812305:0,0,0 -(1,15048:3078558,49800853:0,16384,2228224 -k1,15048:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,15048:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,15048:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,15048:3078558,4812305:0,0,0 -(1,15048:3078558,49800853:0,16384,2228224 -g1,15048:29030814,49800853 -g1,15048:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,15048:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,15048:37855564,49800853:1179648,16384,0 -) -) -k1,15048:3078556,49800853:-34777008 -) -] -g1,15048:6630773,4812305 -g1,15048:6630773,4812305 -g1,15048:9104757,4812305 -g1,15048:10491498,4812305 -g1,15048:12580130,4812305 -k1,15048:31387652,4812305:18807522 -) -) -] -[1,15048:6630773,45706769:25952256,40108032,0 -(1,15048:6630773,45706769:25952256,40108032,0 -(1,15048:6630773,45706769:0,0,0 -g1,15048:6630773,45706769 -) -[1,15048:6630773,45706769:25952256,40108032,0 -v1,15004:6630773,6254097:0,393216,0 -(1,15005:6630773,12814215:25952256,6953334,616038 -g1,15005:6630773,12814215 -(1,15005:6630773,12814215:25952256,6953334,616038 -(1,15005:6630773,13430253:25952256,7569372,0 -[1,15005:6630773,13430253:25952256,7569372,0 -(1,15005:6630773,13404039:25952256,7516944,0 -r1,15048:6656987,13404039:26214,7516944,0 -[1,15005:6656987,13404039:25899828,7516944,0 -(1,15005:6656987,12814215:25899828,6337296,0 -[1,15005:7246811,12814215:24720180,6337296,0 -(1,15005:7246811,7638804:24720180,1161885,196608 -(1,15004:7246811,7638804:0,1161885,196608 -r1,15048:8794447,7638804:1547636,1358493,196608 -k1,15004:7246811,7638804:-1547636 -) -(1,15004:7246811,7638804:1547636,1161885,196608 -) -k1,15004:9053618,7638804:259171 -k1,15004:9940624,7638804:259171 -k1,15004:11218880,7638804:259171 -k1,15004:12845133,7638804:259172 -k1,15004:13763596,7638804:259171 -k1,15004:16747754,7638804:259171 -k1,15004:18502457,7638804:259171 -k1,15004:21232991,7638804:259171 -k1,15004:23309475,7638804:259171 -k1,15004:27215725,7638804:259171 -k1,15004:28134189,7638804:259172 -$1,15004:28134189,7638804 -$1,15004:28686002,7638804 -k1,15004:28945173,7638804:259171 -k1,15004:30013714,7638804:259171 -$1,15004:30013714,7638804 -$1,15004:30516375,7638804 -k1,15004:30775546,7638804:259171 -k1,15004:31966991,7638804:0 -) -(1,15005:7246811,8480292:24720180,615216,138281 -k1,15004:8164420,8480292:258317 -$1,15004:8164420,8480292 -$1,15004:8667081,8480292 -k1,15004:8925397,8480292:258316 -k1,15004:9993084,8480292:258317 -$1,15004:9993084,8480292 -$1,15004:10544897,8480292 -k1,15004:10803214,8480292:258317 -k1,15004:11677568,8480292:258316 -k1,15004:13537585,8480292:258317 -k1,15004:15493284,8480292:258317 -k1,15004:17287109,8480292:258316 -k1,15004:20307769,8480292:258317 -k1,15004:22278542,8480292:258317 -k1,15004:24209337,8480292:258316 -k1,15004:25934350,8480292:258317 -k1,15004:26658628,8480292:258317 -$1,15004:26658628,8480292 -(1,15004:27152769,8205011:311689,339935,0 -) -$1,15004:27464458,8480292 -k1,15004:27722774,8480292:258316 -k1,15004:28512588,8480292:258317 -k1,15004:31966991,8480292:0 -) -(1,15005:7246811,9321780:24720180,505283,126483 -k1,15004:8807364,9321780:179709 -k1,15004:9518570,9321780:179709 -k1,15004:10881204,9321780:179709 -k1,15004:11712341,9321780:179709 -k1,15004:12911135,9321780:179709 -k1,15004:16830328,9321780:179709 -k1,15004:18294542,9321780:179708 -$1,15004:18294542,9321780 -$1,15004:18797203,9321780 -k1,15004:18976912,9321780:179709 -k1,15004:21167266,9321780:179709 -k1,15004:22338535,9321780:179709 -k1,15004:24829699,9321780:179709 -k1,15004:26865388,9321780:179709 -k1,15004:27979640,9321780:179709 -k1,15004:28842234,9321780:179709 -k1,15004:31966991,9321780:0 -) -(1,15005:7246811,10163268:24720180,505283,134348 -k1,15004:9856157,10163268:149124 -k1,15004:11785894,10163268:149124 -k1,15004:13004567,10163268:149125 -k1,15004:14219962,10163268:149124 -k1,15004:16679230,10163268:149124 -k1,15004:17479782,10163268:149124 -k1,15004:20123206,10163268:149124 -k1,15004:23271913,10163268:149124 -k1,15004:24318881,10163268:149125 -k1,15004:28375917,10163268:149124 -k1,15004:31350953,10163268:149124 -k1,15004:31966991,10163268:0 -) -(1,15005:7246811,11004756:24720180,505283,138281 -k1,15004:8426613,11004756:160717 -k1,15004:9976694,11004756:160718 -k1,15004:10668908,11004756:160717 -k1,15004:13648985,11004756:160718 -k1,15004:14461130,11004756:160717 -k1,15004:15369613,11004756:160717 -k1,15004:16146369,11004756:160718 -$1,15004:16146369,11004756 -$1,15004:16698182,11004756 -k1,15004:17032569,11004756:160717 -k1,15004:18243174,11004756:160718 -k1,15004:20943411,11004756:160717 -(1,15004:20943411,11004756:661914,485622,0 -) -k1,15004:21766042,11004756:160717 -k1,15004:22736130,11004756:160718 -k1,15004:24395000,11004756:160717 -(1,15004:24395000,11004756:661914,485622,0 -) -k1,15004:25217632,11004756:160718 -k1,15004:26061234,11004756:160717 -k1,15004:28572073,11004756:160718 -k1,15004:29088650,11004756:160717 -k1,15004:31966991,11004756:0 -) -(1,15005:7246811,11846244:24720180,513147,134348 -k1,15004:9072465,11846244:243615 -k1,15004:10809646,11846244:243615 -k1,15004:11739423,11846244:243615 -k1,15004:14376413,11846244:243615 -k1,15004:17350913,11846244:243615 -k1,15004:18518586,11846244:243615 -k1,15004:21155576,11846244:243615 -k1,15004:23711301,11846244:243615 -k1,15004:26564560,11846244:243615 -k1,15004:27999620,11846244:243615 -k1,15004:30199485,11846244:243615 -k1,15004:31966991,11846244:0 -) -(1,15005:7246811,12687732:24720180,513147,126483 -g1,15004:8461193,12687732 -g1,15004:11585949,12687732 -g1,15004:12732829,12687732 -g1,15004:16159051,12687732 -k1,15005:31966991,12687732:11827283 -g1,15005:31966991,12687732 -) -] -) -] -r1,15048:32583029,13404039:26214,7516944,0 -) -] -) -) -g1,15005:32583029,12814215 -) -h1,15005:6630773,13430253:0,0,0 -(1,15008:6630773,14796029:25952256,513147,126483 -h1,15007:6630773,14796029:983040,0,0 -k1,15007:9270509,14796029:177548 -k1,15007:10620496,14796029:177548 -k1,15007:14368444,14796029:177547 -k1,15007:17387633,14796029:177548 -k1,15007:20324247,14796029:177548 -k1,15007:21520880,14796029:177548 -k1,15007:23964008,14796029:177548 -k1,15007:24673053,14796029:177548 -k1,15007:25502028,14796029:177547 -k1,15007:27032239,14796029:177548 -$1,15007:27032239,14796029 -$1,15007:27534900,14796029 -k1,15007:27712448,14796029:177548 -k1,15007:28576158,14796029:177548 -k1,15007:32583029,14796029:0 -) -(1,15008:6630773,15637517:25952256,513147,138281 -k1,15007:8031731,15637517:209513 -$1,15007:8031731,15637517 -$1,15007:8583544,15637517 -k1,15007:8793058,15637517:209514 -k1,15007:9688733,15637517:209513 -k1,15007:13462750,15637517:209514 -k1,15007:15053107,15637517:209513 -k1,15007:17891925,15637517:209514 -k1,15007:18760730,15637517:209513 -k1,15007:21252863,15637517:209514 -k1,15007:23160414,15637517:209513 -k1,15007:27764117,15637517:209514 -k1,15007:28659792,15637517:209513 -k1,15007:29485344,15637517:209514 -k1,15007:31682564,15637517:209513 -k1,15008:32583029,15637517:0 -) -(1,15008:6630773,16479005:25952256,513147,138281 -k1,15007:8097966,16479005:220043 -k1,15007:9823372,16479005:220044 -$1,15007:9823372,16479005 -$1,15007:10326033,16479005 -k1,15007:10546076,16479005:220043 -k1,15007:11957564,16479005:220043 -$1,15007:11957564,16479005 -$1,15007:12509377,16479005 -k1,15007:12729420,16479005:220043 -k1,15007:16451708,16479005:220044 -k1,15007:17299586,16479005:220043 -k1,15007:18722870,16479005:220043 -k1,15007:20309995,16479005:220044 -k1,15007:23810770,16479005:220043 -(1,15007:23810770,16479005:0,452978,115847 -r1,15048:27686154,16479005:3875384,568825,115847 -k1,15007:23810770,16479005:-3875384 -) -(1,15007:23810770,16479005:3875384,452978,115847 -k1,15007:23810770,16479005:3277 -h1,15007:27682877,16479005:0,411205,112570 -) -k1,15007:27906197,16479005:220043 -k1,15007:29230522,16479005:220043 -k1,15007:30198332,16479005:220044 -k1,15007:31931601,16479005:220043 -k1,15007:32583029,16479005:0 -) -(1,15008:6630773,17320493:25952256,513147,138281 -g1,15007:9361658,17320493 -g1,15007:11446358,17320493 -g1,15007:12304879,17320493 -$1,15007:12304879,17320493 -$1,15007:12807540,17320493 -g1,15007:13006769,17320493 -g1,15007:13888883,17320493 -$1,15007:13888883,17320493 -$1,15007:14440696,17320493 -g1,15007:14639925,17320493 -g1,15007:15370651,17320493 -g1,15007:16588965,17320493 -g1,15007:20795065,17320493 -g1,15007:21677179,17320493 -g1,15007:25642107,17320493 -k1,15008:32583029,17320493:4255912 -g1,15008:32583029,17320493 -) -v1,15012:6630773,18510959:0,393216,0 -(1,15019:6630773,20818298:25952256,2700555,196608 -g1,15019:6630773,20818298 -g1,15019:6630773,20818298 -g1,15019:6434165,20818298 -(1,15019:6434165,20818298:0,2700555,196608 -r1,15048:32779637,20818298:26345472,2897163,196608 -k1,15019:6434165,20818298:-26345472 -) -(1,15019:6434165,20818298:26345472,2700555,196608 -[1,15019:6630773,20818298:25952256,2503947,0 -(1,15014:6630773,18718577:25952256,404226,107478 -(1,15013:6630773,18718577:0,0,0 -g1,15013:6630773,18718577 -g1,15013:6630773,18718577 -g1,15013:6303093,18718577 -(1,15013:6303093,18718577:0,0,0 -) -g1,15013:6630773,18718577 -) -k1,15014:6630773,18718577:0 -g1,15014:10740667,18718577 -g1,15014:16431290,18718577 -g1,15014:21173476,18718577 -h1,15014:21489622,18718577:0,0,0 -k1,15014:32583029,18718577:11093407 -g1,15014:32583029,18718577 -) -(1,15015:6630773,19384755:25952256,410518,101187 -h1,15015:6630773,19384755:0,0,0 -g1,15015:6946919,19384755 -g1,15015:7263065,19384755 -g1,15015:13269833,19384755 -g1,15015:13902125,19384755 -g1,15015:15799000,19384755 -g1,15015:18328166,19384755 -g1,15015:18960458,19384755 -g1,15015:19592750,19384755 -g1,15015:20225042,19384755 -g1,15015:21173479,19384755 -h1,15015:21489625,19384755:0,0,0 -k1,15015:32583029,19384755:11093404 -g1,15015:32583029,19384755 -) -(1,15016:6630773,20050933:25952256,404226,107478 -h1,15016:6630773,20050933:0,0,0 -g1,15016:6946919,20050933 -g1,15016:7263065,20050933 -g1,15016:11372959,20050933 -h1,15016:11689105,20050933:0,0,0 -k1,15016:32583029,20050933:20893924 -g1,15016:32583029,20050933 -) -(1,15017:6630773,20717111:25952256,410518,101187 -h1,15017:6630773,20717111:0,0,0 -g1,15017:6946919,20717111 -g1,15017:7263065,20717111 -g1,15017:13902126,20717111 -g1,15017:16115146,20717111 -g1,15017:16747438,20717111 -h1,15017:18960458,20717111:0,0,0 -k1,15017:32583029,20717111:13622571 -g1,15017:32583029,20717111 -) -] -) -g1,15019:32583029,20818298 -g1,15019:6630773,20818298 -g1,15019:6630773,20818298 -g1,15019:32583029,20818298 -g1,15019:32583029,20818298 -) -h1,15019:6630773,21014906:0,0,0 -(1,15022:6630773,30363398:25952256,8758668,0 -k1,15022:7928465,30363398:1297692 -h1,15021:7928465,30363398:0,0,0 -(1,15021:7928465,30363398:23356872,8758668,0 -(1,15021:7928465,30363398:23356506,8758690,0 -(1,15021:7928465,30363398:23356506,8758690,0 -(1,15021:7928465,30363398:0,8758690,0 -(1,15021:7928465,30363398:0,14208860,0 -(1,15021:7928465,30363398:37890292,14208860,0 -) -k1,15021:7928465,30363398:-37890292 -) -) -g1,15021:31284971,30363398 -) -) -) -g1,15022:31285337,30363398 -k1,15022:32583029,30363398:1297692 -) -(1,15029:6630773,31204886:25952256,505283,138281 -h1,15028:6630773,31204886:983040,0,0 -k1,15028:9303693,31204886:210732 -(1,15028:9303693,31204886:0,452978,115847 -r1,15048:15289348,31204886:5985655,568825,115847 -k1,15028:9303693,31204886:-5985655 -) -(1,15028:9303693,31204886:5985655,452978,115847 -g1,15028:13527512,31204886 -g1,15028:14230936,31204886 -h1,15028:15286071,31204886:0,411205,112570 -) -k1,15028:15500080,31204886:210732 -k1,15028:16579163,31204886:210731 -k1,15028:17804392,31204886:210732 -k1,15028:19299630,31204886:210732 -$1,15028:19299630,31204886 -$1,15028:19851443,31204886 -k1,15028:20062175,31204886:210732 -k1,15028:20804403,31204886:210731 -k1,15028:22034220,31204886:210732 -k1,15028:26251823,31204886:210732 -k1,15028:29147565,31204886:210732 -k1,15028:29986131,31204886:210731 -k1,15028:31215948,31204886:210732 -k1,15028:32583029,31204886:0 -) -(1,15029:6630773,32046374:25952256,513147,138281 -g1,15028:7497158,32046374 -(1,15028:7497158,32046374:0,452978,122846 -r1,15048:12075966,32046374:4578808,575824,122846 -k1,15028:7497158,32046374:-4578808 -) -(1,15028:7497158,32046374:4578808,452978,122846 -k1,15028:7497158,32046374:3277 -h1,15028:12072689,32046374:0,411205,112570 -) -g1,15028:12275195,32046374 -g1,15028:13677665,32046374 -g1,15028:15945210,32046374 -g1,15028:19150575,32046374 -g1,15028:22388708,32046374 -$1,15028:22388708,32046374 -$1,15028:22891369,32046374 -g1,15028:23090598,32046374 -g1,15028:24481272,32046374 -$1,15028:24481272,32046374 -$1,15028:25033085,32046374 -g1,15028:25232314,32046374 -g1,15028:26047581,32046374 -(1,15028:26047581,32046374:0,459977,115847 -r1,15048:28516118,32046374:2468537,575824,115847 -k1,15028:26047581,32046374:-2468537 -) -(1,15028:26047581,32046374:2468537,459977,115847 -k1,15028:26047581,32046374:3277 -h1,15028:28512841,32046374:0,411205,112570 -) -k1,15029:32583029,32046374:3893241 -g1,15029:32583029,32046374 -) -v1,15031:6630773,33236840:0,393216,0 -(1,15038:6630773,35544179:25952256,2700555,196608 -g1,15038:6630773,35544179 -g1,15038:6630773,35544179 -g1,15038:6434165,35544179 -(1,15038:6434165,35544179:0,2700555,196608 -r1,15048:32779637,35544179:26345472,2897163,196608 -k1,15038:6434165,35544179:-26345472 -) -(1,15038:6434165,35544179:26345472,2700555,196608 -[1,15038:6630773,35544179:25952256,2503947,0 -(1,15033:6630773,33444458:25952256,404226,107478 -(1,15032:6630773,33444458:0,0,0 -g1,15032:6630773,33444458 -g1,15032:6630773,33444458 -g1,15032:6303093,33444458 -(1,15032:6303093,33444458:0,0,0 -) -g1,15032:6630773,33444458 -) -k1,15033:6630773,33444458:0 -g1,15033:10740667,33444458 -g1,15033:16431290,33444458 -g1,15033:21173476,33444458 -h1,15033:21489622,33444458:0,0,0 -k1,15033:32583029,33444458:11093407 -g1,15033:32583029,33444458 -) -(1,15034:6630773,34110636:25952256,410518,101187 -h1,15034:6630773,34110636:0,0,0 -g1,15034:6946919,34110636 -g1,15034:7263065,34110636 -g1,15034:7579211,34110636 -g1,15034:7895357,34110636 -g1,15034:13902125,34110636 -g1,15034:14534417,34110636 -g1,15034:16431292,34110636 -g1,15034:18960458,34110636 -g1,15034:19592750,34110636 -g1,15034:20225042,34110636 -g1,15034:20857334,34110636 -g1,15034:21805772,34110636 -g1,15034:25599520,34110636 -g1,15034:26231812,34110636 -g1,15034:27812541,34110636 -h1,15034:28128687,34110636:0,0,0 -k1,15034:32583029,34110636:4454342 -g1,15034:32583029,34110636 -) -(1,15035:6630773,34776814:25952256,404226,107478 -h1,15035:6630773,34776814:0,0,0 -g1,15035:6946919,34776814 -g1,15035:7263065,34776814 -g1,15035:7579211,34776814 -g1,15035:7895357,34776814 -g1,15035:12005251,34776814 -h1,15035:12321397,34776814:0,0,0 -k1,15035:32583029,34776814:20261632 -g1,15035:32583029,34776814 -) -(1,15036:6630773,35442992:25952256,410518,101187 -h1,15036:6630773,35442992:0,0,0 -g1,15036:6946919,35442992 -g1,15036:7263065,35442992 -g1,15036:7579211,35442992 -g1,15036:7895357,35442992 -g1,15036:14534418,35442992 -g1,15036:16747438,35442992 -g1,15036:17379730,35442992 -h1,15036:19592750,35442992:0,0,0 -k1,15036:32583029,35442992:12990279 -g1,15036:32583029,35442992 -) -] -) -g1,15038:32583029,35544179 -g1,15038:6630773,35544179 -g1,15038:6630773,35544179 -g1,15038:32583029,35544179 -g1,15038:32583029,35544179 -) -h1,15038:6630773,35740787:0,0,0 -(1,15041:6630773,45089279:25952256,8758668,0 -k1,15041:7928465,45089279:1297692 -h1,15040:7928465,45089279:0,0,0 -(1,15040:7928465,45089279:23356872,8758668,0 -(1,15040:7928465,45089279:23356506,8758690,0 -(1,15040:7928465,45089279:23356506,8758690,0 -(1,15040:7928465,45089279:0,8758690,0 -(1,15040:7928465,45089279:0,14208860,0 -(1,15040:7928465,45089279:37890292,14208860,0 -) -k1,15040:7928465,45089279:-37890292 -) -) -g1,15040:31284971,45089279 -) -) -) -g1,15041:31285337,45089279 -k1,15041:32583029,45089279:1297692 -) -] -(1,15048:32583029,45706769:0,0,0 -g1,15048:32583029,45706769 -) -) -] -(1,15048:6630773,47279633:25952256,0,0 -h1,15048:6630773,47279633:25952256,0,0 -) -] -(1,15048:4262630,4025873:0,0,0 -[1,15048:-473656,4025873:0,0,0 -(1,15048:-473656,-710413:0,0,0 -(1,15048:-473656,-710413:0,0,0 -g1,15048:-473656,-710413 -) -g1,15048:-473656,-710413 -) -] -) -] -!17946 -}290 -Input:2329:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2330:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2331:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2332:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2333:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2334:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2335:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2336:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!748 -{291 -[1,15089:4262630,47279633:28320399,43253760,0 -(1,15089:4262630,4025873:0,0,0 -[1,15089:-473656,4025873:0,0,0 -(1,15089:-473656,-710413:0,0,0 -(1,15089:-473656,-644877:0,0,0 -k1,15089:-473656,-644877:-65536 -) -(1,15089:-473656,4736287:0,0,0 -k1,15089:-473656,4736287:5209943 -) -g1,15089:-473656,-710413 -) -] -) -[1,15089:6630773,47279633:25952256,43253760,0 -[1,15089:6630773,4812305:25952256,786432,0 -(1,15089:6630773,4812305:25952256,513147,134348 -(1,15089:6630773,4812305:25952256,513147,134348 -g1,15089:3078558,4812305 -[1,15089:3078558,4812305:0,0,0 -(1,15089:3078558,2439708:0,1703936,0 -k1,15089:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,15089:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,15089:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,15089:3078558,4812305:0,0,0 -(1,15089:3078558,2439708:0,1703936,0 -g1,15089:29030814,2439708 -g1,15089:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,15089:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,15089:37855564,2439708:1179648,16384,0 -) -) -k1,15089:3078556,2439708:-34777008 -) -] -[1,15089:3078558,4812305:0,0,0 -(1,15089:3078558,49800853:0,16384,2228224 -k1,15089:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,15089:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,15089:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,15089:3078558,4812305:0,0,0 -(1,15089:3078558,49800853:0,16384,2228224 -g1,15089:29030814,49800853 -g1,15089:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,15089:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,15089:37855564,49800853:1179648,16384,0 -) -) -k1,15089:3078556,49800853:-34777008 -) -] -g1,15089:6630773,4812305 -k1,15089:25712890,4812305:17886740 -g1,15089:29057847,4812305 -g1,15089:29873114,4812305 -) -) -] -[1,15089:6630773,45706769:25952256,40108032,0 -(1,15089:6630773,45706769:25952256,40108032,0 -(1,15089:6630773,45706769:0,0,0 -g1,15089:6630773,45706769 -) -[1,15089:6630773,45706769:25952256,40108032,0 -v1,15048:6630773,6254097:0,393216,0 -(1,15067:6630773,25980975:25952256,20120094,616038 -g1,15067:6630773,25980975 -(1,15067:6630773,25980975:25952256,20120094,616038 -(1,15067:6630773,26597013:25952256,20736132,0 -[1,15067:6630773,26597013:25952256,20736132,0 -(1,15067:6630773,26570799:25952256,20683704,0 -r1,15089:6656987,26570799:26214,20683704,0 -[1,15067:6656987,26570799:25899828,20683704,0 -(1,15067:6656987,25980975:25899828,19504056,0 -[1,15067:7246811,25980975:24720180,19504056,0 -(1,15049:7246811,7638804:24720180,1161885,196608 -(1,15048:7246811,7638804:0,1161885,196608 -r1,15089:8794447,7638804:1547636,1358493,196608 -k1,15048:7246811,7638804:-1547636 -) -(1,15048:7246811,7638804:1547636,1161885,196608 -) -k1,15048:9117219,7638804:322772 -k1,15048:12037183,7638804:322772 -k1,15048:13379040,7638804:322772 -k1,15048:17228304,7638804:322772 -k1,15048:18210368,7638804:322772 -k1,15048:19810437,7638804:322772 -k1,15048:22021301,7638804:322772 -k1,15048:23738024,7638804:322772 -(1,15048:23738024,7638804:0,452978,115847 -r1,15089:29723679,7638804:5985655,568825,115847 -k1,15048:23738024,7638804:-5985655 -) -(1,15048:23738024,7638804:5985655,452978,115847 -g1,15048:27961843,7638804 -g1,15048:28665267,7638804 -h1,15048:29720402,7638804:0,411205,112570 -) -k1,15048:30046451,7638804:322772 -k1,15048:30900720,7638804:322772 -k1,15048:31966991,7638804:0 -) -(1,15049:7246811,8480292:24720180,513147,134348 -k1,15048:10728191,8480292:176399 -k1,15048:11556018,8480292:176399 -k1,15048:14199848,8480292:176399 -k1,15048:15395332,8480292:176399 -k1,15048:17454580,8480292:176399 -k1,15048:18908275,8480292:176398 -k1,15048:20478625,8480292:176399 -(1,15048:20478625,8480292:0,459977,115847 -r1,15089:24705721,8480292:4227096,575824,115847 -k1,15048:20478625,8480292:-4227096 -) -(1,15048:20478625,8480292:4227096,459977,115847 -k1,15048:20478625,8480292:3277 -h1,15048:24702444,8480292:0,411205,112570 -) -k1,15048:25055790,8480292:176399 -k1,15048:25860024,8480292:176399 -k1,15048:27055508,8480292:176399 -k1,15048:28538040,8480292:176399 -k1,15048:30081520,8480292:176399 -k1,15048:31966991,8480292:0 -) -(1,15049:7246811,9321780:24720180,513147,134348 -k1,15048:8673792,9321780:174588 -k1,15048:9379877,9321780:174588 -k1,15048:13053432,9321780:174588 -k1,15048:17234891,9321780:174588 -k1,15048:18357130,9321780:174588 -k1,15048:22595604,9321780:174587 -k1,15048:25341169,9321780:174588 -k1,15048:26587926,9321780:174588 -k1,15048:27828785,9321780:174588 -k1,15048:29022458,9321780:174588 -k1,15048:31966991,9321780:0 -) -(1,15049:7246811,10163268:24720180,513147,138281 -k1,15048:8145309,10163268:239206 -k1,15048:9403601,10163268:239207 -k1,15048:11041345,10163268:239206 -k1,15048:11896590,10163268:239207 -k1,15048:13154881,10163268:239206 -k1,15048:14845055,10163268:239207 -k1,15048:16773779,10163268:239206 -k1,15048:17629024,10163268:239207 -k1,15048:18887315,10163268:239206 -k1,15048:21367853,10163268:239207 -k1,15048:22974140,10163268:239206 -k1,15048:24232432,10163268:239207 -k1,15048:27085869,10163268:239206 -k1,15048:27984368,10163268:239207 -k1,15048:29242659,10163268:239206 -$1,15048:29242659,10163268 -$1,15048:29745320,10163268 -k1,15048:29984527,10163268:239207 -k1,15048:31415178,10163268:239206 -$1,15048:31415178,10163268 -$1,15048:31966991,10163268 -k1,15049:31966991,10163268:0 -) -(1,15049:7246811,11004756:24720180,513147,126483 -k1,15048:8816304,11004756:170955 -k1,15048:9603298,11004756:170956 -k1,15048:10793338,11004756:170955 -k1,15048:12241590,11004756:170955 -k1,15048:12944042,11004756:170955 -k1,15048:16105406,11004756:170956 -k1,15048:17199763,11004756:170955 -k1,15048:19068756,11004756:170955 -k1,15048:22977886,11004756:170956 -k1,15048:24140401,11004756:170955 -k1,15048:26556619,11004756:170955 -k1,15048:27746659,11004756:170955 -$1,15048:27746659,11004756 -$1,15048:28249320,11004756 -k1,15048:28420276,11004756:170956 -k1,15048:31435494,11004756:170955 -k1,15048:31966991,11004756:0 -) -(1,15049:7246811,11846244:24720180,505283,138281 -k1,15048:9743592,11846244:194501 -k1,15048:10747464,11846244:194502 -k1,15048:11961050,11846244:194501 -k1,15048:14501085,11846244:194501 -k1,15048:15947979,11846244:194501 -k1,15048:17333926,11846244:194502 -k1,15048:18547512,11846244:194501 -$1,15048:18547512,11846244 -$1,15048:19099325,11846244 -k1,15048:19293826,11846244:194501 -k1,15048:22332591,11846244:194502 -k1,15048:23336462,11846244:194501 -k1,15048:24550048,11846244:194501 -k1,15048:28060671,11846244:194501 -k1,15048:29681236,11846244:194502 -k1,15048:30947906,11846244:194501 -k1,15048:31966991,11846244:0 -) -(1,15049:7246811,12687732:24720180,513147,126483 -k1,15048:8660659,12687732:178494 -k1,15048:9498445,12687732:178494 -k1,15048:10696025,12687732:178495 -k1,15048:13385859,12687732:178494 -k1,15048:16149748,12687732:178494 -k1,15048:16979670,12687732:178494 -k1,15048:18177250,12687732:178495 -(1,15048:18177250,12687732:0,414482,115847 -r1,15089:18535516,12687732:358266,530329,115847 -k1,15048:18177250,12687732:-358266 -) -(1,15048:18177250,12687732:358266,414482,115847 -k1,15048:18177250,12687732:3277 -h1,15048:18532239,12687732:0,411205,112570 -) -k1,15048:18714010,12687732:178494 -k1,15048:21736767,12687732:178494 -k1,15048:24473131,12687732:178494 -k1,15048:25337788,12687732:178495 -k1,15048:29281981,12687732:178494 -k1,15049:31966991,12687732:0 -k1,15049:31966991,12687732:0 -) -v1,15051:7246811,13878198:0,393216,0 -(1,15059:7246811,16851715:24720180,3366733,196608 -g1,15059:7246811,16851715 -g1,15059:7246811,16851715 -g1,15059:7050203,16851715 -(1,15059:7050203,16851715:0,3366733,196608 -r1,15089:32163599,16851715:25113396,3563341,196608 -k1,15059:7050203,16851715:-25113396 -) -(1,15059:7050203,16851715:25113396,3366733,196608 -[1,15059:7246811,16851715:24720180,3170125,0 -(1,15053:7246811,14085816:24720180,404226,107478 -(1,15052:7246811,14085816:0,0,0 -g1,15052:7246811,14085816 -g1,15052:7246811,14085816 -g1,15052:6919131,14085816 -(1,15052:6919131,14085816:0,0,0 -) -g1,15052:7246811,14085816 -) -k1,15053:7246811,14085816:0 -g1,15053:11356705,14085816 -g1,15053:17047328,14085816 -g1,15053:21789514,14085816 -h1,15053:22105660,14085816:0,0,0 -k1,15053:31966991,14085816:9861331 -g1,15053:31966991,14085816 -) -(1,15054:7246811,14751994:24720180,410518,101187 -h1,15054:7246811,14751994:0,0,0 -g1,15054:7562957,14751994 -g1,15054:7879103,14751994 -g1,15054:8195249,14751994 -g1,15054:8511395,14751994 -g1,15054:14518163,14751994 -g1,15054:15150455,14751994 -g1,15054:17047330,14751994 -g1,15054:19576496,14751994 -g1,15054:20208788,14751994 -g1,15054:20841080,14751994 -g1,15054:21473372,14751994 -g1,15054:22421809,14751994 -h1,15054:22737955,14751994:0,0,0 -k1,15054:31966991,14751994:9229036 -g1,15054:31966991,14751994 -) -(1,15055:7246811,15418172:24720180,404226,107478 -h1,15055:7246811,15418172:0,0,0 -g1,15055:7562957,15418172 -g1,15055:7879103,15418172 -g1,15055:8195249,15418172 -g1,15055:8511395,15418172 -g1,15055:12621289,15418172 -h1,15055:12937435,15418172:0,0,0 -k1,15055:31966991,15418172:19029556 -g1,15055:31966991,15418172 -) -(1,15056:7246811,16084350:24720180,410518,101187 -h1,15056:7246811,16084350:0,0,0 -g1,15056:7562957,16084350 -g1,15056:7879103,16084350 -g1,15056:8195249,16084350 -g1,15056:8511395,16084350 -g1,15056:12621289,16084350 -h1,15056:12937435,16084350:0,0,0 -k1,15056:31966991,16084350:19029556 -g1,15056:31966991,16084350 -) -(1,15057:7246811,16750528:24720180,410518,101187 -h1,15057:7246811,16750528:0,0,0 -g1,15057:7562957,16750528 -g1,15057:7879103,16750528 -g1,15057:8195249,16750528 -g1,15057:8511395,16750528 -g1,15057:15150456,16750528 -g1,15057:17363476,16750528 -g1,15057:17995768,16750528 -h1,15057:20208788,16750528:0,0,0 -k1,15057:31966991,16750528:11758203 -g1,15057:31966991,16750528 -) -] -) -g1,15059:31966991,16851715 -g1,15059:7246811,16851715 -g1,15059:7246811,16851715 -g1,15059:31966991,16851715 -g1,15059:31966991,16851715 -) -h1,15059:7246811,17048323:0,0,0 -(1,15062:7246811,25980975:24720180,8342828,0 -k1,15062:8482896,25980975:1236085 -h1,15061:8482896,25980975:0,0,0 -(1,15061:8482896,25980975:22248011,8342828,0 -(1,15061:8482896,25980975:22247595,8342848,0 -(1,15061:8482896,25980975:22247595,8342848,0 -(1,15061:8482896,25980975:0,8342848,0 -(1,15061:8482896,25980975:0,14208860,0 -(1,15061:8482896,25980975:37890292,14208860,0 -) -k1,15061:8482896,25980975:-37890292 -) -) -g1,15061:30730491,25980975 -) -) -) -g1,15062:30730907,25980975 -k1,15062:31966991,25980975:1236084 -) -] -) -] -r1,15089:32583029,26570799:26214,20683704,0 -) -] -) -) -g1,15067:32583029,25980975 -) -h1,15067:6630773,26597013:0,0,0 -(1,15070:6630773,27962789:25952256,513147,134348 -h1,15069:6630773,27962789:983040,0,0 -k1,15069:8404996,27962789:163348 -k1,15069:11148497,27962789:163349 -k1,15069:14359269,27962789:163349 -k1,15069:17063448,27962789:163348 -$1,15069:17063448,27962789 -$1,15069:17631645,27962789 -k1,15069:17794993,27962789:163348 -k1,15069:19708153,27962789:163349 -k1,15069:22724940,27962789:163349 -k1,15069:25109959,27962789:163348 -k1,15069:25924735,27962789:163348 -k1,15069:28075791,27962789:163349 -k1,15069:30173763,27962789:163349 -k1,15069:31812326,27962789:163348 -k1,15070:32583029,27962789:0 -) -(1,15070:6630773,28804277:25952256,513147,134348 -(1,15069:6630773,28804277:0,452978,115847 -r1,15089:10506157,28804277:3875384,568825,115847 -k1,15069:6630773,28804277:-3875384 -) -(1,15069:6630773,28804277:3875384,452978,115847 -k1,15069:6630773,28804277:3277 -h1,15069:10502880,28804277:0,411205,112570 -) -k1,15069:10748559,28804277:242402 -k1,15069:14271693,28804277:242402 -k1,15069:15200257,28804277:242402 -k1,15069:17186572,28804277:242402 -k1,15069:18996595,28804277:242402 -k1,15069:21819148,28804277:242401 -k1,15069:24890083,28804277:242402 -k1,15069:26121423,28804277:242402 -k1,15069:27435994,28804277:242402 -k1,15069:28294434,28804277:242402 -k1,15069:31202841,28804277:242402 -k1,15069:32583029,28804277:0 -) -(1,15070:6630773,29645765:25952256,513147,138281 -k1,15069:8882631,29645765:203858 -k1,15069:11960244,29645765:203859 -k1,15069:14082996,29645765:203858 -$1,15069:14082996,29645765 -$1,15069:14585657,29645765 -k1,15069:14789516,29645765:203859 -k1,15069:15524871,29645765:203858 -k1,15069:16538099,29645765:203858 -k1,15069:17761043,29645765:203859 -k1,15069:18915173,29645765:203858 -k1,15069:20310477,29645765:203859 -$1,15069:20310477,29645765 -$1,15069:20862290,29645765 -k1,15069:21066148,29645765:203858 -k1,15069:22079376,29645765:203858 -k1,15069:23302320,29645765:203859 -k1,15069:24713351,29645765:203858 -k1,15069:26410776,29645765:203859 -k1,15069:27300796,29645765:203858 -(1,15069:27300796,29645765:0,459977,115847 -r1,15089:32583029,29645765:5282233,575824,115847 -k1,15069:27300796,29645765:-5282233 -) -(1,15069:27300796,29645765:5282233,459977,115847 -g1,15069:30117768,29645765 -g1,15069:30821192,29645765 -g1,15069:31524616,29645765 -g1,15069:32228040,29645765 -h1,15069:32579752,29645765:0,411205,112570 -) -k1,15069:32583029,29645765:0 -) -(1,15070:6630773,30487253:25952256,513147,134348 -k1,15069:9989329,30487253:285573 -k1,15069:10630762,30487253:285573 -k1,15069:13000380,30487253:285573 -k1,15069:16566685,30487253:285573 -k1,15069:18246209,30487253:285573 -k1,15069:19450597,30487253:285573 -k1,15069:21723877,30487253:285573 -k1,15069:23944073,30487253:285573 -k1,15069:27429114,30487253:285573 -k1,15069:28342522,30487253:285573 -k1,15069:29647180,30487253:285573 -k1,15069:31316873,30487253:285573 -k1,15069:32583029,30487253:0 -) -(1,15070:6630773,31328741:25952256,513147,126483 -k1,15069:7571531,31328741:281466 -k1,15069:10844716,31328741:281466 -k1,15069:11994535,31328741:281467 -k1,15069:13368486,31328741:281466 -(1,15069:13368486,31328741:0,452978,115847 -r1,15089:19002429,31328741:5633943,568825,115847 -k1,15069:13368486,31328741:-5633943 -) -(1,15069:13368486,31328741:5633943,452978,115847 -k1,15069:13368486,31328741:3277 -h1,15069:18999152,31328741:0,411205,112570 -) -k1,15069:19457565,31328741:281466 -k1,15069:20366866,31328741:281466 -k1,15069:21667418,31328741:281467 -k1,15069:23255017,31328741:281466 -k1,15069:26197900,31328741:281466 -k1,15069:27095404,31328741:281466 -k1,15069:28580112,31328741:281467 -k1,15069:30301404,31328741:281466 -k1,15069:31601955,31328741:281466 -k1,15070:32583029,31328741:0 -) -(1,15070:6630773,32170229:25952256,513147,126483 -k1,15069:8448620,32170229:320349 -(1,15069:8448620,32170229:0,459977,115847 -r1,15089:13730853,32170229:5282233,575824,115847 -k1,15069:8448620,32170229:-5282233 -) -(1,15069:8448620,32170229:5282233,459977,115847 -g1,15069:11265592,32170229 -g1,15069:11969016,32170229 -g1,15069:12672440,32170229 -g1,15069:13375864,32170229 -h1,15069:13727576,32170229:0,411205,112570 -) -k1,15069:14051202,32170229:320349 -k1,15069:14903048,32170229:320349 -k1,15069:16910294,32170229:320349 -k1,15069:18920161,32170229:320349 -k1,15069:19856547,32170229:320348 -k1,15069:21195981,32170229:320349 -k1,15069:23757661,32170229:320349 -k1,15069:26739427,32170229:320349 -k1,15069:27928128,32170229:320349 -k1,15069:29685682,32170229:320349 -k1,15070:32583029,32170229:0 -) -(1,15070:6630773,33011717:25952256,513147,134348 -(1,15069:6630773,33011717:0,459977,115847 -r1,15089:11913006,33011717:5282233,575824,115847 -k1,15069:6630773,33011717:-5282233 -) -(1,15069:6630773,33011717:5282233,459977,115847 -g1,15069:9447745,33011717 -g1,15069:10151169,33011717 -g1,15069:10854593,33011717 -g1,15069:11558017,33011717 -h1,15069:11909729,33011717:0,411205,112570 -) -k1,15069:12129764,33011717:216758 -k1,15069:12997949,33011717:216757 -k1,15069:14843277,33011717:216758 -k1,15069:16079119,33011717:216757 -k1,15069:18763308,33011717:216758 -k1,15069:19639358,33011717:216758 -k1,15069:20875200,33011717:216757 -k1,15069:22804414,33011717:216758 -k1,15069:25182548,33011717:216757 -k1,15069:26228336,33011717:216758 -k1,15069:28160826,33011717:216757 -k1,15069:29396669,33011717:216758 -k1,15069:32583029,33011717:0 -) -(1,15070:6630773,33853205:25952256,505283,134348 -g1,15069:8533938,33853205 -g1,15069:9601519,33853205 -g1,15069:11078045,33853205 -g1,15069:12743970,33853205 -g1,15069:14755925,33853205 -g1,15069:18602233,33853205 -g1,15069:19610832,33853205 -g1,15069:20829146,33853205 -g1,15069:22681848,33853205 -k1,15070:32583029,33853205:8119912 -g1,15070:32583029,33853205 -) -v1,15072:6630773,35043671:0,393216,0 -(1,15080:6630773,38017188:25952256,3366733,196608 -g1,15080:6630773,38017188 -g1,15080:6630773,38017188 -g1,15080:6434165,38017188 -(1,15080:6434165,38017188:0,3366733,196608 -r1,15089:32779637,38017188:26345472,3563341,196608 -k1,15080:6434165,38017188:-26345472 -) -(1,15080:6434165,38017188:26345472,3366733,196608 -[1,15080:6630773,38017188:25952256,3170125,0 -(1,15074:6630773,35251289:25952256,404226,107478 -(1,15073:6630773,35251289:0,0,0 -g1,15073:6630773,35251289 -g1,15073:6630773,35251289 -g1,15073:6303093,35251289 -(1,15073:6303093,35251289:0,0,0 -) -g1,15073:6630773,35251289 -) -k1,15074:6630773,35251289:0 -g1,15074:10740667,35251289 -g1,15074:16431290,35251289 -g1,15074:21173476,35251289 -h1,15074:21489622,35251289:0,0,0 -k1,15074:32583029,35251289:11093407 -g1,15074:32583029,35251289 -) -(1,15075:6630773,35917467:25952256,404226,101187 -h1,15075:6630773,35917467:0,0,0 -g1,15075:6946919,35917467 -g1,15075:7263065,35917467 -g1,15075:7579211,35917467 -g1,15075:7895357,35917467 -g1,15075:13269834,35917467 -h1,15075:13585980,35917467:0,0,0 -k1,15075:32583028,35917467:18997048 -g1,15075:32583028,35917467 -) -(1,15076:6630773,36583645:25952256,410518,101187 -h1,15076:6630773,36583645:0,0,0 -g1,15076:6946919,36583645 -g1,15076:7263065,36583645 -g1,15076:7579211,36583645 -g1,15076:7895357,36583645 -g1,15076:15166709,36583645 -g1,15076:15799001,36583645 -g1,15076:16431293,36583645 -g1,15076:17063585,36583645 -g1,15076:18012023,36583645 -g1,15076:19908897,36583645 -g1,15076:20541189,36583645 -g1,15076:22754209,36583645 -g1,15076:24334938,36583645 -g1,15076:24967230,36583645 -g1,15076:28128687,36583645 -h1,15076:28444833,36583645:0,0,0 -k1,15076:32583029,36583645:4138196 -g1,15076:32583029,36583645 -) -(1,15077:6630773,37249823:25952256,404226,107478 -h1,15077:6630773,37249823:0,0,0 -g1,15077:6946919,37249823 -g1,15077:7263065,37249823 -g1,15077:7579211,37249823 -g1,15077:7895357,37249823 -g1,15077:12005251,37249823 -h1,15077:12321397,37249823:0,0,0 -k1,15077:32583029,37249823:20261632 -g1,15077:32583029,37249823 -) -(1,15078:6630773,37916001:25952256,410518,101187 -h1,15078:6630773,37916001:0,0,0 -g1,15078:6946919,37916001 -g1,15078:7263065,37916001 -g1,15078:7579211,37916001 -g1,15078:7895357,37916001 -g1,15078:14534418,37916001 -g1,15078:16747438,37916001 -g1,15078:17379730,37916001 -h1,15078:19592750,37916001:0,0,0 -k1,15078:32583029,37916001:12990279 -g1,15078:32583029,37916001 -) -] -) -g1,15080:32583029,38017188 -g1,15080:6630773,38017188 -g1,15080:6630773,38017188 -g1,15080:32583029,38017188 -g1,15080:32583029,38017188 -) -h1,15080:6630773,38213796:0,0,0 -] -(1,15089:32583029,45706769:0,0,0 -g1,15089:32583029,45706769 -) -) -] -(1,15089:6630773,47279633:25952256,0,0 -h1,15089:6630773,47279633:25952256,0,0 -) -] -(1,15089:4262630,4025873:0,0,0 -[1,15089:-473656,4025873:0,0,0 -(1,15089:-473656,-710413:0,0,0 -(1,15089:-473656,-710413:0,0,0 -g1,15089:-473656,-710413 -) -g1,15089:-473656,-710413 -) -] -) -] -!19898 -}291 -Input:2337:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2338:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2339:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2340:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2341:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2342:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2343:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2344:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2345:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!840 -{292 -[1,15128:4262630,47279633:28320399,43253760,0 -(1,15128:4262630,4025873:0,0,0 -[1,15128:-473656,4025873:0,0,0 -(1,15128:-473656,-710413:0,0,0 -(1,15128:-473656,-644877:0,0,0 -k1,15128:-473656,-644877:-65536 -) -(1,15128:-473656,4736287:0,0,0 -k1,15128:-473656,4736287:5209943 -) -g1,15128:-473656,-710413 -) -] -) -[1,15128:6630773,47279633:25952256,43253760,0 -[1,15128:6630773,4812305:25952256,786432,0 -(1,15128:6630773,4812305:25952256,505283,126483 -(1,15128:6630773,4812305:25952256,505283,126483 -g1,15128:3078558,4812305 -[1,15128:3078558,4812305:0,0,0 -(1,15128:3078558,2439708:0,1703936,0 -k1,15128:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,15128:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,15128:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,15128:3078558,4812305:0,0,0 -(1,15128:3078558,2439708:0,1703936,0 -g1,15128:29030814,2439708 -g1,15128:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,15128:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,15128:37855564,2439708:1179648,16384,0 -) -) -k1,15128:3078556,2439708:-34777008 -) -] -[1,15128:3078558,4812305:0,0,0 -(1,15128:3078558,49800853:0,16384,2228224 -k1,15128:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,15128:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,15128:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,15128:3078558,4812305:0,0,0 -(1,15128:3078558,49800853:0,16384,2228224 -g1,15128:29030814,49800853 -g1,15128:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,15128:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,15128:37855564,49800853:1179648,16384,0 -) -) -k1,15128:3078556,49800853:-34777008 -) -] -g1,15128:6630773,4812305 -g1,15128:6630773,4812305 -g1,15128:9104757,4812305 -g1,15128:10491498,4812305 -g1,15128:12580130,4812305 -k1,15128:31387652,4812305:18807522 -) -) -] -[1,15128:6630773,45706769:25952256,40108032,0 -(1,15128:6630773,45706769:25952256,40108032,0 -(1,15128:6630773,45706769:0,0,0 -g1,15128:6630773,45706769 -) -[1,15128:6630773,45706769:25952256,40108032,0 -(1,15083:6630773,14357405:25952256,8758668,0 -k1,15083:7928465,14357405:1297692 -h1,15082:7928465,14357405:0,0,0 -(1,15082:7928465,14357405:23356872,8758668,0 -(1,15082:7928465,14357405:23356506,8758690,0 -(1,15082:7928465,14357405:23356506,8758690,0 -(1,15082:7928465,14357405:0,8758690,0 -(1,15082:7928465,14357405:0,14208860,0 -(1,15082:7928465,14357405:37890292,14208860,0 -) -k1,15082:7928465,14357405:-37890292 -) -) -g1,15082:31284971,14357405 -) -) -) -g1,15083:31285337,14357405 -k1,15083:32583029,14357405:1297692 -) -(1,15090:6630773,15198893:25952256,513147,126483 -h1,15089:6630773,15198893:983040,0,0 -k1,15089:8511572,15198893:269924 -k1,15089:9800580,15198893:269923 -k1,15089:11437585,15198893:269924 -k1,15089:12366800,15198893:269923 -k1,15089:13655809,15198893:269924 -(1,15089:13655809,15198893:0,452978,115847 -r1,15128:15069210,15198893:1413401,568825,115847 -k1,15089:13655809,15198893:-1413401 -) -(1,15089:13655809,15198893:1413401,452978,115847 -k1,15089:13655809,15198893:3277 -h1,15089:15065933,15198893:0,411205,112570 -) -k1,15089:15339134,15198893:269924 -k1,15089:16998420,15198893:269923 -k1,15089:18781570,15198893:269924 -k1,15089:19999145,15198893:269924 -k1,15089:21965795,15198893:269923 -k1,15089:25401108,15198893:269924 -k1,15089:27137727,15198893:269923 -k1,15089:31069803,15198893:269924 -k1,15089:32583029,15198893:0 -) -(1,15090:6630773,16040381:25952256,505283,138281 -k1,15089:8699946,16040381:213849 -k1,15089:9565223,16040381:213849 -k1,15089:11591798,16040381:213849 -k1,15089:15122424,16040381:213849 -k1,15089:16327833,16040381:213849 -k1,15089:18708302,16040381:213849 -k1,15089:20118837,16040381:213848 -k1,15089:23174327,16040381:213849 -k1,15089:25973571,16040381:213849 -k1,15089:26838848,16040381:213849 -$1,15089:26838848,16040381 -$1,15089:27341509,16040381 -k1,15089:27555358,16040381:213849 -$1,15089:28746803,16040381 -$1,15089:29298616,16040381 -k1,15089:29512465,16040381:213849 -k1,15089:30717874,16040381:213849 -k1,15090:32583029,16040381:0 -) -(1,15090:6630773,16881869:25952256,505283,134348 -k1,15089:8421418,16881869:204674 -k1,15089:9698261,16881869:204674 -k1,15089:11369630,16881869:204673 -k1,15089:12565864,16881869:204674 -k1,15089:15895295,16881869:204674 -k1,15089:17493920,16881869:204674 -k1,15089:19305536,16881869:204673 -k1,15089:20701655,16881869:204674 -k1,15089:23216473,16881869:204674 -k1,15089:24072575,16881869:204674 -k1,15089:27343022,16881869:204673 -k1,15089:30547279,16881869:204674 -k1,15089:31379788,16881869:204674 -k1,15089:32583029,16881869:0 -) -(1,15090:6630773,17723357:25952256,505283,126483 -k1,15089:8176644,17723357:178790 -k1,15089:9374519,17723357:178790 -k1,15089:11795952,17723357:178791 -k1,15089:14959252,17723357:178790 -k1,15089:15669539,17723357:178790 -k1,15089:16499757,17723357:178790 -k1,15089:17744818,17723357:178790 -k1,15089:20322226,17723357:178790 -k1,15089:21785523,17723357:178791 -k1,15089:23619097,17723357:178790 -k1,15089:24329384,17723357:178790 -k1,15089:24864034,17723357:178790 -k1,15089:27554164,17723357:178790 -k1,15089:29017461,17723357:178791 -k1,15089:30300533,17723357:178790 -k1,15089:31227089,17723357:178790 -k1,15090:32583029,17723357:0 -) -(1,15090:6630773,18564845:25952256,505283,134348 -k1,15089:9159154,18564845:172362 -k1,15089:13512058,18564845:172362 -k1,15089:14875865,18564845:172362 -k1,15089:17375410,18564845:172362 -k1,15089:18640256,18564845:172361 -k1,15089:19168478,18564845:172362 -k1,15089:21795163,18564845:172362 -k1,15089:23113750,18564845:172362 -k1,15089:25171583,18564845:172362 -k1,15089:26596338,18564845:172362 -k1,15089:28234058,18564845:172335 -k1,15089:31896867,18564845:172362 -k1,15089:32583029,18564845:0 -) -(1,15090:6630773,19406333:25952256,505283,7863 -g1,15089:7934284,19406333 -g1,15089:8881279,19406333 -g1,15089:10520334,19406333 -k1,15090:32583028,19406333:20020592 -g1,15090:32583028,19406333 -) -v1,15092:6630773,20596799:0,393216,0 -(1,15099:6630773,22904138:25952256,2700555,196608 -g1,15099:6630773,22904138 -g1,15099:6630773,22904138 -g1,15099:6434165,22904138 -(1,15099:6434165,22904138:0,2700555,196608 -r1,15128:32779637,22904138:26345472,2897163,196608 -k1,15099:6434165,22904138:-26345472 -) -(1,15099:6434165,22904138:26345472,2700555,196608 -[1,15099:6630773,22904138:25952256,2503947,0 -(1,15094:6630773,20804417:25952256,404226,107478 -(1,15093:6630773,20804417:0,0,0 -g1,15093:6630773,20804417 -g1,15093:6630773,20804417 -g1,15093:6303093,20804417 -(1,15093:6303093,20804417:0,0,0 -) -g1,15093:6630773,20804417 -) -k1,15094:6630773,20804417:0 -g1,15094:10740667,20804417 -g1,15094:16431290,20804417 -g1,15094:21173476,20804417 -h1,15094:21489622,20804417:0,0,0 -k1,15094:32583029,20804417:11093407 -g1,15094:32583029,20804417 -) -(1,15095:6630773,21470595:25952256,404226,76021 -h1,15095:6630773,21470595:0,0,0 -g1,15095:6946919,21470595 -g1,15095:7263065,21470595 -g1,15095:7579211,21470595 -g1,15095:7895357,21470595 -g1,15095:12637542,21470595 -h1,15095:12953688,21470595:0,0,0 -k1,15095:32583028,21470595:19629340 -g1,15095:32583028,21470595 -) -(1,15096:6630773,22136773:25952256,404226,107478 -h1,15096:6630773,22136773:0,0,0 -g1,15096:6946919,22136773 -g1,15096:7263065,22136773 -g1,15096:7579211,22136773 -g1,15096:7895357,22136773 -g1,15096:12005251,22136773 -h1,15096:12321397,22136773:0,0,0 -k1,15096:32583029,22136773:20261632 -g1,15096:32583029,22136773 -) -(1,15097:6630773,22802951:25952256,410518,101187 -h1,15097:6630773,22802951:0,0,0 -g1,15097:6946919,22802951 -g1,15097:7263065,22802951 -g1,15097:7579211,22802951 -g1,15097:7895357,22802951 -g1,15097:14534418,22802951 -g1,15097:16747438,22802951 -g1,15097:17379730,22802951 -h1,15097:19592750,22802951:0,0,0 -k1,15097:32583029,22802951:12990279 -g1,15097:32583029,22802951 -) -] -) -g1,15099:32583029,22904138 -g1,15099:6630773,22904138 -g1,15099:6630773,22904138 -g1,15099:32583029,22904138 -g1,15099:32583029,22904138 -) -h1,15099:6630773,23100746:0,0,0 -(1,15102:6630773,32449238:25952256,8758668,0 -k1,15102:7928465,32449238:1297692 -h1,15101:7928465,32449238:0,0,0 -(1,15101:7928465,32449238:23356872,8758668,0 -(1,15101:7928465,32449238:23356506,8758690,0 -(1,15101:7928465,32449238:23356506,8758690,0 -(1,15101:7928465,32449238:0,8758690,0 -(1,15101:7928465,32449238:0,14208860,0 -(1,15101:7928465,32449238:37890292,14208860,0 -) -k1,15101:7928465,32449238:-37890292 -) -) -g1,15101:31284971,32449238 -) -) -) -g1,15102:31285337,32449238 -k1,15102:32583029,32449238:1297692 -) -(1,15109:6630773,33290726:25952256,505283,126483 -h1,15108:6630773,33290726:983040,0,0 -k1,15108:8394867,33290726:293466 -k1,15108:10910100,33290726:293562 -k1,15108:13880151,33290726:293561 -k1,15108:14705209,33290726:293561 -k1,15108:16696808,33290726:293561 -k1,15108:17858721,33290726:293561 -k1,15108:19682548,33290726:293561 -k1,15108:20627537,33290726:293561 -k1,15108:24488878,33290726:293561 -k1,15108:25398478,33290726:293562 -k1,15108:26711124,33290726:293561 -k1,15108:28658158,33290726:293561 -k1,15108:30229016,33290726:293561 -k1,15108:32080368,33290726:293561 -$1,15108:32080368,33290726 -$1,15108:32583029,33290726 -k1,15109:32583029,33290726:0 -) -(1,15109:6630773,34132214:25952256,505283,138281 -k1,15108:8160647,34132214:338429 -$1,15108:8160647,34132214 -$1,15108:8712460,34132214 -k1,15108:9050888,34132214:338428 -k1,15108:11573632,34132214:338429 -k1,15108:12399508,34132214:338288 -k1,15108:14862614,34132214:338429 -k1,15108:17862459,34132214:338428 -k1,15108:18732385,34132214:338429 -k1,15108:21258405,34132214:338428 -k1,15108:21952694,34132214:338429 -k1,15108:23979329,34132214:338428 -k1,15108:25711709,34132214:338429 -k1,15108:29788311,34132214:338428 -k1,15108:31821501,34132214:338429 -k1,15108:32583029,34132214:0 -) -(1,15109:6630773,34973702:25952256,505283,138281 -k1,15108:7937168,34973702:287310 -k1,15108:10292793,34973702:287309 -k1,15108:12324671,34973702:287310 -k1,15108:13631066,34973702:287310 -$1,15108:13631066,34973702 -$1,15108:14133727,34973702 -k1,15108:14421037,34973702:287310 -k1,15108:15899791,34973702:287309 -$1,15108:15899791,34973702 -$1,15108:16451604,34973702 -k1,15108:16738914,34973702:287310 -k1,15108:18424762,34973702:287310 -k1,15108:19398234,34973702:287310 -k1,15108:20553895,34973702:287309 -k1,15108:22371471,34973702:287310 -k1,15108:23310209,34973702:287310 -k1,15108:25034724,34973702:287310 -k1,15108:27018760,34973702:287309 -k1,15108:30514713,34973702:287310 -k1,15108:32583029,34973702:0 -) -(1,15109:6630773,35815190:25952256,505283,134348 -k1,15108:11864724,35815190:381665 -k1,15108:12897817,35815190:381665 -(1,15108:12897817,35815190:0,452978,122846 -r1,15128:17124913,35815190:4227096,575824,122846 -k1,15108:12897817,35815190:-4227096 -) -(1,15108:12897817,35815190:4227096,452978,122846 -k1,15108:12897817,35815190:3277 -h1,15108:17121636,35815190:0,411205,112570 -) -k1,15108:17680249,35815190:381666 -k1,15108:20596847,35815190:381665 -k1,15108:23807045,35815190:381665 -k1,15108:26949086,35815190:381665 -(1,15108:26949086,35815190:0,452978,115847 -r1,15128:32583029,35815190:5633943,568825,115847 -k1,15108:26949086,35815190:-5633943 -) -(1,15108:26949086,35815190:5633943,452978,115847 -k1,15108:26949086,35815190:3277 -h1,15108:32579752,35815190:0,411205,112570 -) -k1,15108:32583029,35815190:0 -) -(1,15109:6630773,36656678:25952256,505283,115847 -k1,15108:8140546,36656678:318328 -(1,15108:8140546,36656678:0,452978,115847 -r1,15128:13774489,36656678:5633943,568825,115847 -k1,15108:8140546,36656678:-5633943 -) -(1,15108:8140546,36656678:5633943,452978,115847 -k1,15108:8140546,36656678:3277 -h1,15108:13771212,36656678:0,411205,112570 -) -k1,15108:14266487,36656678:318328 -k1,15108:17519517,36656678:318328 -(1,15108:17519517,36656678:0,452978,115847 -r1,15128:23153460,36656678:5633943,568825,115847 -k1,15108:17519517,36656678:-5633943 -) -(1,15108:17519517,36656678:5633943,452978,115847 -k1,15108:17519517,36656678:3277 -h1,15108:23150183,36656678:0,411205,112570 -) -k1,15108:23471788,36656678:318328 -k1,15108:25212902,36656678:318327 -k1,15108:27051665,36656678:318328 -k1,15108:28561438,36656678:318328 -k1,15108:29411263,36656678:318328 -k1,15108:31931601,36656678:318328 -k1,15109:32583029,36656678:0 -) -(1,15109:6630773,37498166:25952256,505283,134348 -(1,15108:6630773,37498166:0,452978,115847 -r1,15128:12264716,37498166:5633943,568825,115847 -k1,15108:6630773,37498166:-5633943 -) -(1,15108:6630773,37498166:5633943,452978,115847 -k1,15108:6630773,37498166:3277 -h1,15108:12261439,37498166:0,411205,112570 -) -k1,15108:12554406,37498166:289690 -k1,15108:13460134,37498166:289690 -k1,15108:15080204,37498166:289689 -k1,15108:16388979,37498166:289690 -k1,15108:19887312,37498166:289690 -k1,15108:22187647,37498166:289690 -k1,15108:23468896,37498166:289689 -k1,15108:26710983,37498166:289690 -k1,15108:29535606,37498166:289690 -k1,15108:32583029,37498166:0 -) -(1,15109:6630773,38339654:25952256,513147,126483 -k1,15108:9586220,38339654:195071 -k1,15108:10953729,38339654:195070 -k1,15108:15054746,38339654:195071 -k1,15108:18885099,38339654:195071 -k1,15108:19747326,38339654:195071 -(1,15108:19747326,38339654:0,452978,115847 -r1,15128:24677846,38339654:4930520,568825,115847 -k1,15108:19747326,38339654:-4930520 -) -(1,15108:19747326,38339654:4930520,452978,115847 -k1,15108:19747326,38339654:3277 -h1,15108:24674569,38339654:0,411205,112570 -) -k1,15108:25046586,38339654:195070 -(1,15108:25046586,38339654:0,452978,115847 -r1,15128:30328817,38339654:5282231,568825,115847 -k1,15108:25046586,38339654:-5282231 -) -(1,15108:25046586,38339654:5282231,452978,115847 -k1,15108:25046586,38339654:3277 -h1,15108:30325540,38339654:0,411205,112570 -) -k1,15108:30697558,38339654:195071 -k1,15108:32583029,38339654:0 -) -(1,15109:6630773,39181142:25952256,513147,138281 -k1,15108:9085907,39181142:173826 -k1,15108:10278818,39181142:173826 -k1,15108:12106118,39181142:173827 -k1,15108:15270352,39181142:173826 -k1,15108:18139674,39181142:173826 -k1,15108:20058068,39181142:173826 -$1,15108:20058068,39181142 -$1,15108:20560729,39181142 -k1,15108:20734555,39181142:173826 -k1,15108:22099826,39181142:173826 -$1,15108:22099826,39181142 -$1,15108:22651639,39181142 -k1,15108:22999136,39181142:173827 -k1,15108:24364407,39181142:173826 -(1,15108:24364407,39181142:0,452978,115847 -r1,15128:30350062,39181142:5985655,568825,115847 -k1,15108:24364407,39181142:-5985655 -) -(1,15108:24364407,39181142:5985655,452978,115847 -k1,15108:24364407,39181142:3277 -h1,15108:30346785,39181142:0,411205,112570 -) -k1,15108:30697558,39181142:173826 -k1,15108:32583029,39181142:0 -) -(1,15109:6630773,40022630:25952256,513147,138281 -g1,15108:9208304,40022630 -g1,15108:10564243,40022630 -g1,15108:13458968,40022630 -g1,15108:14605848,40022630 -$1,15108:14605848,40022630 -$1,15108:15108509,40022630 -g1,15108:15307738,40022630 -g1,15108:16698412,40022630 -g1,15108:18054351,40022630 -g1,15108:19201231,40022630 -$1,15108:19201231,40022630 -$1,15108:19753044,40022630 -k1,15109:32583029,40022630:12656315 -g1,15109:32583029,40022630 -) -v1,15111:6630773,41213096:0,393216,0 -(1,15118:6630773,43520435:25952256,2700555,196608 -g1,15118:6630773,43520435 -g1,15118:6630773,43520435 -g1,15118:6434165,43520435 -(1,15118:6434165,43520435:0,2700555,196608 -r1,15128:32779637,43520435:26345472,2897163,196608 -k1,15118:6434165,43520435:-26345472 -) -(1,15118:6434165,43520435:26345472,2700555,196608 -[1,15118:6630773,43520435:25952256,2503947,0 -(1,15113:6630773,41420714:25952256,404226,107478 -(1,15112:6630773,41420714:0,0,0 -g1,15112:6630773,41420714 -g1,15112:6630773,41420714 -g1,15112:6303093,41420714 -(1,15112:6303093,41420714:0,0,0 -) -g1,15112:6630773,41420714 -) -k1,15113:6630773,41420714:0 -g1,15113:10740667,41420714 -g1,15113:16431290,41420714 -g1,15113:21173476,41420714 -h1,15113:21489622,41420714:0,0,0 -k1,15113:32583029,41420714:11093407 -g1,15113:32583029,41420714 -) -(1,15114:6630773,42086892:25952256,404226,107478 -h1,15114:6630773,42086892:0,0,0 -g1,15114:6946919,42086892 -g1,15114:7263065,42086892 -g1,15114:7579211,42086892 -g1,15114:7895357,42086892 -g1,15114:12005251,42086892 -h1,15114:12321397,42086892:0,0,0 -k1,15114:32583029,42086892:20261632 -g1,15114:32583029,42086892 -) -(1,15115:6630773,42753070:25952256,404226,76021 -h1,15115:6630773,42753070:0,0,0 -g1,15115:6946919,42753070 -g1,15115:7263065,42753070 -g1,15115:7579211,42753070 -g1,15115:7895357,42753070 -g1,15115:14218271,42753070 -g1,15115:14850563,42753070 -g1,15115:17063583,42753070 -h1,15115:17379729,42753070:0,0,0 -k1,15115:32583029,42753070:15203300 -g1,15115:32583029,42753070 -) -(1,15116:6630773,43419248:25952256,410518,101187 -h1,15116:6630773,43419248:0,0,0 -g1,15116:6946919,43419248 -g1,15116:7263065,43419248 -g1,15116:7579211,43419248 -g1,15116:7895357,43419248 -g1,15116:14534418,43419248 -g1,15116:16747438,43419248 -g1,15116:17379730,43419248 -h1,15116:19592750,43419248:0,0,0 -k1,15116:32583029,43419248:12990279 -g1,15116:32583029,43419248 -) -] -) -g1,15118:32583029,43520435 -g1,15118:6630773,43520435 -g1,15118:6630773,43520435 -g1,15118:32583029,43520435 -g1,15118:32583029,43520435 -) -h1,15118:6630773,43717043:0,0,0 -] -(1,15128:32583029,45706769:0,0,0 -g1,15128:32583029,45706769 -) -) -] -(1,15128:6630773,47279633:25952256,0,0 -h1,15128:6630773,47279633:25952256,0,0 -) -] -(1,15128:4262630,4025873:0,0,0 -[1,15128:-473656,4025873:0,0,0 -(1,15128:-473656,-710413:0,0,0 -(1,15128:-473656,-710413:0,0,0 -g1,15128:-473656,-710413 -) -g1,15128:-473656,-710413 -) -] -) -] -!18153 -}292 -Input:2346:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2347:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2348:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2349:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2350:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2351:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2352:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2353:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!748 -{293 -[1,15158:4262630,47279633:28320399,43253760,0 -(1,15158:4262630,4025873:0,0,0 -[1,15158:-473656,4025873:0,0,0 -(1,15158:-473656,-710413:0,0,0 -(1,15158:-473656,-644877:0,0,0 -k1,15158:-473656,-644877:-65536 -) -(1,15158:-473656,4736287:0,0,0 -k1,15158:-473656,4736287:5209943 -) -g1,15158:-473656,-710413 -) -] -) -[1,15158:6630773,47279633:25952256,43253760,0 -[1,15158:6630773,4812305:25952256,786432,0 -(1,15158:6630773,4812305:25952256,513147,134348 -(1,15158:6630773,4812305:25952256,513147,134348 -g1,15158:3078558,4812305 -[1,15158:3078558,4812305:0,0,0 -(1,15158:3078558,2439708:0,1703936,0 -k1,15158:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,15158:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,15158:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,15158:3078558,4812305:0,0,0 -(1,15158:3078558,2439708:0,1703936,0 -g1,15158:29030814,2439708 -g1,15158:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,15158:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,15158:37855564,2439708:1179648,16384,0 -) -) -k1,15158:3078556,2439708:-34777008 -) -] -[1,15158:3078558,4812305:0,0,0 -(1,15158:3078558,49800853:0,16384,2228224 -k1,15158:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,15158:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,15158:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,15158:3078558,4812305:0,0,0 -(1,15158:3078558,49800853:0,16384,2228224 -g1,15158:29030814,49800853 -g1,15158:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,15158:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,15158:37855564,49800853:1179648,16384,0 -) -) -k1,15158:3078556,49800853:-34777008 -) -] -g1,15158:6630773,4812305 -k1,15158:25712890,4812305:17886740 -g1,15158:29057847,4812305 -g1,15158:29873114,4812305 -) -) -] -[1,15158:6630773,45706769:25952256,40108032,0 -(1,15158:6630773,45706769:25952256,40108032,0 -(1,15158:6630773,45706769:0,0,0 -g1,15158:6630773,45706769 -) -[1,15158:6630773,45706769:25952256,40108032,0 -(1,15121:6630773,14357405:25952256,8758668,0 -k1,15121:7928465,14357405:1297692 -h1,15120:7928465,14357405:0,0,0 -(1,15120:7928465,14357405:23356872,8758668,0 -(1,15120:7928465,14357405:23356506,8758690,0 -(1,15120:7928465,14357405:23356506,8758690,0 -(1,15120:7928465,14357405:0,8758690,0 -(1,15120:7928465,14357405:0,14208860,0 -(1,15120:7928465,14357405:37890292,14208860,0 -) -k1,15120:7928465,14357405:-37890292 -) -) -g1,15120:31284971,14357405 -) -) -) -g1,15121:31285337,14357405 -k1,15121:32583029,14357405:1297692 -) -v1,15128:6630773,15454910:0,393216,0 -(1,15136:6630773,18428427:25952256,3366733,196608 -g1,15136:6630773,18428427 -g1,15136:6630773,18428427 -g1,15136:6434165,18428427 -(1,15136:6434165,18428427:0,3366733,196608 -r1,15158:32779637,18428427:26345472,3563341,196608 -k1,15136:6434165,18428427:-26345472 -) -(1,15136:6434165,18428427:26345472,3366733,196608 -[1,15136:6630773,18428427:25952256,3170125,0 -(1,15130:6630773,15662528:25952256,404226,107478 -(1,15129:6630773,15662528:0,0,0 -g1,15129:6630773,15662528 -g1,15129:6630773,15662528 -g1,15129:6303093,15662528 -(1,15129:6303093,15662528:0,0,0 -) -g1,15129:6630773,15662528 -) -k1,15130:6630773,15662528:0 -g1,15130:10740667,15662528 -g1,15130:16431290,15662528 -g1,15130:21173476,15662528 -h1,15130:21489622,15662528:0,0,0 -k1,15130:32583029,15662528:11093407 -g1,15130:32583029,15662528 -) -(1,15131:6630773,16328706:25952256,404226,107478 -h1,15131:6630773,16328706:0,0,0 -g1,15131:6946919,16328706 -g1,15131:7263065,16328706 -g1,15131:7579211,16328706 -g1,15131:7895357,16328706 -g1,15131:12005251,16328706 -h1,15131:12321397,16328706:0,0,0 -k1,15131:32583029,16328706:20261632 -g1,15131:32583029,16328706 -) -(1,15132:6630773,16994884:25952256,404226,107478 -h1,15132:6630773,16994884:0,0,0 -g1,15132:6946919,16994884 -g1,15132:7263065,16994884 -g1,15132:7579211,16994884 -g1,15132:7895357,16994884 -g1,15132:13902126,16994884 -g1,15132:14534418,16994884 -g1,15132:16747438,16994884 -g1,15132:18644312,16994884 -g1,15132:19276604,16994884 -k1,15132:19276604,16994884:0 -h1,15132:21489624,16994884:0,0,0 -k1,15132:32583029,16994884:11093405 -g1,15132:32583029,16994884 -) -(1,15133:6630773,17661062:25952256,404226,82312 -h1,15133:6630773,17661062:0,0,0 -g1,15133:6946919,17661062 -g1,15133:7263065,17661062 -g1,15133:7579211,17661062 -g1,15133:7895357,17661062 -g1,15133:8211503,17661062 -g1,15133:8527649,17661062 -g1,15133:8843795,17661062 -g1,15133:9159941,17661062 -g1,15133:9476087,17661062 -g1,15133:9792233,17661062 -g1,15133:10108379,17661062 -g1,15133:10424525,17661062 -g1,15133:10740671,17661062 -g1,15133:11056817,17661062 -g1,15133:11372963,17661062 -g1,15133:11689109,17661062 -g1,15133:12005255,17661062 -g1,15133:12321401,17661062 -g1,15133:14218275,17661062 -g1,15133:14850567,17661062 -g1,15133:17063587,17661062 -g1,15133:18644316,17661062 -g1,15133:19276608,17661062 -g1,15133:20857337,17661062 -h1,15133:21173483,17661062:0,0,0 -k1,15133:32583029,17661062:11409546 -g1,15133:32583029,17661062 -) -(1,15134:6630773,18327240:25952256,410518,101187 -h1,15134:6630773,18327240:0,0,0 -g1,15134:6946919,18327240 -g1,15134:7263065,18327240 -g1,15134:7579211,18327240 -g1,15134:7895357,18327240 -g1,15134:14534418,18327240 -g1,15134:16747438,18327240 -g1,15134:17379730,18327240 -h1,15134:19592750,18327240:0,0,0 -k1,15134:32583029,18327240:12990279 -g1,15134:32583029,18327240 -) -] -) -g1,15136:32583029,18428427 -g1,15136:6630773,18428427 -g1,15136:6630773,18428427 -g1,15136:32583029,18428427 -g1,15136:32583029,18428427 -) -h1,15136:6630773,18625035:0,0,0 -(1,15139:6630773,27880565:25952256,8758668,0 -k1,15139:7928465,27880565:1297692 -h1,15138:7928465,27880565:0,0,0 -(1,15138:7928465,27880565:23356872,8758668,0 -(1,15138:7928465,27880565:23356506,8758690,0 -(1,15138:7928465,27880565:23356506,8758690,0 -(1,15138:7928465,27880565:0,8758690,0 -(1,15138:7928465,27880565:0,14208860,0 -(1,15138:7928465,27880565:37890292,14208860,0 -) -k1,15138:7928465,27880565:-37890292 -) -) -g1,15138:31284971,27880565 -) -) -) -g1,15139:31285337,27880565 -k1,15139:32583029,27880565:1297692 -) -v1,15146:6630773,29153380:0,393216,0 -(1,15147:6630773,31439412:25952256,2679248,616038 -g1,15147:6630773,31439412 -(1,15147:6630773,31439412:25952256,2679248,616038 -(1,15147:6630773,32055450:25952256,3295286,0 -[1,15147:6630773,32055450:25952256,3295286,0 -(1,15147:6630773,32029236:25952256,3242858,0 -r1,15158:6656987,32029236:26214,3242858,0 -[1,15147:6656987,32029236:25899828,3242858,0 -(1,15147:6656987,31439412:25899828,2063210,0 -[1,15147:7246811,31439412:24720180,2063210,0 -(1,15147:7246811,30463576:24720180,1087374,134348 -k1,15146:8655881,30463576:199367 -k1,15146:10825915,30463576:199366 -k1,15146:11684574,30463576:199367 -k1,15146:12903025,30463576:199366 -k1,15146:14709990,30463576:199367 -k1,15146:15525395,30463576:199367 -k1,15146:16743846,30463576:199366 -k1,15146:18091404,30463576:199367 -k1,15146:19463209,30463576:199366 -k1,15146:21963545,30463576:199367 -k1,15146:24018236,30463576:199367 -k1,15146:25321884,30463576:199366 -k1,15146:26269017,30463576:199367 -k1,15146:28818504,30463576:199366 -k1,15146:29779399,30463576:199367 -k1,15146:31966991,30463576:0 -) -(1,15147:7246811,31305064:24720180,505283,134348 -g1,15146:8618479,31305064 -g1,15146:10705800,31305064 -g1,15146:12298980,31305064 -(1,15146:12298980,31305064:0,452978,115847 -r1,15158:17229500,31305064:4930520,568825,115847 -k1,15146:12298980,31305064:-4930520 -) -(1,15146:12298980,31305064:4930520,452978,115847 -k1,15146:12298980,31305064:3277 -h1,15146:17226223,31305064:0,411205,112570 -) -g1,15146:17755754,31305064 -g1,15146:20676693,31305064 -g1,15146:22079163,31305064 -g1,15146:23555689,31305064 -g1,15146:25490311,31305064 -(1,15146:25490311,31305064:0,452978,115847 -r1,15158:30420831,31305064:4930520,568825,115847 -k1,15146:25490311,31305064:-4930520 -) -(1,15146:25490311,31305064:4930520,452978,115847 -k1,15146:25490311,31305064:3277 -h1,15146:30417554,31305064:0,411205,112570 -) -k1,15147:31966991,31305064:1372490 -g1,15147:31966991,31305064 -) -] -) -] -r1,15158:32583029,32029236:26214,3242858,0 -) -] -) -) -g1,15147:32583029,31439412 -) -h1,15147:6630773,32055450:0,0,0 -(1,15153:6630773,35294345:25952256,32768,229376 -(1,15153:6630773,35294345:0,32768,229376 -(1,15153:6630773,35294345:5505024,32768,229376 -r1,15158:12135797,35294345:5505024,262144,229376 -) -k1,15153:6630773,35294345:-5505024 -) -(1,15153:6630773,35294345:25952256,32768,0 -r1,15158:32583029,35294345:25952256,32768,0 -) -) -(1,15153:6630773,36898673:25952256,568590,9436 -(1,15153:6630773,36898673:1974731,568590,0 -g1,15153:6630773,36898673 -g1,15153:8605504,36898673 -) -k1,15153:32583028,36898673:21495544 -g1,15153:32583028,36898673 -) -(1,15158:6630773,38133377:25952256,513147,134348 -k1,15156:8826322,38133377:212430 -k1,15156:10030313,38133377:212431 -k1,15156:11755969,38133377:212430 -k1,15156:12584438,38133377:212431 -k1,15156:13152728,38133377:212430 -k1,15156:15559304,38133377:212431 -k1,15156:17201074,38133377:212430 -k1,15156:18072796,38133377:212430 -k1,15156:19892825,38133377:212431 -k1,15156:23467252,38133377:212430 -k1,15156:26350930,38133377:212431 -k1,15156:28637574,38133377:212430 -k1,15156:29466043,38133377:212431 -k1,15156:31563944,38133377:212430 -k1,15156:32583029,38133377:0 -) -(1,15158:6630773,38974865:25952256,513147,126483 -k1,15156:8930212,38974865:225225 -k1,15156:10892142,38974865:225226 -k1,15156:12809507,38974865:225225 -k1,15156:16504209,38974865:225226 -k1,15157:18603764,38974865:225225 -k1,15157:20093835,38974865:225226 -k1,15157:20978352,38974865:225225 -k1,15157:25032190,38974865:225225 -k1,15157:27331630,38974865:225226 -k1,15157:28548415,38974865:225225 -k1,15157:29129501,38974865:225226 -k1,15157:31331947,38974865:225225 -k1,15157:32583029,38974865:0 -) -(1,15158:6630773,39816353:25952256,513147,134348 -k1,15157:7866082,39816353:287658 -k1,15157:11599622,39816353:287657 -k1,15157:14573601,39816353:287658 -k1,15157:16424292,39816353:287657 -k1,15157:18586280,39816353:287658 -k1,15157:20481536,39816353:287658 -k1,15157:23173709,39816353:287657 -k1,15157:25961566,39816353:287658 -k1,15157:28807749,39816353:287657 -k1,15157:30114492,39816353:287658 -(1,15157:30114492,39816353:0,452978,115847 -r1,15158:32583029,39816353:2468537,568825,115847 -k1,15157:30114492,39816353:-2468537 -) -(1,15157:30114492,39816353:2468537,452978,115847 -k1,15157:30114492,39816353:3277 -h1,15157:32579752,39816353:0,411205,112570 -) -k1,15157:32583029,39816353:0 -) -(1,15158:6630773,40657841:25952256,505283,134348 -k1,15157:9052943,40657841:237855 -k1,15157:9906836,40657841:237855 -k1,15157:10671599,40657841:237854 -k1,15157:12100899,40657841:237855 -k1,15157:13357839,40657841:237855 -k1,15157:15874380,40657841:237855 -k1,15157:18692387,40657841:237855 -k1,15157:19546280,40657841:237855 -k1,15157:20372647,40657841:237854 -k1,15157:21807189,40657841:237855 -k1,15157:23666405,40657841:237855 -k1,15157:25229398,40657841:237855 -k1,15157:25998750,40657841:237855 -k1,15157:26888032,40657841:237854 -k1,15157:28601102,40657841:237855 -k1,15157:30373155,40657841:237855 -k1,15157:32583029,40657841:0 -) -(1,15158:6630773,41499329:25952256,513147,134348 -k1,15157:9591690,41499329:247726 -k1,15157:10498708,41499329:247726 -k1,15157:12354032,41499329:247726 -k1,15157:13995709,41499329:247726 -k1,15157:17020851,41499329:247726 -k1,15157:19344758,41499329:247726 -k1,15157:20358599,41499329:247725 -k1,15157:22213923,41499329:247726 -k1,15157:25112580,41499329:247726 -k1,15157:27370951,41499329:247726 -k1,15157:28566328,41499329:247726 -k1,15157:29833139,41499329:247726 -k1,15157:31734338,41499329:247726 -k1,15158:32583029,41499329:0 -) -(1,15158:6630773,42340817:25952256,513147,126483 -k1,15157:9154267,42340817:285439 -k1,15157:12124716,42340817:285439 -k1,15157:13790999,42340817:285439 -k1,15157:14607935,42340817:285439 -k1,15157:16870595,42340817:285439 -k1,15157:18854072,42340817:285439 -k1,15157:20794295,42340817:285439 -k1,15157:22071294,42340817:285439 -k1,15157:25027980,42340817:285439 -k1,15157:29457260,42340817:285439 -k1,15157:31966991,42340817:285439 -k1,15157:32583029,42340817:0 -) -(1,15158:6630773,43182305:25952256,513147,134348 -k1,15157:7235951,43182305:249318 -k1,15157:8874631,43182305:249317 -k1,15157:10232163,43182305:249318 -k1,15157:15298376,43182305:249317 -k1,15157:17328963,43182305:249318 -k1,15157:18650449,43182305:249317 -k1,15157:20293718,43182305:249318 -k1,15157:21790842,43182305:249318 -k1,15157:23942669,43182305:249317 -k1,15157:24874872,43182305:249318 -k1,15157:26518140,43182305:249317 -k1,15157:27786543,43182305:249318 -k1,15157:29689333,43182305:249317 -k1,15157:31510860,43182305:249318 -k1,15157:32583029,43182305:0 -) -(1,15158:6630773,44023793:25952256,513147,134348 -k1,15157:7258826,44023793:272193 -k1,15157:10310401,44023793:272193 -k1,15157:13623465,44023793:272193 -k1,15157:14887217,44023793:272192 -k1,15157:18607259,44023793:272193 -k1,15157:20165268,44023793:272193 -k1,15157:22588353,44023793:272193 -k1,15157:23488381,44023793:272193 -k1,15157:26589107,44023793:272193 -k1,15157:28516083,44023793:272192 -k1,15157:29779836,44023793:272193 -k1,15157:31224468,44023793:272193 -k1,15158:32583029,44023793:0 -) -(1,15158:6630773,44865281:25952256,513147,134348 -k1,15157:8391631,44865281:276468 -k1,15157:10384488,44865281:276469 -k1,15157:11320248,44865281:276468 -k1,15157:13659134,44865281:276468 -k1,15157:15824350,44865281:276468 -k1,15157:19287835,44865281:276469 -k1,15157:20180341,44865281:276468 -k1,15157:20812669,44865281:276468 -k1,15157:22547314,44865281:276469 -k1,15157:24015227,44865281:276468 -k1,15157:26180443,44865281:276468 -k1,15157:28201479,44865281:276468 -k1,15157:28833808,44865281:276469 -k1,15157:30983295,44865281:276468 -k1,15157:32583029,44865281:0 -) -(1,15158:6630773,45706769:25952256,513147,126483 -k1,15157:7560183,45706769:270118 -k1,15157:10656212,45706769:270117 -k1,15157:12172169,45706769:270118 -k1,15157:15259679,45706769:270117 -k1,15157:18304591,45706769:270118 -k1,15157:19842174,45706769:270117 -k1,15157:21284731,45706769:270118 -k1,15157:22237733,45706769:270117 -k1,15157:24158048,45706769:270118 -k1,15157:26136033,45706769:270117 -k1,15157:28280481,45706769:270118 -k1,15157:29542158,45706769:270117 -k1,15157:32583029,45706769:0 -) -] -(1,15158:32583029,45706769:0,0,0 -g1,15158:32583029,45706769 -) -) -] -(1,15158:6630773,47279633:25952256,0,0 -h1,15158:6630773,47279633:25952256,0,0 -) -] -(1,15158:4262630,4025873:0,0,0 -[1,15158:-473656,4025873:0,0,0 -(1,15158:-473656,-710413:0,0,0 -(1,15158:-473656,-710413:0,0,0 -g1,15158:-473656,-710413 -) -g1,15158:-473656,-710413 -) -] -) -] -!15386 -}293 -Input:2354:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2355:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2356:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2357:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2358:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2359:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2360:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2361:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!748 -{294 -[1,15221:4262630,47279633:28320399,43253760,0 -(1,15221:4262630,4025873:0,0,0 -[1,15221:-473656,4025873:0,0,0 -(1,15221:-473656,-710413:0,0,0 -(1,15221:-473656,-644877:0,0,0 -k1,15221:-473656,-644877:-65536 -) -(1,15221:-473656,4736287:0,0,0 -k1,15221:-473656,4736287:5209943 -) -g1,15221:-473656,-710413 -) -] -) -[1,15221:6630773,47279633:25952256,43253760,0 -[1,15221:6630773,4812305:25952256,786432,0 -(1,15221:6630773,4812305:25952256,485622,11795 -(1,15221:6630773,4812305:25952256,485622,11795 -g1,15221:3078558,4812305 -[1,15221:3078558,4812305:0,0,0 -(1,15221:3078558,2439708:0,1703936,0 -k1,15221:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,15221:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,15221:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,15221:3078558,4812305:0,0,0 -(1,15221:3078558,2439708:0,1703936,0 -g1,15221:29030814,2439708 -g1,15221:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,15221:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,15221:37855564,2439708:1179648,16384,0 -) -) -k1,15221:3078556,2439708:-34777008 -) -] -[1,15221:3078558,4812305:0,0,0 -(1,15221:3078558,49800853:0,16384,2228224 -k1,15221:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,15221:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,15221:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,15221:3078558,4812305:0,0,0 -(1,15221:3078558,49800853:0,16384,2228224 -g1,15221:29030814,49800853 -g1,15221:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,15221:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,15221:37855564,49800853:1179648,16384,0 -) -) -k1,15221:3078556,49800853:-34777008 -) -] -g1,15221:6630773,4812305 -g1,15221:6630773,4812305 -g1,15221:8769212,4812305 -k1,15221:31387652,4812305:22618440 -) -) -] -[1,15221:6630773,45706769:25952256,40108032,0 -(1,15221:6630773,45706769:25952256,40108032,0 -(1,15221:6630773,45706769:0,0,0 -g1,15221:6630773,45706769 -) -[1,15221:6630773,45706769:25952256,40108032,0 -(1,15158:6630773,6254097:25952256,505283,134348 -k1,15157:7626981,6254097:234680 -k1,15157:10049252,6254097:234679 -(1,15157:10049252,6254097:0,459977,122846 -r1,15221:14276348,6254097:4227096,582823,122846 -k1,15157:10049252,6254097:-4227096 -) -(1,15157:10049252,6254097:4227096,459977,122846 -k1,15157:10049252,6254097:3277 -h1,15157:14273071,6254097:0,411205,112570 -) -k1,15157:14511028,6254097:234680 -k1,15157:15428592,6254097:234679 -(1,15157:15428592,6254097:0,459977,115847 -r1,15221:19655688,6254097:4227096,575824,115847 -k1,15157:15428592,6254097:-4227096 -) -(1,15157:15428592,6254097:4227096,459977,115847 -k1,15157:15428592,6254097:3277 -h1,15157:19652411,6254097:0,411205,112570 -) -k1,15157:20064038,6254097:234680 -k1,15157:24268889,6254097:234680 -k1,15157:25131403,6254097:234679 -k1,15157:26385168,6254097:234680 -k1,15157:29611566,6254097:234679 -k1,15157:31714677,6254097:234680 -k1,15157:32583029,6254097:0 -) -(1,15158:6630773,7095585:25952256,513147,134348 -k1,15157:7922484,7095585:199226 -(1,15157:7922484,7095585:0,452978,122846 -r1,15221:12149580,7095585:4227096,575824,122846 -k1,15157:7922484,7095585:-4227096 -) -(1,15157:7922484,7095585:4227096,452978,122846 -k1,15157:7922484,7095585:3277 -h1,15157:12146303,7095585:0,411205,112570 -) -k1,15157:12348806,7095585:199226 -k1,15157:13620201,7095585:199226 -k1,15157:16368122,7095585:199226 -k1,15157:17671630,7095585:199226 -k1,15157:18618623,7095585:199227 -k1,15157:20331075,7095585:199226 -k1,15157:21924252,7095585:199226 -(1,15157:21924252,7095585:0,452978,122846 -r1,15221:24041077,7095585:2116825,575824,122846 -k1,15157:21924252,7095585:-2116825 -) -(1,15157:21924252,7095585:2116825,452978,122846 -k1,15157:21924252,7095585:3277 -h1,15157:24037800,7095585:0,411205,112570 -) -k1,15157:24240303,7095585:199226 -k1,15157:26729357,7095585:199226 -k1,15157:30290580,7095585:199226 -k1,15157:32583029,7095585:0 -) -(1,15158:6630773,7937073:25952256,513147,134348 -g1,15157:8589644,7937073 -g1,15157:9448165,7937073 -g1,15157:11709157,7937073 -g1,15157:15193706,7937073 -g1,15157:17248915,7937073 -g1,15157:21519896,7937073 -g1,15157:22402010,7937073 -g1,15157:26109381,7937073 -g1,15157:27876231,7937073 -(1,15157:27876231,7937073:0,452978,115847 -r1,15221:29289632,7937073:1413401,568825,115847 -k1,15157:27876231,7937073:-1413401 -) -(1,15157:27876231,7937073:1413401,452978,115847 -k1,15157:27876231,7937073:3277 -h1,15157:29286355,7937073:0,411205,112570 -) -k1,15158:32583029,7937073:3119727 -g1,15158:32583029,7937073 -) -(1,15162:6630773,8778561:25952256,505283,134348 -h1,15161:6630773,8778561:983040,0,0 -k1,15161:8736351,8778561:168989 -k1,15161:10393663,8778561:168989 -k1,15161:11324180,8778561:168989 -k1,15161:14065458,8778561:168990 -k1,15161:15425892,8778561:168989 -k1,15161:17628463,8778561:168989 -k1,15161:18153312,8778561:168989 -k1,15161:22152225,8778561:168989 -k1,15161:23598511,8778561:168989 -k1,15161:25052006,8778561:168989 -k1,15161:26089348,8778561:168990 -k1,15161:27390799,8778561:168989 -k1,15161:28652273,8778561:168989 -k1,15161:31379788,8778561:168989 -k1,15161:32583029,8778561:0 -) -(1,15162:6630773,9620049:25952256,513147,134348 -g1,15161:9108689,9620049 -g1,15161:9959346,9620049 -g1,15161:14191661,9620049 -g1,15161:15721271,9620049 -g1,15161:16939585,9620049 -g1,15161:18792287,9620049 -g1,15161:20268813,9620049 -g1,15161:23039019,9620049 -g1,15161:24936286,9620049 -g1,15161:26003867,9620049 -g1,15161:27400439,9620049 -k1,15162:32583029,9620049:3120172 -g1,15162:32583029,9620049 -) -v1,15164:6630773,10785124:0,393216,0 -(1,15170:6630773,12426285:25952256,2034377,196608 -g1,15170:6630773,12426285 -g1,15170:6630773,12426285 -g1,15170:6434165,12426285 -(1,15170:6434165,12426285:0,2034377,196608 -r1,15221:32779637,12426285:26345472,2230985,196608 -k1,15170:6434165,12426285:-26345472 -) -(1,15170:6434165,12426285:26345472,2034377,196608 -[1,15170:6630773,12426285:25952256,1837769,0 -(1,15166:6630773,10992742:25952256,404226,107478 -(1,15165:6630773,10992742:0,0,0 -g1,15165:6630773,10992742 -g1,15165:6630773,10992742 -g1,15165:6303093,10992742 -(1,15165:6303093,10992742:0,0,0 -) -g1,15165:6630773,10992742 -) -g1,15166:7263065,10992742 -g1,15166:8211503,10992742 -g1,15166:12005252,10992742 -g1,15166:12637544,10992742 -g1,15166:15166710,10992742 -g1,15166:17695876,10992742 -g1,15166:19592750,10992742 -h1,15166:19908896,10992742:0,0,0 -k1,15166:32583029,10992742:12674133 -g1,15166:32583029,10992742 -) -(1,15167:6630773,11658920:25952256,404226,107478 -h1,15167:6630773,11658920:0,0,0 -g1,15167:6946919,11658920 -g1,15167:7263065,11658920 -k1,15167:7263065,11658920:0 -h1,15167:11056813,11658920:0,0,0 -k1,15167:32583029,11658920:21526216 -g1,15167:32583029,11658920 -) -(1,15168:6630773,12325098:25952256,284164,101187 -h1,15168:6630773,12325098:0,0,0 -h1,15168:6946919,12325098:0,0,0 -k1,15168:32583029,12325098:25636110 -g1,15168:32583029,12325098 -) -] -) -g1,15170:32583029,12426285 -g1,15170:6630773,12426285 -g1,15170:6630773,12426285 -g1,15170:32583029,12426285 -g1,15170:32583029,12426285 -) -h1,15170:6630773,12622893:0,0,0 -(1,15173:6630773,22270991:25952256,9083666,0 -k1,15173:10523651,22270991:3892878 -h1,15172:10523651,22270991:0,0,0 -(1,15172:10523651,22270991:18166500,9083666,0 -(1,15172:10523651,22270991:18167376,9083688,0 -(1,15172:10523651,22270991:18167376,9083688,0 -(1,15172:10523651,22270991:0,9083688,0 -(1,15172:10523651,22270991:0,14208860,0 -(1,15172:10523651,22270991:28417720,14208860,0 -) -k1,15172:10523651,22270991:-28417720 -) -) -g1,15172:28691027,22270991 -) -) -) -g1,15173:28690151,22270991 -k1,15173:32583029,22270991:3892878 -) -(1,15180:6630773,23112479:25952256,513147,134348 -h1,15179:6630773,23112479:983040,0,0 -k1,15179:8329422,23112479:228021 -k1,15179:9841977,23112479:228049 -k1,15179:10729318,23112479:228049 -k1,15179:13031582,23112479:228050 -k1,15179:14360636,23112479:228049 -k1,15179:15761125,23112479:228050 -k1,15179:19838103,23112479:228049 -(1,15179:19838103,23112479:0,414482,115847 -r1,15221:21251504,23112479:1413401,530329,115847 -k1,15179:19838103,23112479:-1413401 -) -(1,15179:19838103,23112479:1413401,414482,115847 -k1,15179:19838103,23112479:3277 -h1,15179:21248227,23112479:0,411205,112570 -) -k1,15179:21479554,23112479:228050 -k1,15179:22899048,23112479:228049 -(1,15179:22899048,23112479:0,452978,115847 -r1,15221:24312449,23112479:1413401,568825,115847 -k1,15179:22899048,23112479:-1413401 -) -(1,15179:22899048,23112479:1413401,452978,115847 -k1,15179:22899048,23112479:3277 -h1,15179:24309172,23112479:0,411205,112570 -) -k1,15179:24714169,23112479:228050 -k1,15179:26816548,23112479:228049 -k1,15179:30719857,23112479:228050 -k1,15179:31563944,23112479:228049 -k1,15179:32583029,23112479:0 -) -(1,15180:6630773,23953967:25952256,513147,134348 -k1,15179:8077808,23953967:162529 -k1,15179:8899630,23953967:162530 -k1,15179:10339456,23953967:162529 -k1,15179:12576199,23953967:162529 -k1,15179:13843010,23953967:162529 -k1,15179:14753306,23953967:162530 -k1,15179:18101540,23953967:162529 -k1,15179:18915497,23953967:162529 -k1,15179:21475989,23953967:162530 -k1,15179:23187789,23953967:162529 -k1,15179:25904911,23953967:162529 -k1,15179:26423300,23953967:162529 -k1,15179:29129282,23953967:162530 -k1,15179:31375856,23953967:162529 -k1,15179:32583029,23953967:0 -) -(1,15180:6630773,24795455:25952256,513147,134348 -k1,15179:7801410,24795455:151552 -k1,15179:9328562,24795455:151551 -k1,15179:12264083,24795455:151552 -k1,15179:13746016,24795455:151552 -k1,15179:16860451,24795455:151552 -k1,15179:18215243,24795455:151551 -k1,15179:21056393,24795455:151552 -k1,15179:22308950,24795455:151552 -k1,15179:23970452,24795455:151552 -k1,15179:26928256,24795455:151552 -k1,15179:28098892,24795455:151551 -k1,15179:31263789,24795455:151552 -k1,15180:32583029,24795455:0 -) -(1,15180:6630773,25636943:25952256,505283,126483 -k1,15179:7798754,25636943:190184 -k1,15179:8520435,25636943:190184 -k1,15179:11621073,25636943:190184 -k1,15179:12462684,25636943:190183 -k1,15179:13745353,25636943:190184 -k1,15179:14954622,25636943:190184 -k1,15179:18755840,25636943:190184 -(1,15179:18755840,25636943:0,414482,115847 -r1,15221:20169241,25636943:1413401,530329,115847 -k1,15179:18755840,25636943:-1413401 -) -(1,15179:18755840,25636943:1413401,414482,115847 -k1,15179:18755840,25636943:3277 -h1,15179:20165964,25636943:0,411205,112570 -) -k1,15179:20359425,25636943:190184 -k1,15179:21741054,25636943:190184 -(1,15179:21741054,25636943:0,452978,115847 -r1,15221:23154455,25636943:1413401,568825,115847 -k1,15179:21741054,25636943:-1413401 -) -(1,15179:21741054,25636943:1413401,452978,115847 -k1,15179:21741054,25636943:3277 -h1,15179:23151178,25636943:0,411205,112570 -) -k1,15179:23518309,25636943:190184 -k1,15179:24662042,25636943:190184 -k1,15179:25944710,25636943:190183 -(1,15179:25944710,25636943:0,452978,115847 -r1,15221:27358111,25636943:1413401,568825,115847 -k1,15179:25944710,25636943:-1413401 -) -(1,15179:25944710,25636943:1413401,452978,115847 -k1,15179:25944710,25636943:3277 -h1,15179:27354834,25636943:0,411205,112570 -) -k1,15179:27548295,25636943:190184 -k1,15179:28354517,25636943:190184 -k1,15179:29747942,25636943:190184 -k1,15179:32583029,25636943:0 -) -(1,15180:6630773,26478431:25952256,513147,115847 -k1,15179:8314679,26478431:192962 -k1,15179:9792146,26478431:192961 -k1,15179:10853460,26478431:192962 -k1,15179:12576688,26478431:192962 -k1,15179:13421077,26478431:192961 -k1,15179:14706524,26478431:192962 -(1,15179:14706524,26478431:0,452978,115847 -r1,15221:16823349,26478431:2116825,568825,115847 -k1,15179:14706524,26478431:-2116825 -) -(1,15179:14706524,26478431:2116825,452978,115847 -k1,15179:14706524,26478431:3277 -h1,15179:16820072,26478431:0,411205,112570 -) -k1,15179:17016311,26478431:192962 -k1,15179:17860700,26478431:192961 -k1,15179:20426721,26478431:192962 -k1,15179:21638768,26478431:192962 -k1,15179:23900046,26478431:192962 -k1,15179:24752299,26478431:192961 -k1,15179:25964346,26478431:192962 -k1,15179:28998949,26478431:192962 -k1,15179:29807948,26478431:192961 -k1,15179:31019995,26478431:192962 -k1,15179:32583029,26478431:0 -) -(1,15180:6630773,27319919:25952256,513147,134348 -k1,15179:8008689,27319919:181229 -k1,15179:11649564,27319919:181229 -k1,15179:12490085,27319919:181229 -k1,15179:13690398,27319919:181228 -k1,15179:15945841,27319919:181229 -k1,15179:16809955,27319919:181229 -k1,15179:18408072,27319919:181229 -k1,15179:20407925,27319919:181229 -k1,15179:21580714,27319919:181229 -k1,15179:22523471,27319919:181229 -k1,15179:24970280,27319919:181229 -k1,15179:26170593,27319919:181228 -k1,15179:28144232,27319919:181229 -k1,15179:28984753,27319919:181229 -k1,15179:30185067,27319919:181229 -k1,15180:32583029,27319919:0 -k1,15180:32583029,27319919:0 -) -v1,15182:6630773,28484994:0,393216,0 -(1,15186:6630773,28806382:25952256,714604,196608 -g1,15186:6630773,28806382 -g1,15186:6630773,28806382 -g1,15186:6434165,28806382 -(1,15186:6434165,28806382:0,714604,196608 -r1,15221:32779637,28806382:26345472,911212,196608 -k1,15186:6434165,28806382:-26345472 -) -(1,15186:6434165,28806382:26345472,714604,196608 -[1,15186:6630773,28806382:25952256,517996,0 -(1,15184:6630773,28698904:25952256,410518,107478 -(1,15183:6630773,28698904:0,0,0 -g1,15183:6630773,28698904 -g1,15183:6630773,28698904 -g1,15183:6303093,28698904 -(1,15183:6303093,28698904:0,0,0 -) -g1,15183:6630773,28698904 -) -g1,15184:7263065,28698904 -g1,15184:7895357,28698904 -g1,15184:12953689,28698904 -g1,15184:13585981,28698904 -k1,15184:13585981,28698904:0 -h1,15184:16747438,28698904:0,0,0 -k1,15184:32583029,28698904:15835591 -g1,15184:32583029,28698904 -) -] -) -g1,15186:32583029,28806382 -g1,15186:6630773,28806382 -g1,15186:6630773,28806382 -g1,15186:32583029,28806382 -g1,15186:32583029,28806382 -) -h1,15186:6630773,29002990:0,0,0 -(1,15189:6630773,38651089:25952256,9083666,0 -k1,15189:10523651,38651089:3892878 -h1,15188:10523651,38651089:0,0,0 -(1,15188:10523651,38651089:18166500,9083666,0 -(1,15188:10523651,38651089:18167376,9083688,0 -(1,15188:10523651,38651089:18167376,9083688,0 -(1,15188:10523651,38651089:0,9083688,0 -(1,15188:10523651,38651089:0,14208860,0 -(1,15188:10523651,38651089:28417720,14208860,0 -) -k1,15188:10523651,38651089:-28417720 -) -) -g1,15188:28691027,38651089 -) -) -) -g1,15189:28690151,38651089 -k1,15189:32583029,38651089:3892878 -) -(1,15196:6630773,39492577:25952256,513147,126483 -h1,15195:6630773,39492577:983040,0,0 -g1,15195:8440877,39492577 -g1,15195:9659191,39492577 -g1,15195:13140463,39492577 -g1,15195:16329444,39492577 -g1,15195:17547758,39492577 -g1,15195:19400460,39492577 -g1,15195:20876986,39492577 -g1,15195:23032465,39492577 -g1,15195:24706909,39492577 -g1,15195:26416088,39492577 -g1,15195:28532245,39492577 -g1,15195:29417636,39492577 -k1,15196:32583029,39492577:676336 -g1,15196:32583029,39492577 -) -v1,15198:6630773,40657652:0,393216,0 -(1,15202:6630773,40979040:25952256,714604,196608 -g1,15202:6630773,40979040 -g1,15202:6630773,40979040 -g1,15202:6434165,40979040 -(1,15202:6434165,40979040:0,714604,196608 -r1,15221:32779637,40979040:26345472,911212,196608 -k1,15202:6434165,40979040:-26345472 -) -(1,15202:6434165,40979040:26345472,714604,196608 -[1,15202:6630773,40979040:25952256,517996,0 -(1,15200:6630773,40871562:25952256,410518,107478 -(1,15199:6630773,40871562:0,0,0 -g1,15199:6630773,40871562 -g1,15199:6630773,40871562 -g1,15199:6303093,40871562 -(1,15199:6303093,40871562:0,0,0 -) -g1,15199:6630773,40871562 -) -g1,15200:7263065,40871562 -g1,15200:7895357,40871562 -g1,15200:12005251,40871562 -g1,15200:12637543,40871562 -h1,15200:13902126,40871562:0,0,0 -k1,15200:32583030,40871562:18680904 -g1,15200:32583030,40871562 -) -] -) -g1,15202:32583029,40979040 -g1,15202:6630773,40979040 -g1,15202:6630773,40979040 -g1,15202:32583029,40979040 -g1,15202:32583029,40979040 -) -h1,15202:6630773,41175648:0,0,0 -(1,15206:6630773,42516032:25952256,513147,134348 -h1,15205:6630773,42516032:983040,0,0 -k1,15205:8595089,42516032:221058 -k1,15205:11255397,42516032:221058 -k1,15205:12242571,42516032:221058 -k1,15205:14537842,42516032:221057 -k1,15205:16495604,42516032:221058 -k1,15205:17735747,42516032:221058 -k1,15205:19610278,42516032:221058 -k1,15205:21403545,42516032:221058 -k1,15205:23439295,42516032:221058 -k1,15205:24851797,42516032:221057 -k1,15205:26809559,42516032:221058 -k1,15205:28049702,42516032:221058 -k1,15205:30795207,42516032:221058 -k1,15205:32583029,42516032:0 -) -(1,15206:6630773,43357520:25952256,513147,126483 -g1,15205:9036599,43357520 -g1,15205:10307997,43357520 -g1,15205:12203953,43357520 -g1,15205:14999063,43357520 -g1,15205:16302574,43357520 -g1,15205:17249569,43357520 -k1,15206:32583029,43357520:11679173 -g1,15206:32583029,43357520 -) -v1,15208:6630773,44522595:0,393216,0 -(1,15213:6630773,45510161:25952256,1380782,196608 -g1,15213:6630773,45510161 -g1,15213:6630773,45510161 -g1,15213:6434165,45510161 -(1,15213:6434165,45510161:0,1380782,196608 -r1,15221:32779637,45510161:26345472,1577390,196608 -k1,15213:6434165,45510161:-26345472 -) -(1,15213:6434165,45510161:26345472,1380782,196608 -[1,15213:6630773,45510161:25952256,1184174,0 -(1,15210:6630773,44736505:25952256,410518,107478 -(1,15209:6630773,44736505:0,0,0 -g1,15209:6630773,44736505 -g1,15209:6630773,44736505 -g1,15209:6303093,44736505 -(1,15209:6303093,44736505:0,0,0 -) -g1,15209:6630773,44736505 -) -g1,15210:7263065,44736505 -g1,15210:7895357,44736505 -g1,15210:12953689,44736505 -g1,15210:13585981,44736505 -g1,15210:17063584,44736505 -g1,15210:19276604,44736505 -g1,15210:19908896,44736505 -h1,15210:22121916,44736505:0,0,0 -k1,15210:32583029,44736505:10461113 -g1,15210:32583029,44736505 -) -(1,15211:6630773,45402683:25952256,410518,107478 -h1,15211:6630773,45402683:0,0,0 -g1,15211:7263065,45402683 -g1,15211:7895357,45402683 -g1,15211:12953689,45402683 -g1,15211:13585981,45402683 -g1,15211:17063584,45402683 -g1,15211:19276604,45402683 -g1,15211:19908896,45402683 -g1,15211:22438062,45402683 -g1,15211:24334936,45402683 -g1,15211:24967228,45402683 -h1,15211:27180248,45402683:0,0,0 -k1,15211:32583029,45402683:5402781 -g1,15211:32583029,45402683 -) -] -) -g1,15213:32583029,45510161 -g1,15213:6630773,45510161 -g1,15213:6630773,45510161 -g1,15213:32583029,45510161 -g1,15213:32583029,45510161 -) -h1,15213:6630773,45706769:0,0,0 -] -(1,15221:32583029,45706769:0,0,0 -g1,15221:32583029,45706769 -) -) -] -(1,15221:6630773,47279633:25952256,0,0 -h1,15221:6630773,47279633:25952256,0,0 -) -] -(1,15221:4262630,4025873:0,0,0 -[1,15221:-473656,4025873:0,0,0 -(1,15221:-473656,-710413:0,0,0 -(1,15221:-473656,-710413:0,0,0 -g1,15221:-473656,-710413 -) -g1,15221:-473656,-710413 -) -] -) -] -!19214 -}294 -Input:2362:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2363:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2364:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2365:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2366:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2367:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!564 -{295 -[1,15291:4262630,47279633:28320399,43253760,0 -(1,15291:4262630,4025873:0,0,0 -[1,15291:-473656,4025873:0,0,0 -(1,15291:-473656,-710413:0,0,0 -(1,15291:-473656,-644877:0,0,0 -k1,15291:-473656,-644877:-65536 -) -(1,15291:-473656,4736287:0,0,0 -k1,15291:-473656,4736287:5209943 -) -g1,15291:-473656,-710413 -) -] -) -[1,15291:6630773,47279633:25952256,43253760,0 -[1,15291:6630773,4812305:25952256,786432,0 -(1,15291:6630773,4812305:25952256,513147,134348 -(1,15291:6630773,4812305:25952256,513147,134348 -g1,15291:3078558,4812305 -[1,15291:3078558,4812305:0,0,0 -(1,15291:3078558,2439708:0,1703936,0 -k1,15291:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,15291:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,15291:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,15291:3078558,4812305:0,0,0 -(1,15291:3078558,2439708:0,1703936,0 -g1,15291:29030814,2439708 -g1,15291:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,15291:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,15291:37855564,2439708:1179648,16384,0 -) -) -k1,15291:3078556,2439708:-34777008 -) -] -[1,15291:3078558,4812305:0,0,0 -(1,15291:3078558,49800853:0,16384,2228224 -k1,15291:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,15291:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,15291:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,15291:3078558,4812305:0,0,0 -(1,15291:3078558,49800853:0,16384,2228224 -g1,15291:29030814,49800853 -g1,15291:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,15291:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,15291:37855564,49800853:1179648,16384,0 -) -) -k1,15291:3078556,49800853:-34777008 -) -] -g1,15291:6630773,4812305 -k1,15291:25712890,4812305:17886740 -g1,15291:29057847,4812305 -g1,15291:29873114,4812305 -) -) -] -[1,15291:6630773,45706769:25952256,40108032,0 -(1,15291:6630773,45706769:25952256,40108032,0 -(1,15291:6630773,45706769:0,0,0 -g1,15291:6630773,45706769 -) -[1,15291:6630773,45706769:25952256,40108032,0 -(1,15219:6630773,6254097:25952256,513147,134348 -h1,15218:6630773,6254097:983040,0,0 -g1,15218:8642072,6254097 -g1,15218:10865053,6254097 -g1,15218:11420142,6254097 -g1,15218:12521146,6254097 -g1,15218:14004881,6254097 -g1,15218:15072462,6254097 -g1,15218:16801957,6254097 -g1,15218:17652614,6254097 -g1,15218:20110869,6254097 -g1,15218:21776794,6254097 -(1,15218:21776794,6254097:0,414482,115847 -r1,15291:23190195,6254097:1413401,530329,115847 -k1,15218:21776794,6254097:-1413401 -) -(1,15218:21776794,6254097:1413401,414482,115847 -k1,15218:21776794,6254097:3277 -h1,15218:23186918,6254097:0,411205,112570 -) -g1,15218:23389424,6254097 -g1,15218:24780098,6254097 -(1,15218:24780098,6254097:0,452978,115847 -r1,15291:26193499,6254097:1413401,568825,115847 -k1,15218:24780098,6254097:-1413401 -) -(1,15218:24780098,6254097:1413401,452978,115847 -k1,15218:24780098,6254097:3277 -h1,15218:26190222,6254097:0,411205,112570 -) -k1,15219:32583029,6254097:6215860 -g1,15219:32583029,6254097 -) -v1,15221:6630773,7444563:0,393216,0 -(1,15225:6630773,7765951:25952256,714604,196608 -g1,15225:6630773,7765951 -g1,15225:6630773,7765951 -g1,15225:6434165,7765951 -(1,15225:6434165,7765951:0,714604,196608 -r1,15291:32779637,7765951:26345472,911212,196608 -k1,15225:6434165,7765951:-26345472 -) -(1,15225:6434165,7765951:26345472,714604,196608 -[1,15225:6630773,7765951:25952256,517996,0 -(1,15223:6630773,7658473:25952256,410518,107478 -(1,15222:6630773,7658473:0,0,0 -g1,15222:6630773,7658473 -g1,15222:6630773,7658473 -g1,15222:6303093,7658473 -(1,15222:6303093,7658473:0,0,0 -) -g1,15222:6630773,7658473 -) -g1,15223:7263065,7658473 -g1,15223:7895357,7658473 -g1,15223:12953689,7658473 -g1,15223:13585981,7658473 -g1,15223:16747439,7658473 -g1,15223:18328168,7658473 -g1,15223:18960460,7658473 -k1,15223:18960460,7658473:0 -h1,15223:21805771,7658473:0,0,0 -k1,15223:32583029,7658473:10777258 -g1,15223:32583029,7658473 -) -] -) -g1,15225:32583029,7765951 -g1,15225:6630773,7765951 -g1,15225:6630773,7765951 -g1,15225:32583029,7765951 -g1,15225:32583029,7765951 -) -h1,15225:6630773,7962559:0,0,0 -(1,15231:6630773,9328335:25952256,513147,134348 -h1,15230:6630773,9328335:983040,0,0 -k1,15230:10311876,9328335:169684 -k1,15230:12776630,9328335:169683 -k1,15230:13717017,9328335:169684 -k1,15230:17113693,9328335:169683 -k1,15230:19666266,9328335:169684 -k1,15230:20518834,9328335:169683 -k1,15230:21892414,9328335:169684 -k1,15230:22721390,9328335:169684 -k1,15230:24965287,9328335:169683 -k1,15230:26528922,9328335:169684 -k1,15230:27717690,9328335:169683 -k1,15230:31019995,9328335:169684 -k1,15231:32583029,9328335:0 -k1,15231:32583029,9328335:0 -) -v1,15233:6630773,10518801:0,393216,0 -(1,15237:6630773,10840189:25952256,714604,196608 -g1,15237:6630773,10840189 -g1,15237:6630773,10840189 -g1,15237:6434165,10840189 -(1,15237:6434165,10840189:0,714604,196608 -r1,15291:32779637,10840189:26345472,911212,196608 -k1,15237:6434165,10840189:-26345472 -) -(1,15237:6434165,10840189:26345472,714604,196608 -[1,15237:6630773,10840189:25952256,517996,0 -(1,15235:6630773,10732711:25952256,410518,107478 -(1,15234:6630773,10732711:0,0,0 -g1,15234:6630773,10732711 -g1,15234:6630773,10732711 -g1,15234:6303093,10732711 -(1,15234:6303093,10732711:0,0,0 -) -g1,15234:6630773,10732711 -) -g1,15235:7263065,10732711 -g1,15235:7895357,10732711 -g1,15235:12953689,10732711 -g1,15235:13585981,10732711 -g1,15235:17063584,10732711 -g1,15235:19592750,10732711 -g1,15235:20225042,10732711 -h1,15235:21805771,10732711:0,0,0 -k1,15235:32583029,10732711:10777258 -g1,15235:32583029,10732711 -) -] -) -g1,15237:32583029,10840189 -g1,15237:6630773,10840189 -g1,15237:6630773,10840189 -g1,15237:32583029,10840189 -g1,15237:32583029,10840189 -) -h1,15237:6630773,11036797:0,0,0 -(1,15240:6630773,20710287:25952256,9083666,0 -k1,15240:10523651,20710287:3892878 -h1,15239:10523651,20710287:0,0,0 -(1,15239:10523651,20710287:18166500,9083666,0 -(1,15239:10523651,20710287:18167376,9083688,0 -(1,15239:10523651,20710287:18167376,9083688,0 -(1,15239:10523651,20710287:0,9083688,0 -(1,15239:10523651,20710287:0,14208860,0 -(1,15239:10523651,20710287:28417720,14208860,0 -) -k1,15239:10523651,20710287:-28417720 -) -) -g1,15239:28691027,20710287 -) -) -) -g1,15240:28690151,20710287 -k1,15240:32583029,20710287:3892878 -) -(1,15247:6630773,21551775:25952256,513147,134348 -h1,15246:6630773,21551775:983040,0,0 -k1,15246:8860308,21551775:292946 -k1,15246:10257536,21551775:292946 -k1,15246:13592007,21551775:292945 -k1,15246:15535150,21551775:292946 -k1,15246:17270543,21551775:292946 -k1,15246:18720199,21551775:292946 -k1,15246:21524484,21551775:292945 -k1,15246:22873870,21551775:292946 -k1,15246:26511774,21551775:292946 -k1,15246:27464012,21551775:292946 -k1,15246:28776042,21551775:292945 -k1,15246:30353494,21551775:292946 -k1,15246:31305732,21551775:292946 -k1,15246:32583029,21551775:0 -) -(1,15247:6630773,22393263:25952256,513147,126483 -k1,15246:9045253,22393263:166595 -k1,15246:10253869,22393263:166594 -k1,15246:11623705,22393263:166595 -k1,15246:14625386,22393263:166594 -k1,15246:15660333,22393263:166595 -k1,15246:17112744,22393263:166595 -k1,15246:19924371,22393263:166594 -k1,15246:21110051,22393263:166595 -k1,15246:23542226,22393263:166595 -(1,15246:23542226,22393263:0,452978,115847 -r1,15291:26362475,22393263:2820249,568825,115847 -k1,15246:23542226,22393263:-2820249 -) -(1,15246:23542226,22393263:2820249,452978,115847 -k1,15246:23542226,22393263:3277 -h1,15246:26359198,22393263:0,411205,112570 -) -k1,15246:26529069,22393263:166594 -k1,15246:28208890,22393263:166595 -k1,15246:29323135,22393263:166594 -k1,15246:30508815,22393263:166595 -k1,15246:32583029,22393263:0 -) -(1,15247:6630773,23234751:25952256,513147,7863 -k1,15246:8241211,23234751:216487 -k1,15246:9614408,23234751:216487 -k1,15246:11115401,23234751:216487 -k1,15246:13999860,23234751:216488 -k1,15246:15235432,23234751:216487 -k1,15246:17189934,23234751:216487 -k1,15246:18065713,23234751:216487 -k1,15246:19301285,23234751:216487 -k1,15246:22029112,23234751:216487 -k1,15246:22861637,23234751:216487 -k1,15246:25744129,23234751:216487 -k1,15246:26612045,23234751:216488 -k1,15246:28722522,23234751:216487 -k1,15246:30731419,23234751:216487 -k1,15246:31563944,23234751:216487 -k1,15246:32583029,23234751:0 -) -(1,15247:6630773,24076239:25952256,505283,126483 -g1,15246:8246890,24076239 -k1,15247:32583030,24076239:22366784 -g1,15247:32583030,24076239 -) -v1,15249:6630773,25266705:0,393216,0 -(1,15253:6630773,25588093:25952256,714604,196608 -g1,15253:6630773,25588093 -g1,15253:6630773,25588093 -g1,15253:6434165,25588093 -(1,15253:6434165,25588093:0,714604,196608 -r1,15291:32779637,25588093:26345472,911212,196608 -k1,15253:6434165,25588093:-26345472 -) -(1,15253:6434165,25588093:26345472,714604,196608 -[1,15253:6630773,25588093:25952256,517996,0 -(1,15251:6630773,25480615:25952256,410518,107478 -(1,15250:6630773,25480615:0,0,0 -g1,15250:6630773,25480615 -g1,15250:6630773,25480615 -g1,15250:6303093,25480615 -(1,15250:6303093,25480615:0,0,0 -) -g1,15250:6630773,25480615 -) -g1,15251:7263065,25480615 -g1,15251:7895357,25480615 -g1,15251:12953689,25480615 -g1,15251:13585981,25480615 -g1,15251:16431293,25480615 -g1,15251:18012022,25480615 -g1,15251:20857333,25480615 -g1,15251:21489625,25480615 -h1,15251:24967227,25480615:0,0,0 -k1,15251:32583029,25480615:7615802 -g1,15251:32583029,25480615 -) -] -) -g1,15253:32583029,25588093 -g1,15253:6630773,25588093 -g1,15253:6630773,25588093 -g1,15253:32583029,25588093 -g1,15253:32583029,25588093 -) -h1,15253:6630773,25784701:0,0,0 -(1,15256:6630773,35458191:25952256,9083666,0 -k1,15256:10523651,35458191:3892878 -h1,15255:10523651,35458191:0,0,0 -(1,15255:10523651,35458191:18166500,9083666,0 -(1,15255:10523651,35458191:18167376,9083688,0 -(1,15255:10523651,35458191:18167376,9083688,0 -(1,15255:10523651,35458191:0,9083688,0 -(1,15255:10523651,35458191:0,14208860,0 -(1,15255:10523651,35458191:28417720,14208860,0 -) -k1,15255:10523651,35458191:-28417720 -) -) -g1,15255:28691027,35458191 -) -) -) -g1,15256:28690151,35458191 -k1,15256:32583029,35458191:3892878 -) -v1,15263:6630773,36823967:0,393216,0 -(1,15291:6630773,45106312:25952256,8675561,589824 -g1,15291:6630773,45106312 -(1,15291:6630773,45106312:25952256,8675561,589824 -(1,15291:6630773,45696136:25952256,9265385,0 -[1,15291:6630773,45696136:25952256,9265385,0 -(1,15291:6630773,45696136:25952256,9239171,0 -r1,15291:6656987,45696136:26214,9239171,0 -[1,15291:6656987,45696136:25899828,9239171,0 -(1,15291:6656987,45106312:25899828,8059523,0 -[1,15291:7246811,45106312:24720180,8059523,0 -(1,15264:7246811,38208674:24720180,1161885,196608 -(1,15263:7246811,38208674:0,1161885,196608 -r1,15291:8794447,38208674:1547636,1358493,196608 -k1,15263:7246811,38208674:-1547636 -) -(1,15263:7246811,38208674:1547636,1161885,196608 -) -k1,15263:8991263,38208674:196816 -k1,15263:12660833,38208674:196817 -k1,15263:13726001,38208674:196816 -k1,15263:15259751,38208674:196816 -k1,15263:17005183,38208674:196816 -k1,15263:17853428,38208674:196817 -k1,15263:19525459,38208674:196816 -k1,15263:24045685,38208674:196816 -k1,15263:28012787,38208674:196816 -k1,15263:28892489,38208674:196817 -k1,15263:30944629,38208674:196816 -k1,15264:31966991,38208674:0 -) -(1,15264:7246811,39050162:24720180,513147,134348 -k1,15263:8717540,39050162:247827 -k1,15263:9581405,39050162:247827 -k1,15263:10848317,39050162:247827 -k1,15263:12840057,39050162:247827 -k1,15263:16120890,39050162:247827 -k1,15263:17565404,39050162:247827 -k1,15263:19197352,39050162:247828 -k1,15263:22106596,39050162:247827 -k1,15263:24345407,39050162:247827 -k1,15263:24949094,39050162:247827 -k1,15263:26434896,39050162:247827 -k1,15263:27342015,39050162:247827 -k1,15263:30590080,39050162:247827 -k1,15263:31966991,39050162:0 -) -(1,15264:7246811,39891650:24720180,513147,134348 -k1,15263:8684841,39891650:241343 -k1,15263:10027189,39891650:241343 -k1,15263:10800029,39891650:241343 -k1,15263:11692800,39891650:241343 -k1,15263:13026628,39891650:241343 -k1,15263:13954133,39891650:241343 -(1,15263:13954133,39891650:0,452978,115847 -r1,15291:16774382,39891650:2820249,568825,115847 -k1,15263:13954133,39891650:-2820249 -) -(1,15263:13954133,39891650:2820249,452978,115847 -k1,15263:13954133,39891650:3277 -h1,15263:16771105,39891650:0,411205,112570 -) -k1,15263:17015725,39891650:241343 -k1,15263:17612928,39891650:241343 -k1,15263:20549767,39891650:241343 -k1,15263:22075616,39891650:241343 -k1,15263:24389863,39891650:241343 -k1,15263:27605885,39891650:241343 -k1,15263:30043339,39891650:241343 -k1,15263:31552148,39891650:241343 -k1,15264:31966991,39891650:0 -) -(1,15264:7246811,40733138:24720180,473825,126483 -k1,15264:31966992,40733138:20776224 -g1,15264:31966992,40733138 -) -v1,15266:7246811,41923604:0,393216,0 -(1,15274:7246811,44909704:24720180,3379316,196608 -g1,15274:7246811,44909704 -g1,15274:7246811,44909704 -g1,15274:7050203,44909704 -(1,15274:7050203,44909704:0,3379316,196608 -r1,15291:32163599,44909704:25113396,3575924,196608 -k1,15274:7050203,44909704:-25113396 -) -(1,15274:7050203,44909704:25113396,3379316,196608 -[1,15274:7246811,44909704:24720180,3182708,0 -(1,15268:7246811,42137514:24720180,410518,101187 -(1,15267:7246811,42137514:0,0,0 -g1,15267:7246811,42137514 -g1,15267:7246811,42137514 -g1,15267:6919131,42137514 -(1,15267:6919131,42137514:0,0,0 -) -g1,15267:7246811,42137514 -) -g1,15268:11356705,42137514 -g1,15268:12305143,42137514 -k1,15268:12305143,42137514:0 -h1,15268:17995766,42137514:0,0,0 -k1,15268:31966991,42137514:13971225 -g1,15268:31966991,42137514 -) -(1,15269:7246811,42803692:24720180,404226,101187 -h1,15269:7246811,42803692:0,0,0 -g1,15269:7562957,42803692 -g1,15269:7879103,42803692 -g1,15269:8195249,42803692 -g1,15269:8511395,42803692 -g1,15269:8827541,42803692 -g1,15269:9143687,42803692 -g1,15269:9459833,42803692 -g1,15269:9775979,42803692 -g1,15269:10092125,42803692 -g1,15269:10408271,42803692 -g1,15269:10724417,42803692 -g1,15269:11040563,42803692 -g1,15269:11356709,42803692 -g1,15269:11672855,42803692 -g1,15269:11989001,42803692 -g1,15269:12305147,42803692 -g1,15269:12621293,42803692 -g1,15269:12937439,42803692 -g1,15269:13253585,42803692 -g1,15269:13569731,42803692 -g1,15269:13885877,42803692 -g1,15269:14202023,42803692 -g1,15269:14518169,42803692 -g1,15269:16731189,42803692 -g1,15269:17363481,42803692 -g1,15269:20841085,42803692 -g1,15269:23370251,42803692 -g1,15269:26215563,42803692 -h1,15269:27796291,42803692:0,0,0 -k1,15269:31966991,42803692:4170700 -g1,15269:31966991,42803692 -) -(1,15270:7246811,43469870:24720180,404226,107478 -h1,15270:7246811,43469870:0,0,0 -g1,15270:8195248,43469870 -g1,15270:9143686,43469870 -g1,15270:12937435,43469870 -g1,15270:13569727,43469870 -g1,15270:16098893,43469870 -g1,15270:18944205,43469870 -g1,15270:20524934,43469870 -h1,15270:20841080,43469870:0,0,0 -k1,15270:31966991,43469870:11125911 -g1,15270:31966991,43469870 -) -(1,15271:7246811,44136048:24720180,404226,107478 -h1,15271:7246811,44136048:0,0,0 -g1,15271:7562957,44136048 -g1,15271:7879103,44136048 -g1,15271:8195249,44136048 -g1,15271:8511395,44136048 -g1,15271:8827541,44136048 -g1,15271:9143687,44136048 -g1,15271:13253581,44136048 -h1,15271:13569727,44136048:0,0,0 -k1,15271:31966991,44136048:18397264 -g1,15271:31966991,44136048 -) -(1,15272:7246811,44802226:24720180,410518,107478 -h1,15272:7246811,44802226:0,0,0 -g1,15272:7562957,44802226 -g1,15272:7879103,44802226 -g1,15272:8195249,44802226 -g1,15272:8511395,44802226 -g1,15272:8827541,44802226 -g1,15272:9143687,44802226 -g1,15272:14202019,44802226 -g1,15272:14834311,44802226 -g1,15272:18944206,44802226 -g1,15272:21789517,44802226 -g1,15272:22421809,44802226 -h1,15272:26531703,44802226:0,0,0 -k1,15272:31966991,44802226:5435288 -g1,15272:31966991,44802226 -) -] -) -g1,15274:31966991,44909704 -g1,15274:7246811,44909704 -g1,15274:7246811,44909704 -g1,15274:31966991,44909704 -g1,15274:31966991,44909704 -) -h1,15274:7246811,45106312:0,0,0 -] -) -] -r1,15291:32583029,45696136:26214,9239171,0 -) -] -) -) -g1,15291:32583029,45106312 -) -] -(1,15291:32583029,45706769:0,0,0 -g1,15291:32583029,45706769 -) -) -] -(1,15291:6630773,47279633:25952256,0,0 -h1,15291:6630773,47279633:25952256,0,0 -) -] -(1,15291:4262630,4025873:0,0,0 -[1,15291:-473656,4025873:0,0,0 -(1,15291:-473656,-710413:0,0,0 -(1,15291:-473656,-710413:0,0,0 -g1,15291:-473656,-710413 -) -g1,15291:-473656,-710413 -) -] -) -] -!17030 -}295 -Input:2368:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2369:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2370:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2371:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2372:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2373:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2374:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2375:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2376:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2377:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2378:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2379:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2380:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2381:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2382:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2383:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1484 -{296 -[1,15343:4262630,47279633:28320399,43253760,0 -(1,15343:4262630,4025873:0,0,0 -[1,15343:-473656,4025873:0,0,0 -(1,15343:-473656,-710413:0,0,0 -(1,15343:-473656,-644877:0,0,0 -k1,15343:-473656,-644877:-65536 -) -(1,15343:-473656,4736287:0,0,0 -k1,15343:-473656,4736287:5209943 -) -g1,15343:-473656,-710413 -) -] -) -[1,15343:6630773,47279633:25952256,43253760,0 -[1,15343:6630773,4812305:25952256,786432,0 -(1,15343:6630773,4812305:25952256,505283,11795 -(1,15343:6630773,4812305:25952256,505283,11795 -g1,15343:3078558,4812305 -[1,15343:3078558,4812305:0,0,0 -(1,15343:3078558,2439708:0,1703936,0 -k1,15343:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,15343:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,15343:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,15343:3078558,4812305:0,0,0 -(1,15343:3078558,2439708:0,1703936,0 -g1,15343:29030814,2439708 -g1,15343:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,15343:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,15343:37855564,2439708:1179648,16384,0 -) -) -k1,15343:3078556,2439708:-34777008 -) -] -[1,15343:3078558,4812305:0,0,0 -(1,15343:3078558,49800853:0,16384,2228224 -k1,15343:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,15343:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,15343:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,15343:3078558,4812305:0,0,0 -(1,15343:3078558,49800853:0,16384,2228224 -g1,15343:29030814,49800853 -g1,15343:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,15343:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,15343:37855564,49800853:1179648,16384,0 -) -) -k1,15343:3078556,49800853:-34777008 -) -] -g1,15343:6630773,4812305 -g1,15343:6630773,4812305 -g1,15343:8724648,4812305 -k1,15343:31387652,4812305:22663004 -) -) -] -[1,15343:6630773,45706769:25952256,40108032,0 -(1,15343:6630773,45706769:25952256,40108032,0 -(1,15343:6630773,45706769:0,0,0 -g1,15343:6630773,45706769 -) -[1,15343:6630773,45706769:25952256,40108032,0 -v1,15291:6630773,6254097:0,393216,0 -(1,15291:6630773,13771702:25952256,7910821,616038 -g1,15291:6630773,13771702 -(1,15291:6630773,13771702:25952256,7910821,616038 -(1,15291:6630773,14387740:25952256,8526859,0 -[1,15291:6630773,14387740:25952256,8526859,0 -(1,15291:6630773,14361526:25952256,8500645,0 -r1,15343:6656987,14361526:26214,8500645,0 -[1,15291:6656987,14361526:25899828,8500645,0 -(1,15291:6656987,13771702:25899828,7320997,0 -[1,15291:7246811,13771702:24720180,7320997,0 -(1,15278:7246811,6963852:24720180,513147,126483 -h1,15277:7246811,6963852:983040,0,0 -k1,15277:10008077,6963852:184390 -k1,15277:13497448,6963852:184390 -k1,15277:14550191,6963852:184391 -k1,15277:16071515,6963852:184390 -k1,15277:17786171,6963852:184390 -k1,15277:18621989,6963852:184390 -k1,15277:21144048,6963852:184390 -k1,15277:22347524,6963852:184391 -k1,15277:24324324,6963852:184390 -k1,15277:25168006,6963852:184390 -k1,15277:26371481,6963852:184390 -k1,15277:28449862,6963852:184391 -k1,15277:30147478,6963852:184390 -k1,15277:30947906,6963852:184390 -k1,15277:31966991,6963852:0 -) -(1,15278:7246811,7805340:24720180,513147,134348 -k1,15277:9938170,7805340:142664 -k1,15277:10766997,7805340:142665 -k1,15277:12231522,7805340:142664 -k1,15277:13033479,7805340:142665 -k1,15277:14195228,7805340:142664 -k1,15277:16355747,7805340:142665 -k1,15277:17986734,7805340:142664 -k1,15277:18997751,7805340:142665 -k1,15277:20232900,7805340:142664 -k1,15277:21061727,7805340:142665 -(1,15277:21061727,7805340:0,452978,115847 -r1,15343:23881976,7805340:2820249,568825,115847 -k1,15277:21061727,7805340:-2820249 -) -(1,15277:21061727,7805340:2820249,452978,115847 -k1,15277:21061727,7805340:3277 -h1,15277:23878699,7805340:0,411205,112570 -) -k1,15277:24198310,7805340:142664 -k1,15277:27036471,7805340:142665 -(1,15277:27036471,7805340:0,452978,115847 -r1,15343:31966991,7805340:4930520,568825,115847 -k1,15277:27036471,7805340:-4930520 -) -(1,15277:27036471,7805340:4930520,452978,115847 -k1,15277:27036471,7805340:3277 -h1,15277:31963714,7805340:0,411205,112570 -) -k1,15277:31966991,7805340:0 -) -(1,15278:7246811,8646828:24720180,505283,126483 -k1,15277:8877402,8646828:236640 -k1,15277:9469901,8646828:236639 -k1,15277:11900686,8646828:236640 -k1,15277:14221371,8646828:236640 -k1,15277:15742516,8646828:236639 -k1,15277:17991111,8646828:236640 -k1,15277:18972895,8646828:236640 -k1,15277:19860962,8646828:236639 -k1,15277:21190087,8646828:236640 -k1,15277:22197430,8646828:236640 -k1,15277:25874054,8646828:236639 -k1,15277:28029588,8646828:236640 -k1,15277:31966991,8646828:0 -) -(1,15278:7246811,9488316:24720180,513147,126483 -k1,15277:9292564,9488316:191084 -k1,15277:10293018,9488316:191084 -k1,15277:11503187,9488316:191084 -k1,15277:13252718,9488316:191085 -k1,15277:15601903,9488316:191084 -k1,15277:17182350,9488316:191084 -k1,15277:19056399,9488316:191084 -k1,15277:21083802,9488316:191084 -k1,15277:22324773,9488316:191084 -k1,15277:24794544,9488316:191084 -h1,15277:26163591,9488316:0,0,0 -k1,15277:26354676,9488316:191085 -k1,15277:27493411,9488316:191084 -k1,15277:28455198,9488316:191084 -k1,15277:31307699,9488316:191084 -k1,15277:31966991,9488316:0 -) -(1,15278:7246811,10329804:24720180,513147,115847 -g1,15277:8465125,10329804 -g1,15277:9756839,10329804 -g1,15277:10623224,10329804 -(1,15277:10623224,10329804:0,452978,115847 -r1,15343:13443473,10329804:2820249,568825,115847 -k1,15277:10623224,10329804:-2820249 -) -(1,15277:10623224,10329804:2820249,452978,115847 -k1,15277:10623224,10329804:3277 -h1,15277:13440196,10329804:0,411205,112570 -) -g1,15277:13816372,10329804 -g1,15277:15034686,10329804 -g1,15277:15648758,10329804 -g1,15277:18543483,10329804 -g1,15277:19552082,10329804 -g1,15277:21636782,10329804 -(1,15277:21636782,10329804:0,452978,115847 -r1,15343:26567302,10329804:4930520,568825,115847 -k1,15277:21636782,10329804:-4930520 -) -(1,15277:21636782,10329804:4930520,452978,115847 -k1,15277:21636782,10329804:3277 -h1,15277:26564025,10329804:0,411205,112570 -) -g1,15277:26940201,10329804 -g1,15277:27670927,10329804 -k1,15278:31966991,10329804:2643901 -g1,15278:31966991,10329804 -) -v1,15282:7246811,11520270:0,393216,0 -(1,15288:7246811,13050806:24720180,1923752,196608 -g1,15288:7246811,13050806 -g1,15288:7246811,13050806 -g1,15288:7050203,13050806 -(1,15288:7050203,13050806:0,1923752,196608 -r1,15343:32163599,13050806:25113396,2120360,196608 -k1,15288:7050203,13050806:-25113396 -) -(1,15288:7050203,13050806:25113396,1923752,196608 -[1,15288:7246811,13050806:24720180,1727144,0 -(1,15284:7246811,11617263:24720180,293601,101187 -(1,15283:7246811,11617263:0,0,0 -g1,15283:7246811,11617263 -g1,15283:7246811,11617263 -g1,15283:6919131,11617263 -(1,15283:6919131,11617263:0,0,0 -) -g1,15283:7246811,11617263 -) -g1,15284:7879103,11617263 -h1,15284:8195249,11617263:0,0,0 -k1,15284:31966991,11617263:23771742 -g1,15284:31966991,11617263 -) -(1,15285:7246811,12283441:24720180,410518,107478 -h1,15285:7246811,12283441:0,0,0 -g1,15285:7562957,12283441 -g1,15285:7879103,12283441 -g1,15285:12937435,12283441 -g1,15285:13569727,12283441 -k1,15285:13569727,12283441:0 -h1,15285:16731184,12283441:0,0,0 -k1,15285:31966991,12283441:15235807 -g1,15285:31966991,12283441 -) -(1,15286:7246811,12949619:24720180,404226,101187 -h1,15286:7246811,12949619:0,0,0 -g1,15286:7562957,12949619 -g1,15286:7879103,12949619 -g1,15286:8195249,12949619 -g1,15286:8511395,12949619 -g1,15286:8827541,12949619 -g1,15286:9143687,12949619 -g1,15286:9459833,12949619 -g1,15286:9775979,12949619 -g1,15286:10092125,12949619 -g1,15286:10408271,12949619 -g1,15286:10724417,12949619 -g1,15286:11040563,12949619 -g1,15286:11356709,12949619 -g1,15286:14202020,12949619 -g1,15286:14834312,12949619 -g1,15286:20524935,12949619 -g1,15286:21157227,12949619 -k1,15286:21157227,12949619:0 -h1,15286:27480140,12949619:0,0,0 -k1,15286:31966991,12949619:4486851 -g1,15286:31966991,12949619 -) -] -) -g1,15288:31966991,13050806 -g1,15288:7246811,13050806 -g1,15288:7246811,13050806 -g1,15288:31966991,13050806 -g1,15288:31966991,13050806 -) -h1,15288:7246811,13247414:0,0,0 -] -) -] -r1,15343:32583029,14361526:26214,8500645,0 -) -] -) -) -g1,15291:32583029,13771702 -) -h1,15291:6630773,14387740:0,0,0 -(1,15298:6630773,15561978:25952256,513147,126483 -h1,15297:6630773,15561978:983040,0,0 -k1,15297:8423969,15561978:182321 -k1,15297:9625375,15561978:182321 -k1,15297:11191816,15561978:182321 -k1,15297:14035555,15561978:182322 -k1,15297:15086228,15561978:182321 -k1,15297:17197929,15561978:182321 -k1,15297:17736110,15561978:182321 -k1,15297:19195728,15561978:182321 -k1,15297:20772000,15561978:182321 -k1,15297:23729115,15561978:182321 -k1,15297:25973854,15561978:182321 -k1,15297:26784011,15561978:182322 -k1,15297:28169573,15561978:182321 -k1,15297:29718975,15561978:182321 -k1,15297:30920381,15561978:182321 -k1,15298:32583029,15561978:0 -) -(1,15298:6630773,16403466:25952256,513147,134348 -k1,15297:7855247,16403466:188350 -k1,15297:8702890,16403466:188351 -k1,15297:10683650,16403466:188350 -k1,15297:11403498,16403466:188351 -k1,15297:13481906,16403466:188350 -k1,15297:14861701,16403466:188350 -k1,15297:15859422,16403466:188351 -k1,15297:19044733,16403466:188350 -k1,15297:20916049,16403466:188351 -k1,15297:22767047,16403466:188350 -k1,15297:23716925,16403466:188350 -k1,15297:26344526,16403466:188351 -k1,15297:27160711,16403466:188350 -k1,15297:29046444,16403466:188351 -k1,15297:30932832,16403466:188350 -k1,15297:32583029,16403466:0 -) -(1,15298:6630773,17244954:25952256,513147,134348 -k1,15297:8951566,17244954:246579 -k1,15297:10189705,17244954:246579 -k1,15297:13015782,17244954:246580 -k1,15297:16259322,17244954:246579 -k1,15297:17773367,17244954:246579 -k1,15297:19192385,17244954:246579 -k1,15297:20121849,17244954:246579 -k1,15297:22018625,17244954:246579 -k1,15297:26319262,17244954:246580 -k1,15297:28100039,17244954:246579 -k1,15297:28878115,17244954:246579 -k1,15297:30143779,17244954:246579 -k1,15297:32583029,17244954:0 -) -(1,15298:6630773,18086442:25952256,513147,134348 -k1,15297:8454782,18086442:162016 -k1,15297:9485150,18086442:162016 -k1,15297:11275736,18086442:162016 -k1,15297:14434714,18086442:162017 -k1,15297:15990681,18086442:162016 -(1,15297:15990681,18086442:0,435480,115847 -r1,15343:18810930,18086442:2820249,551327,115847 -k1,15297:15990681,18086442:-2820249 -) -(1,15297:15990681,18086442:2820249,435480,115847 -g1,15297:17752517,18086442 -g1,15297:18455941,18086442 -h1,15297:18807653,18086442:0,411205,112570 -) -k1,15297:19146616,18086442:162016 -k1,15297:21091867,18086442:162016 -k1,15297:22989276,18086442:162016 -(1,15297:22989276,18086442:0,459977,115847 -r1,15343:27216372,18086442:4227096,575824,115847 -k1,15297:22989276,18086442:-4227096 -) -(1,15297:22989276,18086442:4227096,459977,115847 -k1,15297:22989276,18086442:3277 -h1,15297:27213095,18086442:0,411205,112570 -) -k1,15297:27378388,18086442:162016 -k1,15297:29195189,18086442:162017 -k1,15297:29888702,18086442:162016 -k1,15297:31426319,18086442:162016 -k1,15297:32583029,18086442:0 -) -(1,15298:6630773,18927930:25952256,513147,126483 -g1,15297:10348630,18927930 -g1,15297:11739304,18927930 -g1,15297:12957618,18927930 -g1,15297:16437579,18927930 -g1,15297:17168305,18927930 -g1,15297:19235310,18927930 -(1,15297:19235310,18927930:0,459977,115847 -r1,15343:21352135,18927930:2116825,575824,115847 -k1,15297:19235310,18927930:-2116825 -) -(1,15297:19235310,18927930:2116825,459977,115847 -k1,15297:19235310,18927930:3277 -h1,15297:21348858,18927930:0,411205,112570 -) -g1,15297:21725034,18927930 -g1,15297:24251446,18927930 -g1,15297:25117831,18927930 -(1,15297:25117831,18927930:0,414482,115847 -r1,15343:26531232,18927930:1413401,530329,115847 -k1,15297:25117831,18927930:-1413401 -) -(1,15297:25117831,18927930:1413401,414482,115847 -k1,15297:25117831,18927930:3277 -h1,15297:26527955,18927930:0,411205,112570 -) -g1,15297:26730461,18927930 -g1,15297:27612575,18927930 -(1,15297:27612575,18927930:0,452978,115847 -r1,15343:29025976,18927930:1413401,568825,115847 -k1,15297:27612575,18927930:-1413401 -) -(1,15297:27612575,18927930:1413401,452978,115847 -k1,15297:27612575,18927930:3277 -h1,15297:29022699,18927930:0,411205,112570 -) -k1,15298:32583029,18927930:3383383 -g1,15298:32583029,18927930 -) -v1,15302:6630773,19926858:0,393216,0 -(1,15306:6630773,20241955:25952256,708313,196608 -g1,15306:6630773,20241955 -g1,15306:6630773,20241955 -g1,15306:6434165,20241955 -(1,15306:6434165,20241955:0,708313,196608 -r1,15343:32779637,20241955:26345472,904921,196608 -k1,15306:6434165,20241955:-26345472 -) -(1,15306:6434165,20241955:26345472,708313,196608 -[1,15306:6630773,20241955:25952256,511705,0 -(1,15304:6630773,20140768:25952256,410518,101187 -(1,15303:6630773,20140768:0,0,0 -g1,15303:6630773,20140768 -g1,15303:6630773,20140768 -g1,15303:6303093,20140768 -(1,15303:6303093,20140768:0,0,0 -) -g1,15303:6630773,20140768 -) -g1,15304:7263065,20140768 -g1,15304:7895357,20140768 -g1,15304:13585980,20140768 -g1,15304:14218272,20140768 -g1,15304:17695875,20140768 -g1,15304:19276604,20140768 -g1,15304:19908896,20140768 -h1,15304:20541188,20140768:0,0,0 -k1,15304:32583029,20140768:12041841 -g1,15304:32583029,20140768 -) -] -) -g1,15306:32583029,20241955 -g1,15306:6630773,20241955 -g1,15306:6630773,20241955 -g1,15306:32583029,20241955 -g1,15306:32583029,20241955 -) -h1,15306:6630773,20438563:0,0,0 -(1,15309:6630773,34850834:25952256,14013984,0 -k1,15309:12599879,34850834:5969106 -h1,15308:12599879,34850834:0,0,0 -(1,15308:12599879,34850834:14014044,14013984,0 -(1,15308:12599879,34850834:14014019,14014019,0 -(1,15308:12599879,34850834:14014019,14014019,0 -(1,15308:12599879,34850834:0,14014019,0 -(1,15308:12599879,34850834:0,18945146,0 -(1,15308:12599879,34850834:18945146,18945146,0 -) -k1,15308:12599879,34850834:-18945146 -) -) -g1,15308:26613898,34850834 -) -) -) -g1,15309:26613923,34850834 -k1,15309:32583029,34850834:5969106 -) -(1,15316:6630773,35692322:25952256,513147,126483 -h1,15315:6630773,35692322:983040,0,0 -k1,15315:8964071,35692322:153571 -k1,15315:11779059,35692322:153571 -k1,15315:13801062,35692322:153572 -k1,15315:15439023,35692322:153571 -k1,15315:16658865,35692322:153571 -k1,15315:19268725,35692322:153571 -k1,15315:19953794,35692322:153572 -k1,15315:22309375,35692322:153571 -k1,15315:23114374,35692322:153571 -k1,15315:24287030,35692322:153571 -k1,15315:26474184,35692322:153572 -k1,15315:27784465,35692322:153571 -k1,15315:28885687,35692322:153571 -(1,15315:28885687,35692322:0,459977,122846 -r1,15343:32409359,35692322:3523672,582823,122846 -k1,15315:28885687,35692322:-3523672 -) -(1,15315:28885687,35692322:3523672,459977,122846 -k1,15315:28885687,35692322:3277 -h1,15315:32406082,35692322:0,411205,112570 -) -k1,15315:32583029,35692322:0 -) -(1,15316:6630773,36533810:25952256,513147,134348 -k1,15315:7957220,36533810:254278 -k1,15315:10760192,36533810:254277 -k1,15315:14131362,36533810:254278 -k1,15315:15037067,36533810:254277 -k1,15315:16463784,36533810:254278 -k1,15315:18942353,36533810:254277 -k1,15315:20590582,36533810:254278 -(1,15315:20590582,36533810:0,459977,115847 -r1,15343:24817678,36533810:4227096,575824,115847 -k1,15315:20590582,36533810:-4227096 -) -(1,15315:20590582,36533810:4227096,459977,115847 -k1,15315:20590582,36533810:3277 -h1,15315:24814401,36533810:0,411205,112570 -) -k1,15315:25071955,36533810:254277 -k1,15315:27070801,36533810:254278 -k1,15315:27680938,36533810:254277 -k1,15315:29808235,36533810:254278 -k1,15315:32583029,36533810:0 -) -(1,15316:6630773,37375298:25952256,513147,126483 -g1,15315:8033898,37375298 -g1,15315:8892419,37375298 -k1,15316:32583028,37375298:21442724 -g1,15316:32583028,37375298 -) -v1,15318:6630773,38374226:0,393216,0 -(1,15322:6630773,38689323:25952256,708313,196608 -g1,15322:6630773,38689323 -g1,15322:6630773,38689323 -g1,15322:6434165,38689323 -(1,15322:6434165,38689323:0,708313,196608 -r1,15343:32779637,38689323:26345472,904921,196608 -k1,15322:6434165,38689323:-26345472 -) -(1,15322:6434165,38689323:26345472,708313,196608 -[1,15322:6630773,38689323:25952256,511705,0 -(1,15320:6630773,38588136:25952256,410518,101187 -(1,15319:6630773,38588136:0,0,0 -g1,15319:6630773,38588136 -g1,15319:6630773,38588136 -g1,15319:6303093,38588136 -(1,15319:6303093,38588136:0,0,0 -) -g1,15319:6630773,38588136 -) -g1,15320:7263065,38588136 -g1,15320:7895357,38588136 -g1,15320:13585980,38588136 -g1,15320:14218272,38588136 -g1,15320:17063584,38588136 -g1,15320:18644313,38588136 -g1,15320:20225042,38588136 -g1,15320:20857334,38588136 -g1,15320:21805772,38588136 -g1,15320:24651083,38588136 -g1,15320:25283375,38588136 -h1,15320:28760977,38588136:0,0,0 -k1,15320:32583029,38588136:3822052 -g1,15320:32583029,38588136 -) -] -) -g1,15322:32583029,38689323 -g1,15322:6630773,38689323 -g1,15322:6630773,38689323 -g1,15322:32583029,38689323 -g1,15322:32583029,38689323 -) -h1,15322:6630773,38885931:0,0,0 -(1,15339:6630773,42026249:25952256,32768,229376 -(1,15339:6630773,42026249:0,32768,229376 -(1,15339:6630773,42026249:5505024,32768,229376 -r1,15343:12135797,42026249:5505024,262144,229376 -) -k1,15339:6630773,42026249:-5505024 -) -(1,15339:6630773,42026249:25952256,32768,0 -r1,15343:32583029,42026249:25952256,32768,0 -) -) -(1,15339:6630773,43630577:25952256,606339,14155 -(1,15339:6630773,43630577:1974731,582746,14155 -g1,15339:6630773,43630577 -g1,15339:8605504,43630577 -) -k1,15339:32583028,43630577:21567896 -g1,15339:32583028,43630577 -) -(1,15343:6630773,44865281:25952256,513147,126483 -k1,15342:7532901,44865281:274293 -k1,15342:9840776,44865281:274293 -k1,15342:12724058,44865281:274294 -k1,15342:13657643,44865281:274293 -k1,15342:15135177,44865281:274293 -k1,15342:18000764,44865281:274293 -k1,15342:21266777,44865281:274294 -k1,15342:23016285,44865281:274293 -k1,15342:24803804,44865281:274293 -k1,15342:26097182,44865281:274293 -k1,15342:28637056,44865281:274294 -k1,15342:30757499,44865281:274293 -k1,15342:31714677,44865281:274293 -k1,15342:32583029,44865281:0 -) -(1,15343:6630773,45706769:25952256,513147,126483 -k1,15342:8349181,45706769:243193 -k1,15342:9526917,45706769:243193 -k1,15342:11409166,45706769:243194 -k1,15342:13046310,45706769:243193 -k1,15342:17196104,45706769:243193 -k1,15342:20638765,45706769:243193 -k1,15342:21509793,45706769:243193 -k1,15342:22772071,45706769:243193 -k1,15342:25421092,45706769:243194 -k1,15342:27942972,45706769:243193 -k1,15342:29054517,45706769:243193 -k1,15342:31966991,45706769:243193 -k1,15342:32583029,45706769:0 -) -] -(1,15343:32583029,45706769:0,0,0 -g1,15343:32583029,45706769 -) -) -] -(1,15343:6630773,47279633:25952256,0,0 -h1,15343:6630773,47279633:25952256,0,0 -) -] -(1,15343:4262630,4025873:0,0,0 -[1,15343:-473656,4025873:0,0,0 -(1,15343:-473656,-710413:0,0,0 -(1,15343:-473656,-710413:0,0,0 -g1,15343:-473656,-710413 -) -g1,15343:-473656,-710413 -) -] -) -] -!19358 -}296 -Input:2384:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2385:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2386:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2387:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2388:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2389:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2390:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2391:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2392:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2393:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2394:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2395:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2396:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2397:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2398:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2399:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2400:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2401:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2402:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2403:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2404:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2405:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2406:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2407:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2408:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2409:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2410:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2411:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2412:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2413:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2414:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2415:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2416:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2417:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2418:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2419:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2420:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!3416 -{297 -[1,15369:4262630,47279633:28320399,43253760,0 -(1,15369:4262630,4025873:0,0,0 -[1,15369:-473656,4025873:0,0,0 -(1,15369:-473656,-710413:0,0,0 -(1,15369:-473656,-644877:0,0,0 -k1,15369:-473656,-644877:-65536 -) -(1,15369:-473656,4736287:0,0,0 -k1,15369:-473656,4736287:5209943 -) -g1,15369:-473656,-710413 -) -] -) -[1,15369:6630773,47279633:25952256,43253760,0 -[1,15369:6630773,4812305:25952256,786432,0 -(1,15369:6630773,4812305:25952256,513147,134348 -(1,15369:6630773,4812305:25952256,513147,134348 -g1,15369:3078558,4812305 -[1,15369:3078558,4812305:0,0,0 -(1,15369:3078558,2439708:0,1703936,0 -k1,15369:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,15369:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,15369:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,15369:3078558,4812305:0,0,0 -(1,15369:3078558,2439708:0,1703936,0 -g1,15369:29030814,2439708 -g1,15369:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,15369:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,15369:37855564,2439708:1179648,16384,0 -) -) -k1,15369:3078556,2439708:-34777008 -) -] -[1,15369:3078558,4812305:0,0,0 -(1,15369:3078558,49800853:0,16384,2228224 -k1,15369:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,15369:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,15369:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,15369:3078558,4812305:0,0,0 -(1,15369:3078558,49800853:0,16384,2228224 -g1,15369:29030814,49800853 -g1,15369:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,15369:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,15369:37855564,49800853:1179648,16384,0 -) -) -k1,15369:3078556,49800853:-34777008 -) -] -g1,15369:6630773,4812305 -k1,15369:25712890,4812305:17886740 -g1,15369:29057847,4812305 -g1,15369:29873114,4812305 -) -) -] -[1,15369:6630773,45706769:25952256,40108032,0 -(1,15369:6630773,45706769:25952256,40108032,0 -(1,15369:6630773,45706769:0,0,0 -g1,15369:6630773,45706769 -) -[1,15369:6630773,45706769:25952256,40108032,0 -(1,15343:6630773,6254097:25952256,513147,7863 -k1,15342:8576100,6254097:295130 -k1,15342:10658397,6254097:295130 -k1,15342:11972613,6254097:295131 -k1,15342:13360228,6254097:295130 -k1,15342:14314650,6254097:295130 -k1,15342:16606662,6254097:295130 -k1,15342:18734179,6254097:295130 -k1,15342:20020869,6254097:295130 -k1,15342:22162150,6254097:295131 -k1,15342:25241249,6254097:295130 -k1,15342:26484030,6254097:295130 -k1,15342:29541503,6254097:295130 -k1,15343:32583029,6254097:0 -) -(1,15343:6630773,7095585:25952256,513147,134348 -$1,15342:6837867,7095585 -$1,15342:7406064,7095585 -k1,15342:7611050,7095585:204986 -k1,15342:11132159,7095585:204987 -k1,15342:11996437,7095585:204986 -k1,15342:13220509,7095585:204987 -k1,15342:15727775,7095585:204986 -k1,15342:19657173,7095585:204987 -k1,15342:22325657,7095585:204986 -k1,15342:24024210,7095585:204987 -k1,15342:24915358,7095585:204986 -k1,15342:27734576,7095585:204987 -(1,15342:27941670,7095585:0,414482,115847 -r1,15369:30410208,7095585:2468538,530329,115847 -k1,15342:27941670,7095585:-2468538 -) -(1,15342:27941670,7095585:2468538,414482,115847 -g1,15342:29000083,7095585 -g1,15342:30055219,7095585 -h1,15342:30406931,7095585:0,411205,112570 -) -k1,15342:30995958,7095585:204986 -(1,15342:30995958,7095585:0,452978,115847 -r1,15369:32409359,7095585:1413401,568825,115847 -k1,15342:30995958,7095585:-1413401 -) -(1,15342:30995958,7095585:1413401,452978,115847 -k1,15342:30995958,7095585:3277 -h1,15342:32406082,7095585:0,411205,112570 -) -k1,15343:32583029,7095585:0 -) -(1,15343:6630773,7937073:25952256,505283,126483 -(1,15342:6630773,7937073:0,452978,115847 -r1,15369:8395886,7937073:1765113,568825,115847 -k1,15342:6630773,7937073:-1765113 -) -(1,15342:6630773,7937073:1765113,452978,115847 -k1,15342:6630773,7937073:3277 -h1,15342:8392609,7937073:0,411205,112570 -) -k1,15342:8795889,7937073:226333 -(1,15342:8795889,7937073:0,452978,115847 -r1,15369:11616138,7937073:2820249,568825,115847 -k1,15342:8795889,7937073:-2820249 -) -(1,15342:8795889,7937073:2820249,452978,115847 -k1,15342:8795889,7937073:3277 -h1,15342:11612861,7937073:0,411205,112570 -) -k1,15342:12016141,7937073:226333 -(1,15342:12016141,7937073:0,452978,115847 -r1,15369:13781254,7937073:1765113,568825,115847 -k1,15342:12016141,7937073:-1765113 -) -(1,15342:12016141,7937073:1765113,452978,115847 -k1,15342:12016141,7937073:3277 -h1,15342:13777977,7937073:0,411205,112570 -) -k1,15342:14181258,7937073:226334 -(1,15342:14181258,7937073:0,459977,115847 -r1,15369:15594659,7937073:1413401,575824,115847 -k1,15342:14181258,7937073:-1413401 -) -(1,15342:14181258,7937073:1413401,459977,115847 -k1,15342:14181258,7937073:3277 -h1,15342:15591382,7937073:0,411205,112570 -) -k1,15342:15994662,7937073:226333 -(1,15342:15994662,7937073:0,452978,115847 -r1,15369:17759775,7937073:1765113,568825,115847 -k1,15342:15994662,7937073:-1765113 -) -(1,15342:15994662,7937073:1765113,452978,115847 -k1,15342:15994662,7937073:3277 -h1,15342:17756498,7937073:0,411205,112570 -) -k1,15342:17986108,7937073:226333 -k1,15342:18895326,7937073:226333 -k1,15342:23463419,7937073:226333 -(1,15342:23463419,7937073:0,452978,122846 -r1,15369:25228532,7937073:1765113,575824,122846 -k1,15342:23463419,7937073:-1765113 -) -(1,15342:23463419,7937073:1765113,452978,122846 -k1,15342:23463419,7937073:3277 -h1,15342:25225255,7937073:0,411205,112570 -) -k1,15342:25628536,7937073:226334 -k1,15342:27782283,7937073:226333 -k1,15342:31252648,7937073:226333 -k1,15342:32583029,7937073:0 -) -(1,15343:6630773,8778561:25952256,513147,126483 -k1,15342:8913361,8778561:271943 -k1,15342:9801341,8778561:271942 -(1,15342:9801341,8778561:0,452978,115847 -r1,15369:11214742,8778561:1413401,568825,115847 -k1,15342:9801341,8778561:-1413401 -) -(1,15342:9801341,8778561:1413401,452978,115847 -k1,15342:9801341,8778561:3277 -h1,15342:11211465,8778561:0,411205,112570 -) -k1,15342:11486685,8778561:271943 -k1,15342:12750187,8778561:271942 -k1,15342:15607525,8778561:271943 -k1,15342:16530895,8778561:271942 -k1,15342:18813483,8778561:271943 -k1,15342:19744717,8778561:271942 -k1,15342:20787363,8778561:271943 -k1,15342:24274501,8778561:271942 -k1,15342:25737889,8778561:271943 -k1,15342:27340212,8778561:271942 -k1,15342:29308882,8778561:271943 -k1,15342:31591469,8778561:271942 -k1,15342:32583029,8778561:0 -) -(1,15343:6630773,9620049:25952256,505283,7863 -k1,15343:32583029,9620049:23496622 -g1,15343:32583029,9620049 -) -(1,15345:6630773,10461537:25952256,513147,134348 -h1,15344:6630773,10461537:983040,0,0 -k1,15344:11404296,10461537:345911 -k1,15344:12559576,10461537:345910 -k1,15344:13924572,10461537:345911 -k1,15344:18898636,10461537:345911 -k1,15344:19903838,10461537:345910 -k1,15344:21268834,10461537:345911 -k1,15344:23004107,10461537:345910 -k1,15344:25088033,10461537:345911 -k1,15344:28193010,10461537:345911 -k1,15344:30385070,10461537:345910 -k1,15344:31835263,10461537:345911 -k1,15344:32583029,10461537:0 -) -(1,15345:6630773,11303025:25952256,513147,126483 -k1,15344:10459780,11303025:258606 -k1,15344:11401271,11303025:258606 -k1,15344:14359305,11303025:258606 -k1,15344:15565562,11303025:258606 -(1,15344:15565562,11303025:0,452978,115847 -r1,15369:18034099,11303025:2468537,568825,115847 -k1,15344:15565562,11303025:-2468537 -) -(1,15344:15565562,11303025:2468537,452978,115847 -k1,15344:15565562,11303025:3277 -h1,15344:18030822,11303025:0,411205,112570 -) -k1,15344:18292705,11303025:258606 -k1,15344:19234195,11303025:258605 -(1,15344:19234195,11303025:0,459977,115847 -r1,15369:21351020,11303025:2116825,575824,115847 -k1,15344:19234195,11303025:-2116825 -) -(1,15344:19234195,11303025:2116825,459977,115847 -k1,15344:19234195,11303025:3277 -h1,15344:21347743,11303025:0,411205,112570 -) -k1,15344:21609626,11303025:258606 -k1,15344:24709873,11303025:258606 -k1,15344:25584517,11303025:258606 -(1,15344:25584517,11303025:0,452978,115847 -r1,15369:26997918,11303025:1413401,568825,115847 -k1,15344:25584517,11303025:-1413401 -) -(1,15344:25584517,11303025:1413401,452978,115847 -k1,15344:25584517,11303025:3277 -h1,15344:26994641,11303025:0,411205,112570 -) -k1,15344:27430194,11303025:258606 -k1,15344:31658971,11303025:258606 -k1,15344:32583029,11303025:0 -) -(1,15345:6630773,12144513:25952256,505283,126483 -k1,15344:7896236,12144513:246378 -k1,15344:9844584,12144513:246378 -k1,15344:11870921,12144513:246379 -k1,15344:13809439,12144513:246378 -k1,15344:17271013,12144513:246378 -k1,15344:18663616,12144513:246378 -(1,15344:18663616,12144513:0,452978,115847 -r1,15369:20077017,12144513:1413401,568825,115847 -k1,15344:18663616,12144513:-1413401 -) -(1,15344:18663616,12144513:1413401,452978,115847 -k1,15344:18663616,12144513:3277 -h1,15344:20073740,12144513:0,411205,112570 -) -k1,15344:20497065,12144513:246378 -k1,15344:21847725,12144513:246378 -k1,15344:23456598,12144513:246379 -k1,15344:27839608,12144513:246378 -k1,15344:29158155,12144513:246378 -k1,15344:31436804,12144513:246378 -k1,15345:32583029,12144513:0 -) -(1,15345:6630773,12986001:25952256,513147,126483 -(1,15344:6630773,12986001:0,452978,115847 -r1,15369:9451022,12986001:2820249,568825,115847 -k1,15344:6630773,12986001:-2820249 -) -(1,15344:6630773,12986001:2820249,452978,115847 -k1,15344:6630773,12986001:3277 -h1,15344:9447745,12986001:0,411205,112570 -) -k1,15344:9673823,12986001:222801 -k1,15344:10888184,12986001:222801 -k1,15344:14362881,12986001:222801 -k1,15344:17285110,12986001:222801 -k1,15344:18135746,12986001:222801 -k1,15344:21024551,12986001:222800 -k1,15344:21898780,12986001:222801 -k1,15344:24647339,12986001:222801 -k1,15344:26772650,12986001:222801 -k1,15344:27943102,12986001:222801 -k1,15344:31417799,12986001:222801 -k1,15345:32583029,12986001:0 -) -(1,15345:6630773,13827489:25952256,513147,126483 -k1,15344:8356633,13827489:152341 -k1,15344:11724171,13827489:152342 -k1,15344:14402270,13827489:152341 -k1,15344:16457121,13827489:152341 -k1,15344:17601022,13827489:152341 -k1,15344:20537333,13827489:152342 -k1,15344:21637325,13827489:152341 -k1,15344:23533579,13827489:152341 -k1,15344:26750384,13827489:152341 -k1,15344:28187232,13827489:152342 -k1,15344:29331133,13827489:152341 -k1,15344:32583029,13827489:0 -) -(1,15345:6630773,14668977:25952256,505283,115847 -g1,15344:10574074,14668977 -g1,15344:11919528,14668977 -(1,15344:11919528,14668977:0,414482,115847 -r1,15369:12277794,14668977:358266,530329,115847 -k1,15344:11919528,14668977:-358266 -) -(1,15344:11919528,14668977:358266,414482,115847 -k1,15344:11919528,14668977:3277 -h1,15344:12274517,14668977:0,411205,112570 -) -g1,15344:12650693,14668977 -(1,15344:12650693,14668977:0,414482,115847 -r1,15369:13008959,14668977:358266,530329,115847 -k1,15344:12650693,14668977:-358266 -) -(1,15344:12650693,14668977:358266,414482,115847 -k1,15344:12650693,14668977:3277 -h1,15344:13005682,14668977:0,411205,112570 -) -g1,15344:13381858,14668977 -(1,15344:13381858,14668977:0,452978,115847 -r1,15369:14795259,14668977:1413401,568825,115847 -k1,15344:13381858,14668977:-1413401 -) -(1,15344:13381858,14668977:1413401,452978,115847 -k1,15344:13381858,14668977:3277 -h1,15344:14791982,14668977:0,411205,112570 -) -g1,15344:15168158,14668977 -(1,15344:15168158,14668977:0,452978,115847 -r1,15369:16933271,14668977:1765113,568825,115847 -k1,15344:15168158,14668977:-1765113 -) -(1,15344:15168158,14668977:1765113,452978,115847 -k1,15344:15168158,14668977:3277 -h1,15344:16929994,14668977:0,411205,112570 -) -g1,15344:17306170,14668977 -k1,15345:32583029,14668977:14165368 -g1,15345:32583029,14668977 -) -(1,15347:6630773,15510465:25952256,513147,134348 -h1,15346:6630773,15510465:983040,0,0 -k1,15346:8945504,15510465:135004 -k1,15346:10983018,15510465:135004 -k1,15346:12631248,15510465:135004 -k1,15346:13527781,15510465:135005 -k1,15346:15928365,15510465:135004 -k1,15346:16997912,15510465:135004 -k1,15346:18152001,15510465:135004 -k1,15346:21094567,15510465:135004 -k1,15346:25546428,15510465:135004 -k1,15346:27131089,15510465:135005 -k1,15346:29151564,15510465:135004 -k1,15346:30902686,15510465:135004 -k1,15346:32583029,15510465:0 -) -(1,15347:6630773,16351953:25952256,513147,126483 -k1,15346:10814280,16351953:219890 -k1,15346:11685599,16351953:219891 -$1,15346:11685599,16351953 -k1,15346:12408082,16351953:219822 -k1,15346:13196100,16351953:219821 -$1,15346:13594559,16351953 -k1,15346:13814450,16351953:219891 -k1,15346:15225785,16351953:219890 -k1,15346:17331147,16351953:219891 -k1,15346:18707747,16351953:219890 -k1,15346:19579065,16351953:219890 -$1,15346:19579065,16351953 -k1,15346:20301548,16351953:219822 -k1,15346:21089567,16351953:219822 -$1,15346:21488026,16351953 -k1,15346:22088681,16351953:219891 -k1,15346:25243273,16351953:219890 -k1,15346:26410814,16351953:219890 -k1,15346:28082327,16351953:219891 -k1,15346:31089463,16351953:219890 -k1,15346:32583029,16351953:0 -) -(1,15347:6630773,17193441:25952256,513147,134348 -k1,15346:7515025,17193441:198090 -(1,15346:7515025,17193441:0,452978,115847 -r1,15369:9280138,17193441:1765113,568825,115847 -k1,15346:7515025,17193441:-1765113 -) -(1,15346:7515025,17193441:1765113,452978,115847 -k1,15346:7515025,17193441:3277 -h1,15346:9276861,17193441:0,411205,112570 -) -k1,15346:9651897,17193441:198089 -k1,15346:11504771,17193441:198090 -k1,15346:12694421,17193441:198090 -k1,15346:15563757,17193441:198089 -k1,15346:17664357,17193441:198090 -k1,15346:18513874,17193441:198089 -k1,15346:20927081,17193441:198090 -k1,15346:22692792,17193441:198090 -k1,15346:24588919,17193441:198089 -k1,15346:27359297,17193441:198090 -k1,15346:27913247,17193441:198090 -k1,15346:29562303,17193441:198089 -k1,15346:31227089,17193441:198090 -k1,15347:32583029,17193441:0 -) -(1,15347:6630773,18034929:25952256,513147,134348 -g1,15346:9257456,18034929 -g1,15346:10648130,18034929 -g1,15346:13373117,18034929 -g1,15346:15022002,18034929 -g1,15346:16018149,18034929 -g1,15346:18979721,18034929 -g1,15346:20795068,18034929 -g1,15346:22896807,18034929 -g1,15346:23712074,18034929 -g1,15346:26739836,18034929 -k1,15347:32583029,18034929:3919711 -g1,15347:32583029,18034929 -) -v1,15349:6630773,19400705:0,393216,0 -(1,15350:6630773,26802311:25952256,7794822,616038 -g1,15350:6630773,26802311 -(1,15350:6630773,26802311:25952256,7794822,616038 -(1,15350:6630773,27418349:25952256,8410860,0 -[1,15350:6630773,27418349:25952256,8410860,0 -(1,15350:6630773,27392135:25952256,8358432,0 -r1,15369:6656987,27392135:26214,8358432,0 -[1,15350:6656987,27392135:25899828,8358432,0 -(1,15350:6656987,26802311:25899828,7178784,0 -[1,15350:7246811,26802311:24720180,7178784,0 -(1,15350:7246811,20785412:24720180,1161885,196608 -(1,15349:7246811,20785412:0,1161885,196608 -r1,15369:8794447,20785412:1547636,1358493,196608 -k1,15349:7246811,20785412:-1547636 -) -(1,15349:7246811,20785412:1547636,1161885,196608 -) -k1,15349:9013364,20785412:218917 -k1,15349:12387841,20785412:218918 -k1,15349:13222796,20785412:218917 -k1,15349:13797573,20785412:218917 -k1,15349:15293788,20785412:218918 -k1,15349:17244166,20785412:218917 -k1,15349:18079121,20785412:218917 -k1,15349:20964044,20785412:218918 -k1,15349:21834389,20785412:218917 -k1,15349:23791321,20785412:218917 -k1,15349:27675012,20785412:218918 -k1,15349:28655457,20785412:218917 -k1,15349:31966991,20785412:0 -) -(1,15350:7246811,21626900:24720180,505283,134348 -k1,15349:8635563,21626900:284470 -k1,15349:10205849,21626900:284470 -k1,15349:11238085,21626900:284470 -k1,15349:12457098,21626900:284470 -k1,15349:13392996,21626900:284470 -k1,15349:16435221,21626900:284470 -k1,15349:18730336,21626900:284470 -k1,15349:20464462,21626900:284470 -k1,15349:23273379,21626900:284470 -k1,15349:24323965,21626900:284470 -k1,15349:26626944,21626900:284470 -k1,15349:27527452,21626900:284470 -k1,15349:28167782,21626900:284470 -k1,15349:30010043,21626900:284470 -k1,15349:30910551,21626900:284470 -k1,15349:31966991,21626900:0 -) -(1,15350:7246811,22468388:24720180,513147,126483 -k1,15349:9745152,22468388:171158 -k1,15349:10575602,22468388:171158 -k1,15349:11765845,22468388:171158 -k1,15349:14202584,22468388:171159 -k1,15349:16442058,22468388:171158 -k1,15349:19768775,22468388:171158 -k1,15349:20874476,22468388:171158 -k1,15349:21697062,22468388:171158 -k1,15349:24625975,22468388:171158 -k1,15349:26981449,22468388:171159 -k1,15349:28144167,22468388:171158 -k1,15349:29381596,22468388:171158 -k1,15349:31966991,22468388:0 -) -(1,15350:7246811,23309876:24720180,513147,126483 -k1,15349:8043788,23309876:145549 -k1,15349:9752372,23309876:145550 -k1,15349:11089366,23309876:145549 -k1,15349:12226475,23309876:145549 -k1,15349:16597131,23309876:145550 -k1,15349:20749551,23309876:145549 -k1,15349:21554393,23309876:145550 -k1,15349:23776123,23309876:145549 -k1,15349:24549507,23309876:145549 -k1,15349:26397027,23309876:145550 -k1,15349:28671185,23309876:145549 -k1,15349:31966991,23309876:0 -) -(1,15350:7246811,24151364:24720180,513147,134348 -k1,15349:8175409,24151364:269306 -k1,15349:9722012,24151364:269306 -k1,15349:12860485,24151364:269307 -k1,15349:14234073,24151364:269306 -k1,15349:15251145,24151364:269306 -k1,15349:17376431,24151364:269306 -k1,15349:18580281,24151364:269307 -k1,15349:19501015,24151364:269306 -k1,15349:20126181,24151364:269306 -k1,15349:22268506,24151364:269306 -k1,15349:25295567,24151364:269306 -k1,15349:27245217,24151364:269307 -k1,15349:28173815,24151364:269306 -k1,15349:29213824,24151364:269306 -k1,15350:31966991,24151364:0 -) -(1,15350:7246811,24992852:24720180,513147,134348 -k1,15349:10210516,24992852:194154 -k1,15349:11170786,24992852:194154 -k1,15349:15436692,24992852:194154 -k1,15349:18036673,24992852:194154 -k1,15349:18846865,24992852:194154 -k1,15349:20060104,24992852:194154 -k1,15349:21812050,24992852:194155 -(1,15349:21812050,24992852:0,452978,115847 -r1,15369:23225451,24992852:1413401,568825,115847 -k1,15349:21812050,24992852:-1413401 -) -(1,15349:21812050,24992852:1413401,452978,115847 -k1,15349:21812050,24992852:3277 -h1,15349:23222174,24992852:0,411205,112570 -) -k1,15349:23593275,24992852:194154 -k1,15349:24470314,24992852:194154 -k1,15349:27249863,24992852:194154 -k1,15349:28095445,24992852:194154 -k1,15349:28645459,24992852:194154 -k1,15349:31350953,24992852:194154 -k1,15350:31966991,24992852:0 -) -(1,15350:7246811,25834340:24720180,513147,126483 -(1,15349:7246811,25834340:0,452978,115847 -r1,15369:8660212,25834340:1413401,568825,115847 -k1,15349:7246811,25834340:-1413401 -) -(1,15349:7246811,25834340:1413401,452978,115847 -k1,15349:7246811,25834340:3277 -h1,15349:8656935,25834340:0,411205,112570 -) -k1,15349:8839037,25834340:178825 -k1,15349:9633899,25834340:178824 -k1,15349:11698195,25834340:178825 -k1,15349:13244101,25834340:178825 -k1,15349:14442011,25834340:178825 -k1,15349:16301178,25834340:178824 -k1,15349:17139295,25834340:178825 -k1,15349:18337205,25834340:178825 -k1,15349:21442867,25834340:178825 -k1,15349:23115257,25834340:178824 -k1,15349:23980244,25834340:178825 -(1,15349:23980244,25834340:0,452978,115847 -r1,15369:25745357,25834340:1765113,568825,115847 -k1,15349:23980244,25834340:-1765113 -) -(1,15349:23980244,25834340:1765113,452978,115847 -k1,15349:23980244,25834340:3277 -h1,15349:25742080,25834340:0,411205,112570 -) -k1,15349:26097852,25834340:178825 -k1,15349:27409139,25834340:178825 -k1,15349:29959711,25834340:178824 -k1,15349:30947906,25834340:178825 -k1,15349:31966991,25834340:0 -) -(1,15350:7246811,26675828:24720180,513147,126483 -g1,15349:9456685,26675828 -g1,15349:10315206,26675828 -g1,15349:11533520,26675828 -g1,15349:14318144,26675828 -k1,15350:31966991,26675828:14963837 -g1,15350:31966991,26675828 -) -] -) -] -r1,15369:32583029,27392135:26214,8358432,0 -) -] -) -) -g1,15350:32583029,26802311 -) -h1,15350:6630773,27418349:0,0,0 -(1,15353:6630773,28784125:25952256,505283,134348 -h1,15352:6630773,28784125:983040,0,0 -k1,15352:9100554,28784125:290054 -k1,15352:10992309,28784125:290055 -k1,15352:13130478,28784125:290054 -k1,15352:16228095,28784125:290055 -k1,15352:17169577,28784125:290054 -k1,15352:18848994,28784125:290054 -k1,15352:19670546,28784125:290055 -(1,15352:19670546,28784125:0,452978,115847 -r1,15369:22490795,28784125:2820249,568825,115847 -k1,15352:19670546,28784125:-2820249 -) -(1,15352:19670546,28784125:2820249,452978,115847 -k1,15352:19670546,28784125:3277 -h1,15352:22487518,28784125:0,411205,112570 -) -k1,15352:22954519,28784125:290054 -k1,15352:25130044,28784125:290054 -k1,15352:27488415,28784125:290055 -k1,15352:29062975,28784125:290054 -k1,15352:30372115,28784125:290055 -k1,15352:32051532,28784125:290054 -k1,15352:32583029,28784125:0 -) -(1,15353:6630773,29625613:25952256,513147,126483 -k1,15352:8721823,29625613:323544 -k1,15352:9658129,29625613:323544 -k1,15352:10770071,29625613:323544 -k1,15352:12395160,29625613:323544 -k1,15352:14572718,29625613:323544 -k1,15352:15524097,29625613:323544 -k1,15352:16203500,29625613:323543 -k1,15352:18143162,29625613:323544 -k1,15352:20212585,29625613:323544 -k1,15352:21583394,29625613:323544 -(1,15352:21583394,29625613:0,452978,115847 -r1,15369:29327608,29625613:7744214,568825,115847 -k1,15352:21583394,29625613:-7744214 -) -(1,15352:21583394,29625613:7744214,452978,115847 -k1,15352:21583394,29625613:3277 -h1,15352:29324331,29625613:0,411205,112570 -) -k1,15352:29824822,29625613:323544 -k1,15352:31167451,29625613:323544 -k1,15353:32583029,29625613:0 -) -(1,15353:6630773,30467101:25952256,505283,115847 -k1,15352:8195754,30467101:256227 -k1,15352:9068019,30467101:256227 -k1,15352:10343331,30467101:256227 -k1,15352:11988921,30467101:256227 -k1,15352:14201398,30467101:256227 -k1,15352:15205391,30467101:256227 -k1,15352:18140731,30467101:256228 -k1,15352:19790909,30467101:256227 -k1,15352:22057781,30467101:256227 -k1,15352:23807574,30467101:256227 -k1,15352:24749963,30467101:256227 -(1,15352:24749963,30467101:0,452978,115847 -r1,15369:26515076,30467101:1765113,568825,115847 -k1,15352:24749963,30467101:-1765113 -) -(1,15352:24749963,30467101:1765113,452978,115847 -k1,15352:24749963,30467101:3277 -h1,15352:26511799,30467101:0,411205,112570 -) -k1,15352:26944973,30467101:256227 -(1,15352:26944973,30467101:0,452978,115847 -r1,15369:29061798,30467101:2116825,568825,115847 -k1,15352:26944973,30467101:-2116825 -) -(1,15352:26944973,30467101:2116825,452978,115847 -k1,15352:26944973,30467101:3277 -h1,15352:29058521,30467101:0,411205,112570 -) -k1,15352:31042933,30467101:256227 -k1,15353:32583029,30467101:0 -) -(1,15353:6630773,31308589:25952256,513147,134348 -k1,15352:7293909,31308589:248293 -k1,15352:10077184,31308589:248342 -k1,15352:10953362,31308589:248343 -k1,15352:11557564,31308589:248342 -k1,15352:13930583,31308589:248342 -k1,15352:16986488,31308589:248343 -k1,15352:18970223,31308589:248342 -(1,15352:18970223,31308589:0,452978,115847 -r1,15369:26714437,31308589:7744214,568825,115847 -k1,15352:18970223,31308589:-7744214 -) -(1,15352:18970223,31308589:7744214,452978,115847 -k1,15352:18970223,31308589:3277 -h1,15352:26711160,31308589:0,411205,112570 -) -k1,15352:26962779,31308589:248342 -k1,15352:29003531,31308589:248342 -k1,15352:29911166,31308589:248343 -k1,15352:30515368,31308589:248342 -k1,15352:32583029,31308589:0 -) -(1,15353:6630773,32150077:25952256,505283,126483 -k1,15352:8320983,32150077:196644 -k1,15352:9203789,32150077:196644 -(1,15352:9203789,32150077:0,452978,115847 -r1,15369:13079173,32150077:3875384,568825,115847 -k1,15352:9203789,32150077:-3875384 -) -(1,15352:9203789,32150077:3875384,452978,115847 -k1,15352:9203789,32150077:3277 -h1,15352:13075896,32150077:0,411205,112570 -) -k1,15352:13275817,32150077:196644 -k1,15352:14663906,32150077:196644 -(1,15352:14663906,32150077:0,452978,115847 -r1,15369:17835866,32150077:3171960,568825,115847 -k1,15352:14663906,32150077:-3171960 -) -(1,15352:14663906,32150077:3171960,452978,115847 -k1,15352:14663906,32150077:3277 -h1,15352:17832589,32150077:0,411205,112570 -) -k1,15352:18032510,32150077:196644 -k1,15352:20185403,32150077:196643 -k1,15352:21129813,32150077:196644 -k1,15352:25136065,32150077:196644 -k1,15352:26018871,32150077:196644 -k1,15352:28631172,32150077:196644 -k1,15352:31189078,32150077:196644 -k1,15352:32583029,32150077:0 -) -(1,15353:6630773,32991565:25952256,513147,126483 -k1,15352:7903876,32991565:254018 -k1,15352:13234312,32991565:254017 -k1,15352:14147622,32991565:254018 -k1,15352:17594553,32991565:254017 -k1,15352:19742561,32991565:254018 -k1,15352:21788988,32991565:254017 -k1,15352:22694434,32991565:254018 -k1,15352:26141365,32991565:254017 -k1,15352:28756645,32991565:254018 -k1,15352:31599334,32991565:254017 -k1,15353:32583029,32991565:0 -) -(1,15353:6630773,33833053:25952256,513147,126483 -k1,15352:10436881,33833053:259955 -k1,15352:11458365,33833053:259956 -k1,15352:14157570,33833053:259955 -k1,15352:15045360,33833053:259955 -k1,15352:17936587,33833053:259956 -k1,15352:19590493,33833053:259955 -(1,15352:19590493,33833053:0,452978,115847 -r1,15369:26631284,33833053:7040791,568825,115847 -k1,15352:19590493,33833053:-7040791 -) -(1,15352:19590493,33833053:7040791,452978,115847 -k1,15352:19590493,33833053:3277 -h1,15352:26628007,33833053:0,411205,112570 -) -k1,15352:26891239,33833053:259955 -k1,15352:28170279,33833053:259955 -k1,15352:29811079,33833053:259956 -k1,15352:31931601,33833053:259955 -k1,15352:32583029,33833053:0 -) -(1,15353:6630773,34674541:25952256,513147,134348 -k1,15352:9717996,34674541:189876 -k1,15352:12337946,34674541:189875 -k1,15352:13546907,34674541:189876 -k1,15352:16544344,34674541:189875 -k1,15352:19369423,34674541:189876 -k1,15352:21453288,34674541:189875 -k1,15352:23435574,34674541:189876 -k1,15352:24816894,34674541:189875 -k1,15352:27368032,34674541:189876 -k1,15352:28319435,34674541:189875 -k1,15352:30936765,34674541:189876 -k1,15353:32583029,34674541:0 -) -(1,15353:6630773,35516029:25952256,513147,126483 -g1,15352:8799359,35516029 -g1,15352:9650016,35516029 -g1,15352:10868330,35516029 -g1,15352:12639768,35516029 -g1,15352:16038465,35516029 -g1,15352:19848728,35516029 -(1,15352:19848728,35516029:0,452978,115847 -r1,15369:21965553,35516029:2116825,568825,115847 -k1,15352:19848728,35516029:-2116825 -) -(1,15352:19848728,35516029:2116825,452978,115847 -k1,15352:19848728,35516029:3277 -h1,15352:21962276,35516029:0,411205,112570 -) -g1,15352:22164782,35516029 -g1,15352:23555456,35516029 -(1,15352:23555456,35516029:0,452978,115847 -r1,15369:25672281,35516029:2116825,568825,115847 -k1,15352:23555456,35516029:-2116825 -) -(1,15352:23555456,35516029:2116825,452978,115847 -k1,15352:23555456,35516029:3277 -h1,15352:25669004,35516029:0,411205,112570 -) -k1,15353:32583029,35516029:6737078 -g1,15353:32583029,35516029 -) -(1,15355:6630773,36357517:25952256,505283,134348 -h1,15354:6630773,36357517:983040,0,0 -k1,15354:8240787,36357517:139386 -k1,15354:11950633,36357517:139445 -k1,15354:13479441,36357517:139445 -k1,15354:16130226,36357517:139445 -k1,15354:18130238,36357517:139445 -k1,15354:18921111,36357517:139445 -k1,15354:19808322,36357517:139445 -k1,15354:22533162,36357517:139445 -k1,15354:23324035,36357517:139445 -k1,15354:24234183,36357517:139445 -k1,15354:27160874,36357517:139445 -k1,15354:29858845,36357517:139445 -k1,15354:30354150,36357517:139445 -k1,15355:32583029,36357517:0 -) -(1,15355:6630773,37199005:25952256,505283,115847 -k1,15354:8345846,37199005:160559 -k1,15354:10078614,37199005:160559 -k1,15354:11732739,37199005:160559 -k1,15354:12579460,37199005:160559 -(1,15354:12579460,37199005:0,452978,115847 -r1,15369:21027097,37199005:8447637,568825,115847 -k1,15354:12579460,37199005:-8447637 -) -(1,15354:12579460,37199005:8447637,452978,115847 -k1,15354:12579460,37199005:3277 -h1,15354:21023820,37199005:0,411205,112570 -) -k1,15354:21187656,37199005:160559 -k1,15354:22031099,37199005:160558 -k1,15354:23348368,37199005:160559 -k1,15354:24297325,37199005:160559 -k1,15354:26800141,37199005:160559 -k1,15354:29694862,37199005:160559 -k1,15354:31966991,37199005:160559 -k1,15354:32583029,37199005:0 -) -(1,15355:6630773,38040493:25952256,513147,134348 -k1,15354:7179763,38040493:193130 -(1,15354:7179763,38040493:0,452978,115847 -r1,15369:9648300,38040493:2468537,568825,115847 -k1,15354:7179763,38040493:-2468537 -) -(1,15354:7179763,38040493:2468537,452978,115847 -k1,15354:7179763,38040493:3277 -h1,15354:9645023,38040493:0,411205,112570 -) -k1,15354:9841430,38040493:193130 -k1,15354:12545899,38040493:193129 -k1,15354:13871491,38040493:193130 -k1,15354:14812387,38040493:193130 -k1,15354:17590912,38040493:193130 -k1,15354:19051508,38040493:193130 -k1,15354:19600498,38040493:193130 -k1,15354:23364028,38040493:193129 -k1,15354:25337771,38040493:193130 -k1,15354:26190193,38040493:193130 -k1,15354:28918256,38040493:193130 -k1,15354:32583029,38040493:0 -) -(1,15355:6630773,38881981:25952256,505283,134348 -k1,15354:8766974,38881981:280221 -k1,15354:13364052,38881981:280221 -k1,15354:16202799,38881981:280221 -k1,15354:16838880,38881981:280221 -k1,15354:19309314,38881981:280221 -k1,15354:20272419,38881981:280220 -k1,15354:23485376,38881981:280221 -k1,15354:24527125,38881981:280221 -k1,15354:26730172,38881981:280221 -k1,15354:28029478,38881981:280221 -k1,15354:30670961,38881981:280221 -k1,15354:31563944,38881981:280221 -k1,15354:32583029,38881981:0 -) -(1,15355:6630773,39723469:25952256,513147,134348 -k1,15354:9894645,39723469:187612 -k1,15354:11273701,39723469:187611 -k1,15354:14671266,39723469:187612 -k1,15354:15471640,39723469:187612 -k1,15354:18330498,39723469:187611 -k1,15354:22576099,39723469:187612 -k1,15354:24948025,39723469:187611 -k1,15354:27145626,39723469:187612 -k1,15354:28352323,39723469:187612 -k1,15354:30320547,39723469:187611 -k1,15354:31167451,39723469:187612 -k1,15355:32583029,39723469:0 -) -(1,15355:6630773,40564957:25952256,513147,134348 -k1,15354:8447481,40564957:193381 -k1,15354:9300155,40564957:193382 -k1,15354:10512621,40564957:193381 -k1,15354:13291398,40564957:193382 -k1,15354:15996119,40564957:193381 -k1,15354:17639157,40564957:193382 -k1,15354:19404747,40564957:193381 -k1,15354:22110124,40564957:193382 -k1,15354:23028333,40564957:193381 -k1,15354:24506221,40564957:193382 -k1,15354:25718687,40564957:193381 -k1,15354:27528187,40564957:193382 -k1,15354:29601796,40564957:193381 -k1,15354:32583029,40564957:0 -) -(1,15355:6630773,41406445:25952256,513147,134348 -k1,15354:9487012,41406445:221036 -(1,15354:9487012,41406445:0,452978,115847 -r1,15369:11252125,41406445:1765113,568825,115847 -k1,15354:9487012,41406445:-1765113 -) -(1,15354:9487012,41406445:1765113,452978,115847 -k1,15354:9487012,41406445:3277 -h1,15354:11248848,41406445:0,411205,112570 -) -k1,15354:11473161,41406445:221036 -k1,15354:12885642,41406445:221036 -(1,15354:12885642,41406445:0,452978,122846 -r1,15369:15705891,41406445:2820249,575824,122846 -k1,15354:12885642,41406445:-2820249 -) -(1,15354:12885642,41406445:2820249,452978,122846 -k1,15354:12885642,41406445:3277 -h1,15354:15702614,41406445:0,411205,112570 -) -k1,15354:16307691,41406445:221036 -k1,15354:19420831,41406445:221036 -k1,15354:20301159,41406445:221036 -k1,15354:22994213,41406445:221036 -k1,15354:25225894,41406445:221036 -k1,15354:25978427,41406445:221036 -k1,15354:27693029,41406445:221036 -k1,15354:29198571,41406445:221036 -k1,15354:32227169,41406445:221036 -k1,15354:32583029,41406445:0 -) -(1,15355:6630773,42247933:25952256,513147,126483 -k1,15354:8496569,42247933:185453 -k1,15354:9298060,42247933:185453 -k1,15354:9839373,42247933:185453 -k1,15354:12536165,42247933:185452 -k1,15354:13373046,42247933:185453 -k1,15354:14329202,42247933:185453 -(1,15354:14329202,42247933:0,414482,115847 -r1,15369:15039180,42247933:709978,530329,115847 -k1,15354:14329202,42247933:-709978 -) -(1,15354:14329202,42247933:709978,414482,115847 -k1,15354:14329202,42247933:3277 -h1,15354:15035903,42247933:0,411205,112570 -) -k1,15354:15224633,42247933:185453 -k1,15354:17090429,42247933:185453 -k1,15354:18223533,42247933:185453 -k1,15354:19179689,42247933:185453 -k1,15354:22209405,42247933:185453 -k1,15354:23888423,42247933:185452 -k1,15354:24760038,42247933:185453 -k1,15354:26561609,42247933:185453 -k1,15354:28793096,42247933:185453 -k1,15354:29997634,42247933:185453 -k1,15354:32583029,42247933:0 -) -(1,15355:6630773,43089421:25952256,513147,134348 -k1,15354:8865395,43089421:223977 -k1,15354:11921838,43089421:223977 -k1,15354:13342501,43089421:223976 -k1,15354:16046360,43089421:223977 -k1,15354:19077899,43089421:223977 -(1,15354:19077899,43089421:0,414482,115847 -r1,15369:19787877,43089421:709978,530329,115847 -k1,15354:19077899,43089421:-709978 -) -(1,15354:19077899,43089421:709978,414482,115847 -k1,15354:19077899,43089421:3277 -h1,15354:19784600,43089421:0,411205,112570 -) -k1,15354:20011854,43089421:223977 -k1,15354:22246476,43089421:223977 -k1,15354:23086490,43089421:223976 -k1,15354:24329552,43089421:223977 -k1,15354:25942892,43089421:223977 -k1,15354:26818297,43089421:223977 -k1,15354:27398133,43089421:223976 -k1,15354:30019417,43089421:223977 -k1,15354:31923737,43089421:223977 -k1,15354:32583029,43089421:0 -) -(1,15355:6630773,43930909:25952256,505283,134348 -k1,15354:7638901,43930909:237425 -k1,15354:10720589,43930909:237425 -k1,15354:11489510,43930909:237424 -k1,15354:13012751,43930909:237425 -k1,15354:15880136,43930909:237425 -k1,15354:17567217,43930909:237425 -k1,15354:21089961,43930909:237424 -(1,15354:21089961,43930909:0,414482,115847 -r1,15369:21799939,43930909:709978,530329,115847 -k1,15354:21089961,43930909:-709978 -) -(1,15354:21089961,43930909:709978,414482,115847 -k1,15354:21089961,43930909:3277 -h1,15354:21796662,43930909:0,411205,112570 -) -k1,15354:22037364,43930909:237425 -k1,15354:24285434,43930909:237425 -k1,15354:25138897,43930909:237425 -k1,15354:26395406,43930909:237424 -k1,15354:29218226,43930909:237425 -k1,15354:31966991,43930909:237425 -k1,15354:32583029,43930909:0 -) -(1,15355:6630773,44772397:25952256,513147,126483 -g1,15354:8060113,44772397 -g1,15354:9948860,44772397 -g1,15354:11850059,44772397 -g1,15354:14059933,44772397 -g1,15354:15250722,44772397 -g1,15354:18035346,44772397 -g1,15354:18886003,44772397 -g1,15354:21284620,44772397 -g1,15354:22143141,44772397 -k1,15355:32583029,44772397:8691387 -g1,15355:32583029,44772397 -) -] -(1,15369:32583029,45706769:0,0,0 -g1,15369:32583029,45706769 -) -) -] -(1,15369:6630773,47279633:25952256,0,0 -h1,15369:6630773,47279633:25952256,0,0 -) -] -(1,15369:4262630,4025873:0,0,0 -[1,15369:-473656,4025873:0,0,0 -(1,15369:-473656,-710413:0,0,0 -(1,15369:-473656,-710413:0,0,0 -g1,15369:-473656,-710413 -) -g1,15369:-473656,-710413 -) -] -) -] -!34467 -}297 -Input:2421:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2422:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2423:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2424:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2425:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2426:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2427:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2428:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2429:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2430:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2431:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2432:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2433:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2434:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1300 -{298 -[1,15423:4262630,47279633:28320399,43253760,0 -(1,15423:4262630,4025873:0,0,0 -[1,15423:-473656,4025873:0,0,0 -(1,15423:-473656,-710413:0,0,0 -(1,15423:-473656,-644877:0,0,0 -k1,15423:-473656,-644877:-65536 -) -(1,15423:-473656,4736287:0,0,0 -k1,15423:-473656,4736287:5209943 -) -g1,15423:-473656,-710413 -) -] -) -[1,15423:6630773,47279633:25952256,43253760,0 -[1,15423:6630773,4812305:25952256,786432,0 -(1,15423:6630773,4812305:25952256,505283,11795 -(1,15423:6630773,4812305:25952256,505283,11795 -g1,15423:3078558,4812305 -[1,15423:3078558,4812305:0,0,0 -(1,15423:3078558,2439708:0,1703936,0 -k1,15423:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,15423:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,15423:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,15423:3078558,4812305:0,0,0 -(1,15423:3078558,2439708:0,1703936,0 -g1,15423:29030814,2439708 -g1,15423:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,15423:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,15423:37855564,2439708:1179648,16384,0 -) -) -k1,15423:3078556,2439708:-34777008 -) -] -[1,15423:3078558,4812305:0,0,0 -(1,15423:3078558,49800853:0,16384,2228224 -k1,15423:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,15423:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,15423:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,15423:3078558,4812305:0,0,0 -(1,15423:3078558,49800853:0,16384,2228224 -g1,15423:29030814,49800853 -g1,15423:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,15423:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,15423:37855564,49800853:1179648,16384,0 -) -) -k1,15423:3078556,49800853:-34777008 -) -] -g1,15423:6630773,4812305 -g1,15423:6630773,4812305 -g1,15423:8724648,4812305 -k1,15423:31387652,4812305:22663004 -) -) -] -[1,15423:6630773,45706769:25952256,40108032,0 -(1,15423:6630773,45706769:25952256,40108032,0 -(1,15423:6630773,45706769:0,0,0 -g1,15423:6630773,45706769 -) -[1,15423:6630773,45706769:25952256,40108032,0 -(1,15362:6630773,6254097:25952256,555811,139132 -(1,15362:6630773,6254097:2450326,534184,12975 -g1,15362:6630773,6254097 -g1,15362:9081099,6254097 -) -g1,15362:10929477,6254097 -g1,15362:12496705,6254097 -g1,15362:14069701,6254097 -k1,15362:32583029,6254097:16399661 -g1,15362:32583029,6254097 -) -(1,15369:6630773,7488801:25952256,513147,115847 -k1,15368:8245302,7488801:178635 -k1,15368:9292290,7488801:178636 -k1,15368:12140206,7488801:178635 -k1,15368:12674702,7488801:178636 -k1,15368:15128747,7488801:178635 -k1,15368:18084799,7488801:178636 -k1,15368:18914862,7488801:178635 -k1,15368:19859614,7488801:178636 -k1,15368:22114430,7488801:178635 -k1,15368:23801705,7488801:178636 -(1,15368:23801705,7488801:0,414482,115847 -r1,15423:25215106,7488801:1413401,530329,115847 -k1,15368:23801705,7488801:-1413401 -) -(1,15368:23801705,7488801:1413401,414482,115847 -k1,15368:23801705,7488801:3277 -h1,15368:25211829,7488801:0,411205,112570 -) -k1,15368:25567411,7488801:178635 -k1,15368:26942734,7488801:178636 -k1,15368:29386949,7488801:178635 -(1,15368:29386949,7488801:0,414482,115847 -r1,15423:30800350,7488801:1413401,530329,115847 -k1,15368:29386949,7488801:-1413401 -) -(1,15368:29386949,7488801:1413401,414482,115847 -k1,15368:29386949,7488801:3277 -h1,15368:30797073,7488801:0,411205,112570 -) -k1,15368:30978986,7488801:178636 -k1,15368:31816913,7488801:178635 -k1,15368:32583029,7488801:0 -) -(1,15369:6630773,8330289:25952256,513147,126483 -k1,15368:8702019,8330289:168736 -k1,15368:9402252,8330289:168736 -k1,15368:10590072,8330289:168735 -k1,15368:12496823,8330289:168736 -k1,15368:13324851,8330289:168736 -k1,15368:14512672,8330289:168736 -k1,15368:17192748,8330289:168736 -k1,15368:18044369,8330289:168736 -k1,15368:19232189,8330289:168735 -k1,15368:22840910,8330289:168736 -k1,15368:25595041,8330289:168736 -k1,15368:26415205,8330289:168736 -k1,15368:27215708,8330289:168736 -k1,15368:28012279,8330289:168736 -k1,15368:29200099,8330289:168735 -k1,15368:30735916,8330289:168736 -k1,15368:31563944,8330289:168736 -k1,15369:32583029,8330289:0 -) -(1,15369:6630773,9171777:25952256,513147,134348 -(1,15368:6630773,9171777:0,414482,115847 -r1,15423:6989039,9171777:358266,530329,115847 -k1,15368:6630773,9171777:-358266 -) -(1,15368:6630773,9171777:358266,414482,115847 -k1,15368:6630773,9171777:3277 -h1,15368:6985762,9171777:0,411205,112570 -) -k1,15368:7332276,9171777:169567 -(1,15368:7332276,9171777:0,414482,115847 -r1,15423:7690542,9171777:358266,530329,115847 -k1,15368:7332276,9171777:-358266 -) -(1,15368:7332276,9171777:358266,414482,115847 -k1,15368:7332276,9171777:3277 -h1,15368:7687265,9171777:0,411205,112570 -) -k1,15368:7860110,9171777:169568 -k1,15368:9221122,9171777:169567 -(1,15368:9221122,9171777:0,414482,115847 -r1,15423:9579388,9171777:358266,530329,115847 -k1,15368:9221122,9171777:-358266 -) -(1,15368:9221122,9171777:358266,414482,115847 -k1,15368:9221122,9171777:3277 -h1,15368:9576111,9171777:0,411205,112570 -) -k1,15368:9748955,9171777:169567 -k1,15368:12982987,9171777:169568 -k1,15368:14171639,9171777:169567 -(1,15368:14171639,9171777:0,414482,115847 -r1,15423:15585040,9171777:1413401,530329,115847 -k1,15368:14171639,9171777:-1413401 -) -(1,15368:14171639,9171777:1413401,414482,115847 -k1,15368:14171639,9171777:3277 -h1,15368:15581763,9171777:0,411205,112570 -) -k1,15368:15754607,9171777:169567 -k1,15368:17618936,9171777:169568 -k1,15368:18439931,9171777:169567 -k1,15368:19628583,9171777:169567 -k1,15368:21370360,9171777:169568 -k1,15368:22071424,9171777:169567 -k1,15368:23754217,9171777:169567 -k1,15368:24871436,9171777:169568 -k1,15368:26060088,9171777:169567 -k1,15368:27482048,9171777:169567 -k1,15368:29669470,9171777:169568 -k1,15368:30881059,9171777:169567 -k1,15368:32583029,9171777:0 -) -(1,15369:6630773,10013265:25952256,513147,134348 -k1,15368:9888568,10013265:193331 -k1,15368:11100984,10013265:193331 -k1,15368:13032330,10013265:193331 -k1,15368:13884953,10013265:193331 -k1,15368:15097369,10013265:193331 -k1,15368:16862909,10013265:193331 -k1,15368:19829724,10013265:193331 -k1,15368:21042141,10013265:193332 -k1,15368:24364816,10013265:193331 -k1,15368:25241032,10013265:193331 -k1,15368:26506532,10013265:193331 -k1,15368:27883443,10013265:193331 -k1,15368:28736066,10013265:193331 -k1,15368:29948482,10013265:193331 -k1,15368:31900144,10013265:193331 -k1,15368:32583029,10013265:0 -) -(1,15369:6630773,10854753:25952256,505283,134348 -k1,15368:8125525,10854753:220077 -k1,15368:9243445,10854753:220077 -k1,15368:11366032,10854753:220077 -k1,15368:13061325,10854753:220078 -k1,15368:13637262,10854753:220077 -(1,15368:13637262,10854753:0,414482,115847 -r1,15423:15050663,10854753:1413401,530329,115847 -k1,15368:13637262,10854753:-1413401 -) -(1,15368:13637262,10854753:1413401,414482,115847 -k1,15368:13637262,10854753:3277 -h1,15368:15047386,10854753:0,411205,112570 -) -k1,15368:15270740,10854753:220077 -k1,15368:18771549,10854753:220077 -k1,15368:19643054,10854753:220077 -k1,15368:21748602,10854753:220077 -k1,15368:22324539,10854753:220077 -k1,15368:25519296,10854753:220078 -k1,15368:27605183,10854753:220077 -k1,15368:28508145,10854753:220077 -k1,15368:29143044,10854753:220056 -k1,15368:32583029,10854753:0 -) -(1,15369:6630773,11696241:25952256,513147,134348 -g1,15368:8062079,11696241 -g1,15368:10539995,11696241 -h1,15368:11909042,11696241:0,0,0 -g1,15368:12315365,11696241 -g1,15368:13618876,11696241 -g1,15368:14565871,11696241 -g1,15368:16970387,11696241 -g1,15368:17855778,11696241 -g1,15368:18825710,11696241 -g1,15368:22097267,11696241 -g1,15368:22947924,11696241 -g1,15368:25792186,11696241 -g1,15368:27010500,11696241 -k1,15369:32583029,11696241:3133279 -g1,15369:32583029,11696241 -) -(1,15371:6630773,12537729:25952256,505283,126483 -h1,15370:6630773,12537729:983040,0,0 -k1,15370:11244727,12537729:172579 -k1,15370:12858444,12537729:172580 -k1,15370:15444059,12537729:172579 -k1,15370:16808083,12537729:172579 -k1,15370:19358309,12537729:172580 -k1,15370:20522448,12537729:172579 -k1,15370:21761298,12537729:172579 -k1,15370:25197571,12537729:172580 -k1,15370:26021578,12537729:172579 -k1,15370:28040307,12537729:172579 -k1,15370:28895772,12537729:172580 -(1,15370:28895772,12537729:0,452978,115847 -r1,15423:30309173,12537729:1413401,568825,115847 -k1,15370:28895772,12537729:-1413401 -) -(1,15370:28895772,12537729:1413401,452978,115847 -k1,15370:28895772,12537729:3277 -h1,15370:30305896,12537729:0,411205,112570 -) -k1,15370:30655422,12537729:172579 -k1,15370:31315563,12537729:172553 -k1,15370:32583029,12537729:0 -) -(1,15371:6630773,13379217:25952256,513147,134348 -(1,15370:6837867,13379217:0,452978,115847 -r1,15423:8602980,13379217:1765113,568825,115847 -k1,15370:6837867,13379217:-1765113 -) -(1,15370:6837867,13379217:1765113,452978,115847 -k1,15370:6837867,13379217:3277 -h1,15370:8599703,13379217:0,411205,112570 -) -k1,15370:9056982,13379217:246908 -k1,15370:10495334,13379217:246907 -(1,15370:10495334,13379217:0,452978,115847 -r1,15423:13315583,13379217:2820249,568825,115847 -k1,15370:10495334,13379217:-2820249 -) -(1,15370:10495334,13379217:2820249,452978,115847 -k1,15370:10495334,13379217:3277 -h1,15370:13312306,13379217:0,411205,112570 -) -k1,15370:13562491,13379217:246908 -k1,15370:14913680,13379217:246907 -k1,15370:15908354,13379217:246908 -k1,15370:18120686,13379217:246907 -k1,15370:19863126,13379217:246908 -k1,15370:23819371,13379217:246907 -k1,15370:25460230,13379217:246908 -k1,15370:28402633,13379217:246907 -(1,15370:28402633,13379217:0,452978,122846 -r1,15423:31574593,13379217:3171960,575824,122846 -k1,15370:28402633,13379217:-3171960 -) -(1,15370:28402633,13379217:3171960,452978,122846 -k1,15370:28402633,13379217:3277 -h1,15370:31571316,13379217:0,411205,112570 -) -k1,15370:31821501,13379217:246908 -k1,15370:32583029,13379217:0 -) -(1,15371:6630773,14220705:25952256,505283,134348 -g1,15370:9257456,14220705 -g1,15370:11312665,14220705 -g1,15370:14486573,14220705 -g1,15370:16881913,14220705 -g1,15370:17764027,14220705 -g1,15370:18378099,14220705 -g1,15370:22347614,14220705 -g1,15370:23233005,14220705 -k1,15371:32583029,14220705:5773724 -g1,15371:32583029,14220705 -) -v1,15373:6630773,15340190:0,393216,0 -(1,15385:6630773,20984710:25952256,6037736,196608 -g1,15385:6630773,20984710 -g1,15385:6630773,20984710 -g1,15385:6434165,20984710 -(1,15385:6434165,20984710:0,6037736,196608 -r1,15423:32779637,20984710:26345472,6234344,196608 -k1,15385:6434165,20984710:-26345472 -) -(1,15385:6434165,20984710:26345472,6037736,196608 -[1,15385:6630773,20984710:25952256,5841128,0 -(1,15375:6630773,15547808:25952256,404226,107478 -(1,15374:6630773,15547808:0,0,0 -g1,15374:6630773,15547808 -g1,15374:6630773,15547808 -g1,15374:6303093,15547808 -(1,15374:6303093,15547808:0,0,0 -) -g1,15374:6630773,15547808 -) -k1,15375:6630773,15547808:0 -g1,15375:10424522,15547808 -g1,15375:11056814,15547808 -k1,15375:11056814,15547808:0 -h1,15375:13269834,15547808:0,0,0 -k1,15375:32583030,15547808:19313196 -g1,15375:32583030,15547808 -) -(1,15376:6630773,16213986:25952256,410518,107478 -h1,15376:6630773,16213986:0,0,0 -g1,15376:6946919,16213986 -g1,15376:7263065,16213986 -g1,15376:7579211,16213986 -g1,15376:7895357,16213986 -g1,15376:8211503,16213986 -g1,15376:8527649,16213986 -g1,15376:8843795,16213986 -g1,15376:10740670,16213986 -g1,15376:11372962,16213986 -g1,15376:12953691,16213986 -g1,15376:13585983,16213986 -g1,15376:14218275,16213986 -g1,15376:18960461,16213986 -g1,15376:20857335,16213986 -g1,15376:21489627,16213986 -g1,15376:23702647,16213986 -h1,15376:24018793,16213986:0,0,0 -k1,15376:32583029,16213986:8564236 -g1,15376:32583029,16213986 -) -(1,15377:6630773,16880164:25952256,404226,107478 -h1,15377:6630773,16880164:0,0,0 -g1,15377:6946919,16880164 -g1,15377:7263065,16880164 -g1,15377:11056813,16880164 -h1,15377:11372959,16880164:0,0,0 -k1,15377:32583029,16880164:21210070 -g1,15377:32583029,16880164 -) -(1,15378:6630773,17546342:25952256,404226,107478 -h1,15378:6630773,17546342:0,0,0 -g1,15378:6946919,17546342 -g1,15378:7263065,17546342 -g1,15378:11372959,17546342 -h1,15378:11689105,17546342:0,0,0 -k1,15378:32583029,17546342:20893924 -g1,15378:32583029,17546342 -) -(1,15379:6630773,18212520:25952256,404226,101187 -h1,15379:6630773,18212520:0,0,0 -g1,15379:6946919,18212520 -g1,15379:7263065,18212520 -g1,15379:12321397,18212520 -g1,15379:12953689,18212520 -g1,15379:13902127,18212520 -h1,15379:14218273,18212520:0,0,0 -k1,15379:32583029,18212520:18364756 -g1,15379:32583029,18212520 -) -(1,15380:6630773,18878698:25952256,404226,76021 -h1,15380:6630773,18878698:0,0,0 -g1,15380:6946919,18878698 -g1,15380:7263065,18878698 -g1,15380:14850562,18878698 -g1,15380:15482854,18878698 -g1,15380:17379728,18878698 -g1,15380:19276603,18878698 -h1,15380:19592749,18878698:0,0,0 -k1,15380:32583029,18878698:12990280 -g1,15380:32583029,18878698 -) -(1,15381:6630773,19544876:25952256,410518,101187 -h1,15381:6630773,19544876:0,0,0 -g1,15381:6946919,19544876 -g1,15381:7263065,19544876 -g1,15381:14850562,19544876 -g1,15381:15482854,19544876 -g1,15381:20225040,19544876 -g1,15381:22438060,19544876 -h1,15381:22754206,19544876:0,0,0 -k1,15381:32583029,19544876:9828823 -g1,15381:32583029,19544876 -) -(1,15382:6630773,20211054:25952256,410518,107478 -h1,15382:6630773,20211054:0,0,0 -g1,15382:6946919,20211054 -g1,15382:7263065,20211054 -g1,15382:11689105,20211054 -g1,15382:12321397,20211054 -g1,15382:14850563,20211054 -g1,15382:15799000,20211054 -g1,15382:18012020,20211054 -k1,15382:18012020,20211054:0 -h1,15382:20225040,20211054:0,0,0 -k1,15382:32583029,20211054:12357989 -g1,15382:32583029,20211054 -) -(1,15383:6630773,20877232:25952256,410518,107478 -h1,15383:6630773,20877232:0,0,0 -g1,15383:6946919,20877232 -g1,15383:7263065,20877232 -g1,15383:7579211,20877232 -g1,15383:7895357,20877232 -g1,15383:8211503,20877232 -g1,15383:8527649,20877232 -g1,15383:8843795,20877232 -g1,15383:9159941,20877232 -g1,15383:9476087,20877232 -g1,15383:9792233,20877232 -g1,15383:12637544,20877232 -g1,15383:13269836,20877232 -g1,15383:16431293,20877232 -g1,15383:18012022,20877232 -k1,15383:18012022,20877232:0 -h1,15383:21805771,20877232:0,0,0 -k1,15383:32583029,20877232:10777258 -g1,15383:32583029,20877232 -) -] -) -g1,15385:32583029,20984710 -g1,15385:6630773,20984710 -g1,15385:6630773,20984710 -g1,15385:32583029,20984710 -g1,15385:32583029,20984710 -) -h1,15385:6630773,21181318:0,0,0 -(1,15388:6630773,30783827:25952256,9083666,0 -k1,15388:10523651,30783827:3892878 -h1,15387:10523651,30783827:0,0,0 -(1,15387:10523651,30783827:18166500,9083666,0 -(1,15387:10523651,30783827:18167376,9083688,0 -(1,15387:10523651,30783827:18167376,9083688,0 -(1,15387:10523651,30783827:0,9083688,0 -(1,15387:10523651,30783827:0,14208860,0 -(1,15387:10523651,30783827:28417720,14208860,0 -) -k1,15387:10523651,30783827:-28417720 -) -) -g1,15387:28691027,30783827 -) -) -) -g1,15388:28690151,30783827 -k1,15388:32583029,30783827:3892878 -) -(1,15395:6630773,31625315:25952256,513147,115847 -h1,15394:6630773,31625315:983040,0,0 -k1,15394:11855503,31625315:213192 -k1,15394:15094491,31625315:213191 -(1,15394:15094491,31625315:0,452978,115847 -r1,15423:17211316,31625315:2116825,568825,115847 -k1,15394:15094491,31625315:-2116825 -) -(1,15394:15094491,31625315:2116825,452978,115847 -k1,15394:15094491,31625315:3277 -h1,15394:17208039,31625315:0,411205,112570 -) -k1,15394:17424508,31625315:213192 -k1,15394:18829145,31625315:213192 -(1,15394:18829145,31625315:0,452978,115847 -r1,15423:20945970,31625315:2116825,568825,115847 -k1,15394:18829145,31625315:-2116825 -) -(1,15394:18829145,31625315:2116825,452978,115847 -k1,15394:18829145,31625315:3277 -h1,15394:20942693,31625315:0,411205,112570 -) -k1,15394:21159161,31625315:213191 -k1,15394:22476635,31625315:213192 -k1,15394:23437593,31625315:213192 -k1,15394:25164011,31625315:213192 -k1,15394:26028630,31625315:213191 -k1,15394:27176365,31625315:213192 -k1,15394:28408642,31625315:213192 -k1,15394:29874226,31625315:213191 -k1,15394:31931601,31625315:213192 -k1,15394:32583029,31625315:0 -) -(1,15395:6630773,32466803:25952256,505283,126483 -g1,15394:8811155,32466803 -g1,15394:10754297,32466803 -g1,15394:11569564,32466803 -g1,15394:12787878,32466803 -g1,15394:15741585,32466803 -k1,15395:32583029,32466803:14697106 -g1,15395:32583029,32466803 -) -v1,15397:6630773,33586287:0,393216,0 -(1,15402:6630773,34561270:25952256,1368199,196608 -g1,15402:6630773,34561270 -g1,15402:6630773,34561270 -g1,15402:6434165,34561270 -(1,15402:6434165,34561270:0,1368199,196608 -r1,15423:32779637,34561270:26345472,1564807,196608 -k1,15402:6434165,34561270:-26345472 -) -(1,15402:6434165,34561270:26345472,1368199,196608 -[1,15402:6630773,34561270:25952256,1171591,0 -(1,15399:6630773,33793905:25952256,404226,76021 -(1,15398:6630773,33793905:0,0,0 -g1,15398:6630773,33793905 -g1,15398:6630773,33793905 -g1,15398:6303093,33793905 -(1,15398:6303093,33793905:0,0,0 -) -g1,15398:6630773,33793905 -) -g1,15399:6946919,33793905 -g1,15399:7263065,33793905 -g1,15399:10740669,33793905 -g1,15399:12637544,33793905 -h1,15399:12953690,33793905:0,0,0 -k1,15399:32583030,33793905:19629340 -g1,15399:32583030,33793905 -) -(1,15400:6630773,34460083:25952256,410518,101187 -h1,15400:6630773,34460083:0,0,0 -g1,15400:6946919,34460083 -g1,15400:7263065,34460083 -g1,15400:13585980,34460083 -g1,15400:15799000,34460083 -h1,15400:16115146,34460083:0,0,0 -k1,15400:32583029,34460083:16467883 -g1,15400:32583029,34460083 -) -] -) -g1,15402:32583029,34561270 -g1,15402:6630773,34561270 -g1,15402:6630773,34561270 -g1,15402:32583029,34561270 -g1,15402:32583029,34561270 -) -h1,15402:6630773,34757878:0,0,0 -(1,15406:6630773,36052673:25952256,513147,115847 -h1,15405:6630773,36052673:983040,0,0 -k1,15405:11897300,36052673:254989 -k1,15405:14847784,36052673:254988 -(1,15405:14847784,36052673:0,452978,115847 -r1,15423:16964609,36052673:2116825,568825,115847 -k1,15405:14847784,36052673:-2116825 -) -(1,15405:14847784,36052673:2116825,452978,115847 -k1,15405:14847784,36052673:3277 -h1,15405:16961332,36052673:0,411205,112570 -) -k1,15405:17219598,36052673:254989 -k1,15405:18006083,36052673:254988 -k1,15405:20238293,36052673:254989 -k1,15405:22191319,36052673:254988 -k1,15405:23314660,36052673:254989 -k1,15405:24662133,36052673:254988 -k1,15405:27182702,36052673:254989 -k1,15405:29340200,36052673:254988 -k1,15405:30542840,36052673:254989 -k1,15405:31563944,36052673:254988 -k1,15405:32583029,36052673:0 -) -(1,15406:6630773,36894161:25952256,505283,126483 -k1,15405:9891658,36894161:196421 -k1,15405:10704116,36894161:196420 -k1,15405:11256397,36894161:196421 -k1,15405:12730115,36894161:196421 -k1,15405:13998705,36894161:196421 -k1,15405:15743741,36894161:196420 -k1,15405:16591590,36894161:196421 -k1,15405:19720747,36894161:196421 -k1,15405:20851710,36894161:196420 -k1,15405:22300524,36894161:196421 -k1,15405:24341128,36894161:196421 -k1,15405:26747423,36894161:196421 -k1,15405:28044848,36894161:196420 -k1,15405:31563944,36894161:196421 -k1,15406:32583029,36894161:0 -) -(1,15406:6630773,37735649:25952256,513147,134348 -(1,15405:6630773,37735649:0,414482,115847 -r1,15423:8044174,37735649:1413401,530329,115847 -k1,15405:6630773,37735649:-1413401 -) -(1,15405:6630773,37735649:1413401,414482,115847 -k1,15405:6630773,37735649:3277 -h1,15405:8040897,37735649:0,411205,112570 -) -k1,15405:8179195,37735649:135021 -k1,15405:8973507,37735649:135020 -k1,15405:10805255,37735649:135021 -k1,15405:13016456,37735649:135020 -(1,15405:13016456,37735649:0,452978,115847 -r1,15423:15133281,37735649:2116825,568825,115847 -k1,15405:13016456,37735649:-2116825 -) -(1,15405:13016456,37735649:2116825,452978,115847 -k1,15405:13016456,37735649:3277 -h1,15405:15130004,37735649:0,411205,112570 -) -k1,15405:15268302,37735649:135021 -k1,15405:17781624,37735649:135020 -k1,15405:21319274,37735649:135021 -k1,15405:22401946,37735649:135021 -k1,15405:24233693,37735649:135020 -k1,15405:26437030,37735649:135021 -k1,15405:28481114,37735649:135020 -k1,15405:29302297,37735649:135021 -k1,15405:32583029,37735649:0 -) -(1,15406:6630773,38577137:25952256,513147,115847 -k1,15405:9031994,38577137:159234 -k1,15405:10210313,38577137:159234 -k1,15405:12437863,38577137:159234 -k1,15405:13256389,38577137:159234 -k1,15405:14434708,38577137:159234 -k1,15405:17809138,38577137:159234 -k1,15405:18438265,38577137:159234 -k1,15405:19883316,38577137:159235 -k1,15405:22054505,38577137:159234 -k1,15405:22958883,38577137:159234 -k1,15405:23769545,38577137:159234 -k1,15405:24863322,38577137:159234 -(1,15405:24863322,38577137:0,452978,115847 -r1,15423:26628435,38577137:1765113,568825,115847 -k1,15405:24863322,38577137:-1765113 -) -(1,15405:24863322,38577137:1765113,452978,115847 -k1,15405:24863322,38577137:3277 -h1,15405:26625158,38577137:0,411205,112570 -) -k1,15405:26961339,38577137:159234 -(1,15405:26961339,38577137:0,452978,115847 -r1,15423:29781588,38577137:2820249,568825,115847 -k1,15405:26961339,38577137:-2820249 -) -(1,15405:26961339,38577137:2820249,452978,115847 -k1,15405:26961339,38577137:3277 -h1,15405:29778311,38577137:0,411205,112570 -) -k1,15405:30114492,38577137:159234 -(1,15405:30114492,38577137:0,452978,115847 -r1,15423:32583029,38577137:2468537,568825,115847 -k1,15405:30114492,38577137:-2468537 -) -(1,15405:30114492,38577137:2468537,452978,115847 -k1,15405:30114492,38577137:3277 -h1,15405:32579752,38577137:0,411205,112570 -) -k1,15405:32583029,38577137:0 -) -(1,15406:6630773,39418625:25952256,513147,122846 -g1,15405:8021447,39418625 -(1,15405:8021447,39418625:0,414482,122846 -r1,15423:9083136,39418625:1061689,537328,122846 -k1,15405:8021447,39418625:-1061689 -) -(1,15405:8021447,39418625:1061689,414482,122846 -k1,15405:8021447,39418625:3277 -h1,15405:9079859,39418625:0,411205,112570 -) -g1,15405:9456035,39418625 -g1,15405:10314556,39418625 -g1,15405:12399256,39418625 -g1,15405:13617570,39418625 -g1,15405:15122932,39418625 -g1,15405:16494600,39418625 -g1,15405:17798111,39418625 -g1,15405:19283156,39418625 -g1,15405:20230151,39418625 -g1,15405:21363923,39418625 -g1,15405:22957103,39418625 -(1,15405:22957103,39418625:0,452978,122846 -r1,15423:26129063,39418625:3171960,575824,122846 -k1,15405:22957103,39418625:-3171960 -) -(1,15405:22957103,39418625:3171960,452978,122846 -k1,15405:22957103,39418625:3277 -h1,15405:26125786,39418625:0,411205,112570 -) -k1,15406:32583029,39418625:6280296 -g1,15406:32583029,39418625 -) -v1,15408:6630773,40538110:0,393216,0 -(1,15423:6630773,45510161:25952256,5365267,196608 -g1,15423:6630773,45510161 -g1,15423:6630773,45510161 -g1,15423:6434165,45510161 -(1,15423:6434165,45510161:0,5365267,196608 -r1,15423:32779637,45510161:26345472,5561875,196608 -k1,15423:6434165,45510161:-26345472 -) -(1,15423:6434165,45510161:26345472,5365267,196608 -[1,15423:6630773,45510161:25952256,5168659,0 -(1,15410:6630773,40745728:25952256,404226,107478 -(1,15409:6630773,40745728:0,0,0 -g1,15409:6630773,40745728 -g1,15409:6630773,40745728 -g1,15409:6303093,40745728 -(1,15409:6303093,40745728:0,0,0 -) -g1,15409:6630773,40745728 -) -k1,15410:6630773,40745728:0 -g1,15410:10424522,40745728 -g1,15410:11056814,40745728 -k1,15410:11056814,40745728:0 -h1,15410:13269834,40745728:0,0,0 -k1,15410:32583030,40745728:19313196 -g1,15410:32583030,40745728 -) -(1,15411:6630773,41411906:25952256,410518,107478 -h1,15411:6630773,41411906:0,0,0 -g1,15411:6946919,41411906 -g1,15411:7263065,41411906 -g1,15411:7579211,41411906 -g1,15411:7895357,41411906 -g1,15411:8211503,41411906 -g1,15411:8527649,41411906 -g1,15411:8843795,41411906 -g1,15411:10740670,41411906 -g1,15411:11372962,41411906 -g1,15411:12953691,41411906 -g1,15411:13585983,41411906 -g1,15411:14218275,41411906 -g1,15411:18960461,41411906 -g1,15411:20857335,41411906 -g1,15411:21489627,41411906 -g1,15411:23702647,41411906 -h1,15411:24018793,41411906:0,0,0 -k1,15411:32583029,41411906:8564236 -g1,15411:32583029,41411906 -) -(1,15412:6630773,42078084:25952256,404226,107478 -h1,15412:6630773,42078084:0,0,0 -g1,15412:6946919,42078084 -g1,15412:7263065,42078084 -g1,15412:11056813,42078084 -h1,15412:11372959,42078084:0,0,0 -k1,15412:32583029,42078084:21210070 -g1,15412:32583029,42078084 -) -(1,15413:6630773,42744262:25952256,404226,107478 -h1,15413:6630773,42744262:0,0,0 -g1,15413:6946919,42744262 -g1,15413:7263065,42744262 -g1,15413:11372959,42744262 -h1,15413:11689105,42744262:0,0,0 -k1,15413:32583029,42744262:20893924 -g1,15413:32583029,42744262 -) -(1,15414:6630773,43410440:25952256,404226,101187 -h1,15414:6630773,43410440:0,0,0 -g1,15414:6946919,43410440 -g1,15414:7263065,43410440 -g1,15414:12321397,43410440 -g1,15414:12953689,43410440 -g1,15414:13902127,43410440 -h1,15414:14218273,43410440:0,0,0 -k1,15414:32583029,43410440:18364756 -g1,15414:32583029,43410440 -) -(1,15415:6630773,44076618:25952256,410518,107478 -h1,15415:6630773,44076618:0,0,0 -g1,15415:6946919,44076618 -g1,15415:7263065,44076618 -g1,15415:10740668,44076618 -g1,15415:11372960,44076618 -g1,15415:13902126,44076618 -g1,15415:14850563,44076618 -g1,15415:17063583,44076618 -k1,15415:17063583,44076618:0 -h1,15415:19276603,44076618:0,0,0 -k1,15415:32583029,44076618:13306426 -g1,15415:32583029,44076618 -) -(1,15416:6630773,44742796:25952256,410518,107478 -h1,15416:6630773,44742796:0,0,0 -g1,15416:6946919,44742796 -g1,15416:7263065,44742796 -g1,15416:7579211,44742796 -g1,15416:7895357,44742796 -g1,15416:8211503,44742796 -g1,15416:8527649,44742796 -g1,15416:8843795,44742796 -g1,15416:11689106,44742796 -g1,15416:12321398,44742796 -g1,15416:15482855,44742796 -g1,15416:17063584,44742796 -k1,15416:17063584,44742796:0 -h1,15416:20857333,44742796:0,0,0 -k1,15416:32583029,44742796:11725696 -g1,15416:32583029,44742796 -) -(1,15417:6630773,45408974:25952256,404226,101187 -h1,15417:6630773,45408974:0,0,0 -g1,15417:6946919,45408974 -g1,15417:7263065,45408974 -g1,15417:7579211,45408974 -g1,15417:7895357,45408974 -g1,15417:8211503,45408974 -g1,15417:8527649,45408974 -g1,15417:8843795,45408974 -g1,15417:11372961,45408974 -g1,15417:12005253,45408974 -g1,15417:13585982,45408974 -g1,15417:16115148,45408974 -g1,15417:17063585,45408974 -g1,15417:18012022,45408974 -g1,15417:19276605,45408974 -g1,15417:21489625,45408974 -g1,15417:22438062,45408974 -k1,15417:22438062,45408974:0 -h1,15417:24967228,45408974:0,0,0 -k1,15417:32583029,45408974:7615801 -g1,15417:32583029,45408974 -) -] -) -g1,15423:32583029,45510161 -g1,15423:6630773,45510161 -g1,15423:6630773,45510161 -g1,15423:32583029,45510161 -g1,15423:32583029,45510161 -) -] -(1,15423:32583029,45706769:0,0,0 -g1,15423:32583029,45706769 -) -) -] -(1,15423:6630773,47279633:25952256,0,0 -h1,15423:6630773,47279633:25952256,0,0 -) -] -(1,15423:4262630,4025873:0,0,0 -[1,15423:-473656,4025873:0,0,0 -(1,15423:-473656,-710413:0,0,0 -(1,15423:-473656,-710413:0,0,0 -g1,15423:-473656,-710413 -) -g1,15423:-473656,-710413 -) -] -) -] -!27046 -}298 -Input:2435:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2436:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2437:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2438:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2439:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2440:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2441:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2442:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2443:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2444:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2445:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2446:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2447:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2448:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2449:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2450:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2451:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2452:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2453:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2454:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2455:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2456:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2457:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2458:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2459:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2460:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2461:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2462:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2463:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2464:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2465:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!2864 -{299 -[1,15466:4262630,47279633:28320399,43253760,0 -(1,15466:4262630,4025873:0,0,0 -[1,15466:-473656,4025873:0,0,0 -(1,15466:-473656,-710413:0,0,0 -(1,15466:-473656,-644877:0,0,0 -k1,15466:-473656,-644877:-65536 -) -(1,15466:-473656,4736287:0,0,0 -k1,15466:-473656,4736287:5209943 -) -g1,15466:-473656,-710413 -) -] -) -[1,15466:6630773,47279633:25952256,43253760,0 -[1,15466:6630773,4812305:25952256,786432,0 -(1,15466:6630773,4812305:25952256,513147,134348 -(1,15466:6630773,4812305:25952256,513147,134348 -g1,15466:3078558,4812305 -[1,15466:3078558,4812305:0,0,0 -(1,15466:3078558,2439708:0,1703936,0 -k1,15466:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,15466:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,15466:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,15466:3078558,4812305:0,0,0 -(1,15466:3078558,2439708:0,1703936,0 -g1,15466:29030814,2439708 -g1,15466:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,15466:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,15466:37855564,2439708:1179648,16384,0 -) -) -k1,15466:3078556,2439708:-34777008 -) -] -[1,15466:3078558,4812305:0,0,0 -(1,15466:3078558,49800853:0,16384,2228224 -k1,15466:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,15466:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,15466:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,15466:3078558,4812305:0,0,0 -(1,15466:3078558,49800853:0,16384,2228224 -g1,15466:29030814,49800853 -g1,15466:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,15466:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,15466:37855564,49800853:1179648,16384,0 -) -) -k1,15466:3078556,49800853:-34777008 -) -] -g1,15466:6630773,4812305 -k1,15466:25712890,4812305:17886740 -g1,15466:29057847,4812305 -g1,15466:29873114,4812305 -) -) -] -[1,15466:6630773,45706769:25952256,40108032,0 -(1,15466:6630773,45706769:25952256,40108032,0 -(1,15466:6630773,45706769:0,0,0 -g1,15466:6630773,45706769 -) -[1,15466:6630773,45706769:25952256,40108032,0 -v1,15423:6630773,6254097:0,393216,0 -(1,15423:6630773,8536270:25952256,2675389,196608 -g1,15423:6630773,8536270 -g1,15423:6630773,8536270 -g1,15423:6434165,8536270 -(1,15423:6434165,8536270:0,2675389,196608 -r1,15466:32779637,8536270:26345472,2871997,196608 -k1,15423:6434165,8536270:-26345472 -) -(1,15423:6434165,8536270:26345472,2675389,196608 -[1,15423:6630773,8536270:25952256,2478781,0 -(1,15418:6630773,6461715:25952256,404226,107478 -h1,15418:6630773,6461715:0,0,0 -g1,15418:6946919,6461715 -g1,15418:7263065,6461715 -g1,15418:7579211,6461715 -g1,15418:7895357,6461715 -g1,15418:8211503,6461715 -g1,15418:8527649,6461715 -g1,15418:8843795,6461715 -g1,15418:10108378,6461715 -g1,15418:10740670,6461715 -k1,15418:10740670,6461715:0 -h1,15418:12005253,6461715:0,0,0 -k1,15418:32583029,6461715:20577776 -g1,15418:32583029,6461715 -) -(1,15419:6630773,7127893:25952256,404226,82312 -h1,15419:6630773,7127893:0,0,0 -g1,15419:6946919,7127893 -g1,15419:7263065,7127893 -g1,15419:7579211,7127893 -g1,15419:7895357,7127893 -g1,15419:8211503,7127893 -g1,15419:8527649,7127893 -g1,15419:8843795,7127893 -g1,15419:9476087,7127893 -g1,15419:10108379,7127893 -g1,15419:12005253,7127893 -k1,15419:12005253,7127893:0 -h1,15419:13585982,7127893:0,0,0 -k1,15419:32583030,7127893:18997048 -g1,15419:32583030,7127893 -) -(1,15420:6630773,7794071:25952256,410518,101187 -h1,15420:6630773,7794071:0,0,0 -g1,15420:6946919,7794071 -g1,15420:7263065,7794071 -g1,15420:7579211,7794071 -g1,15420:7895357,7794071 -g1,15420:8211503,7794071 -g1,15420:8527649,7794071 -g1,15420:8843795,7794071 -g1,15420:9476087,7794071 -g1,15420:10108379,7794071 -g1,15420:14850565,7794071 -k1,15420:14850565,7794071:0 -h1,15420:16747439,7794071:0,0,0 -k1,15420:32583029,7794071:15835590 -g1,15420:32583029,7794071 -) -(1,15421:6630773,8460249:25952256,404226,76021 -h1,15421:6630773,8460249:0,0,0 -g1,15421:6946919,8460249 -g1,15421:7263065,8460249 -g1,15421:7579211,8460249 -g1,15421:7895357,8460249 -g1,15421:8211503,8460249 -g1,15421:8527649,8460249 -g1,15421:8843795,8460249 -g1,15421:10740669,8460249 -g1,15421:11372961,8460249 -h1,15421:16115147,8460249:0,0,0 -k1,15421:32583029,8460249:16467882 -g1,15421:32583029,8460249 -) -] -) -g1,15423:32583029,8536270 -g1,15423:6630773,8536270 -g1,15423:6630773,8536270 -g1,15423:32583029,8536270 -g1,15423:32583029,8536270 -) -h1,15423:6630773,8732878:0,0,0 -(1,15426:6630773,18406368:25952256,9083666,0 -k1,15426:10523651,18406368:3892878 -h1,15425:10523651,18406368:0,0,0 -(1,15425:10523651,18406368:18166500,9083666,0 -(1,15425:10523651,18406368:18167376,9083688,0 -(1,15425:10523651,18406368:18167376,9083688,0 -(1,15425:10523651,18406368:0,9083688,0 -(1,15425:10523651,18406368:0,14208860,0 -(1,15425:10523651,18406368:28417720,14208860,0 -) -k1,15425:10523651,18406368:-28417720 -) -) -g1,15425:28691027,18406368 -) -) -) -g1,15426:28690151,18406368 -k1,15426:32583029,18406368:3892878 -) -v1,15433:6630773,19772144:0,393216,0 -(1,15434:6630773,23614667:25952256,4235739,616038 -g1,15434:6630773,23614667 -(1,15434:6630773,23614667:25952256,4235739,616038 -(1,15434:6630773,24230705:25952256,4851777,0 -[1,15434:6630773,24230705:25952256,4851777,0 -(1,15434:6630773,24204491:25952256,4799349,0 -r1,15466:6656987,24204491:26214,4799349,0 -[1,15434:6656987,24204491:25899828,4799349,0 -(1,15434:6656987,23614667:25899828,3619701,0 -[1,15434:7246811,23614667:24720180,3619701,0 -(1,15434:7246811,21082340:24720180,1087374,126483 -k1,15433:8667750,21082340:211236 -k1,15433:10538357,21082340:211235 -k1,15433:11520296,21082340:211236 -k1,15433:13737588,21082340:211235 -k1,15433:15226121,21082340:211236 -(1,15433:15433215,21082340:0,452978,122846 -r1,15466:18253464,21082340:2820249,575824,122846 -k1,15433:15433215,21082340:-2820249 -) -(1,15433:15433215,21082340:2820249,452978,122846 -k1,15433:15433215,21082340:3277 -h1,15433:18250187,21082340:0,411205,112570 -) -k1,15433:18671793,21082340:211235 -k1,15433:20074474,21082340:211236 -k1,15433:21483052,21082340:211235 -k1,15433:22345716,21082340:211236 -k1,15433:23015048,21082340:211235 -k1,15433:23912446,21082340:211236 -k1,15433:25391147,21082340:211235 -k1,15433:26373086,21082340:211236 -k1,15433:26999152,21082340:211223 -k1,15433:30650373,21082340:211236 -k1,15434:31966991,21082340:0 -) -(1,15434:7246811,21923828:24720180,615216,138281 -k1,15433:9651456,21923828:245234 -$1,15433:9651456,21923828 -k1,15433:10469409,21923828:266140 -k1,15433:11303746,21923828:266140 -(1,15433:11727765,22022142:311689,339935,8258 -) -k1,15433:12218734,21923828:179280 -k1,15433:12966212,21923828:179281 -(1,15433:13390231,22022142:311689,334430,0 -) -k1,15433:14383861,21923828:179280 -k1,15433:15131338,21923828:179280 -(1,15433:15555357,22022142:311689,339935,0 -) -(1,15433:16369707,21648547:311689,339935,0 -) -$1,15433:16681396,21923828 -k1,15433:17100299,21923828:245233 -k1,15433:19104519,21923828:245234 -k1,15433:20824967,21923828:245233 -k1,15433:21426061,21923828:245234 -k1,15433:23058036,21923828:245233 -k1,15433:23916032,21923828:245234 -k1,15433:25180350,21923828:245233 -k1,15433:28417303,21923828:245234 -k1,15433:29610188,21923828:245234 -k1,15433:30874506,21923828:245233 -k1,15433:31966991,21923828:0 -) -(1,15434:7246811,22765316:24720180,513147,134348 -k1,15433:8156417,22765316:250314 -k1,15433:12177018,22765316:250315 -k1,15433:13043370,22765316:250314 -k1,15433:14312770,22765316:250315 -(1,15433:14312770,22765316:0,452978,115847 -r1,15466:17133019,22765316:2820249,568825,115847 -k1,15433:14312770,22765316:-2820249 -) -(1,15433:14312770,22765316:2820249,452978,115847 -k1,15433:14312770,22765316:3277 -h1,15433:17129742,22765316:0,411205,112570 -) -k1,15433:17383333,22765316:250314 -k1,15433:19416227,22765316:250315 -k1,15433:20282579,22765316:250314 -k1,15433:20947686,22765316:250264 -k1,15433:21959528,22765316:250314 -k1,15433:24238838,22765316:250315 -(1,15433:24238838,22765316:0,452978,115847 -r1,15466:29169358,22765316:4930520,568825,115847 -k1,15433:24238838,22765316:-4930520 -) -(1,15433:24238838,22765316:4930520,452978,115847 -k1,15433:24238838,22765316:3277 -h1,15433:29166081,22765316:0,411205,112570 -) -k1,15433:29419672,22765316:250314 -k1,15433:30282749,22765316:250315 -k1,15433:31552148,22765316:250314 -k1,15434:31966991,22765316:0 -) -(1,15434:7246811,23606804:24720180,505283,7863 -k1,15434:31966990,23606804:22126264 -g1,15434:31966990,23606804 -) -] -) -] -r1,15466:32583029,24204491:26214,4799349,0 -) -] -) -) -g1,15434:32583029,23614667 -) -h1,15434:6630773,24230705:0,0,0 -(1,15449:6630773,26846253:25952256,555811,12975 -(1,15449:6630773,26846253:2450326,534184,12975 -g1,15449:6630773,26846253 -g1,15449:9081099,26846253 -) -g1,15449:13486495,26846253 -k1,15449:32583028,26846253:16910776 -g1,15449:32583028,26846253 -) -(1,15452:6630773,28080957:25952256,513147,134348 -k1,15451:7843517,28080957:259195 -k1,15451:9591035,28080957:259195 -k1,15451:10611757,28080957:259194 -k1,15451:12854727,28080957:259195 -k1,15451:14133007,28080957:259195 -k1,15451:15993902,28080957:259195 -k1,15451:19558077,28080957:259194 -k1,15451:21330498,28080957:259195 -k1,15451:24992322,28080957:259195 -k1,15451:25902945,28080957:259195 -k1,15451:27181224,28080957:259194 -k1,15451:31010820,28080957:259195 -k1,15451:32583029,28080957:0 -) -(1,15452:6630773,28922445:25952256,513147,115847 -k1,15451:10164025,28922445:333784 -(1,15451:10164025,28922445:0,414482,115847 -r1,15466:11577426,28922445:1413401,530329,115847 -k1,15451:10164025,28922445:-1413401 -) -(1,15451:10164025,28922445:1413401,414482,115847 -k1,15451:10164025,28922445:3277 -h1,15451:11574149,28922445:0,411205,112570 -) -k1,15451:12084879,28922445:333783 -(1,15451:12084879,28922445:0,452978,115847 -r1,15466:14201704,28922445:2116825,568825,115847 -k1,15451:12084879,28922445:-2116825 -) -(1,15451:12084879,28922445:2116825,452978,115847 -k1,15451:12084879,28922445:3277 -h1,15451:14198427,28922445:0,411205,112570 -) -k1,15451:14709158,28922445:333784 -(1,15451:14709158,28922445:0,452978,115847 -r1,15466:18936254,28922445:4227096,568825,115847 -k1,15451:14709158,28922445:-4227096 -) -(1,15451:14709158,28922445:4227096,452978,115847 -k1,15451:14709158,28922445:3277 -h1,15451:18932977,28922445:0,411205,112570 -) -k1,15451:19443708,28922445:333784 -(1,15451:19443708,28922445:0,452978,115847 -r1,15466:21560533,28922445:2116825,568825,115847 -k1,15451:19443708,28922445:-2116825 -) -(1,15451:19443708,28922445:2116825,452978,115847 -k1,15451:19443708,28922445:3277 -h1,15451:21557256,28922445:0,411205,112570 -) -k1,15451:22067986,28922445:333783 -(1,15451:22067986,28922445:0,452978,115847 -r1,15466:24184811,28922445:2116825,568825,115847 -k1,15451:22067986,28922445:-2116825 -) -(1,15451:22067986,28922445:2116825,452978,115847 -k1,15451:22067986,28922445:3277 -h1,15451:24181534,28922445:0,411205,112570 -) -k1,15451:24692265,28922445:333784 -(1,15451:24692265,28922445:0,452978,115847 -r1,15466:26809090,28922445:2116825,568825,115847 -k1,15451:24692265,28922445:-2116825 -) -(1,15451:24692265,28922445:2116825,452978,115847 -k1,15451:24692265,28922445:3277 -h1,15451:26805813,28922445:0,411205,112570 -) -k1,15451:27316543,28922445:333783 -(1,15451:27316543,28922445:0,452978,115847 -r1,15466:30136792,28922445:2820249,568825,115847 -k1,15451:27316543,28922445:-2820249 -) -(1,15451:27316543,28922445:2820249,452978,115847 -k1,15451:27316543,28922445:3277 -h1,15451:30133515,28922445:0,411205,112570 -) -k1,15451:30644246,28922445:333784 -(1,15451:30644246,28922445:0,414482,115847 -r1,15466:32409359,28922445:1765113,530329,115847 -k1,15451:30644246,28922445:-1765113 -) -(1,15451:30644246,28922445:1765113,414482,115847 -k1,15451:30644246,28922445:3277 -h1,15451:32406082,28922445:0,411205,112570 -) -k1,15452:32583029,28922445:0 -) -(1,15452:6630773,29763933:25952256,513147,126483 -(1,15451:6630773,29763933:0,452978,122846 -r1,15466:8395886,29763933:1765113,575824,122846 -k1,15451:6630773,29763933:-1765113 -) -(1,15451:6630773,29763933:1765113,452978,122846 -k1,15451:6630773,29763933:3277 -h1,15451:8392609,29763933:0,411205,112570 -) -k1,15451:8786997,29763933:217441 -k1,15451:10195883,29763933:217441 -(1,15451:10195883,29763933:0,452978,115847 -r1,15466:13016132,29763933:2820249,568825,115847 -k1,15451:10195883,29763933:-2820249 -) -(1,15451:10195883,29763933:2820249,452978,115847 -k1,15451:10195883,29763933:3277 -h1,15451:13012855,29763933:0,411205,112570 -) -k1,15451:13407243,29763933:217441 -k1,15451:14821371,29763933:217441 -k1,15451:16719154,29763933:217440 -k1,15451:17603751,29763933:217441 -(1,15451:17603751,29763933:0,414482,115847 -r1,15466:19017152,29763933:1413401,530329,115847 -k1,15451:17603751,29763933:-1413401 -) -(1,15451:17603751,29763933:1413401,414482,115847 -k1,15451:17603751,29763933:3277 -h1,15451:19013875,29763933:0,411205,112570 -) -k1,15451:19234593,29763933:217441 -k1,15451:19983531,29763933:217441 -k1,15451:21714198,29763933:217441 -k1,15451:22879290,29763933:217441 -k1,15451:24349124,29763933:217441 -k1,15451:26410748,29763933:217441 -k1,15451:27311073,29763933:217440 -k1,15451:28547599,29763933:217441 -k1,15451:29866045,29763933:217441 -k1,15451:31350952,29763933:217441 -k1,15451:32583029,29763933:0 -) -(1,15452:6630773,30605421:25952256,513147,134348 -k1,15451:9567503,30605421:182252 -k1,15451:12409206,30605421:182252 -k1,15451:13788145,30605421:182252 -k1,15451:17373026,30605421:182252 -k1,15451:18206705,30605421:182251 -(1,15451:18206705,30605421:0,452978,115847 -r1,15466:20323530,30605421:2116825,568825,115847 -k1,15451:18206705,30605421:-2116825 -) -(1,15451:18206705,30605421:2116825,452978,115847 -k1,15451:18206705,30605421:3277 -h1,15451:20320253,30605421:0,411205,112570 -) -k1,15451:20505782,30605421:182252 -k1,15451:21879479,30605421:182252 -(1,15451:21879479,30605421:0,452978,115847 -r1,15466:26106575,30605421:4227096,568825,115847 -k1,15451:21879479,30605421:-4227096 -) -(1,15451:21879479,30605421:4227096,452978,115847 -k1,15451:21879479,30605421:3277 -h1,15451:26103298,30605421:0,411205,112570 -) -k1,15451:26288827,30605421:182252 -k1,15451:29116112,30605421:182252 -k1,15451:30317449,30605421:182252 -k1,15451:32583029,30605421:0 -) -(1,15452:6630773,31446909:25952256,513147,134348 -k1,15451:9692732,31446909:175098 -k1,15451:10527122,31446909:175098 -k1,15451:12587691,31446909:175098 -k1,15451:13954234,31446909:175098 -k1,15451:16048226,31446909:175098 -k1,15451:17737861,31446909:175098 -k1,15451:19104404,31446909:175098 -k1,15451:20564008,31446909:175098 -k1,15451:22411585,31446909:175098 -k1,15451:24793280,31446909:175098 -k1,15451:26607433,31446909:175098 -k1,15451:27433959,31446909:175098 -(1,15451:27433959,31446909:0,414482,115847 -r1,15466:28847360,31446909:1413401,530329,115847 -k1,15451:27433959,31446909:-1413401 -) -(1,15451:27433959,31446909:1413401,414482,115847 -k1,15451:27433959,31446909:3277 -h1,15451:28844083,31446909:0,411205,112570 -) -k1,15451:29022458,31446909:175098 -k1,15451:32583029,31446909:0 -) -(1,15452:6630773,32288397:25952256,513147,134348 -k1,15451:7858742,32288397:208884 -k1,15451:9755833,32288397:208884 -k1,15451:10724936,32288397:208885 -k1,15451:13199400,32288397:208884 -k1,15451:14427369,32288397:208884 -k1,15451:15820489,32288397:208884 -k1,15451:17873556,32288397:208884 -k1,15451:19074001,32288397:208885 -k1,15451:22435822,32288397:208884 -k1,15451:24212327,32288397:208884 -k1,15451:25440296,32288397:208884 -k1,15451:27329523,32288397:208884 -k1,15451:28205564,32288397:208885 -(1,15451:28205564,32288397:0,452978,115847 -r1,15466:30322389,32288397:2116825,568825,115847 -k1,15451:28205564,32288397:-2116825 -) -(1,15451:28205564,32288397:2116825,452978,115847 -k1,15451:28205564,32288397:3277 -h1,15451:30319112,32288397:0,411205,112570 -) -k1,15451:30531273,32288397:208884 -k1,15451:31812326,32288397:208884 -k1,15451:32583029,32288397:0 -) -(1,15452:6630773,33129885:25952256,513147,134348 -k1,15451:9923855,33129885:220754 -k1,15451:10796036,33129885:220753 -(1,15451:10796036,33129885:0,452978,115847 -r1,15466:12912861,33129885:2116825,568825,115847 -k1,15451:10796036,33129885:-2116825 -) -(1,15451:10796036,33129885:2116825,452978,115847 -k1,15451:10796036,33129885:3277 -h1,15451:12909584,33129885:0,411205,112570 -) -k1,15451:13133615,33129885:220754 -k1,15451:14013660,33129885:220753 -k1,15451:15253499,33129885:220754 -k1,15451:17127726,33129885:220754 -k1,15451:19361745,33129885:220753 -k1,15451:20268661,33129885:220754 -(1,15451:20268661,33129885:0,452978,115847 -r1,15466:22385486,33129885:2116825,568825,115847 -k1,15451:20268661,33129885:-2116825 -) -(1,15451:20268661,33129885:2116825,452978,115847 -k1,15451:20268661,33129885:3277 -h1,15451:22382209,33129885:0,411205,112570 -) -k1,15451:22606240,33129885:220754 -k1,15451:23959455,33129885:220753 -k1,15451:26478557,33129885:220754 -k1,15451:28396037,33129885:220753 -k1,15451:31386342,33129885:220754 -k1,15451:32583029,33129885:0 -) -(1,15452:6630773,33971373:25952256,513147,134348 -k1,15451:8854549,33971373:213131 -k1,15451:9734837,33971373:213132 -(1,15451:9734837,33971373:0,452978,115847 -r1,15466:11851662,33971373:2116825,568825,115847 -k1,15451:9734837,33971373:-2116825 -) -(1,15451:9734837,33971373:2116825,452978,115847 -k1,15451:9734837,33971373:3277 -h1,15451:11848385,33971373:0,411205,112570 -) -k1,15451:12064794,33971373:213132 -k1,15451:15521957,33971373:213131 -k1,15451:17201785,33971373:213132 -k1,15451:18434001,33971373:213131 -k1,15451:20427745,33971373:213131 -k1,15451:21300169,33971373:213132 -k1,15451:23523945,33971373:213131 -k1,15451:24353115,33971373:213132 -k1,15451:25585332,33971373:213132 -k1,15451:27187826,33971373:213131 -k1,15451:30159367,33971373:213131 -k1,15451:31563944,33971373:213132 -k1,15451:32583029,33971373:0 -) -(1,15452:6630773,34812861:25952256,513147,134348 -k1,15451:9341050,34812861:185830 -k1,15451:10874300,34812861:185830 -k1,15451:11746292,34812861:185830 -k1,15451:15022145,34812861:185830 -k1,15451:18480188,34812861:185830 -k1,15451:20931598,34812861:185830 -k1,15451:22136513,34812861:185830 -k1,15451:26849570,34812861:185830 -(1,15451:27056664,34812861:0,452978,115847 -r1,15466:28118353,34812861:1061689,568825,115847 -k1,15451:27056664,34812861:-1061689 -) -(1,15451:27056664,34812861:1061689,452978,115847 -k1,15451:27056664,34812861:3277 -h1,15451:28115076,34812861:0,411205,112570 -) -k1,15451:28511277,34812861:185830 -k1,15451:32583029,34812861:0 -) -(1,15452:6630773,35654349:25952256,505283,126483 -k1,15451:7781367,35654349:159034 -k1,15451:10659489,35654349:159033 -k1,15451:11580051,35654349:159034 -(1,15451:11580051,35654349:0,414482,115847 -r1,15466:12290029,35654349:709978,530329,115847 -k1,15451:11580051,35654349:-709978 -) -(1,15451:11580051,35654349:709978,414482,115847 -k1,15451:11580051,35654349:3277 -h1,15451:12286752,35654349:0,411205,112570 -) -k1,15451:12449062,35654349:159033 -k1,15451:13680265,35654349:159034 -k1,15451:14297395,35654349:159033 -k1,15451:14987926,35654349:159034 -k1,15451:17776919,35654349:159033 -k1,15451:18587381,35654349:159034 -k1,15451:21073597,35654349:159033 -k1,15451:23928782,35654349:159034 -k1,15451:25784542,35654349:159033 -k1,15451:30015328,35654349:159034 -k1,15451:32583029,35654349:0 -) -(1,15452:6630773,36495837:25952256,513147,134348 -k1,15451:7874271,36495837:224413 -k1,15451:9588317,36495837:224413 -k1,15451:10472022,36495837:224413 -k1,15451:11715520,36495837:224413 -k1,15451:14464380,36495837:224413 -k1,15451:16209884,36495837:224413 -k1,15451:17630984,36495837:224413 -k1,15451:20927725,36495837:224413 -k1,15451:21803566,36495837:224413 -(1,15451:21803566,36495837:0,452978,115847 -r1,15466:23920391,36495837:2116825,568825,115847 -k1,15451:21803566,36495837:-2116825 -) -(1,15451:21803566,36495837:2116825,452978,115847 -k1,15451:21803566,36495837:3277 -h1,15451:23917114,36495837:0,411205,112570 -) -k1,15451:24144804,36495837:224413 -k1,15451:27943551,36495837:224413 -k1,15451:29187049,36495837:224413 -k1,15451:30680239,36495837:224413 -k1,15451:31563944,36495837:224413 -k1,15451:32583029,36495837:0 -) -(1,15452:6630773,37337325:25952256,505283,134348 -k1,15451:9410423,37337325:194910 -k1,15451:10288218,37337325:194910 -k1,15451:13091461,37337325:194910 -k1,15451:15251796,37337325:194910 -k1,15451:16098134,37337325:194910 -k1,15451:17312129,37337325:194910 -k1,15451:18854460,37337325:194911 -k1,15451:22069924,37337325:194910 -k1,15451:23026362,37337325:194910 -(1,15451:23026362,37337325:0,452978,115847 -r1,15466:24439763,37337325:1413401,568825,115847 -k1,15451:23026362,37337325:-1413401 -) -(1,15451:23026362,37337325:1413401,452978,115847 -k1,15451:23026362,37337325:3277 -h1,15451:24436486,37337325:0,411205,112570 -) -k1,15451:24634673,37337325:194910 -k1,15451:26527621,37337325:194910 -k1,15451:28904225,37337325:194910 -k1,15451:30118220,37337325:194910 -k1,15451:32583029,37337325:0 -) -(1,15452:6630773,38178813:25952256,513147,134348 -k1,15451:9408063,38178813:252843 -k1,15451:11181996,38178813:252842 -k1,15451:12631526,38178813:252843 -k1,15451:14564711,38178813:252842 -k1,15451:17022841,38178813:252843 -k1,15451:17927111,38178813:252842 -(1,15451:17927111,38178813:0,452978,115847 -r1,15466:20747360,38178813:2820249,568825,115847 -k1,15451:17927111,38178813:-2820249 -) -(1,15451:17927111,38178813:2820249,452978,115847 -k1,15451:17927111,38178813:3277 -h1,15451:20744083,38178813:0,411205,112570 -) -k1,15451:21000203,38178813:252843 -k1,15451:21784543,38178813:252843 -k1,15451:23550611,38178813:252842 -k1,15451:24489616,38178813:252843 -k1,15451:25098318,38178813:252842 -k1,15451:29288564,38178813:252843 -k1,15451:30489057,38178813:252842 -(1,15451:30489057,38178813:0,414482,115847 -r1,15466:31199035,38178813:709978,530329,115847 -k1,15451:30489057,38178813:-709978 -) -(1,15451:30489057,38178813:709978,414482,115847 -k1,15451:30489057,38178813:3277 -h1,15451:31195758,38178813:0,411205,112570 -) -k1,15451:31451878,38178813:252843 -k1,15452:32583029,38178813:0 -) -(1,15452:6630773,39020301:25952256,513147,115847 -k1,15451:8009649,39020301:195951 -k1,15451:14534411,39020301:195950 -k1,15451:16707583,39020301:195951 -k1,15451:17851184,39020301:195950 -(1,15451:17851184,39020301:0,452978,115847 -r1,15466:19616297,39020301:1765113,568825,115847 -k1,15451:17851184,39020301:-1765113 -) -(1,15451:17851184,39020301:1765113,452978,115847 -k1,15451:17851184,39020301:3277 -h1,15451:19613020,39020301:0,411205,112570 -) -k1,15451:19812248,39020301:195951 -k1,15451:21199643,39020301:195950 -(1,15451:21199643,39020301:0,459977,115847 -r1,15466:22613044,39020301:1413401,575824,115847 -k1,15451:21199643,39020301:-1413401 -) -(1,15451:21199643,39020301:1413401,459977,115847 -k1,15451:21199643,39020301:3277 -h1,15451:22609767,39020301:0,411205,112570 -) -k1,15451:22808995,39020301:195951 -k1,15451:26353179,39020301:195950 -k1,15451:27745817,39020301:195951 -k1,15451:32583029,39020301:0 -) -(1,15452:6630773,39861789:25952256,513147,134348 -k1,15451:8812640,39861789:222341 -k1,15451:11240267,39861789:222340 -k1,15451:12148770,39861789:222341 -k1,15451:13141814,39861789:222341 -k1,15451:16436483,39861789:222341 -k1,15451:17310251,39861789:222340 -(1,15451:17310251,39861789:0,414482,115847 -r1,15466:19075364,39861789:1765113,530329,115847 -k1,15451:17310251,39861789:-1765113 -) -(1,15451:17310251,39861789:1765113,414482,115847 -k1,15451:17310251,39861789:3277 -h1,15451:19072087,39861789:0,411205,112570 -) -k1,15451:19297705,39861789:222341 -k1,15451:23094380,39861789:222341 -k1,15451:24335805,39861789:222340 -k1,15451:29395358,39861789:222341 -k1,15451:32583029,39861789:0 -) -(1,15452:6630773,40703277:25952256,513147,134348 -k1,15451:11656335,40703277:188350 -k1,15451:13954289,40703277:188350 -k1,15451:15161725,40703277:188351 -k1,15451:18620977,40703277:188350 -k1,15451:19881496,40703277:188350 -k1,15451:22184693,40703277:188350 -k1,15451:23564488,40703277:188350 -k1,15451:24937075,40703277:188351 -k1,15451:26969608,40703277:188350 -k1,15451:29385527,40703277:188350 -k1,15451:32583029,40703277:0 -) -(1,15452:6630773,41544765:25952256,513147,134348 -k1,15451:7429729,41544765:182918 -k1,15451:8631731,41544765:182917 -k1,15451:11249967,41544765:182918 -k1,15451:12822247,41544765:182917 -k1,15451:14796919,41544765:182918 -k1,15451:16176524,41544765:182918 -k1,15451:19431769,41544765:182917 -k1,15451:20266115,41544765:182918 -(1,15451:20266115,41544765:0,452978,122846 -r1,15466:22031228,41544765:1765113,575824,122846 -k1,15451:20266115,41544765:-1765113 -) -(1,15451:20266115,41544765:1765113,452978,122846 -k1,15451:20266115,41544765:3277 -h1,15451:22027951,41544765:0,411205,112570 -) -k1,15451:22214145,41544765:182917 -k1,15451:25971397,41544765:182918 -k1,15451:27173400,41544765:182918 -k1,15451:28742403,41544765:182917 -k1,15451:29584613,41544765:182918 -k1,15451:30868535,41544765:182917 -k1,15451:31734338,41544765:182918 -k1,15452:32583029,41544765:0 -) -(1,15452:6630773,42386253:25952256,513147,134348 -k1,15451:8832228,42386253:152144 -k1,15451:10003457,42386253:152144 -k1,15451:12421181,42386253:152144 -k1,15451:13848001,42386253:152145 -k1,15451:17444717,42386253:152144 -k1,15451:18406231,42386253:152144 -k1,15451:19577460,42386253:152144 -k1,15451:21301813,42386253:152144 -k1,15451:22069995,42386253:152144 -k1,15451:24986449,42386253:152145 -k1,15451:26204864,42386253:152144 -k1,15451:27123124,42386253:152144 -k1,15451:28971995,42386253:152144 -k1,15451:32583029,42386253:0 -) -(1,15452:6630773,43227741:25952256,505283,7863 -g1,15451:7821562,43227741 -k1,15452:32583030,43227741:21803828 -g1,15452:32583030,43227741 -) -(1,15456:6630773,44069229:25952256,513147,134348 -h1,15455:6630773,44069229:983040,0,0 -g1,15455:8766591,44069229 -g1,15455:11698016,44069229 -g1,15455:13180440,44069229 -g1,15455:14740196,44069229 -k1,15456:32583029,44069229:16279799 -g1,15456:32583029,44069229 -) -v1,15458:6630773,45259695:0,393216,0 -] -(1,15466:32583029,45706769:0,0,0 -g1,15466:32583029,45706769 -) -) -] -(1,15466:6630773,47279633:25952256,0,0 -h1,15466:6630773,47279633:25952256,0,0 -) -] -(1,15466:4262630,4025873:0,0,0 -[1,15466:-473656,4025873:0,0,0 -(1,15466:-473656,-710413:0,0,0 -(1,15466:-473656,-710413:0,0,0 -g1,15466:-473656,-710413 -) -g1,15466:-473656,-710413 -) -] -) -] -!26536 -}299 -Input:2466:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2467:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2468:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2469:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2470:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2471:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2472:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2473:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2474:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2475:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2476:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2477:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2478:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2479:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2480:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2481:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2482:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2483:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2484:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2485:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1852 -{300 -[1,15522:4262630,47279633:28320399,43253760,0 -(1,15522:4262630,4025873:0,0,0 -[1,15522:-473656,4025873:0,0,0 -(1,15522:-473656,-710413:0,0,0 -(1,15522:-473656,-644877:0,0,0 -k1,15522:-473656,-644877:-65536 -) -(1,15522:-473656,4736287:0,0,0 -k1,15522:-473656,4736287:5209943 -) -g1,15522:-473656,-710413 -) -] -) -[1,15522:6630773,47279633:25952256,43253760,0 -[1,15522:6630773,4812305:25952256,786432,0 -(1,15522:6630773,4812305:25952256,505283,11795 -(1,15522:6630773,4812305:25952256,505283,11795 -g1,15522:3078558,4812305 -[1,15522:3078558,4812305:0,0,0 -(1,15522:3078558,2439708:0,1703936,0 -k1,15522:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,15522:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,15522:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,15522:3078558,4812305:0,0,0 -(1,15522:3078558,2439708:0,1703936,0 -g1,15522:29030814,2439708 -g1,15522:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,15522:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,15522:37855564,2439708:1179648,16384,0 -) -) -k1,15522:3078556,2439708:-34777008 -) -] -[1,15522:3078558,4812305:0,0,0 -(1,15522:3078558,49800853:0,16384,2228224 -k1,15522:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,15522:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,15522:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,15522:3078558,4812305:0,0,0 -(1,15522:3078558,49800853:0,16384,2228224 -g1,15522:29030814,49800853 -g1,15522:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,15522:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,15522:37855564,49800853:1179648,16384,0 -) -) -k1,15522:3078556,49800853:-34777008 -) -] -g1,15522:6630773,4812305 -g1,15522:6630773,4812305 -g1,15522:8724648,4812305 -k1,15522:31387652,4812305:22663004 -) -) -] -[1,15522:6630773,45706769:25952256,40108032,0 -(1,15522:6630773,45706769:25952256,40108032,0 -(1,15522:6630773,45706769:0,0,0 -g1,15522:6630773,45706769 -) -[1,15522:6630773,45706769:25952256,40108032,0 -v1,15466:6630773,6254097:0,393216,0 -(1,15466:6630773,9215031:25952256,3354150,196608 -g1,15466:6630773,9215031 -g1,15466:6630773,9215031 -g1,15466:6434165,9215031 -(1,15466:6434165,9215031:0,3354150,196608 -r1,15522:32779637,9215031:26345472,3550758,196608 -k1,15466:6434165,9215031:-26345472 -) -(1,15466:6434165,9215031:26345472,3354150,196608 -[1,15466:6630773,9215031:25952256,3157542,0 -(1,15460:6630773,6468007:25952256,410518,6290 -(1,15459:6630773,6468007:0,0,0 -g1,15459:6630773,6468007 -g1,15459:6630773,6468007 -g1,15459:6303093,6468007 -(1,15459:6303093,6468007:0,0,0 -) -g1,15459:6630773,6468007 -) -g1,15460:10108376,6468007 -k1,15460:10108376,6468007:0 -h1,15460:10740668,6468007:0,0,0 -k1,15460:32583028,6468007:21842360 -g1,15460:32583028,6468007 -) -(1,15461:6630773,7134185:25952256,410518,101187 -h1,15461:6630773,7134185:0,0,0 -g1,15461:6946919,7134185 -g1,15461:7263065,7134185 -g1,15461:11372960,7134185 -g1,15461:12005252,7134185 -g1,15461:15799001,7134185 -g1,15461:17379730,7134185 -g1,15461:18012022,7134185 -g1,15461:19276605,7134185 -g1,15461:20225042,7134185 -g1,15461:20857334,7134185 -k1,15461:20857334,7134185:0 -h1,15461:21805772,7134185:0,0,0 -k1,15461:32583029,7134185:10777257 -g1,15461:32583029,7134185 -) -(1,15462:6630773,7800363:25952256,404226,82312 -h1,15462:6630773,7800363:0,0,0 -g1,15462:6946919,7800363 -g1,15462:7263065,7800363 -g1,15462:7579211,7800363 -g1,15462:7895357,7800363 -g1,15462:8211503,7800363 -g1,15462:8527649,7800363 -g1,15462:8843795,7800363 -g1,15462:9159941,7800363 -g1,15462:9476087,7800363 -g1,15462:9792233,7800363 -g1,15462:10108379,7800363 -g1,15462:10424525,7800363 -g1,15462:10740671,7800363 -g1,15462:11056817,7800363 -g1,15462:11372963,7800363 -g1,15462:11689109,7800363 -g1,15462:12005255,7800363 -g1,15462:12321401,7800363 -g1,15462:12637547,7800363 -g1,15462:15799004,7800363 -g1,15462:17379733,7800363 -g1,15462:18012025,7800363 -g1,15462:19276608,7800363 -g1,15462:20225045,7800363 -g1,15462:20857337,7800363 -k1,15462:20857337,7800363:0 -h1,15462:22438065,7800363:0,0,0 -k1,15462:32583029,7800363:10144964 -g1,15462:32583029,7800363 -) -(1,15463:6630773,8466541:25952256,410518,107478 -h1,15463:6630773,8466541:0,0,0 -g1,15463:6946919,8466541 -g1,15463:7263065,8466541 -g1,15463:7579211,8466541 -g1,15463:7895357,8466541 -g1,15463:8211503,8466541 -g1,15463:8527649,8466541 -g1,15463:8843795,8466541 -g1,15463:9159941,8466541 -g1,15463:9476087,8466541 -g1,15463:9792233,8466541 -g1,15463:10108379,8466541 -g1,15463:10424525,8466541 -g1,15463:10740671,8466541 -g1,15463:12637545,8466541 -g1,15463:13269837,8466541 -g1,15463:18960461,8466541 -g1,15463:20541190,8466541 -g1,15463:23386502,8466541 -k1,15463:23386502,8466541:0 -h1,15463:25283376,8466541:0,0,0 -k1,15463:32583029,8466541:7299653 -g1,15463:32583029,8466541 -) -(1,15464:6630773,9132719:25952256,404226,82312 -h1,15464:6630773,9132719:0,0,0 -g1,15464:6946919,9132719 -g1,15464:7263065,9132719 -g1,15464:7579211,9132719 -g1,15464:7895357,9132719 -g1,15464:8211503,9132719 -g1,15464:8527649,9132719 -g1,15464:8843795,9132719 -g1,15464:9159941,9132719 -g1,15464:9476087,9132719 -g1,15464:9792233,9132719 -g1,15464:10108379,9132719 -g1,15464:10424525,9132719 -g1,15464:10740671,9132719 -g1,15464:11372963,9132719 -g1,15464:12005255,9132719 -g1,15464:15166712,9132719 -g1,15464:16747441,9132719 -g1,15464:17379733,9132719 -g1,15464:18644316,9132719 -g1,15464:19592753,9132719 -g1,15464:20225045,9132719 -h1,15464:21173482,9132719:0,0,0 -k1,15464:32583029,9132719:11409547 -g1,15464:32583029,9132719 -) -] -) -g1,15466:32583029,9215031 -g1,15466:6630773,9215031 -g1,15466:6630773,9215031 -g1,15466:32583029,9215031 -g1,15466:32583029,9215031 -) -h1,15466:6630773,9411639:0,0,0 -(1,15468:6630773,11563847:25952256,505283,11795 -(1,15468:6630773,11563847:2809528,485622,11795 -g1,15468:6630773,11563847 -g1,15468:9440301,11563847 -) -k1,15468:32583028,11563847:21101936 -g1,15468:32583028,11563847 -) -(1,15471:6630773,12798551:25952256,513147,134348 -k1,15470:8814835,12798551:209462 -k1,15470:10015857,12798551:209462 -k1,15470:12798262,12798551:209462 -k1,15470:13659152,12798551:209462 -k1,15470:14634730,12798551:209462 -k1,15470:16603834,12798551:209462 -k1,15470:17472589,12798551:209463 -k1,15470:19678933,12798551:209462 -k1,15470:21862995,12798551:209462 -k1,15470:23064017,12798551:209462 -k1,15470:24208022,12798551:209462 -k1,15470:26976010,12798551:209462 -k1,15470:30466204,12798551:209462 -(1,15470:30466204,12798551:0,452978,115847 -r1,15522:32583029,12798551:2116825,568825,115847 -k1,15470:30466204,12798551:-2116825 -) -(1,15470:30466204,12798551:2116825,452978,115847 -k1,15470:30466204,12798551:3277 -h1,15470:32579752,12798551:0,411205,112570 -) -k1,15470:32583029,12798551:0 -) -(1,15471:6630773,13640039:25952256,513147,126483 -k1,15470:7522008,13640039:231943 -k1,15470:8773035,13640039:231942 -k1,15470:11767321,13640039:231943 -k1,15470:13571473,13640039:231943 -k1,15470:17002883,13640039:231942 -k1,15470:18792617,13640039:231943 -k1,15470:20128842,13640039:231943 -k1,15470:21646600,13640039:231942 -k1,15470:22626309,13640039:231943 -k1,15470:23792795,13640039:231943 -k1,15470:25418688,13640039:231942 -k1,15470:29557232,13640039:231943 -k1,15471:32583029,13640039:0 -) -(1,15471:6630773,14481527:25952256,513147,134348 -(1,15470:6630773,14481527:0,452978,115847 -r1,15522:8747598,14481527:2116825,568825,115847 -k1,15470:6630773,14481527:-2116825 -) -(1,15470:6630773,14481527:2116825,452978,115847 -k1,15470:6630773,14481527:3277 -h1,15470:8744321,14481527:0,411205,112570 -) -k1,15470:8986831,14481527:239233 -k1,15470:10417510,14481527:239234 -(1,15470:10417510,14481527:0,452978,115847 -r1,15522:12534335,14481527:2116825,568825,115847 -k1,15470:10417510,14481527:-2116825 -) -(1,15470:10417510,14481527:2116825,452978,115847 -k1,15470:10417510,14481527:3277 -h1,15470:12531058,14481527:0,411205,112570 -) -k1,15470:12773568,14481527:239233 -k1,15470:13628840,14481527:239234 -k1,15470:14887158,14481527:239233 -k1,15470:16493472,14481527:239233 -k1,15470:17391998,14481527:239234 -k1,15470:18650316,14481527:239233 -(1,15470:18650316,14481527:0,414482,115847 -r1,15522:19008582,14481527:358266,530329,115847 -k1,15470:18650316,14481527:-358266 -) -(1,15470:18650316,14481527:358266,414482,115847 -k1,15470:18650316,14481527:3277 -h1,15470:19005305,14481527:0,411205,112570 -) -k1,15470:19247816,14481527:239234 -k1,15470:20678494,14481527:239233 -(1,15470:20678494,14481527:0,414482,115847 -r1,15522:21036760,14481527:358266,530329,115847 -k1,15470:20678494,14481527:-358266 -) -(1,15470:20678494,14481527:358266,414482,115847 -k1,15470:20678494,14481527:3277 -h1,15470:21033483,14481527:0,411205,112570 -) -k1,15470:21275993,14481527:239233 -k1,15470:24730423,14481527:239234 -k1,15470:26161101,14481527:239233 -k1,15470:28050532,14481527:239234 -k1,15470:31189078,14481527:239233 -k1,15470:32583029,14481527:0 -) -(1,15471:6630773,15323015:25952256,513147,134348 -k1,15470:9512448,15323015:186179 -(1,15470:9512448,15323015:0,452978,115847 -r1,15522:11629273,15323015:2116825,568825,115847 -k1,15470:9512448,15323015:-2116825 -) -(1,15470:9512448,15323015:2116825,452978,115847 -k1,15470:9512448,15323015:3277 -h1,15470:11625996,15323015:0,411205,112570 -) -k1,15470:11815453,15323015:186180 -k1,15470:13887103,15323015:186179 -k1,15470:15219508,15323015:186180 -(1,15470:15219508,15323015:0,452978,115847 -r1,15522:17336333,15323015:2116825,568825,115847 -k1,15470:15219508,15323015:-2116825 -) -(1,15470:15219508,15323015:2116825,452978,115847 -k1,15470:15219508,15323015:3277 -h1,15470:17333056,15323015:0,411205,112570 -) -k1,15470:17696182,15323015:186179 -k1,15470:19565327,15323015:186180 -k1,15470:23154135,15323015:186179 -k1,15470:25499071,15323015:186180 -k1,15470:28802142,15323015:186179 -k1,15470:29639750,15323015:186180 -k1,15470:30845014,15323015:186179 -k1,15470:32583029,15323015:0 -) -(1,15471:6630773,16164503:25952256,513147,134348 -k1,15470:7470591,16164503:180526 -k1,15470:8670201,16164503:180525 -k1,15470:12065923,16164503:180526 -k1,15470:13443135,16164503:180525 -(1,15470:13443135,16164503:0,452978,115847 -r1,15522:15559960,16164503:2116825,568825,115847 -k1,15470:13443135,16164503:-2116825 -) -(1,15470:13443135,16164503:2116825,452978,115847 -k1,15470:13443135,16164503:3277 -h1,15470:15556683,16164503:0,411205,112570 -) -k1,15470:15740486,16164503:180526 -k1,15470:18993339,16164503:180525 -k1,15470:19833157,16164503:180526 -k1,15470:21916192,16164503:180525 -k1,15470:24475020,16164503:180526 -k1,15470:27137393,16164503:180525 -k1,15470:29542211,16164503:180526 -k1,15470:30405621,16164503:180525 -k1,15470:30942007,16164503:180526 -k1,15471:32583029,16164503:0 -) -(1,15471:6630773,17005991:25952256,513147,134348 -k1,15470:8188642,17005991:290403 -k1,15470:11909855,17005991:290403 -k1,15470:13839314,17005991:290404 -k1,15470:15697338,17005991:290403 -(1,15470:15697338,17005991:0,452978,115847 -r1,15522:17110739,17005991:1413401,568825,115847 -k1,15470:15697338,17005991:-1413401 -) -(1,15470:15697338,17005991:1413401,452978,115847 -k1,15470:15697338,17005991:3277 -h1,15470:17107462,17005991:0,411205,112570 -) -k1,15470:17574812,17005991:290403 -k1,15470:18493050,17005991:290403 -k1,15470:21588394,17005991:290403 -k1,15470:22897883,17005991:290404 -k1,15470:27094887,17005991:290403 -k1,15470:30411087,17005991:290403 -k1,15470:31516758,17005991:290403 -k1,15470:32583029,17005991:0 -) -(1,15471:6630773,17847479:25952256,513147,134348 -g1,15470:8878002,17847479 -g1,15470:12103028,17847479 -g1,15470:12988419,17847479 -g1,15470:14696287,17847479 -k1,15471:32583029,17847479:14310442 -g1,15471:32583029,17847479 -) -(1,15473:6630773,18688967:25952256,505283,126483 -h1,15472:6630773,18688967:983040,0,0 -k1,15472:8424111,18688967:182463 -k1,15472:9625659,18688967:182463 -k1,15472:11192242,18688967:182463 -k1,15472:14036122,18688967:182463 -k1,15472:15086937,18688967:182463 -k1,15472:16203943,18688967:182463 -k1,15472:18466520,18688967:182464 -k1,15472:20637345,18688967:182463 -k1,15472:22705279,18688967:182463 -k1,15472:24020204,18688967:182463 -k1,15472:26636674,18688967:182463 -k1,15472:28511277,18688967:182463 -k1,15472:32583029,18688967:0 -) -(1,15473:6630773,19530455:25952256,513147,134348 -k1,15472:8459937,19530455:261543 -k1,15472:9740565,19530455:261543 -k1,15472:11279406,19530455:261544 -k1,15472:12732394,19530455:261543 -k1,15472:14561558,19530455:261543 -k1,15472:15954908,19530455:261543 -k1,15472:20280338,19530455:261543 -k1,15472:21201173,19530455:261543 -k1,15472:24970859,19530455:261544 -k1,15472:25915287,19530455:261543 -k1,15472:28111453,19530455:261543 -k1,15472:29032288,19530455:261543 -k1,15472:32583029,19530455:0 -) -(1,15473:6630773,20371943:25952256,513147,126483 -k1,15472:8393127,20371943:168518 -k1,15472:10960263,20371943:168518 -k1,15472:12147866,20371943:168518 -k1,15472:15224216,20371943:168518 -k1,15472:19464486,20371943:168518 -k1,15472:20624564,20371943:168518 -k1,15472:23953883,20371943:168518 -k1,15472:24773829,20371943:168518 -(1,15472:24773829,20371943:0,414482,115847 -r1,15522:25483807,20371943:709978,530329,115847 -k1,15472:24773829,20371943:-709978 -) -(1,15472:24773829,20371943:709978,414482,115847 -k1,15472:24773829,20371943:3277 -h1,15472:25480530,20371943:0,411205,112570 -) -k1,15472:25652325,20371943:168518 -k1,15472:27831488,20371943:168518 -k1,15472:30042763,20371943:168518 -k1,15472:31591469,20371943:168518 -k1,15472:32583029,20371943:0 -) -(1,15473:6630773,21213431:25952256,505283,134348 -g1,15472:9035289,21213431 -g1,15472:9920680,21213431 -(1,15472:9920680,21213431:0,452978,115847 -r1,15522:11334081,21213431:1413401,568825,115847 -k1,15472:9920680,21213431:-1413401 -) -(1,15472:9920680,21213431:1413401,452978,115847 -k1,15472:9920680,21213431:3277 -h1,15472:11330804,21213431:0,411205,112570 -) -g1,15472:11533310,21213431 -g1,15472:12383967,21213431 -k1,15473:32583029,21213431:16608345 -g1,15473:32583029,21213431 -) -v1,15475:6630773,22403897:0,393216,0 -(1,15480:6630773,23385172:25952256,1374491,196608 -g1,15480:6630773,23385172 -g1,15480:6630773,23385172 -g1,15480:6434165,23385172 -(1,15480:6434165,23385172:0,1374491,196608 -r1,15522:32779637,23385172:26345472,1571099,196608 -k1,15480:6434165,23385172:-26345472 -) -(1,15480:6434165,23385172:26345472,1374491,196608 -[1,15480:6630773,23385172:25952256,1177883,0 -(1,15477:6630773,22617807:25952256,410518,107478 -(1,15476:6630773,22617807:0,0,0 -g1,15476:6630773,22617807 -g1,15476:6630773,22617807 -g1,15476:6303093,22617807 -(1,15476:6303093,22617807:0,0,0 -) -g1,15476:6630773,22617807 -) -k1,15477:6630773,22617807:0 -g1,15477:12637541,22617807 -g1,15477:14850561,22617807 -g1,15477:16115144,22617807 -g1,15477:16747436,22617807 -g1,15477:20857330,22617807 -h1,15477:21173476,22617807:0,0,0 -k1,15477:32583029,22617807:11409553 -g1,15477:32583029,22617807 -) -(1,15478:6630773,23283985:25952256,404226,101187 -h1,15478:6630773,23283985:0,0,0 -g1,15478:6946919,23283985 -g1,15478:7263065,23283985 -g1,15478:15482853,23283985 -g1,15478:16115145,23283985 -g1,15478:17695875,23283985 -h1,15478:19276603,23283985:0,0,0 -k1,15478:32583029,23283985:13306426 -g1,15478:32583029,23283985 -) -] -) -g1,15480:32583029,23385172 -g1,15480:6630773,23385172 -g1,15480:6630773,23385172 -g1,15480:32583029,23385172 -g1,15480:32583029,23385172 -) -h1,15480:6630773,23581780:0,0,0 -(1,15484:6630773,24947556:25952256,513147,134348 -h1,15483:6630773,24947556:983040,0,0 -g1,15483:8642072,24947556 -g1,15483:9775844,24947556 -g1,15483:11350674,24947556 -g1,15483:12706613,24947556 -g1,15483:14390232,24947556 -g1,15483:16845210,24947556 -g1,15483:18063524,24947556 -g1,15483:19964723,24947556 -g1,15483:21585428,24947556 -g1,15483:22653009,24947556 -g1,15483:23956520,24947556 -g1,15483:25248234,24947556 -(1,15483:25248234,24947556:0,414482,115847 -r1,15522:25958212,24947556:709978,530329,115847 -k1,15483:25248234,24947556:-709978 -) -(1,15483:25248234,24947556:709978,414482,115847 -k1,15483:25248234,24947556:3277 -h1,15483:25954935,24947556:0,411205,112570 -) -g1,15483:26157441,24947556 -g1,15483:27042832,24947556 -g1,15483:27597921,24947556 -k1,15484:32583029,24947556:1760737 -g1,15484:32583029,24947556 -) -v1,15486:6630773,26138022:0,393216,0 -(1,15490:6630773,26446827:25952256,702021,196608 -g1,15490:6630773,26446827 -g1,15490:6630773,26446827 -g1,15490:6434165,26446827 -(1,15490:6434165,26446827:0,702021,196608 -r1,15522:32779637,26446827:26345472,898629,196608 -k1,15490:6434165,26446827:-26345472 -) -(1,15490:6434165,26446827:26345472,702021,196608 -[1,15490:6630773,26446827:25952256,505413,0 -(1,15488:6630773,26345640:25952256,404226,101187 -(1,15487:6630773,26345640:0,0,0 -g1,15487:6630773,26345640 -g1,15487:6630773,26345640 -g1,15487:6303093,26345640 -(1,15487:6303093,26345640:0,0,0 -) -g1,15487:6630773,26345640 -) -g1,15488:6946919,26345640 -g1,15488:7263065,26345640 -g1,15488:15482853,26345640 -g1,15488:16115145,26345640 -g1,15488:18012020,26345640 -h1,15488:19276602,26345640:0,0,0 -k1,15488:32583029,26345640:13306427 -g1,15488:32583029,26345640 -) -] -) -g1,15490:32583029,26446827 -g1,15490:6630773,26446827 -g1,15490:6630773,26446827 -g1,15490:32583029,26446827 -g1,15490:32583029,26446827 -) -h1,15490:6630773,26643435:0,0,0 -(1,15494:6630773,28009211:25952256,513147,115847 -h1,15493:6630773,28009211:983040,0,0 -k1,15493:11875718,28009211:233407 -k1,15493:15134922,28009211:233407 -(1,15493:15134922,28009211:0,452978,115847 -r1,15522:17251747,28009211:2116825,568825,115847 -k1,15493:15134922,28009211:-2116825 -) -(1,15493:15134922,28009211:2116825,452978,115847 -k1,15493:15134922,28009211:3277 -h1,15493:17248470,28009211:0,411205,112570 -) -k1,15493:17485154,28009211:233407 -k1,15493:18910006,28009211:233407 -(1,15493:18910006,28009211:0,452978,115847 -r1,15522:21026831,28009211:2116825,568825,115847 -k1,15493:18910006,28009211:-2116825 -) -(1,15493:18910006,28009211:2116825,452978,115847 -k1,15493:18910006,28009211:3277 -h1,15493:21023554,28009211:0,411205,112570 -) -k1,15493:21260238,28009211:233407 -k1,15493:22597927,28009211:233407 -k1,15493:23579100,28009211:233407 -k1,15493:25325733,28009211:233407 -k1,15493:26210568,28009211:233407 -k1,15493:27378518,28009211:233407 -k1,15493:28631010,28009211:233407 -k1,15493:30679109,28009211:233407 -k1,15493:31563944,28009211:233407 -k1,15493:32583029,28009211:0 -) -(1,15494:6630773,28850699:25952256,513147,138281 -k1,15493:9122582,28850699:226229 -$1,15493:9122582,28850699 -$1,15493:9625243,28850699 -k1,15493:9851471,28850699:226228 -k1,15493:11269145,28850699:226229 -$1,15493:11269145,28850699 -$1,15493:11820958,28850699 -k1,15493:12047186,28850699:226228 -k1,15493:14175925,28850699:226229 -k1,15493:15018192,28850699:226229 -k1,15493:16510576,28850699:226228 -k1,15493:17690354,28850699:226229 -k1,15493:19314465,28850699:226228 -k1,15493:20633179,28850699:226229 -(1,15493:20633179,28850699:0,452978,115847 -r1,15522:22750004,28850699:2116825,568825,115847 -k1,15493:20633179,28850699:-2116825 -) -(1,15493:20633179,28850699:2116825,452978,115847 -k1,15493:20633179,28850699:3277 -h1,15493:22746727,28850699:0,411205,112570 -) -k1,15493:23149903,28850699:226229 -k1,15493:24448300,28850699:226228 -(1,15493:24448300,28850699:0,452978,115847 -r1,15522:26565125,28850699:2116825,568825,115847 -k1,15493:24448300,28850699:-2116825 -) -(1,15493:24448300,28850699:2116825,452978,115847 -k1,15493:24448300,28850699:3277 -h1,15493:26561848,28850699:0,411205,112570 -) -k1,15493:26791354,28850699:226229 -k1,15493:27549079,28850699:226228 -k1,15493:30512091,28850699:226229 -k1,15493:32583029,28850699:0 -) -(1,15494:6630773,29692187:25952256,513147,7863 -g1,15493:7777653,29692187 -g1,15493:8995967,29692187 -g1,15493:10730049,29692187 -g1,15493:11387375,29692187 -k1,15494:32583029,29692187:18912380 -g1,15494:32583029,29692187 -) -v1,15496:6630773,30882653:0,393216,0 -(1,15500:6630773,31191458:25952256,702021,196608 -g1,15500:6630773,31191458 -g1,15500:6630773,31191458 -g1,15500:6434165,31191458 -(1,15500:6434165,31191458:0,702021,196608 -r1,15522:32779637,31191458:26345472,898629,196608 -k1,15500:6434165,31191458:-26345472 -) -(1,15500:6434165,31191458:26345472,702021,196608 -[1,15500:6630773,31191458:25952256,505413,0 -(1,15498:6630773,31090271:25952256,404226,101187 -(1,15497:6630773,31090271:0,0,0 -g1,15497:6630773,31090271 -g1,15497:6630773,31090271 -g1,15497:6303093,31090271 -(1,15497:6303093,31090271:0,0,0 -) -g1,15497:6630773,31090271 -) -g1,15498:6946919,31090271 -g1,15498:7263065,31090271 -g1,15498:10108377,31090271 -h1,15498:11056814,31090271:0,0,0 -k1,15498:32583030,31090271:21526216 -g1,15498:32583030,31090271 -) -] -) -g1,15500:32583029,31191458 -g1,15500:6630773,31191458 -g1,15500:6630773,31191458 -g1,15500:32583029,31191458 -g1,15500:32583029,31191458 -) -h1,15500:6630773,31388066:0,0,0 -(1,15505:6630773,32753842:25952256,505283,134348 -h1,15503:6630773,32753842:983040,0,0 -k1,15503:8538690,32753842:297042 -k1,15503:11342484,32753842:297042 -k1,15503:13821220,32753842:297042 -k1,15503:15598064,32753842:297041 -k1,15503:17709798,32753842:297042 -k1,15503:20187223,32753842:297042 -k1,15503:21232031,32753842:297042 -k1,15503:24200320,32753842:297042 -k1,15503:25964058,32753842:297042 -k1,15503:28531266,32753842:297041 -k1,15503:29184168,32753842:297042 -k1,15503:32051532,32753842:297042 -k1,15503:32583029,32753842:0 -) -(1,15505:6630773,33595330:25952256,505283,134348 -k1,15503:8905933,33595330:230437 -k1,15503:10958925,33595330:230436 -(1,15503:10958925,33595330:0,414482,115847 -r1,15522:11668903,33595330:709978,530329,115847 -k1,15503:10958925,33595330:-709978 -) -(1,15503:10958925,33595330:709978,414482,115847 -k1,15503:10958925,33595330:3277 -h1,15503:11665626,33595330:0,411205,112570 -) -k1,15503:11899340,33595330:230437 -k1,15503:14140422,33595330:230437 -k1,15503:16108873,33595330:230436 -k1,15503:19010557,33595330:230437 -k1,15503:19927156,33595330:230437 -k1,15503:20615689,33595330:230436 -k1,15503:21377623,33595330:230437 -k1,15503:23002665,33595330:230436 -k1,15503:23884530,33595330:230437 -k1,15503:27633595,33595330:230437 -k1,15503:29944144,33595330:230436 -k1,15503:31193666,33595330:230437 -k1,15503:32583029,33595330:0 -) -(1,15505:6630773,34436818:25952256,513147,134348 -k1,15503:8549610,34436818:180822 -k1,15503:11206382,34436818:180822 -k1,15504:11857098,34436818:180823 -k1,15504:12569417,34436818:180822 -k1,15504:16015898,34436818:180822 -k1,15504:16848148,34436818:180822 -k1,15504:18121456,34436818:180823 -k1,15504:20997774,34436818:180822 -(1,15504:20997774,34436818:0,452978,115847 -r1,15522:26280005,34436818:5282231,568825,115847 -k1,15504:20997774,34436818:-5282231 -) -(1,15504:20997774,34436818:5282231,452978,115847 -k1,15504:20997774,34436818:3277 -h1,15504:26276728,34436818:0,411205,112570 -) -k1,15504:26460827,34436818:180822 -k1,15504:27327811,34436818:180822 -k1,15504:27966731,34436818:180823 -k1,15504:30012052,34436818:180822 -k1,15505:32583029,34436818:0 -) -(1,15505:6630773,35278306:25952256,513147,134348 -k1,15504:7823747,35278306:173889 -k1,15504:11832146,35278306:173888 -k1,15504:15214678,35278306:173889 -k1,15504:17654147,35278306:173889 -k1,15504:19642728,35278306:173889 -k1,15504:20475908,35278306:173888 -k1,15504:21005657,35278306:173889 -k1,15504:24426200,35278306:173889 -k1,15504:26172298,35278306:173889 -k1,15504:28160878,35278306:173888 -k1,15504:29467229,35278306:173889 -k1,15504:31219225,35278306:173889 -k1,15504:32583029,35278306:0 -) -(1,15505:6630773,36119794:25952256,505283,126483 -k1,15504:7807800,36119794:157942 -k1,15504:11123266,36119794:157941 -k1,15504:14373852,36119794:157942 -k1,15504:16346485,36119794:157941 -k1,15504:18202465,36119794:157942 -k1,15504:20658755,36119794:157942 -k1,15504:21468124,36119794:157941 -k1,15504:26058921,36119794:157942 -k1,15504:26982978,36119794:157941 -k1,15504:31386342,36119794:157942 -k1,15504:32583029,36119794:0 -) -(1,15505:6630773,36961282:25952256,513147,134348 -k1,15504:10197314,36961282:163912 -k1,15504:11012655,36961282:163913 -(1,15504:11012655,36961282:0,414482,115847 -r1,15522:11370921,36961282:358266,530329,115847 -k1,15504:11012655,36961282:-358266 -) -(1,15504:11012655,36961282:358266,414482,115847 -k1,15504:11012655,36961282:3277 -h1,15504:11367644,36961282:0,411205,112570 -) -k1,15504:11534833,36961282:163912 -k1,15504:12890191,36961282:163913 -(1,15504:12890191,36961282:0,414482,115847 -r1,15522:13248457,36961282:358266,530329,115847 -k1,15504:12890191,36961282:-358266 -) -(1,15504:12890191,36961282:358266,414482,115847 -k1,15504:12890191,36961282:3277 -h1,15504:13245180,36961282:0,411205,112570 -) -k1,15504:13412369,36961282:163912 -k1,15504:14567842,36961282:163913 -k1,15504:17351883,36961282:163912 -k1,15504:19823974,36961282:163913 -k1,15504:20647178,36961282:163912 -k1,15504:22824357,36961282:163913 -k1,15504:24144979,36961282:163912 -k1,15504:24991777,36961282:163913 -k1,15504:26328128,36961282:163912 -k1,15504:28117334,36961282:163913 -k1,15504:31252648,36961282:163912 -k1,15504:32583029,36961282:0 -) -(1,15505:6630773,37802770:25952256,513147,138281 -k1,15504:7827155,37802770:177297 -k1,15504:9819143,37802770:177296 -k1,15504:10655732,37802770:177297 -k1,15504:11852113,37802770:177296 -$1,15504:11852113,37802770 -$1,15504:12354774,37802770 -k1,15504:12532071,37802770:177297 -k1,15504:13900813,37802770:177297 -$1,15504:13900813,37802770 -$1,15504:14452626,37802770 -k1,15504:14629922,37802770:177296 -k1,15504:18377620,37802770:177297 -k1,15504:20457426,37802770:177296 -k1,15504:21626283,37802770:177297 -k1,15504:24358829,37802770:177297 -k1,15504:26024448,37802770:177296 -k1,15504:27070097,37802770:177297 -k1,15504:29571955,37802770:177296 -k1,15504:30768337,37802770:177297 -k1,15504:32583029,37802770:0 -) -(1,15505:6630773,38644258:25952256,505283,134348 -g1,15504:7481430,38644258 -g1,15504:10018328,38644258 -g1,15504:11236642,38644258 -k1,15505:32583030,38644258:19298388 -g1,15505:32583030,38644258 -) -v1,15507:6630773,39834724:0,393216,0 -(1,15513:6630773,41482177:25952256,2040669,196608 -g1,15513:6630773,41482177 -g1,15513:6630773,41482177 -g1,15513:6434165,41482177 -(1,15513:6434165,41482177:0,2040669,196608 -r1,15522:32779637,41482177:26345472,2237277,196608 -k1,15513:6434165,41482177:-26345472 -) -(1,15513:6434165,41482177:26345472,2040669,196608 -[1,15513:6630773,41482177:25952256,1844061,0 -(1,15509:6630773,40048634:25952256,410518,107478 -(1,15508:6630773,40048634:0,0,0 -g1,15508:6630773,40048634 -g1,15508:6630773,40048634 -g1,15508:6303093,40048634 -(1,15508:6303093,40048634:0,0,0 -) -g1,15508:6630773,40048634 -) -k1,15509:6630773,40048634:0 -g1,15509:12637541,40048634 -g1,15509:14850561,40048634 -g1,15509:16115144,40048634 -h1,15509:16431290,40048634:0,0,0 -k1,15509:32583029,40048634:16151739 -g1,15509:32583029,40048634 -) -(1,15510:6630773,40714812:25952256,404226,107478 -h1,15510:6630773,40714812:0,0,0 -g1,15510:6946919,40714812 -g1,15510:7263065,40714812 -g1,15510:11372959,40714812 -h1,15510:11689105,40714812:0,0,0 -k1,15510:32583029,40714812:20893924 -g1,15510:32583029,40714812 -) -(1,15511:6630773,41380990:25952256,404226,101187 -h1,15511:6630773,41380990:0,0,0 -g1,15511:6946919,41380990 -g1,15511:7263065,41380990 -g1,15511:12321397,41380990 -g1,15511:12953689,41380990 -g1,15511:13902127,41380990 -g1,15511:14534419,41380990 -g1,15511:15166711,41380990 -h1,15511:15799003,41380990:0,0,0 -k1,15511:32583029,41380990:16784026 -g1,15511:32583029,41380990 -) -] -) -g1,15513:32583029,41482177 -g1,15513:6630773,41482177 -g1,15513:6630773,41482177 -g1,15513:32583029,41482177 -g1,15513:32583029,41482177 -) -h1,15513:6630773,41678785:0,0,0 -] -(1,15522:32583029,45706769:0,0,0 -g1,15522:32583029,45706769 -) -) -] -(1,15522:6630773,47279633:25952256,0,0 -h1,15522:6630773,47279633:25952256,0,0 -) -] -(1,15522:4262630,4025873:0,0,0 -[1,15522:-473656,4025873:0,0,0 -(1,15522:-473656,-710413:0,0,0 -(1,15522:-473656,-710413:0,0,0 -g1,15522:-473656,-710413 -) -g1,15522:-473656,-710413 -) -] -) -] -!28245 -}300 -Input:2486:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2487:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2488:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2489:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2490:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2491:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2492:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2493:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2494:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!840 -{301 -[1,15569:4262630,47279633:28320399,43253760,0 -(1,15569:4262630,4025873:0,0,0 -[1,15569:-473656,4025873:0,0,0 -(1,15569:-473656,-710413:0,0,0 -(1,15569:-473656,-644877:0,0,0 -k1,15569:-473656,-644877:-65536 -) -(1,15569:-473656,4736287:0,0,0 -k1,15569:-473656,4736287:5209943 -) -g1,15569:-473656,-710413 -) -] -) -[1,15569:6630773,47279633:25952256,43253760,0 -[1,15569:6630773,4812305:25952256,786432,0 -(1,15569:6630773,4812305:25952256,513147,134348 -(1,15569:6630773,4812305:25952256,513147,134348 -g1,15569:3078558,4812305 -[1,15569:3078558,4812305:0,0,0 -(1,15569:3078558,2439708:0,1703936,0 -k1,15569:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,15569:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,15569:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,15569:3078558,4812305:0,0,0 -(1,15569:3078558,2439708:0,1703936,0 -g1,15569:29030814,2439708 -g1,15569:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,15569:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,15569:37855564,2439708:1179648,16384,0 -) -) -k1,15569:3078556,2439708:-34777008 -) -] -[1,15569:3078558,4812305:0,0,0 -(1,15569:3078558,49800853:0,16384,2228224 -k1,15569:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,15569:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,15569:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,15569:3078558,4812305:0,0,0 -(1,15569:3078558,49800853:0,16384,2228224 -g1,15569:29030814,49800853 -g1,15569:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,15569:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,15569:37855564,49800853:1179648,16384,0 -) -) -k1,15569:3078556,49800853:-34777008 -) -] -g1,15569:6630773,4812305 -k1,15569:25712890,4812305:17886740 -g1,15569:29057847,4812305 -g1,15569:29873114,4812305 -) -) -] -[1,15569:6630773,45706769:25952256,40108032,0 -(1,15569:6630773,45706769:25952256,40108032,0 -(1,15569:6630773,45706769:0,0,0 -g1,15569:6630773,45706769 -) -[1,15569:6630773,45706769:25952256,40108032,0 -(1,15516:6630773,16109226:25952256,10510489,0 -k1,15516:12599879,16109226:5969106 -h1,15515:12599879,16109226:0,0,0 -(1,15515:12599879,16109226:14014044,10510489,0 -(1,15515:12599879,16109226:14014019,10510515,0 -(1,15515:12599879,16109226:14014019,10510515,0 -(1,15515:12599879,16109226:0,10510515,0 -(1,15515:12599879,16109226:0,14208860,0 -(1,15515:12599879,16109226:18945146,14208860,0 -) -k1,15515:12599879,16109226:-18945146 -) -) -g1,15515:26613898,16109226 -) -) -) -g1,15516:26613923,16109226 -k1,15516:32583029,16109226:5969106 -) -(1,15523:6630773,16950714:25952256,513147,126483 -h1,15522:6630773,16950714:983040,0,0 -k1,15522:8980413,16950714:169913 -(1,15522:8980413,16950714:0,452978,115847 -r1,15569:11097238,16950714:2116825,568825,115847 -k1,15522:8980413,16950714:-2116825 -) -(1,15522:8980413,16950714:2116825,452978,115847 -k1,15522:8980413,16950714:3277 -h1,15522:11093961,16950714:0,411205,112570 -) -k1,15522:11267152,16950714:169914 -k1,15522:14717797,16950714:169913 -k1,15522:15547002,16950714:169913 -k1,15522:16736000,16950714:169913 -k1,15522:18808424,16950714:169914 -k1,15522:20651471,16950714:169913 -k1,15522:21177244,16950714:169913 -k1,15522:24109500,16950714:169913 -k1,15522:25514768,16950714:169914 -k1,15522:27127128,16950714:169913 -(1,15522:27127128,16950714:0,452978,115847 -r1,15569:32409359,16950714:5282231,568825,115847 -k1,15522:27127128,16950714:-5282231 -) -(1,15522:27127128,16950714:5282231,452978,115847 -k1,15522:27127128,16950714:3277 -h1,15522:32406082,16950714:0,411205,112570 -) -k1,15522:32583029,16950714:0 -) -(1,15523:6630773,17792202:25952256,513147,134348 -k1,15522:7291984,17792202:191318 -k1,15522:10101465,17792202:191318 -k1,15522:11623165,17792202:191319 -k1,15522:13597718,17792202:191318 -k1,15522:15648292,17792202:191318 -k1,15522:16858695,17792202:191318 -k1,15522:19514822,17792202:191318 -k1,15522:22230588,17792202:191319 -k1,15522:23769326,17792202:191318 -k1,15522:24492141,17792202:191318 -k1,15522:27864577,17792202:191318 -k1,15522:28707324,17792202:191319 -k1,15522:29917727,17792202:191318 -k1,15522:31923737,17792202:191318 -k1,15522:32583029,17792202:0 -) -(1,15523:6630773,18633690:25952256,505283,134348 -k1,15522:7840437,18633690:190579 -k1,15522:9953186,18633690:190578 -k1,15522:12668212,18633690:190579 -k1,15522:14379881,18633690:190578 -k1,15522:15198295,18633690:190579 -k1,15522:17090844,18633690:190579 -k1,15522:19410031,18633690:190578 -k1,15522:20058707,18633690:190579 -k1,15522:21776929,18633690:190578 -k1,15522:22323368,18633690:190579 -k1,15522:25368695,18633690:190579 -k1,15522:26242158,18633690:190578 -k1,15522:29041070,18633690:190579 -k1,15522:29883076,18633690:190578 -k1,15522:31092740,18633690:190579 -k1,15523:32583029,18633690:0 -) -(1,15523:6630773,19475178:25952256,505283,134348 -k1,15522:8114180,19475178:236257 -k1,15522:9697858,19475178:236258 -k1,15522:12299965,19475178:236257 -k1,15522:13555307,19475178:236257 -k1,15522:15606256,19475178:236257 -k1,15522:16777057,19475178:236258 -k1,15522:18869294,19475178:236257 -k1,15522:22940062,19475178:236257 -k1,15522:23859204,19475178:236257 -k1,15522:27201869,19475178:236258 -k1,15522:28893025,19475178:236257 -k1,15522:30975431,19475178:236257 -k1,15522:32583029,19475178:0 -) -(1,15523:6630773,20316666:25952256,513147,134348 -k1,15522:7781176,20316666:158843 -k1,15522:9940832,20316666:158842 -k1,15522:10824503,20316666:158843 -k1,15522:12267852,20316666:158843 -k1,15522:16498447,20316666:158843 -k1,15522:17648849,20316666:158842 -k1,15522:20109972,20316666:158843 -k1,15522:21078185,20316666:158843 -k1,15522:22309197,20316666:158843 -k1,15522:23127331,20316666:158842 -k1,15522:24305259,20316666:158843 -k1,15522:26036311,20316666:158843 -k1,15522:28914898,20316666:158843 -k1,15522:30276981,20316666:158842 -k1,15522:30967321,20316666:158843 -k1,15522:31482024,20316666:158843 -k1,15522:32583029,20316666:0 -) -(1,15523:6630773,21158154:25952256,513147,134348 -k1,15522:8105005,21158154:238878 -k1,15522:9011038,21158154:238877 -(1,15522:9011038,21158154:0,452978,115847 -r1,15569:11127863,21158154:2116825,568825,115847 -k1,15522:9011038,21158154:-2116825 -) -(1,15522:9011038,21158154:2116825,452978,115847 -k1,15522:9011038,21158154:3277 -h1,15522:11124586,21158154:0,411205,112570 -) -k1,15522:11540411,21158154:238878 -k1,15522:13013332,21158154:238878 -k1,15522:14859807,21158154:238877 -k1,15522:16290130,21158154:238878 -k1,15522:19344435,21158154:238878 -k1,15522:23373914,21158154:238877 -k1,15522:24745254,21158154:238878 -k1,15522:26269948,21158154:238878 -k1,15522:28800619,21158154:238877 -k1,15522:30058582,21158154:238878 -k1,15522:32583029,21158154:0 -) -(1,15523:6630773,21999642:25952256,513147,134348 -g1,15522:8177422,21999642 -g1,15522:9028079,21999642 -g1,15522:9975074,21999642 -g1,15522:13440617,21999642 -g1,15522:14267681,21999642 -g1,15522:17295443,21999642 -g1,15522:18513757,21999642 -g1,15522:20978566,21999642 -g1,15522:21709292,21999642 -g1,15522:22559949,21999642 -g1,15522:24888443,21999642 -g1,15522:26851246,21999642 -g1,15522:28742615,21999642 -k1,15523:32583029,21999642:422056 -g1,15523:32583029,21999642 -) -(1,15525:6630773,22841130:25952256,513147,134348 -h1,15524:6630773,22841130:983040,0,0 -k1,15524:8874258,22841130:306896 -k1,15524:10579036,22841130:306895 -k1,15524:11820475,22841130:306896 -k1,15524:13146456,22841130:306896 -k1,15524:15345376,22841130:306896 -k1,15524:17136661,22841130:306895 -k1,15524:18102849,22841130:306896 -k1,15524:19428830,22841130:306896 -k1,15524:22260172,22841130:306895 -k1,15524:23914488,22841130:306896 -k1,15524:24872812,22841130:306896 -k1,15524:25927474,22841130:306896 -k1,15524:29327013,22841130:306895 -k1,15524:30395437,22841130:306896 -k1,15524:32583029,22841130:0 -) -(1,15525:6630773,23682618:25952256,513147,134348 -k1,15524:9385485,23682618:146379 -k1,15524:10183292,23682618:146379 -k1,15524:11348756,23682618:146379 -k1,15524:12567305,23682618:146380 -k1,15524:13905129,23682618:146379 -k1,15524:16406217,23682618:146379 -k1,15524:17571681,23682618:146379 -k1,15524:19983640,23682618:146379 -k1,15524:22738352,23682618:146379 -k1,15524:24452352,23682618:146379 -k1,15524:25617817,23682618:146380 -k1,15524:28087447,23682618:146379 -k1,15524:28893118,23682618:146379 -k1,15524:30058582,23682618:146379 -k1,15524:32583029,23682618:0 -) -(1,15525:6630773,24524106:25952256,355205,7863 -k1,15525:32583028,24524106:24431164 -g1,15525:32583028,24524106 -) -v1,15527:6630773,25506238:0,393216,0 -(1,15534:6630773,27819869:25952256,2706847,196608 -g1,15534:6630773,27819869 -g1,15534:6630773,27819869 -g1,15534:6434165,27819869 -(1,15534:6434165,27819869:0,2706847,196608 -r1,15569:32779637,27819869:26345472,2903455,196608 -k1,15534:6434165,27819869:-26345472 -) -(1,15534:6434165,27819869:26345472,2706847,196608 -[1,15534:6630773,27819869:25952256,2510239,0 -(1,15529:6630773,25720148:25952256,410518,107478 -(1,15528:6630773,25720148:0,0,0 -g1,15528:6630773,25720148 -g1,15528:6630773,25720148 -g1,15528:6303093,25720148 -(1,15528:6303093,25720148:0,0,0 -) -g1,15528:6630773,25720148 -) -k1,15529:6630773,25720148:0 -k1,15529:6630773,25720148:0 -h1,15529:12321395,25720148:0,0,0 -k1,15529:32583029,25720148:20261634 -g1,15529:32583029,25720148 -) -(1,15530:6630773,26386326:25952256,410518,107478 -h1,15530:6630773,26386326:0,0,0 -g1,15530:6946919,26386326 -g1,15530:7263065,26386326 -g1,15530:10108377,26386326 -g1,15530:10740669,26386326 -g1,15530:12953689,26386326 -g1,15530:14850563,26386326 -g1,15530:15482855,26386326 -g1,15530:17695875,26386326 -g1,15530:18328167,26386326 -g1,15530:18960459,26386326 -g1,15530:20225042,26386326 -h1,15530:20541188,26386326:0,0,0 -k1,15530:32583029,26386326:12041841 -g1,15530:32583029,26386326 -) -(1,15531:6630773,27052504:25952256,404226,101187 -h1,15531:6630773,27052504:0,0,0 -g1,15531:6946919,27052504 -g1,15531:7263065,27052504 -g1,15531:13269833,27052504 -g1,15531:13902125,27052504 -g1,15531:15482854,27052504 -h1,15531:15799000,27052504:0,0,0 -k1,15531:32583028,27052504:16784028 -g1,15531:32583028,27052504 -) -(1,15532:6630773,27718682:25952256,404226,101187 -h1,15532:6630773,27718682:0,0,0 -g1,15532:6946919,27718682 -g1,15532:7263065,27718682 -g1,15532:15482853,27718682 -g1,15532:16115145,27718682 -g1,15532:21489622,27718682 -g1,15532:22121914,27718682 -g1,15532:23702644,27718682 -h1,15532:25915664,27718682:0,0,0 -k1,15532:32583029,27718682:6667365 -g1,15532:32583029,27718682 -) -] -) -g1,15534:32583029,27819869 -g1,15534:6630773,27819869 -g1,15534:6630773,27819869 -g1,15534:32583029,27819869 -g1,15534:32583029,27819869 -) -h1,15534:6630773,28016477:0,0,0 -(1,15538:6630773,29173918:25952256,513147,126483 -h1,15537:6630773,29173918:983040,0,0 -k1,15537:9309798,29173918:207662 -k1,15537:10385811,29173918:207661 -k1,15537:12920656,29173918:207662 -k1,15537:14220803,29173918:207662 -k1,15537:14784324,29173918:207661 -k1,15537:18152787,29173918:207662 -k1,15537:19011877,29173918:207662 -k1,15537:19575398,29173918:207661 -k1,15537:21985070,29173918:207662 -k1,15537:23963515,29173918:207662 -k1,15537:24857338,29173918:207661 -k1,15537:27093995,29173918:207662 -k1,15537:28170009,29173918:207662 -k1,15537:29575013,29173918:207661 -k1,15537:31021961,29173918:207662 -k1,15538:32583029,29173918:0 -) -(1,15538:6630773,30015406:25952256,513147,134348 -g1,15537:8663044,30015406 -g1,15537:9513701,30015406 -g1,15537:10732015,30015406 -g1,15537:12711857,30015406 -g1,15537:13570378,30015406 -g1,15537:14788692,30015406 -(1,15537:14788692,30015406:0,452978,115847 -r1,15569:16905517,30015406:2116825,568825,115847 -k1,15537:14788692,30015406:-2116825 -) -(1,15537:14788692,30015406:2116825,452978,115847 -k1,15537:14788692,30015406:3277 -h1,15537:16902240,30015406:0,411205,112570 -) -k1,15538:32583029,30015406:15503842 -g1,15538:32583029,30015406 -) -v1,15540:6630773,30997538:0,393216,0 -(1,15544:6630773,31306343:25952256,702021,196608 -g1,15544:6630773,31306343 -g1,15544:6630773,31306343 -g1,15544:6434165,31306343 -(1,15544:6434165,31306343:0,702021,196608 -r1,15569:32779637,31306343:26345472,898629,196608 -k1,15544:6434165,31306343:-26345472 -) -(1,15544:6434165,31306343:26345472,702021,196608 -[1,15544:6630773,31306343:25952256,505413,0 -(1,15542:6630773,31205156:25952256,404226,101187 -(1,15541:6630773,31205156:0,0,0 -g1,15541:6630773,31205156 -g1,15541:6630773,31205156 -g1,15541:6303093,31205156 -(1,15541:6303093,31205156:0,0,0 -) -g1,15541:6630773,31205156 -) -g1,15542:6946919,31205156 -g1,15542:7263065,31205156 -g1,15542:15482853,31205156 -g1,15542:16115145,31205156 -g1,15542:21805768,31205156 -g1,15542:22438060,31205156 -g1,15542:24018790,31205156 -h1,15542:25915664,31205156:0,0,0 -k1,15542:32583029,31205156:6667365 -g1,15542:32583029,31205156 -) -] -) -g1,15544:32583029,31306343 -g1,15544:6630773,31306343 -g1,15544:6630773,31306343 -g1,15544:32583029,31306343 -g1,15544:32583029,31306343 -) -h1,15544:6630773,31502951:0,0,0 -(1,15548:6630773,32660392:25952256,513147,134348 -h1,15547:6630773,32660392:983040,0,0 -k1,15547:8479241,32660392:237593 -k1,15547:9735919,32660392:237593 -k1,15547:11340593,32660392:237593 -k1,15547:12237478,32660392:237593 -k1,15547:14551252,32660392:237593 -k1,15547:15657197,32660392:237593 -k1,15547:18065343,32660392:237594 -k1,15547:20609148,32660392:237593 -k1,15547:22355380,32660392:237593 -k1,15547:25451653,32660392:237593 -k1,15547:28247772,32660392:237593 -k1,15547:29504450,32660392:237593 -k1,15547:31923737,32660392:237593 -k1,15547:32583029,32660392:0 -) -(1,15548:6630773,33501880:25952256,513147,11795 -k1,15547:8820734,33501880:201599 -k1,15547:9975882,33501880:201599 -k1,15547:11707746,33501880:201598 -k1,15547:14236528,33501880:201599 -k1,15547:15089555,33501880:201599 -k1,15547:16383639,33501880:201599 -k1,15547:16941097,33501880:201598 -k1,15547:21979908,33501880:201599 -k1,15547:22867669,33501880:201599 -k1,15547:26159291,33501880:201599 -k1,15547:26976927,33501880:201598 -k1,15547:29457213,33501880:201599 -h1,15547:31572060,33501880:0,0,0 -k1,15547:31773659,33501880:201599 -k1,15547:32583029,33501880:0 -) -(1,15548:6630773,34343368:25952256,513147,134348 -k1,15547:8334885,34343368:205959 -h1,15547:9530262,34343368:0,0,0 -k1,15547:9909892,34343368:205960 -k1,15547:11360380,34343368:205959 -k1,15547:16203012,34343368:205960 -(1,15547:16203012,34343368:0,452978,115847 -r1,15569:18319837,34343368:2116825,568825,115847 -k1,15547:16203012,34343368:-2116825 -) -(1,15547:16203012,34343368:2116825,452978,115847 -k1,15547:16203012,34343368:3277 -h1,15547:18316560,34343368:0,411205,112570 -) -k1,15547:18525796,34343368:205959 -k1,15547:19923201,34343368:205960 -(1,15547:19923201,34343368:0,452978,115847 -r1,15569:22040026,34343368:2116825,568825,115847 -k1,15547:19923201,34343368:-2116825 -) -(1,15547:19923201,34343368:2116825,452978,115847 -k1,15547:19923201,34343368:3277 -h1,15547:22036749,34343368:0,411205,112570 -) -k1,15547:22245985,34343368:205959 -k1,15547:23267213,34343368:205960 -k1,15547:26479308,34343368:205959 -k1,15547:28366922,34343368:205960 -k1,15547:29776122,34343368:205959 -k1,15548:32583029,34343368:0 -) -(1,15548:6630773,35184856:25952256,505283,134348 -g1,15547:9073299,35184856 -g1,15547:11831054,35184856 -g1,15547:13049368,35184856 -g1,15547:15868726,35184856 -g1,15547:18078600,35184856 -g1,15547:20483116,35184856 -g1,15547:21368507,35184856 -k1,15548:32583029,35184856:9226160 -g1,15548:32583029,35184856 -) -v1,15553:6630773,36342298:0,393216,0 -(1,15563:6630773,41386619:25952256,5437537,616038 -g1,15563:6630773,41386619 -(1,15563:6630773,41386619:25952256,5437537,616038 -(1,15563:6630773,42002657:25952256,6053575,0 -[1,15563:6630773,42002657:25952256,6053575,0 -(1,15563:6630773,41976443:25952256,6001147,0 -r1,15569:6656987,41976443:26214,6001147,0 -[1,15563:6656987,41976443:25899828,6001147,0 -(1,15563:6656987,41386619:25899828,4821499,0 -[1,15563:7246811,41386619:24720180,4821499,0 -(1,15554:7246811,37652494:24720180,1087374,134348 -k1,15553:8674362,37652494:217848 -k1,15553:10261257,37652494:217848 -k1,15553:12027720,37652494:217847 -k1,15553:13264653,37652494:217848 -k1,15553:15325373,37652494:217848 -k1,15553:16074718,37652494:217848 -k1,15553:17990604,37652494:217848 -k1,15553:19227536,37652494:217847 -k1,15553:20751517,37652494:217848 -k1,15553:22453755,37652494:217848 -k1,15553:23203100,37652494:217848 -k1,15553:25280204,37652494:217848 -k1,15553:26940498,37652494:217847 -k1,15553:28177431,37652494:217848 -k1,15553:30636610,37652494:217848 -k1,15553:31966991,37652494:0 -) -(1,15554:7246811,38493982:24720180,505283,134348 -g1,15553:7989333,38493982 -g1,15553:8646659,38493982 -g1,15553:9864973,38493982 -g1,15553:11717675,38493982 -g1,15553:12603066,38493982 -g1,15553:14500333,38493982 -g1,15553:16881256,38493982 -g1,15553:18777212,38493982 -g1,15553:20629914,38493982 -g1,15553:22839788,38493982 -g1,15553:23725179,38493982 -g1,15553:25739100,38493982 -g1,15553:27332280,38493982 -(1,15553:27332280,38493982:0,452978,115847 -r1,15569:29449105,38493982:2116825,568825,115847 -k1,15553:27332280,38493982:-2116825 -) -(1,15553:27332280,38493982:2116825,452978,115847 -k1,15553:27332280,38493982:3277 -h1,15553:29445828,38493982:0,411205,112570 -) -k1,15554:31966991,38493982:2190861 -g1,15554:31966991,38493982 -) -v1,15556:7246811,39684448:0,393216,0 -(1,15561:7246811,40665723:24720180,1374491,196608 -g1,15561:7246811,40665723 -g1,15561:7246811,40665723 -g1,15561:7050203,40665723 -(1,15561:7050203,40665723:0,1374491,196608 -r1,15569:32163599,40665723:25113396,1571099,196608 -k1,15561:7050203,40665723:-25113396 -) -(1,15561:7050203,40665723:25113396,1374491,196608 -[1,15561:7246811,40665723:24720180,1177883,0 -(1,15558:7246811,39898358:24720180,410518,107478 -(1,15557:7246811,39898358:0,0,0 -g1,15557:7246811,39898358 -g1,15557:7246811,39898358 -g1,15557:6919131,39898358 -(1,15557:6919131,39898358:0,0,0 -) -g1,15557:7246811,39898358 -) -k1,15558:7246811,39898358:0 -g1,15558:13253579,39898358 -g1,15558:15466599,39898358 -g1,15558:16731182,39898358 -g1,15558:17363474,39898358 -g1,15558:21473368,39898358 -h1,15558:21789514,39898358:0,0,0 -k1,15558:31966991,39898358:10177477 -g1,15558:31966991,39898358 -) -(1,15559:7246811,40564536:24720180,404226,101187 -h1,15559:7246811,40564536:0,0,0 -g1,15559:7562957,40564536 -g1,15559:7879103,40564536 -g1,15559:16098891,40564536 -g1,15559:16731183,40564536 -g1,15559:18944204,40564536 -h1,15559:19892641,40564536:0,0,0 -k1,15559:31966991,40564536:12074350 -g1,15559:31966991,40564536 -) -] -) -g1,15561:31966991,40665723 -g1,15561:7246811,40665723 -g1,15561:7246811,40665723 -g1,15561:31966991,40665723 -g1,15561:31966991,40665723 -) -h1,15561:7246811,40862331:0,0,0 -] -) -] -r1,15569:32583029,41976443:26214,6001147,0 -) -] -) -) -g1,15563:32583029,41386619 -) -h1,15563:6630773,42002657:0,0,0 -(1,15565:6630773,43630577:25952256,505283,11795 -(1,15565:6630773,43630577:2809528,485622,11795 -g1,15565:6630773,43630577 -g1,15565:9440301,43630577 -) -g1,15565:11452256,43630577 -g1,15565:12877008,43630577 -g1,15565:14649101,43630577 -k1,15565:32583029,43630577:16012412 -g1,15565:32583029,43630577 -) -(1,15568:6630773,44865281:25952256,513147,134348 -k1,15567:10158171,44865281:291886 -(1,15567:10158171,44865281:0,452978,115847 -r1,15569:12274996,44865281:2116825,568825,115847 -k1,15567:10158171,44865281:-2116825 -) -(1,15567:10158171,44865281:2116825,452978,115847 -k1,15567:10158171,44865281:3277 -h1,15567:12271719,44865281:0,411205,112570 -) -k1,15567:12566883,44865281:291887 -k1,15567:13390266,44865281:291886 -k1,15567:15195379,44865281:291887 -k1,15567:16138693,44865281:291886 -k1,15567:17365123,44865281:291887 -k1,15567:18676094,44865281:291886 -k1,15567:21524540,44865281:291887 -k1,15567:22475718,44865281:291886 -k1,15567:24282142,44865281:291887 -k1,15567:26318596,44865281:291886 -k1,15567:27629568,44865281:291887 -k1,15567:29347517,44865281:291886 -k1,15568:32583029,44865281:0 -) -(1,15568:6630773,45706769:25952256,505283,126483 -(1,15567:6630773,45706769:0,452978,115847 -r1,15569:8747598,45706769:2116825,568825,115847 -k1,15567:6630773,45706769:-2116825 -) -(1,15567:6630773,45706769:2116825,452978,115847 -k1,15567:6630773,45706769:3277 -h1,15567:8744321,45706769:0,411205,112570 -) -k1,15567:8924937,45706769:177339 -k1,15567:9633774,45706769:177340 -k1,15567:11324339,45706769:177339 -k1,15567:12153107,45706769:177340 -k1,15567:13264989,45706769:177339 -k1,15567:14461413,45706769:177339 -k1,15567:15822989,45706769:177340 -k1,15567:18018182,45706769:177339 -k1,15567:19660907,45706769:177340 -k1,15567:23449280,45706769:177339 -k1,15567:24730901,45706769:177339 -k1,15567:25656007,45706769:177340 -k1,15567:28038633,45706769:177339 -k1,15567:30071953,45706769:177340 -k1,15567:30605152,45706769:177339 -k1,15567:32583029,45706769:0 -) -] -(1,15569:32583029,45706769:0,0,0 -g1,15569:32583029,45706769 -) -) -] -(1,15569:6630773,47279633:25952256,0,0 -h1,15569:6630773,47279633:25952256,0,0 -) -] -(1,15569:4262630,4025873:0,0,0 -[1,15569:-473656,4025873:0,0,0 -(1,15569:-473656,-710413:0,0,0 -(1,15569:-473656,-710413:0,0,0 -g1,15569:-473656,-710413 -) -g1,15569:-473656,-710413 -) -] -) -] -!21609 -}301 -Input:2495:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2496:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2497:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2498:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2499:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!472 -{302 -[1,15628:4262630,47279633:28320399,43253760,0 -(1,15628:4262630,4025873:0,0,0 -[1,15628:-473656,4025873:0,0,0 -(1,15628:-473656,-710413:0,0,0 -(1,15628:-473656,-644877:0,0,0 -k1,15628:-473656,-644877:-65536 -) -(1,15628:-473656,4736287:0,0,0 -k1,15628:-473656,4736287:5209943 -) -g1,15628:-473656,-710413 -) -] -) -[1,15628:6630773,47279633:25952256,43253760,0 -[1,15628:6630773,4812305:25952256,786432,0 -(1,15628:6630773,4812305:25952256,505283,11795 -(1,15628:6630773,4812305:25952256,505283,11795 -g1,15628:3078558,4812305 -[1,15628:3078558,4812305:0,0,0 -(1,15628:3078558,2439708:0,1703936,0 -k1,15628:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,15628:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,15628:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,15628:3078558,4812305:0,0,0 -(1,15628:3078558,2439708:0,1703936,0 -g1,15628:29030814,2439708 -g1,15628:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,15628:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,15628:37855564,2439708:1179648,16384,0 -) -) -k1,15628:3078556,2439708:-34777008 -) -] -[1,15628:3078558,4812305:0,0,0 -(1,15628:3078558,49800853:0,16384,2228224 -k1,15628:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,15628:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,15628:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,15628:3078558,4812305:0,0,0 -(1,15628:3078558,49800853:0,16384,2228224 -g1,15628:29030814,49800853 -g1,15628:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,15628:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,15628:37855564,49800853:1179648,16384,0 -) -) -k1,15628:3078556,49800853:-34777008 -) -] -g1,15628:6630773,4812305 -g1,15628:6630773,4812305 -g1,15628:8724648,4812305 -k1,15628:31387652,4812305:22663004 -) -) -] -[1,15628:6630773,45706769:25952256,40108032,0 -(1,15628:6630773,45706769:25952256,40108032,0 -(1,15628:6630773,45706769:0,0,0 -g1,15628:6630773,45706769 -) -[1,15628:6630773,45706769:25952256,40108032,0 -(1,15568:6630773,6254097:25952256,513147,134348 -k1,15567:7536434,6254097:222776 -k1,15567:8115069,6254097:222775 -k1,15567:11033341,6254097:222776 -k1,15567:11942278,6254097:222775 -k1,15567:12935757,6254097:222776 -k1,15567:16404530,6254097:222775 -k1,15567:17823993,6254097:222776 -k1,15567:20312348,6254097:222775 -k1,15567:21066621,6254097:222776 -k1,15567:21940824,6254097:222775 -k1,15567:24951502,6254097:222776 -k1,15567:27358592,6254097:222775 -k1,15567:29696215,6254097:222776 -k1,15567:31773659,6254097:222775 -k1,15567:32583029,6254097:0 -) -(1,15568:6630773,7095585:25952256,513147,134348 -g1,15567:7849087,7095585 -g1,15567:9863008,7095585 -g1,15567:11253682,7095585 -g1,15567:13633294,7095585 -g1,15567:14851608,7095585 -g1,15567:17866919,7095585 -g1,15567:18752310,7095585 -k1,15568:32583029,7095585:11460937 -g1,15568:32583029,7095585 -) -(1,15570:6630773,7937073:25952256,513147,134348 -h1,15569:6630773,7937073:983040,0,0 -k1,15569:9563564,7937073:166516 -k1,15569:12662816,7937073:166516 -k1,15569:15011025,7937073:166515 -k1,15569:17466058,7937073:166516 -k1,15569:18500926,7937073:166516 -k1,15569:19771724,7937073:166516 -k1,15569:21446223,7937073:166516 -k1,15569:22631824,7937073:166516 -k1,15569:25063919,7937073:166515 -k1,15569:28439078,7937073:166516 -k1,15569:30449777,7937073:166516 -k1,15569:31563944,7937073:166516 -k1,15570:32583029,7937073:0 -) -(1,15570:6630773,8778561:25952256,452978,115847 -(1,15569:6630773,8778561:0,452978,115847 -r1,15628:8747598,8778561:2116825,568825,115847 -k1,15569:6630773,8778561:-2116825 -) -(1,15569:6630773,8778561:2116825,452978,115847 -k1,15569:6630773,8778561:3277 -h1,15569:8744321,8778561:0,411205,112570 -) -k1,15570:32583028,8778561:23661760 -g1,15570:32583028,8778561 -) -v1,15572:6630773,9969027:0,393216,0 -(1,15578:6630773,11616480:25952256,2040669,196608 -g1,15578:6630773,11616480 -g1,15578:6630773,11616480 -g1,15578:6434165,11616480 -(1,15578:6434165,11616480:0,2040669,196608 -r1,15628:32779637,11616480:26345472,2237277,196608 -k1,15578:6434165,11616480:-26345472 -) -(1,15578:6434165,11616480:26345472,2040669,196608 -[1,15578:6630773,11616480:25952256,1844061,0 -(1,15574:6630773,10182937:25952256,410518,107478 -(1,15573:6630773,10182937:0,0,0 -g1,15573:6630773,10182937 -g1,15573:6630773,10182937 -g1,15573:6303093,10182937 -(1,15573:6303093,10182937:0,0,0 -) -g1,15573:6630773,10182937 -) -k1,15574:6630773,10182937:0 -g1,15574:12637541,10182937 -g1,15574:14850561,10182937 -g1,15574:16115144,10182937 -h1,15574:16431290,10182937:0,0,0 -k1,15574:32583029,10182937:16151739 -g1,15574:32583029,10182937 -) -(1,15575:6630773,10849115:25952256,404226,107478 -h1,15575:6630773,10849115:0,0,0 -g1,15575:6946919,10849115 -g1,15575:7263065,10849115 -g1,15575:11372959,10849115 -h1,15575:11689105,10849115:0,0,0 -k1,15575:32583029,10849115:20893924 -g1,15575:32583029,10849115 -) -(1,15576:6630773,11515293:25952256,404226,101187 -h1,15576:6630773,11515293:0,0,0 -g1,15576:6946919,11515293 -g1,15576:7263065,11515293 -g1,15576:15482853,11515293 -g1,15576:16115145,11515293 -g1,15576:18012020,11515293 -g1,15576:18960457,11515293 -g1,15576:19592749,11515293 -g1,15576:20857332,11515293 -g1,15576:22121915,11515293 -h1,15576:23386497,11515293:0,0,0 -k1,15576:32583029,11515293:9196532 -g1,15576:32583029,11515293 -) -] -) -g1,15578:32583029,11616480 -g1,15578:6630773,11616480 -g1,15578:6630773,11616480 -g1,15578:32583029,11616480 -g1,15578:32583029,11616480 -) -h1,15578:6630773,11813088:0,0,0 -(1,15582:6630773,13178864:25952256,513147,126483 -h1,15581:6630773,13178864:983040,0,0 -k1,15581:9082180,13178864:271680 -k1,15581:11619440,13178864:271680 -k1,15581:14005967,13178864:271680 -k1,15581:15269207,13178864:271680 -k1,15581:18749529,13178864:271679 -k1,15581:19782737,13178864:271680 -k1,15581:22749913,13178864:271680 -(1,15581:22749913,13178864:0,452978,115847 -r1,15628:28032144,13178864:5282231,568825,115847 -k1,15581:22749913,13178864:-5282231 -) -(1,15581:22749913,13178864:5282231,452978,115847 -k1,15581:22749913,13178864:3277 -h1,15581:28028867,13178864:0,411205,112570 -) -k1,15581:28303824,13178864:271680 -k1,15581:30143125,13178864:271680 -k1,15581:32583029,13178864:0 -) -(1,15582:6630773,14020352:25952256,505283,134348 -k1,15581:8021816,14020352:194356 -k1,15581:11288500,14020352:194356 -k1,15581:13688143,14020352:194356 -k1,15581:14533926,14020352:194355 -k1,15581:15516680,14020352:194356 -k1,15581:18991768,14020352:194356 -(1,15581:18991768,14020352:0,414482,115847 -r1,15628:19350034,14020352:358266,530329,115847 -k1,15581:18991768,14020352:-358266 -) -(1,15581:18991768,14020352:358266,414482,115847 -k1,15581:18991768,14020352:3277 -h1,15581:19346757,14020352:0,411205,112570 -) -k1,15581:19544390,14020352:194356 -k1,15581:23313080,14020352:194356 -k1,15581:24526521,14020352:194356 -k1,15581:26600449,14020352:194355 -k1,15581:29280586,14020352:194356 -k1,15581:30989479,14020352:194356 -k1,15581:31835263,14020352:194356 -k1,15581:32583029,14020352:0 -) -(1,15582:6630773,14861840:25952256,513147,134348 -k1,15581:9964947,14861840:181237 -k1,15581:14636710,14861840:181236 -k1,15581:15890116,14861840:181237 -k1,15581:17090438,14861840:181237 -k1,15581:19193846,14861840:181237 -k1,15581:21860863,14861840:181236 -k1,15581:22701392,14861840:181237 -k1,15581:24397166,14861840:181237 -k1,15581:27787046,14861840:181237 -k1,15581:29305216,14861840:181236 -k1,15581:30234219,14861840:181237 -k1,15581:32583029,14861840:0 -) -(1,15582:6630773,15703328:25952256,513147,134348 -g1,15581:9592345,15703328 -g1,15581:13153571,15703328 -g1,15581:14162170,15703328 -g1,15581:15380484,15703328 -g1,15581:17360326,15703328 -g1,15581:18218847,15703328 -g1,15581:19437161,15703328 -k1,15582:32583029,15703328:11582834 -g1,15582:32583029,15703328 -) -v1,15584:6630773,16893794:0,393216,0 -(1,15588:6630773,17202599:25952256,702021,196608 -g1,15588:6630773,17202599 -g1,15588:6630773,17202599 -g1,15588:6434165,17202599 -(1,15588:6434165,17202599:0,702021,196608 -r1,15628:32779637,17202599:26345472,898629,196608 -k1,15588:6434165,17202599:-26345472 -) -(1,15588:6434165,17202599:26345472,702021,196608 -[1,15588:6630773,17202599:25952256,505413,0 -(1,15586:6630773,17101412:25952256,404226,101187 -(1,15585:6630773,17101412:0,0,0 -g1,15585:6630773,17101412 -g1,15585:6630773,17101412 -g1,15585:6303093,17101412 -(1,15585:6303093,17101412:0,0,0 -) -g1,15585:6630773,17101412 -) -g1,15586:6946919,17101412 -g1,15586:7263065,17101412 -g1,15586:15482853,17101412 -g1,15586:16115145,17101412 -g1,15586:21173477,17101412 -g1,15586:21805769,17101412 -h1,15586:22754206,17101412:0,0,0 -k1,15586:32583029,17101412:9828823 -g1,15586:32583029,17101412 -) -] -) -g1,15588:32583029,17202599 -g1,15588:6630773,17202599 -g1,15588:6630773,17202599 -g1,15588:32583029,17202599 -g1,15588:32583029,17202599 -) -h1,15588:6630773,17399207:0,0,0 -(1,15592:6630773,18764983:25952256,513147,134348 -h1,15591:6630773,18764983:983040,0,0 -k1,15591:8722769,18764983:155407 -k1,15591:9982458,18764983:155407 -k1,15591:11072407,18764983:155406 -k1,15591:12412050,18764983:155407 -k1,15591:14411640,18764983:155407 -k1,15591:17673454,18764983:155407 -k1,15591:18444899,18764983:155407 -k1,15591:20983849,18764983:155406 -k1,15591:21790684,18764983:155407 -k1,15591:22965176,18764983:155407 -k1,15591:25302277,18764983:155407 -k1,15591:26124840,18764983:155407 -(1,15591:26124840,18764983:0,452978,115847 -r1,15628:28241665,18764983:2116825,568825,115847 -k1,15591:26124840,18764983:-2116825 -) -(1,15591:26124840,18764983:2116825,452978,115847 -k1,15591:26124840,18764983:3277 -h1,15591:28238388,18764983:0,411205,112570 -) -k1,15591:28397071,18764983:155406 -k1,15591:29314006,18764983:155407 -k1,15591:31896867,18764983:155407 -k1,15591:32583029,18764983:0 -) -(1,15592:6630773,19606471:25952256,513147,134348 -k1,15591:10235807,19606471:202405 -k1,15591:11610652,19606471:202406 -k1,15591:14121235,19606471:202405 -k1,15591:14982933,19606471:202406 -k1,15591:16912867,19606471:202405 -k1,15591:19302209,19606471:202406 -k1,15591:20132449,19606471:202405 -k1,15591:21353940,19606471:202406 -k1,15591:22940465,19606471:202405 -k1,15591:25804288,19606471:202406 -k1,15591:26875045,19606471:202405 -k1,15591:28169936,19606471:202406 -k1,15591:29143044,19606471:202405 -k1,15591:32583029,19606471:0 -) -(1,15592:6630773,20447959:25952256,505283,11795 -g1,15591:7481430,20447959 -g1,15591:9704411,20447959 -g1,15591:10259500,20447959 -g1,15591:12314053,20447959 -k1,15592:32583029,20447959:18393336 -g1,15592:32583029,20447959 -) -v1,15594:6630773,21638425:0,393216,0 -(1,15601:6630773,23952056:25952256,2706847,196608 -g1,15601:6630773,23952056 -g1,15601:6630773,23952056 -g1,15601:6434165,23952056 -(1,15601:6434165,23952056:0,2706847,196608 -r1,15628:32779637,23952056:26345472,2903455,196608 -k1,15601:6434165,23952056:-26345472 -) -(1,15601:6434165,23952056:26345472,2706847,196608 -[1,15601:6630773,23952056:25952256,2510239,0 -(1,15596:6630773,21852335:25952256,410518,107478 -(1,15595:6630773,21852335:0,0,0 -g1,15595:6630773,21852335 -g1,15595:6630773,21852335 -g1,15595:6303093,21852335 -(1,15595:6303093,21852335:0,0,0 -) -g1,15595:6630773,21852335 -) -k1,15596:6630773,21852335:0 -g1,15596:12637541,21852335 -g1,15596:14850561,21852335 -g1,15596:16115144,21852335 -h1,15596:16431290,21852335:0,0,0 -k1,15596:32583029,21852335:16151739 -g1,15596:32583029,21852335 -) -(1,15597:6630773,22518513:25952256,404226,107478 -h1,15597:6630773,22518513:0,0,0 -g1,15597:6946919,22518513 -g1,15597:7263065,22518513 -g1,15597:11372959,22518513 -h1,15597:11689105,22518513:0,0,0 -k1,15597:32583029,22518513:20893924 -g1,15597:32583029,22518513 -) -(1,15598:6630773,23184691:25952256,404226,101187 -h1,15598:6630773,23184691:0,0,0 -g1,15598:6946919,23184691 -g1,15598:7263065,23184691 -g1,15598:15482853,23184691 -g1,15598:16115145,23184691 -g1,15598:18012020,23184691 -g1,15598:18960457,23184691 -g1,15598:19592749,23184691 -g1,15598:20857332,23184691 -g1,15598:22121915,23184691 -k1,15598:22121915,23184691:0 -h1,15598:23386498,23184691:0,0,0 -k1,15598:32583029,23184691:9196531 -g1,15598:32583029,23184691 -) -(1,15599:6630773,23850869:25952256,404226,101187 -h1,15599:6630773,23850869:0,0,0 -g1,15599:6946919,23850869 -g1,15599:7263065,23850869 -g1,15599:7579211,23850869 -g1,15599:7895357,23850869 -g1,15599:8211503,23850869 -g1,15599:8527649,23850869 -g1,15599:8843795,23850869 -g1,15599:9159941,23850869 -g1,15599:9476087,23850869 -g1,15599:9792233,23850869 -g1,15599:10108379,23850869 -g1,15599:10424525,23850869 -g1,15599:10740671,23850869 -g1,15599:11056817,23850869 -g1,15599:11372963,23850869 -g1,15599:11689109,23850869 -g1,15599:12005255,23850869 -g1,15599:12321401,23850869 -g1,15599:12637547,23850869 -g1,15599:12953693,23850869 -g1,15599:13269839,23850869 -g1,15599:15482859,23850869 -g1,15599:16115151,23850869 -g1,15599:18644318,23850869 -g1,15599:24651087,23850869 -g1,15599:26547962,23850869 -h1,15599:28444836,23850869:0,0,0 -k1,15599:32583029,23850869:4138193 -g1,15599:32583029,23850869 -) -] -) -g1,15601:32583029,23952056 -g1,15601:6630773,23952056 -g1,15601:6630773,23952056 -g1,15601:32583029,23952056 -g1,15601:32583029,23952056 -) -h1,15601:6630773,24148664:0,0,0 -(1,15604:6630773,35248977:25952256,10510489,0 -k1,15604:12599879,35248977:5969106 -h1,15603:12599879,35248977:0,0,0 -(1,15603:12599879,35248977:14014044,10510489,0 -(1,15603:12599879,35248977:14014019,10510515,0 -(1,15603:12599879,35248977:14014019,10510515,0 -(1,15603:12599879,35248977:0,10510515,0 -(1,15603:12599879,35248977:0,14208860,0 -(1,15603:12599879,35248977:18945146,14208860,0 -) -k1,15603:12599879,35248977:-18945146 -) -) -g1,15603:26613898,35248977 -) -) -) -g1,15604:26613923,35248977 -k1,15604:32583029,35248977:5969106 -) -(1,15611:6630773,36090465:25952256,513147,134348 -h1,15610:6630773,36090465:983040,0,0 -k1,15610:10324251,36090465:175505 -k1,15610:12765991,36090465:175506 -k1,15610:15701872,36090465:175505 -k1,15610:18108879,36090465:175506 -k1,15610:21310181,36090465:175505 -k1,15610:22433337,36090465:175505 -k1,15610:23627928,36090465:175506 -k1,15610:26993070,36090465:175505 -k1,15610:30563996,36090465:175506 -k1,15610:31398793,36090465:175505 -k1,15610:32583029,36090465:0 -) -(1,15611:6630773,36931953:25952256,513147,134348 -k1,15610:8837673,36931953:189046 -k1,15610:10068741,36931953:189046 -k1,15610:13092874,36931953:189046 -k1,15610:13933348,36931953:189046 -k1,15610:16417465,36931953:189046 -k1,15610:17790747,36931953:189046 -k1,15610:19823977,36931953:189047 -k1,15610:20699185,36931953:189046 -k1,15610:24705048,36931953:189046 -k1,15610:25841745,36931953:189046 -k1,15610:27420154,36931953:189046 -k1,15610:30393169,36931953:189046 -k1,15610:31268377,36931953:189046 -k1,15611:32583029,36931953:0 -) -(1,15611:6630773,37773441:25952256,513147,115847 -g1,15610:8212156,37773441 -g1,15610:11425386,37773441 -g1,15610:12492967,37773441 -g1,15610:13796478,37773441 -g1,15610:15088192,37773441 -g1,15610:17982917,37773441 -(1,15610:17982917,37773441:0,452978,115847 -r1,15628:21154877,37773441:3171960,568825,115847 -k1,15610:17982917,37773441:-3171960 -) -(1,15610:17982917,37773441:3171960,452978,115847 -k1,15610:17982917,37773441:3277 -h1,15610:21151600,37773441:0,411205,112570 -) -k1,15611:32583029,37773441:11254482 -g1,15611:32583029,37773441 -) -v1,15613:6630773,38963907:0,393216,0 -(1,15619:6630773,40611360:25952256,2040669,196608 -g1,15619:6630773,40611360 -g1,15619:6630773,40611360 -g1,15619:6434165,40611360 -(1,15619:6434165,40611360:0,2040669,196608 -r1,15628:32779637,40611360:26345472,2237277,196608 -k1,15619:6434165,40611360:-26345472 -) -(1,15619:6434165,40611360:26345472,2040669,196608 -[1,15619:6630773,40611360:25952256,1844061,0 -(1,15615:6630773,39177817:25952256,410518,107478 -(1,15614:6630773,39177817:0,0,0 -g1,15614:6630773,39177817 -g1,15614:6630773,39177817 -g1,15614:6303093,39177817 -(1,15614:6303093,39177817:0,0,0 -) -g1,15614:6630773,39177817 -) -k1,15615:6630773,39177817:0 -g1,15615:12637541,39177817 -g1,15615:14850561,39177817 -g1,15615:15482853,39177817 -g1,15615:16115145,39177817 -g1,15615:18960456,39177817 -h1,15615:19276602,39177817:0,0,0 -k1,15615:32583029,39177817:13306427 -g1,15615:32583029,39177817 -) -(1,15616:6630773,39843995:25952256,404226,107478 -h1,15616:6630773,39843995:0,0,0 -g1,15616:6946919,39843995 -g1,15616:7263065,39843995 -g1,15616:11372959,39843995 -h1,15616:11689105,39843995:0,0,0 -k1,15616:32583029,39843995:20893924 -g1,15616:32583029,39843995 -) -(1,15617:6630773,40510173:25952256,404226,101187 -h1,15617:6630773,40510173:0,0,0 -g1,15617:6946919,40510173 -g1,15617:7263065,40510173 -g1,15617:15482853,40510173 -g1,15617:16115145,40510173 -h1,15617:18644310,40510173:0,0,0 -k1,15617:32583029,40510173:13938719 -g1,15617:32583029,40510173 -) -] -) -g1,15619:32583029,40611360 -g1,15619:6630773,40611360 -g1,15619:6630773,40611360 -g1,15619:32583029,40611360 -g1,15619:32583029,40611360 -) -h1,15619:6630773,40807968:0,0,0 -] -(1,15628:32583029,45706769:0,0,0 -g1,15628:32583029,45706769 -) -) -] -(1,15628:6630773,47279633:25952256,0,0 -h1,15628:6630773,47279633:25952256,0,0 -) -] -(1,15628:4262630,4025873:0,0,0 -[1,15628:-473656,4025873:0,0,0 -(1,15628:-473656,-710413:0,0,0 -(1,15628:-473656,-710413:0,0,0 -g1,15628:-473656,-710413 -) -g1,15628:-473656,-710413 -) -] -) -] -!17906 -}302 -Input:2500:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2501:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2502:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2503:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2504:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2505:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2506:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2507:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2508:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2509:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2510:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2511:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2512:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2513:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2514:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2515:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2516:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1576 -{303 -[1,15663:4262630,47279633:28320399,43253760,0 -(1,15663:4262630,4025873:0,0,0 -[1,15663:-473656,4025873:0,0,0 -(1,15663:-473656,-710413:0,0,0 -(1,15663:-473656,-644877:0,0,0 -k1,15663:-473656,-644877:-65536 -) -(1,15663:-473656,4736287:0,0,0 -k1,15663:-473656,4736287:5209943 -) -g1,15663:-473656,-710413 -) -] -) -[1,15663:6630773,47279633:25952256,43253760,0 -[1,15663:6630773,4812305:25952256,786432,0 -(1,15663:6630773,4812305:25952256,513147,134348 -(1,15663:6630773,4812305:25952256,513147,134348 -g1,15663:3078558,4812305 -[1,15663:3078558,4812305:0,0,0 -(1,15663:3078558,2439708:0,1703936,0 -k1,15663:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,15663:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,15663:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,15663:3078558,4812305:0,0,0 -(1,15663:3078558,2439708:0,1703936,0 -g1,15663:29030814,2439708 -g1,15663:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,15663:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,15663:37855564,2439708:1179648,16384,0 -) -) -k1,15663:3078556,2439708:-34777008 -) -] -[1,15663:3078558,4812305:0,0,0 -(1,15663:3078558,49800853:0,16384,2228224 -k1,15663:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,15663:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,15663:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,15663:3078558,4812305:0,0,0 -(1,15663:3078558,49800853:0,16384,2228224 -g1,15663:29030814,49800853 -g1,15663:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,15663:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,15663:37855564,49800853:1179648,16384,0 -) -) -k1,15663:3078556,49800853:-34777008 -) -] -g1,15663:6630773,4812305 -k1,15663:25712890,4812305:17886740 -g1,15663:29057847,4812305 -g1,15663:29873114,4812305 -) -) -] -[1,15663:6630773,45706769:25952256,40108032,0 -(1,15663:6630773,45706769:25952256,40108032,0 -(1,15663:6630773,45706769:0,0,0 -g1,15663:6630773,45706769 -) -[1,15663:6630773,45706769:25952256,40108032,0 -(1,15622:6630773,16109226:25952256,10510489,0 -k1,15622:12599879,16109226:5969106 -h1,15621:12599879,16109226:0,0,0 -(1,15621:12599879,16109226:14014044,10510489,0 -(1,15621:12599879,16109226:14014019,10510515,0 -(1,15621:12599879,16109226:14014019,10510515,0 -(1,15621:12599879,16109226:0,10510515,0 -(1,15621:12599879,16109226:0,14208860,0 -(1,15621:12599879,16109226:18945146,14208860,0 -) -k1,15621:12599879,16109226:-18945146 -) -) -g1,15621:26613898,16109226 -) -) -) -g1,15622:26613923,16109226 -k1,15622:32583029,16109226:5969106 -) -(1,15629:6630773,16950714:25952256,505283,134348 -h1,15628:6630773,16950714:983040,0,0 -k1,15628:9078781,16950714:422946 -k1,15628:12457401,16950714:422946 -k1,15628:13748698,16950714:422945 -k1,15628:15275926,16950714:422946 -k1,15628:16791357,16950714:422946 -(1,15628:16791357,16950714:0,452978,115847 -r1,15663:19611606,16950714:2820249,568825,115847 -k1,15628:16791357,16950714:-2820249 -) -(1,15628:16791357,16950714:2820249,452978,115847 -k1,15628:16791357,16950714:3277 -h1,15628:19608329,16950714:0,411205,112570 -) -k1,15628:20208222,16950714:422946 -k1,15628:21282596,16950714:422946 -k1,15628:24043210,16950714:422945 -k1,15628:27120364,16950714:422946 -k1,15628:30888923,16950714:422946 -k1,15629:32583029,16950714:0 -) -(1,15629:6630773,17792202:25952256,513147,115847 -k1,15628:9239839,17792202:583348 -k1,15628:12569147,17792202:583349 -k1,15628:13877323,17792202:583348 -k1,15628:15443712,17792202:583349 -k1,15628:16895412,17792202:583348 -k1,15628:18583042,17792202:583348 -k1,15628:20258876,17792202:583349 -(1,15628:20258876,17792202:0,452978,115847 -r1,15663:22727413,17792202:2468537,568825,115847 -k1,15628:20258876,17792202:-2468537 -) -(1,15628:20258876,17792202:2468537,452978,115847 -k1,15628:20258876,17792202:3277 -h1,15628:22724136,17792202:0,411205,112570 -) -k1,15628:23484431,17792202:583348 -k1,15628:25259224,17792202:583348 -k1,15628:26790224,17792202:583349 -k1,15628:30189654,17792202:583348 -k1,15629:32583029,17792202:0 -) -(1,15629:6630773,18633690:25952256,513147,134348 -k1,15628:8169558,18633690:513802 -k1,15628:10418754,18633690:513803 -k1,15628:14224429,18633690:513802 -k1,15628:15397523,18633690:513802 -k1,15628:19340825,18633690:513803 -k1,15628:20802278,18633690:513802 -k1,15628:29156807,18633690:513802 -k1,15628:32583029,18633690:0 -) -(1,15629:6630773,19475178:25952256,459977,115847 -k1,15628:8264691,19475178:529636 -k1,15628:9886812,19475178:529636 -(1,15628:9886812,19475178:0,459977,115847 -r1,15663:16575890,19475178:6689078,575824,115847 -k1,15628:9886812,19475178:-6689078 -) -(1,15628:9886812,19475178:6689078,459977,115847 -k1,15628:9886812,19475178:3277 -h1,15628:16572613,19475178:0,411205,112570 -) -k1,15628:17279196,19475178:529636 -(1,15628:17279196,19475178:0,452978,115847 -r1,15663:32409359,19475178:15130163,568825,115847 -k1,15628:17279196,19475178:-15130163 -) -(1,15628:17279196,19475178:15130163,452978,115847 -g1,15628:25371845,19475178 -g1,15628:26075269,19475178 -h1,15628:32406082,19475178:0,411205,112570 -) -k1,15629:32583029,19475178:0 -) -(1,15629:6630773,20316666:25952256,505283,122846 -(1,15628:6630773,20316666:0,452978,122846 -r1,15663:10506157,20316666:3875384,575824,122846 -k1,15628:6630773,20316666:-3875384 -) -(1,15628:6630773,20316666:3875384,452978,122846 -k1,15628:6630773,20316666:3277 -h1,15628:10502880,20316666:0,411205,112570 -) -k1,15628:10971629,20316666:291802 -k1,15628:11946316,20316666:291802 -(1,15628:11946316,20316666:0,452978,122846 -r1,15663:24614496,20316666:12668180,575824,122846 -k1,15628:11946316,20316666:-12668180 -) -(1,15628:11946316,20316666:12668180,452978,122846 -g1,15628:20038965,20316666 -g1,15628:20742389,20316666 -h1,15628:24611219,20316666:0,411205,112570 -) -k1,15628:25079968,20316666:291802 -k1,15628:26189658,20316666:291801 -k1,15628:28556985,20316666:291802 -k1,15628:30890889,20316666:291802 -k1,15628:32583029,20316666:0 -) -(1,15629:6630773,21158154:25952256,513147,7863 -g1,15628:7489294,21158154 -g1,15628:9385250,21158154 -g1,15628:12610276,21158154 -g1,15628:13913787,21158154 -g1,15628:14860782,21158154 -g1,15628:17037232,21158154 -g1,15628:18630412,21158154 -g1,15628:23641294,21158154 -g1,15628:27410924,21158154 -k1,15629:32583029,21158154:3095924 -g1,15629:32583029,21158154 -) -v1,15631:6630773,22205616:0,393216,0 -(1,15637:6630773,23859360:25952256,2046960,196608 -g1,15637:6630773,23859360 -g1,15637:6630773,23859360 -g1,15637:6434165,23859360 -(1,15637:6434165,23859360:0,2046960,196608 -r1,15663:32779637,23859360:26345472,2243568,196608 -k1,15637:6434165,23859360:-26345472 -) -(1,15637:6434165,23859360:26345472,2046960,196608 -[1,15637:6630773,23859360:25952256,1850352,0 -(1,15633:6630773,22419526:25952256,410518,107478 -(1,15632:6630773,22419526:0,0,0 -g1,15632:6630773,22419526 -g1,15632:6630773,22419526 -g1,15632:6303093,22419526 -(1,15632:6303093,22419526:0,0,0 -) -g1,15632:6630773,22419526 -) -k1,15633:6630773,22419526:0 -g1,15633:12637541,22419526 -g1,15633:14850561,22419526 -g1,15633:15482853,22419526 -g1,15633:16115145,22419526 -g1,15633:18328165,22419526 -h1,15633:18644311,22419526:0,0,0 -k1,15633:32583029,22419526:13938718 -g1,15633:32583029,22419526 -) -(1,15634:6630773,23085704:25952256,404226,107478 -h1,15634:6630773,23085704:0,0,0 -g1,15634:6946919,23085704 -g1,15634:7263065,23085704 -g1,15634:11372959,23085704 -h1,15634:11689105,23085704:0,0,0 -k1,15634:32583029,23085704:20893924 -g1,15634:32583029,23085704 -) -(1,15635:6630773,23751882:25952256,404226,107478 -h1,15635:6630773,23751882:0,0,0 -k1,15635:6914937,23751882:284164 -k1,15635:7199101,23751882:284164 -k1,15635:14754615,23751882:284163 -k1,15635:15354925,23751882:284164 -k1,15635:17852109,23751882:284164 -k1,15635:20033147,23751882:284164 -k1,15635:20633456,23751882:284163 -k1,15635:27872825,23751882:284164 -k1,15635:28473135,23751882:284164 -k1,15635:28473135,23751882:0 -h1,15635:32583029,23751882:0,0,0 -k1,15635:32583029,23751882:0 -k1,15635:32583029,23751882:0 -) -] -) -g1,15637:32583029,23859360 -g1,15637:6630773,23859360 -g1,15637:6630773,23859360 -g1,15637:32583029,23859360 -g1,15637:32583029,23859360 -) -h1,15637:6630773,24055968:0,0,0 -(1,15640:6630773,35013277:25952256,10510489,0 -k1,15640:12599879,35013277:5969106 -h1,15639:12599879,35013277:0,0,0 -(1,15639:12599879,35013277:14014044,10510489,0 -(1,15639:12599879,35013277:14014019,10510515,0 -(1,15639:12599879,35013277:14014019,10510515,0 -(1,15639:12599879,35013277:0,10510515,0 -(1,15639:12599879,35013277:0,14208860,0 -(1,15639:12599879,35013277:18945146,14208860,0 -) -k1,15639:12599879,35013277:-18945146 -) -) -g1,15639:26613898,35013277 -) -) -) -g1,15640:26613923,35013277 -k1,15640:32583029,35013277:5969106 -) -(1,15647:6630773,35854765:25952256,513147,138281 -h1,15646:6630773,35854765:983040,0,0 -k1,15646:9413029,35854765:320068 -k1,15646:11113940,35854765:320067 -k1,15646:13444653,35854765:320068 -k1,15646:16350115,35854765:320067 -k1,15646:17321611,35854765:320068 -$1,15646:17321611,35854765 -$1,15646:17824272,35854765 -k1,15646:18144340,35854765:320068 -k1,15646:19147292,35854765:320067 -$1,15646:19147292,35854765 -$1,15646:19699105,35854765 -k1,15646:20192843,35854765:320068 -k1,15646:21697147,35854765:320068 -k1,15646:23861397,35854765:320067 -k1,15646:25173025,35854765:320068 -k1,15646:27843213,35854765:320067 -k1,15646:29557232,35854765:320068 -k1,15647:32583029,35854765:0 -) -(1,15647:6630773,36696253:25952256,513147,115847 -(1,15646:6630773,36696253:0,452978,115847 -r1,15663:10857869,36696253:4227096,568825,115847 -k1,15646:6630773,36696253:-4227096 -) -(1,15646:6630773,36696253:4227096,452978,115847 -k1,15646:6630773,36696253:3277 -h1,15646:10854592,36696253:0,411205,112570 -) -k1,15646:11120484,36696253:262615 -k1,15646:12065984,36696253:262615 -(1,15646:12065984,36696253:0,452978,115847 -r1,15663:18403351,36696253:6337367,568825,115847 -k1,15646:12065984,36696253:-6337367 -) -(1,15646:12065984,36696253:6337367,452978,115847 -k1,15646:12065984,36696253:3277 -h1,15646:18400074,36696253:0,411205,112570 -) -k1,15646:18839637,36696253:262616 -k1,15646:19730087,36696253:262615 -k1,15646:21011787,36696253:262615 -k1,15646:22641483,36696253:262615 -k1,15646:23563390,36696253:262615 -k1,15646:25425083,36696253:262615 -k1,15646:26871935,36696253:262616 -k1,15646:28978733,36696253:262615 -k1,15646:30232908,36696253:262615 -k1,15646:32583029,36696253:0 -) -(1,15647:6630773,37537741:25952256,513147,115847 -g1,15646:8223953,37537741 -g1,15646:11118678,37537741 -(1,15646:11118678,37537741:0,452978,115847 -r1,15663:15345774,37537741:4227096,568825,115847 -k1,15646:11118678,37537741:-4227096 -) -(1,15646:11118678,37537741:4227096,452978,115847 -k1,15646:11118678,37537741:3277 -h1,15646:15342497,37537741:0,411205,112570 -) -k1,15647:32583028,37537741:17063584 -g1,15647:32583028,37537741 -) -v1,15649:6630773,38585204:0,393216,0 -(1,15653:6630773,38900301:25952256,708313,196608 -g1,15653:6630773,38900301 -g1,15653:6630773,38900301 -g1,15653:6434165,38900301 -(1,15653:6434165,38900301:0,708313,196608 -r1,15663:32779637,38900301:26345472,904921,196608 -k1,15653:6434165,38900301:-26345472 -) -(1,15653:6434165,38900301:26345472,708313,196608 -[1,15653:6630773,38900301:25952256,511705,0 -(1,15651:6630773,38799114:25952256,410518,101187 -(1,15650:6630773,38799114:0,0,0 -g1,15650:6630773,38799114 -g1,15650:6630773,38799114 -g1,15650:6303093,38799114 -(1,15650:6303093,38799114:0,0,0 -) -g1,15650:6630773,38799114 -) -g1,15651:7579210,38799114 -g1,15651:8843793,38799114 -g1,15651:11689104,38799114 -g1,15651:13585978,38799114 -g1,15651:16115144,38799114 -g1,15651:17379727,38799114 -g1,15651:19276601,38799114 -g1,15651:20541184,38799114 -k1,15651:20541184,38799114:0 -h1,15651:22121912,38799114:0,0,0 -k1,15651:32583029,38799114:10461117 -g1,15651:32583029,38799114 -) -] -) -g1,15653:32583029,38900301 -g1,15653:6630773,38900301 -g1,15653:6630773,38900301 -g1,15653:32583029,38900301 -g1,15653:32583029,38900301 -) -h1,15653:6630773,39096909:0,0,0 -(1,15657:6630773,40319681:25952256,513147,126483 -h1,15656:6630773,40319681:983040,0,0 -g1,15656:8282935,40319681 -g1,15656:9013661,40319681 -g1,15656:10498706,40319681 -g1,15656:13327895,40319681 -g1,15656:14178552,40319681 -g1,15656:15470266,40319681 -g1,15656:19644909,40319681 -g1,15656:22869935,40319681 -g1,15656:24535860,40319681 -g1,15656:25682740,40319681 -g1,15656:27996816,40319681 -g1,15656:29387490,40319681 -k1,15657:32583029,40319681:1177685 -g1,15657:32583029,40319681 -) -(1,15658:6630773,41947601:25952256,513147,11795 -(1,15658:6630773,41947601:2809528,485622,11795 -g1,15658:6630773,41947601 -g1,15658:9440301,41947601 -) -g1,15658:13960974,41947601 -k1,15658:32583029,41947601:16635003 -g1,15658:32583029,41947601 -) -(1,15661:6630773,43182305:25952256,513147,126483 -k1,15660:8173387,43182305:345927 -k1,15660:10784893,43182305:345926 -k1,15660:13033330,43182305:345927 -k1,15660:14892483,43182305:345927 -k1,15660:15999937,43182305:345926 -k1,15660:17364949,43182305:345927 -(1,15660:17364949,43182305:0,414482,115847 -r1,15663:17723215,43182305:358266,530329,115847 -k1,15660:17364949,43182305:-358266 -) -(1,15660:17364949,43182305:358266,414482,115847 -k1,15660:17364949,43182305:3277 -h1,15660:17719938,43182305:0,411205,112570 -) -k1,15660:18069141,43182305:345926 -k1,15660:19606513,43182305:345927 -(1,15660:19606513,43182305:0,414482,115847 -r1,15663:19964779,43182305:358266,530329,115847 -k1,15660:19606513,43182305:-358266 -) -(1,15660:19606513,43182305:358266,414482,115847 -k1,15660:19606513,43182305:3277 -h1,15660:19961502,43182305:0,411205,112570 -) -k1,15660:20310706,43182305:345927 -k1,15660:24004866,43182305:345926 -(1,15660:24004866,43182305:0,452978,115847 -r1,15663:31045657,43182305:7040791,568825,115847 -k1,15660:24004866,43182305:-7040791 -) -(1,15660:24004866,43182305:7040791,452978,115847 -k1,15660:24004866,43182305:3277 -h1,15660:31042380,43182305:0,411205,112570 -) -k1,15660:31391584,43182305:345927 -k1,15661:32583029,43182305:0 -) -(1,15661:6630773,44023793:25952256,513147,134348 -(1,15660:6630773,44023793:0,452978,115847 -r1,15663:13671564,44023793:7040791,568825,115847 -k1,15660:6630773,44023793:-7040791 -) -(1,15660:6630773,44023793:7040791,452978,115847 -k1,15660:6630773,44023793:3277 -h1,15660:13668287,44023793:0,411205,112570 -) -k1,15660:14013138,44023793:167904 -k1,15660:16229042,44023793:167904 -k1,15660:16752806,44023793:167904 -k1,15660:21275576,44023793:167903 -k1,15660:26280692,44023793:167904 -k1,15660:29144092,44023793:167904 -k1,15660:29998158,44023793:167904 -k1,15660:30936765,44023793:167904 -k1,15661:32583029,44023793:0 -) -(1,15661:6630773,44865281:25952256,513147,126483 -k1,15660:8430192,44865281:160364 -k1,15660:9241983,44865281:160363 -(1,15660:9241983,44865281:0,414482,115847 -r1,15663:11007096,44865281:1765113,530329,115847 -k1,15660:9241983,44865281:-1765113 -) -(1,15660:9241983,44865281:1765113,414482,115847 -k1,15660:9241983,44865281:3277 -h1,15660:11003819,44865281:0,411205,112570 -) -k1,15660:11167460,44865281:160364 -k1,15660:12721775,44865281:160364 -k1,15660:15147718,44865281:160363 -k1,15660:18450533,44865281:160364 -k1,15660:19179093,44865281:160363 -k1,15660:22399988,44865281:160364 -k1,15660:23576815,44865281:160364 -k1,15660:28955155,44865281:160363 -k1,15660:29743354,44865281:160364 -k1,15660:32583029,44865281:0 -) -(1,15661:6630773,45706769:25952256,513147,126483 -g1,15660:8484786,45706769 -g1,15660:9675575,45706769 -g1,15660:13312823,45706769 -g1,15660:17418653,45706769 -g1,15660:19190091,45706769 -g1,15660:22415117,45706769 -g1,15660:23561997,45706769 -(1,15660:23561997,45706769:0,452978,122846 -r1,15663:25327110,45706769:1765113,575824,122846 -k1,15660:23561997,45706769:-1765113 -) -(1,15660:23561997,45706769:1765113,452978,122846 -k1,15660:23561997,45706769:3277 -h1,15660:25323833,45706769:0,411205,112570 -) -g1,15660:25700009,45706769 -(1,15660:25700009,45706769:0,414482,115847 -r1,15663:27113410,45706769:1413401,530329,115847 -k1,15660:25700009,45706769:-1413401 -) -(1,15660:25700009,45706769:1413401,414482,115847 -k1,15660:25700009,45706769:3277 -h1,15660:27110133,45706769:0,411205,112570 -) -g1,15660:27312639,45706769 -g1,15660:28703313,45706769 -(1,15660:28703313,45706769:0,414482,115847 -r1,15663:31171850,45706769:2468537,530329,115847 -k1,15660:28703313,45706769:-2468537 -) -(1,15660:28703313,45706769:2468537,414482,115847 -k1,15660:28703313,45706769:3277 -h1,15660:31168573,45706769:0,411205,112570 -) -k1,15661:32583029,45706769:1237509 -g1,15661:32583029,45706769 -) -] -(1,15663:32583029,45706769:0,0,0 -g1,15663:32583029,45706769 -) -) -] -(1,15663:6630773,47279633:25952256,0,0 -h1,15663:6630773,47279633:25952256,0,0 -) -] -(1,15663:4262630,4025873:0,0,0 -[1,15663:-473656,4025873:0,0,0 -(1,15663:-473656,-710413:0,0,0 -(1,15663:-473656,-710413:0,0,0 -g1,15663:-473656,-710413 -) -g1,15663:-473656,-710413 -) -] -) -] -!17530 -}303 -Input:2517:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2518:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2519:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2520:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2521:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2522:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2523:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2524:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2525:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2526:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2527:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2528:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2529:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1208 -{304 -[1,15735:4262630,47279633:28320399,43253760,0 -(1,15735:4262630,4025873:0,0,0 -[1,15735:-473656,4025873:0,0,0 -(1,15735:-473656,-710413:0,0,0 -(1,15735:-473656,-644877:0,0,0 -k1,15735:-473656,-644877:-65536 -) -(1,15735:-473656,4736287:0,0,0 -k1,15735:-473656,4736287:5209943 -) -g1,15735:-473656,-710413 -) -] -) -[1,15735:6630773,47279633:25952256,43253760,0 -[1,15735:6630773,4812305:25952256,786432,0 -(1,15735:6630773,4812305:25952256,505283,11795 -(1,15735:6630773,4812305:25952256,505283,11795 -g1,15735:3078558,4812305 -[1,15735:3078558,4812305:0,0,0 -(1,15735:3078558,2439708:0,1703936,0 -k1,15735:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,15735:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,15735:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,15735:3078558,4812305:0,0,0 -(1,15735:3078558,2439708:0,1703936,0 -g1,15735:29030814,2439708 -g1,15735:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,15735:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,15735:37855564,2439708:1179648,16384,0 -) -) -k1,15735:3078556,2439708:-34777008 -) -] -[1,15735:3078558,4812305:0,0,0 -(1,15735:3078558,49800853:0,16384,2228224 -k1,15735:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,15735:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,15735:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,15735:3078558,4812305:0,0,0 -(1,15735:3078558,49800853:0,16384,2228224 -g1,15735:29030814,49800853 -g1,15735:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,15735:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,15735:37855564,49800853:1179648,16384,0 -) -) -k1,15735:3078556,49800853:-34777008 -) -] -g1,15735:6630773,4812305 -g1,15735:6630773,4812305 -g1,15735:8724648,4812305 -k1,15735:31387652,4812305:22663004 -) -) -] -[1,15735:6630773,45706769:25952256,40108032,0 -(1,15735:6630773,45706769:25952256,40108032,0 -(1,15735:6630773,45706769:0,0,0 -g1,15735:6630773,45706769 -) -[1,15735:6630773,45706769:25952256,40108032,0 -v1,15663:6630773,6254097:0,393216,0 -(1,15664:6630773,9379779:25952256,3518898,616038 -g1,15664:6630773,9379779 -(1,15664:6630773,9379779:25952256,3518898,616038 -(1,15664:6630773,9995817:25952256,4134936,0 -[1,15664:6630773,9995817:25952256,4134936,0 -(1,15664:6630773,9969603:25952256,4082508,0 -r1,15735:6656987,9969603:26214,4082508,0 -[1,15664:6656987,9969603:25899828,4082508,0 -(1,15664:6656987,9379779:25899828,2902860,0 -[1,15664:7246811,9379779:24720180,2902860,0 -(1,15664:7246811,7562455:24720180,1085536,298548 -(1,15663:7246811,7562455:0,1085536,298548 -r1,15735:8753226,7562455:1506415,1384084,298548 -k1,15663:7246811,7562455:-1506415 -) -(1,15663:7246811,7562455:1506415,1085536,298548 -) -k1,15663:9193799,7562455:440573 -k1,15663:11861285,7562455:440573 -k1,15663:12953286,7562455:440573 -k1,15663:14412944,7562455:440573 -k1,15663:16831394,7562455:440573 -k1,15663:20297764,7562455:440573 -k1,15663:21405493,7562455:440573 -k1,15663:22434579,7562455:440573 -k1,15663:23894237,7562455:440573 -k1,15663:26072825,7562455:440573 -k1,15663:27172690,7562455:440573 -k1,15663:28632348,7562455:440573 -k1,15663:30975431,7562455:440573 -k1,15664:31966991,7562455:0 -) -(1,15664:7246811,8403943:24720180,505283,122846 -(1,15663:7246811,8403943:0,452978,122846 -r1,15735:12529042,8403943:5282231,575824,122846 -k1,15663:7246811,8403943:-5282231 -) -(1,15663:7246811,8403943:5282231,452978,122846 -k1,15663:7246811,8403943:3277 -h1,15663:12525765,8403943:0,411205,112570 -) -k1,15663:12792703,8403943:263661 -k1,15663:14247809,8403943:263661 -(1,15663:14247809,8403943:0,452978,122846 -r1,15735:19530040,8403943:5282231,575824,122846 -k1,15663:14247809,8403943:-5282231 -) -(1,15663:14247809,8403943:5282231,452978,122846 -k1,15663:14247809,8403943:3277 -h1,15663:19526763,8403943:0,411205,112570 -) -k1,15663:19793701,8403943:263661 -k1,15663:22009025,8403943:263662 -k1,15663:23715133,8403943:263661 -(1,15663:23715133,8403943:0,452978,122846 -r1,15735:28293941,8403943:4578808,575824,122846 -k1,15663:23715133,8403943:-4578808 -) -(1,15663:23715133,8403943:4578808,452978,122846 -k1,15663:23715133,8403943:3277 -h1,15663:28290664,8403943:0,411205,112570 -) -k1,15663:28557602,8403943:263661 -k1,15663:31350953,8403943:263661 -k1,15664:31966991,8403943:0 -) -(1,15664:7246811,9245431:24720180,513147,134348 -g1,15663:8034553,9245431 -g1,15663:9252867,9245431 -g1,15663:12147592,9245431 -(1,15663:12147592,9245431:0,452978,122846 -r1,15735:13209281,9245431:1061689,575824,122846 -k1,15663:12147592,9245431:-1061689 -) -(1,15663:12147592,9245431:1061689,452978,122846 -k1,15663:12147592,9245431:3277 -h1,15663:13206004,9245431:0,411205,112570 -) -g1,15663:13408510,9245431 -g1,15663:15948685,9245431 -g1,15663:17166999,9245431 -g1,15663:19658022,9245431 -k1,15664:31966991,9245431:9024305 -g1,15664:31966991,9245431 -) -] -) -] -r1,15735:32583029,9969603:26214,4082508,0 -) -] -) -) -g1,15664:32583029,9379779 -) -h1,15664:6630773,9995817:0,0,0 -(1,15667:6630773,11323766:25952256,513147,115847 -h1,15666:6630773,11323766:983040,0,0 -g1,15666:8766591,11323766 -g1,15666:10070102,11323766 -g1,15666:11361816,11323766 -(1,15666:11361816,11323766:0,452978,115847 -r1,15735:17347471,11323766:5985655,568825,115847 -k1,15666:11361816,11323766:-5985655 -) -(1,15666:11361816,11323766:5985655,452978,115847 -k1,15666:11361816,11323766:3277 -h1,15666:17344194,11323766:0,411205,112570 -) -g1,15666:17546700,11323766 -g1,15666:18397357,11323766 -g1,15666:20902798,11323766 -g1,15666:22121112,11323766 -g1,15666:25179021,11323766 -g1,15666:26037542,11323766 -g1,15666:26592631,11323766 -g1,15666:30362261,11323766 -k1,15667:32583029,11323766:474889 -g1,15667:32583029,11323766 -) -v1,15669:6630773,12476404:0,393216,0 -(1,15675:6630773,14098691:25952256,2015503,196608 -g1,15675:6630773,14098691 -g1,15675:6630773,14098691 -g1,15675:6434165,14098691 -(1,15675:6434165,14098691:0,2015503,196608 -r1,15735:32779637,14098691:26345472,2212111,196608 -k1,15675:6434165,14098691:-26345472 -) -(1,15675:6434165,14098691:26345472,2015503,196608 -[1,15675:6630773,14098691:25952256,1818895,0 -(1,15671:6630773,12690314:25952256,410518,107478 -(1,15670:6630773,12690314:0,0,0 -g1,15670:6630773,12690314 -g1,15670:6630773,12690314 -g1,15670:6303093,12690314 -(1,15670:6303093,12690314:0,0,0 -) -g1,15670:6630773,12690314 -) -k1,15671:6630773,12690314:0 -g1,15671:12637541,12690314 -g1,15671:14850561,12690314 -g1,15671:16115144,12690314 -h1,15671:16431290,12690314:0,0,0 -k1,15671:32583029,12690314:16151739 -g1,15671:32583029,12690314 -) -(1,15672:6630773,13356492:25952256,404226,107478 -h1,15672:6630773,13356492:0,0,0 -g1,15672:6946919,13356492 -g1,15672:7263065,13356492 -g1,15672:11372959,13356492 -h1,15672:11689105,13356492:0,0,0 -k1,15672:32583029,13356492:20893924 -g1,15672:32583029,13356492 -) -(1,15673:6630773,14022670:25952256,404226,76021 -h1,15673:6630773,14022670:0,0,0 -g1,15673:6946919,14022670 -g1,15673:7263065,14022670 -k1,15673:7263065,14022670:0 -h1,15673:12637541,14022670:0,0,0 -k1,15673:32583029,14022670:19945488 -g1,15673:32583029,14022670 -) -] -) -g1,15675:32583029,14098691 -g1,15675:6630773,14098691 -g1,15675:6630773,14098691 -g1,15675:32583029,14098691 -g1,15675:32583029,14098691 -) -h1,15675:6630773,14295299:0,0,0 -(1,15678:6630773,25357785:25952256,10510489,0 -k1,15678:12599879,25357785:5969106 -h1,15677:12599879,25357785:0,0,0 -(1,15677:12599879,25357785:14014044,10510489,0 -(1,15677:12599879,25357785:14014019,10510515,0 -(1,15677:12599879,25357785:14014019,10510515,0 -(1,15677:12599879,25357785:0,10510515,0 -(1,15677:12599879,25357785:0,14208860,0 -(1,15677:12599879,25357785:18945146,14208860,0 -) -k1,15677:12599879,25357785:-18945146 -) -) -g1,15677:26613898,25357785 -) -) -) -g1,15678:26613923,25357785 -k1,15678:32583029,25357785:5969106 -) -(1,15685:6630773,26199273:25952256,513147,134348 -h1,15684:6630773,26199273:983040,0,0 -k1,15684:9193157,26199273:195224 -k1,15684:12629792,26199273:195224 -k1,15684:15120088,26199273:195225 -k1,15684:16334397,26199273:195224 -k1,15684:18964939,26199273:195224 -k1,15684:21170808,26199273:195224 -k1,15684:23408790,26199273:195225 -k1,15684:26357837,26199273:195224 -k1,15684:27572146,26199273:195224 -k1,15684:32583029,26199273:0 -) -(1,15685:6630773,27040761:25952256,505283,134348 -k1,15684:7984727,27040761:157267 -(1,15684:7984727,27040761:0,452978,115847 -r1,15735:10804976,27040761:2820249,568825,115847 -k1,15684:7984727,27040761:-2820249 -) -(1,15684:7984727,27040761:2820249,452978,115847 -k1,15684:7984727,27040761:3277 -h1,15684:10801699,27040761:0,411205,112570 -) -k1,15684:10962244,27040761:157268 -k1,15684:12649777,27040761:157267 -k1,15684:13458473,27040761:157268 -k1,15684:14363506,27040761:157267 -k1,15684:16215535,27040761:157268 -k1,15684:16988840,27040761:157267 -k1,15684:18165192,27040761:157267 -k1,15684:20757778,27040761:157268 -k1,15684:22487254,27040761:157267 -k1,15684:23330684,27040761:157268 -k1,15684:24940229,27040761:157267 -k1,15684:26051046,27040761:157268 -k1,15684:27300798,27040761:157267 -(1,15684:27300798,27040761:0,452978,122846 -r1,15735:32583029,27040761:5282231,575824,122846 -k1,15684:27300798,27040761:-5282231 -) -(1,15684:27300798,27040761:5282231,452978,122846 -k1,15684:27300798,27040761:3277 -h1,15684:32579752,27040761:0,411205,112570 -) -k1,15684:32583029,27040761:0 -) -(1,15685:6630773,27882249:25952256,513147,165547 -g1,15684:7481430,27882249 -g1,15684:9444233,27882249 -g1,15684:9999322,27882249 -$1,15684:9999322,27882249 -(1,15684:9999322,27882249:973866,505283,134349 -) -(1,15684:10973188,28039538:590610,339935,8258 -) -$1,15684:11563798,27882249 -g1,15684:11763027,27882249 -g1,15684:16799468,27882249 -g1,15684:17650125,27882249 -g1,15684:18868439,27882249 -$1,15684:18868439,27882249 -$1,15684:19420252,27882249 -g1,15684:19619481,27882249 -k1,15685:32583029,27882249:10779233 -g1,15685:32583029,27882249 -) -v1,15687:6630773,29034888:0,393216,0 -(1,15691:6630773,29349984:25952256,708312,196608 -g1,15691:6630773,29349984 -g1,15691:6630773,29349984 -g1,15691:6434165,29349984 -(1,15691:6434165,29349984:0,708312,196608 -r1,15735:32779637,29349984:26345472,904920,196608 -k1,15691:6434165,29349984:-26345472 -) -(1,15691:6434165,29349984:26345472,708312,196608 -[1,15691:6630773,29349984:25952256,511704,0 -(1,15689:6630773,29242506:25952256,404226,107478 -(1,15688:6630773,29242506:0,0,0 -g1,15688:6630773,29242506 -g1,15688:6630773,29242506 -g1,15688:6303093,29242506 -(1,15688:6303093,29242506:0,0,0 -) -g1,15688:6630773,29242506 -) -g1,15689:6946919,29242506 -g1,15689:7263065,29242506 -k1,15689:7263065,29242506:0 -h1,15689:18960456,29242506:0,0,0 -k1,15689:32583029,29242506:13622573 -g1,15689:32583029,29242506 -) -] -) -g1,15691:32583029,29349984 -g1,15691:6630773,29349984 -g1,15691:6630773,29349984 -g1,15691:32583029,29349984 -g1,15691:32583029,29349984 -) -h1,15691:6630773,29546592:0,0,0 -(1,15695:6630773,30874540:25952256,513147,134348 -h1,15694:6630773,30874540:983040,0,0 -k1,15694:9605603,30874540:200036 -k1,15694:10161499,30874540:200036 -k1,15694:15198747,30874540:200036 -k1,15694:16014821,30874540:200036 -k1,15694:16570717,30874540:200036 -k1,15694:18342962,30874540:200036 -k1,15694:19074496,30874540:200037 -k1,15694:20340803,30874540:200036 -k1,15694:23845820,30874540:200036 -k1,15694:24697284,30874540:200036 -k1,15694:27651143,30874540:200036 -k1,15694:28870264,30874540:200036 -k1,15694:30723773,30874540:200036 -k1,15695:32583029,30874540:0 -) -(1,15695:6630773,31716028:25952256,513147,138281 -k1,15694:10106103,31716028:284382 -k1,15694:11199856,31716028:284383 -k1,15694:12503323,31716028:284382 -k1,15694:13583313,31716028:284383 -k1,15694:15565733,31716028:284382 -k1,15694:18657678,31716028:284383 -k1,15694:19297920,31716028:284382 -k1,15694:22093643,31716028:284383 -k1,15694:23029453,31716028:284382 -k1,15694:24332921,31716028:284383 -$1,15694:24332921,31716028 -$1,15694:24835582,31716028 -k1,15694:25119964,31716028:284382 -k1,15694:26294326,31716028:284383 -$1,15694:26294326,31716028 -$1,15694:26846139,31716028 -k1,15694:27337615,31716028:284382 -k1,15694:30409244,31716028:284383 -k1,15694:31379788,31716028:284382 -k1,15694:32583029,31716028:0 -) -(1,15695:6630773,32557516:25952256,513147,126483 -g1,15694:9003176,32557516 -g1,15694:9818443,32557516 -g1,15694:13259083,32557516 -g1,15694:16655814,32557516 -g1,15694:17471081,32557516 -g1,15694:21652277,32557516 -k1,15695:32583029,32557516:8746437 -g1,15695:32583029,32557516 -) -v1,15697:6630773,33710155:0,393216,0 -(1,15702:6630773,34697721:25952256,1380782,196608 -g1,15702:6630773,34697721 -g1,15702:6630773,34697721 -g1,15702:6434165,34697721 -(1,15702:6434165,34697721:0,1380782,196608 -r1,15735:32779637,34697721:26345472,1577390,196608 -k1,15702:6434165,34697721:-26345472 -) -(1,15702:6434165,34697721:26345472,1380782,196608 -[1,15702:6630773,34697721:25952256,1184174,0 -(1,15699:6630773,33924065:25952256,410518,107478 -(1,15698:6630773,33924065:0,0,0 -g1,15698:6630773,33924065 -g1,15698:6630773,33924065 -g1,15698:6303093,33924065 -(1,15698:6303093,33924065:0,0,0 -) -g1,15698:6630773,33924065 -) -k1,15699:6630773,33924065:0 -g1,15699:12637541,33924065 -g1,15699:14850561,33924065 -g1,15699:18328163,33924065 -h1,15699:18644309,33924065:0,0,0 -k1,15699:32583029,33924065:13938720 -g1,15699:32583029,33924065 -) -(1,15700:6630773,34590243:25952256,404226,107478 -h1,15700:6630773,34590243:0,0,0 -g1,15700:6946919,34590243 -g1,15700:7263065,34590243 -k1,15700:7263065,34590243:0 -h1,15700:11056813,34590243:0,0,0 -k1,15700:32583029,34590243:21526216 -g1,15700:32583029,34590243 -) -] -) -g1,15702:32583029,34697721 -g1,15702:6630773,34697721 -g1,15702:6630773,34697721 -g1,15702:32583029,34697721 -g1,15702:32583029,34697721 -) -h1,15702:6630773,34894329:0,0,0 -(1,15706:6630773,36222277:25952256,513147,134348 -h1,15705:6630773,36222277:983040,0,0 -k1,15705:8807526,36222277:240164 -k1,15705:10708373,36222277:240165 -k1,15705:12332657,36222277:240164 -k1,15705:13903203,36222277:240165 -k1,15705:14794795,36222277:240164 -k1,15705:17293985,36222277:240164 -k1,15705:17890010,36222277:240165 -k1,15705:22967386,36222277:240164 -k1,15705:23858978,36222277:240164 -k1,15705:24455003,36222277:240165 -k1,15705:28265568,36222277:240164 -k1,15705:30251612,36222277:240165 -k1,15705:32227169,36222277:240164 -k1,15705:32583029,36222277:0 -) -(1,15706:6630773,37063765:25952256,513147,134348 -g1,15705:10268021,37063765 -g1,15705:15904772,37063765 -k1,15706:32583029,37063765:14545060 -g1,15706:32583029,37063765 -) -v1,15708:6630773,38216404:0,393216,0 -(1,15712:6630773,38525209:25952256,702021,196608 -g1,15712:6630773,38525209 -g1,15712:6630773,38525209 -g1,15712:6434165,38525209 -(1,15712:6434165,38525209:0,702021,196608 -r1,15735:32779637,38525209:26345472,898629,196608 -k1,15712:6434165,38525209:-26345472 -) -(1,15712:6434165,38525209:26345472,702021,196608 -[1,15712:6630773,38525209:25952256,505413,0 -(1,15710:6630773,38424022:25952256,404226,101187 -(1,15709:6630773,38424022:0,0,0 -g1,15709:6630773,38424022 -g1,15709:6630773,38424022 -g1,15709:6303093,38424022 -(1,15709:6303093,38424022:0,0,0 -) -g1,15709:6630773,38424022 -) -g1,15710:6946919,38424022 -g1,15710:7263065,38424022 -g1,15710:15166707,38424022 -g1,15710:15798999,38424022 -h1,15710:19908893,38424022:0,0,0 -k1,15710:32583029,38424022:12674136 -g1,15710:32583029,38424022 -) -] -) -g1,15712:32583029,38525209 -g1,15712:6630773,38525209 -g1,15712:6630773,38525209 -g1,15712:32583029,38525209 -g1,15712:32583029,38525209 -) -h1,15712:6630773,38721817:0,0,0 -(1,15716:6630773,40049766:25952256,505283,134348 -h1,15715:6630773,40049766:983040,0,0 -k1,15715:10202903,40049766:219963 -k1,15715:13864160,40049766:219962 -k1,15715:15075683,40049766:219963 -k1,15715:18504943,40049766:219962 -k1,15715:19340944,40049766:219963 -k1,15715:21810757,40049766:219962 -k1,15715:24585313,40049766:219963 -k1,15715:25491437,40049766:219962 -k1,15715:26730485,40049766:219963 -k1,15715:28648485,40049766:219962 -k1,15715:31157621,40049766:219963 -k1,15715:32583029,40049766:0 -) -(1,15716:6630773,40891254:25952256,505283,134348 -g1,15715:8440222,40891254 -g1,15715:9658536,40891254 -g1,15715:12217061,40891254 -g1,15715:14666141,40891254 -g1,15715:16287501,40891254 -g1,15715:17440279,40891254 -g1,15715:19300190,40891254 -g1,15715:20702660,40891254 -g1,15715:22295840,40891254 -g1,15715:23514154,40891254 -(1,15715:23514154,40891254:0,414482,122846 -r1,15735:25630979,40891254:2116825,537328,122846 -k1,15715:23514154,40891254:-2116825 -) -(1,15715:23514154,40891254:2116825,414482,122846 -k1,15715:23514154,40891254:3277 -h1,15715:25627702,40891254:0,411205,112570 -) -g1,15715:25830208,40891254 -g1,15715:27418800,40891254 -k1,15716:32583029,40891254:4056015 -g1,15716:32583029,40891254 -) -v1,15718:6630773,42043892:0,393216,0 -(1,15726:6630773,45023700:25952256,3373024,196608 -g1,15726:6630773,45023700 -g1,15726:6630773,45023700 -g1,15726:6434165,45023700 -(1,15726:6434165,45023700:0,3373024,196608 -r1,15735:32779637,45023700:26345472,3569632,196608 -k1,15726:6434165,45023700:-26345472 -) -(1,15726:6434165,45023700:26345472,3373024,196608 -[1,15726:6630773,45023700:25952256,3176416,0 -(1,15720:6630773,42251510:25952256,404226,107478 -(1,15719:6630773,42251510:0,0,0 -g1,15719:6630773,42251510 -g1,15719:6630773,42251510 -g1,15719:6303093,42251510 -(1,15719:6303093,42251510:0,0,0 -) -g1,15719:6630773,42251510 -) -k1,15720:6630773,42251510:0 -g1,15720:10424522,42251510 -g1,15720:11056814,42251510 -k1,15720:11056814,42251510:0 -h1,15720:13269834,42251510:0,0,0 -k1,15720:32583030,42251510:19313196 -g1,15720:32583030,42251510 -) -(1,15721:6630773,42917688:25952256,410518,107478 -h1,15721:6630773,42917688:0,0,0 -g1,15721:6946919,42917688 -g1,15721:7263065,42917688 -g1,15721:7579211,42917688 -g1,15721:7895357,42917688 -g1,15721:8211503,42917688 -g1,15721:8527649,42917688 -g1,15721:8843795,42917688 -g1,15721:10740670,42917688 -g1,15721:11372962,42917688 -g1,15721:12953691,42917688 -g1,15721:13585983,42917688 -g1,15721:14218275,42917688 -g1,15721:18960461,42917688 -g1,15721:20857335,42917688 -g1,15721:21489627,42917688 -g1,15721:23702647,42917688 -h1,15721:24018793,42917688:0,0,0 -k1,15721:32583029,42917688:8564236 -g1,15721:32583029,42917688 -) -(1,15722:6630773,43583866:25952256,404226,107478 -h1,15722:6630773,43583866:0,0,0 -g1,15722:6946919,43583866 -g1,15722:7263065,43583866 -g1,15722:11056813,43583866 -h1,15722:11372959,43583866:0,0,0 -k1,15722:32583029,43583866:21210070 -g1,15722:32583029,43583866 -) -(1,15723:6630773,44250044:25952256,404226,107478 -h1,15723:6630773,44250044:0,0,0 -g1,15723:6946919,44250044 -g1,15723:7263065,44250044 -g1,15723:11372959,44250044 -h1,15723:11689105,44250044:0,0,0 -k1,15723:32583029,44250044:20893924 -g1,15723:32583029,44250044 -) -(1,15724:6630773,44916222:25952256,404226,107478 -h1,15724:6630773,44916222:0,0,0 -g1,15724:6946919,44916222 -g1,15724:7263065,44916222 -g1,15724:15166707,44916222 -g1,15724:15798999,44916222 -g1,15724:18012019,44916222 -g1,15724:20225039,44916222 -g1,15724:20857331,44916222 -g1,15724:22754206,44916222 -g1,15724:24018789,44916222 -g1,15724:25599518,44916222 -h1,15724:27180246,44916222:0,0,0 -k1,15724:32583029,44916222:5402783 -g1,15724:32583029,44916222 -) -] -) -g1,15726:32583029,45023700 -g1,15726:6630773,45023700 -g1,15726:6630773,45023700 -g1,15726:32583029,45023700 -g1,15726:32583029,45023700 -) -h1,15726:6630773,45220308:0,0,0 -] -(1,15735:32583029,45706769:0,0,0 -g1,15735:32583029,45706769 -) -) -] -(1,15735:6630773,47279633:25952256,0,0 -h1,15735:6630773,47279633:25952256,0,0 -) -] -(1,15735:4262630,4025873:0,0,0 -[1,15735:-473656,4025873:0,0,0 -(1,15735:-473656,-710413:0,0,0 -(1,15735:-473656,-710413:0,0,0 -g1,15735:-473656,-710413 -) -g1,15735:-473656,-710413 -) -] -) -] -!20284 -}304 -Input:2530:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2531:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2532:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2533:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!380 -{305 -[1,15786:4262630,47279633:28320399,43253760,0 -(1,15786:4262630,4025873:0,0,0 -[1,15786:-473656,4025873:0,0,0 -(1,15786:-473656,-710413:0,0,0 -(1,15786:-473656,-644877:0,0,0 -k1,15786:-473656,-644877:-65536 -) -(1,15786:-473656,4736287:0,0,0 -k1,15786:-473656,4736287:5209943 -) -g1,15786:-473656,-710413 -) -] -) -[1,15786:6630773,47279633:25952256,43253760,0 -[1,15786:6630773,4812305:25952256,786432,0 -(1,15786:6630773,4812305:25952256,513147,134348 -(1,15786:6630773,4812305:25952256,513147,134348 -g1,15786:3078558,4812305 -[1,15786:3078558,4812305:0,0,0 -(1,15786:3078558,2439708:0,1703936,0 -k1,15786:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,15786:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,15786:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,15786:3078558,4812305:0,0,0 -(1,15786:3078558,2439708:0,1703936,0 -g1,15786:29030814,2439708 -g1,15786:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,15786:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,15786:37855564,2439708:1179648,16384,0 -) -) -k1,15786:3078556,2439708:-34777008 -) -] -[1,15786:3078558,4812305:0,0,0 -(1,15786:3078558,49800853:0,16384,2228224 -k1,15786:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,15786:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,15786:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,15786:3078558,4812305:0,0,0 -(1,15786:3078558,49800853:0,16384,2228224 -g1,15786:29030814,49800853 -g1,15786:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,15786:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,15786:37855564,49800853:1179648,16384,0 -) -) -k1,15786:3078556,49800853:-34777008 -) -] -g1,15786:6630773,4812305 -k1,15786:25712890,4812305:17886740 -g1,15786:29057847,4812305 -g1,15786:29873114,4812305 -) -) -] -[1,15786:6630773,45706769:25952256,40108032,0 -(1,15786:6630773,45706769:25952256,40108032,0 -(1,15786:6630773,45706769:0,0,0 -g1,15786:6630773,45706769 -) -[1,15786:6630773,45706769:25952256,40108032,0 -(1,15729:6630773,6254097:25952256,513147,138281 -(1,15729:6630773,6254097:2809528,485622,11795 -g1,15729:6630773,6254097 -g1,15729:9440301,6254097 -) -g1,15729:12308812,6254097 -g1,15729:13190271,6254097 -$1,15729:13190271,6254097 -$1,15729:13692932,6254097 -g1,15729:13897404,6254097 -g1,15729:15322156,6254097 -$1,15729:15322156,6254097 -$1,15729:15873969,6254097 -g1,15729:16078441,6254097 -k1,15729:32583029,6254097:15030028 -g1,15729:32583029,6254097 -) -(1,15733:6630773,7488801:25952256,513147,134348 -k1,15732:8076178,7488801:248718 -k1,15732:10590475,7488801:248717 -k1,15732:13453424,7488801:248718 -k1,15732:14361433,7488801:248717 -k1,15732:16008689,7488801:248718 -k1,15732:17361688,7488801:248717 -k1,15732:18358172,7488801:248718 -k1,15732:21268306,7488801:248717 -k1,15732:24075550,7488801:248718 -k1,15732:27604999,7488801:248717 -(1,15732:27604999,7488801:0,452978,115847 -r1,15786:30425248,7488801:2820249,568825,115847 -k1,15732:27604999,7488801:-2820249 -) -(1,15732:27604999,7488801:2820249,452978,115847 -k1,15732:27604999,7488801:3277 -h1,15732:30421971,7488801:0,411205,112570 -) -k1,15732:30847636,7488801:248718 -k1,15732:32583029,7488801:0 -) -(1,15733:6630773,8330289:25952256,505283,122846 -g1,15732:9804681,8330289 -g1,15732:13091966,8330289 -(1,15732:13091966,8330289:0,452978,115847 -r1,15786:15912215,8330289:2820249,568825,115847 -k1,15732:13091966,8330289:-2820249 -) -(1,15732:13091966,8330289:2820249,452978,115847 -k1,15732:13091966,8330289:3277 -h1,15732:15908938,8330289:0,411205,112570 -) -g1,15732:16285114,8330289 -(1,15732:16285114,8330289:0,452978,115847 -r1,15786:18050227,8330289:1765113,568825,115847 -k1,15732:16285114,8330289:-1765113 -) -(1,15732:16285114,8330289:1765113,452978,115847 -k1,15732:16285114,8330289:3277 -h1,15732:18046950,8330289:0,411205,112570 -) -g1,15732:18423126,8330289 -(1,15732:18423126,8330289:0,459977,115847 -r1,15786:20539951,8330289:2116825,575824,115847 -k1,15732:18423126,8330289:-2116825 -) -(1,15732:18423126,8330289:2116825,459977,115847 -k1,15732:18423126,8330289:3277 -h1,15732:20536674,8330289:0,411205,112570 -) -g1,15732:20739180,8330289 -g1,15732:22129854,8330289 -(1,15732:22129854,8330289:0,452978,122846 -r1,15786:24598391,8330289:2468537,575824,122846 -k1,15732:22129854,8330289:-2468537 -) -(1,15732:22129854,8330289:2468537,452978,122846 -k1,15732:22129854,8330289:3277 -h1,15732:24595114,8330289:0,411205,112570 -) -k1,15733:32583029,8330289:7810968 -g1,15733:32583029,8330289 -) -v1,15735:6630773,9520755:0,393216,0 -(1,15742:6630773,11834385:25952256,2706846,196608 -g1,15742:6630773,11834385 -g1,15742:6630773,11834385 -g1,15742:6434165,11834385 -(1,15742:6434165,11834385:0,2706846,196608 -r1,15786:32779637,11834385:26345472,2903454,196608 -k1,15742:6434165,11834385:-26345472 -) -(1,15742:6434165,11834385:26345472,2706846,196608 -[1,15742:6630773,11834385:25952256,2510238,0 -(1,15737:6630773,9728373:25952256,404226,107478 -(1,15736:6630773,9728373:0,0,0 -g1,15736:6630773,9728373 -g1,15736:6630773,9728373 -g1,15736:6303093,9728373 -(1,15736:6303093,9728373:0,0,0 -) -g1,15736:6630773,9728373 -) -k1,15737:6630773,9728373:0 -g1,15737:10424522,9728373 -g1,15737:11056814,9728373 -g1,15737:13585980,9728373 -g1,15737:16115146,9728373 -g1,15737:18012020,9728373 -h1,15737:18328166,9728373:0,0,0 -k1,15737:32583029,9728373:14254863 -g1,15737:32583029,9728373 -) -(1,15738:6630773,10394551:25952256,404226,107478 -h1,15738:6630773,10394551:0,0,0 -g1,15738:6946919,10394551 -g1,15738:7263065,10394551 -g1,15738:11372959,10394551 -h1,15738:11689105,10394551:0,0,0 -k1,15738:32583029,10394551:20893924 -g1,15738:32583029,10394551 -) -(1,15739:6630773,11060729:25952256,404226,101187 -h1,15739:6630773,11060729:0,0,0 -g1,15739:6946919,11060729 -g1,15739:7263065,11060729 -g1,15739:16115144,11060729 -g1,15739:16747436,11060729 -g1,15739:18960456,11060729 -h1,15739:19276602,11060729:0,0,0 -k1,15739:32583029,11060729:13306427 -g1,15739:32583029,11060729 -) -(1,15740:6630773,11726907:25952256,404226,107478 -h1,15740:6630773,11726907:0,0,0 -g1,15740:6946919,11726907 -g1,15740:7263065,11726907 -g1,15740:16115144,11726907 -g1,15740:16747436,11726907 -h1,15740:19276602,11726907:0,0,0 -k1,15740:32583029,11726907:13306427 -g1,15740:32583029,11726907 -) -] -) -g1,15742:32583029,11834385 -g1,15742:6630773,11834385 -g1,15742:6630773,11834385 -g1,15742:32583029,11834385 -g1,15742:32583029,11834385 -) -h1,15742:6630773,12030993:0,0,0 -(1,15745:6630773,23131306:25952256,10510489,0 -k1,15745:12599879,23131306:5969106 -h1,15744:12599879,23131306:0,0,0 -(1,15744:12599879,23131306:14014044,10510489,0 -(1,15744:12599879,23131306:14014019,10510515,0 -(1,15744:12599879,23131306:14014019,10510515,0 -(1,15744:12599879,23131306:0,10510515,0 -(1,15744:12599879,23131306:0,14208860,0 -(1,15744:12599879,23131306:18945146,14208860,0 -) -k1,15744:12599879,23131306:-18945146 -) -) -g1,15744:26613898,23131306 -) -) -) -g1,15745:26613923,23131306 -k1,15745:32583029,23131306:5969106 -) -(1,15751:6630773,24759226:25952256,505283,126483 -(1,15751:6630773,24759226:2809528,485622,11795 -g1,15751:6630773,24759226 -g1,15751:9440301,24759226 -) -g1,15751:13088035,24759226 -k1,15751:32583029,24759226:18020434 -g1,15751:32583029,24759226 -) -(1,15754:6630773,25993930:25952256,513147,126483 -k1,15753:7378791,25993930:278125 -k1,15753:8188412,25993930:278124 -k1,15753:9752353,25993930:278125 -k1,15753:12660438,25993930:278125 -k1,15753:13589990,25993930:278124 -k1,15753:15065458,25993930:278125 -k1,15753:18590237,25993930:278125 -k1,15753:20266900,25993930:278125 -k1,15753:21938975,25993930:278124 -k1,15753:23731637,25993930:278125 -k1,15753:27072915,25993930:278125 -k1,15753:27967077,25993930:278124 -k1,15753:28601062,25993930:278125 -k1,15753:32583029,25993930:0 -) -(1,15754:6630773,26835418:25952256,505283,7863 -k1,15754:32583028,26835418:24206376 -g1,15754:32583028,26835418 -) -v1,15756:6630773,28025884:0,393216,0 -(1,15762:6630773,29667045:25952256,2034377,196608 -g1,15762:6630773,29667045 -g1,15762:6630773,29667045 -g1,15762:6434165,29667045 -(1,15762:6434165,29667045:0,2034377,196608 -r1,15786:32779637,29667045:26345472,2230985,196608 -k1,15762:6434165,29667045:-26345472 -) -(1,15762:6434165,29667045:26345472,2034377,196608 -[1,15762:6630773,29667045:25952256,1837769,0 -(1,15758:6630773,28233502:25952256,404226,107478 -(1,15757:6630773,28233502:0,0,0 -g1,15757:6630773,28233502 -g1,15757:6630773,28233502 -g1,15757:6303093,28233502 -(1,15757:6303093,28233502:0,0,0 -) -g1,15757:6630773,28233502 -) -k1,15758:6630773,28233502:0 -g1,15758:10424522,28233502 -g1,15758:11056814,28233502 -g1,15758:13585980,28233502 -g1,15758:16115146,28233502 -g1,15758:18012020,28233502 -h1,15758:18328166,28233502:0,0,0 -k1,15758:32583029,28233502:14254863 -g1,15758:32583029,28233502 -) -(1,15759:6630773,28899680:25952256,404226,107478 -h1,15759:6630773,28899680:0,0,0 -g1,15759:6946919,28899680 -g1,15759:7263065,28899680 -g1,15759:11372959,28899680 -h1,15759:11689105,28899680:0,0,0 -k1,15759:32583029,28899680:20893924 -g1,15759:32583029,28899680 -) -(1,15760:6630773,29565858:25952256,404226,101187 -h1,15760:6630773,29565858:0,0,0 -g1,15760:6946919,29565858 -g1,15760:7263065,29565858 -g1,15760:16115144,29565858 -g1,15760:16747436,29565858 -g1,15760:20225039,29565858 -g1,15760:20857331,29565858 -g1,15760:22438061,29565858 -g1,15760:24018790,29565858 -g1,15760:24651082,29565858 -g1,15760:26864102,29565858 -h1,15760:27180248,29565858:0,0,0 -k1,15760:32583029,29565858:5402781 -g1,15760:32583029,29565858 -) -] -) -g1,15762:32583029,29667045 -g1,15762:6630773,29667045 -g1,15762:6630773,29667045 -g1,15762:32583029,29667045 -g1,15762:32583029,29667045 -) -h1,15762:6630773,29863653:0,0,0 -(1,15765:6630773,40963966:25952256,10510489,0 -k1,15765:12599879,40963966:5969106 -h1,15764:12599879,40963966:0,0,0 -(1,15764:12599879,40963966:14014044,10510489,0 -(1,15764:12599879,40963966:14014019,10510515,0 -(1,15764:12599879,40963966:14014019,10510515,0 -(1,15764:12599879,40963966:0,10510515,0 -(1,15764:12599879,40963966:0,14208860,0 -(1,15764:12599879,40963966:18945146,14208860,0 -) -k1,15764:12599879,40963966:-18945146 -) -) -g1,15764:26613898,40963966 -) -) -) -g1,15765:26613923,40963966 -k1,15765:32583029,40963966:5969106 -) -(1,15772:6630773,41805454:25952256,513147,126483 -h1,15771:6630773,41805454:983040,0,0 -k1,15771:8337094,41805454:253388 -k1,15771:9121980,41805454:253389 -k1,15771:10661184,41805454:253388 -k1,15771:13544532,41805454:253388 -k1,15771:14449349,41805454:253389 -k1,15771:15795222,41805454:253388 -k1,15771:18810954,41805454:253389 -(1,15771:18810954,41805454:0,452978,115847 -r1,15786:20927779,41805454:2116825,568825,115847 -k1,15771:18810954,41805454:-2116825 -) -(1,15771:18810954,41805454:2116825,452978,115847 -k1,15771:18810954,41805454:3277 -h1,15771:20924502,41805454:0,411205,112570 -) -k1,15771:21181167,41805454:253388 -k1,15771:22626000,41805454:253388 -(1,15771:22626000,41805454:0,452978,115847 -r1,15786:24742825,41805454:2116825,568825,115847 -k1,15771:22626000,41805454:-2116825 -) -(1,15771:22626000,41805454:2116825,452978,115847 -k1,15771:22626000,41805454:3277 -h1,15771:24739548,41805454:0,411205,112570 -) -k1,15771:24996214,41805454:253389 -k1,15771:26692049,41805454:253388 -k1,15771:27893088,41805454:253388 -k1,15771:29165562,41805454:253389 -k1,15771:31010820,41805454:253388 -k1,15771:32583029,41805454:0 -) -(1,15772:6630773,42646942:25952256,513147,126483 -g1,15771:8021447,42646942 -g1,15771:8872104,42646942 -g1,15771:11501408,42646942 -g1,15771:12056497,42646942 -g1,15771:15018069,42646942 -(1,15771:15018069,42646942:0,414482,115847 -r1,15786:16431470,42646942:1413401,530329,115847 -k1,15771:15018069,42646942:-1413401 -) -(1,15771:15018069,42646942:1413401,414482,115847 -k1,15771:15018069,42646942:3277 -h1,15771:16428193,42646942:0,411205,112570 -) -g1,15771:16630699,42646942 -g1,15771:17481356,42646942 -g1,15771:18428351,42646942 -g1,15771:20140806,42646942 -g1,15771:21026197,42646942 -g1,15771:21581286,42646942 -g1,15771:25027169,42646942 -g1,15771:26478791,42646942 -k1,15772:32583029,42646942:4416686 -g1,15772:32583029,42646942 -) -v1,15774:6630773,43837408:0,393216,0 -(1,15779:6630773,44793516:25952256,1349324,196608 -g1,15779:6630773,44793516 -g1,15779:6630773,44793516 -g1,15779:6434165,44793516 -(1,15779:6434165,44793516:0,1349324,196608 -r1,15786:32779637,44793516:26345472,1545932,196608 -k1,15779:6434165,44793516:-26345472 -) -(1,15779:6434165,44793516:26345472,1349324,196608 -[1,15779:6630773,44793516:25952256,1152716,0 -(1,15776:6630773,44045026:25952256,404226,101187 -(1,15775:6630773,44045026:0,0,0 -g1,15775:6630773,44045026 -g1,15775:6630773,44045026 -g1,15775:6303093,44045026 -(1,15775:6303093,44045026:0,0,0 -) -g1,15775:6630773,44045026 -) -k1,15776:6896587,44045026:265814 -k1,15776:7162400,44045026:265813 -k1,15776:15964147,44045026:265814 -k1,15776:16546107,44045026:265814 -k1,15776:19973378,44045026:265814 -k1,15776:20555337,44045026:265813 -k1,15776:21137297,44045026:265814 -k1,15776:24564568,44045026:265814 -k1,15776:26094965,44045026:265814 -k1,15776:26676924,44045026:265813 -k1,15776:31052632,44045026:265814 -k1,15776:31634592,44045026:265814 -k1,15776:31634592,44045026:0 -h1,15776:32583029,44045026:0,0,0 -k1,15776:32583029,44045026:0 -k1,15776:32583029,44045026:0 -) -(1,15777:6630773,44711204:25952256,404226,82312 -h1,15777:6630773,44711204:0,0,0 -g1,15777:6946919,44711204 -g1,15777:7263065,44711204 -g1,15777:7579211,44711204 -g1,15777:7895357,44711204 -g1,15777:8211503,44711204 -g1,15777:8527649,44711204 -g1,15777:8843795,44711204 -g1,15777:9159941,44711204 -g1,15777:9476087,44711204 -g1,15777:9792233,44711204 -g1,15777:10108379,44711204 -g1,15777:10424525,44711204 -g1,15777:10740671,44711204 -g1,15777:11056817,44711204 -g1,15777:11372963,44711204 -g1,15777:11689109,44711204 -g1,15777:12005255,44711204 -g1,15777:12321401,44711204 -g1,15777:12637547,44711204 -g1,15777:12953693,44711204 -g1,15777:13269839,44711204 -g1,15777:13585985,44711204 -g1,15777:13902131,44711204 -g1,15777:14218277,44711204 -g1,15777:14534423,44711204 -g1,15777:14850569,44711204 -g1,15777:15166715,44711204 -g1,15777:15482861,44711204 -g1,15777:15799007,44711204 -g1,15777:16115153,44711204 -g1,15777:16431299,44711204 -g1,15777:16747445,44711204 -g1,15777:17063591,44711204 -g1,15777:17379737,44711204 -g1,15777:17695883,44711204 -g1,15777:18012029,44711204 -g1,15777:18328175,44711204 -g1,15777:18644321,44711204 -g1,15777:18960467,44711204 -g1,15777:19276613,44711204 -g1,15777:19592759,44711204 -g1,15777:21805779,44711204 -g1,15777:22438071,44711204 -g1,15777:24018801,44711204 -g1,15777:25599530,44711204 -g1,15777:26864113,44711204 -h1,15777:29077133,44711204:0,0,0 -k1,15777:32583029,44711204:3505896 -g1,15777:32583029,44711204 -) -] -) -g1,15779:32583029,44793516 -g1,15779:6630773,44793516 -g1,15779:6630773,44793516 -g1,15779:32583029,44793516 -g1,15779:32583029,44793516 -) -h1,15779:6630773,44990124:0,0,0 -] -(1,15786:32583029,45706769:0,0,0 -g1,15786:32583029,45706769 -) -) -] -(1,15786:6630773,47279633:25952256,0,0 -h1,15786:6630773,47279633:25952256,0,0 -) -] -(1,15786:4262630,4025873:0,0,0 -[1,15786:-473656,4025873:0,0,0 -(1,15786:-473656,-710413:0,0,0 -(1,15786:-473656,-710413:0,0,0 -g1,15786:-473656,-710413 -) -g1,15786:-473656,-710413 -) -] -) -] -!15988 -}305 -Input:2534:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!104 -{306 -[1,15844:4262630,47279633:28320399,43253760,0 -(1,15844:4262630,4025873:0,0,0 -[1,15844:-473656,4025873:0,0,0 -(1,15844:-473656,-710413:0,0,0 -(1,15844:-473656,-644877:0,0,0 -k1,15844:-473656,-644877:-65536 -) -(1,15844:-473656,4736287:0,0,0 -k1,15844:-473656,4736287:5209943 -) -g1,15844:-473656,-710413 -) -] -) -[1,15844:6630773,47279633:25952256,43253760,0 -[1,15844:6630773,4812305:25952256,786432,0 -(1,15844:6630773,4812305:25952256,505283,11795 -(1,15844:6630773,4812305:25952256,505283,11795 -g1,15844:3078558,4812305 -[1,15844:3078558,4812305:0,0,0 -(1,15844:3078558,2439708:0,1703936,0 -k1,15844:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,15844:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,15844:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,15844:3078558,4812305:0,0,0 -(1,15844:3078558,2439708:0,1703936,0 -g1,15844:29030814,2439708 -g1,15844:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,15844:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,15844:37855564,2439708:1179648,16384,0 -) -) -k1,15844:3078556,2439708:-34777008 -) -] -[1,15844:3078558,4812305:0,0,0 -(1,15844:3078558,49800853:0,16384,2228224 -k1,15844:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,15844:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,15844:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,15844:3078558,4812305:0,0,0 -(1,15844:3078558,49800853:0,16384,2228224 -g1,15844:29030814,49800853 -g1,15844:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,15844:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,15844:37855564,49800853:1179648,16384,0 -) -) -k1,15844:3078556,49800853:-34777008 -) -] -g1,15844:6630773,4812305 -g1,15844:6630773,4812305 -g1,15844:8724648,4812305 -k1,15844:31387652,4812305:22663004 -) -) -] -[1,15844:6630773,45706769:25952256,40108032,0 -(1,15844:6630773,45706769:25952256,40108032,0 -(1,15844:6630773,45706769:0,0,0 -g1,15844:6630773,45706769 -) -[1,15844:6630773,45706769:25952256,40108032,0 -(1,15783:6630773,6254097:25952256,564462,152109 -(1,15783:6630773,6254097:2450326,534184,12975 -g1,15783:6630773,6254097 -g1,15783:9081099,6254097 -) -g1,15783:11157280,6254097 -g1,15783:12724508,6254097 -g1,15783:14505843,6254097 -g1,15783:16916520,6254097 -g1,15783:18219180,6254097 -$1,15783:18219180,6254097 -$1,15783:18772107,6254097 -g1,15783:18997027,6254097 -g1,15783:20564255,6254097 -$1,15783:20564255,6254097 -$1,15783:21171249,6254097 -k1,15783:32583029,6254097:11411780 -g1,15783:32583029,6254097 -) -(1,15786:6630773,7488801:25952256,505283,134348 -k1,15785:7521866,7488801:263258 -k1,15785:8199902,7488801:263193 -k1,15785:9654605,7488801:263258 -k1,15785:11669640,7488801:263258 -k1,15785:13634868,7488801:263258 -k1,15785:17328936,7488801:263258 -k1,15785:20938462,7488801:263258 -k1,15785:22627128,7488801:263258 -k1,15785:24901031,7488801:263258 -k1,15785:26155848,7488801:263257 -k1,15785:28457276,7488801:263258 -k1,15785:29406696,7488801:263258 -k1,15785:31900144,7488801:263258 -k1,15785:32583029,7488801:0 -) -(1,15786:6630773,8330289:25952256,513147,134348 -k1,15785:9467707,8330289:216805 -k1,15785:11695157,8330289:216805 -k1,15785:14222106,8330289:216805 -k1,15785:15090339,8330289:216805 -k1,15785:17501289,8330289:216805 -k1,15785:22337071,8330289:216804 -k1,15785:24487188,8330289:216805 -k1,15785:26742163,8330289:216805 -k1,15785:27645130,8330289:216805 -k1,15785:30151763,8330289:216805 -k1,15785:31027860,8330289:216805 -k1,15786:32583029,8330289:0 -) -(1,15786:6630773,9171777:25952256,505283,138281 -(1,15785:6630773,9171777:0,414482,115847 -r1,15844:9099310,9171777:2468537,530329,115847 -k1,15785:6630773,9171777:-2468537 -) -(1,15785:6630773,9171777:2468537,414482,115847 -k1,15785:6630773,9171777:3277 -h1,15785:9096033,9171777:0,411205,112570 -) -k1,15785:9333087,9171777:233777 -k1,15785:10671147,9171777:233778 -k1,15785:11652690,9171777:233777 -k1,15785:14471863,9171777:233778 -k1,15785:15357068,9171777:233777 -k1,15785:19161247,9171777:233778 -k1,15785:22459488,9171777:233777 -k1,15785:24186832,9171777:233778 -k1,15785:25106771,9171777:233777 -$1,15785:25106771,9171777 -$1,15785:25609432,9171777 -k1,15785:25843210,9171777:233778 -k1,15785:27268432,9171777:233777 -$1,15785:27268432,9171777 -$1,15785:27820245,9171777 -k1,15785:28227693,9171777:233778 -k1,15785:30680519,9171777:233777 -k1,15785:32583029,9171777:0 -) -(1,15786:6630773,10013265:25952256,513147,126483 -g1,15785:7821562,10013265 -g1,15785:10804760,10013265 -g1,15785:11951640,10013265 -g1,15785:13847596,10013265 -k1,15786:32583029,10013265:15378024 -g1,15786:32583029,10013265 -) -(1,15788:6630773,10854753:25952256,505283,134348 -h1,15787:6630773,10854753:983040,0,0 -k1,15787:8773473,10854753:206111 -k1,15787:10083865,10854753:206110 -k1,15787:11224519,10854753:206111 -k1,15787:13245322,10854753:206111 -k1,15787:14642877,10854753:206110 -k1,15787:16963835,10854753:206111 -k1,15787:18905339,10854753:206111 -k1,15787:22199505,10854753:206110 -k1,15787:23091778,10854753:206111 -k1,15787:24723296,10854753:206110 -k1,15787:25612292,10854753:206111 -k1,15787:27703218,10854753:206111 -k1,15787:29783658,10854753:206110 -k1,15787:30981329,10854753:206111 -k1,15787:32583029,10854753:0 -) -(1,15788:6630773,11696241:25952256,513147,134348 -g1,15787:8630931,11696241 -g1,15787:10538684,11696241 -g1,15787:12131864,11696241 -g1,15787:13350178,11696241 -g1,15787:16575204,11696241 -g1,15787:17390471,11696241 -g1,15787:20500154,11696241 -g1,15787:23897539,11696241 -g1,15787:24779653,11696241 -k1,15788:32583029,11696241:4760541 -g1,15788:32583029,11696241 -) -v1,15791:6630773,12852301:0,393216,0 -(1,15792:6630773,15128630:25952256,2669545,616038 -g1,15792:6630773,15128630 -(1,15792:6630773,15128630:25952256,2669545,616038 -(1,15792:6630773,15744668:25952256,3285583,0 -[1,15792:6630773,15744668:25952256,3285583,0 -(1,15792:6630773,15718454:25952256,3233155,0 -r1,15844:6656987,15718454:26214,3233155,0 -[1,15792:6656987,15718454:25899828,3233155,0 -(1,15792:6656987,15128630:25899828,2053507,0 -[1,15792:7246811,15128630:24720180,2053507,0 -(1,15792:7246811,14160659:24720180,1085536,298548 -(1,15791:7246811,14160659:0,1085536,298548 -r1,15844:8753226,14160659:1506415,1384084,298548 -k1,15791:7246811,14160659:-1506415 -) -(1,15791:7246811,14160659:1506415,1085536,298548 -) -k1,15791:8969701,14160659:216475 -k1,15791:12171995,14160659:216474 -k1,15791:13380030,14160659:216475 -k1,15791:15641227,14160659:216474 -k1,15791:16473740,14160659:216475 -k1,15791:17709299,14160659:216474 -k1,15791:19309894,14160659:216475 -k1,15791:20698807,14160659:216474 -k1,15791:23216251,14160659:216475 -k1,15791:24118887,14160659:216474 -k1,15791:25203714,14160659:216475 -k1,15791:26411748,14160659:216474 -k1,15791:28363616,14160659:216475 -k1,15791:30152299,14160659:216474 -k1,15791:31966991,14160659:0 -) -(1,15792:7246811,15002147:24720180,513147,126483 -g1,15791:8097468,15002147 -g1,15791:10376810,15002147 -g1,15791:10931899,15002147 -g1,15791:12452989,15002147 -g1,15791:13311510,15002147 -g1,15791:14529824,15002147 -g1,15791:18800805,15002147 -g1,15791:21405861,15002147 -g1,15791:22221128,15002147 -(1,15791:22221128,15002147:0,452978,115847 -r1,15844:23634529,15002147:1413401,568825,115847 -k1,15791:22221128,15002147:-1413401 -) -(1,15791:22221128,15002147:1413401,452978,115847 -k1,15791:22221128,15002147:3277 -h1,15791:23631252,15002147:0,411205,112570 -) -k1,15792:31966991,15002147:8158792 -g1,15792:31966991,15002147 -) -] -) -] -r1,15844:32583029,15718454:26214,3233155,0 -) -] -) -) -g1,15792:32583029,15128630 -) -h1,15792:6630773,15744668:0,0,0 -v1,15795:6630773,17039990:0,393216,0 -(1,15808:6630773,23339870:25952256,6693096,196608 -g1,15808:6630773,23339870 -g1,15808:6630773,23339870 -g1,15808:6434165,23339870 -(1,15808:6434165,23339870:0,6693096,196608 -r1,15844:32779637,23339870:26345472,6889704,196608 -k1,15808:6434165,23339870:-26345472 -) -(1,15808:6434165,23339870:26345472,6693096,196608 -[1,15808:6630773,23339870:25952256,6496488,0 -(1,15797:6630773,17247608:25952256,404226,107478 -(1,15796:6630773,17247608:0,0,0 -g1,15796:6630773,17247608 -g1,15796:6630773,17247608 -g1,15796:6303093,17247608 -(1,15796:6303093,17247608:0,0,0 -) -g1,15796:6630773,17247608 -) -k1,15797:6630773,17247608:0 -g1,15797:10424522,17247608 -g1,15797:11056814,17247608 -k1,15797:11056814,17247608:0 -h1,15797:18012019,17247608:0,0,0 -k1,15797:32583029,17247608:14571010 -g1,15797:32583029,17247608 -) -(1,15798:6630773,17913786:25952256,404226,101187 -h1,15798:6630773,17913786:0,0,0 -g1,15798:6946919,17913786 -g1,15798:7263065,17913786 -g1,15798:7579211,17913786 -g1,15798:7895357,17913786 -g1,15798:8211503,17913786 -g1,15798:8527649,17913786 -g1,15798:8843795,17913786 -g1,15798:14534418,17913786 -g1,15798:16431292,17913786 -g1,15798:17063584,17913786 -g1,15798:19592750,17913786 -g1,15798:23702644,17913786 -h1,15798:24018790,17913786:0,0,0 -k1,15798:32583029,17913786:8564239 -g1,15798:32583029,17913786 -) -(1,15799:6630773,18579964:25952256,404226,107478 -h1,15799:6630773,18579964:0,0,0 -g1,15799:6946919,18579964 -g1,15799:7263065,18579964 -g1,15799:11056813,18579964 -h1,15799:11372959,18579964:0,0,0 -k1,15799:32583029,18579964:21210070 -g1,15799:32583029,18579964 -) -(1,15800:6630773,19246142:25952256,404226,82312 -h1,15800:6630773,19246142:0,0,0 -g1,15800:6946919,19246142 -g1,15800:7263065,19246142 -g1,15800:14218271,19246142 -g1,15800:14850563,19246142 -k1,15800:14850563,19246142:0 -h1,15800:16431292,19246142:0,0,0 -k1,15800:32583029,19246142:16151737 -g1,15800:32583029,19246142 -) -(1,15801:6630773,19912320:25952256,404226,101187 -h1,15801:6630773,19912320:0,0,0 -g1,15801:6946919,19912320 -g1,15801:7263065,19912320 -g1,15801:7579211,19912320 -g1,15801:7895357,19912320 -g1,15801:8211503,19912320 -g1,15801:8527649,19912320 -g1,15801:8843795,19912320 -g1,15801:9159941,19912320 -g1,15801:9476087,19912320 -g1,15801:9792233,19912320 -g1,15801:10108379,19912320 -g1,15801:10424525,19912320 -g1,15801:10740671,19912320 -g1,15801:11056817,19912320 -g1,15801:11372963,19912320 -g1,15801:11689109,19912320 -g1,15801:12005255,19912320 -g1,15801:12321401,19912320 -g1,15801:12637547,19912320 -g1,15801:14850567,19912320 -g1,15801:15482859,19912320 -g1,15801:21489627,19912320 -g1,15801:24018793,19912320 -g1,15801:24967230,19912320 -g1,15801:25599522,19912320 -g1,15801:27812542,19912320 -g1,15801:28444834,19912320 -k1,15801:28444834,19912320:0 -h1,15801:31606293,19912320:0,0,0 -k1,15801:32583029,19912320:976736 -g1,15801:32583029,19912320 -) -(1,15802:6630773,20578498:25952256,404226,101187 -h1,15802:6630773,20578498:0,0,0 -k1,15802:6915190,20578498:284417 -k1,15802:7199607,20578498:284417 -k1,15802:7484024,20578498:284417 -k1,15802:7768441,20578498:284417 -k1,15802:8052858,20578498:284417 -k1,15802:8337275,20578498:284417 -k1,15802:8621692,20578498:284417 -k1,15802:8906110,20578498:284418 -k1,15802:9190527,20578498:284417 -k1,15802:9474944,20578498:284417 -k1,15802:9759361,20578498:284417 -k1,15802:10043778,20578498:284417 -k1,15802:10328195,20578498:284417 -k1,15802:10612612,20578498:284417 -k1,15802:10897029,20578498:284417 -k1,15802:11181446,20578498:284417 -k1,15802:11465863,20578498:284417 -k1,15802:11750280,20578498:284417 -k1,15802:12034697,20578498:284417 -k1,15802:14215988,20578498:284417 -k1,15802:14816551,20578498:284417 -k1,15802:20791591,20578498:284418 -k1,15802:23289028,20578498:284417 -k1,15802:24205736,20578498:284417 -k1,15802:24806299,20578498:284417 -k1,15802:26987590,20578498:284417 -k1,15802:27588153,20578498:284417 -k1,15802:30717883,20578498:284417 -k1,15802:32266883,20578498:284417 -h1,15802:32583029,20578498:0,0,0 -k1,15802:32583029,20578498:0 -k1,15802:32583029,20578498:0 -) -(1,15803:6630773,21244676:25952256,404226,101187 -h1,15803:6630773,21244676:0,0,0 -g1,15803:6946919,21244676 -g1,15803:7263065,21244676 -g1,15803:14850562,21244676 -g1,15803:15482854,21244676 -g1,15803:17063583,21244676 -g1,15803:20857331,21244676 -g1,15803:22754206,21244676 -h1,15803:23070352,21244676:0,0,0 -k1,15803:32583029,21244676:9512677 -g1,15803:32583029,21244676 -) -(1,15804:6630773,21910854:25952256,404226,101187 -h1,15804:6630773,21910854:0,0,0 -g1,15804:6946919,21910854 -g1,15804:7263065,21910854 -g1,15804:12321397,21910854 -g1,15804:12953689,21910854 -h1,15804:13585981,21910854:0,0,0 -k1,15804:32583029,21910854:18997048 -g1,15804:32583029,21910854 -) -(1,15808:6630773,23232392:25952256,404226,107478 -g1,15808:7579210,23232392 -g1,15808:10424521,23232392 -g1,15808:12953687,23232392 -g1,15808:14534416,23232392 -g1,15808:16747436,23232392 -g1,15808:20225039,23232392 -g1,15808:22754205,23232392 -g1,15808:24967225,23232392 -k1,15808:32583029,23232392:3822056 -g1,15808:32583029,23232392 -) -] -) -g1,15808:32583029,23339870 -g1,15808:6630773,23339870 -g1,15808:6630773,23339870 -g1,15808:32583029,23339870 -g1,15808:32583029,23339870 -) -h1,15808:6630773,23536478:0,0,0 -(1,15811:6630773,32675254:25952256,8758668,0 -k1,15811:7928465,32675254:1297692 -h1,15810:7928465,32675254:0,0,0 -(1,15810:7928465,32675254:23356872,8758668,0 -(1,15810:7928465,32675254:23356506,8758690,0 -(1,15810:7928465,32675254:23356506,8758690,0 -(1,15810:7928465,32675254:0,8758690,0 -(1,15810:7928465,32675254:0,14208860,0 -(1,15810:7928465,32675254:37890292,14208860,0 -) -k1,15810:7928465,32675254:-37890292 -) -) -g1,15810:31284971,32675254 -) -) -) -g1,15811:31285337,32675254 -k1,15811:32583029,32675254:1297692 -) -(1,15818:6630773,33516742:25952256,513147,134348 -h1,15817:6630773,33516742:983040,0,0 -k1,15817:8603883,33516742:229852 -k1,15817:11099316,33516742:229853 -k1,15817:12348253,33516742:229852 -k1,15817:13762341,33516742:229852 -k1,15817:15836376,33516742:229852 -k1,15817:19107100,33516742:229853 -k1,15817:20528397,33516742:229852 -k1,15817:22266888,33516742:229852 -k1,15817:25924273,33516742:229852 -k1,15817:27145686,33516742:229853 -k1,15817:31692395,33516742:229852 -k1,15818:32583029,33516742:0 -) -(1,15818:6630773,34358230:25952256,513147,126483 -k1,15817:8773964,34358230:232161 -k1,15817:10860795,34358230:232162 -k1,15817:11902326,34358230:232161 -k1,15817:13153572,34358230:232161 -k1,15817:15374095,34358230:232161 -k1,15817:16265549,34358230:232162 -k1,15817:17516795,34358230:232161 -k1,15817:19174364,34358230:232161 -k1,15817:20969559,34358230:232161 -k1,15817:22243743,34358230:232162 -k1,15817:25310991,34358230:232161 -k1,15817:26009113,34358230:232161 -k1,15817:27109626,34358230:232161 -k1,15817:28817003,34358230:232162 -k1,15817:29815280,34358230:232161 -k1,15817:31436804,34358230:232161 -k1,15818:32583029,34358230:0 -) -(1,15818:6630773,35199718:25952256,513147,134348 -k1,15817:8746931,35199718:205128 -k1,15817:10962047,35199718:205127 -k1,15817:11523035,35199718:205128 -k1,15817:13601182,35199718:205128 -k1,15817:15117684,35199718:205127 -k1,15817:16756740,35199718:205128 -k1,15817:17980953,35199718:205128 -k1,15817:19370316,35199718:205127 -k1,15817:21419627,35199718:205128 -k1,15817:22757217,35199718:205128 -k1,15817:24623026,35199718:205127 -k1,15817:26671026,35199718:205128 -k1,15817:28067599,35199718:205128 -k1,15817:31031792,35199718:205127 -k1,15817:31714677,35199718:205128 -k1,15817:32583029,35199718:0 -) -(1,15818:6630773,36041206:25952256,513147,126483 -k1,15817:8062342,36041206:154272 -k1,15817:9605976,36041206:154271 -k1,15817:10707899,36041206:154272 -k1,15817:13093671,36041206:154271 -k1,15817:15104578,36041206:154272 -k1,15817:16277935,36041206:154272 -k1,15817:18276389,36041206:154271 -k1,15817:19563123,36041206:154272 -k1,15817:21378076,36041206:154271 -k1,15817:22551433,36041206:154272 -k1,15817:24086549,36041206:154272 -k1,15817:26611913,36041206:154271 -k1,15817:27425477,36041206:154272 -k1,15817:28598833,36041206:154271 -k1,15817:30178513,36041206:154272 -k1,15817:32583029,36041206:0 -) -(1,15818:6630773,36882694:25952256,513147,134348 -k1,15817:8063343,36882694:235883 -k1,15817:10564805,36882694:235882 -k1,15817:11332185,36882694:235883 -k1,15817:14873049,36882694:235883 -k1,15817:16692937,36882694:235883 -k1,15817:19463096,36882694:235882 -k1,15817:20771148,36882694:235883 -k1,15817:21465128,36882694:235883 -k1,15817:22232507,36882694:235882 -k1,15817:25272020,36882694:235883 -k1,15817:26194065,36882694:235883 -k1,15817:27377599,36882694:235883 -k1,15817:30603233,36882694:235882 -k1,15817:31490544,36882694:235883 -k1,15817:32583029,36882694:0 -) -(1,15818:6630773,37724182:25952256,513147,134348 -g1,15817:9592345,37724182 -g1,15817:12864557,37724182 -g1,15817:16089583,37724182 -g1,15817:16940240,37724182 -g1,15817:19871665,37724182 -g1,15817:21089979,37724182 -g1,15817:22473444,37724182 -k1,15818:32583029,37724182:8091731 -g1,15818:32583029,37724182 -) -v1,15820:6630773,38704932:0,393216,0 -(1,15834:6630773,45510161:25952256,7198445,196608 -g1,15834:6630773,45510161 -g1,15834:6630773,45510161 -g1,15834:6434165,45510161 -(1,15834:6434165,45510161:0,7198445,196608 -r1,15844:32779637,45510161:26345472,7395053,196608 -k1,15834:6434165,45510161:-26345472 -) -(1,15834:6434165,45510161:26345472,7198445,196608 -[1,15834:6630773,45510161:25952256,7001837,0 -(1,15822:6630773,38912550:25952256,404226,107478 -(1,15821:6630773,38912550:0,0,0 -g1,15821:6630773,38912550 -g1,15821:6630773,38912550 -g1,15821:6303093,38912550 -(1,15821:6303093,38912550:0,0,0 -) -g1,15821:6630773,38912550 -) -k1,15822:6630773,38912550:0 -g1,15822:10424522,38912550 -g1,15822:11056814,38912550 -k1,15822:11056814,38912550:0 -h1,15822:18012019,38912550:0,0,0 -k1,15822:32583029,38912550:14571010 -g1,15822:32583029,38912550 -) -(1,15823:6630773,39578728:25952256,404226,101187 -h1,15823:6630773,39578728:0,0,0 -g1,15823:6946919,39578728 -g1,15823:7263065,39578728 -g1,15823:7579211,39578728 -g1,15823:7895357,39578728 -g1,15823:8211503,39578728 -g1,15823:8527649,39578728 -g1,15823:8843795,39578728 -g1,15823:14534418,39578728 -g1,15823:16431292,39578728 -g1,15823:17063584,39578728 -g1,15823:19592750,39578728 -g1,15823:23702644,39578728 -h1,15823:24018790,39578728:0,0,0 -k1,15823:32583029,39578728:8564239 -g1,15823:32583029,39578728 -) -(1,15824:6630773,40244906:25952256,404226,107478 -h1,15824:6630773,40244906:0,0,0 -g1,15824:6946919,40244906 -g1,15824:7263065,40244906 -g1,15824:11056813,40244906 -h1,15824:11372959,40244906:0,0,0 -k1,15824:32583029,40244906:21210070 -g1,15824:32583029,40244906 -) -(1,15825:6630773,40911084:25952256,404226,82312 -h1,15825:6630773,40911084:0,0,0 -g1,15825:6946919,40911084 -g1,15825:7263065,40911084 -g1,15825:14218271,40911084 -g1,15825:14850563,40911084 -k1,15825:14850563,40911084:0 -h1,15825:16431292,40911084:0,0,0 -k1,15825:32583029,40911084:16151737 -g1,15825:32583029,40911084 -) -(1,15826:6630773,41577262:25952256,404226,82312 -h1,15826:6630773,41577262:0,0,0 -g1,15826:6946919,41577262 -g1,15826:7263065,41577262 -g1,15826:7579211,41577262 -g1,15826:7895357,41577262 -g1,15826:8211503,41577262 -g1,15826:8527649,41577262 -g1,15826:8843795,41577262 -g1,15826:9159941,41577262 -g1,15826:9476087,41577262 -g1,15826:9792233,41577262 -g1,15826:10108379,41577262 -g1,15826:10424525,41577262 -g1,15826:10740671,41577262 -g1,15826:11056817,41577262 -g1,15826:11372963,41577262 -g1,15826:11689109,41577262 -g1,15826:12005255,41577262 -g1,15826:12321401,41577262 -g1,15826:12637547,41577262 -g1,15826:16431295,41577262 -g1,15826:17063587,41577262 -g1,15826:18012024,41577262 -k1,15826:18012024,41577262:0 -h1,15826:19908898,41577262:0,0,0 -k1,15826:32583029,41577262:12674131 -g1,15826:32583029,41577262 -) -(1,15827:6630773,42243440:25952256,404226,101187 -h1,15827:6630773,42243440:0,0,0 -k1,15827:6914057,42243440:283284 -k1,15827:7197341,42243440:283284 -k1,15827:7480625,42243440:283284 -k1,15827:7763909,42243440:283284 -k1,15827:8047193,42243440:283284 -k1,15827:8330477,42243440:283284 -k1,15827:8613761,42243440:283284 -k1,15827:8897045,42243440:283284 -k1,15827:9180329,42243440:283284 -k1,15827:9463613,42243440:283284 -k1,15827:9746897,42243440:283284 -k1,15827:10030181,42243440:283284 -k1,15827:10313465,42243440:283284 -k1,15827:10596748,42243440:283283 -k1,15827:10880032,42243440:283284 -k1,15827:11163316,42243440:283284 -k1,15827:11446600,42243440:283284 -k1,15827:11729884,42243440:283284 -k1,15827:12013168,42243440:283284 -k1,15827:14193326,42243440:283284 -k1,15827:14792756,42243440:283284 -k1,15827:20766662,42243440:283284 -k1,15827:23262966,42243440:283284 -k1,15827:24178541,42243440:283284 -k1,15827:24777971,42243440:283284 -k1,15827:26958129,42243440:283284 -k1,15827:27557559,42243440:283284 -k1,15827:31002301,42243440:283284 -k1,15827:31002301,42243440:0 -h1,15827:32583029,42243440:0,0,0 -k1,15827:32583029,42243440:0 -k1,15827:32583029,42243440:0 -) -(1,15828:6630773,42909618:25952256,404226,76021 -h1,15828:6630773,42909618:0,0,0 -g1,15828:6946919,42909618 -g1,15828:7263065,42909618 -g1,15828:7579211,42909618 -g1,15828:7895357,42909618 -g1,15828:8211503,42909618 -g1,15828:8527649,42909618 -g1,15828:8843795,42909618 -g1,15828:9159941,42909618 -g1,15828:9476087,42909618 -g1,15828:9792233,42909618 -g1,15828:10108379,42909618 -g1,15828:10424525,42909618 -g1,15828:10740671,42909618 -g1,15828:11056817,42909618 -g1,15828:11372963,42909618 -g1,15828:11689109,42909618 -g1,15828:12005255,42909618 -g1,15828:12321401,42909618 -g1,15828:12637547,42909618 -g1,15828:16431295,42909618 -g1,15828:17063587,42909618 -g1,15828:19908899,42909618 -h1,15828:20225045,42909618:0,0,0 -k1,15828:32583029,42909618:12357984 -g1,15828:32583029,42909618 -) -(1,15829:6630773,43575796:25952256,404226,101187 -h1,15829:6630773,43575796:0,0,0 -g1,15829:6946919,43575796 -g1,15829:7263065,43575796 -g1,15829:14850562,43575796 -g1,15829:15482854,43575796 -g1,15829:17063583,43575796 -g1,15829:20857331,43575796 -g1,15829:22754206,43575796 -h1,15829:23070352,43575796:0,0,0 -k1,15829:32583029,43575796:9512677 -g1,15829:32583029,43575796 -) -(1,15830:6630773,44241974:25952256,404226,101187 -h1,15830:6630773,44241974:0,0,0 -g1,15830:6946919,44241974 -g1,15830:7263065,44241974 -g1,15830:12321397,44241974 -g1,15830:12953689,44241974 -h1,15830:13585981,44241974:0,0,0 -k1,15830:32583029,44241974:18997048 -g1,15830:32583029,44241974 -) -(1,15834:6630773,45402683:25952256,404226,107478 -g1,15834:7579210,45402683 -g1,15834:10424521,45402683 -g1,15834:12953687,45402683 -g1,15834:14534416,45402683 -g1,15834:16747436,45402683 -g1,15834:20225039,45402683 -g1,15834:22754205,45402683 -g1,15834:24967225,45402683 -k1,15834:32583029,45402683:3822056 -g1,15834:32583029,45402683 -) -] -) -g1,15834:32583029,45510161 -g1,15834:6630773,45510161 -g1,15834:6630773,45510161 -g1,15834:32583029,45510161 -g1,15834:32583029,45510161 -) -h1,15834:6630773,45706769:0,0,0 -] -(1,15844:32583029,45706769:0,0,0 -g1,15844:32583029,45706769 -) -) -] -(1,15844:6630773,47279633:25952256,0,0 -h1,15844:6630773,47279633:25952256,0,0 -) -] -(1,15844:4262630,4025873:0,0,0 -[1,15844:-473656,4025873:0,0,0 -(1,15844:-473656,-710413:0,0,0 -(1,15844:-473656,-710413:0,0,0 -g1,15844:-473656,-710413 -) -g1,15844:-473656,-710413 -) -] -) -] -!23395 -}306 -Input:2535:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2536:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2537:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2538:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2539:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2540:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!564 -{307 -[1,15873:4262630,47279633:28320399,43253760,0 -(1,15873:4262630,4025873:0,0,0 -[1,15873:-473656,4025873:0,0,0 -(1,15873:-473656,-710413:0,0,0 -(1,15873:-473656,-644877:0,0,0 -k1,15873:-473656,-644877:-65536 -) -(1,15873:-473656,4736287:0,0,0 -k1,15873:-473656,4736287:5209943 -) -g1,15873:-473656,-710413 -) -] -) -[1,15873:6630773,47279633:25952256,43253760,0 -[1,15873:6630773,4812305:25952256,786432,0 -(1,15873:6630773,4812305:25952256,513147,134348 -(1,15873:6630773,4812305:25952256,513147,134348 -g1,15873:3078558,4812305 -[1,15873:3078558,4812305:0,0,0 -(1,15873:3078558,2439708:0,1703936,0 -k1,15873:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,15873:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,15873:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,15873:3078558,4812305:0,0,0 -(1,15873:3078558,2439708:0,1703936,0 -g1,15873:29030814,2439708 -g1,15873:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,15873:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,15873:37855564,2439708:1179648,16384,0 -) -) -k1,15873:3078556,2439708:-34777008 -) -] -[1,15873:3078558,4812305:0,0,0 -(1,15873:3078558,49800853:0,16384,2228224 -k1,15873:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,15873:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,15873:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,15873:3078558,4812305:0,0,0 -(1,15873:3078558,49800853:0,16384,2228224 -g1,15873:29030814,49800853 -g1,15873:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,15873:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,15873:37855564,49800853:1179648,16384,0 -) -) -k1,15873:3078556,49800853:-34777008 -) -] -g1,15873:6630773,4812305 -k1,15873:25712890,4812305:17886740 -g1,15873:29057847,4812305 -g1,15873:29873114,4812305 -) -) -] -[1,15873:6630773,45706769:25952256,40108032,0 -(1,15873:6630773,45706769:25952256,40108032,0 -(1,15873:6630773,45706769:0,0,0 -g1,15873:6630773,45706769 -) -[1,15873:6630773,45706769:25952256,40108032,0 -(1,15837:6630773,14357405:25952256,8758668,0 -k1,15837:7928465,14357405:1297692 -h1,15836:7928465,14357405:0,0,0 -(1,15836:7928465,14357405:23356872,8758668,0 -(1,15836:7928465,14357405:23356506,8758690,0 -(1,15836:7928465,14357405:23356506,8758690,0 -(1,15836:7928465,14357405:0,8758690,0 -(1,15836:7928465,14357405:0,14208860,0 -(1,15836:7928465,14357405:37890292,14208860,0 -) -k1,15836:7928465,14357405:-37890292 -) -) -g1,15836:31284971,14357405 -) -) -) -g1,15837:31285337,14357405 -k1,15837:32583029,14357405:1297692 -) -v1,15844:6630773,15723181:0,393216,0 -(1,15845:6630773,21375165:25952256,6045200,616038 -g1,15845:6630773,21375165 -(1,15845:6630773,21375165:25952256,6045200,616038 -(1,15845:6630773,21991203:25952256,6661238,0 -[1,15845:6630773,21991203:25952256,6661238,0 -(1,15845:6630773,21964989:25952256,6608810,0 -r1,15873:6656987,21964989:26214,6608810,0 -[1,15845:6656987,21964989:25899828,6608810,0 -(1,15845:6656987,21375165:25899828,5429162,0 -[1,15845:7246811,21375165:24720180,5429162,0 -(1,15845:7246811,17033377:24720180,1087374,134348 -k1,15844:8823545,17033377:367031 -k1,15844:10387262,17033377:367030 -k1,15844:14181826,17033377:367031 -k1,15844:16744968,17033377:367031 -k1,15844:18625225,17033377:367031 -k1,15844:19983815,17033377:367030 -k1,15844:22094759,17033377:367031 -k1,15844:25756285,17033377:367031 -k1,15844:26884843,17033377:367030 -(1,15844:26884843,17033377:0,452978,115847 -r1,15873:30408515,17033377:3523672,568825,115847 -k1,15844:26884843,17033377:-3523672 -) -(1,15844:26884843,17033377:3523672,452978,115847 -k1,15844:26884843,17033377:3277 -h1,15844:30405238,17033377:0,411205,112570 -) -k1,15844:30775546,17033377:367031 -k1,15845:31966991,17033377:0 -) -(1,15845:7246811,17874865:24720180,505283,138281 -(1,15844:7246811,17874865:0,452978,115847 -r1,15873:12177331,17874865:4930520,568825,115847 -k1,15844:7246811,17874865:-4930520 -) -(1,15844:7246811,17874865:4930520,452978,115847 -k1,15844:7246811,17874865:3277 -h1,15844:12174054,17874865:0,411205,112570 -) -k1,15844:12402633,17874865:225302 -k1,15844:13951763,17874865:225303 -k1,15844:15989791,17874865:225302 -k1,15844:18751336,17874865:225302 -k1,15844:19592676,17874865:225302 -k1,15844:20837064,17874865:225303 -k1,15844:22234805,17874865:225302 -k1,15844:25451826,17874865:225302 -k1,15844:27706123,17874865:225302 -k1,15844:28950511,17874865:225303 -$1,15844:28950511,17874865 -$1,15844:29502324,17874865 -k1,15844:31193011,17874865:225302 -k1,15845:31966991,17874865:0 -) -(1,15845:7246811,18716353:24720180,513147,134348 -k1,15844:8756386,18716353:226380 -k1,15844:10495992,18716353:226380 -k1,15844:11913817,18716353:226380 -k1,15844:13159282,18716353:226380 -k1,15844:17098277,18716353:226380 -k1,15844:19662326,18716353:226380 -k1,15844:20244567,18716353:226381 -k1,15844:22343966,18716353:226380 -k1,15844:24082917,18716353:226380 -k1,15844:24992182,18716353:226380 -k1,15844:25574422,18716353:226380 -k1,15844:27683651,18716353:226380 -k1,15844:29518285,18716353:226380 -k1,15844:30403957,18716353:226380 -k1,15844:31966991,18716353:0 -) -(1,15845:7246811,19557841:24720180,513147,134348 -k1,15844:9248180,19557841:179468 -k1,15844:11313118,19557841:179467 -k1,15844:12676822,19557841:179468 -k1,15844:14700472,19557841:179467 -k1,15844:15871500,19557841:179468 -k1,15844:19091839,19557841:179468 -k1,15844:20032834,19557841:179467 -k1,15844:22477882,19557841:179468 -k1,15844:23848795,19557841:179468 -k1,15844:25462190,19557841:179467 -k1,15844:27078863,19557841:179468 -k1,15844:27944492,19557841:179467 -k1,15844:28894663,19557841:179468 -k1,15844:31966991,19557841:0 -) -(1,15845:7246811,20399329:24720180,513147,134348 -k1,15844:8070577,20399329:172338 -(1,15844:8070577,20399329:0,452978,115847 -r1,15873:11945961,20399329:3875384,568825,115847 -k1,15844:8070577,20399329:-3875384 -) -(1,15844:8070577,20399329:3875384,452978,115847 -k1,15844:8070577,20399329:3277 -h1,15844:11942684,20399329:0,411205,112570 -) -k1,15844:12118298,20399329:172337 -k1,15844:15052979,20399329:172338 -k1,15844:17405700,20399329:172338 -k1,15844:19947820,20399329:172338 -k1,15844:22115728,20399329:172337 -k1,15844:23555532,20399329:172338 -k1,15844:26232001,20399329:172338 -k1,15844:27688845,20399329:172338 -k1,15844:28477220,20399329:172337 -k1,15844:31315563,20399329:172338 -k1,15844:31966991,20399329:0 -) -(1,15845:7246811,21240817:24720180,513147,134348 -g1,15844:8465125,21240817 -g1,15844:12035526,21240817 -g1,15844:16105967,21240817 -g1,15844:18305355,21240817 -g1,15844:20684967,21240817 -g1,15844:23080307,21240817 -g1,15844:24383818,21240817 -g1,15844:26920716,21240817 -g1,15844:30346938,21240817 -k1,15845:31966991,21240817:220204 -g1,15845:31966991,21240817 -) -] -) -] -r1,15873:32583029,21964989:26214,6608810,0 -) -] -) -) -g1,15845:32583029,21375165 -) -h1,15845:6630773,21991203:0,0,0 -(1,15848:6630773,24606751:25952256,564462,152109 -(1,15848:6630773,24606751:2450326,534184,12975 -g1,15848:6630773,24606751 -g1,15848:9081099,24606751 -) -g1,15848:12304226,24606751 -g1,15848:14714903,24606751 -g1,15848:16017563,24606751 -$1,15848:16017563,24606751 -$1,15848:16570490,24606751 -g1,15848:16795410,24606751 -g1,15848:18362638,24606751 -$1,15848:18362638,24606751 -$1,15848:18969632,24606751 -k1,15848:32583029,24606751:13613397 -g1,15848:32583029,24606751 -) -(1,15852:6630773,25841455:25952256,513147,126483 -k1,15851:7405278,25841455:146670 -k1,15851:8571032,25841455:146669 -k1,15851:10084783,25841455:146670 -k1,15851:10890744,25841455:146669 -k1,15851:13544821,25841455:146670 -k1,15851:14374375,25841455:146669 -k1,15851:17858138,25841455:146670 -k1,15851:20402769,25841455:146669 -k1,15851:21568524,25841455:146670 -k1,15851:22899429,25841455:146669 -k1,15851:24890282,25841455:146670 -k1,15851:26028511,25841455:146669 -k1,15851:26936709,25841455:146670 -k1,15851:29348958,25841455:146669 -k1,15851:30514713,25841455:146670 -k1,15851:32583029,25841455:0 -) -(1,15852:6630773,26682943:25952256,513147,134348 -k1,15851:7534991,26682943:244926 -k1,15851:8799002,26682943:244926 -k1,15851:10937918,26682943:244926 -k1,15851:13148924,26682943:244926 -k1,15851:17914524,26682943:244926 -k1,15851:19316159,26682943:244925 -k1,15851:23316953,26682943:244926 -k1,15851:24799854,26682943:244926 -k1,15851:25704072,26682943:244926 -k1,15851:28962999,26682943:244926 -k1,15851:30227010,26682943:244926 -k1,15851:32583029,26682943:0 -) -(1,15852:6630773,27524431:25952256,513147,126483 -k1,15851:8059084,27524431:244075 -k1,15851:10147341,27524431:244074 -k1,15851:10922913,27524431:244075 -k1,15851:11818416,27524431:244075 -k1,15851:12997034,27524431:244075 -k1,15851:14880163,27524431:244074 -k1,15851:15810400,27524431:244075 -k1,15851:17948465,27524431:244075 -k1,15851:20158619,27524431:244074 -k1,15851:21783538,27524431:244075 -k1,15851:25012123,27524431:244075 -k1,15851:25787695,27524431:244075 -k1,15851:27098040,27524431:244074 -k1,15851:31896867,27524431:244075 -k1,15851:32583029,27524431:0 -) -(1,15852:6630773,28365919:25952256,513147,134348 -k1,15851:7455175,28365919:208364 -k1,15851:9415315,28365919:208363 -k1,15851:11321061,28365919:208364 -k1,15851:12548509,28365919:208363 -k1,15851:13983052,28365919:208364 -k1,15851:14850707,28365919:208363 -k1,15851:16078156,28365919:208364 -k1,15851:18642539,28365919:208364 -k1,15851:20035138,28365919:208363 -k1,15851:22087685,28365919:208364 -k1,15851:23632982,28365919:208363 -k1,15851:24907617,28365919:208364 -k1,15851:25863746,28365919:208363 -k1,15851:29584184,28365919:208364 -k1,15851:30478709,28365919:208363 -k1,15851:31042933,28365919:208364 -k1,15851:32583029,28365919:0 -) -(1,15852:6630773,29207407:25952256,513147,134348 -k1,15851:8578197,29207407:209409 -k1,15851:11146248,29207407:209410 -k1,15851:12374742,29207407:209409 -k1,15851:14080338,29207407:209409 -k1,15851:16025140,29207407:209409 -k1,15851:17873605,29207407:209410 -k1,15851:19733211,29207407:209409 -k1,15851:22426435,29207407:209409 -k1,15851:23287272,29207407:209409 -k1,15851:24882768,29207407:209410 -k1,15851:25708215,29207407:209409 -k1,15851:28079001,29207407:209409 -k1,15851:28971295,29207407:209409 -k1,15851:29793467,29207407:209410 -k1,15851:31021961,29207407:209409 -k1,15852:32583029,29207407:0 -) -(1,15852:6630773,30048895:25952256,513147,126483 -k1,15851:8616186,30048895:173998 -k1,15851:11365094,30048895:173998 -k1,15851:12008985,30048895:173998 -k1,15851:12714480,30048895:173998 -k1,15851:14223446,30048895:173998 -k1,15851:15048872,30048895:173998 -k1,15851:16315355,30048895:173998 -k1,15851:18614030,30048895:173998 -k1,15851:22134296,30048895:173998 -k1,15851:23993225,30048895:173998 -k1,15851:26235539,30048895:173998 -k1,15851:27357188,30048895:173998 -k1,15851:29425176,30048895:173998 -k1,15851:31391584,30048895:173998 -k1,15851:32583029,30048895:0 -) -(1,15852:6630773,30890383:25952256,505283,134348 -k1,15851:9850304,30890383:204220 -k1,15851:11245969,30890383:204220 -k1,15851:12101617,30890383:204220 -k1,15851:13240381,30890383:204221 -k1,15851:15956596,30890383:204220 -k1,15851:18004999,30890383:204220 -k1,15851:20767745,30890383:204220 -k1,15851:22818115,30890383:204220 -k1,15851:24720373,30890383:204220 -k1,15851:27622711,30890383:204221 -k1,15851:28513093,30890383:204220 -k1,15851:29585665,30890383:204220 -k1,15851:30922347,30890383:204220 -k1,15851:32583029,30890383:0 -) -(1,15852:6630773,31731871:25952256,505283,7863 -k1,15852:32583030,31731871:24380704 -g1,15852:32583030,31731871 -) -(1,15854:6630773,32573359:25952256,505283,115847 -h1,15853:6630773,32573359:983040,0,0 -k1,15853:8792504,32573359:225142 -k1,15853:10121929,32573359:225143 -k1,15853:11439556,32573359:225142 -(1,15853:11439556,32573359:0,452978,115847 -r1,15873:17776923,32573359:6337367,568825,115847 -k1,15853:11439556,32573359:-6337367 -) -(1,15853:11439556,32573359:6337367,452978,115847 -k1,15853:11439556,32573359:3277 -h1,15853:17773646,32573359:0,411205,112570 -) -k1,15853:18002066,32573359:225143 -k1,15853:18878636,32573359:225142 -k1,15853:21478804,32573359:225143 -k1,15853:22895391,32573359:225142 -k1,15853:24941124,32573359:225143 -k1,15853:26185351,32573359:225142 -k1,15853:29123685,32573359:225143 -k1,15853:31809049,32573359:225142 -k1,15854:32583029,32573359:0 -) -(1,15854:6630773,33414847:25952256,513147,134348 -k1,15853:8702409,33414847:188787 -k1,15853:9910282,33414847:188788 -k1,15853:11662103,33414847:188787 -k1,15853:12328647,33414847:188787 -k1,15853:13385786,33414847:188787 -k1,15853:14667059,33414847:188788 -k1,15853:16059087,33414847:188787 -k1,15853:19232384,33414847:188787 -k1,15853:20072599,33414847:188787 -k1,15853:22341500,33414847:188788 -k1,15853:23549372,33414847:188787 -k1,15853:25301193,33414847:188787 -k1,15853:26923908,33414847:188787 -k1,15853:27764124,33414847:188788 -k1,15853:29682406,33414847:188787 -k1,15853:32583029,33414847:0 -) -(1,15854:6630773,34256335:25952256,505283,126483 -k1,15853:7777800,34256335:278675 -k1,15853:9586742,34256335:278676 -k1,15853:10516845,34256335:278675 -k1,15853:11992863,34256335:278675 -(1,15853:11992863,34256335:0,414482,115847 -r1,15873:16219959,34256335:4227096,530329,115847 -k1,15853:11992863,34256335:-4227096 -) -(1,15853:11992863,34256335:4227096,414482,115847 -g1,15853:14106411,34256335 -g1,15853:14809835,34256335 -h1,15853:16216682,34256335:0,411205,112570 -) -k1,15853:16672305,34256335:278676 -k1,15853:17904529,34256335:278675 -k1,15853:21976428,34256335:278675 -k1,15853:23347588,34256335:278675 -(1,15853:23347588,34256335:0,452978,115847 -r1,15873:28981531,34256335:5633943,568825,115847 -k1,15853:23347588,34256335:-5633943 -) -(1,15853:23347588,34256335:5633943,452978,115847 -k1,15853:23347588,34256335:3277 -h1,15853:28978254,34256335:0,411205,112570 -) -k1,15853:29260207,34256335:278676 -k1,15853:30190310,34256335:278675 -k1,15853:32583029,34256335:0 -) -(1,15854:6630773,35097823:25952256,505283,126483 -g1,15853:8292110,35097823 -g1,15853:10559655,35097823 -g1,15853:11410312,35097823 -k1,15854:32583028,35097823:17739940 -g1,15854:32583028,35097823 -) -v1,15857:6630773,36288289:0,393216,0 -(1,15864:6630773,38576753:25952256,2681680,196608 -g1,15864:6630773,38576753 -g1,15864:6630773,38576753 -g1,15864:6434165,38576753 -(1,15864:6434165,38576753:0,2681680,196608 -r1,15873:32779637,38576753:26345472,2878288,196608 -k1,15864:6434165,38576753:-26345472 -) -(1,15864:6434165,38576753:26345472,2681680,196608 -[1,15864:6630773,38576753:25952256,2485072,0 -(1,15859:6630773,36495907:25952256,404226,107478 -(1,15858:6630773,36495907:0,0,0 -g1,15858:6630773,36495907 -g1,15858:6630773,36495907 -g1,15858:6303093,36495907 -(1,15858:6303093,36495907:0,0,0 -) -g1,15858:6630773,36495907 -) -k1,15859:6630773,36495907:0 -g1,15859:10424522,36495907 -g1,15859:13902125,36495907 -g1,15859:15798999,36495907 -h1,15859:16115145,36495907:0,0,0 -k1,15859:32583029,36495907:16467884 -g1,15859:32583029,36495907 -) -(1,15860:6630773,37162085:25952256,410518,107478 -h1,15860:6630773,37162085:0,0,0 -g1,15860:6946919,37162085 -g1,15860:7263065,37162085 -g1,15860:12953688,37162085 -g1,15860:13585980,37162085 -g1,15860:15799000,37162085 -g1,15860:17063583,37162085 -g1,15860:17695875,37162085 -g1,15860:19592750,37162085 -g1,15860:21489624,37162085 -g1,15860:22121916,37162085 -g1,15860:24018791,37162085 -h1,15860:24334937,37162085:0,0,0 -k1,15860:32583029,37162085:8248092 -g1,15860:32583029,37162085 -) -(1,15861:6630773,37828263:25952256,404226,101187 -h1,15861:6630773,37828263:0,0,0 -g1,15861:6946919,37828263 -g1,15861:7263065,37828263 -g1,15861:14850562,37828263 -g1,15861:15482854,37828263 -g1,15861:19592749,37828263 -g1,15861:24018789,37828263 -k1,15861:24018789,37828263:0 -h1,15861:27496392,37828263:0,0,0 -k1,15861:32583029,37828263:5086637 -g1,15861:32583029,37828263 -) -(1,15862:6630773,38494441:25952256,404226,82312 -h1,15862:6630773,38494441:0,0,0 -g1,15862:6946919,38494441 -g1,15862:7263065,38494441 -g1,15862:7579211,38494441 -g1,15862:7895357,38494441 -g1,15862:8211503,38494441 -g1,15862:8527649,38494441 -g1,15862:8843795,38494441 -g1,15862:9159941,38494441 -g1,15862:9476087,38494441 -g1,15862:9792233,38494441 -g1,15862:10108379,38494441 -g1,15862:10424525,38494441 -g1,15862:10740671,38494441 -g1,15862:11056817,38494441 -g1,15862:11372963,38494441 -g1,15862:11689109,38494441 -g1,15862:12005255,38494441 -g1,15862:12321401,38494441 -g1,15862:12637547,38494441 -g1,15862:14850567,38494441 -g1,15862:15482859,38494441 -g1,15862:19592754,38494441 -g1,15862:24018794,38494441 -h1,15862:27496396,38494441:0,0,0 -k1,15862:32583029,38494441:5086633 -g1,15862:32583029,38494441 -) -] -) -g1,15864:32583029,38576753 -g1,15864:6630773,38576753 -g1,15864:6630773,38576753 -g1,15864:32583029,38576753 -g1,15864:32583029,38576753 -) -h1,15864:6630773,38773361:0,0,0 -] -(1,15873:32583029,45706769:0,0,0 -g1,15873:32583029,45706769 -) -) -] -(1,15873:6630773,47279633:25952256,0,0 -h1,15873:6630773,47279633:25952256,0,0 -) -] -(1,15873:4262630,4025873:0,0,0 -[1,15873:-473656,4025873:0,0,0 -(1,15873:-473656,-710413:0,0,0 -(1,15873:-473656,-710413:0,0,0 -g1,15873:-473656,-710413 -) -g1,15873:-473656,-710413 -) -] -) -] -!17722 -}307 -Input:2541:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2542:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2543:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2544:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2545:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2546:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2547:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2548:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2549:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2550:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2551:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2552:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2553:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2554:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2555:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2556:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2557:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2558:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2559:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2560:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2561:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2562:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2563:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2564:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2565:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2566:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2567:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2568:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2569:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2570:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2571:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2572:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!2956 -{308 -[1,15910:4262630,47279633:28320399,43253760,0 -(1,15910:4262630,4025873:0,0,0 -[1,15910:-473656,4025873:0,0,0 -(1,15910:-473656,-710413:0,0,0 -(1,15910:-473656,-644877:0,0,0 -k1,15910:-473656,-644877:-65536 -) -(1,15910:-473656,4736287:0,0,0 -k1,15910:-473656,4736287:5209943 -) -g1,15910:-473656,-710413 -) -] -) -[1,15910:6630773,47279633:25952256,43253760,0 -[1,15910:6630773,4812305:25952256,786432,0 -(1,15910:6630773,4812305:25952256,505283,11795 -(1,15910:6630773,4812305:25952256,505283,11795 -g1,15910:3078558,4812305 -[1,15910:3078558,4812305:0,0,0 -(1,15910:3078558,2439708:0,1703936,0 -k1,15910:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,15910:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,15910:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,15910:3078558,4812305:0,0,0 -(1,15910:3078558,2439708:0,1703936,0 -g1,15910:29030814,2439708 -g1,15910:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,15910:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,15910:37855564,2439708:1179648,16384,0 -) -) -k1,15910:3078556,2439708:-34777008 -) -] -[1,15910:3078558,4812305:0,0,0 -(1,15910:3078558,49800853:0,16384,2228224 -k1,15910:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,15910:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,15910:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,15910:3078558,4812305:0,0,0 -(1,15910:3078558,49800853:0,16384,2228224 -g1,15910:29030814,49800853 -g1,15910:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,15910:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,15910:37855564,49800853:1179648,16384,0 -) -) -k1,15910:3078556,49800853:-34777008 -) -] -g1,15910:6630773,4812305 -g1,15910:6630773,4812305 -g1,15910:8724648,4812305 -k1,15910:31387652,4812305:22663004 -) -) -] -[1,15910:6630773,45706769:25952256,40108032,0 -(1,15910:6630773,45706769:25952256,40108032,0 -(1,15910:6630773,45706769:0,0,0 -g1,15910:6630773,45706769 -) -[1,15910:6630773,45706769:25952256,40108032,0 -(1,15867:6630773,16109226:25952256,10510489,0 -k1,15867:12599879,16109226:5969106 -h1,15866:12599879,16109226:0,0,0 -(1,15866:12599879,16109226:14014044,10510489,0 -(1,15866:12599879,16109226:14014019,10510515,0 -(1,15866:12599879,16109226:14014019,10510515,0 -(1,15866:12599879,16109226:0,10510515,0 -(1,15866:12599879,16109226:0,14208860,0 -(1,15866:12599879,16109226:18945146,14208860,0 -) -k1,15866:12599879,16109226:-18945146 -) -) -g1,15866:26613898,16109226 -) -) -) -g1,15867:26613923,16109226 -k1,15867:32583029,16109226:5969106 -) -(1,15874:6630773,16950714:25952256,513147,134348 -h1,15873:6630773,16950714:983040,0,0 -k1,15873:8519193,16950714:253952 -k1,15873:9459307,16950714:253952 -k1,15873:10329297,16950714:253952 -k1,15873:11602334,16950714:253952 -k1,15873:14610764,16950714:253952 -k1,15873:17699803,16950714:253952 -k1,15873:19329356,16950714:253952 -k1,15873:20602393,16950714:253952 -k1,15873:22223426,16950714:253952 -k1,15873:23136670,16950714:253952 -k1,15873:26365301,16950714:253952 -k1,15873:28815364,16950714:253952 -k1,15873:30929883,16950714:253952 -k1,15873:31835263,16950714:253952 -k1,15873:32583029,16950714:0 -) -(1,15874:6630773,17792202:25952256,513147,134348 -k1,15873:9666933,17792202:201073 -k1,15873:12295460,17792202:201073 -k1,15873:15192029,17792202:201073 -(1,15873:15192029,17792202:0,452978,115847 -r1,15910:18363989,17792202:3171960,568825,115847 -k1,15873:15192029,17792202:-3171960 -) -(1,15873:15192029,17792202:3171960,452978,115847 -k1,15873:15192029,17792202:3277 -h1,15873:18360712,17792202:0,411205,112570 -) -k1,15873:18565062,17792202:201073 -k1,15873:19449020,17792202:201073 -(1,15873:19449020,17792202:0,452978,115847 -r1,15910:22620980,17792202:3171960,568825,115847 -k1,15873:19449020,17792202:-3171960 -) -(1,15873:19449020,17792202:3171960,452978,115847 -k1,15873:19449020,17792202:3277 -h1,15873:22617703,17792202:0,411205,112570 -) -k1,15873:22822054,17792202:201074 -k1,15873:25035082,17792202:201073 -k1,15873:25592015,17792202:201073 -k1,15873:27443285,17792202:201073 -k1,15873:29977440,17792202:201073 -k1,15873:31369958,17792202:201073 -k1,15873:32583029,17792202:0 -) -(1,15874:6630773,18633690:25952256,513147,126483 -k1,15873:10479484,18633690:162966 -k1,15873:13800630,18633690:162966 -k1,15873:14591431,18633690:162966 -k1,15873:15965502,18633690:162966 -k1,15873:17260275,18633690:162966 -k1,15873:20292407,18633690:162966 -k1,15873:21836218,18633690:162967 -k1,15873:24380762,18633690:162966 -k1,15873:25226613,18633690:162966 -k1,15873:26629520,18633690:162966 -k1,15873:28677957,18633690:162966 -k1,15873:31563944,18633690:162966 -k1,15873:32583029,18633690:0 -) -(1,15874:6630773,19475178:25952256,513147,134348 -g1,15873:8840647,19475178 -g1,15873:9707032,19475178 -(1,15873:9707032,19475178:0,452978,115847 -r1,15910:11823857,19475178:2116825,568825,115847 -k1,15873:9707032,19475178:-2116825 -) -(1,15873:9707032,19475178:2116825,452978,115847 -k1,15873:9707032,19475178:3277 -h1,15873:11820580,19475178:0,411205,112570 -) -g1,15873:12023086,19475178 -g1,15873:13489781,19475178 -g1,15873:14708095,19475178 -g1,15873:17263343,19475178 -g1,15873:19473217,19475178 -g1,15873:20776728,19475178 -g1,15873:21723723,19475178 -g1,15873:24128239,19475178 -g1,15873:25013630,19475178 -g1,15873:25983562,19475178 -g1,15873:29255119,19475178 -g1,15873:30105776,19475178 -(1,15873:30105776,19475178:0,452978,115847 -r1,15910:32222601,19475178:2116825,568825,115847 -k1,15873:30105776,19475178:-2116825 -) -(1,15873:30105776,19475178:2116825,452978,115847 -k1,15873:30105776,19475178:3277 -h1,15873:32219324,19475178:0,411205,112570 -) -k1,15874:32583029,19475178:186758 -g1,15874:32583029,19475178 -) -v1,15876:6630773,20665644:0,393216,0 -(1,15881:6630773,21640627:25952256,1368199,196608 -g1,15881:6630773,21640627 -g1,15881:6630773,21640627 -g1,15881:6434165,21640627 -(1,15881:6434165,21640627:0,1368199,196608 -r1,15910:32779637,21640627:26345472,1564807,196608 -k1,15881:6434165,21640627:-26345472 -) -(1,15881:6434165,21640627:26345472,1368199,196608 -[1,15881:6630773,21640627:25952256,1171591,0 -(1,15878:6630773,20873262:25952256,404226,101187 -(1,15877:6630773,20873262:0,0,0 -g1,15877:6630773,20873262 -g1,15877:6630773,20873262 -g1,15877:6303093,20873262 -(1,15877:6303093,20873262:0,0,0 -) -g1,15877:6630773,20873262 -) -g1,15878:6946919,20873262 -g1,15878:7263065,20873262 -g1,15878:14850562,20873262 -g1,15878:15482854,20873262 -g1,15878:19592749,20873262 -g1,15878:24018789,20873262 -k1,15878:24018789,20873262:0 -h1,15878:27496392,20873262:0,0,0 -k1,15878:32583029,20873262:5086637 -g1,15878:32583029,20873262 -) -(1,15879:6630773,21539440:25952256,404226,101187 -h1,15879:6630773,21539440:0,0,0 -g1,15879:6946919,21539440 -g1,15879:7263065,21539440 -g1,15879:7579211,21539440 -g1,15879:7895357,21539440 -g1,15879:8211503,21539440 -g1,15879:8527649,21539440 -g1,15879:8843795,21539440 -g1,15879:9159941,21539440 -g1,15879:9476087,21539440 -g1,15879:9792233,21539440 -g1,15879:10108379,21539440 -g1,15879:10424525,21539440 -g1,15879:10740671,21539440 -g1,15879:11056817,21539440 -g1,15879:11372963,21539440 -g1,15879:11689109,21539440 -g1,15879:12005255,21539440 -g1,15879:12321401,21539440 -g1,15879:12637547,21539440 -g1,15879:14850567,21539440 -g1,15879:15482859,21539440 -h1,15879:18012024,21539440:0,0,0 -k1,15879:32583029,21539440:14571005 -g1,15879:32583029,21539440 -) -] -) -g1,15881:32583029,21640627 -g1,15881:6630773,21640627 -g1,15881:6630773,21640627 -g1,15881:32583029,21640627 -g1,15881:32583029,21640627 -) -h1,15881:6630773,21837235:0,0,0 -(1,15885:6630773,23203011:25952256,513147,134348 -h1,15884:6630773,23203011:983040,0,0 -k1,15884:12049895,23203011:177552 -k1,15884:13095799,23203011:177552 -k1,15884:14377633,23203011:177552 -k1,15884:16795861,23203011:177552 -k1,15884:17992498,23203011:177552 -k1,15884:19909376,23203011:177552 -k1,15884:20746219,23203011:177551 -k1,15884:21942856,23203011:177552 -k1,15884:24833599,23203011:177552 -k1,15884:25627189,23203011:177552 -k1,15884:26823826,23203011:177552 -k1,15884:28278675,23203011:177552 -k1,15884:29217755,23203011:177552 -k1,15884:32583029,23203011:0 -) -(1,15885:6630773,24044499:25952256,513147,134348 -k1,15884:7898620,24044499:248762 -k1,15884:9939792,24044499:248762 -k1,15884:10847847,24044499:248763 -k1,15884:12990599,24044499:248762 -(1,15884:12990599,24044499:0,459977,122846 -r1,15910:16162559,24044499:3171960,582823,122846 -k1,15884:12990599,24044499:-3171960 -) -(1,15884:12990599,24044499:3171960,459977,122846 -k1,15884:12990599,24044499:3277 -h1,15884:16159282,24044499:0,411205,112570 -) -k1,15884:16584991,24044499:248762 -k1,15884:18214597,24044499:248762 -k1,15884:21447869,24044499:248762 -k1,15884:23742665,24044499:248762 -k1,15884:25761555,24044499:248763 -k1,15884:26476278,24044499:248762 -k1,15884:27744125,24044499:248762 -k1,15884:30722462,24044499:248762 -k1,15884:32583029,24044499:0 -) -(1,15885:6630773,24885987:25952256,505283,134348 -k1,15884:7472130,24885987:189929 -k1,15884:8409825,24885987:189929 -k1,15884:10177205,24885987:189928 -k1,15884:16003886,24885987:189929 -k1,15884:18048484,24885987:189929 -k1,15884:19047783,24885987:189929 -k1,15884:21248357,24885987:189929 -k1,15884:22054323,24885987:189928 -(1,15884:22054323,24885987:0,452978,115847 -r1,15910:23467724,24885987:1413401,568825,115847 -k1,15884:22054323,24885987:-1413401 -) -(1,15884:22054323,24885987:1413401,452978,115847 -k1,15884:22054323,24885987:3277 -h1,15884:23464447,24885987:0,411205,112570 -) -k1,15884:23831323,24885987:189929 -k1,15884:25071139,24885987:189929 -k1,15884:27539755,24885987:189929 -h1,15884:28908802,24885987:0,0,0 -k1,15884:29098730,24885987:189928 -k1,15884:30098029,24885987:189929 -k1,15884:31786111,24885987:189929 -h1,15884:32583029,24885987:0,0,0 -k1,15884:32583029,24885987:0 -) -(1,15885:6630773,25727475:25952256,513147,134348 -k1,15884:7770206,25727475:191782 -k1,15884:10253127,25727475:191782 -k1,15884:11641596,25727475:191782 -k1,15884:14494795,25727475:191782 -k1,15884:16555008,25727475:191782 -k1,15884:18737774,25727475:191782 -k1,15884:20259937,25727475:191782 -k1,15884:21103147,25727475:191782 -k1,15884:23669954,25727475:191782 -k1,15884:24880821,25727475:191782 -k1,15884:27959464,25727475:191782 -k1,15884:32583029,25727475:0 -) -(1,15885:6630773,26568963:25952256,513147,115847 -g1,15884:7481430,26568963 -g1,15884:8699744,26568963 -g1,15884:10691383,26568963 -g1,15884:11557768,26568963 -(1,15884:11557768,26568963:0,452978,115847 -r1,15910:13322881,26568963:1765113,568825,115847 -k1,15884:11557768,26568963:-1765113 -) -(1,15884:11557768,26568963:1765113,452978,115847 -k1,15884:11557768,26568963:3277 -h1,15884:13319604,26568963:0,411205,112570 -) -g1,15884:13522110,26568963 -g1,15884:15576008,26568963 -g1,15884:16584607,26568963 -g1,15884:17802921,26568963 -(1,15884:17802921,26568963:0,452978,115847 -r1,15910:19919746,26568963:2116825,568825,115847 -k1,15884:17802921,26568963:-2116825 -) -(1,15884:17802921,26568963:2116825,452978,115847 -k1,15884:17802921,26568963:3277 -h1,15884:19916469,26568963:0,411205,112570 -) -g1,15884:20118975,26568963 -g1,15884:20985360,26568963 -(1,15884:20985360,26568963:0,452978,115847 -r1,15910:22047049,26568963:1061689,568825,115847 -k1,15884:20985360,26568963:-1061689 -) -(1,15884:20985360,26568963:1061689,452978,115847 -k1,15884:20985360,26568963:3277 -h1,15884:22043772,26568963:0,411205,112570 -) -k1,15885:32583029,26568963:10362310 -g1,15885:32583029,26568963 -) -v1,15887:6630773,27759429:0,393216,0 -(1,15892:6630773,28746995:25952256,1380782,196608 -g1,15892:6630773,28746995 -g1,15892:6630773,28746995 -g1,15892:6434165,28746995 -(1,15892:6434165,28746995:0,1380782,196608 -r1,15910:32779637,28746995:26345472,1577390,196608 -k1,15892:6434165,28746995:-26345472 -) -(1,15892:6434165,28746995:26345472,1380782,196608 -[1,15892:6630773,28746995:25952256,1184174,0 -(1,15889:6630773,27973339:25952256,410518,107478 -(1,15888:6630773,27973339:0,0,0 -g1,15888:6630773,27973339 -g1,15888:6630773,27973339 -g1,15888:6303093,27973339 -(1,15888:6303093,27973339:0,0,0 -) -g1,15888:6630773,27973339 -) -k1,15889:6630773,27973339:0 -g1,15889:10424522,27973339 -g1,15889:14850563,27973339 -g1,15889:15482855,27973339 -g1,15889:20225041,27973339 -g1,15889:20857333,27973339 -g1,15889:21489625,27973339 -g1,15889:23070354,27973339 -g1,15889:24334937,27973339 -g1,15889:24967229,27973339 -g1,15889:27180249,27973339 -g1,15889:29077123,27973339 -h1,15889:29393269,27973339:0,0,0 -k1,15889:32583029,27973339:3189760 -g1,15889:32583029,27973339 -) -(1,15890:6630773,28639517:25952256,410518,107478 -h1,15890:6630773,28639517:0,0,0 -g1,15890:6946919,28639517 -g1,15890:7263065,28639517 -g1,15890:12953688,28639517 -g1,15890:13585980,28639517 -g1,15890:15799000,28639517 -g1,15890:17063583,28639517 -g1,15890:17695875,28639517 -h1,15890:19276603,28639517:0,0,0 -k1,15890:32583029,28639517:13306426 -g1,15890:32583029,28639517 -) -] -) -g1,15892:32583029,28746995 -g1,15892:6630773,28746995 -g1,15892:6630773,28746995 -g1,15892:32583029,28746995 -g1,15892:32583029,28746995 -) -h1,15892:6630773,28943603:0,0,0 -(1,15897:6630773,31559151:25952256,555811,12975 -(1,15897:6630773,31559151:2450326,534184,12975 -g1,15897:6630773,31559151 -g1,15897:9081099,31559151 -) -k1,15897:32583029,31559151:22040674 -g1,15897:32583029,31559151 -) -(1,15900:6630773,32793855:25952256,505283,115847 -k1,15899:8120782,32793855:447987 -k1,15899:9587855,32793855:447988 -(1,15899:9587855,32793855:0,452978,115847 -r1,15910:11001256,32793855:1413401,568825,115847 -k1,15899:9587855,32793855:-1413401 -) -(1,15899:9587855,32793855:1413401,452978,115847 -k1,15899:9587855,32793855:3277 -h1,15899:10997979,32793855:0,411205,112570 -) -k1,15899:11449243,32793855:447987 -k1,15899:14824067,32793855:447987 -k1,15899:17503556,32793855:447988 -k1,15899:19854053,32793855:447987 -k1,15899:21293601,32793855:447988 -k1,15899:24699228,32793855:447987 -k1,15899:26613911,32793855:447987 -k1,15899:29587657,32793855:447988 -k1,15899:31227089,32793855:447987 -k1,15900:32583029,32793855:0 -) -(1,15900:6630773,33635343:25952256,513147,126483 -k1,15899:9648289,33635343:416392 -k1,15899:11622471,33635343:416391 -k1,15899:12854131,33635343:416392 -k1,15899:14336794,33635343:416392 -k1,15899:16496444,33635343:416392 -k1,15899:18696070,33635343:416391 -k1,15899:20680083,33635343:416392 -k1,15899:22840388,33635343:416392 -k1,15899:25591172,33635343:416392 -k1,15899:29097586,33635343:416391 -k1,15899:31542973,33635343:416392 -k1,15900:32583029,33635343:0 -) -(1,15900:6630773,34476831:25952256,473825,122846 -k1,15899:9725929,34476831:389174 -(1,15899:9725929,34476831:0,452978,122846 -r1,15910:13953025,34476831:4227096,575824,122846 -k1,15899:9725929,34476831:-4227096 -) -(1,15899:9725929,34476831:4227096,452978,122846 -k1,15899:9725929,34476831:3277 -h1,15899:13949748,34476831:0,411205,112570 -) -k1,15899:14515868,34476831:389173 -(1,15899:14515868,34476831:0,452978,122846 -r1,15910:18391252,34476831:3875384,575824,122846 -k1,15899:14515868,34476831:-3875384 -) -(1,15899:14515868,34476831:3875384,452978,122846 -k1,15899:14515868,34476831:3277 -h1,15899:18387975,34476831:0,411205,112570 -) -k1,15899:18954096,34476831:389174 -(1,15899:18954096,34476831:0,452978,122846 -r1,15910:23181192,34476831:4227096,575824,122846 -k1,15899:18954096,34476831:-4227096 -) -(1,15899:18954096,34476831:4227096,452978,122846 -k1,15899:18954096,34476831:3277 -h1,15899:23177915,34476831:0,411205,112570 -) -k1,15899:23744035,34476831:389173 -(1,15899:23744035,34476831:0,452978,122846 -r1,15910:27971131,34476831:4227096,575824,122846 -k1,15899:23744035,34476831:-4227096 -) -(1,15899:23744035,34476831:4227096,452978,122846 -k1,15899:23744035,34476831:3277 -h1,15899:27967854,34476831:0,411205,112570 -) -k1,15899:28533975,34476831:389174 -(1,15899:28533975,34476831:0,452978,122846 -r1,15910:32409359,34476831:3875384,575824,122846 -k1,15899:28533975,34476831:-3875384 -) -(1,15899:28533975,34476831:3875384,452978,122846 -k1,15899:28533975,34476831:3277 -h1,15899:32406082,34476831:0,411205,112570 -) -k1,15900:32583029,34476831:0 -) -(1,15900:6630773,35318319:25952256,513147,126483 -(1,15899:6630773,35318319:0,452978,122846 -r1,15910:10857869,35318319:4227096,575824,122846 -k1,15899:6630773,35318319:-4227096 -) -(1,15899:6630773,35318319:4227096,452978,122846 -k1,15899:6630773,35318319:3277 -h1,15899:10854592,35318319:0,411205,112570 -) -k1,15899:11261236,35318319:403367 -k1,15899:13167999,35318319:403367 -(1,15899:13167999,35318319:0,452978,115847 -r1,15910:14581400,35318319:1413401,568825,115847 -k1,15899:13167999,35318319:-1413401 -) -(1,15899:13167999,35318319:1413401,452978,115847 -k1,15899:13167999,35318319:3277 -h1,15899:14578123,35318319:0,411205,112570 -) -k1,15899:14984767,35318319:403367 -k1,15899:16074296,35318319:403367 -k1,15899:19490353,35318319:403367 -k1,15899:20521555,35318319:403367 -k1,15899:21944007,35318319:403367 -k1,15899:23714455,35318319:403367 -k1,15899:24784978,35318319:403367 -(1,15899:24784978,35318319:0,452978,122846 -r1,15910:28308650,35318319:3523672,575824,122846 -k1,15899:24784978,35318319:-3523672 -) -(1,15899:24784978,35318319:3523672,452978,122846 -k1,15899:24784978,35318319:3277 -h1,15899:28305373,35318319:0,411205,112570 -) -k1,15899:28885687,35318319:403367 -(1,15899:28885687,35318319:0,452978,122846 -r1,15910:32409359,35318319:3523672,575824,122846 -k1,15899:28885687,35318319:-3523672 -) -(1,15899:28885687,35318319:3523672,452978,122846 -k1,15899:28885687,35318319:3277 -h1,15899:32406082,35318319:0,411205,112570 -) -k1,15900:32583029,35318319:0 -) -(1,15900:6630773,36159807:25952256,505283,134348 -(1,15899:6630773,36159807:0,452978,122846 -r1,15910:10506157,36159807:3875384,575824,122846 -k1,15899:6630773,36159807:-3875384 -) -(1,15899:6630773,36159807:3875384,452978,122846 -k1,15899:6630773,36159807:3277 -h1,15899:10502880,36159807:0,411205,112570 -) -k1,15899:10763115,36159807:256958 -k1,15899:12211518,36159807:256958 -k1,15899:13234592,36159807:256958 -k1,15899:15193520,36159807:256958 -k1,15899:18613901,36159807:256958 -k1,15899:21740024,36159807:256957 -k1,15899:24904814,36159807:256958 -k1,15899:25923300,36159807:256958 -k1,15899:27852737,36159807:256958 -(1,15899:27852737,36159807:0,452978,115847 -r1,15910:29266138,36159807:1413401,568825,115847 -k1,15899:27852737,36159807:-1413401 -) -(1,15899:27852737,36159807:1413401,452978,115847 -k1,15899:27852737,36159807:3277 -h1,15899:29262861,36159807:0,411205,112570 -) -k1,15899:29523096,36159807:256958 -k1,15899:30311551,36159807:256958 -k1,15899:32583029,36159807:0 -) -(1,15900:6630773,37001295:25952256,513147,126483 -k1,15899:7627255,37001295:234954 -k1,15899:9558935,37001295:234953 -k1,15899:11933640,37001295:234954 -k1,15899:13841072,37001295:234953 -k1,15899:14703861,37001295:234954 -k1,15899:16323590,37001295:234953 -k1,15899:18260514,37001295:234954 -k1,15899:21670031,37001295:234953 -k1,15899:24196779,37001295:234954 -k1,15899:25379383,37001295:234953 -k1,15899:27113145,37001295:234954 -k1,15899:28841664,37001295:234953 -k1,15899:29762780,37001295:234954 -(1,15899:29762780,37001295:0,452978,115847 -r1,15910:32583029,37001295:2820249,568825,115847 -k1,15899:29762780,37001295:-2820249 -) -(1,15899:29762780,37001295:2820249,452978,115847 -k1,15899:29762780,37001295:3277 -h1,15899:32579752,37001295:0,411205,112570 -) -k1,15899:32583029,37001295:0 -) -(1,15900:6630773,37842783:25952256,505283,126483 -g1,15899:8115818,37842783 -g1,15899:10078621,37842783 -g1,15899:10929278,37842783 -g1,15899:12825234,37842783 -k1,15900:32583028,37842783:17114072 -g1,15900:32583028,37842783 -) -(1,15903:6630773,38684271:25952256,513147,134348 -h1,15901:6630773,38684271:983040,0,0 -k1,15901:9665087,38684271:268039 -k1,15901:11668519,38684271:268039 -(1,15901:11668519,38684271:0,452978,115847 -r1,15910:13081920,38684271:1413401,568825,115847 -k1,15901:11668519,38684271:-1413401 -) -(1,15901:11668519,38684271:1413401,452978,115847 -k1,15901:11668519,38684271:3277 -h1,15901:13078643,38684271:0,411205,112570 -) -k1,15901:13349959,38684271:268039 -k1,15901:15694179,38684271:268039 -(1,15901:15694179,38684271:0,452978,115847 -r1,15910:17811004,38684271:2116825,568825,115847 -k1,15901:15694179,38684271:-2116825 -) -(1,15901:15694179,38684271:2116825,452978,115847 -k1,15901:15694179,38684271:3277 -h1,15901:17807727,38684271:0,411205,112570 -) -k1,15901:18079043,38684271:268039 -k1,15901:19538527,38684271:268039 -(1,15901:19538527,38684271:0,452978,115847 -r1,15910:21655352,38684271:2116825,568825,115847 -k1,15901:19538527,38684271:-2116825 -) -(1,15901:19538527,38684271:2116825,452978,115847 -k1,15901:19538527,38684271:3277 -h1,15901:21652075,38684271:0,411205,112570 -) -k1,15901:21923390,38684271:268038 -k1,15901:23970731,38684271:268039 -k1,15901:25257855,38684271:268039 -k1,15901:26626899,38684271:268039 -k1,15901:27577823,38684271:268039 -(1,15901:27577823,38684271:0,452978,122846 -r1,15910:29342936,38684271:1765113,575824,122846 -k1,15901:27577823,38684271:-1765113 -) -(1,15901:27577823,38684271:1765113,452978,122846 -k1,15901:27577823,38684271:3277 -h1,15901:29339659,38684271:0,411205,112570 -) -k1,15901:29784645,38684271:268039 -k1,15901:30680519,38684271:268039 -k1,15901:32583029,38684271:0 -) -(1,15903:6630773,39525759:25952256,505283,134348 -k1,15901:8109243,39525759:193964 -k1,15901:10923336,39525759:193964 -k1,15901:11473160,39525759:193964 -k1,15901:12768129,39525759:193964 -k1,15901:15389547,39525759:193964 -(1,15901:15389547,39525759:0,452978,122846 -r1,15910:20320067,39525759:4930520,575824,122846 -k1,15901:15389547,39525759:-4930520 -) -(1,15901:15389547,39525759:4930520,452978,122846 -g1,15901:17503095,39525759 -g1,15901:18206519,39525759 -h1,15901:20316790,39525759:0,411205,112570 -) -k1,15901:20514031,39525759:193964 -k1,15901:23393005,39525759:193964 -k1,15901:24606054,39525759:193964 -k1,15901:25901023,39525759:193964 -k1,15901:30718552,39525759:193964 -k1,15901:31563944,39525759:193964 -k1,15901:32583029,39525759:0 -) -(1,15903:6630773,40367247:25952256,505283,7863 -g1,15901:8575881,40367247 -k1,15903:32583029,40367247:24007148 -g1,15903:32583029,40367247 -) -(1,15904:6630773,42458507:25952256,564462,12975 -(1,15904:6630773,42458507:2450326,534184,12975 -g1,15904:6630773,42458507 -g1,15904:9081099,42458507 -) -g1,15904:11275507,42458507 -g1,15904:12842735,42458507 -k1,15904:32583028,42458507:18787268 -g1,15904:32583028,42458507 -) -(1,15909:6630773,43693211:25952256,513147,126483 -k1,15908:8471445,43693211:224554 -k1,15908:9887445,43693211:224555 -k1,15908:10952826,43693211:224554 -k1,15908:13079890,43693211:224554 -k1,15908:14296005,43693211:224555 -k1,15908:16896239,43693211:224554 -k1,15908:18192963,43693211:224555 -k1,15908:19797705,43693211:224554 -k1,15908:21801561,43693211:224554 -k1,15908:24788459,43693211:224555 -k1,15908:27882179,43693211:224554 -k1,15908:28766025,43693211:224554 -k1,15908:30009665,43693211:224555 -k1,15908:31685186,43693211:224554 -k1,15908:32583029,43693211:0 -) -(1,15909:6630773,44534699:25952256,505283,126483 -k1,15908:8778219,44534699:282947 -k1,15908:11930332,44534699:282947 -k1,15908:12829316,44534699:282946 -k1,15908:13468123,44534699:282947 -k1,15908:15028367,44534699:282947 -k1,15908:16814710,44534699:282947 -k1,15908:18116741,44534699:282946 -(1,15908:18116741,44534699:0,452978,115847 -r1,15910:19881854,44534699:1765113,568825,115847 -k1,15908:18116741,44534699:-1765113 -) -(1,15908:18116741,44534699:1765113,452978,115847 -k1,15908:18116741,44534699:3277 -h1,15908:19878577,44534699:0,411205,112570 -) -k1,15908:20164801,44534699:282947 -k1,15908:23374585,44534699:282947 -k1,15908:24729701,44534699:282947 -k1,15908:26388249,44534699:282947 -k1,15908:29540361,44534699:282946 -k1,15908:31107814,44534699:282947 -k1,15908:32583029,44534699:0 -) -(1,15909:6630773,45376187:25952256,505283,134348 -k1,15908:7658678,45376187:257202 -k1,15908:9582461,45376187:257202 -k1,15908:11860138,45376187:257202 -k1,15908:13308785,45376187:257202 -k1,15908:13921847,45376187:257202 -k1,15908:17403420,45376187:257202 -k1,15908:19164019,45376187:257203 -k1,15908:20887917,45376187:257202 -(1,15908:20887917,45376187:0,452978,115847 -r1,15910:22653030,45376187:1765113,568825,115847 -k1,15908:20887917,45376187:-1765113 -) -(1,15908:20887917,45376187:1765113,452978,115847 -k1,15908:20887917,45376187:3277 -h1,15908:22649753,45376187:0,411205,112570 -) -k1,15908:22910232,45376187:257202 -k1,15908:24358879,45376187:257202 -(1,15908:24358879,45376187:0,459977,115847 -r1,15910:25772280,45376187:1413401,575824,115847 -k1,15908:24358879,45376187:-1413401 -) -(1,15908:24358879,45376187:1413401,459977,115847 -k1,15908:24358879,45376187:3277 -h1,15908:25769003,45376187:0,411205,112570 -) -k1,15908:26029482,45376187:257202 -k1,15908:29501880,45376187:257202 -k1,15908:31591469,45376187:257202 -k1,15908:32583029,45376187:0 -) -] -(1,15910:32583029,45706769:0,0,0 -g1,15910:32583029,45706769 -) -) -] -(1,15910:6630773,47279633:25952256,0,0 -h1,15910:6630773,47279633:25952256,0,0 -) -] -(1,15910:4262630,4025873:0,0,0 -[1,15910:-473656,4025873:0,0,0 -(1,15910:-473656,-710413:0,0,0 -(1,15910:-473656,-710413:0,0,0 -g1,15910:-473656,-710413 -) -g1,15910:-473656,-710413 -) -] -) -] -!25593 -}308 -Input:2573:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2574:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2575:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2576:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2577:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2578:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2579:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2580:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2581:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2582:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!932 -{309 -[1,15989:4262630,47279633:28320399,43253760,0 -(1,15989:4262630,4025873:0,0,0 -[1,15989:-473656,4025873:0,0,0 -(1,15989:-473656,-710413:0,0,0 -(1,15989:-473656,-644877:0,0,0 -k1,15989:-473656,-644877:-65536 -) -(1,15989:-473656,4736287:0,0,0 -k1,15989:-473656,4736287:5209943 -) -g1,15989:-473656,-710413 -) -] -) -[1,15989:6630773,47279633:25952256,43253760,0 -[1,15989:6630773,4812305:25952256,786432,0 -(1,15989:6630773,4812305:25952256,513147,134348 -(1,15989:6630773,4812305:25952256,513147,134348 -g1,15989:3078558,4812305 -[1,15989:3078558,4812305:0,0,0 -(1,15989:3078558,2439708:0,1703936,0 -k1,15989:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,15989:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,15989:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,15989:3078558,4812305:0,0,0 -(1,15989:3078558,2439708:0,1703936,0 -g1,15989:29030814,2439708 -g1,15989:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,15989:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,15989:37855564,2439708:1179648,16384,0 -) -) -k1,15989:3078556,2439708:-34777008 -) -] -[1,15989:3078558,4812305:0,0,0 -(1,15989:3078558,49800853:0,16384,2228224 -k1,15989:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,15989:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,15989:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,15989:3078558,4812305:0,0,0 -(1,15989:3078558,49800853:0,16384,2228224 -g1,15989:29030814,49800853 -g1,15989:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,15989:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,15989:37855564,49800853:1179648,16384,0 -) -) -k1,15989:3078556,49800853:-34777008 -) -] -g1,15989:6630773,4812305 -k1,15989:25712890,4812305:17886740 -g1,15989:29057847,4812305 -g1,15989:29873114,4812305 -) -) -] -[1,15989:6630773,45706769:25952256,40108032,0 -(1,15989:6630773,45706769:25952256,40108032,0 -(1,15989:6630773,45706769:0,0,0 -g1,15989:6630773,45706769 -) -[1,15989:6630773,45706769:25952256,40108032,0 -(1,15909:6630773,6254097:25952256,513147,126483 -k1,15908:9595458,6254097:261980 -k1,15908:10929607,6254097:261980 -k1,15908:14496568,6254097:261980 -k1,15908:16023393,6254097:261980 -k1,15908:16944665,6254097:261980 -k1,15908:19109156,6254097:261981 -k1,15908:22155105,6254097:261980 -k1,15908:23364736,6254097:261980 -k1,15908:25323443,6254097:261980 -k1,15908:26757862,6254097:261980 -k1,15908:30235038,6254097:261980 -k1,15908:31450567,6254097:261980 -k1,15908:32583029,6254097:0 -) -(1,15909:6630773,7095585:25952256,513147,134348 -k1,15908:9499484,7095585:199430 -k1,15908:10314951,7095585:199429 -k1,15908:12164578,7095585:199430 -k1,15908:14151174,7095585:199429 -k1,15908:15369689,7095585:199430 -(1,15908:15369689,7095585:0,452978,115847 -r1,15989:17134802,7095585:1765113,568825,115847 -k1,15908:15369689,7095585:-1765113 -) -(1,15908:15369689,7095585:1765113,452978,115847 -k1,15908:15369689,7095585:3277 -h1,15908:17131525,7095585:0,411205,112570 -) -k1,15908:17334231,7095585:199429 -k1,15908:20320907,7095585:199430 -k1,15908:21711781,7095585:199429 -k1,15908:23191129,7095585:199430 -k1,15908:24766159,7095585:199429 -k1,15908:26657729,7095585:199430 -k1,15908:29848877,7095585:199429 -k1,15908:30995958,7095585:199430 -(1,15908:30995958,7095585:0,459977,115847 -r1,15989:32409359,7095585:1413401,575824,115847 -k1,15908:30995958,7095585:-1413401 -) -(1,15908:30995958,7095585:1413401,459977,115847 -k1,15908:30995958,7095585:3277 -h1,15908:32406082,7095585:0,411205,112570 -) -k1,15908:32583029,7095585:0 -) -(1,15909:6630773,7937073:25952256,513147,134348 -g1,15908:7783551,7937073 -g1,15908:9288913,7937073 -g1,15908:12332405,7937073 -g1,15908:14019957,7937073 -g1,15908:14980714,7937073 -g1,15908:18232610,7937073 -g1,15908:19762220,7937073 -g1,15908:21907868,7937073 -g1,15908:23098657,7937073 -g1,15908:25679464,7937073 -g1,15908:27070138,7937073 -g1,15908:28782593,7937073 -g1,15908:29597860,7937073 -k1,15909:32583029,7937073:2396656 -g1,15909:32583029,7937073 -) -(1,15910:6630773,9564993:25952256,513147,11795 -(1,15910:6630773,9564993:2809528,485622,11795 -g1,15910:6630773,9564993 -g1,15910:9440301,9564993 -) -g1,15910:11435217,9564993 -g1,15910:15161594,9564993 -g1,15910:16007663,9564993 -k1,15910:32583029,9564993:16103507 -g1,15910:32583029,9564993 -) -(1,15913:6630773,10799697:25952256,513147,134348 -k1,15912:8969607,10799697:270518 -k1,15912:10344407,10799697:270518 -k1,15912:11362690,10799697:270517 -k1,15912:14465019,10799697:270518 -k1,15912:15351575,10799697:270518 -k1,15912:16036864,10799697:270446 -k1,15912:17373653,10799697:270518 -k1,15912:19019772,10799697:270518 -k1,15912:21848816,10799697:270518 -k1,15912:25094013,10799697:270518 -k1,15912:27560641,10799697:270517 -k1,15912:29225110,10799697:270518 -k1,15912:30514713,10799697:270518 -k1,15912:32583029,10799697:0 -) -(1,15913:6630773,11641185:25952256,513147,134348 -k1,15912:7517040,11641185:226975 -k1,15912:11064725,11641185:226976 -k1,15912:13673278,11641185:226975 -k1,15912:16020343,11641185:226975 -k1,15912:17319488,11641185:226976 -k1,15912:18832279,11641185:226975 -k1,15912:21473600,11641185:226975 -k1,15912:22386738,11641185:226976 -k1,15912:24809824,11641185:226975 -k1,15912:28348989,11641185:226975 -k1,15912:29595050,11641185:226976 -k1,15912:31145824,11641185:226947 -k1,15912:32583029,11641185:0 -) -(1,15913:6630773,12482673:25952256,505283,134348 -k1,15912:8569864,12482673:166997 -k1,15912:9928307,12482673:166998 -k1,15912:11670134,12482673:166997 -k1,15912:15764705,12482673:166998 -k1,15912:16617864,12482673:166997 -k1,15912:20751756,12482673:166998 -k1,15912:23734835,12482673:166997 -k1,15912:24918296,12482673:166998 -k1,15912:26519221,12482673:166997 -k1,15912:27483137,12482673:166998 -k1,15912:30847636,12482673:166997 -k1,15912:32583029,12482673:0 -) -(1,15913:6630773,13324161:25952256,513147,134348 -k1,15912:7423312,13324161:220410 -k1,15912:8215850,13324161:220409 -k1,15912:9008389,13324161:220410 -k1,15912:9800928,13324161:220410 -k1,15912:10593466,13324161:220409 -k1,15912:11386005,13324161:220410 -k1,15912:12178544,13324161:220410 -k1,15912:12971082,13324161:220409 -k1,15912:13763621,13324161:220410 -k1,15912:14645288,13324161:220409 -k1,15912:15438483,13324161:220410 -k1,15912:16288039,13324161:220410 -k1,15912:17185435,13324161:220409 -k1,15912:17950449,13324161:220410 -k1,15912:19362304,13324161:220410 -k1,15912:19941829,13324161:220388 -k1,15912:20848401,13324161:220410 -k1,15912:23660759,13324161:220409 -k1,15912:25374735,13324161:220410 -k1,15912:26281307,13324161:220410 -(1,15912:26281307,13324161:0,452978,115847 -r1,15989:29453267,13324161:3171960,568825,115847 -k1,15912:26281307,13324161:-3171960 -) -(1,15912:26281307,13324161:3171960,452978,115847 -k1,15912:26281307,13324161:3277 -h1,15912:29449990,13324161:0,411205,112570 -) -k1,15912:29673676,13324161:220409 -k1,15912:30841737,13324161:220410 -k1,15912:32583029,13324161:0 -) -(1,15913:6630773,14165649:25952256,513147,134348 -g1,15912:7512887,14165649 -(1,15912:7512887,14165649:0,452978,115847 -r1,15989:10684847,14165649:3171960,568825,115847 -k1,15912:7512887,14165649:-3171960 -) -(1,15912:7512887,14165649:3171960,452978,115847 -k1,15912:7512887,14165649:3277 -h1,15912:10681570,14165649:0,411205,112570 -) -g1,15912:10884076,14165649 -g1,15912:12030956,14165649 -g1,15912:14091407,14165649 -g1,15912:14973521,14165649 -(1,15912:14973521,14165649:0,452978,115847 -r1,15989:18145481,14165649:3171960,568825,115847 -k1,15912:14973521,14165649:-3171960 -) -(1,15912:14973521,14165649:3171960,452978,115847 -k1,15912:14973521,14165649:3277 -h1,15912:18142204,14165649:0,411205,112570 -) -g1,15912:18344710,14165649 -g1,15912:19491590,14165649 -g1,15912:20709904,14165649 -g1,15912:23779610,14165649 -g1,15912:26762808,14165649 -g1,15912:28433320,14165649 -k1,15913:32583029,14165649:2919598 -g1,15913:32583029,14165649 -) -(1,15916:6630773,15007137:25952256,513147,134348 -h1,15914:6630773,15007137:983040,0,0 -k1,15914:8994478,15007137:183978 -k1,15914:10171983,15007137:183979 -k1,15914:11015253,15007137:183978 -k1,15914:12815350,15007137:183979 -k1,15914:15067644,15007137:183978 -k1,15914:17389407,15007137:183979 -k1,15914:18224813,15007137:183978 -k1,15914:18823619,15007137:183963 -k1,15914:20111880,15007137:183979 -k1,15914:21043624,15007137:183978 -k1,15914:24019437,15007137:183979 -k1,15914:24951181,15007137:183978 -k1,15914:27164155,15007137:183979 -(1,15914:27164155,15007137:0,452978,115847 -r1,15989:29984404,15007137:2820249,568825,115847 -k1,15914:27164155,15007137:-2820249 -) -(1,15914:27164155,15007137:2820249,452978,115847 -k1,15914:27164155,15007137:3277 -h1,15914:29981127,15007137:0,411205,112570 -) -k1,15914:30168382,15007137:183978 -k1,15914:30965123,15007137:183979 -k1,15914:32168186,15007137:183978 -k1,15916:32583029,15007137:0 -) -(1,15916:6630773,15848625:25952256,513147,126483 -k1,15914:9417817,15848625:193129 -k1,15915:11411221,15848625:193130 -k1,15915:12623435,15848625:193129 -k1,15915:15302346,15848625:193130 -k1,15915:16154767,15848625:193129 -k1,15915:18294316,15848625:193130 -k1,15915:21445085,15848625:193129 -k1,15915:22506567,15848625:193130 -k1,15915:24036630,15848625:193129 -k1,15915:25778376,15848625:193130 -k1,15915:26622933,15848625:193129 -k1,15915:28896176,15848625:193130 -k1,15915:30728360,15848625:193129 -k1,15915:32583029,15848625:0 -) -(1,15916:6630773,16690113:25952256,505283,122846 -k1,15915:7664474,16690113:224331 -k1,15915:9397444,16690113:224331 -k1,15915:11863762,16690113:224331 -k1,15915:14877960,16690113:224330 -(1,15915:14877960,16690113:0,452978,115847 -r1,15989:17698209,16690113:2820249,568825,115847 -k1,15915:14877960,16690113:-2820249 -) -(1,15915:14877960,16690113:2820249,452978,115847 -k1,15915:14877960,16690113:3277 -h1,15915:17694932,16690113:0,411205,112570 -) -k1,15915:17922540,16690113:224331 -k1,15915:20487817,16690113:224331 -k1,15915:21068008,16690113:224331 -k1,15915:24267018,16690113:224331 -k1,15915:26642896,16690113:224331 -k1,15915:27820775,16690113:224330 -k1,15915:29149388,16690113:224331 -k1,15915:30466204,16690113:224331 -(1,15915:30466204,16690113:0,452978,122846 -r1,15989:32583029,16690113:2116825,575824,122846 -k1,15915:30466204,16690113:-2116825 -) -(1,15915:30466204,16690113:2116825,452978,122846 -k1,15915:30466204,16690113:3277 -h1,15915:32579752,16690113:0,411205,112570 -) -k1,15915:32583029,16690113:0 -) -(1,15916:6630773,17531601:25952256,513147,134348 -g1,15915:7481430,17531601 -g1,15915:8946815,17531601 -g1,15915:10165129,17531601 -g1,15915:12432674,17531601 -g1,15915:15993900,17531601 -g1,15915:16548989,17531601 -g1,15915:18442979,17531601 -g1,15915:21616887,17531601 -g1,15915:25001166,17531601 -g1,15915:25816433,17531601 -g1,15915:27218903,17531601 -g1,15915:30079549,17531601 -(1,15915:30079549,17531601:0,452978,115847 -r1,15989:32196374,17531601:2116825,568825,115847 -k1,15915:30079549,17531601:-2116825 -) -(1,15915:30079549,17531601:2116825,452978,115847 -k1,15915:30079549,17531601:3277 -h1,15915:32193097,17531601:0,411205,112570 -) -k1,15916:32583029,17531601:212985 -g1,15916:32583029,17531601 -) -v1,15918:6630773,18717016:0,393216,0 -(1,15941:6630773,28478858:25952256,10155058,196608 -g1,15941:6630773,28478858 -g1,15941:6630773,28478858 -g1,15941:6434165,28478858 -(1,15941:6434165,28478858:0,10155058,196608 -r1,15989:32779637,28478858:26345472,10351666,196608 -k1,15941:6434165,28478858:-26345472 -) -(1,15941:6434165,28478858:26345472,10155058,196608 -[1,15941:6630773,28478858:25952256,9958450,0 -(1,15920:6630773,18924634:25952256,404226,107478 -(1,15919:6630773,18924634:0,0,0 -g1,15919:6630773,18924634 -g1,15919:6630773,18924634 -g1,15919:6303093,18924634 -(1,15919:6303093,18924634:0,0,0 -) -g1,15919:6630773,18924634 -) -k1,15920:6630773,18924634:0 -k1,15920:6630773,18924634:0 -h1,15920:11689104,18924634:0,0,0 -k1,15920:32583028,18924634:20893924 -g1,15920:32583028,18924634 -) -(1,15924:6630773,19656348:25952256,404226,76021 -(1,15922:6630773,19656348:0,0,0 -g1,15922:6630773,19656348 -g1,15922:6630773,19656348 -g1,15922:6303093,19656348 -(1,15922:6303093,19656348:0,0,0 -) -g1,15922:6630773,19656348 -) -g1,15924:7579210,19656348 -g1,15924:8843793,19656348 -h1,15924:9792230,19656348:0,0,0 -k1,15924:32583030,19656348:22790800 -g1,15924:32583030,19656348 -) -(1,15926:6630773,20977886:25952256,404226,107478 -(1,15925:6630773,20977886:0,0,0 -g1,15925:6630773,20977886 -g1,15925:6630773,20977886 -g1,15925:6303093,20977886 -(1,15925:6303093,20977886:0,0,0 -) -g1,15925:6630773,20977886 -) -k1,15926:6630773,20977886:0 -g1,15926:13585979,20977886 -g1,15926:15482853,20977886 -g1,15926:16115145,20977886 -h1,15926:17695874,20977886:0,0,0 -k1,15926:32583029,20977886:14887155 -g1,15926:32583029,20977886 -) -(1,15940:6630773,21709600:25952256,404226,107478 -(1,15928:6630773,21709600:0,0,0 -g1,15928:6630773,21709600 -g1,15928:6630773,21709600 -g1,15928:6303093,21709600 -(1,15928:6303093,21709600:0,0,0 -) -g1,15928:6630773,21709600 -) -g1,15940:7579210,21709600 -g1,15940:7895356,21709600 -g1,15940:9159939,21709600 -g1,15940:12637542,21709600 -g1,15940:12953688,21709600 -g1,15940:13269834,21709600 -g1,15940:13585980,21709600 -g1,15940:13902126,21709600 -g1,15940:14218272,21709600 -g1,15940:14534418,21709600 -g1,15940:14850564,21709600 -g1,15940:18328167,21709600 -g1,15940:18644313,21709600 -g1,15940:18960459,21709600 -g1,15940:19276605,21709600 -g1,15940:19592751,21709600 -g1,15940:19908897,21709600 -g1,15940:20225043,21709600 -g1,15940:20541189,21709600 -g1,15940:25599520,21709600 -g1,15940:25915666,21709600 -g1,15940:26231812,21709600 -h1,15940:31290143,21709600:0,0,0 -k1,15940:32583029,21709600:1292886 -g1,15940:32583029,21709600 -) -(1,15940:6630773,22375778:25952256,404226,107478 -h1,15940:6630773,22375778:0,0,0 -g1,15940:7579210,22375778 -g1,15940:7895356,22375778 -g1,15940:9159939,22375778 -g1,15940:14534416,22375778 -g1,15940:14850562,22375778 -g1,15940:20225039,22375778 -g1,15940:20541185,22375778 -g1,15940:25915662,22375778 -g1,15940:26231808,22375778 -h1,15940:29393265,22375778:0,0,0 -k1,15940:32583029,22375778:3189764 -g1,15940:32583029,22375778 -) -(1,15940:6630773,23041956:25952256,404226,107478 -h1,15940:6630773,23041956:0,0,0 -g1,15940:7579210,23041956 -g1,15940:7895356,23041956 -g1,15940:9159939,23041956 -g1,15940:12953687,23041956 -g1,15940:13269833,23041956 -g1,15940:13585979,23041956 -g1,15940:13902125,23041956 -g1,15940:14218271,23041956 -g1,15940:14534417,23041956 -g1,15940:14850563,23041956 -g1,15940:18328166,23041956 -g1,15940:18644312,23041956 -g1,15940:18960458,23041956 -g1,15940:19276604,23041956 -g1,15940:19592750,23041956 -g1,15940:19908896,23041956 -g1,15940:20225042,23041956 -g1,15940:20541188,23041956 -g1,15940:24334936,23041956 -g1,15940:24651082,23041956 -g1,15940:24967228,23041956 -g1,15940:25283374,23041956 -g1,15940:25599520,23041956 -g1,15940:25915666,23041956 -g1,15940:26231812,23041956 -h1,15940:30341706,23041956:0,0,0 -k1,15940:32583029,23041956:2241323 -g1,15940:32583029,23041956 -) -(1,15940:6630773,23708134:25952256,404226,107478 -h1,15940:6630773,23708134:0,0,0 -g1,15940:7579210,23708134 -g1,15940:9159939,23708134 -g1,15940:14534416,23708134 -g1,15940:14850562,23708134 -g1,15940:20541185,23708134 -g1,15940:26231808,23708134 -h1,15940:31606285,23708134:0,0,0 -k1,15940:32583029,23708134:976744 -g1,15940:32583029,23708134 -) -(1,15940:6630773,24374312:25952256,404226,107478 -h1,15940:6630773,24374312:0,0,0 -g1,15940:7579210,24374312 -g1,15940:9159939,24374312 -g1,15940:14850562,24374312 -g1,15940:18960456,24374312 -g1,15940:19276602,24374312 -g1,15940:19592748,24374312 -g1,15940:19908894,24374312 -g1,15940:20225040,24374312 -g1,15940:20541186,24374312 -g1,15940:24967226,24374312 -g1,15940:25283372,24374312 -g1,15940:25599518,24374312 -g1,15940:25915664,24374312 -g1,15940:26231810,24374312 -h1,15940:30341704,24374312:0,0,0 -k1,15940:32583029,24374312:2241325 -g1,15940:32583029,24374312 -) -(1,15940:6630773,25040490:25952256,404226,107478 -h1,15940:6630773,25040490:0,0,0 -g1,15940:7579210,25040490 -g1,15940:9159939,25040490 -g1,15940:13585979,25040490 -g1,15940:13902125,25040490 -g1,15940:14218271,25040490 -g1,15940:14534417,25040490 -g1,15940:14850563,25040490 -g1,15940:19276603,25040490 -g1,15940:19592749,25040490 -g1,15940:19908895,25040490 -g1,15940:20225041,25040490 -g1,15940:20541187,25040490 -g1,15940:24651081,25040490 -g1,15940:24967227,25040490 -g1,15940:25283373,25040490 -g1,15940:25599519,25040490 -g1,15940:25915665,25040490 -g1,15940:26231811,25040490 -h1,15940:30341705,25040490:0,0,0 -k1,15940:32583029,25040490:2241324 -g1,15940:32583029,25040490 -) -(1,15940:6630773,25706668:25952256,404226,76021 -h1,15940:6630773,25706668:0,0,0 -g1,15940:7579210,25706668 -g1,15940:9159939,25706668 -g1,15940:13585979,25706668 -g1,15940:13902125,25706668 -g1,15940:14218271,25706668 -g1,15940:14534417,25706668 -g1,15940:14850563,25706668 -g1,15940:19276603,25706668 -g1,15940:19592749,25706668 -g1,15940:19908895,25706668 -g1,15940:20225041,25706668 -g1,15940:20541187,25706668 -g1,15940:24967227,25706668 -g1,15940:25283373,25706668 -g1,15940:25599519,25706668 -g1,15940:25915665,25706668 -g1,15940:26231811,25706668 -h1,15940:29077122,25706668:0,0,0 -k1,15940:32583029,25706668:3505907 -g1,15940:32583029,25706668 -) -(1,15940:6630773,26372846:25952256,404226,107478 -h1,15940:6630773,26372846:0,0,0 -g1,15940:7579210,26372846 -g1,15940:9159939,26372846 -g1,15940:13269833,26372846 -g1,15940:13585979,26372846 -g1,15940:13902125,26372846 -g1,15940:14218271,26372846 -g1,15940:14534417,26372846 -g1,15940:14850563,26372846 -g1,15940:19592749,26372846 -g1,15940:19908895,26372846 -g1,15940:20225041,26372846 -g1,15940:20541187,26372846 -g1,15940:25599518,26372846 -g1,15940:25915664,26372846 -g1,15940:26231810,26372846 -h1,15940:30973995,26372846:0,0,0 -k1,15940:32583029,26372846:1609034 -g1,15940:32583029,26372846 -) -(1,15940:6630773,27039024:25952256,404226,107478 -h1,15940:6630773,27039024:0,0,0 -g1,15940:7579210,27039024 -g1,15940:9159939,27039024 -g1,15940:14218270,27039024 -g1,15940:14534416,27039024 -g1,15940:14850562,27039024 -g1,15940:19908893,27039024 -g1,15940:20225039,27039024 -g1,15940:20541185,27039024 -g1,15940:25599516,27039024 -g1,15940:25915662,27039024 -g1,15940:26231808,27039024 -h1,15940:30973993,27039024:0,0,0 -k1,15940:32583029,27039024:1609036 -g1,15940:32583029,27039024 -) -(1,15940:6630773,27705202:25952256,404226,107478 -h1,15940:6630773,27705202:0,0,0 -g1,15940:7579210,27705202 -g1,15940:9159939,27705202 -g1,15940:14534416,27705202 -g1,15940:14850562,27705202 -g1,15940:20225039,27705202 -g1,15940:20541185,27705202 -g1,15940:25915662,27705202 -g1,15940:26231808,27705202 -h1,15940:31290139,27705202:0,0,0 -k1,15940:32583029,27705202:1292890 -g1,15940:32583029,27705202 -) -(1,15940:6630773,28371380:25952256,404226,107478 -h1,15940:6630773,28371380:0,0,0 -g1,15940:7579210,28371380 -g1,15940:9159939,28371380 -g1,15940:14218270,28371380 -g1,15940:14534416,28371380 -g1,15940:14850562,28371380 -g1,15940:19908893,28371380 -g1,15940:20225039,28371380 -g1,15940:20541185,28371380 -h1,15940:24334933,28371380:0,0,0 -k1,15940:32583029,28371380:8248096 -g1,15940:32583029,28371380 -) -] -) -g1,15941:32583029,28478858 -g1,15941:6630773,28478858 -g1,15941:6630773,28478858 -g1,15941:32583029,28478858 -g1,15941:32583029,28478858 -) -h1,15941:6630773,28675466:0,0,0 -(1,15945:6630773,30036191:25952256,513147,11795 -h1,15944:6630773,30036191:983040,0,0 -g1,15944:8642072,30036191 -g1,15944:11275308,30036191 -g1,15944:12493622,30036191 -g1,15944:14016678,30036191 -g1,15944:16226552,30036191 -g1,15944:17373432,30036191 -g1,15944:17928521,30036191 -g1,15944:19743868,30036191 -g1,15944:23025255,30036191 -g1,15944:24092836,30036191 -k1,15945:32583029,30036191:7224037 -g1,15945:32583029,30036191 -) -v1,15947:6630773,31221606:0,393216,0 -(1,15966:6630773,38220694:25952256,7392304,196608 -g1,15966:6630773,38220694 -g1,15966:6630773,38220694 -g1,15966:6434165,38220694 -(1,15966:6434165,38220694:0,7392304,196608 -r1,15989:32779637,38220694:26345472,7588912,196608 -k1,15966:6434165,38220694:-26345472 -) -(1,15966:6434165,38220694:26345472,7392304,196608 -[1,15966:6630773,38220694:25952256,7195696,0 -(1,15949:6630773,31429224:25952256,404226,107478 -(1,15948:6630773,31429224:0,0,0 -g1,15948:6630773,31429224 -g1,15948:6630773,31429224 -g1,15948:6303093,31429224 -(1,15948:6303093,31429224:0,0,0 -) -g1,15948:6630773,31429224 -) -k1,15949:6630773,31429224:0 -h1,15949:12005250,31429224:0,0,0 -k1,15949:32583030,31429224:20577780 -g1,15949:32583030,31429224 -) -(1,15956:6630773,32160938:25952256,404226,82312 -(1,15951:6630773,32160938:0,0,0 -g1,15951:6630773,32160938 -g1,15951:6630773,32160938 -g1,15951:6303093,32160938 -(1,15951:6303093,32160938:0,0,0 -) -g1,15951:6630773,32160938 -) -g1,15956:7579210,32160938 -g1,15956:7895356,32160938 -g1,15956:8211502,32160938 -g1,15956:8527648,32160938 -g1,15956:8843794,32160938 -g1,15956:9159940,32160938 -g1,15956:9476086,32160938 -k1,15956:9476086,32160938:0 -h1,15956:10740669,32160938:0,0,0 -k1,15956:32583029,32160938:21842360 -g1,15956:32583029,32160938 -) -(1,15956:6630773,32827116:25952256,404226,9436 -h1,15956:6630773,32827116:0,0,0 -g1,15956:7579210,32827116 -g1,15956:8843793,32827116 -g1,15956:9159939,32827116 -g1,15956:9476085,32827116 -g1,15956:9792231,32827116 -h1,15956:10740668,32827116:0,0,0 -k1,15956:32583028,32827116:21842360 -g1,15956:32583028,32827116 -) -(1,15956:6630773,33493294:25952256,388497,107478 -h1,15956:6630773,33493294:0,0,0 -g1,15956:7579210,33493294 -g1,15956:9476084,33493294 -g1,15956:9792230,33493294 -g1,15956:10108376,33493294 -h1,15956:10740667,33493294:0,0,0 -k1,15956:32583029,33493294:21842362 -g1,15956:32583029,33493294 -) -(1,15956:6630773,34159472:25952256,404226,9436 -h1,15956:6630773,34159472:0,0,0 -g1,15956:7579210,34159472 -g1,15956:9159939,34159472 -g1,15956:9476085,34159472 -g1,15956:9792231,34159472 -h1,15956:10740668,34159472:0,0,0 -k1,15956:32583028,34159472:21842360 -g1,15956:32583028,34159472 -) -(1,15958:6630773,35481010:25952256,404226,107478 -(1,15957:6630773,35481010:0,0,0 -g1,15957:6630773,35481010 -g1,15957:6630773,35481010 -g1,15957:6303093,35481010 -(1,15957:6303093,35481010:0,0,0 -) -g1,15957:6630773,35481010 -) -k1,15958:6630773,35481010:0 -h1,15958:12321396,35481010:0,0,0 -k1,15958:32583028,35481010:20261632 -g1,15958:32583028,35481010 -) -(1,15965:6630773,36212724:25952256,404226,82312 -(1,15960:6630773,36212724:0,0,0 -g1,15960:6630773,36212724 -g1,15960:6630773,36212724 -g1,15960:6303093,36212724 -(1,15960:6303093,36212724:0,0,0 -) -g1,15960:6630773,36212724 -) -g1,15965:7579210,36212724 -g1,15965:7895356,36212724 -g1,15965:8211502,36212724 -g1,15965:8527648,36212724 -g1,15965:8843794,36212724 -g1,15965:9159940,36212724 -g1,15965:9476086,36212724 -k1,15965:9476086,36212724:0 -h1,15965:10740669,36212724:0,0,0 -k1,15965:32583029,36212724:21842360 -g1,15965:32583029,36212724 -) -(1,15965:6630773,36878902:25952256,404226,9436 -h1,15965:6630773,36878902:0,0,0 -g1,15965:7579210,36878902 -g1,15965:8843793,36878902 -g1,15965:9159939,36878902 -g1,15965:9476085,36878902 -g1,15965:9792231,36878902 -h1,15965:10740668,36878902:0,0,0 -k1,15965:32583028,36878902:21842360 -g1,15965:32583028,36878902 -) -(1,15965:6630773,37545080:25952256,388497,107478 -h1,15965:6630773,37545080:0,0,0 -g1,15965:7579210,37545080 -g1,15965:9476084,37545080 -g1,15965:9792230,37545080 -g1,15965:10108376,37545080 -g1,15965:10424522,37545080 -h1,15965:10740668,37545080:0,0,0 -k1,15965:32583028,37545080:21842360 -g1,15965:32583028,37545080 -) -(1,15965:6630773,38211258:25952256,404226,9436 -h1,15965:6630773,38211258:0,0,0 -g1,15965:7579210,38211258 -g1,15965:9159939,38211258 -g1,15965:9476085,38211258 -g1,15965:9792231,38211258 -g1,15965:10108377,38211258 -g1,15965:10424523,38211258 -h1,15965:10740669,38211258:0,0,0 -k1,15965:32583029,38211258:21842360 -g1,15965:32583029,38211258 -) -] -) -g1,15966:32583029,38220694 -g1,15966:6630773,38220694 -g1,15966:6630773,38220694 -g1,15966:32583029,38220694 -g1,15966:32583029,38220694 -) -h1,15966:6630773,38417302:0,0,0 -(1,15970:6630773,39778027:25952256,513147,126483 -h1,15969:6630773,39778027:983040,0,0 -k1,15969:9559231,39778027:207403 -k1,15969:13179094,39778027:207403 -k1,15969:14002535,39778027:207403 -k1,15969:14624773,39778027:207395 -k1,15969:15936458,39778027:207403 -k1,15969:18515609,39778027:207403 -k1,15969:19078872,39778027:207403 -k1,15969:23512036,39778027:207403 -k1,15969:26809462,39778027:207403 -k1,15969:27778393,39778027:207403 -k1,15969:28756499,39778027:207403 -(1,15969:28756499,39778027:0,452978,115847 -r1,15989:30521612,39778027:1765113,568825,115847 -k1,15969:28756499,39778027:-1765113 -) -(1,15969:28756499,39778027:1765113,452978,115847 -k1,15969:28756499,39778027:3277 -h1,15969:30518335,39778027:0,411205,112570 -) -k1,15969:30729015,39778027:207403 -k1,15969:32583029,39778027:0 -) -(1,15970:6630773,40619515:25952256,513147,126483 -g1,15969:8715473,40619515 -g1,15969:9676230,40619515 -g1,15969:12141039,40619515 -g1,15969:12871765,40619515 -g1,15969:14137265,40619515 -k1,15970:32583029,40619515:15493367 -g1,15970:32583029,40619515 -) -v1,15972:6630773,41804930:0,393216,0 -(1,15983:6630773,45510161:25952256,4098447,196608 -g1,15983:6630773,45510161 -g1,15983:6630773,45510161 -g1,15983:6434165,45510161 -(1,15983:6434165,45510161:0,4098447,196608 -r1,15989:32779637,45510161:26345472,4295055,196608 -k1,15983:6434165,45510161:-26345472 -) -(1,15983:6434165,45510161:26345472,4098447,196608 -[1,15983:6630773,45510161:25952256,3901839,0 -(1,15974:6630773,42012548:25952256,404226,107478 -(1,15973:6630773,42012548:0,0,0 -g1,15973:6630773,42012548 -g1,15973:6630773,42012548 -g1,15973:6303093,42012548 -(1,15973:6303093,42012548:0,0,0 -) -g1,15973:6630773,42012548 -) -k1,15974:6630773,42012548:0 -g1,15974:12321396,42012548 -g1,15974:14218270,42012548 -g1,15974:14850562,42012548 -h1,15974:16431291,42012548:0,0,0 -k1,15974:32583029,42012548:16151738 -g1,15974:32583029,42012548 -) -(1,15982:6630773,42744262:25952256,404226,82312 -(1,15976:6630773,42744262:0,0,0 -g1,15976:6630773,42744262 -g1,15976:6630773,42744262 -g1,15976:6303093,42744262 -(1,15976:6303093,42744262:0,0,0 -) -g1,15976:6630773,42744262 -) -g1,15982:7579210,42744262 -g1,15982:7895356,42744262 -g1,15982:8211502,42744262 -g1,15982:8527648,42744262 -g1,15982:8843794,42744262 -g1,15982:9159940,42744262 -g1,15982:9476086,42744262 -k1,15982:9476086,42744262:0 -h1,15982:10740669,42744262:0,0,0 -k1,15982:32583029,42744262:21842360 -g1,15982:32583029,42744262 -) -(1,15982:6630773,43410440:25952256,404226,9436 -h1,15982:6630773,43410440:0,0,0 -g1,15982:7579210,43410440 -g1,15982:8843793,43410440 -g1,15982:9159939,43410440 -g1,15982:9476085,43410440 -g1,15982:9792231,43410440 -h1,15982:10740668,43410440:0,0,0 -k1,15982:32583028,43410440:21842360 -g1,15982:32583028,43410440 -) -(1,15982:6630773,44076618:25952256,388497,107478 -h1,15982:6630773,44076618:0,0,0 -g1,15982:7579210,44076618 -g1,15982:9476084,44076618 -g1,15982:9792230,44076618 -g1,15982:10108376,44076618 -h1,15982:10740667,44076618:0,0,0 -k1,15982:32583029,44076618:21842362 -g1,15982:32583029,44076618 -) -(1,15982:6630773,44742796:25952256,404226,9436 -h1,15982:6630773,44742796:0,0,0 -g1,15982:7579210,44742796 -g1,15982:9159939,44742796 -g1,15982:9476085,44742796 -g1,15982:9792231,44742796 -h1,15982:10740668,44742796:0,0,0 -k1,15982:32583028,44742796:21842360 -g1,15982:32583028,44742796 -) -(1,15982:6630773,45408974:25952256,404226,101187 -h1,15982:6630773,45408974:0,0,0 -g1,15982:7579210,45408974 -g1,15982:9476084,45408974 -g1,15982:9792230,45408974 -h1,15982:10740667,45408974:0,0,0 -k1,15982:32583029,45408974:21842362 -g1,15982:32583029,45408974 -) -] -) -g1,15983:32583029,45510161 -g1,15983:6630773,45510161 -g1,15983:6630773,45510161 -g1,15983:32583029,45510161 -g1,15983:32583029,45510161 -) -h1,15983:6630773,45706769:0,0,0 -] -(1,15989:32583029,45706769:0,0,0 -g1,15989:32583029,45706769 -) -) -] -(1,15989:6630773,47279633:25952256,0,0 -h1,15989:6630773,47279633:25952256,0,0 -) -] -(1,15989:4262630,4025873:0,0,0 -[1,15989:-473656,4025873:0,0,0 -(1,15989:-473656,-710413:0,0,0 -(1,15989:-473656,-710413:0,0,0 -g1,15989:-473656,-710413 -) -g1,15989:-473656,-710413 -) -] -) -] -!28464 -}309 -Input:2583:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2584:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2585:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2586:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2587:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2588:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2589:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2590:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2591:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2592:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2593:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2594:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2595:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2596:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2597:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2598:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2599:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2600:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1668 -{310 -[1,16050:4262630,47279633:28320399,43253760,0 -(1,16050:4262630,4025873:0,0,0 -[1,16050:-473656,4025873:0,0,0 -(1,16050:-473656,-710413:0,0,0 -(1,16050:-473656,-644877:0,0,0 -k1,16050:-473656,-644877:-65536 -) -(1,16050:-473656,4736287:0,0,0 -k1,16050:-473656,4736287:5209943 -) -g1,16050:-473656,-710413 -) -] -) -[1,16050:6630773,47279633:25952256,43253760,0 -[1,16050:6630773,4812305:25952256,786432,0 -(1,16050:6630773,4812305:25952256,505283,11795 -(1,16050:6630773,4812305:25952256,505283,11795 -g1,16050:3078558,4812305 -[1,16050:3078558,4812305:0,0,0 -(1,16050:3078558,2439708:0,1703936,0 -k1,16050:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,16050:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,16050:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,16050:3078558,4812305:0,0,0 -(1,16050:3078558,2439708:0,1703936,0 -g1,16050:29030814,2439708 -g1,16050:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,16050:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,16050:37855564,2439708:1179648,16384,0 -) -) -k1,16050:3078556,2439708:-34777008 -) -] -[1,16050:3078558,4812305:0,0,0 -(1,16050:3078558,49800853:0,16384,2228224 -k1,16050:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,16050:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,16050:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,16050:3078558,4812305:0,0,0 -(1,16050:3078558,49800853:0,16384,2228224 -g1,16050:29030814,49800853 -g1,16050:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,16050:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,16050:37855564,49800853:1179648,16384,0 -) -) -k1,16050:3078556,49800853:-34777008 -) -] -g1,16050:6630773,4812305 -g1,16050:6630773,4812305 -g1,16050:8724648,4812305 -k1,16050:31387652,4812305:22663004 -) -) -] -[1,16050:6630773,45706769:25952256,40108032,0 -(1,16050:6630773,45706769:25952256,40108032,0 -(1,16050:6630773,45706769:0,0,0 -g1,16050:6630773,45706769 -) -[1,16050:6630773,45706769:25952256,40108032,0 -(1,15987:6630773,6254097:25952256,513147,122846 -h1,15986:6630773,6254097:983040,0,0 -k1,15986:9255743,6254097:162782 -k1,15986:12114020,6254097:162781 -(1,15986:12114020,6254097:0,452978,122846 -r1,16050:13879133,6254097:1765113,575824,122846 -k1,15986:12114020,6254097:-1765113 -) -(1,15986:12114020,6254097:1765113,452978,122846 -k1,15986:12114020,6254097:3277 -h1,15986:13875856,6254097:0,411205,112570 -) -k1,15986:14041915,6254097:162782 -k1,15986:15073048,6254097:162781 -k1,15986:16340112,6254097:162782 -k1,15986:18463730,6254097:162781 -k1,15986:19909707,6254097:162782 -k1,15986:22192579,6254097:162782 -k1,15986:24033737,6254097:162781 -(1,15986:24033737,6254097:0,452978,122846 -r1,16050:27205697,6254097:3171960,575824,122846 -k1,15986:24033737,6254097:-3171960 -) -(1,15986:24033737,6254097:3171960,452978,122846 -k1,15986:24033737,6254097:3277 -h1,15986:27202420,6254097:0,411205,112570 -) -k1,15986:27368479,6254097:162782 -k1,15986:28478911,6254097:162781 -k1,15986:30291890,6254097:162782 -k1,15987:32583029,6254097:0 -k1,15987:32583029,6254097:0 -) -v1,15989:6630773,7186665:0,393216,0 -(1,16010:6630773,13574293:25952256,6780844,196608 -g1,16010:6630773,13574293 -g1,16010:6630773,13574293 -g1,16010:6434165,13574293 -(1,16010:6434165,13574293:0,6780844,196608 -r1,16050:32779637,13574293:26345472,6977452,196608 -k1,16010:6434165,13574293:-26345472 -) -(1,16010:6434165,13574293:26345472,6780844,196608 -[1,16010:6630773,13574293:25952256,6584236,0 -(1,15991:6630773,7394283:25952256,404226,107478 -(1,15990:6630773,7394283:0,0,0 -g1,15990:6630773,7394283 -g1,15990:6630773,7394283 -g1,15990:6303093,7394283 -(1,15990:6303093,7394283:0,0,0 -) -g1,15990:6630773,7394283 -) -k1,15991:6630773,7394283:0 -g1,15991:8843794,7394283 -g1,15991:9792232,7394283 -h1,15991:10424524,7394283:0,0,0 -k1,15991:32583028,7394283:22158504 -g1,15991:32583028,7394283 -) -(1,15995:6630773,8125997:25952256,404226,76021 -(1,15993:6630773,8125997:0,0,0 -g1,15993:6630773,8125997 -g1,15993:6630773,8125997 -g1,15993:6303093,8125997 -(1,15993:6303093,8125997:0,0,0 -) -g1,15993:6630773,8125997 -) -g1,15995:7579210,8125997 -g1,15995:8843793,8125997 -h1,15995:11689104,8125997:0,0,0 -k1,15995:32583028,8125997:20893924 -g1,15995:32583028,8125997 -) -(1,15997:6630773,9447535:25952256,404226,107478 -(1,15996:6630773,9447535:0,0,0 -g1,15996:6630773,9447535 -g1,15996:6630773,9447535 -g1,15996:6303093,9447535 -(1,15996:6303093,9447535:0,0,0 -) -g1,15996:6630773,9447535 -) -k1,15997:6630773,9447535:0 -g1,15997:8843794,9447535 -g1,15997:9792232,9447535 -g1,15997:10740670,9447535 -g1,15997:12637544,9447535 -g1,15997:13269836,9447535 -h1,15997:16747439,9447535:0,0,0 -k1,15997:32583029,9447535:15835590 -g1,15997:32583029,9447535 -) -(1,16002:6630773,10179249:25952256,404226,101187 -(1,15999:6630773,10179249:0,0,0 -g1,15999:6630773,10179249 -g1,15999:6630773,10179249 -g1,15999:6303093,10179249 -(1,15999:6303093,10179249:0,0,0 -) -g1,15999:6630773,10179249 -) -g1,16002:7579210,10179249 -g1,16002:7895356,10179249 -h1,16002:10424521,10179249:0,0,0 -k1,16002:32583029,10179249:22158508 -g1,16002:32583029,10179249 -) -(1,16002:6630773,10845427:25952256,404226,9436 -h1,16002:6630773,10845427:0,0,0 -g1,16002:7579210,10845427 -h1,16002:10424521,10845427:0,0,0 -k1,16002:32583029,10845427:22158508 -g1,16002:32583029,10845427 -) -(1,16004:6630773,12166965:25952256,404226,107478 -(1,16003:6630773,12166965:0,0,0 -g1,16003:6630773,12166965 -g1,16003:6630773,12166965 -g1,16003:6303093,12166965 -(1,16003:6303093,12166965:0,0,0 -) -g1,16003:6630773,12166965 -) -k1,16004:6630773,12166965:0 -g1,16004:9476085,12166965 -g1,16004:11056814,12166965 -g1,16004:12005252,12166965 -g1,16004:13902126,12166965 -g1,16004:14534418,12166965 -g1,16004:18328167,12166965 -g1,16004:22754207,12166965 -g1,16004:23386499,12166965 -h1,16004:24651082,12166965:0,0,0 -k1,16004:32583029,12166965:7931947 -g1,16004:32583029,12166965 -) -(1,16009:6630773,12898679:25952256,404226,101187 -(1,16006:6630773,12898679:0,0,0 -g1,16006:6630773,12898679 -g1,16006:6630773,12898679 -g1,16006:6303093,12898679 -(1,16006:6303093,12898679:0,0,0 -) -g1,16006:6630773,12898679 -) -g1,16009:7579210,12898679 -g1,16009:7895356,12898679 -h1,16009:10424521,12898679:0,0,0 -k1,16009:32583029,12898679:22158508 -g1,16009:32583029,12898679 -) -(1,16009:6630773,13564857:25952256,404226,9436 -h1,16009:6630773,13564857:0,0,0 -g1,16009:7579210,13564857 -h1,16009:10424521,13564857:0,0,0 -k1,16009:32583029,13564857:22158508 -g1,16009:32583029,13564857 -) -] -) -g1,16010:32583029,13574293 -g1,16010:6630773,13574293 -g1,16010:6630773,13574293 -g1,16010:32583029,13574293 -g1,16010:32583029,13574293 -) -h1,16010:6630773,13770901:0,0,0 -(1,16014:6630773,14878779:25952256,513147,126483 -h1,16013:6630773,14878779:983040,0,0 -k1,16013:8730117,14878779:298415 -k1,16013:12118556,14878779:298416 -k1,16013:14445966,14878779:298415 -k1,16013:16690801,14878779:298416 -k1,16013:18093498,14878779:298415 -k1,16013:19139680,14878779:298416 -k1,16013:21819673,14878779:298415 -k1,16013:22734127,14878779:298416 -k1,16013:24051627,14878779:298415 -k1,16013:25673770,14878779:298316 -k1,16013:27522768,14878779:298416 -k1,16013:29738766,14878779:298415 -k1,16013:32583029,14878779:0 -) -(1,16014:6630773,15720267:25952256,513147,102891 -k1,16013:8523172,15720267:190429 -k1,16013:10329720,15720267:190430 -k1,16013:12838157,15720267:190429 -k1,16013:14522153,15720267:190430 -k1,16013:15398744,15720267:190429 -k1,16013:16907749,15720267:190421 -k1,16013:18655969,15720267:190429 -k1,16013:22289661,15720267:190430 -k1,16013:24367527,15720267:190429 -k1,16013:25662238,15720267:190429 -k1,16013:26600434,15720267:190430 -k1,16013:28076679,15720267:190429 -k1,16013:29780335,15720267:190430 -k1,16013:30622192,15720267:190429 -k1,16013:32583029,15720267:0 -) -(1,16014:6630773,16561755:25952256,505283,7863 -k1,16014:32583030,16561755:23417324 -g1,16014:32583030,16561755 -) -v1,16016:6630773,17494323:0,393216,0 -(1,16023:6630773,18509676:25952256,1408569,196608 -g1,16023:6630773,18509676 -g1,16023:6630773,18509676 -g1,16023:6434165,18509676 -(1,16023:6434165,18509676:0,1408569,196608 -r1,16050:32779637,18509676:26345472,1605177,196608 -k1,16023:6434165,18509676:-26345472 -) -(1,16023:6434165,18509676:26345472,1408569,196608 -[1,16023:6630773,18509676:25952256,1211961,0 -(1,16018:6630773,17701941:25952256,404226,82312 -(1,16017:6630773,17701941:0,0,0 -g1,16017:6630773,17701941 -g1,16017:6630773,17701941 -g1,16017:6303093,17701941 -(1,16017:6303093,17701941:0,0,0 -) -g1,16017:6630773,17701941 -) -k1,16018:6630773,17701941:0 -g1,16018:14850565,17701941 -g1,16018:16431294,17701941 -h1,16018:17695877,17701941:0,0,0 -k1,16018:32583029,17701941:14887152 -g1,16018:32583029,17701941 -) -(1,16022:6630773,18433655:25952256,404226,76021 -(1,16020:6630773,18433655:0,0,0 -g1,16020:6630773,18433655 -g1,16020:6630773,18433655 -g1,16020:6303093,18433655 -(1,16020:6303093,18433655:0,0,0 -) -g1,16020:6630773,18433655 -) -g1,16022:7579210,18433655 -g1,16022:8843793,18433655 -g1,16022:12005250,18433655 -g1,16022:15166707,18433655 -g1,16022:18328164,18433655 -g1,16022:21489621,18433655 -h1,16022:24334932,18433655:0,0,0 -k1,16022:32583029,18433655:8248097 -g1,16022:32583029,18433655 -) -] -) -g1,16023:32583029,18509676 -g1,16023:6630773,18509676 -g1,16023:6630773,18509676 -g1,16023:32583029,18509676 -g1,16023:32583029,18509676 -) -h1,16023:6630773,18706284:0,0,0 -(1,16027:6630773,19814162:25952256,513147,126483 -h1,16026:6630773,19814162:983040,0,0 -k1,16026:10564948,19814162:169787 -k1,16026:11090595,19814162:169787 -k1,16026:12910579,19814162:169787 -k1,16026:15057587,19814162:169787 -k1,16026:17057795,19814162:169787 -k1,16026:17886875,19814162:169788 -k1,16026:19375216,19814162:169757 -k1,16026:21491422,19814162:169787 -k1,16026:22608861,19814162:169788 -k1,16026:23871133,19814162:169787 -k1,16026:24656958,19814162:169787 -k1,16026:26729255,19814162:169787 -k1,16026:27890602,19814162:169787 -k1,16026:29804302,19814162:169787 -k1,16026:32583029,19814162:0 -) -(1,16027:6630773,20655650:25952256,513147,126483 -k1,16026:7606530,20655650:214229 -k1,16026:10516255,20655650:214229 -(1,16026:10516255,20655650:0,452978,115847 -r1,16050:12281368,20655650:1765113,568825,115847 -k1,16026:10516255,20655650:-1765113 -) -(1,16026:10516255,20655650:1765113,452978,115847 -k1,16026:10516255,20655650:3277 -h1,16026:12278091,20655650:0,411205,112570 -) -k1,16026:12495597,20655650:214229 -k1,16026:13657477,20655650:214229 -k1,16026:15222403,20655650:214229 -k1,16026:17843769,20655650:214229 -k1,16026:19249442,20655650:214228 -k1,16026:22944943,20655650:214229 -k1,16026:24933887,20655650:214229 -k1,16026:26167201,20655650:214229 -k1,16026:28662083,20655650:214229 -k1,16026:30067757,20655650:214229 -k1,16027:32583029,20655650:0 -) -(1,16027:6630773,21497138:25952256,505283,126483 -k1,16026:8370302,21497138:171908 -k1,16026:9158248,21497138:171908 -k1,16026:10648713,21497138:171881 -k1,16026:11812181,21497138:171908 -k1,16026:13838758,21497138:171908 -k1,16026:14820035,21497138:171907 -k1,16026:17614694,21497138:171908 -k1,16026:19970917,21497138:171908 -k1,16026:21161910,21497138:171908 -k1,16026:24341265,21497138:171908 -k1,16026:25704618,21497138:171908 -k1,16026:29784438,21497138:171908 -k1,16026:31966991,21497138:171908 -k1,16026:32583029,21497138:0 -) -(1,16027:6630773,22338626:25952256,505283,126483 -k1,16026:8164416,22338626:207850 -k1,16026:9363835,22338626:207859 -k1,16026:11426363,22338626:207859 -k1,16026:12443592,22338626:207859 -k1,16026:14871811,22338626:207859 -k1,16026:16944169,22338626:207859 -k1,16026:20751265,22338626:207859 -k1,16026:23442283,22338626:207859 -k1,16026:25044093,22338626:207859 -k1,16026:26979481,22338626:207859 -k1,16026:30494942,22338626:207859 -k1,16026:31835263,22338626:207859 -k1,16026:32583029,22338626:0 -) -(1,16027:6630773,23180114:25952256,513147,134348 -k1,16026:8295902,23180114:225303 -k1,16026:9207368,23180114:225304 -k1,16026:11726431,23180114:225303 -k1,16026:13887668,23180114:225303 -k1,16026:14874499,23180114:225303 -k1,16026:15870506,23180114:225304 -k1,16026:19122262,23180114:225303 -k1,16026:21741595,23180114:225303 -k1,16026:22594734,23180114:225304 -k1,16026:23175897,23180114:225303 -k1,16026:24973409,23180114:225303 -k1,16026:27053381,23180114:225303 -k1,16026:28088055,23180114:225304 -k1,16026:31075701,23180114:225303 -k1,16026:32583029,23180114:0 -) -(1,16027:6630773,24021602:25952256,505283,134348 -k1,16026:7902226,24021602:199284 -k1,16026:9829039,24021602:199284 -k1,16026:12435461,24021602:199285 -k1,16026:13826190,24021602:199284 -k1,16026:17333076,24021602:199284 -k1,16026:19716675,24021602:199284 -k1,16026:20602121,24021602:199284 -k1,16026:22314631,24021602:199284 -k1,16026:23275443,24021602:199284 -k1,16026:26054880,24021602:199285 -k1,16026:29256367,24021602:199284 -k1,16026:30221767,24021602:199284 -k1,16026:32583029,24021602:0 -) -(1,16027:6630773,24863090:25952256,505283,134348 -k1,16026:7766418,24863090:144085 -k1,16026:10974312,24863090:144086 -k1,16026:11804559,24863090:144085 -k1,16026:14242405,24863090:144086 -k1,16026:16496094,24863090:144085 -k1,16026:17836867,24863090:144086 -k1,16026:19488280,24863090:144085 -k1,16026:21162632,24863090:144086 -k1,16026:21958145,24863090:144085 -k1,16026:22849997,24863090:144086 -k1,16026:26191584,24863090:144085 -k1,16026:27021832,24863090:144086 -k1,16026:29193601,24863090:144085 -k1,16026:29953725,24863090:144086 -k1,16026:32583029,24863090:0 -) -(1,16027:6630773,25704578:25952256,505283,11795 -g1,16026:8223953,25704578 -g1,16026:10433827,25704578 -g1,16026:13268259,25704578 -g1,16026:14887653,25704578 -g1,16026:16278327,25704578 -k1,16027:32583029,25704578:14935655 -g1,16027:32583029,25704578 -) -v1,16029:6630773,26637146:0,393216,0 -(1,16036:6630773,27652499:25952256,1408569,196608 -g1,16036:6630773,27652499 -g1,16036:6630773,27652499 -g1,16036:6434165,27652499 -(1,16036:6434165,27652499:0,1408569,196608 -r1,16050:32779637,27652499:26345472,1605177,196608 -k1,16036:6434165,27652499:-26345472 -) -(1,16036:6434165,27652499:26345472,1408569,196608 -[1,16036:6630773,27652499:25952256,1211961,0 -(1,16031:6630773,26844764:25952256,404226,82312 -(1,16030:6630773,26844764:0,0,0 -g1,16030:6630773,26844764 -g1,16030:6630773,26844764 -g1,16030:6303093,26844764 -(1,16030:6303093,26844764:0,0,0 -) -g1,16030:6630773,26844764 -) -k1,16031:6630773,26844764:0 -g1,16031:14534419,26844764 -g1,16031:15166711,26844764 -h1,16031:16431294,26844764:0,0,0 -k1,16031:32583029,26844764:16151735 -g1,16031:32583029,26844764 -) -(1,16035:6630773,27576478:25952256,404226,76021 -(1,16033:6630773,27576478:0,0,0 -g1,16033:6630773,27576478 -g1,16033:6630773,27576478 -g1,16033:6303093,27576478 -(1,16033:6303093,27576478:0,0,0 -) -g1,16033:6630773,27576478 -) -g1,16035:7579210,27576478 -g1,16035:8843793,27576478 -g1,16035:12005250,27576478 -g1,16035:15166707,27576478 -g1,16035:18328164,27576478 -g1,16035:21489621,27576478 -h1,16035:24334932,27576478:0,0,0 -k1,16035:32583029,27576478:8248097 -g1,16035:32583029,27576478 -) -] -) -g1,16036:32583029,27652499 -g1,16036:6630773,27652499 -g1,16036:6630773,27652499 -g1,16036:32583029,27652499 -g1,16036:32583029,27652499 -) -h1,16036:6630773,27849107:0,0,0 -(1,16041:6630773,28956985:25952256,505283,134348 -h1,16039:6630773,28956985:983040,0,0 -k1,16039:8340225,28956985:256519 -k1,16039:9128241,28956985:256519 -k1,16039:10670576,28956985:256519 -k1,16039:14136392,28956985:256518 -k1,16039:15044339,28956985:256519 -k1,16039:18559963,28956985:256519 -k1,16039:20100988,28956985:256519 -k1,16039:22908168,28956985:256519 -k1,16039:24268969,28956985:256519 -k1,16039:25901088,28956985:256518 -k1,16039:29718178,28956985:256519 -k1,16039:30330557,28956985:256519 -k1,16039:32583029,28956985:0 -) -(1,16041:6630773,29798473:25952256,513147,134348 -k1,16039:7793885,29798473:228569 -k1,16039:8681746,29798473:228569 -k1,16039:11445249,29798473:228570 -k1,16039:12865263,29798473:228569 -k1,16039:14560528,29798473:228569 -k1,16039:17141184,29798473:228569 -k1,16039:18985872,29798473:228570 -k1,16039:21566528,29798473:228569 -k1,16039:22899379,29798473:228569 -k1,16039:23875714,29798473:228569 -k1,16039:27780854,29798473:228570 -k1,16039:28770951,29798473:228569 -k1,16039:31391584,29798473:228569 -k1,16039:32583029,29798473:0 -) -(1,16041:6630773,30639961:25952256,513147,126483 -k1,16039:9579827,30639961:227344 -k1,16039:14000821,30639961:227345 -k1,16039:17054077,30639961:227344 -k1,16039:18849043,30639961:227345 -k1,16039:22269301,30639961:227344 -k1,16039:23148073,30639961:227344 -k1,16039:26568332,30639961:227345 -k1,16039:28626752,30639961:227344 -k1,16039:29470135,30639961:227345 -k1,16039:31313597,30639961:227344 -k1,16041:32583029,30639961:0 -) -(1,16041:6630773,31481449:25952256,513147,134348 -k1,16039:9425064,31481449:251494 -k1,16039:12657136,31481449:251495 -k1,16039:15670973,31481449:251494 -k1,16039:17638855,31481449:251494 -k1,16039:18549642,31481449:251495 -k1,16039:20417254,31481449:251494 -k1,16039:23907537,31481449:251494 -k1,16039:24628925,31481449:251495 -k1,16039:25411916,31481449:251494 -k1,16039:28872708,31481449:251494 -k1,16039:29775631,31481449:251495 -k1,16039:31379788,31481449:251494 -k1,16039:32583029,31481449:0 -) -(1,16041:6630773,32322937:25952256,505283,134348 -g1,16039:8097468,32322937 -g1,16039:10800828,32322937 -g1,16039:12698095,32322937 -g1,16039:15755349,32322937 -g1,16039:16973663,32322937 -g1,16039:19119311,32322937 -g1,16039:20831766,32322937 -g1,16039:21647033,32322937 -g1,16039:25875415,32322937 -k1,16041:32583029,32322937:6707614 -g1,16041:32583029,32322937 -) -(1,16042:6630773,34414197:25952256,555811,12975 -(1,16042:6630773,34414197:2450326,534184,12975 -g1,16042:6630773,34414197 -g1,16042:9081099,34414197 -) -g1,16042:13486495,34414197 -g1,16042:18295593,34414197 -k1,16042:32583029,34414197:12101679 -g1,16042:32583029,34414197 -) -(1,16045:6630773,35648901:25952256,505283,122846 -k1,16044:10873606,35648901:550535 -k1,16044:13040259,35648901:550535 -k1,16044:15493303,35648901:550534 -(1,16044:15493303,35648901:0,452978,115847 -r1,16050:23940940,35648901:8447637,568825,115847 -k1,16044:15493303,35648901:-8447637 -) -(1,16044:15493303,35648901:8447637,452978,115847 -k1,16044:15493303,35648901:3277 -h1,16044:23937663,35648901:0,411205,112570 -) -k1,16044:24665145,35648901:550535 -(1,16044:24665145,35648901:0,452978,122846 -r1,16050:32409359,35648901:7744214,575824,122846 -k1,16044:24665145,35648901:-7744214 -) -(1,16044:24665145,35648901:7744214,452978,122846 -k1,16044:24665145,35648901:3277 -h1,16044:32406082,35648901:0,411205,112570 -) -k1,16045:32583029,35648901:0 -) -(1,16045:6630773,36490389:25952256,505283,122846 -(1,16044:6630773,36490389:0,452978,122846 -r1,16050:14726699,36490389:8095926,575824,122846 -k1,16044:6630773,36490389:-8095926 -) -(1,16044:6630773,36490389:8095926,452978,122846 -k1,16044:6630773,36490389:3277 -h1,16044:14723422,36490389:0,411205,112570 -) -k1,16044:15528453,36490389:628084 -(1,16044:15528453,36490389:0,452978,122846 -r1,16050:23624379,36490389:8095926,575824,122846 -k1,16044:15528453,36490389:-8095926 -) -(1,16044:15528453,36490389:8095926,452978,122846 -k1,16044:15528453,36490389:3277 -h1,16044:23621102,36490389:0,411205,112570 -) -k1,16044:24426133,36490389:628084 -(1,16044:24426133,36490389:0,452978,115847 -r1,16050:30763500,36490389:6337367,568825,115847 -k1,16044:24426133,36490389:-6337367 -) -(1,16044:24426133,36490389:6337367,452978,115847 -k1,16044:24426133,36490389:3277 -h1,16044:30760223,36490389:0,411205,112570 -) -k1,16044:31391584,36490389:628084 -k1,16045:32583029,36490389:0 -) -(1,16045:6630773,37331877:25952256,505283,134348 -(1,16044:6630773,37331877:0,452978,115847 -r1,16050:14374987,37331877:7744214,568825,115847 -k1,16044:6630773,37331877:-7744214 -) -(1,16044:6630773,37331877:7744214,452978,115847 -k1,16044:6630773,37331877:3277 -h1,16044:14371710,37331877:0,411205,112570 -) -k1,16044:14728318,37331877:179661 -k1,16044:16187897,37331877:179661 -k1,16044:16723418,37331877:179661 -k1,16044:19314149,37331877:179661 -k1,16044:23064210,37331877:179660 -k1,16044:25903322,37331877:179661 -k1,16044:28718186,37331877:179661 -k1,16044:30070286,37331877:179661 -k1,16044:30932832,37331877:179661 -k1,16044:32583029,37331877:0 -) -(1,16045:6630773,38173365:25952256,505283,134348 -k1,16044:9458379,38173365:292673 -k1,16044:11308842,38173365:292672 -k1,16044:12593075,38173365:292673 -k1,16044:14398974,38173365:292673 -k1,16044:16085598,38173365:292673 -(1,16044:16085598,38173365:0,452978,115847 -r1,16050:18554135,38173365:2468537,568825,115847 -k1,16044:16085598,38173365:-2468537 -) -(1,16044:16085598,38173365:2468537,452978,115847 -k1,16044:16085598,38173365:3277 -h1,16044:18550858,38173365:0,411205,112570 -) -k1,16044:19020477,38173365:292672 -(1,16044:19020477,38173365:0,452978,115847 -r1,16050:20433878,38173365:1413401,568825,115847 -k1,16044:19020477,38173365:-1413401 -) -(1,16044:19020477,38173365:1413401,452978,115847 -k1,16044:19020477,38173365:3277 -h1,16044:20430601,38173365:0,411205,112570 -) -k1,16044:20726551,38173365:292673 -k1,16044:22210669,38173365:292673 -(1,16044:22210669,38173365:0,452978,115847 -r1,16050:25030918,38173365:2820249,568825,115847 -k1,16044:22210669,38173365:-2820249 -) -(1,16044:22210669,38173365:2820249,452978,115847 -k1,16044:22210669,38173365:3277 -h1,16044:25027641,38173365:0,411205,112570 -) -k1,16044:25323590,38173365:292672 -k1,16044:27179297,38173365:292673 -k1,16044:27959464,38173365:292579 -k1,16044:32583029,38173365:0 -) -(1,16045:6630773,39014853:25952256,513147,115847 -k1,16044:7756855,39014853:191539 -k1,16044:8615550,39014853:191539 -(1,16044:8615550,39014853:0,459977,115847 -r1,16050:10028951,39014853:1413401,575824,115847 -k1,16044:8615550,39014853:-1413401 -) -(1,16044:8615550,39014853:1413401,459977,115847 -k1,16044:8615550,39014853:3277 -h1,16044:10025674,39014853:0,411205,112570 -) -k1,16044:10220490,39014853:191539 -k1,16044:12314539,39014853:191539 -k1,16044:13037575,39014853:191539 -k1,16044:14514930,39014853:191539 -k1,16044:17664109,39014853:191539 -k1,16044:19672306,39014853:191539 -k1,16044:21766355,39014853:191539 -k1,16044:23104119,39014853:191539 -(1,16044:23104119,39014853:0,452978,115847 -r1,16050:31200045,39014853:8095926,568825,115847 -k1,16044:23104119,39014853:-8095926 -) -(1,16044:23104119,39014853:8095926,452978,115847 -k1,16044:23104119,39014853:3277 -h1,16044:31196768,39014853:0,411205,112570 -) -k1,16044:31391584,39014853:191539 -k1,16045:32583029,39014853:0 -) -(1,16045:6630773,39856341:25952256,513147,126483 -(1,16044:6630773,39856341:0,452978,115847 -r1,16050:14726699,39856341:8095926,568825,115847 -k1,16044:6630773,39856341:-8095926 -) -(1,16044:6630773,39856341:8095926,452978,115847 -k1,16044:6630773,39856341:3277 -h1,16044:14723422,39856341:0,411205,112570 -) -k1,16044:14962664,39856341:235965 -k1,16044:16190189,39856341:235965 -k1,16044:18280823,39856341:235965 -k1,16044:19326158,39856341:235965 -k1,16044:20581208,39856341:235965 -k1,16044:21909659,39856341:235966 -k1,16044:22804916,39856341:235965 -k1,16044:26771190,39856341:235965 -k1,16044:29527670,39856341:235965 -k1,16044:30422927,39856341:235965 -k1,16044:31923737,39856341:235965 -k1,16044:32583029,39856341:0 -) -(1,16045:6630773,40697829:25952256,513147,134348 -k1,16044:8439458,40697829:192567 -k1,16044:11621776,40697829:192566 -k1,16044:14049776,40697829:192567 -k1,16044:14893770,40697829:192566 -k1,16044:16682794,40697829:192567 -k1,16044:18153967,40697829:192566 -k1,16044:21026957,40697829:192567 -k1,16044:23105650,40697829:192567 -k1,16044:25969463,40697829:192566 -k1,16044:29524682,40697829:192567 -k1,16044:30400133,40697829:192566 -k1,16044:31540351,40697829:192567 -k1,16045:32583029,40697829:0 -) -(1,16045:6630773,41539317:25952256,513147,134348 -g1,16044:8220676,41539317 -g1,16044:10319138,41539317 -g1,16044:13498944,41539317 -g1,16044:16460516,41539317 -g1,16044:18376133,41539317 -g1,16044:19234654,41539317 -g1,16044:21050001,41539317 -k1,16045:32583029,41539317:8294239 -g1,16045:32583029,41539317 -) -(1,16046:6630773,43630577:25952256,555811,12975 -(1,16046:6630773,43630577:2450326,534184,12975 -g1,16046:6630773,43630577 -g1,16046:9081099,43630577 -) -g1,16046:12304226,43630577 -g1,16046:17113324,43630577 -k1,16046:32583029,43630577:13283948 -g1,16046:32583029,43630577 -) -(1,16049:6630773,44865281:25952256,505283,122846 -k1,16048:8843077,44865281:474289 -k1,16048:11219876,44865281:474289 -(1,16048:11219876,44865281:0,452978,115847 -r1,16050:18964090,44865281:7744214,568825,115847 -k1,16048:11219876,44865281:-7744214 -) -(1,16048:11219876,44865281:7744214,452978,115847 -k1,16048:11219876,44865281:3277 -h1,16048:18960813,44865281:0,411205,112570 -) -k1,16048:19612048,44865281:474288 -(1,16048:19612048,44865281:0,452978,115847 -r1,16050:25597703,44865281:5985655,568825,115847 -k1,16048:19612048,44865281:-5985655 -) -(1,16048:19612048,44865281:5985655,452978,115847 -k1,16048:19612048,44865281:3277 -h1,16048:25594426,44865281:0,411205,112570 -) -k1,16048:26245662,44865281:474289 -(1,16048:26245662,44865281:0,452978,122846 -r1,16050:32583029,44865281:6337367,575824,122846 -k1,16048:26245662,44865281:-6337367 -) -(1,16048:26245662,44865281:6337367,452978,122846 -k1,16048:26245662,44865281:3277 -h1,16048:32579752,44865281:0,411205,112570 -) -k1,16048:32583029,44865281:0 -) -(1,16049:6630773,45706769:25952256,513147,134348 -k1,16048:8345326,45706769:722993 -k1,16048:10581545,45706769:722993 -k1,16048:12698489,45706769:722993 -k1,16048:16868020,45706769:722993 -k1,16048:18980377,45706769:722994 -k1,16048:21741540,45706769:722993 -k1,16048:23150695,45706769:722993 -k1,16048:26271650,45706769:722993 -k1,16048:28811301,45706769:722993 -k1,16048:31436804,45706769:722993 -k1,16049:32583029,45706769:0 -) -] -(1,16050:32583029,45706769:0,0,0 -g1,16050:32583029,45706769 -) -) -] -(1,16050:6630773,47279633:25952256,0,0 -h1,16050:6630773,47279633:25952256,0,0 -) -] -(1,16050:4262630,4025873:0,0,0 -[1,16050:-473656,4025873:0,0,0 -(1,16050:-473656,-710413:0,0,0 -(1,16050:-473656,-710413:0,0,0 -g1,16050:-473656,-710413 -) -g1,16050:-473656,-710413 -) -] -) -] -!26496 -}310 -Input:2601:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2602:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2603:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2604:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!380 -{311 -[1,16104:4262630,47279633:28320399,43253760,0 -(1,16104:4262630,4025873:0,0,0 -[1,16104:-473656,4025873:0,0,0 -(1,16104:-473656,-710413:0,0,0 -(1,16104:-473656,-644877:0,0,0 -k1,16104:-473656,-644877:-65536 -) -(1,16104:-473656,4736287:0,0,0 -k1,16104:-473656,4736287:5209943 -) -g1,16104:-473656,-710413 -) -] -) -[1,16104:6630773,47279633:25952256,43253760,0 -[1,16104:6630773,4812305:25952256,786432,0 -(1,16104:6630773,4812305:25952256,513147,134348 -(1,16104:6630773,4812305:25952256,513147,134348 -g1,16104:3078558,4812305 -[1,16104:3078558,4812305:0,0,0 -(1,16104:3078558,2439708:0,1703936,0 -k1,16104:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,16104:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,16104:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,16104:3078558,4812305:0,0,0 -(1,16104:3078558,2439708:0,1703936,0 -g1,16104:29030814,2439708 -g1,16104:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,16104:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,16104:37855564,2439708:1179648,16384,0 -) -) -k1,16104:3078556,2439708:-34777008 -) -] -[1,16104:3078558,4812305:0,0,0 -(1,16104:3078558,49800853:0,16384,2228224 -k1,16104:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,16104:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,16104:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,16104:3078558,4812305:0,0,0 -(1,16104:3078558,49800853:0,16384,2228224 -g1,16104:29030814,49800853 -g1,16104:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,16104:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,16104:37855564,49800853:1179648,16384,0 -) -) -k1,16104:3078556,49800853:-34777008 -) -] -g1,16104:6630773,4812305 -k1,16104:25712890,4812305:17886740 -g1,16104:29057847,4812305 -g1,16104:29873114,4812305 -) -) -] -[1,16104:6630773,45706769:25952256,40108032,0 -(1,16104:6630773,45706769:25952256,40108032,0 -(1,16104:6630773,45706769:0,0,0 -g1,16104:6630773,45706769 -) -[1,16104:6630773,45706769:25952256,40108032,0 -(1,16049:6630773,6254097:25952256,513147,126483 -(1,16048:6630773,6254097:0,452978,115847 -r1,16104:14726699,6254097:8095926,568825,115847 -k1,16048:6630773,6254097:-8095926 -) -(1,16048:6630773,6254097:8095926,452978,115847 -k1,16048:6630773,6254097:3277 -h1,16048:14723422,6254097:0,411205,112570 -) -k1,16048:15184053,6254097:457354 -k1,16048:16832852,6254097:457354 -(1,16048:16832852,6254097:0,452978,115847 -r1,16104:23873643,6254097:7040791,568825,115847 -k1,16048:16832852,6254097:-7040791 -) -(1,16048:16832852,6254097:7040791,452978,115847 -k1,16048:16832852,6254097:3277 -h1,16048:23870366,6254097:0,411205,112570 -) -k1,16048:24330997,6254097:457354 -k1,16048:27218426,6254097:457354 -k1,16048:30201538,6254097:457354 -k1,16048:31923737,6254097:457354 -k1,16048:32583029,6254097:0 -) -(1,16049:6630773,7095585:25952256,505283,126483 -g1,16048:9191264,7095585 -g1,16048:11245162,7095585 -g1,16048:12253761,7095585 -k1,16049:32583030,7095585:17635084 -g1,16049:32583030,7095585 -) -(1,16050:6630773,9186845:25952256,555811,12975 -(1,16050:6630773,9186845:2450326,534184,12975 -g1,16050:6630773,9186845 -g1,16050:9081099,9186845 -) -g1,16050:11819063,9186845 -k1,16050:32583028,9186845:18578208 -g1,16050:32583028,9186845 -) -(1,16053:6630773,10421549:25952256,513147,134348 -k1,16052:8812903,10421549:140684 -k1,16052:11287324,10421549:140684 -k1,16052:12970726,10421549:140684 -k1,16052:13770702,10421549:140684 -k1,16052:16739919,10421549:140684 -k1,16052:18256204,10421549:140684 -k1,16052:19569327,10421549:140684 -k1,16052:21426399,10421549:140684 -k1,16052:22226375,10421549:140684 -k1,16052:24269569,10421549:140684 -k1,16052:25914304,10421549:140684 -k1,16052:29012628,10421549:140684 -k1,16052:32583029,10421549:0 -) -(1,16053:6630773,11263037:25952256,513147,126483 -k1,16052:8007434,11263037:185216 -k1,16052:10892078,11263037:185216 -k1,16052:11564867,11263037:185201 -k1,16052:13332122,11263037:185216 -k1,16052:14903424,11263037:185216 -k1,16052:15747932,11263037:185216 -k1,16052:17835657,11263037:185215 -k1,16052:22429480,11263037:185216 -k1,16052:23562347,11263037:185216 -k1,16052:24513679,11263037:185216 -k1,16052:25717979,11263037:185215 -k1,16052:29077759,11263037:185216 -k1,16052:31181869,11263037:185216 -k1,16053:32583029,11263037:0 -) -(1,16053:6630773,12104525:25952256,505283,126483 -k1,16052:8371410,12104525:148767 -k1,16052:9727349,12104525:148766 -k1,16052:11841541,12104525:148767 -k1,16052:12606346,12104525:148767 -k1,16052:15088849,12104525:148766 -k1,16052:16780334,12104525:148767 -k1,16052:18796876,12104525:148766 -k1,16052:21264306,12104525:148767 -k1,16052:22970864,12104525:148767 -k1,16052:24111190,12104525:148766 -k1,16052:24911385,12104525:148767 -k1,16052:25807918,12104525:148767 -k1,16052:27469910,12104525:148766 -k1,16052:29012628,12104525:148767 -k1,16052:32583029,12104525:0 -) -(1,16053:6630773,12946013:25952256,513147,126483 -k1,16052:9823687,12946013:177603 -k1,16052:11073458,12946013:177602 -k1,16052:12631249,12946013:177603 -k1,16052:15925743,12946013:177602 -k1,16052:17122431,12946013:177603 -k1,16052:20870435,12946013:177603 -k1,16052:23058682,12946013:177602 -k1,16052:24503751,12946013:177603 -k1,16052:26028119,12946013:177603 -k1,16052:26888606,12946013:177602 -k1,16052:29472691,12946013:177603 -k1,16052:31101915,12946013:177602 -k1,16052:32227169,12946013:177603 -k1,16052:32583029,12946013:0 -) -(1,16053:6630773,13787501:25952256,513147,134348 -k1,16052:8592353,13787501:180967 -k1,16052:9432611,13787501:180966 -k1,16052:11797893,13787501:180967 -k1,16052:13170305,13787501:180967 -k1,16052:14785200,13787501:180967 -k1,16052:18007692,13787501:180966 -k1,16052:19827714,13787501:180967 -k1,16052:20624719,13787501:180967 -k1,16052:21824771,13787501:180967 -k1,16052:23283034,13787501:180966 -k1,16052:25199394,13787501:180967 -k1,16052:25736221,13787501:180967 -k1,16052:28442946,13787501:180967 -k1,16052:29558455,13787501:180966 -k1,16052:30398714,13787501:180967 -k1,16052:32583029,13787501:0 -) -(1,16053:6630773,14628989:25952256,513147,134348 -k1,16052:7799117,14628989:214795 -k1,16052:9677871,14628989:214795 -k1,16052:10911752,14628989:214796 -k1,16052:12981871,14628989:214795 -k1,16052:15272191,14628989:214795 -k1,16052:16296356,14628989:214795 -k1,16052:18009304,14628989:214795 -h1,16052:19204681,14628989:0,0,0 -k1,16052:19419476,14628989:214795 -k1,16052:20706441,14628989:214796 -k1,16052:23862492,14628989:214795 -(1,16052:23862492,14628989:0,452978,122846 -r1,16104:31606706,14628989:7744214,575824,122846 -k1,16052:23862492,14628989:-7744214 -) -(1,16052:23862492,14628989:7744214,452978,122846 -k1,16052:23862492,14628989:3277 -h1,16052:31603429,14628989:0,411205,112570 -) -k1,16052:31821501,14628989:214795 -k1,16053:32583029,14628989:0 -) -(1,16053:6630773,15470477:25952256,452978,115847 -(1,16052:6630773,15470477:0,452978,115847 -r1,16104:13671564,15470477:7040791,568825,115847 -k1,16052:6630773,15470477:-7040791 -) -(1,16052:6630773,15470477:7040791,452978,115847 -k1,16052:6630773,15470477:3277 -h1,16052:13668287,15470477:0,411205,112570 -) -k1,16053:32583030,15470477:18737796 -g1,16053:32583030,15470477 -) -v1,16055:6630773,16585563:0,393216,0 -(1,16066:6630773,21557614:25952256,5365267,196608 -g1,16066:6630773,21557614 -g1,16066:6630773,21557614 -g1,16066:6434165,21557614 -(1,16066:6434165,21557614:0,5365267,196608 -r1,16104:32779637,21557614:26345472,5561875,196608 -k1,16066:6434165,21557614:-26345472 -) -(1,16066:6434165,21557614:26345472,5365267,196608 -[1,16066:6630773,21557614:25952256,5168659,0 -(1,16057:6630773,16793181:25952256,404226,107478 -(1,16056:6630773,16793181:0,0,0 -g1,16056:6630773,16793181 -g1,16056:6630773,16793181 -g1,16056:6303093,16793181 -(1,16056:6303093,16793181:0,0,0 -) -g1,16056:6630773,16793181 -) -g1,16057:7263065,16793181 -g1,16057:8211502,16793181 -g1,16057:9476085,16793181 -g1,16057:12005251,16793181 -g1,16057:14534417,16793181 -g1,16057:15166709,16793181 -g1,16057:16431292,16793181 -g1,16057:17063584,16793181 -g1,16057:18012021,16793181 -g1,16057:20857332,16793181 -g1,16057:22754206,16793181 -g1,16057:23702643,16793181 -k1,16057:23702643,16793181:0 -h1,16057:27180245,16793181:0,0,0 -k1,16057:32583029,16793181:5402784 -g1,16057:32583029,16793181 -) -(1,16058:6630773,17459359:25952256,410518,101187 -h1,16058:6630773,17459359:0,0,0 -g1,16058:7263065,17459359 -g1,16058:8843794,17459359 -g1,16058:10424523,17459359 -g1,16058:11689106,17459359 -g1,16058:12321398,17459359 -g1,16058:13585981,17459359 -g1,16058:14218273,17459359 -k1,16058:14218273,17459359:0 -h1,16058:17379730,17459359:0,0,0 -k1,16058:32583029,17459359:15203299 -g1,16058:32583029,17459359 -) -(1,16059:6630773,18125537:25952256,404226,76021 -h1,16059:6630773,18125537:0,0,0 -k1,16059:6630773,18125537:0 -h1,16059:11056813,18125537:0,0,0 -k1,16059:32583029,18125537:21526216 -g1,16059:32583029,18125537 -) -(1,16060:6630773,18791715:25952256,388497,9436 -h1,16060:6630773,18791715:0,0,0 -g1,16060:7263065,18791715 -g1,16060:8211503,18791715 -h1,16060:9476086,18791715:0,0,0 -k1,16060:32583030,18791715:23106944 -g1,16060:32583030,18791715 -) -(1,16061:6630773,19457893:25952256,404226,107478 -h1,16061:6630773,19457893:0,0,0 -g1,16061:7263065,19457893 -g1,16061:8211503,19457893 -g1,16061:9159940,19457893 -g1,16061:9792232,19457893 -g1,16061:11056816,19457893 -g1,16061:11689108,19457893 -g1,16061:13269838,19457893 -g1,16061:13902130,19457893 -g1,16061:19276607,19457893 -g1,16061:20857336,19457893 -g1,16061:21489628,19457893 -g1,16061:22438066,19457893 -g1,16061:23386503,19457893 -g1,16061:24018795,19457893 -g1,16061:27180253,19457893 -g1,16061:27812545,19457893 -h1,16061:28444837,19457893:0,0,0 -k1,16061:32583029,19457893:4138192 -g1,16061:32583029,19457893 -) -(1,16062:6630773,20124071:25952256,410518,101187 -h1,16062:6630773,20124071:0,0,0 -g1,16062:9159939,20124071 -g1,16062:10108377,20124071 -g1,16062:14534417,20124071 -h1,16062:15166708,20124071:0,0,0 -k1,16062:32583028,20124071:17416320 -g1,16062:32583028,20124071 -) -(1,16063:6630773,20790249:25952256,404226,101187 -h1,16063:6630773,20790249:0,0,0 -g1,16063:11689104,20790249 -g1,16063:12637542,20790249 -h1,16063:14850562,20790249:0,0,0 -k1,16063:32583030,20790249:17732468 -g1,16063:32583030,20790249 -) -(1,16064:6630773,21456427:25952256,404226,101187 -h1,16064:6630773,21456427:0,0,0 -g1,16064:12637542,21456427 -g1,16064:14218271,21456427 -g1,16064:15166709,21456427 -g1,16064:21173478,21456427 -g1,16064:22754207,21456427 -g1,16064:23386499,21456427 -h1,16064:24018790,21456427:0,0,0 -k1,16064:32583029,21456427:8564239 -g1,16064:32583029,21456427 -) -] -) -g1,16066:32583029,21557614 -g1,16066:6630773,21557614 -g1,16066:6630773,21557614 -g1,16066:32583029,21557614 -g1,16066:32583029,21557614 -) -h1,16066:6630773,21754222:0,0,0 -v1,16070:6630773,23318215:0,393216,0 -(1,16074:6630773,23633312:25952256,708313,196608 -g1,16074:6630773,23633312 -g1,16074:6630773,23633312 -g1,16074:6434165,23633312 -(1,16074:6434165,23633312:0,708313,196608 -r1,16104:32779637,23633312:26345472,904921,196608 -k1,16074:6434165,23633312:-26345472 -) -(1,16074:6434165,23633312:26345472,708313,196608 -[1,16074:6630773,23633312:25952256,511705,0 -(1,16072:6630773,23532125:25952256,410518,101187 -(1,16071:6630773,23532125:0,0,0 -g1,16071:6630773,23532125 -g1,16071:6630773,23532125 -g1,16071:6303093,23532125 -(1,16071:6303093,23532125:0,0,0 -) -g1,16071:6630773,23532125 -) -g1,16072:10108376,23532125 -g1,16072:11056814,23532125 -g1,16072:11689106,23532125 -g1,16072:12321398,23532125 -g1,16072:14850564,23532125 -g1,16072:15799002,23532125 -g1,16072:17063585,23532125 -g1,16072:17695877,23532125 -h1,16072:19276606,23532125:0,0,0 -k1,16072:32583029,23532125:13306423 -g1,16072:32583029,23532125 -) -] -) -g1,16074:32583029,23633312 -g1,16074:6630773,23633312 -g1,16074:6630773,23633312 -g1,16074:32583029,23633312 -g1,16074:32583029,23633312 -) -h1,16074:6630773,23829920:0,0,0 -v1,16078:6630773,25393913:0,393216,0 -(1,16091:6630773,31704611:25952256,6703914,196608 -g1,16091:6630773,31704611 -g1,16091:6630773,31704611 -g1,16091:6434165,31704611 -(1,16091:6434165,31704611:0,6703914,196608 -r1,16104:32779637,31704611:26345472,6900522,196608 -k1,16091:6434165,31704611:-26345472 -) -(1,16091:6434165,31704611:26345472,6703914,196608 -[1,16091:6630773,31704611:25952256,6507306,0 -(1,16080:6630773,25601531:25952256,404226,107478 -(1,16079:6630773,25601531:0,0,0 -g1,16079:6630773,25601531 -g1,16079:6630773,25601531 -g1,16079:6303093,25601531 -(1,16079:6303093,25601531:0,0,0 -) -g1,16079:6630773,25601531 -) -k1,16080:6630773,25601531:0 -g1,16080:14218270,25601531 -h1,16080:14534416,25601531:0,0,0 -k1,16080:32583028,25601531:18048612 -g1,16080:32583028,25601531 -) -(1,16081:6630773,26267709:25952256,410518,101187 -h1,16081:6630773,26267709:0,0,0 -g1,16081:6946919,26267709 -g1,16081:7263065,26267709 -g1,16081:15798999,26267709 -g1,16081:16431291,26267709 -k1,16081:16431291,26267709:0 -h1,16081:19908894,26267709:0,0,0 -k1,16081:32583029,26267709:12674135 -g1,16081:32583029,26267709 -) -(1,16082:6630773,26933887:25952256,404226,82312 -h1,16082:6630773,26933887:0,0,0 -g1,16082:6946919,26933887 -g1,16082:7263065,26933887 -g1,16082:7579211,26933887 -g1,16082:7895357,26933887 -g1,16082:8211503,26933887 -g1,16082:8527649,26933887 -g1,16082:8843795,26933887 -g1,16082:9159941,26933887 -g1,16082:9476087,26933887 -g1,16082:9792233,26933887 -g1,16082:10108379,26933887 -g1,16082:10424525,26933887 -g1,16082:10740671,26933887 -g1,16082:11056817,26933887 -g1,16082:11372963,26933887 -g1,16082:11689109,26933887 -g1,16082:12005255,26933887 -g1,16082:12321401,26933887 -g1,16082:12637547,26933887 -g1,16082:12953693,26933887 -g1,16082:13269839,26933887 -g1,16082:15482859,26933887 -g1,16082:16115151,26933887 -k1,16082:16115151,26933887:0 -h1,16082:18012025,26933887:0,0,0 -k1,16082:32583029,26933887:14571004 -g1,16082:32583029,26933887 -) -(1,16083:6630773,27600065:25952256,404226,107478 -h1,16083:6630773,27600065:0,0,0 -g1,16083:6946919,27600065 -g1,16083:7263065,27600065 -g1,16083:7579211,27600065 -g1,16083:7895357,27600065 -g1,16083:8211503,27600065 -g1,16083:8527649,27600065 -g1,16083:8843795,27600065 -g1,16083:9159941,27600065 -g1,16083:9476087,27600065 -g1,16083:9792233,27600065 -g1,16083:10108379,27600065 -g1,16083:10424525,27600065 -g1,16083:10740671,27600065 -g1,16083:11056817,27600065 -g1,16083:11372963,27600065 -g1,16083:11689109,27600065 -g1,16083:12005255,27600065 -g1,16083:12321401,27600065 -g1,16083:12637547,27600065 -g1,16083:12953693,27600065 -g1,16083:13269839,27600065 -g1,16083:15799005,27600065 -g1,16083:16431297,27600065 -g1,16083:18328172,27600065 -g1,16083:18960464,27600065 -k1,16083:18960464,27600065:0 -h1,16083:19592756,27600065:0,0,0 -k1,16083:32583029,27600065:12990273 -g1,16083:32583029,27600065 -) -(1,16084:6630773,28266243:25952256,404226,107478 -h1,16084:6630773,28266243:0,0,0 -g1,16084:6946919,28266243 -g1,16084:7263065,28266243 -g1,16084:7579211,28266243 -g1,16084:7895357,28266243 -g1,16084:8211503,28266243 -g1,16084:8527649,28266243 -g1,16084:8843795,28266243 -g1,16084:9159941,28266243 -g1,16084:9476087,28266243 -g1,16084:9792233,28266243 -g1,16084:10108379,28266243 -g1,16084:10424525,28266243 -g1,16084:10740671,28266243 -g1,16084:11056817,28266243 -g1,16084:11372963,28266243 -g1,16084:11689109,28266243 -g1,16084:12005255,28266243 -g1,16084:12321401,28266243 -g1,16084:12637547,28266243 -g1,16084:12953693,28266243 -g1,16084:13269839,28266243 -g1,16084:13585985,28266243 -g1,16084:13902131,28266243 -g1,16084:14218277,28266243 -g1,16084:14534423,28266243 -g1,16084:14850569,28266243 -g1,16084:15166715,28266243 -g1,16084:15482861,28266243 -g1,16084:15799007,28266243 -g1,16084:16115153,28266243 -g1,16084:16431299,28266243 -g1,16084:16747445,28266243 -g1,16084:17063591,28266243 -g1,16084:17379737,28266243 -g1,16084:17695883,28266243 -g1,16084:18328175,28266243 -g1,16084:18960467,28266243 -g1,16084:22754215,28266243 -g1,16084:23386507,28266243 -k1,16084:23386507,28266243:0 -h1,16084:24018799,28266243:0,0,0 -k1,16084:32583029,28266243:8564230 -g1,16084:32583029,28266243 -) -(1,16085:6630773,28932421:25952256,410518,107478 -h1,16085:6630773,28932421:0,0,0 -g1,16085:6946919,28932421 -g1,16085:7263065,28932421 -g1,16085:7579211,28932421 -g1,16085:7895357,28932421 -g1,16085:8211503,28932421 -g1,16085:8527649,28932421 -g1,16085:8843795,28932421 -g1,16085:9159941,28932421 -g1,16085:9476087,28932421 -g1,16085:9792233,28932421 -g1,16085:10108379,28932421 -g1,16085:10424525,28932421 -g1,16085:10740671,28932421 -g1,16085:11056817,28932421 -g1,16085:11372963,28932421 -g1,16085:11689109,28932421 -g1,16085:12005255,28932421 -g1,16085:12321401,28932421 -g1,16085:12637547,28932421 -g1,16085:12953693,28932421 -g1,16085:13269839,28932421 -g1,16085:13585985,28932421 -g1,16085:13902131,28932421 -g1,16085:14218277,28932421 -g1,16085:14534423,28932421 -g1,16085:14850569,28932421 -g1,16085:15166715,28932421 -g1,16085:15482861,28932421 -g1,16085:15799007,28932421 -g1,16085:16115153,28932421 -g1,16085:16431299,28932421 -g1,16085:16747445,28932421 -g1,16085:17063591,28932421 -g1,16085:17379737,28932421 -g1,16085:17695883,28932421 -g1,16085:18012029,28932421 -g1,16085:18328175,28932421 -g1,16085:18644321,28932421 -g1,16085:18960467,28932421 -g1,16085:19276613,28932421 -g1,16085:19592759,28932421 -g1,16085:19908905,28932421 -g1,16085:20225051,28932421 -g1,16085:20541197,28932421 -g1,16085:20857343,28932421 -g1,16085:24334946,28932421 -g1,16085:24967238,28932421 -g1,16085:25599530,28932421 -g1,16085:26231822,28932421 -k1,16085:26231822,28932421:0 -h1,16085:29077133,28932421:0,0,0 -k1,16085:32583029,28932421:3505896 -g1,16085:32583029,28932421 -) -(1,16086:6630773,29598599:25952256,410518,107478 -h1,16086:6630773,29598599:0,0,0 -g1,16086:6946919,29598599 -g1,16086:7263065,29598599 -g1,16086:7579211,29598599 -g1,16086:7895357,29598599 -g1,16086:8211503,29598599 -g1,16086:8527649,29598599 -g1,16086:8843795,29598599 -g1,16086:9159941,29598599 -g1,16086:9476087,29598599 -g1,16086:9792233,29598599 -g1,16086:10108379,29598599 -g1,16086:10424525,29598599 -g1,16086:10740671,29598599 -g1,16086:11056817,29598599 -g1,16086:11372963,29598599 -g1,16086:11689109,29598599 -g1,16086:12005255,29598599 -g1,16086:12321401,29598599 -g1,16086:12637547,29598599 -g1,16086:12953693,29598599 -g1,16086:13269839,29598599 -g1,16086:13585985,29598599 -g1,16086:13902131,29598599 -g1,16086:14218277,29598599 -g1,16086:14534423,29598599 -g1,16086:14850569,29598599 -g1,16086:15166715,29598599 -g1,16086:15482861,29598599 -g1,16086:15799007,29598599 -g1,16086:16115153,29598599 -g1,16086:16431299,29598599 -g1,16086:16747445,29598599 -g1,16086:17063591,29598599 -g1,16086:17379737,29598599 -g1,16086:17695883,29598599 -g1,16086:19908903,29598599 -g1,16086:20541195,29598599 -k1,16086:20541195,29598599:0 -h1,16086:27180255,29598599:0,0,0 -k1,16086:32583029,29598599:5402774 -g1,16086:32583029,29598599 -) -(1,16087:6630773,30264777:25952256,404226,107478 -h1,16087:6630773,30264777:0,0,0 -g1,16087:6946919,30264777 -g1,16087:7263065,30264777 -g1,16087:7579211,30264777 -g1,16087:7895357,30264777 -g1,16087:8211503,30264777 -g1,16087:8527649,30264777 -g1,16087:8843795,30264777 -g1,16087:9159941,30264777 -g1,16087:9476087,30264777 -g1,16087:9792233,30264777 -g1,16087:10108379,30264777 -g1,16087:10424525,30264777 -g1,16087:10740671,30264777 -g1,16087:11056817,30264777 -g1,16087:11372963,30264777 -g1,16087:11689109,30264777 -g1,16087:12005255,30264777 -g1,16087:12321401,30264777 -g1,16087:12637547,30264777 -g1,16087:12953693,30264777 -g1,16087:13269839,30264777 -g1,16087:17063587,30264777 -g1,16087:17695879,30264777 -g1,16087:19592754,30264777 -h1,16087:19908900,30264777:0,0,0 -k1,16087:32583029,30264777:12674129 -g1,16087:32583029,30264777 -) -(1,16088:6630773,30930955:25952256,404226,107478 -h1,16088:6630773,30930955:0,0,0 -g1,16088:6946919,30930955 -g1,16088:7263065,30930955 -g1,16088:14534416,30930955 -g1,16088:15166708,30930955 -g1,16088:17379728,30930955 -g1,16088:18960457,30930955 -g1,16088:19592749,30930955 -g1,16088:22121915,30930955 -g1,16088:24334935,30930955 -g1,16088:24967227,30930955 -g1,16088:26547957,30930955 -k1,16088:26547957,30930955:0 -h1,16088:27496395,30930955:0,0,0 -k1,16088:32583029,30930955:5086634 -g1,16088:32583029,30930955 -) -(1,16089:6630773,31597133:25952256,404226,107478 -h1,16089:6630773,31597133:0,0,0 -g1,16089:6946919,31597133 -g1,16089:7263065,31597133 -g1,16089:7579211,31597133 -g1,16089:7895357,31597133 -g1,16089:8211503,31597133 -g1,16089:8527649,31597133 -g1,16089:8843795,31597133 -g1,16089:9159941,31597133 -g1,16089:9476087,31597133 -g1,16089:9792233,31597133 -g1,16089:10108379,31597133 -g1,16089:10424525,31597133 -g1,16089:10740671,31597133 -g1,16089:11056817,31597133 -g1,16089:11372963,31597133 -g1,16089:11689109,31597133 -g1,16089:12005255,31597133 -g1,16089:12321401,31597133 -g1,16089:12637547,31597133 -g1,16089:12953693,31597133 -g1,16089:13269839,31597133 -g1,16089:15166713,31597133 -g1,16089:15799005,31597133 -g1,16089:19908899,31597133 -g1,16089:22754210,31597133 -g1,16089:23386502,31597133 -h1,16089:24018794,31597133:0,0,0 -k1,16089:32583029,31597133:8564235 -g1,16089:32583029,31597133 -) -] -) -g1,16091:32583029,31704611 -g1,16091:6630773,31704611 -g1,16091:6630773,31704611 -g1,16091:32583029,31704611 -g1,16091:32583029,31704611 -) -h1,16091:6630773,31901219:0,0,0 -(1,16094:6630773,41499329:25952256,9083666,0 -k1,16094:10523651,41499329:3892878 -h1,16093:10523651,41499329:0,0,0 -(1,16093:10523651,41499329:18166500,9083666,0 -(1,16093:10523651,41499329:18167376,9083688,0 -(1,16093:10523651,41499329:18167376,9083688,0 -(1,16093:10523651,41499329:0,9083688,0 -(1,16093:10523651,41499329:0,14208860,0 -(1,16093:10523651,41499329:28417720,14208860,0 -) -k1,16093:10523651,41499329:-28417720 -) -) -g1,16093:28691027,41499329 -) -) -) -g1,16094:28690151,41499329 -k1,16094:32583029,41499329:3892878 -) -(1,16101:6630773,42340817:25952256,513147,134348 -h1,16100:6630773,42340817:983040,0,0 -k1,16100:8968535,42340817:158035 -k1,16100:12365360,42340817:158036 -k1,16100:13182687,42340817:158035 -k1,16100:15540110,42340817:158035 -k1,16100:17600655,42340817:158035 -k1,16100:18290188,42340817:158036 -k1,16100:19732729,42340817:158035 -k1,16100:21270952,42340817:158035 -k1,16100:24207715,42340817:158036 -k1,16100:25384835,42340817:158035 -k1,16100:26750699,42340817:158035 -k1,16100:29311284,42340817:158035 -k1,16100:30128612,42340817:158036 -k1,16100:31305732,42340817:158035 -k1,16100:32583029,42340817:0 -) -(1,16101:6630773,43182305:25952256,513147,134348 -k1,16100:8544273,43182305:223982 -k1,16100:10276894,43182305:223982 -k1,16100:14691903,43182305:223982 -k1,16100:15447382,43182305:223982 -k1,16100:16690449,43182305:223982 -k1,16100:20106034,43182305:223982 -k1,16100:23577980,43182305:223982 -k1,16100:24461254,43182305:223982 -k1,16100:25704321,43182305:223982 -k1,16100:27674182,43182305:223982 -k1,16100:29094851,43182305:223982 -k1,16100:31343895,43182305:223982 -k1,16100:32227169,43182305:223982 -k1,16100:32583029,43182305:0 -) -(1,16101:6630773,44023793:25952256,513147,126483 -k1,16100:9078190,44023793:248029 -k1,16100:10187361,44023793:248028 -k1,16100:14005791,44023793:248029 -k1,16100:15999698,44023793:248028 -k1,16100:17439172,44023793:248029 -k1,16100:18706285,44023793:248028 -k1,16100:21440095,44023793:248029 -k1,16100:22879568,44023793:248028 -k1,16100:26696032,44023793:248029 -k1,16100:27603352,44023793:248028 -k1,16100:29371816,44023793:248029 -k1,16100:30554387,44023793:248028 -k1,16100:31563944,44023793:248029 -k1,16100:32583029,44023793:0 -) -(1,16101:6630773,44865281:25952256,513147,134348 -k1,16100:9899470,44865281:196369 -k1,16100:12301126,44865281:196369 -k1,16100:13148922,44865281:196368 -k1,16100:16626023,44865281:196369 -(1,16100:16626023,44865281:0,452978,115847 -r1,16104:19446272,44865281:2820249,568825,115847 -k1,16100:16626023,44865281:-2820249 -) -(1,16100:16626023,44865281:2820249,452978,115847 -k1,16100:16626023,44865281:3277 -h1,16100:19442995,44865281:0,411205,112570 -) -k1,16100:19642641,44865281:196369 -k1,16100:20521895,44865281:196369 -k1,16100:21369692,44865281:196369 -(1,16100:21369692,44865281:0,452978,115847 -r1,16104:23486517,44865281:2116825,568825,115847 -k1,16100:21369692,44865281:-2116825 -) -(1,16100:21369692,44865281:2116825,452978,115847 -k1,16100:21369692,44865281:3277 -h1,16100:23483240,44865281:0,411205,112570 -) -k1,16100:23682886,44865281:196369 -k1,16100:25409520,44865281:196368 -k1,16100:26257317,44865281:196369 -k1,16100:27201452,44865281:196369 -k1,16100:29633254,44865281:196369 -k1,16100:32583029,44865281:0 -) -(1,16101:6630773,45706769:25952256,513147,134348 -k1,16100:8924129,45706769:297785 -k1,16100:10489381,45706769:297786 -k1,16100:13291297,45706769:297785 -k1,16100:14608168,45706769:297786 -k1,16100:17915366,45706769:297785 -k1,16100:19232237,45706769:297786 -k1,16100:21543288,45706769:297785 -k1,16100:22500366,45706769:297786 -k1,16100:24223559,45706769:297785 -k1,16100:27305314,45706769:297786 -k1,16100:28254527,45706769:297785 -k1,16100:29571398,45706769:297786 -k1,16100:31931601,45706769:297785 -k1,16100:32583029,45706769:0 -) -] -(1,16104:32583029,45706769:0,0,0 -g1,16104:32583029,45706769 -) -) -] -(1,16104:6630773,47279633:25952256,0,0 -h1,16104:6630773,47279633:25952256,0,0 -) -] -(1,16104:4262630,4025873:0,0,0 -[1,16104:-473656,4025873:0,0,0 -(1,16104:-473656,-710413:0,0,0 -(1,16104:-473656,-710413:0,0,0 -g1,16104:-473656,-710413 -) -g1,16104:-473656,-710413 -) -] -) -] -!25830 -}311 -Input:2605:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2606:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2607:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2608:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2609:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2610:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2611:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2612:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2613:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2614:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2615:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2616:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2617:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2618:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2619:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1392 -{312 -[1,16141:4262630,47279633:28320399,43253760,0 -(1,16141:4262630,4025873:0,0,0 -[1,16141:-473656,4025873:0,0,0 -(1,16141:-473656,-710413:0,0,0 -(1,16141:-473656,-644877:0,0,0 -k1,16141:-473656,-644877:-65536 -) -(1,16141:-473656,4736287:0,0,0 -k1,16141:-473656,4736287:5209943 -) -g1,16141:-473656,-710413 -) -] -) -[1,16141:6630773,47279633:25952256,43253760,0 -[1,16141:6630773,4812305:25952256,786432,0 -(1,16141:6630773,4812305:25952256,505283,134348 -(1,16141:6630773,4812305:25952256,505283,134348 -g1,16141:3078558,4812305 -[1,16141:3078558,4812305:0,0,0 -(1,16141:3078558,2439708:0,1703936,0 -k1,16141:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,16141:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,16141:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,16141:3078558,4812305:0,0,0 -(1,16141:3078558,2439708:0,1703936,0 -g1,16141:29030814,2439708 -g1,16141:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,16141:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,16141:37855564,2439708:1179648,16384,0 -) -) -k1,16141:3078556,2439708:-34777008 -) -] -[1,16141:3078558,4812305:0,0,0 -(1,16141:3078558,49800853:0,16384,2228224 -k1,16141:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,16141:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,16141:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,16141:3078558,4812305:0,0,0 -(1,16141:3078558,49800853:0,16384,2228224 -g1,16141:29030814,49800853 -g1,16141:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,16141:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,16141:37855564,49800853:1179648,16384,0 -) -) -k1,16141:3078556,49800853:-34777008 -) -] -g1,16141:6630773,4812305 -g1,16141:6630773,4812305 -g1,16141:9113932,4812305 -g1,16141:13027742,4812305 -k1,16141:31387652,4812305:18359910 -) -) -] -[1,16141:6630773,45706769:25952256,40108032,0 -(1,16141:6630773,45706769:25952256,40108032,0 -(1,16141:6630773,45706769:0,0,0 -g1,16141:6630773,45706769 -) -[1,16141:6630773,45706769:25952256,40108032,0 -(1,16101:6630773,6254097:25952256,513147,126483 -k1,16100:8990367,6254097:210668 -k1,16100:10220121,6254097:210669 -k1,16100:11708086,6254097:210668 -k1,16100:12779897,6254097:210668 -k1,16100:14009651,6254097:210669 -k1,16100:16552745,6254097:210668 -k1,16100:17422706,6254097:210669 -k1,16100:21878796,6254097:210668 -k1,16100:27434580,6254097:210668 -k1,16100:28636809,6254097:210669 -k1,16100:30133293,6254097:210668 -k1,16100:32583029,6254097:0 -) -(1,16101:6630773,7095585:25952256,505283,7863 -g1,16100:7446040,7095585 -g1,16100:9341996,7095585 -g1,16100:11443735,7095585 -g1,16100:12329126,7095585 -g1,16100:13144393,7095585 -k1,16101:32583029,7095585:17232694 -g1,16101:32583029,7095585 -) -(1,16104:6630773,9186845:25952256,555811,139132 -(1,16104:6630773,9186845:2899444,534184,12975 -g1,16104:6630773,9186845 -g1,16104:9530217,9186845 -) -g1,16104:12619978,9186845 -k1,16104:32583029,9186845:17777294 -g1,16104:32583029,9186845 -) -(1,16107:6630773,10421549:25952256,513147,134348 -k1,16106:7465003,10421549:206395 -k1,16106:8690482,10421549:206394 -k1,16106:10263958,10421549:206395 -k1,16106:11129645,10421549:206395 -k1,16106:13796261,10421549:206394 -k1,16106:16078837,10421549:206395 -k1,16106:17304317,10421549:206395 -k1,16106:20318273,10421549:206394 -k1,16106:21056165,10421549:206395 -k1,16106:22419270,10421549:206395 -k1,16106:24646794,10421549:206394 -k1,16106:25504617,10421549:206395 -k1,16106:26730097,10421549:206395 -k1,16106:28499525,10421549:206394 -k1,16106:29747942,10421549:206395 -k1,16106:32583029,10421549:0 -) -(1,16107:6630773,11263037:25952256,513147,134348 -k1,16106:7309685,11263037:212951 -k1,16106:8390987,11263037:212950 -k1,16106:10000510,11263037:212951 -k1,16106:11232545,11263037:212950 -(1,16106:11232545,11263037:0,452978,115847 -r1,16141:12997658,11263037:1765113,568825,115847 -k1,16106:11232545,11263037:-1765113 -) -(1,16106:11232545,11263037:1765113,452978,115847 -k1,16106:11232545,11263037:3277 -h1,16106:12994381,11263037:0,411205,112570 -) -k1,16106:13210609,11263037:212951 -k1,16106:14106444,11263037:212950 -(1,16106:14106444,11263037:0,459977,115847 -r1,16141:15519845,11263037:1413401,575824,115847 -k1,16106:14106444,11263037:-1413401 -) -(1,16106:14106444,11263037:1413401,459977,115847 -k1,16106:14106444,11263037:3277 -h1,16106:15516568,11263037:0,411205,112570 -) -k1,16106:15732796,11263037:212951 -k1,16106:18732992,11263037:212950 -k1,16106:19597371,11263037:212951 -k1,16106:20166181,11263037:212950 -k1,16106:22890472,11263037:212951 -k1,16106:24838815,11263037:212950 -(1,16106:24838815,11263037:0,452978,115847 -r1,16141:32583029,11263037:7744214,568825,115847 -k1,16106:24838815,11263037:-7744214 -) -(1,16106:24838815,11263037:7744214,452978,115847 -k1,16106:24838815,11263037:3277 -h1,16106:32579752,11263037:0,411205,112570 -) -k1,16106:32583029,11263037:0 -) -(1,16107:6630773,12104525:25952256,505283,126483 -k1,16106:7547326,12104525:233668 -(1,16106:7547326,12104525:0,459977,115847 -r1,16141:14939828,12104525:7392502,575824,115847 -k1,16106:7547326,12104525:-7392502 -) -(1,16106:7547326,12104525:7392502,459977,115847 -k1,16106:7547326,12104525:3277 -h1,16106:14936551,12104525:0,411205,112570 -) -k1,16106:15347165,12104525:233667 -k1,16106:16599918,12104525:233668 -k1,16106:19418981,12104525:233668 -k1,16106:22163988,12104525:233667 -k1,16106:24019672,12104525:233668 -k1,16106:26587732,12104525:233668 -k1,16106:29193147,12104525:233667 -k1,16106:30966911,12104525:233668 -k1,16106:32583029,12104525:0 -) -(1,16107:6630773,12946013:25952256,513147,134348 -k1,16106:10366197,12946013:149294 -k1,16106:11143325,12946013:149293 -k1,16106:12311704,12946013:149294 -k1,16106:13828079,12946013:149294 -k1,16106:14636665,12946013:149294 -k1,16106:17593520,12946013:149293 -(1,16106:17593520,12946013:0,452978,115847 -r1,16141:19358633,12946013:1765113,568825,115847 -k1,16106:17593520,12946013:-1765113 -) -(1,16106:17593520,12946013:1765113,452978,115847 -k1,16106:17593520,12946013:3277 -h1,16106:19355356,12946013:0,411205,112570 -) -k1,16106:19681597,12946013:149294 -k1,16106:20849976,12946013:149294 -k1,16106:23510610,12946013:149294 -k1,16106:25281919,12946013:149293 -k1,16106:27802961,12946013:149294 -k1,16106:30572384,12946013:149294 -k1,16106:32583029,12946013:0 -) -(1,16107:6630773,13787501:25952256,505283,134348 -g1,16106:7446040,13787501 -g1,16106:8664354,13787501 -g1,16106:10644196,13787501 -g1,16106:11241884,13787501 -g1,16106:12092541,13787501 -k1,16107:32583030,13787501:19918360 -g1,16107:32583030,13787501 -) -(1,16109:6630773,14628989:25952256,513147,134348 -h1,16108:6630773,14628989:983040,0,0 -k1,16108:8711540,14628989:144178 -k1,16108:10785098,14628989:144178 -k1,16108:11285136,14628989:144178 -k1,16108:12818677,14628989:144178 -k1,16108:14839151,14628989:144178 -k1,16108:18345327,14628989:144179 -k1,16108:18845365,14628989:144178 -k1,16108:21500883,14628989:144178 -(1,16108:21500883,14628989:0,452978,115847 -r1,16141:23617708,14628989:2116825,568825,115847 -k1,16108:21500883,14628989:-2116825 -) -(1,16108:21500883,14628989:2116825,452978,115847 -k1,16108:21500883,14628989:3277 -h1,16108:23614431,14628989:0,411205,112570 -) -k1,16108:23761886,14628989:144178 -k1,16108:27268061,14628989:144178 -k1,16108:30386918,14628989:144178 -k1,16108:32583029,14628989:0 -) -(1,16109:6630773,15470477:25952256,513147,126483 -k1,16108:11058688,15470477:297181 -k1,16108:12042030,15470477:297180 -k1,16108:13358296,15470477:297181 -k1,16108:15723792,15470477:297180 -k1,16108:16680265,15470477:297181 -k1,16108:18593563,15470477:297180 -k1,16108:22303204,15470477:297181 -k1,16108:24738168,15470477:297180 -k1,16108:25686777,15470477:297181 -k1,16108:26572470,15470477:297180 -k1,16108:27823200,15470477:297181 -k1,16108:29554308,15470477:297180 -k1,16108:30943974,15470477:297181 -k1,16108:32583029,15470477:0 -) -(1,16109:6630773,16311965:25952256,505283,126483 -g1,16108:9244348,16311965 -g1,16108:10059615,16311965 -g1,16108:11277929,16311965 -k1,16109:32583028,16311965:19854132 -g1,16109:32583028,16311965 -) -v1,16111:6630773,17502431:0,393216,0 -(1,16119:6630773,20482240:25952256,3373025,196608 -g1,16119:6630773,20482240 -g1,16119:6630773,20482240 -g1,16119:6434165,20482240 -(1,16119:6434165,20482240:0,3373025,196608 -r1,16141:32779637,20482240:26345472,3569633,196608 -k1,16119:6434165,20482240:-26345472 -) -(1,16119:6434165,20482240:26345472,3373025,196608 -[1,16119:6630773,20482240:25952256,3176417,0 -(1,16113:6630773,17716341:25952256,410518,101187 -(1,16112:6630773,17716341:0,0,0 -g1,16112:6630773,17716341 -g1,16112:6630773,17716341 -g1,16112:6303093,17716341 -(1,16112:6303093,17716341:0,0,0 -) -g1,16112:6630773,17716341 -) -g1,16113:8211502,17716341 -g1,16113:9159940,17716341 -g1,16113:13269835,17716341 -g1,16113:13902127,17716341 -g1,16113:15799002,17716341 -g1,16113:16431294,17716341 -g1,16113:17063586,17716341 -g1,16113:20541189,17716341 -g1,16113:22754209,17716341 -g1,16113:23386501,17716341 -g1,16113:27496396,17716341 -g1,16113:30341708,17716341 -h1,16113:31290145,17716341:0,0,0 -k1,16113:32583029,17716341:1292884 -g1,16113:32583029,17716341 -) -(1,16114:6630773,18382519:25952256,0,0 -h1,16114:6630773,18382519:0,0,0 -h1,16114:6630773,18382519:0,0,0 -k1,16114:32583029,18382519:25952256 -g1,16114:32583029,18382519 -) -(1,16115:6630773,19048697:25952256,410518,107478 -h1,16115:6630773,19048697:0,0,0 -g1,16115:10740667,19048697 -g1,16115:12953687,19048697 -g1,16115:13902125,19048697 -g1,16115:15798999,19048697 -g1,16115:16431291,19048697 -g1,16115:19276602,19048697 -h1,16115:19592748,19048697:0,0,0 -k1,16115:32583029,19048697:12990281 -g1,16115:32583029,19048697 -) -(1,16116:6630773,19714875:25952256,404226,107478 -h1,16116:6630773,19714875:0,0,0 -g1,16116:6946919,19714875 -g1,16116:7263065,19714875 -g1,16116:11372959,19714875 -h1,16116:11689105,19714875:0,0,0 -k1,16116:32583029,19714875:20893924 -g1,16116:32583029,19714875 -) -(1,16117:6630773,20381053:25952256,404226,101187 -h1,16117:6630773,20381053:0,0,0 -g1,16117:6946919,20381053 -g1,16117:7263065,20381053 -k1,16117:7263065,20381053:0 -h1,16117:14218270,20381053:0,0,0 -k1,16117:32583030,20381053:18364760 -g1,16117:32583030,20381053 -) -] -) -g1,16119:32583029,20482240 -g1,16119:6630773,20482240 -g1,16119:6630773,20482240 -g1,16119:32583029,20482240 -g1,16119:32583029,20482240 -) -h1,16119:6630773,20678848:0,0,0 -(1,16122:6630773,30352338:25952256,9083666,0 -k1,16122:10523651,30352338:3892878 -h1,16121:10523651,30352338:0,0,0 -(1,16121:10523651,30352338:18166500,9083666,0 -(1,16121:10523651,30352338:18167376,9083688,0 -(1,16121:10523651,30352338:18167376,9083688,0 -(1,16121:10523651,30352338:0,9083688,0 -(1,16121:10523651,30352338:0,14208860,0 -(1,16121:10523651,30352338:28417720,14208860,0 -) -k1,16121:10523651,30352338:-28417720 -) -) -g1,16121:28691027,30352338 -) -) -) -g1,16122:28690151,30352338 -k1,16122:32583029,30352338:3892878 -) -v1,16129:6630773,31718114:0,393216,0 -(1,16132:6630773,35687122:25952256,4362224,616038 -g1,16132:6630773,35687122 -(1,16132:6630773,35687122:25952256,4362224,616038 -(1,16132:6630773,36303160:25952256,4978262,0 -[1,16132:6630773,36303160:25952256,4978262,0 -(1,16132:6630773,36276946:25952256,4925834,0 -r1,16141:6656987,36276946:26214,4925834,0 -[1,16132:6656987,36276946:25899828,4925834,0 -(1,16132:6656987,35687122:25899828,3746186,0 -[1,16132:7246811,35687122:24720180,3746186,0 -(1,16130:7246811,33028310:24720180,1087374,126483 -k1,16129:8677751,33028310:221237 -k1,16129:10319809,33028310:221237 -k1,16129:12033957,33028310:221238 -k1,16129:13274279,33028310:221237 -k1,16129:14772813,33028310:221237 -k1,16129:16554462,33028310:221237 -k1,16129:17241661,33028310:221238 -k1,16129:18481983,33028310:221237 -k1,16129:21163442,33028310:221237 -k1,16129:22956888,33028310:221237 -k1,16129:23709622,33028310:221237 -k1,16129:26276394,33028310:221238 -k1,16129:28065252,33028310:221237 -k1,16129:29305574,33028310:221237 -k1,16129:31966991,33028310:0 -) -(1,16130:7246811,33869798:24720180,505283,126483 -g1,16129:9628389,33869798 -g1,16129:11077390,33869798 -g1,16129:12468064,33869798 -g1,16129:14634028,33869798 -g1,16129:15852342,33869798 -g1,16129:18712988,33869798 -k1,16130:31966991,33869798:11584146 -g1,16130:31966991,33869798 -) -(1,16132:7246811,34711286:24720180,505283,134348 -h1,16131:7246811,34711286:983040,0,0 -k1,16131:10210853,34711286:206287 -k1,16131:12152533,34711286:206287 -k1,16131:13377905,34711286:206287 -k1,16131:16044414,34711286:206287 -k1,16131:17996580,34711286:206287 -k1,16131:19533248,34711286:206287 -k1,16131:21695786,34711286:206288 -k1,16131:23072546,34711286:206287 -k1,16131:24809099,34711286:206287 -k1,16131:25666814,34711286:206287 -k1,16131:28113777,34711286:206287 -k1,16131:29339149,34711286:206287 -k1,16131:31041623,34711286:206287 -k1,16132:31966991,34711286:0 -) -(1,16132:7246811,35552774:24720180,505283,134348 -g1,16131:9395081,35552774 -g1,16131:11623305,35552774 -g1,16131:12473962,35552774 -g1,16131:15293320,35552774 -g1,16131:15848409,35552774 -g1,16131:17324935,35552774 -g1,16131:18918115,35552774 -g1,16131:20889438,35552774 -g1,16131:22280112,35552774 -g1,16131:24576493,35552774 -k1,16132:31966991,35552774:5044964 -g1,16132:31966991,35552774 -) -] -) -] -r1,16141:32583029,36276946:26214,4925834,0 -) -] -) -) -g1,16132:32583029,35687122 -) -h1,16132:6630773,36303160:0,0,0 -(1,16138:6630773,39635016:25952256,32768,229376 -(1,16138:6630773,39635016:0,32768,229376 -(1,16138:6630773,39635016:5505024,32768,229376 -r1,16141:12135797,39635016:5505024,262144,229376 -) -k1,16138:6630773,39635016:-5505024 -) -(1,16138:6630773,39635016:25952256,32768,0 -r1,16141:32583029,39635016:25952256,32768,0 -) -) -(1,16138:6630773,41239344:25952256,606339,161218 -(1,16138:6630773,41239344:1974731,582746,14155 -g1,16138:6630773,41239344 -g1,16138:8605504,41239344 -) -g1,16138:11742582,41239344 -k1,16138:32583029,41239344:16172973 -g1,16138:32583029,41239344 -) -(1,16141:6630773,42474048:25952256,513147,126483 -k1,16140:8065168,42474048:237708 -k1,16140:9628015,42474048:237709 -k1,16140:10525015,42474048:237708 -k1,16140:14553325,42474048:237708 -k1,16140:15322531,42474048:237709 -k1,16140:16844745,42474048:237708 -k1,16140:18462642,42474048:237709 -k1,16140:19897693,42474048:237708 -k1,16140:21412698,42474048:237708 -k1,16140:24519573,42474048:237709 -k1,16140:26041787,42474048:237708 -k1,16140:27271055,42474048:237708 -k1,16140:28575035,42474048:237709 -k1,16140:31227089,42474048:237708 -k1,16141:32583029,42474048:0 -) -(1,16141:6630773,43315536:25952256,505283,134348 -k1,16140:8962963,43315536:211445 -k1,16140:10568360,43315536:211446 -(1,16140:10568360,43315536:0,452978,115847 -r1,16141:11981761,43315536:1413401,568825,115847 -k1,16140:10568360,43315536:-1413401 -) -(1,16140:10568360,43315536:1413401,452978,115847 -k1,16140:10568360,43315536:3277 -h1,16140:11978484,43315536:0,411205,112570 -) -k1,16140:12366876,43315536:211445 -k1,16140:14463792,43315536:211445 -k1,16140:15543590,43315536:211446 -k1,16140:17523852,43315536:211445 -k1,16140:18834991,43315536:211445 -k1,16140:23384919,43315536:211445 -k1,16140:25089931,43315536:211446 -k1,16140:25987538,43315536:211445 -k1,16140:28377400,43315536:211445 -k1,16140:30102072,43315536:211446 -k1,16140:30964945,43315536:211445 -k1,16141:32583029,43315536:0 -) -(1,16141:6630773,44157024:25952256,513147,134348 -k1,16140:8216838,44157024:133787 -k1,16140:10042765,44157024:133787 -k1,16140:12451962,44157024:133787 -k1,16140:13245041,44157024:133787 -k1,16140:14397913,44157024:133787 -k1,16140:16094734,44157024:133787 -k1,16140:18625827,44157024:133786 -k1,16140:20778123,44157024:133787 -k1,16140:22656478,44157024:133787 -k1,16140:23560968,44157024:133787 -k1,16140:25120818,44157024:133787 -k1,16140:26366096,44157024:133787 -k1,16140:28057674,44157024:133787 -k1,16140:29183021,44157024:133787 -k1,16140:32583029,44157024:0 -) -(1,16141:6630773,44998512:25952256,505283,126483 -k1,16140:7429304,44998512:147103 -k1,16140:8595492,44998512:147103 -k1,16140:11634699,44998512:147103 -k1,16140:15519976,44998512:147103 -k1,16140:17180305,44998512:147103 -k1,16140:17978836,44998512:147103 -k1,16140:19403235,44998512:147102 -k1,16140:20569423,44998512:147103 -k1,16140:24961948,44998512:147103 -k1,16140:26181220,44998512:147103 -k1,16140:27319883,44998512:147103 -k1,16140:30336152,44998512:147103 -k1,16140:31767761,44998512:147103 -k1,16140:32583029,44998512:0 -) -] -(1,16141:32583029,45706769:0,0,0 -g1,16141:32583029,45706769 -) -) -] -(1,16141:6630773,47279633:25952256,0,0 -h1,16141:6630773,47279633:25952256,0,0 -) -] -(1,16141:4262630,4025873:0,0,0 -[1,16141:-473656,4025873:0,0,0 -(1,16141:-473656,-710413:0,0,0 -(1,16141:-473656,-710413:0,0,0 -g1,16141:-473656,-710413 -) -g1,16141:-473656,-710413 -) -] -) -] -!17442 -}312 -Input:2620:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2621:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2622:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2623:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2624:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2625:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2626:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!656 -{313 -[1,16176:4262630,47279633:28320399,43253760,0 -(1,16176:4262630,4025873:0,0,0 -[1,16176:-473656,4025873:0,0,0 -(1,16176:-473656,-710413:0,0,0 -(1,16176:-473656,-644877:0,0,0 -k1,16176:-473656,-644877:-65536 -) -(1,16176:-473656,4736287:0,0,0 -k1,16176:-473656,4736287:5209943 -) -g1,16176:-473656,-710413 -) -] -) -[1,16176:6630773,47279633:25952256,43253760,0 -[1,16176:6630773,4812305:25952256,786432,0 -(1,16176:6630773,4812305:25952256,513147,134348 -(1,16176:6630773,4812305:25952256,513147,134348 -g1,16176:3078558,4812305 -[1,16176:3078558,4812305:0,0,0 -(1,16176:3078558,2439708:0,1703936,0 -k1,16176:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,16176:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,16176:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,16176:3078558,4812305:0,0,0 -(1,16176:3078558,2439708:0,1703936,0 -g1,16176:29030814,2439708 -g1,16176:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,16176:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,16176:37855564,2439708:1179648,16384,0 -) -) -k1,16176:3078556,2439708:-34777008 -) -] -[1,16176:3078558,4812305:0,0,0 -(1,16176:3078558,49800853:0,16384,2228224 -k1,16176:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,16176:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,16176:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,16176:3078558,4812305:0,0,0 -(1,16176:3078558,49800853:0,16384,2228224 -g1,16176:29030814,49800853 -g1,16176:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,16176:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,16176:37855564,49800853:1179648,16384,0 -) -) -k1,16176:3078556,49800853:-34777008 -) -] -g1,16176:6630773,4812305 -k1,16176:25712890,4812305:17886740 -g1,16176:29057847,4812305 -g1,16176:29873114,4812305 -) -) -] -[1,16176:6630773,45706769:25952256,40108032,0 -(1,16176:6630773,45706769:25952256,40108032,0 -(1,16176:6630773,45706769:0,0,0 -g1,16176:6630773,45706769 -) -[1,16176:6630773,45706769:25952256,40108032,0 -(1,16141:6630773,6254097:25952256,513147,126483 -k1,16140:7876613,6254097:179569 -k1,16140:11097707,6254097:179568 -k1,16140:15349028,6254097:179569 -k1,16140:16211481,6254097:179568 -k1,16140:19899192,6254097:179569 -k1,16140:23287403,6254097:179568 -k1,16140:25034593,6254097:179569 -k1,16140:26233246,6254097:179568 -k1,16140:30658237,6254097:179569 -k1,16141:32583029,6254097:0 -) -(1,16141:6630773,7095585:25952256,505283,134348 -k1,16140:8987663,7095585:146361 -k1,16140:10125584,7095585:146361 -k1,16140:12237370,7095585:146361 -k1,16140:13035158,7095585:146360 -k1,16140:13537379,7095585:146361 -k1,16140:15709458,7095585:146361 -k1,16140:17249770,7095585:146361 -(1,16140:17249770,7095585:0,452978,115847 -r1,16176:20773442,7095585:3523672,568825,115847 -k1,16140:17249770,7095585:-3523672 -) -(1,16140:17249770,7095585:3523672,452978,115847 -k1,16140:17249770,7095585:3277 -h1,16140:20770165,7095585:0,411205,112570 -) -k1,16140:20919803,7095585:146361 -k1,16140:21752326,7095585:146361 -k1,16140:23175984,7095585:146361 -k1,16140:25210436,7095585:146360 -k1,16140:27015513,7095585:146361 -k1,16140:28261568,7095585:146361 -k1,16140:29059357,7095585:146361 -(1,16140:29059357,7095585:0,452978,115847 -r1,16176:32583029,7095585:3523672,568825,115847 -k1,16140:29059357,7095585:-3523672 -) -(1,16140:29059357,7095585:3523672,452978,115847 -k1,16140:29059357,7095585:3277 -h1,16140:32579752,7095585:0,411205,112570 -) -k1,16140:32583029,7095585:0 -) -(1,16141:6630773,7937073:25952256,513147,126483 -k1,16140:9087140,7937073:196686 -k1,16140:9639685,7937073:196685 -k1,16140:11119566,7937073:196686 -k1,16140:13254807,7937073:196686 -k1,16140:14280522,7937073:196685 -k1,16140:16834538,7937073:196686 -k1,16140:18050308,7937073:196685 -k1,16140:21006715,7937073:196686 -k1,16140:24042421,7937073:196686 -k1,16140:24898398,7937073:196685 -k1,16140:29059357,7937073:196686 -(1,16140:29059357,7937073:0,452978,115847 -r1,16176:32583029,7937073:3523672,568825,115847 -k1,16140:29059357,7937073:-3523672 -) -(1,16140:29059357,7937073:3523672,452978,115847 -k1,16140:29059357,7937073:3277 -h1,16140:32579752,7937073:0,411205,112570 -) -k1,16140:32583029,7937073:0 -) -(1,16141:6630773,8778561:25952256,513147,122846 -k1,16140:8301102,8778561:177419 -k1,16140:9544791,8778561:177418 -k1,16140:11846887,8778561:177419 -k1,16140:13043390,8778561:177418 -k1,16140:15486389,8778561:177419 -(1,16140:15486389,8778561:0,452978,115847 -r1,16176:16899790,8778561:1413401,568825,115847 -k1,16140:15486389,8778561:-1413401 -) -(1,16140:15486389,8778561:1413401,452978,115847 -k1,16140:15486389,8778561:3277 -h1,16140:16896513,8778561:0,411205,112570 -) -k1,16140:17077208,8778561:177418 -k1,16140:17937512,8778561:177419 -(1,16140:17937512,8778561:0,452978,122846 -r1,16176:20406049,8778561:2468537,575824,122846 -k1,16140:17937512,8778561:-2468537 -) -(1,16140:17937512,8778561:2468537,452978,122846 -k1,16140:17937512,8778561:3277 -h1,16140:20402772,8778561:0,411205,112570 -) -k1,16140:20583468,8778561:177419 -k1,16140:21420178,8778561:177418 -k1,16140:24439238,8778561:177419 -k1,16140:25268084,8778561:177418 -k1,16140:28660699,8778561:177419 -k1,16140:32583029,8778561:0 -) -(1,16141:6630773,9620049:25952256,513147,134348 -k1,16140:10227824,9620049:292070 -k1,16140:12235626,9620049:292069 -k1,16140:13620181,9620049:292070 -k1,16140:14579407,9620049:292070 -(1,16140:14579407,9620049:0,452978,115847 -r1,16176:16696232,9620049:2116825,568825,115847 -k1,16140:14579407,9620049:-2116825 -) -(1,16140:14579407,9620049:2116825,452978,115847 -k1,16140:14579407,9620049:3277 -h1,16140:16692955,9620049:0,411205,112570 -) -k1,16140:16988301,9620049:292069 -k1,16140:17963256,9620049:292070 -(1,16140:17963256,9620049:0,452978,115847 -r1,16176:20431793,9620049:2468537,568825,115847 -k1,16140:17963256,9620049:-2468537 -) -(1,16140:17963256,9620049:2468537,452978,115847 -k1,16140:17963256,9620049:3277 -h1,16140:20428516,9620049:0,411205,112570 -) -k1,16140:20723862,9620049:292069 -k1,16140:24455917,9620049:292070 -k1,16140:26141938,9620049:292070 -k1,16140:29408686,9620049:292069 -k1,16140:31896867,9620049:292070 -k1,16140:32583029,9620049:0 -) -(1,16141:6630773,10461537:25952256,513147,126483 -k1,16140:8434203,10461537:240396 -k1,16140:11318322,10461537:240397 -k1,16140:12210146,10461537:240396 -k1,16140:13198308,10461537:240396 -k1,16140:15602047,10461537:240396 -k1,16140:16528606,10461537:240397 -k1,16140:20712959,10461537:240396 -k1,16140:23888057,10461537:240396 -k1,16140:25076104,10461537:240396 -k1,16140:28151588,10461537:240397 -k1,16140:29411069,10461537:240396 -(1,16140:29411069,10461537:0,452978,122846 -r1,16176:32583029,10461537:3171960,575824,122846 -k1,16140:29411069,10461537:-3171960 -) -(1,16140:29411069,10461537:3171960,452978,122846 -k1,16140:29411069,10461537:3277 -h1,16140:32579752,10461537:0,411205,112570 -) -k1,16140:32583029,10461537:0 -) -(1,16141:6630773,11303025:25952256,505283,134348 -g1,16140:9819754,11303025 -g1,16140:11123265,11303025 -g1,16140:12070260,11303025 -g1,16140:13782715,11303025 -g1,16140:14633372,11303025 -g1,16140:16029944,11303025 -k1,16141:32583029,11303025:14200998 -g1,16141:32583029,11303025 -) -v1,16143:6630773,12585864:0,393216,0 -(1,16144:6630773,17394522:25952256,5201874,616038 -g1,16144:6630773,17394522 -(1,16144:6630773,17394522:25952256,5201874,616038 -(1,16144:6630773,18010560:25952256,5817912,0 -[1,16144:6630773,18010560:25952256,5817912,0 -(1,16144:6630773,17984346:25952256,5765484,0 -r1,16176:6656987,17984346:26214,5765484,0 -[1,16144:6656987,17984346:25899828,5765484,0 -(1,16144:6656987,17394522:25899828,4585836,0 -[1,16144:7246811,17394522:24720180,4585836,0 -(1,16144:7246811,13894222:24720180,1085536,298548 -(1,16143:7246811,13894222:0,1085536,298548 -r1,16176:8753226,13894222:1506415,1384084,298548 -k1,16143:7246811,13894222:-1506415 -) -(1,16143:7246811,13894222:1506415,1085536,298548 -) -k1,16143:9002284,13894222:249058 -k1,16143:11026057,13894222:249058 -k1,16143:13163208,13894222:249059 -k1,16143:15377691,13894222:249058 -k1,16143:16278177,13894222:249058 -k1,16143:16883096,13894222:249059 -k1,16143:18409451,13894222:249058 -k1,16143:21072855,13894222:249058 -k1,16143:23057306,13894222:249058 -k1,16143:26746349,13894222:249058 -k1,16143:28186853,13894222:249059 -k1,16143:31118300,13894222:249058 -k1,16144:31966991,13894222:0 -) -(1,16144:7246811,14735710:24720180,513147,134348 -k1,16143:9254128,14735710:318454 -k1,16143:12294948,14735710:318454 -k1,16143:16073703,14735710:318454 -k1,16143:18280249,14735710:318454 -k1,16143:20564129,14735710:318455 -k1,16143:22276534,14735710:318454 -(1,16143:22276534,14735710:0,452978,115847 -r1,16176:25800206,14735710:3523672,568825,115847 -k1,16143:22276534,14735710:-3523672 -) -(1,16143:22276534,14735710:3523672,452978,115847 -k1,16143:22276534,14735710:3277 -h1,16143:25796929,14735710:0,411205,112570 -) -k1,16143:26118660,14735710:318454 -k1,16143:27428674,14735710:318454 -k1,16143:30924313,14735710:318454 -k1,16144:31966991,14735710:0 -) -(1,16144:7246811,15577198:24720180,513147,134348 -k1,16143:10116885,15577198:208657 -k1,16143:10941579,15577198:208656 -k1,16143:12851551,15577198:208657 -k1,16143:14804120,15577198:208656 -k1,16143:15672069,15577198:208657 -k1,16143:16236586,15577198:208657 -k1,16143:18771770,15577198:208656 -k1,16143:20431394,15577198:208657 -k1,16143:21836738,15577198:208657 -k1,16143:24176625,15577198:208656 -k1,16143:24916779,15577198:208657 -k1,16143:26409941,15577198:208656 -k1,16143:30078899,15577198:208657 -k1,16143:31966991,15577198:0 -) -(1,16144:7246811,16418686:24720180,513147,126483 -k1,16143:9531068,16418686:236257 -k1,16143:12831789,16418686:236257 -k1,16143:14443647,16418686:236257 -k1,16143:15366066,16418686:236257 -k1,16143:18360078,16418686:236257 -k1,16143:20606981,16418686:236258 -k1,16143:22728709,16418686:236257 -k1,16143:23956526,16418686:236257 -k1,16143:25211868,16418686:236257 -k1,16143:27101598,16418686:236257 -k1,16143:28285506,16418686:236257 -k1,16143:30223078,16418686:236257 -k1,16143:31966991,16418686:0 -) -(1,16144:7246811,17260174:24720180,505283,134348 -g1,16143:8132202,17260174 -g1,16143:9140801,17260174 -g1,16143:12222959,17260174 -g1,16143:12953685,17260174 -g1,16143:15782874,17260174 -g1,16143:18442325,17260174 -g1,16143:18997414,17260174 -(1,16143:18997414,17260174:0,452978,122846 -r1,16176:21465951,17260174:2468537,575824,122846 -k1,16143:18997414,17260174:-2468537 -) -(1,16143:18997414,17260174:2468537,452978,122846 -k1,16143:18997414,17260174:3277 -h1,16143:21462674,17260174:0,411205,112570 -) -g1,16143:21665180,17260174 -g1,16143:22515837,17260174 -(1,16143:22515837,17260174:0,452978,115847 -r1,16176:23929238,17260174:1413401,568825,115847 -k1,16143:22515837,17260174:-1413401 -) -(1,16143:22515837,17260174:1413401,452978,115847 -k1,16143:22515837,17260174:3277 -h1,16143:23925961,17260174:0,411205,112570 -) -k1,16144:31966991,17260174:7864083 -g1,16144:31966991,17260174 -) -] -) -] -r1,16176:32583029,17984346:26214,5765484,0 -) -] -) -) -g1,16144:32583029,17394522 -) -h1,16144:6630773,18010560:0,0,0 -(1,16147:6630773,19293400:25952256,505283,134348 -h1,16146:6630773,19293400:983040,0,0 -g1,16146:8766591,19293400 -g1,16146:10626502,19293400 -g1,16146:11181591,19293400 -g1,16146:13505497,19293400 -g1,16146:16366143,19293400 -g1,16146:18300765,19293400 -(1,16146:18300765,19293400:0,452978,115847 -r1,16176:20417590,19293400:2116825,568825,115847 -k1,16146:18300765,19293400:-2116825 -) -(1,16146:18300765,19293400:2116825,452978,115847 -k1,16146:18300765,19293400:3277 -h1,16146:20414313,19293400:0,411205,112570 -) -g1,16146:20616819,19293400 -g1,16146:21502210,19293400 -k1,16147:32583029,19293400:7941645 -g1,16147:32583029,19293400 -) -v1,16149:6630773,20400929:0,393216,0 -(1,16159:6630773,24687928:25952256,4680215,196608 -g1,16159:6630773,24687928 -g1,16159:6630773,24687928 -g1,16159:6434165,24687928 -(1,16159:6434165,24687928:0,4680215,196608 -r1,16176:32779637,24687928:26345472,4876823,196608 -k1,16159:6434165,24687928:-26345472 -) -(1,16159:6434165,24687928:26345472,4680215,196608 -[1,16159:6630773,24687928:25952256,4483607,0 -(1,16151:6630773,20614839:25952256,410518,107478 -(1,16150:6630773,20614839:0,0,0 -g1,16150:6630773,20614839 -g1,16150:6630773,20614839 -g1,16150:6303093,20614839 -(1,16150:6303093,20614839:0,0,0 -) -g1,16150:6630773,20614839 -) -k1,16151:6630773,20614839:0 -g1,16151:12637541,20614839 -g1,16151:14850561,20614839 -g1,16151:16115144,20614839 -h1,16151:16431290,20614839:0,0,0 -k1,16151:32583029,20614839:16151739 -g1,16151:32583029,20614839 -) -(1,16152:6630773,21281017:25952256,404226,107478 -h1,16152:6630773,21281017:0,0,0 -g1,16152:6946919,21281017 -g1,16152:7263065,21281017 -g1,16152:11372959,21281017 -h1,16152:11689105,21281017:0,0,0 -k1,16152:32583029,21281017:20893924 -g1,16152:32583029,21281017 -) -(1,16153:6630773,21947195:25952256,404226,107478 -h1,16153:6630773,21947195:0,0,0 -g1,16153:6946919,21947195 -g1,16153:7263065,21947195 -g1,16153:11689105,21947195 -g1,16153:12321397,21947195 -k1,16153:12321397,21947195:0 -h1,16153:14534417,21947195:0,0,0 -k1,16153:32583029,21947195:18048612 -g1,16153:32583029,21947195 -) -(1,16154:6630773,22613373:25952256,404226,107478 -h1,16154:6630773,22613373:0,0,0 -g1,16154:6946919,22613373 -g1,16154:7263065,22613373 -g1,16154:7579211,22613373 -g1,16154:7895357,22613373 -g1,16154:8211503,22613373 -g1,16154:8527649,22613373 -g1,16154:8843795,22613373 -g1,16154:9159941,22613373 -g1,16154:9476087,22613373 -g1,16154:9792233,22613373 -g1,16154:10108379,22613373 -g1,16154:12005253,22613373 -g1,16154:12637545,22613373 -k1,16154:12637545,22613373:0 -h1,16154:15482856,22613373:0,0,0 -k1,16154:32583028,22613373:17100172 -g1,16154:32583028,22613373 -) -(1,16155:6630773,23279551:25952256,388497,101187 -h1,16155:6630773,23279551:0,0,0 -g1,16155:6946919,23279551 -g1,16155:7263065,23279551 -g1,16155:7579211,23279551 -g1,16155:7895357,23279551 -g1,16155:8211503,23279551 -g1,16155:8527649,23279551 -g1,16155:8843795,23279551 -g1,16155:9159941,23279551 -g1,16155:9476087,23279551 -g1,16155:9792233,23279551 -g1,16155:10108379,23279551 -g1,16155:10740671,23279551 -g1,16155:11372963,23279551 -g1,16155:12321401,23279551 -g1,16155:12953693,23279551 -g1,16155:13585985,23279551 -k1,16155:13585985,23279551:0 -h1,16155:14218277,23279551:0,0,0 -k1,16155:32583029,23279551:18364752 -g1,16155:32583029,23279551 -) -(1,16156:6630773,23945729:25952256,404226,82312 -h1,16156:6630773,23945729:0,0,0 -g1,16156:6946919,23945729 -g1,16156:7263065,23945729 -g1,16156:7579211,23945729 -g1,16156:7895357,23945729 -g1,16156:8211503,23945729 -g1,16156:8527649,23945729 -g1,16156:8843795,23945729 -g1,16156:9159941,23945729 -g1,16156:9476087,23945729 -g1,16156:9792233,23945729 -g1,16156:10108379,23945729 -g1,16156:12005253,23945729 -g1,16156:12637545,23945729 -k1,16156:12637545,23945729:0 -h1,16156:14850565,23945729:0,0,0 -k1,16156:32583029,23945729:17732464 -g1,16156:32583029,23945729 -) -(1,16157:6630773,24611907:25952256,404226,76021 -h1,16157:6630773,24611907:0,0,0 -g1,16157:6946919,24611907 -g1,16157:7263065,24611907 -g1,16157:7579211,24611907 -g1,16157:7895357,24611907 -g1,16157:8211503,24611907 -g1,16157:8527649,24611907 -g1,16157:8843795,24611907 -g1,16157:9159941,24611907 -g1,16157:9476087,24611907 -g1,16157:9792233,24611907 -g1,16157:10108379,24611907 -h1,16157:12321400,24611907:0,0,0 -k1,16157:32583028,24611907:20261628 -g1,16157:32583028,24611907 -) -] -) -g1,16159:32583029,24687928 -g1,16159:6630773,24687928 -g1,16159:6630773,24687928 -g1,16159:32583029,24687928 -g1,16159:32583029,24687928 -) -h1,16159:6630773,24884536:0,0,0 -(1,16162:6630773,34475089:25952256,9083666,0 -k1,16162:10523651,34475089:3892878 -h1,16161:10523651,34475089:0,0,0 -(1,16161:10523651,34475089:18166500,9083666,0 -(1,16161:10523651,34475089:18167376,9083688,0 -(1,16161:10523651,34475089:18167376,9083688,0 -(1,16161:10523651,34475089:0,9083688,0 -(1,16161:10523651,34475089:0,14208860,0 -(1,16161:10523651,34475089:28417720,14208860,0 -) -k1,16161:10523651,34475089:-28417720 -) -) -g1,16161:28691027,34475089 -) -) -) -g1,16162:28690151,34475089 -k1,16162:32583029,34475089:3892878 -) -v1,16169:6630773,35757929:0,393216,0 -(1,16170:6630773,38758964:25952256,3394251,616038 -g1,16170:6630773,38758964 -(1,16170:6630773,38758964:25952256,3394251,616038 -(1,16170:6630773,39375002:25952256,4010289,0 -[1,16170:6630773,39375002:25952256,4010289,0 -(1,16170:6630773,39348788:25952256,3957861,0 -r1,16176:6656987,39348788:26214,3957861,0 -[1,16170:6656987,39348788:25899828,3957861,0 -(1,16170:6656987,38758964:25899828,2778213,0 -[1,16170:7246811,38758964:24720180,2778213,0 -(1,16170:7246811,37068125:24720180,1087374,134348 -k1,16169:8665142,37068125:208628 -k1,16169:10171384,37068125:208629 -k1,16169:11773963,37068125:208628 -k1,16169:13001676,37068125:208628 -k1,16169:15220950,37068125:208629 -k1,16169:16088870,37068125:208628 -k1,16169:17316583,37068125:208628 -k1,16169:20927840,37068125:208628 -k1,16169:21787897,37068125:208629 -(1,16169:21787897,37068125:0,452978,115847 -r1,16176:25311569,37068125:3523672,568825,115847 -k1,16169:21787897,37068125:-3523672 -) -(1,16169:21787897,37068125:3523672,452978,115847 -k1,16169:21787897,37068125:3277 -h1,16169:25308292,37068125:0,411205,112570 -) -k1,16169:25520197,37068125:208628 -k1,16169:26380253,37068125:208628 -k1,16169:27951376,37068125:208629 -k1,16169:29179089,37068125:208628 -k1,16169:31966991,37068125:0 -) -(1,16170:7246811,37909613:24720180,513147,134348 -k1,16169:8891601,37909613:202343 -k1,16169:10883731,37909613:202342 -k1,16169:12417110,37909613:202343 -k1,16169:14801146,37909613:202342 -k1,16169:16334525,37909613:202343 -k1,16169:18012082,37909613:202342 -k1,16169:20777538,37909613:202343 -k1,16169:22677262,37909613:202342 -k1,16169:24071050,37909613:202343 -k1,16169:28090864,37909613:202342 -k1,16169:28952499,37909613:202343 -k1,16169:30173926,37909613:202342 -k1,16170:31966991,37909613:0 -) -(1,16170:7246811,38751101:24720180,473825,7863 -k1,16170:31966991,38751101:22666282 -g1,16170:31966991,38751101 -) -] -) -] -r1,16176:32583029,39348788:26214,3957861,0 -) -] -) -) -g1,16170:32583029,38758964 -) -h1,16170:6630773,39375002:0,0,0 -(1,16174:6630773,40657841:25952256,505283,126483 -h1,16173:6630773,40657841:983040,0,0 -k1,16173:8269126,40657841:185420 -k1,16173:8986043,40657841:185420 -k1,16173:12096990,40657841:185420 -k1,16173:15059826,40657841:185420 -k1,16173:15896674,40657841:185420 -k1,16173:17174579,40657841:185420 -k1,16173:18910581,40657841:185420 -k1,16173:21165628,40657841:185420 -k1,16173:23132317,40657841:185420 -k1,16173:25903132,40657841:185420 -k1,16173:26771437,40657841:185420 -k1,16173:28934734,40657841:185420 -k1,16173:30727752,40657841:185420 -k1,16173:31599334,40657841:185420 -k1,16174:32583029,40657841:0 -) -(1,16174:6630773,41499329:25952256,505283,134348 -k1,16173:10031238,41499329:206896 -k1,16173:11717281,41499329:206895 -(1,16173:11717281,41499329:0,452978,115847 -r1,16176:18406359,41499329:6689078,568825,115847 -k1,16173:11717281,41499329:-6689078 -) -(1,16173:11717281,41499329:6689078,452978,115847 -k1,16173:11717281,41499329:3277 -h1,16173:18403082,41499329:0,411205,112570 -) -k1,16173:18786925,41499329:206896 -k1,16173:20781642,41499329:206895 -k1,16173:22821579,41499329:206896 -k1,16173:25978249,41499329:206895 -k1,16173:28351765,41499329:206896 -k1,16173:29662942,41499329:206895 -k1,16173:30617604,41499329:206896 -k1,16173:32583029,41499329:0 -) -(1,16174:6630773,42340817:25952256,513147,134348 -k1,16173:7498894,42340817:216693 -k1,16173:8071447,42340817:216693 -k1,16173:10487528,42340817:216693 -k1,16173:11533251,42340817:216693 -k1,16173:12947286,42340817:216692 -k1,16173:15636652,42340817:216693 -k1,16173:16536230,42340817:216693 -k1,16173:17772008,42340817:216693 -k1,16173:19642174,42340817:216693 -k1,16173:21136164,42340817:216693 -k1,16173:22039019,42340817:216693 -k1,16173:23026415,42340817:216693 -k1,16173:24967359,42340817:216692 -k1,16173:26052404,42340817:216693 -k1,16173:27575230,42340817:216693 -k1,16173:29322189,42340817:216693 -k1,16173:30190310,42340817:216693 -k1,16173:32583029,42340817:0 -) -(1,16174:6630773,43182305:25952256,513147,134348 -k1,16173:7358344,43182305:269474 -k1,16173:8895285,43182305:269475 -k1,16173:9520619,43182305:269474 -k1,16173:11421285,43182305:269475 -k1,16173:12318594,43182305:269474 -k1,16173:13607153,43182305:269474 -k1,16173:15243709,43182305:269475 -k1,16173:16172475,43182305:269474 -k1,16173:16797809,43182305:269474 -k1,16173:19093002,43182305:269475 -k1,16173:20230828,43182305:269474 -k1,16173:21592788,43182305:269475 -(1,16173:21592788,43182305:0,452978,122846 -r1,16176:25819884,43182305:4227096,575824,122846 -k1,16173:21592788,43182305:-4227096 -) -(1,16173:21592788,43182305:4227096,452978,122846 -k1,16173:21592788,43182305:3277 -h1,16173:25816607,43182305:0,411205,112570 -) -k1,16173:26263028,43182305:269474 -k1,16173:27160337,43182305:269474 -k1,16173:28633053,43182305:269475 -k1,16173:31563944,43182305:269474 -k1,16173:32583029,43182305:0 -) -(1,16174:6630773,44023793:25952256,505283,134348 -k1,16173:8402779,44023793:221424 -k1,16173:9155700,44023793:221424 -k1,16173:9732984,44023793:221424 -k1,16173:13350485,44023793:221425 -k1,16173:16045238,44023793:221424 -k1,16173:17534128,44023793:221424 -k1,16173:18774637,44023793:221424 -k1,16173:20587931,44023793:221424 -k1,16173:22260322,44023793:221424 -k1,16173:23109581,44023793:221424 -k1,16173:25997010,44023793:221424 -k1,16173:26869863,44023793:221425 -k1,16173:28110372,44023793:221424 -k1,16173:29962987,44023793:221424 -k1,16173:31052763,44023793:221424 -k1,16173:32583029,44023793:0 -) -(1,16174:6630773,44865281:25952256,513147,126483 -k1,16173:7505679,44865281:223478 -k1,16173:10159231,44865281:223477 -k1,16173:11401794,44865281:223478 -k1,16173:15363445,44865281:223477 -k1,16173:18784425,44865281:223478 -k1,16173:19623940,44865281:223477 -k1,16173:22739522,44865281:223478 -k1,16173:24352362,44865281:223477 -k1,16173:26193924,44865281:223478 -k1,16173:27076693,44865281:223477 -k1,16173:28319256,44865281:223478 -k1,16173:30134603,44865281:223477 -k1,16173:31635378,44865281:223478 -k1,16173:32583029,44865281:0 -) -(1,16174:6630773,45706769:25952256,513147,134348 -g1,16173:7849087,45706769 -g1,16173:10604875,45706769 -g1,16173:11463396,45706769 -g1,16173:12681710,45706769 -k1,16174:32583029,45706769:18270128 -g1,16174:32583029,45706769 -) -] -(1,16176:32583029,45706769:0,0,0 -g1,16176:32583029,45706769 -) -) -] -(1,16176:6630773,47279633:25952256,0,0 -h1,16176:6630773,47279633:25952256,0,0 -) -] -(1,16176:4262630,4025873:0,0,0 -[1,16176:-473656,4025873:0,0,0 -(1,16176:-473656,-710413:0,0,0 -(1,16176:-473656,-710413:0,0,0 -g1,16176:-473656,-710413 -) -g1,16176:-473656,-710413 -) -] -) -] -!23233 -}313 -Input:2627:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2628:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!196 -{314 -[1,16230:4262630,47279633:28320399,43253760,0 -(1,16230:4262630,4025873:0,0,0 -[1,16230:-473656,4025873:0,0,0 -(1,16230:-473656,-710413:0,0,0 -(1,16230:-473656,-644877:0,0,0 -k1,16230:-473656,-644877:-65536 -) -(1,16230:-473656,4736287:0,0,0 -k1,16230:-473656,4736287:5209943 -) -g1,16230:-473656,-710413 -) -] -) -[1,16230:6630773,47279633:25952256,43253760,0 -[1,16230:6630773,4812305:25952256,786432,0 -(1,16230:6630773,4812305:25952256,505283,134348 -(1,16230:6630773,4812305:25952256,505283,134348 -g1,16230:3078558,4812305 -[1,16230:3078558,4812305:0,0,0 -(1,16230:3078558,2439708:0,1703936,0 -k1,16230:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,16230:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,16230:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,16230:3078558,4812305:0,0,0 -(1,16230:3078558,2439708:0,1703936,0 -g1,16230:29030814,2439708 -g1,16230:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,16230:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,16230:37855564,2439708:1179648,16384,0 -) -) -k1,16230:3078556,2439708:-34777008 -) -] -[1,16230:3078558,4812305:0,0,0 -(1,16230:3078558,49800853:0,16384,2228224 -k1,16230:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,16230:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,16230:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,16230:3078558,4812305:0,0,0 -(1,16230:3078558,49800853:0,16384,2228224 -g1,16230:29030814,49800853 -g1,16230:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,16230:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,16230:37855564,49800853:1179648,16384,0 -) -) -k1,16230:3078556,49800853:-34777008 -) -] -g1,16230:6630773,4812305 -g1,16230:6630773,4812305 -g1,16230:9113932,4812305 -g1,16230:13027742,4812305 -k1,16230:31387652,4812305:18359910 -) -) -] -[1,16230:6630773,45706769:25952256,40108032,0 -(1,16230:6630773,45706769:25952256,40108032,0 -(1,16230:6630773,45706769:0,0,0 -g1,16230:6630773,45706769 -) -[1,16230:6630773,45706769:25952256,40108032,0 -v1,16176:6630773,6254097:0,393216,0 -(1,16185:6630773,9900084:25952256,4039203,196608 -g1,16185:6630773,9900084 -g1,16185:6630773,9900084 -g1,16185:6434165,9900084 -(1,16185:6434165,9900084:0,4039203,196608 -r1,16230:32779637,9900084:26345472,4235811,196608 -k1,16185:6434165,9900084:-26345472 -) -(1,16185:6434165,9900084:26345472,4039203,196608 -[1,16185:6630773,9900084:25952256,3842595,0 -(1,16178:6630773,6468007:25952256,410518,107478 -(1,16177:6630773,6468007:0,0,0 -g1,16177:6630773,6468007 -g1,16177:6630773,6468007 -g1,16177:6303093,6468007 -(1,16177:6303093,6468007:0,0,0 -) -g1,16177:6630773,6468007 -) -g1,16178:7263065,6468007 -g1,16178:8211503,6468007 -g1,16178:14218271,6468007 -g1,16178:16431291,6468007 -g1,16178:17695874,6468007 -h1,16178:18012020,6468007:0,0,0 -k1,16178:32583029,6468007:14571009 -g1,16178:32583029,6468007 -) -(1,16179:6630773,7134185:25952256,404226,107478 -h1,16179:6630773,7134185:0,0,0 -g1,16179:6946919,7134185 -g1,16179:7263065,7134185 -k1,16179:7263065,7134185:0 -h1,16179:11056813,7134185:0,0,0 -k1,16179:32583029,7134185:21526216 -g1,16179:32583029,7134185 -) -(1,16180:6630773,7800363:25952256,404226,101187 -h1,16180:6630773,7800363:0,0,0 -g1,16180:7263065,7800363 -g1,16180:7895357,7800363 -g1,16180:12953689,7800363 -g1,16180:13585981,7800363 -g1,16180:14850564,7800363 -h1,16180:15166710,7800363:0,0,0 -k1,16180:32583030,7800363:17416320 -g1,16180:32583030,7800363 -) -(1,16181:6630773,8466541:25952256,404226,107478 -h1,16181:6630773,8466541:0,0,0 -k1,16181:6841537,8466541:210764 -k1,16181:7052301,8466541:210764 -k1,16181:16747436,8466541:210764 -k1,16181:17274346,8466541:210764 -k1,16181:23808024,8466541:210764 -k1,16181:24334934,8466541:210764 -k1,16181:25810282,8466541:210764 -k1,16181:27285629,8466541:210764 -k1,16181:28760976,8466541:210764 -k1,16181:29287886,8466541:210764 -k1,16181:31079379,8466541:210764 -k1,16181:32554725,8466541:210764 -h1,16181:32870871,8466541:0,0,0 -k1,16181:32870871,8466541:0 -k1,16181:32870871,8466541:0 -) -(1,16182:6630773,9132719:25952256,404226,82312 -h1,16182:6630773,9132719:0,0,0 -g1,16182:6946919,9132719 -g1,16182:7263065,9132719 -g1,16182:7579211,9132719 -g1,16182:7895357,9132719 -g1,16182:8211503,9132719 -g1,16182:8527649,9132719 -g1,16182:8843795,9132719 -g1,16182:9159941,9132719 -g1,16182:9476087,9132719 -g1,16182:9792233,9132719 -g1,16182:10108379,9132719 -g1,16182:10424525,9132719 -g1,16182:10740671,9132719 -g1,16182:11056817,9132719 -g1,16182:11372963,9132719 -g1,16182:11689109,9132719 -g1,16182:12005255,9132719 -g1,16182:12321401,9132719 -g1,16182:12637547,9132719 -g1,16182:12953693,9132719 -g1,16182:13269839,9132719 -g1,16182:13585985,9132719 -g1,16182:13902131,9132719 -g1,16182:14218277,9132719 -g1,16182:14534423,9132719 -g1,16182:14850569,9132719 -g1,16182:15166715,9132719 -g1,16182:15482861,9132719 -g1,16182:15799007,9132719 -g1,16182:16115153,9132719 -g1,16182:16431299,9132719 -k1,16182:16431299,9132719:0 -h1,16182:20857338,9132719:0,0,0 -k1,16182:32583029,9132719:11725691 -g1,16182:32583029,9132719 -) -(1,16183:6630773,9798897:25952256,404226,101187 -h1,16183:6630773,9798897:0,0,0 -g1,16183:6946919,9798897 -g1,16183:7263065,9798897 -g1,16183:7579211,9798897 -g1,16183:7895357,9798897 -g1,16183:8211503,9798897 -g1,16183:8527649,9798897 -g1,16183:8843795,9798897 -g1,16183:9159941,9798897 -g1,16183:9476087,9798897 -g1,16183:9792233,9798897 -g1,16183:10108379,9798897 -g1,16183:10424525,9798897 -g1,16183:10740671,9798897 -g1,16183:11056817,9798897 -g1,16183:11372963,9798897 -g1,16183:11689109,9798897 -g1,16183:12005255,9798897 -g1,16183:12321401,9798897 -g1,16183:12637547,9798897 -g1,16183:12953693,9798897 -g1,16183:14534422,9798897 -g1,16183:15166714,9798897 -g1,16183:16431297,9798897 -g1,16183:18012026,9798897 -g1,16183:18644318,9798897 -g1,16183:19908901,9798897 -g1,16183:21489630,9798897 -g1,16183:22121922,9798897 -g1,16183:23386505,9798897 -g1,16183:24967234,9798897 -g1,16183:25599526,9798897 -h1,16183:26547963,9798897:0,0,0 -k1,16183:32583029,9798897:6035066 -g1,16183:32583029,9798897 -) -] -) -g1,16185:32583029,9900084 -g1,16185:6630773,9900084 -g1,16185:6630773,9900084 -g1,16185:32583029,9900084 -g1,16185:32583029,9900084 -) -h1,16185:6630773,10096692:0,0,0 -(1,16188:6630773,19770182:25952256,9083666,0 -k1,16188:10523651,19770182:3892878 -h1,16187:10523651,19770182:0,0,0 -(1,16187:10523651,19770182:18166500,9083666,0 -(1,16187:10523651,19770182:18167376,9083688,0 -(1,16187:10523651,19770182:18167376,9083688,0 -(1,16187:10523651,19770182:0,9083688,0 -(1,16187:10523651,19770182:0,14208860,0 -(1,16187:10523651,19770182:28417720,14208860,0 -) -k1,16187:10523651,19770182:-28417720 -) -) -g1,16187:28691027,19770182 -) -) -) -g1,16188:28690151,19770182 -k1,16188:32583029,19770182:3892878 -) -(1,16196:6630773,20611670:25952256,513147,134348 -h1,16194:6630773,20611670:983040,0,0 -k1,16194:9223487,20611670:228830 -k1,16194:12436826,20611670:228829 -k1,16194:13766661,20611670:228830 -k1,16194:15014575,20611670:228829 -k1,16194:18351122,20611670:228830 -k1,16194:19864458,20611670:228830 -k1,16194:20559248,20611670:228829 -k1,16194:22301304,20611670:228830 -k1,16194:25210556,20611670:228829 -k1,16194:26833337,20611670:228830 -k1,16194:29784532,20611670:228829 -k1,16194:31032447,20611670:228830 -k1,16194:32583029,20611670:0 -) -(1,16196:6630773,21453158:25952256,513147,134348 -k1,16194:7967663,21453158:204428 -k1,16194:8919858,21453158:204429 -k1,16194:10143371,21453158:204428 -k1,16194:12001273,21453158:204429 -k1,16194:13153352,21453158:204428 -k1,16194:14809403,21453158:204429 -k1,16194:16291128,21453158:204428 -k1,16194:18413140,21453158:204429 -k1,16194:19667455,21453158:204428 -k1,16194:22150571,21453158:204429 -h1,16194:23693289,21453158:0,0,0 -k1,16194:23897717,21453158:204428 -k1,16194:24911516,21453158:204429 -k1,16194:26614097,21453158:204428 -h1,16194:27809474,21453158:0,0,0 -k1,16194:28013903,21453158:204429 -k1,16194:29165982,21453158:204428 -k1,16196:32583029,21453158:0 -) -(1,16196:6630773,22294646:25952256,505283,7863 -g1,16194:8114508,22294646 -g1,16194:9418019,22294646 -g1,16194:10365014,22294646 -g1,16194:12077469,22294646 -g1,16194:12928126,22294646 -g1,16194:14324698,22294646 -g1,16194:16578481,22294646 -k1,16196:32583029,22294646:16004548 -g1,16196:32583029,22294646 -) -(1,16198:6630773,23136134:25952256,505283,134348 -h1,16197:6630773,23136134:983040,0,0 -k1,16197:8577371,23136134:335723 -k1,16197:9932179,23136134:335723 -k1,16197:11652022,23136134:335723 -k1,16197:14822832,23136134:335723 -k1,16197:15774593,23136134:335723 -k1,16197:18776321,23136134:335723 -k1,16197:19763472,23136134:335723 -k1,16197:22286787,23136134:335723 -k1,16197:26392796,23136134:335723 -k1,16197:27414681,23136134:335723 -k1,16197:31714677,23136134:335723 -k1,16197:32583029,23136134:0 -) -(1,16198:6630773,23977622:25952256,505283,134348 -k1,16197:8249613,23977622:333024 -k1,16197:10019841,23977622:333023 -k1,16197:14123151,23977622:333024 -k1,16197:15142336,23977622:333023 -k1,16197:16659596,23977622:333024 -k1,16197:18836803,23977622:333024 -k1,16197:21728352,23977622:333023 -k1,16197:23080461,23977622:333024 -k1,16197:25159364,23977622:333024 -k1,16197:26390230,23977622:333023 -k1,16197:28671639,23977622:333024 -k1,16197:30289168,23977622:333023 -k1,16197:31490544,23977622:333024 -k1,16197:32583029,23977622:0 -) -(1,16198:6630773,24819110:25952256,513147,134348 -k1,16197:9788171,24819110:298062 -k1,16197:11033883,24819110:298061 -k1,16197:13513639,24819110:298062 -k1,16197:14830785,24819110:298061 -k1,16197:17417364,24819110:298062 -k1,16197:18401587,24819110:298061 -(1,16197:18401587,24819110:0,452978,115847 -r1,16230:27200938,24819110:8799351,568825,115847 -k1,16197:18401587,24819110:-8799351 -) -(1,16197:18401587,24819110:8799351,452978,115847 -g1,16197:20163423,24819110 -g1,16197:21921982,24819110 -g1,16197:22977118,24819110 -g1,16197:24735677,24819110 -g1,16197:25790813,24819110 -g1,16197:26494237,24819110 -h1,16197:27197661,24819110:0,411205,112570 -) -k1,16197:27499000,24819110:298062 -k1,16197:28328558,24819110:298061 -k1,16197:31931601,24819110:298062 -k1,16198:32583029,24819110:0 -) -(1,16198:6630773,25660598:25952256,505283,126483 -(1,16197:6630773,25660598:0,452978,115847 -r1,16230:18947241,25660598:12316468,568825,115847 -k1,16197:6630773,25660598:-12316468 -) -(1,16197:6630773,25660598:12316468,452978,115847 -g1,16197:8392609,25660598 -g1,16197:9799456,25660598 -g1,16197:10502880,25660598 -g1,16197:11909727,25660598 -g1,16197:13316574,25660598 -g1,16197:14723421,25660598 -g1,16197:15426845,25660598 -g1,16197:16833692,25660598 -g1,16197:17537116,25660598 -g1,16197:18240540,25660598 -h1,16197:18943964,25660598:0,411205,112570 -) -k1,16197:19297255,25660598:176344 -k1,16197:23395929,25660598:176344 -k1,16197:24563833,25660598:176344 -k1,16197:27042458,25660598:176345 -k1,16197:27831564,25660598:176344 -k1,16197:29516547,25660598:176344 -k1,16197:31023272,25660598:176344 -k1,16198:32583029,25660598:0 -) -(1,16198:6630773,26502086:25952256,505283,134348 -k1,16197:8250924,26502086:179014 -k1,16197:11481294,26502086:179014 -k1,16197:12311736,26502086:179014 -k1,16197:13622557,26502086:179014 -k1,16197:17543021,26502086:179014 -k1,16197:18338073,26502086:179014 -k1,16197:19536172,26502086:179014 -k1,16197:21278220,26502086:179014 -k1,16197:22529403,26502086:179014 -k1,16197:24443810,26502086:179014 -k1,16197:25641909,26502086:179014 -k1,16197:27474396,26502086:179014 -k1,16197:31391584,26502086:179014 -k1,16197:32583029,26502086:0 -) -(1,16198:6630773,27343574:25952256,513147,134348 -g1,16197:8448086,27343574 -g1,16197:9333477,27343574 -g1,16197:10480357,27343574 -g1,16197:13204033,27343574 -g1,16197:14422347,27343574 -k1,16198:32583029,27343574:16597648 -g1,16198:32583029,27343574 -) -v1,16200:6630773,28534040:0,393216,0 -(1,16220:6630773,39482819:25952256,11341995,196608 -g1,16220:6630773,39482819 -g1,16220:6630773,39482819 -g1,16220:6434165,39482819 -(1,16220:6434165,39482819:0,11341995,196608 -r1,16230:32779637,39482819:26345472,11538603,196608 -k1,16220:6434165,39482819:-26345472 -) -(1,16220:6434165,39482819:26345472,11341995,196608 -[1,16220:6630773,39482819:25952256,11145387,0 -(1,16202:6630773,28747950:25952256,410518,107478 -(1,16201:6630773,28747950:0,0,0 -g1,16201:6630773,28747950 -g1,16201:6630773,28747950 -g1,16201:6303093,28747950 -(1,16201:6303093,28747950:0,0,0 -) -g1,16201:6630773,28747950 -) -k1,16202:6630773,28747950:0 -g1,16202:12953688,28747950 -g1,16202:13585980,28747950 -g1,16202:15166710,28747950 -g1,16202:15799002,28747950 -g1,16202:16431294,28747950 -g1,16202:18328169,28747950 -g1,16202:20225044,28747950 -g1,16202:20857336,28747950 -g1,16202:22121919,28747950 -h1,16202:22438065,28747950:0,0,0 -k1,16202:32583029,28747950:10144964 -g1,16202:32583029,28747950 -) -(1,16203:6630773,29414128:25952256,410518,76021 -h1,16203:6630773,29414128:0,0,0 -g1,16203:6946919,29414128 -g1,16203:7263065,29414128 -g1,16203:12953688,29414128 -g1,16203:13585980,29414128 -g1,16203:15166709,29414128 -h1,16203:15482855,29414128:0,0,0 -k1,16203:32583029,29414128:17100174 -g1,16203:32583029,29414128 -) -(1,16204:6630773,30080306:25952256,404226,76021 -h1,16204:6630773,30080306:0,0,0 -g1,16204:6946919,30080306 -g1,16204:7263065,30080306 -k1,16204:7263065,30080306:0 -h1,16204:13269833,30080306:0,0,0 -k1,16204:32583029,30080306:19313196 -g1,16204:32583029,30080306 -) -(1,16205:6630773,30746484:25952256,404226,101187 -h1,16205:6630773,30746484:0,0,0 -g1,16205:6946919,30746484 -g1,16205:7263065,30746484 -g1,16205:7579211,30746484 -g1,16205:7895357,30746484 -g1,16205:10108377,30746484 -g1,16205:10740669,30746484 -g1,16205:12321399,30746484 -g1,16205:13902128,30746484 -g1,16205:14850566,30746484 -g1,16205:16431295,30746484 -g1,16205:17379733,30746484 -g1,16205:18012025,30746484 -k1,16205:18012025,30746484:0 -h1,16205:18960462,30746484:0,0,0 -k1,16205:32583029,30746484:13622567 -g1,16205:32583029,30746484 -) -(1,16206:6630773,31412662:25952256,404226,101187 -h1,16206:6630773,31412662:0,0,0 -g1,16206:6946919,31412662 -g1,16206:7263065,31412662 -g1,16206:7579211,31412662 -g1,16206:7895357,31412662 -g1,16206:10108377,31412662 -g1,16206:10740669,31412662 -g1,16206:12953690,31412662 -g1,16206:19276605,31412662 -k1,16206:19276605,31412662:0 -h1,16206:24018791,31412662:0,0,0 -k1,16206:32583029,31412662:8564238 -g1,16206:32583029,31412662 -) -(1,16207:6630773,32078840:25952256,404226,101187 -h1,16207:6630773,32078840:0,0,0 -g1,16207:6946919,32078840 -g1,16207:7263065,32078840 -g1,16207:7579211,32078840 -g1,16207:7895357,32078840 -g1,16207:8211503,32078840 -g1,16207:8527649,32078840 -g1,16207:8843795,32078840 -g1,16207:9159941,32078840 -g1,16207:9476087,32078840 -g1,16207:9792233,32078840 -g1,16207:10108379,32078840 -g1,16207:10424525,32078840 -g1,16207:10740671,32078840 -g1,16207:17063586,32078840 -g1,16207:23070355,32078840 -h1,16207:23386501,32078840:0,0,0 -k1,16207:32583029,32078840:9196528 -g1,16207:32583029,32078840 -) -(1,16208:6630773,32745018:25952256,404226,101187 -h1,16208:6630773,32745018:0,0,0 -g1,16208:6946919,32745018 -g1,16208:7263065,32745018 -g1,16208:9476086,32745018 -g1,16208:10108378,32745018 -g1,16208:13269835,32745018 -h1,16208:13585981,32745018:0,0,0 -k1,16208:32583029,32745018:18997048 -g1,16208:32583029,32745018 -) -(1,16209:6630773,33411196:25952256,404226,107478 -h1,16209:6630773,33411196:0,0,0 -g1,16209:6946919,33411196 -g1,16209:7263065,33411196 -g1,16209:11689105,33411196 -g1,16209:12321397,33411196 -k1,16209:12321397,33411196:0 -h1,16209:14534417,33411196:0,0,0 -k1,16209:32583029,33411196:18048612 -g1,16209:32583029,33411196 -) -(1,16210:6630773,34077374:25952256,404226,82312 -h1,16210:6630773,34077374:0,0,0 -g1,16210:6946919,34077374 -g1,16210:7263065,34077374 -g1,16210:7579211,34077374 -g1,16210:7895357,34077374 -g1,16210:8211503,34077374 -g1,16210:8527649,34077374 -g1,16210:8843795,34077374 -g1,16210:9159941,34077374 -g1,16210:9476087,34077374 -g1,16210:9792233,34077374 -g1,16210:10108379,34077374 -g1,16210:12005253,34077374 -g1,16210:12637545,34077374 -g1,16210:14850566,34077374 -k1,16210:14850566,34077374:0 -h1,16210:16431295,34077374:0,0,0 -k1,16210:32583029,34077374:16151734 -g1,16210:32583029,34077374 -) -(1,16211:6630773,34743552:25952256,404226,101187 -h1,16211:6630773,34743552:0,0,0 -g1,16211:6946919,34743552 -g1,16211:7263065,34743552 -g1,16211:7579211,34743552 -g1,16211:7895357,34743552 -g1,16211:8211503,34743552 -g1,16211:8527649,34743552 -g1,16211:8843795,34743552 -g1,16211:9159941,34743552 -g1,16211:9476087,34743552 -g1,16211:9792233,34743552 -g1,16211:10108379,34743552 -g1,16211:10740671,34743552 -g1,16211:11372963,34743552 -g1,16211:13585984,34743552 -g1,16211:15166713,34743552 -g1,16211:15799005,34743552 -g1,16211:17063588,34743552 -g1,16211:17695880,34743552 -g1,16211:18328172,34743552 -g1,16211:20541193,34743552 -k1,16211:20541193,34743552:0 -h1,16211:22438068,34743552:0,0,0 -k1,16211:32583029,34743552:10144961 -g1,16211:32583029,34743552 -) -(1,16212:6630773,35409730:25952256,404226,76021 -h1,16212:6630773,35409730:0,0,0 -g1,16212:6946919,35409730 -g1,16212:7263065,35409730 -g1,16212:7579211,35409730 -g1,16212:7895357,35409730 -g1,16212:8211503,35409730 -g1,16212:8527649,35409730 -g1,16212:8843795,35409730 -g1,16212:9159941,35409730 -g1,16212:9476087,35409730 -g1,16212:9792233,35409730 -g1,16212:10108379,35409730 -g1,16212:11689108,35409730 -g1,16212:12321400,35409730 -g1,16212:13585983,35409730 -h1,16212:13902129,35409730:0,0,0 -k1,16212:32583029,35409730:18680900 -g1,16212:32583029,35409730 -) -(1,16213:6630773,36075908:25952256,404226,107478 -h1,16213:6630773,36075908:0,0,0 -g1,16213:6946919,36075908 -g1,16213:7263065,36075908 -g1,16213:11689105,36075908 -g1,16213:12321397,36075908 -k1,16213:12321397,36075908:0 -h1,16213:14850563,36075908:0,0,0 -k1,16213:32583029,36075908:17732466 -g1,16213:32583029,36075908 -) -(1,16214:6630773,36742086:25952256,404226,82312 -h1,16214:6630773,36742086:0,0,0 -g1,16214:6946919,36742086 -g1,16214:7263065,36742086 -g1,16214:7579211,36742086 -g1,16214:7895357,36742086 -g1,16214:8211503,36742086 -g1,16214:8527649,36742086 -g1,16214:8843795,36742086 -g1,16214:9159941,36742086 -g1,16214:9476087,36742086 -g1,16214:9792233,36742086 -g1,16214:10108379,36742086 -g1,16214:12005253,36742086 -g1,16214:12637545,36742086 -k1,16214:12637545,36742086:0 -h1,16214:14534419,36742086:0,0,0 -k1,16214:32583029,36742086:18048610 -g1,16214:32583029,36742086 -) -(1,16215:6630773,37408264:25952256,404226,101187 -h1,16215:6630773,37408264:0,0,0 -g1,16215:6946919,37408264 -g1,16215:7263065,37408264 -g1,16215:7579211,37408264 -g1,16215:7895357,37408264 -g1,16215:8211503,37408264 -g1,16215:8527649,37408264 -g1,16215:8843795,37408264 -g1,16215:9159941,37408264 -g1,16215:9476087,37408264 -g1,16215:9792233,37408264 -g1,16215:10108379,37408264 -g1,16215:12005253,37408264 -g1,16215:12637545,37408264 -k1,16215:12637545,37408264:0 -h1,16215:13585982,37408264:0,0,0 -k1,16215:32583030,37408264:18997048 -g1,16215:32583030,37408264 -) -(1,16216:6630773,38074442:25952256,410518,82312 -h1,16216:6630773,38074442:0,0,0 -g1,16216:6946919,38074442 -g1,16216:7263065,38074442 -g1,16216:7579211,38074442 -g1,16216:7895357,38074442 -g1,16216:8211503,38074442 -g1,16216:8527649,38074442 -g1,16216:8843795,38074442 -g1,16216:9159941,38074442 -g1,16216:9476087,38074442 -g1,16216:9792233,38074442 -g1,16216:10108379,38074442 -g1,16216:11689108,38074442 -g1,16216:12321400,38074442 -k1,16216:12321400,38074442:0 -h1,16216:14850566,38074442:0,0,0 -k1,16216:32583030,38074442:17732464 -g1,16216:32583030,38074442 -) -(1,16217:6630773,38740620:25952256,404226,101187 -h1,16217:6630773,38740620:0,0,0 -g1,16217:6946919,38740620 -g1,16217:7263065,38740620 -g1,16217:7579211,38740620 -g1,16217:7895357,38740620 -g1,16217:8211503,38740620 -g1,16217:8527649,38740620 -g1,16217:8843795,38740620 -g1,16217:9159941,38740620 -g1,16217:9476087,38740620 -g1,16217:9792233,38740620 -g1,16217:10108379,38740620 -g1,16217:10740671,38740620 -g1,16217:11372963,38740620 -g1,16217:12953693,38740620 -g1,16217:13902131,38740620 -g1,16217:14850569,38740620 -g1,16217:15482861,38740620 -g1,16217:16747444,38740620 -g1,16217:17379736,38740620 -g1,16217:18012028,38740620 -k1,16217:18012028,38740620:0 -h1,16217:18644320,38740620:0,0,0 -k1,16217:32583029,38740620:13938709 -g1,16217:32583029,38740620 -) -(1,16218:6630773,39406798:25952256,404226,76021 -h1,16218:6630773,39406798:0,0,0 -g1,16218:6946919,39406798 -g1,16218:7263065,39406798 -g1,16218:7579211,39406798 -g1,16218:7895357,39406798 -g1,16218:8211503,39406798 -g1,16218:8527649,39406798 -g1,16218:8843795,39406798 -g1,16218:9159941,39406798 -g1,16218:9476087,39406798 -g1,16218:9792233,39406798 -g1,16218:10108379,39406798 -g1,16218:11689108,39406798 -g1,16218:12321400,39406798 -h1,16218:12953692,39406798:0,0,0 -k1,16218:32583028,39406798:19629336 -g1,16218:32583028,39406798 -) -] -) -g1,16220:32583029,39482819 -g1,16220:6630773,39482819 -g1,16220:6630773,39482819 -g1,16220:32583029,39482819 -g1,16220:32583029,39482819 -) -h1,16220:6630773,39679427:0,0,0 -] -(1,16230:32583029,45706769:0,0,0 -g1,16230:32583029,45706769 -) -) -] -(1,16230:6630773,47279633:25952256,0,0 -h1,16230:6630773,47279633:25952256,0,0 -) -] -(1,16230:4262630,4025873:0,0,0 -[1,16230:-473656,4025873:0,0,0 -(1,16230:-473656,-710413:0,0,0 -(1,16230:-473656,-710413:0,0,0 -g1,16230:-473656,-710413 -) -g1,16230:-473656,-710413 -) -] -) -] -!21890 -}314 -Input:2629:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2630:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2631:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2632:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2633:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2634:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2635:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2636:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2637:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2638:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2639:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2640:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2641:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1208 -{315 -[1,16248:4262630,47279633:28320399,43253760,0 -(1,16248:4262630,4025873:0,0,0 -[1,16248:-473656,4025873:0,0,0 -(1,16248:-473656,-710413:0,0,0 -(1,16248:-473656,-644877:0,0,0 -k1,16248:-473656,-644877:-65536 -) -(1,16248:-473656,4736287:0,0,0 -k1,16248:-473656,4736287:5209943 -) -g1,16248:-473656,-710413 -) -] -) -[1,16248:6630773,47279633:25952256,43253760,0 -[1,16248:6630773,4812305:25952256,786432,0 -(1,16248:6630773,4812305:25952256,513147,134348 -(1,16248:6630773,4812305:25952256,513147,134348 -g1,16248:3078558,4812305 -[1,16248:3078558,4812305:0,0,0 -(1,16248:3078558,2439708:0,1703936,0 -k1,16248:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,16248:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,16248:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,16248:3078558,4812305:0,0,0 -(1,16248:3078558,2439708:0,1703936,0 -g1,16248:29030814,2439708 -g1,16248:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,16248:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,16248:37855564,2439708:1179648,16384,0 -) -) -k1,16248:3078556,2439708:-34777008 -) -] -[1,16248:3078558,4812305:0,0,0 -(1,16248:3078558,49800853:0,16384,2228224 -k1,16248:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,16248:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,16248:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,16248:3078558,4812305:0,0,0 -(1,16248:3078558,49800853:0,16384,2228224 -g1,16248:29030814,49800853 -g1,16248:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,16248:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,16248:37855564,49800853:1179648,16384,0 -) -) -k1,16248:3078556,49800853:-34777008 -) -] -g1,16248:6630773,4812305 -k1,16248:25712890,4812305:17886740 -g1,16248:29057847,4812305 -g1,16248:29873114,4812305 -) -) -] -[1,16248:6630773,45706769:25952256,40108032,0 -(1,16248:6630773,45706769:25952256,40108032,0 -(1,16248:6630773,45706769:0,0,0 -g1,16248:6630773,45706769 -) -[1,16248:6630773,45706769:25952256,40108032,0 -(1,16223:6630773,14682403:25952256,9083666,0 -k1,16223:10523651,14682403:3892878 -h1,16222:10523651,14682403:0,0,0 -(1,16222:10523651,14682403:18166500,9083666,0 -(1,16222:10523651,14682403:18167376,9083688,0 -(1,16222:10523651,14682403:18167376,9083688,0 -(1,16222:10523651,14682403:0,9083688,0 -(1,16222:10523651,14682403:0,14208860,0 -(1,16222:10523651,14682403:28417720,14208860,0 -) -k1,16222:10523651,14682403:-28417720 -) -) -g1,16222:28691027,14682403 -) -) -) -g1,16223:28690151,14682403 -k1,16223:32583029,14682403:3892878 -) -v1,16230:6630773,16048179:0,393216,0 -(1,16231:6630773,19049214:25952256,3394251,616038 -g1,16231:6630773,19049214 -(1,16231:6630773,19049214:25952256,3394251,616038 -(1,16231:6630773,19665252:25952256,4010289,0 -[1,16231:6630773,19665252:25952256,4010289,0 -(1,16231:6630773,19639038:25952256,3957861,0 -r1,16248:6656987,19639038:26214,3957861,0 -[1,16231:6656987,19639038:25899828,3957861,0 -(1,16231:6656987,19049214:25899828,2778213,0 -[1,16231:7246811,19049214:24720180,2778213,0 -(1,16231:7246811,17358375:24720180,1087374,126483 -k1,16230:8655282,17358375:198768 -k1,16230:11059992,17358375:198768 -k1,16230:12277845,17358375:198768 -k1,16230:13753909,17358375:198767 -k1,16230:15808001,17358375:198768 -k1,16230:16658197,17358375:198768 -k1,16230:18517647,17358375:198768 -k1,16230:19735500,17358375:198768 -k1,16230:21956054,17358375:198768 -k1,16230:24482005,17358375:198768 -k1,16230:25340064,17358375:198767 -k1,16230:26557917,17358375:198768 -k1,16230:28050366,17358375:198768 -k1,16230:31118300,17358375:198768 -k1,16231:31966991,17358375:0 -) -(1,16231:7246811,18199863:24720180,505283,134348 -k1,16230:9716576,18199863:164208 -(1,16230:9716576,18199863:0,452978,115847 -r1,16248:10778265,18199863:1061689,568825,115847 -k1,16230:9716576,18199863:-1061689 -) -(1,16230:9716576,18199863:1061689,452978,115847 -k1,16230:9716576,18199863:3277 -h1,16230:10774988,18199863:0,411205,112570 -) -k1,16230:10942473,18199863:164208 -k1,16230:12500631,18199863:164207 -(1,16230:12500631,18199863:0,414482,115847 -r1,16248:13562320,18199863:1061689,530329,115847 -k1,16230:12500631,18199863:-1061689 -) -(1,16230:12500631,18199863:1061689,414482,115847 -k1,16230:12500631,18199863:3277 -h1,16230:13559043,18199863:0,411205,112570 -) -k1,16230:13900198,18199863:164208 -k1,16230:15445250,18199863:164208 -k1,16230:16140955,18199863:164208 -k1,16230:17873440,18199863:164208 -k1,16230:19109816,18199863:164207 -k1,16230:20293109,18199863:164208 -k1,16230:22152078,18199863:164208 -k1,16230:22847783,18199863:164208 -k1,16230:24296497,18199863:164208 -k1,16230:25631178,18199863:164208 -k1,16230:26927847,18199863:164207 -k1,16230:28622321,18199863:164208 -k1,16230:29437957,18199863:164208 -k1,16230:31966991,18199863:0 -) -(1,16231:7246811,19041351:24720180,505283,7863 -g1,16230:8465125,19041351 -k1,16231:31966990,19041351:19537592 -g1,16231:31966990,19041351 -) -] -) -] -r1,16248:32583029,19639038:26214,3957861,0 -) -] -) -) -g1,16231:32583029,19049214 -) -h1,16231:6630773,19665252:0,0,0 -v1,16234:6630773,21031028:0,393216,0 -(1,16235:6630773,24935008:25952256,4297196,616038 -g1,16235:6630773,24935008 -(1,16235:6630773,24935008:25952256,4297196,616038 -(1,16235:6630773,25551046:25952256,4913234,0 -[1,16235:6630773,25551046:25952256,4913234,0 -(1,16235:6630773,25524832:25952256,4860806,0 -r1,16248:6656987,25524832:26214,4860806,0 -[1,16235:6656987,25524832:25899828,4860806,0 -(1,16235:6656987,24935008:25899828,3681158,0 -[1,16235:7246811,24935008:24720180,3681158,0 -(1,16235:7246811,22276196:24720180,1022346,122846 -k1,16234:8846810,22276196:344486 -k1,16234:10144844,22276196:344485 -k1,16234:12659882,22276196:344486 -k1,16234:14096853,22276196:344486 -(1,16234:14096853,22276196:0,452978,115847 -r1,16248:17620525,22276196:3523672,568825,115847 -k1,16234:14096853,22276196:-3523672 -) -(1,16234:14096853,22276196:3523672,452978,115847 -k1,16234:14096853,22276196:3277 -h1,16234:17617248,22276196:0,411205,112570 -) -k1,16234:17965010,22276196:344485 -k1,16234:19703447,22276196:344486 -(1,16234:19703447,22276196:0,452978,122846 -r1,16248:24633967,22276196:4930520,575824,122846 -k1,16234:19703447,22276196:-4930520 -) -(1,16234:19703447,22276196:4930520,452978,122846 -g1,16234:21465283,22276196 -g1,16234:22168707,22276196 -h1,16234:24630690,22276196:0,411205,112570 -) -k1,16234:24978453,22276196:344486 -k1,16234:26005823,22276196:344485 -(1,16234:26005823,22276196:0,452978,122846 -r1,16248:30936343,22276196:4930520,575824,122846 -k1,16234:26005823,22276196:-4930520 -) -(1,16234:26005823,22276196:4930520,452978,122846 -g1,16234:27767659,22276196 -g1,16234:28471083,22276196 -h1,16234:30933066,22276196:0,411205,112570 -) -k1,16234:31280829,22276196:344486 -k1,16234:31966991,22276196:0 -) -(1,16235:7246811,23117684:24720180,505283,122846 -k1,16234:8319680,23117684:204517 -k1,16234:9628479,23117684:204517 -k1,16234:10925481,23117684:204517 -(1,16234:10925481,23117684:0,452978,122846 -r1,16248:15504289,23117684:4578808,575824,122846 -k1,16234:10925481,23117684:-4578808 -) -(1,16234:10925481,23117684:4578808,452978,122846 -g1,16234:12687317,23117684 -g1,16234:13390741,23117684 -h1,16234:15501012,23117684:0,411205,112570 -) -k1,16234:15708806,23117684:204517 -k1,16234:16596207,23117684:204516 -(1,16234:16596207,23117684:0,452978,122846 -r1,16248:22230150,23117684:5633943,575824,122846 -k1,16234:16596207,23117684:-5633943 -) -(1,16234:16596207,23117684:5633943,452978,122846 -g1,16234:18358043,23117684 -g1,16234:19061467,23117684 -h1,16234:22226873,23117684:0,411205,112570 -) -k1,16234:22608337,23117684:204517 -k1,16234:25325504,23117684:204517 -(1,16234:25325504,23117684:0,452978,122846 -r1,16248:29552600,23117684:4227096,575824,122846 -k1,16234:25325504,23117684:-4227096 -) -(1,16234:25325504,23117684:4227096,452978,122846 -k1,16234:25325504,23117684:3277 -h1,16234:29549323,23117684:0,411205,112570 -) -k1,16234:29757117,23117684:204517 -k1,16235:31966991,23117684:0 -) -(1,16235:7246811,23959172:24720180,505283,134348 -(1,16234:7246811,23959172:0,452978,122846 -r1,16248:11473907,23959172:4227096,575824,122846 -k1,16234:7246811,23959172:-4227096 -) -(1,16234:7246811,23959172:4227096,452978,122846 -k1,16234:7246811,23959172:3277 -h1,16234:11470630,23959172:0,411205,112570 -) -k1,16234:11735066,23959172:261159 -k1,16234:13100506,23959172:261158 -k1,16234:14109431,23959172:261159 -k1,16234:15883815,23959172:261158 -k1,16234:18559320,23959172:261159 -k1,16234:21247932,23959172:261158 -k1,16234:24266846,23959172:261159 -k1,16234:27930633,23959172:261158 -k1,16234:28843220,23959172:261159 -k1,16234:30917104,23959172:261158 -k1,16234:31966991,23959172:0 -) -(1,16235:7246811,24800660:24720180,485622,134348 -g1,16234:9724727,24800660 -h1,16234:11267445,24800660:0,0,0 -g1,16234:11466674,24800660 -g1,16234:12475273,24800660 -g1,16234:14172655,24800660 -h1,16234:15368032,24800660:0,0,0 -k1,16235:31966991,24800660:16425289 -g1,16235:31966991,24800660 -) -] -) -] -r1,16248:32583029,25524832:26214,4860806,0 -) -] -) -) -g1,16235:32583029,24935008 -) -h1,16235:6630773,25551046:0,0,0 -(1,16238:6630773,28882902:25952256,32768,229376 -(1,16238:6630773,28882902:0,32768,229376 -(1,16238:6630773,28882902:5505024,32768,229376 -r1,16248:12135797,28882902:5505024,262144,229376 -) -k1,16238:6630773,28882902:-5505024 -) -(1,16238:6630773,28882902:25952256,32768,0 -r1,16248:32583029,28882902:25952256,32768,0 -) -) -(1,16238:6630773,30487230:25952256,606339,151780 -(1,16238:6630773,30487230:2464678,582746,14155 -g1,16238:6630773,30487230 -g1,16238:9095451,30487230 -) -g1,16238:14113674,30487230 -g1,16238:15823377,30487230 -g1,16238:19109090,30487230 -k1,16238:32583029,30487230:11502354 -g1,16238:32583029,30487230 -) -(1,16243:6630773,31721934:25952256,513147,134348 -k1,16241:9406626,31721934:233056 -k1,16241:11247280,31721934:233056 -k1,16241:12584618,31721934:233056 -k1,16241:13565440,31721934:233056 -k1,16241:16325564,31721934:233056 -k1,16241:17217912,31721934:233056 -k1,16241:18137130,31721934:233056 -k1,16241:19977784,31721934:233056 -k1,16241:23515821,31721934:233056 -k1,16241:24400305,31721934:233056 -k1,16241:26377274,31721934:233056 -k1,16241:29700353,31721934:233056 -k1,16241:31966991,31721934:233056 -k1,16241:32583029,31721934:0 -) -(1,16243:6630773,32563422:25952256,513147,134348 -k1,16241:8076123,32563422:242109 -k1,16241:10735854,32563422:242108 -k1,16241:12050132,32563422:242109 -k1,16241:14293055,32563422:242109 -k1,16241:16270557,32563422:242109 -k1,16241:16868525,32563422:242108 -k1,16241:19872977,32563422:242109 -k1,16241:22361005,32563422:242109 -k1,16241:23262405,32563422:242108 -k1,16241:27416358,32563422:242109 -k1,16241:29039311,32563422:242109 -k1,16241:29812917,32563422:242109 -k1,16241:30410885,32563422:242108 -k1,16241:31753999,32563422:242109 -k1,16243:32583029,32563422:0 -) -(1,16243:6630773,33404910:25952256,513147,134348 -k1,16241:8572958,33404910:191063 -k1,16241:10048526,33404910:191062 -k1,16241:11258674,33404910:191063 -k1,16241:14352326,33404910:191062 -k1,16241:15202681,33404910:191063 -k1,16241:18112833,33404910:191063 -k1,16241:18990057,33404910:191062 -k1,16241:23382633,33404910:191063 -k1,16241:24189734,33404910:191063 -k1,16241:27209329,33404910:191062 -k1,16241:29446426,33404910:191063 -k1,16241:30729973,33404910:191062 -k1,16241:31753999,33404910:191063 -k1,16241:32583029,33404910:0 -) -(1,16243:6630773,34246398:25952256,505283,134348 -k1,16241:8816248,34246398:161723 -k1,16241:11398870,34246398:161722 -k1,16241:13168191,34246398:161723 -k1,16241:14198265,34246398:161722 -k1,16241:15452473,34246398:161723 -k1,16241:16633280,34246398:161722 -k1,16241:18448476,34246398:161723 -k1,16241:22200915,34246398:161722 -k1,16241:25045027,34246398:161723 -k1,16241:26398194,34246398:161722 -k1,16241:28406067,34246398:161723 -k1,16241:29436141,34246398:161722 -k1,16241:31073079,34246398:161723 -k1,16241:32583029,34246398:0 -) -(1,16243:6630773,35087886:25952256,513147,134348 -k1,16241:8513824,35087886:147658 -k1,16241:10055432,35087886:147657 -k1,16241:11222175,35087886:147658 -k1,16241:13635412,35087886:147657 -k1,16241:16028989,35087886:147658 -k1,16241:16835938,35087886:147657 -k1,16241:19867835,35087886:147658 -k1,16241:23927336,35087886:147657 -k1,16241:25271681,35087886:147658 -k1,16241:26794939,35087886:147657 -k1,16241:28604590,35087886:147658 -k1,16241:30036753,35087886:147657 -k1,16241:31052763,35087886:147658 -k1,16241:32583029,35087886:0 -) -(1,16243:6630773,35929374:25952256,513147,126483 -k1,16241:7420402,35929374:138201 -k1,16241:8373871,35929374:138201 -k1,16241:9043569,35929374:138201 -k1,16241:9833197,35929374:138200 -k1,16241:11168741,35929374:138201 -(1,16241:11168741,35929374:0,452978,115847 -r1,16248:15747549,35929374:4578808,568825,115847 -k1,16241:11168741,35929374:-4578808 -) -(1,16241:11168741,35929374:4578808,452978,115847 -k1,16241:11168741,35929374:3277 -h1,16241:15744272,35929374:0,411205,112570 -) -k1,16241:15885750,35929374:138201 -k1,16241:16675379,35929374:138201 -k1,16241:19458613,35929374:138201 -k1,16241:20615899,35929374:138201 -k1,16241:23193350,35929374:138201 -k1,16241:24105530,35929374:138200 -k1,16241:26352680,35929374:138201 -k1,16241:27866482,35929374:138201 -k1,16241:29696823,35929374:138201 -k1,16241:32583029,35929374:0 -) -(1,16243:6630773,36770862:25952256,505283,126483 -k1,16241:9986065,36770862:171553 -k1,16241:11261900,36770862:171553 -k1,16241:12181219,36770862:171553 -k1,16241:14250039,36770862:171553 -k1,16241:17485400,36770862:171553 -k1,16241:18272991,36770862:171553 -k1,16241:20865445,36770862:171554 -k1,16241:22644596,36770862:171553 -k1,16241:24258596,36770862:171553 -k1,16241:25046187,36770862:171553 -k1,16241:28101979,36770862:171553 -k1,16241:30054801,36770862:171553 -k1,16241:31714677,36770862:171553 -k1,16241:32583029,36770862:0 -) -(1,16243:6630773,37612350:25952256,513147,134348 -k1,16241:7997979,37612350:169863 -k1,16241:8523703,37612350:169864 -k1,16241:9976761,37612350:169863 -k1,16241:12371572,37612350:169864 -k1,16241:13192863,37612350:169863 -k1,16241:14381812,37612350:169864 -k1,16241:17454265,37612350:169863 -k1,16241:18283421,37612350:169864 -k1,16241:21346043,37612350:169863 -k1,16241:25311096,37612350:169864 -k1,16241:26974525,37612350:169863 -k1,16241:27830551,37612350:169864 -(1,16241:27830551,37612350:0,452978,115847 -r1,16248:32409359,37612350:4578808,568825,115847 -k1,16241:27830551,37612350:-4578808 -) -(1,16241:27830551,37612350:4578808,452978,115847 -k1,16241:27830551,37612350:3277 -h1,16241:32406082,37612350:0,411205,112570 -) -k1,16241:32583029,37612350:0 -) -(1,16243:6630773,38453838:25952256,505283,134348 -k1,16242:8619622,38453838:205614 -k1,16242:10560630,38453838:205615 -k1,16242:12430858,38453838:205614 -k1,16242:16548317,38453838:205615 -k1,16242:17773016,38453838:205614 -(1,16242:17773016,38453838:0,414482,115847 -r1,16248:18131282,38453838:358266,530329,115847 -k1,16242:17773016,38453838:-358266 -) -(1,16242:17773016,38453838:358266,414482,115847 -k1,16242:17773016,38453838:3277 -h1,16242:18128005,38453838:0,411205,112570 -) -k1,16242:18336897,38453838:205615 -k1,16242:19733956,38453838:205614 -(1,16242:19733956,38453838:0,414482,115847 -r1,16248:20092222,38453838:358266,530329,115847 -k1,16242:19733956,38453838:-358266 -) -(1,16242:19733956,38453838:358266,414482,115847 -k1,16242:19733956,38453838:3277 -h1,16242:20088945,38453838:0,411205,112570 -) -k1,16242:20297837,38453838:205615 -k1,16242:23567915,38453838:205614 -k1,16242:27406846,38453838:205615 -k1,16242:28263888,38453838:205614 -k1,16242:29488588,38453838:205615 -k1,16242:31391584,38453838:205614 -k1,16242:32583029,38453838:0 -) -(1,16243:6630773,39295326:25952256,505283,126483 -g1,16242:8657146,39295326 -g1,16242:11690807,39295326 -k1,16243:32583030,39295326:16922052 -g1,16243:32583030,39295326 -) -(1,16244:6630773,41386586:25952256,555811,139132 -(1,16244:6630773,41386586:2899444,534184,12975 -g1,16244:6630773,41386586 -g1,16244:9530217,41386586 -) -g1,16244:13388453,41386586 -k1,16244:32583029,41386586:17387290 -g1,16244:32583029,41386586 -) -(1,16247:6630773,42621290:25952256,513147,126483 -k1,16246:8623559,42621290:275743 -k1,16246:10615689,42621290:275742 -k1,16246:11550724,42621290:275743 -k1,16246:13215829,42621290:275742 -k1,16246:14483132,42621290:275743 -k1,16246:16409072,42621290:275743 -k1,16246:19542839,42621290:275742 -k1,16246:23016084,42621290:275743 -k1,16246:24101196,42621290:275742 -k1,16246:26041553,42621290:275743 -k1,16246:30055469,42621290:275742 -k1,16246:31773659,42621290:275743 -k1,16246:32583029,42621290:0 -) -(1,16247:6630773,43462778:25952256,513147,126483 -k1,16246:9651506,43462778:136494 -k1,16246:13699843,43462778:136493 -k1,16246:15033024,43462778:136494 -k1,16246:17634326,43462778:136493 -k1,16246:20432237,43462778:136494 -k1,16246:21100227,43462778:136493 -k1,16246:22794512,43462778:136494 -k1,16246:25963356,43462778:136493 -k1,16246:27667471,43462778:136494 -k1,16246:29689435,43462778:136493 -k1,16246:30845014,43462778:136494 -k1,16246:32583029,43462778:0 -) -(1,16247:6630773,44304266:25952256,513147,134348 -k1,16246:9332974,44304266:236081 -k1,16246:10196890,44304266:236081 -k1,16246:12125111,44304266:236081 -k1,16246:14058573,44304266:236080 -k1,16246:14953946,44304266:236081 -k1,16246:16615435,44304266:236081 -k1,16246:18696354,44304266:236081 -k1,16246:20321798,44304266:236081 -k1,16246:21951830,44304266:236081 -k1,16246:22543770,44304266:236080 -k1,16246:24838992,44304266:236081 -k1,16246:27682751,44304266:236081 -k1,16246:30918415,44304266:236081 -k1,16246:32583029,44304266:0 -) -(1,16247:6630773,45145754:25952256,513147,134348 -k1,16246:10586879,45145754:217932 -k1,16246:11909094,45145754:217933 -k1,16246:12874792,45145754:217932 -k1,16246:14605950,45145754:217932 -k1,16246:15475311,45145754:217933 -k1,16246:18550613,45145754:217932 -k1,16246:19900352,45145754:217932 -k1,16246:21987371,45145754:217932 -k1,16246:24003612,45145754:217933 -k1,16246:24904429,45145754:217932 -k1,16246:27693338,45145754:217932 -k1,16246:28527309,45145754:217933 -k1,16246:32095441,45145754:217932 -k1,16246:32583029,45145754:0 -) -] -(1,16248:32583029,45706769:0,0,0 -g1,16248:32583029,45706769 -) -) -] -(1,16248:6630773,47279633:25952256,0,0 -h1,16248:6630773,47279633:25952256,0,0 -) -] -(1,16248:4262630,4025873:0,0,0 -[1,16248:-473656,4025873:0,0,0 -(1,16248:-473656,-710413:0,0,0 -(1,16248:-473656,-710413:0,0,0 -g1,16248:-473656,-710413 -) -g1,16248:-473656,-710413 -) -] -) -] -!19086 -}315 -Input:2642:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2643:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2644:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2645:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2646:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2647:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2648:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2649:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!748 -{316 -[1,16292:4262630,47279633:28320399,43253760,0 -(1,16292:4262630,4025873:0,0,0 -[1,16292:-473656,4025873:0,0,0 -(1,16292:-473656,-710413:0,0,0 -(1,16292:-473656,-644877:0,0,0 -k1,16292:-473656,-644877:-65536 -) -(1,16292:-473656,4736287:0,0,0 -k1,16292:-473656,4736287:5209943 -) -g1,16292:-473656,-710413 -) -] -) -[1,16292:6630773,47279633:25952256,43253760,0 -[1,16292:6630773,4812305:25952256,786432,0 -(1,16292:6630773,4812305:25952256,505283,126483 -(1,16292:6630773,4812305:25952256,505283,126483 -g1,16292:3078558,4812305 -[1,16292:3078558,4812305:0,0,0 -(1,16292:3078558,2439708:0,1703936,0 -k1,16292:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,16292:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,16292:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,16292:3078558,4812305:0,0,0 -(1,16292:3078558,2439708:0,1703936,0 -g1,16292:29030814,2439708 -g1,16292:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,16292:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,16292:37855564,2439708:1179648,16384,0 -) -) -k1,16292:3078556,2439708:-34777008 -) -] -[1,16292:3078558,4812305:0,0,0 -(1,16292:3078558,49800853:0,16384,2228224 -k1,16292:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,16292:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,16292:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,16292:3078558,4812305:0,0,0 -(1,16292:3078558,49800853:0,16384,2228224 -g1,16292:29030814,49800853 -g1,16292:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,16292:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,16292:37855564,49800853:1179648,16384,0 -) -) -k1,16292:3078556,49800853:-34777008 -) -] -g1,16292:6630773,4812305 -g1,16292:6630773,4812305 -g1,16292:10600288,4812305 -g1,16292:12009967,4812305 -g1,16292:14653689,4812305 -g1,16292:16328789,4812305 -k1,16292:31387652,4812305:15058863 -) -) -] -[1,16292:6630773,45706769:25952256,40108032,0 -(1,16292:6630773,45706769:25952256,40108032,0 -(1,16292:6630773,45706769:0,0,0 -g1,16292:6630773,45706769 -) -[1,16292:6630773,45706769:25952256,40108032,0 -(1,16247:6630773,6254097:25952256,505283,134348 -k1,16246:8491996,6254097:211026 -k1,16246:11691464,6254097:211026 -k1,16246:15463060,6254097:211025 -k1,16246:16205583,6254097:211026 -k1,16246:17068037,6254097:211026 -k1,16246:18556360,6254097:211026 -k1,16246:21593297,6254097:211025 -k1,16246:22420361,6254097:211026 -k1,16246:22987247,6254097:211026 -k1,16246:26072027,6254097:211026 -k1,16246:28794392,6254097:211025 -k1,16246:31563944,6254097:211026 -k1,16246:32583029,6254097:0 -) -(1,16247:6630773,7095585:25952256,513147,126483 -g1,16246:7967707,7095585 -g1,16246:9560887,7095585 -g1,16246:10115976,7095585 -g1,16246:14848330,7095585 -g1,16246:19712412,7095585 -g1,16246:20570933,7095585 -g1,16246:22195570,7095585 -g1,16246:23054091,7095585 -k1,16247:32583029,7095585:8217563 -g1,16247:32583029,7095585 -) -(1,16249:6630773,7937073:25952256,513147,134348 -h1,16248:6630773,7937073:983040,0,0 -k1,16248:9510261,7937073:253460 -k1,16248:11124249,7937073:253461 -k1,16248:12985308,7937073:253461 -k1,16248:14230328,7937073:253460 -k1,16248:17788770,7937073:253461 -k1,16248:21608699,7937073:253460 -k1,16248:22545045,7937073:253461 -k1,16248:25130931,7937073:253460 -k1,16248:26991989,7937073:253460 -k1,16248:29246264,7937073:253461 -k1,16248:30309095,7937073:253461 -k1,16248:30918415,7937073:253460 -k1,16248:32583029,7937073:0 -) -(1,16249:6630773,8778561:25952256,513147,134348 -k1,16248:9070275,8778561:193583 -k1,16248:9923150,8778561:193583 -k1,16248:13854907,8778561:193583 -k1,16248:15280567,8778561:193583 -k1,16248:18083138,8778561:193583 -h1,16248:19625856,8778561:0,0,0 -k1,16248:19819439,8778561:193583 -k1,16248:21204467,8778561:193583 -h1,16248:22747185,8778561:0,0,0 -k1,16248:22940768,8778561:193583 -k1,16248:23943721,8778561:193583 -k1,16248:25965758,8778561:193583 -h1,16248:27161135,8778561:0,0,0 -k1,16248:27354718,8778561:193583 -k1,16248:28739746,8778561:193583 -h1,16248:29935123,8778561:0,0,0 -k1,16248:30302376,8778561:193583 -k1,16249:32583029,8778561:0 -) -(1,16249:6630773,9620049:25952256,513147,134348 -k1,16248:8596057,9620049:236444 -k1,16248:9780153,9620049:236445 -k1,16248:10372457,9620049:236444 -k1,16248:14218625,9620049:236445 -k1,16248:15114361,9620049:236444 -k1,16248:16369891,9620049:236445 -k1,16248:17698820,9620049:236444 -k1,16248:18594556,9620049:236444 -k1,16248:20527728,9620049:236445 -k1,16248:23446561,9620049:236444 -k1,16248:24874451,9620049:236445 -k1,16248:28931644,9620049:236444 -k1,16248:30121638,9620049:236445 -k1,16248:31490544,9620049:236444 -k1,16248:32583029,9620049:0 -) -(1,16249:6630773,10461537:25952256,513147,126483 -k1,16248:8491230,10461537:221402 -k1,16248:9660284,10461537:221403 -k1,16248:12873405,10461537:221402 -k1,16248:15013701,10461537:221402 -k1,16248:16103455,10461537:221402 -k1,16248:17602155,10461537:221403 -k1,16248:19381348,10461537:221402 -k1,16248:21469215,10461537:221402 -k1,16248:22882062,10461537:221402 -k1,16248:25962145,10461537:221403 -k1,16248:27746581,10461537:221402 -k1,16248:31092740,10461537:221402 -k1,16248:32583029,10461537:0 -) -(1,16249:6630773,11303025:25952256,513147,134348 -g1,16248:7886442,11303025 -g1,16248:10340765,11303025 -g1,16248:12654185,11303025 -g1,16248:13650332,11303025 -g1,16248:14264404,11303025 -g1,16248:16238348,11303025 -g1,16248:19017729,11303025 -k1,16249:32583029,11303025:9378206 -g1,16249:32583029,11303025 -) -(1,16251:6630773,12144513:25952256,513147,134348 -h1,16250:6630773,12144513:983040,0,0 -k1,16250:9298803,12144513:196667 -k1,16250:10363823,12144513:196668 -k1,16250:11837787,12144513:196667 -k1,16250:12390315,12144513:196668 -k1,16250:15007882,12144513:196667 -k1,16250:18440718,12144513:196668 -k1,16250:19296677,12144513:196667 -k1,16250:21051136,12144513:196668 -k1,16250:24436785,12144513:196667 -k1,16250:26027404,12144513:196668 -k1,16250:31062594,12144513:196667 -k1,16250:32583029,12144513:0 -) -(1,16251:6630773,12986001:25952256,513147,134348 -k1,16250:7742178,12986001:157856 -k1,16250:8992519,12986001:157856 -(1,16250:8992519,12986001:0,452978,115847 -r1,16292:12516191,12986001:3523672,568825,115847 -k1,16250:8992519,12986001:-3523672 -) -(1,16250:8992519,12986001:3523672,452978,115847 -k1,16250:8992519,12986001:3277 -h1,16250:12512914,12986001:0,411205,112570 -) -k1,16250:12847718,12986001:157857 -k1,16250:14202261,12986001:157856 -k1,16250:16505110,12986001:157856 -k1,16250:19704492,12986001:157856 -k1,16250:20881434,12986001:157857 -k1,16250:23525071,12986001:157856 -k1,16250:24342219,12986001:157856 -k1,16250:27085470,12986001:157856 -k1,16250:29357518,12986001:157857 -k1,16250:30312292,12986001:157856 -k1,16250:30884991,12986001:157856 -k1,16250:32583029,12986001:0 -) -(1,16251:6630773,13827489:25952256,505283,7863 -g1,16250:7849087,13827489 -g1,16250:9606107,13827489 -g1,16250:12664016,13827489 -g1,16250:14070418,13827489 -g1,16250:16279636,13827489 -g1,16250:17930487,13827489 -k1,16251:32583029,13827489:13462408 -g1,16251:32583029,13827489 -) -v1,16253:6630773,14959556:0,393216,0 -(1,16265:6630773,20597785:25952256,6031445,196608 -g1,16265:6630773,20597785 -g1,16265:6630773,20597785 -g1,16265:6434165,20597785 -(1,16265:6434165,20597785:0,6031445,196608 -r1,16292:32779637,20597785:26345472,6228053,196608 -k1,16265:6434165,20597785:-26345472 -) -(1,16265:6434165,20597785:26345472,6031445,196608 -[1,16265:6630773,20597785:25952256,5834837,0 -(1,16255:6630773,15167174:25952256,404226,107478 -(1,16254:6630773,15167174:0,0,0 -g1,16254:6630773,15167174 -g1,16254:6630773,15167174 -g1,16254:6303093,15167174 -(1,16254:6303093,15167174:0,0,0 -) -g1,16254:6630773,15167174 -) -g1,16255:7263065,15167174 -g1,16255:8211503,15167174 -g1,16255:15482854,15167174 -g1,16255:22121914,15167174 -g1,16255:22438060,15167174 -h1,16255:22754206,15167174:0,0,0 -k1,16255:32583029,15167174:9828823 -g1,16255:32583029,15167174 -) -(1,16256:6630773,15833352:25952256,404226,101187 -h1,16256:6630773,15833352:0,0,0 -g1,16256:6946919,15833352 -g1,16256:7263065,15833352 -g1,16256:11689104,15833352 -h1,16256:12005250,15833352:0,0,0 -k1,16256:32583030,15833352:20577780 -g1,16256:32583030,15833352 -) -(1,16257:6630773,16499530:25952256,404226,82312 -h1,16257:6630773,16499530:0,0,0 -g1,16257:6946919,16499530 -g1,16257:7263065,16499530 -g1,16257:15482853,16499530 -g1,16257:16115145,16499530 -g1,16257:17695875,16499530 -g1,16257:18960458,16499530 -g1,16257:20541187,16499530 -k1,16257:20541187,16499530:0 -h1,16257:22121916,16499530:0,0,0 -k1,16257:32583029,16499530:10461113 -g1,16257:32583029,16499530 -) -(1,16258:6630773,17165708:25952256,404226,82312 -h1,16258:6630773,17165708:0,0,0 -g1,16258:6946919,17165708 -g1,16258:7263065,17165708 -g1,16258:7579211,17165708 -g1,16258:7895357,17165708 -g1,16258:8211503,17165708 -g1,16258:8527649,17165708 -g1,16258:8843795,17165708 -g1,16258:9159941,17165708 -g1,16258:9476087,17165708 -g1,16258:9792233,17165708 -g1,16258:10108379,17165708 -g1,16258:10424525,17165708 -g1,16258:10740671,17165708 -g1,16258:11056817,17165708 -g1,16258:11372963,17165708 -g1,16258:11689109,17165708 -g1,16258:12005255,17165708 -g1,16258:12321401,17165708 -g1,16258:12637547,17165708 -g1,16258:12953693,17165708 -g1,16258:13269839,17165708 -g1,16258:15482859,17165708 -g1,16258:16115151,17165708 -g1,16258:18328172,17165708 -g1,16258:19908901,17165708 -g1,16258:21489630,17165708 -k1,16258:21489630,17165708:0 -h1,16258:23070359,17165708:0,0,0 -k1,16258:32583029,17165708:9512670 -g1,16258:32583029,17165708 -) -(1,16259:6630773,17831886:25952256,404226,82312 -h1,16259:6630773,17831886:0,0,0 -g1,16259:6946919,17831886 -g1,16259:7263065,17831886 -g1,16259:7579211,17831886 -g1,16259:7895357,17831886 -g1,16259:8211503,17831886 -g1,16259:8527649,17831886 -g1,16259:8843795,17831886 -g1,16259:9159941,17831886 -g1,16259:9476087,17831886 -g1,16259:9792233,17831886 -g1,16259:10108379,17831886 -g1,16259:10424525,17831886 -g1,16259:10740671,17831886 -g1,16259:11056817,17831886 -g1,16259:11372963,17831886 -g1,16259:11689109,17831886 -g1,16259:12005255,17831886 -g1,16259:12321401,17831886 -g1,16259:12637547,17831886 -g1,16259:12953693,17831886 -g1,16259:13269839,17831886 -g1,16259:15482859,17831886 -g1,16259:16115151,17831886 -g1,16259:17695881,17831886 -k1,16259:17695881,17831886:0 -h1,16259:19276610,17831886:0,0,0 -k1,16259:32583029,17831886:13306419 -g1,16259:32583029,17831886 -) -(1,16260:6630773,18498064:25952256,404226,101187 -h1,16260:6630773,18498064:0,0,0 -g1,16260:6946919,18498064 -g1,16260:7263065,18498064 -g1,16260:7579211,18498064 -g1,16260:7895357,18498064 -g1,16260:8211503,18498064 -g1,16260:8527649,18498064 -g1,16260:8843795,18498064 -g1,16260:9159941,18498064 -g1,16260:9476087,18498064 -g1,16260:9792233,18498064 -g1,16260:10108379,18498064 -g1,16260:10424525,18498064 -g1,16260:10740671,18498064 -g1,16260:11056817,18498064 -g1,16260:11372963,18498064 -g1,16260:11689109,18498064 -g1,16260:12005255,18498064 -g1,16260:12321401,18498064 -g1,16260:12637547,18498064 -g1,16260:12953693,18498064 -g1,16260:13269839,18498064 -g1,16260:15482859,18498064 -g1,16260:16115151,18498064 -g1,16260:17695881,18498064 -k1,16260:17695881,18498064:0 -h1,16260:18644319,18498064:0,0,0 -k1,16260:32583029,18498064:13938710 -g1,16260:32583029,18498064 -) -(1,16261:6630773,19164242:25952256,404226,76021 -h1,16261:6630773,19164242:0,0,0 -g1,16261:6946919,19164242 -g1,16261:7263065,19164242 -g1,16261:7579211,19164242 -g1,16261:7895357,19164242 -g1,16261:8211503,19164242 -g1,16261:8527649,19164242 -g1,16261:8843795,19164242 -g1,16261:9159941,19164242 -g1,16261:9476087,19164242 -g1,16261:9792233,19164242 -g1,16261:10108379,19164242 -g1,16261:10424525,19164242 -g1,16261:10740671,19164242 -g1,16261:11056817,19164242 -g1,16261:11372963,19164242 -g1,16261:11689109,19164242 -g1,16261:12005255,19164242 -g1,16261:12321401,19164242 -g1,16261:12637547,19164242 -g1,16261:12953693,19164242 -g1,16261:13269839,19164242 -g1,16261:14850568,19164242 -g1,16261:15482860,19164242 -g1,16261:17379734,19164242 -h1,16261:20857337,19164242:0,0,0 -k1,16261:32583029,19164242:11725692 -g1,16261:32583029,19164242 -) -(1,16262:6630773,19830420:25952256,410518,107478 -h1,16262:6630773,19830420:0,0,0 -g1,16262:7263065,19830420 -g1,16262:7895357,19830420 -g1,16262:12637542,19830420 -g1,16262:13269834,19830420 -g1,16262:16115146,19830420 -g1,16262:17695875,19830420 -g1,16262:18328167,19830420 -g1,16262:21489624,19830420 -g1,16262:23070353,19830420 -g1,16262:23702645,19830420 -k1,16262:23702645,19830420:0 -h1,16262:25599519,19830420:0,0,0 -k1,16262:32583029,19830420:6983510 -g1,16262:32583029,19830420 -) -(1,16263:6630773,20496598:25952256,404226,101187 -h1,16263:6630773,20496598:0,0,0 -g1,16263:6946919,20496598 -g1,16263:7263065,20496598 -g1,16263:7579211,20496598 -g1,16263:7895357,20496598 -g1,16263:8211503,20496598 -g1,16263:8527649,20496598 -g1,16263:8843795,20496598 -g1,16263:9159941,20496598 -g1,16263:9476087,20496598 -g1,16263:9792233,20496598 -g1,16263:10108379,20496598 -g1,16263:10424525,20496598 -g1,16263:10740671,20496598 -g1,16263:13585982,20496598 -g1,16263:14218274,20496598 -g1,16263:15482857,20496598 -g1,16263:17379731,20496598 -g1,16263:18012023,20496598 -g1,16263:19908898,20496598 -g1,16263:20541190,20496598 -g1,16263:22754211,20496598 -g1,16263:23386503,20496598 -h1,16263:27180251,20496598:0,0,0 -k1,16263:32583029,20496598:5402778 -g1,16263:32583029,20496598 -) -] -) -g1,16265:32583029,20597785 -g1,16265:6630773,20597785 -g1,16265:6630773,20597785 -g1,16265:32583029,20597785 -g1,16265:32583029,20597785 -) -h1,16265:6630773,20794393:0,0,0 -(1,16268:6630773,30409484:25952256,9083666,0 -k1,16268:10523651,30409484:3892878 -h1,16267:10523651,30409484:0,0,0 -(1,16267:10523651,30409484:18166500,9083666,0 -(1,16267:10523651,30409484:18167376,9083688,0 -(1,16267:10523651,30409484:18167376,9083688,0 -(1,16267:10523651,30409484:0,9083688,0 -(1,16267:10523651,30409484:0,14208860,0 -(1,16267:10523651,30409484:28417720,14208860,0 -) -k1,16267:10523651,30409484:-28417720 -) -) -g1,16267:28691027,30409484 -) -) -) -g1,16268:28690151,30409484 -k1,16268:32583029,30409484:3892878 -) -(1,16275:6630773,31250972:25952256,505283,134348 -h1,16274:6630773,31250972:983040,0,0 -k1,16274:9231062,31250972:575227 -k1,16274:10576993,31250972:575228 -k1,16274:14457201,31250972:575227 -k1,16274:16483396,31250972:575228 -k1,16274:18794016,31250972:575227 -k1,16274:20139947,31250972:575228 -k1,16274:23688542,31250972:575227 -k1,16274:26769867,31250972:575228 -k1,16274:28213446,31250972:575227 -k1,16274:30263889,31250972:575228 -k1,16274:31490544,31250972:575227 -k1,16275:32583029,31250972:0 -) -(1,16275:6630773,32092460:25952256,513147,122846 -(1,16274:6630773,32092460:0,452978,115847 -r1,16292:11561293,32092460:4930520,568825,115847 -k1,16274:6630773,32092460:-4930520 -) -(1,16274:6630773,32092460:4930520,452978,115847 -k1,16274:6630773,32092460:3277 -h1,16274:11558016,32092460:0,411205,112570 -) -k1,16274:11772553,32092460:211260 -k1,16274:14310996,32092460:211260 -k1,16274:15189412,32092460:211260 -(1,16274:15189412,32092460:0,452978,115847 -r1,16292:18713084,32092460:3523672,568825,115847 -k1,16274:15189412,32092460:-3523672 -) -(1,16274:15189412,32092460:3523672,452978,115847 -k1,16274:15189412,32092460:3277 -h1,16274:18709807,32092460:0,411205,112570 -) -k1,16274:19098014,32092460:211260 -(1,16274:19098014,32092460:0,452978,122846 -r1,16292:24028534,32092460:4930520,575824,122846 -k1,16274:19098014,32092460:-4930520 -) -(1,16274:19098014,32092460:4930520,452978,122846 -k1,16274:19098014,32092460:3277 -h1,16274:24025257,32092460:0,411205,112570 -) -k1,16274:24239793,32092460:211259 -k1,16274:26778236,32092460:211260 -k1,16274:27656652,32092460:211260 -(1,16274:27656652,32092460:0,452978,122846 -r1,16292:31180324,32092460:3523672,575824,122846 -k1,16274:27656652,32092460:-3523672 -) -(1,16274:27656652,32092460:3523672,452978,122846 -k1,16274:27656652,32092460:3277 -h1,16274:31177047,32092460:0,411205,112570 -) -k1,16274:31391584,32092460:211260 -k1,16274:32583029,32092460:0 -) -(1,16275:6630773,32933948:25952256,513147,134348 -g1,16274:9070678,32933948 -g1,16274:10288992,32933948 -(1,16274:10288992,32933948:0,414482,115847 -r1,16292:11702393,32933948:1413401,530329,115847 -k1,16274:10288992,32933948:-1413401 -) -(1,16274:10288992,32933948:1413401,414482,115847 -k1,16274:10288992,32933948:3277 -h1,16274:11699116,32933948:0,411205,112570 -) -g1,16274:11901622,32933948 -g1,16274:12760143,32933948 -g1,16274:13978457,32933948 -(1,16274:13978457,32933948:0,414482,115847 -r1,16292:14336723,32933948:358266,530329,115847 -k1,16274:13978457,32933948:-358266 -) -(1,16274:13978457,32933948:358266,414482,115847 -k1,16274:13978457,32933948:3277 -h1,16274:14333446,32933948:0,411205,112570 -) -g1,16274:14535952,32933948 -k1,16275:32583029,32933948:16301198 -g1,16275:32583029,32933948 -) -v1,16277:6630773,34066016:0,393216,0 -(1,16282:6630773,35053582:25952256,1380782,196608 -g1,16282:6630773,35053582 -g1,16282:6630773,35053582 -g1,16282:6434165,35053582 -(1,16282:6434165,35053582:0,1380782,196608 -r1,16292:32779637,35053582:26345472,1577390,196608 -k1,16282:6434165,35053582:-26345472 -) -(1,16282:6434165,35053582:26345472,1380782,196608 -[1,16282:6630773,35053582:25952256,1184174,0 -(1,16279:6630773,34279926:25952256,410518,107478 -(1,16278:6630773,34279926:0,0,0 -g1,16278:6630773,34279926 -g1,16278:6630773,34279926 -g1,16278:6303093,34279926 -(1,16278:6303093,34279926:0,0,0 -) -g1,16278:6630773,34279926 -) -g1,16279:7263065,34279926 -g1,16279:7895357,34279926 -g1,16279:13902125,34279926 -g1,16279:14534417,34279926 -g1,16279:17379729,34279926 -g1,16279:18960458,34279926 -g1,16279:19592750,34279926 -k1,16279:19592750,34279926:0 -h1,16279:22438061,34279926:0,0,0 -k1,16279:32583029,34279926:10144968 -g1,16279:32583029,34279926 -) -(1,16280:6630773,34946104:25952256,404226,107478 -h1,16280:6630773,34946104:0,0,0 -g1,16280:6946919,34946104 -g1,16280:7263065,34946104 -g1,16280:7579211,34946104 -g1,16280:7895357,34946104 -g1,16280:8211503,34946104 -g1,16280:8527649,34946104 -g1,16280:8843795,34946104 -g1,16280:9159941,34946104 -g1,16280:9476087,34946104 -g1,16280:9792233,34946104 -g1,16280:10108379,34946104 -g1,16280:10424525,34946104 -g1,16280:10740671,34946104 -g1,16280:11056817,34946104 -g1,16280:11372963,34946104 -g1,16280:11689109,34946104 -g1,16280:12005255,34946104 -g1,16280:13585984,34946104 -g1,16280:14218276,34946104 -g1,16280:17695879,34946104 -g1,16280:19276608,34946104 -g1,16280:19908900,34946104 -g1,16280:20857338,34946104 -g1,16280:21489630,34946104 -g1,16280:23702651,34946104 -g1,16280:24334943,34946104 -h1,16280:27496400,34946104:0,0,0 -k1,16280:32583029,34946104:5086629 -g1,16280:32583029,34946104 -) -] -) -g1,16282:32583029,35053582 -g1,16282:6630773,35053582 -g1,16282:6630773,35053582 -g1,16282:32583029,35053582 -g1,16282:32583029,35053582 -) -h1,16282:6630773,35250190:0,0,0 -(1,16285:6630773,44865281:25952256,9083666,0 -k1,16285:10523651,44865281:3892878 -h1,16284:10523651,44865281:0,0,0 -(1,16284:10523651,44865281:18166500,9083666,0 -(1,16284:10523651,44865281:18167376,9083688,0 -(1,16284:10523651,44865281:18167376,9083688,0 -(1,16284:10523651,44865281:0,9083688,0 -(1,16284:10523651,44865281:0,14208860,0 -(1,16284:10523651,44865281:28417720,14208860,0 -) -k1,16284:10523651,44865281:-28417720 -) -) -g1,16284:28691027,44865281 -) -) -) -g1,16285:28690151,44865281 -k1,16285:32583029,44865281:3892878 -) -(1,16292:6630773,45706769:25952256,513147,126483 -h1,16291:6630773,45706769:983040,0,0 -k1,16291:8665466,45706769:233764 -k1,16291:9918316,45706769:233765 -k1,16291:11558483,45706769:233764 -k1,16291:14923558,45706769:233765 -k1,16291:16434619,45706769:233764 -k1,16291:19503471,45706769:233765 -k1,16291:20605587,45706769:233764 -k1,16291:21654620,45706769:233765 -k1,16291:22790124,45706769:233729 -k1,16291:25356315,45706769:233765 -k1,16291:26867376,45706769:233764 -k1,16291:28495092,45706769:233765 -k1,16291:30617604,45706769:233764 -k1,16291:32583029,45706769:0 -) -] -(1,16292:32583029,45706769:0,0,0 -g1,16292:32583029,45706769 -) -) -] -(1,16292:6630773,47279633:25952256,0,0 -h1,16292:6630773,47279633:25952256,0,0 -) -] -(1,16292:4262630,4025873:0,0,0 -[1,16292:-473656,4025873:0,0,0 -(1,16292:-473656,-710413:0,0,0 -(1,16292:-473656,-710413:0,0,0 -g1,16292:-473656,-710413 -) -g1,16292:-473656,-710413 -) -] -) -] -!20879 -}316 -Input:2650:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2651:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!196 -{317 -[1,16352:4262630,47279633:28320399,43253760,0 -(1,16352:4262630,4025873:0,0,0 -[1,16352:-473656,4025873:0,0,0 -(1,16352:-473656,-710413:0,0,0 -(1,16352:-473656,-644877:0,0,0 -k1,16352:-473656,-644877:-65536 -) -(1,16352:-473656,4736287:0,0,0 -k1,16352:-473656,4736287:5209943 -) -g1,16352:-473656,-710413 -) -] -) -[1,16352:6630773,47279633:25952256,43253760,0 -[1,16352:6630773,4812305:25952256,786432,0 -(1,16352:6630773,4812305:25952256,513147,134348 -(1,16352:6630773,4812305:25952256,513147,134348 -g1,16352:3078558,4812305 -[1,16352:3078558,4812305:0,0,0 -(1,16352:3078558,2439708:0,1703936,0 -k1,16352:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,16352:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,16352:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,16352:3078558,4812305:0,0,0 -(1,16352:3078558,2439708:0,1703936,0 -g1,16352:29030814,2439708 -g1,16352:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,16352:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,16352:37855564,2439708:1179648,16384,0 -) -) -k1,16352:3078556,2439708:-34777008 -) -] -[1,16352:3078558,4812305:0,0,0 -(1,16352:3078558,49800853:0,16384,2228224 -k1,16352:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,16352:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,16352:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,16352:3078558,4812305:0,0,0 -(1,16352:3078558,49800853:0,16384,2228224 -g1,16352:29030814,49800853 -g1,16352:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,16352:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,16352:37855564,49800853:1179648,16384,0 -) -) -k1,16352:3078556,49800853:-34777008 -) -] -g1,16352:6630773,4812305 -k1,16352:25712890,4812305:17886740 -g1,16352:29057847,4812305 -g1,16352:29873114,4812305 -) -) -] -[1,16352:6630773,45706769:25952256,40108032,0 -(1,16352:6630773,45706769:25952256,40108032,0 -(1,16352:6630773,45706769:0,0,0 -g1,16352:6630773,45706769 -) -[1,16352:6630773,45706769:25952256,40108032,0 -(1,16292:6630773,6254097:25952256,513147,126483 -k1,16291:8278397,6254097:253673 -(1,16291:8278397,6254097:0,459977,115847 -r1,16352:12505493,6254097:4227096,575824,115847 -k1,16291:8278397,6254097:-4227096 -) -(1,16291:8278397,6254097:4227096,459977,115847 -k1,16291:8278397,6254097:3277 -h1,16291:12502216,6254097:0,411205,112570 -) -k1,16291:12759166,6254097:253673 -k1,16291:13664267,6254097:253673 -k1,16291:15393155,6254097:253673 -k1,16291:18349534,6254097:253674 -k1,16291:20677421,6254097:253673 -k1,16291:21878745,6254097:253673 -k1,16291:23183561,6254097:253618 -k1,16291:24628679,6254097:253673 -k1,16291:25995154,6254097:253674 -k1,16291:27629671,6254097:253673 -k1,16291:29160641,6254097:253673 -k1,16291:30837101,6254097:253673 -k1,16291:31931601,6254097:253673 -k1,16291:32583029,6254097:0 -) -(1,16292:6630773,7095585:25952256,513147,126483 -k1,16291:9569552,7095585:269498 -k1,16291:10858136,7095585:269499 -k1,16291:13460060,7095585:269498 -k1,16291:14388851,7095585:269499 -k1,16291:18730101,7095585:269498 -k1,16291:19947251,7095585:269499 -k1,16291:22979092,7095585:269498 -k1,16291:27566758,7095585:269499 -k1,16291:29394047,7095585:269498 -k1,16291:32583029,7095585:0 -) -(1,16292:6630773,7937073:25952256,505283,138281 -k1,16291:8094646,7937073:272428 -k1,16291:10737511,7937073:272428 -k1,16291:12029024,7937073:272428 -k1,16291:14312752,7937073:272428 -$1,16291:14519846,7937073 -$1,16291:15071659,7937073 -k1,16291:15344087,7937073:272428 -k1,16291:18610855,7937073:272428 -k1,16291:19534710,7937073:272427 -k1,16291:22848664,7937073:272428 -k1,16291:24678883,7937073:272428 -k1,16291:27148078,7937073:272428 -k1,16291:28611951,7937073:272428 -k1,16291:29903464,7937073:272428 -k1,16291:31873274,7937073:272428 -$1,16291:32080368,7937073 -$1,16291:32583029,7937073 -k1,16292:32583029,7937073:0 -) -(1,16292:6630773,8778561:25952256,505283,126483 -g1,16291:9824342,8778561 -g1,16291:10674999,8778561 -g1,16291:13915754,8778561 -g1,16291:15672774,8778561 -k1,16292:32583029,8778561:13877904 -g1,16292:32583029,8778561 -) -v1,16296:6630773,9969027:0,393216,0 -(1,16309:6630773,16273434:25952256,6697623,196608 -g1,16309:6630773,16273434 -g1,16309:6630773,16273434 -g1,16309:6434165,16273434 -(1,16309:6434165,16273434:0,6697623,196608 -r1,16352:32779637,16273434:26345472,6894231,196608 -k1,16309:6434165,16273434:-26345472 -) -(1,16309:6434165,16273434:26345472,6697623,196608 -[1,16309:6630773,16273434:25952256,6501015,0 -(1,16298:6630773,10176645:25952256,404226,107478 -(1,16297:6630773,10176645:0,0,0 -g1,16297:6630773,10176645 -g1,16297:6630773,10176645 -g1,16297:6303093,10176645 -(1,16297:6303093,10176645:0,0,0 -) -g1,16297:6630773,10176645 -) -k1,16298:6630773,10176645:0 -g1,16298:13902124,10176645 -g1,16298:20225038,10176645 -g1,16298:25283369,10176645 -h1,16298:25599515,10176645:0,0,0 -k1,16298:32583029,10176645:6983514 -g1,16298:32583029,10176645 -) -(1,16299:6630773,10842823:25952256,404226,101187 -h1,16299:6630773,10842823:0,0,0 -g1,16299:6946919,10842823 -g1,16299:7263065,10842823 -g1,16299:11689104,10842823 -h1,16299:12005250,10842823:0,0,0 -k1,16299:32583030,10842823:20577780 -g1,16299:32583030,10842823 -) -(1,16300:6630773,11509001:25952256,410518,107478 -h1,16300:6630773,11509001:0,0,0 -g1,16300:6946919,11509001 -g1,16300:7263065,11509001 -g1,16300:15166708,11509001 -g1,16300:15799000,11509001 -g1,16300:20225040,11509001 -g1,16300:21805769,11509001 -g1,16300:22438061,11509001 -g1,16300:25915664,11509001 -h1,16300:26231810,11509001:0,0,0 -k1,16300:32583029,11509001:6351219 -g1,16300:32583029,11509001 -) -(1,16301:6630773,12175179:25952256,404226,82312 -h1,16301:6630773,12175179:0,0,0 -g1,16301:6946919,12175179 -g1,16301:7263065,12175179 -g1,16301:15482853,12175179 -g1,16301:16115145,12175179 -g1,16301:17695875,12175179 -g1,16301:18960458,12175179 -g1,16301:20541187,12175179 -k1,16301:20541187,12175179:0 -h1,16301:22121916,12175179:0,0,0 -k1,16301:32583029,12175179:10461113 -g1,16301:32583029,12175179 -) -(1,16302:6630773,12841357:25952256,404226,82312 -h1,16302:6630773,12841357:0,0,0 -g1,16302:6946919,12841357 -g1,16302:7263065,12841357 -g1,16302:7579211,12841357 -g1,16302:7895357,12841357 -g1,16302:8211503,12841357 -g1,16302:8527649,12841357 -g1,16302:8843795,12841357 -g1,16302:9159941,12841357 -g1,16302:9476087,12841357 -g1,16302:9792233,12841357 -g1,16302:10108379,12841357 -g1,16302:10424525,12841357 -g1,16302:10740671,12841357 -g1,16302:11056817,12841357 -g1,16302:11372963,12841357 -g1,16302:11689109,12841357 -g1,16302:12005255,12841357 -g1,16302:12321401,12841357 -g1,16302:12637547,12841357 -g1,16302:12953693,12841357 -g1,16302:13269839,12841357 -g1,16302:15482859,12841357 -g1,16302:16115151,12841357 -g1,16302:18328172,12841357 -g1,16302:19908901,12841357 -g1,16302:21489630,12841357 -k1,16302:21489630,12841357:0 -h1,16302:23070359,12841357:0,0,0 -k1,16302:32583029,12841357:9512670 -g1,16302:32583029,12841357 -) -(1,16303:6630773,13507535:25952256,404226,82312 -h1,16303:6630773,13507535:0,0,0 -g1,16303:6946919,13507535 -g1,16303:7263065,13507535 -g1,16303:7579211,13507535 -g1,16303:7895357,13507535 -g1,16303:8211503,13507535 -g1,16303:8527649,13507535 -g1,16303:8843795,13507535 -g1,16303:9159941,13507535 -g1,16303:9476087,13507535 -g1,16303:9792233,13507535 -g1,16303:10108379,13507535 -g1,16303:10424525,13507535 -g1,16303:10740671,13507535 -g1,16303:11056817,13507535 -g1,16303:11372963,13507535 -g1,16303:11689109,13507535 -g1,16303:12005255,13507535 -g1,16303:12321401,13507535 -g1,16303:12637547,13507535 -g1,16303:12953693,13507535 -g1,16303:13269839,13507535 -g1,16303:15482859,13507535 -g1,16303:16115151,13507535 -g1,16303:17695881,13507535 -k1,16303:17695881,13507535:0 -h1,16303:19276610,13507535:0,0,0 -k1,16303:32583029,13507535:13306419 -g1,16303:32583029,13507535 -) -(1,16304:6630773,14173713:25952256,404226,101187 -h1,16304:6630773,14173713:0,0,0 -g1,16304:6946919,14173713 -g1,16304:7263065,14173713 -g1,16304:7579211,14173713 -g1,16304:7895357,14173713 -g1,16304:8211503,14173713 -g1,16304:8527649,14173713 -g1,16304:8843795,14173713 -g1,16304:9159941,14173713 -g1,16304:9476087,14173713 -g1,16304:9792233,14173713 -g1,16304:10108379,14173713 -g1,16304:10424525,14173713 -g1,16304:10740671,14173713 -g1,16304:11056817,14173713 -g1,16304:11372963,14173713 -g1,16304:11689109,14173713 -g1,16304:12005255,14173713 -g1,16304:12321401,14173713 -g1,16304:12637547,14173713 -g1,16304:12953693,14173713 -g1,16304:13269839,14173713 -g1,16304:15482859,14173713 -g1,16304:16115151,14173713 -g1,16304:17695881,14173713 -k1,16304:17695881,14173713:0 -h1,16304:18644319,14173713:0,0,0 -k1,16304:32583029,14173713:13938710 -g1,16304:32583029,14173713 -) -(1,16305:6630773,14839891:25952256,404226,76021 -h1,16305:6630773,14839891:0,0,0 -g1,16305:6946919,14839891 -g1,16305:7263065,14839891 -g1,16305:7579211,14839891 -g1,16305:7895357,14839891 -g1,16305:8211503,14839891 -g1,16305:8527649,14839891 -g1,16305:8843795,14839891 -g1,16305:9159941,14839891 -g1,16305:9476087,14839891 -g1,16305:9792233,14839891 -g1,16305:10108379,14839891 -g1,16305:10424525,14839891 -g1,16305:10740671,14839891 -g1,16305:11056817,14839891 -g1,16305:11372963,14839891 -g1,16305:11689109,14839891 -g1,16305:12005255,14839891 -g1,16305:12321401,14839891 -g1,16305:12637547,14839891 -g1,16305:12953693,14839891 -g1,16305:13269839,14839891 -g1,16305:14850568,14839891 -g1,16305:15482860,14839891 -g1,16305:17379734,14839891 -g1,16305:21173483,14839891 -h1,16305:21489629,14839891:0,0,0 -k1,16305:32583029,14839891:11093400 -g1,16305:32583029,14839891 -) -(1,16306:6630773,15506069:25952256,404226,101187 -h1,16306:6630773,15506069:0,0,0 -g1,16306:6946919,15506069 -g1,16306:7263065,15506069 -g1,16306:14850562,15506069 -g1,16306:15482854,15506069 -g1,16306:17379728,15506069 -g1,16306:19276602,15506069 -g1,16306:21805768,15506069 -h1,16306:22121914,15506069:0,0,0 -k1,16306:32583029,15506069:10461115 -g1,16306:32583029,15506069 -) -(1,16307:6630773,16172247:25952256,410518,101187 -h1,16307:6630773,16172247:0,0,0 -g1,16307:6946919,16172247 -g1,16307:7263065,16172247 -g1,16307:20857331,16172247 -g1,16307:21489623,16172247 -g1,16307:22754206,16172247 -g1,16307:24651081,16172247 -h1,16307:26864101,16172247:0,0,0 -k1,16307:32583029,16172247:5718928 -g1,16307:32583029,16172247 -) -] -) -g1,16309:32583029,16273434 -g1,16309:6630773,16273434 -g1,16309:6630773,16273434 -g1,16309:32583029,16273434 -g1,16309:32583029,16273434 -) -h1,16309:6630773,16470042:0,0,0 -(1,16312:6630773,25818534:25952256,8758668,0 -k1,16312:7928465,25818534:1297692 -h1,16311:7928465,25818534:0,0,0 -(1,16311:7928465,25818534:23356872,8758668,0 -(1,16311:7928465,25818534:23356506,8758690,0 -(1,16311:7928465,25818534:23356506,8758690,0 -(1,16311:7928465,25818534:0,8758690,0 -(1,16311:7928465,25818534:0,14208860,0 -(1,16311:7928465,25818534:37890292,14208860,0 -) -k1,16311:7928465,25818534:-37890292 -) -) -g1,16311:31284971,25818534 -) -) -) -g1,16312:31285337,25818534 -k1,16312:32583029,25818534:1297692 -) -(1,16320:6630773,27909794:25952256,555811,12975 -(1,16320:6630773,27909794:2899444,534184,12975 -g1,16320:6630773,27909794 -g1,16320:9530217,27909794 -) -g1,16320:10837202,27909794 -k1,16320:32583029,27909794:19492306 -g1,16320:32583029,27909794 -) -v1,16324:6630773,29668786:0,393216,0 -(1,16325:6630773,34477444:25952256,5201874,616038 -g1,16325:6630773,34477444 -(1,16325:6630773,34477444:25952256,5201874,616038 -(1,16325:6630773,35093482:25952256,5817912,0 -[1,16325:6630773,35093482:25952256,5817912,0 -(1,16325:6630773,35067268:25952256,5765484,0 -r1,16352:6656987,35067268:26214,5765484,0 -[1,16325:6656987,35067268:25899828,5765484,0 -(1,16325:6656987,34477444:25899828,4585836,0 -[1,16325:7246811,34477444:24720180,4585836,0 -(1,16325:7246811,30977144:24720180,1085536,298548 -(1,16324:7246811,30977144:0,1085536,298548 -r1,16352:8753226,30977144:1506415,1384084,298548 -k1,16324:7246811,30977144:-1506415 -) -(1,16324:7246811,30977144:1506415,1085536,298548 -) -k1,16324:9012113,30977144:258887 -k1,16324:10195058,30977144:258887 -k1,16324:12433788,30977144:258887 -k1,16324:13684234,30977144:258886 -k1,16324:15593318,30977144:258887 -k1,16324:18336020,30977144:258887 -k1,16324:19246335,30977144:258887 -k1,16324:20917523,30977144:258887 -k1,16324:22618857,30977144:258887 -k1,16324:23922388,30977144:258887 -k1,16324:26161117,30977144:258886 -k1,16324:28949694,30977144:258887 -k1,16324:30306309,30977144:258887 -k1,16324:31966991,30977144:0 -) -(1,16325:7246811,31818632:24720180,513147,134348 -k1,16324:7999114,31818632:220806 -k1,16324:10117187,31818632:220806 -k1,16324:10950755,31818632:220806 -k1,16324:14574846,31818632:220806 -k1,16324:17139219,31818632:220806 -k1,16324:18802472,31818632:220806 -k1,16324:21224631,31818632:220805 -k1,16324:21923194,31818632:220806 -k1,16324:23830897,31818632:220806 -k1,16324:25020980,31818632:220806 -k1,16324:27221629,31818632:220806 -k1,16324:29622818,31818632:220806 -k1,16324:31219225,31818632:220806 -k1,16324:31966991,31818632:0 -) -(1,16325:7246811,32660120:24720180,513147,126483 -k1,16324:8950948,32660120:190911 -k1,16324:9793288,32660120:190912 -k1,16324:11644881,32660120:190911 -k1,16324:15971770,32660120:190912 -k1,16324:16845566,32660120:190911 -k1,16324:20107494,32660120:190911 -k1,16324:24225979,32660120:190912 -k1,16324:25701396,32660120:190911 -k1,16324:27089650,32660120:190911 -k1,16324:28116146,32660120:190912 -k1,16324:28958485,32660120:190911 -k1,16324:29505257,32660120:190912 -k1,16324:31339156,32660120:190911 -k1,16324:31966991,32660120:0 -) -(1,16325:7246811,33501608:24720180,513147,126483 -k1,16324:8629533,33501608:179481 -k1,16324:10349766,33501608:179482 -k1,16324:12042473,33501608:179481 -k1,16324:13597555,33501608:179481 -k1,16324:14242997,33501608:179481 -k1,16324:15441564,33501608:179482 -k1,16324:18106826,33501608:179481 -k1,16324:18945599,33501608:179481 -k1,16324:20394512,33501608:179481 -k1,16324:22621994,33501608:179482 -k1,16324:23332972,33501608:179481 -k1,16324:25228841,33501608:179481 -k1,16324:26871086,33501608:179481 -k1,16324:27709860,33501608:179482 -k1,16324:30169994,33501608:179481 -k1,16324:31966991,33501608:0 -) -(1,16325:7246811,34343096:24720180,505283,134348 -g1,16324:8058802,34343096 -g1,16324:10240495,34343096 -g1,16324:13110316,34343096 -g1,16324:13925583,34343096 -g1,16324:16631564,34343096 -g1,16324:18210981,34343096 -g1,16324:19401770,34343096 -g1,16324:20935967,34343096 -k1,16325:31966991,34343096:8359777 -g1,16325:31966991,34343096 -) -] -) -] -r1,16352:32583029,35067268:26214,5765484,0 -) -] -) -) -g1,16325:32583029,34477444 -) -h1,16325:6630773,35093482:0,0,0 -(1,16328:6630773,36459258:25952256,513147,122846 -k1,16327:7671515,36459258:222853 -k1,16327:8762720,36459258:222853 -k1,16327:10078058,36459258:222853 -(1,16327:10078058,36459258:0,452978,122846 -r1,16352:13601730,36459258:3523672,575824,122846 -k1,16327:10078058,36459258:-3523672 -) -(1,16327:10078058,36459258:3523672,452978,122846 -k1,16327:10078058,36459258:3277 -h1,16327:13598453,36459258:0,411205,112570 -) -k1,16327:13824583,36459258:222853 -k1,16327:15932907,36459258:222853 -k1,16327:18751641,36459258:222853 -k1,16327:19625921,36459258:222852 -k1,16327:20941259,36459258:222853 -(1,16327:20941259,36459258:0,414482,115847 -r1,16352:24464931,36459258:3523672,530329,115847 -k1,16327:20941259,36459258:-3523672 -) -(1,16327:20941259,36459258:3523672,414482,115847 -k1,16327:20941259,36459258:3277 -h1,16327:24461654,36459258:0,411205,112570 -) -k1,16327:24861454,36459258:222853 -k1,16327:26037856,36459258:222853 -k1,16327:27353194,36459258:222853 -k1,16327:28595132,36459258:222853 -k1,16327:31010820,36459258:222853 -k1,16327:32583029,36459258:0 -) -(1,16328:6630773,37300746:25952256,513147,7863 -g1,16327:7777653,37300746 -g1,16327:9273840,37300746 -k1,16328:32583030,37300746:21189100 -g1,16328:32583030,37300746 -) -v1,16330:6630773,38491212:0,393216,0 -(1,16339:6630773,42118324:25952256,4020328,196608 -g1,16339:6630773,42118324 -g1,16339:6630773,42118324 -g1,16339:6434165,42118324 -(1,16339:6434165,42118324:0,4020328,196608 -r1,16352:32779637,42118324:26345472,4216936,196608 -k1,16339:6434165,42118324:-26345472 -) -(1,16339:6434165,42118324:26345472,4020328,196608 -[1,16339:6630773,42118324:25952256,3823720,0 -(1,16332:6630773,38705122:25952256,410518,107478 -(1,16331:6630773,38705122:0,0,0 -g1,16331:6630773,38705122 -g1,16331:6630773,38705122 -g1,16331:6303093,38705122 -(1,16331:6303093,38705122:0,0,0 -) -g1,16331:6630773,38705122 -) -k1,16332:6630773,38705122:0 -g1,16332:10424522,38705122 -g1,16332:11056814,38705122 -g1,16332:12637543,38705122 -g1,16332:14534418,38705122 -g1,16332:15166710,38705122 -g1,16332:18644314,38705122 -g1,16332:20225043,38705122 -g1,16332:20857335,38705122 -g1,16332:25915666,38705122 -h1,16332:26231812,38705122:0,0,0 -k1,16332:32583029,38705122:6351217 -g1,16332:32583029,38705122 -) -(1,16333:6630773,39371300:25952256,404226,107478 -h1,16333:6630773,39371300:0,0,0 -g1,16333:6946919,39371300 -g1,16333:7263065,39371300 -g1,16333:12005250,39371300 -g1,16333:12637542,39371300 -g1,16333:13585980,39371300 -g1,16333:15482854,39371300 -g1,16333:16115146,39371300 -g1,16333:18960458,39371300 -h1,16333:19276604,39371300:0,0,0 -k1,16333:32583029,39371300:13306425 -g1,16333:32583029,39371300 -) -(1,16334:6630773,40037478:25952256,404226,101187 -h1,16334:6630773,40037478:0,0,0 -g1,16334:6946919,40037478 -g1,16334:7263065,40037478 -g1,16334:12953687,40037478 -g1,16334:13585979,40037478 -g1,16334:15166708,40037478 -h1,16334:15482854,40037478:0,0,0 -k1,16334:32583030,40037478:17100176 -g1,16334:32583030,40037478 -) -(1,16335:6630773,40703656:25952256,410518,76021 -h1,16335:6630773,40703656:0,0,0 -g1,16335:6946919,40703656 -g1,16335:7263065,40703656 -g1,16335:13585979,40703656 -h1,16335:13902125,40703656:0,0,0 -k1,16335:32583029,40703656:18680904 -g1,16335:32583029,40703656 -) -(1,16336:6630773,41369834:25952256,404226,76021 -h1,16336:6630773,41369834:0,0,0 -g1,16336:6946919,41369834 -g1,16336:7263065,41369834 -g1,16336:14850562,41369834 -g1,16336:15482854,41369834 -g1,16336:17379729,41369834 -h1,16336:17695875,41369834:0,0,0 -k1,16336:32583029,41369834:14887154 -g1,16336:32583029,41369834 -) -(1,16337:6630773,42036012:25952256,410518,82312 -h1,16337:6630773,42036012:0,0,0 -g1,16337:6946919,42036012 -g1,16337:7263065,42036012 -g1,16337:9476086,42036012 -g1,16337:10108378,42036012 -g1,16337:12005253,42036012 -g1,16337:13585982,42036012 -g1,16337:14218274,42036012 -g1,16337:17063585,42036012 -h1,16337:19276605,42036012:0,0,0 -k1,16337:32583029,42036012:13306424 -g1,16337:32583029,42036012 -) -] -) -g1,16339:32583029,42118324 -g1,16339:6630773,42118324 -g1,16339:6630773,42118324 -g1,16339:32583029,42118324 -g1,16339:32583029,42118324 -) -h1,16339:6630773,42314932:0,0,0 -] -(1,16352:32583029,45706769:0,0,0 -g1,16352:32583029,45706769 -) -) -] -(1,16352:6630773,47279633:25952256,0,0 -h1,16352:6630773,47279633:25952256,0,0 -) -] -(1,16352:4262630,4025873:0,0,0 -[1,16352:-473656,4025873:0,0,0 -(1,16352:-473656,-710413:0,0,0 -(1,16352:-473656,-710413:0,0,0 -g1,16352:-473656,-710413 -) -g1,16352:-473656,-710413 -) -] -) -] -!19665 -}317 -Input:2652:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2653:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2654:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2655:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!380 -{318 -[1,16365:4262630,47279633:28320399,43253760,0 -(1,16365:4262630,4025873:0,0,0 -[1,16365:-473656,4025873:0,0,0 -(1,16365:-473656,-710413:0,0,0 -(1,16365:-473656,-644877:0,0,0 -k1,16365:-473656,-644877:-65536 -) -(1,16365:-473656,4736287:0,0,0 -k1,16365:-473656,4736287:5209943 -) -g1,16365:-473656,-710413 -) -] -) -[1,16365:6630773,47279633:25952256,43253760,0 -[1,16365:6630773,4812305:25952256,786432,0 -(1,16365:6630773,4812305:25952256,505283,11795 -(1,16365:6630773,4812305:25952256,505283,11795 -g1,16365:3078558,4812305 -[1,16365:3078558,4812305:0,0,0 -(1,16365:3078558,2439708:0,1703936,0 -k1,16365:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,16365:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,16365:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,16365:3078558,4812305:0,0,0 -(1,16365:3078558,2439708:0,1703936,0 -g1,16365:29030814,2439708 -g1,16365:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,16365:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,16365:37855564,2439708:1179648,16384,0 -) -) -k1,16365:3078556,2439708:-34777008 -) -] -[1,16365:3078558,4812305:0,0,0 -(1,16365:3078558,49800853:0,16384,2228224 -k1,16365:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,16365:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,16365:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,16365:3078558,4812305:0,0,0 -(1,16365:3078558,49800853:0,16384,2228224 -g1,16365:29030814,49800853 -g1,16365:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,16365:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,16365:37855564,49800853:1179648,16384,0 -) -) -k1,16365:3078556,49800853:-34777008 -) -] -g1,16365:6630773,4812305 -g1,16365:6630773,4812305 -g1,16365:9264009,4812305 -k1,16365:31387653,4812305:22123644 -) -) -] -[1,16365:6630773,45706769:25952256,40108032,0 -(1,16365:6630773,45706769:25952256,40108032,0 -(1,16365:6630773,45706769:0,0,0 -g1,16365:6630773,45706769 -) -[1,16365:6630773,45706769:25952256,40108032,0 -(1,16342:6630773,16109226:25952256,10510489,0 -k1,16342:12599879,16109226:5969106 -h1,16341:12599879,16109226:0,0,0 -(1,16341:12599879,16109226:14014044,10510489,0 -(1,16341:12599879,16109226:14014019,10510515,0 -(1,16341:12599879,16109226:14014019,10510515,0 -(1,16341:12599879,16109226:0,10510515,0 -(1,16341:12599879,16109226:0,14208860,0 -(1,16341:12599879,16109226:18945146,14208860,0 -) -k1,16341:12599879,16109226:-18945146 -) -) -g1,16341:26613898,16109226 -) -) -) -g1,16342:26613923,16109226 -k1,16342:32583029,16109226:5969106 -) -v1,16352:6630773,17475002:0,393216,0 -(1,16353:6630773,19753169:25952256,2671383,616038 -g1,16353:6630773,19753169 -(1,16353:6630773,19753169:25952256,2671383,616038 -(1,16353:6630773,20369207:25952256,3287421,0 -[1,16353:6630773,20369207:25952256,3287421,0 -(1,16353:6630773,20342993:25952256,3234993,0 -r1,16365:6656987,20342993:26214,3234993,0 -[1,16353:6656987,20342993:25899828,3234993,0 -(1,16353:6656987,19753169:25899828,2055345,0 -[1,16353:7246811,19753169:24720180,2055345,0 -(1,16353:7246811,18785198:24720180,1087374,126483 -k1,16352:8682701,18785198:226187 -k1,16352:10158660,18785198:226187 -k1,16352:11403931,18785198:226186 -k1,16352:13126305,18785198:226187 -k1,16352:14300143,18785198:226187 -k1,16352:15545415,18785198:226187 -k1,16352:16740879,18785198:226187 -k1,16352:18616607,18785198:226187 -k1,16352:20698117,18785198:226186 -k1,16352:21575732,18785198:226187 -k1,16352:23825671,18785198:226187 -k1,16352:24407718,18785198:226187 -k1,16352:25678549,18785198:226187 -k1,16352:27727947,18785198:226186 -k1,16352:29924802,18785198:226187 -k1,16352:31307699,18785198:226187 -k1,16352:31966991,18785198:0 -) -(1,16353:7246811,19626686:24720180,505283,126483 -g1,16352:8465125,19626686 -g1,16352:9836793,19626686 -g1,16352:11643620,19626686 -g1,16352:12374346,19626686 -g1,16352:14443973,19626686 -g1,16352:15294630,19626686 -k1,16353:31966991,19626686:14933035 -g1,16353:31966991,19626686 -) -] -) -] -r1,16365:32583029,20342993:26214,3234993,0 -) -] -) -) -g1,16353:32583029,19753169 -) -h1,16353:6630773,20369207:0,0,0 -(1,16355:6630773,23176775:25952256,32768,229376 -(1,16355:6630773,23176775:0,32768,229376 -(1,16355:6630773,23176775:5505024,32768,229376 -r1,16365:12135797,23176775:5505024,262144,229376 -) -k1,16355:6630773,23176775:-5505024 -) -(1,16355:6630773,23176775:25952256,32768,0 -r1,16365:32583029,23176775:25952256,32768,0 -) -) -(1,16355:6630773,24781103:25952256,606339,9436 -(1,16355:6630773,24781103:2464678,573309,0 -g1,16355:6630773,24781103 -g1,16355:9095451,24781103 -) -k1,16355:32583030,24781103:20355220 -g1,16355:32583030,24781103 -) -(1,16359:6630773,26015807:25952256,513147,134348 -k1,16358:7528562,26015807:269954 -k1,16358:10800718,26015807:269953 -k1,16358:13325766,26015807:269954 -k1,16358:14587280,26015807:269954 -k1,16358:15876318,26015807:269953 -k1,16358:19451253,26015807:269954 -k1,16358:20380499,26015807:269954 -k1,16358:22151226,26015807:269953 -k1,16358:24621879,26015807:269954 -k1,16358:26449624,26015807:269954 -k1,16358:29963609,26015807:269953 -k1,16358:31563944,26015807:269954 -k1,16358:32583029,26015807:0 -) -(1,16359:6630773,26857295:25952256,513147,126483 -k1,16358:9652739,26857295:259623 -k1,16358:12781529,26857295:259624 -k1,16358:13700444,26857295:259623 -k1,16358:14315928,26857295:259624 -k1,16358:15852848,26857295:259623 -k1,16358:17104031,26857295:259623 -k1,16358:20238719,26857295:259624 -k1,16358:22196380,26857295:259623 -k1,16358:25692826,26857295:259623 -k1,16358:28302571,26857295:259624 -k1,16358:29245079,26857295:259623 -k1,16358:31316118,26857295:259624 -k1,16358:32227169,26857295:259623 -k1,16358:32583029,26857295:0 -) -(1,16359:6630773,27698783:25952256,513147,126483 -k1,16358:8041435,27698783:253952 -k1,16358:10752332,27698783:253952 -k1,16358:11821552,27698783:253952 -k1,16358:13141774,27698783:253951 -k1,16358:14849315,27698783:253952 -k1,16358:16651883,27698783:253952 -k1,16358:20080399,27698783:253952 -k1,16358:21017236,27698783:253952 -k1,16358:23173698,27698783:253952 -k1,16358:24419210,27698783:253952 -k1,16358:26186387,27698783:253951 -k1,16358:27091767,27698783:253952 -k1,16358:28623016,27698783:253952 -k1,16358:29896053,27698783:253952 -k1,16359:32583029,27698783:0 -) -(1,16359:6630773,28540271:25952256,505283,134348 -k1,16358:8487146,28540271:258605 -k1,16358:9428636,28540271:258605 -k1,16358:13369054,28540271:258605 -k1,16358:14699828,28540271:258605 -k1,16358:17285616,28540271:258605 -k1,16358:18874601,28540271:258604 -k1,16358:22590230,28540271:258605 -k1,16358:24620273,28540271:258605 -k1,16358:26451087,28540271:258605 -k1,16358:28498170,28540271:258605 -k1,16358:32583029,28540271:0 -) -(1,16359:6630773,29381759:25952256,513147,134348 -k1,16358:10589366,29381759:168646 -k1,16358:11949457,29381759:168646 -k1,16358:13576278,29381759:168645 -k1,16358:15030085,29381759:168646 -k1,16358:16190291,29381759:168646 -k1,16358:19564303,29381759:168646 -k1,16358:20924394,29381759:168646 -k1,16358:21559001,29381759:168646 -k1,16358:24790799,29381759:168645 -k1,16358:25642330,29381759:168646 -k1,16358:27050917,29381759:168646 -k1,16358:29754496,29381759:168646 -k1,16358:32583029,29381759:0 -) -(1,16359:6630773,30223247:25952256,513147,126483 -k1,16358:9486905,30223247:188161 -k1,16358:11906567,30223247:188161 -k1,16358:15532746,30223247:188160 -k1,16358:17664705,30223247:188161 -k1,16358:21732598,30223247:188161 -k1,16358:24415059,30223247:188161 -k1,16358:27693242,30223247:188160 -k1,16358:28567565,30223247:188161 -k1,16358:31391584,30223247:188161 -k1,16358:32583029,30223247:0 -) -(1,16359:6630773,31064735:25952256,513147,134348 -k1,16358:11460940,31064735:257065 -k1,16358:14979076,31064735:257065 -k1,16358:18308469,31064735:257065 -k1,16358:21475987,31064735:257064 -k1,16358:23693889,31064735:257065 -k1,16358:27177947,31064735:257065 -k1,16358:29095694,31064735:257065 -k1,16358:31227089,31064735:257065 -k1,16359:32583029,31064735:0 -) -(1,16359:6630773,31906223:25952256,505283,126483 -k1,16358:9708835,31906223:183992 -k1,16358:11903472,31906223:183992 -k1,16358:15012991,31906223:183992 -k1,16358:17687352,31906223:183993 -k1,16358:19756815,31906223:183992 -k1,16358:21638845,31906223:183992 -k1,16358:23788262,31906223:183992 -k1,16358:24623682,31906223:183992 -k1,16358:25163534,31906223:183992 -k1,16358:26798494,31906223:183993 -k1,16358:29280834,31906223:183992 -k1,16358:30596633,31906223:183992 -k1,16358:32583029,31906223:0 -) -(1,16359:6630773,32747711:25952256,505283,134348 -k1,16358:9216227,32747711:251062 -k1,16358:11873117,32747711:251063 -k1,16358:12740217,32747711:251062 -k1,16358:15047800,32747711:251063 -k1,16358:15926697,32747711:251062 -k1,16358:18843765,32747711:251063 -k1,16358:19746255,32747711:251062 -k1,16358:22855343,32747711:251063 -k1,16358:25265816,32747711:251062 -k1,16358:27213606,32747711:251063 -k1,16358:29799060,32747711:251062 -k1,16358:32583029,32747711:0 -) -(1,16359:6630773,33589199:25952256,513147,134348 -k1,16358:9622492,33589199:187433 -k1,16358:12215751,33589199:187433 -k1,16358:14114328,33589199:187432 -k1,16358:15406043,33589199:187433 -k1,16358:17855779,33589199:187433 -k1,16358:19062297,33589199:187433 -k1,16358:20736742,33589199:187433 -k1,16358:23258567,33589199:187433 -k1,16358:25851826,33589199:187432 -k1,16358:26800787,33589199:187433 -k1,16358:29175812,33589199:187433 -k1,16358:32583029,33589199:0 -) -(1,16359:6630773,34430687:25952256,505283,126483 -k1,16358:9072364,34430687:186497 -k1,16358:9910288,34430687:186496 -k1,16358:10452645,34430687:186497 -k1,16358:12090108,34430687:186496 -k1,16358:14059840,34430687:186497 -k1,16358:15759562,34430687:186496 -k1,16358:16562097,34430687:186497 -k1,16358:17951835,34430687:186497 -k1,16358:19549977,34430687:186496 -k1,16358:23143691,34430687:186497 -k1,16358:25585281,34430687:186496 -k1,16358:28058985,34430687:186497 -k1,16358:29237041,34430687:186496 -k1,16358:31773659,34430687:186497 -k1,16358:32583029,34430687:0 -) -(1,16359:6630773,35272175:25952256,513147,126483 -k1,16358:7875907,35272175:226049 -k1,16358:9071232,35272175:226048 -k1,16358:9767174,35272175:226049 -k1,16358:10524720,35272175:226049 -k1,16358:12036584,35272175:226048 -k1,16358:14892593,35272175:226049 -k1,16358:15770070,35272175:226049 -k1,16358:17925499,35272175:226049 -k1,16358:19434742,35272175:226048 -k1,16358:21647187,35272175:226049 -k1,16358:25910254,35272175:226049 -k1,16358:27420808,35272175:226048 -k1,16358:29657502,35272175:226049 -k1,16358:32583029,35272175:0 -) -(1,16359:6630773,36113663:25952256,513147,134348 -g1,16358:9320370,36113663 -g1,16358:11721609,36113663 -g1,16358:12572266,36113663 -(1,16358:12572266,36113663:0,452978,122846 -r1,16365:16799362,36113663:4227096,575824,122846 -k1,16358:12572266,36113663:-4227096 -) -(1,16358:12572266,36113663:4227096,452978,122846 -k1,16358:12572266,36113663:3277 -h1,16358:16796085,36113663:0,411205,112570 -) -g1,16358:16998591,36113663 -g1,16358:18765441,36113663 -k1,16359:32583029,36113663:10815385 -g1,16359:32583029,36113663 -) -(1,16360:6630773,38204923:25952256,555811,139132 -(1,16360:6630773,38204923:2899444,525533,0 -g1,16360:6630773,38204923 -g1,16360:9530217,38204923 -) -g1,16360:13204624,38204923 -k1,16360:32583029,38204923:16741367 -g1,16360:32583029,38204923 -) -(1,16363:6630773,39439627:25952256,513147,134348 -k1,16362:8064221,39439627:236761 -k1,16362:10287379,39439627:236762 -k1,16362:12037366,39439627:236761 -k1,16362:13035656,39439627:236762 -k1,16362:15537997,39439627:236761 -k1,16362:16306256,39439627:236762 -(1,16362:16306256,39439627:0,452978,122846 -r1,16365:20533352,39439627:4227096,575824,122846 -k1,16362:16306256,39439627:-4227096 -) -(1,16362:16306256,39439627:4227096,452978,122846 -k1,16362:16306256,39439627:3277 -h1,16362:20530075,39439627:0,411205,112570 -) -k1,16362:20770113,39439627:236761 -k1,16362:22400826,39439627:236762 -k1,16362:24903167,39439627:236761 -k1,16362:28716229,39439627:236762 -k1,16362:29580825,39439627:236761 -k1,16362:32583029,39439627:0 -) -(1,16363:6630773,40281115:25952256,513147,126483 -k1,16362:10310911,40281115:242119 -k1,16362:12869728,40281115:242119 -k1,16362:14103407,40281115:242119 -k1,16362:16727104,40281115:242119 -k1,16362:17655384,40281115:242118 -k1,16362:21604219,40281115:242119 -k1,16362:25045806,40281115:242119 -k1,16362:26681876,40281115:242119 -k1,16362:30708699,40281115:242119 -k1,16362:32583029,40281115:0 -) -(1,16363:6630773,41122603:25952256,513147,134348 -k1,16362:10534292,41122603:292485 -k1,16362:12508431,41122603:292485 -k1,16362:15684501,41122603:292486 -k1,16362:17669126,41122603:292485 -k1,16362:19995849,41122603:292485 -k1,16362:23757810,41122603:292485 -k1,16362:25246982,41122603:292485 -(1,16362:25246982,41122603:0,452978,115847 -r1,16365:28418942,41122603:3171960,568825,115847 -k1,16362:25246982,41122603:-3171960 -) -(1,16362:25246982,41122603:3171960,452978,115847 -k1,16362:25246982,41122603:3277 -h1,16362:28415665,41122603:0,411205,112570 -) -k1,16362:28711428,41122603:292486 -k1,16362:29951564,41122603:292485 -k1,16362:31470228,41122603:292485 -k1,16363:32583029,41122603:0 -) -(1,16363:6630773,41964091:25952256,513147,134348 -k1,16362:8839437,41964091:239307 -k1,16362:12339815,41964091:239307 -k1,16362:13110619,41964091:239307 -k1,16362:15044688,41964091:239308 -k1,16362:15900033,41964091:239307 -k1,16362:18331519,41964091:239307 -k1,16362:19762271,41964091:239307 -k1,16362:22111182,41964091:239307 -k1,16362:23116605,41964091:239307 -k1,16362:24582092,41964091:239308 -k1,16362:27690565,41964091:239307 -k1,16362:28545910,41964091:239307 -k1,16362:29804302,41964091:239307 -k1,16362:32583029,41964091:0 -) -(1,16363:6630773,42805579:25952256,513147,134348 -k1,16362:8891250,42805579:274081 -k1,16362:11124857,42805579:274081 -k1,16362:12085100,42805579:274081 -k1,16362:13378266,42805579:274081 -k1,16362:14921124,42805579:274081 -k1,16362:15854497,42805579:274081 -k1,16362:17825305,42805579:274081 -k1,16362:20968551,42805579:274080 -k1,16362:21774129,42805579:274081 -k1,16362:22809738,42805579:274081 -k1,16362:25349399,42805579:274081 -k1,16362:28005058,42805579:274081 -k1,16362:30638435,42805579:274081 -k1,16362:31563944,42805579:274081 -k1,16362:32583029,42805579:0 -) -(1,16363:6630773,43647067:25952256,513147,126483 -k1,16362:8249383,43647067:184682 -k1,16362:9876512,43647067:184682 -k1,16362:12665595,43647067:184682 -k1,16362:16304681,43647067:184683 -(1,16362:16304681,43647067:0,459977,115847 -r1,16365:20180065,43647067:3875384,575824,115847 -k1,16362:16304681,43647067:-3875384 -) -(1,16362:16304681,43647067:3875384,459977,115847 -k1,16362:16304681,43647067:3277 -h1,16362:20176788,43647067:0,411205,112570 -) -k1,16362:20538417,43647067:184682 -k1,16362:22735054,43647067:184682 -k1,16362:23938821,43647067:184682 -k1,16362:25454539,43647067:184682 -k1,16362:27647244,43647067:184682 -k1,16362:28483355,43647067:184683 -k1,16362:29415803,43647067:184682 -k1,16362:30708699,43647067:184682 -k1,16362:32583029,43647067:0 -) -(1,16363:6630773,44488555:25952256,513147,126483 -g1,16362:9855799,44488555 -g1,16362:12065673,44488555 -g1,16362:15190429,44488555 -k1,16363:32583029,44488555:14902232 -g1,16363:32583029,44488555 -) -] -(1,16365:32583029,45706769:0,0,0 -g1,16365:32583029,45706769 -) -) -] -(1,16365:6630773,47279633:25952256,0,0 -h1,16365:6630773,47279633:25952256,0,0 -) -] -(1,16365:4262630,4025873:0,0,0 -[1,16365:-473656,4025873:0,0,0 -(1,16365:-473656,-710413:0,0,0 -(1,16365:-473656,-710413:0,0,0 -g1,16365:-473656,-710413 -) -g1,16365:-473656,-710413 -) -] -) -] -!16229 -}318 -Input:2656:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2657:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2658:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2659:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2660:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2661:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2662:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2663:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2664:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2665:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2666:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2667:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2668:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2669:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2670:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2671:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1484 -{319 -[1,16393:4262630,47279633:28320399,43253760,0 -(1,16393:4262630,4025873:0,0,0 -[1,16393:-473656,4025873:0,0,0 -(1,16393:-473656,-710413:0,0,0 -(1,16393:-473656,-644877:0,0,0 -k1,16393:-473656,-644877:-65536 -) -(1,16393:-473656,4736287:0,0,0 -k1,16393:-473656,4736287:5209943 -) -g1,16393:-473656,-710413 -) -] -) -[1,16393:6630773,47279633:25952256,43253760,0 -[1,16393:6630773,4812305:25952256,786432,0 -(1,16393:6630773,4812305:25952256,513147,134348 -(1,16393:6630773,4812305:25952256,513147,134348 -g1,16393:3078558,4812305 -[1,16393:3078558,4812305:0,0,0 -(1,16393:3078558,2439708:0,1703936,0 -k1,16393:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,16393:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,16393:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,16393:3078558,4812305:0,0,0 -(1,16393:3078558,2439708:0,1703936,0 -g1,16393:29030814,2439708 -g1,16393:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,16393:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,16393:37855564,2439708:1179648,16384,0 -) -) -k1,16393:3078556,2439708:-34777008 -) -] -[1,16393:3078558,4812305:0,0,0 -(1,16393:3078558,49800853:0,16384,2228224 -k1,16393:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,16393:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,16393:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,16393:3078558,4812305:0,0,0 -(1,16393:3078558,49800853:0,16384,2228224 -g1,16393:29030814,49800853 -g1,16393:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,16393:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,16393:37855564,49800853:1179648,16384,0 -) -) -k1,16393:3078556,49800853:-34777008 -) -] -g1,16393:6630773,4812305 -k1,16393:25712890,4812305:17886740 -g1,16393:29057847,4812305 -g1,16393:29873114,4812305 -) -) -] -[1,16393:6630773,45706769:25952256,40108032,0 -(1,16393:6630773,45706769:25952256,40108032,0 -(1,16393:6630773,45706769:0,0,0 -g1,16393:6630773,45706769 -) -[1,16393:6630773,45706769:25952256,40108032,0 -v1,16365:6630773,6254097:0,393216,0 -(1,16366:6630773,12737866:25952256,6876985,616038 -g1,16366:6630773,12737866 -(1,16366:6630773,12737866:25952256,6876985,616038 -(1,16366:6630773,13353904:25952256,7493023,0 -[1,16366:6630773,13353904:25952256,7493023,0 -(1,16366:6630773,13327690:25952256,7440595,0 -r1,16393:6656987,13327690:26214,7440595,0 -[1,16366:6656987,13327690:25899828,7440595,0 -(1,16366:6656987,12737866:25899828,6260947,0 -[1,16366:7246811,12737866:24720180,6260947,0 -(1,16366:7246811,7562455:24720180,1085536,298548 -(1,16365:7246811,7562455:0,1085536,298548 -r1,16393:8753226,7562455:1506415,1384084,298548 -k1,16365:7246811,7562455:-1506415 -) -(1,16365:7246811,7562455:1506415,1085536,298548 -) -k1,16365:8943520,7562455:190294 -k1,16365:11590759,7562455:190294 -k1,16365:13256269,7562455:190295 -k1,16365:14255933,7562455:190294 -k1,16365:16217010,7562455:190294 -k1,16365:17216674,7562455:190294 -k1,16365:19295061,7562455:190295 -k1,16365:22526226,7562455:190294 -k1,16365:23478048,7562455:190294 -k1,16365:27108327,7562455:190294 -k1,16365:27984784,7562455:190295 -k1,16365:30491776,7562455:190294 -k1,16365:31966991,7562455:0 -) -(1,16366:7246811,8403943:24720180,513147,134348 -k1,16365:8247028,8403943:190847 -k1,16365:10208658,8403943:190847 -k1,16365:11208874,8403943:190846 -k1,16365:14673244,8403943:190847 -k1,16365:16710241,8403943:190847 -k1,16365:17583973,8403943:190847 -k1,16365:20990016,8403943:190847 -k1,16365:21808698,8403943:190847 -k1,16365:23018629,8403943:190846 -k1,16365:24947491,8403943:190847 -(1,16365:24947491,8403943:0,452978,115847 -r1,16393:28471163,8403943:3523672,568825,115847 -k1,16365:24947491,8403943:-3523672 -) -(1,16365:24947491,8403943:3523672,452978,115847 -k1,16365:24947491,8403943:3277 -h1,16365:28467886,8403943:0,411205,112570 -) -k1,16365:28662010,8403943:190847 -k1,16365:31966991,8403943:0 -) -(1,16366:7246811,9245431:24720180,513147,134348 -k1,16365:9128175,9245431:140072 -k1,16365:11134712,9245431:140072 -k1,16365:11926213,9245431:140073 -k1,16365:13085370,9245431:140072 -k1,16365:14841560,9245431:140072 -k1,16365:15640924,9245431:140072 -k1,16365:16800081,9245431:140072 -k1,16365:20730101,9245431:140073 -k1,16365:21529465,9245431:140072 -k1,16365:22688622,9245431:140072 -k1,16365:25353141,9245431:140072 -k1,16365:26840633,9245431:140072 -k1,16365:28172151,9245431:140073 -k1,16365:30330077,9245431:140072 -k1,16365:30947906,9245431:140072 -k1,16365:31966991,9245431:0 -) -(1,16366:7246811,10086919:24720180,513147,134348 -k1,16365:9058576,10086919:204822 -k1,16365:9946283,10086919:204822 -k1,16365:10991932,10086919:204822 -k1,16365:14261217,10086919:204821 -k1,16365:15457599,10086919:204822 -k1,16365:18247816,10086919:204822 -k1,16365:19135523,10086919:204822 -k1,16365:20274888,10086919:204822 -k1,16365:21131138,10086919:204822 -k1,16365:21691820,10086919:204822 -k1,16365:24654397,10086919:204822 -k1,16365:25475256,10086919:204821 -k1,16365:26699163,10086919:204822 -k1,16365:28932980,10086919:204822 -k1,16365:30834529,10086919:204822 -k1,16365:31966991,10086919:0 -) -(1,16366:7246811,10928407:24720180,513147,134348 -k1,16365:8175658,10928407:181081 -k1,16365:11449383,10928407:181081 -k1,16365:15350287,10928407:181081 -k1,16365:16190661,10928407:181082 -k1,16365:17390827,10928407:181081 -k1,16365:19731975,10928407:181081 -k1,16365:20866605,10928407:181081 -k1,16365:23218238,10928407:181081 -k1,16365:25792038,10928407:181081 -k1,16365:26328980,10928407:181082 -k1,16365:28126179,10928407:181081 -k1,16365:30162584,10928407:181081 -k1,16365:31611131,10928407:181081 -k1,16365:31966991,10928407:0 -) -(1,16366:7246811,11769895:24720180,505283,134348 -k1,16365:12462548,11769895:169465 -k1,16365:13788723,11769895:169465 -k1,16365:14719716,11769895:169465 -k1,16365:17076774,11769895:169466 -k1,16365:17602099,11769895:169465 -k1,16365:19889032,11769895:169465 -k1,16365:20926849,11769895:169465 -k1,16365:22626580,11769895:169465 -k1,16365:23447473,11769895:169465 -k1,16365:25857615,11769895:169466 -k1,16365:27046165,11769895:169465 -k1,16365:30280094,11769895:169465 -k1,16365:31966991,11769895:0 -) -(1,16366:7246811,12611383:24720180,513147,126483 -g1,16365:8393691,12611383 -g1,16365:11428007,12611383 -g1,16365:12719721,12611383 -(1,16365:12719721,12611383:0,452978,115847 -r1,16393:14484834,12611383:1765113,568825,115847 -k1,16365:12719721,12611383:-1765113 -) -(1,16365:12719721,12611383:1765113,452978,115847 -k1,16365:12719721,12611383:3277 -h1,16365:14481557,12611383:0,411205,112570 -) -g1,16365:14684063,12611383 -g1,16365:17210475,12611383 -g1,16365:18076860,12611383 -(1,16365:18076860,12611383:0,452978,115847 -r1,16393:19841973,12611383:1765113,568825,115847 -k1,16365:18076860,12611383:-1765113 -) -(1,16365:18076860,12611383:1765113,452978,115847 -k1,16365:18076860,12611383:3277 -h1,16365:19838696,12611383:0,411205,112570 -) -g1,16365:20041202,12611383 -g1,16365:21188082,12611383 -g1,16365:21743171,12611383 -g1,16365:23500191,12611383 -g1,16365:25664845,12611383 -g1,16365:27258025,12611383 -(1,16365:27258025,12611383:0,452978,122846 -r1,16393:31485121,12611383:4227096,575824,122846 -k1,16365:27258025,12611383:-4227096 -) -(1,16365:27258025,12611383:4227096,452978,122846 -k1,16365:27258025,12611383:3277 -h1,16365:31481844,12611383:0,411205,112570 -) -k1,16366:31966991,12611383:308200 -g1,16366:31966991,12611383 -) -] -) -] -r1,16393:32583029,13327690:26214,7440595,0 -) -] -) -) -g1,16366:32583029,12737866 -) -h1,16366:6630773,13353904:0,0,0 -(1,16369:6630773,14560821:25952256,513147,134348 -h1,16368:6630773,14560821:983040,0,0 -k1,16368:9266770,14560821:162668 -k1,16368:10448523,14560821:162668 -k1,16368:12876771,14560821:162668 -(1,16368:12876771,14560821:0,452978,122846 -r1,16393:17103867,14560821:4227096,575824,122846 -k1,16368:12876771,14560821:-4227096 -) -(1,16368:12876771,14560821:4227096,452978,122846 -k1,16368:12876771,14560821:3277 -h1,16368:17100590,14560821:0,411205,112570 -) -k1,16368:17266534,14560821:162667 -k1,16368:18533484,14560821:162668 -k1,16368:19443918,14560821:162668 -k1,16368:21572011,14560821:162668 -k1,16368:22386107,14560821:162668 -k1,16368:22904635,14560821:162668 -k1,16368:24518270,14560821:162668 -k1,16368:25332365,14560821:162667 -k1,16368:27757336,14560821:162668 -k1,16368:28551771,14560821:162668 -k1,16368:29180400,14560821:162668 -k1,16368:32583029,14560821:0 -) -(1,16369:6630773,15402309:25952256,513147,126483 -k1,16368:9620979,15402309:227863 -k1,16368:10500271,15402309:227864 -k1,16368:11747219,15402309:227863 -k1,16368:14570964,15402309:227864 -k1,16368:15790387,15402309:227863 -k1,16368:18223538,15402309:227864 -k1,16368:20149439,15402309:227863 -k1,16368:22418749,15402309:227864 -k1,16368:23274447,15402309:227863 -k1,16368:24705552,15402309:227864 -k1,16368:27594832,15402309:227863 -k1,16368:28691048,15402309:227864 -k1,16368:31563944,15402309:227863 -k1,16368:32583029,15402309:0 -) -(1,16369:6630773,16243797:25952256,513147,134348 -k1,16368:9138508,16243797:242155 -k1,16368:10814592,16243797:242156 -k1,16368:12325524,16243797:242155 -k1,16368:13961631,16243797:242156 -k1,16368:14559646,16243797:242155 -k1,16368:16661058,16243797:242156 -k1,16368:18059923,16243797:242155 -k1,16368:19493523,16243797:242155 -k1,16368:20754764,16243797:242156 -k1,16368:23262499,16243797:242155 -k1,16368:26580915,16243797:242156 -k1,16368:28154106,16243797:242155 -k1,16368:29790213,16243797:242156 -k1,16368:31189078,16243797:242155 -k1,16368:32583029,16243797:0 -) -(1,16369:6630773,17085285:25952256,513147,7863 -k1,16369:32583029,17085285:24016322 -g1,16369:32583029,17085285 -) -v1,16371:6630773,18116891:0,393216,0 -(1,16378:6630773,20430522:25952256,2706847,196608 -g1,16378:6630773,20430522 -g1,16378:6630773,20430522 -g1,16378:6434165,20430522 -(1,16378:6434165,20430522:0,2706847,196608 -r1,16393:32779637,20430522:26345472,2903455,196608 -k1,16378:6434165,20430522:-26345472 -) -(1,16378:6434165,20430522:26345472,2706847,196608 -[1,16378:6630773,20430522:25952256,2510239,0 -(1,16373:6630773,18330801:25952256,410518,107478 -(1,16372:6630773,18330801:0,0,0 -g1,16372:6630773,18330801 -g1,16372:6630773,18330801 -g1,16372:6303093,18330801 -(1,16372:6303093,18330801:0,0,0 -) -g1,16372:6630773,18330801 -) -k1,16373:6630773,18330801:0 -g1,16373:12637541,18330801 -g1,16373:14850561,18330801 -g1,16373:16115144,18330801 -h1,16373:16431290,18330801:0,0,0 -k1,16373:32583029,18330801:16151739 -g1,16373:32583029,18330801 -) -(1,16374:6630773,18996979:25952256,404226,107478 -h1,16374:6630773,18996979:0,0,0 -g1,16374:6946919,18996979 -g1,16374:7263065,18996979 -g1,16374:11372959,18996979 -h1,16374:11689105,18996979:0,0,0 -k1,16374:32583029,18996979:20893924 -g1,16374:32583029,18996979 -) -(1,16375:6630773,19663157:25952256,404226,107478 -h1,16375:6630773,19663157:0,0,0 -g1,16375:6946919,19663157 -g1,16375:7263065,19663157 -g1,16375:13902125,19663157 -g1,16375:14534417,19663157 -k1,16375:14534417,19663157:0 -h1,16375:15482854,19663157:0,0,0 -k1,16375:32583030,19663157:17100176 -g1,16375:32583030,19663157 -) -(1,16376:6630773,20329335:25952256,410518,101187 -h1,16376:6630773,20329335:0,0,0 -g1,16376:6946919,20329335 -g1,16376:7263065,20329335 -g1,16376:7579211,20329335 -g1,16376:7895357,20329335 -g1,16376:8211503,20329335 -g1,16376:8527649,20329335 -g1,16376:8843795,20329335 -g1,16376:9159941,20329335 -g1,16376:9476087,20329335 -g1,16376:9792233,20329335 -g1,16376:10108379,20329335 -g1,16376:10424525,20329335 -g1,16376:10740671,20329335 -g1,16376:14534419,20329335 -g1,16376:15166711,20329335 -h1,16376:17695877,20329335:0,0,0 -k1,16376:32583029,20329335:14887152 -g1,16376:32583029,20329335 -) -] -) -g1,16378:32583029,20430522 -g1,16378:6630773,20430522 -g1,16378:6630773,20430522 -g1,16378:32583029,20430522 -g1,16378:32583029,20430522 -) -h1,16378:6630773,20627130:0,0,0 -(1,16381:6630773,31568584:25952256,10510489,0 -k1,16381:12599879,31568584:5969106 -h1,16380:12599879,31568584:0,0,0 -(1,16380:12599879,31568584:14014044,10510489,0 -(1,16380:12599879,31568584:14014019,10510515,0 -(1,16380:12599879,31568584:14014019,10510515,0 -(1,16380:12599879,31568584:0,10510515,0 -(1,16380:12599879,31568584:0,14208860,0 -(1,16380:12599879,31568584:18945146,14208860,0 -) -k1,16380:12599879,31568584:-18945146 -) -) -g1,16380:26613898,31568584 -) -) -) -g1,16381:26613923,31568584 -k1,16381:32583029,31568584:5969106 -) -v1,16388:6630773,32775500:0,393216,0 -(1,16389:6630773,36726007:25952256,4343723,616038 -g1,16389:6630773,36726007 -(1,16389:6630773,36726007:25952256,4343723,616038 -(1,16389:6630773,37342045:25952256,4959761,0 -[1,16389:6630773,37342045:25952256,4959761,0 -(1,16389:6630773,37315831:25952256,4907333,0 -r1,16393:6656987,37315831:26214,4907333,0 -[1,16389:6656987,37315831:25899828,4907333,0 -(1,16389:6656987,36726007:25899828,3727685,0 -[1,16389:7246811,36726007:24720180,3727685,0 -(1,16389:7246811,34085696:24720180,1087374,134348 -k1,16388:8826425,34085696:369911 -k1,16388:11558908,34085696:369910 -k1,16388:12947904,34085696:369911 -k1,16388:14814001,34085696:369910 -k1,16388:15799950,34085696:369911 -k1,16388:17188945,34085696:369910 -k1,16388:20313334,34085696:369911 -k1,16388:22653912,34085696:369910 -k1,16388:23675251,34085696:369911 -k1,16388:25311317,34085696:369910 -k1,16388:26837938,34085696:369911 -k1,16388:27820610,34085696:369910 -k1,16388:28546381,34085696:369911 -k1,16388:30515369,34085696:369910 -k1,16388:31966991,34085696:0 -) -(1,16389:7246811,34927184:24720180,513147,134348 -k1,16388:8415249,34927184:509146 -k1,16388:9943479,34927184:509145 -k1,16388:13890644,34927184:509146 -k1,16388:16716487,34927184:509145 -k1,16388:18793254,34927184:509146 -k1,16388:22304602,34927184:509145 -(1,16388:22304602,34927184:0,452978,115847 -r1,16393:25828274,34927184:3523672,568825,115847 -k1,16388:22304602,34927184:-3523672 -) -(1,16388:22304602,34927184:3523672,452978,115847 -k1,16388:22304602,34927184:3277 -h1,16388:25824997,34927184:0,411205,112570 -) -k1,16388:26511090,34927184:509146 -(1,16388:26511090,34927184:0,452978,115847 -r1,16393:31793321,34927184:5282231,568825,115847 -k1,16388:26511090,34927184:-5282231 -) -(1,16388:26511090,34927184:5282231,452978,115847 -k1,16388:26511090,34927184:3277 -h1,16388:31790044,34927184:0,411205,112570 -) -k1,16389:31966991,34927184:0 -) -(1,16389:7246811,35768672:24720180,505283,122846 -(1,16388:7246811,35768672:0,452978,115847 -r1,16393:12529042,35768672:5282231,568825,115847 -k1,16388:7246811,35768672:-5282231 -) -(1,16388:7246811,35768672:5282231,452978,115847 -k1,16388:7246811,35768672:3277 -h1,16388:12525765,35768672:0,411205,112570 -) -k1,16388:13524124,35768672:821412 -(1,16388:13524124,35768672:0,452978,115847 -r1,16393:19158067,35768672:5633943,568825,115847 -k1,16388:13524124,35768672:-5633943 -) -(1,16388:13524124,35768672:5633943,452978,115847 -k1,16388:13524124,35768672:3277 -h1,16388:19154790,35768672:0,411205,112570 -) -k1,16388:20153149,35768672:821412 -(1,16388:20153149,35768672:0,452978,122846 -r1,16393:24731957,35768672:4578808,575824,122846 -k1,16388:20153149,35768672:-4578808 -) -(1,16388:20153149,35768672:4578808,452978,122846 -k1,16388:20153149,35768672:3277 -h1,16388:24728680,35768672:0,411205,112570 -) -k1,16388:25727038,35768672:821411 -(1,16388:25727038,35768672:0,452978,115847 -r1,16393:29954134,35768672:4227096,568825,115847 -k1,16388:25727038,35768672:-4227096 -) -(1,16388:25727038,35768672:4227096,452978,115847 -k1,16388:25727038,35768672:3277 -h1,16388:29950857,35768672:0,411205,112570 -) -k1,16388:30775546,35768672:821412 -k1,16389:31966991,35768672:0 -) -(1,16389:7246811,36610160:24720180,452978,115847 -(1,16388:7246811,36610160:0,452978,115847 -r1,16393:11473907,36610160:4227096,568825,115847 -k1,16388:7246811,36610160:-4227096 -) -(1,16388:7246811,36610160:4227096,452978,115847 -k1,16388:7246811,36610160:3277 -h1,16388:11470630,36610160:0,411205,112570 -) -k1,16389:31966991,36610160:20319414 -g1,16389:31966991,36610160 -) -] -) -] -r1,16393:32583029,37315831:26214,4907333,0 -) -] -) -) -g1,16389:32583029,36726007 -) -h1,16389:6630773,37342045:0,0,0 -v1,16392:6630773,38548962:0,393216,0 -(1,16393:6630773,45116945:25952256,6961199,589824 -g1,16393:6630773,45116945 -(1,16393:6630773,45116945:25952256,6961199,589824 -(1,16393:6630773,45706769:25952256,7551023,0 -[1,16393:6630773,45706769:25952256,7551023,0 -(1,16393:6630773,45706769:25952256,7524809,0 -r1,16393:6656987,45706769:26214,7524809,0 -[1,16393:6656987,45706769:25899828,7524809,0 -(1,16393:6656987,45116945:25899828,6345161,0 -[1,16393:7246811,45116945:24720180,6345161,0 -(1,16393:7246811,39933669:24720180,1161885,196608 -(1,16392:7246811,39933669:0,1161885,196608 -r1,16393:8794447,39933669:1547636,1358493,196608 -k1,16392:7246811,39933669:-1547636 -) -(1,16392:7246811,39933669:1547636,1161885,196608 -) -k1,16392:9253961,39933669:459514 -k1,16392:13106273,39933669:459513 -k1,16392:16482794,39933669:459514 -k1,16392:18088532,39933669:459513 -(1,16392:18088532,39933669:0,452978,122846 -r1,16393:22315628,39933669:4227096,575824,122846 -k1,16392:18088532,39933669:-4227096 -) -(1,16392:18088532,39933669:4227096,452978,122846 -k1,16392:18088532,39933669:3277 -h1,16392:22312351,39933669:0,411205,112570 -) -k1,16392:22775142,39933669:459514 -k1,16392:24399885,39933669:459513 -k1,16392:25475437,39933669:459514 -k1,16392:28124509,39933669:459514 -k1,16392:29650293,39933669:459513 -k1,16392:31966991,39933669:0 -) -(1,16393:7246811,40775157:24720180,513147,134348 -k1,16392:8753025,40775157:434045 -k1,16392:11514253,40775157:434045 -k1,16392:12939858,40775157:434045 -k1,16392:17410921,40775157:434045 -k1,16392:18504258,40775157:434045 -k1,16392:20924699,40775157:434045 -k1,16392:23822242,40775157:434045 -k1,16392:25452974,40775157:434045 -k1,16392:28142113,40775157:434045 -k1,16392:29956346,40775157:434045 -k1,16392:31966991,40775157:0 -) -(1,16393:7246811,41616645:24720180,505283,134348 -k1,16392:9422213,41616645:477364 -k1,16392:11767353,41616645:477364 -k1,16392:14616465,41616645:477364 -k1,16392:15903199,41616645:477364 -k1,16392:17399649,41616645:477365 -k1,16392:21279642,41616645:477364 -k1,16392:23962293,41616645:477364 -k1,16392:25091085,41616645:477364 -k1,16392:27077088,41616645:477364 -k1,16392:31339156,41616645:477364 -k1,16392:31966991,41616645:0 -) -(1,16393:7246811,42458133:24720180,513147,122846 -k1,16392:9342801,42458133:394020 -k1,16392:11865431,42458133:394021 -(1,16392:11865431,42458133:0,452978,122846 -r1,16393:21016493,42458133:9151062,575824,122846 -k1,16392:11865431,42458133:-9151062 -) -(1,16392:11865431,42458133:9151062,452978,122846 -g1,16392:19254657,42458133 -g1,16392:19958081,42458133 -h1,16392:21013216,42458133:0,411205,112570 -) -k1,16392:21584183,42458133:394020 -k1,16392:24237884,42458133:394020 -k1,16392:24987764,42458133:394020 -k1,16392:28144128,42458133:394021 -k1,16392:30524544,42458133:394020 -k1,16393:31966991,42458133:0 -) -(1,16393:7246811,43299621:24720180,513147,122846 -(1,16392:7246811,43299621:0,452978,122846 -r1,16393:16397873,43299621:9151062,575824,122846 -k1,16392:7246811,43299621:-9151062 -) -(1,16392:7246811,43299621:9151062,452978,122846 -g1,16392:14636037,43299621 -g1,16392:15339461,43299621 -h1,16392:16394596,43299621:0,411205,112570 -) -k1,16392:16818365,43299621:246822 -k1,16392:17693023,43299621:246823 -k1,16392:19143086,43299621:246822 -k1,16392:20930659,43299621:246822 -k1,16392:21863644,43299621:246823 -k1,16392:23709544,43299621:246822 -k1,16392:24615658,43299621:246822 -k1,16392:27624824,43299621:246823 -k1,16392:29097825,43299621:246822 -k1,16392:31966991,43299621:0 -) -(1,16393:7246811,44141109:24720180,513147,134348 -k1,16392:8405313,44141109:166942 -k1,16392:10953833,44141109:166942 -k1,16392:13480071,44141109:166942 -k1,16392:14298441,44141109:166942 -k1,16392:15484468,44141109:166942 -k1,16392:17085338,44141109:166942 -k1,16392:18694727,44141109:166942 -k1,16392:19880755,44141109:166943 -k1,16392:21316474,44141109:166942 -k1,16392:22142708,44141109:166942 -k1,16392:23075766,44141109:166942 -k1,16392:24468887,44141109:166942 -k1,16392:27504995,44141109:166942 -k1,16392:30242914,44141109:166942 -k1,16392:31025894,44141109:166942 -k1,16393:31966991,44141109:0 -) -(1,16393:7246811,44982597:24720180,513147,134348 -k1,16392:10946365,44982597:182892 -k1,16392:12554666,44982597:182893 -k1,16392:14006335,44982597:182892 -k1,16392:16760204,44982597:182892 -k1,16392:17704624,44982597:182892 -k1,16392:20142611,44982597:182893 -k1,16392:21140771,44982597:182892 -k1,16392:22389934,44982597:182892 -k1,16392:24352129,44982597:182893 -k1,16392:25554106,44982597:182892 -k1,16392:27005775,44982597:182892 -k1,16392:27847959,44982597:182892 -k1,16392:29257031,44982597:182893 -k1,16392:30122808,44982597:182892 -k1,16392:31966991,44982597:0 -) -] -) -] -r1,16393:32583029,45706769:26214,7524809,0 -) -] -) -) -g1,16393:32583029,45116945 -) -] -(1,16393:32583029,45706769:0,0,0 -g1,16393:32583029,45706769 -) -) -] -(1,16393:6630773,47279633:25952256,0,0 -h1,16393:6630773,47279633:25952256,0,0 -) -] -(1,16393:4262630,4025873:0,0,0 -[1,16393:-473656,4025873:0,0,0 -(1,16393:-473656,-710413:0,0,0 -(1,16393:-473656,-710413:0,0,0 -g1,16393:-473656,-710413 -) -g1,16393:-473656,-710413 -) -] -) -] -!21700 -}319 -Input:2672:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2673:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2674:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2675:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2676:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!472 -{320 -[1,16455:4262630,47279633:28320399,43253760,0 -(1,16455:4262630,4025873:0,0,0 -[1,16455:-473656,4025873:0,0,0 -(1,16455:-473656,-710413:0,0,0 -(1,16455:-473656,-644877:0,0,0 -k1,16455:-473656,-644877:-65536 -) -(1,16455:-473656,4736287:0,0,0 -k1,16455:-473656,4736287:5209943 -) -g1,16455:-473656,-710413 -) -] -) -[1,16455:6630773,47279633:25952256,43253760,0 -[1,16455:6630773,4812305:25952256,786432,0 -(1,16455:6630773,4812305:25952256,505283,11795 -(1,16455:6630773,4812305:25952256,505283,11795 -g1,16455:3078558,4812305 -[1,16455:3078558,4812305:0,0,0 -(1,16455:3078558,2439708:0,1703936,0 -k1,16455:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,16455:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,16455:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,16455:3078558,4812305:0,0,0 -(1,16455:3078558,2439708:0,1703936,0 -g1,16455:29030814,2439708 -g1,16455:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,16455:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,16455:37855564,2439708:1179648,16384,0 -) -) -k1,16455:3078556,2439708:-34777008 -) -] -[1,16455:3078558,4812305:0,0,0 -(1,16455:3078558,49800853:0,16384,2228224 -k1,16455:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,16455:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,16455:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,16455:3078558,4812305:0,0,0 -(1,16455:3078558,49800853:0,16384,2228224 -g1,16455:29030814,49800853 -g1,16455:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,16455:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,16455:37855564,49800853:1179648,16384,0 -) -) -k1,16455:3078556,49800853:-34777008 -) -] -g1,16455:6630773,4812305 -g1,16455:6630773,4812305 -g1,16455:9264009,4812305 -k1,16455:31387653,4812305:22123644 -) -) -] -[1,16455:6630773,45706769:25952256,40108032,0 -(1,16455:6630773,45706769:25952256,40108032,0 -(1,16455:6630773,45706769:0,0,0 -g1,16455:6630773,45706769 -) -[1,16455:6630773,45706769:25952256,40108032,0 -v1,16393:6630773,6254097:0,393216,0 -(1,16393:6630773,7805339:25952256,1944458,616038 -g1,16393:6630773,7805339 -(1,16393:6630773,7805339:25952256,1944458,616038 -(1,16393:6630773,8421377:25952256,2560496,0 -[1,16393:6630773,8421377:25952256,2560496,0 -(1,16393:6630773,8395163:25952256,2534282,0 -r1,16455:6656987,8395163:26214,2534282,0 -[1,16393:6656987,8395163:25899828,2534282,0 -(1,16393:6656987,7805339:25899828,1354634,0 -[1,16393:7246811,7805339:24720180,1354634,0 -(1,16393:7246811,6955988:24720180,505283,134348 -k1,16392:8098492,6955988:235643 -k1,16392:9611433,6955988:235644 -k1,16392:11735168,6955988:235643 -k1,16392:14320933,6955988:235644 -k1,16392:15950527,6955988:235643 -k1,16392:19867327,6955988:235643 -k1,16392:20789133,6955988:235644 -k1,16392:22533415,6955988:235643 -k1,16392:24037835,6955988:235643 -k1,16392:24804976,6955988:235644 -k1,16392:28301690,6955988:235643 -k1,16392:29298862,6955988:235644 -k1,16392:30553590,6955988:235643 -(1,16392:30553590,6955988:0,452978,115847 -r1,16455:31966991,6955988:1413401,568825,115847 -k1,16392:30553590,6955988:-1413401 -) -(1,16392:30553590,6955988:1413401,452978,115847 -k1,16392:30553590,6955988:3277 -h1,16392:31963714,6955988:0,411205,112570 -) -k1,16392:31966991,6955988:0 -) -(1,16393:7246811,7797476:24720180,505283,7863 -k1,16393:31966992,7797476:21793344 -g1,16393:31966992,7797476 -) -] -) -] -r1,16455:32583029,8395163:26214,2534282,0 -) -] -) -) -g1,16393:32583029,7805339 -) -h1,16393:6630773,8421377:0,0,0 -(1,16396:6630773,9642162:25952256,513147,134348 -h1,16395:6630773,9642162:983040,0,0 -k1,16395:8252885,9642162:151484 -k1,16395:11143167,9642162:151532 -k1,16395:13132329,9642162:151532 -k1,16395:13815358,9642162:151532 -k1,16395:14618317,9642162:151531 -k1,16395:16699229,9642162:151532 -k1,16395:17206621,9642162:151532 -k1,16395:18635450,9642162:151532 -k1,16395:21247203,9642162:151531 -k1,16395:24648010,9642162:151532 -k1,16395:25155402,9642162:151532 -k1,16395:27467000,9642162:151531 -k1,16395:28809977,9642162:151532 -k1,16395:30395437,9642162:151532 -k1,16395:32583029,9642162:0 -) -(1,16396:6630773,10483650:25952256,513147,134348 -k1,16395:7855922,10483650:206064 -k1,16395:10048382,10483650:206064 -k1,16395:11952484,10483650:206064 -k1,16395:14730835,10483650:206063 -k1,16395:15619784,10483650:206064 -k1,16395:17859430,10483650:206064 -k1,16395:18697261,10483650:206064 -k1,16395:20284169,10483650:206064 -k1,16395:21594515,10483650:206064 -k1,16395:23191253,10483650:206064 -k1,16395:25167443,10483650:206063 -k1,16395:26321158,10483650:206064 -k1,16395:29362309,10483650:206064 -k1,16395:31266411,10483650:206064 -k1,16396:32583029,10483650:0 -) -(1,16396:6630773,11325138:25952256,513147,134348 -g1,16395:8989413,11325138 -g1,16395:11950985,11325138 -g1,16395:14814253,11325138 -g1,16395:15672774,11325138 -g1,16395:16891088,11325138 -g1,16395:18743790,11325138 -g1,16395:20220316,11325138 -g1,16395:21367196,11325138 -g1,16395:21922285,11325138 -g1,16395:25720751,11325138 -g1,16395:27111425,11325138 -g1,16395:27666514,11325138 -k1,16396:32583029,11325138:3532395 -g1,16396:32583029,11325138 -) -v1,16398:6630773,12370613:0,393216,0 -(1,16404:6630773,14018066:25952256,2040669,196608 -g1,16404:6630773,14018066 -g1,16404:6630773,14018066 -g1,16404:6434165,14018066 -(1,16404:6434165,14018066:0,2040669,196608 -r1,16455:32779637,14018066:26345472,2237277,196608 -k1,16404:6434165,14018066:-26345472 -) -(1,16404:6434165,14018066:26345472,2040669,196608 -[1,16404:6630773,14018066:25952256,1844061,0 -(1,16400:6630773,12584523:25952256,410518,107478 -(1,16399:6630773,12584523:0,0,0 -g1,16399:6630773,12584523 -g1,16399:6630773,12584523 -g1,16399:6303093,12584523 -(1,16399:6303093,12584523:0,0,0 -) -g1,16399:6630773,12584523 -) -g1,16400:7263065,12584523 -g1,16400:8211503,12584523 -g1,16400:14218271,12584523 -g1,16400:16431291,12584523 -g1,16400:17695874,12584523 -h1,16400:18012020,12584523:0,0,0 -k1,16400:32583029,12584523:14571009 -g1,16400:32583029,12584523 -) -(1,16401:6630773,13250701:25952256,404226,107478 -h1,16401:6630773,13250701:0,0,0 -g1,16401:6946919,13250701 -g1,16401:7263065,13250701 -g1,16401:7579211,13250701 -g1,16401:7895357,13250701 -g1,16401:8211503,13250701 -g1,16401:8527649,13250701 -g1,16401:8843795,13250701 -k1,16401:8843795,13250701:0 -h1,16401:12637543,13250701:0,0,0 -k1,16401:32583029,13250701:19945486 -g1,16401:32583029,13250701 -) -(1,16402:6630773,13916879:25952256,404226,101187 -h1,16402:6630773,13916879:0,0,0 -g1,16402:9159938,13916879 -g1,16402:9792230,13916879 -k1,16402:9792230,13916879:0 -h1,16402:13269832,13916879:0,0,0 -k1,16402:32583028,13916879:19313196 -g1,16402:32583028,13916879 -) -] -) -g1,16404:32583029,14018066 -g1,16404:6630773,14018066 -g1,16404:6630773,14018066 -g1,16404:32583029,14018066 -g1,16404:32583029,14018066 -) -h1,16404:6630773,14214674:0,0,0 -(1,16408:6630773,15435459:25952256,513147,134348 -h1,16407:6630773,15435459:983040,0,0 -k1,16407:8275115,15435459:191409 -k1,16407:8998022,15435459:191410 -k1,16407:10475247,15435459:191409 -k1,16407:13296616,15435459:191409 -k1,16407:14139454,15435459:191410 -k1,16407:16571539,15435459:191409 -k1,16407:17782033,15435459:191409 -k1,16407:19959839,15435459:191410 -k1,16407:21664474,15435459:191409 -k1,16407:22617411,15435459:191409 -k1,16407:25074400,15435459:191409 -k1,16407:25881848,15435459:191410 -k1,16407:27092342,15435459:191409 -k1,16407:29627974,15435459:191409 -k1,16407:30234219,15435459:191402 -k1,16407:32583029,15435459:0 -) -(1,16408:6630773,16276947:25952256,505283,115847 -g1,16407:8223953,16276947 -(1,16407:8223953,16276947:0,452978,115847 -r1,16455:12099337,16276947:3875384,568825,115847 -k1,16407:8223953,16276947:-3875384 -) -(1,16407:8223953,16276947:3875384,452978,115847 -k1,16407:8223953,16276947:3277 -h1,16407:12096060,16276947:0,411205,112570 -) -k1,16408:32583029,16276947:20310022 -g1,16408:32583029,16276947 -) -v1,16410:6630773,17322422:0,393216,0 -(1,16414:6630773,17606061:25952256,676855,196608 -g1,16414:6630773,17606061 -g1,16414:6630773,17606061 -g1,16414:6434165,17606061 -(1,16414:6434165,17606061:0,676855,196608 -r1,16455:32779637,17606061:26345472,873463,196608 -k1,16414:6434165,17606061:-26345472 -) -(1,16414:6434165,17606061:26345472,676855,196608 -[1,16414:6630773,17606061:25952256,480247,0 -(1,16412:6630773,17530040:25952256,404226,76021 -(1,16411:6630773,17530040:0,0,0 -g1,16411:6630773,17530040 -g1,16411:6630773,17530040 -g1,16411:6303093,17530040 -(1,16411:6303093,17530040:0,0,0 -) -g1,16411:6630773,17530040 -) -g1,16412:9792230,17530040 -g1,16412:10740668,17530040 -k1,16412:10740668,17530040:0 -h1,16412:18012018,17530040:0,0,0 -k1,16412:32583029,17530040:14571011 -g1,16412:32583029,17530040 -) -] -) -g1,16414:32583029,17606061 -g1,16414:6630773,17606061 -g1,16414:6630773,17606061 -g1,16414:32583029,17606061 -g1,16414:32583029,17606061 -) -h1,16414:6630773,17802669:0,0,0 -(1,16418:6630773,19023454:25952256,513147,134348 -h1,16417:6630773,19023454:983040,0,0 -k1,16417:10016124,19023454:175398 -k1,16417:10842950,19023454:175398 -k1,16417:12720318,19023454:175398 -k1,16417:15921513,19023454:175398 -k1,16417:17610137,19023454:175398 -k1,16417:18436963,19023454:175398 -k1,16417:20853037,19023454:175398 -k1,16417:23441471,19023454:175398 -k1,16417:24232907,19023454:175398 -k1,16417:24996818,19023454:175398 -(1,16417:24996818,19023454:0,452978,115847 -r1,16455:28872202,19023454:3875384,568825,115847 -k1,16417:24996818,19023454:-3875384 -) -(1,16417:24996818,19023454:3875384,452978,115847 -k1,16417:24996818,19023454:3277 -h1,16417:28868925,19023454:0,411205,112570 -) -k1,16417:29047600,19023454:175398 -k1,16417:31563944,19023454:175398 -k1,16417:32583029,19023454:0 -) -(1,16418:6630773,19864942:25952256,505283,134348 -k1,16417:9593046,19864942:207795 -k1,16417:12156204,19864942:207794 -k1,16417:13124217,19864942:207795 -k1,16417:15365594,19864942:207795 -k1,16417:16776629,19864942:207794 -k1,16417:18664767,19864942:207795 -k1,16417:19523990,19864942:207795 -k1,16417:20087644,19864942:207794 -k1,16417:22980449,19864942:207795 -k1,16417:24586126,19864942:207794 -(1,16417:24586126,19864942:0,452978,115847 -r1,16455:27758086,19864942:3171960,568825,115847 -k1,16417:24586126,19864942:-3171960 -) -(1,16417:24586126,19864942:3171960,452978,115847 -k1,16417:24586126,19864942:3277 -h1,16417:27754809,19864942:0,411205,112570 -) -k1,16417:28139551,19864942:207795 -k1,16417:29215698,19864942:207795 -k1,16417:30415052,19864942:207794 -k1,16417:31931601,19864942:207795 -k1,16417:32583029,19864942:0 -) -(1,16418:6630773,20706430:25952256,513147,134348 -g1,16417:9083130,20706430 -g1,16417:10301444,20706430 -g1,16417:13255151,20706430 -g1,16417:15893630,20706430 -g1,16417:16775744,20706430 -g1,16417:18619927,20706430 -g1,16417:19838241,20706430 -k1,16418:32583029,20706430:10330442 -g1,16418:32583029,20706430 -) -v1,16420:6630773,21751905:0,393216,0 -(1,16425:6630773,22726888:25952256,1368199,196608 -g1,16425:6630773,22726888 -g1,16425:6630773,22726888 -g1,16425:6434165,22726888 -(1,16425:6434165,22726888:0,1368199,196608 -r1,16455:32779637,22726888:26345472,1564807,196608 -k1,16425:6434165,22726888:-26345472 -) -(1,16425:6434165,22726888:26345472,1368199,196608 -[1,16425:6630773,22726888:25952256,1171591,0 -(1,16422:6630773,21959523:25952256,404226,76021 -(1,16421:6630773,21959523:0,0,0 -g1,16421:6630773,21959523 -g1,16421:6630773,21959523 -g1,16421:6303093,21959523 -(1,16421:6303093,21959523:0,0,0 -) -g1,16421:6630773,21959523 -) -k1,16422:6630773,21959523:0 -h1,16422:12953686,21959523:0,0,0 -k1,16422:32583030,21959523:19629344 -g1,16422:32583030,21959523 -) -(1,16423:6630773,22625701:25952256,284164,101187 -h1,16423:6630773,22625701:0,0,0 -h1,16423:6946919,22625701:0,0,0 -k1,16423:32583029,22625701:25636110 -g1,16423:32583029,22625701 -) -] -) -g1,16425:32583029,22726888 -g1,16425:6630773,22726888 -g1,16425:6630773,22726888 -g1,16425:32583029,22726888 -g1,16425:32583029,22726888 -) -h1,16425:6630773,22923496:0,0,0 -v1,16429:6630773,24523578:0,393216,0 -(1,16430:6630773,31933049:25952256,7802687,616038 -g1,16430:6630773,31933049 -(1,16430:6630773,31933049:25952256,7802687,616038 -(1,16430:6630773,32549087:25952256,8418725,0 -[1,16430:6630773,32549087:25952256,8418725,0 -(1,16430:6630773,32522873:25952256,8366297,0 -r1,16455:6656987,32522873:26214,8366297,0 -[1,16430:6656987,32522873:25899828,8366297,0 -(1,16430:6656987,31933049:25899828,7186649,0 -[1,16430:7246811,31933049:24720180,7186649,0 -(1,16430:7246811,25908285:24720180,1161885,196608 -(1,16429:7246811,25908285:0,1161885,196608 -r1,16455:8794447,25908285:1547636,1358493,196608 -k1,16429:7246811,25908285:-1547636 -) -(1,16429:7246811,25908285:1547636,1161885,196608 -) -k1,16429:8949790,25908285:155343 -k1,16429:10301821,25908285:155344 -k1,16429:11549649,25908285:155343 -k1,16429:12364285,25908285:155344 -k1,16429:12875488,25908285:155343 -k1,16429:14401845,25908285:155344 -k1,16429:18347135,25908285:155343 -k1,16429:19188641,25908285:155344 -k1,16429:21609564,25908285:155343 -k1,16429:22712559,25908285:155344 -k1,16429:24475500,25908285:155343 -k1,16429:25162341,25908285:155344 -k1,16429:28042016,25908285:155343 -k1,16429:29578204,25908285:155344 -k1,16429:31966991,25908285:0 -) -(1,16430:7246811,26749773:24720180,513147,134348 -k1,16429:9558146,26749773:222703 -k1,16429:12424571,26749773:222703 -k1,16429:15812009,26749773:222704 -k1,16429:16650750,26749773:222703 -k1,16429:17892538,26749773:222703 -k1,16429:21658773,26749773:222703 -k1,16429:23816754,26749773:222703 -k1,16429:24690885,26749773:222703 -k1,16429:27734259,26749773:222704 -k1,16429:28312822,26749773:222703 -k1,16429:31134028,26749773:222703 -k1,16430:31966991,26749773:0 -) -(1,16430:7246811,27591261:24720180,513147,134348 -k1,16429:10243772,27591261:216924 -k1,16429:14085493,27591261:216925 -k1,16429:15321502,27591261:216924 -k1,16429:16764605,27591261:216924 -k1,16429:18172975,27591261:216925 -k1,16429:19997497,27591261:216924 -k1,16429:20830459,27591261:216924 -k1,16429:21403244,27591261:216925 -k1,16429:23291991,27591261:216924 -k1,16429:25204331,27591261:216924 -k1,16429:28270761,27591261:216925 -k1,16429:31118300,27591261:216924 -k1,16430:31966991,27591261:0 -) -(1,16430:7246811,28432749:24720180,513147,134348 -k1,16429:9141058,28432749:238152 -k1,16429:10062095,28432749:238152 -k1,16429:10913009,28432749:238152 -k1,16429:12646693,28432749:238152 -k1,16429:14841750,28432749:238152 -k1,16429:15435762,28432749:238152 -k1,16429:17324111,28432749:238152 -k1,16429:20913774,28432749:238152 -k1,16429:23540713,28432749:238152 -k1,16429:26041168,28432749:238152 -k1,16429:28443319,28432749:238152 -(1,16429:28443319,28432749:0,452978,115847 -r1,16455:31966991,28432749:3523672,568825,115847 -k1,16429:28443319,28432749:-3523672 -) -(1,16429:28443319,28432749:3523672,452978,115847 -k1,16429:28443319,28432749:3277 -h1,16429:31963714,28432749:0,411205,112570 -) -k1,16429:31966991,28432749:0 -) -(1,16430:7246811,29274237:24720180,513147,134348 -k1,16429:8093755,29274237:315447 -k1,16429:9428286,29274237:315446 -k1,16429:11345433,29274237:315447 -k1,16429:14350477,29274237:315446 -k1,16429:15325216,29274237:315447 -k1,16429:16659748,29274237:315447 -k1,16429:20326705,29274237:315446 -k1,16429:23061086,29274237:315447 -k1,16429:26671027,29274237:315446 -k1,16429:27672636,29274237:315447 -k1,16429:28446180,29274237:315447 -k1,16429:30688384,29274237:315446 -k1,16429:31966991,29274237:0 -) -(1,16430:7246811,30115725:24720180,513147,126483 -k1,16429:8950326,30115725:236819 -k1,16429:10134796,30115725:236819 -k1,16429:13564529,30115725:236819 -k1,16429:15408945,30115725:236818 -k1,16429:16331926,30115725:236819 -k1,16429:17516396,30115725:236819 -k1,16429:19360813,30115725:236819 -k1,16429:20991583,30115725:236819 -k1,16429:23117150,30115725:236819 -k1,16429:24040131,30115725:236819 -k1,16429:24735046,30115725:236818 -k1,16429:27639836,30115725:236819 -k1,16429:28232515,30115725:236819 -k1,16429:29802992,30115725:236819 -k1,16430:31966991,30115725:0 -) -(1,16430:7246811,30957213:24720180,513147,134348 -(1,16429:7246811,30957213:0,452978,115847 -r1,16455:12529042,30957213:5282231,568825,115847 -k1,16429:7246811,30957213:-5282231 -) -(1,16429:7246811,30957213:5282231,452978,115847 -k1,16429:7246811,30957213:3277 -h1,16429:12525765,30957213:0,411205,112570 -) -k1,16429:12764369,30957213:235327 -k1,16429:15277071,30957213:235326 -k1,16429:15868258,30957213:235327 -k1,16429:17263571,30957213:235326 -k1,16429:18690343,30957213:235327 -k1,16429:20210175,30957213:235326 -k1,16429:22372260,30957213:235327 -k1,16429:23886193,30957213:235326 -k1,16429:25069171,30957213:235327 -k1,16429:28497411,30957213:235326 -k1,16429:30340336,30957213:235327 -k1,16429:31261824,30957213:235326 -k1,16429:31966991,30957213:0 -) -(1,16430:7246811,31798701:24720180,513147,134348 -g1,16429:8518209,31798701 -g1,16429:10578005,31798701 -g1,16429:13348211,31798701 -g1,16429:14198868,31798701 -g1,16429:15417182,31798701 -g1,16429:17174857,31798701 -g1,16429:18749031,31798701 -g1,16429:20646298,31798701 -g1,16429:22358753,31798701 -g1,16429:23951933,31798701 -k1,16430:31966991,31798701:5952640 -g1,16430:31966991,31798701 -) -] -) -] -r1,16455:32583029,32522873:26214,8366297,0 -) -] -) -) -g1,16430:32583029,31933049 -) -h1,16430:6630773,32549087:0,0,0 -(1,16433:6630773,35019644:25952256,555811,139132 -(1,16433:6630773,35019644:2899444,534184,0 -g1,16433:6630773,35019644 -g1,16433:9530217,35019644 -) -g1,16433:13805131,35019644 -k1,16433:32583029,35019644:16140860 -g1,16433:32583029,35019644 -) -(1,16436:6630773,36254348:25952256,513147,126483 -k1,16435:7351188,36254348:242658 -k1,16435:8462198,36254348:242658 -k1,16435:10253472,36254348:242658 -k1,16435:11147558,36254348:242658 -k1,16435:14923917,36254348:242658 -k1,16435:17428878,36254348:242658 -k1,16435:18027396,36254348:242658 -k1,16435:20430120,36254348:242657 -k1,16435:22882652,36254348:242658 -k1,16435:24853494,36254348:242658 -k1,16435:25554249,36254348:242658 -k1,16435:26412945,36254348:242658 -k1,16435:29326850,36254348:242658 -k1,16435:31350777,36254348:242658 -k1,16435:32051532,36254348:242658 -k1,16435:32583029,36254348:0 -) -(1,16436:6630773,37095836:25952256,513147,126483 -k1,16435:8222592,37095836:256851 -k1,16435:9130871,37095836:256851 -k1,16435:11317101,37095836:256850 -k1,16435:11929812,37095836:256851 -k1,16435:13469858,37095836:256851 -k1,16435:17607096,37095836:256851 -k1,16435:18546831,37095836:256850 -k1,16435:19159542,37095836:256851 -k1,16435:22251480,37095836:256851 -k1,16435:25433858,37095836:256851 -k1,16435:27677104,37095836:256850 -k1,16435:28620117,37095836:256851 -k1,16435:31966991,37095836:256851 -k1,16435:32583029,37095836:0 -) -(1,16436:6630773,37937324:25952256,513147,134348 -k1,16435:7870845,37937324:220987 -k1,16435:9475953,37937324:220988 -k1,16435:12149297,37937324:220987 -k1,16435:12998120,37937324:220988 -k1,16435:14921077,37937324:220987 -k1,16435:16839446,37937324:220987 -k1,16435:17928786,37937324:220988 -k1,16435:19486707,37937324:220987 -k1,16435:21237961,37937324:220988 -k1,16435:22110376,37937324:220987 -k1,16435:24205037,37937324:220987 -k1,16435:26118165,37937324:220988 -k1,16435:28325548,37937324:220987 -k1,16435:31058531,37937324:220988 -k1,16435:32227169,37937324:220987 -k1,16435:32583029,37937324:0 -) -(1,16436:6630773,38778812:25952256,513147,134348 -k1,16435:8658151,38778812:154359 -k1,16435:10841505,38778812:154359 -k1,16435:11611902,38778812:154359 -k1,16435:13651732,38778812:154359 -k1,16435:15173172,38778812:154359 -k1,16435:16195883,38778812:154359 -k1,16435:17454524,38778812:154359 -k1,16435:19210584,38778812:154360 -k1,16435:22607664,38778812:154359 -k1,16435:23577291,38778812:154359 -k1,16435:24934891,38778812:154359 -k1,16435:26787288,38778812:154359 -k1,16435:29513935,38778812:154359 -k1,16435:30024154,38778812:154359 -k1,16435:31629480,38778812:154359 -k1,16435:32583029,38778812:0 -) -(1,16436:6630773,39620300:25952256,513147,134348 -k1,16435:9971381,39620300:207987 -k1,16435:11382610,39620300:207988 -k1,16435:14575107,39620300:207987 -k1,16435:15544622,39620300:207987 -k1,16435:18029985,39620300:207987 -k1,16435:19257058,39620300:207988 -k1,16435:22141535,39620300:207987 -k1,16435:23008814,39620300:207987 -k1,16435:26996918,39620300:207987 -$1,16435:26996918,39620300 -$1,16435:27499579,39620300 -k1,16435:29172952,39620300:207988 -k1,16435:30565175,39620300:207987 -k1,16435:32583029,39620300:0 -) -(1,16436:6630773,40461788:25952256,513147,134348 -k1,16435:7492118,40461788:233510 -k1,16435:10263182,40461788:233510 -k1,16435:11699932,40461788:233509 -k1,16435:14609932,40461788:233510 -k1,16435:15374939,40461788:233510 -k1,16435:17210149,40461788:233510 -k1,16435:20182408,40461788:233509 -k1,16435:22113956,40461788:233510 -k1,16435:24241456,40461788:233510 -k1,16435:26267376,40461788:233510 -k1,16435:27976100,40461788:233509 -k1,16435:29598318,40461788:233510 -k1,16435:31900144,40461788:233510 -k1,16435:32583029,40461788:0 -) -(1,16436:6630773,41303276:25952256,513147,134348 -k1,16435:7850773,41303276:200915 -k1,16435:9895870,41303276:200914 -k1,16435:11088345,41303276:200915 -k1,16435:13174074,41303276:200914 -k1,16435:16074417,41303276:200915 -k1,16435:17294416,41303276:200914 -k1,16435:18679567,41303276:200915 -k1,16435:20724665,41303276:200915 -k1,16435:21457076,41303276:200914 -k1,16435:22677076,41303276:200915 -k1,16435:24479690,41303276:200914 -k1,16435:26982229,41303276:200915 -k1,16435:29795408,41303276:200914 -k1,16435:31563944,41303276:200915 -k1,16435:32583029,41303276:0 -) -(1,16436:6630773,42144764:25952256,513147,134348 -g1,16435:9549091,42144764 -g1,16435:11836952,42144764 -g1,16435:13724388,42144764 -g1,16435:14582909,42144764 -k1,16436:32583029,42144764:16399731 -g1,16436:32583029,42144764 -) -v1,16438:6630773,43190239:0,393216,0 -(1,16445:6630773,45510161:25952256,2713138,196608 -g1,16445:6630773,45510161 -g1,16445:6630773,45510161 -g1,16445:6434165,45510161 -(1,16445:6434165,45510161:0,2713138,196608 -r1,16455:32779637,45510161:26345472,2909746,196608 -k1,16445:6434165,45510161:-26345472 -) -(1,16445:6434165,45510161:26345472,2713138,196608 -[1,16445:6630773,45510161:25952256,2516530,0 -(1,16440:6630773,43404149:25952256,410518,107478 -(1,16439:6630773,43404149:0,0,0 -g1,16439:6630773,43404149 -g1,16439:6630773,43404149 -g1,16439:6303093,43404149 -(1,16439:6303093,43404149:0,0,0 -) -g1,16439:6630773,43404149 -) -k1,16440:6630773,43404149:0 -g1,16440:12637541,43404149 -g1,16440:14534415,43404149 -g1,16440:15166707,43404149 -g1,16440:17063582,43404149 -g1,16440:18328165,43404149 -h1,16440:18644311,43404149:0,0,0 -k1,16440:32583029,43404149:13938718 -g1,16440:32583029,43404149 -) -(1,16441:6630773,44070327:25952256,404226,107478 -h1,16441:6630773,44070327:0,0,0 -g1,16441:6946919,44070327 -g1,16441:7263065,44070327 -g1,16441:11372959,44070327 -h1,16441:11689105,44070327:0,0,0 -k1,16441:32583029,44070327:20893924 -g1,16441:32583029,44070327 -) -(1,16442:6630773,44736505:25952256,404226,101187 -h1,16442:6630773,44736505:0,0,0 -g1,16442:6946919,44736505 -g1,16442:7263065,44736505 -g1,16442:15482853,44736505 -g1,16442:16115145,44736505 -g1,16442:23702642,44736505 -g1,16442:24334934,44736505 -g1,16442:25599517,44736505 -h1,16442:25915663,44736505:0,0,0 -k1,16442:32583029,44736505:6667366 -g1,16442:32583029,44736505 -) -(1,16443:6630773,45402683:25952256,404226,107478 -h1,16443:6630773,45402683:0,0,0 -g1,16443:6946919,45402683 -g1,16443:7263065,45402683 -g1,16443:12953687,45402683 -g1,16443:13585979,45402683 -g1,16443:19592747,45402683 -g1,16443:20225039,45402683 -g1,16443:21489622,45402683 -g1,16443:23386496,45402683 -g1,16443:24018788,45402683 -g1,16443:24967226,45402683 -g1,16443:26864100,45402683 -g1,16443:27496392,45402683 -h1,16443:29077120,45402683:0,0,0 -k1,16443:32583029,45402683:3505909 -g1,16443:32583029,45402683 -) -] -) -g1,16445:32583029,45510161 -g1,16445:6630773,45510161 -g1,16445:6630773,45510161 -g1,16445:32583029,45510161 -g1,16445:32583029,45510161 -) -h1,16445:6630773,45706769:0,0,0 -] -(1,16455:32583029,45706769:0,0,0 -g1,16455:32583029,45706769 -) -) -] -(1,16455:6630773,47279633:25952256,0,0 -h1,16455:6630773,47279633:25952256,0,0 -) -] -(1,16455:4262630,4025873:0,0,0 -[1,16455:-473656,4025873:0,0,0 -(1,16455:-473656,-710413:0,0,0 -(1,16455:-473656,-710413:0,0,0 -g1,16455:-473656,-710413 -) -g1,16455:-473656,-710413 -) -] -) -] -!24759 -}320 -Input:2677:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2678:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2679:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2680:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2681:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2682:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2683:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2684:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2685:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2686:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2687:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1024 -{321 -[1,16481:4262630,47279633:28320399,43253760,0 -(1,16481:4262630,4025873:0,0,0 -[1,16481:-473656,4025873:0,0,0 -(1,16481:-473656,-710413:0,0,0 -(1,16481:-473656,-644877:0,0,0 -k1,16481:-473656,-644877:-65536 -) -(1,16481:-473656,4736287:0,0,0 -k1,16481:-473656,4736287:5209943 -) -g1,16481:-473656,-710413 -) -] -) -[1,16481:6630773,47279633:25952256,43253760,0 -[1,16481:6630773,4812305:25952256,786432,0 -(1,16481:6630773,4812305:25952256,513147,134348 -(1,16481:6630773,4812305:25952256,513147,134348 -g1,16481:3078558,4812305 -[1,16481:3078558,4812305:0,0,0 -(1,16481:3078558,2439708:0,1703936,0 -k1,16481:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,16481:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,16481:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,16481:3078558,4812305:0,0,0 -(1,16481:3078558,2439708:0,1703936,0 -g1,16481:29030814,2439708 -g1,16481:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,16481:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,16481:37855564,2439708:1179648,16384,0 -) -) -k1,16481:3078556,2439708:-34777008 -) -] -[1,16481:3078558,4812305:0,0,0 -(1,16481:3078558,49800853:0,16384,2228224 -k1,16481:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,16481:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,16481:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,16481:3078558,4812305:0,0,0 -(1,16481:3078558,49800853:0,16384,2228224 -g1,16481:29030814,49800853 -g1,16481:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,16481:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,16481:37855564,49800853:1179648,16384,0 -) -) -k1,16481:3078556,49800853:-34777008 -) -] -g1,16481:6630773,4812305 -k1,16481:25712890,4812305:17886740 -g1,16481:29057847,4812305 -g1,16481:29873114,4812305 -) -) -] -[1,16481:6630773,45706769:25952256,40108032,0 -(1,16481:6630773,45706769:25952256,40108032,0 -(1,16481:6630773,45706769:0,0,0 -g1,16481:6630773,45706769 -) -[1,16481:6630773,45706769:25952256,40108032,0 -(1,16448:6630773,16109226:25952256,10510489,0 -k1,16448:12599879,16109226:5969106 -h1,16447:12599879,16109226:0,0,0 -(1,16447:12599879,16109226:14014044,10510489,0 -(1,16447:12599879,16109226:14014019,10510515,0 -(1,16447:12599879,16109226:14014019,10510515,0 -(1,16447:12599879,16109226:0,10510515,0 -(1,16447:12599879,16109226:0,14208860,0 -(1,16447:12599879,16109226:18945146,14208860,0 -) -k1,16447:12599879,16109226:-18945146 -) -) -g1,16447:26613898,16109226 -) -) -) -g1,16448:26613923,16109226 -k1,16448:32583029,16109226:5969106 -) -v1,16455:6630773,17378661:0,393216,0 -(1,16456:6630773,22989485:25952256,6004040,616038 -g1,16456:6630773,22989485 -(1,16456:6630773,22989485:25952256,6004040,616038 -(1,16456:6630773,23605523:25952256,6620078,0 -[1,16456:6630773,23605523:25952256,6620078,0 -(1,16456:6630773,23579309:25952256,6567650,0 -r1,16481:6656987,23579309:26214,6567650,0 -[1,16456:6656987,23579309:25899828,6567650,0 -(1,16456:6656987,22989485:25899828,5388002,0 -[1,16456:7246811,22989485:24720180,5388002,0 -(1,16456:7246811,18687019:24720180,1085536,298548 -(1,16455:7246811,18687019:0,1085536,298548 -r1,16481:8753226,18687019:1506415,1384084,298548 -k1,16455:7246811,18687019:-1506415 -) -(1,16455:7246811,18687019:1506415,1085536,298548 -) -k1,16455:8924295,18687019:171069 -k1,16455:10878598,18687019:171068 -k1,16455:12233903,18687019:171069 -k1,16455:14249155,18687019:171069 -k1,16455:15411783,18687019:171068 -k1,16455:18077152,18687019:171069 -k1,16455:19404931,18687019:171069 -k1,16455:21863207,18687019:171069 -k1,16455:23894842,18687019:171068 -k1,16455:24717339,18687019:171069 -k1,16455:25822951,18687019:171069 -k1,16455:27460715,18687019:171068 -k1,16455:28650869,18687019:171069 -k1,16455:31966991,18687019:0 -) -(1,16456:7246811,19528507:24720180,513147,134348 -k1,16455:8726871,19528507:288615 -k1,16455:11361019,19528507:288614 -k1,16455:15640777,19528507:288615 -(1,16455:15640777,19528507:0,452978,122846 -r1,16481:17405890,19528507:1765113,575824,122846 -k1,16455:15640777,19528507:-1765113 -) -(1,16455:15640777,19528507:1765113,452978,122846 -k1,16455:15640777,19528507:3277 -h1,16455:17402613,19528507:0,411205,112570 -) -k1,16455:17694504,19528507:288614 -k1,16455:19174564,19528507:288615 -(1,16455:19174564,19528507:0,452978,122846 -r1,16481:20939677,19528507:1765113,575824,122846 -k1,16455:19174564,19528507:-1765113 -) -(1,16455:19174564,19528507:1765113,452978,122846 -k1,16455:19174564,19528507:3277 -h1,16455:20936400,19528507:0,411205,112570 -) -k1,16455:21401961,19528507:288614 -k1,16455:22376738,19528507:288615 -k1,16455:23684437,19528507:288614 -k1,16455:26238632,19528507:288615 -k1,16455:28537891,19528507:288614 -k1,16455:30228976,19528507:288615 -k1,16455:31966991,19528507:0 -) -(1,16456:7246811,20369995:24720180,513147,134348 -k1,16455:10115674,20369995:183198 -k1,16455:11679716,20369995:183198 -k1,16455:12394412,20369995:183199 -k1,16455:13760535,20369995:183198 -k1,16455:14595161,20369995:183198 -k1,16455:15797444,20369995:183198 -k1,16455:17191748,20369995:183199 -k1,16455:18659452,20369995:183198 -k1,16455:22660122,20369995:183198 -k1,16455:25355315,20369995:183198 -k1,16455:26530074,20369995:183199 -k1,16455:30113280,20369995:183198 -k1,16455:30947906,20369995:183198 -k1,16455:31966991,20369995:0 -) -(1,16456:7246811,21211483:24720180,513147,134348 -k1,16455:8652105,21211483:179115 -k1,16455:10436852,21211483:179115 -k1,16455:12567629,21211483:179115 -k1,16455:14189191,21211483:179115 -k1,16455:15019734,21211483:179115 -k1,16455:16217934,21211483:179115 -k1,16455:17848015,21211483:179114 -k1,16455:19096678,21211483:179115 -k1,16455:21777302,21211483:179115 -k1,16455:25773889,21211483:179115 -k1,16455:26612296,21211483:179115 -$1,16455:26612296,21211483 -$1,16455:27114957,21211483 -k1,16455:28759457,21211483:179115 -k1,16455:30122808,21211483:179115 -k1,16455:31966991,21211483:0 -) -(1,16456:7246811,22052971:24720180,513147,134348 -k1,16455:9762847,22052971:195406 -k1,16455:10755172,22052971:195407 -k1,16455:13406212,22052971:195406 -k1,16455:15399926,22052971:195406 -k1,16455:17103972,22052971:195407 -k1,16455:20489671,22052971:195406 -k1,16455:22079028,22052971:195406 -k1,16455:24598997,22052971:195407 -k1,16455:25445831,22052971:195406 -k1,16455:26825473,22052971:195406 -k1,16455:29007932,22052971:195407 -k1,16455:30947906,22052971:195406 -k1,16455:31966991,22052971:0 -) -(1,16456:7246811,22894459:24720180,505283,95026 -g1,16455:11256959,22894459 -$1,16455:11256959,22894459 -$1,16455:11759620,22894459 -g1,16455:11958849,22894459 -k1,16456:31966992,22894459:18582080 -g1,16456:31966992,22894459 -) -] -) -] -r1,16481:32583029,23579309:26214,6567650,0 -) -] -) -) -g1,16456:32583029,22989485 -) -h1,16456:6630773,23605523:0,0,0 -v1,16459:6630773,24874958:0,393216,0 -(1,16460:6630773,27963156:25952256,3481414,616038 -g1,16460:6630773,27963156 -(1,16460:6630773,27963156:25952256,3481414,616038 -(1,16460:6630773,28579194:25952256,4097452,0 -[1,16460:6630773,28579194:25952256,4097452,0 -(1,16460:6630773,28552980:25952256,4045024,0 -r1,16481:6656987,28552980:26214,4045024,0 -[1,16460:6656987,28552980:25899828,4045024,0 -(1,16460:6656987,27963156:25899828,2865376,0 -[1,16460:7246811,27963156:24720180,2865376,0 -(1,16460:7246811,26185154:24720180,1087374,134348 -k1,16459:8654907,26185154:198393 -k1,16459:10150913,26185154:198393 -k1,16459:11743258,26185154:198394 -k1,16459:12960736,26185154:198393 -k1,16459:14655316,26185154:198393 -k1,16459:15469747,26185154:198393 -k1,16459:16687225,26185154:198393 -k1,16459:18033810,26185154:198394 -k1,16459:20202871,26185154:198393 -k1,16459:22430259,26185154:198393 -k1,16459:25881204,26185154:198393 -k1,16459:27098683,26185154:198394 -k1,16459:29307721,26185154:198393 -k1,16459:31019340,26185154:198393 -k1,16460:31966991,26185154:0 -) -(1,16460:7246811,27026642:24720180,513147,134348 -(1,16459:7246811,27026642:0,452978,122846 -r1,16481:9011924,27026642:1765113,575824,122846 -k1,16459:7246811,27026642:-1765113 -) -(1,16459:7246811,27026642:1765113,452978,122846 -k1,16459:7246811,27026642:3277 -h1,16459:9008647,27026642:0,411205,112570 -) -k1,16459:9338528,27026642:152934 -(1,16459:9338528,27026642:0,452978,122846 -r1,16481:11103641,27026642:1765113,575824,122846 -k1,16459:9338528,27026642:-1765113 -) -(1,16459:9338528,27026642:1765113,452978,122846 -k1,16459:9338528,27026642:3277 -h1,16459:11100364,27026642:0,411205,112570 -) -k1,16459:11256576,27026642:152935 -k1,16459:12600955,27026642:152934 -(1,16459:12600955,27026642:0,452978,122846 -r1,16481:14366068,27026642:1765113,575824,122846 -k1,16459:12600955,27026642:-1765113 -) -(1,16459:12600955,27026642:1765113,452978,122846 -k1,16459:12600955,27026642:3277 -h1,16459:14362791,27026642:0,411205,112570 -) -k1,16459:14692673,27026642:152935 -k1,16459:17212112,27026642:152934 -k1,16459:18356607,27026642:152935 -k1,16459:21707043,27026642:152934 -k1,16459:22476016,27026642:152935 -k1,16459:25258254,27026642:152934 -k1,16459:26602634,27026642:152935 -k1,16459:30573040,27026642:152934 -k1,16459:31966991,27026642:0 -) -(1,16460:7246811,27868130:24720180,505283,95026 -g1,16459:9456685,27868130 -g1,16459:12291117,27868130 -g1,16459:12888805,27868130 -g1,16459:14279479,27868130 -k1,16460:31966990,27868130:16908288 -g1,16460:31966990,27868130 -) -] -) -] -r1,16481:32583029,28552980:26214,4045024,0 -) -] -) -) -g1,16460:32583029,27963156 -) -h1,16460:6630773,28579194:0,0,0 -(1,16463:6630773,29848629:25952256,513147,134348 -h1,16462:6630773,29848629:983040,0,0 -k1,16462:8316209,29848629:214808 -k1,16462:9744104,29848629:214824 -k1,16462:12260552,29848629:214824 -k1,16462:15459886,29848629:214824 -k1,16462:16206206,29848629:214823 -k1,16462:17072458,29848629:214824 -k1,16462:18379767,29848629:214824 -k1,16462:18950451,29848629:214824 -k1,16462:21517362,29848629:214824 -k1,16462:23063222,29848629:214824 -k1,16462:24720492,29848629:214823 -k1,16462:27030502,29848629:214824 -(1,16462:27030502,29848629:0,452978,115847 -r1,16481:29499039,29848629:2468537,568825,115847 -k1,16462:27030502,29848629:-2468537 -) -(1,16462:27030502,29848629:2468537,452978,115847 -k1,16462:27030502,29848629:3277 -h1,16462:29495762,29848629:0,411205,112570 -) -k1,16462:29887533,29848629:214824 -k1,16463:32583029,29848629:0 -) -(1,16463:6630773,30690117:25952256,505283,126483 -(1,16462:6630773,30690117:0,452978,115847 -r1,16481:8395886,30690117:1765113,568825,115847 -k1,16462:6630773,30690117:-1765113 -) -(1,16462:6630773,30690117:1765113,452978,115847 -k1,16462:6630773,30690117:3277 -h1,16462:8392609,30690117:0,411205,112570 -) -k1,16462:8673007,30690117:277121 -k1,16462:10054410,30690117:277121 -k1,16462:11079297,30690117:277121 -k1,16462:12869644,30690117:277121 -k1,16462:13798193,30690117:277121 -k1,16462:15009857,30690117:277121 -k1,16462:16555755,30690117:277121 -k1,16462:19192173,30690117:277122 -k1,16462:20120722,30690117:277121 -k1,16462:21416928,30690117:277121 -k1,16462:23127977,30690117:277121 -k1,16462:24847545,30690117:277121 -k1,16462:25752501,30690117:277121 -k1,16462:27232863,30690117:277121 -k1,16462:30345071,30690117:277121 -k1,16462:31490544,30690117:277121 -k1,16463:32583029,30690117:0 -) -(1,16463:6630773,31531605:25952256,513147,134348 -(1,16462:6630773,31531605:0,452978,115847 -r1,16481:10506157,31531605:3875384,568825,115847 -k1,16462:6630773,31531605:-3875384 -) -(1,16462:6630773,31531605:3875384,452978,115847 -k1,16462:6630773,31531605:3277 -h1,16462:10502880,31531605:0,411205,112570 -) -g1,16462:10705386,31531605 -g1,16462:11629443,31531605 -g1,16462:12514834,31531605 -g1,16462:13365491,31531605 -g1,16462:15805396,31531605 -g1,16462:17023710,31531605 -g1,16462:18491716,31531605 -g1,16462:19350237,31531605 -g1,16462:20733702,31531605 -g1,16462:22777114,31531605 -g1,16462:24351944,31531605 -g1,16462:25498824,31531605 -g1,16462:26717138,31531605 -$1,16462:26717138,31531605 -$1,16462:27219799,31531605 -g1,16462:27419028,31531605 -k1,16463:32583029,31531605:3737938 -g1,16463:32583029,31531605 -) -v1,16465:6630773,32625731:0,393216,0 -(1,16469:6630773,32909370:25952256,676855,196608 -g1,16469:6630773,32909370 -g1,16469:6630773,32909370 -g1,16469:6434165,32909370 -(1,16469:6434165,32909370:0,676855,196608 -r1,16481:32779637,32909370:26345472,873463,196608 -k1,16469:6434165,32909370:-26345472 -) -(1,16469:6434165,32909370:26345472,676855,196608 -[1,16469:6630773,32909370:25952256,480247,0 -(1,16467:6630773,32833349:25952256,404226,76021 -(1,16466:6630773,32833349:0,0,0 -g1,16466:6630773,32833349 -g1,16466:6630773,32833349 -g1,16466:6303093,32833349 -(1,16466:6303093,32833349:0,0,0 -) -g1,16466:6630773,32833349 -) -g1,16467:6946919,32833349 -g1,16467:7263065,32833349 -g1,16467:12953687,32833349 -g1,16467:13585979,32833349 -g1,16467:19276602,32833349 -g1,16467:19908894,32833349 -k1,16467:19908894,32833349:0 -h1,16467:23070351,32833349:0,0,0 -k1,16467:32583029,32833349:9512678 -g1,16467:32583029,32833349 -) -] -) -g1,16469:32583029,32909370 -g1,16469:6630773,32909370 -g1,16469:6630773,32909370 -g1,16469:32583029,32909370 -g1,16469:32583029,32909370 -) -h1,16469:6630773,33105978:0,0,0 -(1,16473:6630773,34375413:25952256,513147,134348 -h1,16472:6630773,34375413:983040,0,0 -k1,16472:9999264,34375413:221452 -k1,16472:13633176,34375413:221452 -k1,16472:15839714,34375413:221452 -k1,16472:16417026,34375413:221452 -k1,16472:19817629,34375413:221452 -k1,16472:22710984,34375413:221452 -k1,16472:23677580,34375413:221452 -k1,16472:24550460,34375413:221452 -k1,16472:27034215,34375413:221452 -k1,16472:28274752,34375413:221452 -k1,16472:31923737,34375413:221452 -k1,16472:32583029,34375413:0 -) -(1,16473:6630773,35216901:25952256,513147,134348 -k1,16472:9056260,35216901:202506 -k1,16472:9918058,35216901:202506 -k1,16472:12322574,35216901:202506 -k1,16472:15567917,35216901:202506 -k1,16472:16456585,35216901:202506 -k1,16472:17937698,35216901:202506 -k1,16472:18826367,35216901:202507 -k1,16472:19688165,35216901:202506 -k1,16472:23083585,35216901:202506 -k1,16472:26328928,35216901:202506 -k1,16472:27159269,35216901:202506 -k1,16472:28380860,35216901:202506 -k1,16472:30554034,35216901:202506 -k1,16472:32583029,35216901:0 -) -(1,16473:6630773,36058389:25952256,513147,134348 -k1,16472:7981067,36058389:158849 -k1,16472:9008267,36058389:158848 -k1,16472:10680342,36058389:158849 -(1,16472:10680342,36058389:0,452978,115847 -r1,16481:13852302,36058389:3171960,568825,115847 -k1,16472:10680342,36058389:-3171960 -) -(1,16472:10680342,36058389:3171960,452978,115847 -k1,16472:10680342,36058389:3277 -h1,16472:13849025,36058389:0,411205,112570 -) -k1,16472:14011151,36058389:158849 -k1,16472:16497183,36058389:158849 -k1,16472:17323187,36058389:158848 -(1,16472:17323187,36058389:0,452978,115847 -r1,16481:21198571,36058389:3875384,568825,115847 -k1,16472:17323187,36058389:-3875384 -) -(1,16472:17323187,36058389:3875384,452978,115847 -k1,16472:17323187,36058389:3277 -h1,16472:21195294,36058389:0,411205,112570 -) -k1,16472:21531090,36058389:158849 -k1,16472:22709024,36058389:158849 -k1,16472:25108549,36058389:158849 -k1,16472:27223647,36058389:158848 -k1,16472:28857711,36058389:158849 -k1,16472:31563944,36058389:158849 -k1,16472:32583029,36058389:0 -) -(1,16473:6630773,36899877:25952256,505283,138281 -g1,16472:8014238,36899877 -g1,16472:10057650,36899877 -g1,16472:10872917,36899877 -g1,16472:12538842,36899877 -$1,16472:12538842,36899877 -$1,16472:13041503,36899877 -g1,16472:13240732,36899877 -g1,16472:14631406,36899877 -$1,16472:14631406,36899877 -$1,16472:15183219,36899877 -g1,16472:15382448,36899877 -k1,16473:32583029,36899877:15628372 -g1,16473:32583029,36899877 -) -v1,16475:6630773,38169312:0,393216,0 -(1,16476:6630773,43821296:25952256,6045200,616038 -g1,16476:6630773,43821296 -(1,16476:6630773,43821296:25952256,6045200,616038 -(1,16476:6630773,44437334:25952256,6661238,0 -[1,16476:6630773,44437334:25952256,6661238,0 -(1,16476:6630773,44411120:25952256,6608810,0 -r1,16481:6656987,44411120:26214,6608810,0 -[1,16476:6656987,44411120:25899828,6608810,0 -(1,16476:6656987,43821296:25899828,5429162,0 -[1,16476:7246811,43821296:24720180,5429162,0 -(1,16476:7246811,39479508:24720180,1087374,126483 -k1,16475:8698114,39479508:241600 -k1,16475:11145656,39479508:241600 -k1,16475:12406342,39479508:241601 -k1,16475:15309359,39479508:241600 -k1,16475:17579954,39479508:241600 -k1,16475:18546382,39479508:241600 -k1,16475:20072489,39479508:241601 -k1,16475:21333174,39479508:241600 -k1,16475:22759010,39479508:241600 -k1,16475:24844793,39479508:241600 -k1,16475:25895763,39479508:241600 -k1,16475:27156449,39479508:241601 -$1,16475:27156449,39479508 -$1,16475:27659110,39479508 -k1,16475:29366095,39479508:241600 -k1,16475:30599255,39479508:241600 -k1,16475:31966991,39479508:0 -) -(1,16476:7246811,40320996:24720180,513147,138281 -k1,16475:8665502,40320996:227246 -k1,16475:10636661,40320996:227246 -k1,16475:11673277,40320996:227246 -k1,16475:12919608,40320996:227246 -$1,16475:12919608,40320996 -$1,16475:13471421,40320996 -k1,16475:15164052,40320996:227246 -k1,16475:16621409,40320996:227246 -k1,16475:18040100,40320996:227246 -k1,16475:19286430,40320996:227245 -k1,16475:20844712,40320996:227246 -k1,16475:22340735,40320996:227246 -k1,16475:23099478,40320996:227246 -k1,16475:24345809,40320996:227246 -k1,16475:26226528,40320996:227246 -k1,16475:27401425,40320996:227246 -k1,16475:29095367,40320996:227246 -k1,16475:30894822,40320996:227246 -k1,16475:31966991,40320996:0 -) -(1,16476:7246811,41162484:24720180,513147,134348 -k1,16475:10118736,41162484:210508 -k1,16475:11896865,41162484:210508 -k1,16475:13126459,41162484:210509 -k1,16475:15776217,41162484:210508 -k1,16475:18458743,41162484:210508 -k1,16475:19688336,41162484:210508 -k1,16475:24724915,41162484:210508 -k1,16475:25883074,41162484:210508 -(1,16475:25883074,41162484:0,452978,115847 -r1,16481:28351611,41162484:2468537,568825,115847 -k1,16475:25883074,41162484:-2468537 -) -(1,16475:25883074,41162484:2468537,452978,115847 -k1,16475:25883074,41162484:3277 -h1,16475:28348334,41162484:0,411205,112570 -) -k1,16475:28562120,41162484:210509 -k1,16475:29424056,41162484:210508 -k1,16475:30900720,41162484:210508 -k1,16475:31966991,41162484:0 -) -(1,16476:7246811,42003972:24720180,513147,134348 -k1,16475:8442796,42003972:176900 -k1,16475:10688013,42003972:176901 -k1,16475:11524205,42003972:176900 -k1,16475:12720190,42003972:176900 -k1,16475:15766257,42003972:176901 -k1,16475:17227663,42003972:176900 -k1,16475:18934829,42003972:176900 -k1,16475:19763158,42003972:176901 -k1,16475:20687824,42003972:176900 -k1,16475:22559486,42003972:176901 -k1,16475:24019581,42003972:176900 -k1,16475:26380796,42003972:176900 -k1,16475:27599719,42003972:176901 -k1,16475:30942008,42003972:176900 -k1,16475:31966991,42003972:0 -) -(1,16476:7246811,42845460:24720180,513147,134348 -k1,16475:9977180,42845460:181674 -k1,16475:12499712,42845460:181586 -k1,16475:15492137,42845460:181586 -k1,16475:16597782,42845460:181587 -k1,16475:18313566,42845460:181586 -k1,16475:21140841,42845460:181586 -k1,16475:24453737,42845460:181586 -k1,16475:25826768,42845460:181586 -k1,16475:28161868,42845460:181587 -k1,16475:30144383,42845460:181586 -k1,16475:31517414,42845460:181586 -k1,16475:31966991,42845460:0 -) -(1,16476:7246811,43686948:24720180,505283,134348 -g1,16475:10256879,43686948 -g1,16475:13538921,43686948 -g1,16475:15960476,43686948 -k1,16476:31966991,43686948:14031915 -g1,16476:31966991,43686948 -) -] -) -] -r1,16481:32583029,44411120:26214,6608810,0 -) -] -) -) -g1,16476:32583029,43821296 -) -h1,16476:6630773,44437334:0,0,0 -(1,16479:6630773,45706769:25952256,513147,134348 -h1,16478:6630773,45706769:983040,0,0 -k1,16478:11359196,45706769:223478 -k1,16478:12241965,45706769:223477 -k1,16478:14167413,45706769:223478 -k1,16478:15617070,45706769:223478 -k1,16478:18709713,45706769:223477 -k1,16478:20037473,45706769:223478 -k1,16478:21008717,45706769:223478 -k1,16478:24005678,45706769:223477 -k1,16478:24845194,45706769:223478 -k1,16478:25424531,45706769:223477 -k1,16478:27850019,45706769:223478 -k1,16478:29485143,45706769:223478 -k1,16478:30394782,45706769:223477 -k1,16478:31896867,45706769:223478 -k1,16478:32583029,45706769:0 -) -] -(1,16481:32583029,45706769:0,0,0 -g1,16481:32583029,45706769 -) -) -] -(1,16481:6630773,47279633:25952256,0,0 -h1,16481:6630773,47279633:25952256,0,0 -) -] -(1,16481:4262630,4025873:0,0,0 -[1,16481:-473656,4025873:0,0,0 -(1,16481:-473656,-710413:0,0,0 -(1,16481:-473656,-710413:0,0,0 -g1,16481:-473656,-710413 -) -g1,16481:-473656,-710413 -) -] -) -] -!21018 -}321 -Input:2688:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!104 -{322 -[1,16523:4262630,47279633:28320399,43253760,0 -(1,16523:4262630,4025873:0,0,0 -[1,16523:-473656,4025873:0,0,0 -(1,16523:-473656,-710413:0,0,0 -(1,16523:-473656,-644877:0,0,0 -k1,16523:-473656,-644877:-65536 -) -(1,16523:-473656,4736287:0,0,0 -k1,16523:-473656,4736287:5209943 -) -g1,16523:-473656,-710413 -) -] -) -[1,16523:6630773,47279633:25952256,43253760,0 -[1,16523:6630773,4812305:25952256,786432,0 -(1,16523:6630773,4812305:25952256,505283,11795 -(1,16523:6630773,4812305:25952256,505283,11795 -g1,16523:3078558,4812305 -[1,16523:3078558,4812305:0,0,0 -(1,16523:3078558,2439708:0,1703936,0 -k1,16523:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,16523:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,16523:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,16523:3078558,4812305:0,0,0 -(1,16523:3078558,2439708:0,1703936,0 -g1,16523:29030814,2439708 -g1,16523:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,16523:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,16523:37855564,2439708:1179648,16384,0 -) -) -k1,16523:3078556,2439708:-34777008 -) -] -[1,16523:3078558,4812305:0,0,0 -(1,16523:3078558,49800853:0,16384,2228224 -k1,16523:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,16523:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,16523:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,16523:3078558,4812305:0,0,0 -(1,16523:3078558,49800853:0,16384,2228224 -g1,16523:29030814,49800853 -g1,16523:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,16523:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,16523:37855564,49800853:1179648,16384,0 -) -) -k1,16523:3078556,49800853:-34777008 -) -] -g1,16523:6630773,4812305 -g1,16523:6630773,4812305 -g1,16523:9264009,4812305 -k1,16523:31387653,4812305:22123644 -) -) -] -[1,16523:6630773,45706769:25952256,40108032,0 -(1,16523:6630773,45706769:25952256,40108032,0 -(1,16523:6630773,45706769:0,0,0 -g1,16523:6630773,45706769 -) -[1,16523:6630773,45706769:25952256,40108032,0 -(1,16479:6630773,6254097:25952256,513147,134348 -k1,16478:9800234,6254097:147596 -k1,16478:10607123,6254097:147597 -k1,16478:12326928,6254097:147596 -k1,16478:14487790,6254097:147596 -k1,16478:15294679,6254097:147597 -k1,16478:16626511,6254097:147596 -k1,16478:18934829,6254097:147596 -k1,16478:20366932,6254097:147597 -k1,16478:22187007,6254097:147596 -k1,16478:23446095,6254097:147597 -k1,16478:26528393,6254097:147596 -k1,16478:27292027,6254097:147596 -k1,16478:29041324,6254097:147597 -k1,16478:30886302,6254097:147596 -k1,16478:32583029,6254097:0 -) -(1,16479:6630773,7095585:25952256,513147,134348 -k1,16478:7801355,7095585:179022 -k1,16478:10369165,7095585:179023 -k1,16478:12636819,7095585:179022 -k1,16478:15685008,7095585:179023 -k1,16478:17148536,7095585:179022 -k1,16478:18319119,7095585:179023 -k1,16478:19833109,7095585:179022 -k1,16478:21429676,7095585:179023 -k1,16478:24889430,7095585:179022 -k1,16478:28693249,7095585:179023 -k1,16478:30137116,7095585:179022 -k1,16478:30975431,7095585:179023 -k1,16478:32583029,7095585:0 -) -(1,16479:6630773,7937073:25952256,505283,134348 -g1,16478:8021447,7937073 -g1,16478:9555644,7937073 -g1,16478:12334370,7937073 -g1,16478:13295127,7937073 -g1,16478:16066644,7937073 -g1,16478:16621733,7937073 -g1,16478:18104157,7937073 -g1,16478:20247184,7937073 -g1,16478:21730919,7937073 -g1,16478:23034430,7937073 -g1,16478:23981425,7937073 -g1,16478:25981583,7937073 -k1,16479:32583029,7937073:4278850 -g1,16479:32583029,7937073 -) -v1,16481:6630773,9302849:0,393216,0 -(1,16482:6630773,13270019:25952256,4360386,616038 -g1,16482:6630773,13270019 -(1,16482:6630773,13270019:25952256,4360386,616038 -(1,16482:6630773,13886057:25952256,4976424,0 -[1,16482:6630773,13886057:25952256,4976424,0 -(1,16482:6630773,13859843:25952256,4923996,0 -r1,16523:6656987,13859843:26214,4923996,0 -[1,16482:6656987,13859843:25899828,4923996,0 -(1,16482:6656987,13270019:25899828,3744348,0 -[1,16482:7246811,13270019:24720180,3744348,0 -(1,16482:7246811,10611207:24720180,1085536,298548 -(1,16481:7246811,10611207:0,1085536,298548 -r1,16523:8753226,10611207:1506415,1384084,298548 -k1,16481:7246811,10611207:-1506415 -) -(1,16481:7246811,10611207:1506415,1085536,298548 -) -k1,16481:9012635,10611207:259409 -k1,16481:9749800,10611207:259408 -k1,16481:11179682,10611207:259409 -k1,16481:12905786,10611207:259408 -k1,16481:14362538,10611207:259409 -k1,16481:14977807,10611207:259409 -k1,16481:18041501,10611207:259408 -k1,16481:20244708,10611207:259409 -k1,16481:21695561,10611207:259408 -k1,16481:23503586,10611207:259409 -k1,16481:24414423,10611207:259409 -k1,16481:26936134,10611207:259408 -k1,16481:28887683,10611207:259409 -k1,16481:29806383,10611207:259408 -k1,16481:30854190,10611207:259409 -k1,16482:31966991,10611207:0 -) -(1,16482:7246811,11452695:24720180,513147,134348 -k1,16481:9534611,11452695:144773 -k1,16481:10849857,11452695:144773 -k1,16481:13175012,11452695:144772 -k1,16481:14517128,11452695:144773 -k1,16481:15680986,11452695:144773 -k1,16481:17708608,11452695:144773 -k1,16481:19839777,11452695:144773 -k1,16481:22027307,11452695:144773 -k1,16481:25424631,11452695:144772 -k1,16481:26027501,11452695:144773 -k1,16481:27566225,11452695:144773 -(1,16481:27566225,11452695:0,452978,115847 -r1,16523:31793321,11452695:4227096,568825,115847 -k1,16481:27566225,11452695:-4227096 -) -(1,16481:27566225,11452695:4227096,452978,115847 -g1,16481:28272926,11452695 -h1,16481:31790044,11452695:0,411205,112570 -) -k1,16481:31966991,11452695:0 -) -(1,16482:7246811,12294183:24720180,513147,134348 -k1,16481:8790091,12294183:162436 -k1,16481:10289460,12294183:162435 -k1,16481:12096850,12294183:162436 -k1,16481:14752276,12294183:162436 -k1,16481:16405000,12294183:162435 -k1,16481:17724146,12294183:162436 -k1,16481:18987586,12294183:162435 -k1,16481:19505882,12294183:162436 -k1,16481:21252323,12294183:162436 -k1,16481:23184230,12294183:162435 -k1,16481:24005958,12294183:162436 -k1,16481:25187479,12294183:162436 -k1,16481:28252504,12294183:162435 -k1,16481:29074232,12294183:162436 -k1,16481:31966991,12294183:0 -) -(1,16482:7246811,13135671:24720180,513147,134348 -g1,16481:8518209,13135671 -g1,16481:9821720,13135671 -g1,16481:10768715,13135671 -g1,16481:11580706,13135671 -g1,16481:13086068,13135671 -k1,16482:31966991,13135671:14395639 -g1,16482:31966991,13135671 -) -] -) -] -r1,16523:32583029,13859843:26214,4923996,0 -) -] -) -) -g1,16482:32583029,13270019 -) -h1,16482:6630773,13886057:0,0,0 -(1,16485:6630773,15251833:25952256,513147,134348 -h1,16484:6630773,15251833:983040,0,0 -k1,16484:8228440,15251833:144734 -k1,16484:8904670,15251833:144733 -k1,16484:10335220,15251833:144734 -k1,16484:13109914,15251833:144734 -k1,16484:13906075,15251833:144733 -k1,16484:16313112,15251833:144734 -k1,16484:17476931,15251833:144734 -k1,16484:19887245,15251833:144734 -k1,16484:22018374,15251833:144733 -k1,16484:23676334,15251833:144734 -k1,16484:24768719,15251833:144734 -k1,16484:28010683,15251833:144733 -k1,16484:28921533,15251833:144734 -k1,16484:32583029,15251833:0 -) -(1,16485:6630773,16093321:25952256,505283,126483 -k1,16485:32583030,16093321:24170988 -g1,16485:32583030,16093321 -) -v1,16487:6630773,17283787:0,393216,0 -(1,16491:6630773,17592592:25952256,702021,196608 -g1,16491:6630773,17592592 -g1,16491:6630773,17592592 -g1,16491:6434165,17592592 -(1,16491:6434165,17592592:0,702021,196608 -r1,16523:32779637,17592592:26345472,898629,196608 -k1,16491:6434165,17592592:-26345472 -) -(1,16491:6434165,17592592:26345472,702021,196608 -[1,16491:6630773,17592592:25952256,505413,0 -(1,16489:6630773,17491405:25952256,404226,101187 -(1,16488:6630773,17491405:0,0,0 -g1,16488:6630773,17491405 -g1,16488:6630773,17491405 -g1,16488:6303093,17491405 -(1,16488:6303093,17491405:0,0,0 -) -g1,16488:6630773,17491405 -) -g1,16489:9792230,17491405 -g1,16489:10740668,17491405 -g1,16489:16431291,17491405 -g1,16489:17063583,17491405 -g1,16489:23070351,17491405 -g1,16489:23702643,17491405 -h1,16489:27180245,17491405:0,0,0 -k1,16489:32583029,17491405:5402784 -g1,16489:32583029,17491405 -) -] -) -g1,16491:32583029,17592592 -g1,16491:6630773,17592592 -g1,16491:6630773,17592592 -g1,16491:32583029,17592592 -g1,16491:32583029,17592592 -) -h1,16491:6630773,17789200:0,0,0 -(1,16497:6630773,20404748:25952256,564462,147783 -(1,16497:6630773,20404748:2899444,534184,12975 -g1,16497:6630773,20404748 -g1,16497:9530217,20404748 -) -g1,16497:12826154,20404748 -g1,16497:13451892,20404748 -g1,16497:15187810,20404748 -k1,16497:32583029,20404748:15135931 -g1,16497:32583029,20404748 -) -(1,16500:6630773,21639452:25952256,513147,134348 -k1,16499:9309502,21639452:184429 -k1,16499:10598213,21639452:184429 -k1,16499:11530409,21639452:184430 -k1,16499:14096416,21639452:184429 -k1,16499:15747541,21639452:184429 -k1,16499:17499591,21639452:184429 -k1,16499:20171112,21639452:184430 -k1,16499:21038426,21639452:184429 -k1,16499:21984383,21639452:184429 -k1,16499:25421364,21639452:184429 -k1,16499:28096817,21639452:184430 -k1,16499:30092661,21639452:184429 -k1,16499:32583029,21639452:0 -) -(1,16500:6630773,22480940:25952256,513147,134348 -k1,16499:8043125,22480940:220907 -k1,16499:10297613,22480940:220906 -k1,16499:11537605,22480940:220907 -k1,16499:14593599,22480940:220907 -k1,16499:17321912,22480940:220906 -k1,16499:18360708,22480940:220907 -k1,16499:21710959,22480940:220907 -k1,16499:23960861,22480940:220907 -k1,16499:24639864,22480940:220906 -k1,16499:25392268,22480940:220907 -k1,16499:26898991,22480940:220907 -k1,16499:29749857,22480940:220906 -k1,16499:30622192,22480940:220907 -k1,16499:32583029,22480940:0 -) -(1,16500:6630773,23322428:25952256,513147,126483 -g1,16499:7185862,23322428 -g1,16499:8841956,23322428 -g1,16499:13681134,23322428 -g1,16499:15866759,23322428 -g1,16499:19772704,23322428 -k1,16500:32583029,23322428:9941159 -g1,16500:32583029,23322428 -) -(1,16502:6630773,24163916:25952256,513147,126483 -h1,16501:6630773,24163916:983040,0,0 -k1,16501:9865018,24163916:152087 -k1,16501:10885457,24163916:152087 -k1,16501:12434116,24163916:152087 -k1,16501:13237631,24163916:152087 -k1,16501:15446238,24163916:152087 -k1,16501:17326509,24163916:152087 -k1,16501:18497681,24163916:152087 -k1,16501:19932964,24163916:152088 -k1,16501:22245118,24163916:152087 -k1,16501:24051989,24163916:152087 -k1,16501:24735573,24163916:152087 -k1,16501:27174867,24163916:152087 -k1,16501:28136324,24163916:152087 -k1,16501:29818677,24163916:152087 -k1,16501:30622192,24163916:152087 -k1,16501:32583029,24163916:0 -) -(1,16502:6630773,25005404:25952256,513147,126483 -k1,16501:7174107,25005404:187474 -k1,16501:8644776,25005404:187474 -k1,16501:11701415,25005404:187473 -k1,16501:12842438,25005404:187474 -k1,16501:14134194,25005404:187474 -k1,16501:16460108,25005404:187474 -k1,16501:18038256,25005404:187474 -k1,16501:19244814,25005404:187473 -k1,16501:22267375,25005404:187474 -k1,16501:24441245,25005404:187474 -k1,16501:25280147,25005404:187474 -k1,16501:25823481,25005404:187474 -k1,16501:28522295,25005404:187474 -k1,16501:29901213,25005404:187473 -k1,16501:31286030,25005404:187474 -k1,16501:31931601,25005404:187474 -k1,16501:32583029,25005404:0 -) -(1,16502:6630773,25846892:25952256,513147,134348 -k1,16501:9561392,25846892:168276 -k1,16501:11337267,25846892:168277 -k1,16501:12191705,25846892:168276 -k1,16501:14831999,25846892:168276 -k1,16501:15818165,25846892:168277 -k1,16501:16854793,25846892:168276 -k1,16501:18155531,25846892:168276 -k1,16501:19071573,25846892:168276 -k1,16501:21427442,25846892:168277 -k1,16501:21951578,25846892:168276 -k1,16501:26348892,25846892:168276 -k1,16501:28503565,25846892:168277 -k1,16501:30631367,25846892:168276 -k1,16501:32583029,25846892:0 -) -(1,16502:6630773,26688380:25952256,513147,126483 -g1,16501:8272449,26688380 -g1,16501:8827538,26688380 -g1,16501:11895933,26688380 -g1,16501:12963514,26688380 -g1,16501:13978011,26688380 -g1,16501:15243511,26688380 -g1,16501:16535225,26688380 -k1,16502:32583029,26688380:12019961 -g1,16502:32583029,26688380 -) -v1,16504:6630773,27878846:0,393216,0 -(1,16509:6630773,28853829:25952256,1368199,196608 -g1,16509:6630773,28853829 -g1,16509:6630773,28853829 -g1,16509:6434165,28853829 -(1,16509:6434165,28853829:0,1368199,196608 -r1,16523:32779637,28853829:26345472,1564807,196608 -k1,16509:6434165,28853829:-26345472 -) -(1,16509:6434165,28853829:26345472,1368199,196608 -[1,16509:6630773,28853829:25952256,1171591,0 -(1,16506:6630773,28086464:25952256,404226,101187 -(1,16505:6630773,28086464:0,0,0 -g1,16505:6630773,28086464 -g1,16505:6630773,28086464 -g1,16505:6303093,28086464 -(1,16505:6303093,28086464:0,0,0 -) -g1,16505:6630773,28086464 -) -g1,16506:9476084,28086464 -g1,16506:10424522,28086464 -g1,16506:13902124,28086464 -g1,16506:14534416,28086464 -g1,16506:18012019,28086464 -g1,16506:18644311,28086464 -g1,16506:24651079,28086464 -g1,16506:25283371,28086464 -h1,16506:28760973,28086464:0,0,0 -k1,16506:32583029,28086464:3822056 -g1,16506:32583029,28086464 -) -(1,16507:6630773,28752642:25952256,404226,101187 -h1,16507:6630773,28752642:0,0,0 -g1,16507:7263065,28752642 -g1,16507:7895357,28752642 -h1,16507:10424522,28752642:0,0,0 -k1,16507:32583030,28752642:22158508 -g1,16507:32583030,28752642 -) -] -) -g1,16509:32583029,28853829 -g1,16509:6630773,28853829 -g1,16509:6630773,28853829 -g1,16509:32583029,28853829 -g1,16509:32583029,28853829 -) -h1,16509:6630773,29050437:0,0,0 -(1,16512:6630773,40150750:25952256,10510489,0 -k1,16512:12599879,40150750:5969106 -h1,16511:12599879,40150750:0,0,0 -(1,16511:12599879,40150750:14014044,10510489,0 -(1,16511:12599879,40150750:14014019,10510515,0 -(1,16511:12599879,40150750:14014019,10510515,0 -(1,16511:12599879,40150750:0,10510515,0 -(1,16511:12599879,40150750:0,14208860,0 -(1,16511:12599879,40150750:18945146,14208860,0 -) -k1,16511:12599879,40150750:-18945146 -) -) -g1,16511:26613898,40150750 -) -) -) -g1,16512:26613923,40150750 -k1,16512:32583029,40150750:5969106 -) -v1,16519:6630773,41516526:0,393216,0 -(1,16520:6630773,44644046:25952256,3520736,616038 -g1,16520:6630773,44644046 -(1,16520:6630773,44644046:25952256,3520736,616038 -(1,16520:6630773,45260084:25952256,4136774,0 -[1,16520:6630773,45260084:25952256,4136774,0 -(1,16520:6630773,45233870:25952256,4084346,0 -r1,16523:6656987,45233870:26214,4084346,0 -[1,16520:6656987,45233870:25899828,4084346,0 -(1,16520:6656987,44644046:25899828,2904698,0 -[1,16520:7246811,44644046:24720180,2904698,0 -(1,16520:7246811,42826722:24720180,1087374,134348 -k1,16519:8670777,42826722:214263 -k1,16519:9354932,42826722:214262 -k1,16519:10100692,42826722:214263 -k1,16519:12444219,42826722:214262 -k1,16519:14242487,42826722:214263 -k1,16519:15108177,42826722:214262 -k1,16519:16933970,42826722:214263 -k1,16519:17799660,42826722:214262 -k1,16519:21105256,42826722:214263 -k1,16519:22926461,42826722:214262 -k1,16519:26350022,42826722:214263 -k1,16519:27835682,42826722:214262 -k1,16519:29287920,42826722:214263 -k1,16519:30161474,42826722:214262 -k1,16519:31966991,42826722:0 -) -(1,16520:7246811,43668210:24720180,505283,134348 -k1,16519:8591459,43668210:141407 -k1,16519:9264362,43668210:141406 -k1,16519:10167297,43668210:141407 -k1,16519:13683807,43668210:141406 -k1,16519:15762458,43668210:141407 -k1,16519:16713234,43668210:141406 -k1,16519:19645164,43668210:141407 -k1,16519:20536302,43668210:141406 -k1,16519:21492977,43668210:141407 -k1,16519:22831726,43668210:141406 -k1,16519:26827305,43668210:141407 -k1,16519:27620139,43668210:141406 -k1,16519:28780631,43668210:141407 -k1,16519:31966991,43668210:0 -) -(1,16520:7246811,44509698:24720180,505283,134348 -g1,16519:8062078,44509698 -g1,16519:9280392,44509698 -g1,16519:10975808,44509698 -g1,16519:13145705,44509698 -g1,16519:15200258,44509698 -g1,16519:16590932,44509698 -g1,16519:18574051,44509698 -g1,16519:19792365,44509698 -g1,16519:21598537,44509698 -k1,16520:31966991,44509698:7489457 -g1,16520:31966991,44509698 -) -] -) -] -r1,16523:32583029,45233870:26214,4084346,0 -) -] -) -) -g1,16520:32583029,44644046 -) -h1,16520:6630773,45260084:0,0,0 -] -(1,16523:32583029,45706769:0,0,0 -g1,16523:32583029,45706769 -) -) -] -(1,16523:6630773,47279633:25952256,0,0 -h1,16523:6630773,47279633:25952256,0,0 -) -] -(1,16523:4262630,4025873:0,0,0 -[1,16523:-473656,4025873:0,0,0 -(1,16523:-473656,-710413:0,0,0 -(1,16523:-473656,-710413:0,0,0 -g1,16523:-473656,-710413 -) -g1,16523:-473656,-710413 -) -] -) -] -!16993 -}322 -Input:2689:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2690:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2691:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2692:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2693:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2694:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2695:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!656 -{323 -[1,16573:4262630,47279633:28320399,43253760,0 -(1,16573:4262630,4025873:0,0,0 -[1,16573:-473656,4025873:0,0,0 -(1,16573:-473656,-710413:0,0,0 -(1,16573:-473656,-644877:0,0,0 -k1,16573:-473656,-644877:-65536 -) -(1,16573:-473656,4736287:0,0,0 -k1,16573:-473656,4736287:5209943 -) -g1,16573:-473656,-710413 -) -] -) -[1,16573:6630773,47279633:25952256,43253760,0 -[1,16573:6630773,4812305:25952256,786432,0 -(1,16573:6630773,4812305:25952256,513147,134348 -(1,16573:6630773,4812305:25952256,513147,134348 -g1,16573:3078558,4812305 -[1,16573:3078558,4812305:0,0,0 -(1,16573:3078558,2439708:0,1703936,0 -k1,16573:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,16573:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,16573:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,16573:3078558,4812305:0,0,0 -(1,16573:3078558,2439708:0,1703936,0 -g1,16573:29030814,2439708 -g1,16573:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,16573:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,16573:37855564,2439708:1179648,16384,0 -) -) -k1,16573:3078556,2439708:-34777008 -) -] -[1,16573:3078558,4812305:0,0,0 -(1,16573:3078558,49800853:0,16384,2228224 -k1,16573:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,16573:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,16573:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,16573:3078558,4812305:0,0,0 -(1,16573:3078558,49800853:0,16384,2228224 -g1,16573:29030814,49800853 -g1,16573:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,16573:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,16573:37855564,49800853:1179648,16384,0 -) -) -k1,16573:3078556,49800853:-34777008 -) -] -g1,16573:6630773,4812305 -k1,16573:25712890,4812305:17886740 -g1,16573:29057847,4812305 -g1,16573:29873114,4812305 -) -) -] -[1,16573:6630773,45706769:25952256,40108032,0 -(1,16573:6630773,45706769:25952256,40108032,0 -(1,16573:6630773,45706769:0,0,0 -g1,16573:6630773,45706769 -) -[1,16573:6630773,45706769:25952256,40108032,0 -v1,16523:6630773,6254097:0,393216,0 -(1,16573:6630773,45116945:25952256,39256064,589824 -g1,16573:6630773,45116945 -(1,16573:6630773,45116945:25952256,39256064,589824 -(1,16573:6630773,45706769:25952256,39845888,0 -[1,16573:6630773,45706769:25952256,39845888,0 -(1,16573:6630773,45706769:25952256,39819674,0 -r1,16573:6656987,45706769:26214,39819674,0 -[1,16573:6656987,45706769:25899828,39819674,0 -(1,16573:6656987,45116945:25899828,38640026,0 -[1,16573:7246811,45116945:24720180,38640026,0 -(1,16524:7246811,7638804:24720180,1161885,196608 -(1,16523:7246811,7638804:0,1161885,196608 -r1,16573:8794447,7638804:1547636,1358493,196608 -k1,16523:7246811,7638804:-1547636 -) -(1,16523:7246811,7638804:1547636,1161885,196608 -) -k1,16523:9131548,7638804:337101 -k1,16523:10889469,7638804:337100 -k1,16523:11877998,7638804:337101 -k1,16523:14144478,7638804:337100 -k1,16523:14837439,7638804:337101 -k1,16523:16457735,7638804:337101 -k1,16523:18781231,7638804:337100 -k1,16523:22825048,7638804:337101 -k1,16523:25364158,7638804:337100 -k1,16523:26352687,7638804:337101 -k1,16523:28433701,7638804:337101 -k1,16523:29386839,7638804:337100 -k1,16523:31966991,7638804:0 -) -(1,16524:7246811,8480292:24720180,513147,134348 -k1,16523:10324545,8480292:249201 -k1,16523:11678027,8480292:249200 -k1,16523:12674994,8480292:249201 -k1,16523:14600606,8480292:249201 -k1,16523:16974483,8480292:249200 -k1,16523:17689645,8480292:249201 -k1,16523:18957931,8480292:249201 -k1,16523:21778108,8480292:249200 -k1,16523:23018869,8480292:249201 -k1,16523:24574858,8480292:249201 -k1,16523:25641947,8480292:249200 -k1,16523:26910233,8480292:249201 -k1,16523:31966991,8480292:0 -) -(1,16524:7246811,9321780:24720180,513147,134348 -k1,16523:9552313,9321780:188034 -k1,16523:10399639,9321780:188034 -k1,16523:12574068,9321780:188033 -k1,16523:15051930,9321780:188034 -k1,16523:16576898,9321780:188034 -k1,16523:19005608,9321780:188034 -k1,16523:19809680,9321780:188034 -k1,16523:21984766,9321780:188034 -k1,16523:24836838,9321780:188033 -k1,16523:25684164,9321780:188034 -k1,16523:28874401,9321780:188034 -k1,16523:30081520,9321780:188034 -k1,16523:31966991,9321780:0 -) -(1,16524:7246811,10163268:24720180,513147,134348 -k1,16523:10423060,10163268:191739 -k1,16523:11146297,10163268:191740 -k1,16523:11989464,10163268:191739 -k1,16523:13383134,10163268:191740 -k1,16523:14950474,10163268:191739 -k1,16523:15951584,10163268:191740 -k1,16523:17162408,10163268:191739 -k1,16523:19330058,10163268:191740 -k1,16523:22331981,10163268:191739 -k1,16523:23183013,10163268:191740 -k1,16523:24393837,10163268:191739 -k1,16523:27339400,10163268:191740 -k1,16523:28484688,10163268:191739 -k1,16523:29780710,10163268:191740 -k1,16523:31966991,10163268:0 -) -(1,16524:7246811,11004756:24720180,513147,134348 -k1,16523:8443116,11004756:177220 -k1,16523:11646134,11004756:177221 -k1,16523:14664340,11004756:177220 -k1,16523:15603089,11004756:177221 -k1,16523:18360462,11004756:177221 -k1,16523:21366215,11004756:177220 -k1,16523:23459052,11004756:177220 -k1,16523:23992133,11004756:177221 -k1,16523:25452548,11004756:177220 -k1,16523:28498935,11004756:177221 -k1,16523:29718178,11004756:177221 -k1,16523:31098639,11004756:177220 -k1,16523:31966991,11004756:0 -) -(1,16524:7246811,11846244:24720180,513147,126483 -k1,16523:8929635,11846244:152558 -k1,16523:9733621,11846244:152558 -k1,16523:11152336,11846244:152559 -k1,16523:12371165,11846244:152558 -k1,16523:14072339,11846244:152558 -k1,16523:15216457,11846244:152558 -k1,16523:16388100,11846244:152558 -k1,16523:20151693,11846244:152559 -k1,16523:21495696,11846244:152558 -k1,16523:23156893,11846244:152558 -k1,16523:25048777,11846244:152558 -k1,16523:26392781,11846244:152559 -k1,16523:29501668,11846244:152558 -k1,16523:31350953,11846244:152558 -k1,16523:31966991,11846244:0 -) -(1,16524:7246811,12687732:24720180,513147,134348 -k1,16523:8527601,12687732:183062 -k1,16523:11526744,12687732:183061 -k1,16523:14246705,12687732:183062 -k1,16523:15042529,12687732:183062 -k1,16523:16244676,12687732:183062 -k1,16523:18850603,12687732:183061 -k1,16523:21312352,12687732:183062 -k1,16523:22154706,12687732:183062 -k1,16523:23356853,12687732:183062 -k1,16523:24927967,12687732:183061 -k1,16523:26609182,12687732:183062 -k1,16523:27739895,12687732:183062 -(1,16523:27739895,12687732:0,452978,122846 -r1,16573:31966991,12687732:4227096,575824,122846 -k1,16523:27739895,12687732:-4227096 -) -(1,16523:27739895,12687732:4227096,452978,122846 -k1,16523:27739895,12687732:3277 -h1,16523:31963714,12687732:0,411205,112570 -) -k1,16523:31966991,12687732:0 -) -(1,16524:7246811,13529220:24720180,505283,134348 -k1,16523:8026286,13529220:247978 -k1,16523:10808541,13529220:247978 -k1,16523:11684354,13529220:247978 -k1,16523:13135574,13529220:247979 -k1,16523:14924303,13529220:247978 -k1,16523:16040633,13529220:247978 -k1,16523:18153110,13529220:247978 -k1,16523:22783481,13529220:247978 -k1,16523:24103628,13529220:247978 -k1,16523:25548950,13529220:247979 -k1,16523:26152788,13529220:247978 -k1,16523:27683961,13529220:247978 -k1,16523:29365867,13529220:247978 -k1,16524:31966991,13529220:0 -) -(1,16524:7246811,14370708:24720180,513147,126483 -k1,16523:8549227,14370708:236145 -(1,16523:8549227,14370708:0,452978,115847 -r1,16573:12072899,14370708:3523672,568825,115847 -k1,16523:8549227,14370708:-3523672 -) -(1,16523:8549227,14370708:3523672,452978,115847 -k1,16523:8549227,14370708:3277 -h1,16523:12069622,14370708:0,411205,112570 -) -k1,16523:12482713,14370708:236144 -k1,16523:13910303,14370708:236145 -k1,16523:15080990,14370708:236144 -k1,16523:15672995,14370708:236145 -k1,16523:18671483,14370708:236145 -k1,16523:21173207,14370708:236144 -k1,16523:22357003,14370708:236145 -(1,16523:22357003,14370708:0,459977,115847 -r1,16573:26232387,14370708:3875384,575824,115847 -k1,16523:22357003,14370708:-3875384 -) -(1,16523:22357003,14370708:3875384,459977,115847 -k1,16523:22357003,14370708:3277 -h1,16523:26229110,14370708:0,411205,112570 -) -k1,16523:26642201,14370708:236144 -k1,16523:28075033,14370708:236145 -k1,16523:29412182,14370708:236144 -k1,16523:31435494,14370708:236145 -k1,16523:31966991,14370708:0 -) -(1,16524:7246811,15212196:24720180,505283,134348 -k1,16523:9883519,15212196:209254 -(1,16523:9883519,15212196:0,452978,115847 -r1,16573:15165751,15212196:5282232,568825,115847 -k1,16523:9883519,15212196:-5282232 -) -(1,16523:9883519,15212196:5282232,452978,115847 -g1,16523:13052203,15212196 -g1,16523:13755627,15212196 -h1,16523:15162474,15212196:0,411205,112570 -) -k1,16523:15375006,15212196:209255 -k1,16523:16235688,15212196:209254 -(1,16523:16235688,15212196:0,452978,115847 -r1,16573:18704225,15212196:2468537,568825,115847 -k1,16523:16235688,15212196:-2468537 -) -(1,16523:16235688,15212196:2468537,452978,115847 -k1,16523:16235688,15212196:3277 -h1,16523:18700948,15212196:0,411205,112570 -) -k1,16523:19087149,15212196:209254 -k1,16523:19982565,15212196:209254 -k1,16523:21395061,15212196:209255 -k1,16523:22921589,15212196:209254 -k1,16523:24149928,15212196:209254 -k1,16523:27137909,15212196:209254 -k1,16523:29333560,15212196:209255 -k1,16523:30228976,15212196:209254 -k1,16523:31966991,15212196:0 -) -(1,16524:7246811,16053684:24720180,513147,134348 -k1,16523:9506845,16053684:206136 -k1,16523:10474509,16053684:206136 -k1,16523:12459947,16053684:206136 -k1,16523:15499205,16053684:206137 -k1,16523:16321379,16053684:206136 -k1,16523:20464918,16053684:206136 -k1,16523:21330346,16053684:206136 -k1,16523:22668289,16053684:206136 -k1,16523:24860821,16053684:206136 -k1,16523:27401350,16053684:206137 -k1,16523:28223524,16053684:206136 -k1,16523:28785520,16053684:206136 -k1,16523:30268953,16053684:206136 -k1,16523:31966991,16053684:0 -) -(1,16524:7246811,16895172:24720180,505283,7863 -g1,16523:7904137,16895172 -g1,16523:8634863,16895172 -k1,16524:31966990,16895172:21193032 -g1,16524:31966990,16895172 -) -v1,16526:7246811,18587064:0,393216,0 -(1,16545:7246811,28863373:24720180,10669525,196608 -g1,16545:7246811,28863373 -g1,16545:7246811,28863373 -g1,16545:7050203,28863373 -(1,16545:7050203,28863373:0,10669525,196608 -r1,16573:32163599,28863373:25113396,10866133,196608 -k1,16545:7050203,28863373:-25113396 -) -(1,16545:7050203,28863373:25113396,10669525,196608 -[1,16545:7246811,28863373:24720180,10472917,0 -(1,16528:7246811,18794682:24720180,404226,107478 -(1,16527:7246811,18794682:0,0,0 -g1,16527:7246811,18794682 -g1,16527:7246811,18794682 -g1,16527:6919131,18794682 -(1,16527:6919131,18794682:0,0,0 -) -g1,16527:7246811,18794682 -) -g1,16528:11672851,18794682 -k1,16528:11672851,18794682:0 -h1,16528:12305143,18794682:0,0,0 -k1,16528:31966991,18794682:19661848 -g1,16528:31966991,18794682 -) -(1,16529:7246811,19460860:24720180,410518,82312 -h1,16529:7246811,19460860:0,0,0 -g1,16529:7562957,19460860 -g1,16529:7879103,19460860 -g1,16529:10724414,19460860 -g1,16529:14202017,19460860 -g1,16529:14834309,19460860 -k1,16529:14834309,19460860:0 -h1,16529:15782746,19460860:0,0,0 -k1,16529:31966991,19460860:16184245 -g1,16529:31966991,19460860 -) -(1,16530:7246811,20127038:24720180,410518,101187 -h1,16530:7246811,20127038:0,0,0 -g1,16530:7562957,20127038 -g1,16530:7879103,20127038 -g1,16530:8195249,20127038 -g1,16530:8511395,20127038 -g1,16530:8827541,20127038 -g1,16530:9143687,20127038 -g1,16530:9459833,20127038 -g1,16530:9775979,20127038 -g1,16530:10092125,20127038 -g1,16530:10408271,20127038 -g1,16530:10724417,20127038 -g1,16530:11040563,20127038 -g1,16530:14834311,20127038 -g1,16530:15466603,20127038 -k1,16530:15466603,20127038:0 -h1,16530:17995769,20127038:0,0,0 -k1,16530:31966991,20127038:13971222 -g1,16530:31966991,20127038 -) -(1,16531:7246811,20793216:24720180,404226,82312 -h1,16531:7246811,20793216:0,0,0 -g1,16531:7562957,20793216 -g1,16531:7879103,20793216 -g1,16531:8195249,20793216 -g1,16531:8511395,20793216 -g1,16531:8827541,20793216 -g1,16531:9143687,20793216 -g1,16531:9459833,20793216 -g1,16531:9775979,20793216 -g1,16531:10092125,20793216 -g1,16531:10408271,20793216 -g1,16531:10724417,20793216 -g1,16531:11040563,20793216 -g1,16531:15782749,20793216 -g1,16531:16415041,20793216 -k1,16531:16415041,20793216:0 -h1,16531:20524935,20793216:0,0,0 -k1,16531:31966991,20793216:11442056 -g1,16531:31966991,20793216 -) -(1,16532:7246811,21459394:24720180,404226,82312 -h1,16532:7246811,21459394:0,0,0 -g1,16532:7562957,21459394 -g1,16532:7879103,21459394 -g1,16532:8195249,21459394 -g1,16532:8511395,21459394 -g1,16532:8827541,21459394 -g1,16532:9143687,21459394 -g1,16532:9459833,21459394 -g1,16532:9775979,21459394 -g1,16532:10092125,21459394 -g1,16532:10408271,21459394 -g1,16532:10724417,21459394 -g1,16532:11040563,21459394 -g1,16532:15782749,21459394 -g1,16532:16415041,21459394 -k1,16532:16415041,21459394:0 -h1,16532:20524935,21459394:0,0,0 -k1,16532:31966991,21459394:11442056 -g1,16532:31966991,21459394 -) -(1,16533:7246811,22125572:24720180,404226,76021 -h1,16533:7246811,22125572:0,0,0 -g1,16533:7562957,22125572 -g1,16533:7879103,22125572 -g1,16533:8195249,22125572 -g1,16533:8511395,22125572 -g1,16533:8827541,22125572 -g1,16533:9143687,22125572 -g1,16533:9459833,22125572 -g1,16533:9775979,22125572 -g1,16533:10092125,22125572 -g1,16533:10408271,22125572 -g1,16533:10724417,22125572 -g1,16533:11040563,22125572 -g1,16533:14518166,22125572 -g1,16533:15150458,22125572 -g1,16533:18944207,22125572 -h1,16533:19260353,22125572:0,0,0 -k1,16533:31966991,22125572:12706638 -g1,16533:31966991,22125572 -) -(1,16534:7246811,22791750:24720180,404226,107478 -h1,16534:7246811,22791750:0,0,0 -g1,16534:7562957,22791750 -g1,16534:7879103,22791750 -g1,16534:8195249,22791750 -g1,16534:8511395,22791750 -g1,16534:15150455,22791750 -g1,16534:15782747,22791750 -k1,16534:15782747,22791750:0 -h1,16534:18944204,22791750:0,0,0 -k1,16534:31966991,22791750:13022787 -g1,16534:31966991,22791750 -) -(1,16535:7246811,23457928:24720180,410518,101187 -h1,16535:7246811,23457928:0,0,0 -g1,16535:7562957,23457928 -g1,16535:7879103,23457928 -g1,16535:8195249,23457928 -g1,16535:8511395,23457928 -g1,16535:8827541,23457928 -g1,16535:9143687,23457928 -g1,16535:9459833,23457928 -g1,16535:9775979,23457928 -g1,16535:10092125,23457928 -g1,16535:10408271,23457928 -g1,16535:10724417,23457928 -g1,16535:11040563,23457928 -g1,16535:11356709,23457928 -g1,16535:11672855,23457928 -g1,16535:11989001,23457928 -g1,16535:15782749,23457928 -g1,16535:16415041,23457928 -k1,16535:16415041,23457928:0 -h1,16535:20208789,23457928:0,0,0 -k1,16535:31966991,23457928:11758202 -g1,16535:31966991,23457928 -) -(1,16536:7246811,24124106:24720180,404226,82312 -h1,16536:7246811,24124106:0,0,0 -g1,16536:7562957,24124106 -g1,16536:7879103,24124106 -g1,16536:8195249,24124106 -g1,16536:8511395,24124106 -g1,16536:8827541,24124106 -g1,16536:9143687,24124106 -g1,16536:9459833,24124106 -g1,16536:9775979,24124106 -g1,16536:10092125,24124106 -g1,16536:10408271,24124106 -g1,16536:10724417,24124106 -g1,16536:11040563,24124106 -g1,16536:11356709,24124106 -g1,16536:11672855,24124106 -g1,16536:11989001,24124106 -g1,16536:16731187,24124106 -g1,16536:17363479,24124106 -k1,16536:17363479,24124106:0 -h1,16536:22105665,24124106:0,0,0 -k1,16536:31966991,24124106:9861326 -g1,16536:31966991,24124106 -) -(1,16537:7246811,24790284:24720180,404226,76021 -h1,16537:7246811,24790284:0,0,0 -g1,16537:7562957,24790284 -g1,16537:7879103,24790284 -g1,16537:8195249,24790284 -g1,16537:8511395,24790284 -g1,16537:8827541,24790284 -g1,16537:9143687,24790284 -g1,16537:9459833,24790284 -g1,16537:9775979,24790284 -g1,16537:10092125,24790284 -g1,16537:10408271,24790284 -g1,16537:10724417,24790284 -g1,16537:11040563,24790284 -g1,16537:11356709,24790284 -g1,16537:11672855,24790284 -g1,16537:11989001,24790284 -g1,16537:16731187,24790284 -g1,16537:17363479,24790284 -g1,16537:22421810,24790284 -h1,16537:22737956,24790284:0,0,0 -k1,16537:31966991,24790284:9229035 -g1,16537:31966991,24790284 -) -(1,16538:7246811,25456462:24720180,404226,82312 -h1,16538:7246811,25456462:0,0,0 -g1,16538:7562957,25456462 -g1,16538:7879103,25456462 -g1,16538:8195249,25456462 -g1,16538:8511395,25456462 -g1,16538:11988998,25456462 -g1,16538:12621290,25456462 -g1,16538:18628058,25456462 -g1,16538:19260350,25456462 -k1,16538:19260350,25456462:0 -h1,16538:23054098,25456462:0,0,0 -k1,16538:31966991,25456462:8912893 -g1,16538:31966991,25456462 -) -(1,16539:7246811,26122640:24720180,404226,82312 -h1,16539:7246811,26122640:0,0,0 -g1,16539:7562957,26122640 -g1,16539:7879103,26122640 -g1,16539:8195249,26122640 -g1,16539:8511395,26122640 -g1,16539:8827541,26122640 -g1,16539:9143687,26122640 -g1,16539:9459833,26122640 -g1,16539:9775979,26122640 -g1,16539:10092125,26122640 -g1,16539:10408271,26122640 -g1,16539:11989000,26122640 -g1,16539:12621292,26122640 -g1,16539:18628060,26122640 -g1,16539:19260352,26122640 -k1,16539:19260352,26122640:0 -h1,16539:23054100,26122640:0,0,0 -k1,16539:31966991,26122640:8912891 -g1,16539:31966991,26122640 -) -(1,16540:7246811,26788818:24720180,404226,82312 -h1,16540:7246811,26788818:0,0,0 -g1,16540:7562957,26788818 -g1,16540:7879103,26788818 -g1,16540:8195249,26788818 -g1,16540:8511395,26788818 -g1,16540:8827541,26788818 -g1,16540:9143687,26788818 -g1,16540:9459833,26788818 -g1,16540:9775979,26788818 -g1,16540:10092125,26788818 -g1,16540:10408271,26788818 -g1,16540:11989000,26788818 -g1,16540:12621292,26788818 -g1,16540:18628060,26788818 -g1,16540:19260352,26788818 -k1,16540:19260352,26788818:0 -h1,16540:23054100,26788818:0,0,0 -k1,16540:31966991,26788818:8912891 -g1,16540:31966991,26788818 -) -(1,16541:7246811,27454996:24720180,404226,82312 -h1,16541:7246811,27454996:0,0,0 -g1,16541:7562957,27454996 -g1,16541:7879103,27454996 -g1,16541:8195249,27454996 -g1,16541:8511395,27454996 -g1,16541:8827541,27454996 -g1,16541:9143687,27454996 -g1,16541:9459833,27454996 -g1,16541:9775979,27454996 -g1,16541:10092125,27454996 -g1,16541:10408271,27454996 -g1,16541:12305145,27454996 -g1,16541:12937437,27454996 -g1,16541:18944205,27454996 -g1,16541:19576497,27454996 -k1,16541:19576497,27454996:0 -h1,16541:23370245,27454996:0,0,0 -k1,16541:31966991,27454996:8596746 -g1,16541:31966991,27454996 -) -(1,16542:7246811,28121174:24720180,404226,101187 -h1,16542:7246811,28121174:0,0,0 -g1,16542:7562957,28121174 -g1,16542:7879103,28121174 -g1,16542:8195249,28121174 -g1,16542:8511395,28121174 -g1,16542:8827541,28121174 -g1,16542:9143687,28121174 -g1,16542:9459833,28121174 -g1,16542:9775979,28121174 -g1,16542:10092125,28121174 -g1,16542:10408271,28121174 -g1,16542:13569728,28121174 -g1,16542:14202020,28121174 -g1,16542:20208788,28121174 -g1,16542:20841080,28121174 -g1,16542:24950974,28121174 -g1,16542:27796285,28121174 -g1,16542:28428577,28121174 -h1,16542:30009306,28121174:0,0,0 -k1,16542:31966991,28121174:1957685 -g1,16542:31966991,28121174 -) -(1,16543:7246811,28787352:24720180,404226,76021 -h1,16543:7246811,28787352:0,0,0 -g1,16543:7562957,28787352 -g1,16543:7879103,28787352 -h1,16543:8195249,28787352:0,0,0 -k1,16543:31966991,28787352:23771742 -g1,16543:31966991,28787352 -) -] -) -g1,16545:31966991,28863373 -g1,16545:7246811,28863373 -g1,16545:7246811,28863373 -g1,16545:31966991,28863373 -g1,16545:31966991,28863373 -) -h1,16545:7246811,29059981:0,0,0 -(1,16549:7246811,31177896:24720180,505283,102891 -h1,16548:7246811,31177896:983040,0,0 -k1,16548:9005142,31177896:147456 -k1,16548:10171683,31177896:147456 -k1,16548:12289807,31177896:147456 -k1,16548:14292587,31177896:147456 -k1,16548:15308395,31177896:147456 -k1,16548:16931065,31177896:147455 -k1,16548:19428642,31177896:147456 -k1,16548:20673826,31177896:147456 -k1,16548:22151663,31177896:147456 -k1,16548:24285515,31177896:147456 -k1,16548:28313358,31177896:147456 -k1,16548:30921036,31177896:147456 -k1,16548:31966991,31177896:0 -) -(1,16549:7246811,32019384:24720180,513147,134348 -k1,16548:9185114,32019384:155068 -k1,16548:11286601,32019384:155068 -k1,16548:12633114,32019384:155068 -k1,16548:14523576,32019384:155069 -k1,16548:15449347,32019384:155068 -k1,16548:18588925,32019384:155068 -k1,16548:20028499,32019384:155068 -k1,16548:20715064,32019384:155068 -k1,16548:22224106,32019384:155068 -k1,16548:24091631,32019384:155069 -k1,16548:24898127,32019384:155068 -k1,16548:27831266,32019384:155068 -k1,16548:30573040,32019384:155068 -k1,16548:31966991,32019384:0 -) -(1,16549:7246811,32860872:24720180,513147,134348 -k1,16548:9490705,32860872:256842 -k1,16548:12411585,32860872:256841 -k1,16548:13327719,32860872:256842 -k1,16548:16586764,32860872:256842 -k1,16548:18040292,32860872:256841 -k1,16548:20108549,32860872:256842 -k1,16548:22351786,32860872:256841 -k1,16548:23140125,32860872:256842 -k1,16548:23752827,32860872:256842 -k1,16548:26705164,32860872:256841 -k1,16548:28355957,32860872:256842 -k1,16548:31966991,32860872:0 -) -(1,16549:7246811,33702360:24720180,513147,126483 -k1,16548:8654361,33702360:216105 -k1,16548:11466347,33702360:216105 -k1,16548:12630103,33702360:216105 -k1,16548:14658933,33702360:216104 -k1,16548:15502873,33702360:216105 -k1,16548:16922219,33702360:216105 -k1,16548:19799741,33702360:216105 -k1,16548:20884198,33702360:216105 -k1,16548:22575518,33702360:216105 -k1,16548:24209166,33702360:216104 -k1,16548:25444356,33702360:216105 -k1,16548:28355957,33702360:216105 -k1,16548:31966991,33702360:0 -) -(1,16549:7246811,34543848:24720180,513147,134348 -k1,16548:8443499,34543848:177603 -k1,16548:10274574,34543848:177602 -k1,16548:11138339,34543848:177603 -k1,16548:13059855,34543848:177603 -k1,16548:14750684,34543848:177603 -k1,16548:15544324,34543848:177602 -k1,16548:18724130,34543848:177603 -k1,16548:20277334,34543848:177603 -k1,16548:22642529,34543848:177603 -k1,16548:23590834,34543848:177602 -k1,16548:26995430,34543848:177603 -k1,16548:30453765,34543848:177603 -k1,16548:31966991,34543848:0 -) -(1,16549:7246811,35385336:24720180,505283,134348 -k1,16548:8552223,35385336:286327 -k1,16548:11329573,35385336:286327 -k1,16548:13102912,35385336:286327 -k1,16548:14040667,35385336:286327 -k1,16548:17427502,35385336:286327 -k1,16548:21922550,35385336:286326 -k1,16548:23400322,35385336:286327 -k1,16548:25416144,35385336:286327 -k1,16548:28966819,35385336:286327 -k1,16548:31137961,35385336:286327 -k1,16548:31966991,35385336:0 -) -(1,16549:7246811,36226824:24720180,505283,134348 -k1,16548:9205220,36226824:228914 -k1,16548:12698483,36226824:228915 -k1,16548:14812212,36226824:228914 -k1,16548:15909479,36226824:228915 -k1,16548:17475327,36226824:228914 -k1,16548:19252857,36226824:228914 -k1,16548:23274996,36226824:228915 -k1,16548:24155338,36226824:228914 -k1,16548:26099986,36226824:228915 -(1,16548:26099986,36226824:0,452978,122846 -r1,16573:31382217,36226824:5282231,575824,122846 -k1,16548:26099986,36226824:-5282231 -) -(1,16548:26099986,36226824:5282231,452978,122846 -k1,16548:26099986,36226824:3277 -h1,16548:31378940,36226824:0,411205,112570 -) -k1,16548:31611131,36226824:228914 -k1,16548:31966991,36226824:0 -) -(1,16549:7246811,37068312:24720180,513147,134348 -g1,16548:10342731,37068312 -g1,16548:11209116,37068312 -(1,16548:11209116,37068312:0,452978,122846 -r1,16573:16491347,37068312:5282231,575824,122846 -k1,16548:11209116,37068312:-5282231 -) -(1,16548:11209116,37068312:5282231,452978,122846 -k1,16548:11209116,37068312:3277 -h1,16548:16488070,37068312:0,411205,112570 -) -g1,16548:16690576,37068312 -g1,16548:19865140,37068312 -g1,16548:22892902,37068312 -k1,16549:31966991,37068312:6362865 -g1,16549:31966991,37068312 -) -v1,16551:7246811,38760204:0,393216,0 -(1,16555:7246811,39075300:24720180,708312,196608 -g1,16555:7246811,39075300 -g1,16555:7246811,39075300 -g1,16555:7050203,39075300 -(1,16555:7050203,39075300:0,708312,196608 -r1,16573:32163599,39075300:25113396,904920,196608 -k1,16555:7050203,39075300:-25113396 -) -(1,16555:7050203,39075300:25113396,708312,196608 -[1,16555:7246811,39075300:24720180,511704,0 -(1,16553:7246811,38967822:24720180,404226,107478 -(1,16552:7246811,38967822:0,0,0 -g1,16552:7246811,38967822 -g1,16552:7246811,38967822 -g1,16552:6919131,38967822 -(1,16552:6919131,38967822:0,0,0 -) -g1,16552:7246811,38967822 -) -g1,16553:11672851,38967822 -g1,16553:12621289,38967822 -h1,16553:16731183,38967822:0,0,0 -k1,16553:31966991,38967822:15235808 -g1,16553:31966991,38967822 -) -] -) -g1,16555:31966991,39075300 -g1,16555:7246811,39075300 -g1,16555:7246811,39075300 -g1,16555:31966991,39075300 -g1,16555:31966991,39075300 -) -h1,16555:7246811,39271908:0,0,0 -(1,16559:7246811,41389823:24720180,513147,126483 -h1,16558:7246811,41389823:983040,0,0 -k1,16558:10672579,41389823:166663 -k1,16558:11707594,41389823:166663 -k1,16558:12966743,41389823:166664 -k1,16558:14152491,41389823:166663 -k1,16558:15602349,41389823:166663 -k1,16558:17755408,41389823:166663 -k1,16558:21628788,41389823:166664 -k1,16558:22411489,41389823:166663 -k1,16558:23597237,41389823:166663 -k1,16558:25417373,41389823:166663 -k1,16558:26822012,41389823:166664 -k1,16558:27674837,41389823:166663 -k1,16558:29585413,41389823:166663 -k1,16558:31966991,41389823:0 -) -(1,16559:7246811,42231311:24720180,505283,134348 -g1,16558:8062078,42231311 -k1,16559:31966991,42231311:20902710 -g1,16559:31966991,42231311 -) -] -) -] -r1,16573:32583029,45706769:26214,39819674,0 -) -] -) -) -g1,16573:32583029,45116945 -) -] -(1,16573:32583029,45706769:0,0,0 -g1,16573:32583029,45706769 -) -) -] -(1,16573:6630773,47279633:25952256,0,0 -h1,16573:6630773,47279633:25952256,0,0 -) -] -(1,16573:4262630,4025873:0,0,0 -[1,16573:-473656,4025873:0,0,0 -(1,16573:-473656,-710413:0,0,0 -(1,16573:-473656,-710413:0,0,0 -g1,16573:-473656,-710413 -) -g1,16573:-473656,-710413 -) -] -) -] -!25822 -}323 -Input:2696:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2697:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2698:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2699:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2700:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2701:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!564 -{324 -[1,16611:4262630,47279633:28320399,43253760,0 -(1,16611:4262630,4025873:0,0,0 -[1,16611:-473656,4025873:0,0,0 -(1,16611:-473656,-710413:0,0,0 -(1,16611:-473656,-644877:0,0,0 -k1,16611:-473656,-644877:-65536 -) -(1,16611:-473656,4736287:0,0,0 -k1,16611:-473656,4736287:5209943 -) -g1,16611:-473656,-710413 -) -] -) -[1,16611:6630773,47279633:25952256,43253760,0 -[1,16611:6630773,4812305:25952256,786432,0 -(1,16611:6630773,4812305:25952256,505283,134348 -(1,16611:6630773,4812305:25952256,505283,134348 -g1,16611:3078558,4812305 -[1,16611:3078558,4812305:0,0,0 -(1,16611:3078558,2439708:0,1703936,0 -k1,16611:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,16611:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,16611:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,16611:3078558,4812305:0,0,0 -(1,16611:3078558,2439708:0,1703936,0 -g1,16611:29030814,2439708 -g1,16611:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,16611:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,16611:37855564,2439708:1179648,16384,0 -) -) -k1,16611:3078556,2439708:-34777008 -) -] -[1,16611:3078558,4812305:0,0,0 -(1,16611:3078558,49800853:0,16384,2228224 -k1,16611:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,16611:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,16611:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,16611:3078558,4812305:0,0,0 -(1,16611:3078558,49800853:0,16384,2228224 -g1,16611:29030814,49800853 -g1,16611:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,16611:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,16611:37855564,49800853:1179648,16384,0 -) -) -k1,16611:3078556,49800853:-34777008 -) -] -g1,16611:6630773,4812305 -g1,16611:6630773,4812305 -g1,16611:10334867,4812305 -g1,16611:12009967,4812305 -k1,16611:31387651,4812305:19377684 -) -) -] -[1,16611:6630773,45706769:25952256,40108032,0 -(1,16611:6630773,45706769:25952256,40108032,0 -(1,16611:6630773,45706769:0,0,0 -g1,16611:6630773,45706769 -) -[1,16611:6630773,45706769:25952256,40108032,0 -v1,16573:6630773,6254097:0,393216,0 -(1,16573:6630773,17956842:25952256,12095961,616038 -g1,16573:6630773,17956842 -(1,16573:6630773,17956842:25952256,12095961,616038 -(1,16573:6630773,18572880:25952256,12711999,0 -[1,16573:6630773,18572880:25952256,12711999,0 -(1,16573:6630773,18546666:25952256,12685785,0 -r1,16611:6656987,18546666:26214,12685785,0 -[1,16573:6656987,18546666:25899828,12685785,0 -(1,16573:6656987,17956842:25899828,11506137,0 -[1,16573:7246811,17956842:24720180,11506137,0 -v1,16561:7246811,6843921:0,393216,0 -(1,16565:7246811,7159017:24720180,708312,196608 -g1,16565:7246811,7159017 -g1,16565:7246811,7159017 -g1,16565:7050203,7159017 -(1,16565:7050203,7159017:0,708312,196608 -r1,16611:32163599,7159017:25113396,904920,196608 -k1,16565:7050203,7159017:-25113396 -) -(1,16565:7050203,7159017:25113396,708312,196608 -[1,16565:7246811,7159017:24720180,511704,0 -(1,16563:7246811,7051539:24720180,404226,107478 -(1,16562:7246811,7051539:0,0,0 -g1,16562:7246811,7051539 -g1,16562:7246811,7051539 -g1,16562:6919131,7051539 -(1,16562:6919131,7051539:0,0,0 -) -g1,16562:7246811,7051539 -) -g1,16563:7879103,7051539 -g1,16563:8511395,7051539 -g1,16563:14202018,7051539 -g1,16563:17679621,7051539 -g1,16563:18311913,7051539 -h1,16563:21473370,7051539:0,0,0 -k1,16563:31966991,7051539:10493621 -g1,16563:31966991,7051539 -) -] -) -g1,16565:31966991,7159017 -g1,16565:7246811,7159017 -g1,16565:7246811,7159017 -g1,16565:31966991,7159017 -g1,16565:31966991,7159017 -) -h1,16565:7246811,7355625:0,0,0 -(1,16568:7246811,17956842:24720180,10011393,0 -k1,16568:12932536,17956842:5685725 -h1,16567:12932536,17956842:0,0,0 -(1,16567:12932536,17956842:13348731,10011393,0 -(1,16567:12932536,17956842:13348557,10011418,0 -(1,16567:12932536,17956842:13348557,10011418,0 -(1,16567:12932536,17956842:0,10011418,0 -(1,16567:12932536,17956842:0,14208860,0 -(1,16567:12932536,17956842:18945146,14208860,0 -) -k1,16567:12932536,17956842:-18945146 -) -) -g1,16567:26281093,17956842 -) -) -) -g1,16568:26281267,17956842 -k1,16568:31966991,17956842:5685724 -) -] -) -] -r1,16611:32583029,18546666:26214,12685785,0 -) -] -) -) -g1,16573:32583029,17956842 -) -h1,16573:6630773,18572880:0,0,0 -(1,16578:6630773,21904736:25952256,32768,229376 -(1,16578:6630773,21904736:0,32768,229376 -(1,16578:6630773,21904736:5505024,32768,229376 -r1,16611:12135797,21904736:5505024,262144,229376 -) -k1,16578:6630773,21904736:-5505024 -) -(1,16578:6630773,21904736:25952256,32768,0 -r1,16611:32583029,21904736:25952256,32768,0 -) -) -(1,16578:6630773,23509064:25952256,606339,161218 -(1,16578:6630773,23509064:2464678,582746,0 -g1,16578:6630773,23509064 -g1,16578:9095451,23509064 -) -g1,16578:13796742,23509064 -k1,16578:32583029,23509064:16814702 -g1,16578:32583029,23509064 -) -(1,16581:6630773,24743768:25952256,513147,134348 -k1,16580:7502009,24743768:243401 -k1,16580:10024096,24743768:243400 -h1,16580:10994684,24743768:0,0,0 -k1,16580:11238085,24743768:243401 -k1,16580:12290855,24743768:243400 -k1,16580:14032409,24743768:243401 -h1,16580:15227786,24743768:0,0,0 -k1,16580:15644856,24743768:243400 -k1,16580:16756609,24743768:243401 -k1,16580:20090032,24743768:243400 -k1,16580:21663814,24743768:243401 -k1,16580:23795962,24743768:243400 -k1,16580:25143645,24743768:243401 -k1,16580:26134811,24743768:243400 -k1,16580:27891438,24743768:243401 -k1,16580:28786267,24743768:243401 -k1,16580:30959047,24743768:243400 -k1,16581:32583029,24743768:0 -) -(1,16581:6630773,25585256:25952256,513147,134348 -k1,16580:9286619,25585256:238223 -k1,16580:10789688,25585256:238224 -k1,16580:11687203,25585256:238223 -k1,16580:14173311,25585256:238223 -k1,16580:16266203,25585256:238223 -k1,16580:17313797,25585256:238224 -k1,16580:17907880,25585256:238223 -k1,16580:20019122,25585256:238223 -k1,16580:21646709,25585256:238224 -k1,16580:22993146,25585256:238223 -k1,16580:25339662,25585256:238223 -k1,16580:29056536,25585256:238223 -k1,16580:30163112,25585256:238224 -k1,16580:31931601,25585256:238223 -k1,16580:32583029,25585256:0 -) -(1,16581:6630773,26426744:25952256,513147,126483 -k1,16580:9794032,26426744:226591 -k1,16580:10376483,26426744:226591 -k1,16580:13902156,26426744:226591 -k1,16580:15406043,26426744:226590 -k1,16580:17200255,26426744:226591 -k1,16580:21185991,26426744:226591 -k1,16580:23762703,26426744:226591 -k1,16580:25770563,26426744:226591 -k1,16580:26474911,26426744:226591 -k1,16580:27858211,26426744:226590 -k1,16580:30229795,26426744:226591 -k1,16580:31107814,26426744:226591 -k1,16580:32583029,26426744:0 -) -(1,16581:6630773,27268232:25952256,513147,134348 -k1,16580:9637728,27268232:198082 -k1,16580:12155130,27268232:198083 -k1,16580:13605605,27268232:198082 -k1,16580:15647871,27268232:198083 -k1,16580:17037398,27268232:198082 -k1,16580:19759927,27268232:198082 -k1,16580:21809402,27268232:198083 -k1,16580:24209494,27268232:198082 -k1,16580:25059005,27268232:198083 -k1,16580:26955125,27268232:198082 -k1,16580:28888601,27268232:198083 -k1,16580:31149101,27268232:198082 -k1,16580:32583029,27268232:0 -) -(1,16581:6630773,28109720:25952256,513147,126483 -g1,16580:7849087,28109720 -g1,16580:9383940,28109720 -g1,16580:10114666,28109720 -g1,16580:11380166,28109720 -g1,16580:12974001,28109720 -g1,16580:13824658,28109720 -g1,16580:16381217,28109720 -g1,16580:19040668,28109720 -g1,16580:20258982,28109720 -g1,16580:21846264,28109720 -g1,16580:22704785,28109720 -g1,16580:25445500,28109720 -k1,16581:32583029,28109720:5382475 -g1,16581:32583029,28109720 -) -(1,16583:6630773,28951208:25952256,513147,134348 -h1,16582:6630773,28951208:983040,0,0 -k1,16582:10449192,28951208:300446 -k1,16582:14416377,28951208:300446 -k1,16582:17007962,28951208:300446 -k1,16582:17664268,28951208:300446 -k1,16582:20089391,28951208:300446 -k1,16582:23292427,28951208:300446 -k1,16582:24540524,28951208:300446 -k1,16582:28324864,28951208:300446 -k1,16582:30232908,28951208:300446 -k1,16582:32583029,28951208:0 -) -(1,16583:6630773,29792696:25952256,513147,134348 -k1,16582:8254006,29792696:229282 -k1,16582:11485491,29792696:229282 -k1,16582:12668322,29792696:229282 -k1,16582:14930531,29792696:229282 -k1,16582:17829094,29792696:229282 -k1,16582:19456259,29792696:229282 -k1,16582:20704626,29792696:229282 -k1,16582:22026392,29792696:229281 -k1,16582:22914966,29792696:229282 -k1,16582:26221163,29792696:229282 -(1,16582:26221163,29792696:0,414482,115847 -r1,16611:26579429,29792696:358266,530329,115847 -k1,16582:26221163,29792696:-358266 -) -(1,16582:26221163,29792696:358266,414482,115847 -k1,16582:26221163,29792696:3277 -h1,16582:26576152,29792696:0,411205,112570 -) -k1,16582:26982381,29792696:229282 -(1,16582:26982381,29792696:0,452978,115847 -r1,16611:27340647,29792696:358266,568825,115847 -k1,16582:26982381,29792696:-358266 -) -(1,16582:26982381,29792696:358266,452978,115847 -k1,16582:26982381,29792696:3277 -h1,16582:27337370,29792696:0,411205,112570 -) -k1,16582:27569929,29792696:229282 -k1,16582:28990656,29792696:229282 -(1,16582:28990656,29792696:0,452978,115847 -r1,16611:29348922,29792696:358266,568825,115847 -k1,16582:28990656,29792696:-358266 -) -(1,16582:28990656,29792696:358266,452978,115847 -k1,16582:28990656,29792696:3277 -h1,16582:29345645,29792696:0,411205,112570 -) -k1,16582:29751874,29792696:229282 -k1,16582:32583029,29792696:0 -) -(1,16583:6630773,30634184:25952256,513147,134348 -k1,16582:10445361,30634184:147849 -k1,16582:13353586,30634184:147849 -k1,16582:16728428,30634184:147849 -k1,16582:18457661,30634184:147849 -k1,16582:19553161,30634184:147849 -k1,16582:22304756,30634184:147850 -k1,16582:25138926,30634184:147849 -k1,16582:27605439,30634184:147849 -k1,16582:28412580,30634184:147849 -k1,16582:30808314,30634184:147849 -k1,16583:32583029,30634184:0 -) -(1,16583:6630773,31475672:25952256,513147,126483 -(1,16582:6630773,31475672:0,414482,115847 -r1,16611:6989039,31475672:358266,530329,115847 -k1,16582:6630773,31475672:-358266 -) -(1,16582:6630773,31475672:358266,414482,115847 -k1,16582:6630773,31475672:3277 -h1,16582:6985762,31475672:0,411205,112570 -) -k1,16582:7224716,31475672:235677 -k1,16582:9472348,31475672:235677 -k1,16582:12470368,31475672:235677 -k1,16582:15198379,31475672:235677 -(1,16582:15198379,31475672:0,452978,115847 -r1,16611:15556645,31475672:358266,568825,115847 -k1,16582:15198379,31475672:-358266 -) -(1,16582:15198379,31475672:358266,452978,115847 -k1,16582:15198379,31475672:3277 -h1,16582:15553368,31475672:0,411205,112570 -) -k1,16582:15792322,31475672:235677 -k1,16582:19199286,31475672:235677 -k1,16582:21509176,31475672:235676 -k1,16582:23044432,31475672:235677 -k1,16582:24041637,31475672:235677 -k1,16582:25750563,31475672:235677 -k1,16582:27177685,31475672:235677 -(1,16582:27177685,31475672:0,452978,115847 -r1,16611:27535951,31475672:358266,568825,115847 -k1,16582:27177685,31475672:-358266 -) -(1,16582:27177685,31475672:358266,452978,115847 -k1,16582:27177685,31475672:3277 -h1,16582:27532674,31475672:0,411205,112570 -) -k1,16582:27771628,31475672:235677 -k1,16582:31178592,31475672:235677 -k1,16583:32583029,31475672:0 -) -(1,16583:6630773,32317160:25952256,513147,134348 -k1,16582:7793300,32317160:279757 -k1,16582:8882427,32317160:279757 -k1,16582:10234352,32317160:279756 -k1,16582:11173401,32317160:279757 -k1,16582:12904780,32317160:279757 -k1,16582:15060177,32317160:279757 -k1,16582:16536621,32317160:279757 -k1,16582:18423976,32317160:279757 -k1,16582:19355160,32317160:279756 -k1,16582:20382683,32317160:279757 -k1,16582:22175666,32317160:279757 -k1,16582:23141585,32317160:279757 -k1,16582:25495556,32317160:279757 -k1,16582:26879594,32317160:279756 -k1,16582:27907117,32317160:279757 -k1,16582:30847636,32317160:279757 -k1,16582:32583029,32317160:0 -) -(1,16583:6630773,33158648:25952256,505283,126483 -k1,16583:32583028,33158648:21924412 -g1,16583:32583028,33158648 -) -(1,16586:6630773,33824826:25952256,505283,134348 -h1,16584:6630773,33824826:983040,0,0 -g1,16584:8766591,33824826 -g1,16584:10454143,33824826 -g1,16584:11414900,33824826 -g1,16584:14186417,33824826 -g1,16584:15577091,33824826 -g1,16584:17809902,33824826 -g1,16584:19663915,33824826 -g1,16584:21644413,33824826 -k1,16586:32583029,33824826:10938616 -g1,16586:32583029,33824826 -) -v1,16586:6630773,35015292:0,393216,0 -(1,16599:6630773,41332282:25952256,6710206,196608 -g1,16599:6630773,41332282 -g1,16599:6630773,41332282 -g1,16599:6434165,41332282 -(1,16599:6434165,41332282:0,6710206,196608 -r1,16611:32779637,41332282:26345472,6906814,196608 -k1,16599:6434165,41332282:-26345472 -) -(1,16599:6434165,41332282:26345472,6710206,196608 -[1,16599:6630773,41332282:25952256,6513598,0 -(1,16588:6630773,35229202:25952256,410518,107478 -(1,16587:6630773,35229202:0,0,0 -g1,16587:6630773,35229202 -g1,16587:6630773,35229202 -g1,16587:6303093,35229202 -(1,16587:6303093,35229202:0,0,0 -) -g1,16587:6630773,35229202 -) -g1,16588:7579210,35229202 -g1,16588:8527648,35229202 -g1,16588:12321397,35229202 -g1,16588:15799000,35229202 -g1,16588:17379729,35229202 -g1,16588:19276603,35229202 -g1,16588:19908895,35229202 -g1,16588:24334935,35229202 -h1,16588:24651081,35229202:0,0,0 -k1,16588:32583029,35229202:7931948 -g1,16588:32583029,35229202 -) -(1,16589:6630773,35895380:25952256,404226,107478 -h1,16589:6630773,35895380:0,0,0 -g1,16589:6946919,35895380 -g1,16589:7263065,35895380 -g1,16589:7579211,35895380 -g1,16589:7895357,35895380 -g1,16589:8211503,35895380 -g1,16589:8527649,35895380 -g1,16589:8843795,35895380 -g1,16589:9159941,35895380 -g1,16589:13269835,35895380 -h1,16589:13585981,35895380:0,0,0 -k1,16589:32583029,35895380:18997048 -g1,16589:32583029,35895380 -) -(1,16590:6630773,36561558:25952256,404226,107478 -h1,16590:6630773,36561558:0,0,0 -g1,16590:6946919,36561558 -g1,16590:7263065,36561558 -g1,16590:7579211,36561558 -g1,16590:7895357,36561558 -g1,16590:8211503,36561558 -g1,16590:8527649,36561558 -g1,16590:8843795,36561558 -g1,16590:9159941,36561558 -g1,16590:16115146,36561558 -g1,16590:16747438,36561558 -h1,16590:18644312,36561558:0,0,0 -k1,16590:32583029,36561558:13938717 -g1,16590:32583029,36561558 -) -(1,16591:6630773,37227736:25952256,410518,107478 -h1,16591:6630773,37227736:0,0,0 -g1,16591:7579210,37227736 -g1,16591:8527648,37227736 -g1,16591:12321397,37227736 -g1,16591:15799000,37227736 -g1,16591:17379729,37227736 -g1,16591:19276603,37227736 -g1,16591:19908895,37227736 -g1,16591:24651080,37227736 -h1,16591:24967226,37227736:0,0,0 -k1,16591:32583029,37227736:7615803 -g1,16591:32583029,37227736 -) -(1,16592:6630773,37893914:25952256,404226,107478 -h1,16592:6630773,37893914:0,0,0 -g1,16592:6946919,37893914 -g1,16592:7263065,37893914 -g1,16592:7579211,37893914 -g1,16592:7895357,37893914 -g1,16592:8211503,37893914 -g1,16592:8527649,37893914 -g1,16592:8843795,37893914 -g1,16592:9159941,37893914 -g1,16592:13269835,37893914 -h1,16592:13585981,37893914:0,0,0 -k1,16592:32583029,37893914:18997048 -g1,16592:32583029,37893914 -) -(1,16593:6630773,38560092:25952256,404226,107478 -h1,16593:6630773,38560092:0,0,0 -g1,16593:6946919,38560092 -g1,16593:7263065,38560092 -g1,16593:7579211,38560092 -g1,16593:7895357,38560092 -g1,16593:8211503,38560092 -g1,16593:8527649,38560092 -g1,16593:8843795,38560092 -g1,16593:9159941,38560092 -g1,16593:16115146,38560092 -g1,16593:16747438,38560092 -h1,16593:18644312,38560092:0,0,0 -k1,16593:32583029,38560092:13938717 -g1,16593:32583029,38560092 -) -(1,16594:6630773,39226270:25952256,410518,107478 -h1,16594:6630773,39226270:0,0,0 -g1,16594:7579210,39226270 -g1,16594:8527648,39226270 -g1,16594:12321397,39226270 -g1,16594:18328166,39226270 -g1,16594:20225040,39226270 -h1,16594:20541186,39226270:0,0,0 -k1,16594:32583029,39226270:12041843 -g1,16594:32583029,39226270 -) -(1,16595:6630773,39892448:25952256,404226,107478 -h1,16595:6630773,39892448:0,0,0 -g1,16595:6946919,39892448 -g1,16595:7263065,39892448 -g1,16595:7579211,39892448 -g1,16595:7895357,39892448 -g1,16595:8211503,39892448 -g1,16595:8527649,39892448 -g1,16595:8843795,39892448 -g1,16595:9159941,39892448 -g1,16595:13269835,39892448 -h1,16595:13585981,39892448:0,0,0 -k1,16595:32583029,39892448:18997048 -g1,16595:32583029,39892448 -) -(1,16596:6630773,40558626:25952256,404226,76021 -h1,16596:6630773,40558626:0,0,0 -g1,16596:6946919,40558626 -g1,16596:7263065,40558626 -g1,16596:7579211,40558626 -g1,16596:7895357,40558626 -g1,16596:8211503,40558626 -g1,16596:8527649,40558626 -g1,16596:8843795,40558626 -g1,16596:9159941,40558626 -g1,16596:14850563,40558626 -h1,16596:15166709,40558626:0,0,0 -k1,16596:32583029,40558626:17416320 -g1,16596:32583029,40558626 -) -(1,16597:6630773,41224804:25952256,404226,107478 -h1,16597:6630773,41224804:0,0,0 -g1,16597:6946919,41224804 -g1,16597:7263065,41224804 -g1,16597:7579211,41224804 -g1,16597:7895357,41224804 -g1,16597:8211503,41224804 -g1,16597:8527649,41224804 -g1,16597:8843795,41224804 -g1,16597:9159941,41224804 -g1,16597:9476087,41224804 -g1,16597:9792233,41224804 -g1,16597:10108379,41224804 -g1,16597:10424525,41224804 -g1,16597:10740671,41224804 -g1,16597:11056817,41224804 -g1,16597:11372963,41224804 -g1,16597:11689109,41224804 -g1,16597:17695877,41224804 -g1,16597:18328169,41224804 -g1,16597:19592752,41224804 -g1,16597:21489626,41224804 -g1,16597:22121918,41224804 -g1,16597:23070356,41224804 -g1,16597:24967230,41224804 -g1,16597:25599522,41224804 -h1,16597:27180250,41224804:0,0,0 -k1,16597:32583029,41224804:5402779 -g1,16597:32583029,41224804 -) -] -) -g1,16599:32583029,41332282 -g1,16599:6630773,41332282 -g1,16599:6630773,41332282 -g1,16599:32583029,41332282 -g1,16599:32583029,41332282 -) -h1,16599:6630773,41528890:0,0,0 -(1,16603:6630773,42894666:25952256,505283,134348 -h1,16602:6630773,42894666:983040,0,0 -k1,16602:9424526,42894666:175590 -k1,16602:10468467,42894666:175589 -k1,16602:13485043,42894666:175590 -k1,16602:14016493,42894666:175590 -k1,16602:15469380,42894666:175590 -k1,16602:17380362,42894666:175589 -k1,16602:18242114,42894666:175590 -k1,16602:20491918,42894666:175590 -k1,16602:21686592,42894666:175589 -k1,16602:23516966,42894666:175590 -k1,16602:25300154,42894666:175590 -k1,16602:27825865,42894666:175590 -k1,16602:29856778,42894666:175589 -k1,16602:31516758,42894666:175590 -k1,16602:32583029,42894666:0 -) -(1,16603:6630773,43736154:25952256,505283,95026 -k1,16603:32583030,43736154:23495968 -g1,16603:32583030,43736154 -) -v1,16607:6630773,44926620:0,393216,0 -] -(1,16611:32583029,45706769:0,0,0 -g1,16611:32583029,45706769 -) -) -] -(1,16611:6630773,47279633:25952256,0,0 -h1,16611:6630773,47279633:25952256,0,0 -) -] -(1,16611:4262630,4025873:0,0,0 -[1,16611:-473656,4025873:0,0,0 -(1,16611:-473656,-710413:0,0,0 -(1,16611:-473656,-710413:0,0,0 -g1,16611:-473656,-710413 -) -g1,16611:-473656,-710413 -) -] -) -] -!19225 -}324 -Input:2702:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2703:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!196 -{325 -[1,16641:4262630,47279633:28320399,43253760,0 -(1,16641:4262630,4025873:0,0,0 -[1,16641:-473656,4025873:0,0,0 -(1,16641:-473656,-710413:0,0,0 -(1,16641:-473656,-644877:0,0,0 -k1,16641:-473656,-644877:-65536 -) -(1,16641:-473656,4736287:0,0,0 -k1,16641:-473656,4736287:5209943 -) -g1,16641:-473656,-710413 -) -] -) -[1,16641:6630773,47279633:25952256,43253760,0 -[1,16641:6630773,4812305:25952256,786432,0 -(1,16641:6630773,4812305:25952256,513147,134348 -(1,16641:6630773,4812305:25952256,513147,134348 -g1,16641:3078558,4812305 -[1,16641:3078558,4812305:0,0,0 -(1,16641:3078558,2439708:0,1703936,0 -k1,16641:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,16641:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,16641:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,16641:3078558,4812305:0,0,0 -(1,16641:3078558,2439708:0,1703936,0 -g1,16641:29030814,2439708 -g1,16641:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,16641:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,16641:37855564,2439708:1179648,16384,0 -) -) -k1,16641:3078556,2439708:-34777008 -) -] -[1,16641:3078558,4812305:0,0,0 -(1,16641:3078558,49800853:0,16384,2228224 -k1,16641:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,16641:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,16641:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,16641:3078558,4812305:0,0,0 -(1,16641:3078558,49800853:0,16384,2228224 -g1,16641:29030814,49800853 -g1,16641:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,16641:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,16641:37855564,49800853:1179648,16384,0 -) -) -k1,16641:3078556,49800853:-34777008 -) -] -g1,16641:6630773,4812305 -k1,16641:25712890,4812305:17886740 -g1,16641:29057847,4812305 -g1,16641:29873114,4812305 -) -) -] -[1,16641:6630773,45706769:25952256,40108032,0 -(1,16641:6630773,45706769:25952256,40108032,0 -(1,16641:6630773,45706769:0,0,0 -g1,16641:6630773,45706769 -) -[1,16641:6630773,45706769:25952256,40108032,0 -v1,16611:6630773,6254097:0,393216,0 -(1,16611:6630773,6562902:25952256,702021,196608 -g1,16611:6630773,6562902 -g1,16611:6630773,6562902 -g1,16611:6434165,6562902 -(1,16611:6434165,6562902:0,702021,196608 -r1,16641:32779637,6562902:26345472,898629,196608 -k1,16611:6434165,6562902:-26345472 -) -(1,16611:6434165,6562902:26345472,702021,196608 -[1,16611:6630773,6562902:25952256,505413,0 -(1,16609:6630773,6461715:25952256,404226,101187 -(1,16608:6630773,6461715:0,0,0 -g1,16608:6630773,6461715 -g1,16608:6630773,6461715 -g1,16608:6303093,6461715 -(1,16608:6303093,6461715:0,0,0 -) -g1,16608:6630773,6461715 -) -g1,16609:7895356,6461715 -g1,16609:8527648,6461715 -g1,16609:9792231,6461715 -g1,16609:10424523,6461715 -h1,16609:11056814,6461715:0,0,0 -k1,16609:32583030,6461715:21526216 -g1,16609:32583030,6461715 -) -] -) -g1,16611:32583029,6562902 -g1,16611:6630773,6562902 -g1,16611:6630773,6562902 -g1,16611:32583029,6562902 -g1,16611:32583029,6562902 -) -h1,16611:6630773,6759510:0,0,0 -(1,16615:6630773,8035235:25952256,505283,134348 -h1,16614:6630773,8035235:983040,0,0 -k1,16614:8754140,8035235:186778 -k1,16614:10138260,8035235:186777 -k1,16614:10680898,8035235:186778 -k1,16614:12135141,8035235:186777 -k1,16614:13513364,8035235:186778 -k1,16614:14687113,8035235:186777 -k1,16614:15892976,8035235:186778 -k1,16614:18153967,8035235:186777 -k1,16614:19734696,8035235:186778 -k1,16614:20277334,8035235:186778 -k1,16614:22339751,8035235:186777 -k1,16614:23154364,8035235:186778 -k1,16614:24718052,8035235:186777 -k1,16614:26096275,8035235:186778 -k1,16614:28485062,8035235:186777 -k1,16614:30542893,8035235:186778 -k1,16615:32583029,8035235:0 -) -(1,16615:6630773,8876723:25952256,513147,126483 -g1,16614:8857031,8876723 -g1,16614:10393194,8876723 -g1,16614:11340189,8876723 -g1,16614:13837766,8876723 -g1,16614:14688423,8876723 -g1,16614:16341241,8876723 -g1,16614:17559555,8876723 -g1,16614:20024364,8876723 -g1,16614:23824796,8876723 -g1,16614:24683317,8876723 -g1,16614:25901631,8876723 -g1,16614:26515703,8876723 -k1,16615:32583029,8876723:2816740 -g1,16615:32583029,8876723 -) -v1,16617:6630773,9977137:0,393216,0 -(1,16622:6630773,10958411:25952256,1374490,196608 -g1,16622:6630773,10958411 -g1,16622:6630773,10958411 -g1,16622:6434165,10958411 -(1,16622:6434165,10958411:0,1374490,196608 -r1,16641:32779637,10958411:26345472,1571098,196608 -k1,16622:6434165,10958411:-26345472 -) -(1,16622:6434165,10958411:26345472,1374490,196608 -[1,16622:6630773,10958411:25952256,1177882,0 -(1,16619:6630773,10184755:25952256,404226,101187 -(1,16618:6630773,10184755:0,0,0 -g1,16618:6630773,10184755 -g1,16618:6630773,10184755 -g1,16618:6303093,10184755 -(1,16618:6303093,10184755:0,0,0 -) -g1,16618:6630773,10184755 -) -g1,16619:8211502,10184755 -g1,16619:8843794,10184755 -g1,16619:10108377,10184755 -g1,16619:10740669,10184755 -g1,16619:12005252,10184755 -h1,16619:12321398,10184755:0,0,0 -k1,16619:32583030,10184755:20261632 -g1,16619:32583030,10184755 -) -(1,16620:6630773,10850933:25952256,410518,107478 -h1,16620:6630773,10850933:0,0,0 -g1,16620:6946919,10850933 -g1,16620:7263065,10850933 -g1,16620:7579211,10850933 -g1,16620:14534416,10850933 -g1,16620:15166708,10850933 -g1,16620:17063582,10850933 -g1,16620:18328165,10850933 -g1,16620:19276602,10850933 -g1,16620:20857331,10850933 -g1,16620:24334934,10850933 -g1,16620:27812537,10850933 -g1,16620:28444829,10850933 -h1,16620:29709413,10850933:0,0,0 -k1,16620:32583029,10850933:2873616 -g1,16620:32583029,10850933 -) -] -) -g1,16622:32583029,10958411 -g1,16622:6630773,10958411 -g1,16622:6630773,10958411 -g1,16622:32583029,10958411 -g1,16622:32583029,10958411 -) -h1,16622:6630773,11155019:0,0,0 -(1,16625:6630773,35011241:25952256,23356449,0 -k1,16625:7928465,35011241:1297692 -h1,16624:7928465,35011241:0,0,0 -(1,16624:7928465,35011241:23356872,23356449,0 -(1,16624:7928465,35011241:23356506,23356506,0 -(1,16624:7928465,35011241:23356506,23356506,0 -(1,16624:7928465,35011241:0,23356506,0 -(1,16624:7928465,35011241:0,37890292,0 -(1,16624:7928465,35011241:37890292,37890292,0 -) -k1,16624:7928465,35011241:-37890292 -) -) -g1,16624:31284971,35011241 -) -) -) -g1,16625:31285337,35011241 -k1,16625:32583029,35011241:1297692 -) -(1,16635:6630773,35852729:25952256,513147,134348 -h1,16633:6630773,35852729:983040,0,0 -k1,16633:10296803,35852729:148057 -k1,16633:14111598,35852729:148056 -k1,16633:15360660,35852729:148057 -k1,16633:16124754,35852729:148056 -k1,16633:18261173,35852729:148057 -k1,16633:21073268,35852729:148056 -k1,16633:22802709,35852729:148057 -k1,16633:23898417,35852729:148057 -k1,16633:25065558,35852729:148056 -k1,16633:27806219,35852729:148057 -k1,16633:28613567,35852729:148056 -k1,16633:31447945,35852729:148057 -k1,16635:32583029,35852729:0 -) -(1,16635:6630773,36694217:25952256,513147,134348 -k1,16633:8390465,36694217:189449 -k1,16633:11245920,36694217:189450 -k1,16633:12094661,36694217:189449 -k1,16633:14164994,36694217:189450 -k1,16633:15545888,36694217:189449 -k1,16633:19090125,36694217:189449 -k1,16633:19895613,36694217:189450 -k1,16633:21104147,36694217:189449 -k1,16633:22947069,36694217:189449 -k1,16633:25124881,36694217:189450 -k1,16633:26921928,36694217:189449 -k1,16633:28302823,36694217:189450 -k1,16633:30194242,36694217:189449 -k1,16633:32583029,36694217:0 -) -(1,16635:6630773,37535705:25952256,505283,134348 -g1,16633:9119830,37535705 -g1,16633:10812625,37535705 -g1,16633:11698016,37535705 -g1,16633:14482640,37535705 -g1,16633:16175435,37535705 -g1,16633:17060826,37535705 -g1,16633:21325909,37535705 -g1,16633:22716583,37535705 -g1,16633:24382508,37535705 -g1,16633:26651364,37535705 -k1,16635:32583029,37535705:5931665 -g1,16635:32583029,37535705 -) -(1,16636:6630773,40343273:25952256,32768,229376 -(1,16636:6630773,40343273:0,32768,229376 -(1,16636:6630773,40343273:5505024,32768,229376 -r1,16641:12135797,40343273:5505024,262144,229376 -) -k1,16636:6630773,40343273:-5505024 -) -(1,16636:6630773,40343273:25952256,32768,0 -r1,16641:32583029,40343273:25952256,32768,0 -) -) -(1,16636:6630773,41947601:25952256,606339,161218 -(1,16636:6630773,41947601:2464678,582746,14155 -g1,16636:6630773,41947601 -g1,16636:9095451,41947601 -) -g1,16636:11581363,41947601 -(1,16636:11581363,41947601:0,542918,138361 -r1,16641:14964351,41947601:3382988,681279,138361 -k1,16636:11581363,41947601:-3382988 -) -(1,16636:11581363,41947601:3382988,542918,138361 -k1,16636:11581363,41947601:3277 -h1,16636:14961074,41947601:0,493446,135084 -) -g1,16636:15209718,41947601 -k1,16636:32583029,41947601:12643709 -g1,16636:32583029,41947601 -) -(1,16640:6630773,43182305:25952256,513147,134348 -k1,16639:7469416,43182305:210808 -k1,16639:10289212,43182305:210808 -h1,16639:11831930,43182305:0,0,0 -k1,16639:12042738,43182305:210808 -k1,16639:13444991,43182305:210808 -h1,16639:14987709,43182305:0,0,0 -k1,16639:15198518,43182305:210809 -k1,16639:16277678,43182305:210808 -k1,16639:17923069,43182305:210808 -k1,16639:19826017,43182305:210808 -k1,16639:22161502,43182305:210808 -k1,16639:25364029,43182305:210808 -k1,16639:26234129,43182305:210808 -k1,16639:27464022,43182305:210808 -k1,16639:28767315,43182305:210808 -k1,16639:29645280,43182305:210809 -k1,16639:30270919,43182305:210796 -k1,16640:32583029,43182305:0 -) -(1,16640:6630773,44023793:25952256,513147,134348 -k1,16639:8550006,44023793:248065 -k1,16639:9414108,44023793:248064 -k1,16639:11443442,44023793:248065 -k1,16639:12888193,44023793:248064 -(1,16639:12888193,44023793:0,452978,115847 -r1,16641:15708442,44023793:2820249,568825,115847 -k1,16639:12888193,44023793:-2820249 -) -(1,16639:12888193,44023793:2820249,452978,115847 -k1,16639:12888193,44023793:3277 -h1,16639:15705165,44023793:0,411205,112570 -) -k1,16639:15956507,44023793:248065 -k1,16639:17987151,44023793:248065 -k1,16639:19426660,44023793:248064 -k1,16639:21062778,44023793:248065 -k1,16639:21926881,44023793:248065 -k1,16639:22589739,44023793:248015 -k1,16639:25267879,44023793:248065 -k1,16639:27876550,44023793:248064 -k1,16639:31931601,44023793:248065 -k1,16639:32583029,44023793:0 -) -(1,16640:6630773,44865281:25952256,505283,134348 -k1,16639:8298665,44865281:179569 -k1,16639:10213626,44865281:179568 -k1,16639:14163481,44865281:179569 -k1,16639:14959087,44865281:179568 -k1,16639:16919925,44865281:179569 -k1,16639:20034195,44865281:179568 -k1,16639:23697658,44865281:179569 -k1,16639:27848708,44865281:179568 -k1,16639:30270919,44865281:179569 -k1,16640:32583029,44865281:0 -) -(1,16640:6630773,45706769:25952256,505283,134348 -k1,16639:8500396,45706769:198455 -k1,16639:9803132,45706769:198454 -k1,16639:10749353,45706769:198455 -k1,16639:14588988,45706769:198455 -k1,16639:17317133,45706769:198455 -k1,16639:19024226,45706769:198454 -k1,16639:21306726,45706769:198455 -k1,16639:22036678,45706769:198455 -k1,16639:24186795,45706769:198455 -k1,16639:27109581,45706769:198454 -k1,16639:30270919,45706769:198455 -k1,16640:32583029,45706769:0 -) -] -(1,16641:32583029,45706769:0,0,0 -g1,16641:32583029,45706769 -) -) -] -(1,16641:6630773,47279633:25952256,0,0 -h1,16641:6630773,47279633:25952256,0,0 -) -] -(1,16641:4262630,4025873:0,0,0 -[1,16641:-473656,4025873:0,0,0 -(1,16641:-473656,-710413:0,0,0 -(1,16641:-473656,-710413:0,0,0 -g1,16641:-473656,-710413 -) -g1,16641:-473656,-710413 -) -] -) -] -!12075 -}325 -Input:2704:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2705:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2706:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2707:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2708:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2709:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2710:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2711:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2712:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2713:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2714:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2715:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2716:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2717:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1300 -{326 -[1,16686:4262630,47279633:28320399,43253760,0 -(1,16686:4262630,4025873:0,0,0 -[1,16686:-473656,4025873:0,0,0 -(1,16686:-473656,-710413:0,0,0 -(1,16686:-473656,-644877:0,0,0 -k1,16686:-473656,-644877:-65536 -) -(1,16686:-473656,4736287:0,0,0 -k1,16686:-473656,4736287:5209943 -) -g1,16686:-473656,-710413 -) -] -) -[1,16686:6630773,47279633:25952256,43253760,0 -[1,16686:6630773,4812305:25952256,786432,0 -(1,16686:6630773,4812305:25952256,505283,134348 -(1,16686:6630773,4812305:25952256,505283,134348 -g1,16686:3078558,4812305 -[1,16686:3078558,4812305:0,0,0 -(1,16686:3078558,2439708:0,1703936,0 -k1,16686:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,16686:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,16686:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,16686:3078558,4812305:0,0,0 -(1,16686:3078558,2439708:0,1703936,0 -g1,16686:29030814,2439708 -g1,16686:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,16686:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,16686:37855564,2439708:1179648,16384,0 -) -) -k1,16686:3078556,2439708:-34777008 -) -] -[1,16686:3078558,4812305:0,0,0 -(1,16686:3078558,49800853:0,16384,2228224 -k1,16686:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,16686:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,16686:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,16686:3078558,4812305:0,0,0 -(1,16686:3078558,49800853:0,16384,2228224 -g1,16686:29030814,49800853 -g1,16686:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,16686:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,16686:37855564,49800853:1179648,16384,0 -) -) -k1,16686:3078556,49800853:-34777008 -) -] -g1,16686:6630773,4812305 -g1,16686:6630773,4812305 -g1,16686:8592265,4812305 -g1,16686:11642310,4812305 -g1,16686:15396212,4812305 -k1,16686:31387652,4812305:15991440 -) -) -] -[1,16686:6630773,45706769:25952256,40108032,0 -(1,16686:6630773,45706769:25952256,40108032,0 -(1,16686:6630773,45706769:0,0,0 -g1,16686:6630773,45706769 -) -[1,16686:6630773,45706769:25952256,40108032,0 -(1,16640:6630773,6254097:25952256,513147,134348 -k1,16639:8453023,6254097:151082 -k1,16639:9595666,6254097:151083 -k1,16639:11822273,6254097:151082 -k1,16639:13371238,6254097:151082 -k1,16639:14138359,6254097:151083 -k1,16639:15308526,6254097:151082 -k1,16639:17828735,6254097:151082 -k1,16639:18639110,6254097:151083 -k1,16639:21488309,6254097:151082 -k1,16639:23019579,6254097:151082 -k1,16639:24162222,6254097:151083 -k1,16639:25599120,6254097:151082 -k1,16639:27263428,6254097:151082 -k1,16639:28030549,6254097:151083 -k1,16639:29883601,6254097:151082 -k1,16639:32583029,6254097:0 -) -(1,16640:6630773,7095585:25952256,505283,7863 -g1,16639:7446040,7095585 -g1,16639:8060112,7095585 -k1,16640:32583029,7095585:22853060 -g1,16640:32583029,7095585 -) -(1,16642:6630773,7937073:25952256,513147,134348 -h1,16641:6630773,7937073:983040,0,0 -k1,16641:8766001,7937073:524353 -k1,16641:11623436,7937073:524353 -k1,16641:12605887,7937073:524354 -k1,16641:13661737,7937073:524353 -k1,16641:16816050,7937073:524353 -k1,16641:17991831,7937073:524353 -k1,16641:20445565,7937073:524354 -k1,16641:24547529,7937073:524353 -k1,16641:27969229,7937073:524353 -k1,16641:29887533,7937073:524353 -k1,16642:32583029,7937073:0 -) -(1,16642:6630773,8778561:25952256,513147,134348 -(1,16641:6630773,8778561:0,452978,115847 -r1,16686:10857869,8778561:4227096,568825,115847 -k1,16641:6630773,8778561:-4227096 -) -(1,16641:6630773,8778561:4227096,452978,115847 -k1,16641:6630773,8778561:3277 -h1,16641:10854592,8778561:0,411205,112570 -) -k1,16641:11278457,8778561:246918 -k1,16641:12208259,8778561:246917 -k1,16641:13216705,8778561:246918 -k1,16641:15849134,8778561:246918 -k1,16641:16451911,8778561:246917 -k1,16641:19673508,8778561:246918 -k1,16641:21959906,8778561:246918 -k1,16641:22834659,8778561:246918 -k1,16641:24100661,8778561:246917 -k1,16641:25714660,8778561:246918 -k1,16641:26620870,8778561:246918 -k1,16641:29696320,8778561:246917 -k1,16641:30890889,8778561:246918 -k1,16641:32583029,8778561:0 -) -(1,16642:6630773,9620049:25952256,505283,126483 -k1,16641:8125070,9620049:217000 -k1,16641:11384907,9620049:217000 -k1,16641:13489999,9620049:217000 -k1,16641:16057120,9620049:217000 -k1,16641:17668071,9620049:217000 -(1,16641:17668071,9620049:0,414482,122846 -r1,16686:20840031,9620049:3171960,537328,122846 -k1,16641:17668071,9620049:-3171960 -) -(1,16641:17668071,9620049:3171960,414482,122846 -k1,16641:17668071,9620049:3277 -h1,16641:20836754,9620049:0,411205,112570 -) -k1,16641:21057031,9620049:217000 -k1,16641:22465476,9620049:217000 -(1,16641:22465476,9620049:0,452978,122846 -r1,16686:25989148,9620049:3523672,575824,122846 -k1,16641:22465476,9620049:-3523672 -) -(1,16641:22465476,9620049:3523672,452978,122846 -k1,16641:22465476,9620049:3277 -h1,16641:25985871,9620049:0,411205,112570 -) -k1,16641:26379818,9620049:217000 -k1,16641:27788263,9620049:217000 -k1,16641:29024348,9620049:217000 -k1,16641:30738846,9620049:217000 -k1,16641:32583029,9620049:0 -) -(1,16642:6630773,10461537:25952256,513147,134348 -k1,16641:7458559,10461537:168494 -k1,16641:9515801,10461537:168494 -k1,16641:10703380,10461537:168494 -k1,16641:13257385,10461537:168494 -k1,16641:13957376,10461537:168494 -k1,16641:16584125,10461537:168494 -k1,16641:17944065,10461537:168495 -k1,16641:20484307,10461537:168494 -k1,16641:21304229,10461537:168494 -k1,16641:24058118,10461537:168494 -k1,16641:27201291,10461537:168494 -k1,16641:30211426,10461537:168494 -k1,16641:30995958,10461537:168494 -(1,16641:30995958,10461537:0,452978,115847 -r1,16686:32409359,10461537:1413401,568825,115847 -k1,16641:30995958,10461537:-1413401 -) -(1,16641:30995958,10461537:1413401,452978,115847 -k1,16641:30995958,10461537:3277 -h1,16641:32406082,10461537:0,411205,112570 -) -k1,16641:32583029,10461537:0 -) -(1,16642:6630773,11303025:25952256,513147,134348 -k1,16641:7459386,11303025:200778 -k1,16641:10465106,11303025:200779 -k1,16641:11613535,11303025:200778 -k1,16641:13585751,11303025:200778 -k1,16641:16703536,11303025:200778 -k1,16641:19785933,11303025:200779 -k1,16641:23469950,11303025:200778 -k1,16641:24782219,11303025:200778 -k1,16641:27983891,11303025:200778 -k1,16641:29469176,11303025:200779 -k1,16641:30201451,11303025:200778 -k1,16641:32583029,11303025:0 -) -(1,16642:6630773,12144513:25952256,505283,126483 -k1,16641:8834546,12144513:193784 -(1,16641:8834546,12144513:0,452978,115847 -r1,16686:10951371,12144513:2116825,568825,115847 -k1,16641:8834546,12144513:-2116825 -) -(1,16641:8834546,12144513:2116825,452978,115847 -k1,16641:8834546,12144513:3277 -h1,16641:10948094,12144513:0,411205,112570 -) -k1,16641:11352249,12144513:193784 -k1,16641:12565118,12144513:193784 -k1,16641:16529188,12144513:193784 -k1,16641:18198187,12144513:193784 -k1,16641:19043399,12144513:193784 -k1,16641:19984948,12144513:193783 -k1,16641:22601598,12144513:193784 -k1,16641:25866399,12144513:193784 -k1,16641:26743068,12144513:193784 -k1,16641:28748267,12144513:193784 -k1,16641:29628213,12144513:193784 -k1,16641:31315563,12144513:193784 -k1,16641:32583029,12144513:0 -) -(1,16642:6630773,12986001:25952256,505283,134348 -g1,16641:7185862,12986001 -g1,16641:10070101,12986001 -g1,16641:11460775,12986001 -g1,16641:12679089,12986001 -g1,16641:15389658,12986001 -g1,16641:17794174,12986001 -g1,16641:18679565,12986001 -g1,16641:19649497,12986001 -k1,16642:32583029,12986001:9687534 -g1,16642:32583029,12986001 -) -(1,16644:6630773,13827489:25952256,505283,134348 -h1,16643:6630773,13827489:983040,0,0 -k1,16643:9623123,13827489:226075 -k1,16643:12373645,13827489:226075 -k1,16643:16370006,13827489:226075 -k1,16643:18331474,13827489:226075 -(1,16643:18331474,13827489:0,452978,122846 -r1,16686:22206858,13827489:3875384,575824,122846 -k1,16643:18331474,13827489:-3875384 -) -(1,16643:18331474,13827489:3875384,452978,122846 -k1,16643:18331474,13827489:3277 -h1,16643:22203581,13827489:0,411205,112570 -) -k1,16643:22606604,13827489:226076 -k1,16643:24117185,13827489:226075 -k1,16643:27317939,13827489:226075 -k1,16643:29740125,13827489:226075 -k1,16643:30957760,13827489:226075 -k1,16643:31835263,13827489:226075 -k1,16643:32583029,13827489:0 -) -(1,16644:6630773,14668977:25952256,513147,134348 -k1,16643:8985933,14668977:191817 -k1,16643:9709247,14668977:191817 -k1,16643:12550685,14668977:191817 -k1,16643:14136452,14668977:191816 -(1,16643:14136452,14668977:0,414482,115847 -r1,16686:18363548,14668977:4227096,530329,115847 -k1,16643:14136452,14668977:-4227096 -) -(1,16643:14136452,14668977:4227096,414482,115847 -g1,16643:16250000,14668977 -g1,16643:16953424,14668977 -h1,16643:18360271,14668977:0,411205,112570 -) -k1,16643:18729035,14668977:191817 -k1,16643:19548687,14668977:191817 -k1,16643:20759589,14668977:191817 -k1,16643:22318487,14668977:191817 -k1,16643:23169596,14668977:191817 -k1,16643:25423830,14668977:191816 -k1,16643:27113145,14668977:191817 -k1,16643:29322816,14668977:191817 -k1,16643:31900144,14668977:191817 -k1,16643:32583029,14668977:0 -) -(1,16644:6630773,15510465:25952256,513147,126483 -k1,16643:7921317,15510465:224273 -k1,16643:10847640,15510465:224274 -k1,16643:11881283,15510465:224273 -k1,16643:13124642,15510465:224274 -k1,16643:15749499,15510465:224273 -k1,16643:18669269,15510465:224274 -k1,16643:20580439,15510465:224273 -k1,16643:21707143,15510465:224273 -k1,16643:25158410,15510465:224274 -k1,16643:26948993,15510465:224273 -k1,16643:27704764,15510465:224274 -k1,16643:28545075,15510465:224273 -k1,16643:29972590,15510465:224274 -k1,16643:31563944,15510465:224273 -k1,16643:32583029,15510465:0 -) -(1,16644:6630773,16351953:25952256,513147,134348 -g1,16643:10133017,16351953 -g1,16643:10991538,16351953 -g1,16643:14545555,16351953 -g1,16643:16479522,16351953 -g1,16643:19653430,16351953 -g1,16643:22048770,16351953 -g1,16643:23641950,16351953 -g1,16643:25851824,16351953 -g1,16643:27818559,16351953 -g1,16643:29585409,16351953 -(1,16643:29585409,16351953:0,452978,115847 -r1,16686:30998810,16351953:1413401,568825,115847 -k1,16643:29585409,16351953:-1413401 -) -(1,16643:29585409,16351953:1413401,452978,115847 -k1,16643:29585409,16351953:3277 -h1,16643:30995533,16351953:0,411205,112570 -) -k1,16644:32583029,16351953:1410549 -g1,16644:32583029,16351953 -) -(1,16646:6630773,17193441:25952256,513147,134348 -h1,16645:6630773,17193441:983040,0,0 -k1,16645:9020434,17193441:209934 -k1,16645:10832067,17193441:209933 -k1,16645:13525816,17193441:209934 -k1,16645:15397742,17193441:209933 -k1,16645:16259104,17193441:209934 -k1,16645:19728143,17193441:209934 -k1,16645:21636114,17193441:209933 -k1,16645:24103763,17193441:209934 -k1,16645:28083982,17193441:209933 -k1,16645:28825413,17193441:209934 -k1,16645:30365727,17193441:209933 -k1,16645:31227089,17193441:209934 -k1,16646:32583029,17193441:0 -) -(1,16646:6630773,18034929:25952256,513147,126483 -k1,16645:8155407,18034929:171971 -k1,16645:9346463,18034929:171971 -k1,16645:12280777,18034929:171971 -k1,16645:14278581,18034929:171971 -k1,16645:14938113,18034929:171944 -k1,16645:16541390,18034929:171971 -(1,16645:16748484,18034929:0,414482,115847 -r1,16686:17106750,18034929:358266,530329,115847 -k1,16645:16748484,18034929:-358266 -) -(1,16645:16748484,18034929:358266,414482,115847 -k1,16645:16748484,18034929:3277 -h1,16645:17103473,18034929:0,411205,112570 -) -k1,16645:17485815,18034929:171971 -k1,16645:19185430,18034929:171971 -k1,16645:21145223,18034929:171971 -k1,16645:21933232,18034929:171971 -k1,16645:24740406,18034929:171971 -k1,16645:27727804,18034929:171971 -k1,16645:30534322,18034929:171971 -(1,16645:30741416,18034929:0,414482,115847 -r1,16686:31099682,18034929:358266,530329,115847 -k1,16645:30741416,18034929:-358266 -) -(1,16645:30741416,18034929:358266,414482,115847 -k1,16645:30741416,18034929:3277 -h1,16645:31096405,18034929:0,411205,112570 -) -k1,16645:31478747,18034929:171971 -k1,16645:32583029,18034929:0 -) -(1,16646:6630773,18876417:25952256,505283,134348 -k1,16645:7632516,18876417:253977 -k1,16645:9172309,18876417:253977 -k1,16645:10939512,18876417:253977 -k1,16645:11879651,18876417:253977 -k1,16645:12489488,18876417:253977 -k1,16645:16095632,18876417:253977 -k1,16645:17541055,18876417:253978 -k1,16645:18326529,18876417:253977 -k1,16645:20878854,18876417:253977 -k1,16645:23420038,18876417:253977 -k1,16645:25372053,18876417:253977 -k1,16645:27945349,18876417:253977 -k1,16645:29593277,18876417:253977 -k1,16645:32583029,18876417:0 -) -(1,16646:6630773,19717905:25952256,513147,134348 -k1,16645:8592615,19717905:170088 -k1,16645:10550524,19717905:170087 -k1,16645:11252109,19717905:170088 -k1,16645:13871933,19717905:170088 -k1,16645:14658059,19717905:170088 -k1,16645:16520286,19717905:170087 -k1,16645:20020914,19717905:170088 -k1,16645:21263171,19717905:170088 -k1,16645:22499530,19717905:170088 -k1,16645:23285655,19717905:170087 -k1,16645:25661685,19717905:170088 -k1,16645:26660803,19717905:170088 -k1,16645:29168560,19717905:170088 -k1,16645:30527470,19717905:170087 -k1,16645:31356850,19717905:170088 -k1,16645:32583029,19717905:0 -) -(1,16646:6630773,20559393:25952256,513147,134348 -k1,16645:8848137,20559393:207375 -k1,16645:9826214,20559393:207374 -k1,16645:13473574,20559393:207375 -k1,16645:14549300,20559393:207374 -k1,16645:16286941,20559393:207375 -k1,16645:17145743,20559393:207374 -k1,16645:18445603,20559393:207375 -k1,16645:21746933,20559393:207375 -k1,16645:24115029,20559393:207374 -k1,16645:25364426,20559393:207375 -k1,16645:25927660,20559393:207374 -k1,16645:27523743,20559393:207375 -k1,16645:28724643,20559393:207374 -k1,16645:29591310,20559393:207375 -k1,16645:32583029,20559393:0 -) -(1,16646:6630773,21400881:25952256,505283,126483 -k1,16645:8269906,21400881:163918 -k1,16645:8789685,21400881:163919 -k1,16645:10340345,21400881:163918 -k1,16645:11117025,21400881:163918 -k1,16645:12300029,21400881:163919 -k1,16645:14622703,21400881:163918 -k1,16645:15978067,21400881:163919 -k1,16645:17638172,21400881:163918 -k1,16645:20865243,21400881:163918 -k1,16645:21790690,21400881:163919 -(1,16645:21790690,21400881:0,452978,115847 -r1,16686:26721210,21400881:4930520,568825,115847 -k1,16645:21790690,21400881:-4930520 -) -(1,16645:21790690,21400881:4930520,452978,115847 -k1,16645:21790690,21400881:3277 -h1,16645:26717933,21400881:0,411205,112570 -) -k1,16645:26885128,21400881:163918 -k1,16645:27661808,21400881:163918 -k1,16645:28844812,21400881:163919 -k1,16645:29423538,21400881:163883 -k1,16645:32583029,21400881:0 -) -(1,16646:6630773,22242369:25952256,426639,126483 -k1,16646:32583029,22242369:23377346 -g1,16646:32583029,22242369 -) -(1,16649:6630773,23083857:25952256,513147,126483 -h1,16647:6630773,23083857:983040,0,0 -k1,16647:8861568,23083857:294206 -k1,16647:10288236,23083857:294206 -k1,16647:11674927,23083857:294206 -k1,16647:12324994,23083857:294207 -k1,16647:14735358,23083857:294206 -k1,16647:15688856,23083857:294206 -k1,16647:18669383,23083857:294206 -k1,16647:21955308,23083857:294206 -k1,16647:22900942,23083857:294206 -k1,16647:24855831,23083857:294207 -k1,16647:26480418,23083857:294206 -k1,16647:27426052,23083857:294206 -k1,16647:28812743,23083857:294206 -k1,16647:32583029,23083857:0 -) -(1,16649:6630773,23925345:25952256,513147,134348 -k1,16647:7868950,23925345:290526 -k1,16647:10921820,23925345:290527 -k1,16647:14081512,23925345:290526 -k1,16647:15031330,23925345:290526 -k1,16647:15677716,23925345:290526 -k1,16647:17419210,23925345:290527 -k1,16648:18663285,23925345:290526 -k1,16648:20259944,23925345:290526 -k1,16648:22479851,23925345:290527 -k1,16648:23126237,23925345:290526 -k1,16648:24806126,23925345:290526 -k1,16648:27146618,23925345:290526 -k1,16648:29172538,23925345:290527 -(1,16648:29172538,23925345:0,452978,115847 -r1,16686:31641075,23925345:2468537,568825,115847 -k1,16648:29172538,23925345:-2468537 -) -(1,16648:29172538,23925345:2468537,452978,115847 -k1,16648:29172538,23925345:3277 -h1,16648:31637798,23925345:0,411205,112570 -) -k1,16648:31931601,23925345:290526 -k1,16648:32583029,23925345:0 -) -(1,16649:6630773,24766833:25952256,513147,134348 -k1,16648:9738872,24766833:171431 -k1,16648:10266163,24766833:171431 -k1,16648:12415471,24766833:171431 -k1,16648:13246195,24766833:171432 -k1,16648:17162353,24766833:171431 -$1,16648:17162353,24766833 -$1,16648:17670257,24766833 -k1,16648:17841688,24766833:171431 -k1,16648:20023764,24766833:171431 -k1,16648:20881357,24766833:171431 -k1,16648:24027467,24766833:171431 -k1,16648:26395010,24766833:171432 -k1,16648:29078436,24766833:171431 -k1,16648:30197518,24766833:171431 -k1,16648:32583029,24766833:0 -) -(1,16649:6630773,25608321:25952256,473825,126483 -g1,16648:8097468,25608321 -k1,16649:32583029,25608321:20541604 -g1,16649:32583029,25608321 -) -v1,16651:6630773,26798787:0,393216,0 -(1,16659:6630773,29778595:25952256,3373024,196608 -g1,16659:6630773,29778595 -g1,16659:6630773,29778595 -g1,16659:6434165,29778595 -(1,16659:6434165,29778595:0,3373024,196608 -r1,16686:32779637,29778595:26345472,3569632,196608 -k1,16659:6434165,29778595:-26345472 -) -(1,16659:6434165,29778595:26345472,3373024,196608 -[1,16659:6630773,29778595:25952256,3176416,0 -(1,16653:6630773,27006405:25952256,404226,107478 -(1,16652:6630773,27006405:0,0,0 -g1,16652:6630773,27006405 -g1,16652:6630773,27006405 -g1,16652:6303093,27006405 -(1,16652:6303093,27006405:0,0,0 -) -g1,16652:6630773,27006405 -) -k1,16653:6630773,27006405:0 -g1,16653:11689104,27006405 -g1,16653:12321396,27006405 -g1,16653:13902125,27006405 -g1,16653:15482854,27006405 -g1,16653:16431291,27006405 -g1,16653:18644311,27006405 -g1,16653:21489622,27006405 -g1,16653:22754205,27006405 -g1,16653:24334934,27006405 -k1,16653:24334934,27006405:11534 -h1,16653:25611051,27006405:0,0,0 -k1,16653:32583029,27006405:6971978 -g1,16653:32583029,27006405 -) -(1,16654:6630773,27672583:25952256,404226,101187 -h1,16654:6630773,27672583:0,0,0 -g1,16654:9159939,27672583 -k1,16654:9159939,27672583:0 -h1,16654:9792231,27672583:0,0,0 -k1,16654:32583029,27672583:22790798 -g1,16654:32583029,27672583 -) -(1,16655:6630773,28338761:25952256,410518,82312 -h1,16655:6630773,28338761:0,0,0 -g1,16655:6946919,28338761 -g1,16655:7263065,28338761 -g1,16655:11372960,28338761 -g1,16655:12005252,28338761 -k1,16655:12005252,28338761:0 -h1,16655:13269836,28338761:0,0,0 -k1,16655:32583028,28338761:19313192 -g1,16655:32583028,28338761 -) -(1,16656:6630773,29004939:25952256,404226,101187 -h1,16656:6630773,29004939:0,0,0 -g1,16656:6946919,29004939 -g1,16656:7263065,29004939 -g1,16656:7579211,29004939 -g1,16656:7895357,29004939 -g1,16656:8211503,29004939 -g1,16656:8527649,29004939 -g1,16656:8843795,29004939 -g1,16656:9159941,29004939 -g1,16656:9476087,29004939 -g1,16656:9792233,29004939 -g1,16656:10108379,29004939 -g1,16656:10424525,29004939 -g1,16656:10740671,29004939 -g1,16656:11372963,29004939 -g1,16656:12005255,29004939 -k1,16656:12005255,29004939:0 -h1,16656:14850567,29004939:0,0,0 -k1,16656:32583029,29004939:17732462 -g1,16656:32583029,29004939 -) -(1,16657:6630773,29671117:25952256,404226,107478 -h1,16657:6630773,29671117:0,0,0 -g1,16657:6946919,29671117 -g1,16657:7263065,29671117 -g1,16657:7579211,29671117 -g1,16657:7895357,29671117 -g1,16657:8211503,29671117 -g1,16657:8527649,29671117 -g1,16657:8843795,29671117 -g1,16657:9159941,29671117 -g1,16657:9476087,29671117 -g1,16657:9792233,29671117 -g1,16657:10108379,29671117 -g1,16657:10424525,29671117 -g1,16657:10740671,29671117 -g1,16657:14534419,29671117 -g1,16657:15166711,29671117 -g1,16657:20225042,29671117 -g1,16657:21805772,29671117 -g1,16657:23386501,29671117 -g1,16657:24651084,29671117 -g1,16657:25283376,29671117 -h1,16657:26547958,29671117:0,0,0 -k1,16657:32583029,29671117:6035071 -g1,16657:32583029,29671117 -) -] -) -g1,16659:32583029,29778595 -g1,16659:6630773,29778595 -g1,16659:6630773,29778595 -g1,16659:32583029,29778595 -g1,16659:32583029,29778595 -) -h1,16659:6630773,29975203:0,0,0 -(1,16663:6630773,31340979:25952256,505283,138281 -h1,16662:6630773,31340979:983040,0,0 -k1,16662:8803578,31340979:236216 -k1,16662:10132280,31340979:236217 -k1,16662:11054658,31340979:236216 -$1,16662:11054658,31340979 -$1,16662:11557319,31340979 -k1,16662:13258920,31340979:236216 -k1,16662:15182689,31340979:236217 -k1,16662:15774765,31340979:236216 -k1,16662:17866305,31340979:236216 -$1,16662:17866305,31340979 -$1,16662:18374209,31340979 -k1,16662:18610426,31340979:236217 -k1,16662:21821321,31340979:236216 -k1,16662:23451488,31340979:236216 -$1,16662:23451488,31340979 -$1,16662:23737880,31340979 -k1,16662:23974096,31340979:236216 -k1,16662:24896475,31340979:236217 -k1,16662:28283007,31340979:236216 -k1,16662:29710668,31340979:236216 -k1,16662:30562923,31340979:236217 -k1,16662:31818224,31340979:236216 -$1,16662:31818224,31340979 -$1,16662:32370037,31340979 -k1,16663:32583029,31340979:0 -) -(1,16663:6630773,32182467:25952256,505283,134348 -k1,16662:8056140,32182467:172974 -k1,16662:9916666,32182467:172974 -k1,16662:10957993,32182467:172975 -k1,16662:12606182,32182467:172974 -k1,16662:13135016,32182467:172974 -k1,16662:16940651,32182467:172974 -k1,16662:17729663,32182467:172974 -k1,16662:18921722,32182467:172974 -k1,16662:20886451,32182467:172975 -k1,16662:22101447,32182467:172974 -k1,16662:23293506,32182467:172974 -k1,16662:24733946,32182467:172974 -k1,16662:25775272,32182467:172974 -k1,16662:27040732,32182467:172975 -k1,16662:27569566,32182467:172974 -k1,16662:30717219,32182467:172974 -k1,16662:32583029,32182467:0 -) -(1,16663:6630773,33023955:25952256,513147,126483 -k1,16662:7882019,33023955:179077 -k1,16662:9008747,33023955:179077 -k1,16662:10206909,33023955:179077 -k1,16662:12799022,33023955:179077 -k1,16662:13333959,33023955:179077 -k1,16662:15464698,33023955:179077 -k1,16662:18330096,33023955:179077 -k1,16662:22122828,33023955:179077 -k1,16662:23255454,33023955:179077 -k1,16662:25363911,33023955:179077 -k1,16662:27239715,33023955:179077 -k1,16662:31189078,33023955:179077 -k1,16662:32583029,33023955:0 -) -(1,16663:6630773,33865443:25952256,513147,115847 -g1,16662:9525498,33865443 -(1,16662:9525498,33865443:0,452978,115847 -r1,16686:13752594,33865443:4227096,568825,115847 -k1,16662:9525498,33865443:-4227096 -) -(1,16662:9525498,33865443:4227096,452978,115847 -k1,16662:9525498,33865443:3277 -h1,16662:13749317,33865443:0,411205,112570 -) -k1,16663:32583028,33865443:18656764 -g1,16663:32583028,33865443 -) -(1,16665:6630773,34706931:25952256,505283,138281 -h1,16664:6630773,34706931:983040,0,0 -k1,16664:8806509,34706931:239147 -k1,16664:10559538,34706931:239147 -k1,16664:12250307,34706931:239147 -k1,16664:16230904,34706931:239147 -k1,16664:17864002,34706931:239147 -k1,16664:18459008,34706931:239146 -k1,16664:22442882,34706931:239147 -$1,16664:22442882,34706931 -$1,16664:24579355,34706931 -k1,16664:24992172,34706931:239147 -k1,16664:26184868,34706931:239147 -k1,16664:28594567,34706931:239147 -k1,16664:30270919,34706931:239147 -k1,16665:32583029,34706931:0 -) -(1,16665:6630773,35548419:25952256,505283,134348 -k1,16664:8573588,35548419:271647 -k1,16664:9496662,35548419:271646 -k1,16664:13208294,35548419:271647 -k1,16664:14241469,35548419:271647 -k1,16664:16651555,35548419:271646 -k1,16664:19730764,35548419:271647 -k1,16664:21641466,35548419:271647 -k1,16664:22564540,35548419:271646 -k1,16664:23855272,35548419:271647 -k1,16664:25640801,35548419:271647 -k1,16664:28930380,35548419:271646 -k1,16664:31714677,35548419:271647 -k1,16664:32583029,35548419:0 -) -(1,16665:6630773,36389907:25952256,505283,134348 -k1,16664:8298719,36389907:230741 -k1,16664:11504139,36389907:230741 -k1,16664:13930992,36389907:230742 -k1,16664:15446239,36389907:230741 -k1,16664:16781262,36389907:230741 -k1,16664:17759770,36389907:230742 -k1,16664:20153854,36389907:230741 -k1,16664:21652061,36389907:230741 -k1,16664:25826759,36389907:230741 -k1,16664:26685336,36389907:230742 -k1,16664:28618047,36389907:230741 -k1,16664:30977397,36389907:230741 -k1,16665:32583029,36389907:0 -) -(1,16665:6630773,37231395:25952256,513147,134348 -k1,16664:8514832,37231395:302020 -k1,16664:11186634,37231395:302020 -k1,16664:12773160,37231395:302020 -k1,16664:14066740,37231395:302020 -k1,16664:16655311,37231395:302020 -k1,16664:18692724,37231395:302020 -k1,16664:20013829,37231395:302020 -k1,16664:22399894,37231395:302020 -k1,16664:23361206,37231395:302020 -k1,16664:27607183,37231395:302020 -k1,16664:28862752,37231395:302020 -k1,16664:30695038,37231395:302020 -k1,16664:31648486,37231395:302020 -k1,16665:32583029,37231395:0 -) -(1,16665:6630773,38072883:25952256,513147,134348 -(1,16664:6630773,38072883:0,414482,115847 -r1,16686:10857869,38072883:4227096,530329,115847 -k1,16664:6630773,38072883:-4227096 -) -(1,16664:6630773,38072883:4227096,414482,115847 -g1,16664:8744321,38072883 -g1,16664:9447745,38072883 -h1,16664:10854592,38072883:0,411205,112570 -) -k1,16664:11050683,38072883:192814 -k1,16664:11859536,38072883:192815 -k1,16664:13071435,38072883:192814 -k1,16664:14363944,38072883:192815 -k1,16664:15208186,38072883:192814 -k1,16664:16420086,38072883:192815 -k1,16664:19620347,38072883:192814 -k1,16664:20537990,38072883:192815 -k1,16664:22015310,38072883:192814 -k1,16664:23227210,38072883:192815 -k1,16664:25789806,38072883:192814 -k1,16664:28309804,38072883:192815 -k1,16664:29161910,38072883:192814 -k1,16664:31092740,38072883:192815 -k1,16665:32583029,38072883:0 -) -(1,16665:6630773,38914371:25952256,513147,126483 -g1,16664:7854985,38914371 -g1,16664:8740376,38914371 -g1,16664:9644772,38914371 -g1,16664:10835561,38914371 -g1,16664:13198133,38914371 -g1,16664:14664828,38914371 -g1,16664:18634343,38914371 -g1,16664:20876329,38914371 -g1,16664:22094643,38914371 -g1,16664:23571169,38914371 -g1,16664:24301895,38914371 -k1,16665:32583029,38914371:5232399 -g1,16665:32583029,38914371 -) -v1,16667:6630773,40104837:0,393216,0 -(1,16677:6630773,44417001:25952256,4705380,196608 -g1,16677:6630773,44417001 -g1,16677:6630773,44417001 -g1,16677:6434165,44417001 -(1,16677:6434165,44417001:0,4705380,196608 -r1,16686:32779637,44417001:26345472,4901988,196608 -k1,16677:6434165,44417001:-26345472 -) -(1,16677:6434165,44417001:26345472,4705380,196608 -[1,16677:6630773,44417001:25952256,4508772,0 -(1,16669:6630773,40312455:25952256,404226,107478 -(1,16668:6630773,40312455:0,0,0 -g1,16668:6630773,40312455 -g1,16668:6630773,40312455 -g1,16668:6303093,40312455 -(1,16668:6303093,40312455:0,0,0 -) -g1,16668:6630773,40312455 -) -k1,16669:6630773,40312455:0 -g1,16669:11689104,40312455 -g1,16669:13902124,40312455 -g1,16669:14850562,40312455 -g1,16669:16747436,40312455 -g1,16669:17379728,40312455 -g1,16669:21805768,40312455 -h1,16669:22121914,40312455:0,0,0 -k1,16669:32583029,40312455:10461115 -g1,16669:32583029,40312455 -) -(1,16670:6630773,40978633:25952256,404226,107478 -h1,16670:6630773,40978633:0,0,0 -g1,16670:6946919,40978633 -g1,16670:7263065,40978633 -g1,16670:7579211,40978633 -g1,16670:11689105,40978633 -h1,16670:12005251,40978633:0,0,0 -k1,16670:32583029,40978633:20577778 -g1,16670:32583029,40978633 -) -(1,16671:6630773,41644811:25952256,404226,107478 -h1,16671:6630773,41644811:0,0,0 -g1,16671:6946919,41644811 -g1,16671:7263065,41644811 -g1,16671:7579211,41644811 -g1,16671:12637542,41644811 -g1,16671:13269834,41644811 -g1,16671:14534417,41644811 -g1,16671:16431291,41644811 -g1,16671:17063583,41644811 -g1,16671:18644312,41644811 -g1,16671:20541186,41644811 -g1,16671:21173478,41644811 -g1,16671:23070353,41644811 -h1,16671:23386499,41644811:0,0,0 -k1,16671:32583029,41644811:9196530 -g1,16671:32583029,41644811 -) -(1,16672:6630773,42310989:25952256,404226,101187 -h1,16672:6630773,42310989:0,0,0 -g1,16672:6946919,42310989 -g1,16672:7263065,42310989 -g1,16672:7579211,42310989 -g1,16672:9792232,42310989 -g1,16672:10424524,42310989 -k1,16672:10424524,42310989:0 -h1,16672:17063584,42310989:0,0,0 -k1,16672:32583029,42310989:15519445 -g1,16672:32583029,42310989 -) -(1,16673:6630773,42977167:25952256,404226,101187 -h1,16673:6630773,42977167:0,0,0 -g1,16673:6946919,42977167 -g1,16673:7263065,42977167 -g1,16673:7579211,42977167 -g1,16673:7895357,42977167 -g1,16673:8211503,42977167 -g1,16673:8527649,42977167 -g1,16673:8843795,42977167 -g1,16673:9159941,42977167 -g1,16673:9792233,42977167 -g1,16673:10424525,42977167 -k1,16673:10424525,42977167:0 -h1,16673:19908897,42977167:0,0,0 -k1,16673:32583029,42977167:12674132 -g1,16673:32583029,42977167 -) -(1,16674:6630773,43643345:25952256,404226,107478 -h1,16674:6630773,43643345:0,0,0 -g1,16674:6946919,43643345 -g1,16674:7263065,43643345 -g1,16674:7579211,43643345 -g1,16674:7895357,43643345 -g1,16674:8211503,43643345 -g1,16674:8527649,43643345 -g1,16674:8843795,43643345 -g1,16674:9159941,43643345 -g1,16674:11056815,43643345 -g1,16674:11689107,43643345 -g1,16674:13902127,43643345 -k1,16674:13902127,43643345:0 -h1,16674:18012021,43643345:0,0,0 -k1,16674:32583029,43643345:14571008 -g1,16674:32583029,43643345 -) -(1,16675:6630773,44309523:25952256,410518,107478 -h1,16675:6630773,44309523:0,0,0 -g1,16675:6946919,44309523 -g1,16675:7263065,44309523 -g1,16675:7579211,44309523 -g1,16675:7895357,44309523 -g1,16675:8211503,44309523 -g1,16675:8527649,44309523 -g1,16675:8843795,44309523 -g1,16675:9159941,44309523 -g1,16675:12005252,44309523 -g1,16675:12637544,44309523 -g1,16675:20541188,44309523 -g1,16675:21173480,44309523 -g1,16675:24651083,44309523 -h1,16675:27496394,44309523:0,0,0 -k1,16675:32583029,44309523:5086635 -g1,16675:32583029,44309523 -) -] -) -g1,16677:32583029,44417001 -g1,16677:6630773,44417001 -g1,16677:6630773,44417001 -g1,16677:32583029,44417001 -g1,16677:32583029,44417001 -) -h1,16677:6630773,44613609:0,0,0 -] -(1,16686:32583029,45706769:0,0,0 -g1,16686:32583029,45706769 -) -) -] -(1,16686:6630773,47279633:25952256,0,0 -h1,16686:6630773,47279633:25952256,0,0 -) -] -(1,16686:4262630,4025873:0,0,0 -[1,16686:-473656,4025873:0,0,0 -(1,16686:-473656,-710413:0,0,0 -(1,16686:-473656,-710413:0,0,0 -g1,16686:-473656,-710413 -) -g1,16686:-473656,-710413 -) -] -) -] -!30043 -}326 -Input:2718:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2719:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2720:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2721:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2722:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2723:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2724:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2725:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2726:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2727:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2728:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2729:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2730:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2731:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2732:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2733:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2734:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2735:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2736:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2737:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2738:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2739:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!2036 -{327 -[1,16804:4262630,47279633:28320399,43253760,0 -(1,16804:4262630,4025873:0,0,0 -[1,16804:-473656,4025873:0,0,0 -(1,16804:-473656,-710413:0,0,0 -(1,16804:-473656,-644877:0,0,0 -k1,16804:-473656,-644877:-65536 -) -(1,16804:-473656,4736287:0,0,0 -k1,16804:-473656,4736287:5209943 -) -g1,16804:-473656,-710413 -) -] -) -[1,16804:6630773,47279633:25952256,43253760,0 -[1,16804:6630773,4812305:25952256,786432,0 -(1,16804:6630773,4812305:25952256,513147,134348 -(1,16804:6630773,4812305:25952256,513147,134348 -g1,16804:3078558,4812305 -[1,16804:3078558,4812305:0,0,0 -(1,16804:3078558,2439708:0,1703936,0 -k1,16804:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,16804:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,16804:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,16804:3078558,4812305:0,0,0 -(1,16804:3078558,2439708:0,1703936,0 -g1,16804:29030814,2439708 -g1,16804:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,16804:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,16804:37855564,2439708:1179648,16384,0 -) -) -k1,16804:3078556,2439708:-34777008 -) -] -[1,16804:3078558,4812305:0,0,0 -(1,16804:3078558,49800853:0,16384,2228224 -k1,16804:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,16804:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,16804:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,16804:3078558,4812305:0,0,0 -(1,16804:3078558,49800853:0,16384,2228224 -g1,16804:29030814,49800853 -g1,16804:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,16804:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,16804:37855564,49800853:1179648,16384,0 -) -) -k1,16804:3078556,49800853:-34777008 -) -] -g1,16804:6630773,4812305 -k1,16804:25712890,4812305:17886740 -g1,16804:29057847,4812305 -g1,16804:29873114,4812305 -) -) -] -[1,16804:6630773,45706769:25952256,40108032,0 -(1,16804:6630773,45706769:25952256,40108032,0 -(1,16804:6630773,45706769:0,0,0 -g1,16804:6630773,45706769 -) -[1,16804:6630773,45706769:25952256,40108032,0 -(1,16680:6630773,14682403:25952256,9083666,0 -k1,16680:10523651,14682403:3892878 -h1,16679:10523651,14682403:0,0,0 -(1,16679:10523651,14682403:18166500,9083666,0 -(1,16679:10523651,14682403:18167376,9083688,0 -(1,16679:10523651,14682403:18167376,9083688,0 -(1,16679:10523651,14682403:0,9083688,0 -(1,16679:10523651,14682403:0,14208860,0 -(1,16679:10523651,14682403:28417720,14208860,0 -) -k1,16679:10523651,14682403:-28417720 -) -) -g1,16679:28691027,14682403 -) -) -) -g1,16680:28690151,14682403 -k1,16680:32583029,14682403:3892878 -) -(1,16687:6630773,15523891:25952256,513147,134348 -h1,16686:6630773,15523891:983040,0,0 -k1,16686:8724054,15523891:156692 -k1,16686:9985029,15523891:156693 -k1,16686:11427537,15523891:156692 -k1,16686:12676715,15523891:156693 -k1,16686:13189267,15523891:156692 -k1,16686:16320639,15523891:156693 -k1,16686:18343141,15523891:156692 -k1,16686:20538003,15523891:156692 -k1,16686:21310734,15523891:156693 -k1,16686:21823286,15523891:156692 -k1,16686:24664989,15523891:156693 -k1,16686:26013126,15523891:156692 -k1,16686:27262304,15523891:156693 -k1,16686:30114492,15523891:156692 -(1,16686:30114492,15523891:0,452978,115847 -r1,16804:32583029,15523891:2468537,568825,115847 -k1,16686:30114492,15523891:-2468537 -) -(1,16686:30114492,15523891:2468537,452978,115847 -k1,16686:30114492,15523891:3277 -h1,16686:32579752,15523891:0,411205,112570 -) -k1,16686:32583029,15523891:0 -) -(1,16687:6630773,16365379:25952256,513147,126483 -k1,16686:7529125,16365379:246924 -k1,16686:9518651,16365379:246924 -k1,16686:10223672,16365379:246924 -k1,16686:11086634,16365379:246924 -k1,16686:13030940,16365379:246924 -k1,16686:15196758,16365379:246924 -k1,16686:16214385,16365379:246924 -k1,16686:19901294,16365379:246924 -k1,16686:20679715,16365379:246924 -k1,16686:23639174,16365379:246924 -k1,16686:24572260,16365379:246924 -k1,16686:25687536,16365379:246924 -k1,16686:26749728,16365379:246924 -k1,16686:28394535,16365379:246924 -k1,16686:29589110,16365379:246924 -(1,16686:29589110,16365379:0,452978,115847 -r1,16804:32409359,16365379:2820249,568825,115847 -k1,16686:29589110,16365379:-2820249 -) -(1,16686:29589110,16365379:2820249,452978,115847 -k1,16686:29589110,16365379:3277 -h1,16686:32406082,16365379:0,411205,112570 -) -k1,16686:32583029,16365379:0 -) -(1,16687:6630773,17206867:25952256,505283,134348 -k1,16686:7610973,17206867:352365 -k1,16686:9166579,17206867:352365 -k1,16686:12180362,17206867:352366 -k1,16686:13401079,17206867:352365 -k1,16686:15039260,17206867:352365 -k1,16686:16326168,17206867:352365 -k1,16686:17862769,17206867:352365 -k1,16686:20059317,17206867:352365 -k1,16686:21063111,17206867:352366 -k1,16686:25359433,17206867:352365 -k1,16686:27707369,17206867:352365 -k1,16686:31298523,17206867:352365 -k1,16687:32583029,17206867:0 -) -(1,16687:6630773,18048355:25952256,505283,134348 -(1,16686:6630773,18048355:0,452978,115847 -r1,16804:10857869,18048355:4227096,568825,115847 -k1,16686:6630773,18048355:-4227096 -) -(1,16686:6630773,18048355:4227096,452978,115847 -k1,16686:6630773,18048355:3277 -h1,16686:10854592,18048355:0,411205,112570 -) -k1,16686:11013332,18048355:155463 -k1,16686:13547097,18048355:155463 -k1,16686:16373808,18048355:155464 -k1,16686:19931900,18048355:155463 -k1,16686:23210809,18048355:155463 -k1,16686:24127800,18048355:155463 -k1,16686:26937472,18048355:155464 -k1,16686:30093829,18048355:155463 -k1,16686:30605152,18048355:155463 -k1,16686:32583029,18048355:0 -) -(1,16687:6630773,18889843:25952256,513147,126483 -g1,16686:7489294,18889843 -k1,16687:32583029,18889843:21149778 -g1,16687:32583029,18889843 -) -v1,16689:6630773,19933960:0,393216,0 -(1,16699:6630773,24239833:25952256,4699089,196608 -g1,16699:6630773,24239833 -g1,16699:6630773,24239833 -g1,16699:6434165,24239833 -(1,16699:6434165,24239833:0,4699089,196608 -r1,16804:32779637,24239833:26345472,4895697,196608 -k1,16699:6434165,24239833:-26345472 -) -(1,16699:6434165,24239833:26345472,4699089,196608 -[1,16699:6630773,24239833:25952256,4502481,0 -(1,16691:6630773,20141578:25952256,404226,101187 -(1,16690:6630773,20141578:0,0,0 -g1,16690:6630773,20141578 -g1,16690:6630773,20141578 -g1,16690:6303093,20141578 -(1,16690:6303093,20141578:0,0,0 -) -g1,16690:6630773,20141578 -) -g1,16691:10108376,20141578 -g1,16691:11056814,20141578 -h1,16691:14218271,20141578:0,0,0 -k1,16691:32583029,20141578:18364758 -g1,16691:32583029,20141578 -) -(1,16692:6630773,20807756:25952256,404226,107478 -h1,16692:6630773,20807756:0,0,0 -g1,16692:11689104,20807756 -g1,16692:13902124,20807756 -g1,16692:15166707,20807756 -h1,16692:15482853,20807756:0,0,0 -k1,16692:32583029,20807756:17100176 -g1,16692:32583029,20807756 -) -(1,16693:6630773,21473934:25952256,404226,107478 -h1,16693:6630773,21473934:0,0,0 -g1,16693:6946919,21473934 -g1,16693:7263065,21473934 -g1,16693:7579211,21473934 -g1,16693:11689105,21473934 -h1,16693:12005251,21473934:0,0,0 -k1,16693:32583029,21473934:20577778 -g1,16693:32583029,21473934 -) -(1,16694:6630773,22140112:25952256,404226,101187 -h1,16694:6630773,22140112:0,0,0 -g1,16694:6946919,22140112 -g1,16694:7263065,22140112 -g1,16694:7579211,22140112 -g1,16694:11056814,22140112 -g1,16694:11689106,22140112 -g1,16694:15166709,22140112 -g1,16694:15799001,22140112 -g1,16694:19908895,22140112 -h1,16694:20225041,22140112:0,0,0 -k1,16694:32583029,22140112:12357988 -g1,16694:32583029,22140112 -) -(1,16695:6630773,22806290:25952256,404226,101187 -h1,16695:6630773,22806290:0,0,0 -g1,16695:6946919,22806290 -g1,16695:7263065,22806290 -g1,16695:7579211,22806290 -g1,16695:15166708,22806290 -g1,16695:15799000,22806290 -k1,16695:15799000,22806290:0 -h1,16695:22438060,22806290:0,0,0 -k1,16695:32583029,22806290:10144969 -g1,16695:32583029,22806290 -) -(1,16696:6630773,23472468:25952256,404226,82312 -h1,16696:6630773,23472468:0,0,0 -g1,16696:6946919,23472468 -g1,16696:7263065,23472468 -g1,16696:7579211,23472468 -g1,16696:7895357,23472468 -g1,16696:8211503,23472468 -g1,16696:8527649,23472468 -g1,16696:8843795,23472468 -g1,16696:9159941,23472468 -g1,16696:9476087,23472468 -g1,16696:9792233,23472468 -g1,16696:10108379,23472468 -g1,16696:10424525,23472468 -g1,16696:10740671,23472468 -g1,16696:11056817,23472468 -g1,16696:11372963,23472468 -g1,16696:11689109,23472468 -g1,16696:12005255,23472468 -g1,16696:12321401,23472468 -g1,16696:12637547,23472468 -g1,16696:12953693,23472468 -g1,16696:13269839,23472468 -g1,16696:13585985,23472468 -g1,16696:15799005,23472468 -g1,16696:16431297,23472468 -k1,16696:16431297,23472468:0 -h1,16696:19276611,23472468:0,0,0 -k1,16696:32583029,23472468:13306418 -g1,16696:32583029,23472468 -) -(1,16697:6630773,24138646:25952256,404226,101187 -h1,16697:6630773,24138646:0,0,0 -g1,16697:6946919,24138646 -g1,16697:7263065,24138646 -g1,16697:7579211,24138646 -g1,16697:7895357,24138646 -g1,16697:8211503,24138646 -g1,16697:8527649,24138646 -g1,16697:8843795,24138646 -g1,16697:9159941,24138646 -g1,16697:9476087,24138646 -g1,16697:9792233,24138646 -g1,16697:10108379,24138646 -g1,16697:10424525,24138646 -g1,16697:10740671,24138646 -g1,16697:11056817,24138646 -g1,16697:11372963,24138646 -g1,16697:11689109,24138646 -g1,16697:12005255,24138646 -g1,16697:12321401,24138646 -g1,16697:12637547,24138646 -g1,16697:12953693,24138646 -g1,16697:13269839,24138646 -g1,16697:13585985,24138646 -g1,16697:15799005,24138646 -g1,16697:16431297,24138646 -g1,16697:23070358,24138646 -g1,16697:26231816,24138646 -h1,16697:29393273,24138646:0,0,0 -k1,16697:32583029,24138646:3189756 -g1,16697:32583029,24138646 -) -] -) -g1,16699:32583029,24239833 -g1,16699:6630773,24239833 -g1,16699:6630773,24239833 -g1,16699:32583029,24239833 -g1,16699:32583029,24239833 -) -h1,16699:6630773,24436441:0,0,0 -(1,16702:6630773,33963583:25952256,9083666,0 -k1,16702:10523651,33963583:3892878 -h1,16701:10523651,33963583:0,0,0 -(1,16701:10523651,33963583:18166500,9083666,0 -(1,16701:10523651,33963583:18167376,9083688,0 -(1,16701:10523651,33963583:18167376,9083688,0 -(1,16701:10523651,33963583:0,9083688,0 -(1,16701:10523651,33963583:0,14208860,0 -(1,16701:10523651,33963583:28417720,14208860,0 -) -k1,16701:10523651,33963583:-28417720 -) -) -g1,16701:28691027,33963583 -) -) -) -g1,16702:28690151,33963583 -k1,16702:32583029,33963583:3892878 -) -(1,16709:6630773,34805071:25952256,513147,126483 -h1,16708:6630773,34805071:983040,0,0 -k1,16708:8269107,34805071:167706 -k1,16708:11199187,34805071:167737 -k1,16708:14351434,34805071:167737 -k1,16708:15535633,34805071:167736 -k1,16708:18364787,34805071:167737 -k1,16708:20815143,34805071:167737 -k1,16708:22939130,34805071:167737 -k1,16708:23854633,34805071:167737 -k1,16708:24673798,34805071:167737 -k1,16708:25934020,34805071:167737 -(1,16708:25934020,34805071:0,452978,115847 -r1,16804:28402557,34805071:2468537,568825,115847 -k1,16708:25934020,34805071:-2468537 -) -(1,16708:25934020,34805071:2468537,452978,115847 -k1,16708:25934020,34805071:3277 -h1,16708:28399280,34805071:0,411205,112570 -) -k1,16708:28570294,34805071:167737 -k1,16708:31635378,34805071:167737 -k1,16708:32583029,34805071:0 -) -(1,16709:6630773,35646559:25952256,513147,134348 -k1,16708:8269921,35646559:187526 -k1,16708:11650362,35646559:187527 -k1,16708:13525440,35646559:187526 -k1,16708:17067099,35646559:187526 -k1,16708:18539132,35646559:187527 -k1,16708:20593779,35646559:187526 -k1,16708:21529071,35646559:187526 -k1,16708:24014946,35646559:187527 -k1,16708:24668433,35646559:187526 -k1,16708:25875045,35646559:187527 -k1,16708:27246807,35646559:187526 -k1,16708:29278516,35646559:187526 -k1,16708:30996309,35646559:187527 -k1,16708:31835263,35646559:187526 -k1,16708:32583029,35646559:0 -) -(1,16709:6630773,36488047:25952256,513147,134348 -g1,16708:10787721,36488047 -g1,16708:16623702,36488047 -g1,16708:19150114,36488047 -g1,16708:20008635,36488047 -g1,16708:21142407,36488047 -g1,16708:22027798,36488047 -k1,16709:32583029,36488047:7293504 -g1,16709:32583029,36488047 -) -v1,16711:6630773,37707474:0,393216,0 -(1,16804:6630773,45116945:25952256,7802687,589824 -g1,16804:6630773,45116945 -(1,16804:6630773,45116945:25952256,7802687,589824 -(1,16804:6630773,45706769:25952256,8392511,0 -[1,16804:6630773,45706769:25952256,8392511,0 -(1,16804:6630773,45706769:25952256,8366297,0 -r1,16804:6656987,45706769:26214,8366297,0 -[1,16804:6656987,45706769:25899828,8366297,0 -(1,16804:6656987,45116945:25899828,7186649,0 -[1,16804:7246811,45116945:24720180,7186649,0 -(1,16712:7246811,39092181:24720180,1161885,196608 -(1,16711:7246811,39092181:0,1161885,196608 -r1,16804:8794447,39092181:1547636,1358493,196608 -k1,16711:7246811,39092181:-1547636 -) -(1,16711:7246811,39092181:1547636,1161885,196608 -) -k1,16711:8991338,39092181:196891 -k1,16711:12954522,39092181:202073 -k1,16711:15941219,39092181:202072 -(1,16711:15941219,39092181:0,452978,115847 -r1,16804:18409756,39092181:2468537,568825,115847 -k1,16711:15941219,39092181:-2468537 -) -(1,16711:15941219,39092181:2468537,452978,115847 -k1,16711:15941219,39092181:3277 -h1,16711:18406479,39092181:0,411205,112570 -) -k1,16711:18611829,39092181:202073 -k1,16711:20034182,39092181:202073 -(1,16711:20034182,39092181:0,452978,115847 -r1,16804:24261278,39092181:4227096,568825,115847 -k1,16711:20034182,39092181:-4227096 -) -(1,16711:20034182,39092181:4227096,452978,115847 -k1,16711:20034182,39092181:3277 -h1,16711:24258001,39092181:0,411205,112570 -) -k1,16711:24631839,39092181:196891 -k1,16711:27618598,39092181:196891 -(1,16711:27618598,39092181:0,452978,115847 -r1,16804:30087135,39092181:2468537,568825,115847 -k1,16711:27618598,39092181:-2468537 -) -(1,16711:27618598,39092181:2468537,452978,115847 -k1,16711:27618598,39092181:3277 -h1,16711:30083858,39092181:0,411205,112570 -) -k1,16711:30284026,39092181:196891 -k1,16711:31966991,39092181:0 -) -(1,16712:7246811,39933669:24720180,513147,134348 -k1,16711:8166180,39933669:233207 -k1,16711:9170091,39933669:233208 -k1,16711:12475626,39933669:233207 -k1,16711:13064694,39933669:233208 -k1,16711:16272580,39933669:233207 -k1,16711:18545267,39933669:233207 -k1,16711:20159319,39933669:233208 -k1,16711:20924023,39933669:233207 -k1,16711:22511204,39933669:233207 -k1,16711:24721633,39933669:233208 -k1,16711:25641002,39933669:233207 -k1,16711:26893295,39933669:233208 -k1,16711:30101181,39933669:233207 -k1,16711:31966991,39933669:0 -) -(1,16712:7246811,40775157:24720180,505283,134348 -k1,16711:8486816,40775157:135723 -k1,16711:9370304,40775157:135722 -k1,16711:11856148,40775157:135723 -k1,16711:17802292,40775157:135722 -k1,16711:19721250,40775157:135723 -k1,16711:21592366,40775157:135723 -(1,16711:21592366,40775157:0,452978,115847 -r1,16804:25819462,40775157:4227096,568825,115847 -k1,16711:21592366,40775157:-4227096 -) -(1,16711:21592366,40775157:4227096,452978,115847 -k1,16711:21592366,40775157:3277 -h1,16711:25816185,40775157:0,411205,112570 -) -k1,16711:25955184,40775157:135722 -k1,16711:27294148,40775157:135723 -k1,16711:27961367,40775157:135722 -k1,16711:29163361,40775157:135723 -k1,16711:31966991,40775157:0 -) -(1,16712:7246811,41616645:24720180,513147,126483 -k1,16711:9615119,41616645:297370 -k1,16711:10860139,41616645:297369 -k1,16711:15030687,41616645:297370 -k1,16711:15940818,41616645:297369 -k1,16711:19313793,41616645:297370 -k1,16711:21036570,41616645:297369 -k1,16711:21993232,41616645:297370 -k1,16711:23309686,41616645:297369 -k1,16711:25287399,41616645:297370 -k1,16711:26244060,41616645:297369 -k1,16711:29383071,41616645:297370 -k1,16711:30947906,41616645:297369 -k1,16711:31966991,41616645:0 -) -(1,16712:7246811,42458133:24720180,513147,134348 -g1,16711:11059695,42458133 -g1,16711:12308811,42458133 -g1,16711:13527125,42458133 -g1,16711:15114407,42458133 -g1,16711:17142090,42458133 -g1,16711:18288970,42458133 -g1,16711:19954895,42458133 -k1,16712:31966991,42458133:8812628 -g1,16712:31966991,42458133 -) -(1,16714:7246811,43299621:24720180,505283,134348 -h1,16713:7246811,43299621:983040,0,0 -k1,16713:11198629,43299621:178910 -(1,16713:11198629,43299621:0,452978,115847 -r1,16804:15425725,43299621:4227096,568825,115847 -k1,16713:11198629,43299621:-4227096 -) -(1,16713:11198629,43299621:4227096,452978,115847 -k1,16713:11198629,43299621:3277 -h1,16713:15422448,43299621:0,411205,112570 -) -k1,16713:15604635,43299621:178910 -k1,16713:18161848,43299621:178911 -k1,16713:19129156,43299621:178910 -k1,16713:22710695,43299621:178910 -k1,16713:25349827,43299621:178910 -k1,16713:26660545,43299621:178911 -k1,16713:30231598,43299621:178910 -k1,16714:31966991,43299621:0 -) -(1,16714:7246811,44141109:24720180,505283,134348 -k1,16713:8772000,44141109:257723 -(1,16713:8772000,44141109:0,452978,115847 -r1,16804:11240537,44141109:2468537,568825,115847 -k1,16713:8772000,44141109:-2468537 -) -(1,16713:8772000,44141109:2468537,452978,115847 -k1,16713:8772000,44141109:3277 -h1,16713:11237260,44141109:0,411205,112570 -) -k1,16713:11498261,44141109:257724 -k1,16713:13438949,44141109:257723 -k1,16713:14052533,44141109:257724 -k1,16713:16183275,44141109:257723 -k1,16713:19415678,44141109:257724 -k1,16713:21539211,44141109:257723 -k1,16713:22483097,44141109:257724 -k1,16713:23511523,44141109:257723 -k1,16713:26841575,44141109:257724 -k1,16713:27750726,44141109:257723 -k1,16713:28756216,44141109:257724 -k1,16713:31350953,44141109:257723 -k1,16713:31966991,44141109:0 -) -(1,16714:7246811,44982597:24720180,505283,134348 -k1,16713:9414997,44982597:282715 -k1,16713:11064792,44982597:282714 -k1,16713:14441462,44982597:282715 -k1,16713:16711228,44982597:282714 -k1,16713:19003932,44982597:282715 -k1,16713:20305731,44982597:282714 -k1,16713:22454256,44982597:282715 -k1,16713:24267237,44982597:282715 -k1,16713:25201379,44982597:282714 -k1,16713:26231860,44982597:282715 -k1,16713:29031811,44982597:282714 -k1,16713:31257013,44982597:282715 -(1,16713:31257013,44982597:0,452978,115847 -r1,16804:31966991,44982597:709978,568825,115847 -k1,16713:31257013,44982597:-709978 -) -(1,16713:31257013,44982597:709978,452978,115847 -k1,16713:31257013,44982597:3277 -h1,16713:31963714,44982597:0,411205,112570 -) -k1,16713:31966991,44982597:0 -) -] -) -] -r1,16804:32583029,45706769:26214,8366297,0 -) -] -) -) -g1,16804:32583029,45116945 -) -] -(1,16804:32583029,45706769:0,0,0 -g1,16804:32583029,45706769 -) -) -] -(1,16804:6630773,47279633:25952256,0,0 -h1,16804:6630773,47279633:25952256,0,0 -) -] -(1,16804:4262630,4025873:0,0,0 -[1,16804:-473656,4025873:0,0,0 -(1,16804:-473656,-710413:0,0,0 -(1,16804:-473656,-710413:0,0,0 -g1,16804:-473656,-710413 -) -g1,16804:-473656,-710413 -) -] -) -] -!19028 -}327 -!12 -{328 -[1,16804:4262630,47279633:28320399,43253760,0 -(1,16804:4262630,4025873:0,0,0 -[1,16804:-473656,4025873:0,0,0 -(1,16804:-473656,-710413:0,0,0 -(1,16804:-473656,-644877:0,0,0 -k1,16804:-473656,-644877:-65536 -) -(1,16804:-473656,4736287:0,0,0 -k1,16804:-473656,4736287:5209943 -) -g1,16804:-473656,-710413 -) -] -) -[1,16804:6630773,47279633:25952256,43253760,0 -[1,16804:6630773,4812305:25952256,786432,0 -(1,16804:6630773,4812305:25952256,505283,134348 -(1,16804:6630773,4812305:25952256,505283,134348 -g1,16804:3078558,4812305 -[1,16804:3078558,4812305:0,0,0 -(1,16804:3078558,2439708:0,1703936,0 -k1,16804:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,16804:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,16804:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,16804:3078558,4812305:0,0,0 -(1,16804:3078558,2439708:0,1703936,0 -g1,16804:29030814,2439708 -g1,16804:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,16804:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,16804:37855564,2439708:1179648,16384,0 -) -) -k1,16804:3078556,2439708:-34777008 -) -] -[1,16804:3078558,4812305:0,0,0 -(1,16804:3078558,49800853:0,16384,2228224 -k1,16804:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,16804:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,16804:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,16804:3078558,4812305:0,0,0 -(1,16804:3078558,49800853:0,16384,2228224 -g1,16804:29030814,49800853 -g1,16804:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,16804:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,16804:37855564,49800853:1179648,16384,0 -) -) -k1,16804:3078556,49800853:-34777008 -) -] -g1,16804:6630773,4812305 -g1,16804:6630773,4812305 -g1,16804:8592265,4812305 -g1,16804:11642310,4812305 -g1,16804:15396212,4812305 -k1,16804:31387652,4812305:15991440 -) -) -] -[1,16804:6630773,45706769:25952256,40108032,0 -(1,16804:6630773,45706769:25952256,40108032,0 -(1,16804:6630773,45706769:0,0,0 -g1,16804:6630773,45706769 -) -[1,16804:6630773,45706769:25952256,40108032,0 -v1,16804:6630773,6254097:0,393216,0 -(1,16804:6630773,45116945:25952256,39256064,616038 -g1,16804:6630773,45116945 -(1,16804:6630773,45116945:25952256,39256064,616038 -(1,16804:6630773,45732983:25952256,39872102,0 -[1,16804:6630773,45732983:25952256,39872102,0 -(1,16804:6630773,45706769:25952256,39845888,0 -r1,16804:6656987,45706769:26214,39845888,0 -[1,16804:6656987,45706769:25899828,39845888,0 -(1,16804:6656987,45116945:25899828,38666240,0 -[1,16804:7246811,45116945:24720180,38666240,0 -(1,16714:7246811,6955988:24720180,505283,134348 -k1,16713:9309418,6955988:143713 -k1,16713:9808991,6955988:143713 -k1,16713:11812616,6955988:143713 -(1,16713:11812616,6955988:0,452978,115847 -r1,16804:12170882,6955988:358266,568825,115847 -k1,16713:11812616,6955988:-358266 -) -(1,16713:11812616,6955988:358266,452978,115847 -k1,16713:11812616,6955988:3277 -h1,16713:12167605,6955988:0,411205,112570 -) -k1,16713:12314596,6955988:143714 -k1,16713:12989806,6955988:143713 -k1,16713:15870302,6955988:143713 -k1,16713:16967564,6955988:143713 -k1,16713:18389229,6955988:143713 -k1,16713:19818758,6955988:143713 -k1,16713:20578509,6955988:143713 -k1,16713:22188918,6955988:143713 -k1,16713:24203685,6955988:143714 -k1,16713:26483216,6955988:143713 -k1,16713:26982789,6955988:143713 -k1,16713:30101181,6955988:143713 -k1,16713:31966991,6955988:0 -) -(1,16714:7246811,7797476:24720180,513147,126483 -k1,16713:8254451,7797476:246112 -k1,16713:10568878,7797476:246111 -k1,16713:11474282,7797476:246112 -k1,16713:12877104,7797476:246112 -k1,16713:13782507,7797476:246111 -k1,16713:15047704,7797476:246112 -k1,16713:18319612,7797476:246111 -(1,16713:18319612,7797476:0,452978,115847 -r1,16804:20788149,7797476:2468537,568825,115847 -k1,16713:18319612,7797476:-2468537 -) -(1,16713:18319612,7797476:2468537,452978,115847 -k1,16713:18319612,7797476:3277 -h1,16713:20784872,7797476:0,411205,112570 -) -k1,16713:21207931,7797476:246112 -(1,16713:21207931,7797476:0,452978,115847 -r1,16804:24028180,7797476:2820249,568825,115847 -k1,16713:21207931,7797476:-2820249 -) -(1,16713:21207931,7797476:2820249,452978,115847 -k1,16713:21207931,7797476:3277 -h1,16713:24024903,7797476:0,411205,112570 -) -k1,16713:24447962,7797476:246112 -(1,16713:24447962,7797476:0,452978,115847 -r1,16804:26564787,7797476:2116825,568825,115847 -k1,16713:24447962,7797476:-2116825 -) -(1,16713:24447962,7797476:2116825,452978,115847 -k1,16713:24447962,7797476:3277 -h1,16713:26561510,7797476:0,411205,112570 -) -k1,16713:26810898,7797476:246111 -k1,16713:27739895,7797476:246112 -(1,16713:27739895,7797476:0,452978,115847 -r1,16804:31966991,7797476:4227096,568825,115847 -k1,16713:27739895,7797476:-4227096 -) -(1,16713:27739895,7797476:4227096,452978,115847 -k1,16713:27739895,7797476:3277 -h1,16713:31963714,7797476:0,411205,112570 -) -k1,16713:31966991,7797476:0 -) -(1,16714:7246811,8638964:24720180,513147,134348 -k1,16713:9349962,8638964:217680 -k1,16713:10853459,8638964:217681 -k1,16713:12850441,8638964:217680 -k1,16713:14087207,8638964:217681 -k1,16713:15635923,8638964:217680 -k1,16713:17540500,8638964:217680 -k1,16713:18954868,8638964:217681 -k1,16713:22244876,8638964:217680 -k1,16713:23113984,8638964:217680 -k1,16713:25028392,8638964:217681 -k1,16713:28271869,8638964:217680 -k1,16713:30350117,8638964:217681 -k1,16713:31219225,8638964:217680 -k1,16713:31966991,8638964:0 -) -(1,16714:7246811,9480452:24720180,513147,134348 -g1,16713:7801900,9480452 -g1,16713:10975808,9480452 -g1,16713:13040847,9480452 -g1,16713:16260630,9480452 -g1,16713:17221387,9480452 -g1,16713:20514571,9480452 -g1,16713:22700852,9480452 -g1,16713:23366042,9480452 -g1,16713:24023368,9480452 -g1,16713:24754094,9480452 -g1,16713:26019594,9480452 -g1,16713:26870251,9480452 -g1,16713:27817246,9480452 -k1,16714:31966991,9480452:1812731 -g1,16714:31966991,9480452 -) -(1,16716:7246811,10321940:24720180,505283,134348 -h1,16715:7246811,10321940:983040,0,0 -g1,16715:10212315,10321940 -g1,16715:12146937,10321940 -(1,16715:12146937,10321940:0,452978,115847 -r1,16804:16374033,10321940:4227096,568825,115847 -k1,16715:12146937,10321940:-4227096 -) -(1,16715:12146937,10321940:4227096,452978,115847 -k1,16715:12146937,10321940:3277 -h1,16715:16370756,10321940:0,411205,112570 -) -g1,16715:16746932,10321940 -g1,16715:18338146,10321940 -g1,16715:21631330,10321940 -g1,16715:23817611,10321940 -g1,16715:25121122,10321940 -g1,16715:26068117,10321940 -k1,16716:31966991,10321940:2400562 -g1,16716:31966991,10321940 -) -v1,16718:7246811,11288482:0,393216,0 -(1,16724:7246811,12929643:24720180,2034377,196608 -g1,16724:7246811,12929643 -g1,16724:7246811,12929643 -g1,16724:7050203,12929643 -(1,16724:7050203,12929643:0,2034377,196608 -r1,16804:32163599,12929643:25113396,2230985,196608 -k1,16724:7050203,12929643:-25113396 -) -(1,16724:7050203,12929643:25113396,2034377,196608 -[1,16724:7246811,12929643:24720180,1837769,0 -(1,16720:7246811,11496100:24720180,404226,107478 -(1,16719:7246811,11496100:0,0,0 -g1,16719:7246811,11496100 -g1,16719:7246811,11496100 -g1,16719:6919131,11496100 -(1,16719:6919131,11496100:0,0,0 -) -g1,16719:7246811,11496100 -) -k1,16720:7246811,11496100:0 -g1,16720:11356705,11496100 -g1,16720:14834308,11496100 -g1,16720:17047328,11496100 -h1,16720:17363474,11496100:0,0,0 -k1,16720:31966991,11496100:14603517 -g1,16720:31966991,11496100 -) -(1,16721:7246811,12162278:24720180,404226,107478 -h1,16721:7246811,12162278:0,0,0 -g1,16721:7562957,12162278 -g1,16721:7879103,12162278 -g1,16721:11988997,12162278 -h1,16721:12305143,12162278:0,0,0 -k1,16721:31966991,12162278:19661848 -g1,16721:31966991,12162278 -) -(1,16722:7246811,12828456:24720180,404226,101187 -h1,16722:7246811,12828456:0,0,0 -g1,16722:7562957,12828456 -g1,16722:7879103,12828456 -g1,16722:15150456,12828456 -g1,16722:15466602,12828456 -h1,16722:17679621,12828456:0,0,0 -k1,16722:31966991,12828456:14287370 -g1,16722:31966991,12828456 -) -] -) -g1,16724:31966991,12929643 -g1,16724:7246811,12929643 -g1,16724:7246811,12929643 -g1,16724:31966991,12929643 -g1,16724:31966991,12929643 -) -h1,16724:7246811,13126251:0,0,0 -(1,16728:7246811,14268103:24720180,513147,126483 -h1,16727:7246811,14268103:983040,0,0 -g1,16727:10118598,14268103 -g1,16727:10933865,14268103 -g1,16727:12152179,14268103 -g1,16727:13718489,14268103 -g1,16727:14584874,14268103 -(1,16727:14584874,14268103:0,452978,115847 -r1,16804:17053411,14268103:2468537,568825,115847 -k1,16727:14584874,14268103:-2468537 -) -(1,16727:14584874,14268103:2468537,452978,115847 -k1,16727:14584874,14268103:3277 -h1,16727:17050134,14268103:0,411205,112570 -) -g1,16727:17252640,14268103 -g1,16727:18832057,14268103 -g1,16727:20561552,14268103 -g1,16727:21412209,14268103 -g1,16727:22359204,14268103 -k1,16728:31966991,14268103:6952269 -g1,16728:31966991,14268103 -) -v1,16730:7246811,15234644:0,393216,0 -(1,16736:7246811,16875805:24720180,2034377,196608 -g1,16736:7246811,16875805 -g1,16736:7246811,16875805 -g1,16736:7050203,16875805 -(1,16736:7050203,16875805:0,2034377,196608 -r1,16804:32163599,16875805:25113396,2230985,196608 -k1,16736:7050203,16875805:-25113396 -) -(1,16736:7050203,16875805:25113396,2034377,196608 -[1,16736:7246811,16875805:24720180,1837769,0 -(1,16732:7246811,15442262:24720180,404226,107478 -(1,16731:7246811,15442262:0,0,0 -g1,16731:7246811,15442262 -g1,16731:7246811,15442262 -g1,16731:6919131,15442262 -(1,16731:6919131,15442262:0,0,0 -) -g1,16731:7246811,15442262 -) -k1,16732:7246811,15442262:0 -g1,16732:11356705,15442262 -g1,16732:14834308,15442262 -g1,16732:17047328,15442262 -h1,16732:17363474,15442262:0,0,0 -k1,16732:31966991,15442262:14603517 -g1,16732:31966991,15442262 -) -(1,16733:7246811,16108440:24720180,404226,107478 -h1,16733:7246811,16108440:0,0,0 -g1,16733:7562957,16108440 -g1,16733:7879103,16108440 -g1,16733:11988997,16108440 -h1,16733:12305143,16108440:0,0,0 -k1,16733:31966991,16108440:19661848 -g1,16733:31966991,16108440 -) -(1,16734:7246811,16774618:24720180,404226,101187 -h1,16734:7246811,16774618:0,0,0 -g1,16734:7562957,16774618 -g1,16734:7879103,16774618 -g1,16734:12937435,16774618 -g1,16734:13569727,16774618 -g1,16734:16415038,16774618 -g1,16734:16731184,16774618 -h1,16734:19576495,16774618:0,0,0 -k1,16734:31966991,16774618:12390496 -g1,16734:31966991,16774618 -) -] -) -g1,16736:31966991,16875805 -g1,16736:7246811,16875805 -g1,16736:7246811,16875805 -g1,16736:31966991,16875805 -g1,16736:31966991,16875805 -) -h1,16736:7246811,17072413:0,0,0 -(1,16740:7246811,18214265:24720180,513147,7863 -h1,16739:7246811,18214265:983040,0,0 -g1,16739:9620525,18214265 -g1,16739:10435792,18214265 -g1,16739:12327161,18214265 -g1,16739:14223772,18214265 -g1,16739:15555463,18214265 -g1,16739:16502458,18214265 -g1,16739:19495487,18214265 -g1,16739:21704705,18214265 -g1,16739:22259794,18214265 -g1,16739:24639406,18214265 -k1,16740:31966991,18214265:4458419 -g1,16740:31966991,18214265 -) -v1,16742:7246811,19180807:0,393216,0 -(1,16748:7246811,20821968:24720180,2034377,196608 -g1,16748:7246811,20821968 -g1,16748:7246811,20821968 -g1,16748:7050203,20821968 -(1,16748:7050203,20821968:0,2034377,196608 -r1,16804:32163599,20821968:25113396,2230985,196608 -k1,16748:7050203,20821968:-25113396 -) -(1,16748:7050203,20821968:25113396,2034377,196608 -[1,16748:7246811,20821968:24720180,1837769,0 -(1,16744:7246811,19388425:24720180,404226,107478 -(1,16743:7246811,19388425:0,0,0 -g1,16743:7246811,19388425 -g1,16743:7246811,19388425 -g1,16743:6919131,19388425 -(1,16743:6919131,19388425:0,0,0 -) -g1,16743:7246811,19388425 -) -k1,16744:7246811,19388425:0 -g1,16744:11356705,19388425 -g1,16744:14834308,19388425 -g1,16744:17047328,19388425 -h1,16744:17363474,19388425:0,0,0 -k1,16744:31966991,19388425:14603517 -g1,16744:31966991,19388425 -) -(1,16745:7246811,20054603:24720180,404226,107478 -h1,16745:7246811,20054603:0,0,0 -g1,16745:7562957,20054603 -g1,16745:7879103,20054603 -g1,16745:11988997,20054603 -h1,16745:12305143,20054603:0,0,0 -k1,16745:31966991,20054603:19661848 -g1,16745:31966991,20054603 -) -(1,16746:7246811,20720781:24720180,404226,101187 -h1,16746:7246811,20720781:0,0,0 -g1,16746:7562957,20720781 -g1,16746:7879103,20720781 -g1,16746:12937435,20720781 -g1,16746:13569727,20720781 -g1,16746:18628058,20720781 -g1,16746:18944204,20720781 -h1,16746:22105660,20720781:0,0,0 -k1,16746:31966991,20720781:9861331 -g1,16746:31966991,20720781 -) -] -) -g1,16748:31966991,20821968 -g1,16748:7246811,20821968 -g1,16748:7246811,20821968 -g1,16748:31966991,20821968 -g1,16748:31966991,20821968 -) -h1,16748:7246811,21018576:0,0,0 -(1,16752:7246811,22160428:24720180,513147,134348 -h1,16751:7246811,22160428:983040,0,0 -k1,16751:10151509,22160428:204615 -k1,16751:13583118,22160428:204616 -k1,16751:16584154,22160428:204615 -k1,16751:17274390,22160428:204615 -(1,16751:17274390,22160428:0,452978,115847 -r1,16804:21501486,22160428:4227096,568825,115847 -k1,16751:17274390,22160428:-4227096 -) -(1,16751:17274390,22160428:4227096,452978,115847 -k1,16751:17274390,22160428:3277 -h1,16751:21498209,22160428:0,411205,112570 -) -k1,16751:21706102,22160428:204616 -k1,16751:22442214,22160428:204615 -k1,16751:24852116,22160428:204615 -k1,16751:27727979,22160428:204616 -k1,16751:31508894,22160428:204615 -k1,16751:31966991,22160428:0 -) -(1,16752:7246811,23001916:24720180,513147,134348 -k1,16751:9825306,23001916:237549 -k1,16751:10418714,23001916:237548 -k1,16751:12634140,23001916:237549 -k1,16751:13530980,23001916:237548 -k1,16751:17712486,23001916:237549 -k1,16751:19954125,23001916:237548 -(1,16751:19954125,23001916:0,452978,122846 -r1,16804:22774374,23001916:2820249,575824,122846 -k1,16751:19954125,23001916:-2820249 -) -(1,16751:19954125,23001916:2820249,452978,122846 -k1,16751:19954125,23001916:3277 -h1,16751:22771097,23001916:0,411205,112570 -) -k1,16751:23011923,23001916:237549 -k1,16751:25650710,23001916:237548 -k1,16751:26244119,23001916:237549 -k1,16751:28354686,23001916:237548 -k1,16751:30272578,23001916:237549 -k1,16751:31196288,23001916:237548 -k1,16751:31966991,23001916:0 -) -(1,16752:7246811,23843404:24720180,513147,134348 -k1,16751:10675698,23843404:182889 -k1,16751:11544749,23843404:182889 -k1,16751:12343676,23843404:182889 -k1,16751:13545650,23843404:182889 -k1,16751:15095620,23843404:182889 -k1,16751:15937801,23843404:182889 -k1,16751:17373083,23843404:182889 -k1,16751:19573827,23843404:182890 -k1,16751:21132317,23843404:182889 -k1,16751:22334291,23843404:182889 -k1,16751:23823313,23843404:182889 -k1,16751:26629608,23843404:182889 -k1,16751:27471789,23843404:182889 -k1,16751:28673763,23843404:182889 -k1,16751:30834529,23843404:182889 -k1,16751:31966991,23843404:0 -) -(1,16752:7246811,24684892:24720180,505283,7863 -g1,16751:8193806,24684892 -k1,16752:31966991,24684892:22086288 -g1,16752:31966991,24684892 -) -v1,16754:7246811,25651434:0,393216,0 -(1,16760:7246811,27292595:24720180,2034377,196608 -g1,16760:7246811,27292595 -g1,16760:7246811,27292595 -g1,16760:7050203,27292595 -(1,16760:7050203,27292595:0,2034377,196608 -r1,16804:32163599,27292595:25113396,2230985,196608 -k1,16760:7050203,27292595:-25113396 -) -(1,16760:7050203,27292595:25113396,2034377,196608 -[1,16760:7246811,27292595:24720180,1837769,0 -(1,16756:7246811,25859052:24720180,404226,107478 -(1,16755:7246811,25859052:0,0,0 -g1,16755:7246811,25859052 -g1,16755:7246811,25859052 -g1,16755:6919131,25859052 -(1,16755:6919131,25859052:0,0,0 -) -g1,16755:7246811,25859052 -) -k1,16756:7246811,25859052:0 -g1,16756:11356705,25859052 -g1,16756:14834308,25859052 -g1,16756:17047328,25859052 -h1,16756:17363474,25859052:0,0,0 -k1,16756:31966991,25859052:14603517 -g1,16756:31966991,25859052 -) -(1,16757:7246811,26525230:24720180,404226,107478 -h1,16757:7246811,26525230:0,0,0 -g1,16757:7562957,26525230 -g1,16757:7879103,26525230 -g1,16757:11988997,26525230 -h1,16757:12305143,26525230:0,0,0 -k1,16757:31966991,26525230:19661848 -g1,16757:31966991,26525230 -) -(1,16758:7246811,27191408:24720180,404226,101187 -h1,16758:7246811,27191408:0,0,0 -g1,16758:7562957,27191408 -g1,16758:7879103,27191408 -g1,16758:14834310,27191408 -g1,16758:15466602,27191408 -g1,16758:15782748,27191408 -h1,16758:17995767,27191408:0,0,0 -k1,16758:31966991,27191408:13971224 -g1,16758:31966991,27191408 -) -] -) -g1,16760:31966991,27292595 -g1,16760:7246811,27292595 -g1,16760:7246811,27292595 -g1,16760:31966991,27292595 -g1,16760:31966991,27292595 -) -h1,16760:7246811,27489203:0,0,0 -(1,16764:7246811,28631054:24720180,505283,134348 -h1,16763:7246811,28631054:983040,0,0 -k1,16763:11917168,28631054:242745 -k1,16763:12969284,28631054:242746 -k1,16763:14231114,28631054:242745 -k1,16763:17030419,28631054:242746 -k1,16763:19283153,28631054:242745 -k1,16763:19881758,28631054:242745 -k1,16763:23738159,28631054:242746 -k1,16763:26099028,28631054:242745 -k1,16763:28426474,28631054:242746 -k1,16763:31284106,28631054:242745 -k1,16763:31966991,28631054:0 -) -(1,16764:7246811,29472542:24720180,505283,134348 -k1,16763:9532131,29472542:217659 -k1,16763:10578819,29472542:217658 -k1,16763:13908783,29472542:217659 -k1,16763:16995608,29472542:217659 -k1,16763:19673489,29472542:217659 -k1,16763:22078739,29472542:217658 -k1,16763:24084220,29472542:217659 -k1,16763:25394364,29472542:217659 -(1,16763:25394364,29472542:0,414482,115847 -r1,16804:25752630,29472542:358266,530329,115847 -k1,16763:25394364,29472542:-358266 -) -(1,16763:25394364,29472542:358266,414482,115847 -k1,16763:25394364,29472542:3277 -h1,16763:25749353,29472542:0,411205,112570 -) -k1,16763:26143959,29472542:217659 -k1,16763:27013045,29472542:217658 -k1,16763:30128051,29472542:217659 -k1,16763:31966991,29472542:0 -) -(1,16764:7246811,30314030:24720180,505283,126483 -k1,16763:9229457,30314030:241354 -k1,16763:11432305,30314030:241355 -k1,16763:12766144,30314030:241354 -(1,16763:12766144,30314030:0,414482,115847 -r1,16804:13124410,30314030:358266,530329,115847 -k1,16763:12766144,30314030:-358266 -) -(1,16763:12766144,30314030:358266,414482,115847 -k1,16763:12766144,30314030:3277 -h1,16763:13121133,30314030:0,411205,112570 -) -k1,16763:13539434,30314030:241354 -k1,16763:14598677,30314030:241354 -k1,16763:16915556,30314030:241354 -k1,16763:19185906,30314030:241355 -k1,16763:21545384,30314030:241354 -k1,16763:22778298,30314030:241354 -k1,16763:25835735,30314030:241355 -k1,16763:28087078,30314030:241354 -k1,16763:30567142,30314030:241354 -k1,16763:31966991,30314030:0 -) -(1,16764:7246811,31155518:24720180,513147,134348 -g1,16763:11966714,31155518 -g1,16763:13185028,31155518 -g1,16763:16359592,31155518 -g1,16763:20276023,31155518 -g1,16763:21579534,31155518 -g1,16763:23064579,31155518 -g1,16763:24011574,31155518 -k1,16764:31966991,31155518:6268520 -g1,16764:31966991,31155518 -) -v1,16766:7246811,32122060:0,393216,0 -(1,16770:7246811,32430865:24720180,702021,196608 -g1,16770:7246811,32430865 -g1,16770:7246811,32430865 -g1,16770:7050203,32430865 -(1,16770:7050203,32430865:0,702021,196608 -r1,16804:32163599,32430865:25113396,898629,196608 -k1,16770:7050203,32430865:-25113396 -) -(1,16770:7050203,32430865:25113396,702021,196608 -[1,16770:7246811,32430865:24720180,505413,0 -(1,16768:7246811,32329678:24720180,404226,101187 -(1,16767:7246811,32329678:0,0,0 -g1,16767:7246811,32329678 -g1,16767:7246811,32329678 -g1,16767:6919131,32329678 -(1,16767:6919131,32329678:0,0,0 -) -g1,16767:7246811,32329678 -) -g1,16768:7562957,32329678 -g1,16768:7879103,32329678 -g1,16768:12937435,32329678 -g1,16768:13569727,32329678 -h1,16768:19892640,32329678:0,0,0 -k1,16768:31966991,32329678:12074351 -g1,16768:31966991,32329678 -) -] -) -g1,16770:31966991,32430865 -g1,16770:7246811,32430865 -g1,16770:7246811,32430865 -g1,16770:31966991,32430865 -g1,16770:31966991,32430865 -) -h1,16770:7246811,32627473:0,0,0 -v1,16774:7246811,33894379:0,393216,0 -(1,16778:7246811,34203184:24720180,702021,196608 -g1,16778:7246811,34203184 -g1,16778:7246811,34203184 -g1,16778:7050203,34203184 -(1,16778:7050203,34203184:0,702021,196608 -r1,16804:32163599,34203184:25113396,898629,196608 -k1,16778:7050203,34203184:-25113396 -) -(1,16778:7050203,34203184:25113396,702021,196608 -[1,16778:7246811,34203184:24720180,505413,0 -(1,16776:7246811,34101997:24720180,404226,101187 -(1,16775:7246811,34101997:0,0,0 -g1,16775:7246811,34101997 -g1,16775:7246811,34101997 -g1,16775:6919131,34101997 -(1,16775:6919131,34101997:0,0,0 -) -g1,16775:7246811,34101997 -) -g1,16776:7562957,34101997 -g1,16776:7879103,34101997 -g1,16776:12937435,34101997 -g1,16776:13569727,34101997 -h1,16776:20841077,34101997:0,0,0 -k1,16776:31966991,34101997:11125914 -g1,16776:31966991,34101997 -) -] -) -g1,16778:31966991,34203184 -g1,16778:7246811,34203184 -g1,16778:7246811,34203184 -g1,16778:31966991,34203184 -g1,16778:31966991,34203184 -) -h1,16778:7246811,34399792:0,0,0 -(1,16782:7246811,35541644:24720180,505283,126483 -h1,16781:7246811,35541644:983040,0,0 -g1,16781:11363782,35541644 -g1,16781:14631407,35541644 -g1,16781:16571928,35541644 -g1,16781:18558979,35541644 -g1,16781:19289705,35541644 -k1,16782:31966991,35541644:9384757 -g1,16782:31966991,35541644 -) -v1,16784:7246811,36508185:0,393216,0 -(1,16788:7246811,36816990:24720180,702021,196608 -g1,16788:7246811,36816990 -g1,16788:7246811,36816990 -g1,16788:7050203,36816990 -(1,16788:7050203,36816990:0,702021,196608 -r1,16804:32163599,36816990:25113396,898629,196608 -k1,16788:7050203,36816990:-25113396 -) -(1,16788:7050203,36816990:25113396,702021,196608 -[1,16788:7246811,36816990:24720180,505413,0 -(1,16786:7246811,36715803:24720180,404226,101187 -(1,16785:7246811,36715803:0,0,0 -g1,16785:7246811,36715803 -g1,16785:7246811,36715803 -g1,16785:6919131,36715803 -(1,16785:6919131,36715803:0,0,0 -) -g1,16785:7246811,36715803 -) -g1,16786:7562957,36715803 -g1,16786:7879103,36715803 -g1,16786:12937435,36715803 -g1,16786:13569727,36715803 -g1,16786:17679621,36715803 -g1,16786:17995767,36715803 -g1,16786:18311913,36715803 -h1,16786:20841078,36715803:0,0,0 -k1,16786:31966991,36715803:11125913 -g1,16786:31966991,36715803 -) -] -) -g1,16788:31966991,36816990 -g1,16788:7246811,36816990 -g1,16788:7246811,36816990 -g1,16788:31966991,36816990 -g1,16788:31966991,36816990 -) -h1,16788:7246811,37013598:0,0,0 -(1,16792:7246811,38155450:24720180,505283,134348 -h1,16791:7246811,38155450:983040,0,0 -k1,16791:10699366,38155450:193450 -k1,16791:11350914,38155450:193451 -k1,16791:12648646,38155450:193450 -k1,16791:13589862,38155450:193450 -k1,16791:17047661,38155450:193451 -k1,16791:18525617,38155450:193450 -k1,16791:21016760,38155450:193451 -k1,16791:22960677,38155450:193450 -k1,16791:23770165,38155450:193450 -k1,16791:26583745,38155450:193451 -k1,16791:28787840,38155450:193450 -k1,16791:31966991,38155450:0 -) -(1,16792:7246811,38996938:24720180,513147,134348 -k1,16791:9516423,38996938:259623 -k1,16791:10546750,38996938:259624 -k1,16791:14246358,38996938:259623 -k1,16791:15188867,38996938:259624 -k1,16791:16674669,38996938:259623 -k1,16791:17585720,38996938:259623 -k1,16791:18593110,38996938:259624 -k1,16791:21016076,38996938:259623 -k1,16791:22267259,38996938:259623 -k1,16791:25413744,38996938:259624 -k1,16791:26502397,38996938:259623 -k1,16791:28390591,38996938:259624 -k1,16791:29669299,38996938:259623 -k1,16791:31966991,38996938:0 -) -(1,16792:7246811,39838426:24720180,505283,126483 -k1,16791:9273285,39838426:276007 -k1,16791:10200720,39838426:276007 -k1,16791:11224494,39838426:276008 -k1,16791:14133082,39838426:276007 -k1,16791:15277441,39838426:276007 -k1,16791:17083714,39838426:276007 -k1,16791:18011150,39838426:276008 -k1,16791:20660216,39838426:276007 -k1,16791:21955308,39838426:276007 -k1,16791:24717096,39838426:276007 -k1,16791:25609142,39838426:276008 -k1,16791:28979104,39838426:276007 -k1,16791:31242163,39838426:276007 -k1,16791:31966991,39838426:0 -) -(1,16792:7246811,40679914:24720180,505283,134348 -g1,16791:8730546,40679914 -g1,16791:9387872,40679914 -g1,16791:10118598,40679914 -g1,16791:13907889,40679914 -g1,16791:14793280,40679914 -g1,16791:15348369,40679914 -g1,16791:18522277,40679914 -k1,16792:31966991,40679914:11405234 -g1,16792:31966991,40679914 -) -v1,16794:7246811,41646456:0,393216,0 -(1,16802:7246811,44619973:24720180,3366733,196608 -g1,16802:7246811,44619973 -g1,16802:7246811,44619973 -g1,16802:7050203,44619973 -(1,16802:7050203,44619973:0,3366733,196608 -r1,16804:32163599,44619973:25113396,3563341,196608 -k1,16802:7050203,44619973:-25113396 -) -(1,16802:7050203,44619973:25113396,3366733,196608 -[1,16802:7246811,44619973:24720180,3170125,0 -(1,16796:7246811,41854074:24720180,404226,107478 -(1,16795:7246811,41854074:0,0,0 -g1,16795:7246811,41854074 -g1,16795:7246811,41854074 -g1,16795:6919131,41854074 -(1,16795:6919131,41854074:0,0,0 -) -g1,16795:7246811,41854074 -) -k1,16796:7246811,41854074:0 -g1,16796:11356705,41854074 -g1,16796:14834308,41854074 -g1,16796:17047328,41854074 -h1,16796:17363474,41854074:0,0,0 -k1,16796:31966991,41854074:14603517 -g1,16796:31966991,41854074 -) -(1,16797:7246811,42520252:24720180,404226,107478 -h1,16797:7246811,42520252:0,0,0 -g1,16797:7562957,42520252 -g1,16797:7879103,42520252 -g1,16797:11988997,42520252 -h1,16797:12305143,42520252:0,0,0 -k1,16797:31966991,42520252:19661848 -g1,16797:31966991,42520252 -) -(1,16798:7246811,43186430:24720180,404226,107478 -h1,16798:7246811,43186430:0,0,0 -g1,16798:7562957,43186430 -g1,16798:7879103,43186430 -g1,16798:12305143,43186430 -g1,16798:12937435,43186430 -k1,16798:12937435,43186430:0 -h1,16798:15150455,43186430:0,0,0 -k1,16798:31966991,43186430:16816536 -g1,16798:31966991,43186430 -) -(1,16799:7246811,43852608:24720180,404226,101187 -h1,16799:7246811,43852608:0,0,0 -g1,16799:7562957,43852608 -g1,16799:7879103,43852608 -g1,16799:8195249,43852608 -g1,16799:8511395,43852608 -g1,16799:8827541,43852608 -g1,16799:9143687,43852608 -g1,16799:9459833,43852608 -g1,16799:9775979,43852608 -g1,16799:10092125,43852608 -g1,16799:10408271,43852608 -g1,16799:10724417,43852608 -g1,16799:11356709,43852608 -g1,16799:11989001,43852608 -g1,16799:14202022,43852608 -g1,16799:15466606,43852608 -g1,16799:16098898,43852608 -g1,16799:16731190,43852608 -g1,16799:18628065,43852608 -g1,16799:20208794,43852608 -k1,16799:20208794,43852608:0 -h1,16799:21789523,43852608:0,0,0 -k1,16799:31966991,43852608:10177468 -g1,16799:31966991,43852608 -) -(1,16800:7246811,44518786:24720180,404226,101187 -h1,16800:7246811,44518786:0,0,0 -g1,16800:7562957,44518786 -g1,16800:7879103,44518786 -g1,16800:8195249,44518786 -g1,16800:8511395,44518786 -g1,16800:8827541,44518786 -g1,16800:9143687,44518786 -g1,16800:9459833,44518786 -g1,16800:9775979,44518786 -g1,16800:10092125,44518786 -g1,16800:10408271,44518786 -g1,16800:10724417,44518786 -g1,16800:12621291,44518786 -g1,16800:13253583,44518786 -g1,16800:18311916,44518786 -g1,16800:22105665,44518786 -g1,16800:26215560,44518786 -g1,16800:28112434,44518786 -g1,16800:28744726,44518786 -h1,16800:30325455,44518786:0,0,0 -k1,16800:31966991,44518786:1641536 -g1,16800:31966991,44518786 -) -] -) -g1,16802:31966991,44619973 -g1,16802:7246811,44619973 -g1,16802:7246811,44619973 -g1,16802:31966991,44619973 -g1,16802:31966991,44619973 -) -h1,16802:7246811,44816581:0,0,0 -] -) -] -r1,16804:32583029,45706769:26214,39845888,0 -) -] -) -) -g1,16804:32583029,45116945 -) -h1,16804:6630773,45732983:0,0,0 -] -(1,16804:32583029,45706769:0,0,0 -g1,16804:32583029,45706769 -) -) -] -(1,16804:6630773,47279633:25952256,0,0 -h1,16804:6630773,47279633:25952256,0,0 -) -] -(1,16804:4262630,4025873:0,0,0 -[1,16804:-473656,4025873:0,0,0 -(1,16804:-473656,-710413:0,0,0 -(1,16804:-473656,-710413:0,0,0 -g1,16804:-473656,-710413 -) -g1,16804:-473656,-710413 -) -] -) -] -!27782 -}328 -Input:2740:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2741:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2742:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2743:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2744:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2745:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2746:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2747:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2748:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2749:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2750:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2751:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2752:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2753:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2754:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2755:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2756:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1576 -{329 -[1,16856:4262630,47279633:28320399,43253760,0 -(1,16856:4262630,4025873:0,0,0 -[1,16856:-473656,4025873:0,0,0 -(1,16856:-473656,-710413:0,0,0 -(1,16856:-473656,-644877:0,0,0 -k1,16856:-473656,-644877:-65536 -) -(1,16856:-473656,4736287:0,0,0 -k1,16856:-473656,4736287:5209943 -) -g1,16856:-473656,-710413 -) -] -) -[1,16856:6630773,47279633:25952256,43253760,0 -[1,16856:6630773,4812305:25952256,786432,0 -(1,16856:6630773,4812305:25952256,513147,134348 -(1,16856:6630773,4812305:25952256,513147,134348 -g1,16856:3078558,4812305 -[1,16856:3078558,4812305:0,0,0 -(1,16856:3078558,2439708:0,1703936,0 -k1,16856:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,16856:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,16856:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,16856:3078558,4812305:0,0,0 -(1,16856:3078558,2439708:0,1703936,0 -g1,16856:29030814,2439708 -g1,16856:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,16856:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,16856:37855564,2439708:1179648,16384,0 -) -) -k1,16856:3078556,2439708:-34777008 -) -] -[1,16856:3078558,4812305:0,0,0 -(1,16856:3078558,49800853:0,16384,2228224 -k1,16856:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,16856:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,16856:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,16856:3078558,4812305:0,0,0 -(1,16856:3078558,49800853:0,16384,2228224 -g1,16856:29030814,49800853 -g1,16856:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,16856:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,16856:37855564,49800853:1179648,16384,0 -) -) -k1,16856:3078556,49800853:-34777008 -) -] -g1,16856:6630773,4812305 -k1,16856:25712890,4812305:17886740 -g1,16856:29057847,4812305 -g1,16856:29873114,4812305 -) -) -] -[1,16856:6630773,45706769:25952256,40108032,0 -(1,16856:6630773,45706769:25952256,40108032,0 -(1,16856:6630773,45706769:0,0,0 -g1,16856:6630773,45706769 -) -[1,16856:6630773,45706769:25952256,40108032,0 -(1,16807:6630773,6254097:25952256,513147,115847 -h1,16806:6630773,6254097:983040,0,0 -k1,16806:9760552,6254097:159687 -k1,16806:10788591,6254097:159687 -k1,16806:12461504,6254097:159687 -(1,16806:12461504,6254097:0,452978,115847 -r1,16856:14930041,6254097:2468537,568825,115847 -k1,16806:12461504,6254097:-2468537 -) -(1,16806:12461504,6254097:2468537,452978,115847 -k1,16806:12461504,6254097:3277 -h1,16806:14926764,6254097:0,411205,112570 -) -k1,16806:15089727,6254097:159686 -k1,16806:15900842,6254097:159687 -k1,16806:17899469,6254097:159687 -k1,16806:20069801,6254097:159687 -k1,16806:22267658,6254097:159687 -k1,16806:23043382,6254097:159686 -k1,16806:23558929,6254097:159687 -k1,16806:26403626,6254097:159687 -k1,16806:29589110,6254097:159687 -(1,16806:29589110,6254097:0,459977,115847 -r1,16856:32409359,6254097:2820249,575824,115847 -k1,16806:29589110,6254097:-2820249 -) -(1,16806:29589110,6254097:2820249,459977,115847 -k1,16806:29589110,6254097:3277 -h1,16806:32406082,6254097:0,411205,112570 -) -k1,16807:32583029,6254097:0 -) -(1,16807:6630773,7095585:25952256,513147,134348 -(1,16806:6630773,7095585:0,459977,115847 -r1,16856:9802733,7095585:3171960,575824,115847 -k1,16806:6630773,7095585:-3171960 -) -(1,16806:6630773,7095585:3171960,459977,115847 -k1,16806:6630773,7095585:3277 -h1,16806:9799456,7095585:0,411205,112570 -) -k1,16806:10138532,7095585:162129 -k1,16806:11492105,7095585:162128 -(1,16806:11492105,7095585:0,459977,115847 -r1,16856:15015777,7095585:3523672,575824,115847 -k1,16806:11492105,7095585:-3523672 -) -(1,16806:11492105,7095585:3523672,459977,115847 -k1,16806:11492105,7095585:3277 -h1,16806:15012500,7095585:0,411205,112570 -) -k1,16806:15177906,7095585:162129 -k1,16806:17021689,7095585:162129 -k1,16806:18202903,7095585:162129 -k1,16806:21841716,7095585:162128 -k1,16806:23271311,7095585:162129 -k1,16806:26408119,7095585:162129 -k1,16806:28766359,7095585:162129 -k1,16806:29587779,7095585:162128 -k1,16806:31451878,7095585:162129 -k1,16807:32583029,7095585:0 -) -(1,16807:6630773,7937073:25952256,513147,134348 -k1,16806:8036302,7937073:139373 -k1,16806:10050005,7937073:139373 -k1,16806:13215175,7937073:139373 -k1,16806:14458830,7937073:139373 -k1,16806:15345969,7937073:139373 -k1,16806:16998568,7937073:139373 -k1,16806:18835980,7937073:139374 -k1,16806:21547641,7937073:139373 -k1,16806:23294612,7937073:139373 -k1,16806:24085413,7937073:139373 -k1,16806:26956982,7937073:139373 -k1,16806:29608350,7937073:139373 -k1,16806:32583029,7937073:0 -) -(1,16807:6630773,8778561:25952256,513147,134348 -k1,16806:9009006,8778561:182122 -k1,16806:10138779,8778561:182122 -k1,16806:11339986,8778561:182122 -(1,16806:11339986,8778561:0,452978,115847 -r1,16856:13105099,8778561:1765113,568825,115847 -k1,16806:11339986,8778561:-1765113 -) -(1,16806:11339986,8778561:1765113,452978,115847 -k1,16806:11339986,8778561:3277 -h1,16806:13101822,8778561:0,411205,112570 -) -k1,16806:13287221,8778561:182122 -k1,16806:16256589,8778561:182122 -k1,16806:17504982,8778561:182122 -k1,16806:18346396,8778561:182122 -k1,16806:21322318,8778561:182122 -k1,16806:23747737,8778561:182122 -k1,16806:25484373,8778561:182122 -k1,16806:27265573,8778561:182122 -k1,16806:28639140,8778561:182122 -k1,16806:30287958,8778561:182122 -k1,16807:32583029,8778561:0 -) -(1,16807:6630773,9620049:25952256,513147,126483 -g1,16806:7722602,9620049 -g1,16806:10106146,9620049 -g1,16806:11863166,9620049 -g1,16806:13166677,9620049 -g1,16806:14287342,9620049 -g1,16806:15434222,9620049 -g1,16806:18468538,9620049 -g1,16806:20180993,9620049 -g1,16806:21031650,9620049 -g1,16806:23160259,9620049 -g1,16806:25203671,9620049 -g1,16806:27412889,9620049 -g1,16806:27967978,9620049 -g1,16806:29266901,9620049 -g1,16806:30117558,9620049 -(1,16806:30117558,9620049:0,452978,115847 -r1,16856:31882671,9620049:1765113,568825,115847 -k1,16806:30117558,9620049:-1765113 -) -(1,16806:30117558,9620049:1765113,452978,115847 -k1,16806:30117558,9620049:3277 -h1,16806:31879394,9620049:0,411205,112570 -) -k1,16807:32583029,9620049:526688 -g1,16807:32583029,9620049 -) -v1,16809:6630773,10810515:0,393216,0 -(1,16822:6630773,13916869:25952256,3499570,196608 -g1,16822:6630773,13916869 -g1,16822:6630773,13916869 -g1,16822:6434165,13916869 -(1,16822:6434165,13916869:0,3499570,196608 -r1,16856:32779637,13916869:26345472,3696178,196608 -k1,16822:6434165,13916869:-26345472 -) -(1,16822:6434165,13916869:26345472,3499570,196608 -[1,16822:6630773,13916869:25952256,3302962,0 -(1,16811:6630773,11024425:25952256,410518,107478 -(1,16810:6630773,11024425:0,0,0 -g1,16810:6630773,11024425 -g1,16810:6630773,11024425 -g1,16810:6303093,11024425 -(1,16810:6303093,11024425:0,0,0 -) -g1,16810:6630773,11024425 -) -k1,16811:6630773,11024425:0 -g1,16811:12637542,11024425 -g1,16811:13269834,11024425 -g1,16811:15482854,11024425 -g1,16811:16431292,11024425 -k1,16811:16431292,11024425:0 -h1,16811:18644312,11024425:0,0,0 -k1,16811:32583029,11024425:13938717 -g1,16811:32583029,11024425 -) -(1,16815:6630773,11756139:25952256,404226,107478 -(1,16813:6630773,11756139:0,0,0 -g1,16813:6630773,11756139 -g1,16813:6630773,11756139 -g1,16813:6303093,11756139 -(1,16813:6303093,11756139:0,0,0 -) -g1,16813:6630773,11756139 -) -g1,16815:7579210,11756139 -g1,16815:8843793,11756139 -g1,16815:12637541,11756139 -g1,16815:13269833,11756139 -h1,16815:15166707,11756139:0,0,0 -k1,16815:32583029,11756139:17416322 -g1,16815:32583029,11756139 -) -(1,16817:6630773,13077677:25952256,410518,107478 -(1,16816:6630773,13077677:0,0,0 -g1,16816:6630773,13077677 -g1,16816:6630773,13077677 -g1,16816:6303093,13077677 -(1,16816:6303093,13077677:0,0,0 -) -g1,16816:6630773,13077677 -) -k1,16817:6630773,13077677:0 -g1,16817:12637542,13077677 -g1,16817:13269834,13077677 -g1,16817:15482854,13077677 -g1,16817:16431292,13077677 -k1,16817:16431292,13077677:0 -h1,16817:18644312,13077677:0,0,0 -k1,16817:32583029,13077677:13938717 -g1,16817:32583029,13077677 -) -(1,16821:6630773,13809391:25952256,404226,107478 -(1,16819:6630773,13809391:0,0,0 -g1,16819:6630773,13809391 -g1,16819:6630773,13809391 -g1,16819:6303093,13809391 -(1,16819:6303093,13809391:0,0,0 -) -g1,16819:6630773,13809391 -) -g1,16821:7579210,13809391 -g1,16821:8843793,13809391 -g1,16821:11372959,13809391 -g1,16821:12005251,13809391 -h1,16821:13585979,13809391:0,0,0 -k1,16821:32583029,13809391:18997050 -g1,16821:32583029,13809391 -) -] -) -g1,16822:32583029,13916869 -g1,16822:6630773,13916869 -g1,16822:6630773,13916869 -g1,16822:32583029,13916869 -g1,16822:32583029,13916869 -) -h1,16822:6630773,14113477:0,0,0 -v1,16826:6630773,16003541:0,393216,0 -(1,16829:6630773,20814037:25952256,5203712,616038 -g1,16829:6630773,20814037 -(1,16829:6630773,20814037:25952256,5203712,616038 -(1,16829:6630773,21430075:25952256,5819750,0 -[1,16829:6630773,21430075:25952256,5819750,0 -(1,16829:6630773,21403861:25952256,5767322,0 -r1,16856:6656987,21403861:26214,5767322,0 -[1,16829:6656987,21403861:25899828,5767322,0 -(1,16829:6656987,20814037:25899828,4587674,0 -[1,16829:7246811,20814037:24720180,4587674,0 -(1,16827:7246811,17313737:24720180,1087374,126483 -k1,16826:8818696,17313737:362182 -k1,16826:10989671,17313737:362181 -k1,16826:12370938,17313737:362182 -k1,16826:15037365,17313737:362181 -k1,16826:17428542,17313737:362182 -k1,16826:18268481,17313737:362182 -k1,16826:19801135,17313737:362181 -k1,16826:21154877,17313737:362182 -k1,16826:24009392,17313737:362181 -k1,16826:25765525,17313737:362182 -k1,16826:26581052,17313737:362018 -k1,16826:27626118,17313737:362181 -k1,16826:29271495,17313737:362182 -k1,16827:31966991,17313737:0 -) -(1,16827:7246811,18155225:24720180,513147,134348 -(1,16826:7246811,18155225:0,459977,115847 -r1,16856:10418771,18155225:3171960,575824,115847 -k1,16826:7246811,18155225:-3171960 -) -(1,16826:7246811,18155225:3171960,459977,115847 -k1,16826:7246811,18155225:3277 -h1,16826:10415494,18155225:0,411205,112570 -) -g1,16826:10618000,18155225 -g1,16826:11949691,18155225 -g1,16826:14483312,18155225 -g1,16826:15430307,18155225 -g1,16826:18121870,18155225 -g1,16826:18972527,18155225 -g1,16826:20515899,18155225 -g1,16826:23816947,18155225 -g1,16826:25800066,18155225 -g1,16826:26787693,18155225 -g1,16826:28374975,18155225 -k1,16827:31966991,18155225:1920193 -g1,16827:31966991,18155225 -) -(1,16829:7246811,18996713:24720180,513147,134348 -h1,16828:7246811,18996713:983040,0,0 -k1,16828:9810491,18996713:283027 -k1,16828:11487469,18996713:283027 -k1,16828:14796293,18996713:283027 -(1,16828:14796293,18996713:0,459977,115847 -r1,16856:17616542,18996713:2820249,575824,115847 -k1,16828:14796293,18996713:-2820249 -) -(1,16828:14796293,18996713:2820249,459977,115847 -k1,16828:14796293,18996713:3277 -h1,16828:17613265,18996713:0,411205,112570 -) -k1,16828:18073239,18996713:283027 -(1,16828:18073239,18996713:0,459977,115847 -r1,16856:21245199,18996713:3171960,575824,115847 -k1,16828:18073239,18996713:-3171960 -) -(1,16828:18073239,18996713:3171960,459977,115847 -k1,16828:18073239,18996713:3277 -h1,16828:21241922,18996713:0,411205,112570 -) -k1,16828:21701896,18996713:283027 -k1,16828:23176368,18996713:283027 -(1,16828:23176368,18996713:0,459977,115847 -r1,16856:26700040,18996713:3523672,575824,115847 -k1,16828:23176368,18996713:-3523672 -) -(1,16828:23176368,18996713:3523672,459977,115847 -k1,16828:23176368,18996713:3277 -h1,16828:26696763,18996713:0,411205,112570 -) -k1,16828:27156737,18996713:283027 -k1,16828:30867297,18996713:283027 -k1,16829:31966991,18996713:0 -) -(1,16829:7246811,19838201:24720180,513147,134348 -k1,16828:9396094,19838201:229733 -k1,16828:11342216,19838201:229734 -k1,16828:12231241,19838201:229733 -k1,16828:14024008,19838201:229733 -k1,16828:15521208,19838201:229734 -k1,16828:18725620,19838201:229733 -k1,16828:21151465,19838201:229734 -k1,16828:22040490,19838201:229733 -k1,16828:25032566,19838201:229733 -k1,16828:27580964,19838201:229734 -k1,16828:29204648,19838201:229733 -k1,16828:31966991,19838201:0 -) -(1,16829:7246811,20679689:24720180,513147,134348 -g1,16828:10262122,20679689 -g1,16828:11120643,20679689 -g1,16828:13278088,20679689 -k1,16829:31966991,20679689:17577412 -g1,16829:31966991,20679689 -) -] -) -] -r1,16856:32583029,21403861:26214,5767322,0 -) -] -) -) -g1,16829:32583029,20814037 -) -h1,16829:6630773,21430075:0,0,0 -(1,16832:6630773,22795851:25952256,513147,126483 -h1,16831:6630773,22795851:983040,0,0 -k1,16831:8324485,22795851:240779 -k1,16831:9096762,22795851:240780 -k1,16831:10623357,22795851:240779 -k1,16831:13494096,22795851:240779 -k1,16831:14386303,22795851:240779 -k1,16831:17837036,22795851:240780 -k1,16831:19096900,22795851:240779 -k1,16831:21018022,22795851:240779 -k1,16831:21918093,22795851:240779 -k1,16831:25000514,22795851:240780 -k1,16831:26097849,22795851:240779 -k1,16831:26954666,22795851:240779 -k1,16831:28580221,22795851:240779 -k1,16831:29840086,22795851:240780 -k1,16831:31923737,22795851:240779 -k1,16831:32583029,22795851:0 -) -(1,16832:6630773,23637339:25952256,513147,134348 -k1,16831:10291852,23637339:183739 -k1,16831:11743057,23637339:183739 -k1,16831:12282656,23637339:183739 -k1,16831:13749590,23637339:183739 -k1,16831:17546984,23637339:183739 -k1,16831:20402627,23637339:183740 -k1,16831:21395736,23637339:183739 -k1,16831:22598560,23637339:183739 -k1,16831:23577906,23637339:183739 -k1,16831:27796041,23637339:183739 -k1,16831:28639072,23637339:183739 -k1,16831:32583029,23637339:0 -) -(1,16832:6630773,24478827:25952256,513147,134348 -k1,16831:8372337,24478827:223095 -k1,16831:12365719,24478827:223096 -k1,16831:13580374,24478827:223095 -k1,16831:17108450,24478827:223095 -k1,16831:18844772,24478827:223096 -k1,16831:19754029,24478827:223095 -k1,16831:21821307,24478827:223095 -k1,16831:22660441,24478827:223096 -k1,16831:24664805,24478827:223095 -k1,16831:26268744,24478827:223095 -k1,16831:27023337,24478827:223096 -k1,16831:30024503,24478827:223095 -k1,16831:32583029,24478827:0 -) -(1,16832:6630773,25320315:25952256,513147,134348 -g1,16831:7922487,25320315 -g1,16831:8781008,25320315 -g1,16831:11392617,25320315 -g1,16831:12783291,25320315 -k1,16832:32583029,25320315:15975713 -g1,16832:32583029,25320315 -) -(1,16834:6630773,26161803:25952256,505283,126483 -h1,16833:6630773,26161803:983040,0,0 -k1,16833:8721806,26161803:154444 -k1,16833:9968736,26161803:154445 -(1,16833:9968736,26161803:0,452978,115847 -r1,16856:12788985,26161803:2820249,568825,115847 -k1,16833:9968736,26161803:-2820249 -) -(1,16833:9968736,26161803:2820249,452978,115847 -k1,16833:9968736,26161803:3277 -h1,16833:12785708,26161803:0,411205,112570 -) -k1,16833:12943429,26161803:154444 -k1,16833:13749302,26161803:154445 -k1,16833:17113699,26161803:154444 -k1,16833:20109784,26161803:154444 -k1,16833:20947114,26161803:154445 -k1,16833:24871844,26161803:154444 -k1,16833:27820089,26161803:154445 -k1,16833:28590571,26161803:154444 -(1,16833:28590571,26161803:0,452978,115847 -r1,16856:30003973,26161803:1413402,568825,115847 -k1,16833:28590571,26161803:-1413402 -) -(1,16833:28590571,26161803:1413402,452978,115847 -g1,16833:29648984,26161803 -h1,16833:30000696,26161803:0,411205,112570 -) -k1,16833:30158418,26161803:154445 -k1,16833:31074390,26161803:154444 -k1,16833:32583029,26161803:0 -) -(1,16834:6630773,27003291:25952256,505283,134348 -k1,16833:8721964,27003291:237177 -k1,16833:9705595,27003291:237176 -k1,16833:11811203,27003291:237177 -k1,16833:13332886,27003291:237177 -k1,16833:14589147,27003291:237176 -k1,16833:17898652,27003291:237177 -k1,16833:18787257,27003291:237177 -(1,16833:18787257,27003291:0,452978,115847 -r1,16856:21607506,27003291:2820249,568825,115847 -k1,16833:18787257,27003291:-2820249 -) -(1,16833:18787257,27003291:2820249,452978,115847 -k1,16833:18787257,27003291:3277 -h1,16833:21604229,27003291:0,411205,112570 -) -k1,16833:21844682,27003291:237176 -k1,16833:23942426,27003291:237177 -k1,16833:24831030,27003291:237176 -k1,16833:25815973,27003291:237177 -k1,16833:28339701,27003291:237177 -k1,16833:29263039,27003291:237176 -k1,16833:30270919,27003291:237177 -k1,16834:32583029,27003291:0 -) -(1,16834:6630773,27844779:25952256,505283,126483 -k1,16833:8390551,27844779:245241 -k1,16833:9251830,27844779:245241 -k1,16833:10700312,27844779:245241 -k1,16833:13606970,27844779:245241 -k1,16833:14720563,27844779:245241 -k1,16833:16496070,27844779:245241 -k1,16833:17392739,27844779:245241 -k1,16833:18730466,27844779:245242 -k1,16833:19331567,27844779:245241 -k1,16833:21181785,27844779:245241 -(1,16833:21181785,27844779:0,414482,115847 -r1,16856:21540051,27844779:358266,530329,115847 -k1,16833:21181785,27844779:-358266 -) -(1,16833:21181785,27844779:358266,414482,115847 -k1,16833:21181785,27844779:3277 -h1,16833:21536774,27844779:0,411205,112570 -) -k1,16833:21958962,27844779:245241 -k1,16833:22855631,27844779:245241 -k1,16833:24939812,27844779:245241 -k1,16833:25540913,27844779:245241 -k1,16833:27573976,27844779:245241 -k1,16833:30454420,27844779:245241 -k1,16833:32583029,27844779:0 -) -(1,16834:6630773,28686267:25952256,513147,126483 -k1,16833:11003772,28686267:179350 -k1,16833:11649083,28686267:179350 -k1,16833:12847518,28686267:179350 -k1,16833:16797155,28686267:179351 -k1,16833:19314174,28686267:179350 -k1,16833:22508835,28686267:179350 -k1,16833:24384912,28686267:179350 -k1,16833:25696724,28686267:179350 -k1,16833:26623840,28686267:179350 -k1,16833:29641555,28686267:179351 -k1,16833:30768556,28686267:179350 -k1,16833:31563944,28686267:179350 -k1,16833:32583029,28686267:0 -) -(1,16834:6630773,29527755:25952256,505283,126483 -g1,16833:10887336,29527755 -g1,16833:13038227,29527755 -g1,16833:14679903,29527755 -g1,16833:15495170,29527755 -(1,16833:15495170,29527755:0,452978,115847 -r1,16856:16908571,29527755:1413401,568825,115847 -k1,16833:15495170,29527755:-1413401 -) -(1,16833:15495170,29527755:1413401,452978,115847 -k1,16833:15495170,29527755:3277 -h1,16833:16905294,29527755:0,411205,112570 -) -g1,16833:17281470,29527755 -g1,16833:19551637,29527755 -g1,16833:21760855,29527755 -g1,16833:22315944,29527755 -g1,16833:23614867,29527755 -g1,16833:24465524,29527755 -(1,16833:24465524,29527755:0,452978,115847 -r1,16856:26230637,29527755:1765113,568825,115847 -k1,16833:24465524,29527755:-1765113 -) -(1,16833:24465524,29527755:1765113,452978,115847 -k1,16833:24465524,29527755:3277 -h1,16833:26227360,29527755:0,411205,112570 -) -k1,16834:32583029,29527755:6178722 -g1,16834:32583029,29527755 -) -v1,16836:6630773,30718221:0,393216,0 -(1,16844:6630773,33666572:25952256,3341567,196608 -g1,16844:6630773,33666572 -g1,16844:6630773,33666572 -g1,16844:6434165,33666572 -(1,16844:6434165,33666572:0,3341567,196608 -r1,16856:32779637,33666572:26345472,3538175,196608 -k1,16844:6434165,33666572:-26345472 -) -(1,16844:6434165,33666572:26345472,3341567,196608 -[1,16844:6630773,33666572:25952256,3144959,0 -(1,16838:6630773,30925839:25952256,404226,107478 -(1,16837:6630773,30925839:0,0,0 -g1,16837:6630773,30925839 -g1,16837:6630773,30925839 -g1,16837:6303093,30925839 -(1,16837:6303093,30925839:0,0,0 -) -g1,16837:6630773,30925839 -) -k1,16838:6630773,30925839:0 -g1,16838:10740667,30925839 -g1,16838:14218270,30925839 -g1,16838:16431290,30925839 -h1,16838:16747436,30925839:0,0,0 -k1,16838:32583029,30925839:15835593 -g1,16838:32583029,30925839 -) -(1,16839:6630773,31592017:25952256,404226,107478 -h1,16839:6630773,31592017:0,0,0 -g1,16839:6946919,31592017 -g1,16839:7263065,31592017 -g1,16839:11372959,31592017 -h1,16839:11689105,31592017:0,0,0 -k1,16839:32583029,31592017:20893924 -g1,16839:32583029,31592017 -) -(1,16840:6630773,32258195:25952256,404226,101187 -h1,16840:6630773,32258195:0,0,0 -g1,16840:6946919,32258195 -g1,16840:7263065,32258195 -g1,16840:10740668,32258195 -g1,16840:11372960,32258195 -g1,16840:17063583,32258195 -k1,16840:17063583,32258195:0 -h1,16840:23070352,32258195:0,0,0 -k1,16840:32583029,32258195:9512677 -g1,16840:32583029,32258195 -) -(1,16841:6630773,32924373:25952256,404226,101187 -h1,16841:6630773,32924373:0,0,0 -g1,16841:6946919,32924373 -g1,16841:7263065,32924373 -g1,16841:7579211,32924373 -g1,16841:7895357,32924373 -g1,16841:8211503,32924373 -g1,16841:8527649,32924373 -g1,16841:8843795,32924373 -g1,16841:11689106,32924373 -g1,16841:12321398,32924373 -g1,16841:16431292,32924373 -k1,16841:16431292,32924373:0 -h1,16841:24334934,32924373:0,0,0 -k1,16841:32583029,32924373:8248095 -g1,16841:32583029,32924373 -) -(1,16842:6630773,33590551:25952256,404226,76021 -h1,16842:6630773,33590551:0,0,0 -g1,16842:6946919,33590551 -g1,16842:7263065,33590551 -g1,16842:7579211,33590551 -g1,16842:7895357,33590551 -g1,16842:8211503,33590551 -g1,16842:8527649,33590551 -g1,16842:8843795,33590551 -h1,16842:9159941,33590551:0,0,0 -k1,16842:32583029,33590551:23423088 -g1,16842:32583029,33590551 -) -] -) -g1,16844:32583029,33666572 -g1,16844:6630773,33666572 -g1,16844:6630773,33666572 -g1,16844:32583029,33666572 -g1,16844:32583029,33666572 -) -h1,16844:6630773,33863180:0,0,0 -(1,16847:6630773,43536670:25952256,9083666,0 -k1,16847:10523651,43536670:3892878 -h1,16846:10523651,43536670:0,0,0 -(1,16846:10523651,43536670:18166500,9083666,0 -(1,16846:10523651,43536670:18167376,9083688,0 -(1,16846:10523651,43536670:18167376,9083688,0 -(1,16846:10523651,43536670:0,9083688,0 -(1,16846:10523651,43536670:0,14208860,0 -(1,16846:10523651,43536670:28417720,14208860,0 -) -k1,16846:10523651,43536670:-28417720 -) -) -g1,16846:28691027,43536670 -) -) -) -g1,16847:28690151,43536670 -k1,16847:32583029,43536670:3892878 -) -(1,16854:6630773,44378158:25952256,513147,126483 -h1,16853:6630773,44378158:983040,0,0 -k1,16853:8566755,44378158:325107 -k1,16853:9910947,44378158:325107 -k1,16853:11603135,44378158:325107 -k1,16853:12595398,44378158:325107 -(1,16853:12595398,44378158:0,452978,115847 -r1,16856:16822494,44378158:4227096,568825,115847 -k1,16853:12595398,44378158:-4227096 -) -(1,16853:12595398,44378158:4227096,452978,115847 -k1,16853:12595398,44378158:3277 -h1,16853:16819217,44378158:0,411205,112570 -) -k1,16853:17147601,44378158:325107 -k1,16853:18341060,44378158:325107 -k1,16853:20819025,44378158:325107 -k1,16853:22692748,44378158:325107 -k1,16853:23549352,44378158:325107 -k1,16853:24525887,44378158:325107 -k1,16853:25598760,44378158:325107 -k1,16853:27437093,44378158:325107 -k1,16853:28709851,44378158:325107 -k1,16853:32583029,44378158:0 -) -(1,16854:6630773,45219646:25952256,505283,134348 -g1,16853:9388528,45219646 -g1,16853:9943617,45219646 -g1,16853:12301602,45219646 -k1,16854:32583030,45219646:19114232 -g1,16854:32583030,45219646 -) -] -(1,16856:32583029,45706769:0,0,0 -g1,16856:32583029,45706769 -) -) -] -(1,16856:6630773,47279633:25952256,0,0 -h1,16856:6630773,47279633:25952256,0,0 -) -] -(1,16856:4262630,4025873:0,0,0 -[1,16856:-473656,4025873:0,0,0 -(1,16856:-473656,-710413:0,0,0 -(1,16856:-473656,-710413:0,0,0 -g1,16856:-473656,-710413 -) -g1,16856:-473656,-710413 -) -] -) -] -!23204 -}329 -Input:2757:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2758:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2759:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2760:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!380 -{330 -[1,16913:4262630,47279633:28320399,43253760,0 -(1,16913:4262630,4025873:0,0,0 -[1,16913:-473656,4025873:0,0,0 -(1,16913:-473656,-710413:0,0,0 -(1,16913:-473656,-644877:0,0,0 -k1,16913:-473656,-644877:-65536 -) -(1,16913:-473656,4736287:0,0,0 -k1,16913:-473656,4736287:5209943 -) -g1,16913:-473656,-710413 -) -] -) -[1,16913:6630773,47279633:25952256,43253760,0 -[1,16913:6630773,4812305:25952256,786432,0 -(1,16913:6630773,4812305:25952256,505283,134348 -(1,16913:6630773,4812305:25952256,505283,134348 -g1,16913:3078558,4812305 -[1,16913:3078558,4812305:0,0,0 -(1,16913:3078558,2439708:0,1703936,0 -k1,16913:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,16913:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,16913:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,16913:3078558,4812305:0,0,0 -(1,16913:3078558,2439708:0,1703936,0 -g1,16913:29030814,2439708 -g1,16913:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,16913:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,16913:37855564,2439708:1179648,16384,0 -) -) -k1,16913:3078556,2439708:-34777008 -) -] -[1,16913:3078558,4812305:0,0,0 -(1,16913:3078558,49800853:0,16384,2228224 -k1,16913:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,16913:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,16913:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,16913:3078558,4812305:0,0,0 -(1,16913:3078558,49800853:0,16384,2228224 -g1,16913:29030814,49800853 -g1,16913:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,16913:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,16913:37855564,49800853:1179648,16384,0 -) -) -k1,16913:3078556,49800853:-34777008 -) -] -g1,16913:6630773,4812305 -g1,16913:6630773,4812305 -g1,16913:9573994,4812305 -g1,16913:12339613,4812305 -g1,16913:13966872,4812305 -g1,16913:16682684,4812305 -k1,16913:31387652,4812305:14704968 -) -) -] -[1,16913:6630773,45706769:25952256,40108032,0 -(1,16913:6630773,45706769:25952256,40108032,0 -(1,16913:6630773,45706769:0,0,0 -g1,16913:6630773,45706769 -) -[1,16913:6630773,45706769:25952256,40108032,0 -v1,16856:6630773,6254097:0,393216,0 -(1,16864:6630773,9202448:25952256,3341567,196608 -g1,16864:6630773,9202448 -g1,16864:6630773,9202448 -g1,16864:6434165,9202448 -(1,16864:6434165,9202448:0,3341567,196608 -r1,16913:32779637,9202448:26345472,3538175,196608 -k1,16864:6434165,9202448:-26345472 -) -(1,16864:6434165,9202448:26345472,3341567,196608 -[1,16864:6630773,9202448:25952256,3144959,0 -(1,16858:6630773,6461715:25952256,404226,107478 -(1,16857:6630773,6461715:0,0,0 -g1,16857:6630773,6461715 -g1,16857:6630773,6461715 -g1,16857:6303093,6461715 -(1,16857:6303093,6461715:0,0,0 -) -g1,16857:6630773,6461715 -) -k1,16858:6630773,6461715:0 -g1,16858:10740667,6461715 -g1,16858:14218270,6461715 -g1,16858:16431290,6461715 -h1,16858:16747436,6461715:0,0,0 -k1,16858:32583029,6461715:15835593 -g1,16858:32583029,6461715 -) -(1,16859:6630773,7127893:25952256,404226,107478 -h1,16859:6630773,7127893:0,0,0 -g1,16859:6946919,7127893 -g1,16859:7263065,7127893 -g1,16859:11372959,7127893 -h1,16859:11689105,7127893:0,0,0 -k1,16859:32583029,7127893:20893924 -g1,16859:32583029,7127893 -) -(1,16860:6630773,7794071:25952256,404226,101187 -h1,16860:6630773,7794071:0,0,0 -g1,16860:6946919,7794071 -g1,16860:7263065,7794071 -g1,16860:10740668,7794071 -g1,16860:11372960,7794071 -g1,16860:18328166,7794071 -g1,16860:19592749,7794071 -g1,16860:22121915,7794071 -g1,16860:22754207,7794071 -k1,16860:22754207,7794071:0 -h1,16860:28128684,7794071:0,0,0 -k1,16860:32583029,7794071:4454345 -g1,16860:32583029,7794071 -) -(1,16861:6630773,8460249:25952256,404226,101187 -h1,16861:6630773,8460249:0,0,0 -g1,16861:6946919,8460249 -g1,16861:7263065,8460249 -g1,16861:7579211,8460249 -g1,16861:7895357,8460249 -g1,16861:8211503,8460249 -g1,16861:8527649,8460249 -g1,16861:8843795,8460249 -g1,16861:11689106,8460249 -g1,16861:12321398,8460249 -g1,16861:17695875,8460249 -g1,16861:19592750,8460249 -g1,16861:22754208,8460249 -g1,16861:23386500,8460249 -k1,16861:23386500,8460249:0 -h1,16861:30657850,8460249:0,0,0 -k1,16861:32583029,8460249:1925179 -g1,16861:32583029,8460249 -) -(1,16862:6630773,9126427:25952256,404226,76021 -h1,16862:6630773,9126427:0,0,0 -g1,16862:6946919,9126427 -g1,16862:7263065,9126427 -g1,16862:7579211,9126427 -g1,16862:7895357,9126427 -g1,16862:8211503,9126427 -g1,16862:8527649,9126427 -g1,16862:8843795,9126427 -h1,16862:9159941,9126427:0,0,0 -k1,16862:32583029,9126427:23423088 -g1,16862:32583029,9126427 -) -] -) -g1,16864:32583029,9202448 -g1,16864:6630773,9202448 -g1,16864:6630773,9202448 -g1,16864:32583029,9202448 -g1,16864:32583029,9202448 -) -h1,16864:6630773,9399056:0,0,0 -(1,16867:6630773,19072546:25952256,9083666,0 -k1,16867:10523651,19072546:3892878 -h1,16866:10523651,19072546:0,0,0 -(1,16866:10523651,19072546:18166500,9083666,0 -(1,16866:10523651,19072546:18167376,9083688,0 -(1,16866:10523651,19072546:18167376,9083688,0 -(1,16866:10523651,19072546:0,9083688,0 -(1,16866:10523651,19072546:0,14208860,0 -(1,16866:10523651,19072546:28417720,14208860,0 -) -k1,16866:10523651,19072546:-28417720 -) -) -g1,16866:28691027,19072546 -) -) -) -g1,16867:28690151,19072546 -k1,16867:32583029,19072546:3892878 -) -(1,16874:6630773,19914034:25952256,513147,126483 -h1,16873:6630773,19914034:983040,0,0 -k1,16873:8826502,19914034:170667 -k1,16873:11832255,19914034:170666 -k1,16873:15876100,19914034:170667 -k1,16873:17151049,19914034:170667 -k1,16873:18069481,19914034:170666 -k1,16873:19753374,19914034:170667 -k1,16873:20575469,19914034:170667 -k1,16873:23682803,19914034:170666 -k1,16873:24624173,19914034:170667 -k1,16873:28234825,19914034:170667 -k1,16873:30415480,19914034:170666 -k1,16873:30942007,19914034:170667 -k1,16874:32583029,19914034:0 -) -(1,16874:6630773,20755522:25952256,513147,134348 -k1,16873:8120032,20755522:221793 -k1,16873:10196493,20755522:221792 -k1,16873:11227656,20755522:221793 -k1,16873:12468533,20755522:221792 -k1,16873:16092955,20755522:221793 -k1,16873:18693704,20755522:221792 -k1,16873:20186895,20755522:221793 -k1,16873:21775768,20755522:221792 -k1,16873:22656853,20755522:221793 -k1,16873:25321827,20755522:221792 -k1,16873:26075117,20755522:221793 -k1,16873:26948337,20755522:221792 -k1,16873:29604137,20755522:221793 -k1,16873:30845014,20755522:221792 -k1,16873:32583029,20755522:0 -) -(1,16874:6630773,21597010:25952256,513147,134348 -g1,16873:7489294,21597010 -g1,16873:8707608,21597010 -g1,16873:10866363,21597010 -g1,16873:13270879,21597010 -g1,16873:14156270,21597010 -g1,16873:15126202,21597010 -g1,16873:18571429,21597010 -g1,16873:20338279,21597010 -g1,16873:22547497,21597010 -g1,16873:23102586,21597010 -k1,16874:32583029,21597010:6611277 -g1,16874:32583029,21597010 -) -v1,16876:6630773,22787476:0,393216,0 -(1,16901:6630773,31912693:25952256,9518433,196608 -g1,16901:6630773,31912693 -g1,16901:6630773,31912693 -g1,16901:6434165,31912693 -(1,16901:6434165,31912693:0,9518433,196608 -r1,16913:32779637,31912693:26345472,9715041,196608 -k1,16901:6434165,31912693:-26345472 -) -(1,16901:6434165,31912693:26345472,9518433,196608 -[1,16901:6630773,31912693:25952256,9321825,0 -(1,16878:6630773,23001386:25952256,410518,101187 -(1,16877:6630773,23001386:0,0,0 -g1,16877:6630773,23001386 -g1,16877:6630773,23001386 -g1,16877:6303093,23001386 -(1,16877:6303093,23001386:0,0,0 -) -g1,16877:6630773,23001386 -) -g1,16878:10740667,23001386 -g1,16878:11689105,23001386 -g1,16878:15482854,23001386 -h1,16878:15799000,23001386:0,0,0 -k1,16878:32583028,23001386:16784028 -g1,16878:32583028,23001386 -) -(1,16879:6630773,23667564:25952256,404226,101187 -h1,16879:6630773,23667564:0,0,0 -g1,16879:6946919,23667564 -g1,16879:7263065,23667564 -k1,16879:7263065,23667564:0 -h1,16879:16431290,23667564:0,0,0 -k1,16879:32583029,23667564:16151739 -g1,16879:32583029,23667564 -) -(1,16880:6630773,24333742:25952256,404226,76021 -h1,16880:6630773,24333742:0,0,0 -h1,16880:6946919,24333742:0,0,0 -k1,16880:32583029,24333742:25636110 -g1,16880:32583029,24333742 -) -(1,16881:6630773,24999920:25952256,0,0 -h1,16881:6630773,24999920:0,0,0 -h1,16881:6630773,24999920:0,0,0 -k1,16881:32583029,24999920:25952256 -g1,16881:32583029,24999920 -) -(1,16882:6630773,25666098:25952256,404226,6290 -h1,16882:6630773,25666098:0,0,0 -g1,16882:7263065,25666098 -g1,16882:8211503,25666098 -g1,16882:10424523,25666098 -g1,16882:11372960,25666098 -h1,16882:14218271,25666098:0,0,0 -k1,16882:32583029,25666098:18364758 -g1,16882:32583029,25666098 -) -(1,16883:6630773,26332276:25952256,0,0 -h1,16883:6630773,26332276:0,0,0 -h1,16883:6630773,26332276:0,0,0 -k1,16883:32583029,26332276:25952256 -g1,16883:32583029,26332276 -) -(1,16884:6630773,26998454:25952256,404226,101187 -h1,16884:6630773,26998454:0,0,0 -k1,16884:6630773,26998454:0 -h1,16884:14218270,26998454:0,0,0 -k1,16884:32583030,26998454:18364760 -g1,16884:32583030,26998454 -) -(1,16888:6630773,27730168:25952256,404226,76021 -(1,16886:6630773,27730168:0,0,0 -g1,16886:6630773,27730168 -g1,16886:6630773,27730168 -g1,16886:6303093,27730168 -(1,16886:6303093,27730168:0,0,0 -) -g1,16886:6630773,27730168 -) -g1,16888:7579210,27730168 -g1,16888:8843793,27730168 -h1,16888:13269833,27730168:0,0,0 -k1,16888:32583029,27730168:19313196 -g1,16888:32583029,27730168 -) -(1,16890:6630773,29051706:25952256,404226,101187 -(1,16889:6630773,29051706:0,0,0 -g1,16889:6630773,29051706 -g1,16889:6630773,29051706 -g1,16889:6303093,29051706 -(1,16889:6303093,29051706:0,0,0 -) -g1,16889:6630773,29051706 -) -k1,16890:6630773,29051706:0 -g1,16890:11372959,29051706 -g1,16890:12005251,29051706 -h1,16890:12637543,29051706:0,0,0 -k1,16890:32583029,29051706:19945486 -g1,16890:32583029,29051706 -) -(1,16894:6630773,29783420:25952256,404226,76021 -(1,16892:6630773,29783420:0,0,0 -g1,16892:6630773,29783420 -g1,16892:6630773,29783420 -g1,16892:6303093,29783420 -(1,16892:6303093,29783420:0,0,0 -) -g1,16892:6630773,29783420 -) -g1,16894:7579210,29783420 -g1,16894:8843793,29783420 -g1,16894:9792230,29783420 -g1,16894:10424522,29783420 -h1,16894:11056813,29783420:0,0,0 -k1,16894:32583029,29783420:21526216 -g1,16894:32583029,29783420 -) -(1,16896:6630773,31104958:25952256,404226,101187 -(1,16895:6630773,31104958:0,0,0 -g1,16895:6630773,31104958 -g1,16895:6630773,31104958 -g1,16895:6303093,31104958 -(1,16895:6303093,31104958:0,0,0 -) -g1,16895:6630773,31104958 -) -k1,16896:6630773,31104958:0 -h1,16896:11372958,31104958:0,0,0 -k1,16896:32583030,31104958:21210072 -g1,16896:32583030,31104958 -) -(1,16900:6630773,31836672:25952256,404226,76021 -(1,16898:6630773,31836672:0,0,0 -g1,16898:6630773,31836672 -g1,16898:6630773,31836672 -g1,16898:6303093,31836672 -(1,16898:6303093,31836672:0,0,0 -) -g1,16898:6630773,31836672 -) -g1,16900:7579210,31836672 -g1,16900:8843793,31836672 -h1,16900:9792230,31836672:0,0,0 -k1,16900:32583030,31836672:22790800 -g1,16900:32583030,31836672 -) -] -) -g1,16901:32583029,31912693 -g1,16901:6630773,31912693 -g1,16901:6630773,31912693 -g1,16901:32583029,31912693 -g1,16901:32583029,31912693 -) -h1,16901:6630773,32109301:0,0,0 -v1,16905:6630773,33999365:0,393216,0 -(1,16906:6630773,37061857:25952256,3455708,616038 -g1,16906:6630773,37061857 -(1,16906:6630773,37061857:25952256,3455708,616038 -(1,16906:6630773,37677895:25952256,4071746,0 -[1,16906:6630773,37677895:25952256,4071746,0 -(1,16906:6630773,37651681:25952256,4019318,0 -r1,16913:6656987,37651681:26214,4019318,0 -[1,16906:6656987,37651681:25899828,4019318,0 -(1,16906:6656987,37061857:25899828,2839670,0 -[1,16906:7246811,37061857:24720180,2839670,0 -(1,16906:7246811,35244533:24720180,1022346,134348 -k1,16905:8653174,35244533:150850 -k1,16905:9291563,35244533:150801 -k1,16905:10725608,35244533:150850 -k1,16905:13630280,35244533:150849 -k1,16905:16375699,35244533:150850 -k1,16905:18412019,35244533:150849 -k1,16905:19094366,35244533:150850 -k1,16905:20311486,35244533:150849 -k1,16905:21427681,35244533:150850 -k1,16905:22194568,35244533:150849 -k1,16905:24399316,35244533:150850 -k1,16905:27310541,35244533:150849 -k1,16905:30138537,35244533:150850 -k1,16906:31966991,35244533:0 -) -(1,16906:7246811,36086021:24720180,513147,134348 -k1,16905:9238017,36086021:181757 -k1,16905:10611237,36086021:181775 -k1,16905:14303120,36086021:181774 -k1,16905:17011308,36086021:181775 -k1,16905:18140733,36086021:181774 -k1,16905:21324711,36086021:181775 -k1,16905:22973181,36086021:181774 -k1,16905:24102607,36086021:181775 -k1,16905:28074983,36086021:181774 -k1,16905:29448203,36086021:181775 -k1,16905:30577628,36086021:181774 -k1,16905:31966991,36086021:0 -) -(1,16906:7246811,36927509:24720180,513147,134348 -k1,16905:11663047,36927509:163605 -k1,16905:13207496,36927509:163605 -k1,16905:15951253,36927509:163605 -k1,16905:18875234,36927509:163605 -k1,16905:19809542,36927509:163605 -k1,16905:23360048,36927509:163605 -k1,16905:24175081,36927509:163605 -k1,16905:25357771,36927509:163605 -k1,16905:26613861,36927509:163605 -k1,16905:27444621,36927509:163604 -k1,16905:28023034,36927509:163570 -k1,16906:31966991,36927509:0 -k1,16906:31966991,36927509:0 -) -] -) -] -r1,16913:32583029,37651681:26214,4019318,0 -) -] -) -) -g1,16906:32583029,37061857 -) -h1,16906:6630773,37677895:0,0,0 -(1,16909:6630773,41009751:25952256,32768,229376 -(1,16909:6630773,41009751:0,32768,229376 -(1,16909:6630773,41009751:5505024,32768,229376 -r1,16913:12135797,41009751:5505024,262144,229376 -) -k1,16909:6630773,41009751:-5505024 -) -(1,16909:6630773,41009751:25952256,32768,0 -r1,16913:32583029,41009751:25952256,32768,0 -) -) -(1,16909:6630773,42614079:25952256,606339,161218 -(1,16909:6630773,42614079:2464678,575668,0 -g1,16909:6630773,42614079 -g1,16909:9095451,42614079 -) -g1,16909:12689446,42614079 -g1,16909:16294451,42614079 -g1,16909:18233006,42614079 -k1,16909:32583029,42614079:11037571 -g1,16909:32583029,42614079 -) -(1,16913:6630773,43848783:25952256,513147,134348 -k1,16912:8006272,43848783:178812 -k1,16912:11087675,43848783:178813 -k1,16912:11925779,43848783:178812 -k1,16912:14823681,43848783:178813 -k1,16912:17014448,43848783:178812 -k1,16912:18349970,43848783:178812 -k1,16912:19180211,43848783:178813 -k1,16912:21001355,43848783:178812 -k1,16912:22371612,43848783:178812 -k1,16912:23741870,43848783:178813 -k1,16912:25528280,43848783:178812 -k1,16912:30232354,43848783:178813 -k1,16912:31039001,43848783:178812 -k1,16912:32583029,43848783:0 -) -(1,16913:6630773,44690271:25952256,505283,134348 -k1,16912:8124033,44690271:227104 -k1,16912:10049175,44690271:227104 -k1,16912:12848567,44690271:227104 -k1,16912:13431531,44690271:227104 -k1,16912:17150393,44690271:227104 -k1,16912:18660692,44690271:227104 -k1,16912:20338763,44690271:227104 -k1,16912:21023965,44690271:227105 -k1,16912:21782566,44690271:227104 -k1,16912:23344638,44690271:227104 -k1,16912:24223170,44690271:227104 -k1,16912:25938597,44690271:227104 -k1,16912:27559652,44690271:227104 -k1,16912:28142616,44690271:227104 -k1,16912:30494397,44690271:227104 -k1,16912:32583029,44690271:0 -) -(1,16913:6630773,45531759:25952256,513147,134348 -k1,16912:7780900,45531759:202476 -k1,16912:8339236,45531759:202476 -k1,16912:9992679,45531759:202476 -(1,16912:9992679,45531759:0,452978,115847 -r1,16913:12461216,45531759:2468537,568825,115847 -k1,16912:9992679,45531759:-2468537 -) -(1,16912:9992679,45531759:2468537,452978,115847 -k1,16912:9992679,45531759:3277 -h1,16912:12457939,45531759:0,411205,112570 -) -k1,16912:12663692,45531759:202476 -k1,16912:14069409,45531759:202476 -k1,16912:15722852,45531759:202476 -k1,16912:18737478,45531759:202476 -k1,16912:20224460,45531759:202476 -k1,16912:21446021,45531759:202476 -k1,16912:23807253,45531759:202476 -k1,16912:24541226,45531759:202476 -k1,16912:25429864,45531759:202476 -k1,16912:28471360,45531759:202476 -k1,16912:29865281,45531759:202476 -k1,16912:31086842,45531759:202476 -k1,16912:32583029,45531759:0 -) -] -(1,16913:32583029,45706769:0,0,0 -g1,16913:32583029,45706769 -) -) -] -(1,16913:6630773,47279633:25952256,0,0 -h1,16913:6630773,47279633:25952256,0,0 -) -] -(1,16913:4262630,4025873:0,0,0 -[1,16913:-473656,4025873:0,0,0 -(1,16913:-473656,-710413:0,0,0 -(1,16913:-473656,-710413:0,0,0 -g1,16913:-473656,-710413 -) -g1,16913:-473656,-710413 -) -] -) -] -!16790 -}330 -Input:2761:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2762:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2763:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2764:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!380 -{331 -[1,16947:4262630,47279633:28320399,43253760,0 -(1,16947:4262630,4025873:0,0,0 -[1,16947:-473656,4025873:0,0,0 -(1,16947:-473656,-710413:0,0,0 -(1,16947:-473656,-644877:0,0,0 -k1,16947:-473656,-644877:-65536 -) -(1,16947:-473656,4736287:0,0,0 -k1,16947:-473656,4736287:5209943 -) -g1,16947:-473656,-710413 -) -] -) -[1,16947:6630773,47279633:25952256,43253760,0 -[1,16947:6630773,4812305:25952256,786432,0 -(1,16947:6630773,4812305:25952256,513147,134348 -(1,16947:6630773,4812305:25952256,513147,134348 -g1,16947:3078558,4812305 -[1,16947:3078558,4812305:0,0,0 -(1,16947:3078558,2439708:0,1703936,0 -k1,16947:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,16947:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,16947:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,16947:3078558,4812305:0,0,0 -(1,16947:3078558,2439708:0,1703936,0 -g1,16947:29030814,2439708 -g1,16947:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,16947:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,16947:37855564,2439708:1179648,16384,0 -) -) -k1,16947:3078556,2439708:-34777008 -) -] -[1,16947:3078558,4812305:0,0,0 -(1,16947:3078558,49800853:0,16384,2228224 -k1,16947:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,16947:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,16947:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,16947:3078558,4812305:0,0,0 -(1,16947:3078558,49800853:0,16384,2228224 -g1,16947:29030814,49800853 -g1,16947:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,16947:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,16947:37855564,49800853:1179648,16384,0 -) -) -k1,16947:3078556,49800853:-34777008 -) -] -g1,16947:6630773,4812305 -k1,16947:25712890,4812305:17886740 -g1,16947:29057847,4812305 -g1,16947:29873114,4812305 -) -) -] -[1,16947:6630773,45706769:25952256,40108032,0 -(1,16947:6630773,45706769:25952256,40108032,0 -(1,16947:6630773,45706769:0,0,0 -g1,16947:6630773,45706769 -) -[1,16947:6630773,45706769:25952256,40108032,0 -(1,16913:6630773,6254097:25952256,513147,134348 -k1,16912:10072855,6254097:200671 -k1,16912:14008423,6254097:200671 -k1,16912:15365804,6254097:200671 -k1,16912:16670757,6254097:200671 -k1,16912:18268000,6254097:200671 -k1,16912:21695663,6254097:200670 -k1,16912:24960798,6254097:200671 -k1,16912:26352914,6254097:200671 -k1,16912:27750928,6254097:200671 -k1,16912:31391584,6254097:200671 -k1,16912:32583029,6254097:0 -) -(1,16913:6630773,7095585:25952256,513147,134348 -k1,16912:9597386,7095585:284224 -k1,16912:13036514,7095585:284225 -k1,16912:14517425,7095585:284224 -k1,16912:16208052,7095585:284224 -k1,16912:18177863,7095585:284225 -k1,16912:19453647,7095585:284224 -k1,16912:21171799,7095585:284224 -k1,16912:22107452,7095585:284225 -k1,16912:23589019,7095585:284224 -k1,16912:27610762,7095585:284224 -k1,16912:29086431,7095585:284224 -k1,16912:30389741,7095585:284225 -k1,16912:31900144,7095585:284224 -k1,16912:32583029,7095585:0 -) -(1,16913:6630773,7937073:25952256,513147,126483 -k1,16912:10626855,7937073:225796 -k1,16912:12365878,7937073:225797 -k1,16912:13539325,7937073:225796 -k1,16912:15536560,7937073:225797 -k1,16912:16953801,7937073:225796 -k1,16912:18431991,7937073:225797 -k1,16912:19849232,7937073:225796 -k1,16912:21176034,7937073:225797 -k1,16912:23419684,7937073:225796 -k1,16912:26249882,7937073:225797 -k1,16912:29460188,7937073:225796 -k1,16912:30217482,7937073:225797 -k1,16912:31094706,7937073:225796 -k1,16912:32583029,7937073:0 -) -(1,16913:6630773,8778561:25952256,513147,134348 -k1,16912:8318091,8778561:293367 -k1,16912:9382161,8778561:293367 -k1,16912:12166551,8778561:293367 -k1,16912:13737216,8778561:293368 -k1,16912:15222028,8778561:293367 -k1,16912:17777698,8778561:293367 -k1,16912:18702832,8778561:293367 -k1,16912:20238762,8778561:293367 -k1,16912:21293657,8778561:293367 -k1,16912:23322417,8778561:293367 -k1,16912:24634870,8778561:293368 -k1,16912:26581710,8778561:293367 -k1,16912:29399524,8778561:293367 -k1,16912:31189078,8778561:293367 -k1,16912:32583029,8778561:0 -) -(1,16913:6630773,9620049:25952256,513147,134348 -k1,16912:9646938,9620049:253822 -(1,16912:9646938,9620049:0,452978,115847 -r1,16947:11060339,9620049:1413401,568825,115847 -k1,16912:9646938,9620049:-1413401 -) -(1,16912:9646938,9620049:1413401,452978,115847 -k1,16912:9646938,9620049:3277 -h1,16912:11057062,9620049:0,411205,112570 -) -k1,16912:11314161,9620049:253822 -k1,16912:12250868,9620049:253822 -k1,16912:15312252,9620049:253822 -k1,16912:18328417,9620049:253822 -k1,16912:21597550,9620049:253822 -k1,16912:23634607,9620049:253822 -k1,16912:26259522,9620049:253822 -k1,16912:28009531,9620049:253822 -k1,16912:29211004,9620049:253822 -k1,16912:29820686,9620049:253822 -k1,16912:32583029,9620049:0 -) -(1,16913:6630773,10461537:25952256,505283,126483 -g1,16912:8219365,10461537 -g1,16912:9526808,10461537 -g1,16912:11298246,10461537 -(1,16912:11298246,10461537:0,452978,115847 -r1,16947:13415071,10461537:2116825,568825,115847 -k1,16912:11298246,10461537:-2116825 -) -(1,16912:11298246,10461537:2116825,452978,115847 -k1,16912:11298246,10461537:3277 -h1,16912:13411794,10461537:0,411205,112570 -) -g1,16912:13614300,10461537 -g1,16912:15004974,10461537 -(1,16912:15004974,10461537:0,414482,115847 -r1,16947:16770087,10461537:1765113,530329,115847 -k1,16912:15004974,10461537:-1765113 -) -(1,16912:15004974,10461537:1765113,414482,115847 -k1,16912:15004974,10461537:3277 -h1,16912:16766810,10461537:0,411205,112570 -) -g1,16912:16969316,10461537 -g1,16912:18160105,10461537 -g1,16912:20071790,10461537 -g1,16912:20922447,10461537 -g1,16912:22651942,10461537 -g1,16912:23502599,10461537 -g1,16912:24449594,10461537 -k1,16913:32583029,10461537:5965504 -g1,16913:32583029,10461537 -) -v1,16915:6630773,11827313:0,393216,0 -(1,16916:6630773,17479297:25952256,6045200,616038 -g1,16916:6630773,17479297 -(1,16916:6630773,17479297:25952256,6045200,616038 -(1,16916:6630773,18095335:25952256,6661238,0 -[1,16916:6630773,18095335:25952256,6661238,0 -(1,16916:6630773,18069121:25952256,6608810,0 -r1,16947:6656987,18069121:26214,6608810,0 -[1,16916:6656987,18069121:25899828,6608810,0 -(1,16916:6656987,17479297:25899828,5429162,0 -[1,16916:7246811,17479297:24720180,5429162,0 -(1,16916:7246811,13137509:24720180,1087374,134348 -k1,16915:8609968,13137509:153454 -k1,16915:10404445,13137509:153455 -k1,16915:10913759,13137509:153454 -k1,16915:14583220,13137509:153454 -k1,16915:17422995,13137509:153454 -k1,16915:18965813,13137509:153455 -k1,16915:20396564,13137509:153454 -k1,16915:21209310,13137509:153454 -k1,16915:22821596,13137509:153455 -k1,16915:25591903,13137509:153454 -k1,16915:27100642,13137509:153454 -k1,16915:28015624,13137509:153454 -k1,16915:29698034,13137509:153455 -k1,16915:30611706,13137509:153454 -k1,16915:31966991,13137509:0 -) -(1,16916:7246811,13978997:24720180,513147,134348 -k1,16915:8207036,13978997:198697 -k1,16915:9934688,13978997:198697 -k1,16915:10346376,13978997:198696 -k1,16915:11360341,13978997:198697 -k1,16915:12625309,13978997:198697 -k1,16915:14360170,13978997:198697 -k1,16915:15210295,13978997:198697 -k1,16915:17144385,13978997:198697 -k1,16915:18362167,13978997:198697 -k1,16915:21463454,13978997:198697 -k1,16915:22278189,13978997:198697 -k1,16915:23495971,13978997:198697 -k1,16915:27729064,13978997:198697 -k1,16915:28587053,13978997:198697 -k1,16915:29804835,13978997:198697 -k1,16915:31280829,13978997:198697 -k1,16915:31966991,13978997:0 -) -(1,16916:7246811,14820485:24720180,513147,134348 -k1,16915:9599613,14820485:145549 -k1,16915:10817332,14820485:145550 -k1,16915:11622173,14820485:145549 -k1,16915:13763294,14820485:145550 -k1,16915:17147632,14820485:145549 -k1,16915:17952474,14820485:145550 -k1,16915:19301264,14820485:145549 -k1,16915:22965442,14820485:145550 -k1,16915:23762419,14820485:145549 -k1,16915:25099414,14820485:145550 -k1,16915:29302952,14820485:145549 -k1,16915:31966991,14820485:0 -) -(1,16916:7246811,15661973:24720180,513147,134348 -k1,16915:8084714,15661973:221865 -k1,16915:9077281,15661973:221864 -k1,16915:11911411,15661973:221865 -k1,16915:14221907,15661973:221864 -k1,16915:17062591,15661973:221865 -k1,16915:18590589,15661973:221865 -k1,16915:19573981,15661973:221864 -k1,16915:22428427,15661973:221865 -k1,16915:23485876,15661973:221865 -k1,16915:24726825,15661973:221864 -k1,16915:27635011,15661973:221865 -k1,16915:29134172,15661973:221864 -k1,16915:29972075,15661973:221865 -k1,16915:31966991,15661973:0 -) -(1,16916:7246811,16503461:24720180,513147,134348 -k1,16915:8127464,16503461:194491 -k1,16915:8677814,16503461:194490 -k1,16915:10123387,16503461:194491 -k1,16915:10933916,16503461:194491 -k1,16915:14624096,16503461:194490 -k1,16915:16010032,16503461:194491 -k1,16915:17658112,16503461:194491 -k1,16915:19587996,16503461:194491 -k1,16915:22499609,16503461:194490 -k1,16915:23310138,16503461:194491 -k1,16915:24523714,16503461:194491 -k1,16915:27840995,16503461:194490 -k1,16915:28694778,16503461:194491 -k1,16915:31966991,16503461:0 -) -(1,16916:7246811,17344949:24720180,513147,134348 -k1,16915:8462027,17344949:196131 -k1,16915:11046946,17344949:196132 -k1,16915:13331709,17344949:196131 -k1,16915:14187132,17344949:196131 -k1,16915:15402348,17344949:196131 -k1,16915:16875777,17344949:196132 -k1,16915:18263353,17344949:196131 -k1,16915:21731697,17344949:196131 -k1,16915:22716226,17344949:196131 -k1,16915:26306468,17344949:196132 -k1,16915:27694044,17344949:196131 -k1,16916:31966991,17344949:0 -k1,16916:31966991,17344949:0 -) -] -) -] -r1,16947:32583029,18069121:26214,6608810,0 -) -] -) -) -g1,16916:32583029,17479297 -) -h1,16916:6630773,18095335:0,0,0 -(1,16918:6630773,20902903:25952256,32768,229376 -(1,16918:6630773,20902903:0,32768,229376 -(1,16918:6630773,20902903:5505024,32768,229376 -r1,16947:12135797,20902903:5505024,262144,229376 -) -k1,16918:6630773,20902903:-5505024 -) -(1,16918:6630773,20902903:25952256,32768,0 -r1,16947:32583029,20902903:25952256,32768,0 -) -) -(1,16918:6630773,22507231:25952256,615776,161218 -(1,16918:6630773,22507231:2464678,573309,14155 -g1,16918:6630773,22507231 -g1,16918:9095451,22507231 -) -g1,16918:12689446,22507231 -g1,16918:14506891,22507231 -g1,16918:15564642,22507231 -k1,16918:32583029,22507231:15046802 -g1,16918:32583029,22507231 -) -(1,16921:6630773,23741935:25952256,513147,134348 -k1,16920:8434498,23741935:241347 -k1,16920:9327273,23741935:241347 -k1,16920:10316387,23741935:241348 -k1,16920:13731643,23741935:241347 -k1,16920:14585752,23741935:241347 -k1,16920:15182959,23741935:241347 -k1,16920:17119067,23741935:241347 -k1,16920:20118825,23741935:241348 -k1,16920:21043057,23741935:241347 -k1,16920:24439963,23741935:241347 -k1,16920:25367472,23741935:241347 -k1,16920:26930680,23741935:241347 -k1,16920:27831320,23741935:241348 -k1,16920:29091752,23741935:241347 -k1,16920:30986572,23741935:241347 -k1,16920:32583029,23741935:0 -) -(1,16921:6630773,24583423:25952256,505283,126483 -k1,16920:8316717,24583423:155678 -k1,16920:9123822,24583423:155677 -k1,16920:10027266,24583423:155678 -k1,16920:13463676,24583423:155678 -k1,16920:14235391,24583423:155677 -k1,16920:16733326,24583423:155678 -k1,16920:19717537,24583423:155677 -k1,16920:22363583,24583423:155678 -k1,16920:24421771,24583423:155678 -k1,16920:25768893,24583423:155677 -k1,16920:28618756,24583423:155678 -k1,16920:32583029,24583423:0 -) -(1,16921:6630773,25424911:25952256,505283,134348 -k1,16920:8379328,25424911:150787 -k1,16920:9721560,25424911:150787 -k1,16920:12753966,25424911:150788 -k1,16920:13733783,25424911:150787 -k1,16920:17040129,25424911:150787 -k1,16920:18394157,25424911:150787 -k1,16920:22263458,25424911:150788 -k1,16920:23282597,25424911:150787 -k1,16920:24963650,25424911:150787 -k1,16920:25765865,25424911:150787 -k1,16920:27558985,25424911:150788 -k1,16920:29317370,25424911:150787 -k1,16920:32583029,25424911:0 -) -(1,16921:6630773,26266399:25952256,505283,134348 -k1,16920:8079472,26266399:257254 -k1,16920:10066221,26266399:257254 -k1,16920:13452819,26266399:257254 -k1,16920:14471601,26266399:257254 -k1,16920:17725816,26266399:257254 -k1,16920:20051386,26266399:257254 -k1,16920:20960067,26266399:257253 -k1,16920:22236406,26266399:257254 -k1,16920:25826821,26266399:257254 -k1,16920:27368581,26266399:257254 -k1,16920:29156101,26266399:257254 -k1,16920:30064783,26266399:257254 -k1,16920:31069803,26266399:257254 -k1,16920:32583029,26266399:0 -) -(1,16921:6630773,27107887:25952256,505283,126483 -g1,16920:9501249,27107887 -k1,16921:32583029,27107887:21152400 -g1,16921:32583029,27107887 -) -(1,16922:6630773,29199147:25952256,555811,147783 -(1,16922:6630773,29199147:2899444,525533,12975 -g1,16922:6630773,29199147 -g1,16922:9530217,29199147 -) -g1,16922:12167976,29199147 -g1,16922:13822433,29199147 -g1,16922:16269875,29199147 -g1,16922:17837103,29199147 -g1,16922:20247780,29199147 -g1,16922:21178457,29199147 -k1,16922:32583029,29199147:8083404 -g1,16922:32583029,29199147 -) -(1,16925:6630773,30433851:25952256,505283,134348 -k1,16924:8635592,30433851:221584 -k1,16924:11429465,30433851:221585 -k1,16924:13258647,30433851:221584 -k1,16924:14874182,30433851:221584 -k1,16924:18097969,30433851:221584 -k1,16924:20609382,30433851:221585 -k1,16924:21822526,30433851:221584 -k1,16924:25305837,30433851:221584 -k1,16924:27262814,30433851:221584 -k1,16924:30231013,30433851:221585 -(1,16924:30231013,30433851:0,414482,115847 -r1,16947:30589279,30433851:358266,530329,115847 -k1,16924:30231013,30433851:-358266 -) -(1,16924:30231013,30433851:358266,414482,115847 -k1,16924:30231013,30433851:3277 -h1,16924:30586002,30433851:0,411205,112570 -) -k1,16924:30810863,30433851:221584 -k1,16924:31683875,30433851:221584 -k1,16925:32583029,30433851:0 -) -(1,16925:6630773,31275339:25952256,513147,134348 -k1,16924:9074544,31275339:193265 -k1,16924:11948233,31275339:193266 -k1,16924:13160583,31275339:193265 -k1,16924:16546763,31275339:193266 -k1,16924:20841271,31275339:193265 -k1,16924:22231224,31275339:193266 -k1,16924:25450286,31275339:193265 -k1,16924:26928058,31275339:193266 -k1,16924:29050703,31275339:193265 -k1,16924:30521266,31275339:193266 -k1,16924:32583029,31275339:0 -) -(1,16925:6630773,32116827:25952256,513147,134348 -k1,16924:8938145,32116827:231191 -k1,16924:10280826,32116827:231190 -k1,16924:11503577,32116827:231191 -k1,16924:15771785,32116827:231190 -k1,16924:16662268,32116827:231191 -k1,16924:19183286,32116827:231190 -k1,16924:20605922,32116827:231191 -k1,16924:21856197,32116827:231190 -k1,16924:24377216,32116827:231191 -k1,16924:25988594,32116827:231190 -k1,16924:28230430,32116827:231191 -k1,16924:29565902,32116827:231190 -k1,16924:30544859,32116827:231191 -k1,16924:32583029,32116827:0 -) -(1,16925:6630773,32958315:25952256,505283,126483 -g1,16924:7446040,32958315 -g1,16924:10660580,32958315 -g1,16924:12051254,32958315 -g1,16924:13740772,32958315 -g1,16924:15925087,32958315 -g1,16924:18089741,32958315 -g1,16924:18940398,32958315 -g1,16924:21810874,32958315 -g1,16924:23617701,32958315 -g1,16924:24429692,32958315 -g1,16924:24984781,32958315 -g1,16924:26637599,32958315 -k1,16925:32583029,32958315:4346352 -g1,16925:32583029,32958315 -) -(1,16927:6630773,33799803:25952256,505283,126483 -h1,16926:6630773,33799803:983040,0,0 -k1,16926:8726308,33799803:158946 -k1,16926:10814633,33799803:158945 -k1,16926:11329439,33799803:158946 -k1,16926:12765681,33799803:158945 -k1,16926:14116072,33799803:158946 -k1,16926:15665692,33799803:158946 -k1,16926:16282734,33799803:158945 -k1,16926:17093108,33799803:158946 -k1,16926:19763393,33799803:158945 -(1,16926:19763393,33799803:0,452978,115847 -r1,16947:21880218,33799803:2116825,568825,115847 -k1,16926:19763393,33799803:-2116825 -) -(1,16926:19763393,33799803:2116825,452978,115847 -k1,16926:19763393,33799803:3277 -h1,16926:21876941,33799803:0,411205,112570 -) -k1,16926:22039164,33799803:158946 -k1,16926:23389555,33799803:158946 -k1,16926:24416852,33799803:158945 -k1,16926:27844734,33799803:158946 -k1,16926:29394353,33799803:158945 -k1,16926:30572384,33799803:158946 -k1,16926:32583029,33799803:0 -) -(1,16927:6630773,34641291:25952256,513147,126483 -g1,16926:9608729,34641291 -g1,16926:10569486,34641291 -g1,16926:11124575,34641291 -g1,16926:12423498,34641291 -g1,16926:13274155,34641291 -g1,16926:16168880,34641291 -(1,16926:16168880,34641291:0,452978,115847 -r1,16947:18285705,34641291:2116825,568825,115847 -k1,16926:16168880,34641291:-2116825 -) -(1,16926:16168880,34641291:2116825,452978,115847 -k1,16926:16168880,34641291:3277 -h1,16926:18282428,34641291:0,411205,112570 -) -k1,16927:32583029,34641291:14123654 -g1,16927:32583029,34641291 -) -v1,16929:6630773,35831757:0,393216,0 -(1,16941:6630773,41469986:25952256,6031445,196608 -g1,16941:6630773,41469986 -g1,16941:6630773,41469986 -g1,16941:6434165,41469986 -(1,16941:6434165,41469986:0,6031445,196608 -r1,16947:32779637,41469986:26345472,6228053,196608 -k1,16941:6434165,41469986:-26345472 -) -(1,16941:6434165,41469986:26345472,6031445,196608 -[1,16941:6630773,41469986:25952256,5834837,0 -(1,16931:6630773,36039375:25952256,404226,107478 -(1,16930:6630773,36039375:0,0,0 -g1,16930:6630773,36039375 -g1,16930:6630773,36039375 -g1,16930:6303093,36039375 -(1,16930:6303093,36039375:0,0,0 -) -g1,16930:6630773,36039375 -) -g1,16931:8843793,36039375 -g1,16931:9792231,36039375 -g1,16931:13585980,36039375 -g1,16931:14218272,36039375 -k1,16931:14218272,36039375:0 -h1,16931:16431292,36039375:0,0,0 -k1,16931:32583029,36039375:16151737 -g1,16931:32583029,36039375 -) -(1,16932:6630773,36705553:25952256,404226,107478 -h1,16932:6630773,36705553:0,0,0 -g1,16932:6946919,36705553 -g1,16932:7263065,36705553 -g1,16932:7579211,36705553 -g1,16932:7895357,36705553 -g1,16932:8211503,36705553 -g1,16932:8527649,36705553 -g1,16932:8843795,36705553 -g1,16932:9159941,36705553 -g1,16932:9476087,36705553 -g1,16932:9792233,36705553 -g1,16932:10108379,36705553 -g1,16932:10424525,36705553 -g1,16932:10740671,36705553 -g1,16932:11056817,36705553 -g1,16932:11372963,36705553 -g1,16932:11689109,36705553 -g1,16932:12005255,36705553 -g1,16932:13902130,36705553 -g1,16932:14534422,36705553 -g1,16932:16431297,36705553 -g1,16932:17063589,36705553 -g1,16932:17695881,36705553 -k1,16932:17695881,36705553:0 -h1,16932:18960464,36705553:0,0,0 -k1,16932:32583029,36705553:13622565 -g1,16932:32583029,36705553 -) -(1,16933:6630773,37371731:25952256,410518,101187 -h1,16933:6630773,37371731:0,0,0 -g1,16933:6946919,37371731 -g1,16933:7263065,37371731 -g1,16933:7579211,37371731 -g1,16933:7895357,37371731 -g1,16933:8211503,37371731 -g1,16933:8527649,37371731 -g1,16933:8843795,37371731 -g1,16933:9159941,37371731 -g1,16933:9476087,37371731 -g1,16933:9792233,37371731 -g1,16933:10108379,37371731 -g1,16933:10424525,37371731 -g1,16933:10740671,37371731 -g1,16933:11056817,37371731 -g1,16933:11372963,37371731 -g1,16933:11689109,37371731 -g1,16933:12005255,37371731 -g1,16933:13902129,37371731 -g1,16933:14534421,37371731 -g1,16933:18960461,37371731 -h1,16933:19276607,37371731:0,0,0 -k1,16933:32583029,37371731:13306422 -g1,16933:32583029,37371731 -) -(1,16934:6630773,38037909:25952256,404226,107478 -h1,16934:6630773,38037909:0,0,0 -g1,16934:6946919,38037909 -g1,16934:7263065,38037909 -g1,16934:7579211,38037909 -g1,16934:7895357,38037909 -g1,16934:8211503,38037909 -g1,16934:8527649,38037909 -g1,16934:8843795,38037909 -g1,16934:9159941,38037909 -g1,16934:9476087,38037909 -g1,16934:9792233,38037909 -k1,16934:9792233,38037909:0 -h1,16934:13585981,38037909:0,0,0 -k1,16934:32583029,38037909:18997048 -g1,16934:32583029,38037909 -) -(1,16935:6630773,38704087:25952256,0,0 -h1,16935:6630773,38704087:0,0,0 -h1,16935:6630773,38704087:0,0,0 -k1,16935:32583029,38704087:25952256 -g1,16935:32583029,38704087 -) -(1,16936:6630773,39370265:25952256,404226,107478 -h1,16936:6630773,39370265:0,0,0 -g1,16936:8843793,39370265 -g1,16936:9792231,39370265 -g1,16936:12005252,39370265 -g1,16936:12637544,39370265 -g1,16936:15166710,39370265 -k1,16936:15166710,39370265:0 -h1,16936:19908896,39370265:0,0,0 -k1,16936:32583029,39370265:12674133 -g1,16936:32583029,39370265 -) -(1,16937:6630773,40036443:25952256,404226,101187 -h1,16937:6630773,40036443:0,0,0 -g1,16937:6946919,40036443 -g1,16937:7263065,40036443 -g1,16937:7579211,40036443 -g1,16937:7895357,40036443 -g1,16937:8211503,40036443 -g1,16937:8527649,40036443 -g1,16937:8843795,40036443 -g1,16937:9159941,40036443 -g1,16937:9476087,40036443 -g1,16937:9792233,40036443 -g1,16937:10108379,40036443 -g1,16937:10424525,40036443 -g1,16937:10740671,40036443 -g1,16937:11056817,40036443 -g1,16937:11372963,40036443 -g1,16937:12005255,40036443 -g1,16937:12637547,40036443 -g1,16937:14850567,40036443 -k1,16937:14850567,40036443:0 -h1,16937:18644315,40036443:0,0,0 -k1,16937:32583029,40036443:13938714 -g1,16937:32583029,40036443 -) -(1,16938:6630773,40702621:25952256,410518,101187 -h1,16938:6630773,40702621:0,0,0 -g1,16938:6946919,40702621 -g1,16938:7263065,40702621 -g1,16938:7579211,40702621 -g1,16938:7895357,40702621 -g1,16938:8211503,40702621 -g1,16938:8527649,40702621 -g1,16938:8843795,40702621 -g1,16938:9159941,40702621 -g1,16938:9476087,40702621 -g1,16938:9792233,40702621 -g1,16938:10108379,40702621 -g1,16938:10424525,40702621 -g1,16938:10740671,40702621 -g1,16938:11056817,40702621 -g1,16938:11372963,40702621 -g1,16938:13269837,40702621 -g1,16938:13902129,40702621 -g1,16938:16431295,40702621 -k1,16938:16431295,40702621:0 -h1,16938:21173481,40702621:0,0,0 -k1,16938:32583029,40702621:11409548 -g1,16938:32583029,40702621 -) -(1,16939:6630773,41368799:25952256,410518,101187 -h1,16939:6630773,41368799:0,0,0 -g1,16939:6946919,41368799 -g1,16939:7263065,41368799 -g1,16939:7579211,41368799 -g1,16939:7895357,41368799 -g1,16939:8211503,41368799 -g1,16939:8527649,41368799 -g1,16939:8843795,41368799 -g1,16939:9159941,41368799 -g1,16939:9476087,41368799 -g1,16939:9792233,41368799 -g1,16939:10108379,41368799 -g1,16939:10424525,41368799 -g1,16939:10740671,41368799 -g1,16939:11056817,41368799 -g1,16939:11372963,41368799 -g1,16939:13269837,41368799 -g1,16939:13902129,41368799 -g1,16939:16431295,41368799 -h1,16939:21173481,41368799:0,0,0 -k1,16939:32583029,41368799:11409548 -g1,16939:32583029,41368799 -) -] -) -g1,16941:32583029,41469986 -g1,16941:6630773,41469986 -g1,16941:6630773,41469986 -g1,16941:32583029,41469986 -g1,16941:32583029,41469986 -) -h1,16941:6630773,41666594:0,0,0 -(1,16945:6630773,43032370:25952256,513147,126483 -h1,16944:6630773,43032370:983040,0,0 -k1,16944:8788078,43032370:220716 -k1,16944:11945462,43032370:220716 -k1,16944:13185262,43032370:220715 -k1,16944:14812381,43032370:220716 -k1,16944:16310394,43032370:220716 -k1,16944:18098731,43032370:220716 -k1,16944:19338532,43032370:220716 -k1,16944:20731686,43032370:220715 -k1,16944:22604565,43032370:220716 -k1,16944:23693633,43032370:220716 -k1,16944:25725764,43032370:220716 -k1,16944:27213945,43032370:220715 -k1,16944:30449972,43032370:220716 -k1,16944:32051532,43032370:220716 -k1,16944:32583029,43032370:0 -) -(1,16945:6630773,43873858:25952256,513147,134348 -k1,16944:8762473,43873858:154479 -k1,16944:10614991,43873858:154480 -k1,16944:11637822,43873858:154479 -k1,16944:13322568,43873858:154480 -k1,16944:14128475,43873858:154479 -k1,16944:16212334,43873858:154479 -k1,16944:18598315,43873858:154480 -k1,16944:20360392,43873858:154479 -k1,16944:23300806,43873858:154479 -k1,16944:24739792,43873858:154480 -k1,16944:26466480,43873858:154479 -(1,16944:26466480,43873858:0,414482,115847 -r1,16947:27879881,43873858:1413401,530329,115847 -k1,16944:26466480,43873858:-1413401 -) -(1,16944:26466480,43873858:1413401,414482,115847 -k1,16944:26466480,43873858:3277 -h1,16944:27876604,43873858:0,411205,112570 -) -k1,16944:28034361,43873858:154480 -k1,16944:31591469,43873858:154479 -k1,16944:32583029,43873858:0 -) -(1,16945:6630773,44715346:25952256,505283,126483 -k1,16944:8342901,44715346:198902 -k1,16944:12562436,44715346:198901 -k1,16944:13389173,44715346:198902 -k1,16944:14607159,44715346:198901 -k1,16944:17467478,44715346:198902 -k1,16944:19695374,44715346:198901 -k1,16944:20762628,44715346:198902 -k1,16944:22772945,44715346:198902 -k1,16944:24668573,44715346:198901 -k1,16944:27109462,44715346:198902 -k1,16944:28380532,44715346:198901 -k1,16944:29598519,44715346:198902 -k1,16944:32583029,44715346:0 -) -(1,16945:6630773,45556834:25952256,513147,126483 -g1,16944:7934284,45556834 -g1,16944:8881279,45556834 -g1,16944:10593734,45556834 -g1,16944:11740614,45556834 -g1,16944:13641813,45556834 -g1,16944:15118339,45556834 -g1,16944:19245141,45556834 -g1,16944:20127255,45556834 -g1,16944:21650311,45556834 -g1,16944:22508832,45556834 -k1,16945:32583029,45556834:5972954 -g1,16945:32583029,45556834 -) -] -(1,16947:32583029,45706769:0,0,0 -g1,16947:32583029,45706769 -) -) -] -(1,16947:6630773,47279633:25952256,0,0 -h1,16947:6630773,47279633:25952256,0,0 -) -] -(1,16947:4262630,4025873:0,0,0 -[1,16947:-473656,4025873:0,0,0 -(1,16947:-473656,-710413:0,0,0 -(1,16947:-473656,-710413:0,0,0 -g1,16947:-473656,-710413 -) -g1,16947:-473656,-710413 -) -] -) -] -!25294 -}331 -Input:2765:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2766:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2767:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2768:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2769:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2770:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2771:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2772:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2773:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2774:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!932 -{332 -[1,17006:4262630,47279633:28320399,43253760,0 -(1,17006:4262630,4025873:0,0,0 -[1,17006:-473656,4025873:0,0,0 -(1,17006:-473656,-710413:0,0,0 -(1,17006:-473656,-644877:0,0,0 -k1,17006:-473656,-644877:-65536 -) -(1,17006:-473656,4736287:0,0,0 -k1,17006:-473656,4736287:5209943 -) -g1,17006:-473656,-710413 -) -] -) -[1,17006:6630773,47279633:25952256,43253760,0 -[1,17006:6630773,4812305:25952256,786432,0 -(1,17006:6630773,4812305:25952256,513147,134348 -(1,17006:6630773,4812305:25952256,513147,134348 -g1,17006:3078558,4812305 -[1,17006:3078558,4812305:0,0,0 -(1,17006:3078558,2439708:0,1703936,0 -k1,17006:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,17006:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,17006:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,17006:3078558,4812305:0,0,0 -(1,17006:3078558,2439708:0,1703936,0 -g1,17006:29030814,2439708 -g1,17006:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,17006:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,17006:37855564,2439708:1179648,16384,0 -) -) -k1,17006:3078556,2439708:-34777008 -) -] -[1,17006:3078558,4812305:0,0,0 -(1,17006:3078558,49800853:0,16384,2228224 -k1,17006:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,17006:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,17006:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,17006:3078558,4812305:0,0,0 -(1,17006:3078558,49800853:0,16384,2228224 -g1,17006:29030814,49800853 -g1,17006:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,17006:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,17006:37855564,49800853:1179648,16384,0 -) -) -k1,17006:3078556,49800853:-34777008 -) -] -g1,17006:6630773,4812305 -g1,17006:6630773,4812305 -g1,17006:9573994,4812305 -g1,17006:10922069,4812305 -g1,17006:11737336,4812305 -g1,17006:13412436,4812305 -k1,17006:31387652,4812305:17975216 -) -) -] -[1,17006:6630773,45706769:25952256,40108032,0 -(1,17006:6630773,45706769:25952256,40108032,0 -(1,17006:6630773,45706769:0,0,0 -g1,17006:6630773,45706769 -) -[1,17006:6630773,45706769:25952256,40108032,0 -v1,16947:6630773,6254097:0,393216,0 -(1,16948:6630773,9253294:25952256,3392413,616038 -g1,16948:6630773,9253294 -(1,16948:6630773,9253294:25952256,3392413,616038 -(1,16948:6630773,9869332:25952256,4008451,0 -[1,16948:6630773,9869332:25952256,4008451,0 -(1,16948:6630773,9843118:25952256,3956023,0 -r1,17006:6656987,9843118:26214,3956023,0 -[1,16948:6656987,9843118:25899828,3956023,0 -(1,16948:6656987,9253294:25899828,2776375,0 -[1,16948:7246811,9253294:24720180,2776375,0 -(1,16948:7246811,7562455:24720180,1085536,298548 -(1,16947:7246811,7562455:0,1085536,298548 -r1,17006:8753226,7562455:1506415,1384084,298548 -k1,16947:7246811,7562455:-1506415 -) -(1,16947:7246811,7562455:1506415,1085536,298548 -) -k1,16947:9011223,7562455:257997 -k1,16947:11052455,7562455:257997 -k1,16947:14794346,7562455:257997 -k1,16947:16659941,7562455:257997 -k1,16947:18311889,7562455:257997 -k1,16947:19588970,7562455:257996 -(1,16947:19588970,7562455:0,414482,115847 -r1,17006:19947236,7562455:358266,530329,115847 -k1,16947:19588970,7562455:-358266 -) -(1,16947:19588970,7562455:358266,414482,115847 -k1,16947:19588970,7562455:3277 -h1,16947:19943959,7562455:0,411205,112570 -) -k1,16947:20205233,7562455:257997 -k1,16947:23383514,7562455:257997 -k1,16947:24660596,7562455:257997 -k1,16947:29324579,7562455:257997 -k1,16947:31966991,7562455:0 -) -(1,16948:7246811,8403943:24720180,513147,134348 -k1,16947:9121081,8403943:252254 -k1,16947:10121102,8403943:252255 -k1,16947:10729216,8403943:252254 -(1,16947:10729216,8403943:0,452978,122846 -r1,17006:12142617,8403943:1413401,575824,122846 -k1,16947:10729216,8403943:-1413401 -) -(1,16947:10729216,8403943:1413401,452978,122846 -k1,16947:10729216,8403943:3277 -h1,16947:12139340,8403943:0,411205,112570 -) -k1,16947:12394871,8403943:252254 -k1,16947:14780322,8403943:252254 -k1,16947:16229264,8403943:252255 -k1,16947:17555653,8403943:252254 -k1,16947:20450319,8403943:252254 -k1,16947:21234070,8403943:252254 -k1,16947:23451750,8403943:252255 -k1,16947:24355432,8403943:252254 -k1,16947:25626771,8403943:252254 -(1,16947:25626771,8403943:0,452978,122846 -r1,17006:27040172,8403943:1413401,575824,122846 -k1,16947:25626771,8403943:-1413401 -) -(1,16947:25626771,8403943:1413401,452978,122846 -k1,16947:25626771,8403943:3277 -h1,16947:27036895,8403943:0,411205,112570 -) -k1,16947:27292427,8403943:252255 -k1,16947:29504207,8403943:252254 -k1,16947:30947906,8403943:252254 -k1,16947:31966991,8403943:0 -) -(1,16948:7246811,9245431:24720180,505283,7863 -g1,16947:9288912,9245431 -k1,16948:31966991,9245431:19725682 -g1,16948:31966991,9245431 -) -] -) -] -r1,17006:32583029,9843118:26214,3956023,0 -) -] -) -) -g1,16948:32583029,9253294 -) -h1,16948:6630773,9869332:0,0,0 -v1,16951:6630773,11584086:0,393216,0 -(1,16957:6630773,13225247:25952256,2034377,196608 -g1,16957:6630773,13225247 -g1,16957:6630773,13225247 -g1,16957:6434165,13225247 -(1,16957:6434165,13225247:0,2034377,196608 -r1,17006:32779637,13225247:26345472,2230985,196608 -k1,16957:6434165,13225247:-26345472 -) -(1,16957:6434165,13225247:26345472,2034377,196608 -[1,16957:6630773,13225247:25952256,1837769,0 -(1,16953:6630773,11791704:25952256,404226,101187 -(1,16952:6630773,11791704:0,0,0 -g1,16952:6630773,11791704 -g1,16952:6630773,11791704 -g1,16952:6303093,11791704 -(1,16952:6303093,11791704:0,0,0 -) -g1,16952:6630773,11791704 -) -h1,16953:8527647,11791704:0,0,0 -k1,16953:32583029,11791704:24055382 -g1,16953:32583029,11791704 -) -(1,16954:6630773,12457882:25952256,404226,101187 -h1,16954:6630773,12457882:0,0,0 -g1,16954:8843793,12457882 -g1,16954:9476085,12457882 -g1,16954:11689105,12457882 -g1,16954:12321397,12457882 -k1,16954:12321397,12457882:0 -h1,16954:16115145,12457882:0,0,0 -k1,16954:32583029,12457882:16467884 -g1,16954:32583029,12457882 -) -(1,16955:6630773,13124060:25952256,404226,101187 -h1,16955:6630773,13124060:0,0,0 -g1,16955:8843793,13124060 -g1,16955:9476085,13124060 -g1,16955:11689105,13124060 -g1,16955:12321397,13124060 -g1,16955:16431291,13124060 -g1,16955:17063583,13124060 -g1,16955:19592750,13124060 -h1,16955:20541187,13124060:0,0,0 -k1,16955:32583029,13124060:12041842 -g1,16955:32583029,13124060 -) -] -) -g1,16957:32583029,13225247 -g1,16957:6630773,13225247 -g1,16957:6630773,13225247 -g1,16957:32583029,13225247 -g1,16957:32583029,13225247 -) -h1,16957:6630773,13421855:0,0,0 -(1,16961:6630773,14787631:25952256,505283,7863 -h1,16960:6630773,14787631:983040,0,0 -g1,16960:8766591,14787631 -g1,16960:10070102,14787631 -g1,16960:11555147,14787631 -g1,16960:13145050,14787631 -g1,16960:17402268,14787631 -k1,16961:32583029,14787631:12833917 -g1,16961:32583029,14787631 -) -v1,16963:6630773,15978097:0,393216,0 -(1,16968:6630773,16959371:25952256,1374490,196608 -g1,16968:6630773,16959371 -g1,16968:6630773,16959371 -g1,16968:6434165,16959371 -(1,16968:6434165,16959371:0,1374490,196608 -r1,17006:32779637,16959371:26345472,1571098,196608 -k1,16968:6434165,16959371:-26345472 -) -(1,16968:6434165,16959371:26345472,1374490,196608 -[1,16968:6630773,16959371:25952256,1177882,0 -(1,16965:6630773,16185715:25952256,404226,107478 -(1,16964:6630773,16185715:0,0,0 -g1,16964:6630773,16185715 -g1,16964:6630773,16185715 -g1,16964:6303093,16185715 -(1,16964:6303093,16185715:0,0,0 -) -g1,16964:6630773,16185715 -) -g1,16965:9792230,16185715 -g1,16965:10740668,16185715 -g1,16965:12953688,16185715 -g1,16965:13585980,16185715 -k1,16965:13585980,16185715:0 -h1,16965:22754206,16185715:0,0,0 -k1,16965:32583029,16185715:9828823 -g1,16965:32583029,16185715 -) -(1,16966:6630773,16851893:25952256,404226,107478 -h1,16966:6630773,16851893:0,0,0 -g1,16966:9792230,16851893 -g1,16966:10424522,16851893 -g1,16966:12637542,16851893 -g1,16966:13269834,16851893 -k1,16966:13269834,16851893:0 -h1,16966:17063582,16851893:0,0,0 -k1,16966:32583029,16851893:15519447 -g1,16966:32583029,16851893 -) -] -) -g1,16968:32583029,16959371 -g1,16968:6630773,16959371 -g1,16968:6630773,16959371 -g1,16968:32583029,16959371 -g1,16968:32583029,16959371 -) -h1,16968:6630773,17155979:0,0,0 -(1,16971:6630773,19771527:25952256,555811,147783 -(1,16971:6630773,19771527:2899444,534184,12975 -g1,16971:6630773,19771527 -g1,16971:9530217,19771527 -) -g1,16971:12167976,19771527 -g1,16971:13822433,19771527 -g1,16971:16269875,19771527 -g1,16971:17837103,19771527 -g1,16971:20247780,19771527 -g1,16971:21178457,19771527 -k1,16971:32583029,19771527:9900062 -g1,16971:32583029,19771527 -) -(1,16974:6630773,21006231:25952256,513147,134348 -k1,16973:7338329,21006231:229799 -k1,16973:8587212,21006231:229798 -k1,16973:10797509,21006231:229799 -k1,16973:11678736,21006231:229799 -k1,16973:12656300,21006231:229798 -k1,16973:13978584,21006231:229799 -k1,16973:16888806,21006231:229799 -k1,16973:17933873,21006231:229799 -k1,16973:19229942,21006231:229798 -k1,16973:21797410,21006231:229799 -k1,16973:22383069,21006231:229799 -(1,16973:22383069,21006231:0,452978,122846 -r1,17006:23796470,21006231:1413401,575824,122846 -k1,16973:22383069,21006231:-1413401 -) -(1,16973:22383069,21006231:1413401,452978,122846 -k1,16973:22383069,21006231:3277 -h1,16973:23793193,21006231:0,411205,112570 -) -k1,16973:24026268,21006231:229798 -k1,16973:26389264,21006231:229799 -k1,16973:27487415,21006231:229799 -k1,16973:28821495,21006231:229798 -k1,16973:30943974,21006231:229799 -k1,16973:32583029,21006231:0 -) -(1,16974:6630773,21847719:25952256,505283,134348 -k1,16973:8153371,21847719:255132 -k1,16973:9179206,21847719:255132 -k1,16973:9849124,21847719:255075 -k1,16973:11097782,21847719:255132 -k1,16973:12544359,21847719:255132 -k1,16973:14190165,21847719:255132 -k1,16973:15077063,21847719:255131 -k1,16973:17115430,21847719:255132 -k1,16973:18238914,21847719:255132 -k1,16973:19947635,21847719:255132 -k1,16973:21400110,21847719:255132 -k1,16973:22674326,21847719:255131 -k1,16973:24740873,21847719:255132 -k1,16973:25989531,21847719:255132 -k1,16973:26896091,21847719:255132 -k1,16973:27507082,21847719:255131 -(1,16973:27507082,21847719:0,452978,122846 -r1,17006:28920483,21847719:1413401,575824,122846 -k1,16973:27507082,21847719:-1413401 -) -(1,16973:27507082,21847719:1413401,452978,122846 -k1,16973:27507082,21847719:3277 -h1,16973:28917206,21847719:0,411205,112570 -) -k1,16973:29175615,21847719:255132 -k1,16973:31563944,21847719:255132 -k1,16973:32583029,21847719:0 -) -(1,16974:6630773,22689207:25952256,513147,134348 -g1,16973:9783710,22689207 -g1,16973:10642231,22689207 -g1,16973:11860545,22689207 -g1,16973:13053300,22689207 -g1,16973:14244089,22689207 -g1,16973:16408743,22689207 -g1,16973:17764682,22689207 -g1,16973:18725439,22689207 -g1,16973:20081378,22689207 -g1,16973:20932035,22689207 -g1,16973:22150349,22689207 -g1,16973:23626875,22689207 -g1,16973:27140915,22689207 -g1,16973:28848783,22689207 -k1,16974:32583029,22689207:1821250 -g1,16974:32583029,22689207 -) -v1,16976:6630773,23879673:0,393216,0 -(1,16981:6630773,24860947:25952256,1374490,196608 -g1,16981:6630773,24860947 -g1,16981:6630773,24860947 -g1,16981:6434165,24860947 -(1,16981:6434165,24860947:0,1374490,196608 -r1,17006:32779637,24860947:26345472,1571098,196608 -k1,16981:6434165,24860947:-26345472 -) -(1,16981:6434165,24860947:26345472,1374490,196608 -[1,16981:6630773,24860947:25952256,1177882,0 -(1,16978:6630773,24087291:25952256,404226,101187 -(1,16977:6630773,24087291:0,0,0 -g1,16977:6630773,24087291 -g1,16977:6630773,24087291 -g1,16977:6303093,24087291 -(1,16977:6303093,24087291:0,0,0 -) -g1,16977:6630773,24087291 -) -g1,16978:9159939,24087291 -g1,16978:10108377,24087291 -g1,16978:14218272,24087291 -k1,16978:14218272,24087291:0 -h1,16978:18328165,24087291:0,0,0 -k1,16978:32583029,24087291:14254864 -g1,16978:32583029,24087291 -) -(1,16979:6630773,24753469:25952256,404226,107478 -h1,16979:6630773,24753469:0,0,0 -g1,16979:9792230,24753469 -g1,16979:10424522,24753469 -h1,16979:12637542,24753469:0,0,0 -k1,16979:32583030,24753469:19945488 -g1,16979:32583030,24753469 -) -] -) -g1,16981:32583029,24860947 -g1,16981:6630773,24860947 -g1,16981:6630773,24860947 -g1,16981:32583029,24860947 -g1,16981:32583029,24860947 -) -h1,16981:6630773,25057555:0,0,0 -v1,16985:6630773,26947619:0,393216,0 -(1,16986:6630773,30908762:25952256,4354359,616038 -g1,16986:6630773,30908762 -(1,16986:6630773,30908762:25952256,4354359,616038 -(1,16986:6630773,31524800:25952256,4970397,0 -[1,16986:6630773,31524800:25952256,4970397,0 -(1,16986:6630773,31498586:25952256,4917969,0 -r1,17006:6656987,31498586:26214,4917969,0 -[1,16986:6656987,31498586:25899828,4917969,0 -(1,16986:6656987,30908762:25899828,3738321,0 -[1,16986:7246811,30908762:24720180,3738321,0 -(1,16986:7246811,28257815:24720180,1087374,134348 -k1,16985:8687591,28257815:231077 -k1,16985:10947006,28257815:231076 -k1,16985:12197168,28257815:231077 -k1,16985:13924432,28257815:231077 -k1,16985:15325981,28257815:231076 -k1,16985:17365196,28257815:231077 -k1,16985:18543924,28257815:231077 -k1,16985:19794085,28257815:231076 -k1,16985:24275827,28257815:231077 -k1,16985:27067396,28257815:231077 -k1,16985:27914510,28257815:231076 -k1,16985:30424274,28257815:231077 -h1,16985:31793321,28257815:0,0,0 -k1,16985:31966991,28257815:0 -) -(1,16986:7246811,29099303:24720180,513147,134348 -k1,16985:8551469,29099303:232489 -k1,16985:9987199,29099303:232489 -k1,16985:11818766,29099303:232489 -k1,16985:15953269,29099303:232489 -k1,16985:17377203,29099303:232489 -k1,16985:19643274,29099303:232489 -k1,16985:22098743,29099303:232488 -k1,16985:22990524,29099303:232489 -k1,16985:26092179,29099303:232489 -k1,16985:27609174,29099303:232489 -k1,16985:29012136,29099303:232489 -k1,16985:31315563,29099303:232489 -k1,16985:31966991,29099303:0 -) -(1,16986:7246811,29940791:24720180,513147,134348 -k1,16985:8225062,29940791:230485 -k1,16985:10432768,29940791:230485 -k1,16985:14154356,29940791:230485 -k1,16985:16082879,29940791:230485 -k1,16985:19797258,29940791:230485 -k1,16985:20383603,29940791:230485 -k1,16985:23376432,29940791:230486 -k1,16985:24884214,29940791:230485 -k1,16985:25773991,29940791:230485 -k1,16985:27023561,29940791:230485 -k1,16985:28907519,29940791:230485 -k1,16985:30697761,29940791:230485 -k1,16985:31611131,29940791:230485 -k1,16985:31966991,29940791:0 -) -(1,16986:7246811,30782279:24720180,513147,126483 -g1,16985:8723337,30782279 -g1,16985:9581858,30782279 -g1,16985:10136947,30782279 -g1,16985:13098519,30782279 -g1,16985:14683834,30782279 -g1,16985:16450684,30782279 -g1,16985:17668998,30782279 -g1,16985:19521700,30782279 -k1,16986:31966991,30782279:10882257 -g1,16986:31966991,30782279 -) -] -) -] -r1,17006:32583029,31498586:26214,4917969,0 -) -] -) -) -g1,16986:32583029,30908762 -) -h1,16986:6630773,31524800:0,0,0 -(1,16988:6630773,33616060:25952256,564462,147783 -(1,16988:6630773,33616060:2899444,534184,12975 -g1,16988:6630773,33616060 -g1,16988:9530217,33616060 -) -g1,16988:11808970,33616060 -g1,16988:15475448,33616060 -g1,16988:16478936,33616060 -g1,16988:19712876,33616060 -k1,16988:32583029,33616060:10490475 -g1,16988:32583029,33616060 -) -(1,16991:6630773,34850764:25952256,505283,134348 -k1,16990:8666019,34850764:252011 -k1,16990:9937115,34850764:252011 -k1,16990:12245646,34850764:252011 -k1,16990:13366009,34850764:252011 -k1,16990:16554688,34850764:252011 -k1,16990:18336965,34850764:252011 -k1,16990:19240404,34850764:252011 -k1,16990:21540415,34850764:252011 -k1,16990:25195055,34850764:252011 -k1,16990:27145104,34850764:252011 -k1,16990:29084012,34850764:252011 -k1,16990:30204375,34850764:252011 -k1,16990:31931601,34850764:252011 -k1,16990:32583029,34850764:0 -) -(1,16991:6630773,35692252:25952256,513147,134348 -k1,16990:8876757,35692252:285147 -k1,16990:12187701,35692252:285147 -k1,16990:14800032,35692252:285148 -k1,16990:15744471,35692252:285147 -k1,16990:18063200,35692252:285147 -k1,16990:19625644,35692252:285147 -k1,16990:23838364,35692252:285147 -k1,16990:24774940,35692252:285148 -k1,16990:28075398,35692252:285147 -k1,16990:29557232,35692252:285147 -k1,16990:32583029,35692252:0 -) -(1,16991:6630773,36533740:25952256,513147,134348 -k1,16990:7707461,36533740:208336 -k1,16990:10050304,36533740:208335 -k1,16990:11733855,36533740:208336 -k1,16990:12593619,36533740:208336 -k1,16990:14812599,36533740:208335 -k1,16990:15376795,36533740:208336 -(1,16990:15376795,36533740:0,452978,122846 -r1,17006:16790196,36533740:1413401,575824,122846 -k1,16990:15376795,36533740:-1413401 -) -(1,16990:15376795,36533740:1413401,452978,122846 -k1,16990:15376795,36533740:3277 -h1,16990:16786919,36533740:0,411205,112570 -) -k1,16990:16998532,36533740:208336 -k1,16990:19340065,36533740:208336 -k1,16990:19904260,36533740:208335 -k1,16990:21106122,36533740:208336 -k1,16990:21973750,36533740:208336 -k1,16990:23459382,36533740:208335 -k1,16990:27768961,36533740:208336 -k1,16990:28660182,36533740:208336 -k1,16990:29224377,36533740:208335 -k1,16990:31305732,36533740:208336 -k1,16990:32583029,36533740:0 -) -(1,16991:6630773,37375228:25952256,513147,134348 -k1,16990:10551792,37375228:150077 -k1,16990:11898557,37375228:150078 -k1,16990:14760514,37375228:150077 -k1,16990:16003076,37375228:150077 -k1,16990:16684651,37375228:150078 -k1,16990:17486156,37375228:150077 -k1,16990:19089822,37375228:150077 -k1,16990:20932040,37375228:150078 -k1,16990:23677998,37375228:150077 -k1,16990:24444113,37375228:150077 -k1,16990:27085214,37375228:150078 -k1,16990:30942007,37375228:150077 -k1,16991:32583029,37375228:0 -) -(1,16991:6630773,38216716:25952256,505283,134348 -k1,16990:8439912,38216716:211371 -k1,16990:11652176,38216716:211370 -(1,16990:11652176,38216716:0,452978,122846 -r1,17006:13065577,38216716:1413401,575824,122846 -k1,16990:11652176,38216716:-1413401 -) -(1,16990:11652176,38216716:1413401,452978,122846 -k1,16990:11652176,38216716:3277 -h1,16990:13062300,38216716:0,411205,112570 -) -k1,16990:13276948,38216716:211371 -k1,16990:15778146,38216716:211370 -k1,16990:16672402,38216716:211371 -k1,16990:18945535,38216716:211370 -k1,16990:20353593,38216716:211371 -k1,16990:22806294,38216716:211370 -(1,16990:23013388,38216716:0,414482,115847 -r1,17006:24075077,38216716:1061689,530329,115847 -k1,16990:23013388,38216716:-1061689 -) -(1,16990:23013388,38216716:1061689,414482,115847 -k1,16990:23013388,38216716:3277 -h1,16990:24071800,38216716:0,411205,112570 -) -k1,16990:24493542,38216716:211371 -k1,16990:26716867,38216716:211370 -k1,16990:29355692,38216716:211371 -k1,16990:31725818,38216716:211370 -k1,16991:32583029,38216716:0 -) -(1,16991:6630773,39058204:25952256,513147,134348 -k1,16990:9579691,39058204:190508 -k1,16990:10421627,39058204:190508 -k1,16990:10967995,39058204:190508 -k1,16990:13275971,39058204:190508 -k1,16990:16335645,39058204:190508 -k1,16990:17153988,39058204:190508 -k1,16990:18547738,39058204:190509 -k1,16990:20278997,39058204:190508 -k1,16990:22170820,39058204:190508 -k1,16990:24234347,39058204:190508 -k1,16990:27497183,39058204:190508 -k1,16990:29892978,39058204:190508 -k1,16990:30845014,39058204:190508 -k1,16990:32583029,39058204:0 -) -(1,16991:6630773,39899692:25952256,505283,134348 -k1,16990:7449845,39899692:167644 -(1,16990:7449845,39899692:0,452978,122846 -r1,17006:11325229,39899692:3875384,575824,122846 -k1,16990:7449845,39899692:-3875384 -) -(1,16990:7449845,39899692:3875384,452978,122846 -k1,16990:7449845,39899692:3277 -h1,16990:11321952,39899692:0,411205,112570 -) -k1,16990:11492874,39899692:167645 -k1,16990:12792980,39899692:167644 -k1,16990:13708391,39899692:167645 -k1,16990:15994159,39899692:167644 -k1,16990:16847966,39899692:167645 -k1,16990:20087938,39899692:167644 -k1,16990:20907011,39899692:167645 -k1,16990:22093740,39899692:167644 -k1,16990:24378853,39899692:167645 -k1,16990:25646191,39899692:167644 -k1,16990:26465264,39899692:167645 -(1,16990:26465264,39899692:0,452978,122846 -r1,17006:29285513,39899692:2820249,575824,122846 -k1,16990:26465264,39899692:-2820249 -) -(1,16990:26465264,39899692:2820249,452978,122846 -k1,16990:26465264,39899692:3277 -h1,16990:29282236,39899692:0,411205,112570 -) -k1,16990:29626827,39899692:167644 -k1,16990:30540927,39899692:167645 -k1,16990:32583029,39899692:0 -) -(1,16991:6630773,40741180:25952256,513147,134348 -k1,16990:8173228,40741180:257949 -k1,16990:11574285,40741180:257950 -k1,16990:15234863,40741180:257949 -k1,16990:16254341,40741180:257950 -k1,16990:19300192,40741180:257949 -k1,16990:20089638,40741180:257949 -k1,16990:22977548,40741180:257950 -k1,16990:24611098,40741180:257949 -k1,16990:25816699,40741180:257950 -k1,16990:29685682,40741180:257949 -k1,16990:32583029,40741180:0 -) -(1,16991:6630773,41582668:25952256,513147,126483 -g1,16990:9588412,41582668 -g1,16990:10403679,41582668 -g1,16990:11621993,41582668 -g1,16990:14903380,41582668 -g1,16990:15761901,41582668 -g1,16990:16980215,41582668 -g1,16990:19821856,41582668 -k1,16991:32583029,41582668:9892007 -g1,16991:32583029,41582668 -) -v1,16993:6630773,42773134:0,393216,0 -(1,17000:6630773,45061599:25952256,2681681,196608 -g1,17000:6630773,45061599 -g1,17000:6630773,45061599 -g1,17000:6434165,45061599 -(1,17000:6434165,45061599:0,2681681,196608 -r1,17006:32779637,45061599:26345472,2878289,196608 -k1,17000:6434165,45061599:-26345472 -) -(1,17000:6434165,45061599:26345472,2681681,196608 -[1,17000:6630773,45061599:25952256,2485073,0 -(1,16995:6630773,42987044:25952256,410518,107478 -(1,16994:6630773,42987044:0,0,0 -g1,16994:6630773,42987044 -g1,16994:6630773,42987044 -g1,16994:6303093,42987044 -(1,16994:6303093,42987044:0,0,0 -) -g1,16994:6630773,42987044 -) -g1,16995:9792230,42987044 -g1,16995:10740668,42987044 -g1,16995:15166708,42987044 -h1,16995:15482854,42987044:0,0,0 -k1,16995:32583030,42987044:17100176 -g1,16995:32583030,42987044 -) -(1,16996:6630773,43653222:25952256,404226,107478 -h1,16996:6630773,43653222:0,0,0 -g1,16996:6946919,43653222 -g1,16996:7263065,43653222 -g1,16996:11056813,43653222 -h1,16996:11372959,43653222:0,0,0 -k1,16996:32583029,43653222:21210070 -g1,16996:32583029,43653222 -) -(1,16997:6630773,44319400:25952256,404226,76021 -h1,16997:6630773,44319400:0,0,0 -g1,16997:6946919,44319400 -g1,16997:7263065,44319400 -k1,16997:7263065,44319400:0 -h1,16997:10424521,44319400:0,0,0 -k1,16997:32583029,44319400:22158508 -g1,16997:32583029,44319400 -) -(1,16998:6630773,44985578:25952256,404226,76021 -h1,16998:6630773,44985578:0,0,0 -h1,16998:6946919,44985578:0,0,0 -k1,16998:32583029,44985578:25636110 -g1,16998:32583029,44985578 -) -] -) -g1,17000:32583029,45061599 -g1,17000:6630773,45061599 -g1,17000:6630773,45061599 -g1,17000:32583029,45061599 -g1,17000:32583029,45061599 -) -h1,17000:6630773,45258207:0,0,0 -] -(1,17006:32583029,45706769:0,0,0 -g1,17006:32583029,45706769 -) -) -] -(1,17006:6630773,47279633:25952256,0,0 -h1,17006:6630773,47279633:25952256,0,0 -) -] -(1,17006:4262630,4025873:0,0,0 -[1,17006:-473656,4025873:0,0,0 -(1,17006:-473656,-710413:0,0,0 -(1,17006:-473656,-710413:0,0,0 -g1,17006:-473656,-710413 -) -g1,17006:-473656,-710413 -) -] -) -] -!23315 -}332 -Input:2775:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2776:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2777:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2778:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2779:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2780:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2781:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!656 -{333 -[1,17072:4262630,47279633:28320399,43253760,0 -(1,17072:4262630,4025873:0,0,0 -[1,17072:-473656,4025873:0,0,0 -(1,17072:-473656,-710413:0,0,0 -(1,17072:-473656,-644877:0,0,0 -k1,17072:-473656,-644877:-65536 -) -(1,17072:-473656,4736287:0,0,0 -k1,17072:-473656,4736287:5209943 -) -g1,17072:-473656,-710413 -) -] -) -[1,17072:6630773,47279633:25952256,43253760,0 -[1,17072:6630773,4812305:25952256,786432,0 -(1,17072:6630773,4812305:25952256,513147,134348 -(1,17072:6630773,4812305:25952256,513147,134348 -g1,17072:3078558,4812305 -[1,17072:3078558,4812305:0,0,0 -(1,17072:3078558,2439708:0,1703936,0 -k1,17072:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,17072:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,17072:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,17072:3078558,4812305:0,0,0 -(1,17072:3078558,2439708:0,1703936,0 -g1,17072:29030814,2439708 -g1,17072:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,17072:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,17072:37855564,2439708:1179648,16384,0 -) -) -k1,17072:3078556,2439708:-34777008 -) -] -[1,17072:3078558,4812305:0,0,0 -(1,17072:3078558,49800853:0,16384,2228224 -k1,17072:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,17072:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,17072:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,17072:3078558,4812305:0,0,0 -(1,17072:3078558,49800853:0,16384,2228224 -g1,17072:29030814,49800853 -g1,17072:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,17072:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,17072:37855564,49800853:1179648,16384,0 -) -) -k1,17072:3078556,49800853:-34777008 -) -] -g1,17072:6630773,4812305 -k1,17072:25712890,4812305:17886740 -g1,17072:29057847,4812305 -g1,17072:29873114,4812305 -) -) -] -[1,17072:6630773,45706769:25952256,40108032,0 -(1,17072:6630773,45706769:25952256,40108032,0 -(1,17072:6630773,45706769:0,0,0 -g1,17072:6630773,45706769 -) -[1,17072:6630773,45706769:25952256,40108032,0 -(1,17004:6630773,6254097:25952256,513147,7863 -h1,17003:6630773,6254097:983040,0,0 -g1,17003:9698513,6254097 -g1,17003:11666559,6254097 -g1,17003:12613554,6254097 -g1,17003:14326009,6254097 -g1,17003:15211400,6254097 -k1,17004:32583029,6254097:14882572 -g1,17004:32583029,6254097 -) -v1,17006:6630773,7351883:0,393216,0 -(1,17013:6630773,9665513:25952256,2706846,196608 -g1,17013:6630773,9665513 -g1,17013:6630773,9665513 -g1,17013:6434165,9665513 -(1,17013:6434165,9665513:0,2706846,196608 -r1,17072:32779637,9665513:26345472,2903454,196608 -k1,17013:6434165,9665513:-26345472 -) -(1,17013:6434165,9665513:26345472,2706846,196608 -[1,17013:6630773,9665513:25952256,2510238,0 -(1,17008:6630773,7559501:25952256,404226,107478 -(1,17007:6630773,7559501:0,0,0 -g1,17007:6630773,7559501 -g1,17007:6630773,7559501 -g1,17007:6303093,7559501 -(1,17007:6303093,7559501:0,0,0 -) -g1,17007:6630773,7559501 -) -k1,17008:6630773,7559501:0 -g1,17008:11372959,7559501 -g1,17008:12005251,7559501 -k1,17008:12005251,7559501:0 -h1,17008:14218271,7559501:0,0,0 -k1,17008:32583029,7559501:18364758 -g1,17008:32583029,7559501 -) -(1,17009:6630773,8225679:25952256,404226,107478 -h1,17009:6630773,8225679:0,0,0 -g1,17009:6946919,8225679 -g1,17009:7263065,8225679 -g1,17009:7579211,8225679 -g1,17009:7895357,8225679 -g1,17009:8211503,8225679 -g1,17009:8527649,8225679 -g1,17009:8843795,8225679 -g1,17009:9159941,8225679 -g1,17009:9476087,8225679 -g1,17009:9792233,8225679 -g1,17009:11689108,8225679 -g1,17009:12321400,8225679 -g1,17009:14218275,8225679 -g1,17009:14850567,8225679 -g1,17009:15482859,8225679 -k1,17009:15482859,8225679:0 -h1,17009:16747442,8225679:0,0,0 -k1,17009:32583029,8225679:15835587 -g1,17009:32583029,8225679 -) -(1,17010:6630773,8891857:25952256,410518,101187 -h1,17010:6630773,8891857:0,0,0 -g1,17010:6946919,8891857 -g1,17010:7263065,8891857 -g1,17010:7579211,8891857 -g1,17010:7895357,8891857 -g1,17010:8211503,8891857 -g1,17010:8527649,8891857 -g1,17010:8843795,8891857 -g1,17010:9159941,8891857 -g1,17010:9476087,8891857 -g1,17010:9792233,8891857 -g1,17010:11689107,8891857 -g1,17010:12321399,8891857 -g1,17010:16747439,8891857 -h1,17010:17063585,8891857:0,0,0 -k1,17010:32583029,8891857:15519444 -g1,17010:32583029,8891857 -) -(1,17011:6630773,9558035:25952256,404226,107478 -h1,17011:6630773,9558035:0,0,0 -g1,17011:6946919,9558035 -g1,17011:7263065,9558035 -g1,17011:7579211,9558035 -g1,17011:7895357,9558035 -g1,17011:8211503,9558035 -g1,17011:8527649,9558035 -g1,17011:8843795,9558035 -g1,17011:9159941,9558035 -g1,17011:9476087,9558035 -g1,17011:9792233,9558035 -k1,17011:9792233,9558035:0 -h1,17011:13585981,9558035:0,0,0 -k1,17011:32583029,9558035:18997048 -g1,17011:32583029,9558035 -) -] -) -g1,17013:32583029,9665513 -g1,17013:6630773,9665513 -g1,17013:6630773,9665513 -g1,17013:32583029,9665513 -g1,17013:32583029,9665513 -) -h1,17013:6630773,9862121:0,0,0 -(1,17019:6630773,13101296:25952256,32768,229376 -(1,17019:6630773,13101296:0,32768,229376 -(1,17019:6630773,13101296:5505024,32768,229376 -r1,17072:12135797,13101296:5505024,262144,229376 -) -k1,17019:6630773,13101296:-5505024 -) -(1,17019:6630773,13101296:25952256,32768,0 -r1,17072:32583029,13101296:25952256,32768,0 -) -) -(1,17019:6630773,14705624:25952256,615776,161218 -(1,17019:6630773,14705624:2464678,582746,14155 -g1,17019:6630773,14705624 -g1,17019:9095451,14705624 -) -g1,17019:13678777,14705624 -g1,17019:16562623,14705624 -k1,17019:32583029,14705624:14382268 -g1,17019:32583029,14705624 -) -(1,17025:6630773,15940328:25952256,513147,134348 -k1,17024:7359767,15940328:259101 -k1,17024:8150365,15940328:259101 -k1,17024:11213097,15940328:259102 -k1,17024:13170236,15940328:259101 -k1,17024:15164730,15940328:259101 -k1,17024:18021678,15940328:259101 -k1,17024:18932208,15940328:259102 -k1,17024:21605655,15940328:259101 -k1,17024:23937660,15940328:259101 -k1,17024:25215846,15940328:259101 -k1,17024:28538100,15940328:259101 -k1,17024:30074499,15940328:259102 -k1,17024:30985028,15940328:259101 -k1,17024:31599989,15940328:259101 -k1,17024:32583029,15940328:0 -) -(1,17025:6630773,16781816:25952256,513147,134348 -k1,17024:8538025,16781816:171859 -k1,17024:9065743,16781816:171858 -k1,17024:11208270,16781816:171859 -k1,17024:14314830,16781816:171858 -k1,17024:14952650,16781816:171859 -k1,17024:16143593,16781816:171858 -k1,17024:17298492,16781816:171859 -k1,17024:18602812,16781816:171858 -k1,17024:20249886,16781816:171859 -k1,17024:21073172,16781816:171858 -k1,17024:21992797,16781816:171859 -k1,17024:25317592,16781816:171858 -k1,17024:27191421,16781816:171859 -k1,17024:27976041,16781816:171858 -k1,17024:28503760,16781816:171859 -k1,17024:30129207,16781816:171858 -k1,17024:31900144,16781816:171859 -k1,17024:32583029,16781816:0 -) -(1,17025:6630773,17623304:25952256,513147,126483 -k1,17024:7198096,17623304:211463 -k1,17024:9254397,17623304:211463 -k1,17024:10125151,17623304:211462 -k1,17024:11944212,17623304:211463 -k1,17024:13685941,17623304:211463 -k1,17024:14548832,17623304:211463 -k1,17024:15508061,17623304:211463 -k1,17024:18760394,17623304:211462 -k1,17024:20365808,17623304:211463 -k1,17024:23858003,17623304:211463 -k1,17024:26423519,17623304:211463 -k1,17024:27093079,17623304:211463 -k1,17024:27836038,17623304:211462 -k1,17024:29382469,17623304:211463 -k1,17024:30245360,17623304:211463 -k1,17024:32583029,17623304:0 -) -(1,17025:6630773,18464792:25952256,505283,126483 -g1,17024:7849087,18464792 -g1,17024:11538108,18464792 -g1,17024:12388765,18464792 -g1,17024:14660898,18464792 -g1,17024:15879212,18464792 -g1,17024:17355738,18464792 -g1,17024:18171005,18464792 -g1,17024:19389319,18464792 -k1,17025:32583029,18464792:11188964 -g1,17025:32583029,18464792 -) -(1,17027:6630773,19306280:25952256,513147,134348 -h1,17026:6630773,19306280:983040,0,0 -k1,17026:8511858,19306280:270210 -k1,17026:9370581,19306280:270210 -k1,17026:10954133,19306280:270210 -k1,17026:12215902,19306280:270209 -k1,17026:14836233,19306280:270210 -k1,17026:15867971,19306280:270210 -k1,17026:18710469,19306280:270210 -k1,17026:19632107,19306280:270210 -k1,17026:22664660,19306280:270210 -k1,17026:25446209,19306280:270209 -k1,17026:28243487,19306280:270210 -k1,17026:29045194,19306280:270210 -k1,17026:31931601,19306280:270210 -k1,17026:32583029,19306280:0 -) -(1,17027:6630773,20147768:25952256,505283,126483 -k1,17026:7222290,20147768:235657 -k1,17026:10368400,20147768:235656 -k1,17026:12181508,20147768:235656 -k1,17026:14424533,20147768:235657 -k1,17026:16153756,20147768:235657 -k1,17026:16745272,20147768:235656 -k1,17026:19454257,20147768:235656 -k1,17026:20305952,20147768:235657 -k1,17026:23139456,20147768:235657 -k1,17026:25092155,20147768:235656 -k1,17026:27665481,20147768:235657 -k1,17026:30521266,20147768:235656 -k1,17026:32583029,20147768:0 -) -(1,17027:6630773,20989256:25952256,513147,126483 -k1,17026:9228838,20989256:265639 -k1,17026:11526748,20989256:265639 -k1,17026:13279399,20989256:265639 -k1,17026:15965283,20989256:265639 -k1,17026:18602670,20989256:265639 -k1,17026:19677680,20989256:265640 -k1,17026:22350456,20989256:265639 -k1,17026:24448482,20989256:265639 -k1,17026:25705681,20989256:265639 -k1,17026:27438016,20989256:265639 -k1,17026:30041324,20989256:265639 -k1,17026:31591469,20989256:265639 -k1,17026:32583029,20989256:0 -) -(1,17027:6630773,21830744:25952256,513147,134348 -g1,17026:8151863,21830744 -g1,17026:9018248,21830744 -g1,17026:9632320,21830744 -g1,17026:11022994,21830744 -g1,17026:14449216,21830744 -g1,17026:16135457,21830744 -g1,17026:18716264,21830744 -g1,17026:19531531,21830744 -g1,17026:23460414,21830744 -k1,17027:32583029,21830744:6038491 -g1,17027:32583029,21830744 -) -(1,17029:6630773,22672232:25952256,513147,134348 -h1,17028:6630773,22672232:983040,0,0 -k1,17028:10604985,22672232:296987 -k1,17028:11257833,22672232:296988 -k1,17028:12537860,22672232:296987 -k1,17028:15442525,22672232:296987 -k1,17028:18307213,22672232:296987 -k1,17028:18960061,22672232:296988 -k1,17028:21438086,22672232:296987 -k1,17028:24307361,22672232:296987 -k1,17028:25795793,22672232:296987 -k1,17028:28346564,22672232:296988 -k1,17028:29662636,22672232:296987 -k1,17028:31966991,22672232:296987 -k1,17028:32583029,22672232:0 -) -(1,17029:6630773,23513720:25952256,513147,126483 -g1,17028:9943617,23513720 -g1,17028:10770681,23513720 -g1,17028:12571610,23513720 -g1,17028:14468221,23513720 -g1,17028:15686535,23513720 -g1,17028:16868804,23513720 -g1,17028:19625903,23513720 -g1,17028:21919007,23513720 -g1,17028:23611146,23513720 -g1,17028:24829460,23513720 -g1,17028:27036057,23513720 -g1,17028:27766783,23513720 -k1,17029:32583029,23513720:3031701 -g1,17029:32583029,23513720 -) -(1,17031:6630773,24355208:25952256,505283,134348 -h1,17030:6630773,24355208:983040,0,0 -k1,17030:8808975,24355208:153140 -k1,17030:11623531,24355208:153139 -k1,17030:13474709,24355208:153140 -k1,17030:16725080,24355208:153140 -k1,17030:17234079,24355208:153139 -k1,17030:18664516,24355208:153140 -k1,17030:19469084,24355208:153140 -k1,17030:21033869,24355208:153139 -k1,17030:25414081,24355208:153140 -k1,17030:28598915,24355208:153139 -k1,17030:30045034,24355208:153094 -k1,17030:30881059,24355208:153140 -k1,17030:32583029,24355208:0 -) -(1,17031:6630773,25196696:25952256,513147,134348 -k1,17030:8829842,25196696:221192 -k1,17030:11770122,25196696:221191 -k1,17030:14675669,25196696:221192 -k1,17030:18299490,25196696:221192 -k1,17030:20725968,25196696:221191 -k1,17030:21598588,25196696:221192 -(1,17030:21598588,25196696:0,452978,115847 -r1,17072:23363701,25196696:1765113,568825,115847 -k1,17030:21598588,25196696:-1765113 -) -(1,17030:21598588,25196696:1765113,452978,115847 -k1,17030:21598588,25196696:3277 -h1,17030:23360424,25196696:0,411205,112570 -) -k1,17030:23584892,25196696:221191 -k1,17030:24997529,25196696:221192 -(1,17030:24997529,25196696:0,452978,122846 -r1,17072:27114354,25196696:2116825,575824,122846 -k1,17030:24997529,25196696:-2116825 -) -(1,17030:24997529,25196696:2116825,452978,122846 -k1,17030:24997529,25196696:3277 -h1,17030:27111077,25196696:0,411205,112570 -) -k1,17030:27335546,25196696:221192 -k1,17030:28548297,25196696:221191 -k1,17030:31966991,25196696:221192 -k1,17030:32583029,25196696:0 -) -(1,17031:6630773,26038184:25952256,505283,7863 -k1,17031:32583029,26038184:23736484 -g1,17031:32583029,26038184 -) -v1,17033:6630773,27135970:0,393216,0 -(1,17041:6630773,30090613:25952256,3347859,196608 -g1,17041:6630773,30090613 -g1,17041:6630773,30090613 -g1,17041:6434165,30090613 -(1,17041:6434165,30090613:0,3347859,196608 -r1,17072:32779637,30090613:26345472,3544467,196608 -k1,17041:6434165,30090613:-26345472 -) -(1,17041:6434165,30090613:26345472,3347859,196608 -[1,17041:6630773,30090613:25952256,3151251,0 -(1,17035:6630773,27349880:25952256,410518,107478 -(1,17034:6630773,27349880:0,0,0 -g1,17034:6630773,27349880 -g1,17034:6630773,27349880 -g1,17034:6303093,27349880 -(1,17034:6303093,27349880:0,0,0 -) -g1,17034:6630773,27349880 -) -g1,17035:8211502,27349880 -g1,17035:9159940,27349880 -g1,17035:15482855,27349880 -g1,17035:16115147,27349880 -g1,17035:18328169,27349880 -g1,17035:20225044,27349880 -g1,17035:20857336,27349880 -g1,17035:22121919,27349880 -h1,17035:22438065,27349880:0,0,0 -k1,17035:32583029,27349880:10144964 -g1,17035:32583029,27349880 -) -(1,17036:6630773,28016058:25952256,410518,76021 -h1,17036:6630773,28016058:0,0,0 -g1,17036:6946919,28016058 -g1,17036:7263065,28016058 -g1,17036:12953688,28016058 -g1,17036:13585980,28016058 -h1,17036:15482854,28016058:0,0,0 -k1,17036:32583030,28016058:17100176 -g1,17036:32583030,28016058 -) -(1,17037:6630773,28682236:25952256,410518,107478 -h1,17037:6630773,28682236:0,0,0 -g1,17037:9476085,28682236 -g1,17037:10108377,28682236 -g1,17037:13902126,28682236 -g1,17037:15799000,28682236 -g1,17037:16431292,28682236 -g1,17037:17379730,28682236 -g1,17037:19592750,28682236 -g1,17037:20225042,28682236 -h1,17037:20857334,28682236:0,0,0 -k1,17037:32583029,28682236:11725695 -g1,17037:32583029,28682236 -) -(1,17038:6630773,29348414:25952256,410518,107478 -h1,17038:6630773,29348414:0,0,0 -k1,17038:6630773,29348414:0 -h1,17038:10108375,29348414:0,0,0 -k1,17038:32583029,29348414:22474654 -g1,17038:32583029,29348414 -) -(1,17039:6630773,30014592:25952256,410518,76021 -h1,17039:6630773,30014592:0,0,0 -k1,17039:6630773,30014592:0 -h1,17039:9476084,30014592:0,0,0 -k1,17039:32583028,30014592:23106944 -g1,17039:32583028,30014592 -) -] -) -g1,17041:32583029,30090613 -g1,17041:6630773,30090613 -g1,17041:6630773,30090613 -g1,17041:32583029,30090613 -g1,17041:32583029,30090613 -) -h1,17041:6630773,30287221:0,0,0 -(1,17045:6630773,31560317:25952256,505283,126483 -h1,17044:6630773,31560317:983040,0,0 -k1,17044:8864398,31560317:208563 -k1,17044:13300033,31560317:208563 -k1,17044:16696924,31560317:208564 -k1,17044:18096932,31560317:208563 -k1,17044:19598511,31560317:208554 -k1,17044:22139500,31560317:208563 -k1,17044:23216415,31560317:208563 -k1,17044:24800579,31560317:208563 -k1,17044:26539409,31560317:208564 -k1,17044:27399400,31560317:208563 -k1,17044:30817916,31560317:208563 -(1,17044:30817916,31560317:0,459977,115847 -r1,17072:32583029,31560317:1765113,575824,115847 -k1,17044:30817916,31560317:-1765113 -) -(1,17044:30817916,31560317:1765113,459977,115847 -k1,17044:30817916,31560317:3277 -h1,17044:32579752,31560317:0,411205,112570 -) -k1,17044:32583029,31560317:0 -) -(1,17045:6630773,32401805:25952256,505283,126483 -g1,17044:8223953,32401805 -(1,17044:8223953,32401805:0,452978,115847 -r1,17072:12451049,32401805:4227096,568825,115847 -k1,17044:8223953,32401805:-4227096 -) -(1,17044:8223953,32401805:4227096,452978,115847 -k1,17044:8223953,32401805:3277 -h1,17044:12447772,32401805:0,411205,112570 -) -g1,17044:12650278,32401805 -g1,17044:13532392,32401805 -(1,17044:13532392,32401805:0,452978,122846 -r1,17072:15297505,32401805:1765113,575824,122846 -k1,17044:13532392,32401805:-1765113 -) -(1,17044:13532392,32401805:1765113,452978,122846 -k1,17044:13532392,32401805:3277 -h1,17044:15294228,32401805:0,411205,112570 -) -g1,17044:15670404,32401805 -k1,17045:32583029,32401805:12942454 -g1,17045:32583029,32401805 -) -v1,17047:6630773,33499590:0,393216,0 -(1,17053:6630773,35121877:25952256,2015503,196608 -g1,17053:6630773,35121877 -g1,17053:6630773,35121877 -g1,17053:6434165,35121877 -(1,17053:6434165,35121877:0,2015503,196608 -r1,17072:32779637,35121877:26345472,2212111,196608 -k1,17053:6434165,35121877:-26345472 -) -(1,17053:6434165,35121877:26345472,2015503,196608 -[1,17053:6630773,35121877:25952256,1818895,0 -(1,17049:6630773,33713500:25952256,410518,107478 -(1,17048:6630773,33713500:0,0,0 -g1,17048:6630773,33713500 -g1,17048:6630773,33713500 -g1,17048:6303093,33713500 -(1,17048:6303093,33713500:0,0,0 -) -g1,17048:6630773,33713500 -) -k1,17049:6630773,33713500:0 -g1,17049:11689105,33713500 -g1,17049:12321397,33713500 -g1,17049:16115146,33713500 -g1,17049:18012020,33713500 -g1,17049:18644312,33713500 -g1,17049:19592750,33713500 -g1,17049:21805770,33713500 -g1,17049:22438062,33713500 -h1,17049:23070354,33713500:0,0,0 -k1,17049:32583029,33713500:9512675 -g1,17049:32583029,33713500 -) -(1,17050:6630773,34379678:25952256,410518,107478 -h1,17050:6630773,34379678:0,0,0 -k1,17050:6630773,34379678:0 -h1,17050:10108375,34379678:0,0,0 -k1,17050:32583029,34379678:22474654 -g1,17050:32583029,34379678 -) -(1,17051:6630773,35045856:25952256,410518,76021 -h1,17051:6630773,35045856:0,0,0 -k1,17051:6630773,35045856:0 -h1,17051:9476084,35045856:0,0,0 -k1,17051:32583028,35045856:23106944 -g1,17051:32583028,35045856 -) -] -) -g1,17053:32583029,35121877 -g1,17053:6630773,35121877 -g1,17053:6630773,35121877 -g1,17053:32583029,35121877 -g1,17053:32583029,35121877 -) -h1,17053:6630773,35318485:0,0,0 -(1,17057:6630773,36591581:25952256,513147,134348 -h1,17056:6630773,36591581:983040,0,0 -k1,17056:8387363,36591581:145715 -k1,17056:9552164,36591581:145716 -k1,17056:11064960,36591581:145715 -k1,17056:11869967,36591581:145715 -k1,17056:14734772,36591581:145716 -k1,17056:17218156,36591581:145715 -k1,17056:18311523,36591581:145716 -k1,17056:19440278,36591581:145715 -k1,17056:21744749,36591581:145715 -k1,17056:22506503,36591581:145716 -k1,17056:24164134,36591581:145715 -k1,17056:25986260,36591581:145715 -k1,17056:27479342,36591581:145662 -k1,17056:28816503,36591581:145716 -k1,17056:30327935,36591581:145662 -k1,17056:32583029,36591581:0 -) -(1,17057:6630773,37433069:25952256,513147,134348 -g1,17056:9514357,37433069 -g1,17056:13116215,37433069 -g1,17056:15520731,37433069 -g1,17056:16371388,37433069 -(1,17056:16371388,37433069:0,452978,115847 -r1,17072:18136501,37433069:1765113,568825,115847 -k1,17056:16371388,37433069:-1765113 -) -(1,17056:16371388,37433069:1765113,452978,115847 -k1,17056:16371388,37433069:3277 -h1,17056:18133224,37433069:0,411205,112570 -) -g1,17056:18335730,37433069 -g1,17056:19726404,37433069 -(1,17056:19726404,37433069:0,452978,122846 -r1,17072:21843229,37433069:2116825,575824,122846 -k1,17056:19726404,37433069:-2116825 -) -(1,17056:19726404,37433069:2116825,452978,122846 -k1,17056:19726404,37433069:3277 -h1,17056:21839952,37433069:0,411205,112570 -) -g1,17056:22042458,37433069 -g1,17056:23233247,37433069 -g1,17056:26629978,37433069 -g1,17056:27445245,37433069 -k1,17057:32583029,37433069:3094371 -g1,17057:32583029,37433069 -) -v1,17059:6630773,38530855:0,393216,0 -(1,17065:6630773,40153142:25952256,2015503,196608 -g1,17065:6630773,40153142 -g1,17065:6630773,40153142 -g1,17065:6434165,40153142 -(1,17065:6434165,40153142:0,2015503,196608 -r1,17072:32779637,40153142:26345472,2212111,196608 -k1,17065:6434165,40153142:-26345472 -) -(1,17065:6434165,40153142:26345472,2015503,196608 -[1,17065:6630773,40153142:25952256,1818895,0 -(1,17061:6630773,38744765:25952256,410518,107478 -(1,17060:6630773,38744765:0,0,0 -g1,17060:6630773,38744765 -g1,17060:6630773,38744765 -g1,17060:6303093,38744765 -(1,17060:6303093,38744765:0,0,0 -) -g1,17060:6630773,38744765 -) -k1,17061:6630773,38744765:0 -g1,17061:9792231,38744765 -g1,17061:10424523,38744765 -g1,17061:14534417,38744765 -g1,17061:16431291,38744765 -g1,17061:17063583,38744765 -g1,17061:18960458,38744765 -g1,17061:21173478,38744765 -g1,17061:21805770,38744765 -h1,17061:23070353,38744765:0,0,0 -k1,17061:32583029,38744765:9512676 -g1,17061:32583029,38744765 -) -(1,17062:6630773,39410943:25952256,410518,107478 -h1,17062:6630773,39410943:0,0,0 -k1,17062:6630773,39410943:0 -h1,17062:10108375,39410943:0,0,0 -k1,17062:32583029,39410943:22474654 -g1,17062:32583029,39410943 -) -(1,17063:6630773,40077121:25952256,410518,76021 -h1,17063:6630773,40077121:0,0,0 -k1,17063:6630773,40077121:0 -h1,17063:9476084,40077121:0,0,0 -k1,17063:32583028,40077121:23106944 -g1,17063:32583028,40077121 -) -] -) -g1,17065:32583029,40153142 -g1,17065:6630773,40153142 -g1,17065:6630773,40153142 -g1,17065:32583029,40153142 -g1,17065:32583029,40153142 -) -h1,17065:6630773,40349750:0,0,0 -v1,17071:6630773,42054453:0,393216,0 -(1,17072:6630773,45116945:25952256,3455708,589824 -g1,17072:6630773,45116945 -(1,17072:6630773,45116945:25952256,3455708,589824 -(1,17072:6630773,45706769:25952256,4045532,0 -[1,17072:6630773,45706769:25952256,4045532,0 -(1,17072:6630773,45706769:25952256,4019318,0 -r1,17072:6656987,45706769:26214,4019318,0 -[1,17072:6656987,45706769:25899828,4019318,0 -(1,17072:6656987,45116945:25899828,2839670,0 -[1,17072:7246811,45116945:24720180,2839670,0 -(1,17072:7246811,43299621:24720180,1022346,134348 -k1,17071:8706482,43299621:204158 -k1,17071:10627683,43299621:204158 -k1,17071:13550929,43299621:204157 -k1,17071:16092756,43299621:204158 -k1,17071:17288474,43299621:204158 -k1,17071:18814493,43299621:204158 -k1,17071:19677942,43299621:204157 -k1,17071:22117533,43299621:204158 -k1,17071:23513136,43299621:204158 -k1,17071:25749565,43299621:204158 -k1,17071:26945282,43299621:204157 -k1,17071:31350953,43299621:204158 -k1,17071:31966991,43299621:0 -) -(1,17072:7246811,44141109:24720180,505283,134348 -k1,17071:11207807,44141109:231342 -k1,17071:14523273,44141109:231342 -k1,17071:15382450,44141109:231342 -k1,17071:17305932,44141109:231342 -k1,17071:19408328,44141109:231343 -k1,17071:21294454,44141109:231342 -k1,17071:22517356,44141109:231342 -k1,17071:25419945,44141109:231342 -k1,17071:28040074,44141109:231342 -k1,17071:30278784,44141109:231342 -k1,17072:31966991,44141109:0 -) -(1,17072:7246811,44982597:24720180,513147,134348 -k1,17071:8809899,44982597:254334 -k1,17071:10011885,44982597:254335 -k1,17071:13363450,44982597:254334 -k1,17071:16336873,44982597:254334 -k1,17071:17207246,44982597:254335 -k1,17071:17817440,44982597:254334 -k1,17071:19766535,44982597:254334 -k1,17071:21003910,44982597:254335 -k1,17071:23612297,44982597:254334 -k1,17071:25740961,44982597:254334 -k1,17071:28332965,44982597:254335 -k1,17071:30874506,44982597:254334 -k1,17071:31966991,44982597:0 -) -] -) -] -r1,17072:32583029,45706769:26214,4019318,0 -) -] -) -) -g1,17072:32583029,45116945 -) -] -(1,17072:32583029,45706769:0,0,0 -g1,17072:32583029,45706769 -) -) -] -(1,17072:6630773,47279633:25952256,0,0 -h1,17072:6630773,47279633:25952256,0,0 -) -] -(1,17072:4262630,4025873:0,0,0 -[1,17072:-473656,4025873:0,0,0 -(1,17072:-473656,-710413:0,0,0 -(1,17072:-473656,-710413:0,0,0 -g1,17072:-473656,-710413 -) -g1,17072:-473656,-710413 -) -] -) -] -!23637 -}333 -!12 -{334 -[1,17092:4262630,47279633:28320399,43253760,0 -(1,17092:4262630,4025873:0,0,0 -[1,17092:-473656,4025873:0,0,0 -(1,17092:-473656,-710413:0,0,0 -(1,17092:-473656,-644877:0,0,0 -k1,17092:-473656,-644877:-65536 -) -(1,17092:-473656,4736287:0,0,0 -k1,17092:-473656,4736287:5209943 -) -g1,17092:-473656,-710413 -) -] -) -[1,17092:6630773,47279633:25952256,43253760,0 -[1,17092:6630773,4812305:25952256,786432,0 -(1,17092:6630773,4812305:25952256,505283,134348 -(1,17092:6630773,4812305:25952256,505283,134348 -g1,17092:3078558,4812305 -[1,17092:3078558,4812305:0,0,0 -(1,17092:3078558,2439708:0,1703936,0 -k1,17092:1358238,2439708:-1720320 -(1,12578:1358238,2439708:1720320,1703936,0 -(1,12578:1358238,2439708:1179648,16384,0 -r1,17092:2537886,2439708:1179648,16384,0 -) -g1,12578:3062174,2439708 -(1,12578:3062174,2439708:16384,1703936,0 -[1,12578:3062174,2439708:25952256,1703936,0 -(1,12578:3062174,1915420:25952256,1179648,0 -(1,12578:3062174,1915420:16384,1179648,0 -r1,17092:3078558,1915420:16384,1179648,0 -) -k1,12578:29014430,1915420:25935872 -g1,12578:29014430,1915420 -) -] -) -) -) -] -[1,17092:3078558,4812305:0,0,0 -(1,17092:3078558,2439708:0,1703936,0 -g1,17092:29030814,2439708 -g1,17092:36135244,2439708 -(1,12578:36135244,2439708:1720320,1703936,0 -(1,12578:36135244,2439708:16384,1703936,0 -[1,12578:36135244,2439708:25952256,1703936,0 -(1,12578:36135244,1915420:25952256,1179648,0 -(1,12578:36135244,1915420:16384,1179648,0 -r1,17092:36151628,1915420:16384,1179648,0 -) -k1,12578:62087500,1915420:25935872 -g1,12578:62087500,1915420 -) -] -) -g1,12578:36675916,2439708 -(1,12578:36675916,2439708:1179648,16384,0 -r1,17092:37855564,2439708:1179648,16384,0 -) -) -k1,17092:3078556,2439708:-34777008 -) -] -[1,17092:3078558,4812305:0,0,0 -(1,17092:3078558,49800853:0,16384,2228224 -k1,17092:1358238,49800853:-1720320 -(1,12578:1358238,49800853:1720320,16384,2228224 -(1,12578:1358238,49800853:1179648,16384,0 -r1,17092:2537886,49800853:1179648,16384,0 -) -g1,12578:3062174,49800853 -(1,12578:3062174,52029077:16384,1703936,0 -[1,12578:3062174,52029077:25952256,1703936,0 -(1,12578:3062174,51504789:25952256,1179648,0 -(1,12578:3062174,51504789:16384,1179648,0 -r1,17092:3078558,51504789:16384,1179648,0 -) -k1,12578:29014430,51504789:25935872 -g1,12578:29014430,51504789 -) -] -) -) -) -] -[1,17092:3078558,4812305:0,0,0 -(1,17092:3078558,49800853:0,16384,2228224 -g1,17092:29030814,49800853 -g1,17092:36135244,49800853 -(1,12578:36135244,49800853:1720320,16384,2228224 -(1,12578:36135244,52029077:16384,1703936,0 -[1,12578:36135244,52029077:25952256,1703936,0 -(1,12578:36135244,51504789:25952256,1179648,0 -(1,12578:36135244,51504789:16384,1179648,0 -r1,17092:36151628,51504789:16384,1179648,0 -) -k1,12578:62087500,51504789:25935872 -g1,12578:62087500,51504789 -) -] -) -g1,12578:36675916,49800853 -(1,12578:36675916,49800853:1179648,16384,0 -r1,17092:37855564,49800853:1179648,16384,0 -) -) -k1,17092:3078556,49800853:-34777008 -) -] -g1,17092:6630773,4812305 -g1,17092:6630773,4812305 -g1,17092:9205682,4812305 -g1,17092:11846782,4812305 -k1,17092:31387652,4812305:19540870 -) -) -] -[1,17092:6630773,45706769:25952256,40108032,0 -(1,17092:6630773,45706769:25952256,40108032,0 -(1,17092:6630773,45706769:0,0,0 -g1,17092:6630773,45706769 -) -[1,17092:6630773,45706769:25952256,40108032,0 -v1,17072:6630773,6254097:0,393216,0 -(1,17072:6630773,10464152:25952256,4603271,616038 -g1,17072:6630773,10464152 -(1,17072:6630773,10464152:25952256,4603271,616038 -(1,17072:6630773,11080190:25952256,5219309,0 -[1,17072:6630773,11080190:25952256,5219309,0 -(1,17072:6630773,11053976:25952256,5193095,0 -r1,17092:6656987,11053976:26214,5193095,0 -[1,17072:6656987,11053976:25899828,5193095,0 -(1,17072:6656987,10464152:25899828,4013447,0 -[1,17072:7246811,10464152:24720180,4013447,0 -(1,17072:7246811,6963852:24720180,513147,134348 -k1,17071:10163426,6963852:154272 -k1,17071:13109531,6963852:154271 -k1,17071:13946688,6963852:154272 -k1,17071:15576174,6963852:154271 -k1,17071:17240396,6963852:154272 -k1,17071:20251382,6963852:154272 -k1,17071:21799604,6963852:154271 -k1,17071:24716219,6963852:154272 -k1,17071:26551488,6963852:154271 -k1,17071:28580090,6963852:154272 -k1,17071:31966991,6963852:0 -) -(1,17072:7246811,7805340:24720180,513147,134348 -k1,17071:9801166,7805340:165568 -k1,17071:12304402,7805340:165567 -k1,17071:13574252,7805340:165568 -k1,17071:15025636,7805340:165568 -k1,17071:16934462,7805340:165568 -k1,17071:17716067,7805340:165567 -k1,17071:19390274,7805340:165568 -k1,17071:22251338,7805340:165568 -k1,17071:25574431,7805340:165568 -k1,17071:26809546,7805340:165567 -k1,17071:28450329,7805340:165568 -k1,17071:31966991,7805340:0 -) -(1,17072:7246811,8646828:24720180,513147,134348 -k1,17071:8050937,8646828:188088 -k1,17071:9258111,8646828:188089 -k1,17071:13057233,8646828:188088 -k1,17071:14436766,8646828:188088 -k1,17071:16133493,8646828:188088 -k1,17071:18563569,8646828:188089 -k1,17071:19379492,8646828:188088 -k1,17071:21264962,8646828:188088 -k1,17071:23151088,8646828:188088 -k1,17071:26436408,8646828:188089 -k1,17071:27981747,8646828:188088 -k1,17071:31966991,8646828:0 -) -(1,17072:7246811,9488316:24720180,513147,134348 -k1,17071:7929930,9488316:225022 -k1,17071:9259235,9488316:225023 -k1,17071:10232023,9488316:225022 -k1,17071:14022204,9488316:225022 -k1,17071:14898655,9488316:225023 -k1,17071:17181507,9488316:225022 -k1,17071:18057958,9488316:225023 -k1,17071:19053683,9488316:225022 -k1,17071:22665606,9488316:225022 -k1,17071:25609718,9488316:225023 -k1,17071:27842108,9488316:225022 -k1,17071:28718558,9488316:225022 -k1,17071:30209737,9488316:225023 -k1,17071:31501030,9488316:225022 -k1,17071:31966991,9488316:0 -) -(1,17072:7246811,10329804:24720180,505283,134348 -g1,17071:8465125,10329804 -g1,17071:11340844,10329804 -g1,17071:12071570,10329804 -g1,17071:12886837,10329804 -g1,17071:14105151,10329804 -g1,17071:15581677,10329804 -g1,17071:16463791,10329804 -g1,17071:17279058,10329804 -g1,17071:18497372,10329804 -g1,17071:21793832,10329804 -k1,17072:31966991,10329804:7899715 -g1,17072:31966991,10329804 -) -] -) -] -r1,17092:32583029,11053976:26214,5193095,0 -) -] -) -) -g1,17072:32583029,10464152 -) -h1,17072:6630773,11080190:0,0,0 -(1,17074:6630773,13887758:25952256,32768,229376 -(1,17074:6630773,13887758:0,32768,229376 -(1,17074:6630773,13887758:5505024,32768,229376 -r1,17092:12135797,13887758:5505024,262144,229376 -) -k1,17074:6630773,13887758:-5505024 -) -(1,17074:6630773,13887758:25952256,32768,0 -r1,17092:32583029,13887758:25952256,32768,0 -) -) -(1,17074:6630773,15492086:25952256,606339,161218 -(1,17074:6630773,15492086:2464678,573309,0 -g1,17074:6630773,15492086 -g1,17074:9095451,15492086 -) -g1,17074:12303307,15492086 -k1,17074:32583029,15492086:17283416 -g1,17074:32583029,15492086 -) -(1,17076:6630773,16726790:25952256,513147,134348 -k1,17075:7714793,16726790:181589 -k1,17075:10585981,16726790:181590 -k1,17075:14139397,16726790:181589 -k1,17075:14980278,16726790:181589 -k1,17075:16180953,16726790:181590 -k1,17075:18114319,16726790:181589 -k1,17075:21698537,16726790:181589 -k1,17075:22531555,16726790:181590 -k1,17075:25293296,16726790:181589 -k1,17075:28303418,16726790:181589 -k1,17075:29016505,16726790:181590 -k1,17075:31563944,16726790:181589 -k1,17075:32583029,16726790:0 -) -(1,17076:6630773,17568278:25952256,513147,134348 -k1,17075:8746124,17568278:288863 -k1,17075:9694278,17568278:288862 -k1,17075:11186382,17568278:288863 -k1,17075:13230954,17568278:288862 -k1,17075:15776222,17568278:288863 -k1,17075:17977425,17568278:288862 -k1,17075:20935569,17568278:288863 -k1,17075:21840469,17568278:288862 -k1,17075:23916499,17568278:288863 -k1,17075:25224446,17568278:288862 -k1,17075:26605794,17568278:288863 -k1,17075:27553949,17568278:288863 -k1,17075:30845014,17568278:288862 -k1,17075:32583029,17568278:0 -) -(1,17076:6630773,18409766:25952256,513147,134348 -k1,17075:9424661,18409766:245193 -k1,17075:12010572,18409766:244965 -k1,17075:15066375,18409766:244964 -k1,17075:16235398,18409766:244965 -k1,17075:18014561,18409766:244965 -k1,17075:20905214,18409766:244964 -k1,17075:24281489,18409766:244965 -k1,17075:25717898,18409766:244964 -k1,17075:28116376,18409766:244965 -k1,17075:30162269,18409766:244964 -k1,17075:31426319,18409766:244965 -k1,17075:32583029,18409766:0 -) -(1,17076:6630773,19251254:25952256,513147,134348 -k1,17075:9066141,19251254:148817 -k1,17075:9976486,19251254:148817 -k1,17075:11144388,19251254:148817 -k1,17075:12885075,19251254:148817 -k1,17075:15159225,19251254:148817 -k1,17075:15967334,19251254:148817 -k1,17075:17135236,19251254:148817 -k1,17075:20037876,19251254:148817 -k1,17075:21228715,19251254:148817 -k1,17075:24857494,19251254:148817 -k1,17075:25689196,19251254:148817 -k1,17075:28202552,19251254:148817 -k1,17075:29417640,19251254:148817 -k1,17075:32583029,19251254:0 -) -(1,17076:6630773,20092742:25952256,513147,134348 -k1,17075:7918064,20092742:268206 -k1,17075:9768309,20092742:268206 -k1,17075:10486092,20092742:268206 -k1,17075:13565137,20092742:268206 -k1,17075:16916156,20092742:268206 -k1,17075:19406689,20092742:268207 -k1,17075:21475824,20092742:268206 -k1,17075:22275527,20092742:268206 -k1,17075:23314436,20092742:268206 -k1,17075:26405278,20092742:268206 -k1,17075:29826421,20092742:268206 -k1,17075:30722462,20092742:268206 -k1,17075:32583029,20092742:0 -) -(1,17076:6630773,20934230:25952256,513147,134348 -k1,17075:10980253,20934230:286903 -k1,17075:11926448,20934230:286903 -k1,17075:13232436,20934230:286903 -k1,17075:16382608,20934230:286904 -k1,17075:19044536,20934230:286903 -k1,17075:19998595,20934230:286903 -k1,17075:20700253,20934230:286815 -k1,17075:23706245,20934230:286903 -k1,17075:24984708,20934230:286903 -k1,17075:28055581,20934230:286904 -k1,17075:28958522,20934230:286903 -k1,17075:30264510,20934230:286903 -k1,17075:32133452,20934230:286903 -k1,17075:32583029,20934230:0 -) -(1,17076:6630773,21775718:25952256,505283,126483 -g1,17075:9663779,21775718 -g1,17075:12382868,21775718 -k1,17076:32583028,21775718:18225560 -g1,17076:32583028,21775718 -) -v1,17078:6630773,22966184:0,393216,0 -(1,17082:6630773,23281280:25952256,708312,196608 -g1,17082:6630773,23281280 -g1,17082:6630773,23281280 -g1,17082:6434165,23281280 -(1,17082:6434165,23281280:0,708312,196608 -r1,17092:32779637,23281280:26345472,904920,196608 -k1,17082:6434165,23281280:-26345472 -) -(1,17082:6434165,23281280:26345472,708312,196608 -[1,17082:6630773,23281280:25952256,511704,0 -(1,17081:6630773,23173802:25952256,404226,107478 -(1,17079:6630773,23173802:0,0,0 -g1,17079:6630773,23173802 -g1,17079:6630773,23173802 -g1,17079:6303093,23173802 -(1,17079:6303093,23173802:0,0,0 -) -g1,17079:6630773,23173802 -) -g1,17081:7579210,23173802 -g1,17081:9476084,23173802 -g1,17081:10108376,23173802 -g1,17081:12637542,23173802 -g1,17081:15799000,23173802 -g1,17081:16747437,23173802 -g1,17081:19592748,23173802 -g1,17081:20541185,23173802 -g1,17081:22754206,23173802 -g1,17081:23702643,23173802 -g1,17081:25283372,23173802 -g1,17081:26547955,23173802 -g1,17081:27496392,23173802 -h1,17081:30025557,23173802:0,0,0 -k1,17081:32583029,23173802:2557472 -g1,17081:32583029,23173802 -) -] -) -g1,17082:32583029,23281280 -g1,17082:6630773,23281280 -g1,17082:6630773,23281280 -g1,17082:32583029,23281280 -g1,17082:32583029,23281280 -) -h1,17082:6630773,23477888:0,0,0 -] -(1,17092:32583029,45706769:0,0,0 -g1,17092:32583029,45706769 -) -) -] -(1,17092:6630773,47279633:25952256,0,0 -h1,17092:6630773,47279633:25952256,0,0 -) -] -(1,17092:4262630,4025873:0,0,0 -[1,17092:-473656,4025873:0,0,0 -(1,17092:-473656,-710413:0,0,0 -(1,17092:-473656,-710413:0,0,0 -g1,17092:-473656,-710413 -) -g1,17092:-473656,-710413 -) -] -) -] -!11254 -}334 -!12 -{335 -[1,17092:4262630,47279633:28320399,43253760,0 -(1,17092:4262630,4025873:0,0,0 -[1,17092:-473656,4025873:0,0,0 -(1,17092:-473656,-710413:0,0,0 -(1,17092:-473656,-644877:0,0,0 -k1,17092:-473656,-644877:-65536 -) -(1,17092:-473656,4736287:0,0,0 -k1,17092:-473656,4736287:5209943 -) -g1,17092:-473656,-710413 -) -] -) -[1,17092:6630773,47279633:25952256,43253760,0 -[1,17092:6630773,4812305:25952256,786432,0 -(1,17092:6630773,4812305:25952256,0,0 -(1,17092:6630773,4812305:25952256,0,0 -g1,17092:3078558,4812305 -[1,17092:3078558,4812305:0,0,0 -(1,17092:3078558,2439708:0,1703936,0 -k1,17092:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,17092:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,17092:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 -) -] -) -) -) -] -[1,17092:3078558,4812305:0,0,0 -(1,17092:3078558,2439708:0,1703936,0 -g1,17092:29030814,2439708 -g1,17092:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,17092:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 -) -] -) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,17092:37855564,2439708:1179648,16384,0 -) -) -k1,17092:3078556,2439708:-34777008 -) -] -[1,17092:3078558,4812305:0,0,0 -(1,17092:3078558,49800853:0,16384,2228224 -k1,17092:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,17092:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,17092:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 -) -] -) -) -) -] -[1,17092:3078558,4812305:0,0,0 -(1,17092:3078558,49800853:0,16384,2228224 -g1,17092:29030814,49800853 -g1,17092:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,17092:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 -) -] -) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,17092:37855564,49800853:1179648,16384,0 -) -) -k1,17092:3078556,49800853:-34777008 -) -] -g1,17092:6630773,4812305 -) -) -] -[1,17092:6630773,45706769:0,40108032,0 -(1,17092:6630773,45706769:0,40108032,0 -(1,17092:6630773,45706769:0,0,0 -g1,17092:6630773,45706769 -) -[1,17092:6630773,45706769:0,40108032,0 -h1,17092:6630773,6254097:0,0,0 -] -(1,17092:6630773,45706769:0,0,0 -g1,17092:6630773,45706769 -) -) -] -(1,17092:6630773,47279633:25952256,0,0 -h1,17092:6630773,47279633:25952256,0,0 -) -] -(1,17092:4262630,4025873:0,0,0 -[1,17092:-473656,4025873:0,0,0 -(1,17092:-473656,-710413:0,0,0 -(1,17092:-473656,-710413:0,0,0 -g1,17092:-473656,-710413 -) -g1,17092:-473656,-710413 -) -] -) -] -!3399 -}335 -Input:2782:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2783:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2784:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2785:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!379 -{336 -[1,17113:4262630,47279633:28320399,43253760,11795 -(1,17113:4262630,4025873:0,0,0 -[1,17113:-473656,4025873:0,0,0 -(1,17113:-473656,-710413:0,0,0 -(1,17113:-473656,-644877:0,0,0 -k1,17113:-473656,-644877:-65536 -) -(1,17113:-473656,4736287:0,0,0 -k1,17113:-473656,4736287:5209943 -) -g1,17113:-473656,-710413 -) -] -) -[1,17113:6630773,47279633:25952256,43253760,11795 -[1,17113:6630773,4812305:25952256,786432,0 -(1,17113:6630773,4812305:25952256,0,0 -(1,17113:6630773,4812305:25952256,0,0 -g1,17113:3078558,4812305 -[1,17113:3078558,4812305:0,0,0 -(1,17113:3078558,2439708:0,1703936,0 -k1,17113:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,17113:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,17113:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 -) -] -) -) -) -] -[1,17113:3078558,4812305:0,0,0 -(1,17113:3078558,2439708:0,1703936,0 -g1,17113:29030814,2439708 -g1,17113:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,17113:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 -) -] -) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,17113:37855564,2439708:1179648,16384,0 -) -) -k1,17113:3078556,2439708:-34777008 -) -] -[1,17113:3078558,4812305:0,0,0 -(1,17113:3078558,49800853:0,16384,2228224 -k1,17113:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,17113:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,17113:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 -) -] -) -) -) -] -[1,17113:3078558,4812305:0,0,0 -(1,17113:3078558,49800853:0,16384,2228224 -g1,17113:29030814,49800853 -g1,17113:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,17113:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 -) -] -) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,17113:37855564,49800853:1179648,16384,0 -) -) -k1,17113:3078556,49800853:-34777008 -) -] -g1,17113:6630773,4812305 -) -) -] -[1,17113:6630773,45706769:25952256,40108032,0 -(1,17113:6630773,45706769:25952256,40108032,0 -(1,17113:6630773,45706769:0,0,0 -g1,17113:6630773,45706769 -) -[1,17113:6630773,45706769:25952256,40108032,0 -[1,17092:6630773,11663733:25952256,6064996,0 -(1,17092:6630773,6633157:25952256,1165492,28311 -h1,17092:6630773,6633157:0,0,0 -k1,17092:20096848,6633157:12486181 -k1,17092:32583029,6633157:12486181 -) -(1,17092:6630773,7333093:25952256,32768,229376 -(1,17092:6630773,7333093:0,32768,229376 -(1,17092:6630773,7333093:5505024,32768,229376 -r1,17113:12135797,7333093:5505024,262144,229376 -) -k1,17092:6630773,7333093:-5505024 -) -(1,17092:6630773,7333093:25952256,32768,0 -r1,17113:32583029,7333093:25952256,32768,0 -) -) -(1,17092:6630773,9128789:25952256,909509,227671 -h1,17092:6630773,9128789:0,0,0 -g1,17092:9750942,9128789 -g1,17092:13915100,9128789 -g1,17092:16452523,9128789 -k1,17092:26299635,9128789:6283395 -k1,17092:32583029,9128789:6283394 -) -(1,17092:6630773,9828725:25952256,32768,0 -(1,17092:6630773,9828725:5505024,32768,0 -r1,17113:12135797,9828725:5505024,32768,0 -) -k1,17092:22359413,9828725:10223616 -k1,17092:32583029,9828725:10223616 -) -] -(1,17094:6630773,14556498:25952256,131072,0 -r1,17113:32583029,14556498:25952256,131072,0 -g1,17094:32583029,14556498 -g1,17094:32583029,14556498 -) -(1,17096:6630773,15876399:25952256,505283,134348 -k1,17096:8596853,15876399:1966080 -k1,17095:10349431,15876399:207239 -k1,17095:14884668,15876399:207239 -k1,17095:16567123,15876399:207240 -k1,17095:18214188,15876399:207239 -k1,17095:20234153,15876399:207239 -k1,17095:21632837,15876399:207239 -k1,17095:23441777,15876399:207240 -k1,17095:25233021,15876399:207239 -k1,17095:29768258,15876399:207239 -k1,17096:32583029,15876399:1966080 -) -(1,17096:6630773,16717887:25952256,505283,134348 -k1,17096:8596853,16717887:1966080 -k1,17095:10248360,16717887:152043 -k1,17095:12658774,16717887:152043 -k1,17095:15097369,16717887:152044 -k1,17095:15862174,16717887:152043 -k1,17095:17509749,16717887:152043 -k1,17095:18992173,16717887:152043 -k1,17095:20702007,16717887:152043 -k1,17095:21845610,16717887:152043 -k1,17095:23722562,16717887:152044 -k1,17095:26037293,16717887:152043 -k1,17095:27544621,16717887:152043 -k1,17095:32583029,16717887:1966080 -) -(1,17096:6630773,17559375:25952256,513147,134348 -g1,17096:8596853,17559375 -g1,17095:10080588,17559375 -g1,17095:12460200,17559375 -g1,17095:14134644,17559375 -g1,17095:15843823,17559375 -g1,17095:17901653,17559375 -g1,17095:19931303,17559375 -g1,17095:22991834,17559375 -k1,17096:30616949,17559375:4379117 -g1,17096:32583029,17559375 -) -(1,17097:6630773,19187295:25952256,505283,126483 -k1,17097:26585175,19187295:19954402 -h1,17097:26585175,19187295:0,0,0 -g1,17097:28285178,19187295 -g1,17097:30616949,19187295 -g1,17097:32583029,19187295 -) -(1,17098:6630773,20028783:25952256,505283,134348 -k1,17098:22157562,20028783:15526789 -h1,17097:22157562,20028783:0,0,0 -g1,17097:26747048,20028783 -g1,17097:29023113,20028783 -g1,17098:30616949,20028783 -g1,17098:32583029,20028783 -) -(1,17098:6630773,21263487:25952256,131072,0 -r1,17113:32583029,21263487:25952256,131072,0 -g1,17098:32583029,21263487 -g1,17098:34549109,21263487 -) -(1,17102:6630773,24071055:25952256,32768,229376 -(1,17102:6630773,24071055:0,32768,229376 -(1,17102:6630773,24071055:5505024,32768,229376 -r1,17113:12135797,24071055:5505024,262144,229376 -) -k1,17102:6630773,24071055:-5505024 -) -(1,17102:6630773,24071055:25952256,32768,0 -r1,17113:32583029,24071055:25952256,32768,0 -) -) -(1,17102:6630773,25675383:25952256,615776,151780 -(1,17102:6630773,25675383:1974731,582746,14155 -g1,17102:6630773,25675383 -g1,17102:8605504,25675383 -) -g1,17102:10904245,25675383 -g1,17102:11961996,25675383 -g1,17102:13695292,25675383 -k1,17102:32583029,25675383:15886712 -g1,17102:32583029,25675383 -) -(1,17105:6630773,26910087:25952256,513147,134348 -k1,17104:8248858,26910087:185468 -k1,17104:8849155,26910087:185454 -k1,17104:10226068,26910087:185468 -k1,17104:11430621,26910087:185468 -k1,17104:16170841,26910087:185468 -k1,17104:19266763,26910087:185468 -k1,17104:22396764,26910087:185468 -k1,17104:23343760,26910087:185468 -k1,17104:26001901,26910087:185468 -k1,17104:28525038,26910087:185468 -k1,17104:30942007,26910087:185468 -k1,17105:32583029,26910087:0 -) -(1,17105:6630773,27751575:25952256,513147,134348 -k1,17104:8519521,27751575:290980 -k1,17104:9758151,27751575:290979 -k1,17104:13221074,27751575:290980 -k1,17104:14703498,27751575:290979 -k1,17104:18057631,27751575:290980 -k1,17104:19911644,27751575:290979 -k1,17104:24054175,27751575:290980 -k1,17104:27255608,27751575:290979 -k1,17104:29976663,27751575:290980 -k1,17104:31734338,27751575:290979 -k1,17105:32583029,27751575:0 -) -(1,17105:6630773,28593063:25952256,513147,126483 -k1,17104:10552924,28593063:290146 -k1,17104:11790720,28593063:290145 -k1,17104:13773006,28593063:290146 -k1,17104:14722443,28593063:290145 -k1,17104:16709316,28593063:290146 -k1,17104:20025258,28593063:290145 -k1,17104:21506849,28593063:290146 -k1,17104:24323407,28593063:290145 -k1,17104:25561204,28593063:290146 -k1,17104:28082850,28593063:290145 -k1,17104:31599989,28593063:290146 -k1,17104:32583029,28593063:0 -) -(1,17105:6630773,29434551:25952256,513147,134348 -k1,17104:9576218,29434551:261090 -k1,17104:10465143,29434551:261090 -k1,17104:11745317,29434551:261089 -k1,17104:14412234,29434551:261090 -k1,17104:17264618,29434551:261090 -k1,17104:17738638,29434551:261028 -k1,17104:19176754,29434551:261089 -k1,17104:20050606,29434551:261090 -k1,17104:23623886,29434551:261090 -k1,17104:25351672,29434551:261090 -k1,17104:27002124,29434551:261089 -k1,17104:28971738,29434551:261090 -k1,17104:30424273,29434551:261090 -k1,17104:32583029,29434551:0 -) -(1,17105:6630773,30276039:25952256,513147,134348 -k1,17104:9535983,30276039:193986 -k1,17104:10346008,30276039:193987 -k1,17104:12327161,30276039:193986 -k1,17104:13896749,30276039:193987 -k1,17104:15109820,30276039:193986 -k1,17104:16905507,30276039:193987 -k1,17104:19876909,30276039:193986 -k1,17104:22956446,30276039:193987 -k1,17104:24539795,30276039:193986 -k1,17104:27244466,30276039:193987 -k1,17104:29389459,30276039:193986 -k1,17104:30649717,30276039:193987 -k1,17104:32583029,30276039:0 -) -(1,17105:6630773,31117527:25952256,505283,95026 -g1,17104:7481430,31117527 -k1,17105:32583029,31117527:24305992 -g1,17105:32583029,31117527 -) -(1,17107:6630773,31959015:25952256,513147,134348 -h1,17106:6630773,31959015:983040,0,0 -k1,17106:9338491,31959015:252739 -k1,17106:10574269,31959015:252738 -k1,17106:13337692,31959015:252739 -k1,17106:14874936,31959015:252738 -k1,17106:16119235,31959015:252739 -k1,17106:18657213,31959015:252738 -k1,17106:19561380,31959015:252739 -k1,17106:20228908,31959015:252685 -k1,17106:21473206,31959015:252738 -k1,17106:22792216,31959015:252739 -k1,17106:25174219,31959015:252738 -k1,17106:26705565,31959015:252739 -k1,17106:29513552,31959015:252738 -k1,17106:32124932,31959015:252739 -k1,17106:32583029,31959015:0 -) -(1,17107:6630773,32800503:25952256,513147,134348 -k1,17106:9914126,32800503:174325 -k1,17106:10739880,32800503:174326 -k1,17106:16168882,32800503:174325 -k1,17106:17362293,32800503:174326 -k1,17106:20977913,32800503:174325 -k1,17106:23450587,32800503:174326 -k1,17106:24276340,32800503:174325 -k1,17106:25862967,32800503:174326 -k1,17106:27850018,32800503:174325 -k1,17106:29898674,32800503:174326 -k1,17106:32583029,32800503:0 -) -(1,17107:6630773,33641991:25952256,513147,134348 -k1,17106:8309100,33641991:211631 -k1,17106:10218769,33641991:211631 -k1,17106:12526896,33641991:211630 -k1,17106:15293776,33641991:211631 -k1,17106:16842341,33641991:211631 -k1,17106:17801738,33641991:211631 -k1,17106:20650537,33641991:211630 -k1,17106:21623696,33641991:211631 -k1,17106:22854412,33641991:211631 -k1,17106:26525033,33641991:211631 -k1,17106:27395955,33641991:211630 -k1,17106:28626671,33641991:211631 -k1,17106:31123542,33641991:211631 -k1,17107:32583029,33641991:0 -) -(1,17107:6630773,34483479:25952256,513147,134348 -k1,17106:8289817,34483479:146473 -k1,17106:9720795,34483479:146472 -k1,17106:11812377,34483479:146473 -k1,17106:12977934,34483479:146472 -k1,17106:14611419,34483479:146473 -k1,17106:19278565,34483479:146472 -k1,17106:22908277,34483479:146473 -k1,17106:25813816,34483479:146473 -k1,17106:26611716,34483479:146472 -k1,17106:28170490,34483479:146473 -k1,17106:29508407,34483479:146472 -k1,17106:31269687,34483479:146473 -k1,17106:32583029,34483479:0 -) -(1,17107:6630773,35324967:25952256,513147,134348 -k1,17106:8578831,35324967:212665 -k1,17106:11076736,35324967:212665 -k1,17106:13800086,35324967:212666 -k1,17106:15117033,35324967:212665 -k1,17106:17130627,35324967:212665 -k1,17106:19186164,35324967:212665 -k1,17106:20014868,35324967:212666 -k1,17106:21789911,35324967:212665 -k1,17106:24165264,35324967:212665 -k1,17106:25569374,35324967:212665 -k1,17106:27137325,35324967:212666 -k1,17106:27764820,35324967:212652 -k1,17106:30312533,35324967:212665 -k1,17106:31478747,35324967:212665 -k1,17106:32583029,35324967:0 -) -(1,17107:6630773,36166455:25952256,513147,134348 -k1,17106:8137683,36166455:221094 -k1,17106:11877406,36166455:221095 -k1,17106:13713307,36166455:221094 -k1,17106:15430589,36166455:221095 -k1,17106:16936189,36166455:221094 -k1,17106:19444491,36166455:221095 -k1,17106:21592343,36166455:221094 -k1,17106:22885607,36166455:221095 -k1,17106:26992331,36166455:221094 -k1,17106:28570677,36166455:221095 -k1,17106:30185722,36166455:221094 -k1,17106:32583029,36166455:0 -) -(1,17107:6630773,37007943:25952256,513147,126483 -k1,17106:8347816,37007943:230031 -k1,17106:9260733,37007943:230032 -k1,17106:10957460,37007943:230031 -k1,17106:13242700,37007943:230031 -k1,17106:17358361,37007943:230031 -k1,17106:19910334,37007943:230032 -k1,17106:22867973,37007943:230031 -k1,17106:24117089,37007943:230031 -k1,17106:27296895,37007943:230031 -k1,17106:29089961,37007943:230032 -k1,17106:30516679,37007943:230031 -k1,17106:31923737,37007943:230031 -k1,17106:32583029,37007943:0 -) -(1,17107:6630773,37849431:25952256,513147,134348 -k1,17106:8017951,37849431:183937 -k1,17106:10619512,37849431:183938 -k1,17106:11334946,37849431:183937 -k1,17106:12170312,37849431:183938 -k1,17106:14784324,37849431:183937 -k1,17106:17830875,37849431:183938 -k1,17106:18962463,37849431:183937 -k1,17106:21402806,37849431:183938 -k1,17106:24612540,37849431:183937 -k1,17106:25744129,37849431:183938 -k1,17106:28330616,37849431:183937 -k1,17106:29903917,37849431:183938 -k1,17106:32583029,37849431:0 -) -(1,17107:6630773,38690919:25952256,513147,134348 -k1,17106:8591133,38690919:224967 -k1,17106:11101340,38690919:224967 -k1,17106:14010663,38690919:224968 -k1,17106:16946854,38690919:224967 -k1,17106:18638517,38690919:224967 -k1,17106:20297412,38690919:224967 -k1,17106:21110892,38690919:224967 -k1,17106:24316436,38690919:224967 -k1,17106:25560489,38690919:224968 -k1,17106:28412794,38690919:224967 -k1,17106:31391584,38690919:224967 -k1,17106:32583029,38690919:0 -) -(1,17107:6630773,39532407:25952256,513147,134348 -g1,17106:11403104,39532407 -g1,17106:15331987,39532407 -g1,17106:18615340,39532407 -g1,17106:20333038,39532407 -g1,17106:23558064,39532407 -g1,17106:24748853,39532407 -g1,17106:26226689,39532407 -g1,17106:28385444,39532407 -g1,17106:29267558,39532407 -k1,17107:32583029,39532407:220861 -g1,17107:32583029,39532407 -) -(1,17109:6630773,40373895:25952256,513147,134348 -h1,17108:6630773,40373895:983040,0,0 -k1,17108:8410567,40373895:168919 -k1,17108:9782727,40373895:168919 -k1,17108:12369269,40373895:168919 -k1,17108:13708661,40373895:168919 -k1,17108:15010042,40373895:168919 -k1,17108:18609770,40373895:168918 -k1,17108:21385056,40373895:168919 -k1,17108:22947926,40373895:168919 -k1,17108:24447226,40373895:168919 -k1,17108:25267573,40373895:168919 -k1,17108:28389544,40373895:168919 -k1,17108:29947826,40373895:168919 -k1,17109:32583029,40373895:0 -) -(1,17109:6630773,41215383:25952256,513147,126483 -k1,17108:7336746,41215383:291130 -k1,17108:8819414,41215383:291223 -k1,17108:10812606,41215383:291222 -k1,17108:15168372,41215383:291223 -k1,17108:16656282,41215383:291223 -k1,17108:19973301,41215383:291222 -(1,17108:19973301,41215383:0,452978,115847 -r1,17113:22090126,41215383:2116825,568825,115847 -k1,17108:19973301,41215383:-2116825 -) -(1,17108:19973301,41215383:2116825,452978,115847 -k1,17108:19973301,41215383:3277 -h1,17108:22086849,41215383:0,411205,112570 -) -k1,17108:22381349,41215383:291223 -k1,17108:23864016,41215383:291222 -(1,17108:23864016,41215383:0,452978,115847 -r1,17113:25980841,41215383:2116825,568825,115847 -k1,17108:23864016,41215383:-2116825 -) -(1,17108:23864016,41215383:2116825,452978,115847 -k1,17108:23864016,41215383:3277 -h1,17108:25977564,41215383:0,411205,112570 -) -k1,17108:26445734,41215383:291223 -k1,17108:27928401,41215383:291222 -(1,17108:27928401,41215383:0,452978,115847 -r1,17113:31100361,41215383:3171960,568825,115847 -k1,17108:27928401,41215383:-3171960 -) -(1,17108:27928401,41215383:3171960,452978,115847 -k1,17108:27928401,41215383:3277 -h1,17108:31097084,41215383:0,411205,112570 -) -k1,17108:31391584,41215383:291223 -k1,17109:32583029,41215383:0 -) -(1,17109:6630773,42056871:25952256,513147,115847 -(1,17108:6630773,42056871:0,452978,115847 -r1,17113:9802733,42056871:3171960,568825,115847 -k1,17108:6630773,42056871:-3171960 -) -(1,17108:6630773,42056871:3171960,452978,115847 -k1,17108:6630773,42056871:3277 -h1,17108:9799456,42056871:0,411205,112570 -) -k1,17108:10195105,42056871:218702 -k1,17108:11179922,42056871:218701 -k1,17108:12057916,42056871:218702 -k1,17108:14162089,42056871:218702 -k1,17108:15771464,42056871:218701 -k1,17108:17181611,42056871:218702 -k1,17108:18812614,42056871:218702 -k1,17108:20420678,42056871:218701 -k1,17108:21255418,42056871:218702 -k1,17108:22392934,42056871:218701 -k1,17108:24544948,42056871:218702 -k1,17108:27448005,42056871:218702 -k1,17108:28658266,42056871:218701 -k1,17108:31966991,42056871:218702 -k1,17108:32583029,42056871:0 -) -(1,17109:6630773,42898359:25952256,505283,134348 -g1,17108:9438990,42898359 -h1,17108:11380166,42898359:0,0,0 -g1,17108:11579395,42898359 -g1,17108:12970069,42898359 -h1,17108:14911245,42898359:0,0,0 -g1,17108:15110474,42898359 -g1,17108:17788275,42898359 -g1,17108:18796874,42898359 -g1,17108:20494256,42898359 -h1,17108:21291174,42898359:0,0,0 -k1,17109:32583029,42898359:11118185 -g1,17109:32583029,42898359 -) -] -(1,17113:32583029,45706769:0,0,0 -g1,17113:32583029,45706769 -) -) -] -(1,17113:6630773,47279633:25952256,485622,11795 -(1,17113:6630773,47279633:25952256,485622,11795 -(1,17113:6630773,47279633:0,0,0 -v1,17113:6630773,47279633:0,0,0 -) -g1,17113:6830002,47279633 -k1,17113:31387652,47279633:24557650 -) -) -] -(1,17113:4262630,4025873:0,0,0 -[1,17113:-473656,4025873:0,0,0 -(1,17113:-473656,-710413:0,0,0 -(1,17113:-473656,-710413:0,0,0 -g1,17113:-473656,-710413 -) -g1,17113:-473656,-710413 -) -] -) -] -!17285 -}336 -!12 -{337 -[1,17156:4262630,47279633:28320399,43253760,0 -(1,17156:4262630,4025873:0,0,0 -[1,17156:-473656,4025873:0,0,0 -(1,17156:-473656,-710413:0,0,0 -(1,17156:-473656,-644877:0,0,0 -k1,17156:-473656,-644877:-65536 -) -(1,17156:-473656,4736287:0,0,0 -k1,17156:-473656,4736287:5209943 -) -g1,17156:-473656,-710413 -) -] -) -[1,17156:6630773,47279633:25952256,43253760,0 -[1,17156:6630773,4812305:25952256,786432,0 -(1,17156:6630773,4812305:25952256,505283,126483 -(1,17156:6630773,4812305:25952256,505283,126483 -g1,17156:3078558,4812305 -[1,17156:3078558,4812305:0,0,0 -(1,17156:3078558,2439708:0,1703936,0 -k1,17156:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,17156:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,17156:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 -) -] -) -) -) -] -[1,17156:3078558,4812305:0,0,0 -(1,17156:3078558,2439708:0,1703936,0 -g1,17156:29030814,2439708 -g1,17156:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,17156:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 -) -] -) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,17156:37855564,2439708:1179648,16384,0 -) -) -k1,17156:3078556,2439708:-34777008 -) -] -[1,17156:3078558,4812305:0,0,0 -(1,17156:3078558,49800853:0,16384,2228224 -k1,17156:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,17156:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,17156:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 -) -] -) -) -) -] -[1,17156:3078558,4812305:0,0,0 -(1,17156:3078558,49800853:0,16384,2228224 -g1,17156:29030814,49800853 -g1,17156:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,17156:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 -) -] -) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,17156:37855564,49800853:1179648,16384,0 -) -) -k1,17156:3078556,49800853:-34777008 -) -] -g1,17156:6630773,4812305 -k1,17156:25146660,4812305:17320510 -g1,17156:26880087,4812305 -g1,17156:29193507,4812305 -g1,17156:30603186,4812305 -) -) -] -[1,17156:6630773,45706769:25952256,40108032,0 -(1,17156:6630773,45706769:25952256,40108032,0 -(1,17156:6630773,45706769:0,0,0 -g1,17156:6630773,45706769 -) -[1,17156:6630773,45706769:25952256,40108032,0 -(1,17110:6630773,6254097:25952256,32768,229376 -(1,17110:6630773,6254097:0,32768,229376 -(1,17110:6630773,6254097:5505024,32768,229376 -r1,17156:12135797,6254097:5505024,262144,229376 -) -k1,17110:6630773,6254097:-5505024 -) -(1,17110:6630773,6254097:25952256,32768,0 -r1,17156:32583029,6254097:25952256,32768,0 -) -) -(1,17110:6630773,7858425:25952256,606339,14155 -(1,17110:6630773,7858425:1974731,582746,14155 -g1,17110:6630773,7858425 -g1,17110:8605504,7858425 -) -k1,17110:32583029,7858425:19020644 -g1,17110:32583029,7858425 -) -(1,17113:6630773,9093129:25952256,513147,126483 -k1,17112:8032465,9093129:205005 -k1,17112:9543603,9093129:205005 -k1,17112:11103893,9093129:205005 -k1,17112:11924936,9093129:205005 -k1,17112:13261748,9093129:205005 -k1,17112:14856116,9093129:205005 -k1,17112:17615714,9093129:205005 -k1,17112:19214670,9093129:205005 -k1,17112:19834513,9093129:205000 -k1,17112:20571015,9093129:205005 -k1,17112:21427448,9093129:205005 -k1,17112:23340977,9093129:205005 -k1,17112:24228867,9093129:205005 -k1,17112:26675203,9093129:205005 -k1,17112:27899293,9093129:205005 -k1,17112:29667332,9093129:205005 -k1,17112:32583029,9093129:0 -) -(1,17113:6630773,9934617:25952256,513147,134348 -k1,17112:9357726,9934617:287703 -k1,17112:10304721,9934617:287703 -k1,17112:11981787,9934617:287703 -k1,17112:13261050,9934617:287703 -k1,17112:15300530,9934617:287703 -k1,17112:16779678,9934617:287703 -k1,17112:18456743,9934617:287702 -k1,17112:19848728,9934617:287703 -k1,17112:20884197,9934617:287703 -k1,17112:23210070,9934617:287703 -k1,17112:24180658,9934617:287703 -k1,17112:28217676,9934617:287703 -k1,17112:30240772,9934617:287703 -k1,17112:32583029,9934617:0 -) -(1,17113:6630773,10776105:25952256,513147,134348 -k1,17112:9460050,10776105:144922 -k1,17112:11071667,10776105:144921 -k1,17112:13071258,10776105:144922 -k1,17112:14025550,10776105:144922 -k1,17112:15396650,10776105:144921 -k1,17112:16224457,10776105:144922 -k1,17112:18391165,10776105:144922 -k1,17112:21941337,10776105:144921 -k1,17112:22556152,10776105:144922 -k1,17112:23232571,10776105:144922 -k1,17112:25510034,10776105:144921 -k1,17112:26939462,10776105:144922 -k1,17112:28473747,10776105:144922 -k1,17112:29150165,10776105:144921 -k1,17112:30361358,10776105:144922 -k1,17112:32583029,10776105:0 -) -(1,17113:6630773,11617593:25952256,513147,126483 -k1,17112:10413838,11617593:203489 -k1,17112:12315365,11617593:203489 -k1,17112:13931156,11617593:203490 -k1,17112:15326090,11617593:203489 -k1,17112:16814085,11617593:203489 -k1,17112:17633612,11617593:203489 -k1,17112:18856187,11617593:203490 -k1,17112:21759104,11617593:203489 -k1,17112:23329674,11617593:203489 -k1,17112:24192455,11617593:203489 -k1,17112:25166647,11617593:203489 -k1,17112:27150750,11617593:203490 -k1,17112:29291483,11617593:203489 -k1,17112:30486532,11617593:203489 -k1,17112:32583029,11617593:0 -) -(1,17113:6630773,12459081:25952256,505283,134348 -g1,17112:9767981,12459081 -g1,17112:11512549,12459081 -g1,17112:15052803,12459081 -g1,17112:16243592,12459081 -g1,17112:18198531,12459081 -g1,17112:23777610,12459081 -k1,17113:32583029,12459081:6694504 -g1,17113:32583029,12459081 -) -(1,17115:6630773,13300569:25952256,513147,126483 -h1,17114:6630773,13300569:983040,0,0 -k1,17114:9079689,13300569:269189 -k1,17114:10702852,13300569:269189 -k1,17114:13740937,13300569:269189 -k1,17114:16628945,13300569:269189 -k1,17114:17557426,13300569:269189 -k1,17114:21117833,13300569:269189 -k1,17114:22046314,13300569:269189 -k1,17114:23334588,13300569:269189 -k1,17114:25134043,13300569:269189 -k1,17114:26350883,13300569:269189 -k1,17114:28197524,13300569:269189 -k1,17114:31923737,13300569:269189 -k1,17114:32583029,13300569:0 -) -(1,17115:6630773,14142057:25952256,513147,134348 -k1,17114:8459949,14142057:266142 -k1,17114:10772124,14142057:266141 -k1,17114:12057351,14142057:266142 -k1,17114:14482249,14142057:266142 -k1,17114:15407683,14142057:266142 -k1,17114:17063187,14142057:266141 -k1,17114:18896950,14142057:266142 -k1,17114:19577868,14142057:266075 -k1,17114:21111476,14142057:266142 -k1,17114:25250795,14142057:266141 -k1,17114:30072345,14142057:266142 -k1,17114:32583029,14142057:0 -) -(1,17115:6630773,14983545:25952256,505283,126483 -k1,17114:9299016,14983545:195570 -k1,17114:11627129,14983545:195571 -k1,17114:13351654,14983545:195570 -k1,17114:18067898,14983545:195570 -k1,17114:18879507,14983545:195571 -k1,17114:20826854,14983545:195570 -k1,17114:22719806,14983545:195570 -k1,17114:23686080,14983545:195571 -k1,17114:27090948,14983545:195570 -k1,17114:28641803,14983545:195570 -k1,17114:29453412,14983545:195571 -k1,17114:31038345,14983545:195570 -k1,17115:32583029,14983545:0 -) -(1,17115:6630773,15825033:25952256,513147,126483 -k1,17114:8030997,15825033:177322 -k1,17114:8739815,15825033:177321 -k1,17114:9568565,15825033:177322 -k1,17114:11818791,15825033:177322 -k1,17114:13015197,15825033:177321 -k1,17114:14581882,15825033:177322 -k1,17114:15706854,15825033:177321 -k1,17114:19522079,15825033:177322 -k1,17114:20350829,15825033:177322 -k1,17114:20884010,15825033:177321 -k1,17114:24518356,15825033:177322 -k1,17114:25311716,15825033:177322 -k1,17114:28155042,15825033:177321 -k1,17114:28983792,15825033:177322 -k1,17114:32583029,15825033:0 -) -(1,17115:6630773,16666521:25952256,513147,126483 -g1,17114:7489294,16666521 -g1,17114:8707608,16666521 -g1,17114:11080011,16666521 -g1,17114:11938532,16666521 -g1,17114:13156846,16666521 -k1,17115:32583029,16666521:16697919 -g1,17115:32583029,16666521 -) -(1,17117:6630773,17508009:25952256,505283,126483 -h1,17116:6630773,17508009:983040,0,0 -k1,17116:9876553,17508009:324840 -k1,17116:12729117,17508009:324840 -k1,17116:15084917,17508009:324839 -k1,17116:16061185,17508009:324840 -k1,17116:17775388,17508009:324840 -k1,17116:20539478,17508009:324840 -k1,17116:22055762,17508009:324839 -k1,17116:24888665,17508009:324840 -k1,17116:29951758,17508009:324840 -k1,17116:32583029,17508009:0 -) -(1,17117:6630773,18349497:25952256,513147,134348 -k1,17116:8816580,18349497:275433 -k1,17116:10193094,18349497:275509 -k1,17116:12212516,18349497:275509 -k1,17116:12946122,18349497:275509 -k1,17116:15851591,18349497:275509 -k1,17116:16778528,18349497:275509 -k1,17116:20172895,18349497:275509 -k1,17116:22044861,18349497:275509 -k1,17116:23714322,18349497:275510 -k1,17116:26915358,18349497:275509 -k1,17116:28761765,18349497:275509 -k1,17116:30426637,18349497:275509 -k1,17116:31966991,18349497:275509 -k1,17117:32583029,18349497:0 -) -(1,17117:6630773,19190985:25952256,513147,126483 -k1,17116:7488029,19190985:268743 -k1,17116:9218880,19190985:268743 -k1,17116:9902396,19190985:268673 -k1,17116:12009424,19190985:268743 -k1,17116:13044283,19190985:268743 -k1,17116:14702388,19190985:268742 -k1,17116:15587169,19190985:268743 -k1,17116:18487183,19190985:268743 -k1,17116:20839971,19190985:268743 -k1,17116:23753092,19190985:268743 -k1,17116:25836527,19190985:268743 -k1,17116:26756698,19190985:268743 -k1,17116:28044525,19190985:268742 -k1,17116:29582045,19190985:268743 -k1,17116:30510080,19190985:268743 -k1,17116:32168186,19190985:268743 -k1,17117:32583029,19190985:0 -) -(1,17117:6630773,20032473:25952256,513147,134348 -k1,17116:9873213,20032473:216643 -k1,17116:11194138,20032473:216643 -k1,17116:13821852,20032473:216644 -k1,17116:15021535,20032473:216643 -k1,17116:16280200,20032473:216643 -k1,17116:17886206,20032473:216643 -k1,17116:19367695,20032473:216644 -k1,17116:21155236,20032473:216643 -k1,17116:23732486,20032473:216643 -k1,17116:25015400,20032473:216643 -k1,17116:25883471,20032473:216643 -k1,17116:26787588,20032473:216644 -k1,17116:27620269,20032473:216643 -k1,17116:30913172,20032473:216643 -k1,17116:32583029,20032473:0 -) -(1,17117:6630773,20873961:25952256,513147,134348 -k1,17116:7993921,20873961:206438 -k1,17116:9304642,20873961:206439 -k1,17116:10603565,20873961:206438 -k1,17116:13536302,20873961:206439 -k1,17116:16145290,20873961:206438 -k1,17116:17011021,20873961:206439 -k1,17116:18606822,20873961:206438 -k1,17116:20380881,20873961:206438 -k1,17116:21634585,20873961:206439 -k1,17116:23328035,20873961:206438 -k1,17116:24217359,20873961:206439 -k1,17116:25991418,20873961:206438 -k1,17116:29351449,20873961:206439 -k1,17116:31923737,20873961:206438 -k1,17117:32583029,20873961:0 -) -(1,17117:6630773,21715449:25952256,473825,0 -k1,17117:32583030,21715449:25363744 -g1,17117:32583030,21715449 -) -(1,17119:6630773,22556937:25952256,513147,134348 -h1,17118:6630773,22556937:983040,0,0 -k1,17118:9483340,22556937:152484 -k1,17118:13365479,22556937:152485 -k1,17118:13932759,22556937:152437 -k1,17118:16995698,22556937:152485 -k1,17118:19674595,22556937:152484 -k1,17118:22008773,22556937:152484 -k1,17118:22820550,22556937:152485 -k1,17118:24362397,22556937:152484 -k1,17118:26326296,22556937:152484 -k1,17118:27094818,22556937:152484 -k1,17118:28266388,22556937:152485 -k1,17118:30072345,22556937:152484 -k1,17118:32583029,22556937:0 -) -(1,17119:6630773,23398425:25952256,513147,134348 -k1,17118:9150763,23398425:185598 -k1,17118:12630856,23398425:185598 -k1,17118:13577981,23398425:185597 -k1,17118:15197507,23398425:185598 -k1,17118:15971618,23398425:185598 -k1,17118:17229385,23398425:185598 -k1,17118:19150376,23398425:185598 -k1,17118:22098316,23398425:185597 -k1,17118:26564726,23398425:185598 -k1,17118:29385527,23398425:185598 -k1,17118:32583029,23398425:0 -) -(1,17119:6630773,24239913:25952256,513147,126483 -k1,17118:8216442,24239913:191063 -k1,17118:9066797,24239913:191063 -k1,17118:10350346,24239913:191064 -k1,17118:11732854,24239913:191063 -k1,17118:16173271,24239913:191063 -k1,17118:19484503,24239913:191063 -k1,17118:20291605,24239913:191064 -k1,17118:21916596,24239913:191063 -k1,17118:22522494,24239913:191055 -k1,17118:24153383,24239913:191063 -k1,17118:24995875,24239913:191064 -k1,17118:28176690,24239913:191063 -k1,17118:31391584,24239913:191063 -k1,17118:32583029,24239913:0 -) -(1,17119:6630773,25081401:25952256,513147,134348 -k1,17118:10161635,25081401:221949 -k1,17118:11951204,25081401:221948 -k1,17118:13562516,25081401:221949 -k1,17118:17192336,25081401:221948 -k1,17118:19103803,25081401:221949 -k1,17118:21017891,25081401:221948 -k1,17118:24969494,25081401:221949 -k1,17118:28101896,25081401:221948 -k1,17118:31313597,25081401:221949 -k1,17119:32583029,25081401:0 -) -(1,17119:6630773,25922889:25952256,513147,134348 -k1,17118:10006592,25922889:182905 -k1,17118:12006154,25922889:182904 -k1,17118:15918713,25922889:182905 -k1,17118:19012072,25922889:182905 -k1,17118:20910710,25922889:182905 -k1,17118:21551711,25922889:182904 -k1,17118:24364576,25922889:182905 -k1,17118:25198909,25922889:182905 -k1,17118:27563508,25922889:182905 -k1,17118:28937857,25922889:182904 -k1,17118:31193666,25922889:182905 -k1,17118:32583029,25922889:0 -) -(1,17119:6630773,26764377:25952256,513147,126483 -k1,17118:8903565,26764377:234622 -k1,17118:9754224,26764377:234621 -k1,17118:10971886,26764377:234622 -k1,17118:13717191,26764377:234621 -k1,17118:15018084,26764377:234622 -k1,17118:18547200,26764377:234621 -k1,17118:19543350,26764377:234622 -k1,17118:21211900,26764377:234622 -k1,17118:21861329,26764377:234586 -k1,17118:25295418,26764377:234621 -k1,17118:27247083,26764377:234622 -k1,17118:28140996,26764377:234621 -k1,17118:30072345,26764377:234622 -k1,17118:32583029,26764377:0 -) -(1,17119:6630773,27605865:25952256,513147,134348 -k1,17118:7828509,27605865:206176 -k1,17118:11905241,27605865:206176 -k1,17118:14508725,27605865:206177 -k1,17118:16404419,27605865:206176 -k1,17118:18642866,27605865:206176 -k1,17118:19840602,27605865:206176 -k1,17118:20662816,27605865:206176 -k1,17118:24522625,27605865:206177 -k1,17118:25994957,27605865:206176 -k1,17118:29066367,27605865:206176 -k1,17118:32583029,27605865:0 -) -(1,17119:6630773,28447353:25952256,513147,134348 -k1,17118:8661078,28447353:182190 -k1,17118:11970646,28447353:182190 -k1,17118:12812129,28447353:182191 -k1,17118:14383682,28447353:182190 -k1,17118:15830717,28447353:182190 -k1,17118:17580528,28447353:182190 -k1,17118:19738628,28447353:182190 -k1,17118:23721906,28447353:182190 -k1,17118:24895657,28447353:182191 -k1,17118:28163937,28447353:182190 -k1,17118:29631943,28447353:182190 -k1,17119:32583029,28447353:0 -k1,17119:32583029,28447353:0 -) -(1,17120:6630773,31254921:25952256,32768,229376 -(1,17120:6630773,31254921:0,32768,229376 -(1,17120:6630773,31254921:5505024,32768,229376 -r1,17156:12135797,31254921:5505024,262144,229376 -) -k1,17120:6630773,31254921:-5505024 -) -(1,17120:6630773,31254921:25952256,32768,0 -r1,17156:32583029,31254921:25952256,32768,0 -) -) -(1,17120:6630773,32859249:25952256,606339,161218 -(1,17120:6630773,32859249:1974731,582746,14155 -g1,17120:6630773,32859249 -g1,17120:8605504,32859249 -) -g1,17120:12473177,32859249 -g1,17120:14599689,32859249 -g1,17120:15614973,32859249 -g1,17120:17348269,32859249 -k1,17120:32583029,32859249:12233735 -g1,17120:32583029,32859249 -) -v1,17123:6630773,34442931:0,393216,0 -(1,17127:6630773,34758027:25952256,708312,196608 -g1,17127:6630773,34758027 -g1,17127:6630773,34758027 -g1,17127:6434165,34758027 -(1,17127:6434165,34758027:0,708312,196608 -r1,17156:32779637,34758027:26345472,904920,196608 -k1,17127:6434165,34758027:-26345472 -) -(1,17127:6434165,34758027:26345472,708312,196608 -[1,17127:6630773,34758027:25952256,511704,0 -(1,17125:6630773,34650549:25952256,404226,107478 -(1,17124:6630773,34650549:0,0,0 -g1,17124:6630773,34650549 -g1,17124:6630773,34650549 -g1,17124:6303093,34650549 -(1,17124:6303093,34650549:0,0,0 -) -g1,17124:6630773,34650549 -) -k1,17125:6630773,34650549:0 -h1,17125:19908891,34650549:0,0,0 -k1,17125:32583029,34650549:12674138 -g1,17125:32583029,34650549 -) -] -) -g1,17127:32583029,34758027 -g1,17127:6630773,34758027 -g1,17127:6630773,34758027 -g1,17127:32583029,34758027 -g1,17127:32583029,34758027 -) -h1,17127:6630773,34954635:0,0,0 -(1,17131:6630773,36320411:25952256,513147,126483 -h1,17130:6630773,36320411:983040,0,0 -k1,17130:8614266,36320411:171423 -k1,17130:9903734,36320411:171424 -k1,17130:11094242,36320411:171423 -k1,17130:14257384,36320411:171423 -k1,17130:17187217,36320411:171423 -k1,17130:17974679,36320411:171424 -k1,17130:19349343,36320411:171423 -k1,17130:22112060,36320411:171423 -k1,17130:23453957,36320411:171424 -k1,17130:25155646,36320411:171423 -k1,17130:26633202,36320411:171423 -k1,17130:27456053,36320411:171423 -k1,17130:29003733,36320411:171424 -k1,17130:30867296,36320411:171423 -k1,17131:32583029,36320411:0 -) -(1,17131:6630773,37161899:25952256,513147,134348 -k1,17130:8257991,37161899:219505 -k1,17130:10045116,37161899:219504 -k1,17130:11283706,37161899:219505 -k1,17130:13603639,37161899:219504 -k1,17130:15055221,37161899:219505 -k1,17130:17553412,37161899:219504 -h1,17130:18524000,37161899:0,0,0 -k1,17130:18743505,37161899:219505 -k1,17130:19772379,37161899:219504 -k1,17130:21490037,37161899:219505 -h1,17130:22685414,37161899:0,0,0 -k1,17130:22904918,37161899:219504 -k1,17130:24072074,37161899:219505 -k1,17130:26409046,37161899:219504 -k1,17130:27437921,37161899:219505 -k1,17130:28676510,37161899:219504 -k1,17130:29988500,37161899:219505 -k1,17130:30867296,37161899:219504 -k1,17131:32583029,37161899:0 -) -(1,17131:6630773,38003387:25952256,505283,134348 -k1,17131:32583029,38003387:24163778 -g1,17131:32583029,38003387 -) -v1,17133:6630773,39193853:0,393216,0 -(1,17156:6630773,45498260:25952256,6697623,196608 -g1,17156:6630773,45498260 -g1,17156:6630773,45498260 -g1,17156:6434165,45498260 -(1,17156:6434165,45498260:0,6697623,196608 -r1,17156:32779637,45498260:26345472,6894231,196608 -k1,17156:6434165,45498260:-26345472 -) -(1,17156:6434165,45498260:26345472,6697623,196608 -[1,17156:6630773,45498260:25952256,6501015,0 -(1,17135:6630773,39401471:25952256,404226,101187 -(1,17134:6630773,39401471:0,0,0 -g1,17134:6630773,39401471 -g1,17134:6630773,39401471 -g1,17134:6303093,39401471 -(1,17134:6303093,39401471:0,0,0 -) -g1,17134:6630773,39401471 -) -k1,17135:6630773,39401471:0 -h1,17135:12637541,39401471:0,0,0 -k1,17135:32583029,39401471:19945488 -g1,17135:32583029,39401471 -) -(1,17136:6630773,40067649:25952256,404226,101187 -h1,17136:6630773,40067649:0,0,0 -k1,17136:6630773,40067649:0 -h1,17136:11372958,40067649:0,0,0 -k1,17136:32583030,40067649:21210072 -g1,17136:32583030,40067649 -) -(1,17137:6630773,40733827:25952256,404226,101187 -h1,17137:6630773,40733827:0,0,0 -k1,17137:6630773,40733827:0 -h1,17137:11056813,40733827:0,0,0 -k1,17137:32583029,40733827:21526216 -g1,17137:32583029,40733827 -) -(1,17138:6630773,41400005:25952256,404226,101187 -h1,17138:6630773,41400005:0,0,0 -k1,17138:6630773,41400005:0 -h1,17138:11056813,41400005:0,0,0 -k1,17138:32583029,41400005:21526216 -g1,17138:32583029,41400005 -) -(1,17139:6630773,42066183:25952256,404226,107478 -h1,17139:6630773,42066183:0,0,0 -k1,17139:6630773,42066183:0 -h1,17139:11689104,42066183:0,0,0 -k1,17139:32583028,42066183:20893924 -g1,17139:32583028,42066183 -) -(1,17140:6630773,42732361:25952256,404226,101187 -h1,17140:6630773,42732361:0,0,0 -k1,17140:6630773,42732361:0 -h1,17140:11056813,42732361:0,0,0 -k1,17140:32583029,42732361:21526216 -g1,17140:32583029,42732361 -) -(1,17141:6630773,43398539:25952256,404226,101187 -h1,17141:6630773,43398539:0,0,0 -k1,17141:6630773,43398539:0 -h1,17141:11056813,43398539:0,0,0 -k1,17141:32583029,43398539:21526216 -g1,17141:32583029,43398539 -) -(1,17142:6630773,44064717:25952256,404226,101187 -h1,17142:6630773,44064717:0,0,0 -k1,17142:6630773,44064717:0 -h1,17142:11056813,44064717:0,0,0 -k1,17142:32583029,44064717:21526216 -g1,17142:32583029,44064717 -) -(1,17143:6630773,44730895:25952256,404226,101187 -h1,17143:6630773,44730895:0,0,0 -k1,17143:6630773,44730895:0 -h1,17143:11372958,44730895:0,0,0 -k1,17143:32583030,44730895:21210072 -g1,17143:32583030,44730895 -) -(1,17144:6630773,45397073:25952256,404226,101187 -h1,17144:6630773,45397073:0,0,0 -k1,17144:6630773,45397073:0 -h1,17144:10740667,45397073:0,0,0 -k1,17144:32583029,45397073:21842362 -g1,17144:32583029,45397073 -) -] -) -g1,17156:32583029,45498260 -g1,17156:6630773,45498260 -g1,17156:6630773,45498260 -g1,17156:32583029,45498260 -g1,17156:32583029,45498260 -) -] -(1,17156:32583029,45706769:0,0,0 -g1,17156:32583029,45706769 -) -) -] -(1,17156:6630773,47279633:25952256,0,0 -h1,17156:6630773,47279633:25952256,0,0 -) -] -(1,17156:4262630,4025873:0,0,0 -[1,17156:-473656,4025873:0,0,0 -(1,17156:-473656,-710413:0,0,0 -(1,17156:-473656,-710413:0,0,0 -g1,17156:-473656,-710413 -) -g1,17156:-473656,-710413 -) -] -) -] -!21017 -}337 -Input:2786:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!104 -{338 -[1,17197:4262630,47279633:28320399,43253760,0 -(1,17197:4262630,4025873:0,0,0 -[1,17197:-473656,4025873:0,0,0 -(1,17197:-473656,-710413:0,0,0 -(1,17197:-473656,-644877:0,0,0 -k1,17197:-473656,-644877:-65536 -) -(1,17197:-473656,4736287:0,0,0 -k1,17197:-473656,4736287:5209943 -) -g1,17197:-473656,-710413 -) -] -) -[1,17197:6630773,47279633:25952256,43253760,0 -[1,17197:6630773,4812305:25952256,786432,0 -(1,17197:6630773,4812305:25952256,505283,126483 -(1,17197:6630773,4812305:25952256,505283,126483 -g1,17197:3078558,4812305 -[1,17197:3078558,4812305:0,0,0 -(1,17197:3078558,2439708:0,1703936,0 -k1,17197:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,17197:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,17197:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 -) -] -) -) -) -] -[1,17197:3078558,4812305:0,0,0 -(1,17197:3078558,2439708:0,1703936,0 -g1,17197:29030814,2439708 -g1,17197:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,17197:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 -) -] -) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,17197:37855564,2439708:1179648,16384,0 -) -) -k1,17197:3078556,2439708:-34777008 -) -] -[1,17197:3078558,4812305:0,0,0 -(1,17197:3078558,49800853:0,16384,2228224 -k1,17197:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,17197:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,17197:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 -) -] -) -) -) -] -[1,17197:3078558,4812305:0,0,0 -(1,17197:3078558,49800853:0,16384,2228224 -g1,17197:29030814,49800853 -g1,17197:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,17197:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 -) -] -) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,17197:37855564,49800853:1179648,16384,0 -) -) -k1,17197:3078556,49800853:-34777008 -) -] -g1,17197:6630773,4812305 -g1,17197:6630773,4812305 -g1,17197:7909380,4812305 -g1,17197:10167095,4812305 -g1,17197:11576774,4812305 -g1,17197:15078362,4812305 -k1,17197:31387652,4812305:16309290 -) -) -] -[1,17197:6630773,45706769:25952256,40108032,0 -(1,17197:6630773,45706769:25952256,40108032,0 -(1,17197:6630773,45706769:0,0,0 -g1,17197:6630773,45706769 -) -[1,17197:6630773,45706769:25952256,40108032,0 -v1,17156:6630773,6254097:0,393216,0 -(1,17156:6630773,12564795:25952256,6703914,196608 -g1,17156:6630773,12564795 -g1,17156:6630773,12564795 -g1,17156:6434165,12564795 -(1,17156:6434165,12564795:0,6703914,196608 -r1,17197:32779637,12564795:26345472,6900522,196608 -k1,17156:6434165,12564795:-26345472 -) -(1,17156:6434165,12564795:26345472,6703914,196608 -[1,17156:6630773,12564795:25952256,6507306,0 -(1,17145:6630773,6461715:25952256,404226,101187 -h1,17145:6630773,6461715:0,0,0 -k1,17145:6630773,6461715:0 -h1,17145:11689104,6461715:0,0,0 -k1,17145:32583028,6461715:20893924 -g1,17145:32583028,6461715 -) -(1,17146:6630773,7127893:25952256,410518,101187 -h1,17146:6630773,7127893:0,0,0 -k1,17146:6630773,7127893:0 -h1,17146:12005250,7127893:0,0,0 -k1,17146:32583030,7127893:20577780 -g1,17146:32583030,7127893 -) -(1,17147:6630773,7794071:25952256,410518,107478 -h1,17147:6630773,7794071:0,0,0 -k1,17147:6630773,7794071:0 -h1,17147:11689104,7794071:0,0,0 -k1,17147:32583028,7794071:20893924 -g1,17147:32583028,7794071 -) -(1,17148:6630773,8460249:25952256,404226,101187 -h1,17148:6630773,8460249:0,0,0 -k1,17148:6630773,8460249:0 -h1,17148:11056813,8460249:0,0,0 -k1,17148:32583029,8460249:21526216 -g1,17148:32583029,8460249 -) -(1,17149:6630773,9126427:25952256,404226,101187 -h1,17149:6630773,9126427:0,0,0 -k1,17149:6630773,9126427:0 -h1,17149:10740667,9126427:0,0,0 -k1,17149:32583029,9126427:21842362 -g1,17149:32583029,9126427 -) -(1,17150:6630773,9792605:25952256,404226,101187 -h1,17150:6630773,9792605:0,0,0 -k1,17150:6630773,9792605:0 -h1,17150:10424521,9792605:0,0,0 -k1,17150:32583029,9792605:22158508 -g1,17150:32583029,9792605 -) -(1,17151:6630773,10458783:25952256,410518,101187 -h1,17151:6630773,10458783:0,0,0 -k1,17151:6630773,10458783:0 -h1,17151:11056813,10458783:0,0,0 -k1,17151:32583029,10458783:21526216 -g1,17151:32583029,10458783 -) -(1,17152:6630773,11124961:25952256,404226,101187 -h1,17152:6630773,11124961:0,0,0 -k1,17152:6630773,11124961:0 -h1,17152:11372958,11124961:0,0,0 -k1,17152:32583030,11124961:21210072 -g1,17152:32583030,11124961 -) -(1,17153:6630773,11791139:25952256,404226,101187 -h1,17153:6630773,11791139:0,0,0 -k1,17153:6630773,11791139:0 -h1,17153:12321395,11791139:0,0,0 -k1,17153:32583029,11791139:20261634 -g1,17153:32583029,11791139 -) -(1,17154:6630773,12457317:25952256,404226,107478 -h1,17154:6630773,12457317:0,0,0 -k1,17154:6630773,12457317:0 -h1,17154:12005250,12457317:0,0,0 -k1,17154:32583030,12457317:20577780 -g1,17154:32583030,12457317 -) -] -) -g1,17156:32583029,12564795 -g1,17156:6630773,12564795 -g1,17156:6630773,12564795 -g1,17156:32583029,12564795 -g1,17156:32583029,12564795 -) -h1,17156:6630773,12761403:0,0,0 -v1,17160:6630773,14651467:0,393216,0 -(1,17189:6630773,30421259:25952256,16163008,616038 -g1,17189:6630773,30421259 -(1,17189:6630773,30421259:25952256,16163008,616038 -(1,17189:6630773,31037297:25952256,16779046,0 -[1,17189:6630773,31037297:25952256,16779046,0 -(1,17189:6630773,31011083:25952256,16726618,0 -r1,17197:6656987,31011083:26214,16726618,0 -[1,17189:6656987,31011083:25899828,16726618,0 -(1,17189:6656987,30421259:25899828,15546970,0 -[1,17189:7246811,30421259:24720180,15546970,0 -(1,17162:7246811,15896635:24720180,1022346,134348 -k1,17160:8744466,15896635:242142 -k1,17160:10703652,15896635:242143 -k1,17160:12335157,15896635:242142 -k1,17160:13842145,15896635:242143 -k1,17160:15597513,15896635:242142 -k1,17160:16455694,15896635:242143 -k1,17160:17901077,15896635:242142 -k1,17160:19334665,15896635:242143 -k1,17160:21278777,15896635:242142 -k1,17160:24268845,15896635:242143 -k1,17160:25502547,15896635:242142 -k1,17160:28528659,15896635:242143 -k1,17160:29386839,15896635:242142 -k1,17160:31966991,15896635:0 -) -(1,17162:7246811,16738123:24720180,513147,134348 -k1,17160:11394334,16738123:167523 -k1,17160:12189691,16738123:167522 -k1,17160:15023219,16738123:167523 -k1,17160:15842170,16738123:167523 -k1,17160:17028777,16738123:167522 -k1,17161:17641257,16738123:167491 -k1,17161:19198143,16738123:167523 -k1,17161:21829164,16738123:167523 -k1,17161:22865038,16738123:167522 -k1,17161:25462636,16738123:167523 -k1,17161:26943501,16738123:167523 -k1,17161:28922438,16738123:167522 -k1,17161:29705999,16738123:167523 -k1,17162:31966991,16738123:0 -) -(1,17162:7246811,17579611:24720180,513147,126483 -k1,17161:10164240,17579611:233074 -k1,17161:12282785,17579611:233074 -k1,17161:13384211,17579611:233074 -k1,17161:15130511,17579611:233074 -k1,17161:15979623,17579611:233074 -k1,17161:19204416,17579611:233074 -k1,17161:20246859,17579611:233073 -k1,17161:21810314,17579611:233074 -k1,17161:22694816,17579611:233074 -k1,17161:25109584,17579611:233074 -k1,17161:26905692,17579611:233074 -k1,17161:28335453,17579611:233074 -k1,17161:29881869,17579611:233074 -k1,17161:31219225,17579611:233074 -k1,17161:31966991,17579611:0 -) -(1,17162:7246811,18421099:24720180,513147,126483 -k1,17161:9305953,18421099:203162 -k1,17161:10921416,18421099:203162 -k1,17161:12692199,18421099:203162 -k1,17161:13914445,18421099:203161 -k1,17161:14532446,18421099:203158 -k1,17161:17009707,18421099:203162 -k1,17161:17895754,18421099:203162 -k1,17161:19666537,18421099:203162 -k1,17161:20225559,18421099:203162 -k1,17161:21938671,18421099:203162 -k1,17161:22757871,18421099:203162 -k1,17161:23316893,18421099:203162 -k1,17161:25014275,18421099:203161 -k1,17161:27311968,18421099:203162 -k1,17161:28142965,18421099:203162 -k1,17161:29549368,18421099:203162 -k1,17161:31966991,18421099:0 -) -(1,17162:7246811,19262587:24720180,513147,134348 -k1,17161:8388094,19262587:272931 -k1,17161:11059643,19262587:272931 -k1,17161:12351659,19262587:272931 -k1,17161:14005433,19262587:272930 -k1,17161:15379369,19262587:272931 -k1,17161:17770424,19262587:272931 -k1,17161:19062440,19262587:272931 -k1,17161:21256231,19262587:272931 -(1,17161:21256231,19262587:0,452978,115847 -r1,17197:24428191,19262587:3171960,568825,115847 -k1,17161:21256231,19262587:-3171960 -) -(1,17161:21256231,19262587:3171960,452978,115847 -k1,17161:21256231,19262587:3277 -h1,17161:24424914,19262587:0,411205,112570 -) -k1,17161:24701122,19262587:272931 -k1,17161:26541673,19262587:272930 -k1,17161:27833689,19262587:272931 -k1,17161:30686772,19262587:272931 -k1,17161:31611131,19262587:272931 -k1,17161:31966991,19262587:0 -) -(1,17162:7246811,20104075:24720180,513147,134348 -g1,17161:10032746,20104075 -k1,17162:31966991,20104075:19839714 -g1,17162:31966991,20104075 -) -(1,17164:7246811,20945563:24720180,513147,134348 -h1,17163:7246811,20945563:983040,0,0 -g1,17163:10060926,20945563 -g1,17163:11279240,20945563 -g1,17163:12791811,20945563 -k1,17164:31966991,20945563:17266116 -g1,17164:31966991,20945563 -) -v1,17166:7246811,22136029:0,393216,0 -(1,17174:7246811,23823852:24720180,2081039,196608 -g1,17174:7246811,23823852 -g1,17174:7246811,23823852 -g1,17174:7050203,23823852 -(1,17174:7050203,23823852:0,2081039,196608 -r1,17197:32163599,23823852:25113396,2277647,196608 -k1,17174:7050203,23823852:-25113396 -) -(1,17174:7050203,23823852:25113396,2081039,196608 -[1,17174:7246811,23823852:24720180,1884431,0 -(1,17168:7246811,22349939:24720180,410518,107478 -(1,17167:7246811,22349939:0,0,0 -g1,17167:7246811,22349939 -g1,17167:7246811,22349939 -g1,17167:6919131,22349939 -(1,17167:6919131,22349939:0,0,0 -) -g1,17167:7246811,22349939 -) -g1,17168:10092122,22349939 -g1,17168:11040560,22349939 -g1,17168:18311911,22349939 -g1,17168:20841077,22349939 -g1,17168:21473369,22349939 -h1,17168:25583263,22349939:0,0,0 -k1,17168:31966991,22349939:6383728 -g1,17168:31966991,22349939 -) -(1,17169:7246811,23016117:24720180,410518,107478 -h1,17169:7246811,23016117:0,0,0 -g1,17169:13569725,23016117 -g1,17169:15150454,23016117 -g1,17169:18311911,23016117 -g1,17169:18944203,23016117 -g1,17169:20841078,23016117 -g1,17169:24002535,23016117 -g1,17169:24634827,23016117 -h1,17169:26215556,23016117:0,0,0 -k1,17169:31966991,23016117:5751435 -g1,17169:31966991,23016117 -) -(1,17173:7246811,23747831:24720180,404226,76021 -(1,17171:7246811,23747831:0,0,0 -g1,17171:7246811,23747831 -g1,17171:7246811,23747831 -g1,17171:6919131,23747831 -(1,17171:6919131,23747831:0,0,0 -) -g1,17171:7246811,23747831 -) -g1,17173:8195248,23747831 -g1,17173:9459831,23747831 -h1,17173:10724414,23747831:0,0,0 -k1,17173:31966990,23747831:21242576 -g1,17173:31966990,23747831 -) -] -) -g1,17174:31966991,23823852 -g1,17174:7246811,23823852 -g1,17174:7246811,23823852 -g1,17174:31966991,23823852 -g1,17174:31966991,23823852 -) -h1,17174:7246811,24020460:0,0,0 -(1,17178:7246811,25386236:24720180,513147,102891 -h1,17177:7246811,25386236:983040,0,0 -k1,17177:9476951,25386236:293551 -k1,17177:11056318,25386236:293551 -k1,17177:13065602,25386236:293551 -k1,17177:14739996,25386236:293550 -k1,17177:16052632,25386236:293551 -k1,17177:18267043,25386236:293551 -k1,17177:20073820,25386236:293551 -k1,17177:21018799,25386236:293551 -k1,17177:22703024,25386236:293551 -k1,17177:24385937,25386236:293550 -k1,17177:26091789,25386236:293551 -k1,17177:27952961,25386236:293551 -k1,17177:29265597,25386236:293551 -k1,17177:31966991,25386236:0 -) -(1,17178:7246811,26227724:24720180,473825,7863 -k1,17178:31966991,26227724:22715434 -g1,17178:31966991,26227724 -) -v1,17180:7246811,27418190:0,393216,0 -(1,17187:7246811,29700363:24720180,2675389,196608 -g1,17187:7246811,29700363 -g1,17187:7246811,29700363 -g1,17187:7050203,29700363 -(1,17187:7050203,29700363:0,2675389,196608 -r1,17197:32163599,29700363:25113396,2871997,196608 -k1,17187:7050203,29700363:-25113396 -) -(1,17187:7050203,29700363:25113396,2675389,196608 -[1,17187:7246811,29700363:24720180,2478781,0 -(1,17182:7246811,27625808:24720180,404226,101187 -(1,17181:7246811,27625808:0,0,0 -g1,17181:7246811,27625808 -g1,17181:7246811,27625808 -g1,17181:6919131,27625808 -(1,17181:6919131,27625808:0,0,0 -) -g1,17181:7246811,27625808 -) -g1,17182:10408268,27625808 -g1,17182:11040560,27625808 -h1,17182:13569725,27625808:0,0,0 -k1,17182:31966991,27625808:18397266 -g1,17182:31966991,27625808 -) -(1,17183:7246811,28291986:24720180,410518,101187 -h1,17183:7246811,28291986:0,0,0 -g1,17183:8195248,28291986 -g1,17183:16098891,28291986 -h1,17183:16415037,28291986:0,0,0 -k1,17183:31966991,28291986:15551954 -g1,17183:31966991,28291986 -) -(1,17184:7246811,28958164:24720180,404226,101187 -h1,17184:7246811,28958164:0,0,0 -g1,17184:7562957,28958164 -g1,17184:7879103,28958164 -k1,17184:7879103,28958164:0 -h1,17184:14518162,28958164:0,0,0 -k1,17184:31966990,28958164:17448828 -g1,17184:31966990,28958164 -) -(1,17185:7246811,29624342:24720180,404226,76021 -h1,17185:7246811,29624342:0,0,0 -h1,17185:7562957,29624342:0,0,0 -k1,17185:31966991,29624342:24404034 -g1,17185:31966991,29624342 -) -] -) -g1,17187:31966991,29700363 -g1,17187:7246811,29700363 -g1,17187:7246811,29700363 -g1,17187:31966991,29700363 -g1,17187:31966991,29700363 -) -h1,17187:7246811,29896971:0,0,0 -] -) -] -r1,17197:32583029,31011083:26214,16726618,0 -) -] -) -) -g1,17189:32583029,30421259 -) -h1,17189:6630773,31037297:0,0,0 -(1,17191:6630773,33844865:25952256,32768,229376 -(1,17191:6630773,33844865:0,32768,229376 -(1,17191:6630773,33844865:5505024,32768,229376 -r1,17197:12135797,33844865:5505024,262144,229376 -) -k1,17191:6630773,33844865:-5505024 -) -(1,17191:6630773,33844865:25952256,32768,0 -r1,17197:32583029,33844865:25952256,32768,0 -) -) -(1,17191:6630773,35449193:25952256,606339,151780 -(1,17191:6630773,35449193:1974731,582746,14155 -g1,17191:6630773,35449193 -g1,17191:8605504,35449193 -) -g1,17191:10263303,35449193 -g1,17191:13074798,35449193 -g1,17191:14784501,35449193 -k1,17191:32583029,35449193:13584825 -g1,17191:32583029,35449193 -) -(1,17195:6630773,36683897:25952256,513147,134348 -k1,17194:7727147,36683897:142825 -k1,17194:9358294,36683897:142824 -k1,17194:10895070,36683897:142825 -k1,17194:12056980,36683897:142825 -k1,17194:14580727,36683897:142824 -k1,17194:15382844,36683897:142825 -k1,17194:16839011,36683897:142825 -k1,17194:17667997,36683897:142824 -k1,17194:18268919,36683897:142825 -k1,17194:20521348,36683897:142825 -k1,17194:22053535,36683897:142824 -k1,17194:24575972,36683897:142825 -k1,17194:28438620,36683897:142825 -k1,17194:29240736,36683897:142824 -k1,17194:30402646,36683897:142825 -k1,17194:32583029,36683897:0 -) -(1,17195:6630773,37525385:25952256,513147,134348 -k1,17194:8336565,37525385:192566 -k1,17194:9476783,37525385:192567 -k1,17194:10457747,37525385:192566 -k1,17194:13725263,37525385:192567 -k1,17194:15114516,37525385:192566 -k1,17194:16898953,37525385:192567 -k1,17194:19936437,37525385:192566 -k1,17194:20660501,37525385:192567 -k1,17194:22137573,37525385:192566 -k1,17194:25092483,37525385:192567 -k1,17194:28339027,37525385:192566 -k1,17194:31107814,37525385:192567 -k1,17194:32583029,37525385:0 -) -(1,17195:6630773,38366873:25952256,513147,134348 -k1,17194:9648152,38366873:255036 -k1,17194:11489158,38366873:255035 -k1,17194:14910894,38366873:255036 -k1,17194:16185015,38366873:255036 -k1,17194:18524095,38366873:255035 -k1,17194:20292357,38366873:255036 -k1,17194:21495044,38366873:255036 -k1,17194:22733120,38366873:255036 -k1,17194:25056471,38366873:255035 -k1,17194:26502952,38366873:255036 -k1,17194:27741028,38366873:255036 -k1,17194:29948381,38366873:255035 -k1,17194:30831252,38366873:255036 -k1,17194:32583029,38366873:0 -) -(1,17195:6630773,39208361:25952256,513147,134348 -k1,17194:8776775,39208361:274949 -k1,17194:10197948,39208361:274948 -k1,17194:12170935,39208361:274949 -k1,17194:15807881,39208361:274949 -k1,17194:17472192,39208361:274948 -k1,17194:19060483,39208361:274949 -k1,17194:19951470,39208361:274949 -k1,17194:20582279,39208361:274949 -k1,17194:22833137,39208361:274948 -k1,17194:26565110,39208361:274949 -k1,17194:27708411,39208361:274949 -k1,17194:29513625,39208361:274948 -k1,17194:30440002,39208361:274949 -k1,17194:32583029,39208361:0 -) -(1,17195:6630773,40049849:25952256,513147,134348 -k1,17194:8121858,40049849:206579 -k1,17194:9311477,40049849:206579 -k1,17194:11586372,40049849:206579 -k1,17194:12784510,40049849:206578 -k1,17194:14531185,40049849:206579 -k1,17194:15353802,40049849:206579 -k1,17194:18231628,40049849:206579 -k1,17194:21492185,40049849:206579 -k1,17194:24274984,40049849:206579 -k1,17194:26264142,40049849:206579 -k1,17194:26948477,40049849:206578 -k1,17194:28174141,40049849:206579 -k1,17194:30211796,40049849:206579 -k1,17194:31931601,40049849:206579 -k1,17194:32583029,40049849:0 -) -(1,17195:6630773,40891337:25952256,513147,134348 -k1,17194:8789572,40891337:229419 -k1,17194:10038075,40891337:229418 -k1,17194:11580836,40891337:229419 -k1,17194:12341752,40891337:229419 -k1,17194:14176803,40891337:229419 -k1,17194:17245241,40891337:229418 -k1,17194:18126088,40891337:229419 -k1,17194:19103273,40891337:229419 -k1,17194:20197081,40891337:229388 -k1,17194:23261587,40891337:229419 -k1,17194:24359357,40891337:229418 -k1,17194:25874592,40891337:229419 -k1,17194:27634277,40891337:229419 -k1,17194:28515124,40891337:229419 -k1,17194:29492308,40891337:229418 -k1,17194:31931601,40891337:229419 -k1,17194:32583029,40891337:0 -) -(1,17195:6630773,41732825:25952256,513147,134348 -k1,17194:8614903,41732825:168127 -k1,17194:9802115,41732825:168127 -k1,17194:10834632,41732825:168097 -k1,17194:11950410,41732825:168127 -k1,17194:13101577,41732825:168127 -k1,17194:15338020,41732825:168127 -k1,17194:16697592,41732825:168127 -k1,17194:18644366,41732825:168127 -k1,17194:21272715,41732825:168127 -k1,17194:23799484,41732825:168128 -k1,17194:28037397,41732825:168127 -k1,17194:29014894,41732825:168127 -k1,17194:30202106,41732825:168127 -k1,17194:32583029,41732825:0 -) -(1,17195:6630773,42574313:25952256,505283,134348 -k1,17194:8448208,42574313:231464 -k1,17194:9362557,42574313:231464 -k1,17194:12377990,42574313:231464 -k1,17194:13473842,42574313:231432 -k1,17194:17368769,42574313:231464 -k1,17194:18981077,42574313:231464 -k1,17194:19744038,42574313:231464 -k1,17194:23083219,42574313:231464 -k1,17194:26523981,42574313:231464 -k1,17194:28453483,42574313:231464 -k1,17194:32168186,42574313:231464 -k1,17195:32583029,42574313:0 -) -(1,17195:6630773,43415801:25952256,505283,134348 -k1,17195:32583029,43415801:22868132 -g1,17195:32583029,43415801 -) -] -(1,17197:32583029,45706769:0,0,0 -g1,17197:32583029,45706769 -) -) -] -(1,17197:6630773,47279633:25952256,0,0 -h1,17197:6630773,47279633:25952256,0,0 -) -] -(1,17197:4262630,4025873:0,0,0 -[1,17197:-473656,4025873:0,0,0 -(1,17197:-473656,-710413:0,0,0 -(1,17197:-473656,-710413:0,0,0 -g1,17197:-473656,-710413 -) -g1,17197:-473656,-710413 -) -] -) -] -!19164 -}338 -Input:2787:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2788:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2789:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2790:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2791:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2792:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2793:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2794:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2795:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2796:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2797:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2798:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1116 -{339 -[1,17267:4262630,47279633:28320399,43253760,0 -(1,17267:4262630,4025873:0,0,0 -[1,17267:-473656,4025873:0,0,0 -(1,17267:-473656,-710413:0,0,0 -(1,17267:-473656,-644877:0,0,0 -k1,17267:-473656,-644877:-65536 -) -(1,17267:-473656,4736287:0,0,0 -k1,17267:-473656,4736287:5209943 -) -g1,17267:-473656,-710413 -) -] -) -[1,17267:6630773,47279633:25952256,43253760,0 -[1,17267:6630773,4812305:25952256,786432,0 -(1,17267:6630773,4812305:25952256,505283,126483 -(1,17267:6630773,4812305:25952256,505283,126483 -g1,17267:3078558,4812305 -[1,17267:3078558,4812305:0,0,0 -(1,17267:3078558,2439708:0,1703936,0 -k1,17267:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,17267:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,17267:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 -) -] -) -) -) -] -[1,17267:3078558,4812305:0,0,0 -(1,17267:3078558,2439708:0,1703936,0 -g1,17267:29030814,2439708 -g1,17267:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,17267:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 -) -] -) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,17267:37855564,2439708:1179648,16384,0 -) -) -k1,17267:3078556,2439708:-34777008 -) -] -[1,17267:3078558,4812305:0,0,0 -(1,17267:3078558,49800853:0,16384,2228224 -k1,17267:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,17267:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,17267:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 -) -] -) -) -) -] -[1,17267:3078558,4812305:0,0,0 -(1,17267:3078558,49800853:0,16384,2228224 -g1,17267:29030814,49800853 -g1,17267:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,17267:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 -) -] -) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,17267:37855564,49800853:1179648,16384,0 -) -) -k1,17267:3078556,49800853:-34777008 -) -] -g1,17267:6630773,4812305 -k1,17267:25146660,4812305:17320510 -g1,17267:26880087,4812305 -g1,17267:29193507,4812305 -g1,17267:30603186,4812305 -) -) -] -[1,17267:6630773,45706769:25952256,40108032,0 -(1,17267:6630773,45706769:25952256,40108032,0 -(1,17267:6630773,45706769:0,0,0 -g1,17267:6630773,45706769 -) -[1,17267:6630773,45706769:25952256,40108032,0 -v1,17197:6630773,6254097:0,393216,0 -(1,17199:6630773,10202766:25952256,4341885,616038 -g1,17199:6630773,10202766 -(1,17199:6630773,10202766:25952256,4341885,616038 -(1,17199:6630773,10818804:25952256,4957923,0 -[1,17199:6630773,10818804:25952256,4957923,0 -(1,17199:6630773,10792590:25952256,4905495,0 -r1,17267:6656987,10792590:26214,4905495,0 -[1,17199:6656987,10792590:25899828,4905495,0 -(1,17199:6656987,10202766:25899828,3725847,0 -[1,17199:7246811,10202766:24720180,3725847,0 -(1,17199:7246811,7562455:24720180,1085536,298548 -(1,17197:7246811,7562455:0,1085536,298548 -r1,17267:8753226,7562455:1506415,1384084,298548 -k1,17197:7246811,7562455:-1506415 -) -(1,17197:7246811,7562455:1506415,1085536,298548 -) -k1,17197:9015253,7562455:262027 -k1,17197:9015253,7562455:0 -k1,17198:10319302,7562455:262027 -k1,17198:13778175,7562455:262027 -k1,17198:17556209,7562455:262027 -k1,17198:18801276,7562455:262027 -k1,17198:21131619,7562455:262027 -k1,17198:23574029,7562455:262027 -k1,17198:25591110,7562455:262027 -k1,17198:28224885,7562455:262027 -k1,17198:31966991,7562455:0 -) -(1,17199:7246811,8403943:24720180,505283,126483 -k1,17198:10820013,8403943:268221 -k1,17198:12279679,8403943:268221 -k1,17198:14919648,8403943:268221 -k1,17198:15800631,8403943:268221 -k1,17198:17670552,8403943:268221 -k1,17198:19095482,8403943:268220 -k1,17198:20609542,8403943:268221 -k1,17198:21919785,8403943:268221 -k1,17198:23207091,8403943:268221 -k1,17198:25552803,8403943:268221 -k1,17198:28450984,8403943:268221 -k1,17198:31966991,8403943:0 -) -(1,17199:7246811,9245431:24720180,505283,134348 -k1,17198:11377086,9245431:219742 -k1,17198:13777212,9245431:219743 -k1,17198:14744720,9245431:219742 -k1,17198:17462040,9245431:219743 -k1,17198:19417175,9245431:219742 -k1,17198:21836305,9245431:219742 -k1,17198:24556902,9245431:219743 -k1,17198:25594533,9245431:219742 -k1,17198:26584979,9245431:219743 -k1,17198:29639808,9245431:219742 -k1,17198:31966991,9245431:0 -) -(1,17199:7246811,10086919:24720180,513147,115847 -g1,17198:8113196,10086919 -(1,17198:8113196,10086919:0,452978,115847 -r1,17267:13747140,10086919:5633944,568825,115847 -k1,17198:8113196,10086919:-5633944 -) -(1,17198:8113196,10086919:5633944,452978,115847 -g1,17198:9171609,10086919 -h1,17198:13743863,10086919:0,411205,112570 -) -g1,17198:14120039,10086919 -g1,17198:15411753,10086919 -(1,17198:15411753,10086919:0,452978,115847 -r1,17267:21045696,10086919:5633943,568825,115847 -k1,17198:15411753,10086919:-5633943 -) -(1,17198:15411753,10086919:5633943,452978,115847 -k1,17198:15411753,10086919:3277 -h1,17198:21042419,10086919:0,411205,112570 -) -k1,17199:31966991,10086919:10747625 -g1,17199:31966991,10086919 -) -] -) -] -r1,17267:32583029,10792590:26214,4905495,0 -) -] -) -) -g1,17199:32583029,10202766 -) -h1,17199:6630773,10818804:0,0,0 -(1,17202:6630773,12178956:25952256,513147,134348 -h1,17201:6630773,12178956:983040,0,0 -k1,17201:8174694,12178956:146038 -k1,17201:11081160,12178956:146090 -k1,17201:14253047,12178956:146090 -k1,17201:16284609,12178956:146091 -k1,17201:17818752,12178956:146090 -k1,17201:19358793,12178956:146090 -k1,17201:23020891,12178956:146091 -k1,17201:23928509,12178956:146090 -k1,17201:26101628,12178956:146090 -k1,17201:27266804,12178956:146091 -k1,17201:31923737,12178956:146090 -k1,17201:32583029,12178956:0 -) -(1,17202:6630773,13020444:25952256,513147,126483 -k1,17201:7840871,13020444:191013 -k1,17201:10794227,13020444:191013 -k1,17201:12179961,13020444:191013 -k1,17201:13938594,13020444:191012 -k1,17201:14544442,13020444:191005 -k1,17201:16405312,13020444:191013 -k1,17201:17224160,13020444:191013 -k1,17201:19576550,13020444:191013 -k1,17201:21464290,13020444:191013 -k1,17201:24681099,13020444:191012 -k1,17201:27052495,13020444:191013 -k1,17201:27991274,13020444:191013 -k1,17201:31195632,13020444:191013 -k1,17201:32583029,13020444:0 -) -(1,17202:6630773,13861932:25952256,505283,134348 -k1,17201:8748543,13861932:269655 -k1,17201:10117891,13861932:269654 -k1,17201:11038974,13861932:269655 -k1,17201:12172977,13861932:269583 -k1,17201:15932424,13861932:269655 -k1,17201:17478719,13861932:269654 -k1,17201:19483767,13861932:269655 -(1,17201:19483767,13861932:0,452978,115847 -r1,17267:21952304,13861932:2468537,568825,115847 -k1,17201:19483767,13861932:-2468537 -) -(1,17201:19483767,13861932:2468537,452978,115847 -k1,17201:19483767,13861932:3277 -h1,17201:21949027,13861932:0,411205,112570 -) -k1,17201:22221958,13861932:269654 -k1,17201:23174498,13861932:269655 -(1,17201:23174498,13861932:0,452978,115847 -r1,17267:25994747,13861932:2820249,568825,115847 -k1,17201:23174498,13861932:-2820249 -) -(1,17201:23174498,13861932:2820249,452978,115847 -k1,17201:23174498,13861932:3277 -h1,17201:25991470,13861932:0,411205,112570 -) -k1,17201:26471496,13861932:269655 -k1,17201:29779399,13861932:269654 -k1,17201:32583029,13861932:0 -) -(1,17202:6630773,14703420:25952256,513147,134348 -k1,17201:7700979,14703420:252317 -k1,17201:8972381,14703420:252317 -k1,17201:12335692,14703420:252317 -k1,17201:14886357,14703420:252317 -k1,17201:15790101,14703420:252316 -k1,17201:18246394,14703420:252317 -k1,17201:18854571,14703420:252317 -k1,17201:20089928,14703420:252317 -k1,17201:22080260,14703420:252317 -k1,17201:23900198,14703420:252317 -k1,17201:24508375,14703420:252317 -k1,17201:25743732,14703420:252317 -k1,17201:27444395,14703420:252317 -k1,17201:28228209,14703420:252317 -k1,17201:29344892,14703420:252263 -k1,17201:32168186,14703420:252317 -k1,17202:32583029,14703420:0 -) -(1,17202:6630773,15544908:25952256,513147,126483 -k1,17201:9627037,15544908:235888 -k1,17201:12888721,15544908:235887 -k1,17201:14618175,15544908:235888 -k1,17201:15540224,15544908:235887 -(1,17201:15540224,15544908:0,452978,115847 -r1,17267:19063896,15544908:3523672,568825,115847 -k1,17201:15540224,15544908:-3523672 -) -(1,17201:15540224,15544908:3523672,452978,115847 -k1,17201:15540224,15544908:3277 -h1,17201:19060619,15544908:0,411205,112570 -) -k1,17201:19473454,15544908:235888 -k1,17201:21717364,15544908:235887 -k1,17201:27010010,15544908:235888 -k1,17201:27777395,15544908:235888 -k1,17201:28877665,15544908:235850 -k1,17201:31510860,15544908:235888 -k1,17201:32583029,15544908:0 -) -(1,17202:6630773,16386396:25952256,513147,126483 -k1,17201:8440583,16386396:242189 -k1,17201:9701857,16386396:242189 -k1,17201:11243626,16386396:242190 -k1,17201:12152971,16386396:242189 -k1,17201:12809960,16386396:242146 -k1,17201:14548336,16386396:242189 -k1,17201:17013506,16386396:242189 -k1,17201:22910797,16386396:242189 -k1,17201:26178784,16386396:242190 -k1,17201:27805093,16386396:242189 -k1,17201:29066367,16386396:242189 -k1,17201:32583029,16386396:0 -) -(1,17202:6630773,17227884:25952256,513147,134348 -k1,17201:8962937,17227884:172753 -k1,17201:10330411,17227884:172753 -k1,17201:12070785,17227884:172753 -k1,17201:13262622,17227884:172752 -k1,17201:14816219,17227884:172753 -k1,17201:15656128,17227884:172753 -k1,17201:16417394,17227884:172753 -k1,17201:17786834,17227884:172753 -k1,17201:19930255,17227884:172753 -k1,17201:21971439,17227884:172753 -k1,17201:23248474,17227884:172753 -k1,17201:24168992,17227884:172752 -k1,17201:27180765,17227884:172753 -k1,17201:28004946,17227884:172753 -k1,17201:29774156,17227884:172753 -k1,17201:32583029,17227884:0 -) -(1,17202:6630773,18069372:25952256,513147,126483 -g1,17201:8716128,18069372 -g1,17201:10047164,18069372 -g1,17201:11110813,18069372 -g1,17201:12257693,18069372 -g1,17201:14342393,18069372 -g1,17201:14956465,18069372 -g1,17201:15687191,18069372 -k1,17202:32583029,18069372:13938198 -g1,17202:32583029,18069372 -) -v1,17204:6630773,19254214:0,393216,0 -(1,17211:6630773,20301025:25952256,1440027,196608 -g1,17211:6630773,20301025 -g1,17211:6630773,20301025 -g1,17211:6434165,20301025 -(1,17211:6434165,20301025:0,1440027,196608 -r1,17267:32779637,20301025:26345472,1636635,196608 -k1,17211:6434165,20301025:-26345472 -) -(1,17211:6434165,20301025:26345472,1440027,196608 -[1,17211:6630773,20301025:25952256,1243419,0 -(1,17206:6630773,19468124:25952256,410518,101187 -(1,17205:6630773,19468124:0,0,0 -g1,17205:6630773,19468124 -g1,17205:6630773,19468124 -g1,17205:6303093,19468124 -(1,17205:6303093,19468124:0,0,0 -) -g1,17205:6630773,19468124 -) -k1,17206:6630773,19468124:0 -k1,17206:6630773,19468124:0 -h1,17206:16431289,19468124:0,0,0 -k1,17206:32583029,19468124:16151740 -g1,17206:32583029,19468124 -) -(1,17210:6630773,20199838:25952256,410518,101187 -(1,17208:6630773,20199838:0,0,0 -g1,17208:6630773,20199838 -g1,17208:6630773,20199838 -g1,17208:6303093,20199838 -(1,17208:6303093,20199838:0,0,0 -) -g1,17208:6630773,20199838 -) -g1,17210:7579210,20199838 -g1,17210:8843793,20199838 -k1,17210:8843793,20199838:0 -h1,17210:12953687,20199838:0,0,0 -k1,17210:32583029,20199838:19629342 -g1,17210:32583029,20199838 -) -] -) -g1,17211:32583029,20301025 -g1,17211:6630773,20301025 -g1,17211:6630773,20301025 -g1,17211:32583029,20301025 -g1,17211:32583029,20301025 -) -h1,17211:6630773,20497633:0,0,0 -v1,17215:6630773,22376448:0,393216,0 -(1,17236:6630773,34586647:25952256,12603415,616038 -g1,17236:6630773,34586647 -(1,17236:6630773,34586647:25952256,12603415,616038 -(1,17236:6630773,35202685:25952256,13219453,0 -[1,17236:6630773,35202685:25952256,13219453,0 -(1,17236:6630773,35176471:25952256,13167025,0 -r1,17267:6656987,35176471:26214,13167025,0 -[1,17236:6656987,35176471:25899828,13167025,0 -(1,17236:6656987,34586647:25899828,11987377,0 -[1,17236:7246811,34586647:24720180,11987377,0 -(1,17219:7246811,23684806:24720180,1085536,298548 -(1,17215:7246811,23684806:0,1085536,298548 -r1,17267:8753226,23684806:1506415,1384084,298548 -k1,17215:7246811,23684806:-1506415 -) -(1,17215:7246811,23684806:1506415,1085536,298548 -) -k1,17215:9025392,23684806:272166 -k1,17215:9025392,23684806:0 -k1,17216:9297559,23684806:272167 -k1,17217:9297559,23684806:0 -k1,17218:11344440,23684806:272166 -k1,17218:12232645,23684806:272167 -k1,17218:13956433,23684806:272166 -k1,17218:15420045,23684806:272167 -k1,17218:17445299,23684806:272166 -k1,17218:19638326,23684806:272167 -k1,17218:22250127,23684806:272166 -k1,17218:23138332,23684806:272167 -k1,17218:24393538,23684806:272166 -k1,17218:26444352,23684806:272167 -k1,17218:27248015,23684806:272166 -k1,17218:29945014,23684806:272167 -k1,17218:31611131,23684806:272166 -k1,17218:31966991,23684806:0 -) -(1,17219:7246811,24526294:24720180,513147,102891 -k1,17218:10006175,24526294:225742 -k1,17218:11868351,24526294:225742 -k1,17218:15068771,24526294:225741 -h1,17218:15275865,24526294:0,0,0 -k1,17218:16277553,24526294:225742 -k1,17218:18389421,24526294:225742 -k1,17218:22555187,24526294:225742 -k1,17218:23239026,24526294:225742 -k1,17218:23996265,24526294:225742 -k1,17218:26646838,24526294:225741 -k1,17218:28266531,24526294:225742 -k1,17218:28848133,24526294:225742 -k1,17218:31966991,24526294:0 -) -(1,17219:7246811,25367782:24720180,505283,126483 -k1,17218:10445020,25367782:223530 -h1,17218:10652114,25367782:0,0,0 -k1,17218:11651590,25367782:223530 -k1,17218:14992668,25367782:223530 -h1,17218:15199762,25367782:0,0,0 -k1,17218:16025568,25367782:223530 -k1,17218:16780595,25367782:223530 -k1,17218:17774828,25367782:223530 -k1,17218:20133521,25367782:223530 -k1,17218:23331730,25367782:223530 -k1,17218:24171298,25367782:223530 -k1,17218:24809647,25367782:223506 -k1,17218:26224622,25367782:223530 -k1,17218:30038214,25367782:223530 -k1,17218:30947906,25367782:223530 -k1,17218:31966991,25367782:0 -) -(1,17219:7246811,26209270:24720180,513147,134348 -k1,17218:8950966,26209270:215832 -k1,17218:9826090,26209270:215832 -k1,17218:10812625,26209270:215832 -k1,17218:14353098,26209270:215832 -k1,17218:16763075,26209270:215832 -k1,17218:19918852,26209270:215832 -k1,17218:20793975,26209270:215831 -k1,17218:24314788,26209270:215832 -k1,17218:25762697,26209270:215832 -k1,17218:28257216,26209270:215832 -h1,17218:29227804,26209270:0,0,0 -k1,17218:29443636,26209270:215832 -k1,17218:30468838,26209270:215832 -k1,17218:31966991,26209270:0 -) -(1,17219:7246811,27050758:24720180,513147,126483 -h1,17218:8043729,27050758:0,0,0 -k1,17218:8696759,27050758:272266 -k1,17218:10658542,27050758:272265 -k1,17218:11546846,27050758:272266 -k1,17218:12233882,27050758:272193 -k1,17218:12862007,27050758:272265 -k1,17218:15667895,27050758:272266 -k1,17218:17576595,27050758:272266 -h1,17218:17783689,27050758:0,0,0 -k1,17218:18658230,27050758:272265 -k1,17218:20034778,27050758:272266 -k1,17218:21054810,27050758:272266 -k1,17218:22840301,27050758:272265 -k1,17218:24060218,27050758:272266 -k1,17218:25315524,27050758:272266 -k1,17218:27366437,27050758:272266 -k1,17218:29524828,27050758:272265 -k1,17218:30928901,27050758:272266 -k1,17218:31966991,27050758:0 -) -(1,17219:7246811,27892246:24720180,505283,126483 -k1,17218:8658850,27892246:220594 -k1,17218:11435348,27892246:220594 -k1,17218:14774800,27892246:220594 -h1,17218:14981894,27892246:0,0,0 -k1,17218:16199946,27892246:220594 -k1,17218:16952038,27892246:220595 -k1,17218:18712728,27892246:220594 -k1,17218:20308923,27892246:220594 -k1,17218:22415643,27892246:220594 -k1,17218:26830541,27892246:220594 -k1,17218:31571809,27892246:220594 -h1,17218:31571809,27892246:0,0,0 -k1,17218:31966991,27892246:0 -) -(1,17219:7246811,28733734:24720180,513147,126483 -k1,17218:9691413,28733734:264219 -k1,17218:10703398,28733734:264219 -k1,17218:13096883,28733734:264220 -k1,17218:16374447,28733734:264219 -k1,17218:17290094,28733734:264219 -h1,17218:17290094,28733734:0,0,0 -k1,17218:18344677,28733734:264219 -k1,17218:19260324,28733734:264219 -k1,17218:21667570,28733734:264219 -k1,17218:25447797,28733734:264220 -k1,17218:26903461,28733734:264219 -k1,17218:27699177,28733734:264219 -k1,17218:28982481,28733734:264219 -k1,17218:31966991,28733734:0 -) -(1,17219:7246811,29575222:24720180,505283,7863 -g1,17218:8959266,29575222 -g1,17218:9774533,29575222 -g1,17218:11177003,29575222 -k1,17219:31966991,29575222:19034278 -g1,17219:31966991,29575222 -) -v1,17221:7246811,30765688:0,393216,0 -(1,17234:7246811,33865751:24720180,3493279,196608 -g1,17234:7246811,33865751 -g1,17234:7246811,33865751 -g1,17234:7050203,33865751 -(1,17234:7050203,33865751:0,3493279,196608 -r1,17267:32163599,33865751:25113396,3689887,196608 -k1,17234:7050203,33865751:-25113396 -) -(1,17234:7050203,33865751:25113396,3493279,196608 -[1,17234:7246811,33865751:24720180,3296671,0 -(1,17223:7246811,30979598:24720180,410518,101187 -(1,17222:7246811,30979598:0,0,0 -g1,17222:7246811,30979598 -g1,17222:7246811,30979598 -g1,17222:6919131,30979598 -(1,17222:6919131,30979598:0,0,0 -) -g1,17222:7246811,30979598 -) -k1,17223:7246811,30979598:0 -k1,17223:7246811,30979598:0 -h1,17223:17047327,30979598:0,0,0 -k1,17223:31966991,30979598:14919664 -g1,17223:31966991,30979598 -) -(1,17227:7246811,31711312:24720180,410518,101187 -(1,17225:7246811,31711312:0,0,0 -g1,17225:7246811,31711312 -g1,17225:7246811,31711312 -g1,17225:6919131,31711312 -(1,17225:6919131,31711312:0,0,0 -) -g1,17225:7246811,31711312 -) -g1,17227:8195248,31711312 -g1,17227:9459831,31711312 -k1,17227:9459831,31711312:0 -h1,17227:13569725,31711312:0,0,0 -k1,17227:31966991,31711312:18397266 -g1,17227:31966991,31711312 -) -(1,17229:7246811,33032850:24720180,410518,101187 -(1,17228:7246811,33032850:0,0,0 -g1,17228:7246811,33032850 -g1,17228:7246811,33032850 -g1,17228:6919131,33032850 -(1,17228:6919131,33032850:0,0,0 -) -g1,17228:7246811,33032850 -) -k1,17229:7246811,33032850:0 -k1,17229:7246811,33032850:0 -h1,17229:17363473,33032850:0,0,0 -k1,17229:31966991,33032850:14603518 -g1,17229:31966991,33032850 -) -(1,17233:7246811,33764564:24720180,410518,101187 -(1,17231:7246811,33764564:0,0,0 -g1,17231:7246811,33764564 -g1,17231:7246811,33764564 -g1,17231:6919131,33764564 -(1,17231:6919131,33764564:0,0,0 -) -g1,17231:7246811,33764564 -) -g1,17233:8195248,33764564 -g1,17233:9459831,33764564 -k1,17233:9459831,33764564:0 -h1,17233:13569725,33764564:0,0,0 -k1,17233:31966991,33764564:18397266 -g1,17233:31966991,33764564 -) -] -) -g1,17234:31966991,33865751 -g1,17234:7246811,33865751 -g1,17234:7246811,33865751 -g1,17234:31966991,33865751 -g1,17234:31966991,33865751 -) -h1,17234:7246811,34062359:0,0,0 -] -) -] -r1,17267:32583029,35176471:26214,13167025,0 -) -] -) -) -g1,17236:32583029,34586647 -) -h1,17236:6630773,35202685:0,0,0 -(1,17239:6630773,36562837:25952256,513147,126483 -h1,17238:6630773,36562837:983040,0,0 -k1,17238:9020102,36562837:209602 -k1,17238:14195367,36562837:209602 -k1,17238:17100465,36562837:209602 -k1,17238:17961495,36562837:209602 -(1,17238:17961495,36562837:0,452978,115847 -r1,17267:21485167,36562837:3523672,568825,115847 -k1,17238:17961495,36562837:-3523672 -) -(1,17238:17961495,36562837:3523672,452978,115847 -k1,17238:17961495,36562837:3277 -h1,17238:21481890,36562837:0,411205,112570 -) -k1,17238:21694770,36562837:209603 -k1,17238:22435869,36562837:209602 -(1,17238:22435869,36562837:0,452978,115847 -r1,17267:25607829,36562837:3171960,568825,115847 -k1,17238:22435869,36562837:-3171960 -) -(1,17238:22435869,36562837:3171960,452978,115847 -k1,17238:22435869,36562837:3277 -h1,17238:25604552,36562837:0,411205,112570 -) -k1,17238:25817431,36562837:209602 -k1,17238:27218478,36562837:209602 -k1,17238:29962357,36562837:209602 -k1,17238:31191044,36562837:209602 -k1,17238:32583029,36562837:0 -) -(1,17239:6630773,37404325:25952256,513147,134348 -g1,17238:8278348,37404325 -g1,17238:9129005,37404325 -g1,17238:10347319,37404325 -g1,17238:13908545,37404325 -g1,17238:16202305,37404325 -g1,17238:17969155,37404325 -g1,17238:18524244,37404325 -g1,17238:19813337,37404325 -g1,17238:20995606,37404325 -k1,17239:32583029,37404325:9965407 -g1,17239:32583029,37404325 -) -v1,17241:6630773,38589167:0,393216,0 -(1,17248:6630773,39610812:25952256,1414861,196608 -g1,17248:6630773,39610812 -g1,17248:6630773,39610812 -g1,17248:6434165,39610812 -(1,17248:6434165,39610812:0,1414861,196608 -r1,17267:32779637,39610812:26345472,1611469,196608 -k1,17248:6434165,39610812:-26345472 -) -(1,17248:6434165,39610812:26345472,1414861,196608 -[1,17248:6630773,39610812:25952256,1218253,0 -(1,17243:6630773,38803077:25952256,410518,101187 -(1,17242:6630773,38803077:0,0,0 -g1,17242:6630773,38803077 -g1,17242:6630773,38803077 -g1,17242:6303093,38803077 -(1,17242:6303093,38803077:0,0,0 -) -g1,17242:6630773,38803077 -) -k1,17243:6630773,38803077:0 -k1,17243:6630773,38803077:0 -h1,17243:16115144,38803077:0,0,0 -k1,17243:32583029,38803077:16467885 -g1,17243:32583029,38803077 -) -(1,17247:6630773,39534791:25952256,404226,76021 -(1,17245:6630773,39534791:0,0,0 -g1,17245:6630773,39534791 -g1,17245:6630773,39534791 -g1,17245:6303093,39534791 -(1,17245:6303093,39534791:0,0,0 -) -g1,17245:6630773,39534791 -) -g1,17247:7579210,39534791 -g1,17247:8843793,39534791 -h1,17247:11689104,39534791:0,0,0 -k1,17247:32583028,39534791:20893924 -g1,17247:32583028,39534791 -) -] -) -g1,17248:32583029,39610812 -g1,17248:6630773,39610812 -g1,17248:6630773,39610812 -g1,17248:32583029,39610812 -g1,17248:32583029,39610812 -) -h1,17248:6630773,39807420:0,0,0 -(1,17254:6630773,41167571:25952256,505283,134348 -h1,17253:6630773,41167571:983040,0,0 -k1,17253:10907822,41167571:173840 -(1,17253:10907822,41167571:0,452978,122846 -r1,17267:13376359,41167571:2468537,575824,122846 -k1,17253:10907822,41167571:-2468537 -) -(1,17253:10907822,41167571:2468537,452978,122846 -k1,17253:10907822,41167571:3277 -h1,17253:13373082,41167571:0,411205,112570 -) -k1,17253:13550199,41167571:173840 -k1,17253:14915483,41167571:173839 -(1,17253:14915483,41167571:0,452978,115847 -r1,17267:17384020,41167571:2468537,568825,115847 -k1,17253:14915483,41167571:-2468537 -) -(1,17253:14915483,41167571:2468537,452978,115847 -k1,17253:14915483,41167571:3277 -h1,17253:17380743,41167571:0,411205,112570 -) -k1,17253:17557860,41167571:173840 -k1,17253:18835982,41167571:173840 -k1,17253:19757588,41167571:173840 -k1,17253:21444653,41167571:173839 -k1,17253:22269921,41167571:173840 -k1,17253:23422214,41167571:173840 -k1,17253:24615139,41167571:173840 -k1,17253:26237325,41167571:173840 -k1,17253:27062592,41167571:173839 -k1,17253:28255517,41167571:173840 -k1,17253:30773580,41167571:173840 -k1,17254:32583029,41167571:0 -) -(1,17254:6630773,42009059:25952256,505283,134348 -g1,17253:7820251,42009059 -g1,17253:10911584,42009059 -g1,17253:12302258,42009059 -g1,17253:13152915,42009059 -g1,17253:14286687,42009059 -g1,17253:14841776,42009059 -g1,17253:17933109,42009059 -g1,17253:18818500,42009059 -g1,17253:21535622,42009059 -k1,17254:32583029,42009059:7077236 -g1,17254:32583029,42009059 -) -v1,17256:6630773,43193901:0,393216,0 -(1,17261:6630773,44150009:25952256,1349324,196608 -g1,17261:6630773,44150009 -g1,17261:6630773,44150009 -g1,17261:6434165,44150009 -(1,17261:6434165,44150009:0,1349324,196608 -r1,17267:32779637,44150009:26345472,1545932,196608 -k1,17261:6434165,44150009:-26345472 -) -(1,17261:6434165,44150009:26345472,1349324,196608 -[1,17261:6630773,44150009:25952256,1152716,0 -(1,17258:6630773,43376353:25952256,379060,6290 -(1,17257:6630773,43376353:0,0,0 -g1,17257:6630773,43376353 -g1,17257:6630773,43376353 -g1,17257:6303093,43376353 -(1,17257:6303093,43376353:0,0,0 -) -g1,17257:6630773,43376353 -) -g1,17258:7263065,43376353 -g1,17258:8527648,43376353 -k1,17258:8527648,43376353:0 -h1,17258:9476085,43376353:0,0,0 -k1,17258:32583029,43376353:23106944 -g1,17258:32583029,43376353 -) -(1,17259:6630773,44042531:25952256,404226,107478 -h1,17259:6630773,44042531:0,0,0 -k1,17259:6630773,44042531:0 -h1,17259:8843792,44042531:0,0,0 -k1,17259:32583028,44042531:23739236 -g1,17259:32583028,44042531 -) -] -) -g1,17261:32583029,44150009 -g1,17261:6630773,44150009 -g1,17261:6630773,44150009 -g1,17261:32583029,44150009 -g1,17261:32583029,44150009 -) -h1,17261:6630773,44346617:0,0,0 -(1,17265:6630773,45706769:25952256,505283,134348 -h1,17264:6630773,45706769:983040,0,0 -k1,17264:10660013,45706769:256332 -(1,17264:10660013,45706769:0,452978,115847 -r1,17267:13128550,45706769:2468537,568825,115847 -k1,17264:10660013,45706769:-2468537 -) -(1,17264:10660013,45706769:2468537,452978,115847 -k1,17264:10660013,45706769:3277 -h1,17264:13125273,45706769:0,411205,112570 -) -k1,17264:13384881,45706769:256331 -k1,17264:15982159,45706769:256332 -k1,17264:17257575,45706769:256331 -k1,17264:18962253,45706769:256332 -k1,17264:19870012,45706769:256331 -k1,17264:21145429,45706769:256332 -k1,17264:23745983,45706769:256331 -k1,17264:26589021,45706769:256332 -k1,17264:29911126,45706769:256331 -k1,17264:32583029,45706769:0 -) -] -(1,17267:32583029,45706769:0,0,0 -g1,17267:32583029,45706769 -) -) -] -(1,17267:6630773,47279633:25952256,0,0 -h1,17267:6630773,47279633:25952256,0,0 -) -] -(1,17267:4262630,4025873:0,0,0 -[1,17267:-473656,4025873:0,0,0 -(1,17267:-473656,-710413:0,0,0 -(1,17267:-473656,-710413:0,0,0 -g1,17267:-473656,-710413 -) -g1,17267:-473656,-710413 -) -] -) -] -!25180 -}339 -Input:2799:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2800:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2801:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2802:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2803:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2804:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2805:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2806:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2807:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2808:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2809:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1024 -{340 -[1,17335:4262630,47279633:28320399,43253760,0 -(1,17335:4262630,4025873:0,0,0 -[1,17335:-473656,4025873:0,0,0 -(1,17335:-473656,-710413:0,0,0 -(1,17335:-473656,-644877:0,0,0 -k1,17335:-473656,-644877:-65536 -) -(1,17335:-473656,4736287:0,0,0 -k1,17335:-473656,4736287:5209943 -) -g1,17335:-473656,-710413 -) -] -) -[1,17335:6630773,47279633:25952256,43253760,0 -[1,17335:6630773,4812305:25952256,786432,0 -(1,17335:6630773,4812305:25952256,505283,126483 -(1,17335:6630773,4812305:25952256,505283,126483 -g1,17335:3078558,4812305 -[1,17335:3078558,4812305:0,0,0 -(1,17335:3078558,2439708:0,1703936,0 -k1,17335:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,17335:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,17335:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 -) -] -) -) -) -] -[1,17335:3078558,4812305:0,0,0 -(1,17335:3078558,2439708:0,1703936,0 -g1,17335:29030814,2439708 -g1,17335:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,17335:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 -) -] -) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,17335:37855564,2439708:1179648,16384,0 -) -) -k1,17335:3078556,2439708:-34777008 -) -] -[1,17335:3078558,4812305:0,0,0 -(1,17335:3078558,49800853:0,16384,2228224 -k1,17335:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,17335:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,17335:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 -) -] -) -) -) -] -[1,17335:3078558,4812305:0,0,0 -(1,17335:3078558,49800853:0,16384,2228224 -g1,17335:29030814,49800853 -g1,17335:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,17335:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 -) -] -) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,17335:37855564,49800853:1179648,16384,0 -) -) -k1,17335:3078556,49800853:-34777008 -) -] -g1,17335:6630773,4812305 -g1,17335:6630773,4812305 -g1,17335:7909380,4812305 -g1,17335:10167095,4812305 -g1,17335:11576774,4812305 -g1,17335:15078362,4812305 -k1,17335:31387652,4812305:16309290 -) -) -] -[1,17335:6630773,45706769:25952256,40108032,0 -(1,17335:6630773,45706769:25952256,40108032,0 -(1,17335:6630773,45706769:0,0,0 -g1,17335:6630773,45706769 -) -[1,17335:6630773,45706769:25952256,40108032,0 -(1,17265:6630773,6254097:25952256,505283,134348 -k1,17264:7612956,6254097:237039 -k1,17264:8501422,6254097:237038 -k1,17264:11421505,6254097:237039 -k1,17264:12593086,6254097:237038 -k1,17264:13849210,6254097:237039 -k1,17264:16672955,6254097:237039 -k1,17264:19802097,6254097:237038 -k1,17264:20690564,6254097:237039 -k1,17264:21946688,6254097:237039 -k1,17264:24938204,6254097:237038 -k1,17264:26505624,6254097:237039 -k1,17264:28208047,6254097:237038 -k1,17264:30804382,6254097:237039 -k1,17264:32583029,6254097:0 -) -(1,17265:6630773,7095585:25952256,505283,134348 -k1,17264:9462857,7095585:265694 -k1,17264:10379979,7095585:265694 -k1,17264:11664758,7095585:265694 -k1,17264:14274674,7095585:265693 -k1,17264:17127074,7095585:265694 -k1,17264:20665636,7095585:265694 -k1,17264:21617492,7095585:265694 -k1,17264:22499224,7095585:265694 -k1,17264:23784003,7095585:265694 -k1,17264:26884783,7095585:265693 -k1,17264:27833362,7095585:265694 -k1,17264:30804382,7095585:265694 -k1,17264:32583029,7095585:0 -) -(1,17265:6630773,7937073:25952256,513147,134348 -k1,17264:8776791,7937073:244163 -k1,17264:9636993,7937073:244164 -k1,17264:11178114,7937073:244163 -k1,17264:12413838,7937073:244164 -k1,17264:15474083,7937073:244163 -k1,17264:16404408,7937073:244163 -k1,17264:17419275,7937073:244164 -k1,17264:20909436,7937073:244163 -k1,17264:21781434,7937073:244163 -k1,17264:25816200,7937073:244164 -k1,17264:27255084,7937073:244163 -(1,17264:27555239,7937073:0,414482,115847 -r1,17335:27913505,7937073:358266,530329,115847 -k1,17264:27555239,7937073:-358266 -) -(1,17264:27555239,7937073:358266,414482,115847 -k1,17264:27555239,7937073:3277 -h1,17264:27910228,7937073:0,411205,112570 -) -k1,17264:28457824,7937073:244164 -k1,17264:31563944,7937073:244163 -k1,17264:32583029,7937073:0 -) -(1,17265:6630773,8778561:25952256,505283,126483 -g1,17264:9174225,8778561 -g1,17264:12265558,8778561 -g1,17264:13656232,8778561 -(1,17264:13956387,8778561:0,414482,115847 -r1,17335:14666365,8778561:709978,530329,115847 -k1,17264:13956387,8778561:-709978 -) -(1,17264:13956387,8778561:709978,414482,115847 -k1,17264:13956387,8778561:3277 -h1,17264:14663088,8778561:0,411205,112570 -) -g1,17264:15165749,8778561 -g1,17264:16384063,8778561 -g1,17264:19475396,8778561 -g1,17264:21529949,8778561 -g1,17264:22748263,8778561 -g1,17264:25291715,8778561 -k1,17265:32583029,8778561:5960933 -g1,17265:32583029,8778561 -) -v1,17267:6630773,9942808:0,393216,0 -(1,17273:6630773,11565094:25952256,2015502,196608 -g1,17273:6630773,11565094 -g1,17273:6630773,11565094 -g1,17273:6434165,11565094 -(1,17273:6434165,11565094:0,2015502,196608 -r1,17335:32779637,11565094:26345472,2212110,196608 -k1,17273:6434165,11565094:-26345472 -) -(1,17273:6434165,11565094:26345472,2015502,196608 -[1,17273:6630773,11565094:25952256,1818894,0 -(1,17269:6630773,10125260:25952256,379060,6290 -(1,17268:6630773,10125260:0,0,0 -g1,17268:6630773,10125260 -g1,17268:6630773,10125260 -g1,17268:6303093,10125260 -(1,17268:6303093,10125260:0,0,0 -) -g1,17268:6630773,10125260 -) -g1,17269:7263065,10125260 -g1,17269:8527648,10125260 -k1,17269:8527648,10125260:0 -h1,17269:9476085,10125260:0,0,0 -k1,17269:32583029,10125260:23106944 -g1,17269:32583029,10125260 -) -(1,17270:6630773,10791438:25952256,404226,76021 -h1,17270:6630773,10791438:0,0,0 -g1,17270:8527647,10791438 -g1,17270:9476085,10791438 -k1,17270:9476085,10791438:0 -h1,17270:12953688,10791438:0,0,0 -k1,17270:32583028,10791438:19629340 -g1,17270:32583028,10791438 -) -(1,17271:6630773,11457616:25952256,404226,107478 -h1,17271:6630773,11457616:0,0,0 -k1,17271:6630773,11457616:0 -h1,17271:8843792,11457616:0,0,0 -k1,17271:32583028,11457616:23739236 -g1,17271:32583028,11457616 -) -] -) -g1,17273:32583029,11565094 -g1,17273:6630773,11565094 -g1,17273:6630773,11565094 -g1,17273:32583029,11565094 -g1,17273:32583029,11565094 -) -h1,17273:6630773,11761702:0,0,0 -(1,17277:6630773,13101260:25952256,513147,126483 -h1,17276:6630773,13101260:983040,0,0 -k1,17276:9042731,13101260:232231 -k1,17276:12053690,13101260:232232 -k1,17276:13966264,13101260:232231 -k1,17276:14729993,13101260:232232 -k1,17276:17091489,13101260:232231 -k1,17276:18094424,13101260:232232 -k1,17276:21031981,13101260:232231 -k1,17276:22354076,13101260:232231 -k1,17276:24208324,13101260:232232 -k1,17276:25165383,13101260:232231 -k1,17276:25855712,13101260:232232 -k1,17276:28645813,13101260:232231 -k1,17276:30418141,13101260:232232 -k1,17276:32117068,13101260:232231 -k1,17276:32583029,13101260:0 -) -(1,17277:6630773,13942748:25952256,513147,134348 -g1,17276:7849087,13942748 -g1,17276:9496662,13942748 -g1,17276:10347319,13942748 -g1,17276:11565633,13942748 -g1,17276:14351568,13942748 -g1,17276:17442901,13942748 -g1,17276:20213107,13942748 -g1,17276:22062533,13942748 -g1,17276:23704209,13942748 -g1,17276:25393727,13942748 -g1,17276:27635713,13942748 -g1,17276:29572957,13942748 -k1,17277:32583029,13942748:162533 -g1,17277:32583029,13942748 -) -v1,17279:6630773,15106995:0,393216,0 -(1,17286:6630773,17395459:25952256,2681680,196608 -g1,17286:6630773,17395459 -g1,17286:6630773,17395459 -g1,17286:6434165,17395459 -(1,17286:6434165,17395459:0,2681680,196608 -r1,17335:32779637,17395459:26345472,2878288,196608 -k1,17286:6434165,17395459:-26345472 -) -(1,17286:6434165,17395459:26345472,2681680,196608 -[1,17286:6630773,17395459:25952256,2485072,0 -(1,17281:6630773,15289447:25952256,379060,6290 -(1,17280:6630773,15289447:0,0,0 -g1,17280:6630773,15289447 -g1,17280:6630773,15289447 -g1,17280:6303093,15289447 -(1,17280:6303093,15289447:0,0,0 -) -g1,17280:6630773,15289447 -) -g1,17281:7263065,15289447 -g1,17281:8527648,15289447 -k1,17281:8527648,15289447:0 -h1,17281:9476085,15289447:0,0,0 -k1,17281:32583029,15289447:23106944 -g1,17281:32583029,15289447 -) -(1,17282:6630773,15955625:25952256,404226,6290 -h1,17282:6630773,15955625:0,0,0 -h1,17282:8211501,15955625:0,0,0 -k1,17282:32583029,15955625:24371528 -g1,17282:32583029,15955625 -) -(1,17283:6630773,16621803:25952256,404226,76021 -h1,17283:6630773,16621803:0,0,0 -k1,17283:6630773,16621803:0 -h1,17283:10424521,16621803:0,0,0 -k1,17283:32583029,16621803:22158508 -g1,17283:32583029,16621803 -) -(1,17284:6630773,17287981:25952256,404226,107478 -h1,17284:6630773,17287981:0,0,0 -k1,17284:6630773,17287981:0 -h1,17284:8843792,17287981:0,0,0 -k1,17284:32583028,17287981:23739236 -g1,17284:32583028,17287981 -) -] -) -g1,17286:32583029,17395459 -g1,17286:6630773,17395459 -g1,17286:6630773,17395459 -g1,17286:32583029,17395459 -g1,17286:32583029,17395459 -) -h1,17286:6630773,17592067:0,0,0 -(1,17292:6630773,18931624:25952256,513147,126483 -h1,17291:6630773,18931624:983040,0,0 -k1,17291:8852717,18931624:285355 -k1,17291:10242353,18931624:285354 -k1,17291:11813524,18931624:285355 -k1,17291:14122630,18931624:285354 -k1,17291:15731812,18931624:285355 -k1,17291:16676459,18931624:285355 -k1,17291:18275155,18931624:285354 -k1,17291:20770384,18931624:285355 -k1,17291:24465576,18931624:285354 -k1,17291:25526222,18931624:285355 -k1,17291:27156375,18931624:285354 -k1,17291:29899985,18931624:285355 -k1,17291:32583029,18931624:0 -) -(1,17292:6630773,19773112:25952256,485622,11795 -g1,17291:8862929,19773112 -k1,17292:32583029,19773112:22351708 -g1,17292:32583029,19773112 -) -v1,17294:6630773,20937360:0,393216,0 -(1,17316:6630773,28095500:25952256,7551356,196608 -g1,17316:6630773,28095500 -g1,17316:6630773,28095500 -g1,17316:6434165,28095500 -(1,17316:6434165,28095500:0,7551356,196608 -r1,17335:32779637,28095500:26345472,7747964,196608 -k1,17316:6434165,28095500:-26345472 -) -(1,17316:6434165,28095500:26345472,7551356,196608 -[1,17316:6630773,28095500:25952256,7354748,0 -(1,17296:6630773,21151270:25952256,410518,76021 -(1,17295:6630773,21151270:0,0,0 -g1,17295:6630773,21151270 -g1,17295:6630773,21151270 -g1,17295:6303093,21151270 -(1,17295:6303093,21151270:0,0,0 -) -g1,17295:6630773,21151270 -) -k1,17296:6630773,21151270:0 -k1,17296:6630773,21151270:0 -h1,17296:12321396,21151270:0,0,0 -k1,17296:32583028,21151270:20261632 -g1,17296:32583028,21151270 -) -(1,17301:6630773,21882984:25952256,404226,107478 -(1,17298:6630773,21882984:0,0,0 -g1,17298:6630773,21882984 -g1,17298:6630773,21882984 -g1,17298:6303093,21882984 -(1,17298:6303093,21882984:0,0,0 -) -g1,17298:6630773,21882984 -) -g1,17301:7579210,21882984 -g1,17301:8843793,21882984 -g1,17301:12953687,21882984 -g1,17301:13269833,21882984 -g1,17301:13585979,21882984 -g1,17301:13902125,21882984 -g1,17301:14218271,21882984 -g1,17301:14534417,21882984 -g1,17301:14850563,21882984 -g1,17301:15166709,21882984 -g1,17301:15482855,21882984 -g1,17301:20225041,21882984 -g1,17301:20541187,21882984 -g1,17301:20857333,21882984 -g1,17301:21173479,21882984 -g1,17301:21489625,21882984 -g1,17301:21805771,21882984 -g1,17301:22121917,21882984 -h1,17301:27180248,21882984:0,0,0 -k1,17301:32583029,21882984:5402781 -g1,17301:32583029,21882984 -) -(1,17301:6630773,22549162:25952256,404226,107478 -h1,17301:6630773,22549162:0,0,0 -g1,17301:7579210,22549162 -g1,17301:8843793,22549162 -g1,17301:15482853,22549162 -g1,17301:17695873,22549162 -g1,17301:18012019,22549162 -g1,17301:18328165,22549162 -g1,17301:18644311,22549162 -g1,17301:18960457,22549162 -g1,17301:19276603,22549162 -g1,17301:19592749,22549162 -g1,17301:19908895,22549162 -g1,17301:20225041,22549162 -g1,17301:20541187,22549162 -g1,17301:20857333,22549162 -g1,17301:21173479,22549162 -g1,17301:21489625,22549162 -g1,17301:21805771,22549162 -g1,17301:22121917,22549162 -k1,17301:22121917,22549162:0 -h1,17301:27812539,22549162:0,0,0 -k1,17301:32583029,22549162:4770490 -g1,17301:32583029,22549162 -) -(1,17303:6630773,23870700:25952256,404226,76021 -(1,17302:6630773,23870700:0,0,0 -g1,17302:6630773,23870700 -g1,17302:6630773,23870700 -g1,17302:6303093,23870700 -(1,17302:6303093,23870700:0,0,0 -) -g1,17302:6630773,23870700 -) -k1,17303:6630773,23870700:0 -k1,17303:6630773,23870700:0 -h1,17303:12005250,23870700:0,0,0 -k1,17303:32583030,23870700:20577780 -g1,17303:32583030,23870700 -) -(1,17308:6630773,24602414:25952256,410518,107478 -(1,17305:6630773,24602414:0,0,0 -g1,17305:6630773,24602414 -g1,17305:6630773,24602414 -g1,17305:6303093,24602414 -(1,17305:6303093,24602414:0,0,0 -) -g1,17305:6630773,24602414 -) -g1,17308:7579210,24602414 -g1,17308:8843793,24602414 -g1,17308:10108376,24602414 -g1,17308:10424522,24602414 -g1,17308:10740668,24602414 -g1,17308:11056814,24602414 -g1,17308:11372960,24602414 -g1,17308:11689106,24602414 -g1,17308:12005252,24602414 -g1,17308:12321398,24602414 -g1,17308:12637544,24602414 -g1,17308:12953690,24602414 -g1,17308:13269836,24602414 -g1,17308:13585982,24602414 -g1,17308:13902128,24602414 -g1,17308:14218274,24602414 -g1,17308:14534420,24602414 -g1,17308:14850566,24602414 -g1,17308:17695877,24602414 -g1,17308:18012023,24602414 -g1,17308:18328169,24602414 -g1,17308:18644315,24602414 -g1,17308:18960461,24602414 -g1,17308:19276607,24602414 -g1,17308:19592753,24602414 -g1,17308:19908899,24602414 -g1,17308:20225045,24602414 -g1,17308:20541191,24602414 -g1,17308:20857337,24602414 -g1,17308:25599523,24602414 -g1,17308:25915669,24602414 -g1,17308:26231815,24602414 -g1,17308:26547961,24602414 -g1,17308:26864107,24602414 -h1,17308:30974001,24602414:0,0,0 -k1,17308:32583029,24602414:1609028 -g1,17308:32583029,24602414 -) -(1,17308:6630773,25268592:25952256,410518,107478 -h1,17308:6630773,25268592:0,0,0 -g1,17308:7579210,25268592 -g1,17308:8843793,25268592 -g1,17308:13269833,25268592 -g1,17308:13585979,25268592 -g1,17308:13902125,25268592 -g1,17308:14218271,25268592 -g1,17308:14534417,25268592 -g1,17308:14850563,25268592 -h1,17308:20541185,25268592:0,0,0 -k1,17308:32583029,25268592:12041844 -g1,17308:32583029,25268592 -) -(1,17310:6630773,26590130:25952256,404226,76021 -(1,17309:6630773,26590130:0,0,0 -g1,17309:6630773,26590130 -g1,17309:6630773,26590130 -g1,17309:6303093,26590130 -(1,17309:6303093,26590130:0,0,0 -) -g1,17309:6630773,26590130 -) -k1,17310:6630773,26590130:0 -k1,17310:6630773,26590130:0 -h1,17310:10108376,26590130:0,0,0 -k1,17310:32583028,26590130:22474652 -g1,17310:32583028,26590130 -) -(1,17315:6630773,27321844:25952256,404226,107478 -(1,17312:6630773,27321844:0,0,0 -g1,17312:6630773,27321844 -g1,17312:6630773,27321844 -g1,17312:6303093,27321844 -(1,17312:6303093,27321844:0,0,0 -) -g1,17312:6630773,27321844 -) -g1,17315:7579210,27321844 -g1,17315:8843793,27321844 -g1,17315:12953687,27321844 -g1,17315:13269833,27321844 -g1,17315:13585979,27321844 -g1,17315:13902125,27321844 -g1,17315:14218271,27321844 -g1,17315:14534417,27321844 -g1,17315:14850563,27321844 -g1,17315:15166709,27321844 -g1,17315:15482855,27321844 -g1,17315:20225041,27321844 -g1,17315:20541187,27321844 -g1,17315:20857333,27321844 -g1,17315:21173479,27321844 -g1,17315:21489625,27321844 -g1,17315:21805771,27321844 -g1,17315:22121917,27321844 -h1,17315:27180248,27321844:0,0,0 -k1,17315:32583029,27321844:5402781 -g1,17315:32583029,27321844 -) -(1,17315:6630773,27988022:25952256,404226,107478 -h1,17315:6630773,27988022:0,0,0 -g1,17315:7579210,27988022 -g1,17315:8843793,27988022 -g1,17315:15482853,27988022 -g1,17315:17695873,27988022 -g1,17315:18012019,27988022 -g1,17315:18328165,27988022 -g1,17315:18644311,27988022 -g1,17315:18960457,27988022 -g1,17315:19276603,27988022 -g1,17315:19592749,27988022 -g1,17315:19908895,27988022 -g1,17315:20225041,27988022 -g1,17315:20541187,27988022 -g1,17315:20857333,27988022 -g1,17315:21173479,27988022 -g1,17315:21489625,27988022 -g1,17315:21805771,27988022 -g1,17315:22121917,27988022 -k1,17315:22121917,27988022:0 -h1,17315:27812539,27988022:0,0,0 -k1,17315:32583029,27988022:4770490 -g1,17315:32583029,27988022 -) -] -) -g1,17316:32583029,28095500 -g1,17316:6630773,28095500 -g1,17316:6630773,28095500 -g1,17316:32583029,28095500 -g1,17316:32583029,28095500 -) -h1,17316:6630773,28292108:0,0,0 -v1,17320:6630773,30129734:0,393216,0 -(1,17321:6630773,34932365:25952256,5195847,616038 -g1,17321:6630773,34932365 -(1,17321:6630773,34932365:25952256,5195847,616038 -(1,17321:6630773,35548403:25952256,5811885,0 -[1,17321:6630773,35548403:25952256,5811885,0 -(1,17321:6630773,35522189:25952256,5759457,0 -r1,17335:6656987,35522189:26214,5759457,0 -[1,17321:6656987,35522189:25899828,5759457,0 -(1,17321:6656987,34932365:25899828,4579809,0 -[1,17321:7246811,34932365:24720180,4579809,0 -(1,17321:7246811,31439930:24720180,1087374,134348 -k1,17320:8618952,31439930:162438 -k1,17320:9978076,31439930:162437 -k1,17320:12406094,31439930:162438 -k1,17320:15640859,31439930:162437 -k1,17320:16750948,31439930:162438 -k1,17320:20194117,31439930:162437 -(1,17320:20194117,31439930:0,452978,115847 -r1,17335:21607518,31439930:1413401,568825,115847 -k1,17320:20194117,31439930:-1413401 -) -(1,17320:20194117,31439930:1413401,452978,115847 -k1,17320:20194117,31439930:3277 -h1,17320:21604241,31439930:0,411205,112570 -) -k1,17320:21769956,31439930:162438 -k1,17320:22463890,31439930:162437 -k1,17320:23645413,31439930:162438 -k1,17320:26152073,31439930:162437 -k1,17320:28901217,31439930:162438 -k1,17320:31966991,31439930:0 -) -(1,17321:7246811,32281418:24720180,513147,126483 -k1,17320:9335741,32281418:202804 -k1,17320:12601041,32281418:202803 -k1,17320:14429793,32281418:202804 -k1,17320:15824042,32281418:202804 -k1,17320:17787797,32281418:202803 -k1,17320:20942998,32281418:202804 -k1,17320:21907329,32281418:202803 -(1,17320:21907329,32281418:0,452978,115847 -r1,17335:22969018,32281418:1061689,568825,115847 -k1,17320:21907329,32281418:-1061689 -) -(1,17320:21907329,32281418:1061689,452978,115847 -k1,17320:21907329,32281418:3277 -h1,17320:22965741,32281418:0,411205,112570 -) -k1,17320:23345492,32281418:202804 -k1,17320:26467270,32281418:202804 -k1,17320:29276440,32281418:202803 -k1,17320:30763750,32281418:202804 -k1,17320:31966991,32281418:0 -) -(1,17321:7246811,33122906:24720180,513147,134348 -k1,17320:7984036,33122906:205728 -k1,17320:10341967,33122906:205729 -k1,17320:11566780,33122906:205728 -k1,17320:14038089,33122906:205729 -k1,17320:15005345,33122906:205728 -k1,17320:17301017,33122906:205729 -k1,17320:18525830,33122906:205728 -k1,17320:21757355,33122906:205728 -k1,17320:23357035,33122906:205729 -k1,17320:24333466,33122906:205728 -k1,17320:26870311,33122906:205729 -k1,17320:30322037,33122906:205728 -k1,17320:31966991,33122906:0 -) -(1,17321:7246811,33964394:24720180,513147,134348 -k1,17320:8889977,33964394:266255 -k1,17320:10499065,33964394:266255 -k1,17320:12159271,33964394:266255 -k1,17320:13444611,33964394:266255 -k1,17320:16736663,33964394:266255 -k1,17320:18899529,33964394:266254 -k1,17320:20867754,33964394:266255 -k1,17320:23625032,33964394:266255 -k1,17320:25082732,33964394:266255 -k1,17320:29306051,33964394:266255 -k1,17320:31350953,33964394:266255 -k1,17320:31966991,33964394:0 -) -(1,17321:7246811,34805882:24720180,426639,126483 -g1,17320:8904871,34805882 -k1,17321:31966991,34805882:19812190 -g1,17321:31966991,34805882 -) -] -) -] -r1,17335:32583029,35522189:26214,5759457,0 -) -] -) -) -g1,17321:32583029,34932365 -) -h1,17321:6630773,35548403:0,0,0 -v1,17324:6630773,36887961:0,393216,0 -(1,17325:6630773,40015481:25952256,3520736,616038 -g1,17325:6630773,40015481 -(1,17325:6630773,40015481:25952256,3520736,616038 -(1,17325:6630773,40631519:25952256,4136774,0 -[1,17325:6630773,40631519:25952256,4136774,0 -(1,17325:6630773,40605305:25952256,4084346,0 -r1,17335:6656987,40605305:26214,4084346,0 -[1,17325:6656987,40605305:25899828,4084346,0 -(1,17325:6656987,40015481:25899828,2904698,0 -[1,17325:7246811,40015481:24720180,2904698,0 -(1,17325:7246811,38198157:24720180,1087374,126483 -k1,17324:8657623,38198157:201109 -k1,17324:10007577,38198157:201108 -k1,17324:13489418,38198157:201109 -(1,17324:13489418,38198157:0,459977,115847 -r1,17335:17013090,38198157:3523672,575824,115847 -k1,17324:13489418,38198157:-3523672 -) -(1,17324:13489418,38198157:3523672,459977,115847 -k1,17324:13489418,38198157:3277 -h1,17324:17009813,38198157:0,411205,112570 -) -k1,17324:17214198,38198157:201108 -k1,17324:18809258,38198157:201109 -(1,17324:18809258,38198157:0,459977,115847 -r1,17335:23036354,38198157:4227096,575824,115847 -k1,17324:18809258,38198157:-4227096 -) -(1,17324:18809258,38198157:4227096,459977,115847 -k1,17324:18809258,38198157:3277 -h1,17324:23033077,38198157:0,411205,112570 -) -k1,17324:23237462,38198157:201108 -k1,17324:24089999,38198157:201109 -k1,17324:26314859,38198157:201108 -k1,17324:28371948,38198157:201109 -k1,17324:28928916,38198157:201108 -k1,17324:30123551,38198157:201109 -k1,17324:30983951,38198157:201108 -k1,17324:31966991,38198157:0 -) -(1,17325:7246811,39039645:24720180,513147,134348 -k1,17324:9225897,39039645:200439 -k1,17324:10109221,39039645:200439 -k1,17324:11701645,39039645:200439 -k1,17324:12885125,39039645:200440 -k1,17324:15327551,39039645:200439 -k1,17324:18494805,39039645:200439 -k1,17324:22138506,39039645:200439 -k1,17324:23669326,39039645:200439 -k1,17324:24888850,39039645:200439 -k1,17324:27868017,39039645:200440 -k1,17324:29061982,39039645:200439 -k1,17324:29921713,39039645:200439 -k1,17324:31435494,39039645:200439 -k1,17324:31966991,39039645:0 -) -(1,17325:7246811,39881133:24720180,513147,134348 -g1,17324:9993424,39881133 -g1,17324:10954181,39881133 -g1,17324:12172495,39881133 -g1,17324:15444052,39881133 -g1,17324:17848568,39881133 -g1,17324:18699225,39881133 -(1,17324:18699225,39881133:0,452978,115847 -r1,17335:21871185,39881133:3171960,568825,115847 -k1,17324:18699225,39881133:-3171960 -) -(1,17324:18699225,39881133:3171960,452978,115847 -k1,17324:18699225,39881133:3277 -h1,17324:21867908,39881133:0,411205,112570 -) -k1,17325:31966991,39881133:9922136 -g1,17325:31966991,39881133 -) -] -) -] -r1,17335:32583029,40605305:26214,4084346,0 -) -] -) -) -g1,17325:32583029,40015481 -) -h1,17325:6630773,40631519:0,0,0 -v1,17328:6630773,41971076:0,393216,0 -(1,17329:6630773,45090731:25952256,3512871,616038 -g1,17329:6630773,45090731 -(1,17329:6630773,45090731:25952256,3512871,616038 -(1,17329:6630773,45706769:25952256,4128909,0 -[1,17329:6630773,45706769:25952256,4128909,0 -(1,17329:6630773,45680555:25952256,4076481,0 -r1,17335:6656987,45680555:26214,4076481,0 -[1,17329:6656987,45680555:25899828,4076481,0 -(1,17329:6656987,45090731:25899828,2896833,0 -[1,17329:7246811,45090731:24720180,2896833,0 -(1,17329:7246811,43281272:24720180,1087374,126483 -k1,17328:8598095,43281272:141581 -k1,17328:11621949,43281272:141581 -k1,17328:12782615,43281272:141581 -k1,17328:15683917,43281272:141581 -k1,17328:16484790,43281272:141581 -k1,17328:19652168,43281272:141581 -(1,17328:19652168,43281272:0,452978,115847 -r1,17335:21417281,43281272:1765113,568825,115847 -k1,17328:19652168,43281272:-1765113 -) -(1,17328:19652168,43281272:1765113,452978,115847 -k1,17328:19652168,43281272:3277 -h1,17328:21414004,43281272:0,411205,112570 -) -k1,17328:21558862,43281272:141581 -k1,17328:22891888,43281272:141581 -(1,17328:22891888,43281272:0,452978,115847 -r1,17335:26767272,43281272:3875384,568825,115847 -k1,17328:22891888,43281272:-3875384 -) -(1,17328:22891888,43281272:3875384,452978,115847 -k1,17328:22891888,43281272:3277 -h1,17328:26763995,43281272:0,411205,112570 -) -k1,17328:27082523,43281272:141581 -k1,17328:28415549,43281272:141581 -k1,17328:29463493,43281272:141581 -k1,17328:30366602,43281272:141581 -k1,17329:31966991,43281272:0 -) -(1,17329:7246811,44122760:24720180,513147,134348 -k1,17328:9326804,44122760:179449 -k1,17328:10525339,44122760:179450 -k1,17328:12970368,44122760:179449 -k1,17328:16552446,44122760:179449 -k1,17328:17399052,44122760:179450 -(1,17328:17399052,44122760:0,452978,115847 -r1,17335:21274436,44122760:3875384,568825,115847 -k1,17328:17399052,44122760:-3875384 -) -(1,17328:17399052,44122760:3875384,452978,115847 -k1,17328:17399052,44122760:3277 -h1,17328:21271159,44122760:0,411205,112570 -) -k1,17328:21627555,44122760:179449 -k1,17328:22458432,44122760:179449 -k1,17328:23616334,44122760:179449 -k1,17328:24814869,44122760:179450 -k1,17328:26094012,44122760:179449 -k1,17328:26924889,44122760:179449 -k1,17328:29114984,44122760:179450 -k1,17328:30313518,44122760:179449 -k1,17328:31966991,44122760:0 -) -(1,17329:7246811,44964248:24720180,513147,126483 -g1,17328:9604796,44964248 -g1,17328:10490187,44964248 -(1,17328:10490187,44964248:0,452978,115847 -r1,17335:12255300,44964248:1765113,568825,115847 -k1,17328:10490187,44964248:-1765113 -) -(1,17328:10490187,44964248:1765113,452978,115847 -k1,17328:10490187,44964248:3277 -h1,17328:12252023,44964248:0,411205,112570 -) -g1,17328:12454529,44964248 -g1,17328:14146668,44964248 -g1,17328:15107425,44964248 -k1,17329:31966991,44964248:14420316 -g1,17329:31966991,44964248 -) -] -) -] -r1,17335:32583029,45680555:26214,4076481,0 -) -] -) -) -g1,17329:32583029,45090731 -) -h1,17329:6630773,45706769:0,0,0 -] -(1,17335:32583029,45706769:0,0,0 -g1,17335:32583029,45706769 -) -) -] -(1,17335:6630773,47279633:25952256,0,0 -h1,17335:6630773,47279633:25952256,0,0 -) -] -(1,17335:4262630,4025873:0,0,0 -[1,17335:-473656,4025873:0,0,0 -(1,17335:-473656,-710413:0,0,0 -(1,17335:-473656,-710413:0,0,0 -g1,17335:-473656,-710413 -) -g1,17335:-473656,-710413 -) -] -) -] -!25461 -}340 -Input:2810:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2811:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2812:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2813:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!380 -{341 -[1,17404:4262630,47279633:28320399,43253760,0 -(1,17404:4262630,4025873:0,0,0 -[1,17404:-473656,4025873:0,0,0 -(1,17404:-473656,-710413:0,0,0 -(1,17404:-473656,-644877:0,0,0 -k1,17404:-473656,-644877:-65536 -) -(1,17404:-473656,4736287:0,0,0 -k1,17404:-473656,4736287:5209943 -) -g1,17404:-473656,-710413 -) -] -) -[1,17404:6630773,47279633:25952256,43253760,0 -[1,17404:6630773,4812305:25952256,786432,0 -(1,17404:6630773,4812305:25952256,505283,126483 -(1,17404:6630773,4812305:25952256,505283,126483 -g1,17404:3078558,4812305 -[1,17404:3078558,4812305:0,0,0 -(1,17404:3078558,2439708:0,1703936,0 -k1,17404:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,17404:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,17404:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 -) -] -) -) -) -] -[1,17404:3078558,4812305:0,0,0 -(1,17404:3078558,2439708:0,1703936,0 -g1,17404:29030814,2439708 -g1,17404:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,17404:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 -) -] -) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,17404:37855564,2439708:1179648,16384,0 -) -) -k1,17404:3078556,2439708:-34777008 -) -] -[1,17404:3078558,4812305:0,0,0 -(1,17404:3078558,49800853:0,16384,2228224 -k1,17404:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,17404:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,17404:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 -) -] -) -) -) -] -[1,17404:3078558,4812305:0,0,0 -(1,17404:3078558,49800853:0,16384,2228224 -g1,17404:29030814,49800853 -g1,17404:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,17404:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 -) -] -) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,17404:37855564,49800853:1179648,16384,0 -) -) -k1,17404:3078556,49800853:-34777008 -) -] -g1,17404:6630773,4812305 -k1,17404:25146660,4812305:17320510 -g1,17404:26880087,4812305 -g1,17404:29193507,4812305 -g1,17404:30603186,4812305 -) -) -] -[1,17404:6630773,45706769:25952256,40108032,0 -(1,17404:6630773,45706769:25952256,40108032,0 -(1,17404:6630773,45706769:0,0,0 -g1,17404:6630773,45706769 -) -[1,17404:6630773,45706769:25952256,40108032,0 -(1,17333:6630773,6254097:25952256,513147,134348 -h1,17332:6630773,6254097:983040,0,0 -k1,17332:9249974,6254097:203544 -k1,17332:9868357,6254097:203540 -k1,17332:12832277,6254097:203544 -k1,17332:15267322,6254097:203544 -k1,17332:18496663,6254097:203544 -k1,17332:19647858,6254097:203544 -k1,17332:22534446,6254097:203544 -k1,17332:25324697,6254097:203545 -k1,17332:26922192,6254097:203544 -k1,17332:28612748,6254097:203544 -k1,17332:30007737,6254097:203544 -k1,17332:31591469,6254097:203544 -k1,17332:32583029,6254097:0 -) -(1,17333:6630773,7095585:25952256,513147,134348 -k1,17332:8610714,7095585:218333 -k1,17332:9445085,7095585:218333 -k1,17332:10682502,7095585:218332 -k1,17332:12288888,7095585:218333 -k1,17332:14005374,7095585:218333 -k1,17332:15171358,7095585:218333 -(1,17332:15171358,7095585:0,459977,115847 -r1,17404:16936471,7095585:1765113,575824,115847 -k1,17332:15171358,7095585:-1765113 -) -(1,17332:15171358,7095585:1765113,459977,115847 -k1,17332:15171358,7095585:3277 -h1,17332:16933194,7095585:0,411205,112570 -) -k1,17332:17154803,7095585:218332 -k1,17332:18564581,7095585:218333 -k1,17332:19398952,7095585:218333 -k1,17332:22810199,7095585:218333 -k1,17332:24416584,7095585:218332 -k1,17332:26637042,7095585:218333 -k1,17332:28004221,7095585:218333 -(1,17332:28004221,7095585:0,459977,115847 -r1,17404:32583029,7095585:4578808,575824,115847 -k1,17332:28004221,7095585:-4578808 -) -(1,17332:28004221,7095585:4578808,459977,115847 -k1,17332:28004221,7095585:3277 -h1,17332:32579752,7095585:0,411205,112570 -) -k1,17332:32583029,7095585:0 -) -(1,17333:6630773,7937073:25952256,513147,126483 -g1,17332:7481430,7937073 -g1,17332:9711620,7937073 -g1,17332:10929934,7937073 -g1,17332:12517216,7937073 -g1,17332:13664096,7937073 -g1,17332:15066566,7937073 -g1,17332:17874128,7937073 -g1,17332:18732649,7937073 -k1,17333:32583029,7937073:10650912 -g1,17333:32583029,7937073 -) -v1,17335:6630773,9127539:0,393216,0 -(1,17383:6630773,25799586:25952256,17065263,196608 -g1,17383:6630773,25799586 -g1,17383:6630773,25799586 -g1,17383:6434165,25799586 -(1,17383:6434165,25799586:0,17065263,196608 -r1,17404:32779637,25799586:26345472,17261871,196608 -k1,17383:6434165,25799586:-26345472 -) -(1,17383:6434165,25799586:26345472,17065263,196608 -[1,17383:6630773,25799586:25952256,16868655,0 -(1,17337:6630773,9341449:25952256,410518,76021 -(1,17336:6630773,9341449:0,0,0 -g1,17336:6630773,9341449 -g1,17336:6630773,9341449 -g1,17336:6303093,9341449 -(1,17336:6303093,9341449:0,0,0 -) -g1,17336:6630773,9341449 -) -k1,17337:6630773,9341449:0 -g1,17337:7579210,9341449 -g1,17337:15798998,9341449 -h1,17337:16115144,9341449:0,0,0 -k1,17337:32583029,9341449:16467885 -g1,17337:32583029,9341449 -) -(1,17338:6630773,10007627:25952256,410518,76021 -h1,17338:6630773,10007627:0,0,0 -g1,17338:6946919,10007627 -g1,17338:7263065,10007627 -k1,17338:7263065,10007627:0 -h1,17338:14218270,10007627:0,0,0 -k1,17338:32583030,10007627:18364760 -g1,17338:32583030,10007627 -) -(1,17339:6630773,10673805:25952256,404226,76021 -h1,17339:6630773,10673805:0,0,0 -h1,17339:6946919,10673805:0,0,0 -k1,17339:32583029,10673805:25636110 -g1,17339:32583029,10673805 -) -(1,17343:6630773,11405519:25952256,404226,76021 -(1,17341:6630773,11405519:0,0,0 -g1,17341:6630773,11405519 -g1,17341:6630773,11405519 -g1,17341:6303093,11405519 -(1,17341:6303093,11405519:0,0,0 -) -g1,17341:6630773,11405519 -) -g1,17343:7579210,11405519 -g1,17343:8843793,11405519 -h1,17343:10108376,11405519:0,0,0 -k1,17343:32583028,11405519:22474652 -g1,17343:32583028,11405519 -) -(1,17345:6630773,12727057:25952256,410518,76021 -(1,17344:6630773,12727057:0,0,0 -g1,17344:6630773,12727057 -g1,17344:6630773,12727057 -g1,17344:6303093,12727057 -(1,17344:6303093,12727057:0,0,0 -) -g1,17344:6630773,12727057 -) -k1,17345:6630773,12727057:0 -h1,17345:12953687,12727057:0,0,0 -k1,17345:32583029,12727057:19629342 -g1,17345:32583029,12727057 -) -(1,17349:6630773,13458771:25952256,404226,76021 -(1,17347:6630773,13458771:0,0,0 -g1,17347:6630773,13458771 -g1,17347:6630773,13458771 -g1,17347:6303093,13458771 -(1,17347:6303093,13458771:0,0,0 -) -g1,17347:6630773,13458771 -) -g1,17349:7579210,13458771 -g1,17349:8843793,13458771 -h1,17349:9159939,13458771:0,0,0 -k1,17349:32583029,13458771:23423090 -g1,17349:32583029,13458771 -) -(1,17351:6630773,14780309:25952256,410518,76021 -(1,17350:6630773,14780309:0,0,0 -g1,17350:6630773,14780309 -g1,17350:6630773,14780309 -g1,17350:6303093,14780309 -(1,17350:6303093,14780309:0,0,0 -) -g1,17350:6630773,14780309 -) -k1,17351:6630773,14780309:0 -h1,17351:12953687,14780309:0,0,0 -k1,17351:32583029,14780309:19629342 -g1,17351:32583029,14780309 -) -(1,17358:6630773,15512023:25952256,404226,6290 -(1,17353:6630773,15512023:0,0,0 -g1,17353:6630773,15512023 -g1,17353:6630773,15512023 -g1,17353:6303093,15512023 -(1,17353:6303093,15512023:0,0,0 -) -g1,17353:6630773,15512023 -) -g1,17358:7579210,15512023 -g1,17358:7895356,15512023 -g1,17358:8211502,15512023 -g1,17358:8527648,15512023 -g1,17358:8843794,15512023 -g1,17358:9159940,15512023 -g1,17358:9476086,15512023 -g1,17358:9792232,15512023 -g1,17358:10108378,15512023 -g1,17358:11689107,15512023 -g1,17358:13585981,15512023 -g1,17358:15166710,15512023 -g1,17358:15482856,15512023 -g1,17358:15799002,15512023 -g1,17358:16115148,15512023 -g1,17358:16431294,15512023 -g1,17358:16747440,15512023 -g1,17358:17063586,15512023 -g1,17358:17379732,15512023 -g1,17358:17695878,15512023 -g1,17358:18012024,15512023 -g1,17358:18328170,15512023 -g1,17358:18644316,15512023 -g1,17358:18960462,15512023 -g1,17358:19276608,15512023 -g1,17358:19592754,15512023 -g1,17358:21489628,15512023 -g1,17358:21805774,15512023 -g1,17358:22121920,15512023 -g1,17358:22438066,15512023 -g1,17358:22754212,15512023 -g1,17358:23070358,15512023 -g1,17358:23386504,15512023 -g1,17358:23702650,15512023 -g1,17358:24018796,15512023 -g1,17358:24334942,15512023 -g1,17358:24651088,15512023 -g1,17358:24967234,15512023 -g1,17358:25283380,15512023 -g1,17358:25599526,15512023 -g1,17358:25915672,15512023 -h1,17358:27496400,15512023:0,0,0 -k1,17358:32583029,15512023:5086629 -g1,17358:32583029,15512023 -) -(1,17358:6630773,16178201:25952256,388497,9436 -h1,17358:6630773,16178201:0,0,0 -g1,17358:7579210,16178201 -g1,17358:10108376,16178201 -g1,17358:10424522,16178201 -g1,17358:10740668,16178201 -g1,17358:11056814,16178201 -g1,17358:11689106,16178201 -g1,17358:13585980,16178201 -g1,17358:13902126,16178201 -g1,17358:15166709,16178201 -g1,17358:18644312,16178201 -g1,17358:21489623,16178201 -g1,17358:24967226,16178201 -h1,17358:27496391,16178201:0,0,0 -k1,17358:32583029,16178201:5086638 -g1,17358:32583029,16178201 -) -(1,17358:6630773,16844379:25952256,404226,6290 -h1,17358:6630773,16844379:0,0,0 -g1,17358:7579210,16844379 -g1,17358:7895356,16844379 -g1,17358:8211502,16844379 -g1,17358:8527648,16844379 -g1,17358:8843794,16844379 -g1,17358:9159940,16844379 -g1,17358:9476086,16844379 -g1,17358:9792232,16844379 -g1,17358:10108378,16844379 -g1,17358:10424524,16844379 -g1,17358:10740670,16844379 -g1,17358:11056816,16844379 -g1,17358:11372962,16844379 -g1,17358:11689108,16844379 -g1,17358:12005254,16844379 -g1,17358:12321400,16844379 -g1,17358:12637546,16844379 -g1,17358:12953692,16844379 -g1,17358:13269838,16844379 -g1,17358:13585984,16844379 -g1,17358:13902130,16844379 -g1,17358:14218276,16844379 -g1,17358:14534422,16844379 -g1,17358:16431296,16844379 -h1,17358:17379733,16844379:0,0,0 -k1,17358:32583029,16844379:15203296 -g1,17358:32583029,16844379 -) -(1,17358:6630773,17510557:25952256,388497,9436 -h1,17358:6630773,17510557:0,0,0 -g1,17358:7579210,17510557 -g1,17358:10108376,17510557 -g1,17358:13585979,17510557 -g1,17358:16431290,17510557 -g1,17358:16747436,17510557 -h1,17358:17379727,17510557:0,0,0 -k1,17358:32583029,17510557:15203302 -g1,17358:32583029,17510557 -) -(1,17360:6630773,18832095:25952256,410518,82312 -(1,17359:6630773,18832095:0,0,0 -g1,17359:6630773,18832095 -g1,17359:6630773,18832095 -g1,17359:6303093,18832095 -(1,17359:6303093,18832095:0,0,0 -) -g1,17359:6630773,18832095 -) -k1,17360:6630773,18832095:0 -g1,17360:13902124,18832095 -h1,17360:17063581,18832095:0,0,0 -k1,17360:32583029,18832095:15519448 -g1,17360:32583029,18832095 -) -(1,17364:6630773,19563809:25952256,404226,76021 -(1,17362:6630773,19563809:0,0,0 -g1,17362:6630773,19563809 -g1,17362:6630773,19563809 -g1,17362:6303093,19563809 -(1,17362:6303093,19563809:0,0,0 -) -g1,17362:6630773,19563809 -) -g1,17364:7579210,19563809 -g1,17364:8843793,19563809 -h1,17364:10108376,19563809:0,0,0 -k1,17364:32583028,19563809:22474652 -g1,17364:32583028,19563809 -) -(1,17366:6630773,20885347:25952256,410518,76021 -(1,17365:6630773,20885347:0,0,0 -g1,17365:6630773,20885347 -g1,17365:6630773,20885347 -g1,17365:6303093,20885347 -(1,17365:6303093,20885347:0,0,0 -) -g1,17365:6630773,20885347 -) -k1,17366:6630773,20885347:0 -h1,17366:13585978,20885347:0,0,0 -k1,17366:32583030,20885347:18997052 -g1,17366:32583030,20885347 -) -(1,17370:6630773,21617061:25952256,404226,76021 -(1,17368:6630773,21617061:0,0,0 -g1,17368:6630773,21617061 -g1,17368:6630773,21617061 -g1,17368:6303093,21617061 -(1,17368:6303093,21617061:0,0,0 -) -g1,17368:6630773,21617061 -) -g1,17370:7579210,21617061 -g1,17370:8843793,21617061 -h1,17370:10424521,21617061:0,0,0 -k1,17370:32583029,21617061:22158508 -g1,17370:32583029,21617061 -) -(1,17372:6630773,22938599:25952256,410518,76021 -(1,17371:6630773,22938599:0,0,0 -g1,17371:6630773,22938599 -g1,17371:6630773,22938599 -g1,17371:6303093,22938599 -(1,17371:6303093,22938599:0,0,0 -) -g1,17371:6630773,22938599 -) -k1,17372:6630773,22938599:0 -h1,17372:13585978,22938599:0,0,0 -k1,17372:32583030,22938599:18997052 -g1,17372:32583030,22938599 -) -(1,17376:6630773,23670313:25952256,404226,76021 -(1,17374:6630773,23670313:0,0,0 -g1,17374:6630773,23670313 -g1,17374:6630773,23670313 -g1,17374:6303093,23670313 -(1,17374:6303093,23670313:0,0,0 -) -g1,17374:6630773,23670313 -) -g1,17376:7579210,23670313 -g1,17376:8843793,23670313 -h1,17376:10108376,23670313:0,0,0 -k1,17376:32583028,23670313:22474652 -g1,17376:32583028,23670313 -) -(1,17378:6630773,24991851:25952256,410518,76021 -(1,17377:6630773,24991851:0,0,0 -g1,17377:6630773,24991851 -g1,17377:6630773,24991851 -g1,17377:6303093,24991851 -(1,17377:6303093,24991851:0,0,0 -) -g1,17377:6630773,24991851 -) -k1,17378:6630773,24991851:0 -h1,17378:13585978,24991851:0,0,0 -k1,17378:32583030,24991851:18997052 -g1,17378:32583030,24991851 -) -(1,17382:6630773,25723565:25952256,404226,76021 -(1,17380:6630773,25723565:0,0,0 -g1,17380:6630773,25723565 -g1,17380:6630773,25723565 -g1,17380:6303093,25723565 -(1,17380:6303093,25723565:0,0,0 -) -g1,17380:6630773,25723565 -) -g1,17382:7579210,25723565 -g1,17382:8843793,25723565 -h1,17382:10108376,25723565:0,0,0 -k1,17382:32583028,25723565:22474652 -g1,17382:32583028,25723565 -) -] -) -g1,17383:32583029,25799586 -g1,17383:6630773,25799586 -g1,17383:6630773,25799586 -g1,17383:32583029,25799586 -g1,17383:32583029,25799586 -) -h1,17383:6630773,25996194:0,0,0 -v1,17387:6630773,27886258:0,393216,0 -(1,17388:6630773,31013778:25952256,3520736,616038 -g1,17388:6630773,31013778 -(1,17388:6630773,31013778:25952256,3520736,616038 -(1,17388:6630773,31629816:25952256,4136774,0 -[1,17388:6630773,31629816:25952256,4136774,0 -(1,17388:6630773,31603602:25952256,4084346,0 -r1,17404:6656987,31603602:26214,4084346,0 -[1,17388:6656987,31603602:25899828,4084346,0 -(1,17388:6656987,31013778:25899828,2904698,0 -[1,17388:7246811,31013778:24720180,2904698,0 -(1,17388:7246811,29196454:24720180,1087374,126483 -k1,17387:8632290,29196454:175776 -k1,17387:11597935,29196454:175777 -(1,17387:11597935,29196454:0,459977,115847 -r1,17404:15473319,29196454:3875384,575824,115847 -k1,17387:11597935,29196454:-3875384 -) -(1,17387:11597935,29196454:3875384,459977,115847 -k1,17387:11597935,29196454:3277 -h1,17387:15470042,29196454:0,411205,112570 -) -k1,17387:15649095,29196454:175776 -k1,17387:16929153,29196454:175776 -k1,17387:17852696,29196454:175777 -k1,17387:19541698,29196454:175776 -k1,17387:20368902,29196454:175776 -k1,17387:23568509,29196454:175776 -k1,17387:24100146,29196454:175777 -k1,17387:25258962,29196454:175776 -k1,17387:26883084,29196454:175776 -k1,17387:28626482,29196454:175777 -k1,17387:29590656,29196454:175776 -k1,17388:31966991,29196454:0 -) -(1,17388:7246811,30037942:24720180,505283,134348 -k1,17387:9190199,30037942:179159 -k1,17387:9985396,30037942:179159 -k1,17387:10520415,30037942:179159 -k1,17387:11937549,30037942:179159 -k1,17387:13401214,30037942:179159 -k1,17387:14111870,30037942:179159 -k1,17387:16960310,30037942:179159 -k1,17387:19172395,30037942:179158 -k1,17387:20719946,30037942:179159 -k1,17387:22445755,30037942:179159 -k1,17387:23237676,30037942:179159 -k1,17387:24435920,30037942:179159 -k1,17387:26003132,30037942:179159 -k1,17387:27680444,30037942:179159 -k1,17387:29051048,30037942:179159 -k1,17387:30573040,30037942:179159 -k1,17387:31966991,30037942:0 -) -(1,17388:7246811,30879430:24720180,513147,134348 -k1,17387:8448893,30879430:182997 -k1,17387:11327385,30879430:182996 -k1,17387:12161810,30879430:182997 -k1,17387:15281474,30879430:182996 -k1,17387:17156611,30879430:182997 -k1,17387:19118255,30879430:182997 -k1,17387:20585757,30879430:182996 -k1,17387:22269528,30879430:182997 -k1,17387:23068563,30879430:182997 -k1,17387:24270644,30879430:182996 -k1,17387:27529901,30879430:182997 -k1,17387:28883370,30879430:182996 -k1,17387:30057927,30879430:182997 -k1,17388:31966991,30879430:0 -k1,17388:31966991,30879430:0 -) -] -) -] -r1,17404:32583029,31603602:26214,4084346,0 -) -] -) -) -g1,17388:32583029,31013778 -) -h1,17388:6630773,31629816:0,0,0 -(1,17391:6630773,34961672:25952256,32768,229376 -(1,17391:6630773,34961672:0,32768,229376 -(1,17391:6630773,34961672:5505024,32768,229376 -r1,17404:12135797,34961672:5505024,262144,229376 -) -k1,17391:6630773,34961672:-5505024 -) -(1,17391:6630773,34961672:25952256,32768,0 -r1,17404:32583029,34961672:25952256,32768,0 -) -) -(1,17391:6630773,36566000:25952256,615776,161218 -(1,17391:6630773,36566000:1974731,582746,14155 -g1,17391:6630773,36566000 -g1,17391:8605504,36566000 -) -g1,17391:12197926,36566000 -g1,17391:13907629,36566000 -g1,17391:16972355,36566000 -g1,17391:18443770,36566000 -k1,17391:32583029,36566000:9359325 -g1,17391:32583029,36566000 -) -(1,17394:6630773,37800704:25952256,513147,134348 -k1,17393:9807054,37800704:160970 -k1,17393:10584063,37800704:160971 -k1,17393:11764118,37800704:160970 -k1,17393:13147991,37800704:160971 -k1,17393:13968253,37800704:160970 -k1,17393:15332465,37800704:160971 -k1,17393:17911058,37800704:160970 -k1,17393:19164514,37800704:160971 -k1,17393:20011646,37800704:160970 -k1,17393:20943320,37800704:160971 -k1,17393:24176618,37800704:160970 -k1,17393:25285240,37800704:160971 -k1,17393:26465295,37800704:160970 -(1,17393:26465295,37800704:0,459977,115847 -r1,17404:27878696,37800704:1413401,575824,115847 -k1,17393:26465295,37800704:-1413401 -) -(1,17393:26465295,37800704:1413401,459977,115847 -k1,17393:26465295,37800704:3277 -h1,17393:27875419,37800704:0,411205,112570 -) -k1,17393:28039667,37800704:160971 -k1,17393:30329246,37800704:160970 -k1,17394:32583029,37800704:0 -) -(1,17394:6630773,38642192:25952256,505283,134348 -k1,17393:8096704,38642192:225990 -k1,17393:10182606,38642192:225990 -k1,17393:12187243,38642192:225990 -k1,17393:13096118,38642192:225990 -k1,17393:15107309,38642192:225990 -k1,17393:16524744,38642192:225990 -k1,17393:19676260,38642192:225989 -k1,17393:20921335,38642192:225990 -k1,17393:23549875,38642192:225990 -k1,17393:24458750,38642192:225990 -k1,17393:26942455,38642192:225990 -k1,17393:30573040,38642192:225990 -k1,17393:32583029,38642192:0 -) -(1,17394:6630773,39483680:25952256,513147,126483 -k1,17393:7836554,39483680:186696 -k1,17393:9122943,39483680:186695 -k1,17393:9961067,39483680:186696 -k1,17393:10503622,39483680:186695 -k1,17393:13559484,39483680:186696 -k1,17393:17218933,39483680:186696 -k1,17393:17863725,39483680:186695 -k1,17393:18581918,39483680:186696 -k1,17393:21877642,39483680:186696 -k1,17393:22715765,39483680:186695 -k1,17393:24314762,39483680:186696 -k1,17393:25184342,39483680:186695 -k1,17393:26985845,39483680:186696 -k1,17393:27528401,39483680:186696 -k1,17393:28941275,39483680:186695 -k1,17393:30111011,39483680:186696 -k1,17394:32583029,39483680:0 -) -(1,17394:6630773,40325168:25952256,513147,126483 -k1,17393:8577811,40325168:188052 -k1,17393:9922573,40325168:188052 -k1,17393:11314521,40325168:188052 -k1,17393:12185458,40325168:188052 -k1,17393:14446414,40325168:188052 -k1,17393:15247228,40325168:188052 -k1,17393:15791140,40325168:188052 -k1,17393:17578270,40325168:188052 -k1,17393:18394156,40325168:188051 -k1,17393:20075774,40325168:188052 -k1,17393:21961208,40325168:188052 -k1,17393:22607357,40325168:188052 -k1,17393:23326906,40325168:188052 -k1,17393:25116658,40325168:188052 -k1,17393:27857337,40325168:188052 -k1,17393:28696817,40325168:188052 -k1,17393:30392852,40325168:188052 -k1,17393:31599989,40325168:188052 -k1,17393:32583029,40325168:0 -) -(1,17394:6630773,41166656:25952256,505283,134348 -k1,17393:8462101,41166656:253876 -k1,17393:11351180,41166656:253876 -k1,17393:13347658,41166656:253876 -k1,17393:14792980,41166656:253877 -k1,17393:16657731,41166656:253876 -k1,17393:17930692,41166656:253876 -k1,17393:21690744,41166656:253876 -k1,17393:23320221,41166656:253876 -k1,17393:25272135,41166656:253876 -k1,17393:25984109,41166656:253877 -k1,17393:26769482,41166656:253876 -k1,17393:27832728,41166656:253876 -k1,17393:30111011,41166656:253876 -k1,17393:32583029,41166656:0 -) -(1,17394:6630773,42008144:25952256,513147,115847 -k1,17393:7896445,42008144:215785 -(1,17393:7896445,42008144:0,452978,115847 -r1,17404:13882100,42008144:5985655,568825,115847 -k1,17393:7896445,42008144:-5985655 -) -(1,17393:7896445,42008144:5985655,452978,115847 -k1,17393:7896445,42008144:3277 -h1,17393:13878823,42008144:0,411205,112570 -) -k1,17393:14097884,42008144:215784 -k1,17393:15261320,42008144:215785 -k1,17393:17594573,42008144:215785 -k1,17393:19632914,42008144:215785 -k1,17393:20867783,42008144:215784 -k1,17393:23425825,42008144:215785 -k1,17393:26667407,42008144:215785 -k1,17393:29667160,42008144:215784 -k1,17393:31074390,42008144:215785 -k1,17393:32583029,42008144:0 -) -(1,17394:6630773,42849632:25952256,513147,126483 -k1,17393:9583638,42849632:193144 -k1,17393:10392820,42849632:193144 -k1,17393:13348307,42849632:193144 -k1,17393:14909842,42849632:193143 -k1,17393:15730821,42849632:193144 -k1,17393:16943050,42849632:193144 -k1,17393:18520314,42849632:193144 -k1,17393:21374875,42849632:193144 -k1,17393:22436371,42849632:193144 -k1,17393:24206967,42849632:193144 -k1,17393:24755970,42849632:193143 -k1,17393:25932154,42849632:193144 -k1,17393:29805145,42849632:193144 -k1,17393:31410590,42849632:193144 -k1,17393:32583029,42849632:0 -) -(1,17394:6630773,43691120:25952256,513147,126483 -k1,17393:8471943,43691120:168691 -k1,17393:9946767,43691120:168691 -k1,17393:11134544,43691120:168692 -k1,17393:12375404,43691120:168691 -k1,17393:13700805,43691120:168691 -k1,17393:15263447,43691120:168691 -k1,17393:17815027,43691120:168691 -k1,17393:20662175,43691120:168692 -k1,17393:22264794,43691120:168691 -k1,17393:23049523,43691120:168691 -k1,17393:23574074,43691120:168691 -k1,17393:26445471,43691120:168692 -k1,17393:27713856,43691120:168691 -k1,17393:28533975,43691120:168691 -(1,17393:28533975,43691120:0,452978,115847 -r1,17404:32409359,43691120:3875384,568825,115847 -k1,17393:28533975,43691120:-3875384 -) -(1,17393:28533975,43691120:3875384,452978,115847 -k1,17393:28533975,43691120:3277 -h1,17393:32406082,43691120:0,411205,112570 -) -k1,17393:32583029,43691120:0 -) -(1,17394:6630773,44532608:25952256,513147,126483 -g1,17393:7849087,44532608 -g1,17393:9220755,44532608 -g1,17393:10918792,44532608 -g1,17393:11800906,44532608 -g1,17393:14403340,44532608 -g1,17393:15996520,44532608 -g1,17393:17758783,44532608 -g1,17393:19149457,44532608 -g1,17393:21321320,44532608 -g1,17393:23131424,44532608 -g1,17393:24349738,44532608 -k1,17394:32583029,44532608:4553444 -g1,17394:32583029,44532608 -) -v1,17396:6630773,45723074:0,393216,0 -] -(1,17404:32583029,45706769:0,0,0 -g1,17404:32583029,45706769 -) -) -] -(1,17404:6630773,47279633:25952256,0,0 -h1,17404:6630773,47279633:25952256,0,0 -) -] -(1,17404:4262630,4025873:0,0,0 -[1,17404:-473656,4025873:0,0,0 -(1,17404:-473656,-710413:0,0,0 -(1,17404:-473656,-710413:0,0,0 -g1,17404:-473656,-710413 -) -g1,17404:-473656,-710413 -) -] -) -] -!22932 -}341 -Input:2814:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2815:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2816:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2817:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2818:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2819:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2820:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2821:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2822:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2823:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2824:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2825:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1116 -{342 -[1,17476:4262630,47279633:28320399,43253760,0 -(1,17476:4262630,4025873:0,0,0 -[1,17476:-473656,4025873:0,0,0 -(1,17476:-473656,-710413:0,0,0 -(1,17476:-473656,-644877:0,0,0 -k1,17476:-473656,-644877:-65536 -) -(1,17476:-473656,4736287:0,0,0 -k1,17476:-473656,4736287:5209943 -) -g1,17476:-473656,-710413 -) -] -) -[1,17476:6630773,47279633:25952256,43253760,0 -[1,17476:6630773,4812305:25952256,786432,0 -(1,17476:6630773,4812305:25952256,513147,126483 -(1,17476:6630773,4812305:25952256,513147,126483 -g1,17476:3078558,4812305 -[1,17476:3078558,4812305:0,0,0 -(1,17476:3078558,2439708:0,1703936,0 -k1,17476:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,17476:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,17476:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 -) -] -) -) -) -] -[1,17476:3078558,4812305:0,0,0 -(1,17476:3078558,2439708:0,1703936,0 -g1,17476:29030814,2439708 -g1,17476:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,17476:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 -) -] -) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,17476:37855564,2439708:1179648,16384,0 -) -) -k1,17476:3078556,2439708:-34777008 -) -] -[1,17476:3078558,4812305:0,0,0 -(1,17476:3078558,49800853:0,16384,2228224 -k1,17476:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,17476:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,17476:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 -) -] -) -) -) -] -[1,17476:3078558,4812305:0,0,0 -(1,17476:3078558,49800853:0,16384,2228224 -g1,17476:29030814,49800853 -g1,17476:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,17476:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 -) -] -) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,17476:37855564,49800853:1179648,16384,0 -) -) -k1,17476:3078556,49800853:-34777008 -) -] -g1,17476:6630773,4812305 -g1,17476:6630773,4812305 -g1,17476:9744388,4812305 -g1,17476:11175694,4812305 -k1,17476:31387652,4812305:20211958 -) -) -] -[1,17476:6630773,45706769:25952256,40108032,0 -(1,17476:6630773,45706769:25952256,40108032,0 -(1,17476:6630773,45706769:0,0,0 -g1,17476:6630773,45706769 -) -[1,17476:6630773,45706769:25952256,40108032,0 -v1,17404:6630773,6254097:0,393216,0 -(1,17404:6630773,7948211:25952256,2087330,196608 -g1,17404:6630773,7948211 -g1,17404:6630773,7948211 -g1,17404:6434165,7948211 -(1,17404:6434165,7948211:0,2087330,196608 -r1,17476:32779637,7948211:26345472,2283938,196608 -k1,17404:6434165,7948211:-26345472 -) -(1,17404:6434165,7948211:26345472,2087330,196608 -[1,17404:6630773,7948211:25952256,1890722,0 -(1,17398:6630773,6468007:25952256,410518,107478 -(1,17397:6630773,6468007:0,0,0 -g1,17397:6630773,6468007 -g1,17397:6630773,6468007 -g1,17397:6303093,6468007 -(1,17397:6303093,6468007:0,0,0 -) -g1,17397:6630773,6468007 -) -g1,17398:7579210,6468007 -g1,17398:8527648,6468007 -g1,17398:21489621,6468007 -g1,17398:23070350,6468007 -g1,17398:23702642,6468007 -g1,17398:25283371,6468007 -g1,17398:25915663,6468007 -g1,17398:27496392,6468007 -g1,17398:28760975,6468007 -k1,17398:28760975,6468007:11010 -h1,17398:30985005,6468007:0,0,0 -k1,17398:32583029,6468007:1598024 -g1,17398:32583029,6468007 -) -(1,17399:6630773,7134185:25952256,410518,82312 -h1,17399:6630773,7134185:0,0,0 -g1,17399:11056813,7134185 -g1,17399:11689105,7134185 -g1,17399:12321397,7134185 -h1,17399:13269834,7134185:0,0,0 -k1,17399:32583030,7134185:19313196 -g1,17399:32583030,7134185 -) -(1,17403:6630773,7865899:25952256,404226,82312 -(1,17401:6630773,7865899:0,0,0 -g1,17401:6630773,7865899 -g1,17401:6630773,7865899 -g1,17401:6303093,7865899 -(1,17401:6303093,7865899:0,0,0 -) -g1,17401:6630773,7865899 -) -g1,17403:7579210,7865899 -g1,17403:8843793,7865899 -k1,17403:8843793,7865899:0 -h1,17403:15482851,7865899:0,0,0 -k1,17403:32583029,7865899:17100178 -g1,17403:32583029,7865899 -) -] -) -g1,17404:32583029,7948211 -g1,17404:6630773,7948211 -g1,17404:6630773,7948211 -g1,17404:32583029,7948211 -g1,17404:32583029,7948211 -) -h1,17404:6630773,8144819:0,0,0 -v1,17408:6630773,9859573:0,393216,0 -(1,17418:6630773,12202756:25952256,2736399,196608 -g1,17418:6630773,12202756 -g1,17418:6630773,12202756 -g1,17418:6434165,12202756 -(1,17418:6434165,12202756:0,2736399,196608 -r1,17476:32779637,12202756:26345472,2933007,196608 -k1,17418:6434165,12202756:-26345472 -) -(1,17418:6434165,12202756:26345472,2736399,196608 -[1,17418:6630773,12202756:25952256,2539791,0 -(1,17410:6630773,10073483:25952256,410518,82312 -(1,17409:6630773,10073483:0,0,0 -g1,17409:6630773,10073483 -g1,17409:6630773,10073483 -g1,17409:6303093,10073483 -(1,17409:6303093,10073483:0,0,0 -) -g1,17409:6630773,10073483 -) -k1,17410:6630773,10073483:0 -g1,17410:11056813,10073483 -g1,17410:11689105,10073483 -g1,17410:12321397,10073483 -h1,17410:13269834,10073483:0,0,0 -k1,17410:32583030,10073483:19313196 -g1,17410:32583030,10073483 -) -(1,17414:6630773,10805197:25952256,404226,82312 -(1,17412:6630773,10805197:0,0,0 -g1,17412:6630773,10805197 -g1,17412:6630773,10805197 -g1,17412:6303093,10805197 -(1,17412:6303093,10805197:0,0,0 -) -g1,17412:6630773,10805197 -) -g1,17414:7579210,10805197 -g1,17414:8843793,10805197 -g1,17414:14850561,10805197 -g1,17414:19908891,10805197 -h1,17414:20541182,10805197:0,0,0 -k1,17414:32583029,10805197:12041847 -g1,17414:32583029,10805197 -) -(1,17416:6630773,12126735:25952256,410518,76021 -(1,17415:6630773,12126735:0,0,0 -g1,17415:6630773,12126735 -g1,17415:6630773,12126735 -g1,17415:6303093,12126735 -(1,17415:6303093,12126735:0,0,0 -) -g1,17415:6630773,12126735 -) -k1,17416:6630773,12126735:0 -h1,17416:9476084,12126735:0,0,0 -k1,17416:32583028,12126735:23106944 -g1,17416:32583028,12126735 -) -] -) -g1,17418:32583029,12202756 -g1,17418:6630773,12202756 -g1,17418:6630773,12202756 -g1,17418:32583029,12202756 -g1,17418:32583029,12202756 -) -h1,17418:6630773,12399364:0,0,0 -(1,17422:6630773,13765140:25952256,513147,115847 -h1,17421:6630773,13765140:983040,0,0 -k1,17421:9649940,13765140:252892 -k1,17421:10317621,13765140:252838 -k1,17421:11102010,13765140:252892 -k1,17421:12868128,13765140:252892 -k1,17421:13737058,13765140:252892 -k1,17421:15751558,13765140:252892 -k1,17421:17960700,13765140:252892 -k1,17421:19232677,13765140:252892 -k1,17421:21399219,13765140:252891 -(1,17421:21399219,13765140:0,452978,115847 -r1,17476:23164332,13765140:1765113,568825,115847 -k1,17421:21399219,13765140:-1765113 -) -(1,17421:21399219,13765140:1765113,452978,115847 -k1,17421:21399219,13765140:3277 -h1,17421:23161055,13765140:0,411205,112570 -) -k1,17421:23590894,13765140:252892 -(1,17421:23590894,13765140:0,452978,115847 -r1,17476:25707719,13765140:2116825,568825,115847 -k1,17421:23590894,13765140:-2116825 -) -(1,17421:23590894,13765140:2116825,452978,115847 -k1,17421:23590894,13765140:3277 -h1,17421:25704442,13765140:0,411205,112570 -) -k1,17421:25960611,13765140:252892 -k1,17421:27404948,13765140:252892 -(1,17421:27404948,13765140:0,452978,115847 -r1,17476:30225197,13765140:2820249,568825,115847 -k1,17421:27404948,13765140:-2820249 -) -(1,17421:27404948,13765140:2820249,452978,115847 -k1,17421:27404948,13765140:3277 -h1,17421:30221920,13765140:0,411205,112570 -) -k1,17421:30478089,13765140:252892 -k1,17421:31835263,13765140:252892 -k1,17421:32583029,13765140:0 -) -(1,17422:6630773,14606628:25952256,513147,126483 -k1,17421:9377639,14606628:227662 -k1,17421:10796746,14606628:227662 -k1,17421:12413771,14606628:227662 -k1,17421:14053734,14606628:227662 -k1,17421:16022688,14606628:227662 -k1,17421:16933235,14606628:227662 -k1,17421:19447447,14606628:227661 -k1,17421:20500207,14606628:227662 -k1,17421:22602199,14606628:227662 -k1,17421:25701648,14606628:227662 -k1,17421:28368560,14606628:227662 -k1,17421:29787667,14606628:227662 -k1,17421:31858201,14606628:227662 -k1,17421:32583029,14606628:0 -) -(1,17422:6630773,15448116:25952256,513147,134348 -k1,17421:9316876,15448116:193769 -k1,17421:10162073,15448116:193769 -k1,17421:10809345,15448116:193763 -k1,17421:15504782,15448116:193769 -k1,17421:17380205,15448116:193769 -k1,17421:18593059,15448116:193769 -k1,17421:19879313,15448116:193769 -k1,17421:20740237,15448116:193768 -k1,17421:21348844,15448116:193764 -k1,17421:23703990,15448116:193769 -k1,17421:24583921,15448116:193769 -k1,17421:26359073,15448116:193768 -k1,17421:27168880,15448116:193769 -k1,17421:28752012,15448116:193769 -k1,17421:30666101,15448116:193769 -k1,17421:32583029,15448116:0 -) -(1,17422:6630773,16289604:25952256,505283,126483 -g1,17421:7516164,16289604 -g1,17421:9218134,16289604 -g1,17421:11578740,16289604 -g1,17421:13664095,16289604 -g1,17421:15315602,16289604 -g1,17421:16706276,16289604 -g1,17421:18607475,16289604 -k1,17422:32583029,16289604:12607162 -g1,17422:32583029,16289604 -) -(1,17423:6630773,19097172:25952256,32768,229376 -(1,17423:6630773,19097172:0,32768,229376 -(1,17423:6630773,19097172:5505024,32768,229376 -r1,17476:12135797,19097172:5505024,262144,229376 -) -k1,17423:6630773,19097172:-5505024 -) -(1,17423:6630773,19097172:25952256,32768,0 -r1,17476:32583029,19097172:25952256,32768,0 -) -) -(1,17423:6630773,20701500:25952256,615776,14155 -(1,17423:6630773,20701500:1974731,582746,14155 -g1,17423:6630773,20701500 -g1,17423:8605504,20701500 -) -g1,17423:12555752,20701500 -k1,17423:32583030,20701500:18389140 -g1,17423:32583030,20701500 -) -(1,17426:6630773,21936204:25952256,513147,134348 -k1,17425:7509711,21936204:251103 -k1,17425:10267567,21936204:251104 -k1,17425:11744849,21936204:251103 -k1,17425:13309295,21936204:251104 -k1,17425:14551958,21936204:251103 -k1,17425:15822147,21936204:251104 -k1,17425:17674950,21936204:251103 -k1,17425:20595335,21936204:251104 -k1,17425:23830948,21936204:251103 -k1,17425:24733480,21936204:251104 -k1,17425:26373946,21936204:251103 -k1,17425:28972550,21936204:251104 -k1,17425:30295822,21936204:251103 -k1,17425:32583029,21936204:0 -) -(1,17426:6630773,22777692:25952256,513147,126483 -k1,17425:8125649,22777692:209060 -k1,17425:9353793,22777692:209059 -k1,17425:11058385,22777692:209060 -k1,17425:13820072,22777692:209060 -k1,17425:15423083,22777692:209060 -k1,17425:17956704,22777692:209059 -k1,17425:18817192,22777692:209060 -k1,17425:20045337,22777692:209060 -k1,17425:21523174,22777692:209060 -k1,17425:22391525,22777692:209059 -k1,17425:23619670,22777692:209060 -k1,17425:24985440,22777692:209060 -k1,17425:26598281,22777692:209060 -k1,17425:28120682,22777692:209059 -k1,17425:29321302,22777692:209060 -k1,17425:32583029,22777692:0 -) -(1,17426:6630773,23619180:25952256,513147,126483 -k1,17425:7482928,23619180:192863 -k1,17425:10354903,23619180:192863 -k1,17425:14026417,23619180:192863 -k1,17425:15600124,23619180:192863 -k1,17425:17839021,23619180:192863 -k1,17425:19670939,23619180:192863 -k1,17425:21258407,23619180:192862 -k1,17425:22102698,23619180:192863 -k1,17425:23521740,23619180:192863 -k1,17425:25108554,23619180:192863 -k1,17425:26527596,23619180:192863 -k1,17425:28959824,23619180:192863 -k1,17425:30344132,23619180:192863 -k1,17425:31931601,23619180:192863 -k1,17425:32583029,23619180:0 -) -(1,17426:6630773,24460668:25952256,513147,134348 -k1,17425:8249631,24460668:206557 -k1,17425:10023810,24460668:206558 -k1,17425:13302695,24460668:206557 -k1,17425:15795804,24460668:206558 -k1,17425:16618399,24460668:206557 -k1,17425:18426657,24460668:206558 -k1,17425:22985460,24460668:206557 -k1,17425:26538286,24460668:206558 -k1,17425:27668901,24460668:206557 -k1,17425:28894544,24460668:206558 -k1,17425:30803071,24460668:206557 -k1,17425:32583029,24460668:0 -) -(1,17426:6630773,25302156:25952256,513147,134348 -k1,17425:8246941,25302156:285787 -k1,17425:9551813,25302156:285787 -k1,17425:11226963,25302156:285787 -k1,17425:14191863,25302156:285788 -k1,17425:15163812,25302156:285787 -k1,17425:18754580,25302156:285787 -k1,17425:19571864,25302156:285787 -k1,17425:22703224,25302156:285787 -k1,17425:24093293,25302156:285787 -k1,17425:25126847,25302156:285788 -k1,17425:27267303,25302156:285787 -k1,17425:28362460,25302156:285787 -k1,17425:29820686,25302156:285787 -k1,17425:32583029,25302156:0 -) -(1,17426:6630773,26143644:25952256,513147,134348 -k1,17425:10663799,26143644:197204 -k1,17425:14036222,26143644:197204 -k1,17425:14916311,26143644:197204 -k1,17425:16848908,26143644:197204 -k1,17425:17401972,26143644:197204 -k1,17425:19996483,26143644:197204 -k1,17425:23168366,26143644:197204 -k1,17425:24051732,26143644:197204 -k1,17425:24604796,26143644:197204 -k1,17425:28013919,26143644:197204 -k1,17425:29407810,26143644:197204 -k1,17425:32583029,26143644:0 -) -(1,17426:6630773,26985132:25952256,505283,126483 -k1,17425:9795406,26985132:180123 -k1,17425:10507026,26985132:180123 -k1,17425:12337346,26985132:180123 -k1,17425:14872833,26985132:180123 -k1,17425:16125125,26985132:180123 -k1,17425:18467936,26985132:180123 -k1,17425:22198800,26985132:180123 -k1,17425:23030351,26985132:180123 -k1,17425:25761135,26985132:180123 -k1,17425:26627420,26985132:180123 -k1,17425:27826628,26985132:180123 -k1,17425:30017396,26985132:180123 -k1,17425:31315563,26985132:180123 -k1,17425:32583029,26985132:0 -) -(1,17426:6630773,27826620:25952256,513147,134348 -k1,17425:8284355,27826620:201960 -k1,17425:10361955,27826620:201960 -k1,17425:13123097,27826620:201961 -k1,17425:13984349,27826620:201960 -k1,17425:15575672,27826620:201960 -k1,17425:17815802,27826620:201960 -k1,17425:19753155,27826620:201960 -k1,17425:20310975,27826620:201960 -k1,17425:23688155,27826620:201961 -k1,17425:26874625,27826620:201960 -k1,17425:29698680,27826620:201960 -k1,17425:31931601,27826620:201960 -k1,17425:32583029,27826620:0 -) -(1,17426:6630773,28668108:25952256,513147,11795 -k1,17425:7231593,28668108:244960 -k1,17425:9656937,28668108:244961 -k1,17425:12984055,28668108:244960 -k1,17425:14420460,28668108:244960 -k1,17425:15872593,28668108:244960 -k1,17425:18894970,28668108:244961 -k1,17425:19755968,28668108:244960 -k1,17425:23173480,28668108:244914 -k1,17425:24609886,28668108:244961 -k1,17425:27092855,28668108:244914 -k1,17425:27950577,28668108:244960 -k1,17425:29214623,28668108:244961 -k1,17425:30884991,28668108:244960 -k1,17425:32583029,28668108:0 -) -(1,17426:6630773,29509596:25952256,513147,126483 -k1,17425:8785697,29509596:156076 -k1,17425:10670614,29509596:156077 -k1,17425:12330741,29509596:156076 -k1,17425:14000043,29509596:156076 -k1,17425:14807548,29509596:156077 -k1,17425:16581053,29509596:156076 -k1,17425:18300163,29509596:156076 -k1,17425:19084074,29509596:156076 -k1,17425:20259236,29509596:156077 -k1,17425:21782393,29509596:156076 -k1,17425:22597761,29509596:156076 -k1,17425:26296059,29509596:156077 -k1,17425:29214478,29509596:156076 -k1,17425:32583029,29509596:0 -) -(1,17426:6630773,30351084:25952256,505283,134348 -k1,17425:7801010,30351084:178677 -k1,17425:8595724,30351084:178676 -k1,17425:11551817,30351084:178677 -k1,17425:12996649,30351084:178676 -k1,17425:18957568,30351084:178677 -k1,17425:21146889,30351084:178676 -k1,17425:23008511,30351084:178657 -k1,17425:26418767,30351084:178676 -k1,17425:27689929,30351084:178677 -k1,17425:29724585,30351084:178676 -k1,17425:30259122,30351084:178677 -k1,17425:32583029,30351084:0 -) -(1,17426:6630773,31192572:25952256,513147,126483 -k1,17425:7497993,31192572:184335 -k1,17425:10923738,31192572:184334 -k1,17425:11759501,31192572:184335 -k1,17425:14646541,31192572:184335 -k1,17425:15849960,31192572:184334 -k1,17425:17768378,31192572:184335 -k1,17425:18635597,31192572:184334 -k1,17425:21706793,31192572:184335 -k1,17425:25171205,31192572:184335 -k1,17425:26038424,31192572:184334 -k1,17425:30572384,31192572:184335 -k1,17425:32583029,31192572:0 -) -(1,17426:6630773,32034060:25952256,505283,126483 -k1,17425:8485638,32034060:192872 -k1,17425:9771001,32034060:192878 -k1,17425:10982964,32034060:192878 -k1,17425:12189028,32034060:192877 -k1,17425:15356585,32034060:192878 -k1,17425:16235625,32034060:192878 -k1,17425:16784363,32034060:192878 -k1,17425:19360130,32034060:192878 -k1,17425:22764927,32034060:192878 -k1,17425:26430558,32034060:192878 -k1,17425:28364728,32034060:192878 -k1,17425:30345428,32034060:192878 -k1,17425:31069803,32034060:192878 -k1,17425:32583029,32034060:0 -) -(1,17426:6630773,32875548:25952256,505283,126483 -g1,17425:7516164,32875548 -g1,17425:8071253,32875548 -g1,17425:11482401,32875548 -g1,17425:13283330,32875548 -g1,17425:16826206,32875548 -g1,17425:18723473,32875548 -g1,17425:19688818,32875548 -g1,17425:21898692,32875548 -g1,17425:23089481,32875548 -g1,17425:23940138,32875548 -g1,17425:24887133,32875548 -g1,17425:28247163,32875548 -g1,17425:29097820,32875548 -(1,17425:29097820,32875548:0,452978,115847 -r1,17476:31566357,32875548:2468537,568825,115847 -k1,17425:29097820,32875548:-2468537 -) -(1,17425:29097820,32875548:2468537,452978,115847 -k1,17425:29097820,32875548:3277 -h1,17425:31563080,32875548:0,411205,112570 -) -k1,17426:32583029,32875548:843002 -g1,17426:32583029,32875548 -) -v1,17428:6630773,34241324:0,393216,0 -(1,17476:6630773,45016747:25952256,11168639,589824 -g1,17476:6630773,45016747 -(1,17476:6630773,45016747:25952256,11168639,589824 -(1,17476:6630773,45606571:25952256,11758463,0 -[1,17476:6630773,45606571:25952256,11758463,0 -(1,17476:6630773,45606571:25952256,11732249,0 -r1,17476:6656987,45606571:26214,11732249,0 -[1,17476:6656987,45606571:25899828,11732249,0 -(1,17476:6656987,45016747:25899828,10552601,0 -[1,17476:7246811,45016747:24720180,10552601,0 -(1,17429:7246811,35626031:24720180,1161885,196608 -(1,17428:7246811,35626031:0,1161885,196608 -r1,17476:8794447,35626031:1547636,1358493,196608 -k1,17428:7246811,35626031:-1547636 -) -(1,17428:7246811,35626031:1547636,1161885,196608 -) -k1,17428:8994995,35626031:200548 -k1,17428:10376537,35626031:205826 -k1,17428:11372727,35626031:205826 -k1,17428:12855194,35626031:205826 -k1,17428:14426135,35626031:205826 -k1,17428:15667430,35626031:205826 -k1,17428:17428425,35626031:205826 -k1,17428:19596364,35626031:200548 -k1,17428:21580148,35626031:200549 -k1,17428:24183246,35626031:200548 -k1,17428:25609973,35626031:200548 -k1,17428:27297533,35626031:200548 -k1,17428:28689527,35626031:200549 -k1,17428:31152378,35626031:200548 -k1,17429:31966991,35626031:0 -) -(1,17429:7246811,36467519:24720180,513147,134348 -k1,17428:8831635,36467519:164659 -k1,17428:10309636,36467519:164659 -k1,17428:12359766,36467519:164659 -k1,17428:13861359,36467519:164659 -k1,17428:16397766,36467519:164659 -k1,17428:19887066,36467519:164659 -k1,17428:21277905,36467519:164660 -k1,17428:23812346,36467519:164659 -k1,17428:25631789,36467519:164659 -k1,17428:26327945,36467519:164659 -k1,17428:29346042,36467519:164659 -k1,17428:30458352,36467519:164659 -k1,17428:31966991,36467519:0 -) -(1,17429:7246811,37309007:24720180,513147,134348 -k1,17428:13068739,37309007:225153 -k1,17428:15408082,37309007:225152 -k1,17428:16652320,37309007:225153 -k1,17428:19059166,37309007:225152 -k1,17428:22532283,37309007:225153 -k1,17428:24028833,37309007:225152 -k1,17428:27031402,37309007:225153 -k1,17428:29365503,37309007:225152 -k1,17428:30249948,37309007:225153 -k1,17429:31966991,37309007:0 -) -(1,17429:7246811,38150495:24720180,505283,102891 -k1,17428:9140335,38150495:217113 -k1,17428:9888944,38150495:217112 -k1,17428:11390563,38150495:217113 -k1,17428:13990564,38150495:217112 -k1,17428:16712463,38150495:217113 -k1,17428:17921135,38150495:217112 -k1,17428:18789676,38150495:217113 -k1,17428:19754555,38150495:217113 -k1,17428:21383968,38150495:217112 -k1,17428:22287243,38150495:217113 -k1,17428:22919180,38150495:217094 -k1,17428:25378280,38150495:217113 -k1,17428:26413281,38150495:217112 -k1,17428:28663976,38150495:217113 -k1,17428:31966991,38150495:0 -) -(1,17429:7246811,38991983:24720180,513147,134348 -k1,17428:9047286,38991983:145691 -k1,17428:10184538,38991983:145692 -k1,17428:11997465,38991983:145691 -k1,17428:13902799,38991983:145692 -k1,17428:15542056,38991983:145691 -k1,17428:16373910,38991983:145692 -k1,17428:19239345,38991983:145691 -k1,17428:21503161,38991983:145692 -k1,17428:22331737,38991983:145691 -k1,17428:24671574,38991983:145692 -k1,17428:28122246,38991983:145691 -k1,17428:28733898,38991983:145691 -k1,17428:29898675,38991983:145692 -k1,17428:31966991,38991983:0 -) -(1,17429:7246811,39833471:24720180,513147,126483 -k1,17428:8409319,39833471:170948 -k1,17428:9231695,39833471:170948 -k1,17428:10150409,39833471:170948 -k1,17428:11834583,39833471:170948 -k1,17428:13399482,39833471:170948 -k1,17428:14589515,39833471:170948 -k1,17428:17039151,39833471:170949 -k1,17428:19467814,39833471:170948 -k1,17428:20562820,39833471:170948 -k1,17428:23089132,39833471:170948 -k1,17428:24952220,39833471:170948 -k1,17428:28148965,39833471:170948 -k1,17428:29452375,39833471:170948 -k1,17428:31966991,39833471:0 -) -(1,17429:7246811,40674959:24720180,505283,102891 -k1,17428:8118793,40674959:220554 -k1,17428:10836924,40674959:220554 -k1,17428:12076562,40674959:220553 -k1,17428:14539103,40674959:220554 -k1,17428:15831826,40674959:220554 -k1,17428:18084651,40674959:220554 -k1,17428:19545145,40674959:220553 -k1,17428:21311038,40674959:220554 -k1,17428:23025158,40674959:220554 -k1,17428:25314028,40674959:220554 -k1,17428:26526141,40674959:220553 -k1,17428:27945349,40674959:220554 -k1,17428:31350953,40674959:220554 -k1,17429:31966991,40674959:0 -) -(1,17429:7246811,41516447:24720180,513147,134348 -k1,17428:7895095,41516447:233441 -k1,17428:11818902,41516447:233475 -k1,17428:13124545,41516447:233474 -k1,17428:13713880,41516447:233475 -k1,17428:16141500,41516447:233475 -k1,17428:18459020,41516447:233475 -k1,17428:19223992,41516447:233475 -k1,17428:21755815,41516447:233475 -k1,17428:22640718,41516447:233475 -k1,17428:25172541,41516447:233475 -k1,17428:27045071,41516447:233475 -k1,17428:28846167,41516447:233475 -k1,17428:31966991,41516447:0 -) -(1,17429:7246811,42357935:24720180,513147,134348 -k1,17428:9489744,42357935:158888 -k1,17428:11585876,42357935:158888 -k1,17428:14303291,42357935:158889 -k1,17428:15970818,42357935:158888 -k1,17428:20575013,42357935:158888 -k1,17428:21420063,42357935:158888 -k1,17428:24933085,42357935:158889 -k1,17428:27854316,42357935:158888 -k1,17428:29455651,42357935:158888 -k1,17428:31966991,42357935:0 -) -(1,17429:7246811,43199423:24720180,513147,134348 -g1,17428:8128925,43199423 -g1,17428:11023650,43199423 -g1,17428:14562594,43199423 -g1,17428:15176666,43199423 -g1,17428:17430449,43199423 -g1,17428:18498030,43199423 -g1,17428:19744524,43199423 -g1,17428:21228259,43199423 -g1,17428:22807676,43199423 -g1,17428:24537171,43199423 -g1,17428:25387828,43199423 -g1,17428:26334823,43199423 -k1,17429:31966991,43199423:3219788 -g1,17429:31966991,43199423 -) -(1,17435:7246811,44040911:24720180,513147,134348 -h1,17430:7246811,44040911:983040,0,0 -k1,17430:10174085,44040911:227191 -k1,17430:11060569,44040911:227192 -k1,17430:12306845,44040911:227191 -k1,17430:14526331,44040911:227192 -k1,17430:15621874,44040911:227191 -k1,17430:17379331,44040911:227191 -k1,17430:18257951,44040911:227192 -k1,17430:19232908,44040911:227191 -k1,17430:20269470,44040911:227192 -k1,17430:21515746,44040911:227191 -k1,17430:23625131,44040911:227191 -k1,17430:24799974,44040911:227192 -k1,17430:26192395,44040911:227191 -k1,17431:27025140,44040911:227192 -k1,17431:31006233,44040911:227191 -k1,17435:31966991,44040911:0 -) -(1,17435:7246811,44882399:24720180,513147,134348 -k1,17431:9373400,44882399:239152 -k1,17431:10631637,44882399:239152 -k1,17431:13845467,44882399:239151 -k1,17431:16985898,44882399:239152 -k1,17431:20064070,44882399:239152 -k1,17431:21064750,44882399:239152 -k1,17431:22322986,44882399:239151 -k1,17431:25257634,44882399:239152 -k1,17431:27010012,44882399:239152 -k1,17431:27900592,44882399:239152 -k1,17431:29552044,44882399:239151 -k1,17431:30810281,44882399:239152 -k1,17431:31966991,44882399:0 -) -] -) -] -r1,17476:32583029,45606571:26214,11732249,0 -) -] -) -) -g1,17476:32583029,45016747 -) -] -(1,17476:32583029,45706769:0,0,0 -g1,17476:32583029,45706769 -) -) -] -(1,17476:6630773,47279633:25952256,0,0 -h1,17476:6630773,47279633:25952256,0,0 -) -] -(1,17476:4262630,4025873:0,0,0 -[1,17476:-473656,4025873:0,0,0 -(1,17476:-473656,-710413:0,0,0 -(1,17476:-473656,-710413:0,0,0 -g1,17476:-473656,-710413 -) -g1,17476:-473656,-710413 -) -] -) -] -!24363 -}342 -!12 -{343 -[1,17476:4262630,47279633:28320399,43253760,0 -(1,17476:4262630,4025873:0,0,0 -[1,17476:-473656,4025873:0,0,0 -(1,17476:-473656,-710413:0,0,0 -(1,17476:-473656,-644877:0,0,0 -k1,17476:-473656,-644877:-65536 -) -(1,17476:-473656,4736287:0,0,0 -k1,17476:-473656,4736287:5209943 -) -g1,17476:-473656,-710413 -) -] -) -[1,17476:6630773,47279633:25952256,43253760,0 -[1,17476:6630773,4812305:25952256,786432,0 -(1,17476:6630773,4812305:25952256,505283,126483 -(1,17476:6630773,4812305:25952256,505283,126483 -g1,17476:3078558,4812305 -[1,17476:3078558,4812305:0,0,0 -(1,17476:3078558,2439708:0,1703936,0 -k1,17476:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,17476:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,17476:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 -) -] -) -) -) -] -[1,17476:3078558,4812305:0,0,0 -(1,17476:3078558,2439708:0,1703936,0 -g1,17476:29030814,2439708 -g1,17476:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,17476:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 -) -] -) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,17476:37855564,2439708:1179648,16384,0 -) -) -k1,17476:3078556,2439708:-34777008 -) -] -[1,17476:3078558,4812305:0,0,0 -(1,17476:3078558,49800853:0,16384,2228224 -k1,17476:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,17476:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,17476:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 -) -] -) -) -) -] -[1,17476:3078558,4812305:0,0,0 -(1,17476:3078558,49800853:0,16384,2228224 -g1,17476:29030814,49800853 -g1,17476:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,17476:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 -) -] -) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,17476:37855564,49800853:1179648,16384,0 -) -) -k1,17476:3078556,49800853:-34777008 -) -] -g1,17476:6630773,4812305 -k1,17476:25146660,4812305:17320510 -g1,17476:26880087,4812305 -g1,17476:29193507,4812305 -g1,17476:30603186,4812305 -) -) -] -[1,17476:6630773,45706769:25952256,40108032,0 -(1,17476:6630773,45706769:25952256,40108032,0 -(1,17476:6630773,45706769:0,0,0 -g1,17476:6630773,45706769 -) -[1,17476:6630773,45706769:25952256,40108032,0 -v1,17476:6630773,6254097:0,393216,0 -(1,17476:6630773,45116945:25952256,39256064,616038 -g1,17476:6630773,45116945 -(1,17476:6630773,45116945:25952256,39256064,616038 -(1,17476:6630773,45732983:25952256,39872102,0 -[1,17476:6630773,45732983:25952256,39872102,0 -(1,17476:6630773,45706769:25952256,39845888,0 -r1,17476:6656987,45706769:26214,39845888,0 -[1,17476:6656987,45706769:25899828,39845888,0 -(1,17476:6656987,45116945:25899828,38666240,0 -[1,17476:7246811,45116945:24720180,38666240,0 -(1,17435:7246811,6963852:24720180,513147,134348 -k1,17431:8747824,6963852:309568 -k1,17431:10076477,6963852:309568 -k1,17431:13287324,6963852:309568 -k1,17431:15110118,6963852:309568 -k1,17431:16367337,6963852:309568 -k1,17431:18710488,6963852:309569 -k1,17431:20039141,6963852:309568 -k1,17431:24274316,6963852:309568 -k1,17431:27113574,6963852:309568 -k1,17431:28082434,6963852:309568 -k1,17431:31154345,6963852:309568 -k1,17435:31966991,6963852:0 -) -(1,17435:7246811,7805340:24720180,505283,134348 -k1,17431:9237378,7805340:244688 -k1,17432:10087618,7805340:244687 -k1,17432:12811533,7805340:244688 -k1,17432:13739105,7805340:244687 -k1,17432:16281485,7805340:244688 -k1,17432:19599155,7805340:244687 -k1,17432:21961967,7805340:244688 -k1,17432:24612481,7805340:244687 -k1,17432:25473207,7805340:244688 -k1,17432:26736979,7805340:244687 -k1,17432:29956346,7805340:244688 -k1,17432:31966991,7805340:0 -) -(1,17435:7246811,8646828:24720180,513147,126483 -k1,17432:8094906,8646828:165210 -k1,17432:10643006,8646828:165211 -k1,17432:15417363,8646828:165210 -k1,17432:16574133,8646828:165210 -k1,17432:18902031,8646828:165210 -k1,17432:21726038,8646828:165211 -k1,17432:23589286,8646828:165210 -k1,17432:25143859,8646828:165210 -k1,17432:27515666,8646828:165210 -k1,17432:28672437,8646828:165211 -k1,17432:31361438,8646828:165210 -k1,17433:31966991,8646828:0 -) -(1,17435:7246811,9488316:24720180,513147,134348 -k1,17433:10096776,9488316:205587 -k1,17433:12867441,9488316:205586 -k1,17433:15455917,9488316:205587 -k1,17433:18905535,9488316:205586 -k1,17433:21140117,9488316:205587 -k1,17433:23849834,9488316:205586 -k1,17433:26824972,9488316:205587 -k1,17433:27386418,9488316:205586 -k1,17433:29465024,9488316:205587 -k1,17433:31350953,9488316:205586 -k1,17433:31966991,9488316:0 -) -(1,17435:7246811,10329804:24720180,513147,134348 -k1,17433:7834505,10329804:231834 -k1,17433:10622897,10329804:231833 -k1,17433:12097294,10329804:231834 -k1,17433:13348212,10329804:231833 -k1,17433:15572996,10329804:231834 -k1,17433:17234170,10329804:231834 -k1,17433:18125295,10329804:231833 -k1,17433:20840944,10329804:231834 -k1,17433:23538897,10329804:231833 -k1,17433:26533729,10329804:231834 -k1,17433:27784647,10329804:231833 -k1,17433:30399370,10329804:231834 -k1,17433:31966991,10329804:0 -) -(1,17435:7246811,11171292:24720180,513147,134348 -k1,17433:9194672,11171292:209846 -k1,17433:12916591,11171292:209845 -k1,17433:13812599,11171292:209846 -k1,17433:16816245,11171292:209846 -k1,17434:17631644,11171292:209846 -k1,17434:21685831,11171292:209845 -k1,17434:24379492,11171292:209846 -k1,17434:26881787,11171292:209846 -k1,17434:27707670,11171292:209845 -(1,17434:27707670,11171292:0,414482,115847 -r1,17476:28769359,11171292:1061689,530329,115847 -k1,17434:27707670,11171292:-1061689 -) -(1,17434:27707670,11171292:1061689,414482,115847 -k1,17434:27707670,11171292:3277 -h1,17434:28766082,11171292:0,411205,112570 -) -k1,17434:28979205,11171292:209846 -k1,17434:31966991,11171292:0 -) -(1,17435:7246811,12012780:24720180,505283,134348 -g1,17434:9738489,12012780 -g1,17434:12639767,12012780 -g1,17434:13648366,12012780 -g1,17434:14866680,12012780 -g1,17434:16907471,12012780 -g1,17434:20156090,12012780 -g1,17434:21546764,12012780 -g1,17434:25193842,12012780 -g1,17434:28064318,12012780 -k1,17435:31966991,12012780:1217008 -g1,17435:31966991,12012780 -) -(1,17437:7246811,12854268:24720180,513147,134348 -h1,17436:7246811,12854268:983040,0,0 -k1,17436:8898973,12854268:191365 -k1,17436:10260811,12854268:191365 -k1,17436:13664751,12854268:191365 -k1,17436:16862909,12854268:191366 -k1,17436:18567500,12854268:191365 -k1,17436:21114229,12854268:191365 -k1,17436:22799160,12854268:191365 -k1,17436:23676687,12854268:191365 -k1,17436:25945543,12854268:191365 -k1,17436:26796201,12854268:191366 -k1,17436:29726971,12854268:191365 -k1,17436:30577628,12854268:191365 -k1,17436:31966991,12854268:0 -) -(1,17437:7246811,13695756:24720180,513147,134348 -k1,17436:9413285,13695756:290178 -k1,17436:12416653,13695756:290177 -k1,17436:13468359,13695756:290178 -k1,17436:15670221,13695756:290177 -k1,17436:17052884,13695756:290178 -k1,17436:20038558,13695756:290178 -(1,17436:20038558,13695756:0,452978,115847 -r1,17476:22507095,13695756:2468537,568825,115847 -k1,17436:20038558,13695756:-2468537 -) -(1,17436:20038558,13695756:2468537,452978,115847 -k1,17436:20038558,13695756:3277 -h1,17436:22503818,13695756:0,411205,112570 -) -k1,17436:22797272,13695756:290177 -k1,17436:23738878,13695756:290178 -k1,17436:25007508,13695756:290177 -k1,17436:26316771,13695756:290178 -k1,17436:28675264,13695756:290177 -k1,17436:31315563,13695756:290178 -k1,17436:31966991,13695756:0 -) -(1,17437:7246811,14537244:24720180,513147,7863 -k1,17436:8467474,14537244:201578 -k1,17436:11089297,14537244:201578 -k1,17436:11977036,14537244:201577 -k1,17436:12534474,14537244:201578 -k1,17436:15710731,14537244:201578 -k1,17436:18063856,14537244:201578 -k1,17436:19646277,14537244:201577 -k1,17436:20379352,14537244:201578 -k1,17436:22558151,14537244:201578 -k1,17436:25289419,14537244:201578 -k1,17436:28465675,14537244:201577 -k1,17436:30975431,14537244:201578 -k1,17436:31966991,14537244:0 -) -(1,17437:7246811,15378732:24720180,505283,134348 -k1,17436:9574912,15378732:198836 -k1,17436:12123869,15378732:198836 -k1,17436:13716657,15378732:198837 -k1,17436:15367115,15378732:198836 -k1,17436:17431761,15378732:198836 -k1,17436:20651151,15378732:198836 -k1,17436:21611515,15378732:198836 -k1,17436:24904307,15378732:198837 -k1,17436:27090195,15378732:198836 -k1,17436:29647672,15378732:198836 -k1,17436:31966991,15378732:0 -) -(1,17437:7246811,16220220:24720180,513147,134348 -k1,17436:8691861,16220220:253605 -k1,17436:11243158,16220220:253605 -k1,17436:13614886,16220220:253604 -k1,17436:15964988,16220220:253605 -k1,17436:18435021,16220220:253605 -k1,17436:19885313,16220220:253605 -k1,17436:21792390,16220220:253604 -k1,17436:24327303,16220220:253605 -k1,17436:25232336,16220220:253605 -k1,17436:26578426,16220220:253605 -k1,17436:27499186,16220220:253604 -(1,17436:27499186,16220220:0,452978,115847 -r1,17476:30319435,16220220:2820249,568825,115847 -k1,17436:27499186,16220220:-2820249 -) -(1,17436:27499186,16220220:2820249,452978,115847 -k1,17436:27499186,16220220:3277 -h1,17436:30316158,16220220:0,411205,112570 -) -k1,17436:30573040,16220220:253605 -k1,17436:31966991,16220220:0 -) -(1,17437:7246811,17061708:24720180,513147,134348 -g1,17436:9670332,17061708 -g1,17436:12219682,17061708 -g1,17436:13812862,17061708 -g1,17436:15401454,17061708 -g1,17436:16885189,17061708 -g1,17436:18951539,17061708 -g1,17436:20625983,17061708 -g1,17436:23965042,17061708 -k1,17437:31966991,17061708:4993846 -g1,17437:31966991,17061708 -) -(1,17439:7246811,17903196:24720180,513147,126483 -h1,17438:7246811,17903196:983040,0,0 -k1,17438:9288096,17903196:229215 -k1,17438:13550396,17903196:229214 -k1,17438:15471751,17903196:229215 -k1,17438:16360258,17903196:229215 -k1,17438:18286199,17903196:229214 -k1,17438:21695876,17903196:229215 -k1,17438:22138053,17903196:229185 -k1,17438:24296647,17903196:229214 -k1,17438:24881722,17903196:229215 -k1,17438:26500300,17903196:229215 -k1,17438:28605810,17903196:229214 -k1,17438:30228976,17903196:229215 -k1,17438:31966991,17903196:0 -) -(1,17439:7246811,18744684:24720180,505283,102891 -k1,17438:10628206,18744684:198967 -k1,17438:13682578,18744684:198968 -k1,17438:15072990,18744684:198967 -k1,17438:15887996,18744684:198968 -k1,17438:17106048,18744684:198967 -k1,17438:19546346,18744684:198967 -k1,17438:22931674,18744684:198968 -k1,17438:24524592,18744684:198967 -k1,17438:27905988,18744684:198968 -k1,17438:30770304,18744684:198967 -k1,17438:31966991,18744684:0 -) -(1,17439:7246811,19586172:24720180,513147,134348 -k1,17438:8808773,19586172:255829 -k1,17438:12250961,19586172:255828 -k1,17438:13038287,19586172:255829 -k1,17438:16599097,19586172:255829 -k1,17438:17506354,19586172:255829 -k1,17438:18781267,19586172:255828 -k1,17438:21302676,19586172:255829 -k1,17438:24318226,19586172:255829 -k1,17438:25233347,19586172:255829 -k1,17438:28514972,19586172:255828 -k1,17438:29386839,19586172:255829 -k1,17438:31966991,19586172:0 -) -(1,17439:7246811,20427660:24720180,513147,126483 -k1,17438:9442823,20427660:172916 -k1,17438:10807184,20427660:172916 -k1,17438:11999185,20427660:172916 -k1,17438:14413433,20427660:172917 -k1,17438:15117846,20427660:172916 -k1,17438:18595743,20427660:172916 -k1,17438:19420087,20427660:172916 -k1,17438:20612088,20427660:172916 -k1,17438:23544725,20427660:172916 -k1,17438:24376934,20427660:172917 -k1,17438:25983778,20427660:172916 -k1,17438:26571511,20427660:172890 -k1,17438:29943895,20427660:172916 -k1,17438:31966991,20427660:0 -) -(1,17439:7246811,21269148:24720180,513147,134348 -k1,17438:10821150,21269148:254285 -k1,17438:12094520,21269148:254285 -k1,17438:15050855,21269148:254286 -k1,17438:15964432,21269148:254285 -k1,17438:17237802,21269148:254285 -k1,17438:19927405,21269148:254285 -k1,17438:21571054,21269148:254286 -k1,17438:23514857,21269148:254285 -k1,17438:24183930,21269148:254230 -k1,17438:27758269,21269148:254285 -k1,17438:31966991,21269148:0 -) -(1,17439:7246811,22110636:24720180,505283,134348 -g1,17438:8839991,22110636 -g1,17438:9988181,22110636 -g1,17438:12568333,22110636 -k1,17439:31966991,22110636:17639016 -g1,17439:31966991,22110636 -) -v1,17441:7246811,23206983:0,393216,0 -(1,17456:7246811,27547651:24720180,4733884,196608 -g1,17456:7246811,27547651 -g1,17456:7246811,27547651 -g1,17456:7050203,27547651 -(1,17456:7050203,27547651:0,4733884,196608 -r1,17476:32163599,27547651:25113396,4930492,196608 -k1,17456:7050203,27547651:-25113396 -) -(1,17456:7050203,27547651:25113396,4733884,196608 -[1,17456:7246811,27547651:24720180,4537276,0 -(1,17443:7246811,23420893:24720180,410518,82312 -(1,17442:7246811,23420893:0,0,0 -g1,17442:7246811,23420893 -g1,17442:7246811,23420893 -g1,17442:6919131,23420893 -(1,17442:6919131,23420893:0,0,0 -) -g1,17442:7246811,23420893 -) -k1,17443:7246811,23420893:0 -g1,17443:11356706,23420893 -g1,17443:11988998,23420893 -g1,17443:12937436,23420893 -g1,17443:13885873,23420893 -g1,17443:14518165,23420893 -g1,17443:15150457,23420893 -g1,17443:16098895,23420893 -g1,17443:16731187,23420893 -g1,17443:17679624,23420893 -g1,17443:18311916,23420893 -g1,17443:19260354,23420893 -g1,17443:23054102,23420893 -g1,17443:23686394,23420893 -h1,17443:25583268,23420893:0,0,0 -k1,17443:31966991,23420893:6383723 -g1,17443:31966991,23420893 -) -(1,17448:7246811,24152607:24720180,379060,4718 -(1,17445:7246811,24152607:0,0,0 -g1,17445:7246811,24152607 -g1,17445:7246811,24152607 -g1,17445:6919131,24152607 -(1,17445:6919131,24152607:0,0,0 -) -g1,17445:7246811,24152607 -) -g1,17448:8195248,24152607 -g1,17448:8511394,24152607 -g1,17448:8827540,24152607 -g1,17448:9459832,24152607 -g1,17448:10092124,24152607 -g1,17448:10408270,24152607 -g1,17448:10724416,24152607 -h1,17448:11040562,24152607:0,0,0 -k1,17448:31966990,24152607:20926428 -g1,17448:31966990,24152607 -) -(1,17448:7246811,24818785:24720180,388497,9436 -h1,17448:7246811,24818785:0,0,0 -g1,17448:8195248,24818785 -g1,17448:8827540,24818785 -g1,17448:9459832,24818785 -g1,17448:9775978,24818785 -g1,17448:10408270,24818785 -g1,17448:10724416,24818785 -h1,17448:11040562,24818785:0,0,0 -k1,17448:31966990,24818785:20926428 -g1,17448:31966990,24818785 -) -(1,17450:7246811,26140323:24720180,410518,82312 -(1,17449:7246811,26140323:0,0,0 -g1,17449:7246811,26140323 -g1,17449:7246811,26140323 -g1,17449:6919131,26140323 -(1,17449:6919131,26140323:0,0,0 -) -g1,17449:7246811,26140323 -) -k1,17450:7246811,26140323:0 -g1,17450:11356706,26140323 -g1,17450:11988998,26140323 -g1,17450:12937436,26140323 -g1,17450:13885873,26140323 -g1,17450:14518165,26140323 -g1,17450:15150457,26140323 -g1,17450:16098895,26140323 -g1,17450:16731187,26140323 -g1,17450:17679624,26140323 -g1,17450:18311916,26140323 -h1,17450:18944208,26140323:0,0,0 -k1,17450:31966991,26140323:13022783 -g1,17450:31966991,26140323 -) -(1,17455:7246811,26872037:24720180,379060,4718 -(1,17452:7246811,26872037:0,0,0 -g1,17452:7246811,26872037 -g1,17452:7246811,26872037 -g1,17452:6919131,26872037 -(1,17452:6919131,26872037:0,0,0 -) -g1,17452:7246811,26872037 -) -g1,17455:8195248,26872037 -g1,17455:8511394,26872037 -g1,17455:8827540,26872037 -g1,17455:9459832,26872037 -g1,17455:10408269,26872037 -h1,17455:11356706,26872037:0,0,0 -k1,17455:31966990,26872037:20610284 -g1,17455:31966990,26872037 -) -(1,17455:7246811,27538215:24720180,388497,9436 -h1,17455:7246811,27538215:0,0,0 -g1,17455:8195248,27538215 -g1,17455:8827540,27538215 -g1,17455:9459832,27538215 -g1,17455:9775978,27538215 -g1,17455:10408270,27538215 -g1,17455:10724416,27538215 -g1,17455:11040562,27538215 -h1,17455:11356708,27538215:0,0,0 -k1,17455:31966992,27538215:20610284 -g1,17455:31966992,27538215 -) -] -) -g1,17456:31966991,27547651 -g1,17456:7246811,27547651 -g1,17456:7246811,27547651 -g1,17456:31966991,27547651 -g1,17456:31966991,27547651 -) -h1,17456:7246811,27744259:0,0,0 -(1,17460:7246811,29015915:24720180,513147,126483 -h1,17459:7246811,29015915:983040,0,0 -k1,17459:9426102,29015915:293820 -k1,17459:11186617,29015915:293819 -k1,17459:13130634,29015915:293820 -k1,17459:15379392,29015915:293819 -k1,17459:17040293,29015915:293820 -k1,17459:17865610,29015915:293820 -k1,17459:19857467,29015915:293819 -k1,17459:23456268,29015915:293820 -k1,17459:24854369,29015915:293819 -k1,17459:25895955,29015915:293820 -k1,17459:27990703,29015915:293819 -k1,17459:31205463,29015915:293820 -k1,17459:31966991,29015915:0 -) -(1,17460:7246811,29857403:24720180,505283,134348 -k1,17459:8535659,29857403:269763 -k1,17459:10186266,29857403:269763 -k1,17459:12858579,29857403:269763 -k1,17459:14147427,29857403:269763 -k1,17459:16749616,29857403:269763 -k1,17459:18439544,29857403:269763 -k1,17459:19900752,29857403:269763 -k1,17459:20565042,29857403:269763 -(1,17459:20772136,29857403:0,435480,115847 -r1,17476:21482114,29857403:709978,551327,115847 -k1,17459:20772136,29857403:-709978 -) -(1,17459:20772136,29857403:709978,435480,115847 -k1,17459:20772136,29857403:3277 -h1,17459:21478837,29857403:0,411205,112570 -) -k1,17459:21751876,29857403:269762 -k1,17459:22882782,29857403:269763 -(1,17459:22882782,29857403:0,414482,115847 -r1,17476:23592760,29857403:709978,530329,115847 -k1,17459:22882782,29857403:-709978 -) -(1,17459:22882782,29857403:709978,414482,115847 -k1,17459:22882782,29857403:3277 -h1,17459:23589483,29857403:0,411205,112570 -) -k1,17459:24069617,29857403:269763 -k1,17459:25022265,29857403:269763 -k1,17459:25844497,29857403:269763 -k1,17459:27305705,29857403:269763 -k1,17459:28732178,29857403:269763 -(1,17459:28939272,29857403:0,452978,115847 -r1,17476:29649250,29857403:709978,568825,115847 -k1,17459:28939272,29857403:-709978 -) -(1,17459:28939272,29857403:709978,452978,115847 -k1,17459:28939272,29857403:3277 -h1,17459:29645973,29857403:0,411205,112570 -) -k1,17459:29919013,29857403:269763 -k1,17459:31049919,29857403:269763 -(1,17459:31049919,29857403:0,435480,115847 -r1,17476:31759897,29857403:709978,551327,115847 -k1,17459:31049919,29857403:-709978 -) -(1,17459:31049919,29857403:709978,435480,115847 -k1,17459:31049919,29857403:3277 -h1,17459:31756620,29857403:0,411205,112570 -) -k1,17459:31966991,29857403:0 -) -(1,17460:7246811,30698891:24720180,513147,134348 -k1,17459:8534484,30698891:183391 -k1,17459:9465642,30698891:183392 -k1,17459:12132848,30698891:183391 -k1,17459:12967668,30698891:183392 -k1,17459:16711630,30698891:183391 -k1,17459:17511060,30698891:183392 -k1,17459:19386591,30698891:183391 -k1,17459:21404991,30698891:183392 -k1,17459:23371617,30698891:183391 -k1,17459:25290402,30698891:183392 -k1,17459:28705373,30698891:183391 -k1,17459:31307699,30698891:183392 -k1,17459:31966991,30698891:0 -) -(1,17460:7246811,31540379:24720180,505283,134348 -k1,17459:9688683,31540379:181535 -k1,17459:11621994,31540379:181534 -k1,17459:14778208,31540379:181535 -k1,17459:17332802,31540379:181535 -k1,17459:19007902,31540379:181534 -k1,17459:19875599,31540379:181535 -k1,17459:22757872,31540379:181534 -k1,17459:23555445,31540379:181535 -k1,17459:25429120,31540379:181535 -k1,17459:27308036,31540379:181534 -k1,17459:28662010,31540379:181535 -k1,17459:31966991,31540379:0 -) -(1,17460:7246811,32381867:24720180,513147,126483 -g1,17459:8839991,32381867 -g1,17459:11201908,32381867 -g1,17459:14137920,32381867 -g1,17459:16201648,32381867 -g1,17459:18269964,32381867 -g1,17459:19806127,32381867 -g1,17459:20753122,32381867 -g1,17459:23631463,32381867 -g1,17459:24516854,32381867 -g1,17459:27478426,32381867 -k1,17460:31966991,32381867:1009914 -g1,17460:31966991,32381867 -) -v1,17462:7246811,33478214:0,393216,0 -(1,17470:7246811,35099452:24720180,2014454,196608 -g1,17470:7246811,35099452 -g1,17470:7246811,35099452 -g1,17470:7050203,35099452 -(1,17470:7050203,35099452:0,2014454,196608 -r1,17476:32163599,35099452:25113396,2211062,196608 -k1,17470:7050203,35099452:-25113396 -) -(1,17470:7050203,35099452:25113396,2014454,196608 -[1,17470:7246811,35099452:24720180,1817846,0 -(1,17464:7246811,33692124:24720180,410518,82312 -(1,17463:7246811,33692124:0,0,0 -g1,17463:7246811,33692124 -g1,17463:7246811,33692124 -g1,17463:6919131,33692124 -(1,17463:6919131,33692124:0,0,0 -) -g1,17463:7246811,33692124 -) -k1,17464:7246811,33692124:0 -g1,17464:11672851,33692124 -g1,17464:12305143,33692124 -g1,17464:13253581,33692124 -g1,17464:14202018,33692124 -g1,17464:14834310,33692124 -g1,17464:15782748,33692124 -g1,17464:16731185,33692124 -g1,17464:17363477,33692124 -g1,17464:18311915,33692124 -g1,17464:19260352,33692124 -g1,17464:19892644,33692124 -h1,17464:20524936,33692124:0,0,0 -k1,17464:31966991,33692124:11442055 -g1,17464:31966991,33692124 -) -(1,17469:7246811,34423838:24720180,404226,9436 -(1,17466:7246811,34423838:0,0,0 -g1,17466:7246811,34423838 -g1,17466:7246811,34423838 -g1,17466:6919131,34423838 -(1,17466:6919131,34423838:0,0,0 -) -g1,17466:7246811,34423838 -) -g1,17469:8195248,34423838 -g1,17469:8511394,34423838 -g1,17469:8827540,34423838 -g1,17469:9775977,34423838 -g1,17469:10724414,34423838 -g1,17469:11672851,34423838 -h1,17469:12305142,34423838:0,0,0 -k1,17469:31966990,34423838:19661848 -g1,17469:31966990,34423838 -) -(1,17469:7246811,35090016:24720180,388497,9436 -h1,17469:7246811,35090016:0,0,0 -g1,17469:8195248,35090016 -g1,17469:8827540,35090016 -g1,17469:9143686,35090016 -g1,17469:9775978,35090016 -g1,17469:10092124,35090016 -g1,17469:10724416,35090016 -g1,17469:11040562,35090016 -g1,17469:11672854,35090016 -g1,17469:11989000,35090016 -h1,17469:12305146,35090016:0,0,0 -k1,17469:31966990,35090016:19661844 -g1,17469:31966990,35090016 -) -] -) -g1,17470:31966991,35099452 -g1,17470:7246811,35099452 -g1,17470:7246811,35099452 -g1,17470:31966991,35099452 -g1,17470:31966991,35099452 -) -h1,17470:7246811,35296060:0,0,0 -(1,17474:7246811,36567717:24720180,513147,134348 -h1,17473:7246811,36567717:983040,0,0 -k1,17473:11027692,36567717:238660 -k1,17473:12655716,36567717:238661 -k1,17473:14461997,36567717:238660 -k1,17473:15056517,36567717:238660 -k1,17473:16521356,36567717:238660 -k1,17473:17743057,36567717:238661 -k1,17473:19085999,36567717:238660 -k1,17473:21167531,36567717:238660 -k1,17473:22022229,36567717:238660 -k1,17473:23614864,36567717:238661 -k1,17473:27679516,36567717:238660 -k1,17473:29928821,36567717:238660 -k1,17473:31966991,36567717:0 -) -(1,17474:7246811,37409205:24720180,513147,134348 -k1,17473:8085675,37409205:222826 -k1,17473:8723320,37409205:222802 -k1,17473:11787787,37409205:222826 -k1,17473:14540303,37409205:222826 -k1,17473:15422421,37409205:222826 -k1,17473:16001107,37409205:222826 -k1,17473:19356554,37409205:222826 -k1,17473:20195417,37409205:222825 -k1,17473:23493192,37409205:222826 -k1,17473:24958581,37409205:222826 -k1,17473:26879445,37409205:222826 -k1,17473:27458131,37409205:222826 -k1,17473:28949710,37409205:222802 -k1,17473:30155576,37409205:222826 -k1,17473:31966991,37409205:0 -) -(1,17474:7246811,38250693:24720180,513147,134348 -k1,17473:8856594,38250693:215832 -k1,17473:11849842,38250693:215832 -k1,17473:12597171,38250693:215832 -k1,17473:15134944,38250693:215832 -k1,17473:18029888,38250693:215832 -k1,17473:19981113,38250693:215832 -k1,17473:22065375,38250693:215831 -k1,17473:24808275,38250693:215832 -k1,17473:27378160,38250693:215832 -k1,17473:28666161,38250693:215832 -k1,17473:30294294,38250693:215832 -k1,17473:31196288,38250693:215832 -k1,17473:31966991,38250693:0 -) -(1,17474:7246811,39092181:24720180,513147,11795 -g1,17473:8916013,39092181 -g1,17473:11642310,39092181 -g1,17473:14520651,39092181 -k1,17474:31966991,39092181:16289630 -g1,17474:31966991,39092181 -) -(1,17476:7246811,39933669:24720180,513147,134348 -h1,17475:7246811,39933669:983040,0,0 -k1,17475:9639580,39933669:213042 -k1,17475:12266969,39933669:213043 -k1,17475:13801872,39933669:213042 -k1,17475:14674207,39933669:213043 -k1,17475:15653365,39933669:213042 -k1,17475:17563134,39933669:213042 -k1,17475:20782969,39933669:213043 -k1,17475:21527508,39933669:213042 -k1,17475:22391978,39933669:213042 -k1,17475:25444041,39933669:213043 -k1,17475:27165722,39933669:213042 -k1,17475:29426765,39933669:213043 -k1,17475:30325969,39933669:213042 -k1,17476:31966991,39933669:0 -) -(1,17476:7246811,40775157:24720180,505283,134348 -k1,17475:8743474,40775157:229197 -k1,17475:12375301,40775157:229198 -k1,17475:13795943,40775157:229197 -k1,17475:16611846,40775157:229197 -k1,17475:20898377,40775157:229197 -k1,17475:23540611,40775157:229198 -k1,17475:24874090,40775157:229197 -k1,17475:25719325,40775157:229197 -k1,17475:27550222,40775157:229197 -k1,17475:29476802,40775157:229198 -k1,17475:30453765,40775157:229197 -k1,17475:31966991,40775157:0 -) -(1,17476:7246811,41616645:24720180,513147,134348 -k1,17475:8114567,41616645:216328 -k1,17475:9959466,41616645:216329 -k1,17475:11194879,41616645:216328 -k1,17475:13653849,41616645:216328 -k1,17475:16777354,41616645:216328 -k1,17475:17652975,41616645:216329 -k1,17475:19095482,41616645:216328 -k1,17475:20625152,41616645:216328 -k1,17475:22235431,41616645:216328 -k1,17475:24744209,41616645:216329 -k1,17475:29762360,41616645:216328 -k1,17475:31966991,41616645:0 -) -(1,17476:7246811,42458133:24720180,513147,134348 -k1,17475:8691128,42458133:252872 -k1,17475:11581825,42458133:252873 -k1,17475:13324986,42458133:252872 -k1,17475:14734568,42458133:252872 -k1,17475:17040684,42458133:252873 -k1,17475:18842172,42458133:252872 -k1,17475:19626541,42458133:252872 -k1,17475:22765619,42458133:252872 -k1,17475:24289890,42458133:252873 -k1,17475:27238258,42458133:252872 -k1,17475:28107168,42458133:252872 -k1,17475:29379126,42458133:252873 -k1,17475:30046787,42458133:252818 -k1,17475:31966991,42458133:0 -) -(1,17476:7246811,43299621:24720180,513147,134348 -k1,17475:10198815,43299621:198181 -k1,17475:12282466,43299621:198180 -k1,17475:13012144,43299621:198181 -k1,17475:14276596,43299621:198181 -k1,17475:17489433,43299621:198181 -k1,17475:18791895,43299621:198180 -k1,17475:19602838,43299621:198181 -k1,17475:20820104,43299621:198181 -k1,17475:22443693,43299621:198181 -k1,17475:23301165,43299621:198180 -k1,17475:25757061,43299621:198181 -k1,17475:26703008,43299621:198181 -k1,17475:28414415,43299621:198181 -k1,17475:29264023,43299621:198180 -k1,17475:30653649,43299621:198181 -k1,17475:31966991,43299621:0 -) -(1,17476:7246811,44141109:24720180,513147,126483 -k1,17475:8447119,44141109:252657 -k1,17475:9718861,44141109:252657 -k1,17475:12801363,44141109:252657 -k1,17475:13863390,44141109:252657 -k1,17475:17277451,44141109:252604 -k1,17475:21008759,44141109:252657 -(1,17475:21008759,44141109:0,459977,115847 -r1,17476:30159820,44141109:9151061,575824,115847 -k1,17475:21008759,44141109:-9151061 -) -(1,17475:21008759,44141109:9151061,459977,115847 -k1,17475:21008759,44141109:3277 -h1,17475:30156543,44141109:0,411205,112570 -) -k1,17475:30586147,44141109:252657 -k1,17475:31966991,44141109:0 -) -(1,17476:7246811,44982597:24720180,513147,134348 -g1,17475:10141536,44982597 -g1,17475:12023730,44982597 -g1,17475:12909121,44982597 -g1,17475:13879053,44982597 -g1,17475:17150610,44982597 -g1,17475:18368924,44982597 -g1,17475:20016499,44982597 -g1,17475:20867156,44982597 -g1,17475:21422245,44982597 -k1,17476:31966991,44982597:9388036 -g1,17476:31966991,44982597 -) -] -) -] -r1,17476:32583029,45706769:26214,39845888,0 -) -] -) -) -g1,17476:32583029,45116945 -) -h1,17476:6630773,45732983:0,0,0 -] -(1,17476:32583029,45706769:0,0,0 -g1,17476:32583029,45706769 -) -) -] -(1,17476:6630773,47279633:25952256,0,0 -h1,17476:6630773,47279633:25952256,0,0 -) -] -(1,17476:4262630,4025873:0,0,0 -[1,17476:-473656,4025873:0,0,0 -(1,17476:-473656,-710413:0,0,0 -(1,17476:-473656,-710413:0,0,0 -g1,17476:-473656,-710413 -) -g1,17476:-473656,-710413 -) -] -) -] -!27538 -}343 -Input:2826:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2827:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2828:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2829:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2830:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2831:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2832:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!656 -{344 -[1,17546:4262630,47279633:28320399,43253760,0 -(1,17546:4262630,4025873:0,0,0 -[1,17546:-473656,4025873:0,0,0 -(1,17546:-473656,-710413:0,0,0 -(1,17546:-473656,-644877:0,0,0 -k1,17546:-473656,-644877:-65536 -) -(1,17546:-473656,4736287:0,0,0 -k1,17546:-473656,4736287:5209943 -) -g1,17546:-473656,-710413 -) -] -) -[1,17546:6630773,47279633:25952256,43253760,0 -[1,17546:6630773,4812305:25952256,786432,0 -(1,17546:6630773,4812305:25952256,513147,126483 -(1,17546:6630773,4812305:25952256,513147,126483 -g1,17546:3078558,4812305 -[1,17546:3078558,4812305:0,0,0 -(1,17546:3078558,2439708:0,1703936,0 -k1,17546:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,17546:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,17546:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 -) -] -) -) -) -] -[1,17546:3078558,4812305:0,0,0 -(1,17546:3078558,2439708:0,1703936,0 -g1,17546:29030814,2439708 -g1,17546:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,17546:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 -) -] -) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,17546:37855564,2439708:1179648,16384,0 -) -) -k1,17546:3078556,2439708:-34777008 -) -] -[1,17546:3078558,4812305:0,0,0 -(1,17546:3078558,49800853:0,16384,2228224 -k1,17546:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,17546:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,17546:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 -) -] -) -) -) -] -[1,17546:3078558,4812305:0,0,0 -(1,17546:3078558,49800853:0,16384,2228224 -g1,17546:29030814,49800853 -g1,17546:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,17546:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 -) -] -) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,17546:37855564,49800853:1179648,16384,0 -) -) -k1,17546:3078556,49800853:-34777008 -) -] -g1,17546:6630773,4812305 -g1,17546:6630773,4812305 -g1,17546:9744388,4812305 -g1,17546:11175694,4812305 -k1,17546:31387652,4812305:20211958 -) -) -] -[1,17546:6630773,45706769:25952256,40108032,0 -(1,17546:6630773,45706769:25952256,40108032,0 -(1,17546:6630773,45706769:0,0,0 -g1,17546:6630773,45706769 -) -[1,17546:6630773,45706769:25952256,40108032,0 -(1,17478:6630773,6254097:25952256,555811,12975 -(1,17478:6630773,6254097:2450326,534184,12975 -g1,17478:6630773,6254097 -g1,17478:9081099,6254097 -) -g1,17478:10950383,6254097 -g1,17478:11672721,6254097 -g1,17478:13239949,6254097 -k1,17478:32583028,6254097:17318804 -g1,17478:32583028,6254097 -) -(1,17481:6630773,7488801:25952256,513147,134348 -k1,17480:8212660,7488801:178106 -k1,17480:9704109,7488801:178107 -k1,17480:13244212,7488801:178106 -k1,17480:14811682,7488801:178107 -k1,17480:15605826,7488801:178106 -k1,17480:18497124,7488801:178107 -k1,17480:19779512,7488801:178106 -k1,17480:20705385,7488801:178107 -k1,17480:23252618,7488801:178106 -k1,17480:24698191,7488801:178107 -k1,17480:26048736,7488801:178106 -k1,17480:28086755,7488801:178107 -k1,17480:30661513,7488801:178106 -k1,17480:32583029,7488801:0 -) -(1,17481:6630773,8330289:25952256,513147,7863 -k1,17480:8217936,8330289:193212 -k1,17480:12002521,8330289:193212 -k1,17480:13929816,8330289:193212 -k1,17480:15314473,8330289:193212 -k1,17480:17251598,8330289:193212 -k1,17480:18838760,8330289:193211 -k1,17480:22052526,8330289:193212 -k1,17480:24153491,8330289:193212 -k1,17480:28067837,8330289:193212 -k1,17480:29995132,8330289:193212 -k1,17480:31692395,8330289:193212 -k1,17481:32583029,8330289:0 -) -(1,17481:6630773,9171777:25952256,513147,134348 -k1,17480:9356814,9171777:295966 -k1,17480:12430195,9171777:295965 -k1,17480:13342199,9171777:295966 -k1,17480:14657250,9171777:295966 -k1,17480:16511006,9171777:295965 -k1,17480:18274978,9171777:295966 -k1,17480:19238100,9171777:295966 -k1,17480:22574839,9171777:295868 -k1,17480:24062250,9171777:295966 -k1,17480:26556197,9171777:295869 -k1,17480:28550200,9171777:295965 -k1,17480:30235529,9171777:295966 -k1,17480:32583029,9171777:0 -) -(1,17481:6630773,10013265:25952256,513147,134348 -k1,17480:9509234,10013265:259642 -k1,17480:10976048,10013265:259641 -k1,17480:12589664,10013265:259642 -k1,17480:15275448,10013265:259641 -k1,17480:17409420,10013265:259642 -k1,17480:20179745,10013265:259641 -k1,17480:21430947,10013265:259642 -k1,17480:24995569,10013265:259641 -k1,17480:27674145,10013265:259642 -k1,17480:28593078,10013265:259641 -k1,17480:31753999,10013265:259642 -k1,17481:32583029,10013265:0 -) -(1,17481:6630773,10854753:25952256,513147,134348 -k1,17480:10080529,10854753:258808 -k1,17480:12074729,10854753:258807 -k1,17480:14102354,10854753:258808 -k1,17480:17666142,10854753:258807 -k1,17480:19367397,10854753:258808 -k1,17480:21324242,10854753:258807 -k1,17480:24603604,10854753:258808 -k1,17480:26596494,10854753:258807 -k1,17480:27846862,10854753:258808 -k1,17480:29792566,10854753:258807 -k1,17480:31248061,10854753:258808 -k1,17480:32583029,10854753:0 -) -(1,17481:6630773,11696241:25952256,513147,134348 -k1,17480:8115342,11696241:246594 -k1,17480:9021228,11696241:246594 -k1,17480:13922844,11696241:246594 -k1,17480:15188523,11696241:246594 -k1,17480:18951779,11696241:246594 -k1,17480:19729870,11696241:246594 -k1,17480:21370415,11696241:246594 -k1,17480:24782398,11696241:246594 -k1,17480:27991875,11696241:246594 -k1,17480:28854507,11696241:246594 -k1,17480:30304342,11696241:246594 -k1,17480:32583029,11696241:0 -) -(1,17481:6630773,12537729:25952256,513147,134348 -k1,17480:7742030,12537729:242905 -k1,17480:11117555,12537729:242904 -k1,17480:12379545,12537729:242905 -k1,17480:13714934,12537729:242904 -k1,17480:14617131,12537729:242905 -k1,17480:17885832,12537729:242904 -k1,17480:18890265,12537729:242905 -k1,17480:21560623,12537729:242904 -k1,17480:22159388,12537729:242905 -k1,17480:23385332,12537729:242904 -k1,17480:25366252,12537729:242905 -k1,17480:26295318,12537729:242904 -k1,17480:27308926,12537729:242905 -k1,17480:30797828,12537729:242904 -k1,17480:32583029,12537729:0 -) -(1,17481:6630773,13379217:25952256,513147,134348 -g1,17480:8021447,13379217 -g1,17480:9798128,13379217 -g1,17480:10980397,13379217 -g1,17480:14791970,13379217 -g1,17480:15982759,13379217 -g1,17480:17467804,13379217 -g1,17480:20483115,13379217 -g1,17480:21914421,13379217 -g1,17480:24392337,13379217 -h1,17480:25362925,13379217:0,0,0 -g1,17480:25562154,13379217 -g1,17480:26570753,13379217 -g1,17480:28268135,13379217 -h1,17480:29463512,13379217:0,0,0 -k1,17481:32583029,13379217:2738753 -g1,17481:32583029,13379217 -) -(1,17483:6630773,14220705:25952256,513147,126483 -h1,17482:6630773,14220705:983040,0,0 -k1,17482:8428466,14220705:186818 -k1,17482:9634370,14220705:186819 -k1,17482:11127321,14220705:186818 -k1,17482:13975557,14220705:186819 -k1,17482:15030727,14220705:186818 -k1,17482:16350008,14220705:186819 -k1,17482:17949127,14220705:186818 -k1,17482:18491805,14220705:186818 -k1,17482:19661664,14220705:186819 -k1,17482:21242433,14220705:186818 -k1,17482:23163335,14220705:186819 -k1,17482:25193681,14220705:186818 -k1,17482:28401054,14220705:186819 -k1,17482:29349400,14220705:186818 -k1,17482:30483870,14220705:186819 -k1,17482:32051532,14220705:186818 -k1,17482:32583029,14220705:0 -) -(1,17483:6630773,15062193:25952256,513147,126483 -k1,17482:8327505,15062193:148116 -k1,17482:9007117,15062193:148115 -k1,17482:11023009,15062193:148116 -k1,17482:19055106,15062193:148116 -k1,17482:20886136,15062193:148065 -k1,17482:23214634,15062193:148115 -k1,17482:25248221,15062193:148116 -k1,17482:26500619,15062193:148116 -k1,17482:27396501,15062193:148116 -k1,17482:28956917,15062193:148115 -k1,17482:30296478,15062193:148116 -k1,17482:32583029,15062193:0 -) -(1,17483:6630773,15903681:25952256,505283,126483 -g1,17482:8223953,15903681 -(1,17482:8223953,15903681:0,452978,115847 -r1,17546:11747625,15903681:3523672,568825,115847 -k1,17482:8223953,15903681:-3523672 -) -(1,17482:8223953,15903681:3523672,452978,115847 -k1,17482:8223953,15903681:3277 -h1,17482:11744348,15903681:0,411205,112570 -) -g1,17482:11946854,15903681 -g1,17482:13337528,15903681 -(1,17482:13337528,15903681:0,452978,115847 -r1,17546:17212912,15903681:3875384,568825,115847 -k1,17482:13337528,15903681:-3875384 -) -(1,17482:13337528,15903681:3875384,452978,115847 -k1,17482:13337528,15903681:3277 -h1,17482:17209635,15903681:0,411205,112570 -) -g1,17482:17585811,15903681 -k1,17483:32583029,15903681:11027047 -g1,17483:32583029,15903681 -) -(1,17485:6630773,16745169:25952256,513147,126483 -h1,17484:6630773,16745169:983040,0,0 -g1,17484:10498052,16745169 -g1,17484:11680321,16745169 -(1,17484:11680321,16745169:0,452978,122846 -r1,17546:20127958,16745169:8447637,575824,122846 -k1,17484:11680321,16745169:-8447637 -) -(1,17484:11680321,16745169:8447637,452978,122846 -k1,17484:11680321,16745169:3277 -h1,17484:20124681,16745169:0,411205,112570 -) -g1,17484:20327187,16745169 -k1,17485:32583029,16745169:9380122 -g1,17485:32583029,16745169 -) -v1,17487:6630773,17870715:0,393216,0 -(1,17493:6630773,19493001:25952256,2015502,196608 -g1,17493:6630773,19493001 -g1,17493:6630773,19493001 -g1,17493:6434165,19493001 -(1,17493:6434165,19493001:0,2015502,196608 -r1,17546:32779637,19493001:26345472,2212110,196608 -k1,17493:6434165,19493001:-26345472 -) -(1,17493:6434165,19493001:26345472,2015502,196608 -[1,17493:6630773,19493001:25952256,1818894,0 -(1,17492:6630773,18078333:25952256,404226,82312 -(1,17488:6630773,18078333:0,0,0 -g1,17488:6630773,18078333 -g1,17488:6630773,18078333 -g1,17488:6303093,18078333 -(1,17488:6303093,18078333:0,0,0 -) -g1,17488:6630773,18078333 -) -k1,17492:6630773,18078333:0 -k1,17492:6630773,18078333:0 -h1,17492:12637540,18078333:0,0,0 -k1,17492:32583028,18078333:19945488 -g1,17492:32583028,18078333 -) -(1,17492:6630773,18744511:25952256,388497,82312 -h1,17492:6630773,18744511:0,0,0 -k1,17492:6630773,18744511:0 -h1,17492:11689104,18744511:0,0,0 -k1,17492:32583028,18744511:20893924 -g1,17492:32583028,18744511 -) -(1,17492:6630773,19410689:25952256,388497,82312 -h1,17492:6630773,19410689:0,0,0 -g1,17492:11372958,19410689 -h1,17492:11689104,19410689:0,0,0 -k1,17492:32583028,19410689:20893924 -g1,17492:32583028,19410689 -) -] -) -g1,17493:32583029,19493001 -g1,17493:6630773,19493001 -g1,17493:6630773,19493001 -g1,17493:32583029,19493001 -g1,17493:32583029,19493001 -) -h1,17493:6630773,19689609:0,0,0 -v1,17497:6630773,21274524:0,393216,0 -(1,17501:6630773,21595912:25952256,714604,196608 -g1,17501:6630773,21595912 -g1,17501:6630773,21595912 -g1,17501:6434165,21595912 -(1,17501:6434165,21595912:0,714604,196608 -r1,17546:32779637,21595912:26345472,911212,196608 -k1,17501:6434165,21595912:-26345472 -) -(1,17501:6434165,21595912:26345472,714604,196608 -[1,17501:6630773,21595912:25952256,517996,0 -(1,17499:6630773,21488434:25952256,410518,107478 -(1,17498:6630773,21488434:0,0,0 -g1,17498:6630773,21488434 -g1,17498:6630773,21488434 -g1,17498:6303093,21488434 -(1,17498:6303093,21488434:0,0,0 -) -g1,17498:6630773,21488434 -) -g1,17499:11056813,21488434 -g1,17499:12005251,21488434 -k1,17499:12005251,21488434:0 -h1,17499:25915660,21488434:0,0,0 -k1,17499:32583029,21488434:6667369 -g1,17499:32583029,21488434 -) -] -) -g1,17501:32583029,21595912 -g1,17501:6630773,21595912 -g1,17501:6630773,21595912 -g1,17501:32583029,21595912 -g1,17501:32583029,21595912 -) -h1,17501:6630773,21792520:0,0,0 -v1,17505:6630773,23377435:0,393216,0 -(1,17525:6630773,29103604:25952256,6119385,196608 -g1,17525:6630773,29103604 -g1,17525:6630773,29103604 -g1,17525:6434165,29103604 -(1,17525:6434165,29103604:0,6119385,196608 -r1,17546:32779637,29103604:26345472,6315993,196608 -k1,17525:6434165,29103604:-26345472 -) -(1,17525:6434165,29103604:26345472,6119385,196608 -[1,17525:6630773,29103604:25952256,5922777,0 -(1,17507:6630773,23591345:25952256,410518,101187 -(1,17506:6630773,23591345:0,0,0 -g1,17506:6630773,23591345 -g1,17506:6630773,23591345 -g1,17506:6303093,23591345 -(1,17506:6303093,23591345:0,0,0 -) -g1,17506:6630773,23591345 -) -k1,17507:6630773,23591345:0 -g1,17507:13585979,23591345 -h1,17507:15482853,23591345:0,0,0 -k1,17507:32583029,23591345:17100176 -g1,17507:32583029,23591345 -) -(1,17512:6630773,24323059:25952256,404226,9436 -(1,17509:6630773,24323059:0,0,0 -g1,17509:6630773,24323059 -g1,17509:6630773,24323059 -g1,17509:6303093,24323059 -(1,17509:6303093,24323059:0,0,0 -) -g1,17509:6630773,24323059 -) -g1,17512:7579210,24323059 -g1,17512:7895356,24323059 -g1,17512:8211502,24323059 -g1,17512:8527648,24323059 -g1,17512:8843794,24323059 -g1,17512:9159940,24323059 -g1,17512:9476086,24323059 -g1,17512:9792232,24323059 -g1,17512:11372961,24323059 -g1,17512:11689107,24323059 -g1,17512:12005253,24323059 -g1,17512:12321399,24323059 -g1,17512:12637545,24323059 -g1,17512:12953691,24323059 -g1,17512:13269837,24323059 -g1,17512:13585983,24323059 -g1,17512:15166712,24323059 -g1,17512:15482858,24323059 -g1,17512:15799004,24323059 -g1,17512:16115150,24323059 -g1,17512:16431296,24323059 -g1,17512:16747442,24323059 -g1,17512:17063588,24323059 -g1,17512:17379734,24323059 -g1,17512:18960463,24323059 -g1,17512:19276609,24323059 -g1,17512:19592755,24323059 -g1,17512:19908901,24323059 -g1,17512:20225047,24323059 -g1,17512:20541193,24323059 -g1,17512:20857339,24323059 -g1,17512:21173485,24323059 -h1,17512:22438068,24323059:0,0,0 -k1,17512:32583029,24323059:10144961 -g1,17512:32583029,24323059 -) -(1,17512:6630773,24989237:25952256,404226,107478 -h1,17512:6630773,24989237:0,0,0 -g1,17512:7579210,24989237 -g1,17512:7895356,24989237 -g1,17512:8211502,24989237 -g1,17512:11372959,24989237 -g1,17512:11689105,24989237 -g1,17512:12005251,24989237 -g1,17512:15166708,24989237 -g1,17512:15482854,24989237 -g1,17512:15799000,24989237 -g1,17512:18960457,24989237 -h1,17512:22438059,24989237:0,0,0 -k1,17512:32583029,24989237:10144970 -g1,17512:32583029,24989237 -) -(1,17514:6630773,26310775:25952256,410518,76021 -(1,17513:6630773,26310775:0,0,0 -g1,17513:6630773,26310775 -g1,17513:6630773,26310775 -g1,17513:6303093,26310775 -(1,17513:6303093,26310775:0,0,0 -) -g1,17513:6630773,26310775 -) -h1,17514:13902123,26310775:0,0,0 -k1,17514:32583029,26310775:18680906 -g1,17514:32583029,26310775 -) -(1,17518:6630773,27042489:25952256,404226,76021 -(1,17516:6630773,27042489:0,0,0 -g1,17516:6630773,27042489 -g1,17516:6630773,27042489 -g1,17516:6303093,27042489 -(1,17516:6303093,27042489:0,0,0 -) -g1,17516:6630773,27042489 -) -g1,17518:7579210,27042489 -g1,17518:8843793,27042489 -g1,17518:10740667,27042489 -g1,17518:11689104,27042489 -h1,17518:12321395,27042489:0,0,0 -k1,17518:32583029,27042489:20261634 -g1,17518:32583029,27042489 -) -(1,17520:6630773,28364027:25952256,410518,76021 -(1,17519:6630773,28364027:0,0,0 -g1,17519:6630773,28364027 -g1,17519:6630773,28364027 -g1,17519:6303093,28364027 -(1,17519:6303093,28364027:0,0,0 -) -g1,17519:6630773,28364027 -) -k1,17520:6630773,28364027:0 -h1,17520:16431289,28364027:0,0,0 -k1,17520:32583029,28364027:16151740 -g1,17520:32583029,28364027 -) -(1,17524:6630773,29095741:25952256,379060,7863 -(1,17522:6630773,29095741:0,0,0 -g1,17522:6630773,29095741 -g1,17522:6630773,29095741 -g1,17522:6303093,29095741 -(1,17522:6303093,29095741:0,0,0 -) -g1,17522:6630773,29095741 -) -g1,17524:7579210,29095741 -h1,17524:8843793,29095741:0,0,0 -k1,17524:32583029,29095741:23739236 -g1,17524:32583029,29095741 -) -] -) -g1,17525:32583029,29103604 -g1,17525:6630773,29103604 -g1,17525:6630773,29103604 -g1,17525:32583029,29103604 -g1,17525:32583029,29103604 -) -h1,17525:6630773,29300212:0,0,0 -v1,17529:6630773,31060437:0,393216,0 -(1,17530:6630773,35863068:25952256,5195847,616038 -g1,17530:6630773,35863068 -(1,17530:6630773,35863068:25952256,5195847,616038 -(1,17530:6630773,36479106:25952256,5811885,0 -[1,17530:6630773,36479106:25952256,5811885,0 -(1,17530:6630773,36452892:25952256,5759457,0 -r1,17546:6656987,36452892:26214,5759457,0 -[1,17530:6656987,36452892:25899828,5759457,0 -(1,17530:6656987,35863068:25899828,4579809,0 -[1,17530:7246811,35863068:24720180,4579809,0 -(1,17530:7246811,32370633:24720180,1087374,122846 -k1,17529:8606485,32370633:149971 -k1,17529:10325388,32370633:149971 -k1,17529:11494444,32370633:149971 -k1,17529:12627455,32370633:149971 -(1,17529:12627455,32370633:0,452978,122846 -r1,17546:21075092,32370633:8447637,575824,122846 -k1,17529:12627455,32370633:-8447637 -) -(1,17529:12627455,32370633:8447637,452978,122846 -k1,17529:12627455,32370633:3277 -h1,17529:21071815,32370633:0,411205,112570 -) -k1,17529:21225064,32370633:149972 -k1,17529:22768986,32370633:149971 -k1,17529:25614453,32370633:149971 -(1,17529:25614453,32370633:0,452978,115847 -r1,17546:29489837,32370633:3875384,568825,115847 -k1,17529:25614453,32370633:-3875384 -) -(1,17529:25614453,32370633:3875384,452978,115847 -k1,17529:25614453,32370633:3277 -h1,17529:29486560,32370633:0,411205,112570 -) -k1,17529:29639808,32370633:149971 -k1,17529:31966991,32370633:0 -) -(1,17530:7246811,33212121:24720180,513147,134348 -k1,17529:8164563,33212121:250596 -(1,17529:8164563,33212121:0,452978,115847 -r1,17546:11688235,33212121:3523672,568825,115847 -k1,17529:8164563,33212121:-3523672 -) -(1,17529:8164563,33212121:3523672,452978,115847 -k1,17529:8164563,33212121:3277 -h1,17529:11684958,33212121:0,411205,112570 -) -k1,17529:12112501,33212121:250596 -k1,17529:15325980,33212121:250596 -k1,17529:16779817,33212121:250596 -k1,17529:18367347,33212121:250596 -k1,17529:20004685,33212121:250596 -k1,17529:21401506,33212121:250596 -k1,17529:22007961,33212121:250595 -k1,17529:24069972,33212121:250596 -k1,17529:24979860,33212121:250596 -k1,17529:26829534,33212121:250596 -k1,17529:28099215,33212121:250596 -k1,17529:30038018,33212121:250596 -k1,17529:30947906,33212121:250596 -k1,17529:31966991,33212121:0 -) -(1,17530:7246811,34053609:24720180,513147,134348 -k1,17529:9949110,34053609:141807 -k1,17529:10622414,34053609:141807 -k1,17529:11711872,34053609:141807 -k1,17529:13024152,34053609:141807 -k1,17529:13817387,34053609:141807 -k1,17529:14937647,34053609:141807 -k1,17529:17571788,34053609:141807 -k1,17529:19107546,34053609:141807 -k1,17529:19664139,34053609:141750 -k1,17529:22565667,34053609:141807 -k1,17529:23323512,34053609:141807 -k1,17529:24832400,34053609:141807 -k1,17529:25633499,34053609:141807 -k1,17529:27268872,34053609:141807 -k1,17529:27766539,34053609:141807 -k1,17529:30586147,34053609:141807 -k1,17529:31966991,34053609:0 -) -(1,17530:7246811,34895097:24720180,505283,134348 -k1,17529:8557829,34895097:178556 -k1,17529:10124438,34895097:178556 -k1,17529:11473466,34895097:178555 -k1,17529:14743355,34895097:178556 -k1,17529:17123921,34895097:178556 -k1,17529:19239721,34895097:178556 -k1,17529:21116315,34895097:178556 -k1,17529:22675059,34895097:178556 -k1,17529:25227983,34895097:178555 -k1,17529:29371467,34895097:178556 -k1,17529:31435494,34895097:178556 -k1,17529:31966991,34895097:0 -) -(1,17530:7246811,35736585:24720180,513147,126483 -g1,17529:9070678,35736585 -g1,17529:12047323,35736585 -g1,17529:13944590,35736585 -g1,17529:15457161,35736585 -g1,17529:16647950,35736585 -k1,17530:31966991,35736585:12987925 -g1,17530:31966991,35736585 -) -] -) -] -r1,17546:32583029,36452892:26214,5759457,0 -) -] -) -) -g1,17530:32583029,35863068 -) -h1,17530:6630773,36479106:0,0,0 -(1,17533:6630773,37779962:25952256,513147,126483 -h1,17532:6630773,37779962:983040,0,0 -k1,17532:10754902,37779962:456079 -k1,17532:12194021,37779962:456079 -(1,17532:12194021,37779962:0,452978,122846 -r1,17546:19234812,37779962:7040791,575824,122846 -k1,17532:12194021,37779962:-7040791 -) -(1,17532:12194021,37779962:7040791,452978,122846 -k1,17532:12194021,37779962:3277 -h1,17532:19231535,37779962:0,411205,112570 -) -k1,17532:19690890,37779962:456078 -k1,17532:22849018,37779962:456079 -k1,17532:31189078,37779962:456079 -k1,17532:32583029,37779962:0 -) -(1,17533:6630773,38621450:25952256,505283,134348 -k1,17532:8889331,38621450:293133 -k1,17532:10923756,38621450:293133 -k1,17532:13004711,38621450:293133 -k1,17532:13949272,38621450:293133 -k1,17532:15793642,38621450:293133 -k1,17532:17105860,38621450:293133 -k1,17532:20285854,38621450:293133 -k1,17532:21230414,38621450:293132 -k1,17532:23239280,38621450:293133 -k1,17532:23990510,38621450:293133 -k1,17532:26154041,38621450:293133 -k1,17532:27098602,38621450:293133 -k1,17532:28804036,38621450:293133 -k1,17532:29858697,38621450:293133 -k1,17532:32583029,38621450:0 -) -(1,17533:6630773,39462938:25952256,513147,134348 -k1,17532:8699635,39462938:194532 -k1,17532:11213487,39462938:194533 -k1,17532:13142102,39462938:194532 -k1,17532:15708383,39462938:194533 -k1,17532:18222234,39462938:194532 -k1,17532:19608212,39462938:194533 -k1,17532:22100436,39462938:194532 -k1,17532:24036261,39462938:194533 -k1,17532:26348917,39462938:194532 -k1,17532:27827956,39462938:194533 -k1,17532:29014048,39462938:194532 -k1,17532:31966991,39462938:194533 -k1,17532:32583029,39462938:0 -) -(1,17533:6630773,40304426:25952256,513147,134348 -g1,17532:8695812,40304426 -g1,17532:10905686,40304426 -g1,17532:12802953,40304426 -g1,17532:14021267,40304426 -g1,17532:15203536,40304426 -g1,17532:15934262,40304426 -k1,17533:32583029,40304426:15062796 -g1,17533:32583029,40304426 -) -v1,17535:6630773,41429973:0,393216,0 -(1,17541:6630773,43052259:25952256,2015502,196608 -g1,17541:6630773,43052259 -g1,17541:6630773,43052259 -g1,17541:6434165,43052259 -(1,17541:6434165,43052259:0,2015502,196608 -r1,17546:32779637,43052259:26345472,2212110,196608 -k1,17541:6434165,43052259:-26345472 -) -(1,17541:6434165,43052259:26345472,2015502,196608 -[1,17541:6630773,43052259:25952256,1818894,0 -(1,17540:6630773,41637591:25952256,404226,82312 -(1,17536:6630773,41637591:0,0,0 -g1,17536:6630773,41637591 -g1,17536:6630773,41637591 -g1,17536:6303093,41637591 -(1,17536:6303093,41637591:0,0,0 -) -g1,17536:6630773,41637591 -) -k1,17540:6630773,41637591:0 -g1,17540:8527648,41637591 -g1,17540:10424523,41637591 -g1,17540:12321398,41637591 -h1,17540:13585981,41637591:0,0,0 -k1,17540:32583029,41637591:18997048 -g1,17540:32583029,41637591 -) -(1,17540:6630773,42303769:25952256,388497,82312 -h1,17540:6630773,42303769:0,0,0 -g1,17540:6946919,42303769 -g1,17540:8527648,42303769 -g1,17540:10424523,42303769 -g1,17540:10740669,42303769 -g1,17540:12321398,42303769 -g1,17540:12637544,42303769 -h1,17540:13585981,42303769:0,0,0 -k1,17540:32583029,42303769:18997048 -g1,17540:32583029,42303769 -) -(1,17540:6630773,42969947:25952256,388497,82312 -h1,17540:6630773,42969947:0,0,0 -g1,17540:8527648,42969947 -g1,17540:10424523,42969947 -g1,17540:10740669,42969947 -g1,17540:11056815,42969947 -g1,17540:12321398,42969947 -g1,17540:12637544,42969947 -g1,17540:13269836,42969947 -h1,17540:13585982,42969947:0,0,0 -k1,17540:32583030,42969947:18997048 -g1,17540:32583030,42969947 -) -] -) -g1,17541:32583029,43052259 -g1,17541:6630773,43052259 -g1,17541:6630773,43052259 -g1,17541:32583029,43052259 -g1,17541:32583029,43052259 -) -h1,17541:6630773,43248867:0,0,0 -(1,17546:6630773,44374413:25952256,513147,134348 -h1,17544:6630773,44374413:983040,0,0 -k1,17544:10761659,44374413:184963 -k1,17544:12734443,44374413:184962 -k1,17544:16224387,44374413:184963 -k1,17544:17400909,44374413:184962 -k1,17544:18998173,44374413:184963 -k1,17544:19869298,44374413:184963 -k1,17544:21376121,44374413:184962 -k1,17544:22220376,44374413:184963 -k1,17544:23424424,44374413:184963 -k1,17544:25517139,44374413:184962 -k1,17544:27082290,44374413:184963 -k1,17544:28258812,44374413:184962 -k1,17544:30884991,44374413:184963 -k1,17544:32583029,44374413:0 -) -(1,17546:6630773,45040591:25952256,505283,134348 -k1,17544:10355422,45040591:247964 -k1,17544:11254815,45040591:247965 -k1,17544:14122908,45040591:247964 -k1,17544:16053837,45040591:247964 -k1,17544:18138120,45040591:247964 -k1,17544:19582772,45040591:247965 -k1,17544:23048554,45040591:247964 -k1,17544:25615837,45040591:247964 -k1,17544:27055246,45040591:247964 -k1,17544:29600903,45040591:247965 -k1,17544:31966991,45040591:247964 -k1,17544:32583029,45040591:0 -) -(1,17546:6630773,45706769:25952256,513147,134348 -g1,17544:9804681,45706769 -g1,17544:12200021,45706769 -g1,17544:13390810,45706769 -g1,17544:16073854,45706769 -g1,17544:16924511,45706769 -g1,17544:18148723,45706769 -g1,17544:20045990,45706769 -g1,17544:21634582,45706769 -g1,17544:24040408,45706769 -g1,17544:25231197,45706769 -g1,17544:27954217,45706769 -k1,17546:32583029,45706769:4628812 -g1,17546:32583029,45706769 -) -] -(1,17546:32583029,45706769:0,0,0 -g1,17546:32583029,45706769 -) -) -] -(1,17546:6630773,47279633:25952256,0,0 -h1,17546:6630773,47279633:25952256,0,0 -) -] -(1,17546:4262630,4025873:0,0,0 -[1,17546:-473656,4025873:0,0,0 -(1,17546:-473656,-710413:0,0,0 -(1,17546:-473656,-710413:0,0,0 -g1,17546:-473656,-710413 -) -g1,17546:-473656,-710413 -) -] -) -] -!24823 -}344 -Input:2833:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2834:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2835:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2836:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2837:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2838:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2839:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2840:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2841:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!840 -{345 -[1,17637:4262630,47279633:28320399,43253760,0 -(1,17637:4262630,4025873:0,0,0 -[1,17637:-473656,4025873:0,0,0 -(1,17637:-473656,-710413:0,0,0 -(1,17637:-473656,-644877:0,0,0 -k1,17637:-473656,-644877:-65536 -) -(1,17637:-473656,4736287:0,0,0 -k1,17637:-473656,4736287:5209943 -) -g1,17637:-473656,-710413 -) -] -) -[1,17637:6630773,47279633:25952256,43253760,0 -[1,17637:6630773,4812305:25952256,786432,0 -(1,17637:6630773,4812305:25952256,505283,126483 -(1,17637:6630773,4812305:25952256,505283,126483 -g1,17637:3078558,4812305 -[1,17637:3078558,4812305:0,0,0 -(1,17637:3078558,2439708:0,1703936,0 -k1,17637:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,17637:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,17637:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 -) -] -) -) -) -] -[1,17637:3078558,4812305:0,0,0 -(1,17637:3078558,2439708:0,1703936,0 -g1,17637:29030814,2439708 -g1,17637:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,17637:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 -) -] -) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,17637:37855564,2439708:1179648,16384,0 -) -) -k1,17637:3078556,2439708:-34777008 -) -] -[1,17637:3078558,4812305:0,0,0 -(1,17637:3078558,49800853:0,16384,2228224 -k1,17637:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,17637:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,17637:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 -) -] -) -) -) -] -[1,17637:3078558,4812305:0,0,0 -(1,17637:3078558,49800853:0,16384,2228224 -g1,17637:29030814,49800853 -g1,17637:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,17637:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 -) -] -) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,17637:37855564,49800853:1179648,16384,0 -) -) -k1,17637:3078556,49800853:-34777008 -) -] -g1,17637:6630773,4812305 -k1,17637:25146660,4812305:17320510 -g1,17637:26880087,4812305 -g1,17637:29193507,4812305 -g1,17637:30603186,4812305 -) -) -] -[1,17637:6630773,45706769:25952256,40108032,0 -(1,17637:6630773,45706769:25952256,40108032,0 -(1,17637:6630773,45706769:0,0,0 -g1,17637:6630773,45706769 -) -[1,17637:6630773,45706769:25952256,40108032,0 -v1,17546:6630773,6254097:0,393216,0 -(1,17550:6630773,6575485:25952256,714604,196608 -g1,17550:6630773,6575485 -g1,17550:6630773,6575485 -g1,17550:6434165,6575485 -(1,17550:6434165,6575485:0,714604,196608 -r1,17637:32779637,6575485:26345472,911212,196608 -k1,17550:6434165,6575485:-26345472 -) -(1,17550:6434165,6575485:26345472,714604,196608 -[1,17550:6630773,6575485:25952256,517996,0 -(1,17548:6630773,6468007:25952256,410518,107478 -(1,17547:6630773,6468007:0,0,0 -g1,17547:6630773,6468007 -g1,17547:6630773,6468007 -g1,17547:6303093,6468007 -(1,17547:6303093,6468007:0,0,0 -) -g1,17547:6630773,6468007 -) -g1,17548:11056813,6468007 -g1,17548:12005251,6468007 -k1,17548:12005251,6468007:0 -h1,17548:24651078,6468007:0,0,0 -k1,17548:32583029,6468007:7931951 -g1,17548:32583029,6468007 -) -] -) -g1,17550:32583029,6575485 -g1,17550:6630773,6575485 -g1,17550:6630773,6575485 -g1,17550:32583029,6575485 -g1,17550:32583029,6575485 -) -h1,17550:6630773,6772093:0,0,0 -(1,17555:6630773,7958460:25952256,513147,134348 -h1,17553:6630773,7958460:983040,0,0 -k1,17553:9694725,7958460:289158 -(1,17553:9694725,7958460:0,452978,115847 -r1,17637:12514974,7958460:2820249,568825,115847 -k1,17553:9694725,7958460:-2820249 -) -(1,17553:9694725,7958460:2820249,452978,115847 -k1,17553:9694725,7958460:3277 -h1,17553:12511697,7958460:0,411205,112570 -) -k1,17553:12804132,7958460:289158 -k1,17553:13961642,7958460:289158 -k1,17553:15355081,7958460:289157 -k1,17553:17294436,7958460:289158 -k1,17553:19680091,7958460:289158 -k1,17553:20994232,7958460:289158 -k1,17553:22567896,7958460:289158 -k1,17553:23876139,7958460:289158 -k1,17553:26009479,7958460:289157 -k1,17553:26957929,7958460:289158 -k1,17553:28266172,7958460:289158 -k1,17553:32583029,7958460:0 -) -(1,17555:6630773,8624638:25952256,513147,134348 -g1,17553:9180123,8624638 -g1,17553:11273342,8624638 -g1,17553:13264981,8624638 -g1,17553:15835958,8624638 -g1,17553:18354506,8624638 -g1,17553:20845529,8624638 -k1,17555:32583029,8624638:11737500 -g1,17555:32583029,8624638 -) -v1,17555:6630773,9811005:0,393216,0 -(1,17575:6630773,15537174:25952256,6119385,196608 -g1,17575:6630773,15537174 -g1,17575:6630773,15537174 -g1,17575:6434165,15537174 -(1,17575:6434165,15537174:0,6119385,196608 -r1,17637:32779637,15537174:26345472,6315993,196608 -k1,17575:6434165,15537174:-26345472 -) -(1,17575:6434165,15537174:26345472,6119385,196608 -[1,17575:6630773,15537174:25952256,5922777,0 -(1,17557:6630773,10024915:25952256,410518,101187 -(1,17556:6630773,10024915:0,0,0 -g1,17556:6630773,10024915 -g1,17556:6630773,10024915 -g1,17556:6303093,10024915 -(1,17556:6303093,10024915:0,0,0 -) -g1,17556:6630773,10024915 -) -k1,17557:6630773,10024915:0 -g1,17557:13585979,10024915 -h1,17557:15482853,10024915:0,0,0 -k1,17557:32583029,10024915:17100176 -g1,17557:32583029,10024915 -) -(1,17562:6630773,10756629:25952256,404226,9436 -(1,17559:6630773,10756629:0,0,0 -g1,17559:6630773,10756629 -g1,17559:6630773,10756629 -g1,17559:6303093,10756629 -(1,17559:6303093,10756629:0,0,0 -) -g1,17559:6630773,10756629 -) -g1,17562:7579210,10756629 -g1,17562:7895356,10756629 -g1,17562:8211502,10756629 -g1,17562:8527648,10756629 -g1,17562:8843794,10756629 -g1,17562:9159940,10756629 -g1,17562:9476086,10756629 -g1,17562:9792232,10756629 -g1,17562:11372961,10756629 -g1,17562:11689107,10756629 -g1,17562:12005253,10756629 -g1,17562:12321399,10756629 -g1,17562:12637545,10756629 -g1,17562:12953691,10756629 -g1,17562:13269837,10756629 -g1,17562:13585983,10756629 -g1,17562:15166712,10756629 -g1,17562:15482858,10756629 -g1,17562:15799004,10756629 -g1,17562:16115150,10756629 -g1,17562:16431296,10756629 -g1,17562:16747442,10756629 -g1,17562:17063588,10756629 -g1,17562:17379734,10756629 -g1,17562:18960463,10756629 -g1,17562:19276609,10756629 -g1,17562:19592755,10756629 -g1,17562:19908901,10756629 -g1,17562:20225047,10756629 -g1,17562:20541193,10756629 -g1,17562:20857339,10756629 -g1,17562:21173485,10756629 -h1,17562:22438068,10756629:0,0,0 -k1,17562:32583029,10756629:10144961 -g1,17562:32583029,10756629 -) -(1,17562:6630773,11422807:25952256,404226,107478 -h1,17562:6630773,11422807:0,0,0 -g1,17562:7579210,11422807 -g1,17562:7895356,11422807 -g1,17562:8211502,11422807 -g1,17562:11372959,11422807 -g1,17562:11689105,11422807 -g1,17562:12005251,11422807 -g1,17562:15166708,11422807 -g1,17562:15482854,11422807 -g1,17562:15799000,11422807 -g1,17562:18960457,11422807 -h1,17562:22438059,11422807:0,0,0 -k1,17562:32583029,11422807:10144970 -g1,17562:32583029,11422807 -) -(1,17564:6630773,12744345:25952256,410518,76021 -(1,17563:6630773,12744345:0,0,0 -g1,17563:6630773,12744345 -g1,17563:6630773,12744345 -g1,17563:6303093,12744345 -(1,17563:6303093,12744345:0,0,0 -) -g1,17563:6630773,12744345 -) -h1,17564:13902123,12744345:0,0,0 -k1,17564:32583029,12744345:18680906 -g1,17564:32583029,12744345 -) -(1,17568:6630773,13476059:25952256,404226,76021 -(1,17566:6630773,13476059:0,0,0 -g1,17566:6630773,13476059 -g1,17566:6630773,13476059 -g1,17566:6303093,13476059 -(1,17566:6303093,13476059:0,0,0 -) -g1,17566:6630773,13476059 -) -g1,17568:7579210,13476059 -g1,17568:8843793,13476059 -g1,17568:9476085,13476059 -g1,17568:9792231,13476059 -g1,17568:11372960,13476059 -g1,17568:12005252,13476059 -g1,17568:12321398,13476059 -g1,17568:12953690,13476059 -h1,17568:13585981,13476059:0,0,0 -k1,17568:32583029,13476059:18997048 -g1,17568:32583029,13476059 -) -(1,17570:6630773,14797597:25952256,410518,76021 -(1,17569:6630773,14797597:0,0,0 -g1,17569:6630773,14797597 -g1,17569:6630773,14797597 -g1,17569:6303093,14797597 -(1,17569:6303093,14797597:0,0,0 -) -g1,17569:6630773,14797597 -) -k1,17570:6630773,14797597:0 -h1,17570:16431289,14797597:0,0,0 -k1,17570:32583029,14797597:16151740 -g1,17570:32583029,14797597 -) -(1,17574:6630773,15529311:25952256,379060,7863 -(1,17572:6630773,15529311:0,0,0 -g1,17572:6630773,15529311 -g1,17572:6630773,15529311 -g1,17572:6303093,15529311 -(1,17572:6303093,15529311:0,0,0 -) -g1,17572:6630773,15529311 -) -g1,17574:7579210,15529311 -h1,17574:8843793,15529311:0,0,0 -k1,17574:32583029,15529311:23739236 -g1,17574:32583029,15529311 -) -] -) -g1,17575:32583029,15537174 -g1,17575:6630773,15537174 -g1,17575:6630773,15537174 -g1,17575:32583029,15537174 -g1,17575:32583029,15537174 -) -h1,17575:6630773,15733782:0,0,0 -(1,17579:6630773,17095458:25952256,513147,134348 -h1,17578:6630773,17095458:983040,0,0 -k1,17578:8567198,17095458:193167 -k1,17578:11199615,17095458:193167 -k1,17578:13775672,17095458:193168 -k1,17578:16037155,17095458:193167 -k1,17578:17221882,17095458:193167 -k1,17578:20333367,17095458:193167 -k1,17578:21598704,17095458:193168 -k1,17578:23685861,17095458:193167 -k1,17578:25671438,17095458:193167 -k1,17578:26856165,17095458:193167 -k1,17578:28289274,17095458:193168 -k1,17578:29242659,17095458:193167 -k1,17578:32583029,17095458:0 -) -(1,17579:6630773,17936946:25952256,505283,134348 -k1,17578:7826846,17936946:176988 -k1,17578:12829905,17936946:176988 -k1,17578:14400844,17936946:176988 -(1,17578:14400844,17936946:0,452978,115847 -r1,17637:19331364,17936946:4930520,568825,115847 -k1,17578:14400844,17936946:-4930520 -) -(1,17578:14400844,17936946:4930520,452978,115847 -k1,17578:14400844,17936946:3277 -h1,17578:19328087,17936946:0,411205,112570 -) -k1,17578:19508352,17936946:176988 -k1,17578:20553691,17936946:176987 -k1,17578:23403893,17936946:176988 -k1,17578:24865387,17936946:176988 -k1,17578:25803903,17936946:176988 -k1,17578:28408345,17936946:176988 -k1,17578:29356036,17936946:176988 -k1,17578:32583029,17936946:0 -) -(1,17579:6630773,18778434:25952256,513147,134348 -k1,17578:9964690,18778434:261589 -k1,17578:11094631,18778434:261589 -k1,17578:12460503,18778434:261590 -k1,17578:14962768,18778434:261589 -k1,17578:16427598,18778434:261589 -k1,17578:18954767,18778434:261589 -k1,17578:20407802,18778434:261590 -k1,17578:22693143,18778434:261589 -k1,17578:23973817,18778434:261589 -k1,17578:25624769,18778434:261589 -k1,17578:27298660,18778434:261590 -k1,17578:28246411,18778434:261589 -k1,17578:31037690,18778434:261589 -k1,17578:32583029,18778434:0 -) -(1,17579:6630773,19619922:25952256,513147,134348 -g1,17578:8542458,19619922 -g1,17578:9760772,19619922 -g1,17578:12225581,19619922 -g1,17578:13525815,19619922 -g1,17578:15234994,19619922 -g1,17578:17669656,19619922 -g1,17578:18593713,19619922 -g1,17578:20077448,19619922 -g1,17578:21038205,19619922 -g1,17578:23503014,19619922 -g1,17578:25091606,19619922 -g1,17578:27992884,19619922 -g1,17578:28723610,19619922 -k1,17579:32583029,19619922:96997 -g1,17579:32583029,19619922 -) -v1,17581:6630773,20806289:0,393216,0 -(1,17602:6630773,27198636:25952256,6785563,196608 -g1,17602:6630773,27198636 -g1,17602:6630773,27198636 -g1,17602:6434165,27198636 -(1,17602:6434165,27198636:0,6785563,196608 -r1,17637:32779637,27198636:26345472,6982171,196608 -k1,17602:6434165,27198636:-26345472 -) -(1,17602:6434165,27198636:26345472,6785563,196608 -[1,17602:6630773,27198636:25952256,6588955,0 -(1,17583:6630773,21020199:25952256,410518,107478 -(1,17582:6630773,21020199:0,0,0 -g1,17582:6630773,21020199 -g1,17582:6630773,21020199 -g1,17582:6303093,21020199 -(1,17582:6303093,21020199:0,0,0 -) -g1,17582:6630773,21020199 -) -g1,17583:11056813,21020199 -g1,17583:12005251,21020199 -g1,17583:24967224,21020199 -g1,17583:28760972,21020199 -g1,17583:29393264,21020199 -h1,17583:30973993,21020199:0,0,0 -k1,17583:32583029,21020199:1609036 -g1,17583:32583029,21020199 -) -(1,17584:6630773,21686377:25952256,410518,101187 -h1,17584:6630773,21686377:0,0,0 -g1,17584:13585979,21686377 -h1,17584:15482853,21686377:0,0,0 -k1,17584:32583029,21686377:17100176 -g1,17584:32583029,21686377 -) -(1,17589:6630773,22418091:25952256,404226,9436 -(1,17586:6630773,22418091:0,0,0 -g1,17586:6630773,22418091 -g1,17586:6630773,22418091 -g1,17586:6303093,22418091 -(1,17586:6303093,22418091:0,0,0 -) -g1,17586:6630773,22418091 -) -g1,17589:7579210,22418091 -g1,17589:7895356,22418091 -g1,17589:8211502,22418091 -g1,17589:8527648,22418091 -g1,17589:8843794,22418091 -g1,17589:9159940,22418091 -g1,17589:9476086,22418091 -g1,17589:9792232,22418091 -g1,17589:11372961,22418091 -g1,17589:11689107,22418091 -g1,17589:12005253,22418091 -g1,17589:12321399,22418091 -g1,17589:12637545,22418091 -g1,17589:12953691,22418091 -g1,17589:13269837,22418091 -g1,17589:13585983,22418091 -g1,17589:15166712,22418091 -g1,17589:15482858,22418091 -g1,17589:15799004,22418091 -g1,17589:16115150,22418091 -g1,17589:16431296,22418091 -g1,17589:16747442,22418091 -g1,17589:17063588,22418091 -g1,17589:17379734,22418091 -g1,17589:18960463,22418091 -g1,17589:19276609,22418091 -g1,17589:19592755,22418091 -g1,17589:19908901,22418091 -g1,17589:20225047,22418091 -g1,17589:20541193,22418091 -g1,17589:20857339,22418091 -g1,17589:21173485,22418091 -h1,17589:22438068,22418091:0,0,0 -k1,17589:32583029,22418091:10144961 -g1,17589:32583029,22418091 -) -(1,17589:6630773,23084269:25952256,404226,107478 -h1,17589:6630773,23084269:0,0,0 -g1,17589:7579210,23084269 -g1,17589:7895356,23084269 -g1,17589:8211502,23084269 -g1,17589:11372959,23084269 -g1,17589:11689105,23084269 -g1,17589:12005251,23084269 -g1,17589:15166708,23084269 -g1,17589:15482854,23084269 -g1,17589:15799000,23084269 -g1,17589:18960457,23084269 -h1,17589:22438059,23084269:0,0,0 -k1,17589:32583029,23084269:10144970 -g1,17589:32583029,23084269 -) -(1,17591:6630773,24405807:25952256,410518,76021 -(1,17590:6630773,24405807:0,0,0 -g1,17590:6630773,24405807 -g1,17590:6630773,24405807 -g1,17590:6303093,24405807 -(1,17590:6303093,24405807:0,0,0 -) -g1,17590:6630773,24405807 -) -h1,17591:13902123,24405807:0,0,0 -k1,17591:32583029,24405807:18680906 -g1,17591:32583029,24405807 -) -(1,17595:6630773,25137521:25952256,404226,76021 -(1,17593:6630773,25137521:0,0,0 -g1,17593:6630773,25137521 -g1,17593:6630773,25137521 -g1,17593:6303093,25137521 -(1,17593:6303093,25137521:0,0,0 -) -g1,17593:6630773,25137521 -) -g1,17595:7579210,25137521 -g1,17595:8843793,25137521 -g1,17595:10740667,25137521 -g1,17595:11689104,25137521 -h1,17595:12321395,25137521:0,0,0 -k1,17595:32583029,25137521:20261634 -g1,17595:32583029,25137521 -) -(1,17597:6630773,26459059:25952256,410518,76021 -(1,17596:6630773,26459059:0,0,0 -g1,17596:6630773,26459059 -g1,17596:6630773,26459059 -g1,17596:6303093,26459059 -(1,17596:6303093,26459059:0,0,0 -) -g1,17596:6630773,26459059 -) -k1,17597:6630773,26459059:0 -h1,17597:16431289,26459059:0,0,0 -k1,17597:32583029,26459059:16151740 -g1,17597:32583029,26459059 -) -(1,17601:6630773,27190773:25952256,379060,7863 -(1,17599:6630773,27190773:0,0,0 -g1,17599:6630773,27190773 -g1,17599:6630773,27190773 -g1,17599:6303093,27190773 -(1,17599:6303093,27190773:0,0,0 -) -g1,17599:6630773,27190773 -) -g1,17601:7579210,27190773 -h1,17601:8843793,27190773:0,0,0 -k1,17601:32583029,27190773:23739236 -g1,17601:32583029,27190773 -) -] -) -g1,17602:32583029,27198636 -g1,17602:6630773,27198636 -g1,17602:6630773,27198636 -g1,17602:32583029,27198636 -g1,17602:32583029,27198636 -) -h1,17602:6630773,27395244:0,0,0 -(1,17606:6630773,28756921:25952256,513147,134348 -h1,17605:6630773,28756921:983040,0,0 -k1,17605:8988581,28756921:178081 -k1,17605:12192459,28756921:178081 -k1,17605:13938162,28756921:178082 -k1,17605:15135328,28756921:178081 -k1,17605:15728231,28756921:178060 -k1,17605:17617456,28756921:178081 -k1,17605:20375689,28756921:178081 -k1,17605:21315298,28756921:178081 -k1,17605:23758960,28756921:178082 -k1,17605:26329760,28756921:178081 -k1,17605:29221032,28756921:178081 -k1,17605:32583029,28756921:0 -) -(1,17606:6630773,29598409:25952256,513147,134348 -k1,17605:9820208,29598409:214756 -k1,17605:12231076,29598409:214757 -k1,17605:13713298,29598409:214756 -k1,17605:16326016,29598409:214756 -k1,17605:17226935,29598409:214757 -k1,17605:18881517,29598409:214756 -k1,17605:21125268,29598409:214756 -k1,17605:22720868,29598409:214756 -k1,17605:25201205,29598409:214757 -k1,17605:26520243,29598409:214756 -k1,17605:27482765,29598409:214756 -k1,17605:30358939,29598409:214757 -k1,17605:31298523,29598409:214756 -k1,17605:32583029,29598409:0 -) -(1,17606:6630773,30439897:25952256,505283,134348 -g1,17605:9804681,30439897 -g1,17605:12200021,30439897 -g1,17605:14626819,30439897 -g1,17605:15512210,30439897 -k1,17606:32583029,30439897:16365652 -g1,17606:32583029,30439897 -) -v1,17608:6630773,31626264:0,393216,0 -(1,17613:6630773,32613830:25952256,1380782,196608 -g1,17613:6630773,32613830 -g1,17613:6630773,32613830 -g1,17613:6434165,32613830 -(1,17613:6434165,32613830:0,1380782,196608 -r1,17637:32779637,32613830:26345472,1577390,196608 -k1,17613:6434165,32613830:-26345472 -) -(1,17613:6434165,32613830:26345472,1380782,196608 -[1,17613:6630773,32613830:25952256,1184174,0 -(1,17610:6630773,31840174:25952256,410518,107478 -(1,17609:6630773,31840174:0,0,0 -g1,17609:6630773,31840174 -g1,17609:6630773,31840174 -g1,17609:6303093,31840174 -(1,17609:6303093,31840174:0,0,0 -) -g1,17609:6630773,31840174 -) -g1,17610:11056813,31840174 -g1,17610:12005251,31840174 -k1,17610:12005251,31840174:0 -h1,17610:25915660,31840174:0,0,0 -k1,17610:32583029,31840174:6667369 -g1,17610:32583029,31840174 -) -(1,17611:6630773,32506352:25952256,404226,107478 -h1,17611:6630773,32506352:0,0,0 -g1,17611:6946919,32506352 -g1,17611:7263065,32506352 -g1,17611:7579211,32506352 -g1,17611:7895357,32506352 -g1,17611:8211503,32506352 -g1,17611:8527649,32506352 -g1,17611:8843795,32506352 -g1,17611:9159941,32506352 -g1,17611:9476087,32506352 -g1,17611:9792233,32506352 -g1,17611:10108379,32506352 -g1,17611:10424525,32506352 -g1,17611:10740671,32506352 -g1,17611:11056817,32506352 -g1,17611:11372963,32506352 -g1,17611:11689109,32506352 -g1,17611:12005255,32506352 -g1,17611:12321401,32506352 -g1,17611:12637547,32506352 -g1,17611:12953693,32506352 -g1,17611:13269839,32506352 -g1,17611:13585985,32506352 -g1,17611:13902131,32506352 -g1,17611:14218277,32506352 -g1,17611:14534423,32506352 -g1,17611:14850569,32506352 -g1,17611:20225046,32506352 -g1,17611:20857338,32506352 -h1,17611:22754212,32506352:0,0,0 -k1,17611:32583029,32506352:9828817 -g1,17611:32583029,32506352 -) -] -) -g1,17613:32583029,32613830 -g1,17613:6630773,32613830 -g1,17613:6630773,32613830 -g1,17613:32583029,32613830 -g1,17613:32583029,32613830 -) -h1,17613:6630773,32810438:0,0,0 -v1,17617:6630773,34516993:0,393216,0 -(1,17631:6630773,38258068:25952256,4134291,196608 -g1,17631:6630773,38258068 -g1,17631:6630773,38258068 -g1,17631:6434165,38258068 -(1,17631:6434165,38258068:0,4134291,196608 -r1,17637:32779637,38258068:26345472,4330899,196608 -k1,17631:6434165,38258068:-26345472 -) -(1,17631:6434165,38258068:26345472,4134291,196608 -[1,17631:6630773,38258068:25952256,3937683,0 -(1,17619:6630773,34730903:25952256,410518,101187 -(1,17618:6630773,34730903:0,0,0 -g1,17618:6630773,34730903 -g1,17618:6630773,34730903 -g1,17618:6303093,34730903 -(1,17618:6303093,34730903:0,0,0 -) -g1,17618:6630773,34730903 -) -k1,17619:6630773,34730903:0 -g1,17619:13585979,34730903 -h1,17619:15482853,34730903:0,0,0 -k1,17619:32583029,34730903:17100176 -g1,17619:32583029,34730903 -) -(1,17624:6630773,35462617:25952256,404226,9436 -(1,17621:6630773,35462617:0,0,0 -g1,17621:6630773,35462617 -g1,17621:6630773,35462617 -g1,17621:6303093,35462617 -(1,17621:6303093,35462617:0,0,0 -) -g1,17621:6630773,35462617 -) -g1,17624:7579210,35462617 -g1,17624:7895356,35462617 -g1,17624:8211502,35462617 -g1,17624:8527648,35462617 -g1,17624:8843794,35462617 -g1,17624:9159940,35462617 -g1,17624:9476086,35462617 -g1,17624:9792232,35462617 -g1,17624:11372961,35462617 -g1,17624:11689107,35462617 -g1,17624:12005253,35462617 -g1,17624:12321399,35462617 -g1,17624:12637545,35462617 -g1,17624:12953691,35462617 -g1,17624:13269837,35462617 -g1,17624:13585983,35462617 -g1,17624:15166712,35462617 -g1,17624:15482858,35462617 -g1,17624:15799004,35462617 -g1,17624:16115150,35462617 -g1,17624:16431296,35462617 -g1,17624:16747442,35462617 -g1,17624:17063588,35462617 -g1,17624:17379734,35462617 -g1,17624:18960463,35462617 -g1,17624:19276609,35462617 -g1,17624:19592755,35462617 -g1,17624:19908901,35462617 -g1,17624:20225047,35462617 -g1,17624:20541193,35462617 -g1,17624:20857339,35462617 -g1,17624:21173485,35462617 -h1,17624:22438068,35462617:0,0,0 -k1,17624:32583029,35462617:10144961 -g1,17624:32583029,35462617 -) -(1,17624:6630773,36128795:25952256,404226,107478 -h1,17624:6630773,36128795:0,0,0 -g1,17624:7579210,36128795 -g1,17624:7895356,36128795 -g1,17624:8211502,36128795 -g1,17624:11372959,36128795 -g1,17624:11689105,36128795 -g1,17624:12005251,36128795 -g1,17624:15166708,36128795 -g1,17624:15482854,36128795 -g1,17624:15799000,36128795 -g1,17624:18960457,36128795 -h1,17624:22438059,36128795:0,0,0 -k1,17624:32583029,36128795:10144970 -g1,17624:32583029,36128795 -) -(1,17626:6630773,37450333:25952256,410518,76021 -(1,17625:6630773,37450333:0,0,0 -g1,17625:6630773,37450333 -g1,17625:6630773,37450333 -g1,17625:6303093,37450333 -(1,17625:6303093,37450333:0,0,0 -) -g1,17625:6630773,37450333 -) -h1,17626:13902123,37450333:0,0,0 -k1,17626:32583029,37450333:18680906 -g1,17626:32583029,37450333 -) -(1,17630:6630773,38182047:25952256,404226,76021 -(1,17628:6630773,38182047:0,0,0 -g1,17628:6630773,38182047 -g1,17628:6630773,38182047 -g1,17628:6303093,38182047 -(1,17628:6303093,38182047:0,0,0 -) -g1,17628:6630773,38182047 -) -g1,17630:7579210,38182047 -g1,17630:8843793,38182047 -g1,17630:10740667,38182047 -g1,17630:11689104,38182047 -h1,17630:12321395,38182047:0,0,0 -k1,17630:32583029,38182047:20261634 -g1,17630:32583029,38182047 -) -] -) -g1,17631:32583029,38258068 -g1,17631:6630773,38258068 -g1,17631:6630773,38258068 -g1,17631:32583029,38258068 -g1,17631:32583029,38258068 -) -h1,17631:6630773,38454676:0,0,0 -(1,17635:6630773,39816353:25952256,513147,134348 -h1,17634:6630773,39816353:983040,0,0 -k1,17634:10388804,39816353:208601 -k1,17634:12615914,39816353:208601 -k1,17634:14015959,39816353:208600 -k1,17634:17948316,39816353:208601 -k1,17634:20846515,39816353:208601 -k1,17634:22046676,39816353:208601 -k1,17634:24705013,39816353:208601 -k1,17634:25861264,39816353:208600 -k1,17634:28501906,39816353:208601 -k1,17634:30398714,39816353:208601 -k1,17634:32583029,39816353:0 -) -(1,17635:6630773,40657841:25952256,505283,134348 -k1,17634:7395326,40657841:136718 -k1,17634:12893544,40657841:136718 -k1,17634:15375796,40657841:136718 -k1,17634:16531600,40657841:136719 -k1,17634:19152133,40657841:136718 -k1,17634:20945601,40657841:136718 -k1,17634:21613816,40657841:136718 -k1,17634:22106394,40657841:136718 -k1,17634:24104990,40657841:136718 -k1,17634:25931227,40657841:136719 -k1,17634:26683983,40657841:136718 -k1,17634:28572478,40657841:136718 -k1,17634:30411166,40657841:136718 -k1,17634:32583029,40657841:0 -) -(1,17635:6630773,41499329:25952256,513147,134348 -k1,17634:7323744,41499329:234874 -k1,17634:8090114,41499329:234873 -k1,17634:8680848,41499329:234874 -k1,17634:11413299,41499329:234874 -k1,17634:12125929,41499329:234873 -k1,17634:12716663,41499329:234874 -k1,17634:15275444,41499329:234874 -k1,17634:16041814,41499329:234873 -k1,17634:17789914,41499329:234874 -k1,17634:18710950,41499329:234874 -k1,17634:21429638,41499329:234873 -k1,17634:24130632,41499329:234874 -k1,17634:25233858,41499329:234874 -k1,17634:26573013,41499329:234873 -k1,17634:27617257,41499329:234874 -k1,17634:29876538,41499329:234874 -k1,17634:31203896,41499329:234873 -k1,17634:31896867,41499329:234874 -k1,17634:32583029,41499329:0 -) -(1,17635:6630773,42340817:25952256,513147,126483 -k1,17634:8307043,42340817:272489 -k1,17634:11617781,42340817:272489 -k1,17634:13081716,42340817:272490 -k1,17634:13885702,42340817:272489 -k1,17634:16445398,42340817:272489 -k1,17634:20348582,42340817:272489 -k1,17634:21382600,42340817:272490 -k1,17634:22010949,42340817:272489 -k1,17634:25524849,42340817:272489 -h1,17634:25731943,42340817:0,0,0 -k1,17634:26780378,42340817:272489 -k1,17634:27680702,42340817:272489 -k1,17634:29446758,42340817:272490 -k1,17634:30075107,42340817:272489 -k1,17634:31714677,42340817:272489 -k1,17634:32583029,42340817:0 -) -(1,17635:6630773,43182305:25952256,505283,126483 -k1,17634:7954071,43182305:219016 -k1,17634:9265572,43182305:219016 -(1,17634:9265572,43182305:0,452978,115847 -r1,17637:13140956,43182305:3875384,568825,115847 -k1,17634:9265572,43182305:-3875384 -) -(1,17634:9265572,43182305:3875384,452978,115847 -k1,17634:9265572,43182305:3277 -h1,17634:13137679,43182305:0,411205,112570 -) -k1,17634:13359971,43182305:219015 -k1,17634:14770432,43182305:219016 -(1,17634:14770432,43182305:0,452978,115847 -r1,17637:18294104,43182305:3523672,568825,115847 -k1,17634:14770432,43182305:-3523672 -) -(1,17634:14770432,43182305:3523672,452978,115847 -k1,17634:14770432,43182305:3277 -h1,17634:18290827,43182305:0,411205,112570 -) -k1,17634:18686790,43182305:219016 -k1,17634:23099455,43182305:219016 -k1,17634:26929505,43182305:219016 -(1,17634:26929505,43182305:0,452978,115847 -r1,17637:27991194,43182305:1061689,568825,115847 -k1,17634:26929505,43182305:-1061689 -) -(1,17634:26929505,43182305:1061689,452978,115847 -k1,17634:26929505,43182305:3277 -h1,17634:27987917,43182305:0,411205,112570 -) -k1,17634:28210209,43182305:219015 -k1,17634:29620670,43182305:219016 -(1,17634:29620670,43182305:0,414482,115847 -r1,17637:30682359,43182305:1061689,530329,115847 -k1,17634:29620670,43182305:-1061689 -) -(1,17634:29620670,43182305:1061689,414482,115847 -k1,17634:29620670,43182305:3277 -h1,17634:30679082,43182305:0,411205,112570 -) -k1,17634:30901375,43182305:219016 -k1,17634:32583029,43182305:0 -) -(1,17635:6630773,44023793:25952256,505283,134348 -k1,17634:9028209,44023793:215742 -k1,17634:10883006,44023793:215742 -k1,17634:11750176,44023793:215742 -k1,17634:14762339,44023793:215742 -k1,17634:18456732,44023793:215742 -k1,17634:21462342,44023793:215742 -(1,17634:21462342,44023793:0,452978,115847 -r1,17637:25689438,44023793:4227096,568825,115847 -k1,17634:21462342,44023793:-4227096 -) -(1,17634:21462342,44023793:4227096,452978,115847 -k1,17634:21462342,44023793:3277 -h1,17634:25686161,44023793:0,411205,112570 -) -k1,17634:25905180,44023793:215742 -k1,17634:27613832,44023793:215742 -k1,17634:28848659,44023793:215742 -k1,17634:30986572,44023793:215742 -k1,17634:32583029,44023793:0 -) -(1,17635:6630773,44865281:25952256,513147,134348 -k1,17634:7981705,44865281:159487 -k1,17634:11166989,44865281:159487 -k1,17634:12472702,44865281:159488 -(1,17634:12472702,44865281:0,452978,115847 -r1,17637:15996374,44865281:3523672,568825,115847 -k1,17634:12472702,44865281:-3523672 -) -(1,17634:12472702,44865281:3523672,452978,115847 -k1,17634:12472702,44865281:3277 -h1,17634:15993097,44865281:0,411205,112570 -) -k1,17634:16155861,44865281:159487 -k1,17634:17690949,44865281:159487 -k1,17634:19593694,44865281:159487 -k1,17634:20369220,44865281:159488 -k1,17634:21547792,44865281:159487 -k1,17634:23972859,44865281:159487 -k1,17634:27534975,44865281:159487 -k1,17634:28642114,44865281:159488 -k1,17634:29820686,44865281:159487 -k1,17634:32583029,44865281:0 -) -(1,17635:6630773,45706769:25952256,513147,126483 -k1,17634:10578421,45706769:162944 -k1,17634:11501583,45706769:162944 -k1,17634:14103777,45706769:162944 -(1,17634:14103777,45706769:0,452978,115847 -r1,17637:18330873,45706769:4227096,568825,115847 -k1,17634:14103777,45706769:-4227096 -) -(1,17634:14103777,45706769:4227096,452978,115847 -k1,17634:14103777,45706769:3277 -h1,17634:18327596,45706769:0,411205,112570 -) -k1,17634:18493817,45706769:162944 -k1,17634:21058000,45706769:162944 -k1,17634:22955027,45706769:162944 -k1,17634:23769399,45706769:162944 -k1,17634:24680109,45706769:162944 -k1,17634:27966499,45706769:162944 -k1,17634:28890971,45706769:162944 -k1,17634:30795207,45706769:162944 -k1,17634:32583029,45706769:0 -) -] -(1,17637:32583029,45706769:0,0,0 -g1,17637:32583029,45706769 -) -) -] -(1,17637:6630773,47279633:25952256,0,0 -h1,17637:6630773,47279633:25952256,0,0 -) -] -(1,17637:4262630,4025873:0,0,0 -[1,17637:-473656,4025873:0,0,0 -(1,17637:-473656,-710413:0,0,0 -(1,17637:-473656,-710413:0,0,0 -g1,17637:-473656,-710413 -) -g1,17637:-473656,-710413 -) -] -) -] -!28257 -}345 -Input:2842:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2843:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2844:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2845:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2846:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2847:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2848:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2849:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2850:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2851:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!932 -{346 -[1,17722:4262630,47279633:28320399,43253760,0 -(1,17722:4262630,4025873:0,0,0 -[1,17722:-473656,4025873:0,0,0 -(1,17722:-473656,-710413:0,0,0 -(1,17722:-473656,-644877:0,0,0 -k1,17722:-473656,-644877:-65536 -) -(1,17722:-473656,4736287:0,0,0 -k1,17722:-473656,4736287:5209943 -) -g1,17722:-473656,-710413 -) -] -) -[1,17722:6630773,47279633:25952256,43253760,0 -[1,17722:6630773,4812305:25952256,786432,0 -(1,17722:6630773,4812305:25952256,513147,126483 -(1,17722:6630773,4812305:25952256,513147,126483 -g1,17722:3078558,4812305 -[1,17722:3078558,4812305:0,0,0 -(1,17722:3078558,2439708:0,1703936,0 -k1,17722:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,17722:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,17722:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 -) -] -) -) -) -] -[1,17722:3078558,4812305:0,0,0 -(1,17722:3078558,2439708:0,1703936,0 -g1,17722:29030814,2439708 -g1,17722:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,17722:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 -) -] -) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,17722:37855564,2439708:1179648,16384,0 -) -) -k1,17722:3078556,2439708:-34777008 -) -] -[1,17722:3078558,4812305:0,0,0 -(1,17722:3078558,49800853:0,16384,2228224 -k1,17722:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,17722:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,17722:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 -) -] -) -) -) -] -[1,17722:3078558,4812305:0,0,0 -(1,17722:3078558,49800853:0,16384,2228224 -g1,17722:29030814,49800853 -g1,17722:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,17722:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 -) -] -) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,17722:37855564,49800853:1179648,16384,0 -) -) -k1,17722:3078556,49800853:-34777008 -) -] -g1,17722:6630773,4812305 -g1,17722:6630773,4812305 -g1,17722:9744388,4812305 -g1,17722:11175694,4812305 -k1,17722:31387652,4812305:20211958 -) -) -] -[1,17722:6630773,45706769:25952256,40108032,0 -(1,17722:6630773,45706769:25952256,40108032,0 -(1,17722:6630773,45706769:0,0,0 -g1,17722:6630773,45706769 -) -[1,17722:6630773,45706769:25952256,40108032,0 -(1,17635:6630773,6254097:25952256,505283,134348 -k1,17634:8238917,6254097:244340 -k1,17634:9166142,6254097:244340 -k1,17634:11060679,6254097:244340 -k1,17634:13596813,6254097:244340 -k1,17634:15358311,6254097:244340 -k1,17634:16885846,6254097:244340 -k1,17634:18802665,6254097:244340 -k1,17634:19729890,6254097:244340 -k1,17634:22518993,6254097:244340 -k1,17634:25154742,6254097:244340 -k1,17634:27620097,6254097:244340 -k1,17634:29258388,6254097:244340 -k1,17634:32583029,6254097:0 -) -(1,17635:6630773,7095585:25952256,513147,126483 -g1,17634:8948126,7095585 -g1,17634:10677621,7095585 -g1,17634:11528278,7095585 -g1,17634:12475273,7095585 -g1,17634:14913212,7095585 -g1,17634:15728479,7095585 -g1,17634:16946793,7095585 -g1,17634:18129062,7095585 -g1,17634:19014453,7095585 -g1,17634:21289207,7095585 -k1,17635:32583029,7095585:9251720 -g1,17635:32583029,7095585 -) -v1,17637:6630773,8286051:0,393216,0 -(1,17643:6630773,9835461:25952256,1942626,196608 -g1,17643:6630773,9835461 -g1,17643:6630773,9835461 -g1,17643:6434165,9835461 -(1,17643:6434165,9835461:0,1942626,196608 -r1,17722:32779637,9835461:26345472,2139234,196608 -k1,17643:6434165,9835461:-26345472 -) -(1,17643:6434165,9835461:26345472,1942626,196608 -[1,17643:6630773,9835461:25952256,1746018,0 -(1,17642:6630773,8493669:25952256,404226,9436 -(1,17638:6630773,8493669:0,0,0 -g1,17638:6630773,8493669 -g1,17638:6630773,8493669 -g1,17638:6303093,8493669 -(1,17638:6303093,8493669:0,0,0 -) -g1,17638:6630773,8493669 -) -g1,17642:8211502,8493669 -g1,17642:9792231,8493669 -g1,17642:11372960,8493669 -h1,17642:12637543,8493669:0,0,0 -k1,17642:32583029,8493669:19945486 -g1,17642:32583029,8493669 -) -(1,17642:6630773,9159847:25952256,388497,9436 -h1,17642:6630773,9159847:0,0,0 -g1,17642:6946919,9159847 -g1,17642:8211502,9159847 -g1,17642:9792231,9159847 -g1,17642:10108377,9159847 -g1,17642:11372960,9159847 -h1,17642:12321397,9159847:0,0,0 -k1,17642:32583029,9159847:20261632 -g1,17642:32583029,9159847 -) -(1,17642:6630773,9826025:25952256,404226,9436 -h1,17642:6630773,9826025:0,0,0 -g1,17642:8211502,9826025 -g1,17642:9792231,9826025 -g1,17642:10108377,9826025 -g1,17642:10424523,9826025 -g1,17642:11372960,9826025 -g1,17642:12321397,9826025 -h1,17642:12953688,9826025:0,0,0 -k1,17642:32583028,9826025:19629340 -g1,17642:32583028,9826025 -) -] -) -g1,17643:32583029,9835461 -g1,17643:6630773,9835461 -g1,17643:6630773,9835461 -g1,17643:32583029,9835461 -g1,17643:32583029,9835461 -) -h1,17643:6630773,10032069:0,0,0 -v1,17647:6630773,11746823:0,393216,0 -(1,17651:6630773,12068211:25952256,714604,196608 -g1,17651:6630773,12068211 -g1,17651:6630773,12068211 -g1,17651:6434165,12068211 -(1,17651:6434165,12068211:0,714604,196608 -r1,17722:32779637,12068211:26345472,911212,196608 -k1,17651:6434165,12068211:-26345472 -) -(1,17651:6434165,12068211:26345472,714604,196608 -[1,17651:6630773,12068211:25952256,517996,0 -(1,17649:6630773,11960733:25952256,410518,107478 -(1,17648:6630773,11960733:0,0,0 -g1,17648:6630773,11960733 -g1,17648:6630773,11960733 -g1,17648:6303093,11960733 -(1,17648:6303093,11960733:0,0,0 -) -g1,17648:6630773,11960733 -) -g1,17649:11056813,11960733 -g1,17649:12005251,11960733 -g1,17649:24651079,11960733 -g1,17649:26864099,11960733 -g1,17649:27496391,11960733 -h1,17649:29077120,11960733:0,0,0 -k1,17649:32583029,11960733:3505909 -g1,17649:32583029,11960733 -) -] -) -g1,17651:32583029,12068211 -g1,17651:6630773,12068211 -g1,17651:6630773,12068211 -g1,17651:32583029,12068211 -g1,17651:32583029,12068211 -) -h1,17651:6630773,12264819:0,0,0 -v1,17655:6630773,13979573:0,393216,0 -(1,17675:6630773,19705742:25952256,6119385,196608 -g1,17675:6630773,19705742 -g1,17675:6630773,19705742 -g1,17675:6434165,19705742 -(1,17675:6434165,19705742:0,6119385,196608 -r1,17722:32779637,19705742:26345472,6315993,196608 -k1,17675:6434165,19705742:-26345472 -) -(1,17675:6434165,19705742:26345472,6119385,196608 -[1,17675:6630773,19705742:25952256,5922777,0 -(1,17657:6630773,14193483:25952256,410518,101187 -(1,17656:6630773,14193483:0,0,0 -g1,17656:6630773,14193483 -g1,17656:6630773,14193483 -g1,17656:6303093,14193483 -(1,17656:6303093,14193483:0,0,0 -) -g1,17656:6630773,14193483 -) -k1,17657:6630773,14193483:0 -g1,17657:13585979,14193483 -h1,17657:15482853,14193483:0,0,0 -k1,17657:32583029,14193483:17100176 -g1,17657:32583029,14193483 -) -(1,17662:6630773,14925197:25952256,404226,9436 -(1,17659:6630773,14925197:0,0,0 -g1,17659:6630773,14925197 -g1,17659:6630773,14925197 -g1,17659:6303093,14925197 -(1,17659:6303093,14925197:0,0,0 -) -g1,17659:6630773,14925197 -) -g1,17662:7579210,14925197 -g1,17662:7895356,14925197 -g1,17662:8211502,14925197 -g1,17662:8527648,14925197 -g1,17662:8843794,14925197 -g1,17662:9159940,14925197 -g1,17662:9476086,14925197 -g1,17662:9792232,14925197 -g1,17662:11372961,14925197 -g1,17662:11689107,14925197 -g1,17662:12005253,14925197 -g1,17662:12321399,14925197 -g1,17662:12637545,14925197 -g1,17662:12953691,14925197 -g1,17662:13269837,14925197 -g1,17662:13585983,14925197 -g1,17662:15166712,14925197 -g1,17662:15482858,14925197 -g1,17662:15799004,14925197 -g1,17662:16115150,14925197 -g1,17662:16431296,14925197 -g1,17662:16747442,14925197 -g1,17662:17063588,14925197 -g1,17662:17379734,14925197 -g1,17662:18960463,14925197 -g1,17662:19276609,14925197 -g1,17662:19592755,14925197 -g1,17662:19908901,14925197 -g1,17662:20225047,14925197 -g1,17662:20541193,14925197 -g1,17662:20857339,14925197 -g1,17662:21173485,14925197 -h1,17662:22438068,14925197:0,0,0 -k1,17662:32583029,14925197:10144961 -g1,17662:32583029,14925197 -) -(1,17662:6630773,15591375:25952256,404226,107478 -h1,17662:6630773,15591375:0,0,0 -g1,17662:7579210,15591375 -g1,17662:7895356,15591375 -g1,17662:8211502,15591375 -g1,17662:11372959,15591375 -g1,17662:11689105,15591375 -g1,17662:12005251,15591375 -g1,17662:15166708,15591375 -g1,17662:15482854,15591375 -g1,17662:15799000,15591375 -g1,17662:18960457,15591375 -h1,17662:22438059,15591375:0,0,0 -k1,17662:32583029,15591375:10144970 -g1,17662:32583029,15591375 -) -(1,17664:6630773,16912913:25952256,410518,76021 -(1,17663:6630773,16912913:0,0,0 -g1,17663:6630773,16912913 -g1,17663:6630773,16912913 -g1,17663:6303093,16912913 -(1,17663:6303093,16912913:0,0,0 -) -g1,17663:6630773,16912913 -) -h1,17664:13902123,16912913:0,0,0 -k1,17664:32583029,16912913:18680906 -g1,17664:32583029,16912913 -) -(1,17668:6630773,17644627:25952256,404226,76021 -(1,17666:6630773,17644627:0,0,0 -g1,17666:6630773,17644627 -g1,17666:6630773,17644627 -g1,17666:6303093,17644627 -(1,17666:6303093,17644627:0,0,0 -) -g1,17666:6630773,17644627 -) -g1,17668:7579210,17644627 -g1,17668:8843793,17644627 -g1,17668:10740667,17644627 -g1,17668:11689104,17644627 -h1,17668:12321395,17644627:0,0,0 -k1,17668:32583029,17644627:20261634 -g1,17668:32583029,17644627 -) -(1,17670:6630773,18966165:25952256,410518,76021 -(1,17669:6630773,18966165:0,0,0 -g1,17669:6630773,18966165 -g1,17669:6630773,18966165 -g1,17669:6303093,18966165 -(1,17669:6303093,18966165:0,0,0 -) -g1,17669:6630773,18966165 -) -k1,17670:6630773,18966165:0 -h1,17670:16431289,18966165:0,0,0 -k1,17670:32583029,18966165:16151740 -g1,17670:32583029,18966165 -) -(1,17674:6630773,19697879:25952256,379060,7863 -(1,17672:6630773,19697879:0,0,0 -g1,17672:6630773,19697879 -g1,17672:6630773,19697879 -g1,17672:6303093,19697879 -(1,17672:6303093,19697879:0,0,0 -) -g1,17672:6630773,19697879 -) -g1,17674:7579210,19697879 -h1,17674:8843793,19697879:0,0,0 -k1,17674:32583029,19697879:23739236 -g1,17674:32583029,19697879 -) -] -) -g1,17675:32583029,19705742 -g1,17675:6630773,19705742 -g1,17675:6630773,19705742 -g1,17675:32583029,19705742 -g1,17675:32583029,19705742 -) -h1,17675:6630773,19902350:0,0,0 -(1,17680:6630773,21268126:25952256,513147,134348 -h1,17679:6630773,21268126:983040,0,0 -k1,17679:9318226,21268126:225265 -k1,17679:9899351,21268126:225265 -k1,17679:13715989,21268126:225265 -k1,17679:16295307,21268126:225265 -k1,17679:17329942,21268126:225265 -k1,17679:20773680,21268126:225265 -k1,17679:21990505,21268126:225265 -k1,17679:24687788,21268126:225265 -k1,17679:27902805,21268126:225265 -k1,17679:28659567,21268126:225265 -k1,17679:30739501,21268126:225265 -k1,17679:32583029,21268126:0 -) -(1,17680:6630773,22109614:25952256,513147,126483 -k1,17679:7693566,22109614:253423 -k1,17679:8966074,22109614:253423 -k1,17679:11833728,22109614:253423 -k1,17679:12746442,22109614:253422 -k1,17679:14018950,22109614:253423 -k1,17679:17577354,22109614:253423 -k1,17679:18446815,22109614:253423 -k1,17679:19719323,22109614:253423 -k1,17679:21141253,22109614:253423 -k1,17679:22077560,22109614:253422 -k1,17679:24577557,22109614:253423 -k1,17679:25318514,22109614:253369 -k1,17679:26554977,22109614:253423 -k1,17679:27954624,22109614:253422 -k1,17679:29411288,22109614:253423 -k1,17679:31835263,22109614:253423 -k1,17679:32583029,22109614:0 -) -(1,17680:6630773,22951102:25952256,513147,134348 -k1,17679:10517331,22951102:296496 -k1,17679:13274048,22951102:296495 -k1,17679:13926404,22951102:296496 -k1,17679:17832623,22951102:296496 -k1,17679:18788410,22951102:296495 -k1,17679:20103991,22951102:296496 -k1,17679:22580870,22951102:296496 -k1,17679:24390591,22951102:296495 -k1,17679:25634738,22951102:296496 -k1,17679:27964816,22951102:296496 -k1,17679:29280396,22951102:296495 -k1,17679:31139926,22951102:296496 -k1,17679:32583029,22951102:0 -) -(1,17680:6630773,23792590:25952256,513147,134348 -k1,17679:10161378,23792590:168608 -k1,17679:11719349,23792590:168608 -k1,17679:13926126,23792590:168607 -k1,17679:14710772,23792590:168608 -k1,17679:16366392,23792590:168608 -k1,17679:18296608,23792590:168608 -k1,17679:20688852,23792590:168608 -k1,17679:21961742,23792590:168608 -k1,17679:22878115,23792590:168607 -k1,17679:24459024,23792590:168608 -k1,17679:26021583,23792590:168608 -k1,17679:28885687,23792590:168608 -(1,17679:28885687,23792590:0,459977,115847 -r1,17722:32409359,23792590:3523672,575824,115847 -k1,17679:28885687,23792590:-3523672 -) -(1,17679:28885687,23792590:3523672,459977,115847 -k1,17679:28885687,23792590:3277 -h1,17679:32406082,23792590:0,411205,112570 -) -k1,17679:32583029,23792590:0 -) -(1,17680:6630773,24634078:25952256,513147,134348 -k1,17679:9339201,24634078:148592 -k1,17679:10435444,24634078:148592 -k1,17679:10939896,24634078:148592 -k1,17679:12961507,24634078:148592 -k1,17679:16851549,24634078:148592 -k1,17679:18104423,24634078:148592 -k1,17679:19000781,24634078:148592 -k1,17679:21187542,24634078:148591 -k1,17679:21952172,24634078:148592 -k1,17679:22456624,24634078:148592 -k1,17679:24478235,24634078:148592 -k1,17679:25309712,24634078:148592 -k1,17679:28129551,24634078:148592 -k1,17679:29950622,24634078:148592 -k1,17679:30727049,24634078:148592 -k1,17679:32583029,24634078:0 -) -(1,17680:6630773,25475566:25952256,513147,102891 -g1,17679:8370753,25475566 -g1,17679:10021604,25475566 -g1,17679:11389340,25475566 -g1,17679:12689574,25475566 -g1,17679:14622886,25475566 -g1,17679:15481407,25475566 -g1,17679:18442979,25475566 -g1,17679:19714377,25475566 -g1,17679:21477295,25475566 -g1,17679:23814308,25475566 -k1,17680:32583029,25475566:6450057 -g1,17680:32583029,25475566 -) -(1,17682:6630773,26317054:25952256,513147,126483 -h1,17681:6630773,26317054:983040,0,0 -k1,17681:10616799,26317054:213118 -(1,17681:10616799,26317054:0,459977,115847 -r1,17722:15547319,26317054:4930520,575824,115847 -k1,17681:10616799,26317054:-4930520 -) -(1,17681:10616799,26317054:4930520,459977,115847 -k1,17681:10616799,26317054:3277 -h1,17681:15544042,26317054:0,411205,112570 -) -k1,17681:15760437,26317054:213118 -k1,17681:16505052,26317054:213118 -k1,17681:17074030,26317054:213118 -k1,17681:19929560,26317054:213118 -k1,17681:20952048,26317054:213118 -(1,17681:20952048,26317054:0,459977,115847 -r1,17722:24475720,26317054:3523672,575824,115847 -k1,17681:20952048,26317054:-3523672 -) -(1,17681:20952048,26317054:3523672,459977,115847 -k1,17681:20952048,26317054:3277 -h1,17681:24472443,26317054:0,411205,112570 -) -k1,17681:24688838,26317054:213118 -k1,17681:26186462,26317054:213118 -k1,17681:28777882,26317054:213118 -k1,17681:31171383,26317054:213118 -k1,17682:32583029,26317054:0 -) -(1,17682:6630773,27158542:25952256,513147,126483 -k1,17681:9002167,27158542:157588 -k1,17681:11361765,27158542:157588 -k1,17681:12170781,27158542:157588 -k1,17681:14072282,27158542:157588 -k1,17681:15743097,27158542:157589 -k1,17681:16516723,27158542:157588 -k1,17681:19888852,27158542:157588 -k1,17681:21317838,27158542:157588 -k1,17681:25415450,27158542:157588 -k1,17681:26240194,27158542:157588 -k1,17681:29438612,27158542:157547 -k1,17681:32583029,27158542:0 -) -(1,17682:6630773,28000030:25952256,513147,126483 -k1,17681:8296131,28000030:237328 -k1,17681:11127373,28000030:237327 -k1,17681:11896198,28000030:237328 -k1,17681:13418031,28000030:237327 -k1,17681:14674444,28000030:237328 -k1,17681:17395586,28000030:237327 -k1,17681:19925363,28000030:237328 -k1,17681:21266972,28000030:237327 -k1,17681:22252066,28000030:237328 -k1,17681:24986970,28000030:237327 -k1,17681:25840336,28000030:237328 -k1,17681:27096748,28000030:237327 -k1,17681:29145491,28000030:237328 -k1,17681:30365859,28000030:237328 -k1,17681:31794631,28000030:237327 -k1,17681:32583029,28000030:0 -) -(1,17682:6630773,28841518:25952256,513147,126483 -k1,17681:9468950,28841518:223946 -k1,17681:12524706,28841518:223945 -k1,17681:13434814,28841518:223946 -k1,17681:14980621,28841518:223946 -k1,17681:15863859,28841518:223946 -k1,17681:17106889,28841518:223945 -k1,17681:19511218,28841518:223946 -k1,17681:22990993,28841518:223946 -k1,17681:23570798,28841518:223945 -k1,17681:25267338,28841518:223946 -k1,17681:27004510,28841518:223946 -k1,17681:27879884,28841518:223946 -k1,17681:29819562,28841518:223945 -k1,17681:31269687,28841518:223946 -k1,17681:32583029,28841518:0 -) -(1,17682:6630773,29683006:25952256,513147,126483 -k1,17681:7776764,29683006:256012 -k1,17681:10032280,29683006:256013 -k1,17681:10947584,29683006:256012 -k1,17681:13202445,29683006:256013 -k1,17681:15568061,29683006:256012 -k1,17681:18349832,29683006:256013 -k1,17681:21035264,29683006:256012 -k1,17681:23955316,29683006:256013 -k1,17681:24878484,29683006:256012 -k1,17681:28175311,29683006:255956 -k1,17681:30957736,29683006:256012 -k1,17682:32583029,29683006:0 -) -(1,17682:6630773,30524494:25952256,513147,134348 -k1,17681:7849633,30524494:228611 -k1,17681:9645866,30524494:228612 -k1,17681:11065922,30524494:228611 -k1,17681:13552248,30524494:228611 -k1,17681:14432288,30524494:228612 -k1,17681:16362869,30524494:228611 -k1,17681:19102164,30524494:228611 -k1,17681:20477001,30524494:228612 -k1,17681:22449525,30524494:228611 -k1,17681:24413529,30524494:228611 -k1,17681:26045922,30524494:228612 -k1,17681:29493006,30524494:228611 -k1,17681:32583029,30524494:0 -) -(1,17682:6630773,31365982:25952256,505283,7863 -k1,17682:32583028,31365982:23923260 -g1,17682:32583028,31365982 -) -v1,17684:6630773,32556448:0,393216,0 -(1,17689:6630773,33423951:25952256,1260719,196608 -g1,17689:6630773,33423951 -g1,17689:6630773,33423951 -g1,17689:6434165,33423951 -(1,17689:6434165,33423951:0,1260719,196608 -r1,17722:32779637,33423951:26345472,1457327,196608 -k1,17689:6434165,33423951:-26345472 -) -(1,17689:6434165,33423951:26345472,1260719,196608 -[1,17689:6630773,33423951:25952256,1064111,0 -(1,17688:6630773,32748337:25952256,388497,9436 -(1,17685:6630773,32748337:0,0,0 -g1,17685:6630773,32748337 -g1,17685:6630773,32748337 -g1,17685:6303093,32748337 -(1,17685:6303093,32748337:0,0,0 -) -g1,17685:6630773,32748337 -) -g1,17688:6946919,32748337 -h1,17688:10424521,32748337:0,0,0 -k1,17688:32583029,32748337:22158508 -g1,17688:32583029,32748337 -) -(1,17688:6630773,33414515:25952256,388497,9436 -h1,17688:6630773,33414515:0,0,0 -g1,17688:8843793,33414515 -g1,17688:10108376,33414515 -h1,17688:10424522,33414515:0,0,0 -k1,17688:32583030,33414515:22158508 -g1,17688:32583030,33414515 -) -] -) -g1,17689:32583029,33423951 -g1,17689:6630773,33423951 -g1,17689:6630773,33423951 -g1,17689:32583029,33423951 -g1,17689:32583029,33423951 -) -h1,17689:6630773,33620559:0,0,0 -v1,17693:6630773,35335313:0,393216,0 -(1,17699:6630773,36963891:25952256,2021794,196608 -g1,17699:6630773,36963891 -g1,17699:6630773,36963891 -g1,17699:6434165,36963891 -(1,17699:6434165,36963891:0,2021794,196608 -r1,17722:32779637,36963891:26345472,2218402,196608 -k1,17699:6434165,36963891:-26345472 -) -(1,17699:6434165,36963891:26345472,2021794,196608 -[1,17699:6630773,36963891:25952256,1825186,0 -(1,17695:6630773,35549223:25952256,410518,107478 -(1,17694:6630773,35549223:0,0,0 -g1,17694:6630773,35549223 -g1,17694:6630773,35549223 -g1,17694:6303093,35549223 -(1,17694:6303093,35549223:0,0,0 -) -g1,17694:6630773,35549223 -) -g1,17695:11056813,35549223 -g1,17695:12005251,35549223 -k1,17695:12005251,35549223:0 -h1,17695:24967224,35549223:0,0,0 -k1,17695:32583029,35549223:7615805 -g1,17695:32583029,35549223 -) -(1,17696:6630773,36215401:25952256,410518,82312 -h1,17696:6630773,36215401:0,0,0 -g1,17696:6946919,36215401 -g1,17696:7263065,36215401 -g1,17696:7579211,36215401 -g1,17696:7895357,36215401 -g1,17696:8211503,36215401 -g1,17696:8527649,36215401 -g1,17696:8843795,36215401 -g1,17696:9159941,36215401 -g1,17696:9476087,36215401 -g1,17696:9792233,36215401 -g1,17696:10108379,36215401 -g1,17696:10424525,36215401 -g1,17696:10740671,36215401 -g1,17696:11056817,36215401 -g1,17696:11372963,36215401 -g1,17696:11689109,36215401 -g1,17696:12005255,36215401 -g1,17696:12321401,36215401 -g1,17696:12637547,36215401 -g1,17696:12953693,36215401 -g1,17696:13269839,36215401 -g1,17696:13585985,36215401 -g1,17696:13902131,36215401 -g1,17696:14218277,36215401 -g1,17696:14534423,36215401 -g1,17696:14850569,36215401 -g1,17696:15166715,36215401 -g1,17696:15482861,36215401 -g1,17696:15799007,36215401 -g1,17696:16115153,36215401 -g1,17696:18328173,36215401 -g1,17696:18960465,36215401 -g1,17696:22438069,36215401 -g1,17696:24967235,36215401 -k1,17696:24967235,36215401:0 -h1,17696:26864110,36215401:0,0,0 -k1,17696:32583029,36215401:5718919 -g1,17696:32583029,36215401 -) -(1,17697:6630773,36881579:25952256,404226,82312 -h1,17697:6630773,36881579:0,0,0 -g1,17697:6946919,36881579 -g1,17697:7263065,36881579 -g1,17697:7579211,36881579 -g1,17697:7895357,36881579 -g1,17697:8211503,36881579 -g1,17697:8527649,36881579 -g1,17697:8843795,36881579 -g1,17697:9159941,36881579 -g1,17697:9476087,36881579 -g1,17697:9792233,36881579 -g1,17697:10108379,36881579 -g1,17697:10424525,36881579 -g1,17697:10740671,36881579 -g1,17697:11056817,36881579 -g1,17697:11372963,36881579 -g1,17697:11689109,36881579 -g1,17697:12005255,36881579 -g1,17697:12321401,36881579 -g1,17697:12637547,36881579 -g1,17697:12953693,36881579 -g1,17697:13269839,36881579 -g1,17697:13585985,36881579 -g1,17697:13902131,36881579 -g1,17697:14218277,36881579 -g1,17697:14534423,36881579 -g1,17697:14850569,36881579 -g1,17697:15166715,36881579 -g1,17697:15482861,36881579 -g1,17697:15799007,36881579 -g1,17697:16115153,36881579 -g1,17697:19276610,36881579 -g1,17697:19908902,36881579 -g1,17697:23070360,36881579 -g1,17697:25599526,36881579 -g1,17697:28128692,36881579 -h1,17697:30657857,36881579:0,0,0 -k1,17697:32583029,36881579:1925172 -g1,17697:32583029,36881579 -) -] -) -g1,17699:32583029,36963891 -g1,17699:6630773,36963891 -g1,17699:6630773,36963891 -g1,17699:32583029,36963891 -g1,17699:32583029,36963891 -) -h1,17699:6630773,37160499:0,0,0 -v1,17703:6630773,38875253:0,393216,0 -(1,17717:6630773,42616328:25952256,4134291,196608 -g1,17717:6630773,42616328 -g1,17717:6630773,42616328 -g1,17717:6434165,42616328 -(1,17717:6434165,42616328:0,4134291,196608 -r1,17722:32779637,42616328:26345472,4330899,196608 -k1,17717:6434165,42616328:-26345472 -) -(1,17717:6434165,42616328:26345472,4134291,196608 -[1,17717:6630773,42616328:25952256,3937683,0 -(1,17705:6630773,39089163:25952256,410518,101187 -(1,17704:6630773,39089163:0,0,0 -g1,17704:6630773,39089163 -g1,17704:6630773,39089163 -g1,17704:6303093,39089163 -(1,17704:6303093,39089163:0,0,0 -) -g1,17704:6630773,39089163 -) -k1,17705:6630773,39089163:0 -g1,17705:13585979,39089163 -h1,17705:15482853,39089163:0,0,0 -k1,17705:32583029,39089163:17100176 -g1,17705:32583029,39089163 -) -(1,17710:6630773,39820877:25952256,404226,9436 -(1,17707:6630773,39820877:0,0,0 -g1,17707:6630773,39820877 -g1,17707:6630773,39820877 -g1,17707:6303093,39820877 -(1,17707:6303093,39820877:0,0,0 -) -g1,17707:6630773,39820877 -) -g1,17710:7579210,39820877 -g1,17710:7895356,39820877 -g1,17710:8211502,39820877 -g1,17710:8527648,39820877 -g1,17710:8843794,39820877 -g1,17710:9159940,39820877 -g1,17710:9476086,39820877 -g1,17710:9792232,39820877 -g1,17710:11372961,39820877 -g1,17710:11689107,39820877 -g1,17710:12005253,39820877 -g1,17710:12321399,39820877 -g1,17710:12637545,39820877 -g1,17710:12953691,39820877 -g1,17710:13269837,39820877 -g1,17710:13585983,39820877 -g1,17710:15166712,39820877 -g1,17710:15482858,39820877 -g1,17710:15799004,39820877 -g1,17710:16115150,39820877 -g1,17710:16431296,39820877 -g1,17710:16747442,39820877 -g1,17710:17063588,39820877 -g1,17710:17379734,39820877 -g1,17710:18960463,39820877 -g1,17710:19276609,39820877 -g1,17710:19592755,39820877 -g1,17710:19908901,39820877 -g1,17710:20225047,39820877 -g1,17710:20541193,39820877 -g1,17710:20857339,39820877 -g1,17710:21173485,39820877 -h1,17710:22438068,39820877:0,0,0 -k1,17710:32583029,39820877:10144961 -g1,17710:32583029,39820877 -) -(1,17710:6630773,40487055:25952256,404226,6290 -h1,17710:6630773,40487055:0,0,0 -g1,17710:7579210,40487055 -g1,17710:7895356,40487055 -g1,17710:8211502,40487055 -g1,17710:11372959,40487055 -g1,17710:11689105,40487055 -g1,17710:12005251,40487055 -g1,17710:15166708,40487055 -g1,17710:15482854,40487055 -g1,17710:15799000,40487055 -g1,17710:18960457,40487055 -h1,17710:22438059,40487055:0,0,0 -k1,17710:32583029,40487055:10144970 -g1,17710:32583029,40487055 -) -(1,17712:6630773,41808593:25952256,410518,76021 -(1,17711:6630773,41808593:0,0,0 -g1,17711:6630773,41808593 -g1,17711:6630773,41808593 -g1,17711:6303093,41808593 -(1,17711:6303093,41808593:0,0,0 -) -g1,17711:6630773,41808593 -) -h1,17712:13902123,41808593:0,0,0 -k1,17712:32583029,41808593:18680906 -g1,17712:32583029,41808593 -) -(1,17716:6630773,42540307:25952256,404226,76021 -(1,17714:6630773,42540307:0,0,0 -g1,17714:6630773,42540307 -g1,17714:6630773,42540307 -g1,17714:6303093,42540307 -(1,17714:6303093,42540307:0,0,0 -) -g1,17714:6630773,42540307 -) -g1,17716:7579210,42540307 -g1,17716:8843793,42540307 -g1,17716:10740667,42540307 -g1,17716:11689104,42540307 -h1,17716:12321395,42540307:0,0,0 -k1,17716:32583029,42540307:20261634 -g1,17716:32583029,42540307 -) -] -) -g1,17717:32583029,42616328 -g1,17717:6630773,42616328 -g1,17717:6630773,42616328 -g1,17717:32583029,42616328 -g1,17717:32583029,42616328 -) -h1,17717:6630773,42812936:0,0,0 -v1,17721:6630773,44703000:0,393216,0 -] -(1,17722:32583029,45706769:0,0,0 -g1,17722:32583029,45706769 -) -) -] -(1,17722:6630773,47279633:25952256,0,0 -h1,17722:6630773,47279633:25952256,0,0 -) -] -(1,17722:4262630,4025873:0,0,0 -[1,17722:-473656,4025873:0,0,0 -(1,17722:-473656,-710413:0,0,0 -(1,17722:-473656,-710413:0,0,0 -g1,17722:-473656,-710413 -) -g1,17722:-473656,-710413 -) -] -) -] -!25507 -}346 -Input:2852:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2853:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2854:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2855:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2856:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2857:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2858:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2859:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2860:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2861:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!932 -{347 -[1,17769:4262630,47279633:28320399,43253760,0 -(1,17769:4262630,4025873:0,0,0 -[1,17769:-473656,4025873:0,0,0 -(1,17769:-473656,-710413:0,0,0 -(1,17769:-473656,-644877:0,0,0 -k1,17769:-473656,-644877:-65536 -) -(1,17769:-473656,4736287:0,0,0 -k1,17769:-473656,4736287:5209943 -) -g1,17769:-473656,-710413 -) -] -) -[1,17769:6630773,47279633:25952256,43253760,0 -[1,17769:6630773,4812305:25952256,786432,0 -(1,17769:6630773,4812305:25952256,505283,126483 -(1,17769:6630773,4812305:25952256,505283,126483 -g1,17769:3078558,4812305 -[1,17769:3078558,4812305:0,0,0 -(1,17769:3078558,2439708:0,1703936,0 -k1,17769:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,17769:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,17769:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 -) -] -) -) -) -] -[1,17769:3078558,4812305:0,0,0 -(1,17769:3078558,2439708:0,1703936,0 -g1,17769:29030814,2439708 -g1,17769:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,17769:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 -) -] -) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,17769:37855564,2439708:1179648,16384,0 -) -) -k1,17769:3078556,2439708:-34777008 -) -] -[1,17769:3078558,4812305:0,0,0 -(1,17769:3078558,49800853:0,16384,2228224 -k1,17769:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,17769:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,17769:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 -) -] -) -) -) -] -[1,17769:3078558,4812305:0,0,0 -(1,17769:3078558,49800853:0,16384,2228224 -g1,17769:29030814,49800853 -g1,17769:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,17769:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 -) -] -) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,17769:37855564,49800853:1179648,16384,0 -) -) -k1,17769:3078556,49800853:-34777008 -) -] -g1,17769:6630773,4812305 -k1,17769:25146660,4812305:17320510 -g1,17769:26880087,4812305 -g1,17769:29193507,4812305 -g1,17769:30603186,4812305 -) -) -] -[1,17769:6630773,45706769:25952256,40108032,0 -(1,17769:6630773,45706769:25952256,40108032,0 -(1,17769:6630773,45706769:0,0,0 -g1,17769:6630773,45706769 -) -[1,17769:6630773,45706769:25952256,40108032,0 -v1,17722:6630773,6254097:0,393216,0 -(1,17722:6630773,15346544:25952256,9485663,616038 -g1,17722:6630773,15346544 -(1,17722:6630773,15346544:25952256,9485663,616038 -(1,17722:6630773,15962582:25952256,10101701,0 -[1,17722:6630773,15962582:25952256,10101701,0 -(1,17722:6630773,15936368:25952256,10049273,0 -r1,17769:6656987,15936368:26214,10049273,0 -[1,17722:6656987,15936368:25899828,10049273,0 -(1,17722:6656987,15346544:25899828,8869625,0 -[1,17722:7246811,15346544:24720180,8869625,0 -(1,17722:7246811,7638804:24720180,1161885,196608 -(1,17721:7246811,7638804:0,1161885,196608 -r1,17769:8794447,7638804:1547636,1358493,196608 -k1,17721:7246811,7638804:-1547636 -) -(1,17721:7246811,7638804:1547636,1161885,196608 -) -k1,17721:9018676,7638804:224229 -k1,17721:10439591,7638804:224228 -k1,17721:11646860,7638804:224229 -k1,17721:14273639,7638804:224229 -k1,17721:17523664,7638804:224228 -k1,17721:20837916,7638804:224229 -k1,17721:22917469,7638804:224229 -k1,17721:24878402,7638804:224229 -k1,17721:26496581,7638804:224228 -(1,17721:26496581,7638804:0,452978,115847 -r1,17769:30723677,7638804:4227096,568825,115847 -k1,17721:26496581,7638804:-4227096 -) -(1,17721:26496581,7638804:4227096,452978,115847 -k1,17721:26496581,7638804:3277 -h1,17721:30720400,7638804:0,411205,112570 -) -k1,17721:30947906,7638804:224229 -k1,17721:31966991,7638804:0 -) -(1,17722:7246811,8480292:24720180,513147,126483 -k1,17721:9116422,8480292:216138 -k1,17721:13117263,8480292:216137 -k1,17721:13961236,8480292:216138 -k1,17721:16843378,8480292:216137 -k1,17721:17710944,8480292:216138 -k1,17721:19670995,8480292:216138 -k1,17721:22977155,8480292:216137 -k1,17721:25222288,8480292:216138 -k1,17721:27140395,8480292:216137 -k1,17721:30661514,8480292:216138 -k1,17722:31966991,8480292:0 -) -(1,17722:7246811,9321780:24720180,513147,126483 -k1,17721:8345142,9321780:213595 -k1,17721:12169772,9321780:213596 -k1,17721:13374927,9321780:213595 -(1,17721:13374927,9321780:0,452978,115847 -r1,17769:14788328,9321780:1413401,568825,115847 -k1,17721:13374927,9321780:-1413401 -) -(1,17721:13374927,9321780:1413401,452978,115847 -k1,17721:13374927,9321780:3277 -h1,17721:14785051,9321780:0,411205,112570 -) -k1,17721:15001923,9321780:213595 -k1,17721:16406963,9321780:213595 -(1,17721:16406963,9321780:0,414482,115847 -r1,17769:16765229,9321780:358266,530329,115847 -k1,17721:16406963,9321780:-358266 -) -(1,17721:16406963,9321780:358266,414482,115847 -k1,17721:16406963,9321780:3277 -h1,17721:16761952,9321780:0,411205,112570 -) -k1,17721:17152495,9321780:213596 -k1,17721:19251561,9321780:213595 -k1,17721:20569438,9321780:213595 -k1,17721:21530800,9321780:213596 -k1,17721:23257621,9321780:213595 -k1,17721:24122644,9321780:213595 -k1,17721:25681039,9321780:213596 -k1,17721:27393442,9321780:213595 -k1,17721:28219799,9321780:213595 -k1,17721:29452479,9321780:213595 -k1,17721:30738244,9321780:213596 -k1,17721:31611131,9321780:213595 -k1,17721:31966991,9321780:0 -) -(1,17722:7246811,10163268:24720180,513147,126483 -k1,17721:8426318,10163268:196467 -k1,17721:9814229,10163268:196466 -k1,17721:11495086,10163268:196467 -k1,17721:12710638,10163268:196467 -k1,17721:15392886,10163268:196467 -k1,17721:16248644,10163268:196466 -k1,17721:17943919,10163268:196467 -k1,17721:19030365,10163268:196467 -k1,17721:21837130,10163268:196466 -k1,17721:22685025,10163268:196467 -k1,17721:24467463,10163268:196467 -(1,17721:24467463,10163268:0,452978,115847 -r1,17769:26584288,10163268:2116825,568825,115847 -k1,17721:24467463,10163268:-2116825 -) -(1,17721:24467463,10163268:2116825,452978,115847 -k1,17721:24467463,10163268:3277 -h1,17721:26581011,10163268:0,411205,112570 -) -k1,17721:26954425,10163268:196467 -k1,17721:29036362,10163268:196466 -k1,17721:31611131,10163268:196467 -k1,17721:31966991,10163268:0 -) -(1,17722:7246811,11004756:24720180,513147,134348 -k1,17721:9496943,11004756:180505 -k1,17721:12749775,11004756:180504 -k1,17721:16104844,11004756:180505 -k1,17721:16751310,11004756:180505 -k1,17721:17950900,11004756:180505 -k1,17721:19865487,11004756:180504 -k1,17721:20662030,11004756:180505 -k1,17721:21861620,11004756:180505 -k1,17721:23348257,11004756:180504 -k1,17721:24754941,11004756:180505 -k1,17721:26103953,11004756:180505 -k1,17721:27696759,11004756:180505 -k1,17721:30057646,11004756:180504 -k1,17721:30985917,11004756:180505 -k1,17722:31966991,11004756:0 -) -(1,17722:7246811,11846244:24720180,505283,126483 -k1,17721:9365170,11846244:201431 -k1,17721:10252762,11846244:201430 -k1,17721:12837082,11846244:201431 -k1,17721:15106828,11846244:201430 -k1,17721:17259921,11846244:201431 -k1,17721:18903798,11846244:201430 -k1,17721:20668263,11846244:201431 -(1,17721:20668263,11846244:0,452978,122846 -r1,17769:24191935,11846244:3523672,575824,122846 -k1,17721:20668263,11846244:-3523672 -) -(1,17721:20668263,11846244:3523672,452978,122846 -k1,17721:20668263,11846244:3277 -h1,17721:24188658,11846244:0,411205,112570 -) -k1,17721:24567035,11846244:201430 -k1,17721:25419894,11846244:201431 -k1,17721:27506795,11846244:201430 -k1,17721:28812508,11846244:201431 -k1,17721:29761704,11846244:201430 -k1,17721:31966991,11846244:0 -) -(1,17722:7246811,12687732:24720180,505283,134348 -k1,17721:7810036,12687732:207365 -k1,17721:10992080,12687732:207365 -k1,17721:13177322,12687732:207365 -k1,17721:14778637,12687732:207364 -k1,17721:17182113,12687732:207365 -k1,17721:18040906,12687732:207365 -k1,17721:18996037,12687732:207365 -k1,17721:22793464,12687732:207365 -k1,17721:23686991,12687732:207365 -(1,17721:23686991,12687732:0,414482,115847 -r1,17769:24396969,12687732:709978,530329,115847 -k1,17721:23686991,12687732:-709978 -) -(1,17721:23686991,12687732:709978,414482,115847 -k1,17721:23686991,12687732:3277 -h1,17721:24393692,12687732:0,411205,112570 -) -k1,17721:24778003,12687732:207364 -k1,17721:26176813,12687732:207365 -(1,17721:26176813,12687732:0,452978,115847 -r1,17769:29700485,12687732:3523672,568825,115847 -k1,17721:26176813,12687732:-3523672 -) -(1,17721:26176813,12687732:3523672,452978,115847 -k1,17721:26176813,12687732:3277 -h1,17721:29697208,12687732:0,411205,112570 -) -k1,17721:30081520,12687732:207365 -k1,17721:31966991,12687732:0 -) -(1,17722:7246811,13529220:24720180,513147,126483 -k1,17721:10192756,13529220:185569 -k1,17721:12666186,13529220:185568 -k1,17721:13511047,13529220:185569 -k1,17721:14715701,13529220:185569 -k1,17721:18377954,13529220:185568 -k1,17721:19222815,13529220:185569 -k1,17721:20427469,13529220:185569 -k1,17721:22347120,13529220:185568 -k1,17721:23184117,13529220:185569 -k1,17721:23784515,13529220:185555 -k1,17721:26202896,13529220:185569 -k1,17721:27579909,13529220:185568 -k1,17721:30409200,13529220:185569 -k1,17722:31966991,13529220:0 -) -(1,17722:7246811,14370708:24720180,505283,134348 -k1,17721:8870257,14370708:212456 -k1,17721:10774852,14370708:212455 -k1,17721:13700499,14370708:212456 -k1,17721:17328036,14370708:212456 -k1,17721:18438335,14370708:212456 -k1,17721:20347517,14370708:212455 -k1,17721:24171007,14370708:212456 -k1,17721:25375023,14370708:212456 -k1,17721:28677502,14370708:212456 -k1,17721:29505995,14370708:212455 -k1,17721:30737536,14370708:212456 -k1,17722:31966991,14370708:0 -) -(1,17722:7246811,15212196:24720180,505283,134348 -g1,17721:11053142,15212196 -g1,17721:12640424,15212196 -k1,17722:31966991,15212196:17324442 -g1,17722:31966991,15212196 -) -] -) -] -r1,17769:32583029,15936368:26214,10049273,0 -) -] -) -) -g1,17722:32583029,15346544 -) -h1,17722:6630773,15962582:0,0,0 -v1,17725:6630773,17272804:0,393216,0 -(1,17726:6630773,21223311:25952256,4343723,616038 -g1,17726:6630773,21223311 -(1,17726:6630773,21223311:25952256,4343723,616038 -(1,17726:6630773,21839349:25952256,4959761,0 -[1,17726:6630773,21839349:25952256,4959761,0 -(1,17726:6630773,21813135:25952256,4907333,0 -r1,17769:6656987,21813135:26214,4907333,0 -[1,17726:6656987,21813135:25899828,4907333,0 -(1,17726:6656987,21223311:25899828,3727685,0 -[1,17726:7246811,21223311:24720180,3727685,0 -(1,17726:7246811,18583000:24720180,1087374,126483 -k1,17725:8713549,18583000:257035 -k1,17725:9598419,18583000:257035 -k1,17725:11871340,18583000:257034 -(1,17725:11871340,18583000:0,452978,115847 -r1,17769:15395012,18583000:3523672,568825,115847 -k1,17725:11871340,18583000:-3523672 -) -(1,17725:11871340,18583000:3523672,452978,115847 -k1,17725:11871340,18583000:3277 -h1,17725:15391735,18583000:0,411205,112570 -) -k1,17725:15825717,18583000:257035 -(1,17725:15825717,18583000:0,452978,115847 -r1,17769:19701101,18583000:3875384,568825,115847 -k1,17725:15825717,18583000:-3875384 -) -(1,17725:15825717,18583000:3875384,452978,115847 -k1,17725:15825717,18583000:3277 -h1,17725:19697824,18583000:0,411205,112570 -) -k1,17725:19958136,18583000:257035 -k1,17725:21406616,18583000:257035 -(1,17725:21406616,18583000:0,452978,115847 -r1,17769:25633712,18583000:4227096,568825,115847 -k1,17725:21406616,18583000:-4227096 -) -(1,17725:21406616,18583000:4227096,452978,115847 -k1,17725:21406616,18583000:3277 -h1,17725:25630435,18583000:0,411205,112570 -) -k1,17725:25890747,18583000:257035 -k1,17725:27139341,18583000:257034 -k1,17725:28415461,18583000:257035 -k1,17725:30325969,18583000:257035 -k1,17726:31966991,18583000:0 -) -(1,17726:7246811,19424488:24720180,513147,134348 -k1,17725:8692892,19424488:178615 -k1,17725:10265459,19424488:178616 -k1,17725:13206417,19424488:178615 -k1,17725:15650612,19424488:178615 -k1,17725:19231856,19424488:178615 -k1,17725:20061900,19424488:178616 -k1,17725:22472016,19424488:178615 -k1,17725:23309923,19424488:178615 -k1,17725:24997177,19424488:178615 -k1,17725:28960497,19424488:178616 -k1,17725:30947906,19424488:178615 -k1,17725:31966991,19424488:0 -) -(1,17726:7246811,20265976:24720180,505283,134348 -k1,17725:8893161,20265976:258297 -k1,17725:10823281,20265976:258297 -k1,17725:12273023,20265976:258297 -k1,17725:13292848,20265976:258297 -k1,17725:15978600,20265976:258298 -k1,17725:18748892,20265976:258297 -k1,17725:22583489,20265976:258297 -k1,17725:24557519,20265976:258297 -(1,17725:24557519,20265976:0,452978,115847 -r1,17769:28081191,20265976:3523672,568825,115847 -k1,17725:24557519,20265976:-3523672 -) -(1,17725:24557519,20265976:3523672,452978,115847 -k1,17725:24557519,20265976:3277 -h1,17725:28077914,20265976:0,411205,112570 -) -k1,17725:28339488,20265976:258297 -k1,17725:30820766,20265976:258297 -k1,17726:31966991,20265976:0 -) -(1,17726:7246811,21107464:24720180,505283,115847 -(1,17725:7246811,21107464:0,452978,115847 -r1,17769:11473907,21107464:4227096,568825,115847 -k1,17725:7246811,21107464:-4227096 -) -(1,17725:7246811,21107464:4227096,452978,115847 -k1,17725:7246811,21107464:3277 -h1,17725:11470630,21107464:0,411205,112570 -) -g1,17725:11846806,21107464 -g1,17725:13479963,21107464 -g1,17725:15394925,21107464 -(1,17725:15394925,21107464:0,452978,115847 -r1,17769:19622021,21107464:4227096,568825,115847 -k1,17725:15394925,21107464:-4227096 -) -(1,17725:15394925,21107464:4227096,452978,115847 -k1,17725:15394925,21107464:3277 -h1,17725:19618744,21107464:0,411205,112570 -) -g1,17725:19821250,21107464 -g1,17725:22243460,21107464 -g1,17725:23588914,21107464 -(1,17725:23588914,21107464:0,452978,115847 -r1,17769:27464298,21107464:3875384,568825,115847 -k1,17725:23588914,21107464:-3875384 -) -(1,17725:23588914,21107464:3875384,452978,115847 -k1,17725:23588914,21107464:3277 -h1,17725:27461021,21107464:0,411205,112570 -) -k1,17726:31966991,21107464:4329023 -g1,17726:31966991,21107464 -) -] -) -] -r1,17769:32583029,21813135:26214,4907333,0 -) -] -) -) -g1,17726:32583029,21223311 -) -h1,17726:6630773,21839349:0,0,0 -v1,17729:6630773,23149572:0,393216,0 -(1,17730:6630773,28876067:25952256,6119711,616038 -g1,17730:6630773,28876067 -(1,17730:6630773,28876067:25952256,6119711,616038 -(1,17730:6630773,29492105:25952256,6735749,0 -[1,17730:6630773,29492105:25952256,6735749,0 -(1,17730:6630773,29465891:25952256,6683321,0 -r1,17769:6656987,29465891:26214,6683321,0 -[1,17730:6656987,29465891:25899828,6683321,0 -(1,17730:6656987,28876067:25899828,5503673,0 -[1,17730:7246811,28876067:24720180,5503673,0 -(1,17730:7246811,24534279:24720180,1161885,196608 -(1,17729:7246811,24534279:0,1161885,196608 -r1,17769:8794447,24534279:1547636,1358493,196608 -k1,17729:7246811,24534279:-1547636 -) -(1,17729:7246811,24534279:1547636,1161885,196608 -) -k1,17729:8965672,24534279:171225 -k1,17729:10090446,24534279:171225 -k1,17729:11365953,24534279:171225 -k1,17729:12949479,24534279:171225 -k1,17729:13476564,24534279:171225 -k1,17729:14873968,24534279:171225 -k1,17729:16028234,24534279:171226 -k1,17729:16885621,24534279:171225 -k1,17729:20031525,24534279:171225 -k1,17729:22572532,24534279:171225 -k1,17729:25203979,24534279:171225 -k1,17729:28880069,24534279:171225 -k1,17729:29702722,24534279:171225 -k1,17729:31966991,24534279:0 -) -(1,17730:7246811,25375767:24720180,513147,134348 -k1,17729:9259796,25375767:200259 -k1,17729:10840899,25375767:200259 -k1,17729:11572655,25375767:200259 -k1,17729:15658545,25375767:200260 -k1,17729:18009696,25375767:200259 -k1,17729:19703521,25375767:200259 -k1,17729:20589942,25375767:200259 -k1,17729:22488239,25375767:200259 -k1,17729:23556850,25375767:200259 -k1,17729:24572377,25375767:200259 -k1,17729:25791722,25375767:200260 -k1,17729:28899158,25375767:200259 -k1,17729:29785579,25375767:200259 -k1,17729:31307699,25375767:200259 -k1,17729:31966991,25375767:0 -) -(1,17730:7246811,26217255:24720180,513147,126483 -k1,17729:8567696,26217255:223157 -k1,17729:10121234,26217255:223157 -k1,17729:12349137,26217255:223157 -k1,17729:13200128,26217255:223156 -k1,17729:14626526,26217255:223157 -k1,17729:16390434,26217255:223157 -k1,17729:17632676,26217255:223157 -k1,17729:20551329,26217255:223157 -k1,17729:21425914,26217255:223157 -k1,17729:22741555,26217255:223156 -k1,17729:23496209,26217255:223157 -(1,17729:23496209,26217255:0,452978,115847 -r1,17769:27371593,26217255:3875384,568825,115847 -k1,17729:23496209,26217255:-3875384 -) -(1,17729:23496209,26217255:3875384,452978,115847 -k1,17729:23496209,26217255:3277 -h1,17729:27368316,26217255:0,411205,112570 -) -k1,17729:27768420,26217255:223157 -k1,17729:29188264,26217255:223157 -k1,17729:31966991,26217255:0 -) -(1,17730:7246811,27058743:24720180,505283,134348 -k1,17729:9175973,27058743:248819 -k1,17729:9956288,27058743:248818 -k1,17729:10560967,27058743:248819 -k1,17729:13784464,27058743:248818 -k1,17729:16011160,27058743:248819 -k1,17729:16876016,27058743:248818 -k1,17729:19010306,27058743:248819 -k1,17729:20710746,27058743:248818 -k1,17729:23582971,27058743:248819 -k1,17729:25697599,27058743:248818 -k1,17729:29910035,27058743:248819 -k1,17729:30810281,27058743:248818 -k1,17729:31966991,27058743:0 -) -(1,17730:7246811,27900231:24720180,513147,126483 -k1,17729:8594987,27900231:179669 -k1,17729:9457542,27900231:179670 -k1,17729:11710115,27900231:179669 -k1,17729:12505823,27900231:179670 -k1,17729:13704577,27900231:179669 -k1,17729:15040957,27900231:179670 -k1,17729:16614577,27900231:179669 -k1,17729:17813332,27900231:179670 -k1,17729:21429709,27900231:179669 -k1,17729:24232130,27900231:179670 -k1,17729:27098120,27900231:179669 -k1,17729:28509867,27900231:179670 -k1,17729:31350953,27900231:179669 -k1,17729:31966991,27900231:0 -) -(1,17730:7246811,28741719:24720180,505283,134348 -g1,17729:9724727,28741719 -h1,17729:10695315,28741719:0,0,0 -g1,17729:10894544,28741719 -g1,17729:11903143,28741719 -g1,17729:13600525,28741719 -h1,17729:14795902,28741719:0,0,0 -k1,17730:31966990,28741719:16790324 -g1,17730:31966990,28741719 -) -] -) -] -r1,17769:32583029,29465891:26214,6683321,0 -) -] -) -) -g1,17730:32583029,28876067 -) -h1,17730:6630773,29492105:0,0,0 -(1,17735:6630773,30802327:25952256,513147,134348 -h1,17734:6630773,30802327:983040,0,0 -k1,17734:9319016,30802327:243750 -k1,17734:10431119,30802327:243751 -k1,17734:11954787,30802327:243750 -k1,17734:13355247,30802327:243750 -k1,17734:16260415,30802327:243751 -k1,17734:17163457,30802327:243750 -k1,17734:18426292,30802327:243750 -k1,17734:19762528,30802327:243751 -k1,17734:20665570,30802327:243750 -k1,17734:21265180,30802327:243750 -k1,17734:23106043,30802327:243751 -k1,17734:26045289,30802327:243750 -k1,17734:29260441,30802327:243750 -k1,17734:30660902,30802327:243751 -k1,17734:31563944,30802327:243750 -k1,17734:32583029,30802327:0 -) -(1,17735:6630773,31643815:25952256,513147,134348 -k1,17734:8345367,31643815:234791 -k1,17734:11605956,31643815:234792 -k1,17734:14930770,31643815:234791 -k1,17734:17194556,31643815:234791 -k1,17734:18626035,31643815:234792 -(1,17734:18626035,31643815:0,452978,115847 -r1,17769:22501419,31643815:3875384,568825,115847 -k1,17734:18626035,31643815:-3875384 -) -(1,17734:18626035,31643815:3875384,452978,115847 -k1,17734:18626035,31643815:3277 -h1,17734:22498142,31643815:0,411205,112570 -) -k1,17734:22736210,31643815:234791 -k1,17734:25666497,31643815:234791 -k1,17734:27584253,31643815:234791 -k1,17734:28505207,31643815:234792 -k1,17734:29510701,31643815:234791 -k1,17734:32583029,31643815:0 -) -(1,17735:6630773,32485303:25952256,513147,134348 -k1,17734:7252054,32485303:265421 -k1,17734:8906838,32485303:265421 -k1,17734:11222225,32485303:265421 -k1,17734:12170531,32485303:265421 -k1,17734:13206654,32485303:265420 -k1,17734:15431601,32485303:265421 -k1,17734:16981528,32485303:265421 -k1,17734:18351231,32485303:265421 -k1,17734:19364418,32485303:265421 -k1,17734:22095303,32485303:265421 -k1,17734:23628190,32485303:265421 -k1,17734:24249471,32485303:265421 -k1,17734:25904254,32485303:265420 -k1,17734:28219641,32485303:265421 -k1,17734:31208083,32485303:265421 -k1,17734:31931601,32485303:265421 -k1,17734:32583029,32485303:0 -) -(1,17735:6630773,33326791:25952256,513147,134348 -k1,17734:9799307,33326791:193855 -k1,17734:12362945,33326791:193856 -k1,17734:13748245,33326791:193855 -k1,17734:15663076,33326791:193856 -k1,17734:17495986,33326791:193855 -k1,17734:18341269,33326791:193855 -k1,17734:18890985,33326791:193856 -k1,17734:20311019,33326791:193855 -k1,17734:21661585,33326791:193856 -k1,17734:22808989,33326791:193855 -k1,17734:24308977,33326791:193855 -k1,17734:26432213,33326791:193856 -k1,17734:27645153,33326791:193855 -k1,17734:29228372,33326791:193856 -k1,17734:31298523,33326791:193855 -k1,17734:32583029,33326791:0 -) -(1,17735:6630773,34168279:25952256,505283,7863 -g1,17734:7698354,34168279 -g1,17734:9030045,34168279 -g1,17734:10844081,34168279 -g1,17734:11694738,34168279 -k1,17735:32583029,34168279:19369822 -g1,17735:32583029,34168279 -) -v1,17737:6630773,35303192:0,393216,0 -(1,17741:6630773,35618289:25952256,708313,196608 -g1,17741:6630773,35618289 -g1,17741:6630773,35618289 -g1,17741:6434165,35618289 -(1,17741:6434165,35618289:0,708313,196608 -r1,17769:32779637,35618289:26345472,904921,196608 -k1,17741:6434165,35618289:-26345472 -) -(1,17741:6434165,35618289:26345472,708313,196608 -[1,17741:6630773,35618289:25952256,511705,0 -(1,17739:6630773,35517102:25952256,410518,101187 -(1,17738:6630773,35517102:0,0,0 -g1,17738:6630773,35517102 -g1,17738:6630773,35517102 -g1,17738:6303093,35517102 -(1,17738:6303093,35517102:0,0,0 -) -g1,17738:6630773,35517102 -) -g1,17739:8527647,35517102 -g1,17739:9476085,35517102 -g1,17739:13585980,35517102 -g1,17739:14218272,35517102 -g1,17739:15799002,35517102 -g1,17739:16431294,35517102 -g1,17739:17063586,35517102 -g1,17739:18328170,35517102 -g1,17739:18960462,35517102 -g1,17739:20225045,35517102 -g1,17739:20857337,35517102 -g1,17739:21489629,35517102 -h1,17739:25599523,35517102:0,0,0 -k1,17739:32583029,35517102:6983506 -g1,17739:32583029,35517102 -) -] -) -g1,17741:32583029,35618289 -g1,17741:6630773,35618289 -g1,17741:6630773,35618289 -g1,17741:32583029,35618289 -g1,17741:32583029,35618289 -) -h1,17741:6630773,35814897:0,0,0 -(1,17745:6630773,37125119:25952256,513147,134348 -h1,17744:6630773,37125119:983040,0,0 -k1,17744:8806789,37125119:239427 -k1,17744:10661023,37125119:239427 -(1,17744:10661023,37125119:0,459977,115847 -r1,17769:12426136,37125119:1765113,575824,115847 -k1,17744:10661023,37125119:-1765113 -) -(1,17744:10661023,37125119:1765113,459977,115847 -k1,17744:10661023,37125119:3277 -h1,17744:12422859,37125119:0,411205,112570 -) -k1,17744:12665563,37125119:239427 -k1,17744:13556418,37125119:239427 -k1,17744:14151705,37125119:239427 -k1,17744:15659868,37125119:239386 -k1,17744:16882335,37125119:239427 -k1,17744:19633757,37125119:239427 -k1,17744:20820835,37125119:239427 -k1,17744:21830965,37125119:239427 -k1,17744:24381847,37125119:239427 -k1,17744:27463570,37125119:239427 -k1,17744:29718229,37125119:239427 -k1,17744:31149101,37125119:239427 -k1,17744:32583029,37125119:0 -) -(1,17745:6630773,37966607:25952256,505283,126483 -g1,17744:9125073,37966607 -g1,17744:10112700,37966607 -k1,17745:32583030,37966607:19547424 -g1,17745:32583030,37966607 -) -v1,17747:6630773,39101520:0,393216,0 -(1,17752:6630773,40089086:25952256,1380782,196608 -g1,17752:6630773,40089086 -g1,17752:6630773,40089086 -g1,17752:6434165,40089086 -(1,17752:6434165,40089086:0,1380782,196608 -r1,17769:32779637,40089086:26345472,1577390,196608 -k1,17752:6434165,40089086:-26345472 -) -(1,17752:6434165,40089086:26345472,1380782,196608 -[1,17752:6630773,40089086:25952256,1184174,0 -(1,17749:6630773,39315430:25952256,410518,101187 -(1,17748:6630773,39315430:0,0,0 -g1,17748:6630773,39315430 -g1,17748:6630773,39315430 -g1,17748:6303093,39315430 -(1,17748:6303093,39315430:0,0,0 -) -g1,17748:6630773,39315430 -) -k1,17749:6630773,39315430:0 -g1,17749:12005250,39315430 -g1,17749:13585979,39315430 -g1,17749:14218271,39315430 -g1,17749:19276602,39315430 -g1,17749:22438059,39315430 -g1,17749:23070351,39315430 -h1,17749:24967225,39315430:0,0,0 -k1,17749:32583029,39315430:7615804 -g1,17749:32583029,39315430 -) -(1,17750:6630773,39981608:25952256,410518,107478 -h1,17750:6630773,39981608:0,0,0 -g1,17750:14850561,39981608 -g1,17750:16747435,39981608 -g1,17750:17379727,39981608 -h1,17750:20541184,39981608:0,0,0 -k1,17750:32583029,39981608:12041845 -g1,17750:32583029,39981608 -) -] -) -g1,17752:32583029,40089086 -g1,17752:6630773,40089086 -g1,17752:6630773,40089086 -g1,17752:32583029,40089086 -g1,17752:32583029,40089086 -) -h1,17752:6630773,40285694:0,0,0 -v1,17756:6630773,41889341:0,393216,0 -(1,17765:6630773,45510161:25952256,4014036,196608 -g1,17765:6630773,45510161 -g1,17765:6630773,45510161 -g1,17765:6434165,45510161 -(1,17765:6434165,45510161:0,4014036,196608 -r1,17769:32779637,45510161:26345472,4210644,196608 -k1,17765:6434165,45510161:-26345472 -) -(1,17765:6434165,45510161:26345472,4014036,196608 -[1,17765:6630773,45510161:25952256,3817428,0 -(1,17764:6630773,42096959:25952256,404226,101187 -(1,17757:6630773,42096959:0,0,0 -g1,17757:6630773,42096959 -g1,17757:6630773,42096959 -g1,17757:6303093,42096959 -(1,17757:6303093,42096959:0,0,0 -) -g1,17757:6630773,42096959 -) -k1,17764:6630773,42096959:0 -k1,17764:6630773,42096959:0 -h1,17764:10108376,42096959:0,0,0 -k1,17764:32583028,42096959:22474652 -g1,17764:32583028,42096959 -) -(1,17764:6630773,42763137:25952256,404226,82312 -h1,17764:6630773,42763137:0,0,0 -k1,17764:6630773,42763137:0 -h1,17764:9476085,42763137:0,0,0 -k1,17764:32583029,42763137:23106944 -g1,17764:32583029,42763137 -) -(1,17764:6630773,43429315:25952256,404226,82312 -h1,17764:6630773,43429315:0,0,0 -k1,17764:6630773,43429315:0 -h1,17764:9476085,43429315:0,0,0 -k1,17764:32583029,43429315:23106944 -g1,17764:32583029,43429315 -) -(1,17764:6630773,44095493:25952256,404226,82312 -h1,17764:6630773,44095493:0,0,0 -k1,17764:6630773,44095493:0 -h1,17764:9476085,44095493:0,0,0 -k1,17764:32583029,44095493:23106944 -g1,17764:32583029,44095493 -) -(1,17764:6630773,44761671:25952256,404226,82312 -h1,17764:6630773,44761671:0,0,0 -k1,17764:6630773,44761671:0 -h1,17764:9476085,44761671:0,0,0 -k1,17764:32583029,44761671:23106944 -g1,17764:32583029,44761671 -) -(1,17764:6630773,45427849:25952256,404226,82312 -h1,17764:6630773,45427849:0,0,0 -k1,17764:6630773,45427849:0 -h1,17764:9476085,45427849:0,0,0 -k1,17764:32583029,45427849:23106944 -g1,17764:32583029,45427849 -) -] -) -g1,17765:32583029,45510161 -g1,17765:6630773,45510161 -g1,17765:6630773,45510161 -g1,17765:32583029,45510161 -g1,17765:32583029,45510161 -) -h1,17765:6630773,45706769:0,0,0 -] -(1,17769:32583029,45706769:0,0,0 -g1,17769:32583029,45706769 -) -) -] -(1,17769:6630773,47279633:25952256,0,0 -h1,17769:6630773,47279633:25952256,0,0 -) -] -(1,17769:4262630,4025873:0,0,0 -[1,17769:-473656,4025873:0,0,0 -(1,17769:-473656,-710413:0,0,0 -(1,17769:-473656,-710413:0,0,0 -g1,17769:-473656,-710413 -) -g1,17769:-473656,-710413 -) -] -) -] -!26850 -}347 -Input:2862:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2863:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2864:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2865:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2866:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2867:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2868:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2869:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2870:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2871:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2872:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2873:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2874:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1208 -{348 -[1,17809:4262630,47279633:28320399,43253760,0 -(1,17809:4262630,4025873:0,0,0 -[1,17809:-473656,4025873:0,0,0 -(1,17809:-473656,-710413:0,0,0 -(1,17809:-473656,-644877:0,0,0 -k1,17809:-473656,-644877:-65536 -) -(1,17809:-473656,4736287:0,0,0 -k1,17809:-473656,4736287:5209943 -) -g1,17809:-473656,-710413 -) -] -) -[1,17809:6630773,47279633:25952256,43253760,0 -[1,17809:6630773,4812305:25952256,786432,0 -(1,17809:6630773,4812305:25952256,513147,126483 -(1,17809:6630773,4812305:25952256,513147,126483 -g1,17809:3078558,4812305 -[1,17809:3078558,4812305:0,0,0 -(1,17809:3078558,2439708:0,1703936,0 -k1,17809:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,17809:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,17809:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 -) -] -) -) -) -] -[1,17809:3078558,4812305:0,0,0 -(1,17809:3078558,2439708:0,1703936,0 -g1,17809:29030814,2439708 -g1,17809:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,17809:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 -) -] -) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,17809:37855564,2439708:1179648,16384,0 -) -) -k1,17809:3078556,2439708:-34777008 -) -] -[1,17809:3078558,4812305:0,0,0 -(1,17809:3078558,49800853:0,16384,2228224 -k1,17809:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,17809:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,17809:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 -) -] -) -) -) -] -[1,17809:3078558,4812305:0,0,0 -(1,17809:3078558,49800853:0,16384,2228224 -g1,17809:29030814,49800853 -g1,17809:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,17809:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 -) -] -) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,17809:37855564,49800853:1179648,16384,0 -) -) -k1,17809:3078556,49800853:-34777008 -) -] -g1,17809:6630773,4812305 -g1,17809:6630773,4812305 -g1,17809:9744388,4812305 -g1,17809:11175694,4812305 -k1,17809:31387652,4812305:20211958 -) -) -] -[1,17809:6630773,45706769:25952256,40108032,0 -(1,17809:6630773,45706769:25952256,40108032,0 -(1,17809:6630773,45706769:0,0,0 -g1,17809:6630773,45706769 -) -[1,17809:6630773,45706769:25952256,40108032,0 -v1,17769:6630773,6254097:0,393216,0 -(1,17770:6630773,11980592:25952256,6119711,616038 -g1,17770:6630773,11980592 -(1,17770:6630773,11980592:25952256,6119711,616038 -(1,17770:6630773,12596630:25952256,6735749,0 -[1,17770:6630773,12596630:25952256,6735749,0 -(1,17770:6630773,12570416:25952256,6683321,0 -r1,17809:6656987,12570416:26214,6683321,0 -[1,17770:6656987,12570416:25899828,6683321,0 -(1,17770:6656987,11980592:25899828,5503673,0 -[1,17770:7246811,11980592:24720180,5503673,0 -(1,17770:7246811,7638804:24720180,1161885,196608 -(1,17769:7246811,7638804:0,1161885,196608 -r1,17809:8794447,7638804:1547636,1358493,196608 -k1,17769:7246811,7638804:-1547636 -) -(1,17769:7246811,7638804:1547636,1161885,196608 -) -k1,17769:9031634,7638804:237187 -k1,17769:9896657,7638804:237188 -k1,17769:11735544,7638804:237187 -k1,17769:13670113,7638804:237187 -k1,17769:16262665,7638804:237188 -k1,17769:17186014,7638804:237187 -k1,17769:19452197,7638804:237188 -(1,17769:19452197,7638804:0,414482,115847 -r1,17809:25437852,7638804:5985655,530329,115847 -k1,17769:19452197,7638804:-5985655 -) -(1,17769:19452197,7638804:5985655,414482,115847 -g1,17769:22972592,7638804 -g1,17769:23676016,7638804 -h1,17769:25434575,7638804:0,411205,112570 -) -k1,17769:25675039,7638804:237187 -k1,17769:27610264,7638804:237187 -k1,17769:30105167,7638804:237188 -k1,17769:30698214,7638804:237187 -k1,17769:31966991,7638804:0 -) -(1,17770:7246811,8480292:24720180,513147,126483 -k1,17769:8497846,8480292:267995 -k1,17769:9898304,8480292:267996 -k1,17769:11554352,8480292:267995 -k1,17769:13520386,8480292:267996 -k1,17769:14246478,8480292:267995 -k1,17769:15045971,8480292:267996 -k1,17769:16899937,8480292:267995 -k1,17769:17941912,8480292:267995 -k1,17769:20492527,8480292:267996 -k1,17769:21226483,8480292:267995 -k1,17769:22698375,8480292:267996 -k1,17769:25034686,8480292:267995 -k1,17769:26117950,8480292:267996 -k1,17769:28757693,8480292:267995 -k1,17769:31966991,8480292:0 -) -(1,17770:7246811,9321780:24720180,513147,134348 -k1,17769:11433604,9321780:206136 -k1,17769:13133306,9321780:206136 -k1,17769:14025604,9321780:206136 -k1,17769:15715475,9321780:206136 -k1,17769:17412555,9321780:206136 -k1,17769:18789164,9321780:206136 -k1,17769:21165851,9321780:206135 -k1,17769:22716786,9321780:206136 -k1,17769:25180637,9321780:206136 -k1,17769:26405858,9321780:206136 -k1,17769:27815890,9321780:206136 -k1,17769:30090342,9321780:206136 -k1,17769:30947906,9321780:206136 -k1,17769:31966991,9321780:0 -) -(1,17770:7246811,10163268:24720180,513147,126483 -k1,17769:8513669,10163268:283818 -k1,17769:10840244,10163268:283818 -k1,17769:12294534,10163268:283817 -k1,17769:13884485,10163268:283818 -k1,17769:15678253,10163268:283818 -k1,17769:17658798,10163268:283818 -k1,17769:19331979,10163268:283818 -k1,17769:20883262,10163268:283817 -k1,17769:21522940,10163268:283818 -k1,17769:24189647,10163268:283818 -k1,17769:25089503,10163268:283818 -k1,17769:26392405,10163268:283817 -k1,17769:28065586,10163268:283818 -k1,17769:30399370,10163268:283818 -k1,17769:31966991,10163268:0 -) -(1,17770:7246811,11004756:24720180,505283,134348 -k1,17769:9516102,11004756:200975 -k1,17769:10708638,11004756:200976 -k1,17769:12947783,11004756:200975 -k1,17769:16417694,11004756:200975 -k1,17769:17304831,11004756:200975 -k1,17769:18276510,11004756:200976 -k1,17769:21256212,11004756:200975 -k1,17769:22073225,11004756:200975 -(1,17769:22073225,11004756:0,459977,115847 -r1,17809:25596897,11004756:3523672,575824,115847 -k1,17769:22073225,11004756:-3523672 -) -(1,17769:22073225,11004756:3523672,459977,115847 -k1,17769:22073225,11004756:3277 -h1,17769:25593620,11004756:0,411205,112570 -) -k1,17769:25797872,11004756:200975 -k1,17769:28462346,11004756:200976 -k1,17769:29688304,11004756:200975 -k1,17769:31966991,11004756:0 -) -(1,17770:7246811,11846244:24720180,513147,134348 -h1,17769:8615858,11846244:0,0,0 -g1,17769:8815087,11846244 -g1,17769:9823686,11846244 -g1,17769:11521068,11846244 -h1,17769:12317986,11846244:0,0,0 -g1,17769:12517215,11846244 -g1,17769:13664095,11846244 -k1,17770:31966991,11846244:15804664 -g1,17770:31966991,11846244 -) -] -) -] -r1,17809:32583029,12570416:26214,6683321,0 -) -] -) -) -g1,17770:32583029,11980592 -) -h1,17770:6630773,12596630:0,0,0 -v1,17773:6630773,13962406:0,393216,0 -(1,17774:6630773,16240573:25952256,2671383,616038 -g1,17774:6630773,16240573 -(1,17774:6630773,16240573:25952256,2671383,616038 -(1,17774:6630773,16856611:25952256,3287421,0 -[1,17774:6630773,16856611:25952256,3287421,0 -(1,17774:6630773,16830397:25952256,3234993,0 -r1,17809:6656987,16830397:26214,3234993,0 -[1,17774:6656987,16830397:25899828,3234993,0 -(1,17774:6656987,16240573:25899828,2055345,0 -[1,17774:7246811,16240573:24720180,2055345,0 -(1,17774:7246811,15272602:24720180,1087374,115847 -k1,17773:8632792,15272602:176278 -k1,17773:10509075,15272602:176279 -k1,17773:11704438,15272602:176278 -k1,17773:13270079,15272602:176278 -k1,17773:15322654,15272602:176279 -(1,17773:15322654,15272602:0,459977,115847 -r1,17809:17087767,15272602:1765113,575824,115847 -k1,17773:15322654,15272602:-1765113 -) -(1,17773:15322654,15272602:1765113,459977,115847 -k1,17773:15322654,15272602:3277 -h1,17773:17084490,15272602:0,411205,112570 -) -k1,17773:17264045,15272602:176278 -k1,17773:18707789,15272602:176278 -k1,17773:20110247,15272602:176279 -k1,17773:21599867,15272602:176278 -k1,17773:23170096,15272602:176278 -k1,17773:26372172,15272602:176279 -(1,17773:26372172,15272602:0,452978,115847 -r1,17809:30599268,15272602:4227096,568825,115847 -k1,17773:26372172,15272602:-4227096 -) -(1,17773:26372172,15272602:4227096,452978,115847 -k1,17773:26372172,15272602:3277 -h1,17773:30595991,15272602:0,411205,112570 -) -k1,17773:30775546,15272602:176278 -k1,17774:31966991,15272602:0 -) -(1,17774:7246811,16114090:24720180,513147,126483 -(1,17773:7246811,16114090:0,452978,115847 -r1,17809:11825619,16114090:4578808,568825,115847 -k1,17773:7246811,16114090:-4578808 -) -(1,17773:7246811,16114090:4578808,452978,115847 -k1,17773:7246811,16114090:3277 -h1,17773:11822342,16114090:0,411205,112570 -) -g1,17773:12024848,16114090 -g1,17773:14551260,16114090 -g1,17773:15417645,16114090 -(1,17773:15417645,16114090:0,452978,115847 -r1,17809:18941317,16114090:3523672,568825,115847 -k1,17773:15417645,16114090:-3523672 -) -(1,17773:15417645,16114090:3523672,452978,115847 -k1,17773:15417645,16114090:3277 -h1,17773:18938040,16114090:0,411205,112570 -) -g1,17773:19140546,16114090 -g1,17773:20531220,16114090 -g1,17773:23025520,16114090 -g1,17773:24243834,16114090 -k1,17774:31966991,16114090:6236145 -g1,17774:31966991,16114090 -) -] -) -] -r1,17809:32583029,16830397:26214,3234993,0 -) -] -) -) -g1,17774:32583029,16240573 -) -h1,17774:6630773,16856611:0,0,0 -(1,17777:6630773,18222387:25952256,513147,134348 -h1,17776:6630773,18222387:983040,0,0 -k1,17776:10643228,18222387:239547 -(1,17776:10643228,18222387:0,452978,115847 -r1,17809:12408341,18222387:1765113,568825,115847 -k1,17776:10643228,18222387:-1765113 -) -(1,17776:10643228,18222387:1765113,452978,115847 -k1,17776:10643228,18222387:3277 -h1,17776:12405064,18222387:0,411205,112570 -) -k1,17776:12647887,18222387:239546 -k1,17776:14570399,18222387:239547 -k1,17776:15224748,18222387:239506 -k1,17776:17754122,18222387:239546 -k1,17776:19185114,18222387:239547 -k1,17776:21369770,18222387:239547 -k1,17776:23248371,18222387:239546 -k1,17776:25001144,18222387:239547 -k1,17776:28717375,18222387:239546 -k1,17776:29608350,18222387:239547 -k1,17776:32583029,18222387:0 -) -(1,17777:6630773,19063875:25952256,513147,134348 -k1,17776:9030888,19063875:204004 -k1,17776:9886320,19063875:204004 -k1,17776:11109410,19063875:204005 -k1,17776:13733659,19063875:204004 -k1,17776:14620548,19063875:204004 -k1,17776:15180412,19063875:204004 -k1,17776:16541127,19063875:204005 -k1,17776:19574320,19063875:204004 -k1,17776:20935034,19063875:204004 -k1,17776:21821923,19063875:204004 -k1,17776:23676124,19063875:204004 -k1,17776:27185110,19063875:204005 -k1,17776:28075276,19063875:204004 -k1,17776:31821501,19063875:204004 -k1,17776:32583029,19063875:0 -) -(1,17777:6630773,19905363:25952256,513147,134348 -k1,17776:9264513,19905363:194490 -k1,17776:9814863,19905363:194490 -k1,17776:11970846,19905363:194490 -k1,17776:13546181,19905363:194491 -k1,17776:16778920,19905363:194490 -k1,17776:18077692,19905363:194490 -k1,17776:19019948,19905363:194490 -k1,17776:20148981,19905363:194490 -k1,17776:22901997,19905363:194490 -k1,17776:26377220,19905363:194491 -(1,17776:26377220,19905363:0,414482,115847 -r1,17809:27438909,19905363:1061689,530329,115847 -k1,17776:26377220,19905363:-1061689 -) -(1,17776:26377220,19905363:1061689,414482,115847 -k1,17776:26377220,19905363:3277 -h1,17776:27435632,19905363:0,411205,112570 -) -k1,17776:27807069,19905363:194490 -k1,17776:28629394,19905363:194490 -k1,17776:29921612,19905363:194490 -k1,17776:32583029,19905363:0 -) -(1,17777:6630773,20746851:25952256,505283,126483 -g1,17776:7698354,20746851 -g1,17776:8832126,20746851 -(1,17776:8832126,20746851:0,414482,115847 -r1,17809:9893815,20746851:1061689,530329,115847 -k1,17776:8832126,20746851:-1061689 -) -(1,17776:8832126,20746851:1061689,414482,115847 -k1,17776:8832126,20746851:3277 -h1,17776:9890538,20746851:0,411205,112570 -) -g1,17776:10093044,20746851 -g1,17776:10943701,20746851 -g1,17776:11498790,20746851 -g1,17776:12981214,20746851 -g1,17776:14348950,20746851 -g1,17776:17178139,20746851 -g1,17776:18063530,20746851 -g1,17776:19281844,20746851 -g1,17776:21616236,20746851 -g1,17776:24755410,20746851 -(1,17776:24755410,20746851:0,452978,115847 -r1,17809:26168811,20746851:1413401,568825,115847 -k1,17776:24755410,20746851:-1413401 -) -(1,17776:24755410,20746851:1413401,452978,115847 -k1,17776:24755410,20746851:3277 -h1,17776:26165534,20746851:0,411205,112570 -) -k1,17777:32583029,20746851:6033454 -g1,17777:32583029,20746851 -) -v1,17779:6630773,21937317:0,393216,0 -(1,17785:6630773,23584769:25952256,2040668,196608 -g1,17785:6630773,23584769 -g1,17785:6630773,23584769 -g1,17785:6434165,23584769 -(1,17785:6434165,23584769:0,2040668,196608 -r1,17809:32779637,23584769:26345472,2237276,196608 -k1,17785:6434165,23584769:-26345472 -) -(1,17785:6434165,23584769:26345472,2040668,196608 -[1,17785:6630773,23584769:25952256,1844060,0 -(1,17781:6630773,22144935:25952256,404226,101187 -(1,17780:6630773,22144935:0,0,0 -g1,17780:6630773,22144935 -g1,17780:6630773,22144935 -g1,17780:6303093,22144935 -(1,17780:6303093,22144935:0,0,0 -) -g1,17780:6630773,22144935 -) -g1,17781:9476084,22144935 -g1,17781:10424522,22144935 -g1,17781:13585980,22144935 -g1,17781:15799000,22144935 -g1,17781:18328166,22144935 -h1,17781:21173477,22144935:0,0,0 -k1,17781:32583029,22144935:11409552 -g1,17781:32583029,22144935 -) -(1,17782:6630773,22811113:25952256,410518,101187 -h1,17782:6630773,22811113:0,0,0 -g1,17782:11056813,22811113 -g1,17782:12637542,22811113 -g1,17782:13269834,22811113 -g1,17782:18328165,22811113 -g1,17782:19592748,22811113 -g1,17782:20225040,22811113 -h1,17782:21805769,22811113:0,0,0 -k1,17782:32583029,22811113:10777260 -g1,17782:32583029,22811113 -) -(1,17783:6630773,23477291:25952256,410518,107478 -h1,17783:6630773,23477291:0,0,0 -g1,17783:14850561,23477291 -g1,17783:16747435,23477291 -g1,17783:17379727,23477291 -h1,17783:20541184,23477291:0,0,0 -k1,17783:32583029,23477291:12041845 -g1,17783:32583029,23477291 -) -] -) -g1,17785:32583029,23584769 -g1,17785:6630773,23584769 -g1,17785:6630773,23584769 -g1,17785:32583029,23584769 -g1,17785:32583029,23584769 -) -h1,17785:6630773,23781377:0,0,0 -v1,17789:6630773,25496131:0,393216,0 -(1,17795:6630773,27045541:25952256,1942626,196608 -g1,17795:6630773,27045541 -g1,17795:6630773,27045541 -g1,17795:6434165,27045541 -(1,17795:6434165,27045541:0,1942626,196608 -r1,17809:32779637,27045541:26345472,2139234,196608 -k1,17795:6434165,27045541:-26345472 -) -(1,17795:6434165,27045541:26345472,1942626,196608 -[1,17795:6630773,27045541:25952256,1746018,0 -(1,17794:6630773,25703749:25952256,404226,6290 -(1,17790:6630773,25703749:0,0,0 -g1,17790:6630773,25703749 -g1,17790:6630773,25703749 -g1,17790:6303093,25703749 -(1,17790:6303093,25703749:0,0,0 -) -g1,17790:6630773,25703749 -) -h1,17794:7895356,25703749:0,0,0 -k1,17794:32583028,25703749:24687672 -g1,17794:32583028,25703749 -) -(1,17794:6630773,26369927:25952256,404226,6290 -h1,17794:6630773,26369927:0,0,0 -g1,17794:8527647,26369927 -h1,17794:10108375,26369927:0,0,0 -k1,17794:32583029,26369927:22474654 -g1,17794:32583029,26369927 -) -(1,17794:6630773,27036105:25952256,388497,9436 -h1,17794:6630773,27036105:0,0,0 -h1,17794:8527647,27036105:0,0,0 -k1,17794:32583029,27036105:24055382 -g1,17794:32583029,27036105 -) -] -) -g1,17795:32583029,27045541 -g1,17795:6630773,27045541 -g1,17795:6630773,27045541 -g1,17795:32583029,27045541 -g1,17795:32583029,27045541 -) -h1,17795:6630773,27242149:0,0,0 -(1,17799:6630773,29857697:25952256,555811,12975 -(1,17799:6630773,29857697:2450326,534184,12975 -g1,17799:6630773,29857697 -g1,17799:9081099,29857697 -) -k1,17799:32583029,29857697:21140996 -g1,17799:32583029,29857697 -) -(1,17805:6630773,31092401:25952256,513147,134348 -k1,17804:9352433,31092401:186727 -k1,17804:11562256,31092401:186727 -k1,17804:12280480,31092401:186727 -k1,17804:13789069,31092401:186728 -k1,17804:14635088,31092401:186727 -k1,17804:15840900,31092401:186727 -k1,17804:19235614,31092401:186727 -k1,17804:21146593,31092401:186727 -k1,17804:21803213,31092401:186727 -k1,17804:24281080,31092401:186728 -k1,17804:27493604,31092401:186727 -k1,17804:28964837,31092401:186727 -k1,17804:30626779,31092401:186727 -k1,17805:32583029,31092401:0 -) -(1,17805:6630773,31933889:25952256,513147,134348 -k1,17804:7861157,31933889:211299 -k1,17804:10338036,31933889:211299 -k1,17804:13309055,31933889:211298 -k1,17804:14711799,31933889:211299 -k1,17804:16207604,31933889:211299 -k1,17804:17410463,31933889:211299 -k1,17804:20478475,31933889:211298 -k1,17804:21341202,31933889:211299 -k1,17804:22300267,31933889:211299 -k1,17804:24355094,31933889:211299 -k1,17804:26452518,31933889:211298 -k1,17804:29426160,31933889:211299 -k1,17804:32583029,31933889:0 -) -(1,17805:6630773,32775377:25952256,513147,134348 -k1,17804:8247218,32775377:173998 -k1,17804:10165129,32775377:173998 -k1,17804:12272439,32775377:173998 -k1,17804:13097866,32775377:173999 -k1,17804:13860377,32775377:173998 -k1,17804:15231062,32775377:173998 -k1,17804:18430857,32775377:173998 -k1,17804:20172476,32775377:173998 -k1,17804:22926626,32775377:173998 -k1,17804:25123721,32775377:173999 -k1,17804:26402001,32775377:173998 -k1,17804:30023848,32775377:173998 -k1,17804:32583029,32775377:0 -) -(1,17805:6630773,33616865:25952256,513147,134348 -k1,17804:9082335,33616865:187293 -k1,17804:10778267,33616865:187293 -k1,17804:12674085,33616865:187294 -k1,17804:14052823,33616865:187293 -k1,17804:16086265,33616865:187293 -k1,17804:17740254,33616865:187293 -k1,17804:20249488,33616865:187293 -k1,17804:21252050,33616865:187294 -k1,17804:22816254,33616865:187293 -k1,17804:24436164,33616865:187293 -k1,17804:25038288,33616865:187281 -k1,17804:28251379,33616865:187294 -k1,17804:29253940,33616865:187293 -k1,17804:30654304,33616865:187293 -k1,17805:32583029,33616865:0 -) -(1,17805:6630773,34458353:25952256,513147,134348 -k1,17804:7957330,34458353:155429 -k1,17804:9355323,34458353:155430 -k1,17804:10529837,34458353:155429 -k1,17804:13903740,34458353:155430 -k1,17804:15681185,34458353:155429 -k1,17804:16584381,34458353:155430 -k1,17804:19500842,34458353:155429 -k1,17804:20342434,34458353:155430 -k1,17804:24074163,34458353:155429 -k1,17804:25426280,34458353:155430 -k1,17804:27604806,34458353:155430 -k1,17804:30786032,34458353:155429 -k1,17804:32583029,34458353:0 -) -(1,17805:6630773,35299841:25952256,513147,126483 -k1,17804:8495039,35299841:214069 -k1,17804:12004913,35299841:214068 -k1,17804:12878274,35299841:214069 -k1,17804:14111427,35299841:214068 -k1,17804:15551675,35299841:214069 -k1,17804:16748783,35299841:214068 -k1,17804:19316905,35299841:214069 -k1,17804:20147012,35299841:214069 -k1,17804:21962780,35299841:214068 -k1,17804:23874231,35299841:214069 -k1,17804:25468487,35299841:214068 -k1,17804:28383950,35299841:214069 -k1,17804:30483489,35299841:214068 -k1,17804:31229055,35299841:214069 -k1,17804:32583029,35299841:0 -) -(1,17805:6630773,36141329:25952256,513147,134348 -k1,17804:8991796,36141329:219962 -k1,17804:10283928,36141329:219963 -k1,17804:14389520,36141329:219962 -k1,17804:15989671,36141329:219963 -k1,17804:17410253,36141329:219962 -k1,17804:20951581,36141329:219963 -k1,17804:23958789,36141329:219962 -k1,17804:25283034,36141329:219963 -k1,17804:26250762,36141329:219962 -k1,17804:29951342,36141329:219963 -k1,17804:30932832,36141329:219962 -k1,17805:32583029,36141329:0 -) -(1,17805:6630773,36982817:25952256,513147,134348 -k1,17804:7881603,36982817:260581 -k1,17804:11544813,36982817:260581 -k1,17804:12996839,36982817:260581 -k1,17804:14460661,36982817:260581 -k1,17804:15252739,36982817:260581 -k1,17804:20068072,36982817:260581 -k1,17804:21276305,36982817:260582 -k1,17804:23698263,36982817:260581 -k1,17804:25243350,36982817:260581 -k1,17804:26840865,36982817:260581 -k1,17804:27849212,36982817:260581 -k1,17804:30258719,36982817:260581 -k1,17804:31170728,36982817:260581 -k1,17804:32583029,36982817:0 -) -(1,17805:6630773,37824305:25952256,513147,134348 -k1,17804:9619453,37824305:226337 -k1,17804:11159133,37824305:226338 -k1,17804:12001508,37824305:226337 -k1,17804:13246930,37824305:226337 -k1,17804:15633990,37824305:226338 -k1,17804:18464728,37824305:226337 -k1,17804:21900364,37824305:226338 -k1,17804:25365490,37824305:226337 -k1,17804:26123324,37824305:226337 -k1,17804:27634168,37824305:226338 -k1,17804:29557232,37824305:226337 -k1,17804:32583029,37824305:0 -) -(1,17805:6630773,38665793:25952256,513147,134348 -k1,17804:8269610,38665793:226536 -k1,17804:11470825,38665793:226536 -k1,17804:13893472,38665793:226536 -k1,17804:17325374,38665793:226536 -k1,17804:18238072,38665793:226536 -k1,17804:20175754,38665793:226537 -k1,17804:21085175,38665793:226536 -k1,17804:23067421,38665793:226536 -k1,17804:25708303,38665793:226536 -k1,17804:27202305,38665793:226536 -k1,17804:30142032,38665793:226536 -k1,17804:31027860,38665793:226536 -k1,17805:32583029,38665793:0 -) -(1,17805:6630773,39507281:25952256,513147,126483 -(1,17804:6630773,39507281:0,414482,115847 -r1,17809:9099310,39507281:2468537,530329,115847 -k1,17804:6630773,39507281:-2468537 -) -(1,17804:6630773,39507281:2468537,414482,115847 -k1,17804:6630773,39507281:3277 -h1,17804:9096033,39507281:0,411205,112570 -) -k1,17804:9536432,39507281:263452 -k1,17804:10697726,39507281:263451 -(1,17804:10697726,39507281:0,452978,115847 -r1,17809:12462839,39507281:1765113,568825,115847 -k1,17804:10697726,39507281:-1765113 -) -(1,17804:10697726,39507281:1765113,452978,115847 -k1,17804:10697726,39507281:3277 -h1,17804:12459562,39507281:0,411205,112570 -) -k1,17804:12726291,39507281:263452 -k1,17804:16015539,39507281:263451 -k1,17804:18660569,39507281:263452 -k1,17804:19540058,39507281:263451 -k1,17804:21826606,39507281:263452 -k1,17804:23565272,39507281:263451 -k1,17804:24599427,39507281:263452 -(1,17804:24599427,39507281:0,452978,115847 -r1,17809:26716252,39507281:2116825,568825,115847 -k1,17804:24599427,39507281:-2116825 -) -(1,17804:24599427,39507281:2116825,452978,115847 -k1,17804:24599427,39507281:3277 -h1,17804:26712975,39507281:0,411205,112570 -) -k1,17804:26979703,39507281:263451 -k1,17804:30697558,39507281:263452 -k1,17804:32583029,39507281:0 -) -(1,17805:6630773,40348769:25952256,513147,134348 -k1,17804:7927075,40348769:192020 -k1,17804:8866862,40348769:192021 -k1,17804:10572108,40348769:192020 -k1,17804:11415557,40348769:192021 -k1,17804:13848253,40348769:192020 -k1,17804:15059359,40348769:192021 -k1,17804:17516959,40348769:192020 -k1,17804:20468700,40348769:192020 -k1,17804:21320013,40348769:192021 -k1,17804:25157145,40348769:192020 -k1,17804:26119869,40348769:192021 -k1,17804:28802912,40348769:192020 -k1,17804:29977973,40348769:192021 -k1,17804:31563944,40348769:192020 -k1,17804:32583029,40348769:0 -) -(1,17805:6630773,41190257:25952256,505283,134348 -g1,17804:8483475,41190257 -g1,17804:10594389,41190257 -g1,17804:11445046,41190257 -g1,17804:15014792,41190257 -g1,17804:16233106,41190257 -g1,17804:18591091,41190257 -g1,17804:19403082,41190257 -g1,17804:20390709,41190257 -k1,17805:32583029,41190257:10835725 -g1,17805:32583029,41190257 -) -(1,17807:6630773,42031745:25952256,513147,134348 -h1,17806:6630773,42031745:983040,0,0 -k1,17806:10797401,42031745:220705 -k1,17806:11634144,42031745:220705 -k1,17806:13058090,42031745:220705 -k1,17806:15557482,42031745:220705 -k1,17806:16646539,42031745:220705 -k1,17806:19999865,42031745:220705 -k1,17806:21239656,42031745:220706 -k1,17806:22552846,42031745:220705 -k1,17806:23432843,42031745:220705 -k1,17806:25350275,42031745:220705 -k1,17806:28596777,42031745:220705 -k1,17806:29579010,42031745:220705 -k1,17806:32227169,42031745:220705 -k1,17806:32583029,42031745:0 -) -(1,17807:6630773,42873233:25952256,513147,134348 -k1,17806:7842404,42873233:228591 -k1,17806:9809011,42873233:228592 -k1,17806:10723764,42873233:228591 -k1,17806:11723058,42873233:228591 -k1,17806:15197648,42873233:228592 -k1,17806:16112401,42873233:228591 -k1,17806:16872490,42873233:228592 -k1,17806:18120166,42873233:228591 -k1,17806:19715838,42873233:228591 -k1,17806:21338381,42873233:228592 -k1,17806:21981786,42873233:228562 -k1,17806:24143689,42873233:228591 -k1,17806:27571748,42873233:228591 -k1,17806:29585541,42873233:228592 -k1,17806:31005577,42873233:228591 -k1,17806:32583029,42873233:0 -) -(1,17807:6630773,43714721:25952256,513147,134348 -k1,17806:7784559,43714721:170746 -k1,17806:11567650,43714721:170747 -k1,17806:12729956,43714721:170746 -k1,17806:14186519,43714721:170747 -k1,17806:17173347,43714721:170746 -k1,17806:18576170,43714721:170746 -k1,17806:21025604,43714721:170747 -h1,17806:21996192,43714721:0,0,0 -k1,17806:22166938,43714721:170746 -k1,17806:23147054,43714721:170746 -k1,17806:24815954,43714721:170747 -h1,17806:26011331,43714721:0,0,0 -k1,17806:26562841,43714721:170746 -k1,17806:30927237,43714721:170747 -k1,17806:31563944,43714721:170746 -k1,17806:32583029,43714721:0 -) -(1,17807:6630773,44556209:25952256,513147,134348 -k1,17806:7779338,44556209:165525 -k1,17806:9682879,44556209:165526 -k1,17806:11361630,44556209:165525 -k1,17806:12143193,44556209:165525 -k1,17806:12664578,44556209:165525 -k1,17806:13817076,44556209:165526 -k1,17806:18035347,44556209:165525 -k1,17806:18887034,44556209:165525 -k1,17806:22227124,44556209:165526 -k1,17806:22748509,44556209:165525 -k1,17806:26747235,44556209:165525 -k1,17806:27895800,44556209:165525 -k1,17806:30415379,44556209:165526 -k1,17806:31599989,44556209:165525 -k1,17806:32583029,44556209:0 -) -(1,17807:6630773,45397697:25952256,513147,126483 -g1,17806:7962464,45397697 -g1,17806:8909459,45397697 -g1,17806:13771575,45397697 -g1,17806:14780174,45397697 -g1,17806:15998488,45397697 -k1,17807:32583029,45397697:15615264 -g1,17807:32583029,45397697 -) -] -(1,17809:32583029,45706769:0,0,0 -g1,17809:32583029,45706769 -) -) -] -(1,17809:6630773,47279633:25952256,0,0 -h1,17809:6630773,47279633:25952256,0,0 -) -] -(1,17809:4262630,4025873:0,0,0 -[1,17809:-473656,4025873:0,0,0 -(1,17809:-473656,-710413:0,0,0 -(1,17809:-473656,-710413:0,0,0 -g1,17809:-473656,-710413 -) -g1,17809:-473656,-710413 -) -] -) -] -!25772 -}348 -Input:2875:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2876:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2877:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2878:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2879:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2880:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2881:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2882:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!748 -{349 -[1,17849:4262630,47279633:28320399,43253760,0 -(1,17849:4262630,4025873:0,0,0 -[1,17849:-473656,4025873:0,0,0 -(1,17849:-473656,-710413:0,0,0 -(1,17849:-473656,-644877:0,0,0 -k1,17849:-473656,-644877:-65536 -) -(1,17849:-473656,4736287:0,0,0 -k1,17849:-473656,4736287:5209943 -) -g1,17849:-473656,-710413 -) -] -) -[1,17849:6630773,47279633:25952256,43253760,0 -[1,17849:6630773,4812305:25952256,786432,0 -(1,17849:6630773,4812305:25952256,505283,126483 -(1,17849:6630773,4812305:25952256,505283,126483 -g1,17849:3078558,4812305 -[1,17849:3078558,4812305:0,0,0 -(1,17849:3078558,2439708:0,1703936,0 -k1,17849:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,17849:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,17849:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 -) -] -) -) -) -] -[1,17849:3078558,4812305:0,0,0 -(1,17849:3078558,2439708:0,1703936,0 -g1,17849:29030814,2439708 -g1,17849:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,17849:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 -) -] -) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,17849:37855564,2439708:1179648,16384,0 -) -) -k1,17849:3078556,2439708:-34777008 -) -] -[1,17849:3078558,4812305:0,0,0 -(1,17849:3078558,49800853:0,16384,2228224 -k1,17849:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,17849:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,17849:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 -) -] -) -) -) -] -[1,17849:3078558,4812305:0,0,0 -(1,17849:3078558,49800853:0,16384,2228224 -g1,17849:29030814,49800853 -g1,17849:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,17849:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 -) -] -) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,17849:37855564,49800853:1179648,16384,0 -) -) -k1,17849:3078556,49800853:-34777008 -) -] -g1,17849:6630773,4812305 -k1,17849:25146660,4812305:17320510 -g1,17849:26880087,4812305 -g1,17849:29193507,4812305 -g1,17849:30603186,4812305 -) -) -] -[1,17849:6630773,45706769:25952256,40108032,0 -(1,17849:6630773,45706769:25952256,40108032,0 -(1,17849:6630773,45706769:0,0,0 -g1,17849:6630773,45706769 -) -[1,17849:6630773,45706769:25952256,40108032,0 -v1,17809:6630773,6254097:0,393216,0 -(1,17810:6630773,16111683:25952256,10250802,616038 -g1,17810:6630773,16111683 -(1,17810:6630773,16111683:25952256,10250802,616038 -(1,17810:6630773,16727721:25952256,10866840,0 -[1,17810:6630773,16727721:25952256,10866840,0 -(1,17810:6630773,16701507:25952256,10814412,0 -r1,17849:6656987,16701507:26214,10814412,0 -[1,17810:6656987,16701507:25899828,10814412,0 -(1,17810:6656987,16111683:25899828,9634764,0 -[1,17810:7246811,16111683:24720180,9634764,0 -(1,17810:7246811,7562455:24720180,1085536,298548 -(1,17809:7246811,7562455:0,1085536,298548 -r1,17849:8753226,7562455:1506415,1384084,298548 -k1,17809:7246811,7562455:-1506415 -) -(1,17809:7246811,7562455:1506415,1085536,298548 -) -k1,17809:9021563,7562455:268337 -k1,17809:12410069,7562455:268337 -k1,17809:16583696,7562455:268337 -k1,17809:17503462,7562455:268338 -k1,17809:19705111,7562455:268337 -k1,17809:20388221,7562455:268267 -k1,17809:23682356,7562455:268338 -k1,17809:27040716,7562455:268337 -k1,17809:27925091,7562455:268337 -k1,17809:29212513,7562455:268337 -k1,17809:31966991,7562455:0 -) -(1,17810:7246811,8403943:24720180,513147,134348 -k1,17809:9853416,8403943:327918 -k1,17809:11656550,8403943:327919 -k1,17809:14052784,8403943:327918 -k1,17809:16716405,8403943:327918 -k1,17809:17805852,8403943:327919 -k1,17809:21075026,8403943:327918 -k1,17809:22422030,8403943:327919 -k1,17809:23822117,8403943:327918 -k1,17809:25543986,8403943:327918 -k1,17809:26642608,8403943:327919 -k1,17809:30724428,8403943:327918 -k1,17810:31966991,8403943:0 -) -(1,17810:7246811,9245431:24720180,513147,126483 -(1,17809:7246811,9245431:0,452978,115847 -r1,17849:10770483,9245431:3523672,568825,115847 -k1,17809:7246811,9245431:-3523672 -) -(1,17809:7246811,9245431:3523672,452978,115847 -k1,17809:7246811,9245431:3277 -h1,17809:10767206,9245431:0,411205,112570 -) -k1,17809:10971985,9245431:201502 -$1,17809:10971985,9245431 -$1,17809:11540182,9245431 -k1,17809:11741684,9245431:201502 -(1,17809:11741684,9245431:0,452978,115847 -r1,17849:15265356,9245431:3523672,568825,115847 -k1,17809:11741684,9245431:-3523672 -) -(1,17809:11741684,9245431:3523672,452978,115847 -k1,17809:11741684,9245431:3277 -h1,17809:15262079,9245431:0,411205,112570 -) -k1,17809:15640527,9245431:201501 -k1,17809:17038716,9245431:201502 -k1,17809:20261428,9245431:201502 -k1,17809:22329395,9245431:201502 -k1,17809:23182324,9245431:201501 -k1,17809:24402911,9245431:201502 -k1,17809:26784796,9245431:201502 -k1,17809:27645590,9245431:201502 -k1,17809:28866176,9245431:201501 -k1,17809:30381020,9245431:201502 -k1,17809:31966991,9245431:0 -) -(1,17810:7246811,10086919:24720180,513147,126483 -k1,17809:8585712,10086919:266732 -k1,17809:9918714,10086919:266731 -k1,17809:11204531,10086919:266732 -k1,17809:13384258,10086919:266731 -k1,17809:15892977,10086919:266732 -k1,17809:16842594,10086919:266732 -k1,17809:18674980,10086919:266731 -k1,17809:19601004,10086919:266732 -k1,17809:21376374,10086919:266731 -k1,17809:23771715,10086919:266732 -k1,17809:27823150,10086919:266731 -k1,17809:29131904,10086919:266732 -k1,17809:31966991,10086919:0 -) -(1,17810:7246811,10928407:24720180,513147,134348 -k1,17809:10148158,10928407:205851 -(1,17809:10148158,10928407:0,452978,115847 -r1,17849:14375254,10928407:4227096,568825,115847 -k1,17809:10148158,10928407:-4227096 -) -(1,17809:10148158,10928407:4227096,452978,115847 -k1,17809:10148158,10928407:3277 -h1,17809:14371977,10928407:0,411205,112570 -) -k1,17809:14581104,10928407:205850 -k1,17809:15887960,10928407:205851 -k1,17809:16449671,10928407:205851 -k1,17809:19004331,10928407:205850 -k1,17809:21972525,10928407:205851 -k1,17809:24938097,10928407:205851 -k1,17809:26586394,10928407:205850 -(1,17809:26586394,10928407:0,452978,115847 -r1,17849:30813490,10928407:4227096,568825,115847 -k1,17809:26586394,10928407:-4227096 -) -(1,17809:26586394,10928407:4227096,452978,115847 -k1,17809:26586394,10928407:3277 -h1,17809:30810213,10928407:0,411205,112570 -) -k1,17809:31193011,10928407:205851 -k1,17810:31966991,10928407:0 -) -(1,17810:7246811,11769895:24720180,513147,134348 -k1,17809:9766889,11769895:249911 -k1,17809:11396987,11769895:249910 -k1,17809:13113594,11769895:249911 -k1,17809:14775805,11769895:249910 -k1,17809:16759798,11769895:249910 -k1,17809:20133155,11769895:249911 -k1,17809:21144594,11769895:249911 -k1,17809:23135796,11769895:249910 -k1,17809:25347200,11769895:249911 -k1,17809:27413768,11769895:249910 -k1,17809:30038704,11769895:249911 -k1,17809:30947906,11769895:249910 -k1,17809:31966991,11769895:0 -) -(1,17810:7246811,12611383:24720180,513147,126483 -k1,17809:9747486,12611383:235095 -k1,17809:12742303,12611383:235096 -k1,17809:13968958,12611383:235095 -k1,17809:15489870,12611383:235096 -k1,17809:18660978,12611383:235095 -k1,17809:19843725,12611383:235096 -k1,17809:22740237,12611383:235095 -k1,17809:24998429,12611383:235096 -k1,17809:28259321,12611383:235095 -k1,17809:29309685,12611383:235096 -k1,17809:30611051,12611383:235095 -k1,17810:31966991,12611383:0 -) -(1,17810:7246811,13452871:24720180,513147,134348 -k1,17809:8766488,13452871:269905 -k1,17809:11749584,13452871:269905 -k1,17809:12678781,13452871:269905 -k1,17809:15923365,13452871:269905 -k1,17809:18389381,13452871:269905 -k1,17809:19926752,13452871:269905 -k1,17809:22420949,13452871:269905 -k1,17809:23377016,13452871:269905 -k1,17809:24061693,13452871:269834 -k1,17809:27357395,13452871:269905 -k1,17809:28669978,13452871:269905 -k1,17809:29701411,13452871:269905 -k1,17809:31966991,13452871:0 -) -(1,17810:7246811,14294359:24720180,505283,115847 -k1,17809:8103012,14294359:240163 -k1,17809:11007215,14294359:240164 -k1,17809:13280960,14294359:240163 -k1,17809:14963571,14294359:240164 -k1,17809:16920122,14294359:240163 -k1,17809:18520812,14294359:240163 -k1,17809:20829292,14294359:240164 -k1,17809:22061015,14294359:240163 -k1,17809:23367449,14294359:240163 -k1,17809:24542156,14294359:240164 -k1,17809:25398357,14294359:240163 -k1,17809:26657606,14294359:240164 -k1,17809:29676496,14294359:240163 -(1,17809:29676496,14294359:0,452978,115847 -r1,17849:31793321,14294359:2116825,568825,115847 -k1,17809:29676496,14294359:-2116825 -) -(1,17809:29676496,14294359:2116825,452978,115847 -k1,17809:29676496,14294359:3277 -h1,17809:31790044,14294359:0,411205,112570 -) -k1,17809:31966991,14294359:0 -) -(1,17810:7246811,15135847:24720180,513147,126483 -k1,17809:9350892,15135847:218610 -k1,17809:12024482,15135847:218611 -k1,17809:13810713,15135847:218610 -(1,17809:13810713,15135847:0,459977,115847 -r1,17849:17334385,15135847:3523672,575824,115847 -k1,17809:13810713,15135847:-3523672 -) -(1,17809:13810713,15135847:3523672,459977,115847 -k1,17809:13810713,15135847:3277 -h1,17809:17331108,15135847:0,411205,112570 -) -k1,17809:17726665,15135847:218610 -k1,17809:19017445,15135847:218611 -k1,17809:19767552,15135847:218610 -k1,17809:21052434,15135847:218611 -k1,17809:22722011,15135847:218610 -k1,17809:26476288,15135847:218610 -k1,17809:27926976,15135847:218611 -k1,17809:30424273,15135847:218610 -h1,17809:31966991,15135847:0,0,0 -k1,17809:31966991,15135847:0 -) -(1,17810:7246811,15977335:24720180,505283,134348 -g1,17809:8255410,15977335 -g1,17809:9952792,15977335 -h1,17809:11148169,15977335:0,0,0 -k1,17810:31966991,15977335:20438058 -g1,17810:31966991,15977335 -) -] -) -] -r1,17849:32583029,16701507:26214,10814412,0 -) -] -) -) -g1,17810:32583029,16111683 -) -h1,17810:6630773,16727721:0,0,0 -v1,17813:6630773,18093497:0,393216,0 -(1,17814:6630773,22820464:25952256,5120183,616038 -g1,17814:6630773,22820464 -(1,17814:6630773,22820464:25952256,5120183,616038 -(1,17814:6630773,23436502:25952256,5736221,0 -[1,17814:6630773,23436502:25952256,5736221,0 -(1,17814:6630773,23410288:25952256,5683793,0 -r1,17849:6656987,23410288:26214,5683793,0 -[1,17814:6656987,23410288:25899828,5683793,0 -(1,17814:6656987,22820464:25899828,4504145,0 -[1,17814:7246811,22820464:24720180,4504145,0 -(1,17814:7246811,19338665:24720180,1022346,134348 -k1,17813:8718488,19338665:216164 -k1,17813:11469585,19338665:216164 -k1,17813:13708845,19338665:216164 -k1,17813:14456506,19338665:216164 -k1,17813:16558796,19338665:216164 -k1,17813:18627006,19338665:216163 -k1,17813:23148885,19338665:216164 -k1,17813:24556494,19338665:216164 -k1,17813:27468154,19338665:216164 -k1,17813:29078269,19338665:216164 -k1,17813:30313518,19338665:216164 -k1,17813:31966991,19338665:0 -) -(1,17814:7246811,20180153:24720180,513147,134348 -k1,17813:9168267,20180153:183441 -k1,17813:10919329,20180153:183441 -k1,17813:13865113,20180153:183441 -k1,17813:15934025,20180153:183441 -k1,17813:18781505,20180153:183441 -k1,17813:19956506,20180153:183441 -k1,17813:21206218,20180153:183441 -k1,17813:22840626,20180153:183441 -k1,17813:26733405,20180153:183441 -k1,17813:28534930,20180153:183441 -k1,17813:31019340,20180153:183441 -k1,17813:31966991,20180153:0 -) -(1,17814:7246811,21021641:24720180,513147,134348 -k1,17813:10481122,21021641:242592 -k1,17813:12291336,21021641:242593 -k1,17813:13553013,21021641:242592 -k1,17813:16550083,21021641:242592 -k1,17813:19029420,21021641:242593 -k1,17813:19931304,21021641:242592 -k1,17813:21192981,21021641:242592 -k1,17813:23017613,21021641:242593 -k1,17813:24069575,21021641:242592 -k1,17813:26336574,21021641:242592 -k1,17813:28175624,21021641:242593 -k1,17813:30947906,21021641:242592 -k1,17813:31966991,21021641:0 -) -(1,17814:7246811,21863129:24720180,513147,134348 -k1,17813:8725303,21863129:195297 -k1,17813:13977358,21863129:195297 -k1,17813:15529907,21863129:195298 -k1,17813:16376632,21863129:195297 -k1,17813:19663262,21863129:195297 -k1,17813:22414463,21863129:195297 -k1,17813:24803906,21863129:195298 -k1,17813:28477854,21863129:195297 -k1,17813:29300986,21863129:195297 -k1,17813:31966991,21863129:0 -) -(1,17814:7246811,22704617:24720180,513147,115847 -g1,17813:10141536,22704617 -(1,17813:10141536,22704617:0,452978,115847 -r1,17849:14720344,22704617:4578808,568825,115847 -k1,17813:10141536,22704617:-4578808 -) -(1,17813:10141536,22704617:4578808,452978,115847 -k1,17813:10141536,22704617:3277 -h1,17813:14717067,22704617:0,411205,112570 -) -g1,17813:14919573,22704617 -g1,17813:16219807,22704617 -g1,17813:17928986,22704617 -g1,17813:20922670,22704617 -(1,17813:20922670,22704617:0,452978,115847 -r1,17849:25501478,22704617:4578808,568825,115847 -k1,17813:20922670,22704617:-4578808 -) -(1,17813:20922670,22704617:4578808,452978,115847 -k1,17813:20922670,22704617:3277 -h1,17813:25498201,22704617:0,411205,112570 -) -k1,17814:31966991,22704617:6291843 -g1,17814:31966991,22704617 -) -] -) -] -r1,17849:32583029,23410288:26214,5683793,0 -) -] -) -) -g1,17814:32583029,22820464 -) -h1,17814:6630773,23436502:0,0,0 -(1,17817:6630773,24802278:25952256,513147,126483 -h1,17816:6630773,24802278:983040,0,0 -k1,17816:8652980,24802278:221278 -k1,17816:9742609,24802278:221277 -k1,17816:11068169,24802278:221278 -k1,17816:12314429,24802278:221277 -k1,17816:13151745,24802278:221278 -k1,17816:14576263,24802278:221277 -k1,17816:16103674,24802278:221278 -k1,17816:19160039,24802278:221278 -k1,17816:21078043,24802278:221277 -k1,17816:24325118,24802278:221278 -k1,17816:25832211,24802278:221277 -k1,17816:28049716,24802278:221278 -k1,17816:28922421,24802278:221277 -k1,17816:30162784,24802278:221278 -k1,17816:32583029,24802278:0 -) -(1,17817:6630773,25643766:25952256,513147,134348 -k1,17816:7805834,25643766:155976 -k1,17816:12312744,25643766:155975 -k1,17816:13128012,25643766:155976 -k1,17816:14303072,25643766:155975 -k1,17816:17345909,25643766:155976 -k1,17816:19387355,25643766:155975 -k1,17816:20074828,25643766:155976 -k1,17816:23440102,25643766:155976 -k1,17816:25294115,25643766:155975 -k1,17816:27146818,25643766:155976 -k1,17816:28294353,25643766:155975 -k1,17816:31015408,25643766:155976 -k1,17816:32583029,25643766:0 -) -(1,17817:6630773,26485254:25952256,513147,126483 -g1,17816:7849087,26485254 -g1,17816:9031356,26485254 -g1,17816:12153491,26485254 -g1,17816:13035605,26485254 -g1,17816:14701530,26485254 -g1,17816:16276360,26485254 -g1,17816:18043210,26485254 -g1,17816:19776637,26485254 -g1,17816:21382269,26485254 -g1,17816:22600583,26485254 -g1,17816:23871981,26485254 -g1,17816:24730502,26485254 -g1,17816:25948816,26485254 -k1,17817:32583029,26485254:5477503 -g1,17817:32583029,26485254 -) -v1,17819:6630773,27675720:0,393216,0 -(1,17832:6630773,37214740:25952256,9932236,196608 -g1,17832:6630773,37214740 -g1,17832:6630773,37214740 -g1,17832:6434165,37214740 -(1,17832:6434165,37214740:0,9932236,196608 -r1,17849:32779637,37214740:26345472,10128844,196608 -k1,17832:6434165,37214740:-26345472 -) -(1,17832:6434165,37214740:26345472,9932236,196608 -[1,17832:6630773,37214740:25952256,9735628,0 -(1,17821:6630773,27889630:25952256,410518,107478 -(1,17820:6630773,27889630:0,0,0 -g1,17820:6630773,27889630 -g1,17820:6630773,27889630 -g1,17820:6303093,27889630 -(1,17820:6303093,27889630:0,0,0 -) -g1,17820:6630773,27889630 -) -k1,17821:6630773,27889630:0 -g1,17821:11056813,27889630 -g1,17821:11689105,27889630 -k1,17821:11689105,27889630:0 -h1,17821:21489621,27889630:0,0,0 -k1,17821:32583029,27889630:11093408 -g1,17821:32583029,27889630 -) -(1,17825:6630773,29211168:25952256,404226,7863 -g1,17825:7579210,29211168 -g1,17825:9476084,29211168 -g1,17825:10108376,29211168 -g1,17825:12953687,29211168 -k1,17825:32583029,29211168:19313196 -g1,17825:32583029,29211168 -) -(1,17825:6630773,29877346:25952256,410518,101187 -k1,17825:7507251,29877346:244187 -k1,17825:8383729,29877346:244187 -k1,17825:10524790,29877346:244187 -k1,17825:14878871,29877346:244187 -k1,17825:32583029,29877346:0 -k1,17825:32583029,29877346:0 -) -(1,17825:6630773,30543524:25952256,404226,82312 -g1,17825:7579210,30543524 -g1,17825:11056813,30543524 -k1,17825:32583030,30543524:20577780 -g1,17825:32583030,30543524 -) -(1,17825:6630773,31209702:25952256,404226,76021 -g1,17825:7579210,31209702 -g1,17825:8843793,31209702 -g1,17825:10424522,31209702 -k1,17825:32583029,31209702:20893924 -g1,17825:32583029,31209702 -) -(1,17825:6630773,31875880:25952256,404226,82312 -g1,17825:7579210,31875880 -g1,17825:8843793,31875880 -g1,17825:10424522,31875880 -g1,17825:12321396,31875880 -g1,17825:14218270,31875880 -k1,17825:32583029,31875880:17100176 -g1,17825:32583029,31875880 -) -(1,17825:6630773,32542058:25952256,379060,0 -k1,17825:32583028,32542058:25319964 -g1,17825:32583028,32542058 -) -(1,17825:6630773,33208236:25952256,410518,101187 -g1,17825:7579210,33208236 -g1,17825:8211502,33208236 -g1,17825:9476085,33208236 -g1,17825:12321396,33208236 -g1,17825:13269833,33208236 -g1,17825:16115144,33208236 -g1,17825:17379727,33208236 -g1,17825:18960456,33208236 -g1,17825:21173476,33208236 -g1,17825:25599516,33208236 -g1,17825:26864099,33208236 -g1,17825:28444828,33208236 -k1,17825:32583029,33208236:2557473 -g1,17825:32583029,33208236 -) -(1,17825:6630773,33874414:25952256,410518,107478 -k1,17825:7536068,33874414:273004 -k1,17825:8125219,33874414:273005 -k1,17825:10611243,33874414:273004 -k1,17825:11832684,33874414:273004 -k1,17825:14002562,33874414:273004 -k1,17825:15856295,33874414:273005 -k1,17825:16761590,33874414:273004 -k1,17825:17983031,33874414:273004 -k1,17825:22998221,33874414:273005 -k1,17825:23587371,33874414:273004 -k1,17825:25757249,33874414:273004 -k1,17825:26662544,33874414:273004 -k1,17825:28516277,33874414:273005 -k1,17825:30053864,33874414:273004 -k1,17825:32583029,33874414:0 -k1,17825:32583029,33874414:0 -) -(1,17831:6630773,34540592:25952256,404226,6290 -(1,17825:6630773,34540592:0,0,0 -g1,17825:6630773,34540592 -g1,17825:6630773,34540592 -g1,17825:6303093,34540592 -(1,17825:6303093,34540592:0,0,0 -) -g1,17825:6630773,34540592 -) -g1,17831:7579210,34540592 -g1,17831:8211502,34540592 -g1,17831:8843794,34540592 -g1,17831:11372960,34540592 -g1,17831:12005252,34540592 -g1,17831:12637544,34540592 -h1,17831:12953690,34540592:0,0,0 -k1,17831:32583030,34540592:19629340 -g1,17831:32583030,34540592 -) -(1,17831:6630773,35206770:25952256,404226,9436 -h1,17831:6630773,35206770:0,0,0 -g1,17831:7579210,35206770 -g1,17831:7895356,35206770 -g1,17831:8211502,35206770 -g1,17831:8527648,35206770 -g1,17831:10108377,35206770 -g1,17831:10424523,35206770 -g1,17831:12005252,35206770 -g1,17831:12321398,35206770 -g1,17831:13902127,35206770 -h1,17831:15166710,35206770:0,0,0 -k1,17831:32583030,35206770:17416320 -g1,17831:32583030,35206770 -) -(1,17831:6630773,35872948:25952256,404226,6290 -h1,17831:6630773,35872948:0,0,0 -g1,17831:7579210,35872948 -g1,17831:7895356,35872948 -g1,17831:8211502,35872948 -g1,17831:10108377,35872948 -g1,17831:12005252,35872948 -g1,17831:13902127,35872948 -k1,17831:13902127,35872948:0 -h1,17831:15482856,35872948:0,0,0 -k1,17831:32583028,35872948:17100172 -g1,17831:32583028,35872948 -) -(1,17831:6630773,36539126:25952256,388497,9436 -h1,17831:6630773,36539126:0,0,0 -g1,17831:7579210,36539126 -g1,17831:8211502,36539126 -g1,17831:8527648,36539126 -g1,17831:8843794,36539126 -g1,17831:9476086,36539126 -g1,17831:9792232,36539126 -g1,17831:10108378,36539126 -g1,17831:10424524,36539126 -g1,17831:12005253,36539126 -g1,17831:12321399,36539126 -g1,17831:12637545,36539126 -g1,17831:13902128,36539126 -h1,17831:14850565,36539126:0,0,0 -k1,17831:32583029,36539126:17732464 -g1,17831:32583029,36539126 -) -(1,17831:6630773,37205304:25952256,388497,9436 -h1,17831:6630773,37205304:0,0,0 -g1,17831:7579210,37205304 -g1,17831:8211502,37205304 -g1,17831:8527648,37205304 -g1,17831:10108377,37205304 -g1,17831:10424523,37205304 -g1,17831:12005252,37205304 -g1,17831:12321398,37205304 -g1,17831:12637544,37205304 -g1,17831:12953690,37205304 -g1,17831:13902127,37205304 -g1,17831:14534419,37205304 -h1,17831:14850565,37205304:0,0,0 -k1,17831:32583029,37205304:17732464 -g1,17831:32583029,37205304 -) -] -) -g1,17832:32583029,37214740 -g1,17832:6630773,37214740 -g1,17832:6630773,37214740 -g1,17832:32583029,37214740 -g1,17832:32583029,37214740 -) -h1,17832:6630773,37411348:0,0,0 -v1,17836:6630773,39126102:0,393216,0 -(1,17849:6630773,45432274:25952256,6699388,196608 -g1,17849:6630773,45432274 -g1,17849:6630773,45432274 -g1,17849:6434165,45432274 -(1,17849:6434165,45432274:0,6699388,196608 -r1,17849:32779637,45432274:26345472,6895996,196608 -k1,17849:6434165,45432274:-26345472 -) -(1,17849:6434165,45432274:26345472,6699388,196608 -[1,17849:6630773,45432274:25952256,6502780,0 -(1,17838:6630773,39340012:25952256,410518,107478 -(1,17837:6630773,39340012:0,0,0 -g1,17837:6630773,39340012 -g1,17837:6630773,39340012 -g1,17837:6303093,39340012 -(1,17837:6303093,39340012:0,0,0 -) -g1,17837:6630773,39340012 -) -k1,17838:6630773,39340012:0 -g1,17838:11056813,39340012 -g1,17838:11689105,39340012 -k1,17838:11689105,39340012:0 -h1,17838:22754203,39340012:0,0,0 -k1,17838:32583029,39340012:9828826 -g1,17838:32583029,39340012 -) -(1,17842:6630773,40661550:25952256,404226,7863 -g1,17842:7579210,40661550 -g1,17842:9476084,40661550 -g1,17842:10108376,40661550 -g1,17842:12953687,40661550 -k1,17842:32583029,40661550:19313196 -g1,17842:32583029,40661550 -) -(1,17842:6630773,41327728:25952256,410518,101187 -k1,17842:7507251,41327728:244187 -k1,17842:8383729,41327728:244187 -k1,17842:10524790,41327728:244187 -k1,17842:14878871,41327728:244187 -k1,17842:32583029,41327728:0 -k1,17842:32583029,41327728:0 -) -(1,17842:6630773,41993906:25952256,404226,82312 -g1,17842:7579210,41993906 -g1,17842:11056813,41993906 -k1,17842:32583030,41993906:20577780 -g1,17842:32583030,41993906 -) -(1,17842:6630773,42660084:25952256,404226,76021 -g1,17842:7579210,42660084 -g1,17842:8843793,42660084 -g1,17842:10424522,42660084 -k1,17842:32583029,42660084:20893924 -g1,17842:32583029,42660084 -) -(1,17842:6630773,43326262:25952256,404226,82312 -g1,17842:7579210,43326262 -g1,17842:8843793,43326262 -g1,17842:10424522,43326262 -g1,17842:12321396,43326262 -g1,17842:14218270,43326262 -k1,17842:32583029,43326262:17100176 -g1,17842:32583029,43326262 -) -(1,17842:6630773,43992440:25952256,379060,0 -k1,17842:32583028,43992440:25319964 -g1,17842:32583028,43992440 -) -(1,17842:6630773,44658618:25952256,410518,101187 -g1,17842:7579210,44658618 -g1,17842:8211502,44658618 -g1,17842:9476085,44658618 -g1,17842:12321396,44658618 -g1,17842:13269833,44658618 -g1,17842:16115144,44658618 -g1,17842:17379727,44658618 -g1,17842:18960456,44658618 -g1,17842:21173476,44658618 -g1,17842:25599516,44658618 -g1,17842:26864099,44658618 -g1,17842:28444828,44658618 -k1,17842:32583029,44658618:2557473 -g1,17842:32583029,44658618 -) -(1,17842:6630773,45324796:25952256,410518,107478 -k1,17842:7536068,45324796:273004 -k1,17842:8125219,45324796:273005 -k1,17842:10611243,45324796:273004 -k1,17842:11832684,45324796:273004 -k1,17842:14002562,45324796:273004 -k1,17842:15856295,45324796:273005 -k1,17842:16761590,45324796:273004 -k1,17842:17983031,45324796:273004 -k1,17842:22998221,45324796:273005 -k1,17842:23587371,45324796:273004 -k1,17842:25757249,45324796:273004 -k1,17842:26662544,45324796:273004 -k1,17842:28516277,45324796:273005 -k1,17842:30053864,45324796:273004 -k1,17842:32583029,45324796:0 -k1,17842:32583029,45324796:0 -) -] -) -g1,17849:32583029,45432274 -g1,17849:6630773,45432274 -g1,17849:6630773,45432274 -g1,17849:32583029,45432274 -g1,17849:32583029,45432274 -) -] -(1,17849:32583029,45706769:0,0,0 -g1,17849:32583029,45706769 -) -) -] -(1,17849:6630773,47279633:25952256,0,0 -h1,17849:6630773,47279633:25952256,0,0 -) -] -(1,17849:4262630,4025873:0,0,0 -[1,17849:-473656,4025873:0,0,0 -(1,17849:-473656,-710413:0,0,0 -(1,17849:-473656,-710413:0,0,0 -g1,17849:-473656,-710413 -) -g1,17849:-473656,-710413 -) -] -) -] -!23932 -}349 -Input:2883:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2884:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2885:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2886:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2887:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2888:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2889:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2890:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!748 -{350 -[1,17908:4262630,47279633:28320399,43253760,0 -(1,17908:4262630,4025873:0,0,0 -[1,17908:-473656,4025873:0,0,0 -(1,17908:-473656,-710413:0,0,0 -(1,17908:-473656,-644877:0,0,0 -k1,17908:-473656,-644877:-65536 -) -(1,17908:-473656,4736287:0,0,0 -k1,17908:-473656,4736287:5209943 -) -g1,17908:-473656,-710413 -) -] -) -[1,17908:6630773,47279633:25952256,43253760,0 -[1,17908:6630773,4812305:25952256,786432,0 -(1,17908:6630773,4812305:25952256,513147,126483 -(1,17908:6630773,4812305:25952256,513147,126483 -g1,17908:3078558,4812305 -[1,17908:3078558,4812305:0,0,0 -(1,17908:3078558,2439708:0,1703936,0 -k1,17908:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,17908:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,17908:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 -) -] -) -) -) -] -[1,17908:3078558,4812305:0,0,0 -(1,17908:3078558,2439708:0,1703936,0 -g1,17908:29030814,2439708 -g1,17908:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,17908:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 -) -] -) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,17908:37855564,2439708:1179648,16384,0 -) -) -k1,17908:3078556,2439708:-34777008 -) -] -[1,17908:3078558,4812305:0,0,0 -(1,17908:3078558,49800853:0,16384,2228224 -k1,17908:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,17908:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,17908:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 -) -] -) -) -) -] -[1,17908:3078558,4812305:0,0,0 -(1,17908:3078558,49800853:0,16384,2228224 -g1,17908:29030814,49800853 -g1,17908:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,17908:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 -) -] -) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,17908:37855564,49800853:1179648,16384,0 -) -) -k1,17908:3078556,49800853:-34777008 -) -] -g1,17908:6630773,4812305 -g1,17908:6630773,4812305 -g1,17908:9744388,4812305 -g1,17908:11175694,4812305 -k1,17908:31387652,4812305:20211958 -) -) -] -[1,17908:6630773,45706769:25952256,40108032,0 -(1,17908:6630773,45706769:25952256,40108032,0 -(1,17908:6630773,45706769:0,0,0 -g1,17908:6630773,45706769 -) -[1,17908:6630773,45706769:25952256,40108032,0 -v1,17849:6630773,6254097:0,393216,0 -(1,17849:6630773,9135863:25952256,3274982,196608 -g1,17849:6630773,9135863 -g1,17849:6630773,9135863 -g1,17849:6434165,9135863 -(1,17849:6434165,9135863:0,3274982,196608 -r1,17908:32779637,9135863:26345472,3471590,196608 -k1,17849:6434165,9135863:-26345472 -) -(1,17849:6434165,9135863:26345472,3274982,196608 -[1,17849:6630773,9135863:25952256,3078374,0 -(1,17848:6630773,6461715:25952256,404226,6290 -(1,17842:6630773,6461715:0,0,0 -g1,17842:6630773,6461715 -g1,17842:6630773,6461715 -g1,17842:6303093,6461715 -(1,17842:6303093,6461715:0,0,0 -) -g1,17842:6630773,6461715 -) -g1,17848:7579210,6461715 -g1,17848:8211502,6461715 -g1,17848:8843794,6461715 -g1,17848:11372960,6461715 -g1,17848:12005252,6461715 -g1,17848:12637544,6461715 -h1,17848:12953690,6461715:0,0,0 -k1,17848:32583030,6461715:19629340 -g1,17848:32583030,6461715 -) -(1,17848:6630773,7127893:25952256,404226,9436 -h1,17848:6630773,7127893:0,0,0 -g1,17848:7579210,7127893 -g1,17848:7895356,7127893 -g1,17848:8211502,7127893 -g1,17848:8527648,7127893 -g1,17848:10108377,7127893 -g1,17848:10424523,7127893 -g1,17848:12005252,7127893 -g1,17848:12321398,7127893 -g1,17848:13902127,7127893 -h1,17848:15166710,7127893:0,0,0 -k1,17848:32583030,7127893:17416320 -g1,17848:32583030,7127893 -) -(1,17848:6630773,7794071:25952256,404226,6290 -h1,17848:6630773,7794071:0,0,0 -g1,17848:7579210,7794071 -g1,17848:7895356,7794071 -g1,17848:8211502,7794071 -g1,17848:10108377,7794071 -g1,17848:12005252,7794071 -g1,17848:13902127,7794071 -k1,17848:13902127,7794071:0 -h1,17848:15482856,7794071:0,0,0 -k1,17848:32583028,7794071:17100172 -g1,17848:32583028,7794071 -) -(1,17848:6630773,8460249:25952256,388497,9436 -h1,17848:6630773,8460249:0,0,0 -g1,17848:7579210,8460249 -g1,17848:8211502,8460249 -g1,17848:8527648,8460249 -g1,17848:8843794,8460249 -g1,17848:9476086,8460249 -g1,17848:9792232,8460249 -g1,17848:10108378,8460249 -g1,17848:10424524,8460249 -g1,17848:12005253,8460249 -g1,17848:12321399,8460249 -g1,17848:12637545,8460249 -g1,17848:13902128,8460249 -h1,17848:14850565,8460249:0,0,0 -k1,17848:32583029,8460249:17732464 -g1,17848:32583029,8460249 -) -(1,17848:6630773,9126427:25952256,388497,9436 -h1,17848:6630773,9126427:0,0,0 -g1,17848:7579210,9126427 -g1,17848:8211502,9126427 -g1,17848:8527648,9126427 -g1,17848:10108377,9126427 -g1,17848:10424523,9126427 -g1,17848:12005252,9126427 -g1,17848:12321398,9126427 -g1,17848:12637544,9126427 -g1,17848:12953690,9126427 -g1,17848:13902127,9126427 -g1,17848:14534419,9126427 -h1,17848:14850565,9126427:0,0,0 -k1,17848:32583029,9126427:17732464 -g1,17848:32583029,9126427 -) -] -) -g1,17849:32583029,9135863 -g1,17849:6630773,9135863 -g1,17849:6630773,9135863 -g1,17849:32583029,9135863 -g1,17849:32583029,9135863 -) -h1,17849:6630773,9332471:0,0,0 -(1,17853:6630773,10698247:25952256,513147,134348 -h1,17852:6630773,10698247:983040,0,0 -k1,17852:10382840,10698247:234094 -k1,17852:12640031,10698247:234095 -k1,17852:13405622,10698247:234094 -k1,17852:15525843,10698247:234095 -k1,17852:17611984,10698247:234094 -k1,17852:22151793,10698247:234094 -k1,17852:23577333,10698247:234095 -k1,17852:26573770,10698247:234094 -k1,17852:28693336,10698247:234095 -k1,17852:31591469,10698247:234094 -k1,17852:32583029,10698247:0 -) -(1,17853:6630773,11539735:25952256,513147,134348 -k1,17852:8044330,11539735:347286 -k1,17852:9842583,11539735:347286 -k1,17852:13725537,11539735:347287 -k1,17852:15466774,11539735:347286 -k1,17852:17265682,11539735:347286 -k1,17852:19488608,11539735:347286 -k1,17852:22364273,11539735:347286 -k1,17852:23370851,11539735:347286 -k1,17852:24737223,11539735:347287 -k1,17852:28555296,11539735:347286 -k1,17852:30636665,11539735:347286 -k1,17852:31599989,11539735:347286 -k1,17853:32583029,11539735:0 -) -(1,17853:6630773,12381223:25952256,505283,126483 -(1,17852:6630773,12381223:0,452978,122846 -r1,17908:14726699,12381223:8095926,575824,122846 -k1,17852:6630773,12381223:-8095926 -) -(1,17852:6630773,12381223:8095926,452978,122846 -k1,17852:6630773,12381223:3277 -h1,17852:14723422,12381223:0,411205,112570 -) -k1,17852:14980185,12381223:253486 -k1,17852:15849709,12381223:253486 -k1,17852:17122280,12381223:253486 -k1,17852:18739570,12381223:253486 -k1,17852:19861409,12381223:253487 -k1,17852:22413243,12381223:253486 -k1,17852:23318157,12381223:253486 -k1,17852:24664128,12381223:253486 -(1,17852:24664128,12381223:0,452978,115847 -r1,17908:29242936,12381223:4578808,568825,115847 -k1,17852:24664128,12381223:-4578808 -) -(1,17852:24664128,12381223:4578808,452978,115847 -k1,17852:24664128,12381223:3277 -h1,17852:29239659,12381223:0,411205,112570 -) -k1,17852:29670092,12381223:253486 -k1,17852:31809049,12381223:253486 -k1,17853:32583029,12381223:0 -) -(1,17853:6630773,13222711:25952256,513147,134348 -k1,17852:8784218,13222711:264697 -k1,17852:13390676,13222711:264698 -k1,17852:14314665,13222711:264697 -k1,17852:16487115,13222711:264697 -k1,17852:19520054,13222711:264698 -k1,17852:20436179,13222711:264697 -(1,17852:20436179,13222711:0,452978,115847 -r1,17908:24663275,13222711:4227096,568825,115847 -k1,17852:20436179,13222711:-4227096 -) -(1,17852:20436179,13222711:4227096,452978,115847 -k1,17852:20436179,13222711:3277 -h1,17852:24659998,13222711:0,411205,112570 -) -k1,17852:25101642,13222711:264697 -k1,17852:26747183,13222711:264697 -k1,17852:29707377,13222711:264698 -k1,17852:31073079,13222711:264697 -k1,17852:32583029,13222711:0 -) -(1,17853:6630773,14064199:25952256,513147,134348 -k1,17852:9571392,14064199:146164 -k1,17852:10403718,14064199:146164 -(1,17852:10403718,14064199:0,452978,115847 -r1,17908:14630814,14064199:4227096,568825,115847 -k1,17852:10403718,14064199:-4227096 -) -(1,17852:10403718,14064199:4227096,452978,115847 -k1,17852:10403718,14064199:3277 -h1,17852:14627537,14064199:0,411205,112570 -) -k1,17852:14776977,14064199:146163 -k1,17852:16114586,14064199:146164 -(1,17852:16114586,14064199:0,452978,115847 -r1,17908:20693394,14064199:4578808,568825,115847 -k1,17852:16114586,14064199:-4578808 -) -(1,17852:16114586,14064199:4578808,452978,115847 -k1,17852:16114586,14064199:3277 -h1,17852:20690117,14064199:0,411205,112570 -) -k1,17852:20839558,14064199:146164 -k1,17852:24698337,14064199:146164 -k1,17852:27779202,14064199:146163 -k1,17852:30310877,14064199:146164 -k1,17852:31116333,14064199:146164 -k1,17852:32583029,14064199:0 -) -(1,17853:6630773,14905687:25952256,513147,126483 -g1,17852:8143344,14905687 -g1,17852:9699824,14905687 -g1,17852:10365014,14905687 -g1,17852:11944431,14905687 -g1,17852:13135220,14905687 -g1,17852:14746750,14905687 -g1,17852:16339930,14905687 -(1,17852:16339930,14905687:0,452978,115847 -r1,17908:20567026,14905687:4227096,568825,115847 -k1,17852:16339930,14905687:-4227096 -) -(1,17852:16339930,14905687:4227096,452978,115847 -k1,17852:16339930,14905687:3277 -h1,17852:20563749,14905687:0,411205,112570 -) -k1,17853:32583029,14905687:11842333 -g1,17853:32583029,14905687 -) -v1,17855:6630773,16096153:0,393216,0 -(1,17870:6630773,27700292:25952256,11997355,196608 -g1,17870:6630773,27700292 -g1,17870:6630773,27700292 -g1,17870:6434165,27700292 -(1,17870:6434165,27700292:0,11997355,196608 -r1,17908:32779637,27700292:26345472,12193963,196608 -k1,17870:6434165,27700292:-26345472 -) -(1,17870:6434165,27700292:26345472,11997355,196608 -[1,17870:6630773,27700292:25952256,11800747,0 -(1,17857:6630773,16310063:25952256,410518,107478 -(1,17856:6630773,16310063:0,0,0 -g1,17856:6630773,16310063 -g1,17856:6630773,16310063 -g1,17856:6303093,16310063 -(1,17856:6303093,16310063:0,0,0 -) -g1,17856:6630773,16310063 -) -k1,17857:6630773,16310063:0 -g1,17857:11689105,16310063 -g1,17857:12321397,16310063 -k1,17857:12321397,16310063:0 -h1,17857:21173476,16310063:0,0,0 -k1,17857:32583029,16310063:11409553 -g1,17857:32583029,16310063 -) -(1,17862:6630773,17631601:25952256,379060,0 -k1,17861:32583028,17631601:25319964 -g1,17862:32583028,17631601 -) -(1,17862:6630773,18297779:25952256,410518,101187 -k1,17861:7507251,18297779:244187 -k1,17861:8383729,18297779:244187 -k1,17861:10524790,18297779:244187 -k1,17861:14878871,18297779:244187 -k1,17861:32583029,18297779:0 -k1,17862:32583029,18297779:0 -) -(1,17862:6630773,18963957:25952256,404226,76021 -g1,17861:7579210,18963957 -k1,17861:32583030,18963957:23423092 -g1,17862:32583030,18963957 -) -(1,17862:6630773,19630135:25952256,404226,82312 -g1,17861:7579210,19630135 -g1,17861:7895356,19630135 -g1,17861:8211502,19630135 -g1,17861:9792231,19630135 -g1,17861:10424523,19630135 -k1,17861:32583029,19630135:18048612 -g1,17862:32583029,19630135 -) -(1,17862:6630773,20296313:25952256,404226,82312 -g1,17861:7579210,20296313 -g1,17861:7895356,20296313 -g1,17861:8211502,20296313 -g1,17861:9792231,20296313 -g1,17861:10424523,20296313 -k1,17861:32583029,20296313:18048612 -g1,17862:32583029,20296313 -) -(1,17862:6630773,20962491:25952256,404226,82312 -g1,17861:7579210,20962491 -g1,17861:7895356,20962491 -g1,17861:8211502,20962491 -g1,17861:9792231,20962491 -g1,17861:10424523,20962491 -k1,17861:32583029,20962491:18048612 -g1,17862:32583029,20962491 -) -(1,17862:6630773,21628669:25952256,404226,76021 -g1,17861:7579210,21628669 -g1,17861:7895356,21628669 -g1,17861:8211502,21628669 -g1,17861:9792231,21628669 -g1,17861:10424523,21628669 -k1,17861:32583028,21628669:17416320 -g1,17862:32583028,21628669 -) -(1,17862:6630773,22294847:25952256,404226,76021 -g1,17861:7579210,22294847 -k1,17862:32583028,22294847:24687672 -g1,17862:32583028,22294847 -) -(1,17863:6630773,22961025:25952256,410518,107478 -g1,17863:7579210,22961025 -g1,17863:10424521,22961025 -g1,17863:11056813,22961025 -g1,17863:13585979,22961025 -k1,17863:32583029,22961025:16467885 -g1,17863:32583029,22961025 -) -(1,17863:6630773,23627203:25952256,410518,101187 -g1,17863:7579210,23627203 -g1,17863:8843793,23627203 -g1,17863:10108376,23627203 -g1,17863:10424522,23627203 -g1,17863:13269833,23627203 -g1,17863:13585979,23627203 -g1,17863:13902125,23627203 -g1,17863:14218271,23627203 -g1,17863:16431291,23627203 -g1,17863:16747437,23627203 -g1,17863:17063583,23627203 -g1,17863:17379729,23627203 -g1,17863:17695875,23627203 -g1,17863:18012021,23627203 -g1,17863:18328167,23627203 -g1,17863:18644313,23627203 -g1,17863:18960459,23627203 -g1,17863:19276605,23627203 -g1,17863:19592751,23627203 -g1,17863:19908897,23627203 -g1,17863:20225043,23627203 -g1,17863:20541189,23627203 -g1,17863:20857335,23627203 -g1,17863:21173481,23627203 -g1,17863:21489627,23627203 -g1,17863:21805773,23627203 -g1,17863:22121919,23627203 -g1,17863:22438065,23627203 -g1,17863:22754211,23627203 -g1,17863:23070357,23627203 -g1,17863:23386503,23627203 -g1,17863:23702649,23627203 -k1,17863:32583029,23627203:7615797 -g1,17863:32583029,23627203 -) -(1,17863:6630773,24293381:25952256,404226,107478 -g1,17863:7579210,24293381 -g1,17863:7895356,24293381 -g1,17863:8211502,24293381 -g1,17863:8843794,24293381 -g1,17863:9159940,24293381 -g1,17863:10108377,24293381 -g1,17863:10740669,24293381 -g1,17863:13269835,24293381 -g1,17863:13902127,24293381 -g1,17863:16431293,24293381 -k1,17863:32583029,24293381:7615803 -g1,17863:32583029,24293381 -) -(1,17869:6630773,24959559:25952256,404226,6290 -(1,17863:6630773,24959559:0,0,0 -g1,17863:6630773,24959559 -g1,17863:6630773,24959559 -g1,17863:6303093,24959559 -(1,17863:6303093,24959559:0,0,0 -) -g1,17863:6630773,24959559 -) -g1,17869:7579210,24959559 -g1,17869:8211502,24959559 -g1,17869:8843794,24959559 -g1,17869:11372960,24959559 -g1,17869:12005252,24959559 -g1,17869:12637544,24959559 -h1,17869:12953690,24959559:0,0,0 -k1,17869:32583030,24959559:19629340 -g1,17869:32583030,24959559 -) -(1,17869:6630773,25625737:25952256,404226,9436 -h1,17869:6630773,25625737:0,0,0 -g1,17869:7579210,25625737 -g1,17869:7895356,25625737 -g1,17869:8211502,25625737 -g1,17869:8527648,25625737 -g1,17869:10108377,25625737 -g1,17869:10424523,25625737 -g1,17869:12005252,25625737 -g1,17869:12321398,25625737 -g1,17869:13902127,25625737 -h1,17869:15166710,25625737:0,0,0 -k1,17869:32583030,25625737:17416320 -g1,17869:32583030,25625737 -) -(1,17869:6630773,26291915:25952256,404226,6290 -h1,17869:6630773,26291915:0,0,0 -g1,17869:7579210,26291915 -g1,17869:7895356,26291915 -g1,17869:8211502,26291915 -g1,17869:10108377,26291915 -g1,17869:12005252,26291915 -g1,17869:13902127,26291915 -k1,17869:13902127,26291915:0 -h1,17869:15482856,26291915:0,0,0 -k1,17869:32583028,26291915:17100172 -g1,17869:32583028,26291915 -) -(1,17869:6630773,26958093:25952256,404226,9436 -h1,17869:6630773,26958093:0,0,0 -g1,17869:7579210,26958093 -g1,17869:8211502,26958093 -g1,17869:8527648,26958093 -g1,17869:8843794,26958093 -g1,17869:9476086,26958093 -g1,17869:9792232,26958093 -g1,17869:10108378,26958093 -g1,17869:10424524,26958093 -g1,17869:12005253,26958093 -g1,17869:12321399,26958093 -g1,17869:12637545,26958093 -g1,17869:13902128,26958093 -h1,17869:15482856,26958093:0,0,0 -k1,17869:32583028,26958093:17100172 -g1,17869:32583028,26958093 -) -(1,17869:6630773,27624271:25952256,404226,76021 -h1,17869:6630773,27624271:0,0,0 -g1,17869:7579210,27624271 -g1,17869:8211502,27624271 -g1,17869:8527648,27624271 -g1,17869:10108377,27624271 -g1,17869:10424523,27624271 -g1,17869:12005252,27624271 -g1,17869:12321398,27624271 -g1,17869:12637544,27624271 -g1,17869:12953690,27624271 -g1,17869:13902127,27624271 -h1,17869:15482855,27624271:0,0,0 -k1,17869:32583029,27624271:17100174 -g1,17869:32583029,27624271 -) -] -) -g1,17870:32583029,27700292 -g1,17870:6630773,27700292 -g1,17870:6630773,27700292 -g1,17870:32583029,27700292 -g1,17870:32583029,27700292 -) -h1,17870:6630773,27896900:0,0,0 -v1,17874:6630773,29611654:0,393216,0 -(1,17889:6630773,41215793:25952256,11997355,196608 -g1,17889:6630773,41215793 -g1,17889:6630773,41215793 -g1,17889:6434165,41215793 -(1,17889:6434165,41215793:0,11997355,196608 -r1,17908:32779637,41215793:26345472,12193963,196608 -k1,17889:6434165,41215793:-26345472 -) -(1,17889:6434165,41215793:26345472,11997355,196608 -[1,17889:6630773,41215793:25952256,11800747,0 -(1,17876:6630773,29825564:25952256,410518,107478 -(1,17875:6630773,29825564:0,0,0 -g1,17875:6630773,29825564 -g1,17875:6630773,29825564 -g1,17875:6303093,29825564 -(1,17875:6303093,29825564:0,0,0 -) -g1,17875:6630773,29825564 -) -k1,17876:6630773,29825564:0 -g1,17876:11689105,29825564 -g1,17876:12321397,29825564 -k1,17876:12321397,29825564:0 -h1,17876:22438058,29825564:0,0,0 -k1,17876:32583029,29825564:10144971 -g1,17876:32583029,29825564 -) -(1,17881:6630773,31147102:25952256,379060,0 -k1,17880:32583028,31147102:25319964 -g1,17881:32583028,31147102 -) -(1,17881:6630773,31813280:25952256,410518,101187 -k1,17880:7507251,31813280:244187 -k1,17880:8383729,31813280:244187 -k1,17880:10524790,31813280:244187 -k1,17880:14878871,31813280:244187 -k1,17880:32583029,31813280:0 -k1,17881:32583029,31813280:0 -) -(1,17881:6630773,32479458:25952256,404226,76021 -g1,17880:7579210,32479458 -k1,17880:32583030,32479458:23423092 -g1,17881:32583030,32479458 -) -(1,17881:6630773,33145636:25952256,404226,82312 -g1,17880:7579210,33145636 -g1,17880:7895356,33145636 -g1,17880:8211502,33145636 -g1,17880:9792231,33145636 -g1,17880:10424523,33145636 -k1,17880:32583029,33145636:18048612 -g1,17881:32583029,33145636 -) -(1,17881:6630773,33811814:25952256,404226,82312 -g1,17880:7579210,33811814 -g1,17880:7895356,33811814 -g1,17880:8211502,33811814 -g1,17880:9792231,33811814 -g1,17880:10424523,33811814 -k1,17880:32583029,33811814:18048612 -g1,17881:32583029,33811814 -) -(1,17881:6630773,34477992:25952256,404226,82312 -g1,17880:7579210,34477992 -g1,17880:7895356,34477992 -g1,17880:8211502,34477992 -g1,17880:9792231,34477992 -g1,17880:10424523,34477992 -k1,17880:32583029,34477992:18048612 -g1,17881:32583029,34477992 -) -(1,17881:6630773,35144170:25952256,404226,76021 -g1,17880:7579210,35144170 -g1,17880:7895356,35144170 -g1,17880:8211502,35144170 -g1,17880:9792231,35144170 -g1,17880:10424523,35144170 -k1,17880:32583028,35144170:17416320 -g1,17881:32583028,35144170 -) -(1,17881:6630773,35810348:25952256,404226,76021 -g1,17880:7579210,35810348 -k1,17881:32583028,35810348:24687672 -g1,17881:32583028,35810348 -) -(1,17882:6630773,36476526:25952256,410518,107478 -g1,17882:7579210,36476526 -g1,17882:10424521,36476526 -g1,17882:11056813,36476526 -g1,17882:13585979,36476526 -k1,17882:32583029,36476526:16467885 -g1,17882:32583029,36476526 -) -(1,17882:6630773,37142704:25952256,410518,101187 -g1,17882:7579210,37142704 -g1,17882:8843793,37142704 -g1,17882:10108376,37142704 -g1,17882:10424522,37142704 -g1,17882:13269833,37142704 -g1,17882:13585979,37142704 -g1,17882:13902125,37142704 -g1,17882:14218271,37142704 -g1,17882:16431291,37142704 -g1,17882:16747437,37142704 -g1,17882:17063583,37142704 -g1,17882:17379729,37142704 -g1,17882:17695875,37142704 -g1,17882:18012021,37142704 -g1,17882:18328167,37142704 -g1,17882:18644313,37142704 -g1,17882:18960459,37142704 -g1,17882:19276605,37142704 -g1,17882:19592751,37142704 -g1,17882:19908897,37142704 -g1,17882:20225043,37142704 -g1,17882:20541189,37142704 -g1,17882:20857335,37142704 -g1,17882:21173481,37142704 -g1,17882:21489627,37142704 -g1,17882:21805773,37142704 -g1,17882:22121919,37142704 -g1,17882:22438065,37142704 -g1,17882:22754211,37142704 -g1,17882:23070357,37142704 -g1,17882:23386503,37142704 -g1,17882:23702649,37142704 -g1,17882:24018795,37142704 -g1,17882:24334941,37142704 -g1,17882:24651087,37142704 -g1,17882:24967233,37142704 -k1,17882:32583029,37142704:6351213 -g1,17882:32583029,37142704 -) -(1,17882:6630773,37808882:25952256,404226,107478 -g1,17882:7579210,37808882 -g1,17882:7895356,37808882 -g1,17882:8211502,37808882 -g1,17882:8843794,37808882 -g1,17882:9159940,37808882 -g1,17882:10108377,37808882 -g1,17882:10740669,37808882 -g1,17882:13269835,37808882 -g1,17882:13902127,37808882 -g1,17882:16431293,37808882 -k1,17882:32583029,37808882:6351220 -g1,17882:32583029,37808882 -) -(1,17888:6630773,38475060:25952256,404226,6290 -(1,17882:6630773,38475060:0,0,0 -g1,17882:6630773,38475060 -g1,17882:6630773,38475060 -g1,17882:6303093,38475060 -(1,17882:6303093,38475060:0,0,0 -) -g1,17882:6630773,38475060 -) -g1,17888:7579210,38475060 -g1,17888:8211502,38475060 -g1,17888:8843794,38475060 -g1,17888:11372960,38475060 -g1,17888:12005252,38475060 -g1,17888:12637544,38475060 -h1,17888:12953690,38475060:0,0,0 -k1,17888:32583030,38475060:19629340 -g1,17888:32583030,38475060 -) -(1,17888:6630773,39141238:25952256,404226,9436 -h1,17888:6630773,39141238:0,0,0 -g1,17888:7579210,39141238 -g1,17888:7895356,39141238 -g1,17888:8211502,39141238 -g1,17888:8527648,39141238 -g1,17888:10108377,39141238 -g1,17888:10424523,39141238 -g1,17888:12005252,39141238 -g1,17888:12321398,39141238 -g1,17888:13902127,39141238 -h1,17888:15166710,39141238:0,0,0 -k1,17888:32583030,39141238:17416320 -g1,17888:32583030,39141238 -) -(1,17888:6630773,39807416:25952256,404226,6290 -h1,17888:6630773,39807416:0,0,0 -g1,17888:7579210,39807416 -g1,17888:7895356,39807416 -g1,17888:8211502,39807416 -g1,17888:10108377,39807416 -g1,17888:12005252,39807416 -g1,17888:13902127,39807416 -k1,17888:13902127,39807416:0 -h1,17888:15482856,39807416:0,0,0 -k1,17888:32583028,39807416:17100172 -g1,17888:32583028,39807416 -) -(1,17888:6630773,40473594:25952256,404226,9436 -h1,17888:6630773,40473594:0,0,0 -g1,17888:7579210,40473594 -g1,17888:8211502,40473594 -g1,17888:8527648,40473594 -g1,17888:8843794,40473594 -g1,17888:9476086,40473594 -g1,17888:9792232,40473594 -g1,17888:10108378,40473594 -g1,17888:10424524,40473594 -g1,17888:12005253,40473594 -g1,17888:12321399,40473594 -g1,17888:12637545,40473594 -g1,17888:13902128,40473594 -h1,17888:15482856,40473594:0,0,0 -k1,17888:32583028,40473594:17100172 -g1,17888:32583028,40473594 -) -(1,17888:6630773,41139772:25952256,404226,76021 -h1,17888:6630773,41139772:0,0,0 -g1,17888:7579210,41139772 -g1,17888:8211502,41139772 -g1,17888:8527648,41139772 -g1,17888:10108377,41139772 -g1,17888:10424523,41139772 -g1,17888:12005252,41139772 -g1,17888:12321398,41139772 -g1,17888:12637544,41139772 -g1,17888:12953690,41139772 -g1,17888:13902127,41139772 -h1,17888:15482855,41139772:0,0,0 -k1,17888:32583029,41139772:17100174 -g1,17888:32583029,41139772 -) -] -) -g1,17889:32583029,41215793 -g1,17889:6630773,41215793 -g1,17889:6630773,41215793 -g1,17889:32583029,41215793 -g1,17889:32583029,41215793 -) -h1,17889:6630773,41412401:0,0,0 -(1,17893:6630773,42778177:25952256,513147,126483 -h1,17892:6630773,42778177:983040,0,0 -k1,17892:10605148,42778177:201467 -(1,17892:10605148,42778177:0,452978,115847 -r1,17908:14832244,42778177:4227096,568825,115847 -k1,17892:10605148,42778177:-4227096 -) -(1,17892:10605148,42778177:4227096,452978,115847 -k1,17892:10605148,42778177:3277 -h1,17892:14828967,42778177:0,411205,112570 -) -k1,17892:15033710,42778177:201466 -k1,17892:16629128,42778177:201467 -k1,17892:18618416,42778177:201466 -k1,17892:19506045,42778177:201467 -k1,17892:20726596,42778177:201466 -k1,17892:23816235,42778177:201467 -k1,17892:25878268,42778177:201466 -k1,17892:26731163,42778177:201467 -k1,17892:27680395,42778177:201466 -k1,17892:29395088,42778177:201467 -k1,17892:31923737,42778177:201466 -k1,17893:32583029,42778177:0 -) -(1,17893:6630773,43619665:25952256,452978,115847 -(1,17892:6630773,43619665:0,452978,115847 -r1,17908:10857869,43619665:4227096,568825,115847 -k1,17892:6630773,43619665:-4227096 -) -(1,17892:6630773,43619665:4227096,452978,115847 -k1,17892:6630773,43619665:3277 -h1,17892:10854592,43619665:0,411205,112570 -) -k1,17893:32583029,43619665:21551490 -g1,17893:32583029,43619665 -) -v1,17895:6630773,44810131:0,393216,0 -] -(1,17908:32583029,45706769:0,0,0 -g1,17908:32583029,45706769 -) -) -] -(1,17908:6630773,47279633:25952256,0,0 -h1,17908:6630773,47279633:25952256,0,0 -) -] -(1,17908:4262630,4025873:0,0,0 -[1,17908:-473656,4025873:0,0,0 -(1,17908:-473656,-710413:0,0,0 -(1,17908:-473656,-710413:0,0,0 -g1,17908:-473656,-710413 -) -g1,17908:-473656,-710413 -) -] -) -] -!24260 -}350 -Input:2891:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2892:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2893:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2894:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2895:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2896:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2897:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!656 -{351 -[1,17963:4262630,47279633:28320399,43253760,0 -(1,17963:4262630,4025873:0,0,0 -[1,17963:-473656,4025873:0,0,0 -(1,17963:-473656,-710413:0,0,0 -(1,17963:-473656,-644877:0,0,0 -k1,17963:-473656,-644877:-65536 -) -(1,17963:-473656,4736287:0,0,0 -k1,17963:-473656,4736287:5209943 -) -g1,17963:-473656,-710413 -) -] -) -[1,17963:6630773,47279633:25952256,43253760,0 -[1,17963:6630773,4812305:25952256,786432,0 -(1,17963:6630773,4812305:25952256,505283,126483 -(1,17963:6630773,4812305:25952256,505283,126483 -g1,17963:3078558,4812305 -[1,17963:3078558,4812305:0,0,0 -(1,17963:3078558,2439708:0,1703936,0 -k1,17963:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,17963:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,17963:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 -) -] -) -) -) -] -[1,17963:3078558,4812305:0,0,0 -(1,17963:3078558,2439708:0,1703936,0 -g1,17963:29030814,2439708 -g1,17963:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,17963:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 -) -] -) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,17963:37855564,2439708:1179648,16384,0 -) -) -k1,17963:3078556,2439708:-34777008 -) -] -[1,17963:3078558,4812305:0,0,0 -(1,17963:3078558,49800853:0,16384,2228224 -k1,17963:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,17963:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,17963:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 -) -] -) -) -) -] -[1,17963:3078558,4812305:0,0,0 -(1,17963:3078558,49800853:0,16384,2228224 -g1,17963:29030814,49800853 -g1,17963:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,17963:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 -) -] -) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,17963:37855564,49800853:1179648,16384,0 -) -) -k1,17963:3078556,49800853:-34777008 -) -] -g1,17963:6630773,4812305 -k1,17963:25146660,4812305:17320510 -g1,17963:26880087,4812305 -g1,17963:29193507,4812305 -g1,17963:30603186,4812305 -) -) -] -[1,17963:6630773,45706769:25952256,40108032,0 -(1,17963:6630773,45706769:25952256,40108032,0 -(1,17963:6630773,45706769:0,0,0 -g1,17963:6630773,45706769 -) -[1,17963:6630773,45706769:25952256,40108032,0 -v1,17908:6630773,6254097:0,393216,0 -(1,17908:6630773,15793117:25952256,9932236,196608 -g1,17908:6630773,15793117 -g1,17908:6630773,15793117 -g1,17908:6434165,15793117 -(1,17908:6434165,15793117:0,9932236,196608 -r1,17963:32779637,15793117:26345472,10128844,196608 -k1,17908:6434165,15793117:-26345472 -) -(1,17908:6434165,15793117:26345472,9932236,196608 -[1,17908:6630773,15793117:25952256,9735628,0 -(1,17897:6630773,6468007:25952256,410518,107478 -(1,17896:6630773,6468007:0,0,0 -g1,17896:6630773,6468007 -g1,17896:6630773,6468007 -g1,17896:6303093,6468007 -(1,17896:6303093,6468007:0,0,0 -) -g1,17896:6630773,6468007 -) -k1,17897:6630773,6468007:0 -g1,17897:11689105,6468007 -g1,17897:12321397,6468007 -g1,17897:22754204,6468007 -g1,17897:24651078,6468007 -g1,17897:25283370,6468007 -g1,17897:25915662,6468007 -h1,17897:26547954,6468007:0,0,0 -k1,17897:32583029,6468007:6035075 -g1,17897:32583029,6468007 -) -(1,17901:6630773,7789545:25952256,404226,7863 -g1,17901:7579210,7789545 -g1,17901:9476084,7789545 -g1,17901:10108376,7789545 -g1,17901:12953687,7789545 -k1,17901:32583029,7789545:19313196 -g1,17901:32583029,7789545 -) -(1,17901:6630773,8455723:25952256,410518,101187 -k1,17901:7507251,8455723:244187 -k1,17901:8383729,8455723:244187 -k1,17901:10524790,8455723:244187 -k1,17901:14878871,8455723:244187 -k1,17901:32583029,8455723:0 -k1,17901:32583029,8455723:0 -) -(1,17901:6630773,9121901:25952256,404226,6290 -g1,17901:7579210,9121901 -g1,17901:11056813,9121901 -g1,17901:11689105,9121901 -k1,17901:32583029,9121901:20577778 -g1,17901:32583029,9121901 -) -(1,17901:6630773,9788079:25952256,404226,76021 -g1,17901:7579210,9788079 -g1,17901:8843793,9788079 -g1,17901:10424522,9788079 -k1,17901:32583029,9788079:20893924 -g1,17901:32583029,9788079 -) -(1,17901:6630773,10454257:25952256,404226,82312 -g1,17901:7579210,10454257 -g1,17901:8843793,10454257 -g1,17901:10424522,10454257 -g1,17901:12321396,10454257 -g1,17901:14218270,10454257 -k1,17901:32583029,10454257:17100176 -g1,17901:32583029,10454257 -) -(1,17901:6630773,11120435:25952256,379060,0 -k1,17901:32583028,11120435:25319964 -g1,17901:32583028,11120435 -) -(1,17901:6630773,11786613:25952256,410518,101187 -g1,17901:7579210,11786613 -g1,17901:8211502,11786613 -g1,17901:9476085,11786613 -g1,17901:12321396,11786613 -g1,17901:13269833,11786613 -g1,17901:16115144,11786613 -g1,17901:17379727,11786613 -g1,17901:18960456,11786613 -g1,17901:21173476,11786613 -g1,17901:25599516,11786613 -g1,17901:26864099,11786613 -g1,17901:28444828,11786613 -k1,17901:32583029,11786613:2557473 -g1,17901:32583029,11786613 -) -(1,17901:6630773,12452791:25952256,410518,107478 -k1,17901:7536068,12452791:273004 -k1,17901:8125219,12452791:273005 -k1,17901:10611243,12452791:273004 -k1,17901:11832684,12452791:273004 -k1,17901:14002562,12452791:273004 -k1,17901:15856295,12452791:273005 -k1,17901:16761590,12452791:273004 -k1,17901:17983031,12452791:273004 -k1,17901:22998221,12452791:273005 -k1,17901:23587371,12452791:273004 -k1,17901:25757249,12452791:273004 -k1,17901:26662544,12452791:273004 -k1,17901:28516277,12452791:273005 -k1,17901:30053864,12452791:273004 -k1,17901:32583029,12452791:0 -k1,17901:32583029,12452791:0 -) -(1,17907:6630773,13118969:25952256,404226,6290 -(1,17901:6630773,13118969:0,0,0 -g1,17901:6630773,13118969 -g1,17901:6630773,13118969 -g1,17901:6303093,13118969 -(1,17901:6303093,13118969:0,0,0 -) -g1,17901:6630773,13118969 -) -g1,17907:7579210,13118969 -g1,17907:8211502,13118969 -g1,17907:8843794,13118969 -g1,17907:11372960,13118969 -g1,17907:12005252,13118969 -g1,17907:12637544,13118969 -h1,17907:12953690,13118969:0,0,0 -k1,17907:32583030,13118969:19629340 -g1,17907:32583030,13118969 -) -(1,17907:6630773,13785147:25952256,404226,9436 -h1,17907:6630773,13785147:0,0,0 -g1,17907:7579210,13785147 -g1,17907:7895356,13785147 -g1,17907:8211502,13785147 -g1,17907:8527648,13785147 -g1,17907:10108377,13785147 -g1,17907:10424523,13785147 -g1,17907:12005252,13785147 -g1,17907:12321398,13785147 -g1,17907:13902127,13785147 -h1,17907:15166710,13785147:0,0,0 -k1,17907:32583030,13785147:17416320 -g1,17907:32583030,13785147 -) -(1,17907:6630773,14451325:25952256,404226,6290 -h1,17907:6630773,14451325:0,0,0 -g1,17907:7579210,14451325 -g1,17907:7895356,14451325 -g1,17907:8211502,14451325 -g1,17907:10108377,14451325 -g1,17907:12005252,14451325 -g1,17907:13902127,14451325 -k1,17907:13902127,14451325:0 -h1,17907:15482856,14451325:0,0,0 -k1,17907:32583028,14451325:17100172 -g1,17907:32583028,14451325 -) -(1,17907:6630773,15117503:25952256,388497,9436 -h1,17907:6630773,15117503:0,0,0 -g1,17907:7579210,15117503 -g1,17907:8211502,15117503 -g1,17907:8527648,15117503 -g1,17907:8843794,15117503 -g1,17907:9476086,15117503 -g1,17907:9792232,15117503 -g1,17907:10108378,15117503 -g1,17907:10424524,15117503 -g1,17907:12005253,15117503 -g1,17907:12321399,15117503 -g1,17907:12637545,15117503 -g1,17907:13902128,15117503 -h1,17907:14850565,15117503:0,0,0 -k1,17907:32583029,15117503:17732464 -g1,17907:32583029,15117503 -) -(1,17907:6630773,15783681:25952256,388497,9436 -h1,17907:6630773,15783681:0,0,0 -g1,17907:7579210,15783681 -g1,17907:8211502,15783681 -g1,17907:8527648,15783681 -g1,17907:10108377,15783681 -g1,17907:10424523,15783681 -g1,17907:12005252,15783681 -g1,17907:12321398,15783681 -g1,17907:12637544,15783681 -g1,17907:12953690,15783681 -g1,17907:13902127,15783681 -g1,17907:14534419,15783681 -h1,17907:14850565,15783681:0,0,0 -k1,17907:32583029,15783681:17732464 -g1,17907:32583029,15783681 -) -] -) -g1,17908:32583029,15793117 -g1,17908:6630773,15793117 -g1,17908:6630773,15793117 -g1,17908:32583029,15793117 -g1,17908:32583029,15793117 -) -h1,17908:6630773,15989725:0,0,0 -(1,17912:6630773,17355501:25952256,513147,115847 -h1,17911:6630773,17355501:983040,0,0 -k1,17911:10563011,17355501:159330 -(1,17911:10563011,17355501:0,452978,115847 -r1,17963:14086683,17355501:3523672,568825,115847 -k1,17911:10563011,17355501:-3523672 -) -(1,17911:10563011,17355501:3523672,452978,115847 -k1,17911:10563011,17355501:3277 -h1,17911:14083406,17355501:0,411205,112570 -) -k1,17911:14246013,17355501:159330 -k1,17911:16147945,17355501:159330 -k1,17911:17620617,17355501:159330 -k1,17911:20459059,17355501:159330 -k1,17911:22012339,17355501:159329 -k1,17911:23190754,17355501:159330 -k1,17911:24363271,17355501:159330 -k1,17911:27497280,17355501:159330 -k1,17911:28342772,17355501:159330 -k1,17911:29521187,17355501:159330 -k1,17911:32583029,17355501:0 -) -(1,17912:6630773,18196989:25952256,513147,126483 -k1,17911:7989296,18196989:167078 -(1,17911:7989296,18196989:0,459977,115847 -r1,17963:11512968,18196989:3523672,575824,115847 -k1,17911:7989296,18196989:-3523672 -) -(1,17911:7989296,18196989:3523672,459977,115847 -k1,17911:7989296,18196989:3277 -h1,17911:11509691,18196989:0,411205,112570 -) -k1,17911:11680047,18196989:167079 -k1,17911:13589727,18196989:167078 -k1,17911:15070148,18196989:167079 -k1,17911:16631177,18196989:167078 -k1,17911:18361945,18196989:167079 -k1,17911:20343715,18196989:167078 -k1,17911:22418547,18196989:167079 -k1,17911:24418012,18196989:167078 -k1,17911:25290258,18196989:167079 -k1,17911:28301599,18196989:167078 -k1,17911:29278048,18196989:167079 -k1,17911:32583029,18196989:0 -) -(1,17912:6630773,19038477:25952256,505283,134348 -g1,17911:7481430,19038477 -(1,17911:7481430,19038477:0,459977,115847 -r1,17963:12411950,19038477:4930520,575824,115847 -k1,17911:7481430,19038477:-4930520 -) -(1,17911:7481430,19038477:4930520,459977,115847 -k1,17911:7481430,19038477:3277 -h1,17911:12408673,19038477:0,411205,112570 -) -g1,17911:12784849,19038477 -g1,17911:16500740,19038477 -g1,17911:19139874,19038477 -g1,17911:21822918,19038477 -k1,17912:32583029,19038477:8567932 -g1,17912:32583029,19038477 -) -v1,17914:6630773,20404253:0,393216,0 -(1,17915:6630773,25929752:25952256,5918715,616038 -g1,17915:6630773,25929752 -(1,17915:6630773,25929752:25952256,5918715,616038 -(1,17915:6630773,26545790:25952256,6534753,0 -[1,17915:6630773,26545790:25952256,6534753,0 -(1,17915:6630773,26519576:25952256,6482325,0 -r1,17963:6656987,26519576:26214,6482325,0 -[1,17915:6656987,26519576:25899828,6482325,0 -(1,17915:6656987,25929752:25899828,5302677,0 -[1,17915:7246811,25929752:24720180,5302677,0 -(1,17915:7246811,21714449:24720180,1087374,134348 -k1,17914:8750868,21714449:294354 -k1,17914:10194069,21714449:294355 -k1,17914:11507508,21714449:294354 -k1,17914:14395123,21714449:294355 -(1,17914:14395123,21714449:0,452978,115847 -r1,17963:16160236,21714449:1765113,568825,115847 -k1,17914:14395123,21714449:-1765113 -) -(1,17914:14395123,21714449:1765113,452978,115847 -k1,17914:14395123,21714449:3277 -h1,17914:16156959,21714449:0,411205,112570 -) -k1,17914:16454590,21714449:294354 -k1,17914:19774742,21714449:294355 -k1,17914:20720524,21714449:294354 -k1,17914:22427179,21714449:294354 -k1,17914:23740619,21714449:294355 -k1,17914:26696390,21714449:294354 -k1,17914:28304087,21714449:294355 -k1,17914:30111667,21714449:294354 -k1,17914:31966991,21714449:0 -) -(1,17915:7246811,22555937:24720180,513147,134348 -k1,17914:9646685,22555937:190000 -k1,17914:11295515,22555937:189999 -k1,17914:12815896,22555937:190000 -k1,17914:14492908,22555937:190000 -k1,17914:15500797,22555937:190000 -k1,17914:19108499,22555937:189999 -k1,17914:21505752,22555937:190000 -k1,17914:23967230,22555937:190000 -k1,17914:26094474,22555937:190000 -k1,17914:27416935,22555937:189999 -k1,17914:28994988,22555937:190000 -k1,17914:30355461,22555937:190000 -k1,17914:31966991,22555937:0 -) -(1,17915:7246811,23397425:24720180,505283,134348 -k1,17914:8851838,23397425:274646 -k1,17914:9777912,23397425:274646 -k1,17914:12891578,23397425:274646 -k1,17914:14864263,23397425:274647 -k1,17914:16632475,23397425:274646 -k1,17914:18844365,23397425:274646 -k1,17914:20110571,23397425:274646 -k1,17914:22587882,23397425:274646 -k1,17914:23624056,23397425:274646 -k1,17914:26037798,23397425:274647 -k1,17914:26995329,23397425:274646 -k1,17914:28659338,23397425:274646 -k1,17914:30602531,23397425:274646 -k1,17915:31966991,23397425:0 -) -(1,17915:7246811,24238913:24720180,505283,134348 -k1,17914:9310439,24238913:206993 -k1,17914:10145267,24238913:206993 -k1,17914:11555501,24238913:206993 -k1,17914:13303245,24238913:206993 -k1,17914:14196400,24238913:206993 -k1,17914:16962574,24238913:206993 -k1,17914:18581867,24238913:206992 -k1,17914:20178223,24238913:206993 -k1,17914:21376776,24238913:206993 -k1,17914:22650040,24238913:206993 -k1,17914:24986298,24238913:206993 -k1,17914:29391527,24238913:206993 -k1,17914:30360048,24238913:206993 -k1,17914:31966991,24238913:0 -) -(1,17915:7246811,25080401:24720180,513147,134348 -k1,17914:8211632,25080401:281936 -k1,17914:11063890,25080401:281936 -k1,17914:14555123,25080401:281935 -k1,17914:17613164,25080401:281936 -k1,17914:19717001,25080401:281936 -k1,17914:21018022,25080401:281936 -k1,17914:24078685,25080401:281936 -k1,17914:26502337,25080401:281935 -k1,17914:27731924,25080401:281936 -k1,17914:30577628,25080401:281936 -k1,17914:31966991,25080401:0 -) -(1,17915:7246811,25921889:24720180,505283,7863 -k1,17915:31966990,25921889:22535864 -g1,17915:31966990,25921889 -) -] -) -] -r1,17963:32583029,26519576:26214,6482325,0 -) -] -) -) -g1,17915:32583029,25929752 -) -h1,17915:6630773,26545790:0,0,0 -v1,17918:6630773,27911566:0,393216,0 -(1,17963:6630773,44577405:25952256,17059055,589824 -g1,17963:6630773,44577405 -(1,17963:6630773,44577405:25952256,17059055,589824 -(1,17963:6630773,45167229:25952256,17648879,0 -[1,17963:6630773,45167229:25952256,17648879,0 -(1,17963:6630773,45167229:25952256,17622665,0 -r1,17963:6656987,45167229:26214,17622665,0 -[1,17963:6656987,45167229:25899828,17622665,0 -(1,17963:6656987,44577405:25899828,16443017,0 -[1,17963:7246811,44577405:24720180,16443017,0 -(1,17919:7246811,29296273:24720180,1161885,196608 -(1,17918:7246811,29296273:0,1161885,196608 -r1,17963:8794447,29296273:1547636,1358493,196608 -k1,17918:7246811,29296273:-1547636 -) -(1,17918:7246811,29296273:1547636,1161885,196608 -) -k1,17918:9016740,29296273:222293 -k1,17918:10435720,29296273:222293 -k1,17918:13683810,29296273:222293 -k1,17918:15473724,29296273:222293 -k1,17918:16644978,29296273:222293 -k1,17918:19447423,29296273:222293 -k1,17918:21380860,29296273:222293 -k1,17918:23015454,29296273:222293 -k1,17918:24256832,29296273:222293 -k1,17918:26361974,29296273:222293 -k1,17918:27567307,29296273:222293 -k1,17918:28475762,29296273:222293 -k1,17918:29924234,29296273:222293 -k1,17918:31966991,29296273:0 -) -(1,17919:7246811,30137761:24720180,513147,134348 -k1,17918:10988463,30137761:236787 -k1,17918:11876677,30137761:236786 -k1,17918:13910461,30137761:236787 -k1,17918:15166332,30137761:236786 -k1,17918:16958288,30137761:236787 -k1,17918:17854367,30137761:236787 -k1,17918:19110238,30137761:236786 -k1,17918:22060216,30137761:236787 -k1,17918:22979888,30137761:236787 -k1,17918:24725313,30137761:236786 -k1,17918:28326063,30137761:236787 -k1,17918:29943693,30137761:236786 -k1,17918:30711977,30137761:236787 -k1,17919:31966991,30137761:0 -) -(1,17919:7246811,30979249:24720180,513147,126483 -k1,17918:8740985,30979249:185420 -k1,17918:9998574,30979249:185420 -k1,17918:11634961,30979249:185420 -k1,17918:12768032,30979249:185420 -k1,17918:14179631,30979249:185420 -k1,17918:15678393,30979249:185420 -k1,17918:17257764,30979249:185420 -k1,17918:19194962,30979249:185421 -k1,17918:21052861,30979249:185420 -k1,17918:22434968,30979249:185420 -k1,17918:25646185,30979249:185420 -k1,17918:27399226,30979249:185420 -k1,17918:29607742,30979249:185420 -k1,17918:31205463,30979249:185420 -k1,17918:31966991,30979249:0 -) -(1,17919:7246811,31820737:24720180,513147,134348 -k1,17918:9717367,31820737:204976 -k1,17918:11297944,31820737:204976 -k1,17918:12522006,31820737:204977 -k1,17918:13799151,31820737:204976 -k1,17918:15597963,31820737:204976 -k1,17918:17301747,31820737:204976 -k1,17918:19204762,31820737:204977 -k1,17918:22196984,31820737:204976 -k1,17918:23421045,31820737:204976 -k1,17918:25806404,31820737:204976 -k1,17918:27202826,31820737:204977 -k1,17918:29136642,31820737:204976 -k1,17918:30533063,31820737:204976 -k1,17918:31966991,31820737:0 -) -(1,17919:7246811,32662225:24720180,513147,134348 -k1,17918:9420342,32662225:221869 -k1,17918:11850774,32662225:221869 -k1,17918:13484944,32662225:221869 -k1,17918:14725898,32662225:221869 -k1,17918:16830616,32662225:221869 -k1,17918:18365828,32662225:221870 -k1,17918:21629223,32662225:221869 -k1,17918:23135598,32662225:221869 -k1,17918:24376552,32662225:221869 -k1,17918:27163500,32662225:221869 -k1,17918:30681175,32662225:221869 -k1,17918:31966991,32662225:0 -) -(1,17919:7246811,33503713:24720180,513147,134348 -k1,17918:9164395,33503713:154010 -k1,17918:9969832,33503713:154009 -k1,17918:11142927,33503713:154010 -k1,17918:14514754,33503713:154009 -k1,17918:16167572,33503713:154010 -k1,17918:16980873,33503713:154009 -k1,17918:18153968,33503713:154010 -k1,17918:19464687,33503713:154009 -k1,17918:20999541,33503713:154010 -k1,17918:21685048,33503713:154010 -k1,17918:23489254,33503713:154009 -k1,17918:26195891,33503713:154010 -k1,17918:26965938,33503713:154009 -k1,17918:28139033,33503713:154010 -k1,17918:29660123,33503713:154009 -k1,17918:30473425,33503713:154010 -k1,17918:31966991,33503713:0 -) -(1,17919:7246811,34345201:24720180,513147,134348 -k1,17918:8910006,34345201:176183 -k1,17918:10158357,34345201:176182 -k1,17918:13357060,34345201:176183 -k1,17918:15280433,34345201:176183 -k1,17918:16084451,34345201:176183 -k1,17918:19065574,34345201:176182 -k1,17918:20260842,34345201:176183 -k1,17918:23462822,34345201:176183 -k1,17918:25206626,34345201:176183 -k1,17918:26331769,34345201:176182 -k1,17918:29088104,34345201:176183 -k1,17918:30975431,34345201:176183 -k1,17918:31966991,34345201:0 -) -(1,17919:7246811,35186689:24720180,513147,134348 -k1,17918:9240690,35186689:210644 -k1,17918:11294861,35186689:210643 -k1,17918:12947952,35186689:210644 -k1,17918:14902508,35186689:210643 -k1,17918:16680773,35186689:210644 -k1,17918:19471569,35186689:210644 -k1,17918:21705308,35186689:210643 -k1,17918:22528714,35186689:210644 -k1,17918:25141907,35186689:210643 -k1,17918:26665893,35186689:210644 -k1,17918:28270487,35186689:210643 -k1,17918:30232908,35186689:210644 -k1,17918:31966991,35186689:0 -) -(1,17919:7246811,36028177:24720180,505283,126483 -g1,17918:8336019,36028177 -g1,17918:11455532,36028177 -g1,17918:12711201,36028177 -k1,17919:31966990,36028177:17913612 -g1,17919:31966990,36028177 -) -(1,17921:7246811,36869665:24720180,513147,126483 -h1,17920:7246811,36869665:983040,0,0 -k1,17920:9051181,36869665:193495 -k1,17920:11278258,36869665:193495 -k1,17920:14135792,36869665:193495 -k1,17920:14988579,36869665:193495 -k1,17920:17378840,36869665:193495 -k1,17920:17928195,36869665:193495 -k1,17920:20256199,36869665:193496 -k1,17920:22527185,36869665:193495 -k1,17920:23372108,36869665:193495 -k1,17920:26374476,36869665:193495 -k1,17920:28832240,36869665:193495 -k1,17920:30759818,36869665:193495 -k1,17920:31966991,36869665:0 -) -(1,17921:7246811,37711153:24720180,513147,134348 -k1,17920:9108331,37711153:163482 -k1,17920:12087896,37711153:163483 -k1,17920:13242938,37711153:163482 -k1,17920:14022459,37711153:163483 -k1,17920:17447668,37711153:163482 -k1,17920:19350477,37711153:163483 -k1,17920:20705404,37711153:163482 -k1,17920:21887972,37711153:163483 -k1,17920:23455235,37711153:163482 -k1,17920:25763711,37711153:163483 -k1,17920:28705264,37711153:163482 -k1,17920:31966991,37711153:0 -) -(1,17921:7246811,38552641:24720180,513147,134348 -k1,17920:8111493,38552641:248644 -k1,17920:9379221,38552641:248643 -k1,17920:11126673,38552641:248644 -k1,17920:13243747,38552641:248643 -k1,17920:15236304,38552641:248644 -k1,17920:16998174,38552641:248644 -k1,17920:18194468,38552641:248643 -k1,17920:21404029,38552641:248644 -k1,17920:22724841,38552641:248643 -k1,17920:24176726,38552641:248644 -k1,17920:25792451,38552641:248644 -k1,17920:28016349,38552641:248643 -k1,17920:28916421,38552641:248644 -k1,17920:30086500,38552641:248643 -k1,17920:30947906,38552641:248644 -k1,17920:31966991,38552641:0 -) -(1,17921:7246811,39394129:24720180,513147,134348 -k1,17920:8921821,39394129:249602 -k1,17920:9830716,39394129:249603 -k1,17920:12338033,39394129:249602 -k1,17920:15570178,39394129:249602 -k1,17920:18572947,39394129:249602 -k1,17920:19310087,39394129:249552 -k1,17920:21356686,39394129:249602 -k1,17920:23460957,39394129:249602 -k1,17920:24519930,39394129:249603 -k1,17920:25788617,39394129:249602 -k1,17920:27110388,39394129:249602 -k1,17920:28953827,39394129:249603 -k1,17920:30702237,39394129:249602 -k1,17920:31611131,39394129:249602 -k1,17920:31966991,39394129:0 -) -(1,17921:7246811,40235617:24720180,513147,122846 -k1,17920:8682502,40235617:209512 -k1,17920:9875055,40235617:209513 -k1,17920:11370383,40235617:209512 -k1,17920:13648212,40235617:209513 -k1,17920:15142230,40235617:209512 -k1,17920:15967780,40235617:209512 -k1,17920:17874675,40235617:209513 -k1,17920:20094832,40235617:209512 -k1,17920:20920382,40235617:209512 -k1,17920:22628703,40235617:209513 -k1,17920:24706646,40235617:209512 -(1,17920:24706646,40235617:0,414482,122846 -r1,17963:27878606,40235617:3171960,537328,122846 -k1,17920:24706646,40235617:-3171960 -) -(1,17920:24706646,40235617:3171960,414482,122846 -k1,17920:24706646,40235617:3277 -h1,17920:27875329,40235617:0,411205,112570 -) -k1,17920:28088119,40235617:209513 -k1,17920:29796439,40235617:209512 -k1,17920:31966991,40235617:0 -) -(1,17921:7246811,41077105:24720180,513147,134348 -k1,17920:8250048,41077105:255471 -k1,17920:11666321,41077105:255472 -k1,17920:12573220,41077105:255471 -k1,17920:15622491,41077105:255471 -k1,17920:18205146,41077105:255472 -k1,17920:19119909,41077105:255471 -k1,17920:22376275,41077105:255472 -k1,17920:22987606,41077105:255471 -k1,17920:25625966,41077105:255471 -k1,17920:26540730,41077105:255472 -k1,17920:29770880,41077105:255471 -k1,17920:31966991,41077105:0 -) -(1,17921:7246811,41918593:24720180,513147,134348 -k1,17920:8158398,41918593:225425 -k1,17920:11409621,41918593:225426 -k1,17920:13202667,41918593:225425 -k1,17920:14377054,41918593:225426 -k1,17920:17182631,41918593:225425 -k1,17920:19292871,41918593:225426 -k1,17920:21026935,41918593:225425 -k1,17920:23263005,41918593:225425 -k1,17920:24479991,41918593:225426 -k1,17920:27424505,41918593:225425 -k1,17920:28411459,41918593:225426 -k1,17920:31257013,41918593:225425 -(1,17920:31257013,41918593:0,414482,115847 -r1,17963:31966991,41918593:709978,530329,115847 -k1,17920:31257013,41918593:-709978 -) -(1,17920:31257013,41918593:709978,414482,115847 -k1,17920:31257013,41918593:3277 -h1,17920:31963714,41918593:0,411205,112570 -) -k1,17920:31966991,41918593:0 -) -(1,17921:7246811,42760081:24720180,505283,134348 -k1,17920:9394842,42760081:137386 -k1,17920:10926178,42760081:137385 -k1,17920:11419424,42760081:137386 -k1,17920:14300802,42760081:137386 -k1,17920:15267218,42760081:137386 -k1,17920:19437689,42760081:137385 -k1,17920:20778316,42760081:137386 -k1,17920:21784054,42760081:137386 -k1,17920:23053902,42760081:137386 -k1,17920:26505443,42760081:137385 -k1,17920:28795031,42760081:137386 -(1,17920:28795031,42760081:0,414482,122846 -r1,17963:31966991,42760081:3171960,537328,122846 -k1,17920:28795031,42760081:-3171960 -) -(1,17920:28795031,42760081:3171960,414482,122846 -k1,17920:28795031,42760081:3277 -h1,17920:31963714,42760081:0,411205,112570 -) -k1,17920:31966991,42760081:0 -) -(1,17921:7246811,43601569:24720180,513147,126483 -k1,17920:8998151,43601569:183719 -k1,17920:9970269,43601569:183720 -k1,17920:12419568,43601569:183719 -k1,17920:13328115,43601569:183719 -k1,17920:14796340,43601569:183719 -k1,17920:15848412,43601569:183720 -k1,17920:17136413,43601569:183719 -k1,17920:18412617,43601569:183719 -k1,17920:19367039,43601569:183719 -k1,17920:20498410,43601569:183720 -k1,17920:21701214,43601569:183719 -k1,17920:24546350,43601569:183719 -k1,17920:25085930,43601569:183720 -k1,17920:26252689,43601569:183719 -k1,17920:27812009,43601569:183719 -k1,17920:28351588,43601569:183719 -k1,17920:29668426,43601569:183720 -k1,17920:31350953,43601569:183719 -k1,17920:31966991,43601569:0 -) -(1,17921:7246811,44443057:24720180,505283,134348 -k1,17921:31966991,44443057:22533244 -g1,17921:31966991,44443057 -) -] -) -] -r1,17963:32583029,45167229:26214,17622665,0 -) -] -) -) -g1,17963:32583029,44577405 -) -] -(1,17963:32583029,45706769:0,0,0 -g1,17963:32583029,45706769 -) -) -] -(1,17963:6630773,47279633:25952256,0,0 -h1,17963:6630773,47279633:25952256,0,0 -) -] -(1,17963:4262630,4025873:0,0,0 -[1,17963:-473656,4025873:0,0,0 -(1,17963:-473656,-710413:0,0,0 -(1,17963:-473656,-710413:0,0,0 -g1,17963:-473656,-710413 -) -g1,17963:-473656,-710413 -) -] -) -] -!25088 -}351 -Input:2898:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2899:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2900:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2901:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2902:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2903:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2904:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!656 -{352 -[1,17991:4262630,47279633:28320399,43253760,0 -(1,17991:4262630,4025873:0,0,0 -[1,17991:-473656,4025873:0,0,0 -(1,17991:-473656,-710413:0,0,0 -(1,17991:-473656,-644877:0,0,0 -k1,17991:-473656,-644877:-65536 -) -(1,17991:-473656,4736287:0,0,0 -k1,17991:-473656,4736287:5209943 -) -g1,17991:-473656,-710413 -) -] -) -[1,17991:6630773,47279633:25952256,43253760,0 -[1,17991:6630773,4812305:25952256,786432,0 -(1,17991:6630773,4812305:25952256,513147,126483 -(1,17991:6630773,4812305:25952256,513147,126483 -g1,17991:3078558,4812305 -[1,17991:3078558,4812305:0,0,0 -(1,17991:3078558,2439708:0,1703936,0 -k1,17991:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,17991:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,17991:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 -) -] -) -) -) -] -[1,17991:3078558,4812305:0,0,0 -(1,17991:3078558,2439708:0,1703936,0 -g1,17991:29030814,2439708 -g1,17991:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,17991:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 -) -] -) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,17991:37855564,2439708:1179648,16384,0 -) -) -k1,17991:3078556,2439708:-34777008 -) -] -[1,17991:3078558,4812305:0,0,0 -(1,17991:3078558,49800853:0,16384,2228224 -k1,17991:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,17991:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,17991:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 -) -] -) -) -) -] -[1,17991:3078558,4812305:0,0,0 -(1,17991:3078558,49800853:0,16384,2228224 -g1,17991:29030814,49800853 -g1,17991:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,17991:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 -) -] -) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,17991:37855564,49800853:1179648,16384,0 -) -) -k1,17991:3078556,49800853:-34777008 -) -] -g1,17991:6630773,4812305 -g1,17991:6630773,4812305 -g1,17991:9744388,4812305 -g1,17991:11175694,4812305 -k1,17991:31387652,4812305:20211958 -) -) -] -[1,17991:6630773,45706769:25952256,40108032,0 -(1,17991:6630773,45706769:25952256,40108032,0 -(1,17991:6630773,45706769:0,0,0 -g1,17991:6630773,45706769 -) -[1,17991:6630773,45706769:25952256,40108032,0 -v1,17963:6630773,6254097:0,393216,0 -(1,17963:6630773,34549821:25952256,28688940,616038 -g1,17963:6630773,34549821 -(1,17963:6630773,34549821:25952256,28688940,616038 -(1,17963:6630773,35165859:25952256,29304978,0 -[1,17963:6630773,35165859:25952256,29304978,0 -(1,17963:6630773,35139645:25952256,29278764,0 -r1,17991:6656987,35139645:26214,29278764,0 -[1,17963:6656987,35139645:25899828,29278764,0 -(1,17963:6656987,34549821:25899828,28099116,0 -[1,17963:7246811,34549821:24720180,28099116,0 -v1,17925:7246811,6843921:0,393216,0 -(1,17940:7246811,18381475:24720180,11930770,196608 -g1,17940:7246811,18381475 -g1,17940:7246811,18381475 -g1,17940:7050203,18381475 -(1,17940:7050203,18381475:0,11930770,196608 -r1,17991:32163599,18381475:25113396,12127378,196608 -k1,17940:7050203,18381475:-25113396 -) -(1,17940:7050203,18381475:25113396,11930770,196608 -[1,17940:7246811,18381475:24720180,11734162,0 -(1,17927:7246811,7057831:24720180,410518,107478 -(1,17926:7246811,7057831:0,0,0 -g1,17926:7246811,7057831 -g1,17926:7246811,7057831 -g1,17926:6919131,7057831 -(1,17926:6919131,7057831:0,0,0 -) -g1,17926:7246811,7057831 -) -k1,17927:7246811,7057831:0 -g1,17927:12305143,7057831 -g1,17927:12937435,7057831 -k1,17927:12937435,7057831:0 -h1,17927:23370242,7057831:0,0,0 -k1,17927:31966991,7057831:8596749 -g1,17927:31966991,7057831 -) -(1,17931:7246811,8379369:24720180,379060,0 -k1,17931:31966990,8379369:24087888 -g1,17931:31966990,8379369 -) -(1,17931:7246811,9045547:24720180,410518,101187 -k1,17931:8210452,9045547:331350 -k1,17931:9174094,9045547:331351 -k1,17931:11402318,9045547:331350 -k1,17931:15843562,9045547:331350 -k1,17931:31966991,9045547:0 -) -(1,17931:7246811,9711725:24720180,176685,0 -k1,17931:31966991,9711725:23139452 -g1,17931:31966991,9711725 -) -(1,17931:7246811,10377903:24720180,404226,76021 -g1,17931:8195248,10377903 -k1,17931:31966992,10377903:22191016 -g1,17931:31966992,10377903 -) -(1,17931:7246811,11044081:24720180,404226,82312 -g1,17931:8195248,11044081 -g1,17931:8511394,11044081 -g1,17931:8827540,11044081 -g1,17931:10408269,11044081 -g1,17931:11040561,11044081 -k1,17931:31966991,11044081:15868099 -g1,17931:31966991,11044081 -) -(1,17931:7246811,11710259:24720180,404226,82312 -g1,17931:8195248,11710259 -g1,17931:8511394,11710259 -g1,17931:8827540,11710259 -g1,17931:10408269,11710259 -g1,17931:11040561,11710259 -k1,17931:31966991,11710259:16816536 -g1,17931:31966991,11710259 -) -(1,17931:7246811,12376437:24720180,404226,82312 -g1,17931:8195248,12376437 -g1,17931:8511394,12376437 -g1,17931:8827540,12376437 -g1,17931:10408269,12376437 -g1,17931:11040561,12376437 -k1,17931:31966991,12376437:16816536 -g1,17931:31966991,12376437 -) -(1,17931:7246811,13042615:24720180,404226,76021 -g1,17931:8195248,13042615 -g1,17931:8511394,13042615 -g1,17931:8827540,13042615 -g1,17931:10408269,13042615 -g1,17931:11040561,13042615 -k1,17931:31966991,13042615:16184245 -g1,17931:31966991,13042615 -) -(1,17931:7246811,13708793:24720180,404226,76021 -g1,17931:8195248,13708793 -k1,17931:31966990,13708793:23455596 -g1,17931:31966990,13708793 -) -(1,17939:7246811,14374971:24720180,404226,6290 -(1,17931:7246811,14374971:0,0,0 -g1,17931:7246811,14374971 -g1,17931:7246811,14374971 -g1,17931:6919131,14374971 -(1,17931:6919131,14374971:0,0,0 -) -g1,17931:7246811,14374971 -) -g1,17939:8195248,14374971 -g1,17939:8827540,14374971 -g1,17939:9459832,14374971 -g1,17939:11988998,14374971 -g1,17939:12621290,14374971 -g1,17939:13253582,14374971 -h1,17939:13569728,14374971:0,0,0 -k1,17939:31966992,14374971:18397264 -g1,17939:31966992,14374971 -) -(1,17939:7246811,15041149:24720180,404226,9436 -h1,17939:7246811,15041149:0,0,0 -g1,17939:8195248,15041149 -g1,17939:8511394,15041149 -g1,17939:8827540,15041149 -g1,17939:10408269,15041149 -g1,17939:10724415,15041149 -g1,17939:11040561,15041149 -g1,17939:12621290,15041149 -g1,17939:12937436,15041149 -g1,17939:14518165,15041149 -h1,17939:15782748,15041149:0,0,0 -k1,17939:31966991,15041149:16184243 -g1,17939:31966991,15041149 -) -(1,17939:7246811,15707327:24720180,404226,6290 -h1,17939:7246811,15707327:0,0,0 -g1,17939:8195248,15707327 -g1,17939:8511394,15707327 -g1,17939:8827540,15707327 -g1,17939:10724415,15707327 -g1,17939:12621290,15707327 -g1,17939:14518165,15707327 -k1,17939:14518165,15707327:0 -h1,17939:16098894,15707327:0,0,0 -k1,17939:31966991,15707327:15868097 -g1,17939:31966991,15707327 -) -(1,17939:7246811,16373505:24720180,388497,9436 -h1,17939:7246811,16373505:0,0,0 -g1,17939:8195248,16373505 -g1,17939:8827540,16373505 -g1,17939:10092123,16373505 -g1,17939:10408269,16373505 -g1,17939:10724415,16373505 -g1,17939:11040561,16373505 -g1,17939:12621290,16373505 -g1,17939:12937436,16373505 -g1,17939:13253582,16373505 -g1,17939:14518165,16373505 -h1,17939:15466602,16373505:0,0,0 -k1,17939:31966991,16373505:16500389 -g1,17939:31966991,16373505 -) -(1,17939:7246811,17039683:24720180,388497,9436 -h1,17939:7246811,17039683:0,0,0 -g1,17939:8195248,17039683 -g1,17939:8827540,17039683 -g1,17939:10092123,17039683 -g1,17939:10408269,17039683 -g1,17939:10724415,17039683 -g1,17939:11040561,17039683 -g1,17939:12621290,17039683 -g1,17939:12937436,17039683 -g1,17939:13253582,17039683 -g1,17939:13569728,17039683 -g1,17939:14518165,17039683 -h1,17939:15466602,17039683:0,0,0 -k1,17939:31966991,17039683:16500389 -g1,17939:31966991,17039683 -) -(1,17939:7246811,17705861:24720180,388497,9436 -h1,17939:7246811,17705861:0,0,0 -g1,17939:8195248,17705861 -g1,17939:8827540,17705861 -g1,17939:10408269,17705861 -g1,17939:10724415,17705861 -g1,17939:11040561,17705861 -g1,17939:12621290,17705861 -g1,17939:12937436,17705861 -g1,17939:13253582,17705861 -g1,17939:13569728,17705861 -g1,17939:14518165,17705861 -h1,17939:15466602,17705861:0,0,0 -k1,17939:31966991,17705861:16500389 -g1,17939:31966991,17705861 -) -(1,17939:7246811,18372039:24720180,404226,9436 -h1,17939:7246811,18372039:0,0,0 -g1,17939:8195248,18372039 -g1,17939:8827540,18372039 -g1,17939:9459832,18372039 -g1,17939:9775978,18372039 -g1,17939:10092124,18372039 -g1,17939:10408270,18372039 -g1,17939:10724416,18372039 -g1,17939:11040562,18372039 -g1,17939:11988999,18372039 -g1,17939:12305145,18372039 -g1,17939:12621291,18372039 -g1,17939:12937437,18372039 -g1,17939:14518166,18372039 -h1,17939:15466603,18372039:0,0,0 -k1,17939:31966991,18372039:16500388 -g1,17939:31966991,18372039 -) -] -) -g1,17940:31966991,18381475 -g1,17940:7246811,18381475 -g1,17940:7246811,18381475 -g1,17940:31966991,18381475 -g1,17940:31966991,18381475 -) -h1,17940:7246811,18578083:0,0,0 -v1,17944:7246811,20292837:0,393216,0 -(1,17961:7246811,33828925:24720180,13929304,196608 -g1,17961:7246811,33828925 -g1,17961:7246811,33828925 -g1,17961:7050203,33828925 -(1,17961:7050203,33828925:0,13929304,196608 -r1,17991:32163599,33828925:25113396,14125912,196608 -k1,17961:7050203,33828925:-25113396 -) -(1,17961:7050203,33828925:25113396,13929304,196608 -[1,17961:7246811,33828925:24720180,13732696,0 -(1,17946:7246811,20506747:24720180,410518,107478 -(1,17945:7246811,20506747:0,0,0 -g1,17945:7246811,20506747 -g1,17945:7246811,20506747 -g1,17945:6919131,20506747 -(1,17945:6919131,20506747:0,0,0 -) -g1,17945:7246811,20506747 -) -k1,17946:7246811,20506747:0 -g1,17946:12305143,20506747 -g1,17946:12937435,20506747 -g1,17946:23686388,20506747 -g1,17946:26847845,20506747 -g1,17946:27480137,20506747 -h1,17946:28428574,20506747:0,0,0 -k1,17946:31966991,20506747:3538417 -g1,17946:31966991,20506747 -) -(1,17951:7246811,21828285:24720180,379060,0 -k1,17950:31966990,21828285:24087888 -g1,17951:31966990,21828285 -) -(1,17951:7246811,22494463:24720180,410518,101187 -k1,17950:8210452,22494463:331350 -k1,17950:9174094,22494463:331351 -k1,17950:11402318,22494463:331350 -k1,17950:15843562,22494463:331350 -k1,17951:31966991,22494463:0 -) -(1,17951:7246811,23160641:24720180,176685,0 -k1,17950:31966991,23160641:23139452 -g1,17951:31966991,23160641 -) -(1,17951:7246811,23826819:24720180,404226,76021 -g1,17950:8195248,23826819 -k1,17950:31966992,23826819:22191016 -g1,17951:31966992,23826819 -) -(1,17951:7246811,24492997:24720180,404226,82312 -g1,17950:8195248,24492997 -g1,17950:8511394,24492997 -g1,17950:8827540,24492997 -g1,17950:10408269,24492997 -g1,17950:11040561,24492997 -k1,17950:31966991,24492997:16816536 -g1,17951:31966991,24492997 -) -(1,17951:7246811,25159175:24720180,404226,82312 -g1,17950:8195248,25159175 -g1,17950:8511394,25159175 -g1,17950:8827540,25159175 -g1,17950:10408269,25159175 -g1,17950:11040561,25159175 -k1,17950:31966991,25159175:16816536 -g1,17951:31966991,25159175 -) -(1,17951:7246811,25825353:24720180,404226,82312 -g1,17950:8195248,25825353 -g1,17950:8511394,25825353 -g1,17950:8827540,25825353 -g1,17950:10408269,25825353 -g1,17950:11040561,25825353 -k1,17950:31966991,25825353:16816536 -g1,17951:31966991,25825353 -) -(1,17951:7246811,26491531:24720180,404226,76021 -g1,17950:8195248,26491531 -g1,17950:8511394,26491531 -g1,17950:8827540,26491531 -g1,17950:10408269,26491531 -g1,17950:11040561,26491531 -k1,17950:31966991,26491531:16184245 -g1,17951:31966991,26491531 -) -(1,17951:7246811,27157709:24720180,404226,76021 -g1,17950:8195248,27157709 -k1,17951:31966990,27157709:23455596 -g1,17951:31966990,27157709 -) -(1,17952:7246811,27823887:24720180,410518,107478 -g1,17952:8195248,27823887 -g1,17952:11040559,27823887 -g1,17952:11672851,27823887 -g1,17952:14202017,27823887 -k1,17952:31966991,27823887:15235809 -g1,17952:31966991,27823887 -) -(1,17952:7246811,28490065:24720180,410518,101187 -g1,17952:8195248,28490065 -g1,17952:9459831,28490065 -g1,17952:9775977,28490065 -g1,17952:11040560,28490065 -g1,17952:13885871,28490065 -g1,17952:16098891,28490065 -g1,17952:16415037,28490065 -g1,17952:16731183,28490065 -g1,17952:17047329,28490065 -g1,17952:17363475,28490065 -g1,17952:17679621,28490065 -g1,17952:17995767,28490065 -g1,17952:18311913,28490065 -g1,17952:18628059,28490065 -g1,17952:18944205,28490065 -g1,17952:19260351,28490065 -g1,17952:19576497,28490065 -g1,17952:19892643,28490065 -g1,17952:20208789,28490065 -g1,17952:20524935,28490065 -g1,17952:20841081,28490065 -g1,17952:21157227,28490065 -g1,17952:21473373,28490065 -g1,17952:21789519,28490065 -g1,17952:22105665,28490065 -g1,17952:22421811,28490065 -g1,17952:22737957,28490065 -g1,17952:23054103,28490065 -g1,17952:23370249,28490065 -g1,17952:23686395,28490065 -g1,17952:24002541,28490065 -g1,17952:24318687,28490065 -g1,17952:24634833,28490065 -g1,17952:24950979,28490065 -k1,17952:31966991,28490065:5751429 -g1,17952:31966991,28490065 -) -(1,17952:7246811,29156243:24720180,404226,107478 -g1,17952:8195248,29156243 -g1,17952:8511394,29156243 -g1,17952:8827540,29156243 -g1,17952:9459832,29156243 -g1,17952:11040561,29156243 -g1,17952:11672853,29156243 -g1,17952:13885873,29156243 -g1,17952:14202019,29156243 -g1,17952:14518165,29156243 -g1,17952:14834311,29156243 -g1,17952:15150457,29156243 -g1,17952:15466603,29156243 -g1,17952:16098895,29156243 -k1,17952:31966991,29156243:5751435 -g1,17952:31966991,29156243 -) -(1,17960:7246811,29822421:24720180,404226,6290 -(1,17952:7246811,29822421:0,0,0 -g1,17952:7246811,29822421 -g1,17952:7246811,29822421 -g1,17952:6919131,29822421 -(1,17952:6919131,29822421:0,0,0 -) -g1,17952:7246811,29822421 -) -g1,17960:8195248,29822421 -g1,17960:8827540,29822421 -g1,17960:9459832,29822421 -g1,17960:11988998,29822421 -g1,17960:12621290,29822421 -g1,17960:13253582,29822421 -h1,17960:13569728,29822421:0,0,0 -k1,17960:31966992,29822421:18397264 -g1,17960:31966992,29822421 -) -(1,17960:7246811,30488599:24720180,404226,9436 -h1,17960:7246811,30488599:0,0,0 -g1,17960:8195248,30488599 -g1,17960:8511394,30488599 -g1,17960:8827540,30488599 -g1,17960:9143686,30488599 -g1,17960:10724415,30488599 -g1,17960:11040561,30488599 -g1,17960:12621290,30488599 -g1,17960:12937436,30488599 -g1,17960:14518165,30488599 -h1,17960:15782748,30488599:0,0,0 -k1,17960:31966991,30488599:16184243 -g1,17960:31966991,30488599 -) -(1,17960:7246811,31154777:24720180,404226,6290 -h1,17960:7246811,31154777:0,0,0 -g1,17960:8195248,31154777 -g1,17960:8511394,31154777 -g1,17960:8827540,31154777 -g1,17960:10724415,31154777 -g1,17960:12621290,31154777 -g1,17960:14518165,31154777 -k1,17960:14518165,31154777:0 -h1,17960:16098894,31154777:0,0,0 -k1,17960:31966991,31154777:15868097 -g1,17960:31966991,31154777 -) -(1,17960:7246811,31820955:24720180,388497,9436 -h1,17960:7246811,31820955:0,0,0 -g1,17960:8195248,31820955 -g1,17960:8827540,31820955 -g1,17960:9143686,31820955 -g1,17960:9459832,31820955 -g1,17960:10092124,31820955 -g1,17960:10408270,31820955 -g1,17960:10724416,31820955 -g1,17960:11040562,31820955 -g1,17960:12621291,31820955 -g1,17960:12937437,31820955 -g1,17960:13253583,31820955 -g1,17960:14518166,31820955 -h1,17960:15466603,31820955:0,0,0 -k1,17960:31966991,31820955:16500388 -g1,17960:31966991,31820955 -) -(1,17960:7246811,32487133:24720180,388497,9436 -h1,17960:7246811,32487133:0,0,0 -g1,17960:8195248,32487133 -g1,17960:8827540,32487133 -g1,17960:9143686,32487133 -g1,17960:9459832,32487133 -g1,17960:10724415,32487133 -g1,17960:11040561,32487133 -g1,17960:12621290,32487133 -g1,17960:12937436,32487133 -g1,17960:13253582,32487133 -g1,17960:13569728,32487133 -g1,17960:14518165,32487133 -h1,17960:15466602,32487133:0,0,0 -k1,17960:31966991,32487133:16500389 -g1,17960:31966991,32487133 -) -(1,17960:7246811,33153311:24720180,388497,9436 -h1,17960:7246811,33153311:0,0,0 -g1,17960:8195248,33153311 -g1,17960:8827540,33153311 -g1,17960:9143686,33153311 -g1,17960:10724415,33153311 -g1,17960:11040561,33153311 -g1,17960:12621290,33153311 -g1,17960:12937436,33153311 -g1,17960:13253582,33153311 -g1,17960:13569728,33153311 -g1,17960:14518165,33153311 -h1,17960:15466602,33153311:0,0,0 -k1,17960:31966991,33153311:16500389 -g1,17960:31966991,33153311 -) -(1,17960:7246811,33819489:24720180,404226,9436 -h1,17960:7246811,33819489:0,0,0 -g1,17960:8195248,33819489 -g1,17960:8827540,33819489 -g1,17960:9143686,33819489 -g1,17960:10092123,33819489 -g1,17960:10408269,33819489 -g1,17960:10724415,33819489 -g1,17960:11040561,33819489 -g1,17960:11988998,33819489 -g1,17960:12305144,33819489 -g1,17960:12621290,33819489 -g1,17960:12937436,33819489 -g1,17960:14518165,33819489 -h1,17960:15466602,33819489:0,0,0 -k1,17960:31966991,33819489:16500389 -g1,17960:31966991,33819489 -) -] -) -g1,17961:31966991,33828925 -g1,17961:7246811,33828925 -g1,17961:7246811,33828925 -g1,17961:31966991,33828925 -g1,17961:31966991,33828925 -) -h1,17961:7246811,34025533:0,0,0 -] -) -] -r1,17991:32583029,35139645:26214,29278764,0 -) -] -) -) -g1,17963:32583029,34549821 -) -h1,17963:6630773,35165859:0,0,0 -(1,17970:6630773,36506858:25952256,513147,126483 -h1,17969:6630773,36506858:983040,0,0 -k1,17969:8982738,36506858:172238 -(1,17969:8982738,36506858:0,452978,115847 -r1,17991:11099563,36506858:2116825,568825,115847 -k1,17969:8982738,36506858:-2116825 -) -(1,17969:8982738,36506858:2116825,452978,115847 -k1,17969:8982738,36506858:3277 -h1,17969:11096286,36506858:0,411205,112570 -) -k1,17969:11271802,36506858:172239 -k1,17969:14469837,36506858:172238 -k1,17969:16209696,36506858:172238 -k1,17969:18405031,36506858:172239 -k1,17969:19568829,36506858:172238 -k1,17969:20760153,36506858:172239 -k1,17969:24704643,36506858:172238 -k1,17969:25528309,36506858:172238 -(1,17969:25528309,36506858:0,452978,115847 -r1,17991:27645134,36506858:2116825,568825,115847 -k1,17969:25528309,36506858:-2116825 -) -(1,17969:25528309,36506858:2116825,452978,115847 -k1,17969:25528309,36506858:3277 -h1,17969:27641857,36506858:0,411205,112570 -) -k1,17969:27817373,36506858:172239 -k1,17969:31015408,36506858:172238 -k1,17969:32583029,36506858:0 -) -(1,17970:6630773,37348346:25952256,505283,126483 -k1,17969:8820856,37348346:305269 -k1,17969:9753960,37348346:305269 -k1,17969:12725234,37348346:305269 -k1,17969:13681931,37348346:305269 -k1,17969:15006284,37348346:305268 -k1,17969:18150573,37348346:305269 -(1,17969:18150573,37348346:0,452978,115847 -r1,17991:22025957,37348346:3875384,568825,115847 -k1,17969:18150573,37348346:-3875384 -) -(1,17969:18150573,37348346:3875384,452978,115847 -k1,17969:18150573,37348346:3277 -h1,17969:22022680,37348346:0,411205,112570 -) -k1,17969:22504896,37348346:305269 -(1,17969:22504896,37348346:0,452978,115847 -r1,17991:26731992,37348346:4227096,568825,115847 -k1,17969:22504896,37348346:-4227096 -) -(1,17969:22504896,37348346:4227096,452978,115847 -k1,17969:22504896,37348346:3277 -h1,17969:26728715,37348346:0,411205,112570 -) -k1,17969:27210931,37348346:305269 -(1,17969:27210931,37348346:0,452978,115847 -r1,17991:31086315,37348346:3875384,568825,115847 -k1,17969:27210931,37348346:-3875384 -) -(1,17969:27210931,37348346:3875384,452978,115847 -k1,17969:27210931,37348346:3277 -h1,17969:31083038,37348346:0,411205,112570 -) -k1,17969:31391584,37348346:305269 -k1,17970:32583029,37348346:0 -) -(1,17970:6630773,38189834:25952256,513147,126483 -(1,17969:6630773,38189834:0,452978,115847 -r1,17991:11209581,38189834:4578808,568825,115847 -k1,17969:6630773,38189834:-4578808 -) -(1,17969:6630773,38189834:4578808,452978,115847 -k1,17969:6630773,38189834:3277 -h1,17969:11206304,38189834:0,411205,112570 -) -k1,17969:11663452,38189834:280201 -k1,17969:13966748,38189834:280200 -k1,17969:17007325,38189834:280201 -k1,17969:20313323,38189834:280201 -k1,17969:21878029,38189834:280200 -k1,17969:23773037,38189834:280201 -k1,17969:29547121,38189834:280201 -k1,17969:31096017,38189834:280119 -k1,17969:32583029,38189834:0 -) -(1,17970:6630773,39031322:25952256,513147,126483 -k1,17969:7882053,39031322:297731 -k1,17969:12212870,39031322:297731 -k1,17969:13908484,39031322:297731 -k1,17969:15225299,39031322:297730 -k1,17969:16615515,39031322:297731 -k1,17969:17580402,39031322:297731 -(1,17969:17580402,39031322:0,452978,115847 -r1,17991:23566057,39031322:5985655,568825,115847 -k1,17969:17580402,39031322:-5985655 -) -(1,17969:17580402,39031322:5985655,452978,115847 -k1,17969:17580402,39031322:3277 -h1,17969:23562780,39031322:0,411205,112570 -) -k1,17969:23863788,39031322:297731 -k1,17969:24812947,39031322:297731 -k1,17969:27730807,39031322:297731 -k1,17969:28384397,39031322:297730 -k1,17969:29908307,39031322:297731 -k1,17969:31189078,39031322:297731 -k1,17969:32583029,39031322:0 -) -(1,17970:6630773,39872810:25952256,513147,126483 -g1,17969:12490347,39872810 -g1,17969:14423659,39872810 -g1,17969:17134883,39872810 -g1,17969:18281763,39872810 -g1,17969:20662686,39872810 -g1,17969:22129381,39872810 -k1,17970:32583029,39872810:7502562 -g1,17970:32583029,39872810 -) -v1,17972:6630773,41038500:0,393216,0 -(1,17977:6630773,42026066:25952256,1380782,196608 -g1,17977:6630773,42026066 -g1,17977:6630773,42026066 -g1,17977:6434165,42026066 -(1,17977:6434165,42026066:0,1380782,196608 -r1,17991:32779637,42026066:26345472,1577390,196608 -k1,17977:6434165,42026066:-26345472 -) -(1,17977:6434165,42026066:26345472,1380782,196608 -[1,17977:6630773,42026066:25952256,1184174,0 -(1,17974:6630773,41252410:25952256,410518,101187 -(1,17973:6630773,41252410:0,0,0 -g1,17973:6630773,41252410 -g1,17973:6630773,41252410 -g1,17973:6303093,41252410 -(1,17973:6303093,41252410:0,0,0 -) -g1,17973:6630773,41252410 -) -k1,17974:6630773,41252410:0 -g1,17974:13902124,41252410 -g1,17974:15482853,41252410 -g1,17974:16115145,41252410 -k1,17974:16115145,41252410:0 -h1,17974:20857330,41252410:0,0,0 -k1,17974:32583029,41252410:11725699 -g1,17974:32583029,41252410 -) -(1,17975:6630773,41918588:25952256,410518,107478 -h1,17975:6630773,41918588:0,0,0 -g1,17975:14850561,41918588 -g1,17975:16747435,41918588 -g1,17975:17379727,41918588 -h1,17975:20541184,41918588:0,0,0 -k1,17975:32583029,41918588:12041845 -g1,17975:32583029,41918588 -) -] -) -g1,17977:32583029,42026066 -g1,17977:6630773,42026066 -g1,17977:6630773,42026066 -g1,17977:32583029,42026066 -g1,17977:32583029,42026066 -) -h1,17977:6630773,42222674:0,0,0 -(1,17982:6630773,43388363:25952256,513147,134348 -h1,17980:6630773,43388363:983040,0,0 -g1,17980:9275150,43388363 -g1,17980:11195354,43388363 -g1,17980:11750443,43388363 -g1,17980:12932712,43388363 -g1,17980:16493938,43388363 -g1,17980:17712252,43388363 -g1,17980:20886816,43388363 -g1,17980:22485894,43388363 -k1,17982:32583029,43388363:10097135 -g1,17982:32583029,43388363 -) -v1,17982:6630773,44554053:0,393216,0 -(1,17991:6630773,45510161:25952256,1349324,196608 -g1,17991:6630773,45510161 -g1,17991:6630773,45510161 -g1,17991:6434165,45510161 -(1,17991:6434165,45510161:0,1349324,196608 -r1,17991:32779637,45510161:26345472,1545932,196608 -k1,17991:6434165,45510161:-26345472 -) -(1,17991:6434165,45510161:26345472,1349324,196608 -[1,17991:6630773,45510161:25952256,1152716,0 -(1,17990:6630773,44761671:25952256,404226,101187 -(1,17983:6630773,44761671:0,0,0 -g1,17983:6630773,44761671 -g1,17983:6630773,44761671 -g1,17983:6303093,44761671 -(1,17983:6303093,44761671:0,0,0 -) -g1,17983:6630773,44761671 -) -k1,17990:6630773,44761671:0 -k1,17990:6630773,44761671:0 -h1,17990:10108376,44761671:0,0,0 -k1,17990:32583028,44761671:22474652 -g1,17990:32583028,44761671 -) -(1,17990:6630773,45427849:25952256,404226,82312 -h1,17990:6630773,45427849:0,0,0 -k1,17990:6630773,45427849:0 -h1,17990:9476085,45427849:0,0,0 -k1,17990:32583029,45427849:23106944 -g1,17990:32583029,45427849 -) -] -) -g1,17991:32583029,45510161 -g1,17991:6630773,45510161 -g1,17991:6630773,45510161 -g1,17991:32583029,45510161 -g1,17991:32583029,45510161 -) -] -(1,17991:32583029,45706769:0,0,0 -g1,17991:32583029,45706769 -) -) -] -(1,17991:6630773,47279633:25952256,0,0 -h1,17991:6630773,47279633:25952256,0,0 -) -] -(1,17991:4262630,4025873:0,0,0 -[1,17991:-473656,4025873:0,0,0 -(1,17991:-473656,-710413:0,0,0 -(1,17991:-473656,-710413:0,0,0 -g1,17991:-473656,-710413 -) -g1,17991:-473656,-710413 -) -] -) -] -!24072 -}352 -Input:2905:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2906:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2907:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2908:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2909:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2910:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2911:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2912:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2913:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2914:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2915:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2916:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2917:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1208 -{353 -[1,18039:4262630,47279633:28320399,43253760,0 -(1,18039:4262630,4025873:0,0,0 -[1,18039:-473656,4025873:0,0,0 -(1,18039:-473656,-710413:0,0,0 -(1,18039:-473656,-644877:0,0,0 -k1,18039:-473656,-644877:-65536 -) -(1,18039:-473656,4736287:0,0,0 -k1,18039:-473656,4736287:5209943 -) -g1,18039:-473656,-710413 -) -] -) -[1,18039:6630773,47279633:25952256,43253760,0 -[1,18039:6630773,4812305:25952256,786432,0 -(1,18039:6630773,4812305:25952256,505283,126483 -(1,18039:6630773,4812305:25952256,505283,126483 -g1,18039:3078558,4812305 -[1,18039:3078558,4812305:0,0,0 -(1,18039:3078558,2439708:0,1703936,0 -k1,18039:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,18039:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,18039:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 -) -] -) -) -) -] -[1,18039:3078558,4812305:0,0,0 -(1,18039:3078558,2439708:0,1703936,0 -g1,18039:29030814,2439708 -g1,18039:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,18039:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 -) -] -) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,18039:37855564,2439708:1179648,16384,0 -) -) -k1,18039:3078556,2439708:-34777008 -) -] -[1,18039:3078558,4812305:0,0,0 -(1,18039:3078558,49800853:0,16384,2228224 -k1,18039:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,18039:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,18039:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 -) -] -) -) -) -] -[1,18039:3078558,4812305:0,0,0 -(1,18039:3078558,49800853:0,16384,2228224 -g1,18039:29030814,49800853 -g1,18039:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,18039:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 -) -] -) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,18039:37855564,49800853:1179648,16384,0 -) -) -k1,18039:3078556,49800853:-34777008 -) -] -g1,18039:6630773,4812305 -k1,18039:25146660,4812305:17320510 -g1,18039:26880087,4812305 -g1,18039:29193507,4812305 -g1,18039:30603186,4812305 -) -) -] -[1,18039:6630773,45706769:25952256,40108032,0 -(1,18039:6630773,45706769:25952256,40108032,0 -(1,18039:6630773,45706769:0,0,0 -g1,18039:6630773,45706769 -) -[1,18039:6630773,45706769:25952256,40108032,0 -v1,17991:6630773,6254097:0,393216,0 -(1,17991:6630773,8542561:25952256,2681680,196608 -g1,17991:6630773,8542561 -g1,17991:6630773,8542561 -g1,17991:6434165,8542561 -(1,17991:6434165,8542561:0,2681680,196608 -r1,18039:32779637,8542561:26345472,2878288,196608 -k1,17991:6434165,8542561:-26345472 -) -(1,17991:6434165,8542561:26345472,2681680,196608 -[1,17991:6630773,8542561:25952256,2485072,0 -(1,17990:6630773,6461715:25952256,404226,82312 -h1,17990:6630773,6461715:0,0,0 -k1,17990:6630773,6461715:0 -h1,17990:9476085,6461715:0,0,0 -k1,17990:32583029,6461715:23106944 -g1,17990:32583029,6461715 -) -(1,17990:6630773,7127893:25952256,404226,82312 -h1,17990:6630773,7127893:0,0,0 -k1,17990:6630773,7127893:0 -h1,17990:9476085,7127893:0,0,0 -k1,17990:32583029,7127893:23106944 -g1,17990:32583029,7127893 -) -(1,17990:6630773,7794071:25952256,404226,82312 -h1,17990:6630773,7794071:0,0,0 -k1,17990:6630773,7794071:0 -h1,17990:9476085,7794071:0,0,0 -k1,17990:32583029,7794071:23106944 -g1,17990:32583029,7794071 -) -(1,17990:6630773,8460249:25952256,404226,82312 -h1,17990:6630773,8460249:0,0,0 -k1,17990:6630773,8460249:0 -h1,17990:9476085,8460249:0,0,0 -k1,17990:32583029,8460249:23106944 -g1,17990:32583029,8460249 -) -] -) -g1,17991:32583029,8542561 -g1,17991:6630773,8542561 -g1,17991:6630773,8542561 -g1,17991:32583029,8542561 -g1,17991:32583029,8542561 -) -h1,17991:6630773,8739169:0,0,0 -v1,17995:6630773,10629233:0,393216,0 -(1,17996:6630773,13756753:25952256,3520736,616038 -g1,17996:6630773,13756753 -(1,17996:6630773,13756753:25952256,3520736,616038 -(1,17996:6630773,14372791:25952256,4136774,0 -[1,17996:6630773,14372791:25952256,4136774,0 -(1,17996:6630773,14346577:25952256,4084346,0 -r1,18039:6656987,14346577:26214,4084346,0 -[1,17996:6656987,14346577:25899828,4084346,0 -(1,17996:6656987,13756753:25899828,2904698,0 -[1,17996:7246811,13756753:24720180,2904698,0 -(1,17996:7246811,11939429:24720180,1087374,126483 -k1,17995:8733323,11939429:276809 -k1,17995:11892404,11939429:276808 -k1,17995:13188298,11939429:276809 -k1,17995:15623863,11939429:276809 -k1,17995:17468292,11939429:276808 -(1,17995:17468292,11939429:0,452978,115847 -r1,18039:23453947,11939429:5985655,568825,115847 -k1,17995:17468292,11939429:-5985655 -) -(1,17995:17468292,11939429:5985655,452978,115847 -k1,17995:17468292,11939429:3277 -h1,17995:23450670,11939429:0,411205,112570 -) -k1,17995:23730756,11939429:276809 -k1,17995:25199010,11939429:276809 -(1,17995:25199010,11939429:0,452978,115847 -r1,18039:29074394,11939429:3875384,568825,115847 -k1,17995:25199010,11939429:-3875384 -) -(1,17995:25199010,11939429:3875384,452978,115847 -k1,17995:25199010,11939429:3277 -h1,17995:29071117,11939429:0,411205,112570 -) -k1,17995:29524872,11939429:276808 -k1,17995:31435494,11939429:276809 -k1,17995:31966991,11939429:0 -) -(1,17996:7246811,12780917:24720180,513147,126483 -k1,17995:8460639,12780917:194743 -k1,17995:12168767,12780917:194743 -k1,17995:13938996,12780917:194743 -k1,17995:14591836,12780917:194743 -k1,17995:16911912,12780917:194743 -k1,17995:18804693,12780917:194743 -k1,17995:20169909,12780917:194743 -k1,17995:22546346,12780917:194743 -k1,17995:23760174,12780917:194743 -k1,17995:26241468,12780917:194743 -k1,17995:27704983,12780917:194738 -k1,17995:28882766,12780917:194743 -k1,17995:30344975,12780917:194743 -k1,17995:31966991,12780917:0 -) -(1,17996:7246811,13622405:24720180,513147,134348 -g1,17995:8269172,13622405 -g1,17995:9487486,13622405 -g1,17995:12020452,13622405 -g1,17995:13390154,13622405 -g1,17995:14580943,13622405 -g1,17995:16689236,13622405 -g1,17995:18079910,13622405 -g1,17995:19673090,13622405 -g1,17995:20891404,13622405 -g1,17995:22932195,13622405 -g1,17995:25643419,13622405 -g1,17995:26501940,13622405 -g1,17995:28160000,13622405 -k1,17996:31966991,13622405:196613 -g1,17996:31966991,13622405 -) -] -) -] -r1,18039:32583029,14346577:26214,4084346,0 -) -] -) -) -g1,17996:32583029,13756753 -) -h1,17996:6630773,14372791:0,0,0 -(1,17999:6630773,15738567:25952256,513147,126483 -h1,17998:6630773,15738567:983040,0,0 -k1,17998:9041531,15738567:231031 -k1,17998:10538718,15738567:231031 -k1,17998:11429041,15738567:231031 -k1,17998:14685869,15738567:231031 -(1,17998:14685869,15738567:0,452978,115847 -r1,18039:18912965,15738567:4227096,568825,115847 -k1,17998:14685869,15738567:-4227096 -) -(1,17998:14685869,15738567:4227096,452978,115847 -k1,17998:14685869,15738567:3277 -h1,17998:18909688,15738567:0,411205,112570 -) -k1,17998:19143997,15738567:231032 -k1,17998:20566473,15738567:231031 -(1,17998:20566473,15738567:0,452978,115847 -r1,18039:25145281,15738567:4578808,568825,115847 -k1,17998:20566473,15738567:-4578808 -) -(1,17998:20566473,15738567:4578808,452978,115847 -k1,17998:20566473,15738567:3277 -h1,17998:25142004,15738567:0,411205,112570 -) -k1,17998:25376312,15738567:231031 -k1,17998:27019644,15738567:231031 -k1,17998:28442120,15738567:231031 -k1,17998:30287958,15738567:231031 -k1,17999:32583029,15738567:0 -) -(1,17999:6630773,16580055:25952256,505283,126483 -k1,17998:7713860,16580055:190487 -k1,17998:10212526,16580055:190488 -k1,17998:12863235,16580055:190487 -k1,17998:16704078,16580055:190488 -k1,17998:19662806,16580055:190487 -k1,17998:20504722,16580055:190488 -k1,17998:22129137,16580055:190487 -k1,17998:22734459,16580055:190479 -(1,17998:22734459,16580055:0,452978,115847 -r1,18039:26609843,16580055:3875384,568825,115847 -k1,17998:22734459,16580055:-3875384 -) -(1,17998:22734459,16580055:3875384,452978,115847 -k1,17998:22734459,16580055:3277 -h1,17998:26606566,16580055:0,411205,112570 -) -k1,17998:26800331,16580055:190488 -k1,17998:28182263,16580055:190487 -(1,17998:28182263,16580055:0,452978,115847 -r1,18039:32409359,16580055:4227096,568825,115847 -k1,17998:28182263,16580055:-4227096 -) -(1,17998:28182263,16580055:4227096,452978,115847 -k1,17998:28182263,16580055:3277 -h1,17998:32406082,16580055:0,411205,112570 -) -k1,17998:32583029,16580055:0 -) -(1,17999:6630773,17421543:25952256,513147,115847 -k1,17998:9992150,17421543:241208 -(1,17998:9992150,17421543:0,459977,115847 -r1,18039:13867534,17421543:3875384,575824,115847 -k1,17998:9992150,17421543:-3875384 -) -(1,17998:9992150,17421543:3875384,459977,115847 -k1,17998:9992150,17421543:3277 -h1,17998:13864257,17421543:0,411205,112570 -) -k1,17998:14108742,17421543:241208 -k1,17998:15541395,17421543:241208 -(1,17998:15541395,17421543:0,459977,115847 -r1,18039:19768491,17421543:4227096,575824,115847 -k1,17998:15541395,17421543:-4227096 -) -(1,17998:15541395,17421543:4227096,459977,115847 -k1,17998:15541395,17421543:3277 -h1,17998:19765214,17421543:0,411205,112570 -) -k1,17998:20009699,17421543:241208 -k1,17998:21663208,17421543:241208 -k1,17998:23095861,17421543:241208 -k1,17998:24951876,17421543:241208 -k1,17998:26212169,17421543:241208 -k1,17998:29202612,17421543:241208 -k1,17998:30103112,17421543:241208 -k1,17998:30700180,17421543:241208 -k1,17998:32583029,17421543:0 -) -(1,17999:6630773,18263031:25952256,513147,134348 -k1,17998:8215054,18263031:358102 -k1,17998:9556197,18263031:358103 -k1,17998:11355436,18263031:358102 -k1,17998:12904984,18263031:358103 -k1,17998:15004378,18263031:358102 -k1,17998:15718341,18263031:358103 -k1,17998:17949462,18263031:358102 -k1,17998:21282244,18263031:358103 -k1,17998:23679826,18263031:358102 -k1,17998:27158098,18263031:358103 -(1,17998:27158098,18263031:0,459977,115847 -r1,18039:31033482,18263031:3875384,575824,115847 -k1,17998:27158098,18263031:-3875384 -) -(1,17998:27158098,18263031:3875384,459977,115847 -k1,17998:27158098,18263031:3277 -h1,17998:31030205,18263031:0,411205,112570 -) -k1,17998:31391584,18263031:358102 -k1,17999:32583029,18263031:0 -) -(1,17999:6630773,19104519:25952256,513147,126483 -(1,17998:6630773,19104519:0,459977,115847 -r1,18039:10857869,19104519:4227096,575824,115847 -k1,17998:6630773,19104519:-4227096 -) -(1,17998:6630773,19104519:4227096,459977,115847 -k1,17998:6630773,19104519:3277 -h1,17998:10854592,19104519:0,411205,112570 -) -k1,17998:11094920,19104519:237051 -k1,17998:12436253,19104519:237051 -k1,17998:13959121,19104519:237052 -k1,17998:14943938,19104519:237051 -k1,17998:16694215,19104519:237051 -k1,17998:18325217,19104519:237051 -k1,17998:19727499,19104519:237052 -k1,17998:22272728,19104519:237051 -k1,17998:23161207,19104519:237051 -k1,17998:24810559,19104519:237051 -k1,17998:26239055,19104519:237051 -k1,17998:28090914,19104519:237052 -k1,17998:30349751,19104519:237051 -k1,17998:31900144,19104519:237051 -k1,17998:32583029,19104519:0 -) -(1,17999:6630773,19946007:25952256,513147,134348 -g1,17998:8056181,19946007 -g1,17998:9568752,19946007 -g1,17998:10427273,19946007 -g1,17998:13593972,19946007 -k1,17999:32583029,19946007:15914108 -g1,17999:32583029,19946007 -) -(1,18001:6630773,20787495:25952256,513147,134348 -h1,18000:6630773,20787495:983040,0,0 -k1,18000:9004159,20787495:193659 -k1,18000:11947053,20787495:193659 -k1,18000:12800004,20787495:193659 -k1,18000:14012747,20787495:193658 -k1,18000:16089255,20787495:193659 -k1,18000:17265954,20787495:193659 -k1,18000:18451173,20787495:193659 -k1,18000:21423559,20787495:193659 -k1,18000:22303380,20787495:193659 -k1,18000:22852899,20787495:193659 -k1,18000:26021236,20787495:193658 -k1,18000:28192772,20787495:193659 -k1,18000:29045723,20787495:193659 -k1,18000:31252648,20787495:193659 -k1,18000:32583029,20787495:0 -) -(1,18001:6630773,21628983:25952256,505283,126483 -k1,18000:8264090,21628983:239366 -k1,18000:9522541,21628983:239366 -k1,18000:13086548,21628983:239366 -k1,18000:14609108,21628983:239365 -k1,18000:16016981,21628983:239366 -k1,18000:19052768,21628983:239366 -k1,18000:20245683,21628983:239366 -k1,18000:21577534,21628983:239366 -(1,18000:21577534,21628983:0,452978,115847 -r1,18039:23342647,21628983:1765113,568825,115847 -k1,18000:21577534,21628983:-1765113 -) -(1,18000:21577534,21628983:1765113,452978,115847 -k1,18000:21577534,21628983:3277 -h1,18000:23339370,21628983:0,411205,112570 -) -k1,18000:23582013,21628983:239366 -k1,18000:24472807,21628983:239366 -k1,18000:26294212,21628983:239366 -k1,18000:26991674,21628983:239365 -k1,18000:27955868,21628983:239366 -k1,18000:29891961,21628983:239366 -k1,18000:31414522,21628983:239366 -k1,18000:32583029,21628983:0 -) -(1,18001:6630773,22470471:25952256,513147,126483 -g1,18000:10134983,22470471 -g1,18000:11962782,22470471 -g1,18000:13181096,22470471 -g1,18000:14868648,22470471 -g1,18000:15727169,22470471 -g1,18000:16282258,22470471 -g1,18000:17764682,22470471 -g1,18000:20825213,22470471 -k1,18001:32583029,22470471:10415639 -g1,18001:32583029,22470471 -) -v1,18003:6630773,23660937:0,393216,0 -(1,18026:6630773,33321593:25952256,10053872,196608 -g1,18026:6630773,33321593 -g1,18026:6630773,33321593 -g1,18026:6434165,33321593 -(1,18026:6434165,33321593:0,10053872,196608 -r1,18039:32779637,33321593:26345472,10250480,196608 -k1,18026:6434165,33321593:-26345472 -) -(1,18026:6434165,33321593:26345472,10053872,196608 -[1,18026:6630773,33321593:25952256,9857264,0 -(1,18005:6630773,23874847:25952256,410518,107478 -(1,18004:6630773,23874847:0,0,0 -g1,18004:6630773,23874847 -g1,18004:6630773,23874847 -g1,18004:6303093,23874847 -(1,18004:6303093,23874847:0,0,0 -) -g1,18004:6630773,23874847 -) -g1,18005:9159939,23874847 -g1,18005:10108377,23874847 -g1,18005:14850563,23874847 -g1,18005:15482855,23874847 -k1,18005:15482855,23874847:0 -h1,18005:25915662,23874847:0,0,0 -k1,18005:32583029,23874847:6667367 -g1,18005:32583029,23874847 -) -(1,18006:6630773,24541025:25952256,404226,107478 -h1,18006:6630773,24541025:0,0,0 -k1,18006:6630773,24541025:0 -h1,18006:11372958,24541025:0,0,0 -k1,18006:32583030,24541025:21210072 -g1,18006:32583030,24541025 -) -(1,18010:6630773,25272739:25952256,404226,76021 -(1,18008:6630773,25272739:0,0,0 -g1,18008:6630773,25272739 -g1,18008:6630773,25272739 -g1,18008:6303093,25272739 -(1,18008:6303093,25272739:0,0,0 -) -g1,18008:6630773,25272739 -) -g1,18010:7579210,25272739 -g1,18010:8843793,25272739 -h1,18010:9159939,25272739:0,0,0 -k1,18010:32583029,25272739:23423090 -g1,18010:32583029,25272739 -) -(1,18012:6630773,26594277:25952256,404226,76021 -(1,18011:6630773,26594277:0,0,0 -g1,18011:6630773,26594277 -g1,18011:6630773,26594277 -g1,18011:6303093,26594277 -(1,18011:6303093,26594277:0,0,0 -) -g1,18011:6630773,26594277 -) -k1,18012:6630773,26594277:0 -h1,18012:10424521,26594277:0,0,0 -k1,18012:32583029,26594277:22158508 -g1,18012:32583029,26594277 -) -(1,18025:6630773,27325991:25952256,404226,9436 -(1,18014:6630773,27325991:0,0,0 -g1,18014:6630773,27325991 -g1,18014:6630773,27325991 -g1,18014:6303093,27325991 -(1,18014:6303093,27325991:0,0,0 -) -g1,18014:6630773,27325991 -) -g1,18025:7579210,27325991 -g1,18025:9159939,27325991 -g1,18025:9476085,27325991 -g1,18025:11056814,27325991 -g1,18025:12637543,27325991 -h1,18025:13902126,27325991:0,0,0 -k1,18025:32583030,27325991:18680904 -g1,18025:32583030,27325991 -) -(1,18025:6630773,27992169:25952256,0,0 -h1,18025:6630773,27992169:0,0,0 -h1,18025:6630773,27992169:0,0,0 -k1,18025:32583029,27992169:25952256 -g1,18025:32583029,27992169 -) -(1,18025:6630773,28658347:25952256,388497,9436 -h1,18025:6630773,28658347:0,0,0 -g1,18025:7579210,28658347 -g1,18025:8843793,28658347 -g1,18025:9159939,28658347 -g1,18025:9476085,28658347 -g1,18025:11056814,28658347 -g1,18025:11372960,28658347 -g1,18025:12637543,28658347 -h1,18025:13585980,28658347:0,0,0 -k1,18025:32583028,28658347:18997048 -g1,18025:32583028,28658347 -) -(1,18025:6630773,29324525:25952256,0,0 -h1,18025:6630773,29324525:0,0,0 -h1,18025:6630773,29324525:0,0,0 -k1,18025:32583029,29324525:25952256 -g1,18025:32583029,29324525 -) -(1,18025:6630773,29990703:25952256,388497,9436 -h1,18025:6630773,29990703:0,0,0 -g1,18025:7579210,29990703 -g1,18025:8843793,29990703 -g1,18025:9159939,29990703 -g1,18025:9476085,29990703 -g1,18025:11056814,29990703 -g1,18025:11372960,29990703 -g1,18025:11689106,29990703 -g1,18025:12637543,29990703 -h1,18025:13585980,29990703:0,0,0 -k1,18025:32583028,29990703:18997048 -g1,18025:32583028,29990703 -) -(1,18025:6630773,30656881:25952256,0,0 -h1,18025:6630773,30656881:0,0,0 -h1,18025:6630773,30656881:0,0,0 -k1,18025:32583029,30656881:25952256 -g1,18025:32583029,30656881 -) -(1,18025:6630773,31323059:25952256,388497,9436 -h1,18025:6630773,31323059:0,0,0 -g1,18025:7579210,31323059 -g1,18025:9159939,31323059 -g1,18025:9476085,31323059 -g1,18025:9792231,31323059 -g1,18025:11372960,31323059 -g1,18025:11689106,31323059 -g1,18025:12005252,31323059 -g1,18025:12953689,31323059 -h1,18025:13902126,31323059:0,0,0 -k1,18025:32583030,31323059:18680904 -g1,18025:32583030,31323059 -) -(1,18025:6630773,31989237:25952256,0,0 -h1,18025:6630773,31989237:0,0,0 -h1,18025:6630773,31989237:0,0,0 -k1,18025:32583029,31989237:25952256 -g1,18025:32583029,31989237 -) -(1,18025:6630773,32655415:25952256,404226,9436 -h1,18025:6630773,32655415:0,0,0 -g1,18025:7579210,32655415 -g1,18025:7895356,32655415 -g1,18025:8527648,32655415 -g1,18025:8843794,32655415 -g1,18025:9159940,32655415 -g1,18025:9476086,32655415 -g1,18025:10424523,32655415 -g1,18025:10740669,32655415 -g1,18025:11056815,32655415 -g1,18025:11372961,32655415 -g1,18025:11689107,32655415 -g1,18025:13269836,32655415 -h1,18025:14218273,32655415:0,0,0 -k1,18025:32583029,32655415:18364756 -g1,18025:32583029,32655415 -) -(1,18025:6630773,33321593:25952256,0,0 -h1,18025:6630773,33321593:0,0,0 -h1,18025:6630773,33321593:0,0,0 -k1,18025:32583029,33321593:25952256 -g1,18025:32583029,33321593 -) -] -) -g1,18026:32583029,33321593 -g1,18026:6630773,33321593 -g1,18026:6630773,33321593 -g1,18026:32583029,33321593 -g1,18026:32583029,33321593 -) -h1,18026:6630773,33518201:0,0,0 -v1,18030:6630773,35408265:0,393216,0 -(1,18031:6630773,37111677:25952256,2096628,616038 -g1,18031:6630773,37111677 -(1,18031:6630773,37111677:25952256,2096628,616038 -(1,18031:6630773,37727715:25952256,2712666,0 -[1,18031:6630773,37727715:25952256,2712666,0 -(1,18031:6630773,37701501:25952256,2660238,0 -r1,18039:6656987,37701501:26214,2660238,0 -[1,18031:6656987,37701501:25899828,2660238,0 -(1,18031:6656987,37111677:25899828,1480590,0 -[1,18031:7246811,37111677:24720180,1480590,0 -(1,18031:7246811,36915069:24720180,1283982,196608 -(1,18030:7246811,36915069:0,1283982,196608 -r1,18039:9812056,36915069:2565245,1480590,196608 -k1,18030:7246811,36915069:-2565245 -) -(1,18030:7246811,36915069:2565245,1283982,196608 -) -g1,18030:10011285,36915069 -g1,18030:11359360,36915069 -(1,18030:11359360,36915069:0,459977,115847 -r1,18039:15586456,36915069:4227096,575824,115847 -k1,18030:11359360,36915069:-4227096 -) -(1,18030:11359360,36915069:4227096,459977,115847 -k1,18030:11359360,36915069:3277 -h1,18030:15583179,36915069:0,411205,112570 -) -g1,18030:15785685,36915069 -g1,18030:16636342,36915069 -g1,18030:18450378,36915069 -g1,18030:19005467,36915069 -g1,18030:20187736,36915069 -g1,18030:21671471,36915069 -g1,18030:22974982,36915069 -g1,18030:23921977,36915069 -g1,18030:25533507,36915069 -g1,18030:27126687,36915069 -(1,18030:27126687,36915069:0,452978,115847 -r1,18039:30650359,36915069:3523672,568825,115847 -k1,18030:27126687,36915069:-3523672 -) -(1,18030:27126687,36915069:3523672,452978,115847 -k1,18030:27126687,36915069:3277 -h1,18030:30647082,36915069:0,411205,112570 -) -k1,18031:31966991,36915069:1142962 -g1,18031:31966991,36915069 -) -] -) -] -r1,18039:32583029,37701501:26214,2660238,0 -) -] -) -) -g1,18031:32583029,37111677 -) -h1,18031:6630773,37727715:0,0,0 -(1,18034:6630773,41059571:25952256,32768,229376 -(1,18034:6630773,41059571:0,32768,229376 -(1,18034:6630773,41059571:5505024,32768,229376 -r1,18039:12135797,41059571:5505024,262144,229376 -) -k1,18034:6630773,41059571:-5505024 -) -(1,18034:6630773,41059571:25952256,32768,0 -r1,18039:32583029,41059571:25952256,32768,0 -) -) -(1,18034:6630773,42663899:25952256,615776,14155 -(1,18034:6630773,42663899:1974731,582746,14155 -g1,18034:6630773,42663899 -g1,18034:8605504,42663899 -) -g1,18034:10573157,42663899 -g1,18034:12282860,42663899 -g1,18034:14887523,42663899 -k1,18034:32583029,42663899:16057368 -g1,18034:32583029,42663899 -) -(1,18038:6630773,43898603:25952256,513147,134348 -k1,18037:8279219,43898603:289229 -k1,18037:9881881,43898603:289320 -k1,18037:12542948,43898603:289319 -k1,18037:14058447,43898603:289320 -k1,18037:15741718,43898603:289320 -k1,18037:18225182,43898603:289319 -k1,18037:21180507,43898603:289320 -k1,18037:23726231,43898603:289319 -k1,18037:26501332,43898603:289320 -k1,18037:28180014,43898603:289319 -k1,18037:31422386,43898603:289320 -k1,18038:32583029,43898603:0 -) -(1,18038:6630773,44740091:25952256,505283,134349 -k1,18037:8410223,44740091:216416 -k1,18037:9618200,44740091:216417 -k1,18037:11689285,44740091:216416 -k1,18037:12715071,44740091:216416 -k1,18037:13950573,44740091:216417 -k1,18037:15490799,44740091:216399 -k1,18037:18550822,44740091:216416 -k1,18037:19999316,44740091:216417 -$1,18037:19999316,44740091 -k1,18037:21975226,44740091:0 -k1,18037:22370408,44740091:0 -k1,18037:22765590,44740091:0 -k1,18037:23160772,44740091:0 -k1,18037:24346318,44740091:0 -k1,18037:24741500,44740091:0 -k1,18037:25531864,44740091:0 -k1,18037:25927046,44740091:0 -k1,18037:27112592,44740091:0 -k1,18037:27507774,44740091:0 -k1,18037:28298138,44740091:0 -k1,18037:28693320,44740091:0 -$1,18037:30274048,44740091 -k1,18037:30697558,44740091:216416 -k1,18037:32583029,44740091:0 -) -(1,18038:6630773,45581579:25952256,513147,134348 -k1,18037:8270418,45581579:216858 -k1,18037:11219473,45581579:216859 -k1,18037:12383982,45581579:216858 -k1,18037:15748535,45581579:216859 -k1,18037:18722493,45581579:216858 -k1,18037:20900188,45581579:216858 -k1,18037:23514354,45581579:216859 -k1,18037:26415567,45581579:216858 -k1,18037:29304329,45581579:216859 -k1,18037:31923737,45581579:216858 -k1,18037:32583029,45581579:0 -) -] -(1,18039:32583029,45706769:0,0,0 -g1,18039:32583029,45706769 -) -) -] -(1,18039:6630773,47279633:25952256,0,0 -h1,18039:6630773,47279633:25952256,0,0 -) -] -(1,18039:4262630,4025873:0,0,0 -[1,18039:-473656,4025873:0,0,0 -(1,18039:-473656,-710413:0,0,0 -(1,18039:-473656,-710413:0,0,0 -g1,18039:-473656,-710413 -) -g1,18039:-473656,-710413 -) -] -) -] -!22561 -}353 -Input:2918:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!104 -{354 -[1,18183:4262630,47279633:28320399,43253760,0 -(1,18183:4262630,4025873:0,0,0 -[1,18183:-473656,4025873:0,0,0 -(1,18183:-473656,-710413:0,0,0 -(1,18183:-473656,-644877:0,0,0 -k1,18183:-473656,-644877:-65536 -) -(1,18183:-473656,4736287:0,0,0 -k1,18183:-473656,4736287:5209943 -) -g1,18183:-473656,-710413 -) -] -) -[1,18183:6630773,47279633:25952256,43253760,0 -[1,18183:6630773,4812305:25952256,786432,0 -(1,18183:6630773,4812305:25952256,513147,126483 -(1,18183:6630773,4812305:25952256,513147,126483 -g1,18183:3078558,4812305 -[1,18183:3078558,4812305:0,0,0 -(1,18183:3078558,2439708:0,1703936,0 -k1,18183:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,18183:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,18183:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 -) -] -) -) -) -] -[1,18183:3078558,4812305:0,0,0 -(1,18183:3078558,2439708:0,1703936,0 -g1,18183:29030814,2439708 -g1,18183:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,18183:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 -) -] -) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,18183:37855564,2439708:1179648,16384,0 -) -) -k1,18183:3078556,2439708:-34777008 -) -] -[1,18183:3078558,4812305:0,0,0 -(1,18183:3078558,49800853:0,16384,2228224 -k1,18183:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,18183:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,18183:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 -) -] -) -) -) -] -[1,18183:3078558,4812305:0,0,0 -(1,18183:3078558,49800853:0,16384,2228224 -g1,18183:29030814,49800853 -g1,18183:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,18183:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 -) -] -) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,18183:37855564,49800853:1179648,16384,0 -) -) -k1,18183:3078556,49800853:-34777008 -) -] -g1,18183:6630773,4812305 -g1,18183:6630773,4812305 -g1,18183:8180699,4812305 -g1,18183:9590378,4812305 -g1,18183:11674422,4812305 -g1,18183:13105728,4812305 -k1,18183:31387652,4812305:18281924 -) -) -] -[1,18183:6630773,45706769:25952256,40108032,0 -(1,18183:6630773,45706769:25952256,40108032,0 -(1,18183:6630773,45706769:0,0,0 -g1,18183:6630773,45706769 -) -[1,18183:6630773,45706769:25952256,40108032,0 -(1,18038:6630773,6254097:25952256,513147,134348 -k1,18037:9359102,6254097:217645 -k1,18037:10643018,6254097:217645 -k1,18037:14385189,6254097:217645 -k1,18037:17250489,6254097:217645 -k1,18037:19582325,6254097:217645 -k1,18037:23932014,6254097:217644 -k1,18037:24808951,6254097:217645 -k1,18037:26045681,6254097:217645 -k1,18037:27675627,6254097:217645 -k1,18037:31092740,6254097:217645 -k1,18037:32583029,6254097:0 -) -(1,18038:6630773,7095585:25952256,513147,134348 -k1,18037:7845357,7095585:195499 -k1,18037:10526637,7095585:195499 -k1,18037:12941837,7095585:195496 -k1,18037:15980943,7095585:195499 -k1,18037:17689668,7095585:195499 -k1,18037:18832818,7095585:195499 -k1,18037:20297094,7095585:195499 -k1,18037:22321047,7095585:195499 -k1,18037:23048043,7095585:195499 -k1,18037:25098212,7095585:195500 -k1,18037:26103081,7095585:195499 -k1,18037:27792146,7095585:195499 -k1,18037:30893511,7095585:195499 -k1,18038:32583029,7095585:0 -) -(1,18038:6630773,7937073:25952256,513147,134348 -g1,18037:8639451,7937073 -g1,18037:10214281,7937073 -g1,18037:12487069,7937073 -g1,18037:15035108,7937073 -g1,18037:15850375,7937073 -g1,18037:16838002,7937073 -k1,18038:32583029,7937073:13487312 -g1,18038:32583029,7937073 -) -(1,18039:6630773,10028333:25952256,555811,12975 -(1,18039:6630773,10028333:2450326,534184,12975 -g1,18039:6630773,10028333 -g1,18039:9081099,10028333 -) -k1,18039:32583029,10028333:21299594 -g1,18039:32583029,10028333 -) -(1,18044:6630773,11263037:25952256,513147,134348 -k1,18043:9394134,11263037:228428 -k1,18043:11587986,11263037:228428 -k1,18043:14576790,11263037:228428 -k1,18043:17831015,11263037:228428 -k1,18043:19007093,11263037:228427 -k1,18043:21638071,11263037:228428 -k1,18043:23057944,11263037:228428 -k1,18043:25671883,11263037:228428 -k1,18043:27638297,11263037:228399 -k1,18043:29058169,11263037:228427 -k1,18043:31096017,11263037:228399 -k1,18043:32583029,11263037:0 -) -(1,18044:6630773,12104525:25952256,513147,134348 -g1,18043:8210846,12104525 -g1,18043:8941572,12104525 -g1,18043:9496661,12104525 -g1,18043:10996124,12104525 -g1,18043:13679168,12104525 -g1,18043:14537689,12104525 -g1,18043:16622389,12104525 -g1,18043:17034610,12104525 -g1,18043:18366301,12104525 -g1,18043:19941131,12104525 -g1,18043:21420278,12104525 -g1,18043:21975367,12104525 -g1,18043:23676681,12104525 -k1,18044:32583029,12104525:6071261 -g1,18044:32583029,12104525 -) -(1,18046:6630773,12946013:25952256,513147,134348 -h1,18045:6630773,12946013:983040,0,0 -g1,18045:8766591,12946013 -g1,18045:10271953,12946013 -g1,18045:11883483,12946013 -g1,18045:12438572,12946013 -g1,18045:13906578,12946013 -g1,18045:15603960,12946013 -g1,18045:17197140,12946013 -g1,18045:20091865,12946013 -(1,18045:20091865,12946013:0,452978,115847 -r1,18183:23967249,12946013:3875384,568825,115847 -k1,18045:20091865,12946013:-3875384 -) -(1,18045:20091865,12946013:3875384,452978,115847 -k1,18045:20091865,12946013:3277 -h1,18045:23963972,12946013:0,411205,112570 -) -g1,18045:24340148,12946013 -g1,18045:25730822,12946013 -g1,18045:28298522,12946013 -g1,18045:29286149,12946013 -k1,18046:32583029,12946013:191784 -g1,18046:32583029,12946013 -) -v1,18048:6630773,13926763:0,393216,0 -(1,18183:6630773,45510161:25952256,31976614,196608 -g1,18183:6630773,45510161 -g1,18183:6630773,45510161 -g1,18183:6434165,45510161 -(1,18183:6434165,45510161:0,31976614,196608 -r1,18183:32779637,45510161:26345472,32173222,196608 -k1,18183:6434165,45510161:-26345472 -) -(1,18183:6434165,45510161:26345472,31976614,196608 -[1,18183:6630773,45510161:25952256,31780006,0 -(1,18050:6630773,14140673:25952256,410518,107478 -(1,18049:6630773,14140673:0,0,0 -g1,18049:6630773,14140673 -g1,18049:6630773,14140673 -g1,18049:6303093,14140673 -(1,18049:6303093,14140673:0,0,0 -) -g1,18049:6630773,14140673 -) -g1,18050:9476084,14140673 -g1,18050:10424522,14140673 -k1,18050:10424522,14140673:0 -h1,18050:27180243,14140673:0,0,0 -k1,18050:32583029,14140673:5402786 -g1,18050:32583029,14140673 -) -(1,18051:6630773,14806851:25952256,404226,107478 -h1,18051:6630773,14806851:0,0,0 -k1,18051:6630773,14806851:0 -h1,18051:14218270,14806851:0,0,0 -k1,18051:32583030,14806851:18364760 -g1,18051:32583030,14806851 -) -(1,18182:6630773,15532151:25952256,404226,6290 -(1,18053:6630773,15532151:0,0,0 -g1,18053:6630773,15532151 -g1,18053:6630773,15532151 -g1,18053:6303093,15532151 -(1,18053:6303093,15532151:0,0,0 -) -g1,18053:6630773,15532151 -) -g1,18182:7579210,15532151 -k1,18182:7579210,15532151:0 -h1,18182:9476084,15532151:0,0,0 -k1,18182:32583028,15532151:23106944 -g1,18182:32583028,15532151 -) -(1,18182:6630773,16198329:25952256,404226,6290 -h1,18182:6630773,16198329:0,0,0 -g1,18182:7579210,16198329 -g1,18182:7895356,16198329 -g1,18182:8211502,16198329 -k1,18182:8211502,16198329:0 -h1,18182:10108376,16198329:0,0,0 -k1,18182:32583028,16198329:22474652 -g1,18182:32583028,16198329 -) -(1,18182:6630773,16864507:25952256,404226,76021 -h1,18182:6630773,16864507:0,0,0 -g1,18182:7579210,16864507 -g1,18182:7895356,16864507 -g1,18182:8211502,16864507 -g1,18182:8527648,16864507 -g1,18182:8843794,16864507 -g1,18182:10740668,16864507 -k1,18182:10740668,16864507:0 -h1,18182:13902125,16864507:0,0,0 -k1,18182:32583029,16864507:18680904 -g1,18182:32583029,16864507 -) -(1,18182:6630773,17530685:25952256,404226,82312 -h1,18182:6630773,17530685:0,0,0 -g1,18182:7579210,17530685 -g1,18182:7895356,17530685 -g1,18182:8211502,17530685 -g1,18182:8527648,17530685 -g1,18182:8843794,17530685 -g1,18182:10740668,17530685 -g1,18182:12953688,17530685 -k1,18182:12953688,17530685:0 -h1,18182:15798999,17530685:0,0,0 -k1,18182:32583029,17530685:16784030 -g1,18182:32583029,17530685 -) -(1,18182:6630773,18196863:25952256,404226,101187 -h1,18182:6630773,18196863:0,0,0 -g1,18182:7579210,18196863 -g1,18182:7895356,18196863 -g1,18182:8211502,18196863 -g1,18182:8527648,18196863 -g1,18182:8843794,18196863 -g1,18182:10740668,18196863 -g1,18182:14850562,18196863 -k1,18182:14850562,18196863:0 -h1,18182:17695873,18196863:0,0,0 -k1,18182:32583029,18196863:14887156 -g1,18182:32583029,18196863 -) -(1,18182:6630773,18863041:25952256,404226,82312 -h1,18182:6630773,18863041:0,0,0 -g1,18182:7579210,18863041 -g1,18182:7895356,18863041 -g1,18182:8211502,18863041 -g1,18182:8527648,18863041 -g1,18182:8843794,18863041 -g1,18182:10740668,18863041 -g1,18182:12953688,18863041 -k1,18182:12953688,18863041:0 -h1,18182:15798999,18863041:0,0,0 -k1,18182:32583029,18863041:16784030 -g1,18182:32583029,18863041 -) -(1,18182:6630773,19529219:25952256,404226,82312 -h1,18182:6630773,19529219:0,0,0 -g1,18182:7579210,19529219 -g1,18182:7895356,19529219 -g1,18182:8211502,19529219 -g1,18182:8527648,19529219 -g1,18182:8843794,19529219 -g1,18182:10740668,19529219 -g1,18182:12953688,19529219 -k1,18182:12953688,19529219:0 -h1,18182:15798999,19529219:0,0,0 -k1,18182:32583029,19529219:16784030 -g1,18182:32583029,19529219 -) -(1,18182:6630773,20195397:25952256,404226,82312 -h1,18182:6630773,20195397:0,0,0 -g1,18182:7579210,20195397 -g1,18182:7895356,20195397 -g1,18182:8211502,20195397 -g1,18182:8527648,20195397 -g1,18182:8843794,20195397 -g1,18182:10740668,20195397 -g1,18182:12953688,20195397 -k1,18182:12953688,20195397:0 -h1,18182:15798999,20195397:0,0,0 -k1,18182:32583029,20195397:16784030 -g1,18182:32583029,20195397 -) -(1,18182:6630773,20861575:25952256,404226,6290 -h1,18182:6630773,20861575:0,0,0 -g1,18182:7579210,20861575 -g1,18182:7895356,20861575 -g1,18182:8211502,20861575 -g1,18182:8527648,20861575 -g1,18182:8843794,20861575 -k1,18182:8843794,20861575:0 -h1,18182:11056814,20861575:0,0,0 -k1,18182:32583030,20861575:21526216 -g1,18182:32583030,20861575 -) -(1,18182:6630773,21527753:25952256,404226,76021 -h1,18182:6630773,21527753:0,0,0 -g1,18182:7579210,21527753 -g1,18182:7895356,21527753 -g1,18182:8211502,21527753 -g1,18182:8527648,21527753 -g1,18182:8843794,21527753 -g1,18182:9159940,21527753 -g1,18182:9476086,21527753 -h1,18182:11372960,21527753:0,0,0 -k1,18182:32583028,21527753:21210068 -g1,18182:32583028,21527753 -) -(1,18182:6630773,22193931:25952256,404226,101187 -h1,18182:6630773,22193931:0,0,0 -g1,18182:7579210,22193931 -g1,18182:7895356,22193931 -g1,18182:8211502,22193931 -g1,18182:8527648,22193931 -g1,18182:8843794,22193931 -k1,18182:8843794,22193931:0 -h1,18182:11372960,22193931:0,0,0 -k1,18182:32583028,22193931:21210068 -g1,18182:32583028,22193931 -) -(1,18182:6630773,22860109:25952256,404226,76021 -h1,18182:6630773,22860109:0,0,0 -g1,18182:7579210,22860109 -g1,18182:7895356,22860109 -g1,18182:8211502,22860109 -g1,18182:8527648,22860109 -g1,18182:8843794,22860109 -g1,18182:9159940,22860109 -g1,18182:9476086,22860109 -h1,18182:11689106,22860109:0,0,0 -k1,18182:32583030,22860109:20893924 -g1,18182:32583030,22860109 -) -(1,18182:6630773,23526287:25952256,404226,101187 -h1,18182:6630773,23526287:0,0,0 -g1,18182:7579210,23526287 -g1,18182:7895356,23526287 -g1,18182:8211502,23526287 -g1,18182:8527648,23526287 -g1,18182:8843794,23526287 -g1,18182:11056814,23526287 -k1,18182:11056814,23526287:0 -h1,18182:13269834,23526287:0,0,0 -k1,18182:32583030,23526287:19313196 -g1,18182:32583030,23526287 -) -(1,18182:6630773,24192465:25952256,404226,76021 -h1,18182:6630773,24192465:0,0,0 -g1,18182:7579210,24192465 -g1,18182:7895356,24192465 -g1,18182:8211502,24192465 -g1,18182:8527648,24192465 -g1,18182:8843794,24192465 -g1,18182:9159940,24192465 -g1,18182:9476086,24192465 -h1,18182:11689106,24192465:0,0,0 -k1,18182:32583030,24192465:20893924 -g1,18182:32583030,24192465 -) -(1,18182:6630773,24858643:25952256,404226,107478 -h1,18182:6630773,24858643:0,0,0 -g1,18182:7579210,24858643 -g1,18182:7895356,24858643 -g1,18182:8211502,24858643 -g1,18182:8527648,24858643 -g1,18182:8843794,24858643 -g1,18182:11056814,24858643 -g1,18182:13269834,24858643 -k1,18182:13269834,24858643:0 -h1,18182:17379728,24858643:0,0,0 -k1,18182:32583029,24858643:15203301 -g1,18182:32583029,24858643 -) -(1,18182:6630773,25524821:25952256,404226,76021 -h1,18182:6630773,25524821:0,0,0 -g1,18182:7579210,25524821 -g1,18182:7895356,25524821 -g1,18182:8211502,25524821 -g1,18182:8527648,25524821 -g1,18182:8843794,25524821 -g1,18182:9159940,25524821 -g1,18182:9476086,25524821 -h1,18182:11689106,25524821:0,0,0 -k1,18182:32583030,25524821:20893924 -g1,18182:32583030,25524821 -) -(1,18182:6630773,26190999:25952256,404226,101187 -h1,18182:6630773,26190999:0,0,0 -g1,18182:7579210,26190999 -g1,18182:7895356,26190999 -g1,18182:8211502,26190999 -g1,18182:8527648,26190999 -g1,18182:8843794,26190999 -k1,18182:8843794,26190999:0 -h1,18182:11372960,26190999:0,0,0 -k1,18182:32583028,26190999:21210068 -g1,18182:32583028,26190999 -) -(1,18182:6630773,26857177:25952256,404226,76021 -h1,18182:6630773,26857177:0,0,0 -g1,18182:7579210,26857177 -g1,18182:7895356,26857177 -g1,18182:8211502,26857177 -g1,18182:8527648,26857177 -g1,18182:8843794,26857177 -g1,18182:9159940,26857177 -g1,18182:9476086,26857177 -h1,18182:11689106,26857177:0,0,0 -k1,18182:32583030,26857177:20893924 -g1,18182:32583030,26857177 -) -(1,18182:6630773,27523355:25952256,404226,101187 -h1,18182:6630773,27523355:0,0,0 -g1,18182:7579210,27523355 -g1,18182:7895356,27523355 -g1,18182:8211502,27523355 -g1,18182:8527648,27523355 -g1,18182:8843794,27523355 -g1,18182:11056814,27523355 -k1,18182:11056814,27523355:0 -h1,18182:13269834,27523355:0,0,0 -k1,18182:32583030,27523355:19313196 -g1,18182:32583030,27523355 -) -(1,18182:6630773,28189533:25952256,404226,76021 -h1,18182:6630773,28189533:0,0,0 -g1,18182:7579210,28189533 -g1,18182:7895356,28189533 -g1,18182:8211502,28189533 -g1,18182:8527648,28189533 -g1,18182:8843794,28189533 -g1,18182:9159940,28189533 -g1,18182:9476086,28189533 -h1,18182:11689106,28189533:0,0,0 -k1,18182:32583030,28189533:20893924 -g1,18182:32583030,28189533 -) -(1,18182:6630773,28855711:25952256,404226,101187 -h1,18182:6630773,28855711:0,0,0 -g1,18182:7579210,28855711 -g1,18182:7895356,28855711 -g1,18182:8211502,28855711 -k1,18182:8211502,28855711:0 -h1,18182:10108376,28855711:0,0,0 -k1,18182:32583028,28855711:22474652 -g1,18182:32583028,28855711 -) -(1,18182:6630773,29521889:25952256,404226,76021 -h1,18182:6630773,29521889:0,0,0 -g1,18182:7579210,29521889 -g1,18182:7895356,29521889 -g1,18182:8211502,29521889 -g1,18182:8527648,29521889 -g1,18182:8843794,29521889 -h1,18182:10740668,29521889:0,0,0 -k1,18182:32583028,29521889:21842360 -g1,18182:32583028,29521889 -) -(1,18182:6630773,30188067:25952256,404226,6290 -h1,18182:6630773,30188067:0,0,0 -g1,18182:7579210,30188067 -g1,18182:7895356,30188067 -g1,18182:8211502,30188067 -g1,18182:8527648,30188067 -g1,18182:8843794,30188067 -k1,18182:8843794,30188067:0 -h1,18182:11372960,30188067:0,0,0 -k1,18182:32583028,30188067:21210068 -g1,18182:32583028,30188067 -) -(1,18182:6630773,30854245:25952256,404226,6290 -h1,18182:6630773,30854245:0,0,0 -g1,18182:7579210,30854245 -g1,18182:7895356,30854245 -g1,18182:8211502,30854245 -g1,18182:8527648,30854245 -g1,18182:8843794,30854245 -g1,18182:9159940,30854245 -g1,18182:9476086,30854245 -k1,18182:9476086,30854245:0 -h1,18182:12953689,30854245:0,0,0 -k1,18182:32583029,30854245:19629340 -g1,18182:32583029,30854245 -) -(1,18182:6630773,31520423:25952256,404226,76021 -h1,18182:6630773,31520423:0,0,0 -g1,18182:7579210,31520423 -g1,18182:7895356,31520423 -g1,18182:8211502,31520423 -g1,18182:8527648,31520423 -g1,18182:8843794,31520423 -g1,18182:9159940,31520423 -g1,18182:9476086,31520423 -g1,18182:9792232,31520423 -g1,18182:10108378,31520423 -h1,18182:12005252,31520423:0,0,0 -k1,18182:32583028,31520423:20577776 -g1,18182:32583028,31520423 -) -(1,18182:6630773,32186601:25952256,404226,107478 -h1,18182:6630773,32186601:0,0,0 -g1,18182:7579210,32186601 -g1,18182:7895356,32186601 -g1,18182:8211502,32186601 -g1,18182:8527648,32186601 -g1,18182:8843794,32186601 -g1,18182:9159940,32186601 -g1,18182:9476086,32186601 -g1,18182:9792232,32186601 -g1,18182:10108378,32186601 -k1,18182:10108378,32186601:0 -h1,18182:16747438,32186601:0,0,0 -k1,18182:32583029,32186601:15835591 -g1,18182:32583029,32186601 -) -(1,18182:6630773,32852779:25952256,404226,76021 -h1,18182:6630773,32852779:0,0,0 -g1,18182:7579210,32852779 -g1,18182:7895356,32852779 -g1,18182:8211502,32852779 -g1,18182:8527648,32852779 -g1,18182:8843794,32852779 -g1,18182:9159940,32852779 -g1,18182:9476086,32852779 -g1,18182:9792232,32852779 -g1,18182:10108378,32852779 -g1,18182:10424524,32852779 -g1,18182:10740670,32852779 -h1,18182:12637544,32852779:0,0,0 -k1,18182:32583028,32852779:19945484 -g1,18182:32583028,32852779 -) -(1,18182:6630773,33518957:25952256,404226,76021 -h1,18182:6630773,33518957:0,0,0 -g1,18182:7579210,33518957 -g1,18182:7895356,33518957 -g1,18182:8211502,33518957 -g1,18182:8527648,33518957 -g1,18182:8843794,33518957 -g1,18182:9159940,33518957 -g1,18182:9476086,33518957 -g1,18182:9792232,33518957 -g1,18182:10108378,33518957 -h1,18182:12005252,33518957:0,0,0 -k1,18182:32583028,33518957:20577776 -g1,18182:32583028,33518957 -) -(1,18182:6630773,34185135:25952256,404226,6290 -h1,18182:6630773,34185135:0,0,0 -g1,18182:7579210,34185135 -g1,18182:7895356,34185135 -g1,18182:8211502,34185135 -g1,18182:8527648,34185135 -g1,18182:8843794,34185135 -g1,18182:9159940,34185135 -g1,18182:9476086,34185135 -g1,18182:9792232,34185135 -g1,18182:10108378,34185135 -k1,18182:10108378,34185135:0 -h1,18182:14218272,34185135:0,0,0 -k1,18182:32583028,34185135:18364756 -g1,18182:32583028,34185135 -) -(1,18182:6630773,34851313:25952256,404226,76021 -h1,18182:6630773,34851313:0,0,0 -g1,18182:7579210,34851313 -g1,18182:7895356,34851313 -g1,18182:8211502,34851313 -g1,18182:8527648,34851313 -g1,18182:8843794,34851313 -g1,18182:9159940,34851313 -g1,18182:9476086,34851313 -g1,18182:9792232,34851313 -g1,18182:10108378,34851313 -g1,18182:10424524,34851313 -g1,18182:10740670,34851313 -h1,18182:12637544,34851313:0,0,0 -k1,18182:32583028,34851313:19945484 -g1,18182:32583028,34851313 -) -(1,18182:6630773,35517491:25952256,404226,76021 -h1,18182:6630773,35517491:0,0,0 -g1,18182:7579210,35517491 -g1,18182:7895356,35517491 -g1,18182:8211502,35517491 -g1,18182:8527648,35517491 -g1,18182:8843794,35517491 -g1,18182:9159940,35517491 -g1,18182:9476086,35517491 -g1,18182:9792232,35517491 -g1,18182:10108378,35517491 -h1,18182:12005252,35517491:0,0,0 -k1,18182:32583028,35517491:20577776 -g1,18182:32583028,35517491 -) -(1,18182:6630773,36183669:25952256,404226,9436 -h1,18182:6630773,36183669:0,0,0 -g1,18182:7579210,36183669 -g1,18182:7895356,36183669 -g1,18182:8211502,36183669 -g1,18182:8527648,36183669 -g1,18182:8843794,36183669 -g1,18182:9159940,36183669 -g1,18182:9476086,36183669 -g1,18182:9792232,36183669 -g1,18182:10108378,36183669 -k1,18182:10108378,36183669:0 -h1,18182:13585981,36183669:0,0,0 -k1,18182:32583029,36183669:18997048 -g1,18182:32583029,36183669 -) -(1,18182:6630773,36849847:25952256,404226,76021 -h1,18182:6630773,36849847:0,0,0 -g1,18182:7579210,36849847 -g1,18182:7895356,36849847 -g1,18182:8211502,36849847 -g1,18182:8527648,36849847 -g1,18182:8843794,36849847 -g1,18182:9159940,36849847 -g1,18182:9476086,36849847 -g1,18182:9792232,36849847 -g1,18182:10108378,36849847 -g1,18182:10424524,36849847 -g1,18182:10740670,36849847 -h1,18182:12637544,36849847:0,0,0 -k1,18182:32583028,36849847:19945484 -g1,18182:32583028,36849847 -) -(1,18182:6630773,37516025:25952256,404226,76021 -h1,18182:6630773,37516025:0,0,0 -g1,18182:7579210,37516025 -g1,18182:7895356,37516025 -g1,18182:8211502,37516025 -g1,18182:8527648,37516025 -g1,18182:8843794,37516025 -g1,18182:9159940,37516025 -g1,18182:9476086,37516025 -g1,18182:9792232,37516025 -g1,18182:10108378,37516025 -h1,18182:12005252,37516025:0,0,0 -k1,18182:32583028,37516025:20577776 -g1,18182:32583028,37516025 -) -(1,18182:6630773,38182203:25952256,404226,9436 -h1,18182:6630773,38182203:0,0,0 -g1,18182:7579210,38182203 -g1,18182:7895356,38182203 -g1,18182:8211502,38182203 -g1,18182:8527648,38182203 -g1,18182:8843794,38182203 -g1,18182:9159940,38182203 -g1,18182:9476086,38182203 -g1,18182:9792232,38182203 -g1,18182:10108378,38182203 -k1,18182:10108378,38182203:0 -h1,18182:12953689,38182203:0,0,0 -k1,18182:32583029,38182203:19629340 -g1,18182:32583029,38182203 -) -(1,18182:6630773,38848381:25952256,404226,76021 -h1,18182:6630773,38848381:0,0,0 -g1,18182:7579210,38848381 -g1,18182:7895356,38848381 -g1,18182:8211502,38848381 -g1,18182:8527648,38848381 -g1,18182:8843794,38848381 -g1,18182:9159940,38848381 -g1,18182:9476086,38848381 -g1,18182:9792232,38848381 -g1,18182:10108378,38848381 -g1,18182:10424524,38848381 -g1,18182:10740670,38848381 -h1,18182:12637544,38848381:0,0,0 -k1,18182:32583028,38848381:19945484 -g1,18182:32583028,38848381 -) -(1,18182:6630773,39514559:25952256,404226,76021 -h1,18182:6630773,39514559:0,0,0 -g1,18182:7579210,39514559 -g1,18182:7895356,39514559 -g1,18182:8211502,39514559 -g1,18182:8527648,39514559 -g1,18182:8843794,39514559 -g1,18182:9159940,39514559 -g1,18182:9476086,39514559 -g1,18182:9792232,39514559 -g1,18182:10108378,39514559 -h1,18182:12005252,39514559:0,0,0 -k1,18182:32583028,39514559:20577776 -g1,18182:32583028,39514559 -) -(1,18182:6630773,40180737:25952256,404226,76021 -h1,18182:6630773,40180737:0,0,0 -g1,18182:7579210,40180737 -g1,18182:7895356,40180737 -g1,18182:8211502,40180737 -g1,18182:8527648,40180737 -g1,18182:8843794,40180737 -g1,18182:9159940,40180737 -g1,18182:9476086,40180737 -h1,18182:11372960,40180737:0,0,0 -k1,18182:32583028,40180737:21210068 -g1,18182:32583028,40180737 -) -(1,18182:6630773,40846915:25952256,404226,101187 -h1,18182:6630773,40846915:0,0,0 -g1,18182:7579210,40846915 -g1,18182:7895356,40846915 -g1,18182:8211502,40846915 -g1,18182:8527648,40846915 -g1,18182:8843794,40846915 -k1,18182:8843794,40846915:0 -h1,18182:15482853,40846915:0,0,0 -k1,18182:32583029,40846915:17100176 -g1,18182:32583029,40846915 -) -(1,18182:6630773,41513093:25952256,404226,76021 -h1,18182:6630773,41513093:0,0,0 -g1,18182:7579210,41513093 -g1,18182:7895356,41513093 -g1,18182:8211502,41513093 -g1,18182:8527648,41513093 -g1,18182:8843794,41513093 -g1,18182:9159940,41513093 -g1,18182:9476086,41513093 -h1,18182:11372960,41513093:0,0,0 -k1,18182:32583028,41513093:21210068 -g1,18182:32583028,41513093 -) -(1,18182:6630773,42179271:25952256,410518,6290 -h1,18182:6630773,42179271:0,0,0 -g1,18182:7579210,42179271 -g1,18182:7895356,42179271 -g1,18182:8211502,42179271 -g1,18182:8527648,42179271 -g1,18182:8843794,42179271 -g1,18182:9159940,42179271 -g1,18182:9476086,42179271 -k1,18182:9476086,42179271:0 -h1,18182:15799000,42179271:0,0,0 -k1,18182:32583028,42179271:16784028 -g1,18182:32583028,42179271 -) -(1,18182:6630773,42845449:25952256,404226,76021 -h1,18182:6630773,42845449:0,0,0 -g1,18182:7579210,42845449 -g1,18182:7895356,42845449 -g1,18182:8211502,42845449 -g1,18182:8527648,42845449 -g1,18182:8843794,42845449 -g1,18182:9159940,42845449 -g1,18182:9476086,42845449 -g1,18182:9792232,42845449 -g1,18182:10108378,42845449 -h1,18182:12005252,42845449:0,0,0 -k1,18182:32583028,42845449:20577776 -g1,18182:32583028,42845449 -) -(1,18182:6630773,43511627:25952256,404226,6290 -h1,18182:6630773,43511627:0,0,0 -g1,18182:7579210,43511627 -g1,18182:7895356,43511627 -g1,18182:8211502,43511627 -g1,18182:8527648,43511627 -g1,18182:8843794,43511627 -g1,18182:9159940,43511627 -g1,18182:9476086,43511627 -g1,18182:9792232,43511627 -g1,18182:10108378,43511627 -k1,18182:10108378,43511627:0 -h1,18182:17063583,43511627:0,0,0 -k1,18182:32583029,43511627:15519446 -g1,18182:32583029,43511627 -) -(1,18182:6630773,44177805:25952256,404226,6290 -h1,18182:6630773,44177805:0,0,0 -g1,18182:7579210,44177805 -g1,18182:7895356,44177805 -g1,18182:8211502,44177805 -g1,18182:8527648,44177805 -g1,18182:8843794,44177805 -g1,18182:9159940,44177805 -g1,18182:9476086,44177805 -g1,18182:9792232,44177805 -g1,18182:10108378,44177805 -g1,18182:10424524,44177805 -g1,18182:10740670,44177805 -g1,18182:18644312,44177805 -k1,18182:18644312,44177805:0 -h1,18182:23702643,44177805:0,0,0 -k1,18182:32583029,44177805:8880386 -g1,18182:32583029,44177805 -) -(1,18182:6630773,44843983:25952256,404226,76021 -h1,18182:6630773,44843983:0,0,0 -g1,18182:7579210,44843983 -g1,18182:7895356,44843983 -g1,18182:8211502,44843983 -g1,18182:8527648,44843983 -g1,18182:8843794,44843983 -g1,18182:9159940,44843983 -g1,18182:9476086,44843983 -g1,18182:9792232,44843983 -g1,18182:10108378,44843983 -g1,18182:10424524,44843983 -g1,18182:10740670,44843983 -g1,18182:11056816,44843983 -g1,18182:11372962,44843983 -h1,18182:13269836,44843983:0,0,0 -k1,18182:32583028,44843983:19313192 -g1,18182:32583028,44843983 -) -(1,18182:6630773,45510161:25952256,404226,0 -h1,18182:6630773,45510161:0,0,0 -g1,18182:7579210,45510161 -g1,18182:7895356,45510161 -g1,18182:8211502,45510161 -g1,18182:8527648,45510161 -g1,18182:8843794,45510161 -g1,18182:9159940,45510161 -g1,18182:9476086,45510161 -g1,18182:9792232,45510161 -g1,18182:10108378,45510161 -g1,18182:10424524,45510161 -g1,18182:10740670,45510161 -g1,18182:11056816,45510161 -g1,18182:11372962,45510161 -k1,18182:11372962,45510161:0 -h1,18182:12637545,45510161:0,0,0 -k1,18182:32583029,45510161:19945484 -g1,18182:32583029,45510161 -) -] -) -g1,18183:32583029,45510161 -g1,18183:6630773,45510161 -g1,18183:6630773,45510161 -g1,18183:32583029,45510161 -g1,18183:32583029,45510161 -) -] -(1,18183:32583029,45706769:0,0,0 -g1,18183:32583029,45706769 -) -) -] -(1,18183:6630773,47279633:25952256,0,0 -h1,18183:6630773,47279633:25952256,0,0 -) -] -(1,18183:4262630,4025873:0,0,0 -[1,18183:-473656,4025873:0,0,0 -(1,18183:-473656,-710413:0,0,0 -(1,18183:-473656,-710413:0,0,0 -g1,18183:-473656,-710413 -) -g1,18183:-473656,-710413 -) -] -) -] -!25916 -}354 -!12 -{355 -[1,18183:4262630,47279633:28320399,43253760,0 -(1,18183:4262630,4025873:0,0,0 -[1,18183:-473656,4025873:0,0,0 -(1,18183:-473656,-710413:0,0,0 -(1,18183:-473656,-644877:0,0,0 -k1,18183:-473656,-644877:-65536 -) -(1,18183:-473656,4736287:0,0,0 -k1,18183:-473656,4736287:5209943 -) -g1,18183:-473656,-710413 -) -] -) -[1,18183:6630773,47279633:25952256,43253760,0 -[1,18183:6630773,4812305:25952256,786432,0 -(1,18183:6630773,4812305:25952256,505283,126483 -(1,18183:6630773,4812305:25952256,505283,126483 -g1,18183:3078558,4812305 -[1,18183:3078558,4812305:0,0,0 -(1,18183:3078558,2439708:0,1703936,0 -k1,18183:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,18183:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,18183:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 -) -] -) -) -) -] -[1,18183:3078558,4812305:0,0,0 -(1,18183:3078558,2439708:0,1703936,0 -g1,18183:29030814,2439708 -g1,18183:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,18183:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 -) -] -) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,18183:37855564,2439708:1179648,16384,0 -) -) -k1,18183:3078556,2439708:-34777008 -) -] -[1,18183:3078558,4812305:0,0,0 -(1,18183:3078558,49800853:0,16384,2228224 -k1,18183:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,18183:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,18183:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 -) -] -) -) -) -] -[1,18183:3078558,4812305:0,0,0 -(1,18183:3078558,49800853:0,16384,2228224 -g1,18183:29030814,49800853 -g1,18183:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,18183:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 -) -] -) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,18183:37855564,49800853:1179648,16384,0 -) -) -k1,18183:3078556,49800853:-34777008 -) -] -g1,18183:6630773,4812305 -k1,18183:25146660,4812305:17320510 -g1,18183:26880087,4812305 -g1,18183:29193507,4812305 -g1,18183:30603186,4812305 -) -) -] -[1,18183:6630773,45706769:25952256,40108032,0 -(1,18183:6630773,45706769:25952256,40108032,0 -(1,18183:6630773,45706769:0,0,0 -g1,18183:6630773,45706769 -) -[1,18183:6630773,45706769:25952256,40108032,0 -v1,18183:6630773,6254097:0,393216,0 -(1,18183:6630773,45510161:25952256,39649280,196608 -g1,18183:6630773,45510161 -g1,18183:6630773,45510161 -g1,18183:6434165,45510161 -(1,18183:6434165,45510161:0,39649280,196608 -r1,18183:32779637,45510161:26345472,39845888,196608 -k1,18183:6434165,45510161:-26345472 -) -(1,18183:6434165,45510161:26345472,39649280,196608 -[1,18183:6630773,45510161:25952256,39452672,0 -(1,18182:6630773,6461715:25952256,404226,76021 -h1,18182:6630773,6461715:0,0,0 -g1,18182:7579210,6461715 -g1,18182:7895356,6461715 -g1,18182:8211502,6461715 -g1,18182:8527648,6461715 -g1,18182:8843794,6461715 -g1,18182:9159940,6461715 -g1,18182:9476086,6461715 -g1,18182:9792232,6461715 -g1,18182:10108378,6461715 -g1,18182:10424524,6461715 -g1,18182:10740670,6461715 -g1,18182:11056816,6461715 -g1,18182:11372962,6461715 -g1,18182:11689108,6461715 -g1,18182:12005254,6461715 -h1,18182:13902128,6461715:0,0,0 -k1,18182:32583028,6461715:18680900 -g1,18182:32583028,6461715 -) -(1,18182:6630773,7127893:25952256,404226,76021 -h1,18182:6630773,7127893:0,0,0 -g1,18182:7579210,7127893 -g1,18182:7895356,7127893 -g1,18182:8211502,7127893 -g1,18182:8527648,7127893 -g1,18182:8843794,7127893 -g1,18182:9159940,7127893 -g1,18182:9476086,7127893 -g1,18182:9792232,7127893 -g1,18182:10108378,7127893 -g1,18182:10424524,7127893 -g1,18182:10740670,7127893 -g1,18182:11056816,7127893 -g1,18182:11372962,7127893 -h1,18182:13269836,7127893:0,0,0 -k1,18182:32583028,7127893:19313192 -g1,18182:32583028,7127893 -) -(1,18182:6630773,7794071:25952256,379060,101187 -h1,18182:6630773,7794071:0,0,0 -g1,18182:7579210,7794071 -g1,18182:7895356,7794071 -g1,18182:8211502,7794071 -g1,18182:8527648,7794071 -g1,18182:8843794,7794071 -g1,18182:9159940,7794071 -g1,18182:9476086,7794071 -g1,18182:9792232,7794071 -g1,18182:10108378,7794071 -g1,18182:10424524,7794071 -g1,18182:10740670,7794071 -g1,18182:11056816,7794071 -g1,18182:11372962,7794071 -k1,18182:11372962,7794071:0 -h1,18182:12321399,7794071:0,0,0 -k1,18182:32583029,7794071:20261630 -g1,18182:32583029,7794071 -) -(1,18182:6630773,8460249:25952256,404226,76021 -h1,18182:6630773,8460249:0,0,0 -g1,18182:7579210,8460249 -g1,18182:7895356,8460249 -g1,18182:8211502,8460249 -g1,18182:8527648,8460249 -g1,18182:8843794,8460249 -g1,18182:9159940,8460249 -g1,18182:9476086,8460249 -g1,18182:9792232,8460249 -g1,18182:10108378,8460249 -g1,18182:10424524,8460249 -g1,18182:10740670,8460249 -g1,18182:11056816,8460249 -g1,18182:11372962,8460249 -g1,18182:11689108,8460249 -g1,18182:12005254,8460249 -h1,18182:13902128,8460249:0,0,0 -k1,18182:32583028,8460249:18680900 -g1,18182:32583028,8460249 -) -(1,18182:6630773,9126427:25952256,410518,76021 -h1,18182:6630773,9126427:0,0,0 -g1,18182:7579210,9126427 -g1,18182:7895356,9126427 -g1,18182:8211502,9126427 -g1,18182:8527648,9126427 -g1,18182:8843794,9126427 -g1,18182:9159940,9126427 -g1,18182:9476086,9126427 -g1,18182:9792232,9126427 -g1,18182:10108378,9126427 -g1,18182:10424524,9126427 -g1,18182:10740670,9126427 -g1,18182:11056816,9126427 -g1,18182:11372962,9126427 -g1,18182:11689108,9126427 -g1,18182:12005254,9126427 -g1,18182:14218274,9126427 -k1,18182:14218274,9126427:0 -h1,18182:16431294,9126427:0,0,0 -k1,18182:32583029,9126427:16151735 -g1,18182:32583029,9126427 -) -(1,18182:6630773,9792605:25952256,404226,76021 -h1,18182:6630773,9792605:0,0,0 -g1,18182:7579210,9792605 -g1,18182:7895356,9792605 -g1,18182:8211502,9792605 -g1,18182:8527648,9792605 -g1,18182:8843794,9792605 -g1,18182:9159940,9792605 -g1,18182:9476086,9792605 -g1,18182:9792232,9792605 -g1,18182:10108378,9792605 -g1,18182:10424524,9792605 -g1,18182:10740670,9792605 -g1,18182:11056816,9792605 -g1,18182:11372962,9792605 -g1,18182:11689108,9792605 -g1,18182:12005254,9792605 -g1,18182:12321400,9792605 -g1,18182:12637546,9792605 -h1,18182:14534420,9792605:0,0,0 -k1,18182:32583028,9792605:18048608 -g1,18182:32583028,9792605 -) -(1,18182:6630773,10458783:25952256,404226,76021 -h1,18182:6630773,10458783:0,0,0 -g1,18182:7579210,10458783 -g1,18182:7895356,10458783 -g1,18182:8211502,10458783 -g1,18182:8527648,10458783 -g1,18182:8843794,10458783 -g1,18182:9159940,10458783 -g1,18182:9476086,10458783 -g1,18182:9792232,10458783 -g1,18182:10108378,10458783 -g1,18182:10424524,10458783 -g1,18182:10740670,10458783 -g1,18182:11056816,10458783 -g1,18182:11372962,10458783 -g1,18182:11689108,10458783 -g1,18182:12005254,10458783 -h1,18182:13902128,10458783:0,0,0 -k1,18182:32583028,10458783:18680900 -g1,18182:32583028,10458783 -) -(1,18182:6630773,11124961:25952256,404226,76021 -h1,18182:6630773,11124961:0,0,0 -g1,18182:7579210,11124961 -g1,18182:7895356,11124961 -g1,18182:8211502,11124961 -g1,18182:8527648,11124961 -g1,18182:8843794,11124961 -g1,18182:9159940,11124961 -g1,18182:9476086,11124961 -g1,18182:9792232,11124961 -g1,18182:10108378,11124961 -g1,18182:10424524,11124961 -g1,18182:10740670,11124961 -g1,18182:11056816,11124961 -g1,18182:11372962,11124961 -h1,18182:13269836,11124961:0,0,0 -k1,18182:32583028,11124961:19313192 -g1,18182:32583028,11124961 -) -(1,18182:6630773,11791139:25952256,404226,76021 -h1,18182:6630773,11791139:0,0,0 -g1,18182:7579210,11791139 -g1,18182:7895356,11791139 -g1,18182:8211502,11791139 -g1,18182:8527648,11791139 -g1,18182:8843794,11791139 -g1,18182:9159940,11791139 -g1,18182:9476086,11791139 -g1,18182:9792232,11791139 -g1,18182:10108378,11791139 -g1,18182:10424524,11791139 -g1,18182:10740670,11791139 -h1,18182:12637544,11791139:0,0,0 -k1,18182:32583028,11791139:19945484 -g1,18182:32583028,11791139 -) -(1,18182:6630773,12457317:25952256,404226,6290 -h1,18182:6630773,12457317:0,0,0 -g1,18182:7579210,12457317 -g1,18182:7895356,12457317 -g1,18182:8211502,12457317 -g1,18182:8527648,12457317 -g1,18182:8843794,12457317 -g1,18182:9159940,12457317 -g1,18182:9476086,12457317 -g1,18182:9792232,12457317 -g1,18182:10108378,12457317 -g1,18182:10424524,12457317 -g1,18182:10740670,12457317 -g1,18182:16431293,12457317 -k1,18182:16431293,12457317:0 -h1,18182:21489624,12457317:0,0,0 -k1,18182:32583029,12457317:11093405 -g1,18182:32583029,12457317 -) -(1,18182:6630773,13123495:25952256,404226,76021 -h1,18182:6630773,13123495:0,0,0 -g1,18182:7579210,13123495 -g1,18182:7895356,13123495 -g1,18182:8211502,13123495 -g1,18182:8527648,13123495 -g1,18182:8843794,13123495 -g1,18182:9159940,13123495 -g1,18182:9476086,13123495 -g1,18182:9792232,13123495 -g1,18182:10108378,13123495 -g1,18182:10424524,13123495 -g1,18182:10740670,13123495 -g1,18182:11056816,13123495 -g1,18182:11372962,13123495 -h1,18182:13269836,13123495:0,0,0 -k1,18182:32583028,13123495:19313192 -g1,18182:32583028,13123495 -) -(1,18182:6630773,13789673:25952256,404226,0 -h1,18182:6630773,13789673:0,0,0 -g1,18182:7579210,13789673 -g1,18182:7895356,13789673 -g1,18182:8211502,13789673 -g1,18182:8527648,13789673 -g1,18182:8843794,13789673 -g1,18182:9159940,13789673 -g1,18182:9476086,13789673 -g1,18182:9792232,13789673 -g1,18182:10108378,13789673 -g1,18182:10424524,13789673 -g1,18182:10740670,13789673 -g1,18182:11056816,13789673 -g1,18182:11372962,13789673 -k1,18182:11372962,13789673:0 -h1,18182:12637545,13789673:0,0,0 -k1,18182:32583029,13789673:19945484 -g1,18182:32583029,13789673 -) -(1,18182:6630773,14455851:25952256,404226,76021 -h1,18182:6630773,14455851:0,0,0 -g1,18182:7579210,14455851 -g1,18182:7895356,14455851 -g1,18182:8211502,14455851 -g1,18182:8527648,14455851 -g1,18182:8843794,14455851 -g1,18182:9159940,14455851 -g1,18182:9476086,14455851 -g1,18182:9792232,14455851 -g1,18182:10108378,14455851 -g1,18182:10424524,14455851 -g1,18182:10740670,14455851 -g1,18182:11056816,14455851 -g1,18182:11372962,14455851 -g1,18182:11689108,14455851 -g1,18182:12005254,14455851 -h1,18182:13902128,14455851:0,0,0 -k1,18182:32583028,14455851:18680900 -g1,18182:32583028,14455851 -) -(1,18182:6630773,15122029:25952256,404226,76021 -h1,18182:6630773,15122029:0,0,0 -g1,18182:7579210,15122029 -g1,18182:7895356,15122029 -g1,18182:8211502,15122029 -g1,18182:8527648,15122029 -g1,18182:8843794,15122029 -g1,18182:9159940,15122029 -g1,18182:9476086,15122029 -g1,18182:9792232,15122029 -g1,18182:10108378,15122029 -g1,18182:10424524,15122029 -g1,18182:10740670,15122029 -g1,18182:11056816,15122029 -g1,18182:11372962,15122029 -h1,18182:13269836,15122029:0,0,0 -k1,18182:32583028,15122029:19313192 -g1,18182:32583028,15122029 -) -(1,18182:6630773,15788207:25952256,379060,101187 -h1,18182:6630773,15788207:0,0,0 -g1,18182:7579210,15788207 -g1,18182:7895356,15788207 -g1,18182:8211502,15788207 -g1,18182:8527648,15788207 -g1,18182:8843794,15788207 -g1,18182:9159940,15788207 -g1,18182:9476086,15788207 -g1,18182:9792232,15788207 -g1,18182:10108378,15788207 -g1,18182:10424524,15788207 -g1,18182:10740670,15788207 -g1,18182:11056816,15788207 -g1,18182:11372962,15788207 -k1,18182:11372962,15788207:0 -h1,18182:12321399,15788207:0,0,0 -k1,18182:32583029,15788207:20261630 -g1,18182:32583029,15788207 -) -(1,18182:6630773,16454385:25952256,404226,76021 -h1,18182:6630773,16454385:0,0,0 -g1,18182:7579210,16454385 -g1,18182:7895356,16454385 -g1,18182:8211502,16454385 -g1,18182:8527648,16454385 -g1,18182:8843794,16454385 -g1,18182:9159940,16454385 -g1,18182:9476086,16454385 -g1,18182:9792232,16454385 -g1,18182:10108378,16454385 -g1,18182:10424524,16454385 -g1,18182:10740670,16454385 -g1,18182:11056816,16454385 -g1,18182:11372962,16454385 -g1,18182:11689108,16454385 -g1,18182:12005254,16454385 -h1,18182:13902128,16454385:0,0,0 -k1,18182:32583028,16454385:18680900 -g1,18182:32583028,16454385 -) -(1,18182:6630773,17120563:25952256,410518,76021 -h1,18182:6630773,17120563:0,0,0 -g1,18182:7579210,17120563 -g1,18182:7895356,17120563 -g1,18182:8211502,17120563 -g1,18182:8527648,17120563 -g1,18182:8843794,17120563 -g1,18182:9159940,17120563 -g1,18182:9476086,17120563 -g1,18182:9792232,17120563 -g1,18182:10108378,17120563 -g1,18182:10424524,17120563 -g1,18182:10740670,17120563 -g1,18182:11056816,17120563 -g1,18182:11372962,17120563 -g1,18182:11689108,17120563 -g1,18182:12005254,17120563 -g1,18182:14218274,17120563 -k1,18182:14218274,17120563:0 -h1,18182:16431294,17120563:0,0,0 -k1,18182:32583029,17120563:16151735 -g1,18182:32583029,17120563 -) -(1,18182:6630773,17786741:25952256,404226,76021 -h1,18182:6630773,17786741:0,0,0 -g1,18182:7579210,17786741 -g1,18182:7895356,17786741 -g1,18182:8211502,17786741 -g1,18182:8527648,17786741 -g1,18182:8843794,17786741 -g1,18182:9159940,17786741 -g1,18182:9476086,17786741 -g1,18182:9792232,17786741 -g1,18182:10108378,17786741 -g1,18182:10424524,17786741 -g1,18182:10740670,17786741 -g1,18182:11056816,17786741 -g1,18182:11372962,17786741 -g1,18182:11689108,17786741 -g1,18182:12005254,17786741 -g1,18182:12321400,17786741 -g1,18182:12637546,17786741 -h1,18182:14534420,17786741:0,0,0 -k1,18182:32583028,17786741:18048608 -g1,18182:32583028,17786741 -) -(1,18182:6630773,18452919:25952256,404226,76021 -h1,18182:6630773,18452919:0,0,0 -g1,18182:7579210,18452919 -g1,18182:7895356,18452919 -g1,18182:8211502,18452919 -g1,18182:8527648,18452919 -g1,18182:8843794,18452919 -g1,18182:9159940,18452919 -g1,18182:9476086,18452919 -g1,18182:9792232,18452919 -g1,18182:10108378,18452919 -g1,18182:10424524,18452919 -g1,18182:10740670,18452919 -g1,18182:11056816,18452919 -g1,18182:11372962,18452919 -g1,18182:11689108,18452919 -g1,18182:12005254,18452919 -h1,18182:13902128,18452919:0,0,0 -k1,18182:32583028,18452919:18680900 -g1,18182:32583028,18452919 -) -(1,18182:6630773,19119097:25952256,410518,76021 -h1,18182:6630773,19119097:0,0,0 -g1,18182:7579210,19119097 -g1,18182:7895356,19119097 -g1,18182:8211502,19119097 -g1,18182:8527648,19119097 -g1,18182:8843794,19119097 -g1,18182:9159940,19119097 -g1,18182:9476086,19119097 -g1,18182:9792232,19119097 -g1,18182:10108378,19119097 -g1,18182:10424524,19119097 -g1,18182:10740670,19119097 -g1,18182:11056816,19119097 -g1,18182:11372962,19119097 -g1,18182:11689108,19119097 -g1,18182:12005254,19119097 -g1,18182:14218274,19119097 -k1,18182:14218274,19119097:0 -h1,18182:16431294,19119097:0,0,0 -k1,18182:32583029,19119097:16151735 -g1,18182:32583029,19119097 -) -(1,18182:6630773,19785275:25952256,404226,76021 -h1,18182:6630773,19785275:0,0,0 -g1,18182:7579210,19785275 -g1,18182:7895356,19785275 -g1,18182:8211502,19785275 -g1,18182:8527648,19785275 -g1,18182:8843794,19785275 -g1,18182:9159940,19785275 -g1,18182:9476086,19785275 -g1,18182:9792232,19785275 -g1,18182:10108378,19785275 -g1,18182:10424524,19785275 -g1,18182:10740670,19785275 -g1,18182:11056816,19785275 -g1,18182:11372962,19785275 -g1,18182:11689108,19785275 -g1,18182:12005254,19785275 -g1,18182:12321400,19785275 -g1,18182:12637546,19785275 -h1,18182:14534420,19785275:0,0,0 -k1,18182:32583028,19785275:18048608 -g1,18182:32583028,19785275 -) -(1,18182:6630773,20451453:25952256,404226,76021 -h1,18182:6630773,20451453:0,0,0 -g1,18182:7579210,20451453 -g1,18182:7895356,20451453 -g1,18182:8211502,20451453 -g1,18182:8527648,20451453 -g1,18182:8843794,20451453 -g1,18182:9159940,20451453 -g1,18182:9476086,20451453 -g1,18182:9792232,20451453 -g1,18182:10108378,20451453 -g1,18182:10424524,20451453 -g1,18182:10740670,20451453 -g1,18182:11056816,20451453 -g1,18182:11372962,20451453 -g1,18182:11689108,20451453 -g1,18182:12005254,20451453 -h1,18182:13902128,20451453:0,0,0 -k1,18182:32583028,20451453:18680900 -g1,18182:32583028,20451453 -) -(1,18182:6630773,21117631:25952256,404226,76021 -h1,18182:6630773,21117631:0,0,0 -g1,18182:7579210,21117631 -g1,18182:7895356,21117631 -g1,18182:8211502,21117631 -g1,18182:8527648,21117631 -g1,18182:8843794,21117631 -g1,18182:9159940,21117631 -g1,18182:9476086,21117631 -g1,18182:9792232,21117631 -g1,18182:10108378,21117631 -g1,18182:10424524,21117631 -g1,18182:10740670,21117631 -g1,18182:11056816,21117631 -g1,18182:11372962,21117631 -h1,18182:13269836,21117631:0,0,0 -k1,18182:32583028,21117631:19313192 -g1,18182:32583028,21117631 -) -(1,18182:6630773,21783809:25952256,379060,101187 -h1,18182:6630773,21783809:0,0,0 -g1,18182:7579210,21783809 -g1,18182:7895356,21783809 -g1,18182:8211502,21783809 -g1,18182:8527648,21783809 -g1,18182:8843794,21783809 -g1,18182:9159940,21783809 -g1,18182:9476086,21783809 -g1,18182:9792232,21783809 -g1,18182:10108378,21783809 -g1,18182:10424524,21783809 -g1,18182:10740670,21783809 -g1,18182:11056816,21783809 -g1,18182:11372962,21783809 -k1,18182:11372962,21783809:0 -h1,18182:12321399,21783809:0,0,0 -k1,18182:32583029,21783809:20261630 -g1,18182:32583029,21783809 -) -(1,18182:6630773,22449987:25952256,404226,76021 -h1,18182:6630773,22449987:0,0,0 -g1,18182:7579210,22449987 -g1,18182:7895356,22449987 -g1,18182:8211502,22449987 -g1,18182:8527648,22449987 -g1,18182:8843794,22449987 -g1,18182:9159940,22449987 -g1,18182:9476086,22449987 -g1,18182:9792232,22449987 -g1,18182:10108378,22449987 -g1,18182:10424524,22449987 -g1,18182:10740670,22449987 -g1,18182:11056816,22449987 -g1,18182:11372962,22449987 -g1,18182:11689108,22449987 -g1,18182:12005254,22449987 -h1,18182:13902128,22449987:0,0,0 -k1,18182:32583028,22449987:18680900 -g1,18182:32583028,22449987 -) -(1,18182:6630773,23116165:25952256,404226,76021 -h1,18182:6630773,23116165:0,0,0 -g1,18182:7579210,23116165 -g1,18182:7895356,23116165 -g1,18182:8211502,23116165 -g1,18182:8527648,23116165 -g1,18182:8843794,23116165 -g1,18182:9159940,23116165 -g1,18182:9476086,23116165 -g1,18182:9792232,23116165 -g1,18182:10108378,23116165 -g1,18182:10424524,23116165 -g1,18182:10740670,23116165 -g1,18182:11056816,23116165 -g1,18182:11372962,23116165 -h1,18182:13269836,23116165:0,0,0 -k1,18182:32583028,23116165:19313192 -g1,18182:32583028,23116165 -) -(1,18182:6630773,23782343:25952256,404226,7863 -h1,18182:6630773,23782343:0,0,0 -g1,18182:7579210,23782343 -g1,18182:7895356,23782343 -g1,18182:8211502,23782343 -g1,18182:8527648,23782343 -g1,18182:8843794,23782343 -g1,18182:9159940,23782343 -g1,18182:9476086,23782343 -g1,18182:9792232,23782343 -g1,18182:10108378,23782343 -g1,18182:10424524,23782343 -g1,18182:10740670,23782343 -g1,18182:11056816,23782343 -g1,18182:11372962,23782343 -g1,18182:14218273,23782343 -k1,18182:14218273,23782343:0 -h1,18182:18012021,23782343:0,0,0 -k1,18182:32583029,23782343:14571008 -g1,18182:32583029,23782343 -) -(1,18182:6630773,24448521:25952256,404226,101187 -h1,18182:6630773,24448521:0,0,0 -g1,18182:7579210,24448521 -g1,18182:7895356,24448521 -g1,18182:8211502,24448521 -g1,18182:8527648,24448521 -g1,18182:8843794,24448521 -g1,18182:9159940,24448521 -g1,18182:9476086,24448521 -g1,18182:9792232,24448521 -g1,18182:10108378,24448521 -g1,18182:10424524,24448521 -g1,18182:10740670,24448521 -g1,18182:11056816,24448521 -g1,18182:11372962,24448521 -g1,18182:11689108,24448521 -g1,18182:12005254,24448521 -k1,18182:12005254,24448521:0 -h1,18182:17695877,24448521:0,0,0 -k1,18182:32583029,24448521:14887152 -g1,18182:32583029,24448521 -) -(1,18182:6630773,25114699:25952256,404226,7863 -h1,18182:6630773,25114699:0,0,0 -g1,18182:7579210,25114699 -g1,18182:7895356,25114699 -g1,18182:8211502,25114699 -g1,18182:8527648,25114699 -g1,18182:8843794,25114699 -g1,18182:9159940,25114699 -g1,18182:9476086,25114699 -g1,18182:9792232,25114699 -g1,18182:10108378,25114699 -g1,18182:10424524,25114699 -g1,18182:10740670,25114699 -g1,18182:11056816,25114699 -g1,18182:11372962,25114699 -g1,18182:11689108,25114699 -g1,18182:12005254,25114699 -g1,18182:12321400,25114699 -g1,18182:12637546,25114699 -k1,18182:12637546,25114699:0 -h1,18182:18644314,25114699:0,0,0 -k1,18182:32583029,25114699:13938715 -g1,18182:32583029,25114699 -) -(1,18182:6630773,25780877:25952256,404226,101187 -h1,18182:6630773,25780877:0,0,0 -g1,18182:7579210,25780877 -g1,18182:7895356,25780877 -g1,18182:8211502,25780877 -g1,18182:8527648,25780877 -g1,18182:8843794,25780877 -g1,18182:9159940,25780877 -g1,18182:9476086,25780877 -g1,18182:9792232,25780877 -g1,18182:10108378,25780877 -g1,18182:10424524,25780877 -g1,18182:10740670,25780877 -g1,18182:11056816,25780877 -g1,18182:11372962,25780877 -g1,18182:11689108,25780877 -g1,18182:12005254,25780877 -g1,18182:12321400,25780877 -g1,18182:12637546,25780877 -g1,18182:12953692,25780877 -g1,18182:13269838,25780877 -k1,18182:13269838,25780877:0 -h1,18182:17063586,25780877:0,0,0 -k1,18182:32583029,25780877:15519443 -g1,18182:32583029,25780877 -) -(1,18182:6630773,26447055:25952256,410518,82312 -h1,18182:6630773,26447055:0,0,0 -g1,18182:7579210,26447055 -g1,18182:7895356,26447055 -g1,18182:8211502,26447055 -g1,18182:8527648,26447055 -g1,18182:8843794,26447055 -g1,18182:9159940,26447055 -g1,18182:9476086,26447055 -g1,18182:9792232,26447055 -g1,18182:10108378,26447055 -g1,18182:10424524,26447055 -g1,18182:10740670,26447055 -g1,18182:11056816,26447055 -g1,18182:11372962,26447055 -g1,18182:11689108,26447055 -g1,18182:12005254,26447055 -g1,18182:12321400,26447055 -g1,18182:12637546,26447055 -g1,18182:12953692,26447055 -g1,18182:13269838,26447055 -g1,18182:13585984,26447055 -g1,18182:13902130,26447055 -g1,18182:14850567,26447055 -g1,18182:17063587,26447055 -g1,18182:21173482,26447055 -k1,18182:21173482,26447055:0 -h1,18182:24334939,26447055:0,0,0 -k1,18182:32583029,26447055:8248090 -g1,18182:32583029,26447055 -) -(1,18182:6630773,27113233:25952256,379060,101187 -h1,18182:6630773,27113233:0,0,0 -g1,18182:7579210,27113233 -g1,18182:7895356,27113233 -g1,18182:8211502,27113233 -g1,18182:8527648,27113233 -g1,18182:8843794,27113233 -g1,18182:9159940,27113233 -g1,18182:9476086,27113233 -g1,18182:9792232,27113233 -g1,18182:10108378,27113233 -g1,18182:10424524,27113233 -g1,18182:10740670,27113233 -g1,18182:11056816,27113233 -g1,18182:11372962,27113233 -g1,18182:11689108,27113233 -g1,18182:12005254,27113233 -g1,18182:12321400,27113233 -g1,18182:12637546,27113233 -g1,18182:12953692,27113233 -g1,18182:13269838,27113233 -g1,18182:13585984,27113233 -g1,18182:13902130,27113233 -k1,18182:13902130,27113233:0 -h1,18182:16747441,27113233:0,0,0 -k1,18182:32583029,27113233:15835588 -g1,18182:32583029,27113233 -) -(1,18182:6630773,27779411:25952256,404226,76021 -h1,18182:6630773,27779411:0,0,0 -g1,18182:7579210,27779411 -g1,18182:7895356,27779411 -g1,18182:8211502,27779411 -g1,18182:8527648,27779411 -g1,18182:8843794,27779411 -g1,18182:9159940,27779411 -g1,18182:9476086,27779411 -g1,18182:9792232,27779411 -g1,18182:10108378,27779411 -g1,18182:10424524,27779411 -g1,18182:10740670,27779411 -g1,18182:11056816,27779411 -g1,18182:11372962,27779411 -g1,18182:11689108,27779411 -g1,18182:12005254,27779411 -g1,18182:12321400,27779411 -g1,18182:12637546,27779411 -g1,18182:12953692,27779411 -g1,18182:13269838,27779411 -g1,18182:13585984,27779411 -g1,18182:13902130,27779411 -g1,18182:14218276,27779411 -g1,18182:14534422,27779411 -h1,18182:16431296,27779411:0,0,0 -k1,18182:32583029,27779411:16151733 -g1,18182:32583029,27779411 -) -(1,18182:6630773,28445589:25952256,404226,76021 -h1,18182:6630773,28445589:0,0,0 -g1,18182:7579210,28445589 -g1,18182:7895356,28445589 -g1,18182:8211502,28445589 -g1,18182:8527648,28445589 -g1,18182:8843794,28445589 -g1,18182:9159940,28445589 -g1,18182:9476086,28445589 -g1,18182:9792232,28445589 -g1,18182:10108378,28445589 -g1,18182:10424524,28445589 -g1,18182:10740670,28445589 -g1,18182:11056816,28445589 -g1,18182:11372962,28445589 -g1,18182:11689108,28445589 -g1,18182:12005254,28445589 -g1,18182:12321400,28445589 -g1,18182:12637546,28445589 -g1,18182:12953692,28445589 -g1,18182:13269838,28445589 -h1,18182:15166712,28445589:0,0,0 -k1,18182:32583028,28445589:17416316 -g1,18182:32583028,28445589 -) -(1,18182:6630773,29111767:25952256,404226,101187 -h1,18182:6630773,29111767:0,0,0 -g1,18182:7579210,29111767 -g1,18182:7895356,29111767 -g1,18182:8211502,29111767 -g1,18182:8527648,29111767 -g1,18182:8843794,29111767 -g1,18182:9159940,29111767 -g1,18182:9476086,29111767 -g1,18182:9792232,29111767 -g1,18182:10108378,29111767 -g1,18182:10424524,29111767 -g1,18182:10740670,29111767 -g1,18182:11056816,29111767 -g1,18182:11372962,29111767 -g1,18182:11689108,29111767 -g1,18182:12005254,29111767 -g1,18182:12321400,29111767 -g1,18182:12637546,29111767 -g1,18182:12953692,29111767 -g1,18182:13269838,29111767 -k1,18182:13269838,29111767:0 -h1,18182:17063586,29111767:0,0,0 -k1,18182:32583029,29111767:15519443 -g1,18182:32583029,29111767 -) -(1,18182:6630773,29777945:25952256,410518,82312 -h1,18182:6630773,29777945:0,0,0 -g1,18182:7579210,29777945 -g1,18182:7895356,29777945 -g1,18182:8211502,29777945 -g1,18182:8527648,29777945 -g1,18182:8843794,29777945 -g1,18182:9159940,29777945 -g1,18182:9476086,29777945 -g1,18182:9792232,29777945 -g1,18182:10108378,29777945 -g1,18182:10424524,29777945 -g1,18182:10740670,29777945 -g1,18182:11056816,29777945 -g1,18182:11372962,29777945 -g1,18182:11689108,29777945 -g1,18182:12005254,29777945 -g1,18182:12321400,29777945 -g1,18182:12637546,29777945 -g1,18182:12953692,29777945 -g1,18182:13269838,29777945 -g1,18182:13585984,29777945 -g1,18182:13902130,29777945 -g1,18182:14850567,29777945 -g1,18182:17063587,29777945 -g1,18182:21173482,29777945 -k1,18182:21173482,29777945:0 -h1,18182:24334939,29777945:0,0,0 -k1,18182:32583029,29777945:8248090 -g1,18182:32583029,29777945 -) -(1,18182:6630773,30444123:25952256,404226,76021 -h1,18182:6630773,30444123:0,0,0 -g1,18182:7579210,30444123 -g1,18182:7895356,30444123 -g1,18182:8211502,30444123 -g1,18182:8527648,30444123 -g1,18182:8843794,30444123 -g1,18182:9159940,30444123 -g1,18182:9476086,30444123 -g1,18182:9792232,30444123 -g1,18182:10108378,30444123 -g1,18182:10424524,30444123 -g1,18182:10740670,30444123 -g1,18182:11056816,30444123 -g1,18182:11372962,30444123 -g1,18182:11689108,30444123 -g1,18182:12005254,30444123 -g1,18182:12321400,30444123 -g1,18182:12637546,30444123 -g1,18182:12953692,30444123 -g1,18182:13269838,30444123 -g1,18182:13585984,30444123 -g1,18182:13902130,30444123 -h1,18182:15799004,30444123:0,0,0 -k1,18182:32583028,30444123:16784024 -g1,18182:32583028,30444123 -) -(1,18182:6630773,31110301:25952256,379060,101187 -h1,18182:6630773,31110301:0,0,0 -g1,18182:7579210,31110301 -g1,18182:7895356,31110301 -g1,18182:8211502,31110301 -g1,18182:8527648,31110301 -g1,18182:8843794,31110301 -g1,18182:9159940,31110301 -g1,18182:9476086,31110301 -g1,18182:9792232,31110301 -g1,18182:10108378,31110301 -g1,18182:10424524,31110301 -g1,18182:10740670,31110301 -g1,18182:11056816,31110301 -g1,18182:11372962,31110301 -g1,18182:11689108,31110301 -g1,18182:12005254,31110301 -g1,18182:12321400,31110301 -g1,18182:12637546,31110301 -g1,18182:12953692,31110301 -g1,18182:13269838,31110301 -g1,18182:13585984,31110301 -g1,18182:13902130,31110301 -k1,18182:13902130,31110301:0 -h1,18182:16747441,31110301:0,0,0 -k1,18182:32583029,31110301:15835588 -g1,18182:32583029,31110301 -) -(1,18182:6630773,31776479:25952256,404226,76021 -h1,18182:6630773,31776479:0,0,0 -g1,18182:7579210,31776479 -g1,18182:7895356,31776479 -g1,18182:8211502,31776479 -g1,18182:8527648,31776479 -g1,18182:8843794,31776479 -g1,18182:9159940,31776479 -g1,18182:9476086,31776479 -g1,18182:9792232,31776479 -g1,18182:10108378,31776479 -g1,18182:10424524,31776479 -g1,18182:10740670,31776479 -g1,18182:11056816,31776479 -g1,18182:11372962,31776479 -g1,18182:11689108,31776479 -g1,18182:12005254,31776479 -g1,18182:12321400,31776479 -g1,18182:12637546,31776479 -g1,18182:12953692,31776479 -g1,18182:13269838,31776479 -g1,18182:13585984,31776479 -g1,18182:13902130,31776479 -g1,18182:14218276,31776479 -g1,18182:14534422,31776479 -h1,18182:16431296,31776479:0,0,0 -k1,18182:32583029,31776479:16151733 -g1,18182:32583029,31776479 -) -(1,18182:6630773,32442657:25952256,410518,101187 -h1,18182:6630773,32442657:0,0,0 -g1,18182:7579210,32442657 -g1,18182:7895356,32442657 -g1,18182:8211502,32442657 -g1,18182:8527648,32442657 -g1,18182:8843794,32442657 -g1,18182:9159940,32442657 -g1,18182:9476086,32442657 -g1,18182:9792232,32442657 -g1,18182:10108378,32442657 -g1,18182:10424524,32442657 -g1,18182:10740670,32442657 -g1,18182:11056816,32442657 -g1,18182:11372962,32442657 -g1,18182:11689108,32442657 -g1,18182:12005254,32442657 -g1,18182:12321400,32442657 -g1,18182:12637546,32442657 -g1,18182:12953692,32442657 -g1,18182:13269838,32442657 -g1,18182:13585984,32442657 -g1,18182:13902130,32442657 -k1,18182:13902130,32442657:0 -h1,18182:16747441,32442657:0,0,0 -k1,18182:32583029,32442657:15835588 -g1,18182:32583029,32442657 -) -(1,18182:6630773,33108835:25952256,404226,76021 -h1,18182:6630773,33108835:0,0,0 -g1,18182:7579210,33108835 -g1,18182:7895356,33108835 -g1,18182:8211502,33108835 -g1,18182:8527648,33108835 -g1,18182:8843794,33108835 -g1,18182:9159940,33108835 -g1,18182:9476086,33108835 -g1,18182:9792232,33108835 -g1,18182:10108378,33108835 -g1,18182:10424524,33108835 -g1,18182:10740670,33108835 -g1,18182:11056816,33108835 -g1,18182:11372962,33108835 -g1,18182:11689108,33108835 -g1,18182:12005254,33108835 -g1,18182:12321400,33108835 -g1,18182:12637546,33108835 -g1,18182:12953692,33108835 -g1,18182:13269838,33108835 -g1,18182:13585984,33108835 -g1,18182:13902130,33108835 -g1,18182:14218276,33108835 -g1,18182:14534422,33108835 -h1,18182:16431296,33108835:0,0,0 -k1,18182:32583029,33108835:16151733 -g1,18182:32583029,33108835 -) -(1,18182:6630773,33775013:25952256,404226,76021 -h1,18182:6630773,33775013:0,0,0 -g1,18182:7579210,33775013 -g1,18182:7895356,33775013 -g1,18182:8211502,33775013 -g1,18182:8527648,33775013 -g1,18182:8843794,33775013 -g1,18182:9159940,33775013 -g1,18182:9476086,33775013 -g1,18182:9792232,33775013 -g1,18182:10108378,33775013 -g1,18182:10424524,33775013 -g1,18182:10740670,33775013 -g1,18182:11056816,33775013 -g1,18182:11372962,33775013 -g1,18182:11689108,33775013 -g1,18182:12005254,33775013 -g1,18182:12321400,33775013 -g1,18182:12637546,33775013 -g1,18182:12953692,33775013 -g1,18182:13269838,33775013 -g1,18182:13585984,33775013 -g1,18182:13902130,33775013 -h1,18182:15799004,33775013:0,0,0 -k1,18182:32583028,33775013:16784024 -g1,18182:32583028,33775013 -) -(1,18182:6630773,34441191:25952256,404226,76021 -h1,18182:6630773,34441191:0,0,0 -g1,18182:7579210,34441191 -g1,18182:7895356,34441191 -g1,18182:8211502,34441191 -g1,18182:8527648,34441191 -g1,18182:8843794,34441191 -g1,18182:9159940,34441191 -g1,18182:9476086,34441191 -g1,18182:9792232,34441191 -g1,18182:10108378,34441191 -g1,18182:10424524,34441191 -g1,18182:10740670,34441191 -g1,18182:11056816,34441191 -g1,18182:11372962,34441191 -g1,18182:11689108,34441191 -g1,18182:12005254,34441191 -g1,18182:12321400,34441191 -g1,18182:12637546,34441191 -g1,18182:12953692,34441191 -g1,18182:13269838,34441191 -h1,18182:15166712,34441191:0,0,0 -k1,18182:32583028,34441191:17416316 -g1,18182:32583028,34441191 -) -(1,18182:6630773,35107369:25952256,404226,101187 -h1,18182:6630773,35107369:0,0,0 -g1,18182:7579210,35107369 -g1,18182:7895356,35107369 -g1,18182:8211502,35107369 -g1,18182:8527648,35107369 -g1,18182:8843794,35107369 -g1,18182:9159940,35107369 -g1,18182:9476086,35107369 -g1,18182:9792232,35107369 -g1,18182:10108378,35107369 -g1,18182:10424524,35107369 -g1,18182:10740670,35107369 -g1,18182:11056816,35107369 -g1,18182:11372962,35107369 -g1,18182:11689108,35107369 -g1,18182:12005254,35107369 -g1,18182:12321400,35107369 -g1,18182:12637546,35107369 -g1,18182:12953692,35107369 -g1,18182:13269838,35107369 -k1,18182:13269838,35107369:0 -h1,18182:17063586,35107369:0,0,0 -k1,18182:32583029,35107369:15519443 -g1,18182:32583029,35107369 -) -(1,18182:6630773,35773547:25952256,410518,82312 -h1,18182:6630773,35773547:0,0,0 -g1,18182:7579210,35773547 -g1,18182:7895356,35773547 -g1,18182:8211502,35773547 -g1,18182:8527648,35773547 -g1,18182:8843794,35773547 -g1,18182:9159940,35773547 -g1,18182:9476086,35773547 -g1,18182:9792232,35773547 -g1,18182:10108378,35773547 -g1,18182:10424524,35773547 -g1,18182:10740670,35773547 -g1,18182:11056816,35773547 -g1,18182:11372962,35773547 -g1,18182:11689108,35773547 -g1,18182:12005254,35773547 -g1,18182:12321400,35773547 -g1,18182:12637546,35773547 -g1,18182:12953692,35773547 -g1,18182:13269838,35773547 -g1,18182:13585984,35773547 -g1,18182:13902130,35773547 -g1,18182:14850567,35773547 -g1,18182:17063587,35773547 -g1,18182:21173482,35773547 -k1,18182:21173482,35773547:0 -h1,18182:24334939,35773547:0,0,0 -k1,18182:32583029,35773547:8248090 -g1,18182:32583029,35773547 -) -(1,18182:6630773,36439725:25952256,404226,76021 -h1,18182:6630773,36439725:0,0,0 -g1,18182:7579210,36439725 -g1,18182:7895356,36439725 -g1,18182:8211502,36439725 -g1,18182:8527648,36439725 -g1,18182:8843794,36439725 -g1,18182:9159940,36439725 -g1,18182:9476086,36439725 -g1,18182:9792232,36439725 -g1,18182:10108378,36439725 -g1,18182:10424524,36439725 -g1,18182:10740670,36439725 -g1,18182:11056816,36439725 -g1,18182:11372962,36439725 -g1,18182:11689108,36439725 -g1,18182:12005254,36439725 -g1,18182:12321400,36439725 -g1,18182:12637546,36439725 -g1,18182:12953692,36439725 -g1,18182:13269838,36439725 -g1,18182:13585984,36439725 -g1,18182:13902130,36439725 -h1,18182:15799004,36439725:0,0,0 -k1,18182:32583028,36439725:16784024 -g1,18182:32583028,36439725 -) -(1,18182:6630773,37105903:25952256,379060,101187 -h1,18182:6630773,37105903:0,0,0 -g1,18182:7579210,37105903 -g1,18182:7895356,37105903 -g1,18182:8211502,37105903 -g1,18182:8527648,37105903 -g1,18182:8843794,37105903 -g1,18182:9159940,37105903 -g1,18182:9476086,37105903 -g1,18182:9792232,37105903 -g1,18182:10108378,37105903 -g1,18182:10424524,37105903 -g1,18182:10740670,37105903 -g1,18182:11056816,37105903 -g1,18182:11372962,37105903 -g1,18182:11689108,37105903 -g1,18182:12005254,37105903 -g1,18182:12321400,37105903 -g1,18182:12637546,37105903 -g1,18182:12953692,37105903 -g1,18182:13269838,37105903 -g1,18182:13585984,37105903 -g1,18182:13902130,37105903 -k1,18182:13902130,37105903:0 -h1,18182:16747441,37105903:0,0,0 -k1,18182:32583029,37105903:15835588 -g1,18182:32583029,37105903 -) -(1,18182:6630773,37772081:25952256,404226,76021 -h1,18182:6630773,37772081:0,0,0 -g1,18182:7579210,37772081 -g1,18182:7895356,37772081 -g1,18182:8211502,37772081 -g1,18182:8527648,37772081 -g1,18182:8843794,37772081 -g1,18182:9159940,37772081 -g1,18182:9476086,37772081 -g1,18182:9792232,37772081 -g1,18182:10108378,37772081 -g1,18182:10424524,37772081 -g1,18182:10740670,37772081 -g1,18182:11056816,37772081 -g1,18182:11372962,37772081 -g1,18182:11689108,37772081 -g1,18182:12005254,37772081 -g1,18182:12321400,37772081 -g1,18182:12637546,37772081 -g1,18182:12953692,37772081 -g1,18182:13269838,37772081 -g1,18182:13585984,37772081 -g1,18182:13902130,37772081 -g1,18182:14218276,37772081 -g1,18182:14534422,37772081 -h1,18182:16431296,37772081:0,0,0 -k1,18182:32583029,37772081:16151733 -g1,18182:32583029,37772081 -) -(1,18182:6630773,38438259:25952256,404226,76021 -h1,18182:6630773,38438259:0,0,0 -g1,18182:7579210,38438259 -g1,18182:7895356,38438259 -g1,18182:8211502,38438259 -g1,18182:8527648,38438259 -g1,18182:8843794,38438259 -g1,18182:9159940,38438259 -g1,18182:9476086,38438259 -g1,18182:9792232,38438259 -g1,18182:10108378,38438259 -g1,18182:10424524,38438259 -g1,18182:10740670,38438259 -g1,18182:11056816,38438259 -g1,18182:11372962,38438259 -g1,18182:11689108,38438259 -g1,18182:12005254,38438259 -g1,18182:12321400,38438259 -g1,18182:12637546,38438259 -g1,18182:12953692,38438259 -g1,18182:13269838,38438259 -g1,18182:13585984,38438259 -g1,18182:13902130,38438259 -h1,18182:15799004,38438259:0,0,0 -k1,18182:32583028,38438259:16784024 -g1,18182:32583028,38438259 -) -(1,18182:6630773,39104437:25952256,379060,101187 -h1,18182:6630773,39104437:0,0,0 -g1,18182:7579210,39104437 -g1,18182:7895356,39104437 -g1,18182:8211502,39104437 -g1,18182:8527648,39104437 -g1,18182:8843794,39104437 -g1,18182:9159940,39104437 -g1,18182:9476086,39104437 -g1,18182:9792232,39104437 -g1,18182:10108378,39104437 -g1,18182:10424524,39104437 -g1,18182:10740670,39104437 -g1,18182:11056816,39104437 -g1,18182:11372962,39104437 -g1,18182:11689108,39104437 -g1,18182:12005254,39104437 -g1,18182:12321400,39104437 -g1,18182:12637546,39104437 -g1,18182:12953692,39104437 -g1,18182:13269838,39104437 -g1,18182:13585984,39104437 -g1,18182:13902130,39104437 -k1,18182:13902130,39104437:0 -h1,18182:16747441,39104437:0,0,0 -k1,18182:32583029,39104437:15835588 -g1,18182:32583029,39104437 -) -(1,18182:6630773,39770615:25952256,404226,76021 -h1,18182:6630773,39770615:0,0,0 -g1,18182:7579210,39770615 -g1,18182:7895356,39770615 -g1,18182:8211502,39770615 -g1,18182:8527648,39770615 -g1,18182:8843794,39770615 -g1,18182:9159940,39770615 -g1,18182:9476086,39770615 -g1,18182:9792232,39770615 -g1,18182:10108378,39770615 -g1,18182:10424524,39770615 -g1,18182:10740670,39770615 -g1,18182:11056816,39770615 -g1,18182:11372962,39770615 -g1,18182:11689108,39770615 -g1,18182:12005254,39770615 -g1,18182:12321400,39770615 -g1,18182:12637546,39770615 -g1,18182:12953692,39770615 -g1,18182:13269838,39770615 -g1,18182:13585984,39770615 -g1,18182:13902130,39770615 -g1,18182:14218276,39770615 -g1,18182:14534422,39770615 -h1,18182:16431296,39770615:0,0,0 -k1,18182:32583029,39770615:16151733 -g1,18182:32583029,39770615 -) -(1,18182:6630773,40436793:25952256,404226,76021 -h1,18182:6630773,40436793:0,0,0 -g1,18182:7579210,40436793 -g1,18182:7895356,40436793 -g1,18182:8211502,40436793 -g1,18182:8527648,40436793 -g1,18182:8843794,40436793 -g1,18182:9159940,40436793 -g1,18182:9476086,40436793 -g1,18182:9792232,40436793 -g1,18182:10108378,40436793 -g1,18182:10424524,40436793 -g1,18182:10740670,40436793 -g1,18182:11056816,40436793 -g1,18182:11372962,40436793 -g1,18182:11689108,40436793 -g1,18182:12005254,40436793 -g1,18182:12321400,40436793 -g1,18182:12637546,40436793 -g1,18182:12953692,40436793 -g1,18182:13269838,40436793 -g1,18182:13585984,40436793 -g1,18182:13902130,40436793 -h1,18182:15799004,40436793:0,0,0 -k1,18182:32583028,40436793:16784024 -g1,18182:32583028,40436793 -) -(1,18182:6630773,41102971:25952256,404226,76021 -h1,18182:6630773,41102971:0,0,0 -g1,18182:7579210,41102971 -g1,18182:7895356,41102971 -g1,18182:8211502,41102971 -g1,18182:8527648,41102971 -g1,18182:8843794,41102971 -g1,18182:9159940,41102971 -g1,18182:9476086,41102971 -g1,18182:9792232,41102971 -g1,18182:10108378,41102971 -g1,18182:10424524,41102971 -g1,18182:10740670,41102971 -g1,18182:11056816,41102971 -g1,18182:11372962,41102971 -g1,18182:11689108,41102971 -g1,18182:12005254,41102971 -g1,18182:12321400,41102971 -g1,18182:12637546,41102971 -g1,18182:12953692,41102971 -g1,18182:13269838,41102971 -h1,18182:15166712,41102971:0,0,0 -k1,18182:32583028,41102971:17416316 -g1,18182:32583028,41102971 -) -(1,18182:6630773,41769149:25952256,404226,101187 -h1,18182:6630773,41769149:0,0,0 -g1,18182:7579210,41769149 -g1,18182:7895356,41769149 -g1,18182:8211502,41769149 -g1,18182:8527648,41769149 -g1,18182:8843794,41769149 -g1,18182:9159940,41769149 -g1,18182:9476086,41769149 -g1,18182:9792232,41769149 -g1,18182:10108378,41769149 -g1,18182:10424524,41769149 -g1,18182:10740670,41769149 -g1,18182:11056816,41769149 -g1,18182:11372962,41769149 -g1,18182:11689108,41769149 -g1,18182:12005254,41769149 -g1,18182:12321400,41769149 -g1,18182:12637546,41769149 -g1,18182:12953692,41769149 -g1,18182:13269838,41769149 -k1,18182:13269838,41769149:0 -h1,18182:17063586,41769149:0,0,0 -k1,18182:32583029,41769149:15519443 -g1,18182:32583029,41769149 -) -(1,18182:6630773,42435327:25952256,410518,82312 -h1,18182:6630773,42435327:0,0,0 -g1,18182:7579210,42435327 -g1,18182:7895356,42435327 -g1,18182:8211502,42435327 -g1,18182:8527648,42435327 -g1,18182:8843794,42435327 -g1,18182:9159940,42435327 -g1,18182:9476086,42435327 -g1,18182:9792232,42435327 -g1,18182:10108378,42435327 -g1,18182:10424524,42435327 -g1,18182:10740670,42435327 -g1,18182:11056816,42435327 -g1,18182:11372962,42435327 -g1,18182:11689108,42435327 -g1,18182:12005254,42435327 -g1,18182:12321400,42435327 -g1,18182:12637546,42435327 -g1,18182:12953692,42435327 -g1,18182:13269838,42435327 -g1,18182:13585984,42435327 -g1,18182:13902130,42435327 -g1,18182:14850567,42435327 -g1,18182:17063587,42435327 -g1,18182:21173482,42435327 -k1,18182:21173482,42435327:0 -h1,18182:24334939,42435327:0,0,0 -k1,18182:32583029,42435327:8248090 -g1,18182:32583029,42435327 -) -(1,18182:6630773,43101505:25952256,404226,76021 -h1,18182:6630773,43101505:0,0,0 -g1,18182:7579210,43101505 -g1,18182:7895356,43101505 -g1,18182:8211502,43101505 -g1,18182:8527648,43101505 -g1,18182:8843794,43101505 -g1,18182:9159940,43101505 -g1,18182:9476086,43101505 -g1,18182:9792232,43101505 -g1,18182:10108378,43101505 -g1,18182:10424524,43101505 -g1,18182:10740670,43101505 -g1,18182:11056816,43101505 -g1,18182:11372962,43101505 -g1,18182:11689108,43101505 -g1,18182:12005254,43101505 -g1,18182:12321400,43101505 -g1,18182:12637546,43101505 -g1,18182:12953692,43101505 -g1,18182:13269838,43101505 -g1,18182:13585984,43101505 -g1,18182:13902130,43101505 -h1,18182:15799004,43101505:0,0,0 -k1,18182:32583028,43101505:16784024 -g1,18182:32583028,43101505 -) -(1,18182:6630773,43767683:25952256,379060,101187 -h1,18182:6630773,43767683:0,0,0 -g1,18182:7579210,43767683 -g1,18182:7895356,43767683 -g1,18182:8211502,43767683 -g1,18182:8527648,43767683 -g1,18182:8843794,43767683 -g1,18182:9159940,43767683 -g1,18182:9476086,43767683 -g1,18182:9792232,43767683 -g1,18182:10108378,43767683 -g1,18182:10424524,43767683 -g1,18182:10740670,43767683 -g1,18182:11056816,43767683 -g1,18182:11372962,43767683 -g1,18182:11689108,43767683 -g1,18182:12005254,43767683 -g1,18182:12321400,43767683 -g1,18182:12637546,43767683 -g1,18182:12953692,43767683 -g1,18182:13269838,43767683 -g1,18182:13585984,43767683 -g1,18182:13902130,43767683 -k1,18182:13902130,43767683:0 -h1,18182:16747441,43767683:0,0,0 -k1,18182:32583029,43767683:15835588 -g1,18182:32583029,43767683 -) -(1,18182:6630773,44433861:25952256,404226,76021 -h1,18182:6630773,44433861:0,0,0 -g1,18182:7579210,44433861 -g1,18182:7895356,44433861 -g1,18182:8211502,44433861 -g1,18182:8527648,44433861 -g1,18182:8843794,44433861 -g1,18182:9159940,44433861 -g1,18182:9476086,44433861 -g1,18182:9792232,44433861 -g1,18182:10108378,44433861 -g1,18182:10424524,44433861 -g1,18182:10740670,44433861 -g1,18182:11056816,44433861 -g1,18182:11372962,44433861 -g1,18182:11689108,44433861 -g1,18182:12005254,44433861 -g1,18182:12321400,44433861 -g1,18182:12637546,44433861 -g1,18182:12953692,44433861 -g1,18182:13269838,44433861 -g1,18182:13585984,44433861 -g1,18182:13902130,44433861 -g1,18182:14218276,44433861 -g1,18182:14534422,44433861 -h1,18182:16431296,44433861:0,0,0 -k1,18182:32583029,44433861:16151733 -g1,18182:32583029,44433861 -) -(1,18182:6630773,45100039:25952256,404226,76021 -h1,18182:6630773,45100039:0,0,0 -g1,18182:7579210,45100039 -g1,18182:7895356,45100039 -g1,18182:8211502,45100039 -g1,18182:8527648,45100039 -g1,18182:8843794,45100039 -g1,18182:9159940,45100039 -g1,18182:9476086,45100039 -g1,18182:9792232,45100039 -g1,18182:10108378,45100039 -g1,18182:10424524,45100039 -g1,18182:10740670,45100039 -g1,18182:11056816,45100039 -g1,18182:11372962,45100039 -g1,18182:11689108,45100039 -g1,18182:12005254,45100039 -g1,18182:12321400,45100039 -g1,18182:12637546,45100039 -g1,18182:12953692,45100039 -g1,18182:13269838,45100039 -g1,18182:13585984,45100039 -g1,18182:13902130,45100039 -h1,18182:15799004,45100039:0,0,0 -k1,18182:32583028,45100039:16784024 -g1,18182:32583028,45100039 -) -] -) -g1,18183:32583029,45510161 -g1,18183:6630773,45510161 -g1,18183:6630773,45510161 -g1,18183:32583029,45510161 -g1,18183:32583029,45510161 -) -] -(1,18183:32583029,45706769:0,0,0 -g1,18183:32583029,45706769 -) -) -] -(1,18183:6630773,47279633:25952256,0,0 -h1,18183:6630773,47279633:25952256,0,0 -) -] -(1,18183:4262630,4025873:0,0,0 -[1,18183:-473656,4025873:0,0,0 -(1,18183:-473656,-710413:0,0,0 -(1,18183:-473656,-710413:0,0,0 -g1,18183:-473656,-710413 -) -g1,18183:-473656,-710413 -) -] -) -] -!43262 -}355 -Input:2919:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2920:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2921:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2922:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2923:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2924:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!564 -{356 -[1,18225:4262630,47279633:28320399,43253760,0 -(1,18225:4262630,4025873:0,0,0 -[1,18225:-473656,4025873:0,0,0 -(1,18225:-473656,-710413:0,0,0 -(1,18225:-473656,-644877:0,0,0 -k1,18225:-473656,-644877:-65536 -) -(1,18225:-473656,4736287:0,0,0 -k1,18225:-473656,4736287:5209943 -) -g1,18225:-473656,-710413 -) -] -) -[1,18225:6630773,47279633:25952256,43253760,0 -[1,18225:6630773,4812305:25952256,786432,0 -(1,18225:6630773,4812305:25952256,513147,126483 -(1,18225:6630773,4812305:25952256,513147,126483 -g1,18225:3078558,4812305 -[1,18225:3078558,4812305:0,0,0 -(1,18225:3078558,2439708:0,1703936,0 -k1,18225:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,18225:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,18225:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 -) -] -) -) -) -] -[1,18225:3078558,4812305:0,0,0 -(1,18225:3078558,2439708:0,1703936,0 -g1,18225:29030814,2439708 -g1,18225:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,18225:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 -) -] -) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,18225:37855564,2439708:1179648,16384,0 -) -) -k1,18225:3078556,2439708:-34777008 -) -] -[1,18225:3078558,4812305:0,0,0 -(1,18225:3078558,49800853:0,16384,2228224 -k1,18225:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,18225:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,18225:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 -) -] -) -) -) -] -[1,18225:3078558,4812305:0,0,0 -(1,18225:3078558,49800853:0,16384,2228224 -g1,18225:29030814,49800853 -g1,18225:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,18225:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 -) -] -) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,18225:37855564,49800853:1179648,16384,0 -) -) -k1,18225:3078556,49800853:-34777008 -) -] -g1,18225:6630773,4812305 -g1,18225:6630773,4812305 -g1,18225:8113852,4812305 -g1,18225:9545158,4812305 -k1,18225:31387652,4812305:21842494 -) -) -] -[1,18225:6630773,45706769:25952256,40108032,0 -(1,18225:6630773,45706769:25952256,40108032,0 -(1,18225:6630773,45706769:0,0,0 -g1,18225:6630773,45706769 -) -[1,18225:6630773,45706769:25952256,40108032,0 -v1,18183:6630773,6254097:0,393216,0 -(1,18183:6630773,21199944:25952256,15339063,196608 -g1,18183:6630773,21199944 -g1,18183:6630773,21199944 -g1,18183:6434165,21199944 -(1,18183:6434165,21199944:0,15339063,196608 -r1,18225:32779637,21199944:26345472,15535671,196608 -k1,18183:6434165,21199944:-26345472 -) -(1,18183:6434165,21199944:26345472,15339063,196608 -[1,18183:6630773,21199944:25952256,15142455,0 -(1,18182:6630773,6468007:25952256,410518,101187 -h1,18182:6630773,6468007:0,0,0 -g1,18182:7579210,6468007 -g1,18182:7895356,6468007 -g1,18182:8211502,6468007 -g1,18182:8527648,6468007 -g1,18182:8843794,6468007 -g1,18182:9159940,6468007 -g1,18182:9476086,6468007 -g1,18182:9792232,6468007 -g1,18182:10108378,6468007 -g1,18182:10424524,6468007 -g1,18182:10740670,6468007 -g1,18182:11056816,6468007 -g1,18182:11372962,6468007 -g1,18182:11689108,6468007 -g1,18182:12005254,6468007 -g1,18182:12321400,6468007 -g1,18182:12637546,6468007 -g1,18182:12953692,6468007 -g1,18182:13269838,6468007 -g1,18182:13585984,6468007 -g1,18182:13902130,6468007 -k1,18182:13902130,6468007:0 -h1,18182:16747441,6468007:0,0,0 -k1,18182:32583029,6468007:15835588 -g1,18182:32583029,6468007 -) -(1,18182:6630773,7134185:25952256,404226,76021 -h1,18182:6630773,7134185:0,0,0 -g1,18182:7579210,7134185 -g1,18182:7895356,7134185 -g1,18182:8211502,7134185 -g1,18182:8527648,7134185 -g1,18182:8843794,7134185 -g1,18182:9159940,7134185 -g1,18182:9476086,7134185 -g1,18182:9792232,7134185 -g1,18182:10108378,7134185 -g1,18182:10424524,7134185 -g1,18182:10740670,7134185 -g1,18182:11056816,7134185 -g1,18182:11372962,7134185 -g1,18182:11689108,7134185 -g1,18182:12005254,7134185 -g1,18182:12321400,7134185 -g1,18182:12637546,7134185 -g1,18182:12953692,7134185 -g1,18182:13269838,7134185 -g1,18182:13585984,7134185 -g1,18182:13902130,7134185 -g1,18182:14218276,7134185 -g1,18182:14534422,7134185 -h1,18182:16431296,7134185:0,0,0 -k1,18182:32583029,7134185:16151733 -g1,18182:32583029,7134185 -) -(1,18182:6630773,7800363:25952256,404226,76021 -h1,18182:6630773,7800363:0,0,0 -g1,18182:7579210,7800363 -g1,18182:7895356,7800363 -g1,18182:8211502,7800363 -g1,18182:8527648,7800363 -g1,18182:8843794,7800363 -g1,18182:9159940,7800363 -g1,18182:9476086,7800363 -g1,18182:9792232,7800363 -g1,18182:10108378,7800363 -g1,18182:10424524,7800363 -g1,18182:10740670,7800363 -g1,18182:11056816,7800363 -g1,18182:11372962,7800363 -g1,18182:11689108,7800363 -g1,18182:12005254,7800363 -g1,18182:12321400,7800363 -g1,18182:12637546,7800363 -g1,18182:12953692,7800363 -g1,18182:13269838,7800363 -g1,18182:13585984,7800363 -g1,18182:13902130,7800363 -h1,18182:15799004,7800363:0,0,0 -k1,18182:32583028,7800363:16784024 -g1,18182:32583028,7800363 -) -(1,18182:6630773,8466541:25952256,379060,101187 -h1,18182:6630773,8466541:0,0,0 -g1,18182:7579210,8466541 -g1,18182:7895356,8466541 -g1,18182:8211502,8466541 -g1,18182:8527648,8466541 -g1,18182:8843794,8466541 -g1,18182:9159940,8466541 -g1,18182:9476086,8466541 -g1,18182:9792232,8466541 -g1,18182:10108378,8466541 -g1,18182:10424524,8466541 -g1,18182:10740670,8466541 -g1,18182:11056816,8466541 -g1,18182:11372962,8466541 -g1,18182:11689108,8466541 -g1,18182:12005254,8466541 -g1,18182:12321400,8466541 -g1,18182:12637546,8466541 -g1,18182:12953692,8466541 -g1,18182:13269838,8466541 -g1,18182:13585984,8466541 -g1,18182:13902130,8466541 -k1,18182:13902130,8466541:0 -h1,18182:16747441,8466541:0,0,0 -k1,18182:32583029,8466541:15835588 -g1,18182:32583029,8466541 -) -(1,18182:6630773,9132719:25952256,404226,76021 -h1,18182:6630773,9132719:0,0,0 -g1,18182:7579210,9132719 -g1,18182:7895356,9132719 -g1,18182:8211502,9132719 -g1,18182:8527648,9132719 -g1,18182:8843794,9132719 -g1,18182:9159940,9132719 -g1,18182:9476086,9132719 -g1,18182:9792232,9132719 -g1,18182:10108378,9132719 -g1,18182:10424524,9132719 -g1,18182:10740670,9132719 -g1,18182:11056816,9132719 -g1,18182:11372962,9132719 -g1,18182:11689108,9132719 -g1,18182:12005254,9132719 -g1,18182:12321400,9132719 -g1,18182:12637546,9132719 -g1,18182:12953692,9132719 -g1,18182:13269838,9132719 -g1,18182:13585984,9132719 -g1,18182:13902130,9132719 -g1,18182:14218276,9132719 -g1,18182:14534422,9132719 -h1,18182:16431296,9132719:0,0,0 -k1,18182:32583029,9132719:16151733 -g1,18182:32583029,9132719 -) -(1,18182:6630773,9798897:25952256,404226,76021 -h1,18182:6630773,9798897:0,0,0 -g1,18182:7579210,9798897 -g1,18182:7895356,9798897 -g1,18182:8211502,9798897 -g1,18182:8527648,9798897 -g1,18182:8843794,9798897 -g1,18182:9159940,9798897 -g1,18182:9476086,9798897 -g1,18182:9792232,9798897 -g1,18182:10108378,9798897 -g1,18182:10424524,9798897 -g1,18182:10740670,9798897 -g1,18182:11056816,9798897 -g1,18182:11372962,9798897 -g1,18182:11689108,9798897 -g1,18182:12005254,9798897 -g1,18182:12321400,9798897 -g1,18182:12637546,9798897 -g1,18182:12953692,9798897 -g1,18182:13269838,9798897 -g1,18182:13585984,9798897 -g1,18182:13902130,9798897 -h1,18182:15799004,9798897:0,0,0 -k1,18182:32583028,9798897:16784024 -g1,18182:32583028,9798897 -) -(1,18182:6630773,10465075:25952256,379060,101187 -h1,18182:6630773,10465075:0,0,0 -g1,18182:7579210,10465075 -g1,18182:7895356,10465075 -g1,18182:8211502,10465075 -g1,18182:8527648,10465075 -g1,18182:8843794,10465075 -g1,18182:9159940,10465075 -g1,18182:9476086,10465075 -g1,18182:9792232,10465075 -g1,18182:10108378,10465075 -g1,18182:10424524,10465075 -g1,18182:10740670,10465075 -g1,18182:11056816,10465075 -g1,18182:11372962,10465075 -g1,18182:11689108,10465075 -g1,18182:12005254,10465075 -g1,18182:12321400,10465075 -g1,18182:12637546,10465075 -g1,18182:12953692,10465075 -g1,18182:13269838,10465075 -g1,18182:13585984,10465075 -g1,18182:13902130,10465075 -k1,18182:13902130,10465075:0 -h1,18182:16747441,10465075:0,0,0 -k1,18182:32583029,10465075:15835588 -g1,18182:32583029,10465075 -) -(1,18182:6630773,11131253:25952256,404226,76021 -h1,18182:6630773,11131253:0,0,0 -g1,18182:7579210,11131253 -g1,18182:7895356,11131253 -g1,18182:8211502,11131253 -g1,18182:8527648,11131253 -g1,18182:8843794,11131253 -g1,18182:9159940,11131253 -g1,18182:9476086,11131253 -g1,18182:9792232,11131253 -g1,18182:10108378,11131253 -g1,18182:10424524,11131253 -g1,18182:10740670,11131253 -g1,18182:11056816,11131253 -g1,18182:11372962,11131253 -g1,18182:11689108,11131253 -g1,18182:12005254,11131253 -g1,18182:12321400,11131253 -g1,18182:12637546,11131253 -g1,18182:12953692,11131253 -g1,18182:13269838,11131253 -g1,18182:13585984,11131253 -g1,18182:13902130,11131253 -g1,18182:14218276,11131253 -g1,18182:14534422,11131253 -h1,18182:16431296,11131253:0,0,0 -k1,18182:32583029,11131253:16151733 -g1,18182:32583029,11131253 -) -(1,18182:6630773,11797431:25952256,404226,76021 -h1,18182:6630773,11797431:0,0,0 -g1,18182:7579210,11797431 -g1,18182:7895356,11797431 -g1,18182:8211502,11797431 -g1,18182:8527648,11797431 -g1,18182:8843794,11797431 -g1,18182:9159940,11797431 -g1,18182:9476086,11797431 -g1,18182:9792232,11797431 -g1,18182:10108378,11797431 -g1,18182:10424524,11797431 -g1,18182:10740670,11797431 -g1,18182:11056816,11797431 -g1,18182:11372962,11797431 -g1,18182:11689108,11797431 -g1,18182:12005254,11797431 -g1,18182:12321400,11797431 -g1,18182:12637546,11797431 -g1,18182:12953692,11797431 -g1,18182:13269838,11797431 -g1,18182:13585984,11797431 -g1,18182:13902130,11797431 -h1,18182:15799004,11797431:0,0,0 -k1,18182:32583028,11797431:16784024 -g1,18182:32583028,11797431 -) -(1,18182:6630773,12463609:25952256,404226,76021 -h1,18182:6630773,12463609:0,0,0 -g1,18182:7579210,12463609 -g1,18182:7895356,12463609 -g1,18182:8211502,12463609 -g1,18182:8527648,12463609 -g1,18182:8843794,12463609 -g1,18182:9159940,12463609 -g1,18182:9476086,12463609 -g1,18182:9792232,12463609 -g1,18182:10108378,12463609 -g1,18182:10424524,12463609 -g1,18182:10740670,12463609 -g1,18182:11056816,12463609 -g1,18182:11372962,12463609 -g1,18182:11689108,12463609 -g1,18182:12005254,12463609 -g1,18182:12321400,12463609 -g1,18182:12637546,12463609 -g1,18182:12953692,12463609 -g1,18182:13269838,12463609 -h1,18182:15166712,12463609:0,0,0 -k1,18182:32583028,12463609:17416316 -g1,18182:32583028,12463609 -) -(1,18182:6630773,13129787:25952256,404226,101187 -h1,18182:6630773,13129787:0,0,0 -g1,18182:7579210,13129787 -g1,18182:7895356,13129787 -g1,18182:8211502,13129787 -g1,18182:8527648,13129787 -g1,18182:8843794,13129787 -g1,18182:9159940,13129787 -g1,18182:9476086,13129787 -g1,18182:9792232,13129787 -g1,18182:10108378,13129787 -g1,18182:10424524,13129787 -g1,18182:10740670,13129787 -g1,18182:11056816,13129787 -g1,18182:11372962,13129787 -g1,18182:11689108,13129787 -g1,18182:12005254,13129787 -g1,18182:12321400,13129787 -g1,18182:12637546,13129787 -g1,18182:12953692,13129787 -g1,18182:13269838,13129787 -k1,18182:13269838,13129787:0 -h1,18182:17063586,13129787:0,0,0 -k1,18182:32583029,13129787:15519443 -g1,18182:32583029,13129787 -) -(1,18182:6630773,13795965:25952256,410518,82312 -h1,18182:6630773,13795965:0,0,0 -g1,18182:7579210,13795965 -g1,18182:7895356,13795965 -g1,18182:8211502,13795965 -g1,18182:8527648,13795965 -g1,18182:8843794,13795965 -g1,18182:9159940,13795965 -g1,18182:9476086,13795965 -g1,18182:9792232,13795965 -g1,18182:10108378,13795965 -g1,18182:10424524,13795965 -g1,18182:10740670,13795965 -g1,18182:11056816,13795965 -g1,18182:11372962,13795965 -g1,18182:11689108,13795965 -g1,18182:12005254,13795965 -g1,18182:12321400,13795965 -g1,18182:12637546,13795965 -g1,18182:12953692,13795965 -g1,18182:13269838,13795965 -g1,18182:13585984,13795965 -g1,18182:13902130,13795965 -g1,18182:14850567,13795965 -g1,18182:17063587,13795965 -g1,18182:21173482,13795965 -k1,18182:21173482,13795965:0 -h1,18182:24334939,13795965:0,0,0 -k1,18182:32583029,13795965:8248090 -g1,18182:32583029,13795965 -) -(1,18182:6630773,14462143:25952256,404226,76021 -h1,18182:6630773,14462143:0,0,0 -g1,18182:7579210,14462143 -g1,18182:7895356,14462143 -g1,18182:8211502,14462143 -g1,18182:8527648,14462143 -g1,18182:8843794,14462143 -g1,18182:9159940,14462143 -g1,18182:9476086,14462143 -g1,18182:9792232,14462143 -g1,18182:10108378,14462143 -g1,18182:10424524,14462143 -g1,18182:10740670,14462143 -g1,18182:11056816,14462143 -g1,18182:11372962,14462143 -g1,18182:11689108,14462143 -g1,18182:12005254,14462143 -g1,18182:12321400,14462143 -g1,18182:12637546,14462143 -g1,18182:12953692,14462143 -g1,18182:13269838,14462143 -g1,18182:13585984,14462143 -g1,18182:13902130,14462143 -h1,18182:15799004,14462143:0,0,0 -k1,18182:32583028,14462143:16784024 -g1,18182:32583028,14462143 -) -(1,18182:6630773,15128321:25952256,404226,76021 -h1,18182:6630773,15128321:0,0,0 -g1,18182:7579210,15128321 -g1,18182:7895356,15128321 -g1,18182:8211502,15128321 -g1,18182:8527648,15128321 -g1,18182:8843794,15128321 -g1,18182:9159940,15128321 -g1,18182:9476086,15128321 -g1,18182:9792232,15128321 -g1,18182:10108378,15128321 -g1,18182:10424524,15128321 -g1,18182:10740670,15128321 -g1,18182:11056816,15128321 -g1,18182:11372962,15128321 -h1,18182:13269836,15128321:0,0,0 -k1,18182:32583028,15128321:19313192 -g1,18182:32583028,15128321 -) -(1,18182:6630773,15794499:25952256,404226,76021 -h1,18182:6630773,15794499:0,0,0 -g1,18182:7579210,15794499 -g1,18182:7895356,15794499 -g1,18182:8211502,15794499 -g1,18182:8527648,15794499 -g1,18182:8843794,15794499 -g1,18182:9159940,15794499 -g1,18182:9476086,15794499 -g1,18182:9792232,15794499 -g1,18182:10108378,15794499 -g1,18182:10424524,15794499 -g1,18182:10740670,15794499 -h1,18182:12637544,15794499:0,0,0 -k1,18182:32583028,15794499:19945484 -g1,18182:32583028,15794499 -) -(1,18182:6630773,16460677:25952256,404226,76021 -h1,18182:6630773,16460677:0,0,0 -g1,18182:7579210,16460677 -g1,18182:7895356,16460677 -g1,18182:8211502,16460677 -g1,18182:8527648,16460677 -g1,18182:8843794,16460677 -g1,18182:9159940,16460677 -g1,18182:9476086,16460677 -h1,18182:11372960,16460677:0,0,0 -k1,18182:32583028,16460677:21210068 -g1,18182:32583028,16460677 -) -(1,18182:6630773,17126855:25952256,404226,76021 -h1,18182:6630773,17126855:0,0,0 -g1,18182:7579210,17126855 -g1,18182:7895356,17126855 -g1,18182:8211502,17126855 -g1,18182:8527648,17126855 -g1,18182:8843794,17126855 -h1,18182:10740668,17126855:0,0,0 -k1,18182:32583028,17126855:21842360 -g1,18182:32583028,17126855 -) -(1,18182:6630773,17793033:25952256,404226,76021 -h1,18182:6630773,17793033:0,0,0 -g1,18182:7579210,17793033 -g1,18182:7895356,17793033 -g1,18182:8211502,17793033 -g1,18182:8527648,17793033 -g1,18182:8843794,17793033 -h1,18182:11689105,17793033:0,0,0 -k1,18182:32583029,17793033:20893924 -g1,18182:32583029,17793033 -) -(1,18182:6630773,18459211:25952256,404226,76021 -h1,18182:6630773,18459211:0,0,0 -g1,18182:7579210,18459211 -g1,18182:7895356,18459211 -g1,18182:8211502,18459211 -g1,18182:8527648,18459211 -g1,18182:8843794,18459211 -h1,18182:10740668,18459211:0,0,0 -k1,18182:32583028,18459211:21842360 -g1,18182:32583028,18459211 -) -(1,18182:6630773,19125389:25952256,404226,76021 -h1,18182:6630773,19125389:0,0,0 -g1,18182:7579210,19125389 -g1,18182:7895356,19125389 -g1,18182:8211502,19125389 -g1,18182:8527648,19125389 -g1,18182:8843794,19125389 -h1,18182:11689105,19125389:0,0,0 -k1,18182:32583029,19125389:20893924 -g1,18182:32583029,19125389 -) -(1,18182:6630773,19791567:25952256,404226,76021 -h1,18182:6630773,19791567:0,0,0 -g1,18182:7579210,19791567 -g1,18182:7895356,19791567 -g1,18182:8211502,19791567 -g1,18182:8527648,19791567 -g1,18182:8843794,19791567 -h1,18182:10740668,19791567:0,0,0 -k1,18182:32583028,19791567:21842360 -g1,18182:32583028,19791567 -) -(1,18182:6630773,20457745:25952256,404226,101187 -h1,18182:6630773,20457745:0,0,0 -g1,18182:7579210,20457745 -g1,18182:7895356,20457745 -g1,18182:8211502,20457745 -g1,18182:8527648,20457745 -g1,18182:8843794,20457745 -k1,18182:8843794,20457745:0 -h1,18182:11372960,20457745:0,0,0 -k1,18182:32583028,20457745:21210068 -g1,18182:32583028,20457745 -) -(1,18182:6630773,21123923:25952256,404226,76021 -h1,18182:6630773,21123923:0,0,0 -g1,18182:7579210,21123923 -g1,18182:7895356,21123923 -g1,18182:8211502,21123923 -g1,18182:8527648,21123923 -g1,18182:8843794,21123923 -g1,18182:9159940,21123923 -g1,18182:9476086,21123923 -h1,18182:11689106,21123923:0,0,0 -k1,18182:32583030,21123923:20893924 -g1,18182:32583030,21123923 -) -] -) -g1,18183:32583029,21199944 -g1,18183:6630773,21199944 -g1,18183:6630773,21199944 -g1,18183:32583029,21199944 -g1,18183:32583029,21199944 -) -h1,18183:6630773,21396552:0,0,0 -(1,18187:6630773,22754784:25952256,513147,134348 -h1,18186:6630773,22754784:983040,0,0 -k1,18186:9710811,22754784:635545 -k1,18186:11214708,22754784:635545 -k1,18186:14054230,22754784:635546 -k1,18186:15708860,22754784:635545 -k1,18186:17570584,22754784:635545 -k1,18186:19773750,22754784:635545 -k1,18186:21197694,22754784:635546 -(1,18186:21197694,22754784:0,452978,115847 -r1,18225:22962807,22754784:1765113,568825,115847 -k1,18186:21197694,22754784:-1765113 -) -(1,18186:21197694,22754784:1765113,452978,115847 -k1,18186:21197694,22754784:3277 -h1,18186:22959530,22754784:0,411205,112570 -) -k1,18186:23598352,22754784:635545 -k1,18186:27186294,22754784:635545 -k1,18186:29557232,22754784:635545 -k1,18187:32583029,22754784:0 -) -(1,18187:6630773,23596272:25952256,505283,115847 -(1,18186:6630773,23596272:0,459977,115847 -r1,18225:11561293,23596272:4930520,575824,115847 -k1,18186:6630773,23596272:-4930520 -) -(1,18186:6630773,23596272:4930520,459977,115847 -k1,18186:6630773,23596272:3277 -h1,18186:11558016,23596272:0,411205,112570 -) -g1,18186:11760522,23596272 -g1,18186:13151196,23596272 -(1,18186:13151196,23596272:0,452978,115847 -r1,18225:16674868,23596272:3523672,568825,115847 -k1,18186:13151196,23596272:-3523672 -) -(1,18186:13151196,23596272:3523672,452978,115847 -k1,18186:13151196,23596272:3277 -h1,18186:16671591,23596272:0,411205,112570 -) -k1,18187:32583029,23596272:15734491 -g1,18187:32583029,23596272 -) -v1,18189:6630773,24779194:0,393216,0 -(1,18196:6630773,25832296:25952256,1446318,196608 -g1,18196:6630773,25832296 -g1,18196:6630773,25832296 -g1,18196:6434165,25832296 -(1,18196:6434165,25832296:0,1446318,196608 -r1,18225:32779637,25832296:26345472,1642926,196608 -k1,18196:6434165,25832296:-26345472 -) -(1,18196:6434165,25832296:26345472,1446318,196608 -[1,18196:6630773,25832296:25952256,1249710,0 -(1,18191:6630773,24993104:25952256,410518,107478 -(1,18190:6630773,24993104:0,0,0 -g1,18190:6630773,24993104 -g1,18190:6630773,24993104 -g1,18190:6303093,24993104 -(1,18190:6303093,24993104:0,0,0 -) -g1,18190:6630773,24993104 -) -k1,18191:6630773,24993104:0 -g1,18191:16747435,24993104 -h1,18191:20541183,24993104:0,0,0 -k1,18191:32583029,24993104:12041846 -g1,18191:32583029,24993104 -) -(1,18195:6630773,25724818:25952256,410518,107478 -(1,18193:6630773,25724818:0,0,0 -g1,18193:6630773,25724818 -g1,18193:6630773,25724818 -g1,18193:6303093,25724818 -(1,18193:6303093,25724818:0,0,0 -) -g1,18193:6630773,25724818 -) -g1,18195:7579210,25724818 -g1,18195:8843793,25724818 -g1,18195:9792230,25724818 -g1,18195:11056813,25724818 -g1,18195:15166707,25724818 -h1,18195:18644309,25724818:0,0,0 -k1,18195:32583029,25724818:13938720 -g1,18195:32583029,25724818 -) -] -) -g1,18196:32583029,25832296 -g1,18196:6630773,25832296 -g1,18196:6630773,25832296 -g1,18196:32583029,25832296 -g1,18196:32583029,25832296 -) -h1,18196:6630773,26028904:0,0,0 -(1,18201:6630773,27387137:25952256,513147,134348 -h1,18199:6630773,27387137:983040,0,0 -k1,18199:9023744,27387137:213244 -k1,18199:12262785,27387137:213244 -k1,18199:14857607,27387137:213244 -k1,18199:15686890,27387137:213245 -k1,18199:17103375,27387137:213244 -k1,18199:19896771,27387137:213244 -k1,18199:21214297,27387137:213244 -k1,18199:22175307,27387137:213244 -k1,18199:23901777,27387137:213244 -k1,18199:24766450,27387137:213245 -k1,18199:27930780,27387137:213244 -k1,18199:29533387,27387137:213244 -k1,18199:31314252,27387137:213244 -k1,18199:32583029,27387137:0 -) -(1,18201:6630773,28228625:25952256,513147,134348 -k1,18199:8809471,28228625:176573 -k1,18199:10058212,28228625:176572 -k1,18199:11520601,28228625:176573 -k1,18199:12348602,28228625:176573 -k1,18199:13937475,28228625:176572 -k1,18199:15503411,28228625:176573 -k1,18199:17247604,28228625:176572 -k1,18199:18737519,28228625:176573 -k1,18199:20649485,28228625:176573 -k1,18199:23336741,28228625:176572 -k1,18199:24797820,28228625:176573 -k1,18199:25965953,28228625:176573 -k1,18199:28524103,28228625:176572 -k1,18199:31259202,28228625:176573 -k1,18199:32583029,28228625:0 -) -(1,18201:6630773,29070113:25952256,505283,7863 -g1,18199:9735868,29070113 -k1,18201:32583028,29070113:22847160 -g1,18201:32583028,29070113 -) -(1,18202:6630773,31877681:25952256,32768,229376 -(1,18202:6630773,31877681:0,32768,229376 -(1,18202:6630773,31877681:5505024,32768,229376 -r1,18225:12135797,31877681:5505024,262144,229376 -) -k1,18202:6630773,31877681:-5505024 -) -(1,18202:6630773,31877681:25952256,32768,0 -r1,18225:32583029,31877681:25952256,32768,0 -) -) -(1,18202:6630773,33482009:25952256,615776,14155 -(1,18202:6630773,33482009:1974731,582746,14155 -g1,18202:6630773,33482009 -g1,18202:8605504,33482009 -) -g1,18202:10477999,33482009 -k1,18202:32583029,33482009:20466892 -g1,18202:32583029,33482009 -) -(1,18205:6630773,34716713:25952256,513147,134348 -k1,18204:8140149,34716713:223560 -k1,18204:9781252,34716713:223559 -k1,18204:12981482,34716713:223585 -k1,18204:15686914,34716713:223584 -k1,18204:17223840,34716713:223584 -k1,18204:18539909,34716713:223584 -k1,18204:19534196,34716713:223584 -k1,18204:21116973,34716713:223560 -k1,18204:23733932,34716713:223584 -k1,18204:26814230,34716713:223584 -k1,18204:27985466,34716713:223585 -k1,18204:30242632,34716713:223584 -k1,18204:31657661,34716713:223584 -k1,18205:32583029,34716713:0 -) -(1,18205:6630773,35558201:25952256,513147,134348 -k1,18204:9688945,35558201:174588 -k1,18204:11252896,35558201:174588 -k1,18204:12995105,35558201:174588 -k1,18204:16674558,35558201:174588 -k1,18204:20453626,35558201:174588 -k1,18204:23204433,35558201:174587 -k1,18204:25177329,35558201:174588 -k1,18204:27184304,35558201:174588 -k1,18204:27890389,35558201:174588 -k1,18204:29757117,35558201:174588 -k1,18204:32583029,35558201:0 -) -(1,18205:6630773,36399689:25952256,513147,134348 -k1,18204:7619915,36399689:179772 -k1,18204:8818771,36399689:179771 -k1,18204:11840184,36399689:179772 -k1,18204:13831371,36399689:179772 -k1,18204:17373139,36399689:179771 -k1,18204:18362281,36399689:179772 -k1,18204:19561137,36399689:179771 -k1,18204:22252904,36399689:179772 -k1,18204:23091968,36399689:179772 -k1,18204:24290824,36399689:179771 -k1,18204:25681027,36399689:179753 -k1,18204:28545153,36399689:179771 -k1,18204:29921612,36399689:179772 -k1,18204:32583029,36399689:0 -) -(1,18205:6630773,37241177:25952256,513147,134348 -k1,18204:8245279,37241177:225143 -k1,18204:9983649,37241177:225144 -k1,18204:11606675,37241177:225143 -k1,18204:12363316,37241177:225144 -k1,18204:14156080,37241177:225143 -k1,18204:14737084,37241177:225144 -k1,18204:18366167,37241177:225143 -k1,18204:20620306,37241177:225144 -k1,18204:22055873,37241177:225117 -k1,18204:24438462,37241177:225144 -k1,18204:25860292,37241177:225143 -k1,18204:28746853,37241177:225144 -k1,18204:30840427,37241177:225143 -k1,18204:32583029,37241177:0 -) -(1,18205:6630773,38082665:25952256,505283,134348 -k1,18204:7813193,38082665:163335 -k1,18204:9365891,38082665:163335 -k1,18204:10796692,38082665:163335 -k1,18204:11315887,38082665:163335 -(1,18204:11315887,38082665:0,452978,115847 -r1,18225:13432712,38082665:2116825,568825,115847 -k1,18204:11315887,38082665:-2116825 -) -(1,18204:11315887,38082665:2116825,452978,115847 -k1,18204:11315887,38082665:3277 -h1,18204:13429435,38082665:0,411205,112570 -) -k1,18204:13596047,38082665:163335 -k1,18204:14445544,38082665:163335 -k1,18204:17583557,38082665:163334 -k1,18204:20116674,38082665:163335 -k1,18204:21322031,38082665:163335 -k1,18204:24183483,38082665:163335 -k1,18204:25365903,38082665:163335 -k1,18204:28503917,38082665:163335 -k1,18204:30677897,38082665:163335 -k1,18205:32583029,38082665:0 -) -(1,18205:6630773,38924153:25952256,505283,134348 -k1,18204:9185257,38924153:214849 -k1,18204:12216187,38924153:214848 -k1,18204:13622481,38924153:214849 -k1,18204:15548475,38924153:214849 -k1,18204:17719573,38924153:214848 -k1,18204:19464688,38924153:214849 -k1,18204:20330965,38924153:214849 -k1,18204:21293579,38924153:214848 -k1,18204:24669229,38924153:214849 -k1,18204:25535506,38924153:214849 -k1,18204:28370483,38924153:214848 -k1,18204:29776777,38924153:214849 -k1,18204:32583029,38924153:0 -) -(1,18205:6630773,39765641:25952256,513147,134348 -(1,18204:6837867,39765641:0,414482,115847 -r1,18225:9306404,39765641:2468537,530329,115847 -k1,18204:6837867,39765641:-2468537 -) -(1,18204:6837867,39765641:2468537,414482,115847 -k1,18204:6837867,39765641:3277 -h1,18204:9303127,39765641:0,411205,112570 -) -k1,18204:9718125,39765641:204627 -k1,18204:12107067,39765641:204627 -k1,18204:16281866,39765641:204628 -k1,18204:17114328,39765641:204627 -k1,18204:18338040,39765641:204627 -k1,18204:19909748,39765641:204627 -k1,18204:20773668,39765641:204628 -k1,18204:23502742,39765641:204627 -k1,18204:25664929,39765641:204627 -k1,18204:26678926,39765641:204627 -k1,18204:27239413,39765641:204627 -k1,18204:29014284,39765641:204628 -k1,18204:29677008,39765641:204627 -k1,18204:30413132,39765641:204627 -k1,18205:32583029,39765641:0 -) -(1,18205:6630773,40607129:25952256,513147,134348 -k1,18204:8126400,40607129:186873 -k1,18204:8964700,40607129:186872 -k1,18204:10244058,40607129:186873 -k1,18204:13011083,40607129:186873 -k1,18204:14139052,40607129:186873 -k1,18204:14977352,40607129:186872 -k1,18204:17345919,40607129:186873 -k1,18204:18551877,40607129:186873 -k1,18204:20696310,40607129:186873 -k1,18204:23297528,40607129:186872 -k1,18204:25052022,40607129:186873 -k1,18204:26257980,40607129:186873 -(1,18204:26257980,40607129:0,414482,122846 -r1,18225:27671381,40607129:1413401,537328,122846 -k1,18204:26257980,40607129:-1413401 -) -(1,18204:26257980,40607129:1413401,414482,122846 -k1,18204:26257980,40607129:3277 -h1,18204:27668104,40607129:0,411205,112570 -) -k1,18204:27858254,40607129:186873 -k1,18204:29028166,40607129:186872 -k1,18204:30482505,40607129:186873 -k1,18204:31025238,40607129:186873 -k1,18204:32583029,40607129:0 -) -(1,18205:6630773,41448617:25952256,513147,134348 -g1,18204:8129581,41448617 -g1,18204:8988102,41448617 -g1,18204:10206416,41448617 -g1,18204:11477814,41448617 -g1,18204:13067062,41448617 -g1,18204:16012905,41448617 -g1,18204:16743631,41448617 -g1,18204:20032883,41448617 -g1,18204:20848150,41448617 -g1,18204:23326066,41448617 -h1,18204:24296654,41448617:0,0,0 -g1,18204:24495883,41448617 -g1,18204:25504482,41448617 -g1,18204:27201864,41448617 -h1,18204:28397241,41448617:0,0,0 -k1,18205:32583029,41448617:3805024 -g1,18205:32583029,41448617 -) -v1,18207:6630773,42631539:0,393216,0 -(1,18225:6630773,45510161:25952256,3271838,196608 -g1,18225:6630773,45510161 -g1,18225:6630773,45510161 -g1,18225:6434165,45510161 -(1,18225:6434165,45510161:0,3271838,196608 -r1,18225:32779637,45510161:26345472,3468446,196608 -k1,18225:6434165,45510161:-26345472 -) -(1,18225:6434165,45510161:26345472,3271838,196608 -[1,18225:6630773,45510161:25952256,3075230,0 -(1,18209:6630773,42845449:25952256,410518,107478 -(1,18208:6630773,42845449:0,0,0 -g1,18208:6630773,42845449 -g1,18208:6630773,42845449 -g1,18208:6303093,42845449 -(1,18208:6303093,42845449:0,0,0 -) -g1,18208:6630773,42845449 -) -k1,18209:6630773,42845449:0 -g1,18209:12321396,42845449 -g1,18209:12953688,42845449 -g1,18209:20225039,42845449 -g1,18209:25599516,42845449 -g1,18209:26231808,42845449 -g1,18209:28128683,42845449 -k1,18209:28128683,42845449:0 -h1,18209:29393265,42845449:0,0,0 -k1,18209:32583029,42845449:3189764 -g1,18209:32583029,42845449 -) -(1,18210:6630773,43511627:25952256,404226,76021 -h1,18210:6630773,43511627:0,0,0 -g1,18210:9792231,43511627 -g1,18210:10424523,43511627 -g1,18210:11372960,43511627 -k1,18210:11372960,43511627:0 -h1,18210:12637542,43511627:0,0,0 -k1,18210:32583030,43511627:19945488 -g1,18210:32583030,43511627 -) -(1,18211:6630773,44177805:25952256,404226,76021 -h1,18211:6630773,44177805:0,0,0 -g1,18211:11372959,44177805 -g1,18211:12005251,44177805 -g1,18211:15798999,44177805 -k1,18211:15798999,44177805:0 -h1,18211:17063581,44177805:0,0,0 -k1,18211:32583029,44177805:15519448 -g1,18211:32583029,44177805 -) -(1,18212:6630773,44843983:25952256,404226,107478 -h1,18212:6630773,44843983:0,0,0 -g1,18212:9476085,44843983 -g1,18212:10108377,44843983 -g1,18212:13585979,44843983 -g1,18212:14534416,44843983 -g1,18212:18012019,44843983 -g1,18212:21173476,44843983 -g1,18212:21805768,44843983 -g1,18212:24018788,44843983 -k1,18212:24018788,44843983:0 -h1,18212:25283370,44843983:0,0,0 -k1,18212:32583029,44843983:7299659 -g1,18212:32583029,44843983 -) -(1,18213:6630773,45510161:25952256,410518,101187 -h1,18213:6630773,45510161:0,0,0 -g1,18213:9792230,45510161 -g1,18213:10424522,45510161 -g1,18213:11372960,45510161 -g1,18213:12321397,45510161 -g1,18213:12953689,45510161 -g1,18213:16747438,45510161 -g1,18213:20541187,45510161 -g1,18213:21173479,45510161 -g1,18213:22438063,45510161 -g1,18213:23070355,45510161 -g1,18213:25915667,45510161 -g1,18213:26547959,45510161 -h1,18213:28128687,45510161:0,0,0 -k1,18213:32583029,45510161:4454342 -g1,18213:32583029,45510161 -) -] -) -g1,18225:32583029,45510161 -g1,18225:6630773,45510161 -g1,18225:6630773,45510161 -g1,18225:32583029,45510161 -g1,18225:32583029,45510161 -) -] -(1,18225:32583029,45706769:0,0,0 -g1,18225:32583029,45706769 -) -) -] -(1,18225:6630773,47279633:25952256,0,0 -h1,18225:6630773,47279633:25952256,0,0 -) -] -(1,18225:4262630,4025873:0,0,0 -[1,18225:-473656,4025873:0,0,0 -(1,18225:-473656,-710413:0,0,0 -(1,18225:-473656,-710413:0,0,0 -g1,18225:-473656,-710413 -) -g1,18225:-473656,-710413 -) -] -) -] -!29978 -}356 -Input:2925:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2926:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2927:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2928:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2929:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2930:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2931:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2932:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2933:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2934:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2935:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2936:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2937:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2938:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2939:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2940:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1484 -{357 -[1,18249:4262630,47279633:28320399,43253760,0 -(1,18249:4262630,4025873:0,0,0 -[1,18249:-473656,4025873:0,0,0 -(1,18249:-473656,-710413:0,0,0 -(1,18249:-473656,-644877:0,0,0 -k1,18249:-473656,-644877:-65536 -) -(1,18249:-473656,4736287:0,0,0 -k1,18249:-473656,4736287:5209943 -) -g1,18249:-473656,-710413 -) -] -) -[1,18249:6630773,47279633:25952256,43253760,0 -[1,18249:6630773,4812305:25952256,786432,0 -(1,18249:6630773,4812305:25952256,505283,126483 -(1,18249:6630773,4812305:25952256,505283,126483 -g1,18249:3078558,4812305 -[1,18249:3078558,4812305:0,0,0 -(1,18249:3078558,2439708:0,1703936,0 -k1,18249:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,18249:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,18249:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 -) -] -) -) -) -] -[1,18249:3078558,4812305:0,0,0 -(1,18249:3078558,2439708:0,1703936,0 -g1,18249:29030814,2439708 -g1,18249:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,18249:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 -) -] -) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,18249:37855564,2439708:1179648,16384,0 -) -) -k1,18249:3078556,2439708:-34777008 -) -] -[1,18249:3078558,4812305:0,0,0 -(1,18249:3078558,49800853:0,16384,2228224 -k1,18249:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,18249:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,18249:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 -) -] -) -) -) -] -[1,18249:3078558,4812305:0,0,0 -(1,18249:3078558,49800853:0,16384,2228224 -g1,18249:29030814,49800853 -g1,18249:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,18249:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 -) -] -) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,18249:37855564,49800853:1179648,16384,0 -) -) -k1,18249:3078556,49800853:-34777008 -) -] -g1,18249:6630773,4812305 -k1,18249:25146660,4812305:17320510 -g1,18249:26880087,4812305 -g1,18249:29193507,4812305 -g1,18249:30603186,4812305 -) -) -] -[1,18249:6630773,45706769:25952256,40108032,0 -(1,18249:6630773,45706769:25952256,40108032,0 -(1,18249:6630773,45706769:0,0,0 -g1,18249:6630773,45706769 -) -[1,18249:6630773,45706769:25952256,40108032,0 -v1,18225:6630773,6254097:0,393216,0 -(1,18225:6630773,11131251:25952256,5270370,196608 -g1,18225:6630773,11131251 -g1,18225:6630773,11131251 -g1,18225:6434165,11131251 -(1,18225:6434165,11131251:0,5270370,196608 -r1,18249:32779637,11131251:26345472,5466978,196608 -k1,18225:6434165,11131251:-26345472 -) -(1,18225:6434165,11131251:26345472,5270370,196608 -[1,18225:6630773,11131251:25952256,5073762,0 -(1,18224:6630773,6461715:25952256,404226,9436 -(1,18215:6630773,6461715:0,0,0 -g1,18215:6630773,6461715 -g1,18215:6630773,6461715 -g1,18215:6303093,6461715 -(1,18215:6303093,6461715:0,0,0 -) -g1,18215:6630773,6461715 -) -g1,18224:7579210,6461715 -g1,18224:8211502,6461715 -g1,18224:8843794,6461715 -g1,18224:11372960,6461715 -g1,18224:12637543,6461715 -g1,18224:13269835,6461715 -h1,18224:13585981,6461715:0,0,0 -k1,18224:32583029,6461715:18997048 -g1,18224:32583029,6461715 -) -(1,18224:6630773,7127893:25952256,410518,101187 -h1,18224:6630773,7127893:0,0,0 -k1,18224:7573086,7127893:310022 -k1,18224:7883107,7127893:310021 -k1,18224:8193129,7127893:310022 -k1,18224:9767733,7127893:310021 -k1,18224:10077755,7127893:310022 -k1,18224:10387776,7127893:310021 -k1,18224:10697798,7127893:310022 -k1,18224:11007819,7127893:310021 -k1,18224:11317841,7127893:310022 -k1,18224:11627862,7127893:310021 -k1,18224:11937884,7127893:310022 -k1,18224:12247905,7127893:310021 -k1,18224:12557927,7127893:310022 -k1,18224:12867948,7127893:310021 -k1,18224:13177970,7127893:310022 -k1,18224:13487991,7127893:310021 -k1,18224:13798013,7127893:310022 -k1,18224:14108034,7127893:310021 -k1,18224:14418056,7127893:310022 -k1,18224:14728077,7127893:310021 -k1,18224:15038099,7127893:310022 -k1,18224:15348120,7127893:310021 -k1,18224:15658142,7127893:310022 -k1,18224:15968163,7127893:310021 -k1,18224:17858913,7127893:310022 -k1,18224:18168934,7127893:310021 -k1,18224:19743539,7127893:310022 -k1,18224:20053560,7127893:310021 -k1,18224:20363582,7127893:310022 -k1,18224:20673603,7127893:310021 -k1,18224:20983625,7127893:310022 -k1,18224:21293646,7127893:310021 -k1,18224:21603668,7127893:310022 -k1,18224:21913689,7127893:310021 -k1,18224:22223711,7127893:310022 -k1,18224:22533732,7127893:310021 -k1,18224:22843754,7127893:310022 -k1,18224:23153775,7127893:310021 -k1,18224:23463797,7127893:310022 -k1,18224:23773818,7127893:310021 -k1,18224:24083840,7127893:310022 -k1,18224:25658444,7127893:310021 -k1,18224:25968466,7127893:310022 -k1,18224:27226924,7127893:310021 -k1,18224:27536946,7127893:310022 -k1,18224:27846967,7127893:310021 -k1,18224:30370009,7127893:310022 -h1,18224:32583029,7127893:0,0,0 -k1,18224:32583029,7127893:0 -k1,18224:32583029,7127893:0 -) -(1,18224:6630773,7794071:25952256,404226,6290 -h1,18224:6630773,7794071:0,0,0 -g1,18224:7579210,7794071 -g1,18224:7895356,7794071 -g1,18224:8211502,7794071 -g1,18224:10108377,7794071 -g1,18224:10424523,7794071 -g1,18224:10740669,7794071 -g1,18224:11056815,7794071 -g1,18224:11372961,7794071 -g1,18224:11689107,7794071 -g1,18224:12005253,7794071 -g1,18224:12321399,7794071 -g1,18224:12637545,7794071 -g1,18224:12953691,7794071 -g1,18224:13269837,7794071 -g1,18224:13585983,7794071 -g1,18224:13902129,7794071 -g1,18224:14218275,7794071 -g1,18224:14534421,7794071 -g1,18224:14850567,7794071 -g1,18224:15166713,7794071 -g1,18224:15482859,7794071 -g1,18224:15799005,7794071 -g1,18224:16115151,7794071 -g1,18224:18012026,7794071 -g1,18224:18328172,7794071 -g1,18224:20225047,7794071 -g1,18224:20541193,7794071 -g1,18224:20857339,7794071 -g1,18224:21173485,7794071 -g1,18224:21489631,7794071 -g1,18224:21805777,7794071 -g1,18224:22121923,7794071 -g1,18224:22438069,7794071 -g1,18224:22754215,7794071 -g1,18224:23070361,7794071 -g1,18224:23386507,7794071 -g1,18224:23702653,7794071 -g1,18224:24018799,7794071 -g1,18224:24334945,7794071 -g1,18224:26231820,7794071 -g1,18224:28128695,7794071 -g1,18224:30025570,7794071 -g1,18224:30341716,7794071 -g1,18224:30657862,7794071 -k1,18224:30657862,7794071:0 -h1,18224:32238591,7794071:0,0,0 -k1,18224:32583029,7794071:344438 -g1,18224:32583029,7794071 -) -(1,18224:6630773,8460249:25952256,404226,101187 -h1,18224:6630773,8460249:0,0,0 -k1,18224:7560021,8460249:296957 -k1,18224:8173123,8460249:296956 -k1,18224:16057577,8460249:296957 -k1,18224:18251408,8460249:296957 -k1,18224:24238985,8460249:296956 -k1,18224:24852088,8460249:296957 -k1,18224:25149045,8460249:296957 -k1,18224:25446001,8460249:296956 -k1,18224:25742958,8460249:296957 -k1,18224:26039915,8460249:296957 -k1,18224:26969162,8460249:296956 -k1,18224:27266119,8460249:296957 -k1,18224:27563076,8460249:296957 -k1,18224:27860032,8460249:296956 -k1,18224:30370009,8460249:296957 -h1,18224:32583029,8460249:0,0,0 -k1,18224:32583029,8460249:0 -k1,18224:32583029,8460249:0 -) -(1,18224:6630773,9126427:25952256,404226,101187 -h1,18224:6630773,9126427:0,0,0 -k1,18224:7560021,9126427:296957 -k1,18224:8173123,9126427:296956 -k1,18224:16057577,9126427:296957 -k1,18224:18251408,9126427:296957 -k1,18224:24238985,9126427:296956 -k1,18224:24852088,9126427:296957 -k1,18224:25149045,9126427:296957 -k1,18224:25446001,9126427:296956 -k1,18224:25742958,9126427:296957 -k1,18224:26039915,9126427:296957 -k1,18224:26969162,9126427:296956 -k1,18224:27266119,9126427:296957 -k1,18224:27563076,9126427:296957 -k1,18224:27860032,9126427:296956 -k1,18224:30370009,9126427:296957 -h1,18224:32583029,9126427:0,0,0 -k1,18224:32583029,9126427:0 -k1,18224:32583029,9126427:0 -) -(1,18224:6630773,9792605:25952256,404226,101187 -h1,18224:6630773,9792605:0,0,0 -k1,18224:7560021,9792605:296957 -k1,18224:8173123,9792605:296956 -k1,18224:16057577,9792605:296957 -k1,18224:18251408,9792605:296957 -k1,18224:24238985,9792605:296956 -k1,18224:24852088,9792605:296957 -k1,18224:25149045,9792605:296957 -k1,18224:25446001,9792605:296956 -k1,18224:25742958,9792605:296957 -k1,18224:26039915,9792605:296957 -k1,18224:26969162,9792605:296956 -k1,18224:27266119,9792605:296957 -k1,18224:27563076,9792605:296957 -k1,18224:27860032,9792605:296956 -k1,18224:30370009,9792605:296957 -h1,18224:32583029,9792605:0,0,0 -k1,18224:32583029,9792605:0 -k1,18224:32583029,9792605:0 -) -(1,18224:6630773,10458783:25952256,404226,82312 -h1,18224:6630773,10458783:0,0,0 -g1,18224:7579210,10458783 -g1,18224:8211502,10458783 -g1,18224:9476085,10458783 -g1,18224:11056814,10458783 -g1,18224:12321397,10458783 -g1,18224:13902126,10458783 -g1,18224:15799001,10458783 -g1,18224:17063584,10458783 -g1,18224:20857332,10458783 -g1,18224:23702643,10458783 -g1,18224:25599517,10458783 -g1,18224:26547954,10458783 -k1,18224:26547954,10458783:0 -h1,18224:30025557,10458783:0,0,0 -k1,18224:32583029,10458783:2557472 -g1,18224:32583029,10458783 -) -(1,18224:6630773,11124961:25952256,404226,6290 -h1,18224:6630773,11124961:0,0,0 -g1,18224:7579210,11124961 -g1,18224:8211502,11124961 -g1,18224:8527648,11124961 -g1,18224:8843794,11124961 -g1,18224:9792231,11124961 -h1,18224:12953688,11124961:0,0,0 -k1,18224:32583028,11124961:19629340 -g1,18224:32583028,11124961 -) -] -) -g1,18225:32583029,11131251 -g1,18225:6630773,11131251 -g1,18225:6630773,11131251 -g1,18225:32583029,11131251 -g1,18225:32583029,11131251 -) -h1,18225:6630773,11327859:0,0,0 -(1,18229:6630773,12649102:25952256,505283,134348 -h1,18228:6630773,12649102:983040,0,0 -k1,18228:8015023,12649102:188218 -k1,18228:9678468,12649102:188230 -k1,18228:12071984,12649102:188229 -k1,18228:13026329,12649102:188229 -k1,18228:16617188,12649102:188230 -k1,18228:17566945,12649102:188229 -k1,18228:19493190,12649102:188230 -k1,18228:20332847,12649102:188229 -k1,18228:22236809,12649102:188229 -k1,18228:24756155,12649102:188230 -k1,18228:26274765,12649102:188229 -k1,18228:27666235,12649102:188229 -k1,18228:29244484,12649102:188230 -k1,18228:31533142,12649102:188229 -k1,18228:32583029,12649102:0 -) -(1,18229:6630773,13490590:25952256,513147,134348 -g1,18228:9108689,13490590 -h1,18228:10079277,13490590:0,0,0 -g1,18228:10278506,13490590 -g1,18228:11287105,13490590 -g1,18228:12984487,13490590 -h1,18228:14179864,13490590:0,0,0 -g1,18228:14379093,13490590 -g1,18228:15525973,13490590 -g1,18228:17842670,13490590 -g1,18228:18851269,13490590 -g1,18228:20069583,13490590 -g1,18228:21361297,13490590 -g1,18228:22219818,13490590 -g1,18228:23438132,13490590 -g1,18228:25027380,13490590 -g1,18228:26418054,13490590 -g1,18228:29292463,13490590 -k1,18229:32583029,13490590:39980 -g1,18229:32583029,13490590 -) -v1,18231:6630773,14811834:0,393216,0 -(1,18232:6630773,18780842:25952256,4362224,616038 -g1,18232:6630773,18780842 -(1,18232:6630773,18780842:25952256,4362224,616038 -(1,18232:6630773,19396880:25952256,4978262,0 -[1,18232:6630773,19396880:25952256,4978262,0 -(1,18232:6630773,19370666:25952256,4925834,0 -r1,18249:6656987,19370666:26214,4925834,0 -[1,18232:6656987,19370666:25899828,4925834,0 -(1,18232:6656987,18780842:25899828,3746186,0 -[1,18232:7246811,18780842:24720180,3746186,0 -(1,18232:7246811,16122030:24720180,1087374,126483 -k1,18231:8636747,16122030:180233 -k1,18231:9646009,16122030:180232 -k1,18231:13491015,16122030:180233 -k1,18231:15219863,16122030:180232 -k1,18231:16789459,16122030:180233 -k1,18231:21806903,16122030:180232 -k1,18231:23670101,16122030:180233 -k1,18231:25512981,16122030:180232 -k1,18231:26309252,16122030:180233 -k1,18231:27941106,16122030:180232 -k1,18231:31307699,16122030:180233 -k1,18231:31966991,16122030:0 -) -(1,18232:7246811,16963518:24720180,513147,134348 -k1,18231:8602096,16963518:152044 -k1,18231:10317828,16963518:152043 -k1,18231:11958195,16963518:152044 -k1,18231:12871766,16963518:152043 -k1,18231:16079098,16963518:152044 -k1,18231:17250226,16963518:152043 -k1,18231:18708403,16963518:152044 -k1,18231:22046807,16963518:152044 -k1,18231:22960378,16963518:152043 -k1,18231:24891724,16963518:152044 -k1,18231:28120682,16963518:152043 -k1,18231:29291811,16963518:152044 -k1,18231:31966991,16963518:0 -) -(1,18232:7246811,17805006:24720180,505283,134348 -k1,18231:10343941,17805006:176846 -k1,18231:11712233,17805006:176847 -k1,18231:14667150,17805006:176846 -k1,18231:17031589,17805006:176847 -k1,18231:18365145,17805006:176846 -k1,18231:21728351,17805006:176846 -k1,18231:22517960,17805006:176847 -k1,18231:23050666,17805006:176846 -k1,18231:24826590,17805006:176846 -k1,18231:26194882,17805006:176847 -k1,18231:26984490,17805006:176846 -k1,18231:28612959,17805006:176847 -k1,18231:30145090,17805006:176846 -k1,18231:31966991,17805006:0 -) -(1,18232:7246811,18646494:24720180,513147,134348 -k1,18231:8455799,18646494:189903 -k1,18231:11424429,18646494:189903 -k1,18231:13294675,18646494:189903 -k1,18231:14676023,18646494:189903 -k1,18231:16252668,18646494:189903 -k1,18231:17508842,18646494:189903 -k1,18231:18646396,18646494:189903 -k1,18231:20384915,18646494:189903 -k1,18231:21675823,18646494:189903 -k1,18231:24527143,18646494:189903 -k1,18231:26284667,18646494:189903 -k1,18231:27493655,18646494:189903 -k1,18231:30438036,18646494:189903 -k1,18232:31966991,18646494:0 -k1,18232:31966991,18646494:0 -) -] -) -] -r1,18249:32583029,19370666:26214,4925834,0 -) -] -) -) -g1,18232:32583029,18780842 -) -h1,18232:6630773,19396880:0,0,0 -(1,18236:6630773,22684203:25952256,32768,229376 -(1,18236:6630773,22684203:0,32768,229376 -(1,18236:6630773,22684203:5505024,32768,229376 -r1,18249:12135797,22684203:5505024,262144,229376 -) -k1,18236:6630773,22684203:-5505024 -) -(1,18236:6630773,22684203:25952256,32768,0 -r1,18249:32583029,22684203:25952256,32768,0 -) -) -(1,18236:6630773,24288531:25952256,606339,14155 -(1,18236:6630773,24288531:1974731,582746,14155 -g1,18236:6630773,24288531 -g1,18236:8605504,24288531 -) -k1,18236:32583028,24288531:19335216 -g1,18236:32583028,24288531 -) -(1,18240:6630773,25523235:25952256,513147,126483 -k1,18239:9860933,25523235:202397 -k1,18239:12078562,25523235:202397 -k1,18239:13973099,25523235:202397 -k1,18239:16017057,25523235:202396 -k1,18239:17410899,25523235:202397 -k1,18239:19215651,25523235:202397 -k1,18239:21259610,25523235:202397 -k1,18239:22453567,25523235:202397 -k1,18239:23675049,25523235:202397 -k1,18239:25479145,25523235:202396 -k1,18239:28986523,25523235:202397 -k1,18239:30702146,25523235:202397 -k1,18239:32583029,25523235:0 -) -(1,18240:6630773,26364723:25952256,505283,134348 -k1,18239:10197898,26364723:205128 -k1,18239:13475353,26364723:205127 -k1,18239:15535150,26364723:205128 -k1,18239:16549647,26364723:205127 -k1,18239:17773860,26364723:205128 -k1,18239:21272171,26364723:205127 -k1,18239:24687908,26364723:205128 -k1,18239:26725422,26364723:205127 -k1,18239:27462047,26364723:205128 -k1,18239:30451143,26364723:205127 -k1,18239:31012131,26364723:205128 -k1,18240:32583029,26364723:0 -) -(1,18240:6630773,27206211:25952256,513147,134348 -k1,18239:9717670,27206211:241979 -k1,18239:10942689,27206211:241979 -k1,18239:13365051,27206211:241979 -k1,18239:14554681,27206211:241979 -k1,18239:17749712,27206211:241979 -k1,18239:18650983,27206211:241979 -k1,18239:22186145,27206211:241978 -k1,18239:23991158,27206211:241979 -k1,18239:25305306,27206211:241979 -k1,18239:26005382,27206211:241979 -k1,18239:27740271,27206211:241979 -k1,18239:29048521,27206211:241979 -k1,18239:31816913,27206211:241979 -k1,18239:32583029,27206211:0 -) -(1,18240:6630773,28047699:25952256,513147,134348 -k1,18239:7874592,28047699:224734 -k1,18239:10705037,28047699:224734 -k1,18239:13335598,28047699:224734 -k1,18239:14176369,28047699:224733 -k1,18239:16334415,28047699:224734 -k1,18239:17542189,28047699:224734 -k1,18239:20451278,28047699:224734 -k1,18239:21629561,28047699:224734 -k1,18239:22986757,28047699:224734 -k1,18239:24699813,28047699:224733 -k1,18239:25686075,28047699:224734 -k1,18239:29631943,28047699:224734 -k1,18239:32583029,28047699:0 -) -(1,18240:6630773,28889187:25952256,513147,134348 -k1,18239:8013834,28889187:186374 -k1,18239:9183248,28889187:186374 -k1,18239:11550006,28889187:186375 -k1,18239:13249606,28889187:186374 -k1,18239:14197508,28889187:186374 -k1,18239:17161298,28889187:186374 -k1,18239:18448678,28889187:186375 -k1,18239:21296469,28889187:186374 -k1,18239:25362574,28889187:186374 -k1,18239:26936345,28889187:186374 -k1,18239:28141805,28889187:186375 -k1,18239:30184814,28889187:186374 -k1,18239:31562633,28889187:186374 -k1,18239:32583029,28889187:0 -) -(1,18240:6630773,29730675:25952256,513147,134348 -k1,18239:9291912,29730675:150455 -k1,18239:10882194,29730675:150456 -k1,18239:11684077,29730675:150455 -k1,18239:12582299,29730675:150456 -k1,18239:13945825,29730675:150455 -k1,18239:15374887,29730675:150455 -k1,18239:18819838,29730675:150456 -k1,18239:19731821,29730675:150455 -k1,18239:22666245,29730675:150455 -k1,18239:23231495,29730675:150407 -k1,18239:26292405,29730675:150456 -k1,18239:27634305,29730675:150455 -k1,18239:29121695,29730675:150456 -k1,18239:31563944,29730675:150455 -k1,18239:32583029,29730675:0 -) -(1,18240:6630773,30572163:25952256,513147,126483 -k1,18239:7780976,30572163:167163 -k1,18239:8599568,30572163:167164 -k1,18239:9514497,30572163:167163 -k1,18239:12318830,30572163:167164 -k1,18239:13137421,30572163:167163 -k1,18239:13660445,30572163:167164 -k1,18239:15477805,30572163:167163 -k1,18239:18130749,30572163:167163 -k1,18239:20478296,30572163:167164 -k1,18239:22039410,30572163:167163 -k1,18239:24983990,30572163:167164 -k1,18239:26756785,30572163:167163 -k1,18239:28966706,30572163:167164 -k1,18239:31315563,30572163:167163 -k1,18240:32583029,30572163:0 -) -(1,18240:6630773,31413651:25952256,513147,126483 -k1,18239:7461722,31413651:242436 -k1,18239:8900845,31413651:242436 -k1,18239:11487504,31413651:242436 -k1,18239:13910323,31413651:242436 -k1,18239:14684256,31413651:242436 -k1,18239:16781361,31413651:242436 -k1,18239:17833167,31413651:242436 -k1,18239:19434777,31413651:242393 -k1,18239:20868658,31413651:242436 -k1,18239:24036621,31413651:242436 -k1,18239:26403734,31413651:242436 -k1,18239:27297598,31413651:242436 -k1,18239:29977973,31413651:242436 -k1,18239:32583029,31413651:0 -) -(1,18240:6630773,32255139:25952256,513147,126483 -k1,18239:8511001,32255139:224133 -k1,18239:10756920,32255139:224133 -k1,18239:13491737,32255139:224133 -k1,18239:14707430,32255139:224133 -k1,18239:16581760,32255139:224133 -k1,18239:19463378,32255139:224133 -k1,18239:23396193,32255139:224133 -k1,18239:25992074,32255139:224133 -k1,18239:27712394,32255139:224133 -k1,18239:28622689,32255139:224133 -k1,18239:31966991,32255139:224133 -k1,18239:32583029,32255139:0 -) -(1,18240:6630773,33096627:25952256,505283,126483 -k1,18239:9489366,33096627:192588 -k1,18239:10333382,33096627:192588 -k1,18239:11545056,33096627:192589 -k1,18239:13659815,33096627:192588 -k1,18239:15415437,33096627:192588 -k1,18239:16235860,33096627:192588 -k1,18239:17194564,33096627:192588 -k1,18239:19258206,33096627:192589 -k1,18239:20826395,33096627:192588 -k1,18239:23029628,33096627:192588 -k1,18239:25645082,33096627:192588 -k1,18239:26523832,33096627:192588 -k1,18239:28209987,33096627:192589 -k1,18239:29085460,33096627:192588 -k1,18239:31021961,33096627:192588 -k1,18240:32583029,33096627:0 -) -(1,18240:6630773,33938115:25952256,513147,126483 -k1,18239:8742145,33938115:250805 -k1,18239:9754479,33938115:250806 -k1,18239:12073600,33938115:250805 -k1,18239:12983697,33938115:250805 -k1,18239:14253587,33938115:250805 -k1,18239:17829034,33938115:250806 -k1,18239:21200008,33938115:250805 -k1,18239:22555095,33938115:250805 -k1,18239:23553667,33938115:250806 -k1,18239:26754247,33938115:250805 -k1,18239:28272518,33938115:250805 -k1,18239:28938115,33938115:250754 -k1,18239:31140582,33938115:250805 -k1,18239:32583029,33938115:0 -) -(1,18240:6630773,34779603:25952256,505283,126483 -g1,18239:7849087,34779603 -g1,18239:11168485,34779603 -k1,18240:32583030,34779603:17684236 -g1,18240:32583030,34779603 -) -v1,18242:6630773,36100847:0,393216,0 -(1,18249:6630773,45116945:25952256,9409314,589824 -g1,18249:6630773,45116945 -(1,18249:6630773,45116945:25952256,9409314,589824 -(1,18249:6630773,45706769:25952256,9999138,0 -[1,18249:6630773,45706769:25952256,9999138,0 -(1,18249:6630773,45706769:25952256,9972924,0 -r1,18249:6656987,45706769:26214,9972924,0 -[1,18249:6656987,45706769:25899828,9972924,0 -(1,18249:6656987,45116945:25899828,8793276,0 -[1,18249:7246811,45116945:24720180,8793276,0 -(1,18243:7246811,37409205:24720180,1085536,298548 -(1,18242:7246811,37409205:0,1085536,298548 -r1,18249:8753226,37409205:1506415,1384084,298548 -k1,18242:7246811,37409205:-1506415 -) -(1,18242:7246811,37409205:1506415,1085536,298548 -) -k1,18242:9007855,37409205:254629 -k1,18242:11045719,37409205:254629 -k1,18242:13714694,37409205:254629 -k1,18242:16371872,37409205:254628 -k1,18242:18194122,37409205:254629 -k1,18242:18804611,37409205:254629 -k1,18242:22526095,37409205:254629 -k1,18242:23136584,37409205:254629 -k1,18242:25774102,37409205:254629 -k1,18242:26688022,37409205:254628 -k1,18242:28364127,37409205:254629 -k1,18242:30012707,37409205:254629 -k1,18242:31966991,37409205:0 -) -(1,18243:7246811,38250693:24720180,513147,134348 -k1,18242:9072085,38250693:265517 -k1,18242:10441884,38250693:265517 -k1,18242:13779729,38250693:265517 -(1,18242:13779729,38250693:0,414482,115847 -r1,18249:14489707,38250693:709978,530329,115847 -k1,18242:13779729,38250693:-709978 -) -(1,18242:13779729,38250693:709978,414482,115847 -k1,18242:13779729,38250693:3277 -h1,18242:14486430,38250693:0,411205,112570 -) -k1,18242:14755224,38250693:265517 -k1,18242:17205056,38250693:265517 -k1,18242:17958094,38250693:265450 -k1,18242:20782792,38250693:265517 -k1,18242:23636981,38250693:265517 -k1,18242:24993672,38250693:265517 -k1,18242:27039802,38250693:265517 -k1,18242:28872940,38250693:265517 -k1,18242:30157542,38250693:265517 -k1,18243:31966991,38250693:0 -) -(1,18243:7246811,39092181:24720180,513147,134348 -k1,18242:9115488,39092181:171950 -k1,18242:10391720,39092181:171950 -k1,18242:12406542,39092181:171950 -k1,18242:13194530,39092181:171950 -k1,18242:15838499,39092181:171951 -k1,18242:18723640,39092181:171950 -k1,18242:19578475,39092181:171950 -k1,18242:21458293,39092181:171950 -k1,18242:22096204,39092181:171950 -k1,18242:23287239,39092181:171950 -k1,18242:24806609,39092181:171950 -k1,18242:25510056,39092181:171950 -k1,18242:26727962,39092181:171951 -k1,18242:28789970,39092181:171950 -k1,18242:29644805,39092181:171950 -k1,18242:30432793,39092181:171950 -k1,18242:31966991,39092181:0 -) -(1,18243:7246811,39933669:24720180,513147,134348 -k1,18242:8116926,39933669:187230 -k1,18242:11017346,39933669:187229 -k1,18242:12813485,39933669:187230 -k1,18242:14394666,39933669:187230 -(1,18242:14394666,39933669:0,414482,115847 -r1,18249:15104644,39933669:709978,530329,115847 -k1,18242:14394666,39933669:-709978 -) -(1,18242:14394666,39933669:709978,414482,115847 -k1,18242:14394666,39933669:3277 -h1,18242:15101367,39933669:0,411205,112570 -) -k1,18242:15291874,39933669:187230 -k1,18242:17663418,39933669:187229 -k1,18242:18316609,39933669:187230 -k1,18242:19522924,39933669:187230 -k1,18242:21490766,39933669:187229 -k1,18242:24345967,39933669:187230 -k1,18242:26539254,39933669:187230 -k1,18242:28147960,39933669:187230 -k1,18242:28951227,39933669:187229 -k1,18242:30157542,39933669:187230 -k1,18243:31966991,39933669:0 -) -(1,18243:7246811,40775157:24720180,513147,134348 -k1,18242:9395846,40775157:278637 -k1,18242:13119055,40775157:278637 -k1,18242:14207062,40775157:278637 -k1,18242:15504784,40775157:278637 -k1,18242:18478917,40775157:278637 -k1,18242:20444452,40775157:278638 -k1,18242:21181186,40775157:278637 -k1,18242:22796757,40775157:278637 -k1,18242:23823160,40775157:278637 -k1,18242:26731757,40775157:278637 -k1,18242:27661822,40775157:278637 -k1,18242:29960934,40775157:278637 -k1,18242:31966991,40775157:0 -) -(1,18243:7246811,41616645:24720180,505283,134348 -g1,18242:9041186,41616645 -g1,18242:10001943,41616645 -g1,18242:12628626,41616645 -g1,18242:13598558,41616645 -k1,18243:31966991,41616645:15122435 -g1,18243:31966991,41616645 -) -(1,18245:7246811,42458133:24720180,513147,126483 -h1,18244:7246811,42458133:983040,0,0 -k1,18244:10169716,42458133:244449 -k1,18244:13420957,42458133:244449 -k1,18244:15887078,42458133:244450 -k1,18244:16782955,42458133:244449 -k1,18244:18046489,42458133:244449 -k1,18244:20472632,42458133:244449 -k1,18244:21376373,42458133:244449 -k1,18244:23010185,42458133:244449 -k1,18244:24822256,42458133:244450 -k1,18244:26663162,42458133:244449 -k1,18244:28934640,42458133:244449 -k1,18244:30370534,42458133:244449 -k1,18244:31966991,42458133:0 -) -(1,18245:7246811,43299621:24720180,513147,126483 -k1,18244:9407176,43299621:248024 -k1,18244:10646760,43299621:248024 -k1,18244:12077708,43299621:248023 -k1,18244:12977160,43299621:248024 -k1,18244:16699903,43299621:248024 -k1,18244:19583130,43299621:248024 -k1,18244:21003593,43299621:248024 -k1,18244:24013960,43299621:248024 -k1,18244:26772667,43299621:248023 -k1,18244:28305197,43299621:248024 -k1,18244:30867297,43299621:248024 -k1,18245:31966991,43299621:0 -) -(1,18245:7246811,44141109:24720180,513147,7863 -k1,18244:9338908,44141109:172547 -k1,18244:13155257,44141109:172547 -k1,18244:14137174,44141109:172547 -k1,18244:15858336,44141109:172546 -k1,18244:16562380,44141109:172547 -k1,18244:19184663,44141109:172547 -k1,18244:20040095,44141109:172547 -k1,18244:21452583,44141109:172547 -k1,18244:23399845,44141109:172547 -k1,18244:24188430,44141109:172547 -k1,18244:24716836,44141109:172546 -k1,18244:28182567,44141109:172547 -k1,18244:28813211,44141109:172547 -k1,18244:29517255,44141109:172547 -k1,18244:31966991,44141109:0 -) -(1,18245:7246811,44982597:24720180,513147,134348 -k1,18244:8113256,44982597:215017 -k1,18244:9262816,44982597:215017 -k1,18244:10496917,44982597:215016 -k1,18244:13492627,44982597:215017 -k1,18244:14600900,44982597:215017 -k1,18244:16683693,44982597:215017 -k1,18244:17514748,44982597:215017 -k1,18244:19550354,44982597:215016 -k1,18244:20956816,44982597:215017 -k1,18244:23624846,44982597:215017 -k1,18244:27144844,44982597:215017 -k1,18244:28011288,44982597:215016 -(1,18244:28011288,44982597:0,452978,115847 -r1,18249:29424689,44982597:1413401,568825,115847 -k1,18244:28011288,44982597:-1413401 -) -(1,18244:28011288,44982597:1413401,452978,115847 -k1,18244:28011288,44982597:3277 -h1,18244:29421412,44982597:0,411205,112570 -) -k1,18244:29639706,44982597:215017 -k1,18244:30470761,44982597:215017 -k1,18244:31307699,44982597:215001 -k1,18244:31966991,44982597:0 -) -] -) -] -r1,18249:32583029,45706769:26214,9972924,0 -) -] -) -) -g1,18249:32583029,45116945 -) -] -(1,18249:32583029,45706769:0,0,0 -g1,18249:32583029,45706769 -) -) -] -(1,18249:6630773,47279633:25952256,0,0 -h1,18249:6630773,47279633:25952256,0,0 -) -] -(1,18249:4262630,4025873:0,0,0 -[1,18249:-473656,4025873:0,0,0 -(1,18249:-473656,-710413:0,0,0 -(1,18249:-473656,-710413:0,0,0 -g1,18249:-473656,-710413 -) -g1,18249:-473656,-710413 -) -] -) -] -!27038 -}357 -Input:2941:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!104 -{358 -[1,18264:4262630,47279633:28320399,43253760,0 -(1,18264:4262630,4025873:0,0,0 -[1,18264:-473656,4025873:0,0,0 -(1,18264:-473656,-710413:0,0,0 -(1,18264:-473656,-644877:0,0,0 -k1,18264:-473656,-644877:-65536 -) -(1,18264:-473656,4736287:0,0,0 -k1,18264:-473656,4736287:5209943 -) -g1,18264:-473656,-710413 -) -] -) -[1,18264:6630773,47279633:25952256,43253760,0 -[1,18264:6630773,4812305:25952256,786432,0 -(1,18264:6630773,4812305:25952256,505283,11795 -(1,18264:6630773,4812305:25952256,505283,11795 -g1,18264:3078558,4812305 -[1,18264:3078558,4812305:0,0,0 -(1,18264:3078558,2439708:0,1703936,0 -k1,18264:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,18264:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,18264:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 -) -] -) -) -) -] -[1,18264:3078558,4812305:0,0,0 -(1,18264:3078558,2439708:0,1703936,0 -g1,18264:29030814,2439708 -g1,18264:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,18264:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 -) -] -) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,18264:37855564,2439708:1179648,16384,0 -) -) -k1,18264:3078556,2439708:-34777008 -) -] -[1,18264:3078558,4812305:0,0,0 -(1,18264:3078558,49800853:0,16384,2228224 -k1,18264:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,18264:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,18264:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 -) -] -) -) -) -] -[1,18264:3078558,4812305:0,0,0 -(1,18264:3078558,49800853:0,16384,2228224 -g1,18264:29030814,49800853 -g1,18264:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,18264:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 -) -] -) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,18264:37855564,49800853:1179648,16384,0 -) -) -k1,18264:3078556,49800853:-34777008 -) -] -g1,18264:6630773,4812305 -g1,18264:6630773,4812305 -g1,18264:10349285,4812305 -k1,18264:31387653,4812305:21038368 -) -) -] -[1,18264:6630773,45706769:25952256,40108032,0 -(1,18264:6630773,45706769:25952256,40108032,0 -(1,18264:6630773,45706769:0,0,0 -g1,18264:6630773,45706769 -) -[1,18264:6630773,45706769:25952256,40108032,0 -v1,18249:6630773,6254097:0,393216,0 -(1,18249:6630773,28135400:25952256,22274519,616038 -g1,18249:6630773,28135400 -(1,18249:6630773,28135400:25952256,22274519,616038 -(1,18249:6630773,28751438:25952256,22890557,0 -[1,18249:6630773,28751438:25952256,22890557,0 -(1,18249:6630773,28725224:25952256,22864343,0 -r1,18264:6656987,28725224:26214,22864343,0 -[1,18249:6656987,28725224:25899828,22864343,0 -(1,18249:6656987,28135400:25899828,21684695,0 -[1,18249:7246811,28135400:24720180,21684695,0 -(1,18245:7246811,6963852:24720180,513147,126483 -k1,18244:10602538,6963852:162813 -k1,18244:12360496,6963852:162812 -k1,18244:12879169,6963852:162813 -k1,18244:15553322,6963852:162813 -k1,18244:18513212,6963852:162813 -k1,18244:19292062,6963852:162812 -k1,18244:20225578,6963852:162813 -k1,18244:20803198,6963852:162777 -k1,18244:22355373,6963852:162812 -k1,18244:24394482,6963852:162813 -k1,18244:25088792,6963852:162813 -k1,18244:28090625,6963852:162813 -k1,18244:28904865,6963852:162812 -k1,18244:29815444,6963852:162813 -k1,18244:31966991,6963852:0 -) -(1,18245:7246811,7805340:24720180,505283,134348 -k1,18244:8625705,7805340:187449 -k1,18244:10230042,7805340:187449 -k1,18244:12789239,7805340:187449 -k1,18244:15930396,7805340:187449 -k1,18244:19244568,7805340:187449 -k1,18244:20451102,7805340:187449 -k1,18244:22292025,7805340:187450 -(1,18244:22292025,7805340:0,452978,115847 -r1,18264:23705426,7805340:1413401,568825,115847 -k1,18244:22292025,7805340:-1413401 -) -(1,18244:22292025,7805340:1413401,452978,115847 -k1,18244:22292025,7805340:3277 -h1,18244:23702149,7805340:0,411205,112570 -) -k1,18244:23892875,7805340:187449 -k1,18244:24763209,7805340:187449 -k1,18244:26510415,7805340:187449 -k1,18244:27739886,7805340:187449 -k1,18244:28946420,7805340:187449 -k1,18244:31315563,7805340:187449 -k1,18244:31966991,7805340:0 -) -(1,18245:7246811,8646828:24720180,513147,126483 -k1,18244:9088574,8646828:245306 -k1,18244:10020042,8646828:245306 -k1,18244:13278039,8646828:245307 -k1,18244:14542430,8646828:245306 -k1,18244:17568429,8646828:245306 -k1,18244:19435751,8646828:245306 -k1,18244:20428824,8646828:245307 -k1,18244:24128533,8646828:245306 -k1,18244:25443387,8646828:245306 -k1,18244:26454809,8646828:245306 -k1,18244:28121592,8646828:245307 -k1,18244:28982936,8646828:245306 -k1,18244:29584102,8646828:245306 -k1,18244:31966991,8646828:0 -) -(1,18245:7246811,9488316:24720180,513147,126483 -k1,18244:8138379,9488316:240140 -k1,18244:9126285,9488316:240140 -k1,18244:12316200,9488316:240140 -k1,18244:13547901,9488316:240141 -k1,18244:16212873,9488316:240140 -k1,18244:17139175,9488316:240140 -k1,18244:18536025,9488316:240140 -k1,18244:19435457,9488316:240140 -k1,18244:20694682,9488316:240140 -(1,18244:20694682,9488316:0,452978,115847 -r1,18264:22811507,9488316:2116825,568825,115847 -k1,18244:20694682,9488316:-2116825 -) -(1,18244:20694682,9488316:2116825,452978,115847 -k1,18244:20694682,9488316:3277 -h1,18244:22808230,9488316:0,411205,112570 -) -k1,18244:23225317,9488316:240140 -(1,18244:23225317,9488316:0,414482,115847 -r1,18264:24638718,9488316:1413401,530329,115847 -k1,18244:23225317,9488316:-1413401 -) -(1,18244:23225317,9488316:1413401,414482,115847 -k1,18244:23225317,9488316:3277 -h1,18244:24635441,9488316:0,411205,112570 -) -k1,18244:25052529,9488316:240141 -(1,18244:25052529,9488316:0,452978,115847 -r1,18264:26465930,9488316:1413401,568825,115847 -k1,18244:25052529,9488316:-1413401 -) -(1,18244:25052529,9488316:1413401,452978,115847 -k1,18244:25052529,9488316:3277 -h1,18244:26462653,9488316:0,411205,112570 -) -k1,18244:26706070,9488316:240140 -k1,18244:27629095,9488316:240140 -(1,18244:27629095,9488316:0,414482,115847 -r1,18264:29042496,9488316:1413401,530329,115847 -k1,18244:27629095,9488316:-1413401 -) -(1,18244:27629095,9488316:1413401,414482,115847 -k1,18244:27629095,9488316:3277 -h1,18244:29039219,9488316:0,411205,112570 -) -k1,18244:29282636,9488316:240140 -k1,18244:31966991,9488316:0 -) -(1,18245:7246811,10329804:24720180,513147,134348 -k1,18244:8832984,10329804:192222 -k1,18244:10044291,10329804:192222 -k1,18244:12866473,10329804:192222 -k1,18244:16140198,10329804:192222 -k1,18244:16991712,10329804:192222 -k1,18244:17539794,10329804:192222 -k1,18244:19546709,10329804:192223 -k1,18244:20977562,10329804:192222 -k1,18244:21829076,10329804:192222 -k1,18244:24404187,10329804:192222 -k1,18244:27101195,10329804:192222 -k1,18244:28687368,10329804:192222 -k1,18244:29898675,10329804:192222 -k1,18244:31966991,10329804:0 -) -(1,18245:7246811,11171292:24720180,513147,115847 -k1,18244:8112805,11171292:206702 -k1,18244:9338592,11171292:206702 -k1,18244:12386935,11171292:206702 -k1,18244:13279800,11171292:206703 -(1,18244:13279800,11171292:0,414482,115847 -r1,18264:14693201,11171292:1413401,530329,115847 -k1,18244:13279800,11171292:-1413401 -) -(1,18244:13279800,11171292:1413401,414482,115847 -k1,18244:13279800,11171292:3277 -h1,18244:14689924,11171292:0,411205,112570 -) -k1,18244:15073573,11171292:206702 -k1,18244:16476962,11171292:206702 -k1,18244:18949244,11171292:206702 -k1,18244:21336329,11171292:206702 -(1,18244:21336329,11171292:0,452978,115847 -r1,18264:23804866,11171292:2468537,568825,115847 -k1,18244:21336329,11171292:-2468537 -) -(1,18244:21336329,11171292:2468537,452978,115847 -k1,18244:21336329,11171292:3277 -h1,18244:23801589,11171292:0,411205,112570 -) -k1,18244:24011568,11171292:206702 -k1,18244:25504086,11171292:206702 -k1,18244:27637547,11171292:206703 -k1,18244:28916418,11171292:206702 -k1,18244:29809282,11171292:206702 -k1,18244:30474081,11171292:206702 -k1,18244:31966991,11171292:0 -) -(1,18245:7246811,12012780:24720180,513147,126483 -k1,18244:8540230,12012780:227148 -k1,18244:10910404,12012780:227147 -k1,18244:15029735,12012780:227148 -k1,18244:15714979,12012780:227147 -k1,18244:17988161,12012780:227148 -k1,18244:19865506,12012780:227148 -k1,18244:22576468,12012780:227147 -k1,18244:23455044,12012780:227148 -k1,18244:24707174,12012780:227147 -k1,18244:27114705,12012780:227148 -k1,18244:31966991,12012780:0 -) -(1,18245:7246811,12854268:24720180,505283,134348 -g1,18244:8058802,12854268 -g1,18244:8613891,12854268 -g1,18244:10844081,12854268 -g1,18244:11659348,12854268 -k1,18245:31966990,12854268:18511956 -g1,18245:31966990,12854268 -) -(1,18247:7246811,13695756:24720180,513147,134348 -h1,18246:7246811,13695756:983040,0,0 -k1,18246:10223933,13695756:210847 -k1,18246:12837329,13695756:210846 -k1,18246:13404036,13695756:210847 -(1,18246:13404036,13695756:0,414482,115847 -r1,18264:14465725,13695756:1061689,530329,115847 -k1,18246:13404036,13695756:-1061689 -) -(1,18246:13404036,13695756:1061689,414482,115847 -k1,18246:13404036,13695756:3277 -h1,18246:14462448,13695756:0,411205,112570 -) -k1,18246:14676572,13695756:210847 -k1,18246:16044128,13695756:210846 -k1,18246:17481154,13695756:210847 -k1,18246:21723775,13695756:210846 -k1,18246:24750704,13695756:210847 -k1,18246:26094013,13695756:210847 -k1,18246:27052625,13695756:210846 -k1,18246:30775546,13695756:210847 -k1,18246:31966991,13695756:0 -) -(1,18247:7246811,14537244:24720180,513147,134348 -k1,18246:10759138,14537244:177855 -k1,18246:12009161,14537244:177854 -k1,18246:13562617,14537244:177855 -k1,18246:14206432,14537244:177854 -k1,18246:15403372,14537244:177855 -k1,18246:18065041,14537244:177854 -k1,18246:19931103,14537244:177855 -k1,18246:20640454,14537244:177854 -k1,18246:23497421,14537244:177855 -k1,18246:24361437,14537244:177854 -k1,18246:27378312,14537244:177855 -k1,18246:29123787,14537244:177854 -k1,18246:30320727,14537244:177855 -k1,18247:31966991,14537244:0 -) -(1,18247:7246811,15378732:24720180,513147,134348 -k1,18246:9386281,15378732:170113 -k1,18246:11761680,15378732:170112 -k1,18246:12583221,15378732:170113 -k1,18246:13772419,15378732:170113 -k1,18246:16638027,15378732:170112 -k1,18246:18081505,15378732:170113 -k1,18246:19001349,15378732:170112 -k1,18246:19527322,15378732:170113 -k1,18246:21570454,15378732:170113 -k1,18246:24226347,15378732:170112 -k1,18246:25790411,15378732:170113 -k1,18246:26316384,15378732:170113 -k1,18246:28810403,15378732:170112 -k1,18246:31307699,15378732:170113 -k1,18246:31966991,15378732:0 -) -(1,18247:7246811,16220220:24720180,505283,95026 -k1,18246:7796396,16220220:193725 -k1,18246:9062289,16220220:193724 -k1,18246:9942176,16220220:193725 -k1,18246:12619715,16220220:193724 -k1,18246:15105889,16220220:193725 -k1,18246:16189592,16220220:193724 -k1,18246:17622603,16220220:193725 -k1,18246:19702453,16220220:193724 -k1,18246:21028640,16220220:193725 -k1,18246:23065236,16220220:193724 -k1,18246:23874999,16220220:193725 -k1,18246:25670423,16220220:193724 -k1,18246:27561530,16220220:193725 -k1,18246:28371292,16220220:193724 -k1,18246:29584102,16220220:193725 -k1,18246:31966991,16220220:0 -) -(1,18247:7246811,17061708:24720180,505283,134348 -k1,18246:8486969,17061708:173887 -k1,18246:10398871,17061708:173887 -k1,18246:13257769,17061708:173888 -k1,18246:14117818,17061708:173887 -k1,18246:17107787,17061708:173887 -k1,18246:18473119,17061708:173887 -k1,18246:21425734,17061708:173888 -k1,18246:22285783,17061708:173887 -k1,18246:22815530,17061708:173887 -(1,18246:22815530,17061708:0,452978,115847 -r1,18264:25987490,17061708:3171960,568825,115847 -k1,18246:22815530,17061708:-3171960 -) -(1,18246:22815530,17061708:3171960,452978,115847 -k1,18246:22815530,17061708:3277 -h1,18246:25984213,17061708:0,411205,112570 -) -k1,18246:26161378,17061708:173888 -k1,18246:28313142,17061708:173887 -k1,18246:29377008,17061708:173887 -k1,18246:31966991,17061708:0 -) -(1,18247:7246811,17903196:24720180,513147,134348 -k1,18246:8041059,17903196:178210 -k1,18246:9238354,17903196:178210 -k1,18246:10805927,17903196:178210 -k1,18246:13034102,17903196:178209 -k1,18246:13840147,17903196:178210 -k1,18246:15037442,17903196:178210 -k1,18246:16582733,17903196:178210 -k1,18246:17420235,17903196:178210 -k1,18246:20178597,17903196:178210 -k1,18246:22379903,17903196:178210 -k1,18246:22913972,17903196:178209 -(1,18246:22913972,17903196:0,452978,115847 -r1,18264:25382509,17903196:2468537,568825,115847 -k1,18246:22913972,17903196:-2468537 -) -(1,18246:22913972,17903196:2468537,452978,115847 -k1,18246:22913972,17903196:3277 -h1,18246:25379232,17903196:0,411205,112570 -) -k1,18246:25560719,17903196:178210 -k1,18246:27716806,17903196:178210 -k1,18246:31257013,17903196:178210 -(1,18246:31257013,17903196:0,414482,115847 -r1,18264:31966991,17903196:709978,530329,115847 -k1,18246:31257013,17903196:-709978 -) -(1,18246:31257013,17903196:709978,414482,115847 -k1,18246:31257013,17903196:3277 -h1,18246:31963714,17903196:0,411205,112570 -) -k1,18246:31966991,17903196:0 -) -(1,18247:7246811,18744684:24720180,513147,126483 -k1,18246:9427356,18744684:169900 -k1,18246:10544908,18744684:169901 -k1,18246:11733893,18744684:169900 -k1,18246:16026009,18744684:169901 -k1,18246:17422088,18744684:169900 -k1,18246:18928923,18744684:169901 -k1,18246:19846589,18744684:169900 -k1,18246:22795217,18744684:169901 -k1,18246:25292300,18744684:169900 -k1,18246:26121493,18744684:169901 -k1,18246:26647253,18744684:169900 -(1,18246:26647253,18744684:0,452978,115847 -r1,18264:29819213,18744684:3171960,568825,115847 -k1,18246:26647253,18744684:-3171960 -) -(1,18246:26647253,18744684:3171960,452978,115847 -k1,18246:26647253,18744684:3277 -h1,18246:29815936,18744684:0,411205,112570 -) -k1,18246:29989114,18744684:169901 -k1,18246:31966991,18744684:0 -) -(1,18247:7246811,19586172:24720180,505283,134348 -k1,18246:10780785,19586172:171977 -k1,18246:11762132,19586172:171977 -k1,18246:14524748,19586172:171978 -k1,18246:15715810,19586172:171977 -k1,18246:17880737,19586172:171977 -k1,18246:20536529,19586172:171977 -k1,18246:23000956,19586172:171978 -k1,18246:25692137,19586172:171977 -k1,18246:27270517,19586172:171977 -k1,18246:28461579,19586172:171977 -k1,18246:29705726,19586172:171978 -k1,18246:30560588,19586172:171977 -k1,18246:31966991,19586172:0 -) -(1,18247:7246811,20427660:24720180,513147,7863 -g1,18246:8465125,20427660 -g1,18246:9847279,20427660 -g1,18246:10705800,20427660 -g1,18246:11924114,20427660 -k1,18247:31966992,20427660:18886168 -g1,18247:31966992,20427660 -) -(1,18249:7246811,21269148:24720180,513147,134348 -h1,18248:7246811,21269148:983040,0,0 -k1,18248:10207509,21269148:194423 -k1,18248:13573876,21269148:194424 -k1,18248:15157662,21269148:194423 -k1,18248:16919707,21269148:194424 -k1,18248:17469990,21269148:194423 -k1,18248:20957598,21269148:194424 -k1,18248:21834906,21269148:194423 -k1,18248:25381497,21269148:194424 -k1,18248:26556994,21269148:194423 -k1,18248:31966991,21269148:0 -) -(1,18249:7246811,22110636:24720180,513147,134348 -k1,18248:8038854,22110636:260546 -k1,18248:9605534,22110636:260547 -k1,18248:10517508,22110636:260546 -k1,18248:12599956,22110636:260547 -k1,18248:13318599,22110636:260546 -k1,18248:14195184,22110636:260547 -k1,18248:15474815,22110636:260546 -k1,18248:18170680,22110636:260547 -k1,18248:21190292,22110636:260546 -k1,18248:22102266,22110636:260546 -k1,18248:24505840,22110636:260547 -k1,18248:26050892,22110636:260546 -k1,18248:27330524,22110636:260547 -k1,18248:29012546,22110636:260546 -k1,18248:29924521,22110636:260547 -k1,18248:30932833,22110636:260546 -k1,18249:31966991,22110636:0 -) -(1,18249:7246811,22952124:24720180,505283,134348 -k1,18248:9589571,22952124:214151 -k1,18248:10795282,22952124:214151 -k1,18248:13688545,22952124:214151 -k1,18248:14588858,22952124:214151 -k1,18248:17815699,22952124:214151 -k1,18248:19813085,22952124:214151 -k1,18248:21762630,22952124:214152 -k1,18248:22332641,22952124:214151 -(1,18248:22332641,22952124:0,414482,115847 -r1,18264:23394330,22952124:1061689,530329,115847 -k1,18248:22332641,22952124:-1061689 -) -(1,18248:22332641,22952124:1061689,414482,115847 -k1,18248:22332641,22952124:3277 -h1,18248:23391053,22952124:0,411205,112570 -) -k1,18248:23608481,22952124:214151 -k1,18248:24508794,22952124:214151 -k1,18248:25493648,22952124:214151 -k1,18248:29765788,22952124:214151 -k1,18248:31508894,22952124:214151 -k1,18248:31966991,22952124:0 -) -(1,18249:7246811,23793612:24720180,513147,126483 -k1,18248:8031015,23793612:252707 -k1,18248:10416264,23793612:252707 -k1,18248:11320398,23793612:252706 -k1,18248:12858921,23793612:252707 -k1,18248:14689080,23793612:252707 -k1,18248:16145028,23793612:252707 -k1,18248:17380775,23793612:252707 -k1,18248:18249519,23793612:252706 -k1,18248:18858086,23793612:252707 -k1,18248:22147731,23793612:252707 -k1,18248:24309502,23793612:252707 -k1,18248:26055775,23793612:252707 -k1,18248:26994643,23793612:252706 -k1,18248:28266435,23793612:252707 -k1,18248:30428206,23793612:252707 -k1,18248:31966991,23793612:0 -) -(1,18249:7246811,24635100:24720180,505283,126483 -k1,18248:8118137,24635100:255288 -k1,18248:10797602,24635100:255288 -k1,18248:11942869,24635100:255288 -k1,18248:14882512,24635100:255288 -k1,18248:15753838,24635100:255288 -k1,18248:18818654,24635100:255288 -k1,18248:19756828,24635100:255289 -k1,18248:21840570,24635100:255288 -k1,18248:24267721,24635100:255288 -k1,18248:25808170,24635100:255288 -k1,18248:26679496,24635100:255288 -k1,18248:28386406,24635100:255288 -k1,18248:29833139,24635100:255288 -k1,18248:31966991,24635100:0 -) -(1,18249:7246811,25476588:24720180,513147,134348 -k1,18248:9286946,25476588:186777 -k1,18248:10283094,25476588:186778 -k1,18248:12018487,25476588:186777 -k1,18248:13609046,25476588:186778 -k1,18248:17007742,25476588:186777 -k1,18248:19678335,25476588:186778 -k1,18248:21695533,25476588:186777 -k1,18248:23073756,25476588:186778 -k1,18248:25904255,25476588:186777 -k1,18248:29065712,25476588:186778 -k1,18248:31966991,25476588:0 -) -(1,18249:7246811,26318076:24720180,505283,134348 -k1,18248:8574297,26318076:226481 -k1,18248:10310729,26318076:226482 -k1,18248:12224107,26318076:226481 -k1,18248:14336059,26318076:226481 -k1,18248:17264590,26318076:226482 -k1,18248:18300441,26318076:226481 -k1,18248:19546007,26318076:226481 -k1,18248:21614051,26318076:226482 -k1,18248:24352527,26318076:226481 -k1,18248:25195046,26318076:226481 -k1,18248:26440613,26318076:226482 -k1,18248:29721072,26318076:226481 -k1,18248:31966991,26318076:0 -) -(1,18249:7246811,27159564:24720180,513147,134348 -k1,18248:8147330,27159564:241227 -k1,18248:9407642,27159564:241227 -k1,18248:12725129,27159564:241227 -k1,18248:14157801,27159564:241227 -k1,18248:15015066,27159564:241227 -k1,18248:16275379,27159564:241228 -k1,18248:19809790,27159564:241227 -k1,18248:22966714,27159564:241227 -k1,18248:25028531,27159564:241227 -k1,18248:25625618,27159564:241227 -k1,18248:28378840,27159564:241227 -k1,18248:31315563,27159564:241227 -k1,18248:31966991,27159564:0 -) -(1,18249:7246811,28001052:24720180,505283,134348 -g1,18248:8545734,28001052 -g1,18248:9936408,28001052 -g1,18248:11154722,28001052 -g1,18248:14462979,28001052 -g1,18248:18064837,28001052 -g1,18248:18915494,28001052 -g1,18248:20551928,28001052 -g1,18248:21402585,28001052 -k1,18249:31966991,28001052:9932639 -g1,18249:31966991,28001052 -) -] -) -] -r1,18264:32583029,28725224:26214,22864343,0 -) -] -) -) -g1,18249:32583029,28135400 -) -h1,18249:6630773,28751438:0,0,0 -(1,18251:6630773,30842698:25952256,564462,12975 -(1,18251:6630773,30842698:2450326,534184,12975 -g1,18251:6630773,30842698 -g1,18251:9081099,30842698 -) -g1,18251:10762229,30842698 -g1,18251:12488775,30842698 -g1,18251:13492263,30842698 -k1,18251:32583029,30842698:15006169 -g1,18251:32583029,30842698 -) -(1,18254:6630773,32077402:25952256,513147,134348 -k1,18253:7327139,32077402:218609 -k1,18253:8414101,32077402:218610 -k1,18253:10107925,32077402:218609 -k1,18253:12357495,32077402:218609 -k1,18253:13227533,32077402:218610 -k1,18253:14465227,32077402:218609 -k1,18253:17119155,32077402:218610 -k1,18253:20096830,32077402:218609 -k1,18253:21828665,32077402:218609 -k1,18253:22994926,32077402:218610 -k1,18253:25785823,32077402:218609 -k1,18253:26360292,32077402:218609 -k1,18253:29872086,32077402:218610 -k1,18253:30773580,32077402:218609 -k1,18254:32583029,32077402:0 -) -(1,18254:6630773,32918890:25952256,513147,134348 -k1,18253:8621268,32918890:234785 -k1,18253:10289982,32918890:234786 -k1,18253:13587920,32918890:234785 -k1,18253:17446192,32918890:234786 -k1,18253:18332405,32918890:234785 -k1,18253:19793369,32918890:234785 -k1,18253:21341497,32918890:234786 -k1,18253:22192320,32918890:234785 -k1,18253:23695847,32918890:234750 -k1,18253:26111015,32918890:234785 -k1,18253:27537246,32918890:234786 -k1,18253:30943974,32918890:234785 -k1,18253:32583029,32918890:0 -) -(1,18254:6630773,33760378:25952256,513147,134348 -k1,18253:8052392,33760378:154153 -k1,18253:8621343,33760378:154108 -k1,18253:10510890,33760378:154154 -k1,18253:11684128,33760378:154153 -k1,18253:14864078,33760378:154153 -k1,18253:18108254,33760378:154153 -k1,18253:18878445,33760378:154153 -k1,18253:21641586,33760378:154153 -h1,18253:22612174,33760378:0,0,0 -k1,18253:22766327,33760378:154153 -k1,18253:24111925,33760378:154153 -h1,18253:25654643,33760378:0,0,0 -k1,18253:25808797,33760378:154154 -k1,18253:28441522,33760378:154153 -k1,18253:29405045,33760378:154153 -k1,18253:31387652,33760378:154153 -h1,18253:32583029,33760378:0,0,0 -k1,18253:32583029,33760378:0 -) -(1,18254:6630773,34601866:25952256,513147,134348 -k1,18253:8022341,34601866:200123 -h1,18253:9217718,34601866:0,0,0 -k1,18253:9417841,34601866:200123 -k1,18253:12378340,34601866:200123 -k1,18253:12934323,34601866:200123 -k1,18253:15560589,34601866:200123 -k1,18253:19296379,34601866:200123 -k1,18253:21198472,34601866:200123 -k1,18253:22346246,34601866:200123 -k1,18253:25718312,34601866:200123 -k1,18253:29357109,34601866:200123 -k1,18253:30576317,34601866:200123 -k1,18253:32583029,34601866:0 -) -(1,18254:6630773,35443354:25952256,505283,126483 -k1,18253:8061206,35443354:145927 -k1,18253:9075484,35443354:145926 -k1,18253:11401794,35443354:145927 -k1,18253:12900383,35443354:145926 -k1,18253:14371448,35443354:145927 -k1,18253:15801880,35443354:145926 -k1,18253:19166280,35443354:145927 -k1,18253:20503652,35443354:145927 -k1,18253:23133393,35443354:145926 -k1,18253:25266372,35443354:145927 -k1,18253:27393451,35443354:145926 -k1,18253:28558463,35443354:145927 -k1,18253:32583029,35443354:0 -) -(1,18254:6630773,36284842:25952256,513147,134348 -k1,18253:7461582,36284842:171517 -k1,18253:8652184,36284842:171517 -k1,18253:11849498,36284842:171517 -k1,18253:13707911,36284842:171516 -k1,18253:15260272,36284842:171517 -k1,18253:18416299,36284842:171517 -k1,18253:19119313,36284842:171517 -k1,18253:20357101,36284842:171517 -k1,18253:22058884,36284842:171517 -k1,18253:23798022,36284842:171517 -k1,18253:24988623,36284842:171516 -k1,18253:28811151,36284842:171517 -k1,18253:29641960,36284842:171517 -k1,18253:31931601,36284842:171517 -k1,18253:32583029,36284842:0 -) -(1,18254:6630773,37126330:25952256,513147,126483 -k1,18253:8795251,37126330:235098 -k1,18253:13088338,37126330:235098 -(1,18253:13088338,37126330:0,414482,115847 -r1,18264:14150027,37126330:1061689,530329,115847 -k1,18253:13088338,37126330:-1061689 -) -(1,18253:13088338,37126330:1061689,414482,115847 -k1,18253:13088338,37126330:3277 -h1,18253:14146750,37126330:0,411205,112570 -) -k1,18253:14385125,37126330:235098 -k1,18253:17825589,37126330:235098 -k1,18253:19286866,37126330:235098 -k1,18253:21008977,37126330:235099 -k1,18253:21731627,37126330:235062 -k1,18253:23863992,37126330:235098 -k1,18253:27083600,37126330:235098 -k1,18253:28023865,37126330:235098 -k1,18253:29957001,37126330:235098 -k1,18253:32583029,37126330:0 -) -(1,18254:6630773,37967818:25952256,513147,126483 -g1,18253:7481430,37967818 -g1,18253:9862353,37967818 -g1,18253:11080667,37967818 -g1,18253:12669259,37967818 -g1,18253:15282834,37967818 -g1,18253:17049684,37967818 -g1,18253:18267998,37967818 -g1,18253:21645723,37967818 -g1,18253:22527837,37967818 -g1,18253:26350552,37967818 -g1,18253:27817247,37967818 -k1,18254:32583029,37967818:4177269 -g1,18254:32583029,37967818 -) -(1,18255:6630773,40059078:25952256,555811,12975 -(1,18255:6630773,40059078:2450326,534184,12975 -g1,18255:6630773,40059078 -g1,18255:9081099,40059078 -) -k1,18255:32583029,40059078:20807942 -g1,18255:32583029,40059078 -) -(1,18261:6630773,41293782:25952256,513147,134348 -k1,18260:9484939,41293782:319233 -k1,18260:12150360,41293782:319233 -k1,18260:15326307,41293782:319233 -k1,18260:18048090,41293782:319233 -k1,18260:19034480,41293782:319234 -k1,18260:22131129,41293782:319233 -k1,18260:26132830,41293782:319233 -k1,18260:27643508,41293782:319233 -k1,18260:30773580,41293782:319233 -k1,18261:32583029,41293782:0 -) -(1,18261:6630773,42135270:25952256,513147,134348 -k1,18260:8896244,42135270:238442 -k1,18260:10326130,42135270:238441 -k1,18260:12915348,42135270:238442 -k1,18260:15163779,42135270:238442 -k1,18260:19025706,42135270:238441 -k1,18260:22095959,42135270:238442 -k1,18260:22950439,42135270:238442 -k1,18260:24757157,42135270:238441 -k1,18260:27197609,42135270:238442 -k1,18260:28087479,42135270:238442 -k1,18260:30069833,42135270:238441 -k1,18260:31821501,42135270:238442 -k1,18261:32583029,42135270:0 -) -(1,18261:6630773,42976758:25952256,513147,134348 -k1,18260:9676887,42976758:268698 -k1,18260:11724886,42976758:268697 -k1,18260:13190271,42976758:268698 -k1,18260:16269152,42976758:268697 -k1,18260:17069347,42976758:268698 -k1,18260:19636392,42976758:268697 -k1,18260:21096535,42976758:268698 -k1,18260:22384317,42976758:268697 -k1,18260:25233167,42976758:268698 -k1,18260:26896470,42976758:268697 -k1,18260:27816596,42976758:268698 -k1,18260:30228320,42976758:268697 -k1,18260:31450567,42976758:268698 -k1,18260:32583029,42976758:0 -) -(1,18261:6630773,43818246:25952256,513147,126483 -g1,18260:9011696,43818246 -g1,18260:9566785,43818246 -g1,18260:10749054,43818246 -g1,18260:12232789,43818246 -g1,18260:13048056,43818246 -g1,18260:16024701,43818246 -g1,18260:17940973,43818246 -g1,18260:19286427,43818246 -g1,18260:20504741,43818246 -g1,18260:22765733,43818246 -g1,18260:25382585,43818246 -k1,18261:32583029,43818246:5158342 -g1,18261:32583029,43818246 -) -] -(1,18264:32583029,45706769:0,0,0 -g1,18264:32583029,45706769 -) -) -] -(1,18264:6630773,47279633:25952256,0,0 -h1,18264:6630773,47279633:25952256,0,0 -) -] -(1,18264:4262630,4025873:0,0,0 -[1,18264:-473656,4025873:0,0,0 -(1,18264:-473656,-710413:0,0,0 -(1,18264:-473656,-710413:0,0,0 -g1,18264:-473656,-710413 -) -g1,18264:-473656,-710413 -) -] -) -] -!26625 -}358 -Input:2942:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2943:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2944:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2945:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2946:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!472 -{359 -[1,18320:4262630,47279633:28320399,43253760,0 -(1,18320:4262630,4025873:0,0,0 -[1,18320:-473656,4025873:0,0,0 -(1,18320:-473656,-710413:0,0,0 -(1,18320:-473656,-644877:0,0,0 -k1,18320:-473656,-644877:-65536 -) -(1,18320:-473656,4736287:0,0,0 -k1,18320:-473656,4736287:5209943 -) -g1,18320:-473656,-710413 -) -] -) -[1,18320:6630773,47279633:25952256,43253760,0 -[1,18320:6630773,4812305:25952256,786432,0 -(1,18320:6630773,4812305:25952256,505283,126483 -(1,18320:6630773,4812305:25952256,505283,126483 -g1,18320:3078558,4812305 -[1,18320:3078558,4812305:0,0,0 -(1,18320:3078558,2439708:0,1703936,0 -k1,18320:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,18320:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,18320:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 -) -] -) -) -) -] -[1,18320:3078558,4812305:0,0,0 -(1,18320:3078558,2439708:0,1703936,0 -g1,18320:29030814,2439708 -g1,18320:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,18320:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 -) -] -) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,18320:37855564,2439708:1179648,16384,0 -) -) -k1,18320:3078556,2439708:-34777008 -) -] -[1,18320:3078558,4812305:0,0,0 -(1,18320:3078558,49800853:0,16384,2228224 -k1,18320:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,18320:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,18320:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 -) -] -) -) -) -] -[1,18320:3078558,4812305:0,0,0 -(1,18320:3078558,49800853:0,16384,2228224 -g1,18320:29030814,49800853 -g1,18320:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,18320:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 -) -] -) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,18320:37855564,49800853:1179648,16384,0 -) -) -k1,18320:3078556,49800853:-34777008 -) -] -g1,18320:6630773,4812305 -k1,18320:25146660,4812305:17320510 -g1,18320:26880087,4812305 -g1,18320:29193507,4812305 -g1,18320:30603186,4812305 -) -) -] -[1,18320:6630773,45706769:25952256,40108032,0 -(1,18320:6630773,45706769:25952256,40108032,0 -(1,18320:6630773,45706769:0,0,0 -g1,18320:6630773,45706769 -) -[1,18320:6630773,45706769:25952256,40108032,0 -(1,18264:6630773,21009188:25952256,15410451,0 -k1,18264:9874805,21009188:3244032 -(1,18262:9874805,21009188:0,0,0 -g1,18262:9874805,21009188 -g1,18262:9874805,21009188 -g1,18262:9547125,21009188 -(1,18262:9547125,21009188:0,0,0 -) -g1,18262:9874805,21009188 -) -(1,18263:9874805,21009188:19464192,15410451,0 -) -g1,18264:29338997,21009188 -k1,18264:32583029,21009188:3244032 -) -(1,18267:6630773,22506036:25952256,513147,115847 -h1,18266:6630773,22506036:983040,0,0 -g1,18266:8766591,22506036 -g1,18266:10271953,22506036 -g1,18266:11464708,22506036 -g1,18266:12683022,22506036 -g1,18266:14909280,22506036 -g1,18266:18248339,22506036 -g1,18266:19063606,22506036 -g1,18266:20281920,22506036 -g1,18266:23659645,22506036 -g1,18266:24841914,22506036 -g1,18266:26435094,22506036 -(1,18266:26435094,22506036:0,452978,115847 -r1,18320:31365614,22506036:4930520,568825,115847 -k1,18266:26435094,22506036:-4930520 -) -(1,18266:26435094,22506036:4930520,452978,115847 -k1,18266:26435094,22506036:3277 -h1,18266:31362337,22506036:0,411205,112570 -) -k1,18267:32583029,22506036:1043745 -g1,18267:32583029,22506036 -) -v1,18269:6630773,23696502:0,393216,0 -(1,18277:6630773,25403199:25952256,2099913,196608 -g1,18277:6630773,25403199 -g1,18277:6630773,25403199 -g1,18277:6434165,25403199 -(1,18277:6434165,25403199:0,2099913,196608 -r1,18320:32779637,25403199:26345472,2296521,196608 -k1,18277:6434165,25403199:-26345472 -) -(1,18277:6434165,25403199:26345472,2099913,196608 -[1,18277:6630773,25403199:25952256,1903305,0 -(1,18271:6630773,23904120:25952256,404226,76021 -(1,18270:6630773,23904120:0,0,0 -g1,18270:6630773,23904120 -g1,18270:6630773,23904120 -g1,18270:6303093,23904120 -(1,18270:6303093,23904120:0,0,0 -) -g1,18270:6630773,23904120 -) -g1,18271:8843793,23904120 -g1,18271:9792231,23904120 -k1,18271:9792231,23904120:0 -h1,18271:20541185,23904120:0,0,0 -k1,18271:32583029,23904120:12041844 -g1,18271:32583029,23904120 -) -(1,18272:6630773,24570298:25952256,404226,6290 -h1,18272:6630773,24570298:0,0,0 -h1,18272:8527647,24570298:0,0,0 -k1,18272:32583029,24570298:24055382 -g1,18272:32583029,24570298 -) -(1,18276:6630773,25302012:25952256,404226,101187 -(1,18274:6630773,25302012:0,0,0 -g1,18274:6630773,25302012 -g1,18274:6630773,25302012 -g1,18274:6303093,25302012 -(1,18274:6303093,25302012:0,0,0 -) -g1,18274:6630773,25302012 -) -g1,18276:7579210,25302012 -g1,18276:8843793,25302012 -g1,18276:10108376,25302012 -h1,18276:11689104,25302012:0,0,0 -k1,18276:32583028,25302012:20893924 -g1,18276:32583028,25302012 -) -] -) -g1,18277:32583029,25403199 -g1,18277:6630773,25403199 -g1,18277:6630773,25403199 -g1,18277:32583029,25403199 -g1,18277:32583029,25403199 -) -h1,18277:6630773,25599807:0,0,0 -(1,18281:6630773,26965583:25952256,505283,134348 -h1,18280:6630773,26965583:983040,0,0 -k1,18280:8447066,26965583:205418 -k1,18280:9855725,26965583:205418 -k1,18280:11601895,26965583:205419 -k1,18280:12826398,26965583:205418 -k1,18280:16104144,26965583:205418 -k1,18280:18514849,26965583:205418 -k1,18280:19371695,26965583:205418 -(1,18280:19371695,26965583:0,452978,115847 -r1,18320:21136808,26965583:1765113,568825,115847 -k1,18280:19371695,26965583:-1765113 -) -(1,18280:19371695,26965583:1765113,452978,115847 -k1,18280:19371695,26965583:3277 -h1,18280:21133531,26965583:0,411205,112570 -) -k1,18280:21342227,26965583:205419 -k1,18280:22079142,26965583:205418 -k1,18280:25792702,26965583:205418 -k1,18280:26684282,26965583:205418 -k1,18280:28544484,26965583:205418 -k1,18280:29281400,26965583:205419 -k1,18280:30862419,26965583:205418 -k1,18280:31423697,26965583:205418 -k1,18281:32583029,26965583:0 -) -(1,18281:6630773,27807071:25952256,513147,134348 -k1,18280:7824415,27807071:266963 -k1,18280:11384562,27807071:266963 -k1,18280:12267562,27807071:266962 -k1,18280:13553610,27807071:266963 -k1,18280:14977283,27807071:266963 -k1,18280:15714139,27807071:266963 -k1,18280:16512599,27807071:266963 -k1,18280:19409522,27807071:266963 -k1,18280:20327912,27807071:266962 -k1,18280:21687360,27807071:266963 -k1,18280:23810303,27807071:266963 -k1,18280:25096351,27807071:266963 -k1,18280:27101329,27807071:266963 -k1,18280:28027584,27807071:266963 -k1,18280:29313631,27807071:266962 -k1,18280:31277321,27807071:266963 -k1,18280:32227169,27807071:266963 -k1,18280:32583029,27807071:0 -) -(1,18281:6630773,28648559:25952256,513147,126483 -k1,18280:9984568,28648559:178576 -k1,18280:11912299,28648559:178575 -k1,18280:12914007,28648559:178576 -k1,18280:14295823,28648559:178575 -k1,18280:15841480,28648559:178576 -(1,18280:15841480,28648559:0,435480,115847 -r1,18320:16199746,28648559:358266,551327,115847 -k1,18280:15841480,28648559:-358266 -) -(1,18280:15841480,28648559:358266,435480,115847 -k1,18280:15841480,28648559:3277 -h1,18280:16196469,28648559:0,411205,112570 -) -k1,18280:16378321,28648559:178575 -k1,18280:18513147,28648559:178576 -k1,18280:19439488,28648559:178575 -k1,18280:22923045,28648559:178576 -k1,18280:23753048,28648559:178575 -(1,18280:23753048,28648559:0,452978,115847 -r1,18320:26925008,28648559:3171960,568825,115847 -k1,18280:23753048,28648559:-3171960 -) -(1,18280:23753048,28648559:3171960,452978,115847 -g1,18280:25163172,28648559 -h1,18280:26921731,28648559:0,411205,112570 -) -k1,18280:27484348,28648559:178576 -k1,18280:28616472,28648559:178575 -k1,18280:29887533,28648559:178576 -k1,18281:32583029,28648559:0 -) -(1,18281:6630773,29490047:25952256,513147,134348 -(1,18280:6630773,29490047:0,452978,115847 -r1,18320:10857869,29490047:4227096,568825,115847 -k1,18280:6630773,29490047:-4227096 -) -(1,18280:6630773,29490047:4227096,452978,115847 -k1,18280:6630773,29490047:3277 -h1,18280:10854592,29490047:0,411205,112570 -) -k1,18280:11099992,29490047:242123 -k1,18280:11993544,29490047:242124 -k1,18280:14417361,29490047:242123 -k1,18280:15678569,29490047:242123 -k1,18280:19387548,29490047:242124 -k1,18280:21366375,29490047:242123 -k1,18280:22930360,29490047:242124 -k1,18280:23831775,29490047:242123 -k1,18280:25092983,29490047:242123 -k1,18280:28543094,29490047:242124 -k1,18280:29804302,29490047:242123 -k1,18280:32583029,29490047:0 -) -(1,18281:6630773,30331535:25952256,505283,7863 -g1,18280:8510345,30331535 -g1,18280:9241071,30331535 -g1,18280:9796160,30331535 -g1,18280:11806804,30331535 -g1,18280:13197478,30331535 -g1,18280:16371386,30331535 -g1,18280:19283806,30331535 -g1,18280:20474595,30331535 -g1,18280:23452551,30331535 -g1,18280:24337942,30331535 -k1,18281:32583029,30331535:7539920 -g1,18281:32583029,30331535 -) -v1,18283:6630773,31522001:0,393216,0 -(1,18298:6630773,37803339:25952256,6674554,196608 -g1,18298:6630773,37803339 -g1,18298:6630773,37803339 -g1,18298:6434165,37803339 -(1,18298:6434165,37803339:0,6674554,196608 -r1,18320:32779637,37803339:26345472,6871162,196608 -k1,18298:6434165,37803339:-26345472 -) -(1,18298:6434165,37803339:26345472,6674554,196608 -[1,18298:6630773,37803339:25952256,6477946,0 -(1,18285:6630773,31735911:25952256,410518,82312 -(1,18284:6630773,31735911:0,0,0 -g1,18284:6630773,31735911 -g1,18284:6630773,31735911 -g1,18284:6303093,31735911 -(1,18284:6303093,31735911:0,0,0 -) -g1,18284:6630773,31735911 -) -g1,18285:9476084,31735911 -g1,18285:10424522,31735911 -k1,18285:10424522,31735911:0 -h1,18285:20541185,31735911:0,0,0 -k1,18285:32583029,31735911:12041844 -g1,18285:32583029,31735911 -) -(1,18286:6630773,32402089:25952256,404226,101187 -h1,18286:6630773,32402089:0,0,0 -g1,18286:6946919,32402089 -g1,18286:7263065,32402089 -g1,18286:7579211,32402089 -g1,18286:7895357,32402089 -g1,18286:8211503,32402089 -g1,18286:8527649,32402089 -g1,18286:8843795,32402089 -g1,18286:9159941,32402089 -g1,18286:9476087,32402089 -g1,18286:9792233,32402089 -g1,18286:10108379,32402089 -g1,18286:10424525,32402089 -g1,18286:10740671,32402089 -g1,18286:11056817,32402089 -g1,18286:11372963,32402089 -g1,18286:11689109,32402089 -g1,18286:12005255,32402089 -g1,18286:12321401,32402089 -g1,18286:12637547,32402089 -g1,18286:12953693,32402089 -g1,18286:13269839,32402089 -g1,18286:13585985,32402089 -g1,18286:13902131,32402089 -g1,18286:15799005,32402089 -g1,18286:16431297,32402089 -g1,18286:17695880,32402089 -h1,18286:19592754,32402089:0,0,0 -k1,18286:32583029,32402089:12990275 -g1,18286:32583029,32402089 -) -(1,18287:6630773,33068267:25952256,410518,6290 -h1,18287:6630773,33068267:0,0,0 -h1,18287:9159938,33068267:0,0,0 -k1,18287:32583030,33068267:23423092 -g1,18287:32583030,33068267 -) -(1,18297:6630773,33799981:25952256,404226,9436 -(1,18289:6630773,33799981:0,0,0 -g1,18289:6630773,33799981 -g1,18289:6630773,33799981 -g1,18289:6303093,33799981 -(1,18289:6303093,33799981:0,0,0 -) -g1,18289:6630773,33799981 -) -g1,18297:7579210,33799981 -g1,18297:8211502,33799981 -g1,18297:8843794,33799981 -g1,18297:11372960,33799981 -g1,18297:12321397,33799981 -g1,18297:12953689,33799981 -h1,18297:13269835,33799981:0,0,0 -k1,18297:32583029,33799981:19313194 -g1,18297:32583029,33799981 -) -(1,18297:6630773,34466159:25952256,404226,107478 -h1,18297:6630773,34466159:0,0,0 -g1,18297:7579210,34466159 -g1,18297:7895356,34466159 -g1,18297:8211502,34466159 -g1,18297:10424522,34466159 -g1,18297:12321396,34466159 -h1,18297:15798998,34466159:0,0,0 -k1,18297:32583030,34466159:16784032 -g1,18297:32583030,34466159 -) -(1,18297:6630773,35132337:25952256,404226,6290 -h1,18297:6630773,35132337:0,0,0 -g1,18297:7579210,35132337 -g1,18297:7895356,35132337 -g1,18297:8211502,35132337 -g1,18297:8527648,35132337 -g1,18297:10424523,35132337 -g1,18297:12321398,35132337 -g1,18297:12637544,35132337 -g1,18297:12953690,35132337 -g1,18297:13269836,35132337 -g1,18297:13585982,35132337 -g1,18297:13902128,35132337 -g1,18297:14218274,35132337 -k1,18297:14218274,35132337:0 -h1,18297:15799003,35132337:0,0,0 -k1,18297:32583029,35132337:16784026 -g1,18297:32583029,35132337 -) -(1,18297:6630773,35798515:25952256,388497,4718 -h1,18297:6630773,35798515:0,0,0 -g1,18297:7579210,35798515 -g1,18297:8211502,35798515 -g1,18297:8527648,35798515 -g1,18297:8843794,35798515 -g1,18297:9159940,35798515 -g1,18297:9476086,35798515 -g1,18297:9792232,35798515 -g1,18297:10424524,35798515 -g1,18297:11056816,35798515 -g1,18297:11372962,35798515 -g1,18297:11689108,35798515 -g1,18297:12005254,35798515 -g1,18297:12321400,35798515 -g1,18297:12637546,35798515 -g1,18297:12953692,35798515 -g1,18297:13269838,35798515 -g1,18297:13585984,35798515 -g1,18297:13902130,35798515 -g1,18297:14218276,35798515 -g1,18297:14534422,35798515 -g1,18297:14850568,35798515 -g1,18297:15166714,35798515 -g1,18297:15482860,35798515 -h1,18297:15799006,35798515:0,0,0 -k1,18297:32583030,35798515:16784024 -g1,18297:32583030,35798515 -) -(1,18297:6630773,36464693:25952256,388497,9436 -h1,18297:6630773,36464693:0,0,0 -g1,18297:7579210,36464693 -g1,18297:8211502,36464693 -g1,18297:8527648,36464693 -g1,18297:8843794,36464693 -g1,18297:9159940,36464693 -g1,18297:9476086,36464693 -g1,18297:9792232,36464693 -g1,18297:10424524,36464693 -g1,18297:11056816,36464693 -g1,18297:11372962,36464693 -g1,18297:11689108,36464693 -g1,18297:12005254,36464693 -g1,18297:12321400,36464693 -g1,18297:12637546,36464693 -g1,18297:12953692,36464693 -g1,18297:13269838,36464693 -g1,18297:13585984,36464693 -g1,18297:13902130,36464693 -g1,18297:14218276,36464693 -g1,18297:14534422,36464693 -g1,18297:14850568,36464693 -g1,18297:15166714,36464693 -g1,18297:15482860,36464693 -h1,18297:15799006,36464693:0,0,0 -k1,18297:32583030,36464693:16784024 -g1,18297:32583030,36464693 -) -(1,18297:6630773,37130871:25952256,388497,9436 -h1,18297:6630773,37130871:0,0,0 -g1,18297:7579210,37130871 -g1,18297:8211502,37130871 -g1,18297:8527648,37130871 -g1,18297:8843794,37130871 -g1,18297:9159940,37130871 -g1,18297:9476086,37130871 -g1,18297:9792232,37130871 -g1,18297:10424524,37130871 -g1,18297:11056816,37130871 -g1,18297:11372962,37130871 -g1,18297:11689108,37130871 -g1,18297:12005254,37130871 -g1,18297:12321400,37130871 -g1,18297:12637546,37130871 -g1,18297:12953692,37130871 -g1,18297:13269838,37130871 -g1,18297:13585984,37130871 -g1,18297:13902130,37130871 -g1,18297:14218276,37130871 -g1,18297:14534422,37130871 -g1,18297:14850568,37130871 -g1,18297:15166714,37130871 -g1,18297:15482860,37130871 -h1,18297:15799006,37130871:0,0,0 -k1,18297:32583030,37130871:16784024 -g1,18297:32583030,37130871 -) -(1,18297:6630773,37797049:25952256,404226,6290 -h1,18297:6630773,37797049:0,0,0 -g1,18297:7579210,37797049 -g1,18297:8211502,37797049 -g1,18297:9476085,37797049 -g1,18297:11056814,37797049 -g1,18297:11689106,37797049 -g1,18297:13269835,37797049 -h1,18297:14534418,37797049:0,0,0 -k1,18297:32583030,37797049:18048612 -g1,18297:32583030,37797049 -) -] -) -g1,18298:32583029,37803339 -g1,18298:6630773,37803339 -g1,18298:6630773,37803339 -g1,18298:32583029,37803339 -g1,18298:32583029,37803339 -) -h1,18298:6630773,37999947:0,0,0 -(1,18302:6630773,39365723:25952256,513147,134348 -h1,18301:6630773,39365723:983040,0,0 -g1,18301:8766591,39365723 -g1,18301:10070102,39365723 -g1,18301:11555147,39365723 -g1,18301:13166677,39365723 -g1,18301:13721766,39365723 -g1,18301:15941470,39365723 -g1,18301:18467882,39365723 -g1,18301:19326403,39365723 -g1,18301:20544717,39365723 -g1,18301:22626795,39365723 -k1,18302:32583029,39365723:6489379 -g1,18302:32583029,39365723 -) -v1,18304:6630773,40556189:0,393216,0 -(1,18320:6630773,45503599:25952256,5340626,196608 -g1,18320:6630773,45503599 -g1,18320:6630773,45503599 -g1,18320:6434165,45503599 -(1,18320:6434165,45503599:0,5340626,196608 -r1,18320:32779637,45503599:26345472,5537234,196608 -k1,18320:6434165,45503599:-26345472 -) -(1,18320:6434165,45503599:26345472,5340626,196608 -[1,18320:6630773,45503599:25952256,5144018,0 -(1,18306:6630773,40770099:25952256,410518,107478 -(1,18305:6630773,40770099:0,0,0 -g1,18305:6630773,40770099 -g1,18305:6630773,40770099 -g1,18305:6303093,40770099 -(1,18305:6303093,40770099:0,0,0 -) -g1,18305:6630773,40770099 -) -g1,18306:11689104,40770099 -g1,18306:12637542,40770099 -k1,18306:12637542,40770099:0 -h1,18306:22754205,40770099:0,0,0 -k1,18306:32583029,40770099:9828824 -g1,18306:32583029,40770099 -) -(1,18307:6630773,41436277:25952256,404226,101187 -h1,18307:6630773,41436277:0,0,0 -g1,18307:6946919,41436277 -g1,18307:7263065,41436277 -g1,18307:7579211,41436277 -g1,18307:7895357,41436277 -g1,18307:8211503,41436277 -g1,18307:8527649,41436277 -g1,18307:8843795,41436277 -g1,18307:9159941,41436277 -g1,18307:9476087,41436277 -g1,18307:9792233,41436277 -g1,18307:10108379,41436277 -g1,18307:10424525,41436277 -g1,18307:10740671,41436277 -g1,18307:11056817,41436277 -g1,18307:11372963,41436277 -g1,18307:11689109,41436277 -g1,18307:12005255,41436277 -g1,18307:12321401,41436277 -g1,18307:12637547,41436277 -g1,18307:12953693,41436277 -g1,18307:13269839,41436277 -g1,18307:13585985,41436277 -g1,18307:13902131,41436277 -g1,18307:14218277,41436277 -g1,18307:14534423,41436277 -g1,18307:14850569,41436277 -g1,18307:15166715,41436277 -g1,18307:15482861,41436277 -g1,18307:15799007,41436277 -g1,18307:16115153,41436277 -g1,18307:18012027,41436277 -g1,18307:18644319,41436277 -g1,18307:19908902,41436277 -k1,18307:19908902,41436277:0 -h1,18307:21805776,41436277:0,0,0 -k1,18307:32583029,41436277:10777253 -g1,18307:32583029,41436277 -) -(1,18308:6630773,42102455:25952256,404226,107478 -h1,18308:6630773,42102455:0,0,0 -g1,18308:6946919,42102455 -g1,18308:7263065,42102455 -g1,18308:7579211,42102455 -g1,18308:7895357,42102455 -g1,18308:8211503,42102455 -g1,18308:8527649,42102455 -g1,18308:8843795,42102455 -g1,18308:9159941,42102455 -g1,18308:9476087,42102455 -g1,18308:9792233,42102455 -g1,18308:10108379,42102455 -g1,18308:10424525,42102455 -g1,18308:10740671,42102455 -g1,18308:11056817,42102455 -g1,18308:11372963,42102455 -g1,18308:11689109,42102455 -g1,18308:12005255,42102455 -g1,18308:12321401,42102455 -g1,18308:12637547,42102455 -g1,18308:12953693,42102455 -g1,18308:13269839,42102455 -g1,18308:13585985,42102455 -g1,18308:13902131,42102455 -g1,18308:14218277,42102455 -g1,18308:14534423,42102455 -g1,18308:14850569,42102455 -g1,18308:15166715,42102455 -g1,18308:15482861,42102455 -g1,18308:15799007,42102455 -g1,18308:16115153,42102455 -g1,18308:18012027,42102455 -g1,18308:18644319,42102455 -h1,18308:21173485,42102455:0,0,0 -k1,18308:32583029,42102455:11409544 -g1,18308:32583029,42102455 -) -(1,18309:6630773,42768633:25952256,410518,107478 -h1,18309:6630773,42768633:0,0,0 -h1,18309:11372958,42768633:0,0,0 -k1,18309:32583030,42768633:21210072 -g1,18309:32583030,42768633 -) -(1,18319:6630773,43500347:25952256,404226,6290 -(1,18311:6630773,43500347:0,0,0 -g1,18311:6630773,43500347 -g1,18311:6630773,43500347 -g1,18311:6303093,43500347 -(1,18311:6303093,43500347:0,0,0 -) -g1,18311:6630773,43500347 -) -g1,18319:7579210,43500347 -g1,18319:8211502,43500347 -g1,18319:8843794,43500347 -g1,18319:11372960,43500347 -g1,18319:12005252,43500347 -g1,18319:12637544,43500347 -h1,18319:12953690,43500347:0,0,0 -k1,18319:32583030,43500347:19629340 -g1,18319:32583030,43500347 -) -(1,18319:6630773,44166525:25952256,404226,107478 -h1,18319:6630773,44166525:0,0,0 -g1,18319:7579210,44166525 -g1,18319:7895356,44166525 -g1,18319:8211502,44166525 -g1,18319:10424522,44166525 -h1,18319:12005250,44166525:0,0,0 -k1,18319:32583030,44166525:20577780 -g1,18319:32583030,44166525 -) -(1,18319:6630773,44832703:25952256,404226,6290 -h1,18319:6630773,44832703:0,0,0 -g1,18319:7579210,44832703 -g1,18319:7895356,44832703 -g1,18319:8211502,44832703 -g1,18319:8527648,44832703 -g1,18319:10424523,44832703 -k1,18319:10424523,44832703:0 -h1,18319:12005252,44832703:0,0,0 -k1,18319:32583028,44832703:20577776 -g1,18319:32583028,44832703 -) -(1,18319:6630773,45498881:25952256,388497,4718 -h1,18319:6630773,45498881:0,0,0 -g1,18319:7579210,45498881 -g1,18319:8211502,45498881 -g1,18319:8527648,45498881 -g1,18319:8843794,45498881 -g1,18319:9159940,45498881 -g1,18319:9476086,45498881 -g1,18319:9792232,45498881 -g1,18319:10424524,45498881 -h1,18319:10740670,45498881:0,0,0 -k1,18319:32583030,45498881:21842360 -g1,18319:32583030,45498881 -) -] -) -g1,18320:32583029,45503599 -g1,18320:6630773,45503599 -g1,18320:6630773,45503599 -g1,18320:32583029,45503599 -g1,18320:32583029,45503599 -) -] -(1,18320:32583029,45706769:0,0,0 -g1,18320:32583029,45706769 -) -) -] -(1,18320:6630773,47279633:25952256,0,0 -h1,18320:6630773,47279633:25952256,0,0 -) -] -(1,18320:4262630,4025873:0,0,0 -[1,18320:-473656,4025873:0,0,0 -(1,18320:-473656,-710413:0,0,0 -(1,18320:-473656,-710413:0,0,0 -g1,18320:-473656,-710413 -) -g1,18320:-473656,-710413 -) -] -) -] -!20940 -}359 -Input:2947:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2948:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!196 -{360 -[1,18392:4262630,47279633:28320399,43253760,0 -(1,18392:4262630,4025873:0,0,0 -[1,18392:-473656,4025873:0,0,0 -(1,18392:-473656,-710413:0,0,0 -(1,18392:-473656,-644877:0,0,0 -k1,18392:-473656,-644877:-65536 -) -(1,18392:-473656,4736287:0,0,0 -k1,18392:-473656,4736287:5209943 -) -g1,18392:-473656,-710413 -) -] -) -[1,18392:6630773,47279633:25952256,43253760,0 -[1,18392:6630773,4812305:25952256,786432,0 -(1,18392:6630773,4812305:25952256,505283,11795 -(1,18392:6630773,4812305:25952256,505283,11795 -g1,18392:3078558,4812305 -[1,18392:3078558,4812305:0,0,0 -(1,18392:3078558,2439708:0,1703936,0 -k1,18392:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,18392:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,18392:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 -) -] -) -) -) -] -[1,18392:3078558,4812305:0,0,0 -(1,18392:3078558,2439708:0,1703936,0 -g1,18392:29030814,2439708 -g1,18392:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,18392:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 -) -] -) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,18392:37855564,2439708:1179648,16384,0 -) -) -k1,18392:3078556,2439708:-34777008 -) -] -[1,18392:3078558,4812305:0,0,0 -(1,18392:3078558,49800853:0,16384,2228224 -k1,18392:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,18392:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,18392:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 -) -] -) -) -) -] -[1,18392:3078558,4812305:0,0,0 -(1,18392:3078558,49800853:0,16384,2228224 -g1,18392:29030814,49800853 -g1,18392:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,18392:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 -) -] -) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,18392:37855564,49800853:1179648,16384,0 -) -) -k1,18392:3078556,49800853:-34777008 -) -] -g1,18392:6630773,4812305 -g1,18392:6630773,4812305 -g1,18392:10349285,4812305 -k1,18392:31387653,4812305:21038368 -) -) -] -[1,18392:6630773,45706769:25952256,40108032,0 -(1,18392:6630773,45706769:25952256,40108032,0 -(1,18392:6630773,45706769:0,0,0 -g1,18392:6630773,45706769 -) -[1,18392:6630773,45706769:25952256,40108032,0 -v1,18320:6630773,6254097:0,393216,0 -(1,18320:6630773,7784632:25952256,1923751,196608 -g1,18320:6630773,7784632 -g1,18320:6630773,7784632 -g1,18320:6434165,7784632 -(1,18320:6434165,7784632:0,1923751,196608 -r1,18392:32779637,7784632:26345472,2120359,196608 -k1,18320:6434165,7784632:-26345472 -) -(1,18320:6434165,7784632:26345472,1923751,196608 -[1,18320:6630773,7784632:25952256,1727143,0 -(1,18319:6630773,6445986:25952256,388497,4718 -h1,18319:6630773,6445986:0,0,0 -g1,18319:7579210,6445986 -g1,18319:8211502,6445986 -g1,18319:8527648,6445986 -g1,18319:8843794,6445986 -g1,18319:9159940,6445986 -g1,18319:9476086,6445986 -g1,18319:9792232,6445986 -g1,18319:10424524,6445986 -h1,18319:10740670,6445986:0,0,0 -k1,18319:32583030,6445986:21842360 -g1,18319:32583030,6445986 -) -(1,18319:6630773,7112164:25952256,388497,9436 -h1,18319:6630773,7112164:0,0,0 -g1,18319:7579210,7112164 -g1,18319:8211502,7112164 -g1,18319:8527648,7112164 -g1,18319:8843794,7112164 -g1,18319:9159940,7112164 -g1,18319:9476086,7112164 -g1,18319:9792232,7112164 -g1,18319:10424524,7112164 -h1,18319:10740670,7112164:0,0,0 -k1,18319:32583030,7112164:21842360 -g1,18319:32583030,7112164 -) -(1,18319:6630773,7778342:25952256,404226,6290 -h1,18319:6630773,7778342:0,0,0 -g1,18319:7579210,7778342 -g1,18319:8211502,7778342 -g1,18319:9476085,7778342 -g1,18319:11056814,7778342 -g1,18319:11689106,7778342 -g1,18319:13269835,7778342 -h1,18319:14534418,7778342:0,0,0 -k1,18319:32583030,7778342:18048612 -g1,18319:32583030,7778342 -) -] -) -g1,18320:32583029,7784632 -g1,18320:6630773,7784632 -g1,18320:6630773,7784632 -g1,18320:32583029,7784632 -g1,18320:32583029,7784632 -) -h1,18320:6630773,7981240:0,0,0 -(1,18324:6630773,9296582:25952256,513147,134348 -h1,18323:6630773,9296582:983040,0,0 -k1,18323:8628583,9296582:240790 -k1,18323:9888458,9296582:240790 -k1,18323:13347066,9296582:240790 -k1,18323:17164156,9296582:240790 -k1,18323:18424031,9296582:240790 -k1,18323:20266522,9296582:240791 -k1,18323:22484533,9296582:240790 -k1,18323:24212335,9296582:240790 -k1,18323:25928340,9296582:240790 -k1,18323:27188215,9296582:240790 -k1,18323:29082478,9296582:240790 -k1,18323:31391584,9296582:240790 -k1,18323:32583029,9296582:0 -) -(1,18324:6630773,10138070:25952256,505283,134348 -k1,18323:8155578,10138070:181972 -k1,18323:10539559,10138070:181971 -k1,18323:12287186,10138070:181972 -k1,18323:13155319,10138070:181971 -k1,18323:13953329,10138070:181972 -k1,18323:16158396,10138070:181971 -k1,18323:17572445,10138070:181972 -k1,18323:20033103,10138070:181971 -h1,18323:21575821,10138070:0,0,0 -k1,18323:21757793,10138070:181972 -k1,18323:22749134,10138070:181971 -k1,18323:24429259,10138070:181972 -h1,18323:25624636,10138070:0,0,0 -k1,18323:26187371,10138070:181971 -k1,18323:27411365,10138070:181972 -k1,18323:30428423,10138070:181971 -k1,18323:31478747,10138070:181972 -k1,18323:32583029,10138070:0 -) -(1,18324:6630773,10979558:25952256,513147,134348 -k1,18323:7739390,10979558:174074 -k1,18323:9196658,10979558:174073 -k1,18323:11439048,10979558:174074 -k1,18323:12264549,10979558:174073 -k1,18323:13457708,10979558:174074 -k1,18323:16344973,10979558:174074 -k1,18323:18846229,10979558:174073 -k1,18323:19679595,10979558:174074 -k1,18323:22256219,10979558:174074 -k1,18323:23938931,10979558:174073 -k1,18323:26181321,10979558:174074 -k1,18323:27923015,10979558:174073 -k1,18323:29116174,10979558:174074 -k1,18324:32583029,10979558:0 -k1,18324:32583029,10979558:0 -) -v1,18326:6630773,12119589:0,393216,0 -(1,18343:6630773,19733283:25952256,8006910,196608 -g1,18343:6630773,19733283 -g1,18343:6630773,19733283 -g1,18343:6434165,19733283 -(1,18343:6434165,19733283:0,8006910,196608 -r1,18392:32779637,19733283:26345472,8203518,196608 -k1,18343:6434165,19733283:-26345472 -) -(1,18343:6434165,19733283:26345472,8006910,196608 -[1,18343:6630773,19733283:25952256,7810302,0 -(1,18328:6630773,12333499:25952256,410518,107478 -(1,18327:6630773,12333499:0,0,0 -g1,18327:6630773,12333499 -g1,18327:6630773,12333499 -g1,18327:6303093,12333499 -(1,18327:6303093,12333499:0,0,0 -) -g1,18327:6630773,12333499 -) -g1,18328:11689104,12333499 -g1,18328:12637542,12333499 -k1,18328:12637542,12333499:0 -h1,18328:22754205,12333499:0,0,0 -k1,18328:32583029,12333499:9828824 -g1,18328:32583029,12333499 -) -(1,18329:6630773,12999677:25952256,404226,101187 -h1,18329:6630773,12999677:0,0,0 -g1,18329:6946919,12999677 -g1,18329:7263065,12999677 -g1,18329:7579211,12999677 -g1,18329:7895357,12999677 -g1,18329:8211503,12999677 -g1,18329:8527649,12999677 -g1,18329:8843795,12999677 -g1,18329:9159941,12999677 -g1,18329:9476087,12999677 -g1,18329:9792233,12999677 -g1,18329:10108379,12999677 -g1,18329:10424525,12999677 -g1,18329:10740671,12999677 -g1,18329:11056817,12999677 -g1,18329:11372963,12999677 -g1,18329:11689109,12999677 -g1,18329:12005255,12999677 -g1,18329:12321401,12999677 -g1,18329:12637547,12999677 -g1,18329:12953693,12999677 -g1,18329:13269839,12999677 -g1,18329:13585985,12999677 -g1,18329:13902131,12999677 -g1,18329:14218277,12999677 -g1,18329:14534423,12999677 -g1,18329:14850569,12999677 -g1,18329:15166715,12999677 -g1,18329:15482861,12999677 -g1,18329:15799007,12999677 -g1,18329:16115153,12999677 -g1,18329:18012027,12999677 -g1,18329:18644319,12999677 -g1,18329:19908902,12999677 -k1,18329:19908902,12999677:0 -h1,18329:21805776,12999677:0,0,0 -k1,18329:32583029,12999677:10777253 -g1,18329:32583029,12999677 -) -(1,18330:6630773,13665855:25952256,404226,107478 -h1,18330:6630773,13665855:0,0,0 -g1,18330:6946919,13665855 -g1,18330:7263065,13665855 -g1,18330:7579211,13665855 -g1,18330:7895357,13665855 -g1,18330:8211503,13665855 -g1,18330:8527649,13665855 -g1,18330:8843795,13665855 -g1,18330:9159941,13665855 -g1,18330:9476087,13665855 -g1,18330:9792233,13665855 -g1,18330:10108379,13665855 -g1,18330:10424525,13665855 -g1,18330:10740671,13665855 -g1,18330:11056817,13665855 -g1,18330:11372963,13665855 -g1,18330:11689109,13665855 -g1,18330:12005255,13665855 -g1,18330:12321401,13665855 -g1,18330:12637547,13665855 -g1,18330:12953693,13665855 -g1,18330:13269839,13665855 -g1,18330:13585985,13665855 -g1,18330:13902131,13665855 -g1,18330:14218277,13665855 -g1,18330:14534423,13665855 -g1,18330:14850569,13665855 -g1,18330:15166715,13665855 -g1,18330:15482861,13665855 -g1,18330:15799007,13665855 -g1,18330:16115153,13665855 -g1,18330:18012027,13665855 -g1,18330:18644319,13665855 -k1,18330:18644319,13665855:0 -h1,18330:21173485,13665855:0,0,0 -k1,18330:32583029,13665855:11409544 -g1,18330:32583029,13665855 -) -(1,18331:6630773,14332033:25952256,404226,82312 -h1,18331:6630773,14332033:0,0,0 -g1,18331:6946919,14332033 -g1,18331:7263065,14332033 -g1,18331:7579211,14332033 -g1,18331:7895357,14332033 -g1,18331:8211503,14332033 -g1,18331:8527649,14332033 -g1,18331:8843795,14332033 -g1,18331:9159941,14332033 -g1,18331:9476087,14332033 -g1,18331:9792233,14332033 -g1,18331:10108379,14332033 -g1,18331:10424525,14332033 -g1,18331:10740671,14332033 -g1,18331:11056817,14332033 -g1,18331:11372963,14332033 -g1,18331:11689109,14332033 -g1,18331:12005255,14332033 -g1,18331:12321401,14332033 -g1,18331:12637547,14332033 -g1,18331:12953693,14332033 -g1,18331:13269839,14332033 -g1,18331:13585985,14332033 -g1,18331:13902131,14332033 -g1,18331:14218277,14332033 -g1,18331:14534423,14332033 -g1,18331:14850569,14332033 -g1,18331:15166715,14332033 -g1,18331:15482861,14332033 -g1,18331:15799007,14332033 -g1,18331:16115153,14332033 -g1,18331:19276610,14332033 -g1,18331:19908902,14332033 -g1,18331:22121923,14332033 -h1,18331:23702651,14332033:0,0,0 -k1,18331:32583029,14332033:8880378 -g1,18331:32583029,14332033 -) -(1,18332:6630773,14998211:25952256,410518,107478 -h1,18332:6630773,14998211:0,0,0 -h1,18332:11372958,14998211:0,0,0 -k1,18332:32583030,14998211:21210072 -g1,18332:32583030,14998211 -) -(1,18342:6630773,15729925:25952256,404226,6290 -(1,18334:6630773,15729925:0,0,0 -g1,18334:6630773,15729925 -g1,18334:6630773,15729925 -g1,18334:6303093,15729925 -(1,18334:6303093,15729925:0,0,0 -) -g1,18334:6630773,15729925 -) -g1,18342:7579210,15729925 -g1,18342:8211502,15729925 -g1,18342:8843794,15729925 -g1,18342:11372960,15729925 -g1,18342:12005252,15729925 -g1,18342:12637544,15729925 -h1,18342:12953690,15729925:0,0,0 -k1,18342:32583030,15729925:19629340 -g1,18342:32583030,15729925 -) -(1,18342:6630773,16396103:25952256,379060,0 -h1,18342:6630773,16396103:0,0,0 -g1,18342:7579210,16396103 -g1,18342:7895356,16396103 -g1,18342:8211502,16396103 -g1,18342:8527648,16396103 -g1,18342:8843794,16396103 -g1,18342:9159940,16396103 -g1,18342:9476086,16396103 -g1,18342:10108378,16396103 -h1,18342:10424524,16396103:0,0,0 -k1,18342:32583028,16396103:22158504 -g1,18342:32583028,16396103 -) -(1,18342:6630773,17062281:25952256,404226,6290 -h1,18342:6630773,17062281:0,0,0 -g1,18342:7579210,17062281 -g1,18342:7895356,17062281 -g1,18342:8211502,17062281 -g1,18342:10108377,17062281 -k1,18342:10108377,17062281:0 -h1,18342:11689106,17062281:0,0,0 -k1,18342:32583030,17062281:20893924 -g1,18342:32583030,17062281 -) -(1,18342:6630773,17728459:25952256,388497,4718 -h1,18342:6630773,17728459:0,0,0 -g1,18342:7579210,17728459 -g1,18342:8211502,17728459 -g1,18342:8527648,17728459 -g1,18342:8843794,17728459 -g1,18342:9159940,17728459 -g1,18342:9476086,17728459 -g1,18342:10108378,17728459 -h1,18342:10424524,17728459:0,0,0 -k1,18342:32583028,17728459:22158504 -g1,18342:32583028,17728459 -) -(1,18342:6630773,18394637:25952256,388497,4718 -h1,18342:6630773,18394637:0,0,0 -g1,18342:7579210,18394637 -g1,18342:8211502,18394637 -g1,18342:8527648,18394637 -g1,18342:8843794,18394637 -g1,18342:9159940,18394637 -g1,18342:9476086,18394637 -g1,18342:10108378,18394637 -h1,18342:10424524,18394637:0,0,0 -k1,18342:32583028,18394637:22158504 -g1,18342:32583028,18394637 -) -(1,18342:6630773,19060815:25952256,388497,9436 -h1,18342:6630773,19060815:0,0,0 -g1,18342:7579210,19060815 -g1,18342:8211502,19060815 -g1,18342:8527648,19060815 -g1,18342:8843794,19060815 -g1,18342:9159940,19060815 -g1,18342:9476086,19060815 -g1,18342:10108378,19060815 -h1,18342:10424524,19060815:0,0,0 -k1,18342:32583028,19060815:22158504 -g1,18342:32583028,19060815 -) -(1,18342:6630773,19726993:25952256,404226,6290 -h1,18342:6630773,19726993:0,0,0 -g1,18342:7579210,19726993 -g1,18342:8211502,19726993 -g1,18342:9476085,19726993 -g1,18342:11056814,19726993 -g1,18342:11689106,19726993 -g1,18342:13269835,19726993 -h1,18342:14534418,19726993:0,0,0 -k1,18342:32583030,19726993:18048612 -g1,18342:32583030,19726993 -) -] -) -g1,18343:32583029,19733283 -g1,18343:6630773,19733283 -g1,18343:6630773,19733283 -g1,18343:32583029,19733283 -g1,18343:32583029,19733283 -) -h1,18343:6630773,19929891:0,0,0 -(1,18346:6630773,22495005:25952256,555811,12975 -(1,18346:6630773,22495005:2450326,534184,12975 -g1,18346:6630773,22495005 -g1,18346:9081099,22495005 -) -k1,18346:32583030,22495005:21625440 -g1,18346:32583030,22495005 -) -(1,18351:6630773,23729709:25952256,513147,134348 -k1,18350:9413213,23729709:247507 -k1,18350:11334510,23729709:247508 -k1,18350:12686299,23729709:247507 -k1,18350:13681573,23729709:247508 -k1,18350:15579277,23729709:247507 -k1,18350:18310599,23729709:247507 -k1,18350:19209535,23729709:247508 -k1,18350:21426399,23729709:247507 -k1,18350:22360069,23729709:247508 -k1,18350:23065673,23729709:247507 -k1,18350:24735967,23729709:247507 -k1,18350:26328929,23729709:247508 -k1,18350:29602233,23729709:247507 -k1,18350:30501169,23729709:247508 -k1,18350:31563944,23729709:247507 -k1,18350:32583029,23729709:0 -) -(1,18351:6630773,24571197:25952256,513147,134348 -k1,18350:8776362,24571197:223418 -k1,18350:10769907,24571197:223418 -k1,18350:13928027,24571197:223418 -k1,18350:14609542,24571197:223418 -k1,18350:15364457,24571197:223418 -k1,18350:17238072,24571197:223418 -k1,18350:22452712,24571197:223418 -k1,18350:24070081,24571197:223418 -k1,18350:27319296,24571197:223418 -k1,18350:29009410,24571197:223418 -k1,18350:30180479,24571197:223418 -k1,18350:32583029,24571197:0 -) -(1,18351:6630773,25412685:25952256,513147,134348 -k1,18350:8084289,25412685:262071 -k1,18350:10604075,25412685:262071 -k1,18350:13643562,25412685:262071 -k1,18350:17529119,25412685:262071 -k1,18350:18982635,25412685:262071 -k1,18350:22927174,25412685:262071 -k1,18350:23805283,25412685:262071 -k1,18350:26829697,25412685:262071 -k1,18350:29602452,25412685:262071 -k1,18350:32583029,25412685:0 -) -(1,18351:6630773,26254173:25952256,513147,134348 -k1,18350:7878730,26254173:228872 -k1,18350:9763697,26254173:228872 -k1,18350:12014355,26254173:228872 -k1,18350:13903909,26254173:228872 -k1,18350:16359694,26254173:228872 -k1,18350:17239994,26254173:228872 -k1,18350:19491961,26254173:228871 -k1,18350:20178930,26254173:228872 -k1,18350:22419757,26254173:228872 -k1,18350:25237301,26254173:228872 -k1,18350:27816949,26254173:228872 -k1,18350:28705113,26254173:228872 -k1,18350:29289845,26254173:228872 -k1,18350:32583029,26254173:0 -) -(1,18351:6630773,27095661:25952256,505283,126483 -g1,18350:7481430,27095661 -g1,18350:8428425,27095661 -k1,18351:32583029,27095661:21031158 -g1,18351:32583029,27095661 -) -(1,18353:6630773,27937149:25952256,513147,134348 -h1,18352:6630773,27937149:983040,0,0 -k1,18352:9375340,27937149:273204 -k1,18352:10516895,27937149:273203 -k1,18352:11882584,27937149:273204 -k1,18352:14851284,27937149:273204 -(1,18352:14851284,27937149:0,452978,115847 -r1,18392:18726668,27937149:3875384,568825,115847 -k1,18352:14851284,27937149:-3875384 -) -(1,18352:14851284,27937149:3875384,452978,115847 -k1,18352:14851284,27937149:3277 -h1,18352:18723391,27937149:0,411205,112570 -) -k1,18352:19173542,27937149:273204 -k1,18352:22186150,27937149:273203 -k1,18352:23478439,27937149:273204 -k1,18352:27044827,27937149:273204 -k1,18352:28079559,27937149:273204 -k1,18352:30264447,27937149:273203 -k1,18352:31734338,27937149:273204 -k1,18353:32583029,27937149:0 -) -(1,18353:6630773,28778637:25952256,513147,134348 -k1,18352:9008018,28778637:234218 -k1,18352:10922580,28778637:234219 -k1,18352:11688295,28778637:234218 -k1,18352:12278373,28778637:234218 -k1,18352:13901955,28778637:234219 -k1,18352:16186139,28778637:234218 -k1,18352:17611802,28778637:234218 -k1,18352:20821356,28778637:234219 -k1,18352:22074659,28778637:234218 -k1,18352:26333443,28778637:234218 -k1,18352:27234817,28778637:234218 -k1,18352:27883844,28778637:234184 -k1,18352:30698214,28778637:234218 -k1,18352:32583029,28778637:0 -) -(1,18353:6630773,29620125:25952256,513147,126483 -g1,18352:9804681,29620125 -g1,18352:12717101,29620125 -g1,18352:13907890,29620125 -g1,18352:17267920,29620125 -g1,18352:18734615,29620125 -g1,18352:21158136,29620125 -g1,18352:22118893,29620125 -k1,18353:32583029,29620125:8024886 -g1,18353:32583029,29620125 -) -v1,18355:6630773,30760157:0,393216,0 -(1,18374:6630773,39709353:25952256,9342412,196608 -g1,18374:6630773,39709353 -g1,18374:6630773,39709353 -g1,18374:6434165,39709353 -(1,18374:6434165,39709353:0,9342412,196608 -r1,18392:32779637,39709353:26345472,9539020,196608 -k1,18374:6434165,39709353:-26345472 -) -(1,18374:6434165,39709353:26345472,9342412,196608 -[1,18374:6630773,39709353:25952256,9145804,0 -(1,18357:6630773,30974067:25952256,410518,82312 -(1,18356:6630773,30974067:0,0,0 -g1,18356:6630773,30974067 -g1,18356:6630773,30974067 -g1,18356:6303093,30974067 -(1,18356:6303093,30974067:0,0,0 -) -g1,18356:6630773,30974067 -) -g1,18357:11056813,30974067 -g1,18357:12005251,30974067 -k1,18357:12005251,30974067:0 -h1,18357:21805768,30974067:0,0,0 -k1,18357:32583029,30974067:10777261 -g1,18357:32583029,30974067 -) -(1,18358:6630773,31640245:25952256,404226,101187 -h1,18358:6630773,31640245:0,0,0 -g1,18358:6946919,31640245 -g1,18358:7263065,31640245 -g1,18358:7579211,31640245 -g1,18358:7895357,31640245 -g1,18358:8211503,31640245 -g1,18358:8527649,31640245 -g1,18358:8843795,31640245 -g1,18358:9159941,31640245 -g1,18358:9476087,31640245 -g1,18358:9792233,31640245 -g1,18358:10108379,31640245 -g1,18358:10424525,31640245 -g1,18358:10740671,31640245 -g1,18358:11056817,31640245 -g1,18358:11372963,31640245 -g1,18358:11689109,31640245 -g1,18358:12005255,31640245 -g1,18358:12321401,31640245 -g1,18358:12637547,31640245 -g1,18358:12953693,31640245 -g1,18358:13269839,31640245 -g1,18358:13585985,31640245 -g1,18358:13902131,31640245 -g1,18358:14218277,31640245 -g1,18358:14534423,31640245 -g1,18358:14850569,31640245 -g1,18358:15166715,31640245 -g1,18358:18328172,31640245 -g1,18358:18960464,31640245 -g1,18358:20225047,31640245 -h1,18358:22121921,31640245:0,0,0 -k1,18358:32583029,31640245:10461108 -g1,18358:32583029,31640245 -) -(1,18359:6630773,32306423:25952256,410518,50331 -h1,18359:6630773,32306423:0,0,0 -h1,18359:10740667,32306423:0,0,0 -k1,18359:32583029,32306423:21842362 -g1,18359:32583029,32306423 -) -(1,18373:6630773,33038137:25952256,404226,107478 -(1,18361:6630773,33038137:0,0,0 -g1,18361:6630773,33038137 -g1,18361:6630773,33038137 -g1,18361:6303093,33038137 -(1,18361:6303093,33038137:0,0,0 -) -g1,18361:6630773,33038137 -) -g1,18373:7579210,33038137 -g1,18373:7895356,33038137 -g1,18373:8211502,33038137 -g1,18373:8527648,33038137 -g1,18373:10740668,33038137 -g1,18373:12637542,33038137 -h1,18373:16115144,33038137:0,0,0 -k1,18373:32583029,33038137:16467885 -g1,18373:32583029,33038137 -) -(1,18373:6630773,33704315:25952256,388497,9436 -h1,18373:6630773,33704315:0,0,0 -g1,18373:7579210,33704315 -g1,18373:8211502,33704315 -g1,18373:8527648,33704315 -g1,18373:8843794,33704315 -g1,18373:9159940,33704315 -g1,18373:9476086,33704315 -g1,18373:9792232,33704315 -g1,18373:10108378,33704315 -g1,18373:10740670,33704315 -g1,18373:11056816,33704315 -g1,18373:11372962,33704315 -g1,18373:11689108,33704315 -g1,18373:12005254,33704315 -g1,18373:12637546,33704315 -g1,18373:12953692,33704315 -g1,18373:13269838,33704315 -g1,18373:13585984,33704315 -g1,18373:13902130,33704315 -g1,18373:14218276,33704315 -g1,18373:14534422,33704315 -g1,18373:14850568,33704315 -g1,18373:15166714,33704315 -h1,18373:16115151,33704315:0,0,0 -k1,18373:32583029,33704315:16467878 -g1,18373:32583029,33704315 -) -(1,18373:6630773,34370493:25952256,388497,9436 -h1,18373:6630773,34370493:0,0,0 -g1,18373:7579210,34370493 -g1,18373:8211502,34370493 -g1,18373:8527648,34370493 -g1,18373:8843794,34370493 -g1,18373:9159940,34370493 -g1,18373:9476086,34370493 -g1,18373:9792232,34370493 -g1,18373:10108378,34370493 -g1,18373:10740670,34370493 -g1,18373:11056816,34370493 -g1,18373:11372962,34370493 -g1,18373:11689108,34370493 -g1,18373:12005254,34370493 -g1,18373:12637546,34370493 -g1,18373:12953692,34370493 -g1,18373:13269838,34370493 -g1,18373:13585984,34370493 -g1,18373:13902130,34370493 -g1,18373:14218276,34370493 -g1,18373:14534422,34370493 -g1,18373:14850568,34370493 -g1,18373:15166714,34370493 -h1,18373:16115151,34370493:0,0,0 -k1,18373:32583029,34370493:16467878 -g1,18373:32583029,34370493 -) -(1,18373:6630773,35036671:25952256,388497,9436 -h1,18373:6630773,35036671:0,0,0 -g1,18373:7579210,35036671 -g1,18373:8211502,35036671 -g1,18373:8527648,35036671 -g1,18373:8843794,35036671 -g1,18373:9159940,35036671 -g1,18373:9476086,35036671 -g1,18373:9792232,35036671 -g1,18373:10108378,35036671 -g1,18373:10740670,35036671 -g1,18373:11056816,35036671 -g1,18373:11372962,35036671 -g1,18373:11689108,35036671 -g1,18373:12005254,35036671 -g1,18373:12637546,35036671 -g1,18373:12953692,35036671 -g1,18373:13269838,35036671 -g1,18373:13585984,35036671 -g1,18373:13902130,35036671 -g1,18373:14218276,35036671 -g1,18373:14534422,35036671 -g1,18373:14850568,35036671 -g1,18373:15166714,35036671 -h1,18373:16115151,35036671:0,0,0 -k1,18373:32583029,35036671:16467878 -g1,18373:32583029,35036671 -) -(1,18373:6630773,35702849:25952256,388497,9436 -h1,18373:6630773,35702849:0,0,0 -g1,18373:7579210,35702849 -g1,18373:8211502,35702849 -g1,18373:8527648,35702849 -g1,18373:8843794,35702849 -g1,18373:9159940,35702849 -g1,18373:9476086,35702849 -g1,18373:9792232,35702849 -g1,18373:10108378,35702849 -g1,18373:10740670,35702849 -g1,18373:11056816,35702849 -g1,18373:11372962,35702849 -g1,18373:11689108,35702849 -g1,18373:12005254,35702849 -g1,18373:12637546,35702849 -g1,18373:12953692,35702849 -g1,18373:13269838,35702849 -g1,18373:13585984,35702849 -g1,18373:13902130,35702849 -g1,18373:14218276,35702849 -g1,18373:14534422,35702849 -g1,18373:14850568,35702849 -g1,18373:15166714,35702849 -h1,18373:16115151,35702849:0,0,0 -k1,18373:32583029,35702849:16467878 -g1,18373:32583029,35702849 -) -(1,18373:6630773,36369027:25952256,388497,9436 -h1,18373:6630773,36369027:0,0,0 -g1,18373:7579210,36369027 -g1,18373:8211502,36369027 -g1,18373:8527648,36369027 -g1,18373:8843794,36369027 -g1,18373:9159940,36369027 -g1,18373:9476086,36369027 -g1,18373:9792232,36369027 -g1,18373:10108378,36369027 -g1,18373:10740670,36369027 -g1,18373:11056816,36369027 -g1,18373:11372962,36369027 -g1,18373:11689108,36369027 -g1,18373:12005254,36369027 -g1,18373:12637546,36369027 -g1,18373:12953692,36369027 -g1,18373:13269838,36369027 -g1,18373:13585984,36369027 -g1,18373:13902130,36369027 -g1,18373:14218276,36369027 -g1,18373:14534422,36369027 -g1,18373:14850568,36369027 -g1,18373:15166714,36369027 -h1,18373:16115151,36369027:0,0,0 -k1,18373:32583029,36369027:16467878 -g1,18373:32583029,36369027 -) -(1,18373:6630773,37035205:25952256,404226,9436 -h1,18373:6630773,37035205:0,0,0 -g1,18373:7579210,37035205 -g1,18373:8211502,37035205 -g1,18373:8527648,37035205 -g1,18373:8843794,37035205 -g1,18373:9159940,37035205 -g1,18373:9476086,37035205 -g1,18373:9792232,37035205 -g1,18373:10108378,37035205 -g1,18373:10740670,37035205 -g1,18373:11056816,37035205 -g1,18373:11372962,37035205 -g1,18373:11689108,37035205 -g1,18373:12005254,37035205 -g1,18373:12637546,37035205 -g1,18373:12953692,37035205 -g1,18373:13269838,37035205 -g1,18373:13585984,37035205 -g1,18373:13902130,37035205 -g1,18373:14218276,37035205 -g1,18373:14534422,37035205 -g1,18373:14850568,37035205 -g1,18373:15166714,37035205 -h1,18373:16115151,37035205:0,0,0 -k1,18373:32583029,37035205:16467878 -g1,18373:32583029,37035205 -) -(1,18373:6630773,37701383:25952256,404226,9436 -h1,18373:6630773,37701383:0,0,0 -g1,18373:7579210,37701383 -g1,18373:8211502,37701383 -g1,18373:8527648,37701383 -g1,18373:8843794,37701383 -g1,18373:9159940,37701383 -g1,18373:9476086,37701383 -g1,18373:9792232,37701383 -g1,18373:10108378,37701383 -g1,18373:10740670,37701383 -g1,18373:11056816,37701383 -g1,18373:11372962,37701383 -g1,18373:11689108,37701383 -g1,18373:12005254,37701383 -g1,18373:12637546,37701383 -g1,18373:12953692,37701383 -g1,18373:13269838,37701383 -g1,18373:13585984,37701383 -g1,18373:13902130,37701383 -g1,18373:14218276,37701383 -g1,18373:14534422,37701383 -g1,18373:14850568,37701383 -g1,18373:15166714,37701383 -h1,18373:16115151,37701383:0,0,0 -k1,18373:32583029,37701383:16467878 -g1,18373:32583029,37701383 -) -(1,18373:6630773,38367561:25952256,404226,9436 -h1,18373:6630773,38367561:0,0,0 -g1,18373:7579210,38367561 -g1,18373:8211502,38367561 -g1,18373:8527648,38367561 -g1,18373:8843794,38367561 -g1,18373:9159940,38367561 -g1,18373:9476086,38367561 -g1,18373:9792232,38367561 -g1,18373:10108378,38367561 -g1,18373:10740670,38367561 -g1,18373:11056816,38367561 -g1,18373:11372962,38367561 -g1,18373:11689108,38367561 -g1,18373:12005254,38367561 -g1,18373:12637546,38367561 -g1,18373:12953692,38367561 -g1,18373:13269838,38367561 -g1,18373:13585984,38367561 -g1,18373:13902130,38367561 -g1,18373:14218276,38367561 -g1,18373:14534422,38367561 -g1,18373:14850568,38367561 -g1,18373:15166714,38367561 -h1,18373:16115151,38367561:0,0,0 -k1,18373:32583029,38367561:16467878 -g1,18373:32583029,38367561 -) -(1,18373:6630773,39033739:25952256,404226,9436 -h1,18373:6630773,39033739:0,0,0 -g1,18373:7579210,39033739 -g1,18373:8211502,39033739 -g1,18373:8527648,39033739 -g1,18373:8843794,39033739 -g1,18373:9159940,39033739 -g1,18373:9476086,39033739 -g1,18373:9792232,39033739 -g1,18373:10108378,39033739 -g1,18373:10740670,39033739 -g1,18373:11056816,39033739 -g1,18373:11372962,39033739 -g1,18373:11689108,39033739 -g1,18373:12005254,39033739 -g1,18373:12637546,39033739 -g1,18373:12953692,39033739 -g1,18373:13269838,39033739 -g1,18373:13585984,39033739 -g1,18373:13902130,39033739 -g1,18373:14218276,39033739 -g1,18373:14534422,39033739 -g1,18373:14850568,39033739 -g1,18373:15166714,39033739 -h1,18373:16115151,39033739:0,0,0 -k1,18373:32583029,39033739:16467878 -g1,18373:32583029,39033739 -) -(1,18373:6630773,39699917:25952256,404226,9436 -h1,18373:6630773,39699917:0,0,0 -g1,18373:7579210,39699917 -g1,18373:8527647,39699917 -g1,18373:8843793,39699917 -g1,18373:9159939,39699917 -g1,18373:9476085,39699917 -g1,18373:9792231,39699917 -g1,18373:10740668,39699917 -g1,18373:11056814,39699917 -g1,18373:11372960,39699917 -g1,18373:11689106,39699917 -g1,18373:12005252,39699917 -g1,18373:12637544,39699917 -g1,18373:12953690,39699917 -g1,18373:13269836,39699917 -g1,18373:13585982,39699917 -g1,18373:13902128,39699917 -g1,18373:14218274,39699917 -g1,18373:14534420,39699917 -g1,18373:14850566,39699917 -g1,18373:15166712,39699917 -h1,18373:16115149,39699917:0,0,0 -k1,18373:32583029,39699917:16467880 -g1,18373:32583029,39699917 -) -] -) -g1,18374:32583029,39709353 -g1,18374:6630773,39709353 -g1,18374:6630773,39709353 -g1,18374:32583029,39709353 -g1,18374:32583029,39709353 -) -h1,18374:6630773,39905961:0,0,0 -(1,18378:6630773,41221302:25952256,513147,115847 -h1,18377:6630773,41221302:983040,0,0 -k1,18377:9313040,41221302:220079 -k1,18377:12228616,41221302:220080 -(1,18377:12228616,41221302:0,452978,115847 -r1,18392:16455712,41221302:4227096,568825,115847 -k1,18377:12228616,41221302:-4227096 -) -(1,18377:12228616,41221302:4227096,452978,115847 -k1,18377:12228616,41221302:3277 -h1,18377:16452435,41221302:0,411205,112570 -) -k1,18377:16675791,41221302:220079 -k1,18377:17764223,41221302:220080 -k1,18377:19088584,41221302:220079 -k1,18377:20923471,41221302:220080 -k1,18377:22532913,41221302:220079 -k1,18377:24959590,41221302:220080 -k1,18377:26245940,41221302:220079 -k1,18377:27117448,41221302:220080 -k1,18377:28959543,41221302:220079 -k1,18377:32583029,41221302:0 -) -(1,18378:6630773,42062790:25952256,505283,134348 -g1,18377:8021447,42062790 -g1,18377:9687372,42062790 -g1,18377:12266869,42062790 -g1,18377:13749293,42062790 -g1,18377:17572008,42062790 -g1,18377:18422665,42062790 -g1,18377:19392597,42062790 -g1,18377:22082849,42062790 -k1,18378:32583029,42062790:7148013 -g1,18378:32583029,42062790 -) -v1,18380:6630773,43202822:0,393216,0 -(1,18392:6630773,45510161:25952256,2700555,196608 -g1,18392:6630773,45510161 -g1,18392:6630773,45510161 -g1,18392:6434165,45510161 -(1,18392:6434165,45510161:0,2700555,196608 -r1,18392:32779637,45510161:26345472,2897163,196608 -k1,18392:6434165,45510161:-26345472 -) -(1,18392:6434165,45510161:26345472,2700555,196608 -[1,18392:6630773,45510161:25952256,2503947,0 -(1,18382:6630773,43410440:25952256,404226,76021 -(1,18381:6630773,43410440:0,0,0 -g1,18381:6630773,43410440 -g1,18381:6630773,43410440 -g1,18381:6303093,43410440 -(1,18381:6303093,43410440:0,0,0 -) -g1,18381:6630773,43410440 -) -k1,18382:6630773,43410440:0 -h1,18382:11689104,43410440:0,0,0 -k1,18382:32583028,43410440:20893924 -g1,18382:32583028,43410440 -) -(1,18383:6630773,44076618:25952256,410518,101187 -h1,18383:6630773,44076618:0,0,0 -g1,18383:9159939,44076618 -g1,18383:10108377,44076618 -g1,18383:14218272,44076618 -g1,18383:14850564,44076618 -g1,18383:16747439,44076618 -g1,18383:17379731,44076618 -g1,18383:18012023,44076618 -h1,18383:22438062,44076618:0,0,0 -k1,18383:32583029,44076618:10144967 -g1,18383:32583029,44076618 -) -(1,18384:6630773,44742796:25952256,404226,101187 -h1,18384:6630773,44742796:0,0,0 -k1,18384:6630773,44742796:0 -h1,18384:12637541,44742796:0,0,0 -k1,18384:32583029,44742796:19945488 -g1,18384:32583029,44742796 -) -(1,18385:6630773,45408974:25952256,410518,101187 -h1,18385:6630773,45408974:0,0,0 -g1,18385:6946919,45408974 -g1,18385:7263065,45408974 -g1,18385:7579211,45408974 -g1,18385:7895357,45408974 -g1,18385:8211503,45408974 -g1,18385:8527649,45408974 -g1,18385:8843795,45408974 -g1,18385:9159941,45408974 -g1,18385:9476087,45408974 -g1,18385:9792233,45408974 -g1,18385:10108379,45408974 -g1,18385:11689108,45408974 -g1,18385:12321400,45408974 -k1,18385:12321400,45408974:0 -h1,18385:19592750,45408974:0,0,0 -k1,18385:32583029,45408974:12990279 -g1,18385:32583029,45408974 -) -] -) -g1,18392:32583029,45510161 -g1,18392:6630773,45510161 -g1,18392:6630773,45510161 -g1,18392:32583029,45510161 -g1,18392:32583029,45510161 -) -] -(1,18392:32583029,45706769:0,0,0 -g1,18392:32583029,45706769 -) -) -] -(1,18392:6630773,47279633:25952256,0,0 -h1,18392:6630773,47279633:25952256,0,0 -) -] -(1,18392:4262630,4025873:0,0,0 -[1,18392:-473656,4025873:0,0,0 -(1,18392:-473656,-710413:0,0,0 -(1,18392:-473656,-710413:0,0,0 -g1,18392:-473656,-710413 -) -g1,18392:-473656,-710413 -) -] -) -] -!30917 -}360 -Input:2949:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2950:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2951:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!288 -{361 -[1,18437:4262630,47279633:28320399,43253760,0 -(1,18437:4262630,4025873:0,0,0 -[1,18437:-473656,4025873:0,0,0 -(1,18437:-473656,-710413:0,0,0 -(1,18437:-473656,-644877:0,0,0 -k1,18437:-473656,-644877:-65536 -) -(1,18437:-473656,4736287:0,0,0 -k1,18437:-473656,4736287:5209943 -) -g1,18437:-473656,-710413 -) -] -) -[1,18437:6630773,47279633:25952256,43253760,0 -[1,18437:6630773,4812305:25952256,786432,0 -(1,18437:6630773,4812305:25952256,505283,126483 -(1,18437:6630773,4812305:25952256,505283,126483 -g1,18437:3078558,4812305 -[1,18437:3078558,4812305:0,0,0 -(1,18437:3078558,2439708:0,1703936,0 -k1,18437:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,18437:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,18437:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 -) -] -) -) -) -] -[1,18437:3078558,4812305:0,0,0 -(1,18437:3078558,2439708:0,1703936,0 -g1,18437:29030814,2439708 -g1,18437:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,18437:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 -) -] -) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,18437:37855564,2439708:1179648,16384,0 -) -) -k1,18437:3078556,2439708:-34777008 -) -] -[1,18437:3078558,4812305:0,0,0 -(1,18437:3078558,49800853:0,16384,2228224 -k1,18437:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,18437:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,18437:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 -) -] -) -) -) -] -[1,18437:3078558,4812305:0,0,0 -(1,18437:3078558,49800853:0,16384,2228224 -g1,18437:29030814,49800853 -g1,18437:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,18437:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 -) -] -) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,18437:37855564,49800853:1179648,16384,0 -) -) -k1,18437:3078556,49800853:-34777008 -) -] -g1,18437:6630773,4812305 -k1,18437:25146660,4812305:17320510 -g1,18437:26880087,4812305 -g1,18437:29193507,4812305 -g1,18437:30603186,4812305 -) -) -] -[1,18437:6630773,45706769:25952256,40108032,0 -(1,18437:6630773,45706769:25952256,40108032,0 -(1,18437:6630773,45706769:0,0,0 -g1,18437:6630773,45706769 -) -[1,18437:6630773,45706769:25952256,40108032,0 -v1,18392:6630773,6254097:0,393216,0 -(1,18392:6630773,9233906:25952256,3373025,196608 -g1,18392:6630773,9233906 -g1,18392:6630773,9233906 -g1,18392:6434165,9233906 -(1,18392:6434165,9233906:0,3373025,196608 -r1,18437:32779637,9233906:26345472,3569633,196608 -k1,18392:6434165,9233906:-26345472 -) -(1,18392:6434165,9233906:26345472,3373025,196608 -[1,18392:6630773,9233906:25952256,3176417,0 -(1,18386:6630773,6468007:25952256,410518,101187 -h1,18386:6630773,6468007:0,0,0 -g1,18386:6946919,6468007 -g1,18386:7263065,6468007 -g1,18386:7579211,6468007 -g1,18386:7895357,6468007 -g1,18386:8211503,6468007 -g1,18386:8527649,6468007 -g1,18386:8843795,6468007 -g1,18386:9159941,6468007 -g1,18386:9476087,6468007 -g1,18386:9792233,6468007 -g1,18386:10108379,6468007 -g1,18386:13269836,6468007 -g1,18386:13902128,6468007 -g1,18386:16115148,6468007 -h1,18386:18012022,6468007:0,0,0 -k1,18386:32583029,6468007:14571007 -g1,18386:32583029,6468007 -) -(1,18387:6630773,7134185:25952256,404226,101187 -h1,18387:6630773,7134185:0,0,0 -k1,18387:6630773,7134185:0 -h1,18387:12637541,7134185:0,0,0 -k1,18387:32583029,7134185:19945488 -g1,18387:32583029,7134185 -) -(1,18388:6630773,7800363:25952256,410518,101187 -h1,18388:6630773,7800363:0,0,0 -g1,18388:6946919,7800363 -g1,18388:7263065,7800363 -g1,18388:7579211,7800363 -g1,18388:7895357,7800363 -g1,18388:8211503,7800363 -g1,18388:8527649,7800363 -g1,18388:8843795,7800363 -g1,18388:9159941,7800363 -g1,18388:9476087,7800363 -g1,18388:9792233,7800363 -g1,18388:10108379,7800363 -g1,18388:11689108,7800363 -g1,18388:12321400,7800363 -k1,18388:12321400,7800363:0 -h1,18388:19592750,7800363:0,0,0 -k1,18388:32583029,7800363:12990279 -g1,18388:32583029,7800363 -) -(1,18389:6630773,8466541:25952256,404226,101187 -h1,18389:6630773,8466541:0,0,0 -g1,18389:6946919,8466541 -g1,18389:7263065,8466541 -g1,18389:7579211,8466541 -g1,18389:7895357,8466541 -g1,18389:8211503,8466541 -g1,18389:8527649,8466541 -g1,18389:8843795,8466541 -g1,18389:9159941,8466541 -g1,18389:9476087,8466541 -g1,18389:9792233,8466541 -g1,18389:10108379,8466541 -g1,18389:13269836,8466541 -g1,18389:13902128,8466541 -g1,18389:16431294,8466541 -k1,18389:16431294,8466541:0 -h1,18389:18328168,8466541:0,0,0 -k1,18389:32583029,8466541:14254861 -g1,18389:32583029,8466541 -) -(1,18390:6630773,9132719:25952256,404226,101187 -h1,18390:6630773,9132719:0,0,0 -g1,18390:6946919,9132719 -g1,18390:7263065,9132719 -g1,18390:7579211,9132719 -g1,18390:7895357,9132719 -g1,18390:8211503,9132719 -g1,18390:8527649,9132719 -g1,18390:8843795,9132719 -g1,18390:9159941,9132719 -g1,18390:9476087,9132719 -g1,18390:9792233,9132719 -g1,18390:10108379,9132719 -g1,18390:12321399,9132719 -g1,18390:12953691,9132719 -h1,18390:14534420,9132719:0,0,0 -k1,18390:32583028,9132719:18048608 -g1,18390:32583028,9132719 -) -] -) -g1,18392:32583029,9233906 -g1,18392:6630773,9233906 -g1,18392:6630773,9233906 -g1,18392:32583029,9233906 -g1,18392:32583029,9233906 -) -h1,18392:6630773,9430514:0,0,0 -(1,18397:6630773,10780195:25952256,505283,134348 -h1,18395:6630773,10780195:983040,0,0 -k1,18395:9629522,10780195:232474 -k1,18395:12207530,10780195:232474 -k1,18395:13056042,10780195:232474 -k1,18395:15084202,10780195:232474 -k1,18395:16185028,10780195:232474 -k1,18395:17395955,10780195:232474 -k1,18395:17984289,10780195:232474 -k1,18395:21395259,10780195:232474 -k1,18395:24989730,10780195:232474 -k1,18395:26394643,10780195:232474 -k1,18395:30424273,10780195:232474 -k1,18395:32583029,10780195:0 -) -(1,18397:6630773,11621683:25952256,505283,134348 -g1,18395:8565395,11621683 -g1,18395:9783709,11621683 -g1,18395:13385567,11621683 -g1,18395:14453148,11621683 -g1,18395:16857664,11621683 -g1,18395:19615419,11621683 -(1,18395:19615419,11621683:0,452978,115847 -r1,18437:22787379,11621683:3171960,568825,115847 -k1,18395:19615419,11621683:-3171960 -) -(1,18395:19615419,11621683:3171960,452978,115847 -k1,18395:19615419,11621683:3277 -h1,18395:22784102,11621683:0,411205,112570 -) -g1,18395:22986608,11621683 -g1,18395:23801875,11621683 -g1,18395:25020189,11621683 -g1,18395:26715605,11621683 -g1,18395:28885502,11621683 -k1,18397:32583029,11621683:1668532 -g1,18397:32583029,11621683 -) -(1,18399:6630773,27762809:25952256,15433050,0 -k1,18399:9874805,27762809:3244032 -(1,18397:9874805,27762809:0,0,0 -g1,18397:9874805,27762809 -g1,18397:9874805,27762809 -g1,18397:9547125,27762809 -(1,18397:9547125,27762809:0,0,0 -) -g1,18397:9874805,27762809 -) -(1,18398:9874805,27762809:19464192,15433050,0 -) -g1,18399:29338997,27762809 -k1,18399:32583029,27762809:3244032 -) -v1,18402:6630773,29112490:0,393216,0 -(1,18403:6630773,32232145:25952256,3512871,616038 -g1,18403:6630773,32232145 -(1,18403:6630773,32232145:25952256,3512871,616038 -(1,18403:6630773,32848183:25952256,4128909,0 -[1,18403:6630773,32848183:25952256,4128909,0 -(1,18403:6630773,32821969:25952256,4076481,0 -r1,18437:6656987,32821969:26214,4076481,0 -[1,18403:6656987,32821969:25899828,4076481,0 -(1,18403:6656987,32232145:25899828,2896833,0 -[1,18403:7246811,32232145:24720180,2896833,0 -(1,18403:7246811,30422686:24720180,1087374,134348 -k1,18402:8621673,30422686:165159 -k1,18402:9264589,30422686:165159 -k1,18402:10600221,30422686:165159 -k1,18402:12240595,30422686:165159 -k1,18402:14097894,30422686:165159 -k1,18402:17556237,30422686:165159 -k1,18402:19034738,30422686:165159 -k1,18402:22157537,30422686:165159 -k1,18402:24504390,30422686:165159 -k1,18402:26308605,30422686:165160 -k1,18402:27741230,30422686:165159 -k1,18402:28321198,30422686:165125 -k1,18402:29137785,30422686:165159 -k1,18402:30281397,30422686:165159 -k1,18402:30802416,30422686:165159 -k1,18402:31966991,30422686:0 -) -(1,18403:7246811,31264174:24720180,513147,134348 -k1,18402:8371784,31264174:177322 -k1,18402:9879486,31264174:177321 -k1,18402:11075893,31264174:177322 -k1,18402:12491190,31264174:177322 -k1,18402:13284549,31264174:177321 -k1,18402:15347342,31264174:177322 -k1,18402:16914026,31264174:177321 -k1,18402:17622845,31264174:177322 -k1,18402:20987183,31264174:177322 -k1,18402:21780542,31264174:177321 -k1,18402:22976949,31264174:177322 -k1,18402:26777757,31264174:177322 -k1,18402:29064682,31264174:177321 -k1,18402:30572385,31264174:177322 -k1,18402:31966991,31264174:0 -) -(1,18403:7246811,32105662:24720180,513147,126483 -g1,18402:8128925,32105662 -g1,18402:10811969,32105662 -g1,18402:11469295,32105662 -g1,18402:12200021,32105662 -g1,18402:13050678,32105662 -g1,18402:15431601,32105662 -g1,18402:17269885,32105662 -g1,18402:18736580,32105662 -k1,18403:31966991,32105662:12641898 -g1,18403:31966991,32105662 -) -] -) -] -r1,18437:32583029,32821969:26214,4076481,0 -) -] -) -) -g1,18403:32583029,32232145 -) -h1,18403:6630773,32848183:0,0,0 -(1,18406:6630773,35447635:25952256,555811,12975 -(1,18406:6630773,35447635:2450326,534184,12975 -g1,18406:6630773,35447635 -g1,18406:9081099,35447635 -) -k1,18406:32583029,35447635:19891684 -g1,18406:32583029,35447635 -) -(1,18410:6630773,36682339:25952256,513147,134348 -k1,18409:9417786,36682339:252080 -k1,18409:12778185,36682339:252027 -k1,18409:15790641,36682339:252080 -k1,18409:19068518,36682339:252080 -k1,18409:20268249,36682339:252080 -k1,18409:22922879,36682339:252080 -k1,18409:24564322,36682339:252080 -k1,18409:26627817,36682339:252080 -k1,18409:27495935,36682339:252080 -k1,18409:29061357,36682339:252080 -k1,18409:30597943,36682339:252080 -k1,18409:32583029,36682339:0 -) -(1,18410:6630773,37523827:25952256,505283,126483 -k1,18409:7818244,37523827:168386 -k1,18409:9651244,37523827:168386 -k1,18409:13315976,37523827:168386 -k1,18409:16565864,37523827:168386 -k1,18409:19524118,37523827:168386 -(1,18409:19524118,37523827:0,452978,115847 -r1,18437:23047790,37523827:3523672,568825,115847 -k1,18409:19524118,37523827:-3523672 -) -(1,18409:19524118,37523827:3523672,452978,115847 -k1,18409:19524118,37523827:3277 -h1,18409:23044513,37523827:0,411205,112570 -) -k1,18409:23216175,37523827:168385 -k1,18409:24485566,37523827:168386 -k1,18409:25009812,37523827:168386 -k1,18409:27380208,37523827:168386 -k1,18409:28620763,37523827:168386 -k1,18409:31202185,37523827:168386 -k1,18409:32583029,37523827:0 -) -(1,18410:6630773,38365315:25952256,513147,126483 -k1,18409:9628640,38365315:187683 -k1,18409:10467751,38365315:187683 -k1,18409:11939940,38365315:187683 -k1,18409:12794780,38365315:187684 -(1,18409:12794780,38365315:0,452978,115847 -r1,18437:17021876,38365315:4227096,568825,115847 -k1,18409:12794780,38365315:-4227096 -) -(1,18409:12794780,38365315:4227096,452978,115847 -k1,18409:12794780,38365315:3277 -h1,18409:17018599,38365315:0,411205,112570 -) -k1,18409:17209559,38365315:187683 -k1,18409:18588687,38365315:187683 -k1,18409:20518972,38365315:187683 -k1,18409:21863365,38365315:187683 -k1,18409:25344232,38365315:187683 -k1,18409:26144678,38365315:187684 -k1,18409:26688221,38365315:187683 -k1,18409:28474982,38365315:187683 -k1,18409:30056616,38365315:187683 -k1,18409:32583029,38365315:0 -) -(1,18410:6630773,39206803:25952256,513147,134348 -g1,18409:8205603,39206803 -g1,18409:9352483,39206803 -g1,18409:12307501,39206803 -g1,18409:13578899,39206803 -g1,18409:15485996,39206803 -g1,18409:16881912,39206803 -g1,18409:18761484,39206803 -g1,18409:21739440,39206803 -g1,18409:22470166,39206803 -g1,18409:23025255,39206803 -g1,18409:24613847,39206803 -k1,18410:32583029,39206803:5919216 -g1,18410:32583029,39206803 -) -v1,18412:6630773,40381174:0,393216,0 -(1,18416:6630773,40677396:25952256,689438,196608 -g1,18416:6630773,40677396 -g1,18416:6630773,40677396 -g1,18416:6434165,40677396 -(1,18416:6434165,40677396:0,689438,196608 -r1,18437:32779637,40677396:26345472,886046,196608 -k1,18416:6434165,40677396:-26345472 -) -(1,18416:6434165,40677396:26345472,689438,196608 -[1,18416:6630773,40677396:25952256,492830,0 -(1,18414:6630773,40595084:25952256,410518,82312 -(1,18413:6630773,40595084:0,0,0 -g1,18413:6630773,40595084 -g1,18413:6630773,40595084 -g1,18413:6303093,40595084 -(1,18413:6303093,40595084:0,0,0 -) -g1,18413:6630773,40595084 -) -g1,18414:8843793,40595084 -g1,18414:9792231,40595084 -g1,18414:19276602,40595084 -g1,18414:21173476,40595084 -g1,18414:21805768,40595084 -h1,18414:22438060,40595084:0,0,0 -k1,18414:32583029,40595084:10144969 -g1,18414:32583029,40595084 -) -] -) -g1,18416:32583029,40677396 -g1,18416:6630773,40677396 -g1,18416:6630773,40677396 -g1,18416:32583029,40677396 -g1,18416:32583029,40677396 -) -h1,18416:6630773,40874004:0,0,0 -v1,18420:6630773,42556567:0,393216,0 -(1,18437:6630773,45510161:25952256,3346810,196608 -g1,18437:6630773,45510161 -g1,18437:6630773,45510161 -g1,18437:6434165,45510161 -(1,18437:6434165,45510161:0,3346810,196608 -r1,18437:32779637,45510161:26345472,3543418,196608 -k1,18437:6434165,45510161:-26345472 -) -(1,18437:6434165,45510161:26345472,3346810,196608 -[1,18437:6630773,45510161:25952256,3150202,0 -(1,18422:6630773,42770477:25952256,410518,6290 -(1,18421:6630773,42770477:0,0,0 -g1,18421:6630773,42770477 -g1,18421:6630773,42770477 -g1,18421:6303093,42770477 -(1,18421:6303093,42770477:0,0,0 -) -g1,18421:6630773,42770477 -) -h1,18422:8527647,42770477:0,0,0 -k1,18422:32583029,42770477:24055382 -g1,18422:32583029,42770477 -) -(1,18436:6630773,43502191:25952256,404226,107478 -(1,18424:6630773,43502191:0,0,0 -g1,18424:6630773,43502191 -g1,18424:6630773,43502191 -g1,18424:6303093,43502191 -(1,18424:6303093,43502191:0,0,0 -) -g1,18424:6630773,43502191 -) -g1,18436:7579210,43502191 -g1,18436:7895356,43502191 -g1,18436:8211502,43502191 -g1,18436:8527648,43502191 -g1,18436:10740668,43502191 -g1,18436:12637542,43502191 -h1,18436:16115144,43502191:0,0,0 -k1,18436:32583029,43502191:16467885 -g1,18436:32583029,43502191 -) -(1,18436:6630773,44168369:25952256,388497,9436 -h1,18436:6630773,44168369:0,0,0 -g1,18436:7579210,44168369 -g1,18436:8211502,44168369 -g1,18436:8527648,44168369 -g1,18436:8843794,44168369 -g1,18436:9159940,44168369 -g1,18436:9476086,44168369 -g1,18436:9792232,44168369 -g1,18436:10108378,44168369 -g1,18436:10740670,44168369 -g1,18436:11056816,44168369 -g1,18436:11372962,44168369 -g1,18436:11689108,44168369 -g1,18436:12005254,44168369 -g1,18436:12637546,44168369 -g1,18436:12953692,44168369 -g1,18436:13269838,44168369 -g1,18436:13585984,44168369 -g1,18436:13902130,44168369 -g1,18436:14218276,44168369 -g1,18436:14534422,44168369 -g1,18436:14850568,44168369 -g1,18436:15166714,44168369 -h1,18436:16115151,44168369:0,0,0 -k1,18436:32583029,44168369:16467878 -g1,18436:32583029,44168369 -) -(1,18436:6630773,44834547:25952256,388497,9436 -h1,18436:6630773,44834547:0,0,0 -g1,18436:7579210,44834547 -g1,18436:8211502,44834547 -g1,18436:8527648,44834547 -g1,18436:8843794,44834547 -g1,18436:9159940,44834547 -g1,18436:9476086,44834547 -g1,18436:9792232,44834547 -g1,18436:10108378,44834547 -g1,18436:10740670,44834547 -g1,18436:11056816,44834547 -g1,18436:11372962,44834547 -g1,18436:11689108,44834547 -g1,18436:12005254,44834547 -g1,18436:12637546,44834547 -g1,18436:12953692,44834547 -g1,18436:13269838,44834547 -g1,18436:13585984,44834547 -g1,18436:13902130,44834547 -g1,18436:14218276,44834547 -g1,18436:14534422,44834547 -g1,18436:14850568,44834547 -g1,18436:15166714,44834547 -h1,18436:16115151,44834547:0,0,0 -k1,18436:32583029,44834547:16467878 -g1,18436:32583029,44834547 -) -(1,18436:6630773,45500725:25952256,388497,9436 -h1,18436:6630773,45500725:0,0,0 -g1,18436:7579210,45500725 -g1,18436:8211502,45500725 -g1,18436:8527648,45500725 -g1,18436:8843794,45500725 -g1,18436:9159940,45500725 -g1,18436:9476086,45500725 -g1,18436:9792232,45500725 -g1,18436:10108378,45500725 -g1,18436:10740670,45500725 -g1,18436:11056816,45500725 -g1,18436:11372962,45500725 -g1,18436:11689108,45500725 -g1,18436:12005254,45500725 -g1,18436:12637546,45500725 -g1,18436:12953692,45500725 -g1,18436:13269838,45500725 -g1,18436:13585984,45500725 -g1,18436:13902130,45500725 -g1,18436:14218276,45500725 -g1,18436:14534422,45500725 -g1,18436:14850568,45500725 -g1,18436:15166714,45500725 -h1,18436:16115151,45500725:0,0,0 -k1,18436:32583029,45500725:16467878 -g1,18436:32583029,45500725 -) -] -) -g1,18437:32583029,45510161 -g1,18437:6630773,45510161 -g1,18437:6630773,45510161 -g1,18437:32583029,45510161 -g1,18437:32583029,45510161 -) -] -(1,18437:32583029,45706769:0,0,0 -g1,18437:32583029,45706769 -) -) -] -(1,18437:6630773,47279633:25952256,0,0 -h1,18437:6630773,47279633:25952256,0,0 -) -] -(1,18437:4262630,4025873:0,0,0 -[1,18437:-473656,4025873:0,0,0 -(1,18437:-473656,-710413:0,0,0 -(1,18437:-473656,-710413:0,0,0 -g1,18437:-473656,-710413 -) -g1,18437:-473656,-710413 -) -] -) -] -!17157 -}361 -Input:2952:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2953:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2954:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2955:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!380 -{362 -[1,18496:4262630,47279633:28320399,43253760,0 -(1,18496:4262630,4025873:0,0,0 -[1,18496:-473656,4025873:0,0,0 -(1,18496:-473656,-710413:0,0,0 -(1,18496:-473656,-644877:0,0,0 -k1,18496:-473656,-644877:-65536 -) -(1,18496:-473656,4736287:0,0,0 -k1,18496:-473656,4736287:5209943 -) -g1,18496:-473656,-710413 -) -] -) -[1,18496:6630773,47279633:25952256,43253760,0 -[1,18496:6630773,4812305:25952256,786432,0 -(1,18496:6630773,4812305:25952256,513147,126483 -(1,18496:6630773,4812305:25952256,513147,126483 -g1,18496:3078558,4812305 -[1,18496:3078558,4812305:0,0,0 -(1,18496:3078558,2439708:0,1703936,0 -k1,18496:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,18496:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,18496:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 -) -] -) -) -) -] -[1,18496:3078558,4812305:0,0,0 -(1,18496:3078558,2439708:0,1703936,0 -g1,18496:29030814,2439708 -g1,18496:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,18496:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 -) -] -) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,18496:37855564,2439708:1179648,16384,0 -) -) -k1,18496:3078556,2439708:-34777008 -) -] -[1,18496:3078558,4812305:0,0,0 -(1,18496:3078558,49800853:0,16384,2228224 -k1,18496:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,18496:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,18496:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 -) -] -) -) -) -] -[1,18496:3078558,4812305:0,0,0 -(1,18496:3078558,49800853:0,16384,2228224 -g1,18496:29030814,49800853 -g1,18496:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,18496:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 -) -] -) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,18496:37855564,49800853:1179648,16384,0 -) -) -k1,18496:3078556,49800853:-34777008 -) -] -g1,18496:6630773,4812305 -g1,18496:6630773,4812305 -g1,18496:9860387,4812305 -g1,18496:12770185,4812305 -k1,18496:31387653,4812305:18617468 -) -) -] -[1,18496:6630773,45706769:25952256,40108032,0 -(1,18496:6630773,45706769:25952256,40108032,0 -(1,18496:6630773,45706769:0,0,0 -g1,18496:6630773,45706769 -) -[1,18496:6630773,45706769:25952256,40108032,0 -v1,18437:6630773,6254097:0,393216,0 -(1,18437:6630773,10452490:25952256,4591609,196608 -g1,18437:6630773,10452490 -g1,18437:6630773,10452490 -g1,18437:6434165,10452490 -(1,18437:6434165,10452490:0,4591609,196608 -r1,18496:32779637,10452490:26345472,4788217,196608 -k1,18437:6434165,10452490:-26345472 -) -(1,18437:6434165,10452490:26345472,4591609,196608 -[1,18437:6630773,10452490:25952256,4395001,0 -(1,18436:6630773,6445986:25952256,388497,9436 -h1,18436:6630773,6445986:0,0,0 -g1,18436:7579210,6445986 -g1,18436:8211502,6445986 -g1,18436:8527648,6445986 -g1,18436:8843794,6445986 -g1,18436:9159940,6445986 -g1,18436:9476086,6445986 -g1,18436:9792232,6445986 -g1,18436:10108378,6445986 -g1,18436:10740670,6445986 -g1,18436:11056816,6445986 -g1,18436:11372962,6445986 -g1,18436:11689108,6445986 -g1,18436:12005254,6445986 -g1,18436:12637546,6445986 -g1,18436:12953692,6445986 -g1,18436:13269838,6445986 -g1,18436:13585984,6445986 -g1,18436:13902130,6445986 -g1,18436:14218276,6445986 -g1,18436:14534422,6445986 -g1,18436:14850568,6445986 -g1,18436:15166714,6445986 -h1,18436:16115151,6445986:0,0,0 -k1,18436:32583029,6445986:16467878 -g1,18436:32583029,6445986 -) -(1,18436:6630773,7112164:25952256,388497,9436 -h1,18436:6630773,7112164:0,0,0 -g1,18436:7579210,7112164 -g1,18436:8211502,7112164 -g1,18436:8527648,7112164 -g1,18436:8843794,7112164 -g1,18436:9159940,7112164 -g1,18436:9476086,7112164 -g1,18436:9792232,7112164 -g1,18436:10108378,7112164 -g1,18436:10740670,7112164 -g1,18436:11056816,7112164 -g1,18436:11372962,7112164 -g1,18436:11689108,7112164 -g1,18436:12005254,7112164 -g1,18436:12637546,7112164 -g1,18436:12953692,7112164 -g1,18436:13269838,7112164 -g1,18436:13585984,7112164 -g1,18436:13902130,7112164 -g1,18436:14218276,7112164 -g1,18436:14534422,7112164 -g1,18436:14850568,7112164 -g1,18436:15166714,7112164 -h1,18436:16115151,7112164:0,0,0 -k1,18436:32583029,7112164:16467878 -g1,18436:32583029,7112164 -) -(1,18436:6630773,7778342:25952256,404226,9436 -h1,18436:6630773,7778342:0,0,0 -g1,18436:7579210,7778342 -g1,18436:8211502,7778342 -g1,18436:8527648,7778342 -g1,18436:8843794,7778342 -g1,18436:9159940,7778342 -g1,18436:9476086,7778342 -g1,18436:9792232,7778342 -g1,18436:10108378,7778342 -g1,18436:10740670,7778342 -g1,18436:11056816,7778342 -g1,18436:11372962,7778342 -g1,18436:11689108,7778342 -g1,18436:12005254,7778342 -g1,18436:12637546,7778342 -g1,18436:12953692,7778342 -g1,18436:13269838,7778342 -g1,18436:13585984,7778342 -g1,18436:13902130,7778342 -g1,18436:14218276,7778342 -g1,18436:14534422,7778342 -g1,18436:14850568,7778342 -g1,18436:15166714,7778342 -h1,18436:16115151,7778342:0,0,0 -k1,18436:32583029,7778342:16467878 -g1,18436:32583029,7778342 -) -(1,18436:6630773,8444520:25952256,404226,9436 -h1,18436:6630773,8444520:0,0,0 -g1,18436:7579210,8444520 -g1,18436:8211502,8444520 -g1,18436:8527648,8444520 -g1,18436:8843794,8444520 -g1,18436:9159940,8444520 -g1,18436:9476086,8444520 -g1,18436:9792232,8444520 -g1,18436:10108378,8444520 -g1,18436:10740670,8444520 -g1,18436:11056816,8444520 -g1,18436:11372962,8444520 -g1,18436:11689108,8444520 -g1,18436:12005254,8444520 -g1,18436:12637546,8444520 -g1,18436:12953692,8444520 -g1,18436:13269838,8444520 -g1,18436:13585984,8444520 -g1,18436:13902130,8444520 -g1,18436:14218276,8444520 -g1,18436:14534422,8444520 -g1,18436:14850568,8444520 -g1,18436:15166714,8444520 -h1,18436:16115151,8444520:0,0,0 -k1,18436:32583029,8444520:16467878 -g1,18436:32583029,8444520 -) -(1,18436:6630773,9110698:25952256,404226,9436 -h1,18436:6630773,9110698:0,0,0 -g1,18436:7579210,9110698 -g1,18436:8211502,9110698 -g1,18436:8527648,9110698 -g1,18436:8843794,9110698 -g1,18436:9159940,9110698 -g1,18436:9476086,9110698 -g1,18436:9792232,9110698 -g1,18436:10108378,9110698 -g1,18436:10740670,9110698 -g1,18436:11056816,9110698 -g1,18436:11372962,9110698 -g1,18436:11689108,9110698 -g1,18436:12005254,9110698 -g1,18436:12637546,9110698 -g1,18436:12953692,9110698 -g1,18436:13269838,9110698 -g1,18436:13585984,9110698 -g1,18436:13902130,9110698 -g1,18436:14218276,9110698 -g1,18436:14534422,9110698 -g1,18436:14850568,9110698 -g1,18436:15166714,9110698 -h1,18436:16115151,9110698:0,0,0 -k1,18436:32583029,9110698:16467878 -g1,18436:32583029,9110698 -) -(1,18436:6630773,9776876:25952256,404226,9436 -h1,18436:6630773,9776876:0,0,0 -g1,18436:7579210,9776876 -g1,18436:8211502,9776876 -g1,18436:8527648,9776876 -g1,18436:8843794,9776876 -g1,18436:9159940,9776876 -g1,18436:9476086,9776876 -g1,18436:9792232,9776876 -g1,18436:10108378,9776876 -g1,18436:10740670,9776876 -g1,18436:11056816,9776876 -g1,18436:11372962,9776876 -g1,18436:11689108,9776876 -g1,18436:12005254,9776876 -g1,18436:12637546,9776876 -g1,18436:12953692,9776876 -g1,18436:13269838,9776876 -g1,18436:13585984,9776876 -g1,18436:13902130,9776876 -g1,18436:14218276,9776876 -g1,18436:14534422,9776876 -g1,18436:14850568,9776876 -g1,18436:15166714,9776876 -h1,18436:16115151,9776876:0,0,0 -k1,18436:32583029,9776876:16467878 -g1,18436:32583029,9776876 -) -(1,18436:6630773,10443054:25952256,404226,9436 -h1,18436:6630773,10443054:0,0,0 -g1,18436:7579210,10443054 -g1,18436:8527647,10443054 -g1,18436:8843793,10443054 -g1,18436:9159939,10443054 -g1,18436:9476085,10443054 -g1,18436:9792231,10443054 -g1,18436:10740668,10443054 -g1,18436:11056814,10443054 -g1,18436:11372960,10443054 -g1,18436:11689106,10443054 -g1,18436:12005252,10443054 -g1,18436:12637544,10443054 -g1,18436:12953690,10443054 -g1,18436:13269836,10443054 -g1,18436:13585982,10443054 -g1,18436:13902128,10443054 -g1,18436:14218274,10443054 -g1,18436:14534420,10443054 -g1,18436:14850566,10443054 -g1,18436:15166712,10443054 -h1,18436:16115149,10443054:0,0,0 -k1,18436:32583029,10443054:16467880 -g1,18436:32583029,10443054 -) -] -) -g1,18437:32583029,10452490 -g1,18437:6630773,10452490 -g1,18437:6630773,10452490 -g1,18437:32583029,10452490 -g1,18437:32583029,10452490 -) -h1,18437:6630773,10649098:0,0,0 -(1,18443:6630773,12014874:25952256,513147,115847 -h1,18440:6630773,12014874:983040,0,0 -g1,18440:10602910,12014874 -(1,18440:10602910,12014874:0,452978,115847 -r1,18496:14478294,12014874:3875384,568825,115847 -k1,18440:10602910,12014874:-3875384 -) -(1,18440:10602910,12014874:3875384,452978,115847 -k1,18440:10602910,12014874:3277 -h1,18440:14475017,12014874:0,411205,112570 -) -g1,18440:14677523,12014874 -g1,18440:16821861,12014874 -g1,18440:17376950,12014874 -g1,18440:18965542,12014874 -g1,18440:21041067,12014874 -g1,18440:22507762,12014874 -g1,18440:23477694,12014874 -g1,18440:25044659,12014874 -g1,18440:26400598,12014874 -g1,18441:26400598,12014874 -k1,18443:32583029,12014874:6182431 -g1,18443:32583029,12014874 -) -(1,18444:6630773,14822442:25952256,32768,229376 -(1,18444:6630773,14822442:0,32768,229376 -(1,18444:6630773,14822442:5505024,32768,229376 -r1,18496:12135797,14822442:5505024,262144,229376 -) -k1,18444:6630773,14822442:-5505024 -) -(1,18444:6630773,14822442:25952256,32768,0 -r1,18496:32583029,14822442:25952256,32768,0 -) -) -(1,18444:6630773,16426770:25952256,615776,14155 -(1,18444:6630773,16426770:2464678,582746,14155 -g1,18444:6630773,16426770 -g1,18444:9095451,16426770 -) -g1,18444:13174674,16426770 -k1,18444:32583029,16426770:15943335 -g1,18444:32583029,16426770 -) -(1,18448:6630773,17661474:25952256,513147,134348 -k1,18447:8720913,17661474:257753 -k1,18447:9970226,17661474:257753 -k1,18447:11400417,17661474:257752 -k1,18447:14420513,17661474:257753 -k1,18447:19495818,17661474:257753 -k1,18447:22664025,17661474:257753 -k1,18447:23869429,17661474:257753 -k1,18447:27299124,17661474:257752 -k1,18447:28946240,17661474:257753 -k1,18447:31015408,17661474:257753 -k1,18447:32583029,17661474:0 -) -(1,18448:6630773,18502962:25952256,505283,134348 -k1,18447:8592444,18502962:259701 -k1,18447:11936269,18502962:259701 -k1,18447:15268298,18502962:259701 -k1,18447:17021565,18502962:259701 -k1,18447:17967428,18502962:259701 -k1,18447:19598799,18502962:259702 -k1,18447:22936071,18502962:259701 -k1,18447:24810579,18502962:259701 -k1,18447:26181771,18502962:259701 -k1,18447:27638159,18502962:259701 -k1,18447:30711976,18502962:259701 -k1,18448:32583029,18502962:0 -) -(1,18448:6630773,19344450:25952256,513147,134348 -k1,18447:8621663,19344450:205034 -k1,18447:9358194,19344450:205034 -k1,18447:12143381,19344450:205035 -k1,18447:14975753,19344450:205034 -k1,18447:17939197,19344450:205034 -k1,18447:18760269,19344450:205034 -k1,18447:20399232,19344450:205035 -k1,18447:21192779,19344450:205034 -k1,18447:22589258,19344450:205034 -k1,18447:25374444,19344450:205034 -k1,18447:27805735,19344450:205034 -k1,18447:28542267,19344450:205035 -k1,18447:29103161,19344450:205034 -k1,18447:31227089,19344450:205034 -k1,18448:32583029,19344450:0 -) -(1,18448:6630773,20185938:25952256,513147,126483 -k1,18447:9462331,20185938:244852 -k1,18447:12953182,20185938:244853 -k1,18447:13825869,20185938:244852 -k1,18447:15089807,20185938:244853 -k1,18447:16701740,20185938:244852 -k1,18447:17605885,20185938:244853 -k1,18447:19164079,20185938:244852 -k1,18447:21220347,20185938:244853 -k1,18447:22859150,20185938:244852 -k1,18447:24124399,20185938:244853 -k1,18447:27033290,20185938:244852 -k1,18447:27937435,20185938:244853 -k1,18447:31266411,20185938:244852 -k1,18448:32583029,20185938:0 -) -(1,18448:6630773,21027426:25952256,513147,134348 -g1,18447:8972374,21027426 -g1,18447:12197400,21027426 -g1,18447:13964250,21027426 -g1,18447:16790817,21027426 -g1,18447:18429872,21027426 -g1,18447:19280529,21027426 -g1,18447:20227524,21027426 -g1,18447:22076950,21027426 -g1,18447:24361535,21027426 -g1,18447:26003211,21027426 -g1,18447:27946353,21027426 -g1,18447:29713203,21027426 -k1,18448:32583029,21027426:469899 -g1,18448:32583029,21027426 -) -(1,18449:6630773,23118686:25952256,564462,147783 -(1,18449:6630773,23118686:2899444,534184,12975 -g1,18449:6630773,23118686 -g1,18449:9530217,23118686 -) -k1,18449:32583030,23118686:19978192 -g1,18449:32583030,23118686 -) -(1,18454:6630773,24353390:25952256,513147,134348 -k1,18453:9956624,24353390:205682 -k1,18453:10778344,24353390:205682 -k1,18453:13564179,24353390:205683 -k1,18453:16397199,24353390:205682 -k1,18453:18284535,24353390:205682 -k1,18453:19235361,24353390:205682 -k1,18453:20092472,24353390:205683 -k1,18453:22479848,24353390:205682 -k1,18453:24074893,24353390:205682 -k1,18453:25848196,24353390:205682 -k1,18453:27367221,24353390:205683 -k1,18453:29384318,24353390:205682 -k1,18453:30351528,24353390:205682 -k1,18453:32583029,24353390:0 -) -(1,18454:6630773,25194878:25952256,505283,134348 -k1,18453:9890861,25194878:175964 -k1,18453:12621419,25194878:175965 -k1,18453:16043381,25194878:175964 -k1,18453:19199922,25194878:175964 -k1,18453:20708233,25194878:175964 -k1,18453:22624834,25194878:175965 -k1,18453:24405774,25194878:175964 -k1,18453:26636291,25194878:175964 -k1,18453:28968391,25194878:175965 -k1,18453:31303766,25194878:175964 -k1,18454:32583029,25194878:0 -) -(1,18454:6630773,26036366:25952256,513147,134348 -k1,18453:7946474,26036366:176030 -k1,18453:9313948,26036366:176029 -k1,18453:9845838,26036366:176030 -k1,18453:12717363,26036366:176029 -k1,18453:13841044,26036366:176030 -k1,18453:16274789,26036366:176030 -k1,18453:17840181,26036366:176029 -k1,18453:19283677,26036366:176030 -k1,18453:20773048,26036366:176029 -k1,18453:22343029,26036366:176030 -k1,18453:25029743,26036366:176030 -k1,18453:27139084,26036366:176029 -k1,18453:27966542,26036366:176030 -k1,18453:29474918,26036366:176029 -k1,18453:31391584,26036366:176030 -k1,18454:32583029,26036366:0 -) -(1,18454:6630773,26877854:25952256,513147,126483 -k1,18453:8409517,26877854:173768 -k1,18453:8998102,26877854:173742 -k1,18453:12704916,26877854:173768 -k1,18453:13897768,26877854:173767 -k1,18453:15164021,26877854:173768 -k1,18453:15997081,26877854:173768 -k1,18453:17867575,26877854:173767 -k1,18453:21067140,26877854:173768 -k1,18453:21856946,26877854:173768 -k1,18453:23817881,26877854:173768 -k1,18453:24607686,26877854:173767 -k1,18453:25800539,26877854:173768 -k1,18453:26423858,26877854:173742 -k1,18453:28131824,26877854:173768 -k1,18454:32583029,26877854:0 -) -(1,18454:6630773,27719342:25952256,513147,126483 -k1,18453:9447088,27719342:276140 -k1,18453:10541118,27719342:276141 -k1,18453:11173118,27719342:276140 -k1,18453:13573935,27719342:276140 -k1,18453:16685163,27719342:276141 -k1,18453:17829655,27719342:276140 -k1,18453:19198280,27719342:276140 -k1,18453:22169916,27719342:276140 -(1,18453:22169916,27719342:0,452978,115847 -r1,18496:26045300,27719342:3875384,568825,115847 -k1,18453:22169916,27719342:-3875384 -) -(1,18453:22169916,27719342:3875384,452978,115847 -k1,18453:22169916,27719342:3277 -h1,18453:26042023,27719342:0,411205,112570 -) -k1,18453:26321441,27719342:276141 -k1,18453:27249009,27719342:276140 -k1,18453:28937450,27719342:276140 -k1,18453:29569451,27719342:276141 -k1,18453:31426319,27719342:276140 -k1,18453:32583029,27719342:0 -) -(1,18454:6630773,28560830:25952256,513147,134348 -k1,18453:8669729,28560830:227541 -k1,18453:9253130,28560830:227541 -k1,18453:10613789,28560830:227541 -k1,18453:12524294,28560830:227540 -k1,18453:13876433,28560830:227541 -k1,18453:15497925,28560830:227541 -k1,18453:16744551,28560830:227541 -k1,18453:18406020,28560830:227541 -k1,18453:20977784,28560830:227541 -k1,18453:23539062,28560830:227541 -k1,18453:24433759,28560830:227541 -k1,18453:26257100,28560830:227540 -k1,18453:27438190,28560830:227541 -k1,18453:29960802,28560830:227541 -k1,18453:31563944,28560830:227541 -k1,18453:32583029,28560830:0 -) -(1,18454:6630773,29402318:25952256,513147,134348 -k1,18453:8108189,29402318:171283 -k1,18453:9176005,29402318:171283 -k1,18453:10881486,29402318:171283 -k1,18453:12244214,29402318:171283 -k1,18453:14212494,29402318:171283 -k1,18453:17096968,29402318:171283 -k1,18453:17927542,29402318:171282 -k1,18453:19117910,29402318:171283 -k1,18453:20678556,29402318:171283 -k1,18453:22899805,29402318:171283 -k1,18453:26051665,29402318:171283 -k1,18453:26578808,29402318:171283 -k1,18453:29132980,29402318:171283 -k1,18453:30698214,29402318:171283 -k1,18453:32583029,29402318:0 -) -(1,18454:6630773,30243806:25952256,505283,126483 -g1,18453:8715473,30243806 -g1,18453:11433906,30243806 -g1,18453:12319297,30243806 -k1,18454:32583029,30243806:17469932 -g1,18454:32583029,30243806 -) -v1,18456:6630773,31434272:0,393216,0 -(1,18470:6630773,37125454:25952256,6084398,196608 -g1,18470:6630773,37125454 -g1,18470:6630773,37125454 -g1,18470:6434165,37125454 -(1,18470:6434165,37125454:0,6084398,196608 -r1,18496:32779637,37125454:26345472,6281006,196608 -k1,18470:6434165,37125454:-26345472 -) -(1,18470:6434165,37125454:26345472,6084398,196608 -[1,18470:6630773,37125454:25952256,5887790,0 -(1,18458:6630773,31648182:25952256,410518,101187 -(1,18457:6630773,31648182:0,0,0 -g1,18457:6630773,31648182 -g1,18457:6630773,31648182 -g1,18457:6303093,31648182 -(1,18457:6303093,31648182:0,0,0 -) -g1,18457:6630773,31648182 -) -g1,18458:10108376,31648182 -g1,18458:11056814,31648182 -g1,18458:15799000,31648182 -g1,18458:16431292,31648182 -g1,18458:23702643,31648182 -g1,18458:28128683,31648182 -g1,18458:28760975,31648182 -h1,18458:30341704,31648182:0,0,0 -k1,18458:32583029,31648182:2241325 -g1,18458:32583029,31648182 -) -(1,18459:6630773,32314360:25952256,410518,101187 -h1,18459:6630773,32314360:0,0,0 -g1,18459:11689105,32314360 -g1,18459:13902127,32314360 -h1,18459:15166709,32314360:0,0,0 -k1,18459:32583029,32314360:17416320 -g1,18459:32583029,32314360 -) -(1,18469:6630773,33046074:25952256,404226,101187 -(1,18461:6630773,33046074:0,0,0 -g1,18461:6630773,33046074 -g1,18461:6630773,33046074 -g1,18461:6303093,33046074 -(1,18461:6303093,33046074:0,0,0 -) -g1,18461:6630773,33046074 -) -g1,18469:7579210,33046074 -g1,18469:7895356,33046074 -g1,18469:8211502,33046074 -g1,18469:10108376,33046074 -g1,18469:10424522,33046074 -g1,18469:10740668,33046074 -g1,18469:11056814,33046074 -g1,18469:11372960,33046074 -g1,18469:11689106,33046074 -g1,18469:12005252,33046074 -g1,18469:13902126,33046074 -g1,18469:17063583,33046074 -g1,18469:19276603,33046074 -g1,18469:20541186,33046074 -g1,18469:23070352,33046074 -h1,18469:26864100,33046074:0,0,0 -k1,18469:32583029,33046074:5718929 -g1,18469:32583029,33046074 -) -(1,18469:6630773,33712252:25952256,404226,82312 -h1,18469:6630773,33712252:0,0,0 -g1,18469:7579210,33712252 -g1,18469:8211502,33712252 -g1,18469:8527648,33712252 -g1,18469:8843794,33712252 -g1,18469:9159940,33712252 -g1,18469:9476086,33712252 -g1,18469:10108378,33712252 -g1,18469:12953690,33712252 -g1,18469:13902127,33712252 -g1,18469:14218273,33712252 -g1,18469:14534419,33712252 -g1,18469:14850565,33712252 -g1,18469:15166711,33712252 -g1,18469:15482857,33712252 -g1,18469:15799003,33712252 -g1,18469:16115149,33712252 -g1,18469:16431295,33712252 -g1,18469:17063587,33712252 -g1,18469:17379733,33712252 -g1,18469:17695879,33712252 -g1,18469:18012025,33712252 -g1,18469:18328171,33712252 -g1,18469:18644317,33712252 -g1,18469:19276609,33712252 -g1,18469:19592755,33712252 -g1,18469:20541192,33712252 -g1,18469:20857338,33712252 -g1,18469:21173484,33712252 -g1,18469:21489630,33712252 -g1,18469:21805776,33712252 -g1,18469:22121922,33712252 -g1,18469:22438068,33712252 -g1,18469:23070360,33712252 -g1,18469:23386506,33712252 -h1,18469:26864108,33712252:0,0,0 -k1,18469:32583029,33712252:5718921 -g1,18469:32583029,33712252 -) -(1,18469:6630773,34378430:25952256,404226,82312 -h1,18469:6630773,34378430:0,0,0 -g1,18469:7579210,34378430 -g1,18469:8211502,34378430 -g1,18469:8527648,34378430 -g1,18469:8843794,34378430 -g1,18469:9159940,34378430 -g1,18469:9476086,34378430 -g1,18469:10108378,34378430 -g1,18469:12953690,34378430 -g1,18469:13902127,34378430 -g1,18469:14218273,34378430 -g1,18469:14534419,34378430 -g1,18469:14850565,34378430 -g1,18469:15166711,34378430 -g1,18469:15482857,34378430 -g1,18469:15799003,34378430 -g1,18469:16115149,34378430 -g1,18469:16431295,34378430 -g1,18469:17063587,34378430 -g1,18469:17379733,34378430 -g1,18469:17695879,34378430 -g1,18469:18012025,34378430 -g1,18469:18328171,34378430 -g1,18469:18644317,34378430 -g1,18469:19276609,34378430 -g1,18469:19592755,34378430 -g1,18469:20541192,34378430 -g1,18469:20857338,34378430 -g1,18469:21173484,34378430 -g1,18469:21489630,34378430 -g1,18469:21805776,34378430 -g1,18469:22121922,34378430 -g1,18469:22438068,34378430 -g1,18469:23070360,34378430 -g1,18469:23386506,34378430 -h1,18469:26864108,34378430:0,0,0 -k1,18469:32583029,34378430:5718921 -g1,18469:32583029,34378430 -) -(1,18469:6630773,35044608:25952256,404226,82312 -h1,18469:6630773,35044608:0,0,0 -g1,18469:7579210,35044608 -g1,18469:8211502,35044608 -g1,18469:8527648,35044608 -g1,18469:8843794,35044608 -g1,18469:9159940,35044608 -g1,18469:9476086,35044608 -g1,18469:10108378,35044608 -g1,18469:12953690,35044608 -g1,18469:13902127,35044608 -g1,18469:14218273,35044608 -g1,18469:14534419,35044608 -g1,18469:14850565,35044608 -g1,18469:15166711,35044608 -g1,18469:15482857,35044608 -g1,18469:15799003,35044608 -g1,18469:16115149,35044608 -g1,18469:16431295,35044608 -g1,18469:17063587,35044608 -g1,18469:17379733,35044608 -g1,18469:17695879,35044608 -g1,18469:18012025,35044608 -g1,18469:18328171,35044608 -g1,18469:18644317,35044608 -g1,18469:19276609,35044608 -g1,18469:20541192,35044608 -g1,18469:20857338,35044608 -g1,18469:21173484,35044608 -g1,18469:21489630,35044608 -g1,18469:21805776,35044608 -g1,18469:22121922,35044608 -g1,18469:22438068,35044608 -g1,18469:23070360,35044608 -g1,18469:23386506,35044608 -h1,18469:26864108,35044608:0,0,0 -k1,18469:32583029,35044608:5718921 -g1,18469:32583029,35044608 -) -(1,18469:6630773,35710786:25952256,404226,82312 -h1,18469:6630773,35710786:0,0,0 -g1,18469:7579210,35710786 -g1,18469:8211502,35710786 -g1,18469:8527648,35710786 -g1,18469:8843794,35710786 -g1,18469:9159940,35710786 -g1,18469:9476086,35710786 -g1,18469:10108378,35710786 -g1,18469:12953690,35710786 -g1,18469:13902127,35710786 -g1,18469:14218273,35710786 -g1,18469:14534419,35710786 -g1,18469:14850565,35710786 -g1,18469:15166711,35710786 -g1,18469:15482857,35710786 -g1,18469:15799003,35710786 -g1,18469:16115149,35710786 -g1,18469:16431295,35710786 -g1,18469:17063587,35710786 -g1,18469:17379733,35710786 -g1,18469:17695879,35710786 -g1,18469:18012025,35710786 -g1,18469:18328171,35710786 -g1,18469:18644317,35710786 -g1,18469:19276609,35710786 -g1,18469:20541192,35710786 -g1,18469:20857338,35710786 -g1,18469:21173484,35710786 -g1,18469:21489630,35710786 -g1,18469:21805776,35710786 -g1,18469:22121922,35710786 -g1,18469:22438068,35710786 -g1,18469:23070360,35710786 -g1,18469:23386506,35710786 -h1,18469:26864108,35710786:0,0,0 -k1,18469:32583029,35710786:5718921 -g1,18469:32583029,35710786 -) -(1,18469:6630773,36376964:25952256,404226,82312 -h1,18469:6630773,36376964:0,0,0 -g1,18469:7579210,36376964 -g1,18469:8211502,36376964 -g1,18469:8527648,36376964 -g1,18469:8843794,36376964 -g1,18469:9159940,36376964 -g1,18469:9476086,36376964 -g1,18469:10108378,36376964 -g1,18469:12953690,36376964 -g1,18469:13902127,36376964 -g1,18469:14218273,36376964 -g1,18469:14534419,36376964 -g1,18469:14850565,36376964 -g1,18469:15166711,36376964 -g1,18469:15482857,36376964 -g1,18469:15799003,36376964 -g1,18469:16115149,36376964 -g1,18469:16431295,36376964 -g1,18469:17063587,36376964 -g1,18469:17379733,36376964 -g1,18469:17695879,36376964 -g1,18469:18012025,36376964 -g1,18469:18328171,36376964 -g1,18469:18644317,36376964 -g1,18469:19276609,36376964 -g1,18469:20541192,36376964 -g1,18469:20857338,36376964 -g1,18469:21173484,36376964 -g1,18469:21489630,36376964 -g1,18469:21805776,36376964 -g1,18469:22121922,36376964 -g1,18469:22438068,36376964 -g1,18469:23070360,36376964 -g1,18469:23386506,36376964 -h1,18469:26864108,36376964:0,0,0 -k1,18469:32583029,36376964:5718921 -g1,18469:32583029,36376964 -) -(1,18469:6630773,37043142:25952256,404226,82312 -h1,18469:6630773,37043142:0,0,0 -g1,18469:7579210,37043142 -g1,18469:8211502,37043142 -g1,18469:8527648,37043142 -g1,18469:8843794,37043142 -g1,18469:9159940,37043142 -g1,18469:9476086,37043142 -g1,18469:10108378,37043142 -g1,18469:12953690,37043142 -g1,18469:13902127,37043142 -g1,18469:14218273,37043142 -g1,18469:14534419,37043142 -g1,18469:14850565,37043142 -g1,18469:15166711,37043142 -g1,18469:15482857,37043142 -g1,18469:15799003,37043142 -g1,18469:16115149,37043142 -g1,18469:16431295,37043142 -g1,18469:17063587,37043142 -g1,18469:17379733,37043142 -g1,18469:17695879,37043142 -g1,18469:18012025,37043142 -g1,18469:18328171,37043142 -g1,18469:18644317,37043142 -g1,18469:19276609,37043142 -g1,18469:20541192,37043142 -g1,18469:20857338,37043142 -g1,18469:21173484,37043142 -g1,18469:21489630,37043142 -g1,18469:21805776,37043142 -g1,18469:22121922,37043142 -g1,18469:22438068,37043142 -g1,18469:23070360,37043142 -g1,18469:23386506,37043142 -h1,18469:26864108,37043142:0,0,0 -k1,18469:32583029,37043142:5718921 -g1,18469:32583029,37043142 -) -] -) -g1,18470:32583029,37125454 -g1,18470:6630773,37125454 -g1,18470:6630773,37125454 -g1,18470:32583029,37125454 -g1,18470:32583029,37125454 -) -h1,18470:6630773,37322062:0,0,0 -(1,18474:6630773,38687838:25952256,513147,134348 -h1,18473:6630773,38687838:983040,0,0 -g1,18473:8300630,38687838 -g1,18473:10741190,38687838 -g1,18473:13775506,38687838 -g1,18473:15177976,38687838 -g1,18473:16802613,38687838 -g1,18473:18395793,38687838 -g1,18473:18950882,38687838 -g1,18473:21274788,38687838 -(1,18473:21274788,38687838:0,414482,115847 -r1,18496:22688189,38687838:1413401,530329,115847 -k1,18473:21274788,38687838:-1413401 -) -(1,18473:21274788,38687838:1413401,414482,115847 -k1,18473:21274788,38687838:3277 -h1,18473:22684912,38687838:0,411205,112570 -) -g1,18473:22887418,38687838 -g1,18473:24069687,38687838 -g1,18473:26080331,38687838 -g1,18473:27076478,38687838 -g1,18473:28958672,38687838 -k1,18474:32583029,38687838:2326089 -g1,18474:32583029,38687838 -) -v1,18476:6630773,39878304:0,393216,0 -(1,18490:6630773,45496610:25952256,6011522,196608 -g1,18490:6630773,45496610 -g1,18490:6630773,45496610 -g1,18490:6434165,45496610 -(1,18490:6434165,45496610:0,6011522,196608 -r1,18496:32779637,45496610:26345472,6208130,196608 -k1,18490:6434165,45496610:-26345472 -) -(1,18490:6434165,45496610:26345472,6011522,196608 -[1,18490:6630773,45496610:25952256,5814914,0 -(1,18478:6630773,40092214:25952256,410518,101187 -(1,18477:6630773,40092214:0,0,0 -g1,18477:6630773,40092214 -g1,18477:6630773,40092214 -g1,18477:6303093,40092214 -(1,18477:6303093,40092214:0,0,0 -) -g1,18477:6630773,40092214 -) -g1,18478:10108376,40092214 -g1,18478:11056814,40092214 -g1,18478:15799000,40092214 -g1,18478:16431292,40092214 -g1,18478:23702643,40092214 -g1,18478:28128683,40092214 -g1,18478:28760975,40092214 -h1,18478:30341704,40092214:0,0,0 -k1,18478:32583029,40092214:2241325 -g1,18478:32583029,40092214 -) -(1,18479:6630773,40758392:25952256,410518,76021 -h1,18479:6630773,40758392:0,0,0 -k1,18479:6630773,40758392:0 -h1,18479:11689104,40758392:0,0,0 -k1,18479:32583028,40758392:20893924 -g1,18479:32583028,40758392 -) -(1,18489:6630773,41490106:25952256,379060,7863 -(1,18481:6630773,41490106:0,0,0 -g1,18481:6630773,41490106 -g1,18481:6630773,41490106 -g1,18481:6303093,41490106 -(1,18481:6303093,41490106:0,0,0 -) -g1,18481:6630773,41490106 -) -g1,18489:7579210,41490106 -g1,18489:7895356,41490106 -g1,18489:8211502,41490106 -g1,18489:10740668,41490106 -h1,18489:12637542,41490106:0,0,0 -k1,18489:32583030,41490106:19945488 -g1,18489:32583030,41490106 -) -(1,18489:6630773,42156284:25952256,404226,9436 -h1,18489:6630773,42156284:0,0,0 -g1,18489:7579210,42156284 -g1,18489:8211502,42156284 -g1,18489:8527648,42156284 -g1,18489:8843794,42156284 -g1,18489:9159940,42156284 -g1,18489:9476086,42156284 -g1,18489:10740669,42156284 -g1,18489:11056815,42156284 -h1,18489:12637543,42156284:0,0,0 -k1,18489:32583029,42156284:19945486 -g1,18489:32583029,42156284 -) -(1,18489:6630773,42822462:25952256,404226,9436 -h1,18489:6630773,42822462:0,0,0 -g1,18489:7579210,42822462 -g1,18489:8211502,42822462 -g1,18489:8527648,42822462 -g1,18489:8843794,42822462 -g1,18489:9159940,42822462 -g1,18489:9476086,42822462 -g1,18489:10740669,42822462 -g1,18489:11056815,42822462 -h1,18489:12637543,42822462:0,0,0 -k1,18489:32583029,42822462:19945486 -g1,18489:32583029,42822462 -) -(1,18489:6630773,43488640:25952256,404226,9436 -h1,18489:6630773,43488640:0,0,0 -g1,18489:7579210,43488640 -g1,18489:8211502,43488640 -g1,18489:8527648,43488640 -g1,18489:8843794,43488640 -g1,18489:9159940,43488640 -g1,18489:9476086,43488640 -g1,18489:10740669,43488640 -g1,18489:11056815,43488640 -h1,18489:12637543,43488640:0,0,0 -k1,18489:32583029,43488640:19945486 -g1,18489:32583029,43488640 -) -(1,18489:6630773,44154818:25952256,404226,9436 -h1,18489:6630773,44154818:0,0,0 -g1,18489:7579210,44154818 -g1,18489:8211502,44154818 -g1,18489:8527648,44154818 -g1,18489:8843794,44154818 -g1,18489:9159940,44154818 -g1,18489:9476086,44154818 -g1,18489:10740669,44154818 -g1,18489:11056815,44154818 -h1,18489:12637543,44154818:0,0,0 -k1,18489:32583029,44154818:19945486 -g1,18489:32583029,44154818 -) -(1,18489:6630773,44820996:25952256,404226,9436 -h1,18489:6630773,44820996:0,0,0 -g1,18489:7579210,44820996 -g1,18489:8211502,44820996 -g1,18489:8527648,44820996 -g1,18489:8843794,44820996 -g1,18489:9159940,44820996 -g1,18489:9476086,44820996 -g1,18489:10740669,44820996 -g1,18489:11056815,44820996 -h1,18489:12637543,44820996:0,0,0 -k1,18489:32583029,44820996:19945486 -g1,18489:32583029,44820996 -) -(1,18489:6630773,45487174:25952256,404226,9436 -h1,18489:6630773,45487174:0,0,0 -g1,18489:7579210,45487174 -g1,18489:8211502,45487174 -g1,18489:8527648,45487174 -g1,18489:8843794,45487174 -g1,18489:9159940,45487174 -g1,18489:9476086,45487174 -g1,18489:10740669,45487174 -g1,18489:11056815,45487174 -h1,18489:12637543,45487174:0,0,0 -k1,18489:32583029,45487174:19945486 -g1,18489:32583029,45487174 -) -] -) -g1,18490:32583029,45496610 -g1,18490:6630773,45496610 -g1,18490:6630773,45496610 -g1,18490:32583029,45496610 -g1,18490:32583029,45496610 -) -h1,18490:6630773,45693218:0,0,0 -] -(1,18496:32583029,45706769:0,0,0 -g1,18496:32583029,45706769 -) -) -] -(1,18496:6630773,47279633:25952256,0,0 -h1,18496:6630773,47279633:25952256,0,0 -) -] -(1,18496:4262630,4025873:0,0,0 -[1,18496:-473656,4025873:0,0,0 -(1,18496:-473656,-710413:0,0,0 -(1,18496:-473656,-710413:0,0,0 -g1,18496:-473656,-710413 -) -g1,18496:-473656,-710413 -) -] -) -] -!30492 -}362 -Input:2956:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2957:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2958:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2959:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2960:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2961:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!564 -{363 -[1,18573:4262630,47279633:28320399,43253760,0 -(1,18573:4262630,4025873:0,0,0 -[1,18573:-473656,4025873:0,0,0 -(1,18573:-473656,-710413:0,0,0 -(1,18573:-473656,-644877:0,0,0 -k1,18573:-473656,-644877:-65536 -) -(1,18573:-473656,4736287:0,0,0 -k1,18573:-473656,4736287:5209943 -) -g1,18573:-473656,-710413 -) -] -) -[1,18573:6630773,47279633:25952256,43253760,0 -[1,18573:6630773,4812305:25952256,786432,0 -(1,18573:6630773,4812305:25952256,505283,126483 -(1,18573:6630773,4812305:25952256,505283,126483 -g1,18573:3078558,4812305 -[1,18573:3078558,4812305:0,0,0 -(1,18573:3078558,2439708:0,1703936,0 -k1,18573:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,18573:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,18573:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 -) -] -) -) -) -] -[1,18573:3078558,4812305:0,0,0 -(1,18573:3078558,2439708:0,1703936,0 -g1,18573:29030814,2439708 -g1,18573:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,18573:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 -) -] -) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,18573:37855564,2439708:1179648,16384,0 -) -) -k1,18573:3078556,2439708:-34777008 -) -] -[1,18573:3078558,4812305:0,0,0 -(1,18573:3078558,49800853:0,16384,2228224 -k1,18573:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,18573:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,18573:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 -) -] -) -) -) -] -[1,18573:3078558,4812305:0,0,0 -(1,18573:3078558,49800853:0,16384,2228224 -g1,18573:29030814,49800853 -g1,18573:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,18573:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 -) -] -) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,18573:37855564,49800853:1179648,16384,0 -) -) -k1,18573:3078556,49800853:-34777008 -) -] -g1,18573:6630773,4812305 -k1,18573:25146660,4812305:17320510 -g1,18573:26880087,4812305 -g1,18573:29193507,4812305 -g1,18573:30603186,4812305 -) -) -] -[1,18573:6630773,45706769:25952256,40108032,0 -(1,18573:6630773,45706769:25952256,40108032,0 -(1,18573:6630773,45706769:0,0,0 -g1,18573:6630773,45706769 -) -[1,18573:6630773,45706769:25952256,40108032,0 -(1,18494:6630773,6254097:25952256,513147,134348 -h1,18493:6630773,6254097:983040,0,0 -k1,18493:10423386,6254097:205172 -k1,18493:13463644,6254097:205171 -k1,18493:14616467,6254097:205172 -k1,18493:15177499,6254097:205172 -k1,18493:17263553,6254097:205171 -k1,18493:18451765,6254097:205172 -k1,18493:20468352,6254097:205172 -k1,18493:21482893,6254097:205171 -k1,18493:22458768,6254097:205172 -k1,18493:23494931,6254097:205166 -k1,18493:25350299,6254097:205171 -k1,18493:26997918,6254097:205172 -k1,18493:28000008,6254097:205172 -k1,18493:29888144,6254097:205171 -k1,18493:31391584,6254097:205172 -k1,18493:32583029,6254097:0 -) -(1,18494:6630773,7095585:25952256,505283,115847 -g1,18493:8242303,7095585 -g1,18493:9835483,7095585 -(1,18493:9835483,7095585:0,452978,115847 -r1,18573:14414291,7095585:4578808,568825,115847 -k1,18493:9835483,7095585:-4578808 -) -(1,18493:9835483,7095585:4578808,452978,115847 -k1,18493:9835483,7095585:3277 -h1,18493:14411014,7095585:0,411205,112570 -) -k1,18494:32583029,7095585:17995068 -g1,18494:32583029,7095585 -) -v1,18496:6630773,8076335:0,393216,0 -(1,18510:6630773,13694641:25952256,6011522,196608 -g1,18510:6630773,13694641 -g1,18510:6630773,13694641 -g1,18510:6434165,13694641 -(1,18510:6434165,13694641:0,6011522,196608 -r1,18573:32779637,13694641:26345472,6208130,196608 -k1,18510:6434165,13694641:-26345472 -) -(1,18510:6434165,13694641:26345472,6011522,196608 -[1,18510:6630773,13694641:25952256,5814914,0 -(1,18498:6630773,8290245:25952256,410518,101187 -(1,18497:6630773,8290245:0,0,0 -g1,18497:6630773,8290245 -g1,18497:6630773,8290245 -g1,18497:6303093,8290245 -(1,18497:6303093,8290245:0,0,0 -) -g1,18497:6630773,8290245 -) -g1,18498:10740667,8290245 -g1,18498:11689105,8290245 -g1,18498:17063582,8290245 -g1,18498:17695874,8290245 -h1,18498:24334934,8290245:0,0,0 -k1,18498:32583029,8290245:8248095 -g1,18498:32583029,8290245 -) -(1,18499:6630773,8956423:25952256,410518,101187 -h1,18499:6630773,8956423:0,0,0 -k1,18499:6630773,8956423:0 -h1,18499:12321396,8956423:0,0,0 -k1,18499:32583028,8956423:20261632 -g1,18499:32583028,8956423 -) -(1,18509:6630773,9688137:25952256,379060,7863 -(1,18501:6630773,9688137:0,0,0 -g1,18501:6630773,9688137 -g1,18501:6630773,9688137 -g1,18501:6303093,9688137 -(1,18501:6303093,9688137:0,0,0 -) -g1,18501:6630773,9688137 -) -g1,18509:7579210,9688137 -g1,18509:7895356,9688137 -g1,18509:8211502,9688137 -g1,18509:9792231,9688137 -g1,18509:11372960,9688137 -g1,18509:13269834,9688137 -g1,18509:15166708,9688137 -g1,18509:17063582,9688137 -g1,18509:18644311,9688137 -g1,18509:20541185,9688137 -g1,18509:22754205,9688137 -h1,18509:24018788,9688137:0,0,0 -k1,18509:32583029,9688137:8564241 -g1,18509:32583029,9688137 -) -(1,18509:6630773,10354315:25952256,388497,9436 -h1,18509:6630773,10354315:0,0,0 -g1,18509:7579210,10354315 -g1,18509:8211502,10354315 -g1,18509:8527648,10354315 -g1,18509:8843794,10354315 -g1,18509:9159940,10354315 -g1,18509:9792232,10354315 -g1,18509:10108378,10354315 -g1,18509:10424524,10354315 -g1,18509:10740670,10354315 -g1,18509:11372962,10354315 -g1,18509:11689108,10354315 -g1,18509:12005254,10354315 -g1,18509:12321400,10354315 -g1,18509:12637546,10354315 -g1,18509:13269838,10354315 -g1,18509:13585984,10354315 -g1,18509:13902130,10354315 -g1,18509:14218276,10354315 -g1,18509:14534422,10354315 -g1,18509:15166714,10354315 -g1,18509:15482860,10354315 -g1,18509:15799006,10354315 -g1,18509:16115152,10354315 -g1,18509:17063589,10354315 -g1,18509:17379735,10354315 -g1,18509:17695881,10354315 -g1,18509:18012027,10354315 -g1,18509:18644319,10354315 -g1,18509:18960465,10354315 -g1,18509:19276611,10354315 -g1,18509:19592757,10354315 -g1,18509:19908903,10354315 -g1,18509:20541195,10354315 -g1,18509:20857341,10354315 -g1,18509:21173487,10354315 -g1,18509:21489633,10354315 -g1,18509:21805779,10354315 -g1,18509:22121925,10354315 -g1,18509:22754217,10354315 -g1,18509:23070363,10354315 -g1,18509:23386509,10354315 -h1,18509:24018800,10354315:0,0,0 -k1,18509:32583029,10354315:8564229 -g1,18509:32583029,10354315 -) -(1,18509:6630773,11020493:25952256,388497,9436 -h1,18509:6630773,11020493:0,0,0 -g1,18509:7579210,11020493 -g1,18509:8211502,11020493 -g1,18509:8527648,11020493 -g1,18509:8843794,11020493 -g1,18509:9159940,11020493 -g1,18509:9792232,11020493 -g1,18509:10108378,11020493 -g1,18509:10424524,11020493 -g1,18509:10740670,11020493 -g1,18509:11372962,11020493 -g1,18509:11689108,11020493 -g1,18509:12005254,11020493 -g1,18509:12321400,11020493 -g1,18509:12637546,11020493 -g1,18509:13269838,11020493 -g1,18509:13585984,11020493 -g1,18509:13902130,11020493 -g1,18509:14218276,11020493 -g1,18509:14534422,11020493 -g1,18509:15166714,11020493 -g1,18509:15482860,11020493 -g1,18509:15799006,11020493 -g1,18509:16115152,11020493 -g1,18509:17063589,11020493 -g1,18509:17379735,11020493 -g1,18509:17695881,11020493 -g1,18509:18012027,11020493 -g1,18509:18644319,11020493 -g1,18509:18960465,11020493 -g1,18509:19276611,11020493 -g1,18509:19592757,11020493 -g1,18509:19908903,11020493 -g1,18509:20541195,11020493 -g1,18509:20857341,11020493 -g1,18509:21173487,11020493 -g1,18509:21489633,11020493 -g1,18509:21805779,11020493 -g1,18509:22121925,11020493 -g1,18509:22754217,11020493 -g1,18509:23070363,11020493 -g1,18509:23386509,11020493 -h1,18509:24018800,11020493:0,0,0 -k1,18509:32583029,11020493:8564229 -g1,18509:32583029,11020493 -) -(1,18509:6630773,11686671:25952256,388497,9436 -h1,18509:6630773,11686671:0,0,0 -g1,18509:7579210,11686671 -g1,18509:8211502,11686671 -g1,18509:8527648,11686671 -g1,18509:8843794,11686671 -g1,18509:9159940,11686671 -g1,18509:9792232,11686671 -g1,18509:10108378,11686671 -g1,18509:10424524,11686671 -g1,18509:10740670,11686671 -g1,18509:11372962,11686671 -g1,18509:11689108,11686671 -g1,18509:12005254,11686671 -g1,18509:12321400,11686671 -g1,18509:12637546,11686671 -g1,18509:13269838,11686671 -g1,18509:13585984,11686671 -g1,18509:13902130,11686671 -g1,18509:14218276,11686671 -g1,18509:14534422,11686671 -g1,18509:15166714,11686671 -g1,18509:15482860,11686671 -g1,18509:15799006,11686671 -g1,18509:16115152,11686671 -g1,18509:17063589,11686671 -g1,18509:17379735,11686671 -g1,18509:17695881,11686671 -g1,18509:18012027,11686671 -g1,18509:18644319,11686671 -g1,18509:18960465,11686671 -g1,18509:19276611,11686671 -g1,18509:19592757,11686671 -g1,18509:19908903,11686671 -g1,18509:20541195,11686671 -g1,18509:20857341,11686671 -g1,18509:21173487,11686671 -g1,18509:21489633,11686671 -g1,18509:21805779,11686671 -g1,18509:22121925,11686671 -g1,18509:22754217,11686671 -g1,18509:23070363,11686671 -g1,18509:23386509,11686671 -h1,18509:24018800,11686671:0,0,0 -k1,18509:32583029,11686671:8564229 -g1,18509:32583029,11686671 -) -(1,18509:6630773,12352849:25952256,388497,9436 -h1,18509:6630773,12352849:0,0,0 -g1,18509:7579210,12352849 -g1,18509:8211502,12352849 -g1,18509:8527648,12352849 -g1,18509:8843794,12352849 -g1,18509:9159940,12352849 -g1,18509:9792232,12352849 -g1,18509:10108378,12352849 -g1,18509:10424524,12352849 -g1,18509:10740670,12352849 -g1,18509:11372962,12352849 -g1,18509:11689108,12352849 -g1,18509:12005254,12352849 -g1,18509:12321400,12352849 -g1,18509:12637546,12352849 -g1,18509:13269838,12352849 -g1,18509:13585984,12352849 -g1,18509:13902130,12352849 -g1,18509:14218276,12352849 -g1,18509:14534422,12352849 -g1,18509:15166714,12352849 -g1,18509:15482860,12352849 -g1,18509:15799006,12352849 -g1,18509:16115152,12352849 -g1,18509:17063589,12352849 -g1,18509:17379735,12352849 -g1,18509:17695881,12352849 -g1,18509:18012027,12352849 -g1,18509:18644319,12352849 -g1,18509:18960465,12352849 -g1,18509:19276611,12352849 -g1,18509:19592757,12352849 -g1,18509:19908903,12352849 -g1,18509:20541195,12352849 -g1,18509:20857341,12352849 -g1,18509:21173487,12352849 -g1,18509:21489633,12352849 -g1,18509:21805779,12352849 -g1,18509:22121925,12352849 -g1,18509:22754217,12352849 -g1,18509:23070363,12352849 -g1,18509:23386509,12352849 -h1,18509:24018800,12352849:0,0,0 -k1,18509:32583029,12352849:8564229 -g1,18509:32583029,12352849 -) -(1,18509:6630773,13019027:25952256,388497,9436 -h1,18509:6630773,13019027:0,0,0 -g1,18509:7579210,13019027 -g1,18509:8211502,13019027 -g1,18509:8527648,13019027 -g1,18509:8843794,13019027 -g1,18509:9159940,13019027 -g1,18509:9792232,13019027 -g1,18509:10108378,13019027 -g1,18509:10424524,13019027 -g1,18509:10740670,13019027 -g1,18509:11372962,13019027 -g1,18509:11689108,13019027 -g1,18509:12005254,13019027 -g1,18509:12321400,13019027 -g1,18509:12637546,13019027 -g1,18509:13269838,13019027 -g1,18509:13585984,13019027 -g1,18509:13902130,13019027 -g1,18509:14218276,13019027 -g1,18509:14534422,13019027 -g1,18509:15166714,13019027 -g1,18509:15482860,13019027 -g1,18509:15799006,13019027 -g1,18509:16115152,13019027 -g1,18509:17063589,13019027 -g1,18509:17379735,13019027 -g1,18509:17695881,13019027 -g1,18509:18012027,13019027 -g1,18509:18644319,13019027 -g1,18509:18960465,13019027 -g1,18509:19276611,13019027 -g1,18509:19592757,13019027 -g1,18509:19908903,13019027 -g1,18509:20541195,13019027 -g1,18509:20857341,13019027 -g1,18509:21173487,13019027 -g1,18509:21489633,13019027 -g1,18509:21805779,13019027 -g1,18509:22121925,13019027 -g1,18509:22754217,13019027 -g1,18509:23070363,13019027 -g1,18509:23386509,13019027 -h1,18509:24018800,13019027:0,0,0 -k1,18509:32583029,13019027:8564229 -g1,18509:32583029,13019027 -) -(1,18509:6630773,13685205:25952256,388497,9436 -h1,18509:6630773,13685205:0,0,0 -g1,18509:7579210,13685205 -g1,18509:8211502,13685205 -g1,18509:8527648,13685205 -g1,18509:8843794,13685205 -g1,18509:9159940,13685205 -g1,18509:9792232,13685205 -g1,18509:10108378,13685205 -g1,18509:10424524,13685205 -g1,18509:10740670,13685205 -g1,18509:11372962,13685205 -g1,18509:11689108,13685205 -g1,18509:12005254,13685205 -g1,18509:12321400,13685205 -g1,18509:12637546,13685205 -g1,18509:13269838,13685205 -g1,18509:13585984,13685205 -g1,18509:13902130,13685205 -g1,18509:14218276,13685205 -g1,18509:14534422,13685205 -g1,18509:15166714,13685205 -g1,18509:15482860,13685205 -g1,18509:15799006,13685205 -g1,18509:16115152,13685205 -g1,18509:17063589,13685205 -g1,18509:17379735,13685205 -g1,18509:17695881,13685205 -g1,18509:18012027,13685205 -g1,18509:18644319,13685205 -g1,18509:18960465,13685205 -g1,18509:19276611,13685205 -g1,18509:19592757,13685205 -g1,18509:19908903,13685205 -g1,18509:20541195,13685205 -g1,18509:20857341,13685205 -g1,18509:21173487,13685205 -g1,18509:21489633,13685205 -g1,18509:21805779,13685205 -g1,18509:22121925,13685205 -g1,18509:22754217,13685205 -g1,18509:23070363,13685205 -g1,18509:23386509,13685205 -h1,18509:24018800,13685205:0,0,0 -k1,18509:32583029,13685205:8564229 -g1,18509:32583029,13685205 -) -] -) -g1,18510:32583029,13694641 -g1,18510:6630773,13694641 -g1,18510:6630773,13694641 -g1,18510:32583029,13694641 -g1,18510:32583029,13694641 -) -h1,18510:6630773,13891249:0,0,0 -(1,18514:6630773,15047309:25952256,513147,134348 -h1,18513:6630773,15047309:983040,0,0 -k1,18513:8953275,15047309:195859 -k1,18513:9915250,15047309:195859 -k1,18513:13136906,15047309:195859 -k1,18513:13948803,15047309:195859 -k1,18513:16772000,15047309:195859 -k1,18513:18978504,15047309:195859 -k1,18513:20563726,15047309:195859 -k1,18513:22966183,15047309:195860 -k1,18513:23923570,15047309:195859 -k1,18513:26558679,15047309:195859 -k1,18513:27826707,15047309:195859 -k1,18513:28788682,15047309:195859 -k1,18513:29643833,15047309:195859 -k1,18513:31478747,15047309:195859 -k1,18513:32583029,15047309:0 -) -(1,18514:6630773,15888797:25952256,505283,7863 -g1,18513:7577768,15888797 -g1,18513:10242461,15888797 -g1,18513:11093118,15888797 -g1,18513:12107615,15888797 -k1,18514:32583030,15888797:19576916 -g1,18514:32583030,15888797 -) -(1,18515:6630773,17980057:25952256,555811,12975 -(1,18515:6630773,17980057:2899444,534184,12975 -g1,18515:6630773,17980057 -g1,18515:9530217,17980057 -) -k1,18515:32583028,17980057:20449656 -g1,18515:32583028,17980057 -) -(1,18520:6630773,19214761:25952256,513147,134348 -k1,18519:9312234,19214761:146528 -k1,18519:11685018,19214761:146527 -k1,18519:12363043,19214761:146528 -k1,18519:13722641,19214761:146527 -k1,18519:17044388,19214761:146528 -k1,18519:18584866,19214761:146527 -k1,18519:21055956,19214761:146528 -k1,18519:21853912,19214761:146528 -k1,18519:23019524,19214761:146527 -k1,18519:25651833,19214761:146528 -k1,18519:26457652,19214761:146527 -k1,18519:29114864,19214761:146528 -k1,18519:32583029,19214761:0 -) -(1,18520:6630773,20056249:25952256,513147,134348 -k1,18519:7562531,20056249:248873 -k1,18519:9320043,20056249:248873 -k1,18519:12380410,20056249:248872 -k1,18519:15702266,20056249:248873 -k1,18519:17363440,20056249:248873 -k1,18519:18803758,20056249:248873 -k1,18519:20667437,20056249:248872 -k1,18519:23942107,20056249:248873 -k1,18519:25138631,20056249:248873 -k1,18519:26763105,20056249:248873 -k1,18519:28666761,20056249:248872 -k1,18519:29898674,20056249:248873 -k1,18520:32583029,20056249:0 -) -(1,18520:6630773,20897737:25952256,513147,126483 -k1,18519:8189320,20897737:226200 -k1,18519:9982486,20897737:226200 -k1,18519:11400131,20897737:226200 -k1,18519:13222132,20897737:226200 -k1,18519:14372390,20897737:226200 -k1,18519:15617675,20897737:226200 -k1,18519:17545845,20897737:226200 -k1,18519:19552003,20897737:226200 -k1,18519:22004460,20897737:226200 -k1,18519:24991036,20897737:226200 -k1,18519:27518205,20897737:226200 -k1,18519:29312682,20897737:226200 -k1,18519:30190310,20897737:226200 -k1,18519:32583029,20897737:0 -) -(1,18520:6630773,21739225:25952256,513147,126483 -k1,18519:7840568,21739225:190710 -k1,18519:10793622,21739225:190711 -k1,18519:13266296,21739225:190710 -k1,18519:15467651,21739225:190710 -k1,18519:16942867,21739225:190710 -k1,18519:19304130,21739225:190711 -k1,18519:20242606,21739225:190710 -k1,18519:22847662,21739225:190710 -k1,18519:25623767,21739225:190710 -k1,18519:26465906,21739225:190711 -k1,18519:27071450,21739225:190701 -k1,18519:29548712,21739225:190711 -k1,18519:31297213,21739225:190710 -k1,18519:32583029,21739225:0 -) -(1,18520:6630773,22580713:25952256,513147,134348 -k1,18519:9135105,22580713:240063 -k1,18519:11086314,22580713:240064 -k1,18519:12517822,22580713:240063 -k1,18519:14513595,22580713:240063 -k1,18519:17870551,22580713:240064 -k1,18519:18762042,22580713:240063 -k1,18519:20021190,22580713:240063 -k1,18519:24772096,22580713:240063 -k1,18519:25671452,22580713:240064 -k1,18519:27363137,22580713:240063 -k1,18519:28262492,22580713:240063 -k1,18519:30199283,22580713:240064 -k1,18519:31422386,22580713:240063 -k1,18520:32583029,22580713:0 -) -(1,18520:6630773,23422201:25952256,513147,126483 -k1,18519:8561735,23422201:194258 -k1,18519:9383829,23422201:194259 -k1,18519:11275469,23422201:194258 -k1,18519:13167766,23422201:194259 -k1,18519:14381109,23422201:194258 -k1,18519:17525143,23422201:194259 -k1,18519:18702441,23422201:194258 -k1,18519:21598749,23422201:194259 -k1,18519:24074971,23422201:194258 -k1,18519:26279875,23422201:194259 -k1,18519:27493218,23422201:194258 -k1,18519:30466204,23422201:194259 -(1,18519:30466204,23422201:0,452978,115847 -r1,18573:32583029,23422201:2116825,568825,115847 -k1,18519:30466204,23422201:-2116825 -) -(1,18519:30466204,23422201:2116825,452978,115847 -k1,18519:30466204,23422201:3277 -h1,18519:32579752,23422201:0,411205,112570 -) -k1,18519:32583029,23422201:0 -) -(1,18520:6630773,24263689:25952256,513147,134348 -k1,18519:8752232,24263689:161933 -k1,18519:10774733,24263689:161934 -k1,18519:12628806,24263689:161933 -k1,18519:16017733,24263689:161934 -k1,18519:19078979,24263689:161933 -k1,18519:20808534,24263689:161934 -k1,18519:21989552,24263689:161933 -k1,18519:23706000,24263689:161934 -k1,18519:26309804,24263689:161933 -k1,18519:29091867,24263689:161934 -k1,18519:31966991,24263689:161933 -k1,18520:32583029,24263689:0 -) -(1,18520:6630773,25105177:25952256,513147,134348 -k1,18519:8262014,25105177:209110 -k1,18519:9462695,25105177:209121 -k1,18519:10738086,25105177:209120 -k1,18519:14462557,25105177:209120 -k1,18519:17976658,25105177:209120 -k1,18519:18837207,25105177:209121 -k1,18519:21444289,25105177:209120 -k1,18519:24484564,25105177:209120 -k1,18519:26073872,25105177:209120 -k1,18519:29730842,25105177:209121 -k1,18519:31105192,25105177:209120 -k1,18520:32583029,25105177:0 -) -(1,18520:6630773,25946665:25952256,513147,126483 -k1,18519:10062179,25946665:175577 -k1,18519:13714440,25946665:175576 -k1,18519:14541445,25946665:175577 -k1,18519:16941314,25946665:175577 -k1,18519:19287443,25946665:175577 -k1,18519:20210785,25946665:175576 -k1,18519:23809307,25946665:175577 -k1,18519:25176329,25946665:175577 -k1,18519:26973922,25946665:175577 -k1,18519:27897264,25946665:175576 -k1,18519:29650293,25946665:175577 -k1,18519:32583029,25946665:0 -) -(1,18520:6630773,26788153:25952256,473825,126483 -g1,18519:7446040,26788153 -g1,18519:8001129,26788153 -g1,18519:10903063,26788153 -k1,18520:32583030,26788153:20151012 -g1,18520:32583030,26788153 -) -(1,18522:6630773,27629641:25952256,513147,126483 -h1,18521:6630773,27629641:983040,0,0 -k1,18521:8764748,27629641:197386 -k1,18521:10066416,27629641:197386 -k1,18521:11356288,27629641:197387 -k1,18521:14249170,27629641:197386 -(1,18521:14249170,27629641:0,452978,115847 -r1,18573:17772842,27629641:3523672,568825,115847 -k1,18521:14249170,27629641:-3523672 -) -(1,18521:14249170,27629641:3523672,452978,115847 -k1,18521:14249170,27629641:3277 -h1,18521:17769565,27629641:0,411205,112570 -) -k1,18521:17970228,27629641:197386 -k1,18521:18819042,27629641:197386 -k1,18521:21198122,27629641:197386 -k1,18521:21751369,27629641:197387 -(1,18521:21751369,27629641:0,414482,115847 -r1,18573:23164770,27629641:1413401,530329,115847 -k1,18521:21751369,27629641:-1413401 -) -(1,18521:21751369,27629641:1413401,414482,115847 -k1,18521:21751369,27629641:3277 -h1,18521:23161493,27629641:0,411205,112570 -) -k1,18521:23362156,27629641:197386 -k1,18521:24542582,27629641:197386 -k1,18521:26551383,27629641:197386 -k1,18521:27510298,27629641:197387 -k1,18521:28063544,27629641:197386 -k1,18521:30249292,27629641:197386 -k1,18521:32583029,27629641:0 -) -(1,18522:6630773,28471129:25952256,513147,126483 -k1,18521:7547665,28471129:249736 -k1,18521:9393202,28471129:249736 -k1,18521:10460826,28471129:249735 -k1,18521:11326600,28471129:249736 -k1,18521:12595421,28471129:249736 -k1,18521:15599635,28471129:249736 -k1,18521:18301728,28471129:249736 -k1,18521:19419815,28471129:249735 -k1,18521:21964622,28471129:249736 -k1,18521:23589959,28471129:249736 -k1,18521:24858780,28471129:249736 -k1,18521:26414649,28471129:249736 -k1,18521:27560917,28471129:249735 -k1,18521:29344851,28471129:249736 -k1,18521:30786032,28471129:249736 -k1,18521:32583029,28471129:0 -) -(1,18522:6630773,29312617:25952256,513147,134348 -k1,18521:9512045,29312617:168081 -k1,18521:10339418,29312617:168081 -k1,18521:11526583,29312617:168080 -k1,18521:13084027,29312617:168081 -k1,18521:15302074,29312617:168081 -k1,18521:18450732,29312617:168081 -k1,18521:18974673,29312617:168081 -k1,18521:21525643,29312617:168081 -(1,18521:21525643,29312617:0,414482,115847 -r1,18573:23290756,29312617:1765113,530329,115847 -k1,18521:21525643,29312617:-1765113 -) -(1,18521:21525643,29312617:1765113,414482,115847 -k1,18521:21525643,29312617:3277 -h1,18521:23287479,29312617:0,411205,112570 -) -k1,18521:23458836,29312617:168080 -k1,18521:26988914,29312617:168081 -k1,18521:27512855,29312617:168081 -k1,18521:29962900,29312617:168081 -k1,18521:32583029,29312617:0 -) -(1,18522:6630773,30154105:25952256,505283,115847 -g1,18521:8807879,30154105 -g1,18521:10198553,30154105 -(1,18521:10198553,30154105:0,452978,115847 -r1,18573:14425649,30154105:4227096,568825,115847 -k1,18521:10198553,30154105:-4227096 -) -(1,18521:10198553,30154105:4227096,452978,115847 -k1,18521:10198553,30154105:3277 -h1,18521:14422372,30154105:0,411205,112570 -) -g1,18521:14624878,30154105 -g1,18521:16218058,30154105 -g1,18521:18128432,30154105 -g1,18521:21006773,30154105 -g1,18521:21892164,30154105 -g1,18521:22506236,30154105 -g1,18521:24086309,30154105 -k1,18522:32583029,30154105:6312405 -g1,18522:32583029,30154105 -) -v1,18524:6630773,31134855:0,393216,0 -(1,18538:6630773,36753161:25952256,6011522,196608 -g1,18538:6630773,36753161 -g1,18538:6630773,36753161 -g1,18538:6434165,36753161 -(1,18538:6434165,36753161:0,6011522,196608 -r1,18573:32779637,36753161:26345472,6208130,196608 -k1,18538:6434165,36753161:-26345472 -) -(1,18538:6434165,36753161:26345472,6011522,196608 -[1,18538:6630773,36753161:25952256,5814914,0 -(1,18526:6630773,31348765:25952256,410518,101187 -(1,18525:6630773,31348765:0,0,0 -g1,18525:6630773,31348765 -g1,18525:6630773,31348765 -g1,18525:6303093,31348765 -(1,18525:6303093,31348765:0,0,0 -) -g1,18525:6630773,31348765 -) -g1,18526:10108376,31348765 -g1,18526:11056814,31348765 -g1,18526:15482854,31348765 -g1,18526:16115146,31348765 -k1,18526:16115146,31348765:0 -h1,18526:23070351,31348765:0,0,0 -k1,18526:32583029,31348765:9512678 -g1,18526:32583029,31348765 -) -(1,18527:6630773,32014943:25952256,404226,101187 -h1,18527:6630773,32014943:0,0,0 -g1,18527:11689105,32014943 -g1,18527:13902127,32014943 -h1,18527:15166709,32014943:0,0,0 -k1,18527:32583029,32014943:17416320 -g1,18527:32583029,32014943 -) -(1,18537:6630773,32746657:25952256,404226,9436 -(1,18529:6630773,32746657:0,0,0 -g1,18529:6630773,32746657 -g1,18529:6630773,32746657 -g1,18529:6303093,32746657 -(1,18529:6303093,32746657:0,0,0 -) -g1,18529:6630773,32746657 -) -g1,18537:7579210,32746657 -g1,18537:8211502,32746657 -g1,18537:8843794,32746657 -g1,18537:11372960,32746657 -g1,18537:12005252,32746657 -g1,18537:12637544,32746657 -h1,18537:12953690,32746657:0,0,0 -k1,18537:32583030,32746657:19629340 -g1,18537:32583030,32746657 -) -(1,18537:6630773,33412835:25952256,404226,101187 -h1,18537:6630773,33412835:0,0,0 -g1,18537:7579210,33412835 -g1,18537:7895356,33412835 -g1,18537:8211502,33412835 -g1,18537:10108376,33412835 -g1,18537:12005250,33412835 -g1,18537:12321396,33412835 -g1,18537:12637542,33412835 -g1,18537:12953688,33412835 -g1,18537:13269834,33412835 -g1,18537:13585980,33412835 -g1,18537:13902126,33412835 -g1,18537:14218272,33412835 -g1,18537:14534418,33412835 -g1,18537:14850564,33412835 -g1,18537:15166710,33412835 -g1,18537:18328167,33412835 -g1,18537:20541187,33412835 -g1,18537:20857333,33412835 -g1,18537:21173479,33412835 -g1,18537:22438062,33412835 -g1,18537:24967228,33412835 -h1,18537:28760976,33412835:0,0,0 -k1,18537:32583029,33412835:3822053 -g1,18537:32583029,33412835 -) -(1,18537:6630773,34079013:25952256,404226,6290 -h1,18537:6630773,34079013:0,0,0 -g1,18537:7579210,34079013 -g1,18537:7895356,34079013 -g1,18537:8211502,34079013 -g1,18537:10108377,34079013 -g1,18537:13269834,34079013 -g1,18537:13585980,34079013 -g1,18537:13902126,34079013 -g1,18537:14218272,34079013 -g1,18537:14534418,34079013 -g1,18537:14850564,34079013 -g1,18537:15166710,34079013 -g1,18537:15482856,34079013 -g1,18537:15799002,34079013 -g1,18537:16115148,34079013 -g1,18537:16431294,34079013 -g1,18537:18328169,34079013 -g1,18537:18644315,34079013 -g1,18537:20541190,34079013 -g1,18537:22438065,34079013 -g1,18537:22754211,34079013 -g1,18537:23070357,34079013 -g1,18537:24967232,34079013 -k1,18537:24967232,34079013:0 -h1,18537:26864106,34079013:0,0,0 -k1,18537:32583029,34079013:5718923 -g1,18537:32583029,34079013 -) -(1,18537:6630773,34745191:25952256,404226,82312 -h1,18537:6630773,34745191:0,0,0 -g1,18537:7579210,34745191 -g1,18537:8211502,34745191 -g1,18537:8527648,34745191 -g1,18537:8843794,34745191 -g1,18537:9159940,34745191 -g1,18537:9476086,34745191 -g1,18537:10108378,34745191 -g1,18537:10740670,34745191 -g1,18537:13902127,34745191 -g1,18537:15166710,34745191 -g1,18537:15482856,34745191 -g1,18537:15799002,34745191 -g1,18537:16115148,34745191 -g1,18537:16431294,34745191 -g1,18537:16747440,34745191 -g1,18537:17063586,34745191 -g1,18537:17379732,34745191 -g1,18537:17695878,34745191 -g1,18537:18328170,34745191 -g1,18537:18644316,34745191 -g1,18537:18960462,34745191 -g1,18537:19276608,34745191 -g1,18537:19592754,34745191 -g1,18537:19908900,34745191 -g1,18537:20541192,34745191 -g1,18537:20857338,34745191 -g1,18537:21173484,34745191 -g1,18537:21489630,34745191 -g1,18537:22438067,34745191 -g1,18537:22754213,34745191 -g1,18537:23070359,34745191 -g1,18537:23386505,34745191 -g1,18537:23702651,34745191 -g1,18537:24018797,34745191 -g1,18537:24334943,34745191 -g1,18537:24967235,34745191 -k1,18537:24967235,34745191:0 -h1,18537:28128692,34745191:0,0,0 -k1,18537:32583029,34745191:4454337 -g1,18537:32583029,34745191 -) -(1,18537:6630773,35411369:25952256,404226,82312 -h1,18537:6630773,35411369:0,0,0 -g1,18537:7579210,35411369 -g1,18537:8211502,35411369 -g1,18537:8527648,35411369 -g1,18537:8843794,35411369 -g1,18537:9159940,35411369 -g1,18537:9476086,35411369 -g1,18537:10108378,35411369 -g1,18537:10740670,35411369 -g1,18537:13902127,35411369 -g1,18537:15166710,35411369 -g1,18537:15482856,35411369 -g1,18537:15799002,35411369 -g1,18537:16115148,35411369 -g1,18537:16431294,35411369 -g1,18537:16747440,35411369 -g1,18537:17063586,35411369 -g1,18537:17379732,35411369 -g1,18537:17695878,35411369 -g1,18537:18328170,35411369 -g1,18537:18644316,35411369 -g1,18537:18960462,35411369 -g1,18537:19276608,35411369 -g1,18537:19592754,35411369 -g1,18537:19908900,35411369 -g1,18537:20541192,35411369 -g1,18537:20857338,35411369 -g1,18537:21173484,35411369 -g1,18537:21489630,35411369 -g1,18537:22438067,35411369 -g1,18537:22754213,35411369 -g1,18537:23070359,35411369 -g1,18537:23386505,35411369 -g1,18537:23702651,35411369 -g1,18537:24018797,35411369 -g1,18537:24334943,35411369 -g1,18537:24967235,35411369 -k1,18537:24967235,35411369:0 -h1,18537:28128692,35411369:0,0,0 -k1,18537:32583029,35411369:4454337 -g1,18537:32583029,35411369 -) -(1,18537:6630773,36077547:25952256,404226,82312 -h1,18537:6630773,36077547:0,0,0 -g1,18537:7579210,36077547 -g1,18537:8211502,36077547 -g1,18537:8527648,36077547 -g1,18537:8843794,36077547 -g1,18537:9159940,36077547 -g1,18537:9476086,36077547 -g1,18537:10108378,36077547 -g1,18537:10740670,36077547 -g1,18537:13902127,36077547 -g1,18537:15166710,36077547 -g1,18537:15482856,36077547 -g1,18537:15799002,36077547 -g1,18537:16115148,36077547 -g1,18537:16431294,36077547 -g1,18537:16747440,36077547 -g1,18537:17063586,36077547 -g1,18537:17379732,36077547 -g1,18537:17695878,36077547 -g1,18537:18328170,36077547 -g1,18537:18644316,36077547 -g1,18537:18960462,36077547 -g1,18537:19276608,36077547 -g1,18537:19592754,36077547 -g1,18537:19908900,36077547 -g1,18537:20541192,36077547 -g1,18537:20857338,36077547 -g1,18537:21173484,36077547 -g1,18537:22438067,36077547 -g1,18537:22754213,36077547 -g1,18537:23070359,36077547 -g1,18537:23386505,36077547 -g1,18537:23702651,36077547 -g1,18537:24018797,36077547 -g1,18537:24334943,36077547 -g1,18537:24967235,36077547 -k1,18537:24967235,36077547:0 -h1,18537:28128692,36077547:0,0,0 -k1,18537:32583029,36077547:4454337 -g1,18537:32583029,36077547 -) -(1,18537:6630773,36743725:25952256,404226,9436 -h1,18537:6630773,36743725:0,0,0 -g1,18537:7579210,36743725 -g1,18537:8211502,36743725 -g1,18537:9476085,36743725 -g1,18537:11056814,36743725 -g1,18537:11689106,36743725 -g1,18537:13269835,36743725 -h1,18537:14534418,36743725:0,0,0 -k1,18537:32583030,36743725:18048612 -g1,18537:32583030,36743725 -) -] -) -g1,18538:32583029,36753161 -g1,18538:6630773,36753161 -g1,18538:6630773,36753161 -g1,18538:32583029,36753161 -g1,18538:32583029,36753161 -) -h1,18538:6630773,36949769:0,0,0 -(1,18542:6630773,38105829:25952256,505283,126483 -h1,18541:6630773,38105829:983040,0,0 -g1,18541:8440877,38105829 -g1,18541:9843347,38105829 -g1,18541:11583327,38105829 -g1,18541:12801641,38105829 -g1,18541:14712015,38105829 -g1,18541:15902804,38105829 -g1,18541:18910906,38105829 -k1,18542:32583029,38105829:10813443 -g1,18542:32583029,38105829 -) -(1,18544:6630773,38947317:25952256,513147,134348 -h1,18543:6630773,38947317:983040,0,0 -g1,18543:9448165,38947317 -g1,18543:10515746,38947317 -g1,18543:12896669,38947317 -g1,18543:13866601,38947317 -g1,18543:15991933,38947317 -(1,18543:15991933,38947317:0,414482,115847 -r1,18573:17405334,38947317:1413401,530329,115847 -k1,18543:15991933,38947317:-1413401 -) -(1,18543:15991933,38947317:1413401,414482,115847 -k1,18543:15991933,38947317:3277 -h1,18543:17402057,38947317:0,411205,112570 -) -g1,18543:17604563,38947317 -g1,18543:18786832,38947317 -g1,18543:20797476,38947317 -g1,18543:21793623,38947317 -g1,18543:23675817,38947317 -k1,18544:32583029,38947317:7608944 -g1,18544:32583029,38947317 -) -v1,18546:6630773,39928067:0,393216,0 -(1,18573:6630773,45510161:25952256,5975310,196608 -g1,18573:6630773,45510161 -g1,18573:6630773,45510161 -g1,18573:6434165,45510161 -(1,18573:6434165,45510161:0,5975310,196608 -r1,18573:32779637,45510161:26345472,6171918,196608 -k1,18573:6434165,45510161:-26345472 -) -(1,18573:6434165,45510161:26345472,5975310,196608 -[1,18573:6630773,45510161:25952256,5778702,0 -(1,18548:6630773,40141977:25952256,410518,76021 -(1,18547:6630773,40141977:0,0,0 -g1,18547:6630773,40141977 -g1,18547:6630773,40141977 -g1,18547:6303093,40141977 -(1,18547:6303093,40141977:0,0,0 -) -g1,18547:6630773,40141977 -) -g1,18548:10108376,40141977 -g1,18548:11056814,40141977 -g1,18548:15482854,40141977 -g1,18548:16115146,40141977 -h1,18548:23070351,40141977:0,0,0 -k1,18548:32583029,40141977:9512678 -g1,18548:32583029,40141977 -) -(1,18549:6630773,40808155:25952256,404226,6290 -h1,18549:6630773,40808155:0,0,0 -h1,18549:9792230,40808155:0,0,0 -k1,18549:32583030,40808155:22790800 -g1,18549:32583030,40808155 -) -(1,18559:6630773,41513093:25952256,404226,6290 -(1,18551:6630773,41513093:0,0,0 -g1,18551:6630773,41513093 -g1,18551:6630773,41513093 -g1,18551:6303093,41513093 -(1,18551:6303093,41513093:0,0,0 -) -g1,18551:6630773,41513093 -) -g1,18559:7579210,41513093 -g1,18559:8211502,41513093 -g1,18559:8843794,41513093 -g1,18559:11372960,41513093 -g1,18559:12321397,41513093 -g1,18559:12953689,41513093 -h1,18559:13269835,41513093:0,0,0 -k1,18559:32583029,41513093:19313194 -g1,18559:32583029,41513093 -) -(1,18559:6630773,42179271:25952256,379060,7863 -h1,18559:6630773,42179271:0,0,0 -g1,18559:7579210,42179271 -g1,18559:7895356,42179271 -g1,18559:8211502,42179271 -g1,18559:10740668,42179271 -h1,18559:12637542,42179271:0,0,0 -k1,18559:32583030,42179271:19945488 -g1,18559:32583030,42179271 -) -(1,18559:6630773,42845449:25952256,404226,6290 -h1,18559:6630773,42845449:0,0,0 -g1,18559:7579210,42845449 -g1,18559:7895356,42845449 -g1,18559:8211502,42845449 -g1,18559:8527648,42845449 -g1,18559:8843794,42845449 -g1,18559:10740669,42845449 -k1,18559:10740669,42845449:0 -h1,18559:13585980,42845449:0,0,0 -k1,18559:32583028,42845449:18997048 -g1,18559:32583028,42845449 -) -(1,18559:6630773,43511627:25952256,404226,76021 -h1,18559:6630773,43511627:0,0,0 -g1,18559:7579210,43511627 -g1,18559:8211502,43511627 -g1,18559:8527648,43511627 -g1,18559:8843794,43511627 -g1,18559:9159940,43511627 -g1,18559:9476086,43511627 -g1,18559:10740669,43511627 -g1,18559:11372961,43511627 -h1,18559:13585981,43511627:0,0,0 -k1,18559:32583029,43511627:18997048 -g1,18559:32583029,43511627 -) -(1,18559:6630773,44177805:25952256,404226,76021 -h1,18559:6630773,44177805:0,0,0 -g1,18559:7579210,44177805 -g1,18559:8211502,44177805 -g1,18559:8527648,44177805 -g1,18559:8843794,44177805 -g1,18559:9159940,44177805 -g1,18559:9476086,44177805 -g1,18559:10740669,44177805 -g1,18559:11372961,44177805 -h1,18559:13585981,44177805:0,0,0 -k1,18559:32583029,44177805:18997048 -g1,18559:32583029,44177805 -) -(1,18559:6630773,44843983:25952256,404226,76021 -h1,18559:6630773,44843983:0,0,0 -g1,18559:7579210,44843983 -g1,18559:8211502,44843983 -g1,18559:8527648,44843983 -g1,18559:8843794,44843983 -g1,18559:9159940,44843983 -g1,18559:9476086,44843983 -g1,18559:10108378,44843983 -g1,18559:10424524,44843983 -g1,18559:10740670,44843983 -g1,18559:11372962,44843983 -h1,18559:13585982,44843983:0,0,0 -k1,18559:32583030,44843983:18997048 -g1,18559:32583030,44843983 -) -(1,18559:6630773,45510161:25952256,404226,6290 -h1,18559:6630773,45510161:0,0,0 -g1,18559:7579210,45510161 -g1,18559:8211502,45510161 -g1,18559:9476085,45510161 -g1,18559:11056814,45510161 -g1,18559:12005251,45510161 -g1,18559:13585980,45510161 -h1,18559:14850563,45510161:0,0,0 -k1,18559:32583029,45510161:17732466 -g1,18559:32583029,45510161 -) -] -) -g1,18573:32583029,45510161 -g1,18573:6630773,45510161 -g1,18573:6630773,45510161 -g1,18573:32583029,45510161 -g1,18573:32583029,45510161 -) -] -(1,18573:32583029,45706769:0,0,0 -g1,18573:32583029,45706769 -) -) -] -(1,18573:6630773,47279633:25952256,0,0 -h1,18573:6630773,47279633:25952256,0,0 -) -] -(1,18573:4262630,4025873:0,0,0 -[1,18573:-473656,4025873:0,0,0 -(1,18573:-473656,-710413:0,0,0 -(1,18573:-473656,-710413:0,0,0 -g1,18573:-473656,-710413 -) -g1,18573:-473656,-710413 -) -] -) -] -!34775 -}363 -Input:2962:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2963:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2964:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2965:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2966:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2967:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2968:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2969:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2970:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2971:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!932 -{364 -[1,18603:4262630,47279633:28320399,43253760,0 -(1,18603:4262630,4025873:0,0,0 -[1,18603:-473656,4025873:0,0,0 -(1,18603:-473656,-710413:0,0,0 -(1,18603:-473656,-644877:0,0,0 -k1,18603:-473656,-644877:-65536 -) -(1,18603:-473656,4736287:0,0,0 -k1,18603:-473656,4736287:5209943 -) -g1,18603:-473656,-710413 -) -] -) -[1,18603:6630773,47279633:25952256,43253760,0 -[1,18603:6630773,4812305:25952256,786432,0 -(1,18603:6630773,4812305:25952256,513147,126483 -(1,18603:6630773,4812305:25952256,513147,126483 -g1,18603:3078558,4812305 -[1,18603:3078558,4812305:0,0,0 -(1,18603:3078558,2439708:0,1703936,0 -k1,18603:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,18603:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,18603:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 -) -] -) -) -) -] -[1,18603:3078558,4812305:0,0,0 -(1,18603:3078558,2439708:0,1703936,0 -g1,18603:29030814,2439708 -g1,18603:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,18603:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 -) -] -) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,18603:37855564,2439708:1179648,16384,0 -) -) -k1,18603:3078556,2439708:-34777008 -) -] -[1,18603:3078558,4812305:0,0,0 -(1,18603:3078558,49800853:0,16384,2228224 -k1,18603:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,18603:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,18603:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 -) -] -) -) -) -] -[1,18603:3078558,4812305:0,0,0 -(1,18603:3078558,49800853:0,16384,2228224 -g1,18603:29030814,49800853 -g1,18603:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,18603:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 -) -] -) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,18603:37855564,49800853:1179648,16384,0 -) -) -k1,18603:3078556,49800853:-34777008 -) -] -g1,18603:6630773,4812305 -g1,18603:6630773,4812305 -g1,18603:9235173,4812305 -g1,18603:10666479,4812305 -k1,18603:31387651,4812305:20721172 -) -) -] -[1,18603:6630773,45706769:25952256,40108032,0 -(1,18603:6630773,45706769:25952256,40108032,0 -(1,18603:6630773,45706769:0,0,0 -g1,18603:6630773,45706769 -) -[1,18603:6630773,45706769:25952256,40108032,0 -v1,18573:6630773,6254097:0,393216,0 -(1,18573:6630773,11869257:25952256,6008376,196608 -g1,18573:6630773,11869257 -g1,18573:6630773,11869257 -g1,18573:6434165,11869257 -(1,18573:6434165,11869257:0,6008376,196608 -r1,18603:32779637,11869257:26345472,6204984,196608 -k1,18573:6434165,11869257:-26345472 -) -(1,18573:6434165,11869257:26345472,6008376,196608 -[1,18573:6630773,11869257:25952256,5811768,0 -(1,18561:6630773,6468007:25952256,410518,76021 -(1,18560:6630773,6468007:0,0,0 -g1,18560:6630773,6468007 -g1,18560:6630773,6468007 -g1,18560:6303093,6468007 -(1,18560:6303093,6468007:0,0,0 -) -g1,18560:6630773,6468007 -) -g1,18561:10108376,6468007 -g1,18561:11056814,6468007 -k1,18561:11056814,6468007:0 -h1,18561:17695873,6468007:0,0,0 -k1,18561:32583029,6468007:14887156 -g1,18561:32583029,6468007 -) -(1,18562:6630773,7134185:25952256,404226,6290 -h1,18562:6630773,7134185:0,0,0 -h1,18562:9792230,7134185:0,0,0 -k1,18562:32583030,7134185:22790800 -g1,18562:32583030,7134185 -) -(1,18572:6630773,7865899:25952256,404226,6290 -(1,18564:6630773,7865899:0,0,0 -g1,18564:6630773,7865899 -g1,18564:6630773,7865899 -g1,18564:6303093,7865899 -(1,18564:6303093,7865899:0,0,0 -) -g1,18564:6630773,7865899 -) -g1,18572:7579210,7865899 -g1,18572:8211502,7865899 -g1,18572:8843794,7865899 -g1,18572:11372960,7865899 -g1,18572:12321397,7865899 -g1,18572:12953689,7865899 -h1,18572:13269835,7865899:0,0,0 -k1,18572:32583029,7865899:19313194 -g1,18572:32583029,7865899 -) -(1,18572:6630773,8532077:25952256,379060,7863 -h1,18572:6630773,8532077:0,0,0 -g1,18572:7579210,8532077 -g1,18572:7895356,8532077 -g1,18572:8211502,8532077 -g1,18572:10740668,8532077 -h1,18572:12637542,8532077:0,0,0 -k1,18572:32583030,8532077:19945488 -g1,18572:32583030,8532077 -) -(1,18572:6630773,9198255:25952256,410518,6290 -h1,18572:6630773,9198255:0,0,0 -g1,18572:7579210,9198255 -g1,18572:7895356,9198255 -g1,18572:8211502,9198255 -g1,18572:8527648,9198255 -g1,18572:8843794,9198255 -g1,18572:10740669,9198255 -k1,18572:10740669,9198255:0 -h1,18572:12321398,9198255:0,0,0 -k1,18572:32583030,9198255:20261632 -g1,18572:32583030,9198255 -) -(1,18572:6630773,9864433:25952256,404226,9436 -h1,18572:6630773,9864433:0,0,0 -g1,18572:7579210,9864433 -g1,18572:8211502,9864433 -g1,18572:8527648,9864433 -g1,18572:8843794,9864433 -g1,18572:9159940,9864433 -g1,18572:9476086,9864433 -g1,18572:10740669,9864433 -h1,18572:12321397,9864433:0,0,0 -k1,18572:32583029,9864433:20261632 -g1,18572:32583029,9864433 -) -(1,18572:6630773,10530611:25952256,404226,9436 -h1,18572:6630773,10530611:0,0,0 -g1,18572:7579210,10530611 -g1,18572:8211502,10530611 -g1,18572:8527648,10530611 -g1,18572:8843794,10530611 -g1,18572:9159940,10530611 -g1,18572:9476086,10530611 -g1,18572:10740669,10530611 -h1,18572:12321397,10530611:0,0,0 -k1,18572:32583029,10530611:20261632 -g1,18572:32583029,10530611 -) -(1,18572:6630773,11196789:25952256,404226,9436 -h1,18572:6630773,11196789:0,0,0 -g1,18572:7579210,11196789 -g1,18572:8211502,11196789 -g1,18572:8527648,11196789 -g1,18572:8843794,11196789 -g1,18572:9159940,11196789 -g1,18572:9476086,11196789 -g1,18572:10108378,11196789 -g1,18572:10424524,11196789 -g1,18572:10740670,11196789 -h1,18572:12321398,11196789:0,0,0 -k1,18572:32583030,11196789:20261632 -g1,18572:32583030,11196789 -) -(1,18572:6630773,11862967:25952256,404226,6290 -h1,18572:6630773,11862967:0,0,0 -g1,18572:7579210,11862967 -g1,18572:8211502,11862967 -g1,18572:9476085,11862967 -g1,18572:11056814,11862967 -g1,18572:12005251,11862967 -g1,18572:13585980,11862967 -h1,18572:14850563,11862967:0,0,0 -k1,18572:32583029,11862967:17732466 -g1,18572:32583029,11862967 -) -] -) -g1,18573:32583029,11869257 -g1,18573:6630773,11869257 -g1,18573:6630773,11869257 -g1,18573:32583029,11869257 -g1,18573:32583029,11869257 -) -h1,18573:6630773,12065865:0,0,0 -v1,18577:6630773,13955929:0,393216,0 -(1,18578:6630773,17906436:25952256,4343723,616038 -g1,18578:6630773,17906436 -(1,18578:6630773,17906436:25952256,4343723,616038 -(1,18578:6630773,18522474:25952256,4959761,0 -[1,18578:6630773,18522474:25952256,4959761,0 -(1,18578:6630773,18496260:25952256,4907333,0 -r1,18603:6656987,18496260:26214,4907333,0 -[1,18578:6656987,18496260:25899828,4907333,0 -(1,18578:6656987,17906436:25899828,3727685,0 -[1,18578:7246811,17906436:24720180,3727685,0 -(1,18578:7246811,15266125:24720180,1087374,126483 -k1,18577:8735203,15266125:278689 -k1,18577:11896165,15266125:278689 -k1,18577:13193940,15266125:278690 -k1,18577:15483274,15266125:278689 -k1,18577:18540690,15266125:278689 -k1,18577:19580907,15266125:278689 -k1,18577:22621939,15266125:278689 -(1,18577:22621939,15266125:0,452978,115847 -r1,18603:24035340,15266125:1413401,568825,115847 -k1,18577:22621939,15266125:-1413401 -) -(1,18577:22621939,15266125:1413401,452978,115847 -k1,18577:22621939,15266125:3277 -h1,18577:24032063,15266125:0,411205,112570 -) -k1,18577:24314030,15266125:278690 -k1,18577:27618516,15266125:278689 -k1,18577:29595243,15266125:278689 -k1,18577:31966991,15266125:0 -) -(1,18578:7246811,16107613:24720180,513147,126483 -k1,18577:8138331,16107613:240092 -k1,18577:9397509,16107613:240093 -k1,18577:11291074,16107613:240092 -k1,18577:12514206,16107613:240092 -k1,18577:13563668,16107613:240092 -k1,18577:15322230,16107613:240093 -k1,18577:16711168,16107613:240092 -(1,18577:16711168,16107613:0,452978,115847 -r1,18603:19179705,16107613:2468537,568825,115847 -k1,18577:16711168,16107613:-2468537 -) -(1,18577:16711168,16107613:2468537,452978,115847 -k1,18577:16711168,16107613:3277 -h1,18577:19176428,16107613:0,411205,112570 -) -k1,18577:19593467,16107613:240092 -(1,18577:19593467,16107613:0,452978,115847 -r1,18603:21358580,16107613:1765113,568825,115847 -k1,18577:19593467,16107613:-1765113 -) -(1,18577:19593467,16107613:1765113,452978,115847 -k1,18577:19593467,16107613:3277 -h1,18577:21355303,16107613:0,411205,112570 -) -k1,18577:21598672,16107613:240092 -k1,18577:23030210,16107613:240093 -(1,18577:23030210,16107613:0,452978,115847 -r1,18603:25498747,16107613:2468537,568825,115847 -k1,18577:23030210,16107613:-2468537 -) -(1,18577:23030210,16107613:2468537,452978,115847 -k1,18577:23030210,16107613:3277 -h1,18577:25495470,16107613:0,411205,112570 -) -k1,18577:25738839,16107613:240092 -k1,18577:26665093,16107613:240092 -k1,18577:28486569,16107613:240092 -k1,18577:29342700,16107613:240093 -k1,18577:31041623,16107613:240092 -k1,18578:31966991,16107613:0 -) -(1,18578:7246811,16949101:24720180,513147,126483 -k1,18577:10587175,16949101:234613 -k1,18577:11299544,16949101:234612 -k1,18577:12704630,16949101:234613 -k1,18577:13930802,16949101:234612 -k1,18577:16088241,16949101:234613 -k1,18577:17608670,16949101:234613 -k1,18577:18935767,16949101:234612 -(1,18577:18935767,16949101:0,452978,115847 -r1,18603:23162863,16949101:4227096,568825,115847 -k1,18577:18935767,16949101:-4227096 -) -(1,18577:18935767,16949101:4227096,452978,115847 -k1,18577:18935767,16949101:3277 -h1,18577:23159586,16949101:0,411205,112570 -) -k1,18577:23571146,16949101:234613 -(1,18577:23571146,16949101:0,452978,115847 -r1,18603:25687971,16949101:2116825,568825,115847 -k1,18577:23571146,16949101:-2116825 -) -(1,18577:23571146,16949101:2116825,452978,115847 -k1,18577:23571146,16949101:3277 -h1,18577:25684694,16949101:0,411205,112570 -) -k1,18577:26096253,16949101:234612 -(1,18577:26096253,16949101:0,452978,115847 -r1,18603:27861366,16949101:1765113,568825,115847 -k1,18577:26096253,16949101:-1765113 -) -(1,18577:26096253,16949101:1765113,452978,115847 -k1,18577:26096253,16949101:3277 -h1,18577:27858089,16949101:0,411205,112570 -) -k1,18577:28269649,16949101:234613 -(1,18577:28269649,16949101:0,452978,115847 -r1,18603:31793321,16949101:3523672,568825,115847 -k1,18577:28269649,16949101:-3523672 -) -(1,18577:28269649,16949101:3523672,452978,115847 -k1,18577:28269649,16949101:3277 -h1,18577:31790044,16949101:0,411205,112570 -) -k1,18578:31966991,16949101:0 -) -(1,18578:7246811,17790589:24720180,505283,115847 -(1,18577:7246811,17790589:0,452978,115847 -r1,18603:9363636,17790589:2116825,568825,115847 -k1,18577:7246811,17790589:-2116825 -) -(1,18577:7246811,17790589:2116825,452978,115847 -k1,18577:7246811,17790589:3277 -h1,18577:9360359,17790589:0,411205,112570 -) -g1,18577:9562865,17790589 -g1,18577:10953539,17790589 -(1,18577:10953539,17790589:0,452978,115847 -r1,18603:13070364,17790589:2116825,568825,115847 -k1,18577:10953539,17790589:-2116825 -) -(1,18577:10953539,17790589:2116825,452978,115847 -k1,18577:10953539,17790589:3277 -h1,18577:13067087,17790589:0,411205,112570 -) -k1,18578:31966990,17790589:18722956 -g1,18578:31966990,17790589 -) -] -) -] -r1,18603:32583029,18496260:26214,4907333,0 -) -] -) -) -g1,18578:32583029,17906436 -) -h1,18578:6630773,18522474:0,0,0 -v1,18581:6630773,19888250:0,393216,0 -(1,18582:6630773,22881422:25952256,3386388,616038 -g1,18582:6630773,22881422 -(1,18582:6630773,22881422:25952256,3386388,616038 -(1,18582:6630773,23497460:25952256,4002426,0 -[1,18582:6630773,23497460:25952256,4002426,0 -(1,18582:6630773,23471246:25952256,3949998,0 -r1,18603:6656987,23471246:26214,3949998,0 -[1,18582:6656987,23471246:25899828,3949998,0 -(1,18582:6656987,22881422:25899828,2770350,0 -[1,18582:7246811,22881422:24720180,2770350,0 -(1,18582:7246811,21198446:24720180,1087374,134348 -k1,18581:8654483,21198446:197969 -k1,18581:9330208,21198446:197968 -k1,18581:10698650,21198446:197969 -k1,18581:11989104,21198446:197969 -k1,18581:12869957,21198446:197968 -k1,18581:14543141,21198446:197969 -k1,18581:15357148,21198446:197969 -k1,18581:16574201,21198446:197968 -k1,18581:18135974,21198446:197969 -k1,18581:19847169,21198446:197969 -k1,18581:21747107,21198446:197968 -k1,18581:25029200,21198446:197969 -k1,18581:27986235,21198446:197969 -k1,18581:28867088,21198446:197968 -k1,18581:29420917,21198446:197969 -k1,18582:31966991,21198446:0 -) -(1,18582:7246811,22039934:24720180,513147,134348 -k1,18581:10125043,22039934:261379 -k1,18581:13228719,22039934:261380 -k1,18581:14636323,22039934:261379 -k1,18581:17236026,22039934:261379 -k1,18581:18884147,22039934:261379 -k1,18581:20093178,22039934:261380 -k1,18581:22046697,22039934:261379 -k1,18581:23328472,22039934:261379 -k1,18581:24903193,22039934:261379 -k1,18581:26356018,22039934:261380 -k1,18581:28799091,22039934:261379 -k1,18581:30699525,22039934:261379 -k1,18582:31966991,22039934:0 -) -(1,18582:7246811,22881422:24720180,473825,0 -k1,18582:31966992,22881422:24131668 -g1,18582:31966992,22881422 -) -] -) -] -r1,18603:32583029,23471246:26214,3949998,0 -) -] -) -) -g1,18582:32583029,22881422 -) -h1,18582:6630773,23497460:0,0,0 -(1,18585:6630773,26829316:25952256,32768,229376 -(1,18585:6630773,26829316:0,32768,229376 -(1,18585:6630773,26829316:5505024,32768,229376 -r1,18603:12135797,26829316:5505024,262144,229376 -) -k1,18585:6630773,26829316:-5505024 -) -(1,18585:6630773,26829316:25952256,32768,0 -r1,18603:32583029,26829316:25952256,32768,0 -) -) -(1,18585:6630773,28433644:25952256,615776,14155 -(1,18585:6630773,28433644:2464678,582746,14155 -g1,18585:6630773,28433644 -g1,18585:9095451,28433644 -) -g1,18585:12351280,28433644 -k1,18585:32583030,28433644:18593612 -g1,18585:32583030,28433644 -) -(1,18589:6630773,29668348:25952256,513147,134348 -k1,18588:7483875,29668348:225267 -k1,18588:9401283,29668348:225268 -k1,18588:11534303,29668348:225267 -k1,18588:14740148,29668348:225268 -k1,18588:18473557,29668348:225267 -k1,18588:19890269,29668348:225267 -k1,18588:24273141,29668348:225268 -k1,18588:26888480,29668348:225241 -k1,18588:27645244,29668348:225267 -k1,18588:28226372,29668348:225268 -k1,18588:29805613,29668348:225267 -k1,18588:32583029,29668348:0 -) -(1,18589:6630773,30509836:25952256,513147,134348 -k1,18588:9023001,30509836:211845 -k1,18588:10182497,30509836:211845 -k1,18588:11413427,30509836:211845 -k1,18588:14578325,30509836:211846 -k1,18588:15449462,30509836:211845 -k1,18588:17224341,30509836:211845 -k1,18588:17906079,30509836:211845 -k1,18588:18649421,30509836:211845 -k1,18588:20147082,30509836:211845 -k1,18588:21872153,30509836:211845 -k1,18588:22700036,30509836:211845 -k1,18588:24613852,30509836:211846 -k1,18588:27525125,30509836:211845 -k1,18588:28353008,30509836:211845 -k1,18588:30450324,30509836:211845 -k1,18588:32051532,30509836:211845 -k1,18588:32583029,30509836:0 -) -(1,18589:6630773,31351324:25952256,513147,134348 -k1,18588:10230830,31351324:200049 -k1,18588:11082306,31351324:200048 -k1,18588:11638215,31351324:200049 -k1,18588:13122769,31351324:200048 -k1,18588:13982110,31351324:200049 -k1,18588:17242689,31351324:200048 -k1,18588:18588963,31351324:200049 -k1,18588:20182963,31351324:200049 -k1,18588:21772374,31351324:200048 -k1,18588:23384724,31351324:200049 -k1,18588:25152393,31351324:200048 -k1,18588:28765557,31351324:200049 -k1,18588:32583029,31351324:0 -) -(1,18589:6630773,32192812:25952256,513147,134348 -k1,18588:8300586,32192812:156587 -k1,18588:9108601,32192812:156587 -k1,18588:11049079,32192812:156588 -k1,18588:12689401,32192812:156587 -k1,18588:16459643,32192812:156587 -k1,18588:19006286,32192812:156545 -k1,18588:20476215,32192812:156587 -k1,18588:21624362,32192812:156587 -k1,18588:23802735,32192812:156587 -k1,18588:25031491,32192812:156587 -k1,18588:26280563,32192812:156587 -k1,18588:26793011,32192812:156588 -k1,18588:29129981,32192812:156587 -k1,18588:30571074,32192812:156587 -k1,18588:32583029,32192812:0 -) -(1,18589:6630773,33034300:25952256,513147,134348 -k1,18588:7851507,33034300:201649 -k1,18588:10400656,33034300:201649 -k1,18588:11261597,33034300:201649 -k1,18588:14432683,33034300:201650 -k1,18588:17946522,33034300:201649 -k1,18588:19599793,33034300:201649 -k1,18588:22312782,33034300:201649 -k1,18588:25194854,33034300:201649 -k1,18588:26790454,33034300:201649 -k1,18588:28011189,33034300:201650 -k1,18588:29602201,33034300:201649 -k1,18588:31409482,33034300:201649 -k1,18588:32227169,33034300:201649 -k1,18588:32583029,33034300:0 -) -(1,18589:6630773,33875788:25952256,513147,134348 -k1,18588:11451470,33875788:142082 -k1,18588:12784997,33875788:142082 -k1,18588:17129903,33875788:142082 -k1,18588:19626038,33875788:142082 -k1,18588:21653590,33875788:142081 -k1,18588:22327169,33875788:142082 -k1,18588:23999517,33875788:142082 -k1,18588:25089250,33875788:142082 -k1,18588:28184384,33875788:142082 -k1,18588:28985758,33875788:142082 -k1,18588:32583029,33875788:0 -) -(1,18589:6630773,34717276:25952256,505283,134348 -g1,18588:8400900,34717276 -g1,18588:9989492,34717276 -g1,18588:11453566,34717276 -g1,18588:14777552,34717276 -g1,18588:15786151,34717276 -g1,18588:16341240,34717276 -g1,18588:18666457,34717276 -g1,18588:19548571,34717276 -g1,18588:24809146,34717276 -k1,18589:32583029,34717276:6315707 -g1,18589:32583029,34717276 -) -(1,18591:6630773,35558764:25952256,513147,126483 -h1,18590:6630773,35558764:983040,0,0 -g1,18590:10635678,35558764 -g1,18590:13924930,35558764 -g1,18590:14810321,35558764 -k1,18591:32583029,35558764:15283651 -g1,18591:32583029,35558764 -) -(1,18593:7202902,36924540:24807998,513147,134348 -(1,18591:7202902,36924540:0,0,0 -g1,18591:7202902,36924540 -g1,18591:5892182,36924540 -g1,18591:5564502,36924540 -(1,18591:5564502,36924540:1310720,0,0 -k1,18591:6875222,36924540:1310720 -) -g1,18591:7202902,36924540 -) -k1,18592:7202902,36924540:0 -k1,18592:9999136,36924540:406136 -k1,18592:10936977,36924540:406344 -k1,18592:11699181,36924540:406344 -k1,18592:13040068,36924540:406344 -k1,18592:14105705,36924540:406345 -k1,18592:17271115,36924540:406344 -k1,18592:20295622,36924540:406344 -k1,18592:22476681,36924540:406344 -k1,18592:25566724,36924540:406344 -k1,18592:27164513,36924540:406344 -k1,18592:32010900,36924540:0 -) -(1,18593:7202902,37766028:24807998,513147,126483 -k1,18592:14266591,37766028:156194 -k1,18592:15812148,37766028:156194 -k1,18592:18479026,37766028:156194 -k1,18592:19919726,37766028:156194 -k1,18592:22602333,37766028:156194 -k1,18592:23777612,37766028:156194 -k1,18592:26700081,37766028:156194 -k1,18592:29060906,37766028:156194 -k1,18592:30408545,37766028:156194 -k1,18593:32010900,37766028:0 -) -(1,18593:7202902,38607516:24807998,513147,134348 -g1,18592:8392380,38607516 -g1,18592:9250901,38607516 -g1,18592:13983911,38607516 -g1,18592:17032645,38607516 -k1,18593:32010900,38607516:13415221 -g1,18593:32010900,38607516 -) -(1,18596:6630773,39973292:25952256,513147,134348 -h1,18595:6630773,39973292:983040,0,0 -k1,18595:8743006,39973292:311304 -k1,18595:12502159,39973292:311304 -k1,18595:15203448,39973292:311191 -k1,18595:16828094,39973292:311304 -k1,18595:18130958,39973292:311304 -k1,18595:20186830,39973292:311304 -k1,18595:20956231,39973292:311304 -k1,18595:21799032,39973292:311304 -k1,18595:23694341,39973292:311304 -k1,18595:25290150,39973292:311303 -k1,18595:26059551,39973292:311304 -k1,18595:26902352,39973292:311304 -k1,18595:29843616,39973292:311304 -k1,18595:30806348,39973292:311304 -k1,18596:32583029,39973292:0 -) -(1,18596:6630773,40814780:25952256,513147,134348 -k1,18595:8527440,40814780:167827 -k1,18595:10107568,40814780:167827 -k1,18595:11294479,40814780:167826 -k1,18595:12851669,40814780:167827 -k1,18595:14587117,40814780:167827 -k1,18595:17947858,40814780:167827 -k1,18595:20957326,40814780:167827 -k1,18595:22519104,40814780:167827 -k1,18595:25712727,40814780:167826 -k1,18595:26496592,40814780:167827 -k1,18595:29574873,40814780:167827 -k1,18595:31900144,40814780:167827 -k1,18595:32583029,40814780:0 -) -(1,18596:6630773,41656268:25952256,513147,134348 -k1,18595:10154088,41656268:197364 -k1,18595:11275510,41656268:197364 -k1,18595:12491959,41656268:197364 -k1,18595:14391293,41656268:197364 -k1,18595:16368615,41656268:197364 -k1,18595:17769220,41656268:197364 -k1,18595:20292458,41656268:197365 -k1,18595:21774328,41656268:197364 -k1,18595:24665222,41656268:197364 -k1,18595:25514014,41656268:197364 -k1,18595:27413348,41656268:197364 -k1,18595:29000075,41656268:197364 -k1,18595:30180479,41656268:197364 -k1,18595:32583029,41656268:0 -) -(1,18596:6630773,42497756:25952256,513147,134348 -k1,18595:10440938,42497756:231899 -k1,18595:13075387,42497756:231899 -k1,18595:13663146,42497756:231899 -k1,18595:16285110,42497756:231866 -k1,18595:17500049,42497756:231899 -k1,18595:18263445,42497756:231899 -k1,18595:20072796,42497756:231899 -k1,18595:20920733,42497756:231899 -k1,18595:22325071,42497756:231899 -k1,18595:23239855,42497756:231899 -k1,18595:25121951,42497756:231899 -k1,18595:28764344,42497756:231899 -k1,18595:31563944,42497756:231899 -k1,18595:32583029,42497756:0 -) -(1,18596:6630773,43339244:25952256,513147,134348 -k1,18595:7960974,43339244:173491 -k1,18595:10537016,43339244:173492 -k1,18595:13679943,43339244:173491 -k1,18595:17165625,43339244:173492 -k1,18595:18358201,43339244:173491 -k1,18595:21373334,43339244:173492 -k1,18595:22738270,43339244:173491 -k1,18595:25037750,43339244:173492 -k1,18595:26669417,43339244:173491 -k1,18595:28034354,43339244:173492 -k1,18595:30180479,43339244:173491 -k1,18595:32583029,43339244:0 -) -(1,18596:6630773,44180732:25952256,513147,7863 -g1,18595:7849087,44180732 -g1,18595:9437679,44180732 -g1,18595:10296200,44180732 -k1,18596:32583029,44180732:19669976 -g1,18596:32583029,44180732 -) -] -(1,18603:32583029,45706769:0,0,0 -g1,18603:32583029,45706769 -) -) -] -(1,18603:6630773,47279633:25952256,0,0 -h1,18603:6630773,47279633:25952256,0,0 -) -] -(1,18603:4262630,4025873:0,0,0 -[1,18603:-473656,4025873:0,0,0 -(1,18603:-473656,-710413:0,0,0 -(1,18603:-473656,-710413:0,0,0 -g1,18603:-473656,-710413 -) -g1,18603:-473656,-710413 -) -] -) -] -!21939 -}364 -Input:2972:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2973:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2974:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2975:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2976:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2977:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2978:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!656 -{365 -[1,18668:4262630,47279633:28320399,43253760,0 -(1,18668:4262630,4025873:0,0,0 -[1,18668:-473656,4025873:0,0,0 -(1,18668:-473656,-710413:0,0,0 -(1,18668:-473656,-644877:0,0,0 -k1,18668:-473656,-644877:-65536 -) -(1,18668:-473656,4736287:0,0,0 -k1,18668:-473656,4736287:5209943 -) -g1,18668:-473656,-710413 -) -] -) -[1,18668:6630773,47279633:25952256,43253760,0 -[1,18668:6630773,4812305:25952256,786432,0 -(1,18668:6630773,4812305:25952256,505283,126483 -(1,18668:6630773,4812305:25952256,505283,126483 -g1,18668:3078558,4812305 -[1,18668:3078558,4812305:0,0,0 -(1,18668:3078558,2439708:0,1703936,0 -k1,18668:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,18668:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,18668:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 -) -] -) -) -) -] -[1,18668:3078558,4812305:0,0,0 -(1,18668:3078558,2439708:0,1703936,0 -g1,18668:29030814,2439708 -g1,18668:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,18668:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 -) -] -) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,18668:37855564,2439708:1179648,16384,0 -) -) -k1,18668:3078556,2439708:-34777008 -) -] -[1,18668:3078558,4812305:0,0,0 -(1,18668:3078558,49800853:0,16384,2228224 -k1,18668:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,18668:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,18668:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 -) -] -) -) -) -] -[1,18668:3078558,4812305:0,0,0 -(1,18668:3078558,49800853:0,16384,2228224 -g1,18668:29030814,49800853 -g1,18668:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,18668:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 -) -] -) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,18668:37855564,49800853:1179648,16384,0 -) -) -k1,18668:3078556,49800853:-34777008 -) -] -g1,18668:6630773,4812305 -k1,18668:25146660,4812305:17320510 -g1,18668:26880087,4812305 -g1,18668:29193507,4812305 -g1,18668:30603186,4812305 -) -) -] -[1,18668:6630773,45706769:25952256,40108032,0 -(1,18668:6630773,45706769:25952256,40108032,0 -(1,18668:6630773,45706769:0,0,0 -g1,18668:6630773,45706769 -) -[1,18668:6630773,45706769:25952256,40108032,0 -(1,18597:6630773,6254097:25952256,564462,12975 -(1,18597:6630773,6254097:2899444,534184,12975 -g1,18597:6630773,6254097 -g1,18597:9530217,6254097 -) -k1,18597:32583030,6254097:20576536 -g1,18597:32583030,6254097 -) -(1,18602:6630773,7488801:25952256,513147,134348 -k1,18601:9319665,7488801:153959 -k1,18601:11631067,7488801:153958 -k1,18601:14641740,7488801:153959 -k1,18601:17198249,7488801:153959 -k1,18601:18011500,7488801:153959 -k1,18601:19478800,7488801:153958 -k1,18601:21368152,7488801:153959 -k1,18601:23834176,7488801:153914 -k1,18601:26321872,7488801:153959 -k1,18601:26874289,7488801:153958 -k1,18601:27711133,7488801:153959 -k1,18601:29898674,7488801:153959 -k1,18601:32583029,7488801:0 -) -(1,18602:6630773,8330289:25952256,513147,134348 -k1,18601:9920493,8330289:169551 -k1,18601:10706082,8330289:169551 -k1,18601:13033077,8330289:169551 -k1,18601:14268899,8330289:169551 -k1,18601:15814051,8330289:169551 -k1,18601:17665256,8330289:169551 -k1,18601:20237357,8330289:169551 -k1,18601:21598353,8330289:169551 -k1,18601:24025619,8330289:169551 -k1,18601:24854462,8330289:169551 -k1,18601:26720740,8330289:169551 -k1,18601:28377303,8330289:169551 -k1,18601:29619023,8330289:169551 -k1,18601:31074390,8330289:169551 -k1,18601:32583029,8330289:0 -) -(1,18602:6630773,9171777:25952256,513147,7863 -k1,18602:32583030,9171777:21754676 -g1,18602:32583030,9171777 -) -(1,18604:6630773,10013265:25952256,513147,102891 -h1,18603:6630773,10013265:983040,0,0 -k1,18603:8746930,10013265:179568 -k1,18603:10232632,10013265:179569 -k1,18603:11824501,10013265:179568 -k1,18603:14973506,10013265:179569 -k1,18603:15804502,10013265:179568 -k1,18603:18007823,10013265:179569 -k1,18603:18958094,10013265:179568 -k1,18603:20886819,10013265:179569 -k1,18603:21725679,10013265:179568 -k1,18603:22924333,10013265:179569 -k1,18603:24086941,10013265:179568 -k1,18603:27189416,10013265:179569 -k1,18603:28560429,10013265:179568 -k1,18603:29356036,10013265:179569 -k1,18603:32583029,10013265:0 -) -(1,18604:6630773,10854753:25952256,513147,126483 -k1,18603:8788144,10854753:298115 -k1,18603:10498560,10854753:298115 -k1,18603:11152535,10854753:298115 -k1,18603:13530762,10854753:298114 -k1,18603:14488169,10854753:298115 -k1,18603:15805369,10854753:298115 -k1,18603:17666518,10854753:298115 -k1,18603:19443781,10854753:298115 -(1,18603:19443781,10854753:0,452978,115847 -r1,18668:21912318,10854753:2468537,568825,115847 -k1,18603:19443781,10854753:-2468537 -) -(1,18603:19443781,10854753:2468537,452978,115847 -k1,18603:19443781,10854753:3277 -h1,18603:21909041,10854753:0,411205,112570 -) -k1,18603:22210433,10854753:298115 -k1,18603:23376900,10854753:298115 -k1,18603:24779297,10854753:298115 -k1,18603:26343567,10854753:298114 -k1,18603:27707953,10854753:298115 -k1,18603:29025153,10854753:298115 -k1,18603:31391584,10854753:298115 -k1,18603:32583029,10854753:0 -) -(1,18604:6630773,11696241:25952256,513147,134348 -k1,18603:11465186,11696241:206260 -k1,18603:12330737,11696241:206259 -k1,18603:13556082,11696241:206260 -k1,18603:16603982,11696241:206259 -k1,18603:18001687,11696241:206260 -k1,18603:21490644,11696241:206259 -k1,18603:22324739,11696241:206260 -k1,18603:23734239,11696241:206259 -k1,18603:26775586,11696241:206260 -k1,18603:27850197,11696241:206259 -k1,18603:29468758,11696241:206260 -k1,18603:32583029,11696241:0 -) -(1,18604:6630773,12537729:25952256,513147,134348 -g1,18603:9586446,12537729 -g1,18603:10733326,12537729 -g1,18603:13785993,12537729 -g1,18603:20040749,12537729 -k1,18604:32583029,12537729:10773463 -g1,18604:32583029,12537729 -) -(1,18606:6630773,13379217:25952256,513147,126483 -h1,18605:6630773,13379217:983040,0,0 -g1,18605:8766591,13379217 -g1,18605:10271953,13379217 -g1,18605:12048634,13379217 -g1,18605:12603723,13379217 -g1,18605:16309128,13379217 -g1,18605:17159785,13379217 -g1,18605:18378099,13379217 -g1,18605:19560368,13379217 -g1,18605:21153548,13379217 -g1,18605:24048273,13379217 -(1,18605:24048273,13379217:0,452978,115847 -r1,18668:27220233,13379217:3171960,568825,115847 -k1,18605:24048273,13379217:-3171960 -) -(1,18605:24048273,13379217:3171960,452978,115847 -k1,18605:24048273,13379217:3277 -h1,18605:27216956,13379217:0,411205,112570 -) -k1,18606:32583029,13379217:5189126 -g1,18606:32583029,13379217 -) -v1,18608:6630773,14473302:0,393216,0 -(1,18632:6630773,26826264:25952256,12746178,196608 -g1,18632:6630773,26826264 -g1,18632:6630773,26826264 -g1,18632:6434165,26826264 -(1,18632:6434165,26826264:0,12746178,196608 -r1,18668:32779637,26826264:26345472,12942786,196608 -k1,18632:6434165,26826264:-26345472 -) -(1,18632:6434165,26826264:26345472,12746178,196608 -[1,18632:6630773,26826264:25952256,12549570,0 -(1,18610:6630773,14687212:25952256,410518,101187 -(1,18609:6630773,14687212:0,0,0 -g1,18609:6630773,14687212 -g1,18609:6630773,14687212 -g1,18609:6303093,14687212 -(1,18609:6303093,14687212:0,0,0 -) -g1,18609:6630773,14687212 -) -g1,18610:11056813,14687212 -g1,18610:12005251,14687212 -k1,18610:12005251,14687212:0 -h1,18610:24334933,14687212:0,0,0 -k1,18610:32583029,14687212:8248096 -g1,18610:32583029,14687212 -) -(1,18611:6630773,15353390:25952256,404226,82312 -h1,18611:6630773,15353390:0,0,0 -g1,18611:12637542,15353390 -g1,18611:15798999,15353390 -g1,18611:16431291,15353390 -h1,18611:17063583,15353390:0,0,0 -k1,18611:32583029,15353390:15519446 -g1,18611:32583029,15353390 -) -(1,18631:6630773,16085104:25952256,410518,9436 -(1,18613:6630773,16085104:0,0,0 -g1,18613:6630773,16085104 -g1,18613:6630773,16085104 -g1,18613:6303093,16085104 -(1,18613:6303093,16085104:0,0,0 -) -g1,18613:6630773,16085104 -) -g1,18631:7579210,16085104 -g1,18631:9159939,16085104 -g1,18631:10108376,16085104 -h1,18631:10740667,16085104:0,0,0 -k1,18631:32583029,16085104:21842362 -g1,18631:32583029,16085104 -) -(1,18631:6630773,16751282:25952256,410518,101187 -h1,18631:6630773,16751282:0,0,0 -g1,18631:7579210,16751282 -g1,18631:7895356,16751282 -g1,18631:8527648,16751282 -g1,18631:11372959,16751282 -g1,18631:11689105,16751282 -g1,18631:12005251,16751282 -g1,18631:12637543,16751282 -g1,18631:13902126,16751282 -h1,18631:23386496,16751282:0,0,0 -k1,18631:32583029,16751282:9196533 -g1,18631:32583029,16751282 -) -(1,18631:6630773,17417460:25952256,410518,107478 -h1,18631:6630773,17417460:0,0,0 -g1,18631:7579210,17417460 -g1,18631:7895356,17417460 -g1,18631:8527648,17417460 -g1,18631:11372959,17417460 -g1,18631:11689105,17417460 -g1,18631:12005251,17417460 -g1,18631:12637543,17417460 -g1,18631:14218272,17417460 -h1,18631:15799000,17417460:0,0,0 -k1,18631:32583028,17417460:16784028 -g1,18631:32583028,17417460 -) -(1,18631:6630773,18083638:25952256,410518,31456 -h1,18631:6630773,18083638:0,0,0 -g1,18631:7579210,18083638 -g1,18631:7895356,18083638 -g1,18631:8527648,18083638 -g1,18631:9476085,18083638 -g1,18631:9792231,18083638 -g1,18631:10108377,18083638 -g1,18631:10424523,18083638 -g1,18631:10740669,18083638 -g1,18631:11056815,18083638 -g1,18631:11372961,18083638 -g1,18631:11689107,18083638 -g1,18631:12005253,18083638 -g1,18631:12637545,18083638 -g1,18631:13902128,18083638 -h1,18631:15482856,18083638:0,0,0 -k1,18631:32583028,18083638:17100172 -g1,18631:32583028,18083638 -) -(1,18631:6630773,18749816:25952256,410518,107478 -h1,18631:6630773,18749816:0,0,0 -g1,18631:7579210,18749816 -g1,18631:7895356,18749816 -g1,18631:8527648,18749816 -g1,18631:10424522,18749816 -g1,18631:10740668,18749816 -g1,18631:11056814,18749816 -g1,18631:11372960,18749816 -g1,18631:11689106,18749816 -g1,18631:12005252,18749816 -g1,18631:12637544,18749816 -g1,18631:14218273,18749816 -h1,18631:15799001,18749816:0,0,0 -k1,18631:32583029,18749816:16784028 -g1,18631:32583029,18749816 -) -(1,18631:6630773,19415994:25952256,410518,107478 -h1,18631:6630773,19415994:0,0,0 -g1,18631:7579210,19415994 -g1,18631:7895356,19415994 -g1,18631:8527648,19415994 -g1,18631:11372959,19415994 -g1,18631:11689105,19415994 -g1,18631:12005251,19415994 -g1,18631:12637543,19415994 -g1,18631:14218272,19415994 -h1,18631:15799000,19415994:0,0,0 -k1,18631:32583028,19415994:16784028 -g1,18631:32583028,19415994 -) -(1,18631:6630773,20082172:25952256,410518,50331 -h1,18631:6630773,20082172:0,0,0 -g1,18631:7579210,20082172 -g1,18631:7895356,20082172 -g1,18631:8527648,20082172 -g1,18631:10740668,20082172 -g1,18631:11056814,20082172 -g1,18631:11372960,20082172 -g1,18631:11689106,20082172 -g1,18631:12005252,20082172 -g1,18631:12637544,20082172 -g1,18631:13902127,20082172 -h1,18631:22438060,20082172:0,0,0 -k1,18631:32583029,20082172:10144969 -g1,18631:32583029,20082172 -) -(1,18631:6630773,20748350:25952256,410518,107478 -h1,18631:6630773,20748350:0,0,0 -g1,18631:7579210,20748350 -g1,18631:7895356,20748350 -g1,18631:8527648,20748350 -g1,18631:10740668,20748350 -g1,18631:11056814,20748350 -g1,18631:11372960,20748350 -g1,18631:11689106,20748350 -g1,18631:12005252,20748350 -g1,18631:12637544,20748350 -g1,18631:14218273,20748350 -h1,18631:15799001,20748350:0,0,0 -k1,18631:32583029,20748350:16784028 -g1,18631:32583029,20748350 -) -(1,18631:6630773,21414528:25952256,410518,107478 -h1,18631:6630773,21414528:0,0,0 -g1,18631:7579210,21414528 -g1,18631:7895356,21414528 -g1,18631:8527648,21414528 -g1,18631:10740668,21414528 -g1,18631:11056814,21414528 -g1,18631:11372960,21414528 -g1,18631:11689106,21414528 -g1,18631:12005252,21414528 -g1,18631:13902126,21414528 -g1,18631:14850563,21414528 -h1,18631:15166709,21414528:0,0,0 -k1,18631:32583029,21414528:17416320 -g1,18631:32583029,21414528 -) -(1,18631:6630773,22080706:25952256,410518,107478 -h1,18631:6630773,22080706:0,0,0 -g1,18631:7579210,22080706 -g1,18631:7895356,22080706 -g1,18631:8527648,22080706 -g1,18631:13902125,22080706 -g1,18631:14850562,22080706 -h1,18631:15166708,22080706:0,0,0 -k1,18631:32583028,22080706:17416320 -g1,18631:32583028,22080706 -) -(1,18631:6630773,22746884:25952256,410518,31456 -h1,18631:6630773,22746884:0,0,0 -g1,18631:7579210,22746884 -g1,18631:7895356,22746884 -g1,18631:8527648,22746884 -g1,18631:10424522,22746884 -g1,18631:10740668,22746884 -g1,18631:11056814,22746884 -g1,18631:11372960,22746884 -g1,18631:11689106,22746884 -g1,18631:12005252,22746884 -g1,18631:12637544,22746884 -g1,18631:13902127,22746884 -h1,18631:14218273,22746884:0,0,0 -k1,18631:32583029,22746884:18364756 -g1,18631:32583029,22746884 -) -(1,18631:6630773,23413062:25952256,410518,31456 -h1,18631:6630773,23413062:0,0,0 -g1,18631:7579210,23413062 -g1,18631:7895356,23413062 -g1,18631:8527648,23413062 -g1,18631:10424522,23413062 -g1,18631:10740668,23413062 -g1,18631:11056814,23413062 -g1,18631:11372960,23413062 -g1,18631:11689106,23413062 -g1,18631:12005252,23413062 -g1,18631:12637544,23413062 -g1,18631:13902127,23413062 -h1,18631:14218273,23413062:0,0,0 -k1,18631:32583029,23413062:18364756 -g1,18631:32583029,23413062 -) -(1,18631:6630773,24079240:25952256,410518,31456 -h1,18631:6630773,24079240:0,0,0 -g1,18631:7579210,24079240 -g1,18631:7895356,24079240 -g1,18631:8527648,24079240 -g1,18631:9792231,24079240 -g1,18631:10108377,24079240 -g1,18631:10424523,24079240 -g1,18631:10740669,24079240 -g1,18631:11056815,24079240 -g1,18631:11372961,24079240 -g1,18631:11689107,24079240 -g1,18631:12005253,24079240 -g1,18631:13902127,24079240 -g1,18631:14850564,24079240 -h1,18631:15166710,24079240:0,0,0 -k1,18631:32583030,24079240:17416320 -g1,18631:32583030,24079240 -) -(1,18631:6630773,24745418:25952256,410518,31456 -h1,18631:6630773,24745418:0,0,0 -g1,18631:7579210,24745418 -g1,18631:7895356,24745418 -g1,18631:8527648,24745418 -g1,18631:12005251,24745418 -g1,18631:12637543,24745418 -g1,18631:13902126,24745418 -k1,18631:13902126,24745418:0 -h1,18631:14534417,24745418:0,0,0 -k1,18631:32583029,24745418:18048612 -g1,18631:32583029,24745418 -) -(1,18631:6630773,25411596:25952256,410518,31456 -h1,18631:6630773,25411596:0,0,0 -g1,18631:7579210,25411596 -g1,18631:7895356,25411596 -g1,18631:8527648,25411596 -g1,18631:10424522,25411596 -g1,18631:10740668,25411596 -g1,18631:11056814,25411596 -g1,18631:11372960,25411596 -g1,18631:11689106,25411596 -g1,18631:12005252,25411596 -g1,18631:12637544,25411596 -g1,18631:13902127,25411596 -h1,18631:14218273,25411596:0,0,0 -k1,18631:32583029,25411596:18364756 -g1,18631:32583029,25411596 -) -(1,18631:6630773,26077774:25952256,410518,31456 -h1,18631:6630773,26077774:0,0,0 -g1,18631:7579210,26077774 -g1,18631:7895356,26077774 -g1,18631:8527648,26077774 -g1,18631:9792231,26077774 -g1,18631:10108377,26077774 -g1,18631:10424523,26077774 -g1,18631:10740669,26077774 -g1,18631:11056815,26077774 -g1,18631:11372961,26077774 -g1,18631:11689107,26077774 -g1,18631:12005253,26077774 -g1,18631:13902127,26077774 -g1,18631:14850564,26077774 -h1,18631:15166710,26077774:0,0,0 -k1,18631:32583030,26077774:17416320 -g1,18631:32583030,26077774 -) -(1,18631:6630773,26743952:25952256,410518,82312 -h1,18631:6630773,26743952:0,0,0 -g1,18631:7579210,26743952 -g1,18631:7895356,26743952 -g1,18631:8527648,26743952 -g1,18631:11056814,26743952 -g1,18631:14218271,26743952 -g1,18631:15482854,26743952 -h1,18631:17695874,26743952:0,0,0 -k1,18631:32583029,26743952:14887155 -g1,18631:32583029,26743952 -) -] -) -g1,18632:32583029,26826264 -g1,18632:6630773,26826264 -g1,18632:6630773,26826264 -g1,18632:32583029,26826264 -g1,18632:32583029,26826264 -) -h1,18632:6630773,27022872:0,0,0 -v1,18636:6630773,28720173:0,393216,0 -(1,18637:6630773,32885789:25952256,4558832,616038 -g1,18637:6630773,32885789 -(1,18637:6630773,32885789:25952256,4558832,616038 -(1,18637:6630773,33501827:25952256,5174870,0 -[1,18637:6630773,33501827:25952256,5174870,0 -(1,18637:6630773,33475613:25952256,5122442,0 -r1,18668:6656987,33475613:26214,5122442,0 -[1,18637:6656987,33475613:25899828,5122442,0 -(1,18637:6656987,32885789:25899828,3942794,0 -[1,18637:7246811,32885789:24720180,3942794,0 -(1,18637:7246811,30226977:24720180,1283982,196608 -(1,18636:7246811,30226977:0,1283982,196608 -r1,18668:9812056,30226977:2565245,1480590,196608 -k1,18636:7246811,30226977:-2565245 -) -(1,18636:7246811,30226977:2565245,1283982,196608 -) -k1,18636:9965813,30226977:153757 -k1,18636:12750185,30226977:153757 -(1,18636:12750185,30226977:0,452978,115847 -r1,18668:15922145,30226977:3171960,568825,115847 -k1,18636:12750185,30226977:-3171960 -) -(1,18636:12750185,30226977:3171960,452978,115847 -k1,18636:12750185,30226977:3277 -h1,18636:15918868,30226977:0,411205,112570 -) -k1,18636:16075901,30226977:153756 -k1,18636:16845696,30226977:153757 -k1,18636:18018538,30226977:153757 -k1,18636:19271989,30226977:153757 -k1,18636:20077174,30226977:153757 -(1,18636:20077174,30226977:0,452978,115847 -r1,18668:21842287,30226977:1765113,568825,115847 -k1,18636:20077174,30226977:-1765113 -) -(1,18636:20077174,30226977:1765113,452978,115847 -k1,18636:20077174,30226977:3277 -h1,18636:21839010,30226977:0,411205,112570 -) -k1,18636:21996044,30226977:153757 -k1,18636:24005124,30226977:153756 -k1,18636:25350326,30226977:153757 -k1,18636:27287973,30226977:153757 -k1,18636:28460815,30226977:153757 -k1,18636:31966991,30226977:0 -) -(1,18637:7246811,31068465:24720180,513147,134348 -k1,18636:9441194,31068465:234857 -k1,18636:11623781,31068465:234857 -k1,18636:15665625,31068465:234858 -k1,18636:16709852,31068465:234857 -k1,18636:17963794,31068465:234857 -k1,18636:21873910,31068465:234857 -k1,18636:23300212,31068465:234857 -k1,18636:24482720,31068465:234857 -k1,18636:26169200,31068465:234858 -k1,18636:27793420,31068465:234857 -k1,18636:30713287,31068465:234857 -k1,18636:31966991,31068465:0 -) -(1,18637:7246811,31909953:24720180,513147,126483 -k1,18636:8613670,31909953:262577 -k1,18636:10162063,31909953:262577 -(1,18636:10162063,31909953:0,452978,115847 -r1,18668:17202854,31909953:7040791,568825,115847 -k1,18636:10162063,31909953:-7040791 -) -(1,18636:10162063,31909953:7040791,452978,115847 -k1,18636:10162063,31909953:3277 -h1,18636:17199577,31909953:0,411205,112570 -) -k1,18636:17465431,31909953:262577 -k1,18636:18675659,31909953:262577 -k1,18636:19294096,31909953:262577 -k1,18636:21206869,31909953:262576 -k1,18636:24394973,31909953:262577 -k1,18636:27305860,31909953:262577 -k1,18636:29058726,31909953:262577 -k1,18636:30491776,31909953:262577 -k1,18636:31966991,31909953:0 -) -(1,18637:7246811,32751441:24720180,513147,134348 -g1,18636:11129163,32751441 -g1,18636:12347477,32751441 -g1,18636:15478131,32751441 -g1,18636:16336652,32751441 -g1,18636:17554966,32751441 -k1,18637:31966991,32751441:12278828 -g1,18637:31966991,32751441 -) -] -) -] -r1,18668:32583029,33475613:26214,5122442,0 -) -] -) -) -g1,18637:32583029,32885789 -) -h1,18637:6630773,33501827:0,0,0 -(1,18640:6630773,34771221:25952256,513147,126483 -h1,18639:6630773,34771221:983040,0,0 -k1,18639:8981822,34771221:171322 -k1,18639:12828403,34771221:171322 -k1,18639:13659017,34771221:171322 -k1,18639:14849424,34771221:171322 -k1,18639:16670287,34771221:171322 -k1,18639:18230971,34771221:171321 -k1,18639:19393853,34771221:171322 -k1,18639:22655198,34771221:171322 -k1,18639:24220471,34771221:171322 -k1,18639:27534900,34771221:171322 -k1,18639:28322260,34771221:171322 -k1,18639:29591310,34771221:171322 -k1,18639:32583029,34771221:0 -) -(1,18640:6630773,35612709:25952256,513147,134348 -k1,18639:9689900,35612709:251565 -k1,18639:12368262,35612709:251564 -k1,18639:13271255,35612709:251565 -k1,18639:13878679,35612709:251564 -k1,18639:15414750,35612709:251565 -k1,18639:16325606,35612709:251564 -k1,18639:19366383,35612709:251565 -k1,18639:20809393,35612709:251565 -k1,18639:24420988,35612709:251564 -k1,18639:25863998,35612709:251565 -k1,18639:27383028,35612709:251564 -k1,18639:27990453,35612709:251565 -k1,18639:29667425,35612709:251564 -k1,18639:31896867,35612709:251565 -k1,18639:32583029,35612709:0 -) -(1,18640:6630773,36454197:25952256,505283,134348 -k1,18639:7251096,36454197:264463 -k1,18639:9097598,36454197:264463 -k1,18639:12880689,36454197:264463 -k1,18639:14341838,36454197:264462 -k1,18639:16317446,36454197:264463 -k1,18639:17573469,36454197:264463 -k1,18639:20616659,36454197:264463 -k1,18639:21567284,36454197:264463 -k1,18639:24806426,36454197:264463 -k1,18639:27440670,36454197:264462 -k1,18639:28658682,36454197:264463 -k1,18639:29901598,36454197:264463 -k1,18639:31563944,36454197:264463 -k1,18639:32583029,36454197:0 -) -(1,18640:6630773,37295685:25952256,513147,122846 -g1,18639:9671643,37295685 -g1,18639:11027582,37295685 -g1,18639:11839573,37295685 -g1,18639:12394662,37295685 -g1,18639:14019299,37295685 -g1,18639:15612479,37295685 -g1,18639:18507204,37295685 -(1,18639:18507204,37295685:0,452978,122846 -r1,18668:22382588,37295685:3875384,575824,122846 -k1,18639:18507204,37295685:-3875384 -) -(1,18639:18507204,37295685:3875384,452978,122846 -k1,18639:18507204,37295685:3277 -h1,18639:22379311,37295685:0,411205,112570 -) -k1,18640:32583029,37295685:10026771 -g1,18640:32583029,37295685 -) -v1,18642:6630773,38389770:0,393216,0 -(1,18664:6630773,45510161:25952256,7513607,196608 -g1,18664:6630773,45510161 -g1,18664:6630773,45510161 -g1,18664:6434165,45510161 -(1,18664:6434165,45510161:0,7513607,196608 -r1,18668:32779637,45510161:26345472,7710215,196608 -k1,18664:6434165,45510161:-26345472 -) -(1,18664:6434165,45510161:26345472,7513607,196608 -[1,18664:6630773,45510161:25952256,7316999,0 -(1,18644:6630773,38597388:25952256,404226,107478 -(1,18643:6630773,38597388:0,0,0 -g1,18643:6630773,38597388 -g1,18643:6630773,38597388 -g1,18643:6303093,38597388 -(1,18643:6303093,38597388:0,0,0 -) -g1,18643:6630773,38597388 -) -g1,18644:9476084,38597388 -g1,18644:10424522,38597388 -g1,18644:18328165,38597388 -h1,18644:20541185,38597388:0,0,0 -k1,18644:32583029,38597388:12041844 -g1,18644:32583029,38597388 -) -(1,18645:6630773,39263566:25952256,404226,76021 -h1,18645:6630773,39263566:0,0,0 -k1,18645:6630773,39263566:0 -h1,18645:11056813,39263566:0,0,0 -k1,18645:32583029,39263566:21526216 -g1,18645:32583029,39263566 -) -(1,18649:6630773,39995280:25952256,404226,76021 -(1,18647:6630773,39995280:0,0,0 -g1,18647:6630773,39995280 -g1,18647:6630773,39995280 -g1,18647:6303093,39995280 -(1,18647:6303093,39995280:0,0,0 -) -g1,18647:6630773,39995280 -) -g1,18649:7579210,39995280 -g1,18649:8843793,39995280 -g1,18649:11372959,39995280 -g1,18649:13902125,39995280 -g1,18649:16431291,39995280 -g1,18649:18960457,39995280 -g1,18649:21489623,39995280 -k1,18649:21489623,39995280:0 -h1,18649:23702643,39995280:0,0,0 -k1,18649:32583029,39995280:8880386 -g1,18649:32583029,39995280 -) -(1,18651:6630773,41316818:25952256,404226,107478 -(1,18650:6630773,41316818:0,0,0 -g1,18650:6630773,41316818 -g1,18650:6630773,41316818 -g1,18650:6303093,41316818 -(1,18650:6303093,41316818:0,0,0 -) -g1,18650:6630773,41316818 -) -g1,18651:9792230,41316818 -g1,18651:10740668,41316818 -g1,18651:11056814,41316818 -g1,18651:18960457,41316818 -h1,18651:20857331,41316818:0,0,0 -k1,18651:32583029,41316818:11725698 -g1,18651:32583029,41316818 -) -(1,18652:6630773,41982996:25952256,404226,107478 -h1,18652:6630773,41982996:0,0,0 -k1,18652:6630773,41982996:0 -h1,18652:11372958,41982996:0,0,0 -k1,18652:32583030,41982996:21210072 -g1,18652:32583030,41982996 -) -(1,18656:6630773,42714710:25952256,404226,76021 -(1,18654:6630773,42714710:0,0,0 -g1,18654:6630773,42714710 -g1,18654:6630773,42714710 -g1,18654:6303093,42714710 -(1,18654:6303093,42714710:0,0,0 -) -g1,18654:6630773,42714710 -) -g1,18656:7579210,42714710 -g1,18656:8843793,42714710 -g1,18656:10740667,42714710 -g1,18656:12637541,42714710 -g1,18656:14534415,42714710 -g1,18656:16431289,42714710 -g1,18656:18328163,42714710 -h1,18656:19908891,42714710:0,0,0 -k1,18656:32583029,42714710:12674138 -g1,18656:32583029,42714710 -) -(1,18658:6630773,44036248:25952256,404226,107478 -(1,18657:6630773,44036248:0,0,0 -g1,18657:6630773,44036248 -g1,18657:6630773,44036248 -g1,18657:6303093,44036248 -(1,18657:6303093,44036248:0,0,0 -) -g1,18657:6630773,44036248 -) -g1,18658:9476084,44036248 -g1,18658:10424522,44036248 -g1,18658:18328165,44036248 -h1,18658:20225039,44036248:0,0,0 -k1,18658:32583029,44036248:12357990 -g1,18658:32583029,44036248 -) -(1,18659:6630773,44702426:25952256,404226,76021 -h1,18659:6630773,44702426:0,0,0 -k1,18659:6630773,44702426:0 -h1,18659:11056813,44702426:0,0,0 -k1,18659:32583029,44702426:21526216 -g1,18659:32583029,44702426 -) -(1,18663:6630773,45434140:25952256,404226,76021 -(1,18661:6630773,45434140:0,0,0 -g1,18661:6630773,45434140 -g1,18661:6630773,45434140 -g1,18661:6303093,45434140 -(1,18661:6303093,45434140:0,0,0 -) -g1,18661:6630773,45434140 -) -g1,18663:7579210,45434140 -g1,18663:8843793,45434140 -g1,18663:11372959,45434140 -g1,18663:13902125,45434140 -g1,18663:16431291,45434140 -g1,18663:18960457,45434140 -g1,18663:21489623,45434140 -h1,18663:23702643,45434140:0,0,0 -k1,18663:32583029,45434140:8880386 -g1,18663:32583029,45434140 -) -] -) -g1,18664:32583029,45510161 -g1,18664:6630773,45510161 -g1,18664:6630773,45510161 -g1,18664:32583029,45510161 -g1,18664:32583029,45510161 -) -h1,18664:6630773,45706769:0,0,0 -] -(1,18668:32583029,45706769:0,0,0 -g1,18668:32583029,45706769 -) -) -] -(1,18668:6630773,47279633:25952256,0,0 -h1,18668:6630773,47279633:25952256,0,0 -) -] -(1,18668:4262630,4025873:0,0,0 -[1,18668:-473656,4025873:0,0,0 -(1,18668:-473656,-710413:0,0,0 -(1,18668:-473656,-710413:0,0,0 -g1,18668:-473656,-710413 -) -g1,18668:-473656,-710413 -) -] -) -] -!25536 -}365 -Input:2979:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!104 -{366 -[1,18738:4262630,47279633:28320399,43253760,0 -(1,18738:4262630,4025873:0,0,0 -[1,18738:-473656,4025873:0,0,0 -(1,18738:-473656,-710413:0,0,0 -(1,18738:-473656,-644877:0,0,0 -k1,18738:-473656,-644877:-65536 -) -(1,18738:-473656,4736287:0,0,0 -k1,18738:-473656,4736287:5209943 -) -g1,18738:-473656,-710413 -) -] -) -[1,18738:6630773,47279633:25952256,43253760,0 -[1,18738:6630773,4812305:25952256,786432,0 -(1,18738:6630773,4812305:25952256,513147,126483 -(1,18738:6630773,4812305:25952256,513147,126483 -g1,18738:3078558,4812305 -[1,18738:3078558,4812305:0,0,0 -(1,18738:3078558,2439708:0,1703936,0 -k1,18738:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,18738:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,18738:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 -) -] -) -) -) -] -[1,18738:3078558,4812305:0,0,0 -(1,18738:3078558,2439708:0,1703936,0 -g1,18738:29030814,2439708 -g1,18738:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,18738:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 -) -] -) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,18738:37855564,2439708:1179648,16384,0 -) -) -k1,18738:3078556,2439708:-34777008 -) -] -[1,18738:3078558,4812305:0,0,0 -(1,18738:3078558,49800853:0,16384,2228224 -k1,18738:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,18738:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,18738:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 -) -] -) -) -) -] -[1,18738:3078558,4812305:0,0,0 -(1,18738:3078558,49800853:0,16384,2228224 -g1,18738:29030814,49800853 -g1,18738:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,18738:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 -) -] -) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,18738:37855564,49800853:1179648,16384,0 -) -) -k1,18738:3078556,49800853:-34777008 -) -] -g1,18738:6630773,4812305 -g1,18738:6630773,4812305 -g1,18738:9235173,4812305 -g1,18738:10666479,4812305 -k1,18738:31387651,4812305:20721172 -) -) -] -[1,18738:6630773,45706769:25952256,40108032,0 -(1,18738:6630773,45706769:25952256,40108032,0 -(1,18738:6630773,45706769:0,0,0 -g1,18738:6630773,45706769 -) -[1,18738:6630773,45706769:25952256,40108032,0 -(1,18668:6630773,6254097:25952256,505283,126483 -h1,18667:6630773,6254097:983040,0,0 -k1,18667:9084456,6254097:273956 -(1,18667:9084456,6254097:0,452978,115847 -r1,18738:10497857,6254097:1413401,568825,115847 -k1,18667:9084456,6254097:-1413401 -) -(1,18667:9084456,6254097:1413401,452978,115847 -k1,18667:9084456,6254097:3277 -h1,18667:10494580,6254097:0,411205,112570 -) -k1,18667:10771812,6254097:273955 -k1,18667:13023645,6254097:273956 -k1,18667:13829097,6254097:273955 -k1,18667:16054715,6254097:273956 -k1,18667:17738349,6254097:273955 -k1,18667:18698467,6254097:273956 -k1,18667:19430519,6254097:273955 -k1,18667:22406524,6254097:273956 -k1,18667:24056080,6254097:273955 -k1,18667:26997351,6254097:273956 -k1,18667:28660669,6254097:273955 -k1,18667:29620787,6254097:273956 -k1,18667:31591469,6254097:273955 -k1,18667:32583029,6254097:0 -) -(1,18668:6630773,7095585:25952256,513147,134348 -k1,18667:9945912,7095585:200868 -k1,18667:13076894,7095585:200867 -k1,18667:14349931,7095585:200868 -k1,18667:17748301,7095585:200868 -k1,18667:18635331,7095585:200868 -k1,18667:20304204,7095585:200867 -k1,18667:22072693,7095585:200868 -k1,18667:25887216,7095585:200868 -k1,18667:30711648,7095585:200867 -k1,18667:31563944,7095585:200868 -k1,18667:32583029,7095585:0 -) -(1,18668:6630773,7937073:25952256,513147,134348 -g1,18667:8136135,7937073 -g1,18667:9473069,7937073 -g1,18667:10331590,7937073 -g1,18667:11982441,7937073 -g1,18667:14282754,7937073 -g1,18667:15141275,7937073 -g1,18667:16693167,7937073 -g1,18667:17464525,7937073 -g1,18667:18617303,7937073 -g1,18667:19909017,7937073 -g1,18667:22688398,7937073 -g1,18667:26085783,7937073 -g1,18667:27232663,7937073 -g1,18667:28450977,7937073 -k1,18668:32583029,7937073:481697 -g1,18668:32583029,7937073 -) -(1,18670:6630773,8778561:25952256,513147,134348 -h1,18669:6630773,8778561:983040,0,0 -k1,18669:8768153,8778561:200791 -k1,18669:11992776,8778561:200792 -k1,18669:12549427,8778561:200791 -(1,18669:12549427,8778561:0,452978,115847 -r1,18738:14666252,8778561:2116825,568825,115847 -k1,18669:12549427,8778561:-2116825 -) -(1,18669:12549427,8778561:2116825,452978,115847 -k1,18669:12549427,8778561:3277 -h1,18669:14662975,8778561:0,411205,112570 -) -k1,18669:14867043,8778561:200791 -k1,18669:17027361,8778561:200792 -k1,18669:18622103,8778561:200791 -k1,18669:20003852,8778561:200790 -k1,18669:22215288,8778561:200791 -k1,18669:23363731,8778561:200792 -k1,18669:24721232,8778561:200791 -k1,18669:26206529,8778561:200791 -k1,18669:28269199,8778561:200792 -k1,18669:30465561,8778561:200791 -k1,18670:32583029,8778561:0 -) -(1,18670:6630773,9620049:25952256,513147,134348 -g1,18669:8164315,9620049 -g1,18669:9022836,9620049 -g1,18669:10241150,9620049 -g1,18669:13288573,9620049 -g1,18669:14147094,9620049 -g1,18669:16031254,9620049 -k1,18670:32583029,9620049:14069927 -g1,18670:32583029,9620049 -) -v1,18672:6630773,10708394:0,393216,0 -(1,18692:6630773,20317476:25952256,10002298,196608 -g1,18692:6630773,20317476 -g1,18692:6630773,20317476 -g1,18692:6434165,20317476 -(1,18692:6434165,20317476:0,10002298,196608 -r1,18738:32779637,20317476:26345472,10198906,196608 -k1,18692:6434165,20317476:-26345472 -) -(1,18692:6434165,20317476:26345472,10002298,196608 -[1,18692:6630773,20317476:25952256,9805690,0 -(1,18674:6630773,10916012:25952256,404226,101187 -(1,18673:6630773,10916012:0,0,0 -g1,18673:6630773,10916012 -g1,18673:6630773,10916012 -g1,18673:6303093,10916012 -(1,18673:6303093,10916012:0,0,0 -) -g1,18673:6630773,10916012 -) -g1,18674:8843793,10916012 -k1,18674:8843793,10916012:0 -h1,18674:9476085,10916012:0,0,0 -k1,18674:32583029,10916012:23106944 -g1,18674:32583029,10916012 -) -(1,18675:6630773,11582190:25952256,404226,107478 -h1,18675:6630773,11582190:0,0,0 -g1,18675:6946919,11582190 -g1,18675:7263065,11582190 -g1,18675:7579211,11582190 -g1,18675:7895357,11582190 -g1,18675:11689106,11582190 -g1,18675:12321398,11582190 -g1,18675:20225041,11582190 -k1,18675:20225041,11582190:0 -h1,18675:22754207,11582190:0,0,0 -k1,18675:32583029,11582190:9828822 -g1,18675:32583029,11582190 -) -(1,18676:6630773,12248368:25952256,404226,101187 -h1,18676:6630773,12248368:0,0,0 -g1,18676:6946919,12248368 -g1,18676:7263065,12248368 -g1,18676:7579211,12248368 -g1,18676:7895357,12248368 -g1,18676:8211503,12248368 -g1,18676:8527649,12248368 -g1,18676:8843795,12248368 -g1,18676:9159941,12248368 -g1,18676:9476087,12248368 -g1,18676:9792233,12248368 -g1,18676:10108379,12248368 -g1,18676:12005253,12248368 -g1,18676:12637545,12248368 -g1,18676:20225042,12248368 -g1,18676:20857334,12248368 -k1,18676:20857334,12248368:0 -h1,18676:24651083,12248368:0,0,0 -k1,18676:32583029,12248368:7931946 -g1,18676:32583029,12248368 -) -(1,18677:6630773,12914546:25952256,404226,107478 -h1,18677:6630773,12914546:0,0,0 -g1,18677:6946919,12914546 -g1,18677:7263065,12914546 -g1,18677:7579211,12914546 -g1,18677:7895357,12914546 -g1,18677:8211503,12914546 -g1,18677:8527649,12914546 -g1,18677:8843795,12914546 -g1,18677:9159941,12914546 -g1,18677:9476087,12914546 -g1,18677:9792233,12914546 -g1,18677:10108379,12914546 -g1,18677:11372962,12914546 -g1,18677:12005254,12914546 -k1,18677:12005254,12914546:0 -h1,18677:16115149,12914546:0,0,0 -k1,18677:32583029,12914546:16467880 -g1,18677:32583029,12914546 -) -(1,18678:6630773,13580724:25952256,404226,82312 -h1,18678:6630773,13580724:0,0,0 -g1,18678:6946919,13580724 -g1,18678:7263065,13580724 -g1,18678:7579211,13580724 -g1,18678:7895357,13580724 -g1,18678:8211503,13580724 -g1,18678:8527649,13580724 -g1,18678:8843795,13580724 -g1,18678:9159941,13580724 -g1,18678:9476087,13580724 -g1,18678:9792233,13580724 -g1,18678:10108379,13580724 -g1,18678:11372962,13580724 -g1,18678:12005254,13580724 -k1,18678:12005254,13580724:0 -h1,18678:15799003,13580724:0,0,0 -k1,18678:32583029,13580724:16784026 -g1,18678:32583029,13580724 -) -(1,18679:6630773,14246902:25952256,404226,107478 -h1,18679:6630773,14246902:0,0,0 -g1,18679:6946919,14246902 -g1,18679:7263065,14246902 -g1,18679:7579211,14246902 -g1,18679:7895357,14246902 -g1,18679:8211503,14246902 -g1,18679:8527649,14246902 -g1,18679:8843795,14246902 -g1,18679:9159941,14246902 -g1,18679:9476087,14246902 -g1,18679:9792233,14246902 -g1,18679:10108379,14246902 -g1,18679:11372962,14246902 -g1,18679:12005254,14246902 -g1,18679:19908897,14246902 -g1,18679:23702646,14246902 -g1,18679:24651084,14246902 -h1,18679:24967230,14246902:0,0,0 -k1,18679:32583029,14246902:7615799 -g1,18679:32583029,14246902 -) -(1,18680:6630773,14913080:25952256,404226,76021 -h1,18680:6630773,14913080:0,0,0 -g1,18680:6946919,14913080 -g1,18680:7263065,14913080 -g1,18680:7579211,14913080 -g1,18680:7895357,14913080 -g1,18680:8211503,14913080 -g1,18680:8527649,14913080 -g1,18680:8843795,14913080 -g1,18680:9159941,14913080 -g1,18680:9476087,14913080 -g1,18680:9792233,14913080 -g1,18680:10108379,14913080 -h1,18680:10424525,14913080:0,0,0 -k1,18680:32583029,14913080:22158504 -g1,18680:32583029,14913080 -) -(1,18681:6630773,15579258:25952256,404226,101187 -h1,18681:6630773,15579258:0,0,0 -h1,18681:8527647,15579258:0,0,0 -k1,18681:32583029,15579258:24055382 -g1,18681:32583029,15579258 -) -(1,18691:6630773,16310972:25952256,404226,9436 -(1,18683:6630773,16310972:0,0,0 -g1,18683:6630773,16310972 -g1,18683:6630773,16310972 -g1,18683:6303093,16310972 -(1,18683:6303093,16310972:0,0,0 -) -g1,18683:6630773,16310972 -) -g1,18691:7579210,16310972 -g1,18691:8211502,16310972 -g1,18691:8843794,16310972 -g1,18691:11372960,16310972 -g1,18691:12321397,16310972 -g1,18691:12953689,16310972 -h1,18691:13269835,16310972:0,0,0 -k1,18691:32583029,16310972:19313194 -g1,18691:32583029,16310972 -) -(1,18691:6630773,16977150:25952256,404226,101187 -h1,18691:6630773,16977150:0,0,0 -g1,18691:7579210,16977150 -g1,18691:7895356,16977150 -g1,18691:8211502,16977150 -g1,18691:8527648,16977150 -g1,18691:8843794,16977150 -g1,18691:9159940,16977150 -g1,18691:10740669,16977150 -g1,18691:12637543,16977150 -g1,18691:12953689,16977150 -g1,18691:13269835,16977150 -g1,18691:14534418,16977150 -g1,18691:14850564,16977150 -g1,18691:15166710,16977150 -g1,18691:16431293,16977150 -g1,18691:16747439,16977150 -g1,18691:17063585,16977150 -h1,18691:18012022,16977150:0,0,0 -k1,18691:32583029,16977150:14571007 -g1,18691:32583029,16977150 -) -(1,18691:6630773,17643328:25952256,404226,6290 -h1,18691:6630773,17643328:0,0,0 -g1,18691:7579210,17643328 -g1,18691:7895356,17643328 -g1,18691:8211502,17643328 -g1,18691:8527648,17643328 -g1,18691:8843794,17643328 -g1,18691:10740669,17643328 -g1,18691:12637544,17643328 -g1,18691:14534419,17643328 -g1,18691:16431294,17643328 -k1,18691:16431294,17643328:0 -h1,18691:18012023,17643328:0,0,0 -k1,18691:32583029,17643328:14571006 -g1,18691:32583029,17643328 -) -(1,18691:6630773,18309506:25952256,388497,9436 -h1,18691:6630773,18309506:0,0,0 -g1,18691:7579210,18309506 -g1,18691:8211502,18309506 -g1,18691:10740668,18309506 -g1,18691:11056814,18309506 -g1,18691:11372960,18309506 -g1,18691:11689106,18309506 -g1,18691:12637543,18309506 -g1,18691:12953689,18309506 -g1,18691:14534418,18309506 -g1,18691:14850564,18309506 -g1,18691:16431293,18309506 -g1,18691:16747439,18309506 -h1,18691:18012022,18309506:0,0,0 -k1,18691:32583029,18309506:14571007 -g1,18691:32583029,18309506 -) -(1,18691:6630773,18975684:25952256,388497,9436 -h1,18691:6630773,18975684:0,0,0 -g1,18691:7579210,18975684 -g1,18691:8211502,18975684 -g1,18691:10740668,18975684 -g1,18691:11056814,18975684 -g1,18691:11372960,18975684 -g1,18691:11689106,18975684 -g1,18691:12005252,18975684 -g1,18691:12637544,18975684 -g1,18691:12953690,18975684 -g1,18691:14534419,18975684 -g1,18691:14850565,18975684 -g1,18691:16431294,18975684 -g1,18691:16747440,18975684 -h1,18691:18012023,18975684:0,0,0 -k1,18691:32583029,18975684:14571006 -g1,18691:32583029,18975684 -) -(1,18691:6630773,19641862:25952256,388497,9436 -h1,18691:6630773,19641862:0,0,0 -g1,18691:7579210,19641862 -g1,18691:8211502,19641862 -g1,18691:10740668,19641862 -g1,18691:11056814,19641862 -g1,18691:11372960,19641862 -g1,18691:11689106,19641862 -g1,18691:12005252,19641862 -g1,18691:12637544,19641862 -g1,18691:12953690,19641862 -g1,18691:14534419,19641862 -g1,18691:14850565,19641862 -g1,18691:16431294,19641862 -g1,18691:16747440,19641862 -h1,18691:18012023,19641862:0,0,0 -k1,18691:32583029,19641862:14571006 -g1,18691:32583029,19641862 -) -(1,18691:6630773,20308040:25952256,404226,9436 -h1,18691:6630773,20308040:0,0,0 -g1,18691:7579210,20308040 -g1,18691:8211502,20308040 -g1,18691:9476085,20308040 -g1,18691:11056814,20308040 -g1,18691:11689106,20308040 -g1,18691:13269835,20308040 -h1,18691:14534418,20308040:0,0,0 -k1,18691:32583030,20308040:18048612 -g1,18691:32583030,20308040 -) -] -) -g1,18692:32583029,20317476 -g1,18692:6630773,20317476 -g1,18692:6630773,20317476 -g1,18692:32583029,20317476 -g1,18692:32583029,20317476 -) -h1,18692:6630773,20514084:0,0,0 -(1,18696:6630773,21777740:25952256,513147,134348 -h1,18695:6630773,21777740:983040,0,0 -k1,18695:8422854,21777740:331284 -k1,18695:9622491,21777740:331285 -k1,18695:11502391,21777740:331284 -k1,18695:12485103,21777740:331284 -k1,18695:14228689,21777740:331285 -k1,18695:15176011,21777740:331284 -k1,18695:17738797,21777740:331285 -k1,18695:19354587,21777740:331284 -k1,18695:21878050,21777740:331284 -k1,18695:23077687,21777740:331285 -k1,18695:24513253,21777740:331284 -k1,18695:25937022,21777740:331284 -k1,18695:28499808,21777740:331285 -k1,18695:31593435,21777740:331284 -k1,18696:32583029,21777740:0 -) -(1,18696:6630773,22619228:25952256,513147,134348 -k1,18695:9940396,22619228:250402 -k1,18695:13125500,22619228:250402 -k1,18695:14394987,22619228:250402 -k1,18695:16384715,22619228:250402 -k1,18695:17294409,22619228:250402 -k1,18695:19884446,22619228:250402 -k1,18695:20794139,22619228:250401 -k1,18695:24719800,22619228:250402 -k1,18695:26074484,22619228:250402 -k1,18695:28040619,22619228:250402 -k1,18695:30478613,22619228:250402 -k1,18695:31748100,22619228:250402 -k1,18696:32583029,22619228:0 -) -(1,18696:6630773,23460716:25952256,505283,134348 -k1,18695:9920377,23460716:236282 -k1,18695:10842822,23460716:236283 -k1,18695:13792295,23460716:236282 -k1,18695:15635521,23460716:236283 -k1,18695:17911283,23460716:236282 -k1,18695:18617459,23460716:236283 -k1,18695:19385238,23460716:236282 -k1,18695:21404756,23460716:236283 -k1,18695:24054074,23460716:236282 -k1,18695:24941785,23460716:236283 -k1,18695:26270552,23460716:236282 -k1,18695:29086987,23460716:236283 -k1,18695:31601955,23460716:236282 -k1,18696:32583029,23460716:0 -) -(1,18696:6630773,24302204:25952256,505283,7863 -g1,18695:9151943,24302204 -k1,18696:32583030,24302204:21873296 -g1,18696:32583030,24302204 -) -(1,18697:6630773,26393464:25952256,555811,139132 -(1,18697:6630773,26393464:2899444,534184,12975 -g1,18697:6630773,26393464 -g1,18697:9530217,26393464 -) -k1,18697:32583029,26393464:20389102 -g1,18697:32583029,26393464 -) -(1,18702:6630773,27628168:25952256,513147,134348 -k1,18701:9422334,27628168:256628 -k1,18701:11957648,27628168:256628 -k1,18701:14974652,27628168:256628 -k1,18701:18257077,27628168:256628 -k1,18701:19798211,27628168:256628 -k1,18701:21770572,27628168:256628 -k1,18701:22485296,27628168:256627 -k1,18701:24612322,27628168:256628 -k1,18701:25520378,27628168:256628 -k1,18701:27980982,27628168:256628 -k1,18701:30648024,27628168:256628 -k1,18701:31563944,27628168:256628 -k1,18701:32583029,27628168:0 -) -(1,18702:6630773,28469656:25952256,513147,134348 -k1,18701:8172052,28469656:151916 -k1,18701:9891588,28469656:151915 -k1,18701:10814207,28469656:151916 -k1,18701:13356173,28469656:151868 -k1,18701:14664799,28469656:151916 -k1,18701:15770264,28469656:151916 -k1,18701:17410502,28469656:151915 -k1,18701:18323946,28469656:151916 -k1,18701:20281378,28469656:151915 -k1,18701:21452379,28469656:151916 -k1,18701:23257768,28469656:151916 -k1,18701:26814278,28469656:151915 -k1,18701:27652356,28469656:151916 -k1,18701:28420309,28469656:151915 -k1,18701:29591310,28469656:151916 -k1,18701:32583029,28469656:0 -) -(1,18702:6630773,29311144:25952256,513147,7863 -g1,18701:7777653,29311144 -k1,18702:32583028,29311144:22474260 -g1,18702:32583028,29311144 -) -(1,18704:6630773,30152632:25952256,513147,134348 -h1,18703:6630773,30152632:983040,0,0 -k1,18703:8750590,30152632:183228 -k1,18703:10511269,30152632:183227 -k1,18703:11713582,30152632:183228 -k1,18703:12879849,30152632:183227 -k1,18703:15635365,30152632:183228 -k1,18703:16589295,30152632:183227 -k1,18703:18732049,30152632:183228 -k1,18703:20106722,30152632:183228 -k1,18703:25142235,30152632:183227 -k1,18703:28433180,30152632:183228 -k1,18703:29635492,30152632:183227 -k1,18703:31124853,30152632:183228 -k1,18704:32583029,30152632:0 -k1,18704:32583029,30152632:0 -) -v1,18706:6630773,31240977:0,393216,0 -(1,18738:6630773,45510161:25952256,14662400,196608 -g1,18738:6630773,45510161 -g1,18738:6630773,45510161 -g1,18738:6434165,45510161 -(1,18738:6434165,45510161:0,14662400,196608 -r1,18738:32779637,45510161:26345472,14859008,196608 -k1,18738:6434165,45510161:-26345472 -) -(1,18738:6434165,45510161:26345472,14662400,196608 -[1,18738:6630773,45510161:25952256,14465792,0 -(1,18708:6630773,31454887:25952256,410518,101187 -(1,18707:6630773,31454887:0,0,0 -g1,18707:6630773,31454887 -g1,18707:6630773,31454887 -g1,18707:6303093,31454887 -(1,18707:6303093,31454887:0,0,0 -) -g1,18707:6630773,31454887 -) -g1,18708:11372959,31454887 -g1,18708:12321397,31454887 -k1,18708:12321397,31454887:0 -h1,18708:24334933,31454887:0,0,0 -k1,18708:32583029,31454887:8248096 -g1,18708:32583029,31454887 -) -(1,18709:6630773,32121065:25952256,404226,50331 -h1,18709:6630773,32121065:0,0,0 -h1,18709:11056813,32121065:0,0,0 -k1,18709:32583029,32121065:21526216 -g1,18709:32583029,32121065 -) -(1,18737:6630773,32852779:25952256,379060,0 -(1,18711:6630773,32852779:0,0,0 -g1,18711:6630773,32852779 -g1,18711:6630773,32852779 -g1,18711:6303093,32852779 -(1,18711:6303093,32852779:0,0,0 -) -g1,18711:6630773,32852779 -) -h1,18737:7263064,32852779:0,0,0 -k1,18737:32583028,32852779:25319964 -g1,18737:32583028,32852779 -) -(1,18737:6630773,33518957:25952256,410518,101187 -h1,18737:6630773,33518957:0,0,0 -g1,18737:7579210,33518957 -g1,18737:9159939,33518957 -g1,18737:11372959,33518957 -g1,18737:12953688,33518957 -g1,18737:19592748,33518957 -h1,18737:20541185,33518957:0,0,0 -k1,18737:32583029,33518957:12041844 -g1,18737:32583029,33518957 -) -(1,18737:6630773,34185135:25952256,379060,0 -h1,18737:6630773,34185135:0,0,0 -h1,18737:7263064,34185135:0,0,0 -k1,18737:32583028,34185135:25319964 -g1,18737:32583028,34185135 -) -(1,18737:6630773,34851313:25952256,410518,101187 -h1,18737:6630773,34851313:0,0,0 -g1,18737:7579210,34851313 -g1,18737:9476084,34851313 -g1,18737:10740667,34851313 -g1,18737:14218270,34851313 -g1,18737:16747436,34851313 -g1,18737:17379728,34851313 -g1,18737:21173476,34851313 -k1,18737:21173476,34851313:0 -h1,18737:24334933,34851313:0,0,0 -k1,18737:32583029,34851313:8248096 -g1,18737:32583029,34851313 -) -(1,18737:6630773,35517491:25952256,379060,0 -h1,18737:6630773,35517491:0,0,0 -h1,18737:7263064,35517491:0,0,0 -k1,18737:32583028,35517491:25319964 -g1,18737:32583028,35517491 -) -(1,18737:6630773,36183669:25952256,404226,101187 -h1,18737:6630773,36183669:0,0,0 -k1,18737:7473828,36183669:210764 -k1,18737:8633029,36183669:210764 -k1,18737:8843793,36183669:210764 -k1,18737:9054557,36183669:210764 -k1,18737:11794486,36183669:210764 -k1,18737:12321396,36183669:210764 -k1,18737:14429034,36183669:210764 -k1,18737:19065838,36183669:210764 -k1,18737:19276602,36183669:210764 -k1,18737:19487366,36183669:210764 -k1,18737:19698130,36183669:210764 -k1,18737:22438059,36183669:210764 -k1,18737:24545697,36183669:210764 -k1,18737:25072607,36183669:210764 -k1,18737:27180245,36183669:210764 -k1,18737:27391009,36183669:210764 -k1,18737:29498647,36183669:210764 -k1,18737:30657848,36183669:210764 -h1,18737:33503159,36183669:0,0,0 -k1,18737:33503159,36183669:0 -k1,18737:33503159,36183669:0 -) -(1,18737:6630773,36849847:25952256,404226,107478 -h1,18737:6630773,36849847:0,0,0 -g1,18737:7579210,36849847 -g1,18737:8843793,36849847 -g1,18737:9159939,36849847 -g1,18737:9476085,36849847 -g1,18737:11372959,36849847 -g1,18737:11689105,36849847 -g1,18737:12005251,36849847 -g1,18737:12321397,36849847 -g1,18737:12953689,36849847 -h1,18737:18644311,36849847:0,0,0 -k1,18737:32583029,36849847:13938718 -g1,18737:32583029,36849847 -) -(1,18737:6630773,37516025:25952256,404226,76021 -h1,18737:6630773,37516025:0,0,0 -g1,18737:7579210,37516025 -g1,18737:8843793,37516025 -g1,18737:9159939,37516025 -g1,18737:9476085,37516025 -g1,18737:10424522,37516025 -g1,18737:10740668,37516025 -g1,18737:11056814,37516025 -g1,18737:11372960,37516025 -g1,18737:11689106,37516025 -g1,18737:12005252,37516025 -g1,18737:12321398,37516025 -g1,18737:12953690,37516025 -h1,18737:13902127,37516025:0,0,0 -k1,18737:32583029,37516025:18680902 -g1,18737:32583029,37516025 -) -(1,18737:6630773,38182203:25952256,404226,76021 -h1,18737:6630773,38182203:0,0,0 -g1,18737:7579210,38182203 -g1,18737:8843793,38182203 -g1,18737:9159939,38182203 -g1,18737:9476085,38182203 -g1,18737:10424522,38182203 -g1,18737:10740668,38182203 -g1,18737:11056814,38182203 -g1,18737:11372960,38182203 -g1,18737:11689106,38182203 -g1,18737:12005252,38182203 -g1,18737:12321398,38182203 -g1,18737:12953690,38182203 -h1,18737:13902127,38182203:0,0,0 -k1,18737:32583029,38182203:18680902 -g1,18737:32583029,38182203 -) -(1,18737:6630773,38848381:25952256,404226,76021 -h1,18737:6630773,38848381:0,0,0 -g1,18737:7579210,38848381 -g1,18737:8843793,38848381 -g1,18737:9159939,38848381 -g1,18737:9476085,38848381 -g1,18737:10424522,38848381 -g1,18737:10740668,38848381 -g1,18737:11056814,38848381 -g1,18737:11372960,38848381 -g1,18737:11689106,38848381 -g1,18737:12005252,38848381 -g1,18737:12321398,38848381 -g1,18737:12953690,38848381 -h1,18737:14218273,38848381:0,0,0 -k1,18737:32583029,38848381:18364756 -g1,18737:32583029,38848381 -) -(1,18737:6630773,39514559:25952256,379060,0 -h1,18737:6630773,39514559:0,0,0 -h1,18737:7263064,39514559:0,0,0 -k1,18737:32583028,39514559:25319964 -g1,18737:32583028,39514559 -) -(1,18737:6630773,40180737:25952256,404226,76021 -h1,18737:6630773,40180737:0,0,0 -g1,18737:7579210,40180737 -g1,18737:11056813,40180737 -g1,18737:11689105,40180737 -g1,18737:12637542,40180737 -h1,18737:15166707,40180737:0,0,0 -k1,18737:32583029,40180737:17416322 -g1,18737:32583029,40180737 -) -(1,18737:6630773,40846915:25952256,379060,0 -h1,18737:6630773,40846915:0,0,0 -h1,18737:7263064,40846915:0,0,0 -k1,18737:32583028,40846915:25319964 -g1,18737:32583028,40846915 -) -(1,18737:6630773,41513093:25952256,404226,107478 -h1,18737:6630773,41513093:0,0,0 -k1,18737:7570215,41513093:307151 -k1,18737:7877366,41513093:307151 -k1,18737:8184517,41513093:307151 -k1,18737:9440104,41513093:307150 -k1,18737:9747255,41513093:307151 -k1,18737:10054406,41513093:307151 -k1,18737:11626140,41513093:307151 -k1,18737:11933291,41513093:307151 -k1,18737:14137316,41513093:307151 -k1,18737:14444466,41513093:307150 -k1,18737:14751617,41513093:307151 -k1,18737:15058768,41513093:307151 -k1,18737:15365919,41513093:307151 -k1,18737:15673070,41513093:307151 -k1,18737:15980221,41513093:307151 -k1,18737:17235808,41513093:307150 -k1,18737:17542959,41513093:307151 -k1,18737:17850110,41513093:307151 -k1,18737:18157261,41513093:307151 -k1,18737:18464412,41513093:307151 -k1,18737:19720000,41513093:307151 -k1,18737:21607879,41513093:307151 -k1,18737:23495757,41513093:307150 -k1,18737:23802908,41513093:307151 -k1,18737:24110059,41513093:307151 -k1,18737:24417210,41513093:307151 -k1,18737:25988944,41513093:307151 -k1,18737:26296095,41513093:307151 -k1,18737:26603245,41513093:307150 -k1,18737:26910396,41513093:307151 -k1,18737:28482130,41513093:307151 -k1,18737:30370009,41513093:307151 -h1,18737:32583029,41513093:0,0,0 -k1,18737:32583029,41513093:0 -k1,18737:32583029,41513093:0 -) -(1,18737:6630773,42179271:25952256,404226,107478 -h1,18737:6630773,42179271:0,0,0 -g1,18737:7579210,42179271 -g1,18737:7895356,42179271 -g1,18737:8211502,42179271 -g1,18737:10108377,42179271 -g1,18737:12005252,42179271 -g1,18737:12321398,42179271 -g1,18737:14218273,42179271 -g1,18737:14534419,42179271 -g1,18737:14850565,42179271 -g1,18737:15166711,42179271 -g1,18737:15482857,42179271 -g1,18737:17379732,42179271 -g1,18737:17695878,42179271 -g1,18737:18012024,42179271 -g1,18737:19908899,42179271 -g1,18737:21805774,42179271 -g1,18737:23702649,42179271 -g1,18737:24018795,42179271 -g1,18737:24334941,42179271 -g1,18737:26231816,42179271 -g1,18737:26547962,42179271 -g1,18737:26864108,42179271 -g1,18737:28760983,42179271 -g1,18737:30657858,42179271 -k1,18737:30657858,42179271:0 -h1,18737:32238587,42179271:0,0,0 -k1,18737:32583029,42179271:344442 -g1,18737:32583029,42179271 -) -(1,18737:6630773,42845449:25952256,404226,9436 -h1,18737:6630773,42845449:0,0,0 -g1,18737:7579210,42845449 -g1,18737:8211502,42845449 -g1,18737:9159939,42845449 -g1,18737:9476085,42845449 -g1,18737:9792231,42845449 -g1,18737:10108377,42845449 -g1,18737:11372960,42845449 -g1,18737:11689106,42845449 -g1,18737:12005252,42845449 -g1,18737:12321398,42845449 -g1,18737:12637544,42845449 -g1,18737:12953690,42845449 -g1,18737:14218273,42845449 -g1,18737:14534419,42845449 -g1,18737:14850565,42845449 -g1,18737:15166711,42845449 -g1,18737:15482857,42845449 -g1,18737:15799003,42845449 -g1,18737:16115149,42845449 -g1,18737:16747441,42845449 -g1,18737:17063587,42845449 -g1,18737:17379733,42845449 -g1,18737:17695879,42845449 -g1,18737:19908899,42845449 -g1,18737:20225045,42845449 -g1,18737:20541191,42845449 -g1,18737:20857337,42845449 -g1,18737:21173483,42845449 -g1,18737:21805775,42845449 -g1,18737:22121921,42845449 -g1,18737:22438067,42845449 -g1,18737:23702650,42845449 -g1,18737:24018796,42845449 -g1,18737:24651088,42845449 -g1,18737:24967234,42845449 -g1,18737:25283380,42845449 -g1,18737:25599526,42845449 -g1,18737:25915672,42845449 -g1,18737:26231818,42845449 -g1,18737:26547964,42845449 -g1,18737:28760984,42845449 -g1,18737:30657858,42845449 -h1,18737:31922441,42845449:0,0,0 -k1,18737:32583029,42845449:660588 -g1,18737:32583029,42845449 -) -(1,18737:6630773,43511627:25952256,404226,9436 -h1,18737:6630773,43511627:0,0,0 -g1,18737:7579210,43511627 -g1,18737:8211502,43511627 -g1,18737:9159939,43511627 -g1,18737:9476085,43511627 -g1,18737:9792231,43511627 -g1,18737:10108377,43511627 -g1,18737:11372960,43511627 -g1,18737:11689106,43511627 -g1,18737:12005252,43511627 -g1,18737:12321398,43511627 -g1,18737:12637544,43511627 -g1,18737:12953690,43511627 -g1,18737:13269836,43511627 -g1,18737:14218273,43511627 -g1,18737:14534419,43511627 -g1,18737:14850565,43511627 -g1,18737:15166711,43511627 -g1,18737:15482857,43511627 -g1,18737:17379731,43511627 -g1,18737:17695877,43511627 -g1,18737:19908897,43511627 -g1,18737:20225043,43511627 -g1,18737:20541189,43511627 -g1,18737:20857335,43511627 -g1,18737:21173481,43511627 -g1,18737:21805773,43511627 -g1,18737:22121919,43511627 -g1,18737:22438065,43511627 -g1,18737:22754211,43511627 -g1,18737:23702648,43511627 -g1,18737:26231814,43511627 -g1,18737:26547960,43511627 -g1,18737:28760980,43511627 -g1,18737:30657854,43511627 -h1,18737:31922437,43511627:0,0,0 -k1,18737:32583029,43511627:660592 -g1,18737:32583029,43511627 -) -(1,18737:6630773,44177805:25952256,404226,9436 -h1,18737:6630773,44177805:0,0,0 -g1,18737:7579210,44177805 -g1,18737:8211502,44177805 -g1,18737:9159939,44177805 -g1,18737:9476085,44177805 -g1,18737:9792231,44177805 -g1,18737:10108377,44177805 -g1,18737:11689106,44177805 -g1,18737:12005252,44177805 -g1,18737:12321398,44177805 -g1,18737:12637544,44177805 -g1,18737:12953690,44177805 -g1,18737:13269836,44177805 -g1,18737:14218273,44177805 -g1,18737:16747439,44177805 -g1,18737:17063585,44177805 -g1,18737:17379731,44177805 -g1,18737:19908897,44177805 -g1,18737:20225043,44177805 -g1,18737:20541189,44177805 -g1,18737:20857335,44177805 -g1,18737:21173481,44177805 -g1,18737:21805773,44177805 -g1,18737:22121919,44177805 -g1,18737:22438065,44177805 -g1,18737:22754211,44177805 -g1,18737:23702648,44177805 -g1,18737:26231814,44177805 -g1,18737:28760980,44177805 -g1,18737:30657854,44177805 -h1,18737:31922437,44177805:0,0,0 -k1,18737:32583029,44177805:660592 -g1,18737:32583029,44177805 -) -(1,18737:6630773,44843983:25952256,404226,50331 -h1,18737:6630773,44843983:0,0,0 -g1,18737:7579210,44843983 -g1,18737:8211502,44843983 -g1,18737:9476085,44843983 -g1,18737:11056814,44843983 -g1,18737:14850562,44843983 -g1,18737:17695873,44843983 -g1,18737:19276602,44843983 -g1,18737:20225039,44843983 -h1,18737:23070350,44843983:0,0,0 -k1,18737:32583029,44843983:9512679 -g1,18737:32583029,44843983 -) -(1,18737:6630773,45510161:25952256,379060,0 -h1,18737:6630773,45510161:0,0,0 -h1,18737:7263064,45510161:0,0,0 -k1,18737:32583028,45510161:25319964 -g1,18737:32583028,45510161 -) -] -) -g1,18738:32583029,45510161 -g1,18738:6630773,45510161 -g1,18738:6630773,45510161 -g1,18738:32583029,45510161 -g1,18738:32583029,45510161 -) -] -(1,18738:32583029,45706769:0,0,0 -g1,18738:32583029,45706769 -) -) -] -(1,18738:6630773,47279633:25952256,0,0 -h1,18738:6630773,47279633:25952256,0,0 -) -] -(1,18738:4262630,4025873:0,0,0 -[1,18738:-473656,4025873:0,0,0 -(1,18738:-473656,-710413:0,0,0 -(1,18738:-473656,-710413:0,0,0 -g1,18738:-473656,-710413 -) -g1,18738:-473656,-710413 -) -] -) -] -!29503 -}366 -Input:2980:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!104 -{367 -[1,18819:4262630,47279633:28320399,43253760,0 -(1,18819:4262630,4025873:0,0,0 -[1,18819:-473656,4025873:0,0,0 -(1,18819:-473656,-710413:0,0,0 -(1,18819:-473656,-644877:0,0,0 -k1,18819:-473656,-644877:-65536 -) -(1,18819:-473656,4736287:0,0,0 -k1,18819:-473656,4736287:5209943 -) -g1,18819:-473656,-710413 -) -] -) -[1,18819:6630773,47279633:25952256,43253760,0 -[1,18819:6630773,4812305:25952256,786432,0 -(1,18819:6630773,4812305:25952256,505283,126483 -(1,18819:6630773,4812305:25952256,505283,126483 -g1,18819:3078558,4812305 -[1,18819:3078558,4812305:0,0,0 -(1,18819:3078558,2439708:0,1703936,0 -k1,18819:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,18819:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,18819:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 -) -] -) -) -) -] -[1,18819:3078558,4812305:0,0,0 -(1,18819:3078558,2439708:0,1703936,0 -g1,18819:29030814,2439708 -g1,18819:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,18819:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 -) -] -) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,18819:37855564,2439708:1179648,16384,0 -) -) -k1,18819:3078556,2439708:-34777008 -) -] -[1,18819:3078558,4812305:0,0,0 -(1,18819:3078558,49800853:0,16384,2228224 -k1,18819:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,18819:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,18819:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 -) -] -) -) -) -] -[1,18819:3078558,4812305:0,0,0 -(1,18819:3078558,49800853:0,16384,2228224 -g1,18819:29030814,49800853 -g1,18819:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,18819:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 -) -] -) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,18819:37855564,49800853:1179648,16384,0 -) -) -k1,18819:3078556,49800853:-34777008 -) -] -g1,18819:6630773,4812305 -k1,18819:25146660,4812305:17320510 -g1,18819:26880087,4812305 -g1,18819:29193507,4812305 -g1,18819:30603186,4812305 -) -) -] -[1,18819:6630773,45706769:25952256,40108032,0 -(1,18819:6630773,45706769:25952256,40108032,0 -(1,18819:6630773,45706769:0,0,0 -g1,18819:6630773,45706769 -) -[1,18819:6630773,45706769:25952256,40108032,0 -v1,18738:6630773,6254097:0,393216,0 -(1,18738:6630773,9135863:25952256,3274982,196608 -g1,18738:6630773,9135863 -g1,18738:6630773,9135863 -g1,18738:6434165,9135863 -(1,18738:6434165,9135863:0,3274982,196608 -r1,18819:32779637,9135863:26345472,3471590,196608 -k1,18738:6434165,9135863:-26345472 -) -(1,18738:6434165,9135863:26345472,3274982,196608 -[1,18738:6630773,9135863:25952256,3078374,0 -(1,18737:6630773,6461715:25952256,404226,6290 -h1,18737:6630773,6461715:0,0,0 -g1,18737:7579210,6461715 -g1,18737:10424521,6461715 -h1,18737:13902123,6461715:0,0,0 -k1,18737:32583029,6461715:18680906 -g1,18737:32583029,6461715 -) -(1,18737:6630773,7127893:25952256,379060,0 -h1,18737:6630773,7127893:0,0,0 -h1,18737:7263064,7127893:0,0,0 -k1,18737:32583028,7127893:25319964 -g1,18737:32583028,7127893 -) -(1,18737:6630773,7794071:25952256,404226,107478 -h1,18737:6630773,7794071:0,0,0 -g1,18737:7579210,7794071 -g1,18737:7895356,7794071 -g1,18737:8211502,7794071 -g1,18737:9476085,7794071 -g1,18737:9792231,7794071 -g1,18737:10108377,7794071 -g1,18737:11689106,7794071 -g1,18737:12005252,7794071 -g1,18737:14218272,7794071 -g1,18737:14534418,7794071 -g1,18737:14850564,7794071 -g1,18737:16115147,7794071 -g1,18737:16431293,7794071 -g1,18737:16747439,7794071 -g1,18737:18012022,7794071 -g1,18737:19908896,7794071 -h1,18737:22754207,7794071:0,0,0 -k1,18737:32583029,7794071:9828822 -g1,18737:32583029,7794071 -) -(1,18737:6630773,8460249:25952256,404226,107478 -h1,18737:6630773,8460249:0,0,0 -g1,18737:7579210,8460249 -g1,18737:7895356,8460249 -g1,18737:8211502,8460249 -g1,18737:10108377,8460249 -g1,18737:12005252,8460249 -g1,18737:12321398,8460249 -g1,18737:14218273,8460249 -g1,18737:16115148,8460249 -g1,18737:18012023,8460249 -g1,18737:19908898,8460249 -k1,18737:19908898,8460249:0 -h1,18737:21489627,8460249:0,0,0 -k1,18737:32583029,8460249:11093402 -g1,18737:32583029,8460249 -) -(1,18737:6630773,9126427:25952256,404226,9436 -h1,18737:6630773,9126427:0,0,0 -g1,18737:7579210,9126427 -g1,18737:8211502,9126427 -g1,18737:9159939,9126427 -g1,18737:9476085,9126427 -g1,18737:9792231,9126427 -g1,18737:10108377,9126427 -g1,18737:12005251,9126427 -g1,18737:12321397,9126427 -g1,18737:12637543,9126427 -g1,18737:12953689,9126427 -g1,18737:13269835,9126427 -g1,18737:13585981,9126427 -g1,18737:14218273,9126427 -g1,18737:14534419,9126427 -g1,18737:14850565,9126427 -g1,18737:15166711,9126427 -g1,18737:15482857,9126427 -g1,18737:16115149,9126427 -g1,18737:16431295,9126427 -g1,18737:16747441,9126427 -g1,18737:17063587,9126427 -g1,18737:17379733,9126427 -g1,18737:18012025,9126427 -g1,18737:19908899,9126427 -h1,18737:21489627,9126427:0,0,0 -k1,18737:32583029,9126427:11093402 -g1,18737:32583029,9126427 -) -] -) -g1,18738:32583029,9135863 -g1,18738:6630773,9135863 -g1,18738:6630773,9135863 -g1,18738:32583029,9135863 -g1,18738:32583029,9135863 -) -h1,18738:6630773,9332471:0,0,0 -v1,18742:6630773,11047225:0,393216,0 -(1,18754:6630773,15326883:25952256,4672874,196608 -g1,18754:6630773,15326883 -g1,18754:6630773,15326883 -g1,18754:6434165,15326883 -(1,18754:6434165,15326883:0,4672874,196608 -r1,18819:32779637,15326883:26345472,4869482,196608 -k1,18754:6434165,15326883:-26345472 -) -(1,18754:6434165,15326883:26345472,4672874,196608 -[1,18754:6630773,15326883:25952256,4476266,0 -(1,18744:6630773,11254843:25952256,404226,101187 -(1,18743:6630773,11254843:0,0,0 -g1,18743:6630773,11254843 -g1,18743:6630773,11254843 -g1,18743:6303093,11254843 -(1,18743:6303093,11254843:0,0,0 -) -g1,18743:6630773,11254843 -) -k1,18744:6630773,11254843:0 -h1,18744:14850561,11254843:0,0,0 -k1,18744:32583029,11254843:17732468 -g1,18744:32583029,11254843 -) -(1,18753:6630773,11986557:25952256,404226,9436 -(1,18746:6630773,11986557:0,0,0 -g1,18746:6630773,11986557 -g1,18746:6630773,11986557 -g1,18746:6303093,11986557 -(1,18746:6303093,11986557:0,0,0 -) -g1,18746:6630773,11986557 -) -g1,18753:7579210,11986557 -g1,18753:8211502,11986557 -g1,18753:8843794,11986557 -g1,18753:11372960,11986557 -g1,18753:12005252,11986557 -g1,18753:12637544,11986557 -h1,18753:12953690,11986557:0,0,0 -k1,18753:32583030,11986557:19629340 -g1,18753:32583030,11986557 -) -(1,18753:6630773,12652735:25952256,404226,107478 -h1,18753:6630773,12652735:0,0,0 -g1,18753:7579210,12652735 -g1,18753:7895356,12652735 -g1,18753:8211502,12652735 -g1,18753:9792231,12652735 -g1,18753:10108377,12652735 -g1,18753:12321397,12652735 -g1,18753:14218271,12652735 -g1,18753:16115145,12652735 -g1,18753:16431291,12652735 -g1,18753:16747437,12652735 -g1,18753:17063583,12652735 -g1,18753:18012020,12652735 -g1,18753:19908894,12652735 -h1,18753:22754205,12652735:0,0,0 -k1,18753:32583029,12652735:9828824 -g1,18753:32583029,12652735 -) -(1,18753:6630773,13318913:25952256,404226,107478 -h1,18753:6630773,13318913:0,0,0 -g1,18753:7579210,13318913 -g1,18753:7895356,13318913 -g1,18753:8211502,13318913 -g1,18753:10108377,13318913 -g1,18753:10424523,13318913 -g1,18753:12321398,13318913 -g1,18753:14218273,13318913 -g1,18753:16115148,13318913 -g1,18753:18012023,13318913 -g1,18753:19908898,13318913 -k1,18753:19908898,13318913:0 -h1,18753:21489627,13318913:0,0,0 -k1,18753:32583029,13318913:11093402 -g1,18753:32583029,13318913 -) -(1,18753:6630773,13985091:25952256,404226,9436 -h1,18753:6630773,13985091:0,0,0 -g1,18753:7579210,13985091 -g1,18753:8211502,13985091 -g1,18753:9476085,13985091 -g1,18753:9792231,13985091 -g1,18753:10108377,13985091 -g1,18753:10424523,13985091 -g1,18753:10740669,13985091 -g1,18753:11056815,13985091 -g1,18753:12321398,13985091 -g1,18753:12637544,13985091 -g1,18753:12953690,13985091 -g1,18753:13269836,13985091 -g1,18753:13585982,13985091 -g1,18753:14218274,13985091 -g1,18753:14534420,13985091 -g1,18753:14850566,13985091 -g1,18753:16115149,13985091 -g1,18753:16431295,13985091 -g1,18753:16747441,13985091 -g1,18753:17063587,13985091 -g1,18753:17379733,13985091 -g1,18753:18012025,13985091 -g1,18753:19908899,13985091 -h1,18753:21173482,13985091:0,0,0 -k1,18753:32583029,13985091:11409547 -g1,18753:32583029,13985091 -) -(1,18753:6630773,14651269:25952256,404226,9436 -h1,18753:6630773,14651269:0,0,0 -g1,18753:7579210,14651269 -g1,18753:8211502,14651269 -g1,18753:9476085,14651269 -g1,18753:9792231,14651269 -g1,18753:10108377,14651269 -g1,18753:10424523,14651269 -g1,18753:10740669,14651269 -g1,18753:11056815,14651269 -g1,18753:11372961,14651269 -g1,18753:12321398,14651269 -g1,18753:12637544,14651269 -g1,18753:12953690,14651269 -g1,18753:13269836,14651269 -g1,18753:13585982,14651269 -g1,18753:14218274,14651269 -g1,18753:14534420,14651269 -g1,18753:14850566,14651269 -g1,18753:15166712,14651269 -g1,18753:16115149,14651269 -g1,18753:16431295,14651269 -g1,18753:16747441,14651269 -g1,18753:17063587,14651269 -g1,18753:17379733,14651269 -g1,18753:18012025,14651269 -g1,18753:19908899,14651269 -h1,18753:21173482,14651269:0,0,0 -k1,18753:32583029,14651269:11409547 -g1,18753:32583029,14651269 -) -(1,18753:6630773,15317447:25952256,404226,9436 -h1,18753:6630773,15317447:0,0,0 -g1,18753:7579210,15317447 -g1,18753:8211502,15317447 -g1,18753:9792231,15317447 -g1,18753:10108377,15317447 -g1,18753:10424523,15317447 -g1,18753:10740669,15317447 -g1,18753:11056815,15317447 -g1,18753:11372961,15317447 -g1,18753:12321398,15317447 -g1,18753:12637544,15317447 -g1,18753:12953690,15317447 -g1,18753:13269836,15317447 -g1,18753:13585982,15317447 -g1,18753:14218274,15317447 -g1,18753:14534420,15317447 -g1,18753:14850566,15317447 -g1,18753:15166712,15317447 -g1,18753:16115149,15317447 -g1,18753:16431295,15317447 -g1,18753:16747441,15317447 -g1,18753:17063587,15317447 -g1,18753:17379733,15317447 -g1,18753:18012025,15317447 -g1,18753:19908899,15317447 -h1,18753:21173482,15317447:0,0,0 -k1,18753:32583029,15317447:11409547 -g1,18753:32583029,15317447 -) -] -) -g1,18754:32583029,15326883 -g1,18754:6630773,15326883 -g1,18754:6630773,15326883 -g1,18754:32583029,15326883 -g1,18754:32583029,15326883 -) -h1,18754:6630773,15523491:0,0,0 -v1,18758:6630773,17238245:0,393216,0 -(1,18769:6630773,20943476:25952256,4098447,196608 -g1,18769:6630773,20943476 -g1,18769:6630773,20943476 -g1,18769:6434165,20943476 -(1,18769:6434165,20943476:0,4098447,196608 -r1,18819:32779637,20943476:26345472,4295055,196608 -k1,18769:6434165,20943476:-26345472 -) -(1,18769:6434165,20943476:26345472,4098447,196608 -[1,18769:6630773,20943476:25952256,3901839,0 -(1,18760:6630773,17445863:25952256,404226,101187 -(1,18759:6630773,17445863:0,0,0 -g1,18759:6630773,17445863 -g1,18759:6630773,17445863 -g1,18759:6303093,17445863 -(1,18759:6303093,17445863:0,0,0 -) -g1,18759:6630773,17445863 -) -k1,18760:6630773,17445863:0 -h1,18760:14850561,17445863:0,0,0 -k1,18760:32583029,17445863:17732468 -g1,18760:32583029,17445863 -) -(1,18768:6630773,18177577:25952256,404226,9436 -(1,18762:6630773,18177577:0,0,0 -g1,18762:6630773,18177577 -g1,18762:6630773,18177577 -g1,18762:6303093,18177577 -(1,18762:6303093,18177577:0,0,0 -) -g1,18762:6630773,18177577 -) -g1,18768:7579210,18177577 -g1,18768:8211502,18177577 -g1,18768:8843794,18177577 -g1,18768:11372960,18177577 -g1,18768:12005252,18177577 -g1,18768:12637544,18177577 -h1,18768:12953690,18177577:0,0,0 -k1,18768:32583030,18177577:19629340 -g1,18768:32583030,18177577 -) -(1,18768:6630773,18843755:25952256,404226,101187 -h1,18768:6630773,18843755:0,0,0 -g1,18768:7579210,18843755 -g1,18768:7895356,18843755 -g1,18768:8211502,18843755 -g1,18768:8527648,18843755 -g1,18768:8843794,18843755 -g1,18768:9159940,18843755 -g1,18768:10108377,18843755 -g1,18768:11689106,18843755 -g1,18768:12005252,18843755 -g1,18768:12321398,18843755 -g1,18768:12637544,18843755 -g1,18768:12953690,18843755 -g1,18768:13269836,18843755 -g1,18768:13585982,18843755 -g1,18768:13902128,18843755 -g1,18768:14218274,18843755 -g1,18768:14534420,18843755 -g1,18768:14850566,18843755 -g1,18768:16431295,18843755 -g1,18768:16747441,18843755 -g1,18768:17063587,18843755 -g1,18768:17379733,18843755 -g1,18768:17695879,18843755 -g1,18768:19592753,18843755 -g1,18768:21489627,18843755 -h1,18768:24334938,18843755:0,0,0 -k1,18768:32583029,18843755:8248091 -g1,18768:32583029,18843755 -) -(1,18768:6630773,19509933:25952256,404226,107478 -h1,18768:6630773,19509933:0,0,0 -g1,18768:7579210,19509933 -g1,18768:7895356,19509933 -g1,18768:8211502,19509933 -g1,18768:10108377,19509933 -g1,18768:12005252,19509933 -g1,18768:12321398,19509933 -g1,18768:12637544,19509933 -g1,18768:12953690,19509933 -g1,18768:13269836,19509933 -g1,18768:13585982,19509933 -g1,18768:13902128,19509933 -g1,18768:14218274,19509933 -g1,18768:14534420,19509933 -g1,18768:14850566,19509933 -g1,18768:16747441,19509933 -g1,18768:17063587,19509933 -g1,18768:17379733,19509933 -g1,18768:17695879,19509933 -g1,18768:19592754,19509933 -g1,18768:21489629,19509933 -k1,18768:21489629,19509933:0 -h1,18768:23070358,19509933:0,0,0 -k1,18768:32583029,19509933:9512671 -g1,18768:32583029,19509933 -) -(1,18768:6630773,20176111:25952256,388497,101187 -h1,18768:6630773,20176111:0,0,0 -g1,18768:7579210,20176111 -g1,18768:8211502,20176111 -g1,18768:8527648,20176111 -g1,18768:8843794,20176111 -g1,18768:9159940,20176111 -g1,18768:9476086,20176111 -g1,18768:10108378,20176111 -g1,18768:12005252,20176111 -g1,18768:12321398,20176111 -g1,18768:12637544,20176111 -g1,18768:12953690,20176111 -g1,18768:13269836,20176111 -g1,18768:13585982,20176111 -g1,18768:13902128,20176111 -g1,18768:14218274,20176111 -g1,18768:14534420,20176111 -g1,18768:14850566,20176111 -g1,18768:17695877,20176111 -g1,18768:18012023,20176111 -g1,18768:18328169,20176111 -g1,18768:18644315,20176111 -g1,18768:18960461,20176111 -g1,18768:19592753,20176111 -g1,18768:19908899,20176111 -g1,18768:20225045,20176111 -g1,18768:20541191,20176111 -g1,18768:21489628,20176111 -h1,18768:23070356,20176111:0,0,0 -k1,18768:32583029,20176111:9512673 -g1,18768:32583029,20176111 -) -(1,18768:6630773,20842289:25952256,404226,101187 -h1,18768:6630773,20842289:0,0,0 -g1,18768:7579210,20842289 -g1,18768:8211502,20842289 -g1,18768:8527648,20842289 -g1,18768:8843794,20842289 -g1,18768:9159940,20842289 -g1,18768:9476086,20842289 -g1,18768:10108378,20842289 -g1,18768:14850564,20842289 -g1,18768:17695875,20842289 -g1,18768:18012021,20842289 -g1,18768:18328167,20842289 -g1,18768:18644313,20842289 -g1,18768:18960459,20842289 -g1,18768:19592751,20842289 -g1,18768:19908897,20842289 -g1,18768:20225043,20842289 -g1,18768:20541189,20842289 -g1,18768:20857335,20842289 -g1,18768:21489627,20842289 -h1,18768:23070355,20842289:0,0,0 -k1,18768:32583029,20842289:9512674 -g1,18768:32583029,20842289 -) -] -) -g1,18769:32583029,20943476 -g1,18769:6630773,20943476 -g1,18769:6630773,20943476 -g1,18769:32583029,20943476 -g1,18769:32583029,20943476 -) -h1,18769:6630773,21140084:0,0,0 -(1,18774:6630773,22505860:25952256,513147,134348 -h1,18772:6630773,22505860:983040,0,0 -k1,18772:8804152,22505860:236790 -k1,18772:11244918,22505860:236790 -k1,18772:11837567,22505860:236789 -k1,18772:14154470,22505860:236790 -k1,18772:15050552,22505860:236790 -k1,18772:16306427,22505860:236790 -k1,18772:17932579,22505860:236789 -k1,18772:19436835,22505860:236790 -k1,18772:20029485,22505860:236790 -k1,18772:22077690,22505860:236790 -k1,18772:22930517,22505860:236789 -k1,18772:24556015,22505860:236790 -k1,18772:25682784,22505860:236790 -k1,18772:27366609,22505860:236790 -k1,18772:29957451,22505860:236789 -k1,18772:31385686,22505860:236790 -k1,18772:32583029,22505860:0 -) -(1,18774:6630773,23347348:25952256,513147,134348 -g1,18773:7849087,23347348 -g1,18773:10479702,23347348 -g1,18773:12414324,23347348 -g1,18773:12969413,23347348 -g1,18773:14558661,23347348 -g1,18773:17504504,23347348 -g1,18773:19271354,23347348 -g1,18773:21633270,23347348 -g1,18773:23023944,23347348 -g1,18773:26007798,23347348 -g1,18773:27774648,23347348 -k1,18774:32583029,23347348:2662078 -g1,18774:32583029,23347348 -) -v1,18776:6630773,24537814:0,393216,0 -(1,18793:6630773,32148362:25952256,8003764,196608 -g1,18793:6630773,32148362 -g1,18793:6630773,32148362 -g1,18793:6434165,32148362 -(1,18793:6434165,32148362:0,8003764,196608 -r1,18819:32779637,32148362:26345472,8200372,196608 -k1,18793:6434165,32148362:-26345472 -) -(1,18793:6434165,32148362:26345472,8003764,196608 -[1,18793:6630773,32148362:25952256,7807156,0 -(1,18778:6630773,24745432:25952256,404226,101187 -(1,18777:6630773,24745432:0,0,0 -g1,18777:6630773,24745432 -g1,18777:6630773,24745432 -g1,18777:6303093,24745432 -(1,18777:6303093,24745432:0,0,0 -) -g1,18777:6630773,24745432 -) -k1,18778:6630773,24745432:0 -k1,18778:6630773,24745432:0 -h1,18778:15482852,24745432:0,0,0 -k1,18778:32583028,24745432:17100176 -g1,18778:32583028,24745432 -) -(1,18779:6630773,25411610:25952256,410518,107478 -h1,18779:6630773,25411610:0,0,0 -g1,18779:6946919,25411610 -g1,18779:7263065,25411610 -g1,18779:7579211,25411610 -g1,18779:7895357,25411610 -g1,18779:8211503,25411610 -g1,18779:8527649,25411610 -g1,18779:8843795,25411610 -g1,18779:9159941,25411610 -g1,18779:9476087,25411610 -g1,18779:9792233,25411610 -g1,18779:10108379,25411610 -g1,18779:10424525,25411610 -g1,18779:10740671,25411610 -g1,18779:12005254,25411610 -g1,18779:12637546,25411610 -g1,18779:16431295,25411610 -g1,18779:17379733,25411610 -g1,18779:18328170,25411610 -k1,18779:18328170,25411610:0 -h1,18779:18960462,25411610:0,0,0 -k1,18779:32583029,25411610:13622567 -g1,18779:32583029,25411610 -) -(1,18780:6630773,26077788:25952256,410518,107478 -h1,18780:6630773,26077788:0,0,0 -g1,18780:6946919,26077788 -g1,18780:7263065,26077788 -g1,18780:7579211,26077788 -g1,18780:7895357,26077788 -g1,18780:8211503,26077788 -g1,18780:8527649,26077788 -g1,18780:8843795,26077788 -g1,18780:9159941,26077788 -g1,18780:9476087,26077788 -g1,18780:9792233,26077788 -g1,18780:10108379,26077788 -g1,18780:10424525,26077788 -g1,18780:10740671,26077788 -g1,18780:12005254,26077788 -g1,18780:12637546,26077788 -g1,18780:16431295,26077788 -g1,18780:17379733,26077788 -g1,18780:18328170,26077788 -g1,18780:19592753,26077788 -k1,18780:19592753,26077788:0 -h1,18780:20857335,26077788:0,0,0 -k1,18780:32583029,26077788:11725694 -g1,18780:32583029,26077788 -) -(1,18781:6630773,26743966:25952256,404226,101187 -h1,18781:6630773,26743966:0,0,0 -g1,18781:6946919,26743966 -g1,18781:7263065,26743966 -g1,18781:11372959,26743966 -g1,18781:12005251,26743966 -g1,18781:12953689,26743966 -g1,18781:14850563,26743966 -g1,18781:15482855,26743966 -g1,18781:23070352,26743966 -g1,18781:23702644,26743966 -g1,18781:27812538,26743966 -k1,18781:27812538,26743966:0 -h1,18781:29077120,26743966:0,0,0 -k1,18781:32583029,26743966:3505909 -g1,18781:32583029,26743966 -) -(1,18782:6630773,27410144:25952256,404226,82312 -h1,18782:6630773,27410144:0,0,0 -g1,18782:6946919,27410144 -g1,18782:7263065,27410144 -g1,18782:11372959,27410144 -g1,18782:12005251,27410144 -g1,18782:12953689,27410144 -k1,18782:12953689,27410144:0 -h1,18782:14850563,27410144:0,0,0 -k1,18782:32583029,27410144:17732466 -g1,18782:32583029,27410144 -) -(1,18792:6630773,28141858:25952256,404226,9436 -(1,18784:6630773,28141858:0,0,0 -g1,18784:6630773,28141858 -g1,18784:6630773,28141858 -g1,18784:6303093,28141858 -(1,18784:6303093,28141858:0,0,0 -) -g1,18784:6630773,28141858 -) -g1,18792:7579210,28141858 -g1,18792:8211502,28141858 -g1,18792:8843794,28141858 -g1,18792:11372960,28141858 -g1,18792:12321397,28141858 -g1,18792:12953689,28141858 -h1,18792:13269835,28141858:0,0,0 -k1,18792:32583029,28141858:19313194 -g1,18792:32583029,28141858 -) -(1,18792:6630773,28808036:25952256,404226,101187 -h1,18792:6630773,28808036:0,0,0 -g1,18792:7579210,28808036 -g1,18792:7895356,28808036 -g1,18792:8211502,28808036 -g1,18792:10108376,28808036 -g1,18792:14850562,28808036 -g1,18792:15166708,28808036 -g1,18792:15482854,28808036 -g1,18792:16747437,28808036 -g1,18792:17063583,28808036 -g1,18792:17379729,28808036 -g1,18792:18644312,28808036 -h1,18792:20225040,28808036:0,0,0 -k1,18792:32583029,28808036:12357989 -g1,18792:32583029,28808036 -) -(1,18792:6630773,29474214:25952256,404226,6290 -h1,18792:6630773,29474214:0,0,0 -g1,18792:7579210,29474214 -g1,18792:7895356,29474214 -g1,18792:8211502,29474214 -g1,18792:10108377,29474214 -g1,18792:10424523,29474214 -g1,18792:10740669,29474214 -g1,18792:11056815,29474214 -g1,18792:11372961,29474214 -g1,18792:11689107,29474214 -g1,18792:12005253,29474214 -g1,18792:12321399,29474214 -g1,18792:12637545,29474214 -g1,18792:12953691,29474214 -g1,18792:14850566,29474214 -g1,18792:16747441,29474214 -g1,18792:18644316,29474214 -k1,18792:18644316,29474214:0 -h1,18792:20225045,29474214:0,0,0 -k1,18792:32583029,29474214:12357984 -g1,18792:32583029,29474214 -) -(1,18792:6630773,30140392:25952256,388497,9436 -h1,18792:6630773,30140392:0,0,0 -g1,18792:7579210,30140392 -g1,18792:8211502,30140392 -g1,18792:8527648,30140392 -g1,18792:10108377,30140392 -g1,18792:10424523,30140392 -g1,18792:10740669,30140392 -g1,18792:11056815,30140392 -g1,18792:11372961,30140392 -g1,18792:11689107,30140392 -g1,18792:12005253,30140392 -g1,18792:14850564,30140392 -g1,18792:15166710,30140392 -g1,18792:16747439,30140392 -g1,18792:17063585,30140392 -g1,18792:18644314,30140392 -g1,18792:18960460,30140392 -g1,18792:19276606,30140392 -g1,18792:19592752,30140392 -h1,18792:20225043,30140392:0,0,0 -k1,18792:32583029,30140392:12357986 -g1,18792:32583029,30140392 -) -(1,18792:6630773,30806570:25952256,388497,9436 -h1,18792:6630773,30806570:0,0,0 -g1,18792:7579210,30806570 -g1,18792:8211502,30806570 -g1,18792:8527648,30806570 -g1,18792:10108377,30806570 -g1,18792:10424523,30806570 -g1,18792:10740669,30806570 -g1,18792:11056815,30806570 -g1,18792:11372961,30806570 -g1,18792:11689107,30806570 -g1,18792:12005253,30806570 -g1,18792:14850564,30806570 -g1,18792:15166710,30806570 -g1,18792:16747439,30806570 -g1,18792:17063585,30806570 -g1,18792:18644314,30806570 -g1,18792:18960460,30806570 -g1,18792:19276606,30806570 -g1,18792:19592752,30806570 -g1,18792:19908898,30806570 -h1,18792:20225044,30806570:0,0,0 -k1,18792:32583029,30806570:12357985 -g1,18792:32583029,30806570 -) -(1,18792:6630773,31472748:25952256,388497,9436 -h1,18792:6630773,31472748:0,0,0 -g1,18792:7579210,31472748 -g1,18792:8211502,31472748 -g1,18792:8527648,31472748 -g1,18792:10108377,31472748 -g1,18792:10424523,31472748 -g1,18792:10740669,31472748 -g1,18792:11056815,31472748 -g1,18792:11372961,31472748 -g1,18792:11689107,31472748 -g1,18792:12005253,31472748 -g1,18792:14850564,31472748 -g1,18792:15166710,31472748 -g1,18792:16747439,31472748 -g1,18792:17063585,31472748 -g1,18792:18644314,31472748 -g1,18792:18960460,31472748 -g1,18792:19276606,31472748 -g1,18792:19592752,31472748 -g1,18792:19908898,31472748 -h1,18792:20225044,31472748:0,0,0 -k1,18792:32583029,31472748:12357985 -g1,18792:32583029,31472748 -) -(1,18792:6630773,32138926:25952256,404226,9436 -h1,18792:6630773,32138926:0,0,0 -g1,18792:7579210,32138926 -g1,18792:8211502,32138926 -g1,18792:9476085,32138926 -g1,18792:11056814,32138926 -g1,18792:11689106,32138926 -g1,18792:13269835,32138926 -h1,18792:14534418,32138926:0,0,0 -k1,18792:32583030,32138926:18048612 -g1,18792:32583030,32138926 -) -] -) -g1,18793:32583029,32148362 -g1,18793:6630773,32148362 -g1,18793:6630773,32148362 -g1,18793:32583029,32148362 -g1,18793:32583029,32148362 -) -h1,18793:6630773,32344970:0,0,0 -(1,18797:6630773,33710746:25952256,513147,134348 -h1,18796:6630773,33710746:983040,0,0 -k1,18796:8476015,33710746:234367 -k1,18796:9913623,33710746:234367 -k1,18796:12389320,33710746:234366 -k1,18796:15458774,33710746:234367 -k1,18796:16561493,33710746:234367 -k1,18796:18999836,33710746:234367 -k1,18796:20623565,33710746:234366 -k1,18796:21805583,33710746:234367 -k1,18796:22806066,33710746:234367 -k1,18796:24324939,33710746:234367 -k1,18796:26577814,33710746:234366 -k1,18796:28556749,33710746:234367 -k1,18796:31753999,33710746:234367 -k1,18796:32583029,33710746:0 -) -(1,18797:6630773,34552234:25952256,513147,126483 -k1,18796:9206870,34552234:218767 -k1,18796:10628878,34552234:218767 -k1,18796:11715996,34552234:218766 -k1,18796:13465029,34552234:218767 -k1,18796:15059397,34552234:218767 -k1,18796:15929592,34552234:218767 -k1,18796:17620953,34552234:218767 -k1,18796:18858805,34552234:218767 -k1,18796:20269016,34552234:218766 -k1,18796:21435434,34552234:218767 -(1,18796:21435434,34552234:0,452978,115847 -r1,18819:22497123,34552234:1061689,568825,115847 -k1,18796:21435434,34552234:-1061689 -) -(1,18796:21435434,34552234:1061689,452978,115847 -k1,18796:21435434,34552234:3277 -h1,18796:22493846,34552234:0,411205,112570 -) -k1,18796:22715890,34552234:218767 -k1,18796:24502278,34552234:218767 -k1,18796:25740130,34552234:218767 -k1,18796:27848299,34552234:218766 -k1,18796:30096061,34552234:218767 -k1,18796:31511515,34552234:218767 -k1,18797:32583029,34552234:0 -) -(1,18797:6630773,35393722:25952256,513147,126483 -k1,18796:7770861,35393722:187195 -k1,18796:8489552,35393722:187194 -k1,18796:12034156,35393722:187195 -k1,18796:16538207,35393722:187194 -k1,18796:17916847,35393722:187195 -k1,18796:20817232,35393722:187194 -k1,18796:21952078,35393722:187195 -k1,18796:23158357,35393722:187194 -k1,18796:25197599,35393722:187195 -k1,18796:29060052,35393722:187194 -k1,18796:31386342,35393722:187195 -k1,18796:32583029,35393722:0 -) -(1,18797:6630773,36235210:25952256,513147,134348 -g1,18796:9737179,36235210 -g1,18796:10595700,36235210 -g1,18796:11814014,36235210 -g1,18796:14444629,36235210 -g1,18796:17201728,36235210 -k1,18797:32583029,36235210:11716528 -g1,18797:32583029,36235210 -) -v1,18799:6630773,37425676:0,393216,0 -(1,18815:6630773,44442922:25952256,7410462,196608 -g1,18815:6630773,44442922 -g1,18815:6630773,44442922 -g1,18815:6434165,44442922 -(1,18815:6434165,44442922:0,7410462,196608 -r1,18819:32779637,44442922:26345472,7607070,196608 -k1,18815:6434165,44442922:-26345472 -) -(1,18815:6434165,44442922:26345472,7410462,196608 -[1,18815:6630773,44442922:25952256,7213854,0 -(1,18801:6630773,37633294:25952256,404226,101187 -(1,18800:6630773,37633294:0,0,0 -g1,18800:6630773,37633294 -g1,18800:6630773,37633294 -g1,18800:6303093,37633294 -(1,18800:6303093,37633294:0,0,0 -) -g1,18800:6630773,37633294 -) -k1,18801:6630773,37633294:0 -k1,18801:6630773,37633294:0 -h1,18801:15482852,37633294:0,0,0 -k1,18801:32583028,37633294:17100176 -g1,18801:32583028,37633294 -) -(1,18802:6630773,38299472:25952256,410518,107478 -h1,18802:6630773,38299472:0,0,0 -g1,18802:6946919,38299472 -g1,18802:7263065,38299472 -g1,18802:7579211,38299472 -g1,18802:7895357,38299472 -g1,18802:8211503,38299472 -g1,18802:8527649,38299472 -g1,18802:8843795,38299472 -g1,18802:9159941,38299472 -g1,18802:9476087,38299472 -g1,18802:9792233,38299472 -g1,18802:10108379,38299472 -g1,18802:10424525,38299472 -g1,18802:10740671,38299472 -g1,18802:12005254,38299472 -g1,18802:12637546,38299472 -g1,18802:16431295,38299472 -g1,18802:17379733,38299472 -g1,18802:18328170,38299472 -g1,18802:19276608,38299472 -k1,18802:19276608,38299472:0 -h1,18802:20541190,38299472:0,0,0 -k1,18802:32583029,38299472:12041839 -g1,18802:32583029,38299472 -) -(1,18803:6630773,38965650:25952256,404226,101187 -h1,18803:6630773,38965650:0,0,0 -g1,18803:6946919,38965650 -g1,18803:7263065,38965650 -g1,18803:11372959,38965650 -g1,18803:12005251,38965650 -g1,18803:12953689,38965650 -g1,18803:14850563,38965650 -g1,18803:15482855,38965650 -g1,18803:23070352,38965650 -g1,18803:23702644,38965650 -g1,18803:27812538,38965650 -k1,18803:27812538,38965650:0 -h1,18803:29077120,38965650:0,0,0 -k1,18803:32583029,38965650:3505909 -g1,18803:32583029,38965650 -) -(1,18804:6630773,39631828:25952256,404226,82312 -h1,18804:6630773,39631828:0,0,0 -g1,18804:6946919,39631828 -g1,18804:7263065,39631828 -g1,18804:11372959,39631828 -g1,18804:12005251,39631828 -g1,18804:12953689,39631828 -k1,18804:12953689,39631828:0 -h1,18804:14850563,39631828:0,0,0 -k1,18804:32583029,39631828:17732466 -g1,18804:32583029,39631828 -) -(1,18814:6630773,40363542:25952256,404226,82312 -(1,18806:6630773,40363542:0,0,0 -g1,18806:6630773,40363542 -g1,18806:6630773,40363542 -g1,18806:6303093,40363542 -(1,18806:6303093,40363542:0,0,0 -) -g1,18806:6630773,40363542 -) -g1,18814:7579210,40363542 -g1,18814:8211502,40363542 -g1,18814:8843794,40363542 -g1,18814:11372960,40363542 -g1,18814:13269835,40363542 -g1,18814:13902127,40363542 -h1,18814:14218273,40363542:0,0,0 -k1,18814:32583029,40363542:18364756 -g1,18814:32583029,40363542 -) -(1,18814:6630773,41029720:25952256,404226,101187 -h1,18814:6630773,41029720:0,0,0 -g1,18814:7579210,41029720 -g1,18814:7895356,41029720 -g1,18814:8211502,41029720 -g1,18814:10108376,41029720 -g1,18814:14850562,41029720 -g1,18814:15166708,41029720 -g1,18814:15482854,41029720 -g1,18814:16747437,41029720 -g1,18814:17063583,41029720 -g1,18814:17379729,41029720 -g1,18814:18644312,41029720 -h1,18814:20225040,41029720:0,0,0 -k1,18814:32583029,41029720:12357989 -g1,18814:32583029,41029720 -) -(1,18814:6630773,41695898:25952256,404226,6290 -h1,18814:6630773,41695898:0,0,0 -g1,18814:7579210,41695898 -g1,18814:7895356,41695898 -g1,18814:8211502,41695898 -g1,18814:10108377,41695898 -g1,18814:10424523,41695898 -g1,18814:10740669,41695898 -g1,18814:11056815,41695898 -g1,18814:11372961,41695898 -g1,18814:11689107,41695898 -g1,18814:12005253,41695898 -g1,18814:12321399,41695898 -g1,18814:12637545,41695898 -g1,18814:12953691,41695898 -g1,18814:14850566,41695898 -g1,18814:16747441,41695898 -g1,18814:18644316,41695898 -k1,18814:18644316,41695898:0 -h1,18814:20225045,41695898:0,0,0 -k1,18814:32583029,41695898:12357984 -g1,18814:32583029,41695898 -) -(1,18814:6630773,42362076:25952256,388497,9436 -h1,18814:6630773,42362076:0,0,0 -g1,18814:7579210,42362076 -g1,18814:8211502,42362076 -g1,18814:8527648,42362076 -g1,18814:10108377,42362076 -g1,18814:10424523,42362076 -g1,18814:10740669,42362076 -g1,18814:11056815,42362076 -g1,18814:11372961,42362076 -g1,18814:11689107,42362076 -g1,18814:12005253,42362076 -g1,18814:14850564,42362076 -g1,18814:15166710,42362076 -g1,18814:16747439,42362076 -g1,18814:17063585,42362076 -g1,18814:18644314,42362076 -g1,18814:18960460,42362076 -g1,18814:19276606,42362076 -g1,18814:19592752,42362076 -h1,18814:20225043,42362076:0,0,0 -k1,18814:32583029,42362076:12357986 -g1,18814:32583029,42362076 -) -(1,18814:6630773,43028254:25952256,388497,9436 -h1,18814:6630773,43028254:0,0,0 -g1,18814:7579210,43028254 -g1,18814:8211502,43028254 -g1,18814:8527648,43028254 -g1,18814:10108377,43028254 -g1,18814:10424523,43028254 -g1,18814:10740669,43028254 -g1,18814:11056815,43028254 -g1,18814:11372961,43028254 -g1,18814:11689107,43028254 -g1,18814:12005253,43028254 -g1,18814:14850564,43028254 -g1,18814:15166710,43028254 -g1,18814:16747439,43028254 -g1,18814:17063585,43028254 -g1,18814:18644314,43028254 -g1,18814:18960460,43028254 -g1,18814:19276606,43028254 -g1,18814:19592752,43028254 -h1,18814:20225043,43028254:0,0,0 -k1,18814:32583029,43028254:12357986 -g1,18814:32583029,43028254 -) -(1,18814:6630773,43694432:25952256,388497,9436 -h1,18814:6630773,43694432:0,0,0 -g1,18814:7579210,43694432 -g1,18814:8211502,43694432 -g1,18814:8527648,43694432 -g1,18814:10108377,43694432 -g1,18814:10424523,43694432 -g1,18814:10740669,43694432 -g1,18814:11056815,43694432 -g1,18814:11372961,43694432 -g1,18814:11689107,43694432 -g1,18814:12005253,43694432 -g1,18814:14850564,43694432 -g1,18814:15166710,43694432 -g1,18814:16747439,43694432 -g1,18814:17063585,43694432 -g1,18814:18644314,43694432 -g1,18814:18960460,43694432 -g1,18814:19276606,43694432 -g1,18814:19592752,43694432 -h1,18814:20225043,43694432:0,0,0 -k1,18814:32583029,43694432:12357986 -g1,18814:32583029,43694432 -) -(1,18814:6630773,44360610:25952256,404226,82312 -h1,18814:6630773,44360610:0,0,0 -g1,18814:7579210,44360610 -g1,18814:8211502,44360610 -g1,18814:9476085,44360610 -g1,18814:11056814,44360610 -g1,18814:12953689,44360610 -g1,18814:14534418,44360610 -h1,18814:15799001,44360610:0,0,0 -k1,18814:32583029,44360610:16784028 -g1,18814:32583029,44360610 -) -] -) -g1,18815:32583029,44442922 -g1,18815:6630773,44442922 -g1,18815:6630773,44442922 -g1,18815:32583029,44442922 -g1,18815:32583029,44442922 -) -h1,18815:6630773,44639530:0,0,0 -] -(1,18819:32583029,45706769:0,0,0 -g1,18819:32583029,45706769 -) -) -] -(1,18819:6630773,47279633:25952256,0,0 -h1,18819:6630773,47279633:25952256,0,0 -) -] -(1,18819:4262630,4025873:0,0,0 -[1,18819:-473656,4025873:0,0,0 -(1,18819:-473656,-710413:0,0,0 -(1,18819:-473656,-710413:0,0,0 -g1,18819:-473656,-710413 -) -g1,18819:-473656,-710413 -) -] -) -] -!32383 -}367 -Input:2981:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2982:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2983:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2984:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!380 -{368 -[1,18880:4262630,47279633:28320399,43253760,0 -(1,18880:4262630,4025873:0,0,0 -[1,18880:-473656,4025873:0,0,0 -(1,18880:-473656,-710413:0,0,0 -(1,18880:-473656,-644877:0,0,0 -k1,18880:-473656,-644877:-65536 -) -(1,18880:-473656,4736287:0,0,0 -k1,18880:-473656,4736287:5209943 -) -g1,18880:-473656,-710413 -) -] -) -[1,18880:6630773,47279633:25952256,43253760,0 -[1,18880:6630773,4812305:25952256,786432,0 -(1,18880:6630773,4812305:25952256,505283,126483 -(1,18880:6630773,4812305:25952256,505283,126483 -g1,18880:3078558,4812305 -[1,18880:3078558,4812305:0,0,0 -(1,18880:3078558,2439708:0,1703936,0 -k1,18880:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,18880:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,18880:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 -) -] -) -) -) -] -[1,18880:3078558,4812305:0,0,0 -(1,18880:3078558,2439708:0,1703936,0 -g1,18880:29030814,2439708 -g1,18880:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,18880:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 -) -] -) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,18880:37855564,2439708:1179648,16384,0 -) -) -k1,18880:3078556,2439708:-34777008 -) -] -[1,18880:3078558,4812305:0,0,0 -(1,18880:3078558,49800853:0,16384,2228224 -k1,18880:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,18880:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,18880:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 -) -] -) -) -) -] -[1,18880:3078558,4812305:0,0,0 -(1,18880:3078558,49800853:0,16384,2228224 -g1,18880:29030814,49800853 -g1,18880:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,18880:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 -) -] -) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,18880:37855564,49800853:1179648,16384,0 -) -) -k1,18880:3078556,49800853:-34777008 -) -] -g1,18880:6630773,4812305 -g1,18880:6630773,4812305 -g1,18880:9731936,4812305 -g1,18880:12175773,4812305 -g1,18880:13803032,4812305 -k1,18880:31387652,4812305:17584620 -) -) -] -[1,18880:6630773,45706769:25952256,40108032,0 -(1,18880:6630773,45706769:25952256,40108032,0 -(1,18880:6630773,45706769:0,0,0 -g1,18880:6630773,45706769 -) -[1,18880:6630773,45706769:25952256,40108032,0 -v1,18819:6630773,6254097:0,393216,0 -(1,18820:6630773,8540129:25952256,2679248,616038 -g1,18820:6630773,8540129 -(1,18820:6630773,8540129:25952256,2679248,616038 -(1,18820:6630773,9156167:25952256,3295286,0 -[1,18820:6630773,9156167:25952256,3295286,0 -(1,18820:6630773,9129953:25952256,3242858,0 -r1,18880:6656987,9129953:26214,3242858,0 -[1,18820:6656987,9129953:25899828,3242858,0 -(1,18820:6656987,8540129:25899828,2063210,0 -[1,18820:7246811,8540129:24720180,2063210,0 -(1,18820:7246811,7564293:24720180,1087374,134348 -k1,18819:8657003,7564293:200489 -k1,18819:11196472,7564293:200489 -k1,18819:12056253,7564293:200489 -k1,18819:15450967,7564293:200489 -k1,18819:17040819,7564293:200489 -k1,18819:18188958,7564293:200488 -k1,18819:19546157,7564293:200489 -k1,18819:22776375,7564293:200489 -k1,18819:25009791,7564293:200489 -k1,18819:28173163,7564293:200489 -k1,18819:30577628,7564293:200489 -k1,18819:31966991,7564293:0 -) -(1,18820:7246811,8405781:24720180,513147,134348 -g1,18819:9478967,8405781 -g1,18819:13038227,8405781 -g1,18819:14185107,8405781 -g1,18819:15541046,8405781 -g1,18819:18199186,8405781 -g1,18819:19804818,8405781 -g1,18819:21023132,8405781 -k1,18820:31966991,8405781:8284408 -g1,18820:31966991,8405781 -) -] -) -] -r1,18880:32583029,9129953:26214,3242858,0 -) -] -) -) -g1,18820:32583029,8540129 -) -h1,18820:6630773,9156167:0,0,0 -(1,18823:6630773,12298394:25952256,32768,229376 -(1,18823:6630773,12298394:0,32768,229376 -(1,18823:6630773,12298394:5505024,32768,229376 -r1,18880:12135797,12298394:5505024,262144,229376 -) -k1,18823:6630773,12298394:-5505024 -) -(1,18823:6630773,12298394:25952256,32768,0 -r1,18880:32583029,12298394:25952256,32768,0 -) -) -(1,18823:6630773,13902722:25952256,606339,151780 -(1,18823:6630773,13902722:2464678,582746,14155 -g1,18823:6630773,13902722 -g1,18823:9095451,13902722 -) -g1,18823:13112546,13902722 -g1,18823:16222098,13902722 -k1,18823:32583029,13902722:14667743 -g1,18823:32583029,13902722 -) -(1,18827:6630773,15137426:25952256,513147,126483 -k1,18826:8593113,15137426:266924 -k1,18826:9519328,15137426:266923 -k1,18826:10805337,15137426:266924 -k1,18826:14098058,15137426:266924 -k1,18826:17455005,15137426:266924 -k1,18826:19577252,15137426:266923 -k1,18826:21892176,15137426:266924 -k1,18826:22929803,15137426:266924 -k1,18826:24477887,15137426:266855 -k1,18826:27238456,15137426:266924 -k1,18826:28121418,15137426:266924 -k1,18826:30050990,15137426:266924 -k1,18826:30977205,15137426:266923 -k1,18826:31599989,15137426:266924 -k1,18826:32583029,15137426:0 -) -(1,18827:6630773,15978914:25952256,513147,134348 -k1,18826:8781724,15978914:239266 -k1,18826:13367992,15978914:239265 -k1,18826:14920600,15978914:239266 -k1,18826:16264148,15978914:239266 -k1,18826:17251179,15978914:239265 -k1,18826:18902746,15978914:239266 -k1,18826:21962681,15978914:239265 -k1,18826:24662169,15978914:239266 -k1,18826:27019559,15978914:239266 -k1,18826:27910252,15978914:239265 -k1,18826:29455651,15978914:239266 -k1,18826:32583029,15978914:0 -) -(1,18827:6630773,16820402:25952256,513147,126483 -k1,18826:8075536,16820402:253318 -k1,18826:9719529,16820402:253319 -k1,18826:10328707,16820402:253318 -k1,18826:12091975,16820402:253318 -k1,18826:12961332,16820402:253319 -k1,18826:14233735,16820402:253318 -k1,18826:15981274,16820402:253318 -k1,18826:17217633,16820402:253319 -k1,18826:19890540,16820402:253318 -k1,18826:21524702,16820402:253318 -k1,18826:22882303,16820402:253319 -k1,18826:23883387,16820402:253318 -k1,18826:26287597,16820402:253318 -k1,18826:29648633,16820402:253319 -k1,18826:31599989,16820402:253318 -k1,18826:32583029,16820402:0 -) -(1,18827:6630773,17661890:25952256,505283,134348 -k1,18826:8903343,17661890:204254 -k1,18826:10099157,17661890:204254 -k1,18826:13456348,17661890:204254 -k1,18826:15670591,17661890:204254 -k1,18826:16230705,17661890:204254 -k1,18826:18439705,17661890:204254 -k1,18826:21578660,17661890:204253 -k1,18826:22939624,17661890:204254 -k1,18826:25324261,17661890:204254 -k1,18826:27431681,17661890:204254 -k1,18826:30743652,17661890:204254 -k1,18826:31563944,17661890:204254 -k1,18826:32583029,17661890:0 -) -(1,18827:6630773,18503378:25952256,513147,134348 -k1,18826:8282608,18503378:284754 -k1,18826:9226654,18503378:284754 -k1,18826:11800581,18503378:284754 -k1,18826:13662786,18503378:284753 -k1,18826:14598968,18503378:284754 -k1,18826:16859632,18503378:284754 -k1,18826:19349017,18503378:284754 -k1,18826:22984627,18503378:284754 -k1,18826:27387008,18503378:284754 -k1,18826:28690846,18503378:284753 -k1,18826:30629073,18503378:284754 -k1,18826:31896867,18503378:284754 -k1,18826:32583029,18503378:0 -) -(1,18827:6630773,19344866:25952256,513147,126483 -k1,18826:8091374,19344866:257360 -k1,18826:12693770,19344866:257359 -k1,18826:15900250,19344866:257360 -k1,18826:18773151,19344866:257359 -k1,18826:20916637,19344866:257360 -k1,18826:22365442,19344866:257360 -k1,18826:25595514,19344866:257359 -k1,18826:26662244,19344866:257360 -k1,18826:27938688,19344866:257359 -k1,18826:30450487,19344866:257360 -k1,18826:32583029,19344866:0 -) -(1,18827:6630773,20186354:25952256,513147,126483 -k1,18826:9426976,20186354:267824 -k1,18826:10354092,20186354:267824 -k1,18826:11998826,20186354:267823 -k1,18826:13364378,20186354:267824 -k1,18826:14938335,20186354:267824 -k1,18826:17867576,20186354:267824 -k1,18826:19878002,20186354:267824 -k1,18826:20501685,20186354:267823 -k1,18826:22485897,20186354:267824 -k1,18826:23736761,20186354:267824 -k1,18826:25572206,20186354:267824 -k1,18826:26821104,20186354:267824 -k1,18826:28419308,20186354:267823 -k1,18826:29955909,20186354:267824 -k1,18826:31533142,20186354:267824 -k1,18826:32583029,20186354:0 -) -(1,18827:6630773,21027842:25952256,513147,134348 -k1,18826:9175536,21027842:266076 -h1,18826:10146124,21027842:0,0,0 -k1,18826:10412200,21027842:266076 -k1,18826:11487646,21027842:266076 -k1,18826:13251875,21027842:266076 -h1,18826:14447252,21027842:0,0,0 -k1,18826:14713328,21027842:266076 -k1,18826:15927055,21027842:266076 -k1,18826:18310599,21027842:266076 -k1,18826:19386045,21027842:266076 -k1,18826:20671206,21027842:266076 -k1,18826:22029767,21027842:266076 -k1,18826:22955135,21027842:266076 -k1,18826:24917938,21027842:266076 -k1,18826:26375459,21027842:266076 -k1,18826:28343505,21027842:266076 -k1,18826:31635378,21027842:266076 -k1,18826:32583029,21027842:0 -) -(1,18827:6630773,21869330:25952256,513147,134348 -g1,18826:9232552,21869330 -g1,18826:10657960,21869330 -k1,18827:32583028,21869330:20438056 -g1,18827:32583028,21869330 -) -v1,18829:6630773,22870167:0,393216,0 -(1,18848:6630773,29872401:25952256,7395450,196608 -g1,18848:6630773,29872401 -g1,18848:6630773,29872401 -g1,18848:6434165,29872401 -(1,18848:6434165,29872401:0,7395450,196608 -r1,18880:32779637,29872401:26345472,7592058,196608 -k1,18848:6434165,29872401:-26345472 -) -(1,18848:6434165,29872401:26345472,7395450,196608 -[1,18848:6630773,29872401:25952256,7198842,0 -(1,18831:6630773,23084077:25952256,410518,107478 -(1,18830:6630773,23084077:0,0,0 -g1,18830:6630773,23084077 -g1,18830:6630773,23084077 -g1,18830:6303093,23084077 -(1,18830:6303093,23084077:0,0,0 -) -g1,18830:6630773,23084077 -) -g1,18831:9792230,23084077 -k1,18831:9792230,23084077:0 -h1,18831:10424522,23084077:0,0,0 -k1,18831:32583030,23084077:22158508 -g1,18831:32583030,23084077 -) -(1,18832:6630773,23750255:25952256,410518,107478 -h1,18832:6630773,23750255:0,0,0 -g1,18832:6946919,23750255 -g1,18832:7263065,23750255 -g1,18832:7579211,23750255 -g1,18832:7895357,23750255 -g1,18832:8211503,23750255 -g1,18832:8527649,23750255 -g1,18832:13269835,23750255 -g1,18832:13902127,23750255 -k1,18832:13902127,23750255:0 -h1,18832:29393265,23750255:0,0,0 -k1,18832:32583029,23750255:3189764 -g1,18832:32583029,23750255 -) -(1,18833:6630773,24416433:25952256,404226,82312 -h1,18833:6630773,24416433:0,0,0 -g1,18833:6946919,24416433 -g1,18833:7263065,24416433 -g1,18833:7579211,24416433 -g1,18833:7895357,24416433 -g1,18833:8211503,24416433 -g1,18833:8527649,24416433 -g1,18833:8843795,24416433 -g1,18833:9159941,24416433 -g1,18833:9476087,24416433 -g1,18833:9792233,24416433 -g1,18833:10108379,24416433 -g1,18833:10424525,24416433 -g1,18833:10740671,24416433 -g1,18833:11056817,24416433 -g1,18833:11372963,24416433 -g1,18833:11689109,24416433 -g1,18833:13902129,24416433 -g1,18833:14534421,24416433 -k1,18833:14534421,24416433:0 -h1,18833:16431295,24416433:0,0,0 -k1,18833:32583029,24416433:16151734 -g1,18833:32583029,24416433 -) -(1,18834:6630773,25082611:25952256,404226,101187 -h1,18834:6630773,25082611:0,0,0 -g1,18834:6946919,25082611 -g1,18834:7263065,25082611 -g1,18834:7579211,25082611 -g1,18834:7895357,25082611 -g1,18834:8211503,25082611 -g1,18834:8527649,25082611 -g1,18834:8843795,25082611 -g1,18834:9159941,25082611 -g1,18834:9476087,25082611 -g1,18834:9792233,25082611 -g1,18834:10108379,25082611 -g1,18834:10424525,25082611 -g1,18834:10740671,25082611 -g1,18834:11056817,25082611 -g1,18834:11372963,25082611 -g1,18834:11689109,25082611 -g1,18834:14850566,25082611 -g1,18834:15482858,25082611 -g1,18834:18644316,25082611 -h1,18834:23386501,25082611:0,0,0 -k1,18834:32583029,25082611:9196528 -g1,18834:32583029,25082611 -) -(1,18835:6630773,25748789:25952256,410518,107478 -h1,18835:6630773,25748789:0,0,0 -g1,18835:12321396,25748789 -h1,18835:14218270,25748789:0,0,0 -k1,18835:32583030,25748789:18364760 -g1,18835:32583030,25748789 -) -(1,18840:6630773,26480503:25952256,404226,101187 -(1,18837:6630773,26480503:0,0,0 -g1,18837:6630773,26480503 -g1,18837:6630773,26480503 -g1,18837:6303093,26480503 -(1,18837:6303093,26480503:0,0,0 -) -g1,18837:6630773,26480503 -) -g1,18840:7579210,26480503 -g1,18840:7895356,26480503 -g1,18840:8211502,26480503 -g1,18840:8527648,26480503 -g1,18840:8843794,26480503 -g1,18840:9159940,26480503 -g1,18840:9476086,26480503 -g1,18840:9792232,26480503 -g1,18840:11372961,26480503 -h1,18840:14850563,26480503:0,0,0 -k1,18840:32583029,26480503:17732466 -g1,18840:32583029,26480503 -) -(1,18840:6630773,27146681:25952256,404226,6290 -h1,18840:6630773,27146681:0,0,0 -g1,18840:7579210,27146681 -g1,18840:11372958,27146681 -g1,18840:11689104,27146681 -g1,18840:12005250,27146681 -h1,18840:14850561,27146681:0,0,0 -k1,18840:32583029,27146681:17732468 -g1,18840:32583029,27146681 -) -(1,18842:6630773,28468219:25952256,410518,107478 -(1,18841:6630773,28468219:0,0,0 -g1,18841:6630773,28468219 -g1,18841:6630773,28468219 -g1,18841:6303093,28468219 -(1,18841:6303093,28468219:0,0,0 -) -g1,18841:6630773,28468219 -) -k1,18842:6630773,28468219:0 -g1,18842:12321396,28468219 -h1,18842:13902124,28468219:0,0,0 -k1,18842:32583028,28468219:18680904 -g1,18842:32583028,28468219 -) -(1,18847:6630773,29199933:25952256,404226,101187 -(1,18844:6630773,29199933:0,0,0 -g1,18844:6630773,29199933 -g1,18844:6630773,29199933 -g1,18844:6303093,29199933 -(1,18844:6303093,29199933:0,0,0 -) -g1,18844:6630773,29199933 -) -g1,18847:7579210,29199933 -g1,18847:7895356,29199933 -g1,18847:8211502,29199933 -g1,18847:8527648,29199933 -g1,18847:8843794,29199933 -g1,18847:9159940,29199933 -g1,18847:9476086,29199933 -g1,18847:9792232,29199933 -g1,18847:11372961,29199933 -h1,18847:14850563,29199933:0,0,0 -k1,18847:32583029,29199933:17732466 -g1,18847:32583029,29199933 -) -(1,18847:6630773,29866111:25952256,404226,6290 -h1,18847:6630773,29866111:0,0,0 -g1,18847:7579210,29866111 -g1,18847:11372958,29866111 -g1,18847:11689104,29866111 -g1,18847:12005250,29866111 -h1,18847:14850561,29866111:0,0,0 -k1,18847:32583029,29866111:17732468 -g1,18847:32583029,29866111 -) -] -) -g1,18848:32583029,29872401 -g1,18848:6630773,29872401 -g1,18848:6630773,29872401 -g1,18848:32583029,29872401 -g1,18848:32583029,29872401 -) -h1,18848:6630773,30069009:0,0,0 -v1,18852:6630773,31404505:0,393216,0 -(1,18876:6630773,45510161:25952256,14498872,196608 -g1,18876:6630773,45510161 -g1,18876:6630773,45510161 -g1,18876:6434165,45510161 -(1,18876:6434165,45510161:0,14498872,196608 -r1,18880:32779637,45510161:26345472,14695480,196608 -k1,18876:6434165,45510161:-26345472 -) -(1,18876:6434165,45510161:26345472,14498872,196608 -[1,18876:6630773,45510161:25952256,14302264,0 -(1,18854:6630773,31612123:25952256,404226,107478 -(1,18853:6630773,31612123:0,0,0 -g1,18853:6630773,31612123 -g1,18853:6630773,31612123 -g1,18853:6303093,31612123 -(1,18853:6303093,31612123:0,0,0 -) -g1,18853:6630773,31612123 -) -g1,18854:9792230,31612123 -k1,18854:9792230,31612123:0 -h1,18854:10424522,31612123:0,0,0 -k1,18854:32583030,31612123:22158508 -g1,18854:32583030,31612123 -) -(1,18855:6630773,32278301:25952256,410518,107478 -h1,18855:6630773,32278301:0,0,0 -g1,18855:6946919,32278301 -g1,18855:7263065,32278301 -g1,18855:7579211,32278301 -g1,18855:7895357,32278301 -g1,18855:12637543,32278301 -g1,18855:13269835,32278301 -k1,18855:13269835,32278301:0 -h1,18855:28760973,32278301:0,0,0 -k1,18855:32583029,32278301:3822056 -g1,18855:32583029,32278301 -) -(1,18856:6630773,32944479:25952256,404226,101187 -h1,18856:6630773,32944479:0,0,0 -g1,18856:6946919,32944479 -g1,18856:7263065,32944479 -g1,18856:7579211,32944479 -g1,18856:7895357,32944479 -g1,18856:8211503,32944479 -g1,18856:8527649,32944479 -g1,18856:8843795,32944479 -g1,18856:9159941,32944479 -g1,18856:9476087,32944479 -g1,18856:9792233,32944479 -g1,18856:10108379,32944479 -g1,18856:10424525,32944479 -g1,18856:10740671,32944479 -g1,18856:11056817,32944479 -g1,18856:14218274,32944479 -g1,18856:14850566,32944479 -g1,18856:18012024,32944479 -h1,18856:22754209,32944479:0,0,0 -k1,18856:32583029,32944479:9828820 -g1,18856:32583029,32944479 -) -(1,18861:6630773,34266017:25952256,410518,107478 -k1,18860:7558650,34266017:295586 -k1,18860:8170382,34266017:295586 -k1,18860:10046696,34266017:295586 -k1,18860:11923011,34266017:295587 -k1,18860:12850888,34266017:295586 -k1,18860:15359494,34266017:295586 -k1,18860:16603517,34266017:295586 -k1,18860:18479831,34266017:295586 -k1,18860:19407708,34266017:295586 -k1,18860:22232459,34266017:295586 -k1,18860:24108774,34266017:295587 -k1,18860:25352797,34266017:295586 -k1,18860:30074423,34266017:295586 -k1,18860:31318446,34266017:295586 -k1,18860:32583029,34266017:0 -) -(1,18861:6630773,34932195:25952256,404226,6290 -k1,18861:32583030,34932195:23423092 -g1,18861:32583030,34932195 -) -(1,18862:6630773,35598373:25952256,404226,9436 -g1,18862:7579210,35598373 -g1,18862:9476084,35598373 -g1,18862:10740667,35598373 -g1,18862:13585978,35598373 -k1,18862:32583028,35598373:18680904 -g1,18862:32583028,35598373 -) -(1,18862:6630773,36264551:25952256,410518,101187 -k1,18862:7507251,36264551:244187 -k1,18862:8383729,36264551:244187 -k1,18862:10524790,36264551:244187 -k1,18862:14878871,36264551:244187 -k1,18862:32583029,36264551:0 -k1,18862:32583029,36264551:0 -) -(1,18862:6630773,36930729:25952256,404226,82312 -g1,18862:7579210,36930729 -g1,18862:11056813,36930729 -k1,18862:32583030,36930729:20577780 -g1,18862:32583030,36930729 -) -(1,18862:6630773,37596907:25952256,404226,76021 -g1,18862:7579210,37596907 -g1,18862:8843793,37596907 -g1,18862:10424522,37596907 -k1,18862:32583029,37596907:20893924 -g1,18862:32583029,37596907 -) -(1,18862:6630773,38263085:25952256,404226,101187 -g1,18862:7579210,38263085 -g1,18862:8843793,38263085 -g1,18862:10424522,38263085 -k1,18862:32583028,38263085:18680904 -g1,18862:32583028,38263085 -) -(1,18862:6630773,38929263:25952256,379060,0 -k1,18862:32583028,38929263:25319964 -g1,18862:32583028,38929263 -) -(1,18862:6630773,39595441:25952256,410518,101187 -g1,18862:7579210,39595441 -g1,18862:8211502,39595441 -g1,18862:9476085,39595441 -g1,18862:12321396,39595441 -g1,18862:13269833,39595441 -g1,18862:16115144,39595441 -g1,18862:17379727,39595441 -g1,18862:18960456,39595441 -g1,18862:21173476,39595441 -g1,18862:25599516,39595441 -g1,18862:26864099,39595441 -g1,18862:28444828,39595441 -k1,18862:32583029,39595441:2557473 -g1,18862:32583029,39595441 -) -(1,18862:6630773,40261619:25952256,410518,107478 -k1,18862:7536068,40261619:273004 -k1,18862:8125219,40261619:273005 -k1,18862:10611243,40261619:273004 -k1,18862:11832684,40261619:273004 -k1,18862:14002562,40261619:273004 -k1,18862:15856295,40261619:273005 -k1,18862:16761590,40261619:273004 -k1,18862:17983031,40261619:273004 -k1,18862:22998221,40261619:273005 -k1,18862:23587371,40261619:273004 -k1,18862:25757249,40261619:273004 -k1,18862:26662544,40261619:273004 -k1,18862:28516277,40261619:273005 -k1,18862:30053864,40261619:273004 -k1,18862:32583029,40261619:0 -k1,18862:32583029,40261619:0 -) -(1,18863:6630773,41452085:25952256,404226,107478 -(1,18862:6630773,41452085:0,0,0 -g1,18862:6630773,41452085 -g1,18862:6630773,41452085 -g1,18862:6303093,41452085 -(1,18862:6303093,41452085:0,0,0 -) -g1,18862:6630773,41452085 -) -k1,18863:6630773,41452085:0 -g1,18863:12321396,41452085 -h1,18863:14218270,41452085:0,0,0 -k1,18863:32583030,41452085:18364760 -g1,18863:32583030,41452085 -) -(1,18868:6630773,42118263:25952256,404226,101187 -(1,18865:6630773,42118263:0,0,0 -g1,18865:6630773,42118263 -g1,18865:6630773,42118263 -g1,18865:6303093,42118263 -(1,18865:6303093,42118263:0,0,0 -) -g1,18865:6630773,42118263 -) -g1,18868:7579210,42118263 -g1,18868:7895356,42118263 -g1,18868:8211502,42118263 -g1,18868:8527648,42118263 -g1,18868:8843794,42118263 -g1,18868:9159940,42118263 -g1,18868:9476086,42118263 -g1,18868:9792232,42118263 -g1,18868:11372961,42118263 -h1,18868:14850563,42118263:0,0,0 -k1,18868:32583029,42118263:17732466 -g1,18868:32583029,42118263 -) -(1,18868:6630773,42784441:25952256,404226,6290 -h1,18868:6630773,42784441:0,0,0 -g1,18868:7579210,42784441 -g1,18868:11372958,42784441 -g1,18868:11689104,42784441 -g1,18868:12005250,42784441 -h1,18868:14850561,42784441:0,0,0 -k1,18868:32583029,42784441:17732468 -g1,18868:32583029,42784441 -) -(1,18870:6630773,44105979:25952256,404226,107478 -(1,18869:6630773,44105979:0,0,0 -g1,18869:6630773,44105979 -g1,18869:6630773,44105979 -g1,18869:6303093,44105979 -(1,18869:6303093,44105979:0,0,0 -) -g1,18869:6630773,44105979 -) -k1,18870:6630773,44105979:0 -g1,18870:12321396,44105979 -h1,18870:13902124,44105979:0,0,0 -k1,18870:32583028,44105979:18680904 -g1,18870:32583028,44105979 -) -(1,18875:6630773,44837693:25952256,404226,101187 -(1,18872:6630773,44837693:0,0,0 -g1,18872:6630773,44837693 -g1,18872:6630773,44837693 -g1,18872:6303093,44837693 -(1,18872:6303093,44837693:0,0,0 -) -g1,18872:6630773,44837693 -) -g1,18875:7579210,44837693 -g1,18875:7895356,44837693 -g1,18875:8211502,44837693 -g1,18875:8527648,44837693 -g1,18875:8843794,44837693 -g1,18875:9159940,44837693 -g1,18875:9476086,44837693 -g1,18875:9792232,44837693 -g1,18875:11372961,44837693 -h1,18875:14850563,44837693:0,0,0 -k1,18875:32583029,44837693:17732466 -g1,18875:32583029,44837693 -) -(1,18875:6630773,45503871:25952256,404226,6290 -h1,18875:6630773,45503871:0,0,0 -g1,18875:7579210,45503871 -g1,18875:11372958,45503871 -g1,18875:11689104,45503871 -g1,18875:12005250,45503871 -h1,18875:14850561,45503871:0,0,0 -k1,18875:32583029,45503871:17732468 -g1,18875:32583029,45503871 -) -] -) -g1,18876:32583029,45510161 -g1,18876:6630773,45510161 -g1,18876:6630773,45510161 -g1,18876:32583029,45510161 -g1,18876:32583029,45510161 +(1,667:13698849,6544183:2855420,408008,104590 +g1,667:15917911,6544183 +h1,667:16550992,6544183:0,370085,101313 +) +) +g1,667:16554269,6544183 +) +) +g1,667:13698849,6544183 +g1,667:13698849,6544183 +) +) +g1,667:13698849,6544183 +g1,668:13698849,6544183 +g1,668:13698849,6544183 +(1,668:13698849,6544183:0,0,0 +(1,668:13698849,6544183:0,0,0 +g1,668:13698849,6544183 +g1,668:13698849,6544183 +g1,668:13698849,6544183 +g1,668:13698849,6544183 +g1,668:13698849,6544183 +(1,668:13698849,6544183:0,0,0 +(1,668:13698849,6544183:2855420,408008,104590 +(1,668:13698849,6544183:2855420,408008,104590 +(1,668:13698849,6544183:0,408008,104590 +r1,717:16554269,6544183:2855420,512598,104590 +k1,668:13698849,6544183:-2855420 +) +(1,668:13698849,6544183:2855420,408008,104590 +g1,668:15917911,6544183 +h1,668:16550992,6544183:0,370085,101313 +) +) +g1,668:16554269,6544183 +) +) +g1,668:13698849,6544183 +g1,668:13698849,6544183 +) +) +g1,668:13698849,6544183 +g1,669:13698849,6544183 +g1,669:13698849,6544183 +(1,669:13698849,6544183:0,0,0 +(1,669:13698849,6544183:0,0,0 +g1,669:13698849,6544183 +g1,669:13698849,6544183 +g1,669:13698849,6544183 +g1,669:13698849,6544183 +g1,669:13698849,6544183 +(1,669:13698849,6544183:0,0,0 +(1,669:13698849,6544183:2855420,408008,104590 +(1,669:13698849,6544183:2855420,408008,104590 +(1,669:13698849,6544183:0,408008,104590 +r1,717:16554269,6544183:2855420,512598,104590 +k1,669:13698849,6544183:-2855420 +) +(1,669:13698849,6544183:2855420,408008,104590 +g1,669:15917911,6544183 +h1,669:16550992,6544183:0,370085,101313 +) +) +g1,669:16554269,6544183 +) +) +g1,669:13698849,6544183 +g1,669:13698849,6544183 +) +) +g1,669:13698849,6544183 +g1,670:13698849,6544183 +g1,670:13698849,6544183 +(1,670:13698849,6544183:0,0,0 +(1,670:13698849,6544183:0,0,0 +g1,670:13698849,6544183 +g1,670:13698849,6544183 +g1,670:13698849,6544183 +g1,670:13698849,6544183 +g1,670:13698849,6544183 +(1,670:13698849,6544183:0,0,0 +(1,670:13698849,6544183:2855420,414307,104590 +(1,670:13698849,6544183:2855420,414307,104590 +(1,670:13698849,6544183:0,414307,104590 +r1,717:16554269,6544183:2855420,518897,104590 +k1,670:13698849,6544183:-2855420 +) +(1,670:13698849,6544183:2855420,414307,104590 +k1,670:13698849,6544183:3277 +h1,670:16550992,6544183:0,370085,101313 +) +) +g1,670:16554269,6544183 +) +) +g1,670:13698849,6544183 +g1,670:13698849,6544183 +) +) +g1,670:13698849,6544183 +g1,671:13698849,6544183 +g1,671:13698849,6544183 +g1,671:13698849,6544183 +g1,671:13698849,6544183 +g1,671:13698849,6544183 +g1,672:13698849,6544183 +g1,672:13698849,6544183 +g1,672:13698849,6544183 +g1,672:13698849,6544183 +g1,672:13698849,6544183 +g1,673:13698849,6544183 +g1,673:13698849,6544183 +g1,673:13698849,6544183 +g1,673:13698849,6544183 +g1,673:13698849,6544183 +g1,674:13698849,6544183 +g1,674:13698849,6544183 +g1,674:13698849,6544183 +g1,674:13698849,6544183 +g1,674:13698849,6544183 +g1,675:13698849,6544183 +g1,675:13698849,6544183 +g1,675:13698849,6544183 +g1,675:13698849,6544183 +g1,675:13698849,6544183 +g1,675:13698849,6544183 +g1,676:13698849,6544183 +g1,676:13698849,6544183 +) +g1,676:13698849,6544183 +) +) +g1,678:29002323,27814622 +k1,678:32583029,27814622:3580706 +) +(1,681:6630773,29244295:25952256,513147,126483 +h1,680:6630773,29244295:983040,0,0 +k1,680:8457121,29244295:215473 +k1,680:9691679,29244295:215473 +k1,680:11213285,29244295:215473 +k1,680:14090175,29244295:215473 +k1,680:15174000,29244295:215473 +k1,680:16481958,29244295:215473 +k1,680:19672110,29244295:215473 +k1,680:22975639,29244295:215473 +k1,680:25002527,29244295:215473 +k1,680:25834038,29244295:215473 +k1,680:26405371,29244295:215473 +k1,680:29132184,29244295:215473 +k1,680:30033819,29244295:215473 +k1,680:30605152,29244295:215473 +k1,681:32583029,29244295:0 +) +(1,681:6630773,30085783:25952256,513147,134348 +k1,680:8269392,30085783:197482 +k1,680:9860824,30085783:197481 +k1,680:11077391,30085783:197482 +k1,680:12423064,30085783:197482 +k1,680:15806905,30085783:197481 +k1,680:17398338,30085783:197482 +k1,680:18405190,30085783:197482 +k1,680:19589643,30085783:197481 +k1,680:21525140,30085783:197482 +k1,680:22741707,30085783:197482 +k1,680:25378438,30085783:197481 +k1,680:27914900,30085783:197482 +k1,680:28771674,30085783:197482 +k1,680:29988240,30085783:197481 +k1,680:31923737,30085783:197482 +k1,680:32583029,30085783:0 +) +(1,681:6630773,30927271:25952256,505283,134348 +k1,680:9334728,30927271:192615 +(1,680:9334728,30927271:0,452978,122846 +r1,717:12506688,30927271:3171960,575824,122846 +k1,680:9334728,30927271:-3171960 +) +(1,680:9334728,30927271:3171960,452978,122846 +k1,680:9334728,30927271:3277 +h1,680:12503411,30927271:0,411205,112570 +) +k1,680:12872972,30927271:192614 +k1,680:13933939,30927271:192615 +k1,680:15895371,30927271:192615 +k1,680:17563200,30927271:192614 +k1,680:19269041,30927271:192615 +k1,680:19817515,30927271:192614 +k1,680:22696451,30927271:192615 +k1,680:26329051,30927271:192615 +k1,680:29522559,30927271:192614 +k1,680:30071034,30927271:192615 +k1,681:32583029,30927271:0 +) +(1,681:6630773,31768759:25952256,513147,134348 +(1,680:6630773,31768759:0,452978,115847 +r1,717:9802733,31768759:3171960,568825,115847 +k1,680:6630773,31768759:-3171960 +) +(1,680:6630773,31768759:3171960,452978,115847 +k1,680:6630773,31768759:3277 +h1,680:9799456,31768759:0,411205,112570 +) +g1,680:10001962,31768759 +g1,680:11881534,31768759 +g1,680:12740055,31768759 +g1,680:14952550,31768759 +k1,681:32583029,31768759:16300098 +g1,681:32583029,31768759 +) +v1,683:6630773,32905485:0,393216,0 +(1,697:6630773,38584084:25952256,6071815,196608 +g1,697:6630773,38584084 +g1,697:6630773,38584084 +g1,697:6434165,38584084 +(1,697:6434165,38584084:0,6071815,196608 +r1,717:32779637,38584084:26345472,6268423,196608 +k1,697:6434165,38584084:-26345472 +) +(1,697:6434165,38584084:26345472,6071815,196608 +[1,697:6630773,38584084:25952256,5875207,0 +(1,685:6630773,33113103:25952256,404226,107478 +(1,684:6630773,33113103:0,0,0 +g1,684:6630773,33113103 +g1,684:6630773,33113103 +g1,684:6303093,33113103 +(1,684:6303093,33113103:0,0,0 +) +g1,684:6630773,33113103 +) +g1,685:9792230,33113103 +g1,685:10740668,33113103 +h1,685:12321396,33113103:0,0,0 +k1,685:32583028,33113103:20261632 +g1,685:32583028,33113103 +) +(1,686:6630773,33779281:25952256,404226,107478 +h1,686:6630773,33779281:0,0,0 +g1,686:7263065,33779281 +g1,686:8211503,33779281 +k1,686:8211503,33779281:0 +h1,686:13585980,33779281:0,0,0 +k1,686:32583028,33779281:18997048 +g1,686:32583028,33779281 +) +(1,687:6630773,34445459:25952256,388497,82312 +h1,687:6630773,34445459:0,0,0 +g1,687:6946919,34445459 +g1,687:7263065,34445459 +g1,687:7579211,34445459 +g1,687:7895357,34445459 +g1,687:8211503,34445459 +g1,687:8527649,34445459 +g1,687:8843795,34445459 +g1,687:9159941,34445459 +g1,687:9476087,34445459 +g1,687:9792233,34445459 +g1,687:10108379,34445459 +g1,687:10424525,34445459 +g1,687:11689108,34445459 +g1,687:12321400,34445459 +k1,687:12321400,34445459:0 +h1,687:12953692,34445459:0,0,0 +k1,687:32583028,34445459:19629336 +g1,687:32583028,34445459 +) +(1,688:6630773,35111637:25952256,404226,82312 +h1,688:6630773,35111637:0,0,0 +g1,688:6946919,35111637 +g1,688:7263065,35111637 +g1,688:7579211,35111637 +g1,688:7895357,35111637 +g1,688:8211503,35111637 +g1,688:8527649,35111637 +g1,688:8843795,35111637 +g1,688:9159941,35111637 +g1,688:9476087,35111637 +g1,688:9792233,35111637 +g1,688:10108379,35111637 +g1,688:10424525,35111637 +g1,688:11689108,35111637 +g1,688:12321400,35111637 +g1,688:12953692,35111637 +g1,688:13585984,35111637 +k1,688:13585984,35111637:0 +h1,688:14218276,35111637:0,0,0 +k1,688:32583028,35111637:18364752 +g1,688:32583028,35111637 +) +(1,689:6630773,35777815:25952256,410518,82312 +h1,689:6630773,35777815:0,0,0 +g1,689:6946919,35777815 +g1,689:7263065,35777815 +g1,689:7579211,35777815 +g1,689:7895357,35777815 +g1,689:8211503,35777815 +g1,689:8527649,35777815 +g1,689:8843795,35777815 +g1,689:9159941,35777815 +g1,689:9476087,35777815 +g1,689:9792233,35777815 +g1,689:10108379,35777815 +g1,689:10424525,35777815 +g1,689:12005254,35777815 +g1,689:12637546,35777815 +g1,689:13269838,35777815 +g1,689:13902130,35777815 +k1,689:13902130,35777815:0 +h1,689:14534422,35777815:0,0,0 +k1,689:32583030,35777815:18048608 +g1,689:32583030,35777815 +) +(1,690:6630773,36443993:25952256,388497,9436 +h1,690:6630773,36443993:0,0,0 +g1,690:6946919,36443993 +g1,690:7263065,36443993 +g1,690:7579211,36443993 +g1,690:7895357,36443993 +g1,690:8211503,36443993 +g1,690:8527649,36443993 +g1,690:8843795,36443993 +g1,690:9159941,36443993 +g1,690:9476087,36443993 +g1,690:9792233,36443993 +g1,690:10108379,36443993 +g1,690:10424525,36443993 +h1,690:10740671,36443993:0,0,0 +k1,690:32583029,36443993:21842358 +g1,690:32583029,36443993 +) +(1,691:6630773,37110171:25952256,404226,76021 +h1,691:6630773,37110171:0,0,0 +h1,691:6946919,37110171:0,0,0 +k1,691:32583029,37110171:25636110 +g1,691:32583029,37110171 +) +(1,692:6630773,37776349:25952256,404226,6290 +h1,692:6630773,37776349:0,0,0 +h1,692:6946919,37776349:0,0,0 +k1,692:32583029,37776349:25636110 +g1,692:32583029,37776349 +) +(1,696:6630773,38508063:25952256,404226,76021 +(1,694:6630773,38508063:0,0,0 +g1,694:6630773,38508063 +g1,694:6630773,38508063 +g1,694:6303093,38508063 +(1,694:6303093,38508063:0,0,0 +) +g1,694:6630773,38508063 +) +g1,696:7579210,38508063 +g1,696:8843793,38508063 +h1,696:9792230,38508063:0,0,0 +k1,696:32583030,38508063:22790800 +g1,696:32583030,38508063 +) +] +) +g1,697:32583029,38584084 +g1,697:6630773,38584084 +g1,697:6630773,38584084 +g1,697:32583029,38584084 +g1,697:32583029,38584084 +) +h1,697:6630773,38780692:0,0,0 +(1,701:6630773,40092728:25952256,505283,126483 +h1,700:6630773,40092728:983040,0,0 +g1,700:10427929,40092728 +g1,700:13659509,40092728 +g1,700:15869383,40092728 +g1,700:17172894,40092728 +g1,700:19108827,40092728 +g1,700:20327141,40092728 +g1,700:22179843,40092728 +k1,701:32583029,40092728:7043155 +g1,701:32583029,40092728 +) +v1,703:6630773,41229454:0,393216,0 +(1,717:6630773,45510161:25952256,4673923,196608 +g1,717:6630773,45510161 +g1,717:6630773,45510161 +g1,717:6434165,45510161 +(1,717:6434165,45510161:0,4673923,196608 +r1,717:32779637,45510161:26345472,4870531,196608 +k1,717:6434165,45510161:-26345472 +) +(1,717:6434165,45510161:26345472,4673923,196608 +[1,717:6630773,45510161:25952256,4477315,0 +(1,705:6630773,41437072:25952256,404226,107478 +(1,704:6630773,41437072:0,0,0 +g1,704:6630773,41437072 +g1,704:6630773,41437072 +g1,704:6303093,41437072 +(1,704:6303093,41437072:0,0,0 +) +g1,704:6630773,41437072 +) +g1,705:9792230,41437072 +g1,705:10740668,41437072 +h1,705:12321396,41437072:0,0,0 +k1,705:32583028,41437072:20261632 +g1,705:32583028,41437072 +) +(1,706:6630773,42103250:25952256,404226,107478 +h1,706:6630773,42103250:0,0,0 +g1,706:7263065,42103250 +g1,706:8211503,42103250 +k1,706:8211503,42103250:0 +h1,706:13585980,42103250:0,0,0 +k1,706:32583028,42103250:18997048 +g1,706:32583028,42103250 +) +(1,707:6630773,42769428:25952256,388497,82312 +h1,707:6630773,42769428:0,0,0 +g1,707:6946919,42769428 +g1,707:7263065,42769428 +g1,707:7579211,42769428 +g1,707:7895357,42769428 +g1,707:8211503,42769428 +g1,707:8527649,42769428 +g1,707:8843795,42769428 +g1,707:9159941,42769428 +g1,707:9476087,42769428 +g1,707:9792233,42769428 +g1,707:10108379,42769428 +g1,707:10424525,42769428 +g1,707:11689108,42769428 +g1,707:12637546,42769428 +g1,707:13902129,42769428 +g1,707:14534421,42769428 +k1,707:14534421,42769428:0 +h1,707:15166713,42769428:0,0,0 +k1,707:32583029,42769428:17416316 +g1,707:32583029,42769428 +) +(1,708:6630773,43435606:25952256,404226,82312 +h1,708:6630773,43435606:0,0,0 +g1,708:6946919,43435606 +g1,708:7263065,43435606 +g1,708:7579211,43435606 +g1,708:7895357,43435606 +g1,708:8211503,43435606 +g1,708:8527649,43435606 +g1,708:8843795,43435606 +g1,708:9159941,43435606 +g1,708:9476087,43435606 +g1,708:9792233,43435606 +g1,708:10108379,43435606 +g1,708:10424525,43435606 +g1,708:11689108,43435606 +g1,708:12637546,43435606 +g1,708:13902129,43435606 +g1,708:14534421,43435606 +g1,708:15166713,43435606 +g1,708:15799005,43435606 +k1,708:15799005,43435606:0 +h1,708:16431297,43435606:0,0,0 +k1,708:32583029,43435606:16151732 +g1,708:32583029,43435606 +) +(1,709:6630773,44101784:25952256,410518,82312 +h1,709:6630773,44101784:0,0,0 +g1,709:6946919,44101784 +g1,709:7263065,44101784 +g1,709:7579211,44101784 +g1,709:7895357,44101784 +g1,709:8211503,44101784 +g1,709:8527649,44101784 +g1,709:8843795,44101784 +g1,709:9159941,44101784 +g1,709:9476087,44101784 +g1,709:9792233,44101784 +g1,709:10108379,44101784 +g1,709:10424525,44101784 +g1,709:12005254,44101784 +g1,709:12953692,44101784 +g1,709:15166712,44101784 +g1,709:15799004,44101784 +g1,709:16431296,44101784 +g1,709:17063588,44101784 +k1,709:17063588,44101784:0 +h1,709:17695880,44101784:0,0,0 +k1,709:32583029,44101784:14887149 +g1,709:32583029,44101784 +) +(1,710:6630773,44767962:25952256,388497,9436 +h1,710:6630773,44767962:0,0,0 +g1,710:6946919,44767962 +g1,710:7263065,44767962 +g1,710:7579211,44767962 +g1,710:7895357,44767962 +g1,710:8211503,44767962 +g1,710:8527649,44767962 +g1,710:8843795,44767962 +g1,710:9159941,44767962 +g1,710:9476087,44767962 +g1,710:9792233,44767962 +g1,710:10108379,44767962 +g1,710:10424525,44767962 +h1,710:10740671,44767962:0,0,0 +k1,710:32583029,44767962:21842358 +g1,710:32583029,44767962 +) +(1,711:6630773,45434140:25952256,404226,76021 +h1,711:6630773,45434140:0,0,0 +h1,711:6946919,45434140:0,0,0 +k1,711:32583029,45434140:25636110 +g1,711:32583029,45434140 +) +] +) +g1,717:32583029,45510161 +g1,717:6630773,45510161 +g1,717:6630773,45510161 +g1,717:32583029,45510161 +g1,717:32583029,45510161 +) +] +(1,717:32583029,45706769:0,0,0 +g1,717:32583029,45706769 +) +) +] +(1,717:6630773,47279633:25952256,0,0 +h1,717:6630773,47279633:25952256,0,0 +) +] +(1,717:4262630,4025873:0,0,0 +[1,717:-473656,4025873:0,0,0 +(1,717:-473656,-710413:0,0,0 +(1,717:-473656,-710413:0,0,0 +g1,717:-473656,-710413 +) +g1,717:-473656,-710413 +) +] +) +] +!22111 +}19 +Input:286:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:287:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:288:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:289:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:290:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:291:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:292:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:293:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:294:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:295:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:296:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:297:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:298:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:299:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:300:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:301:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:302:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:303:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:304:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:305:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:306:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:307:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2013 +{20 +[1,797:4262630,47279633:28320399,43253760,0 +(1,797:4262630,4025873:0,0,0 +[1,797:-473656,4025873:0,0,0 +(1,797:-473656,-710413:0,0,0 +(1,797:-473656,-644877:0,0,0 +k1,797:-473656,-644877:-65536 ) -h1,18876:6630773,45706769:0,0,0 -] -(1,18880:32583029,45706769:0,0,0 -g1,18880:32583029,45706769 +(1,797:-473656,4736287:0,0,0 +k1,797:-473656,4736287:5209943 ) +g1,797:-473656,-710413 ) ] -(1,18880:6630773,47279633:25952256,0,0 -h1,18880:6630773,47279633:25952256,0,0 ) -] -(1,18880:4262630,4025873:0,0,0 -[1,18880:-473656,4025873:0,0,0 -(1,18880:-473656,-710413:0,0,0 -(1,18880:-473656,-710413:0,0,0 -g1,18880:-473656,-710413 +[1,797:6630773,47279633:25952256,43253760,0 +[1,797:6630773,4812305:25952256,786432,0 +(1,797:6630773,4812305:25952256,513147,126483 +(1,797:6630773,4812305:25952256,513147,126483 +g1,797:3078558,4812305 +[1,797:3078558,4812305:0,0,0 +(1,797:3078558,2439708:0,1703936,0 +k1,797:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,797:2537886,2439708:1179648,16384,0 ) -g1,18880:-473656,-710413 +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,797:3078558,1915420:16384,1179648,0 ) -] +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) ] -!21976 -}368 -Input:2985:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!104 -{369 -[1,18950:4262630,47279633:28320399,43253760,0 -(1,18950:4262630,4025873:0,0,0 -[1,18950:-473656,4025873:0,0,0 -(1,18950:-473656,-710413:0,0,0 -(1,18950:-473656,-644877:0,0,0 -k1,18950:-473656,-644877:-65536 -) -(1,18950:-473656,4736287:0,0,0 -k1,18950:-473656,4736287:5209943 -) -g1,18950:-473656,-710413 ) -] ) -[1,18950:6630773,47279633:25952256,43253760,0 -[1,18950:6630773,4812305:25952256,786432,0 -(1,18950:6630773,4812305:25952256,505283,126483 -(1,18950:6630773,4812305:25952256,505283,126483 -g1,18950:3078558,4812305 -[1,18950:3078558,4812305:0,0,0 -(1,18950:3078558,2439708:0,1703936,0 -k1,18950:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,18950:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,18950:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 ) ] +[1,797:3078558,4812305:0,0,0 +(1,797:3078558,2439708:0,1703936,0 +g1,797:29030814,2439708 +g1,797:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,797:36151628,1915420:16384,1179648,0 ) -) +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) ] -[1,18950:3078558,4812305:0,0,0 -(1,18950:3078558,2439708:0,1703936,0 -g1,18950:29030814,2439708 -g1,18950:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,18950:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 ) -] -) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,18950:37855564,2439708:1179648,16384,0 +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,797:37855564,2439708:1179648,16384,0 ) ) -k1,18950:3078556,2439708:-34777008 -) -] -[1,18950:3078558,4812305:0,0,0 -(1,18950:3078558,49800853:0,16384,2228224 -k1,18950:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,18950:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,18950:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 +k1,797:3078556,2439708:-34777008 ) ] +[1,797:3078558,4812305:0,0,0 +(1,797:3078558,49800853:0,16384,2228224 +k1,797:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,797:2537886,49800853:1179648,16384,0 ) +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,797:3078558,51504789:16384,1179648,0 ) +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) ] -[1,18950:3078558,4812305:0,0,0 -(1,18950:3078558,49800853:0,16384,2228224 -g1,18950:29030814,49800853 -g1,18950:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,18950:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 -) -] -) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,18950:37855564,49800853:1179648,16384,0 -) ) -k1,18950:3078556,49800853:-34777008 -) -] -g1,18950:6630773,4812305 -k1,18950:25146660,4812305:17320510 -g1,18950:26880087,4812305 -g1,18950:29193507,4812305 -g1,18950:30603186,4812305 ) ) ] -[1,18950:6630773,45706769:25952256,40108032,0 -(1,18950:6630773,45706769:25952256,40108032,0 -(1,18950:6630773,45706769:0,0,0 -g1,18950:6630773,45706769 -) -[1,18950:6630773,45706769:25952256,40108032,0 -(1,18880:6630773,6254097:25952256,513147,134348 -h1,18879:6630773,6254097:983040,0,0 -k1,18879:9604906,6254097:216378 -k1,18879:12847081,6254097:216378 -k1,18879:13679497,6254097:216378 -k1,18879:16476027,6254097:216378 -k1,18879:18715501,6254097:216378 -k1,18879:21458293,6254097:216379 -k1,18879:22693756,6254097:216378 -k1,18879:24002619,6254097:216378 -k1,18879:24878289,6254097:216378 -k1,18879:26879868,6254097:216378 -k1,18879:28840159,6254097:216378 -k1,18879:29672575,6254097:216378 -k1,18879:32583029,6254097:0 -) -(1,18880:6630773,7095585:25952256,513147,126483 -k1,18879:9126757,7095585:149796 -k1,18879:10467999,7095585:149797 -k1,18879:12291584,7095585:149796 -k1,18879:13256649,7095585:149797 -k1,18879:14646386,7095585:149796 -k1,18879:19316857,7095585:149797 -k1,18879:20335005,7095585:149796 -k1,18879:22015067,7095585:149796 -k1,18879:22816292,7095585:149797 -k1,18879:24272221,7095585:149796 -k1,18879:27549396,7095585:149797 -k1,18879:28718277,7095585:149796 -k1,18879:29851114,7095585:149797 -k1,18879:31192355,7095585:149796 -k1,18879:32583029,7095585:0 -) -(1,18880:6630773,7937073:25952256,505283,134348 -k1,18879:7153487,7937073:166854 -k1,18879:8830292,7937073:166855 -k1,18879:11231268,7937073:166854 -k1,18879:12682629,7937073:166855 -k1,18879:13717835,7937073:166854 -k1,18879:14988972,7937073:166855 -k1,18879:16568127,7937073:166854 -k1,18879:17421144,7937073:166855 -k1,18879:20678021,7937073:166854 -k1,18879:21460914,7937073:166855 -k1,18879:23906455,7937073:166854 -h1,18879:25449173,7937073:0,0,0 -k1,18879:25616028,7937073:166855 -k1,18879:26592252,7937073:166854 -k1,18879:28257260,7937073:166855 -h1,18879:29452637,7937073:0,0,0 -k1,18879:29793161,7937073:166854 -k1,18880:32583029,7937073:0 -) -(1,18880:6630773,8778561:25952256,513147,134348 -(1,18879:6630773,8778561:0,459977,115847 -r1,18950:11913004,8778561:5282231,575824,115847 -k1,18879:6630773,8778561:-5282231 -) -(1,18879:6630773,8778561:5282231,459977,115847 -k1,18879:6630773,8778561:3277 -h1,18879:11909727,8778561:0,411205,112570 -) -k1,18879:12047355,8778561:134351 -k1,18879:12797745,8778561:134352 -k1,18879:13951181,8778561:134351 -k1,18879:14500311,8778561:134287 -k1,18879:16345806,8778561:134351 -k1,18879:19060309,8778561:134351 -k1,18879:20298943,8778561:134352 -k1,18879:21181060,8778561:134351 -k1,18879:22828637,8778561:134351 -k1,18879:23614417,8778561:134352 -k1,18879:26876146,8778561:134351 -k1,18879:28323839,8778561:134351 -k1,18879:30193584,8778561:134352 -k1,18879:32113136,8778561:134351 -k1,18879:32583029,8778561:0 -) -(1,18880:6630773,9620049:25952256,513147,126483 -k1,18879:9636657,9620049:149170 -k1,18879:12548170,9620049:149170 -k1,18879:14810220,9620049:149169 -k1,18879:16452956,9620049:149170 -k1,18879:17288288,9620049:149170 -k1,18879:19459244,9620049:149170 -k1,18879:20291298,9620049:149169 -k1,18879:21840317,9620049:149170 -k1,18879:23180932,9620049:149170 -k1,18879:24944909,9620049:149170 -k1,18879:25776963,9620049:149169 -k1,18879:28480071,9620049:149170 -k1,18879:29820686,9620049:149170 -k1,18879:32583029,9620049:0 -) -(1,18880:6630773,10461537:25952256,505283,122846 -g1,18879:9614627,10461537 -g1,18879:11307422,10461537 -g1,18879:12192813,10461537 -(1,18879:12192813,10461537:0,452978,115847 -r1,18950:15716485,10461537:3523672,568825,115847 -k1,18879:12192813,10461537:-3523672 -) -(1,18879:12192813,10461537:3523672,452978,115847 -k1,18879:12192813,10461537:3277 -h1,18879:15713208,10461537:0,411205,112570 -) -g1,18879:16089384,10461537 -(1,18879:16089384,10461537:0,452978,122846 -r1,18950:18206209,10461537:2116825,575824,122846 -k1,18879:16089384,10461537:-2116825 -) -(1,18879:16089384,10461537:2116825,452978,122846 -k1,18879:16089384,10461537:3277 -h1,18879:18202932,10461537:0,411205,112570 -) -g1,18879:18405438,10461537 -g1,18879:19796112,10461537 -(1,18879:19796112,10461537:0,452978,115847 -r1,18950:23319784,10461537:3523672,568825,115847 -k1,18879:19796112,10461537:-3523672 -) -(1,18879:19796112,10461537:3523672,452978,115847 -g1,18879:23316507,10461537 -h1,18879:23316507,10461537:0,411205,112570 -) -k1,18880:32583029,10461537:9089575 -g1,18880:32583029,10461537 -) -v1,18882:6630773,11827313:0,393216,0 -(1,18883:6630773,14111507:25952256,2677410,616038 -g1,18883:6630773,14111507 -(1,18883:6630773,14111507:25952256,2677410,616038 -(1,18883:6630773,14727545:25952256,3293448,0 -[1,18883:6630773,14727545:25952256,3293448,0 -(1,18883:6630773,14701331:25952256,3241020,0 -r1,18950:6656987,14701331:26214,3241020,0 -[1,18883:6656987,14701331:25899828,3241020,0 -(1,18883:6656987,14111507:25899828,2061372,0 -[1,18883:7246811,14111507:24720180,2061372,0 -(1,18883:7246811,13135671:24720180,1085536,298548 -(1,18882:7246811,13135671:0,1085536,298548 -r1,18950:8753226,13135671:1506415,1384084,298548 -k1,18882:7246811,13135671:-1506415 -) -(1,18882:7246811,13135671:1506415,1085536,298548 -) -k1,18882:8935022,13135671:181796 -k1,18882:10158841,13135671:181797 -k1,18882:13856644,13135671:181796 -k1,18882:16815856,13135671:181796 -k1,18882:18310995,13135671:181797 -k1,18882:20673174,13135671:181796 -k1,18882:21602737,13135671:181797 -k1,18882:25679993,13135671:181796 -k1,18882:26477827,13135671:181796 -k1,18882:28681410,13135671:181797 -k1,18882:30819456,13135671:181796 -k1,18883:31966991,13135671:0 -) -(1,18883:7246811,13977159:24720180,505283,134348 -g1,18882:8693190,13977159 -(1,18882:8693190,13977159:0,452978,115847 -r1,18950:12568574,13977159:3875384,568825,115847 -k1,18882:8693190,13977159:-3875384 -) -(1,18882:8693190,13977159:3875384,452978,115847 -g1,18882:10455026,13977159 -g1,18882:11158450,13977159 -h1,18882:12565297,13977159:0,411205,112570 -) -g1,18882:12941473,13977159 -g1,18882:15026173,13977159 -g1,18882:15756899,13977159 -g1,18882:18668663,13977159 -g1,18882:20754018,13977159 -k1,18883:31966991,13977159:7099279 -g1,18883:31966991,13977159 +[1,797:3078558,4812305:0,0,0 +(1,797:3078558,49800853:0,16384,2228224 +g1,797:29030814,49800853 +g1,797:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,797:36151628,51504789:16384,1179648,0 ) -] +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 ) ] -r1,18950:32583029,14701331:26214,3241020,0 ) -] +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,797:37855564,49800853:1179648,16384,0 ) ) -g1,18883:32583029,14111507 -) -h1,18883:6630773,14727545:0,0,0 -v1,18887:6630773,16442299:0,393216,0 -(1,18893:6630773,18064586:25952256,2015503,196608 -g1,18893:6630773,18064586 -g1,18893:6630773,18064586 -g1,18893:6434165,18064586 -(1,18893:6434165,18064586:0,2015503,196608 -r1,18950:32779637,18064586:26345472,2212111,196608 -k1,18893:6434165,18064586:-26345472 -) -(1,18893:6434165,18064586:26345472,2015503,196608 -[1,18893:6630773,18064586:25952256,1818895,0 -(1,18889:6630773,16656209:25952256,410518,107478 -(1,18888:6630773,16656209:0,0,0 -g1,18888:6630773,16656209 -g1,18888:6630773,16656209 -g1,18888:6303093,16656209 -(1,18888:6303093,16656209:0,0,0 -) -g1,18888:6630773,16656209 -) -k1,18889:6630773,16656209:0 -k1,18889:6630773,16656209:0 -h1,18889:26547951,16656209:0,0,0 -k1,18889:32583029,16656209:6035078 -g1,18889:32583029,16656209 -) -(1,18890:6630773,17322387:25952256,404226,101187 -h1,18890:6630773,17322387:0,0,0 -g1,18890:6946919,17322387 -g1,18890:7263065,17322387 -g1,18890:7579211,17322387 -g1,18890:7895357,17322387 -g1,18890:8211503,17322387 -g1,18890:8527649,17322387 -g1,18890:8843795,17322387 -g1,18890:9159941,17322387 -g1,18890:9476087,17322387 -g1,18890:9792233,17322387 -g1,18890:10108379,17322387 -g1,18890:10424525,17322387 -g1,18890:10740671,17322387 -g1,18890:11056817,17322387 -k1,18890:11056817,17322387:0 -h1,18890:18644313,17322387:0,0,0 -k1,18890:32583029,17322387:13938716 -g1,18890:32583029,17322387 -) -(1,18891:6630773,17988565:25952256,404226,76021 -h1,18891:6630773,17988565:0,0,0 -g1,18891:6946919,17988565 -g1,18891:7263065,17988565 -g1,18891:7579211,17988565 -g1,18891:7895357,17988565 -g1,18891:8211503,17988565 -g1,18891:8527649,17988565 -g1,18891:8843795,17988565 -g1,18891:9159941,17988565 -g1,18891:9476087,17988565 -g1,18891:9792233,17988565 -g1,18891:10108379,17988565 -g1,18891:10424525,17988565 -g1,18891:10740671,17988565 -g1,18891:11056817,17988565 -g1,18891:12637546,17988565 -g1,18891:13269838,17988565 -h1,18891:14850567,17988565:0,0,0 -k1,18891:32583029,17988565:17732462 -g1,18891:32583029,17988565 +k1,797:3078556,49800853:-34777008 ) ] +g1,797:6630773,4812305 +g1,797:6630773,4812305 +g1,797:9175536,4812305 +g1,797:9990803,4812305 +g1,797:13137841,4812305 +g1,797:14654344,4812305 +k1,797:31786112,4812305:17131768 ) -g1,18893:32583029,18064586 -g1,18893:6630773,18064586 -g1,18893:6630773,18064586 -g1,18893:32583029,18064586 -g1,18893:32583029,18064586 -) -h1,18893:6630773,18261194:0,0,0 -(1,18897:6630773,19626970:25952256,513147,134348 -h1,18896:6630773,19626970:983040,0,0 -k1,18896:11037116,19626970:303134 -k1,18896:11956288,19626970:303134 -k1,18896:14839574,19626970:303134 -k1,18896:17943716,19626970:303134 -k1,18896:18933012,19626970:303134 -k1,18896:20514754,19626970:303135 -k1,18896:21504050,19626970:303134 -k1,18896:23551097,19626970:303134 -k1,18896:24470269,19626970:303134 -k1,18896:27353555,19626970:303134 -k1,18896:30056616,19626970:303134 -k1,18896:32583029,19626970:0 -) -(1,18897:6630773,20468458:25952256,513147,134348 -k1,18896:8696304,20468458:280330 -k1,18896:10026521,20468458:280330 -k1,18896:12585538,20468458:280330 -h1,18896:13954585,20468458:0,0,0 -k1,18896:14234915,20468458:280330 -k1,18896:15324615,20468458:280330 -k1,18896:17103098,20468458:280330 -h1,18896:18298475,20468458:0,0,0 -k1,18896:18578805,20468458:280330 -k1,18896:19806786,20468458:280330 -k1,18896:21737313,20468458:280330 -k1,18896:25824629,20468458:280330 -k1,18896:27927515,20468458:280330 -k1,18896:31379788,20468458:280330 -k1,18896:32583029,20468458:0 -) -(1,18897:6630773,21309946:25952256,513147,7863 -g1,18896:8259342,21309946 -g1,18896:9117863,21309946 -g1,18896:10706455,21309946 -g1,18896:12173150,21309946 -k1,18897:32583029,21309946:19821366 -g1,18897:32583029,21309946 -) -v1,18899:6630773,22500412:0,393216,0 -(1,18915:6630773,29451074:25952256,7343878,196608 -g1,18915:6630773,29451074 -g1,18915:6630773,29451074 -g1,18915:6434165,29451074 -(1,18915:6434165,29451074:0,7343878,196608 -r1,18950:32779637,29451074:26345472,7540486,196608 -k1,18915:6434165,29451074:-26345472 -) -(1,18915:6434165,29451074:26345472,7343878,196608 -[1,18915:6630773,29451074:25952256,7147270,0 -(1,18901:6630773,22714322:25952256,410518,50331 -(1,18900:6630773,22714322:0,0,0 -g1,18900:6630773,22714322 -g1,18900:6630773,22714322 -g1,18900:6303093,22714322 -(1,18900:6303093,22714322:0,0,0 -) -g1,18900:6630773,22714322 -) -g1,18901:12321396,22714322 -k1,18901:12321396,22714322:0 -h1,18901:12953688,22714322:0,0,0 -k1,18901:32583028,22714322:19629340 -g1,18901:32583028,22714322 -) -(1,18902:6630773,23380500:25952256,410518,107478 -h1,18902:6630773,23380500:0,0,0 -g1,18902:6946919,23380500 -g1,18902:7263065,23380500 -g1,18902:12005251,23380500 -g1,18902:12637543,23380500 -k1,18902:12637543,23380500:0 -h1,18902:27812535,23380500:0,0,0 -k1,18902:32583029,23380500:4770494 -g1,18902:32583029,23380500 -) -(1,18903:6630773,24046678:25952256,410518,76021 -h1,18903:6630773,24046678:0,0,0 -g1,18903:6946919,24046678 -g1,18903:7263065,24046678 -g1,18903:7579211,24046678 -g1,18903:7895357,24046678 -g1,18903:8211503,24046678 -g1,18903:8527649,24046678 -g1,18903:8843795,24046678 -g1,18903:9159941,24046678 -g1,18903:9476087,24046678 -g1,18903:9792233,24046678 -g1,18903:10108379,24046678 -g1,18903:10424525,24046678 -g1,18903:14850565,24046678 -g1,18903:15482857,24046678 -h1,18903:17063586,24046678:0,0,0 -k1,18903:32583029,24046678:15519443 -g1,18903:32583029,24046678 -) -(1,18904:6630773,24712856:25952256,410518,76021 -h1,18904:6630773,24712856:0,0,0 -k1,18904:6630773,24712856:0 -h1,18904:13902124,24712856:0,0,0 -k1,18904:32583028,24712856:18680904 -g1,18904:32583028,24712856 -) -(1,18914:6630773,25444570:25952256,379060,7863 -(1,18906:6630773,25444570:0,0,0 -g1,18906:6630773,25444570 -g1,18906:6630773,25444570 -g1,18906:6303093,25444570 -(1,18906:6303093,25444570:0,0,0 -) -g1,18906:6630773,25444570 -) -g1,18914:7579210,25444570 -g1,18914:7895356,25444570 -g1,18914:8211502,25444570 -g1,18914:10740668,25444570 -h1,18914:12637542,25444570:0,0,0 -k1,18914:32583030,25444570:19945488 -g1,18914:32583030,25444570 -) -(1,18914:6630773,26110748:25952256,404226,9436 -h1,18914:6630773,26110748:0,0,0 -g1,18914:7579210,26110748 -g1,18914:8211502,26110748 -g1,18914:8527648,26110748 -g1,18914:8843794,26110748 -g1,18914:9159940,26110748 -g1,18914:9476086,26110748 -g1,18914:10740669,26110748 -g1,18914:11056815,26110748 -h1,18914:12637543,26110748:0,0,0 -k1,18914:32583029,26110748:19945486 -g1,18914:32583029,26110748 -) -(1,18914:6630773,26776926:25952256,404226,9436 -h1,18914:6630773,26776926:0,0,0 -g1,18914:7579210,26776926 -g1,18914:8211502,26776926 -g1,18914:8527648,26776926 -g1,18914:8843794,26776926 -g1,18914:9159940,26776926 -g1,18914:9476086,26776926 -g1,18914:10740669,26776926 -g1,18914:11056815,26776926 -h1,18914:12637543,26776926:0,0,0 -k1,18914:32583029,26776926:19945486 -g1,18914:32583029,26776926 -) -(1,18914:6630773,27443104:25952256,404226,9436 -h1,18914:6630773,27443104:0,0,0 -g1,18914:7579210,27443104 -g1,18914:8211502,27443104 -g1,18914:8527648,27443104 -g1,18914:8843794,27443104 -g1,18914:9159940,27443104 -g1,18914:9476086,27443104 -g1,18914:10740669,27443104 -g1,18914:11056815,27443104 -h1,18914:12637543,27443104:0,0,0 -k1,18914:32583029,27443104:19945486 -g1,18914:32583029,27443104 -) -(1,18914:6630773,28109282:25952256,404226,9436 -h1,18914:6630773,28109282:0,0,0 -g1,18914:7579210,28109282 -g1,18914:8211502,28109282 -g1,18914:8527648,28109282 -g1,18914:8843794,28109282 -g1,18914:9159940,28109282 -g1,18914:9476086,28109282 -g1,18914:10740669,28109282 -g1,18914:11056815,28109282 -h1,18914:12637543,28109282:0,0,0 -k1,18914:32583029,28109282:19945486 -g1,18914:32583029,28109282 -) -(1,18914:6630773,28775460:25952256,404226,9436 -h1,18914:6630773,28775460:0,0,0 -g1,18914:7579210,28775460 -g1,18914:8211502,28775460 -g1,18914:8527648,28775460 -g1,18914:8843794,28775460 -g1,18914:9159940,28775460 -g1,18914:9476086,28775460 -g1,18914:10740669,28775460 -g1,18914:11056815,28775460 -h1,18914:12637543,28775460:0,0,0 -k1,18914:32583029,28775460:19945486 -g1,18914:32583029,28775460 -) -(1,18914:6630773,29441638:25952256,404226,9436 -h1,18914:6630773,29441638:0,0,0 -g1,18914:7579210,29441638 -g1,18914:8211502,29441638 -g1,18914:8527648,29441638 -g1,18914:8843794,29441638 -g1,18914:9159940,29441638 -g1,18914:9476086,29441638 -g1,18914:10740669,29441638 -g1,18914:11056815,29441638 -h1,18914:12637543,29441638:0,0,0 -k1,18914:32583029,29441638:19945486 -g1,18914:32583029,29441638 ) ] +[1,797:6630773,45706769:25952256,40108032,0 +(1,797:6630773,45706769:25952256,40108032,0 +(1,797:6630773,45706769:0,0,0 +g1,797:6630773,45706769 ) -g1,18915:32583029,29451074 -g1,18915:6630773,29451074 -g1,18915:6630773,29451074 -g1,18915:32583029,29451074 -g1,18915:32583029,29451074 -) -h1,18915:6630773,29647682:0,0,0 -v1,18919:6630773,31362436:0,393216,0 -(1,18934:6630773,37637482:25952256,6668262,196608 -g1,18934:6630773,37637482 -g1,18934:6630773,37637482 -g1,18934:6434165,37637482 -(1,18934:6434165,37637482:0,6668262,196608 -r1,18950:32779637,37637482:26345472,6864870,196608 -k1,18934:6434165,37637482:-26345472 -) -(1,18934:6434165,37637482:26345472,6668262,196608 -[1,18934:6630773,37637482:25952256,6471654,0 -(1,18921:6630773,31570054:25952256,404226,101187 -(1,18920:6630773,31570054:0,0,0 -g1,18920:6630773,31570054 -g1,18920:6630773,31570054 -g1,18920:6303093,31570054 -(1,18920:6303093,31570054:0,0,0 -) -g1,18920:6630773,31570054 -) -g1,18921:12321396,31570054 -k1,18921:12321396,31570054:0 -h1,18921:12953688,31570054:0,0,0 -k1,18921:32583028,31570054:19629340 -g1,18921:32583028,31570054 -) -(1,18922:6630773,32236232:25952256,410518,107478 -h1,18922:6630773,32236232:0,0,0 -g1,18922:6946919,32236232 -g1,18922:7263065,32236232 -g1,18922:7579211,32236232 -g1,18922:7895357,32236232 -g1,18922:12321397,32236232 -g1,18922:12953689,32236232 -h1,18922:28128681,32236232:0,0,0 -k1,18922:32583029,32236232:4454348 -g1,18922:32583029,32236232 -) -(1,18923:6630773,32902410:25952256,404226,101187 -h1,18923:6630773,32902410:0,0,0 -h1,18923:12005250,32902410:0,0,0 -k1,18923:32583030,32902410:20577780 -g1,18923:32583030,32902410 -) -(1,18933:6630773,33634124:25952256,404226,6290 -(1,18925:6630773,33634124:0,0,0 -g1,18925:6630773,33634124 -g1,18925:6630773,33634124 -g1,18925:6303093,33634124 -(1,18925:6303093,33634124:0,0,0 -) -g1,18925:6630773,33634124 -) -g1,18933:7579210,33634124 -g1,18933:8211502,33634124 -g1,18933:8843794,33634124 -g1,18933:11372960,33634124 -g1,18933:12321397,33634124 -g1,18933:12953689,33634124 -h1,18933:13269835,33634124:0,0,0 -k1,18933:32583029,33634124:19313194 -g1,18933:32583029,33634124 -) -(1,18933:6630773,34300302:25952256,379060,7863 -h1,18933:6630773,34300302:0,0,0 -g1,18933:7579210,34300302 -g1,18933:7895356,34300302 -g1,18933:8211502,34300302 -g1,18933:10740668,34300302 -h1,18933:12637542,34300302:0,0,0 -k1,18933:32583030,34300302:19945488 -g1,18933:32583030,34300302 -) -(1,18933:6630773,34966480:25952256,404226,6290 -h1,18933:6630773,34966480:0,0,0 -g1,18933:7579210,34966480 -g1,18933:7895356,34966480 -g1,18933:8211502,34966480 -g1,18933:8527648,34966480 -g1,18933:8843794,34966480 -g1,18933:10740669,34966480 -k1,18933:10740669,34966480:0 -h1,18933:13585980,34966480:0,0,0 -k1,18933:32583028,34966480:18997048 -g1,18933:32583028,34966480 -) -(1,18933:6630773,35632658:25952256,404226,76021 -h1,18933:6630773,35632658:0,0,0 -g1,18933:7579210,35632658 -g1,18933:8211502,35632658 -g1,18933:8527648,35632658 -g1,18933:8843794,35632658 -g1,18933:9159940,35632658 -g1,18933:9476086,35632658 -g1,18933:10740669,35632658 -g1,18933:11372961,35632658 -h1,18933:13585981,35632658:0,0,0 -k1,18933:32583029,35632658:18997048 -g1,18933:32583029,35632658 -) -(1,18933:6630773,36298836:25952256,404226,76021 -h1,18933:6630773,36298836:0,0,0 -g1,18933:7579210,36298836 -g1,18933:8211502,36298836 -g1,18933:8527648,36298836 -g1,18933:8843794,36298836 -g1,18933:9159940,36298836 -g1,18933:9476086,36298836 -g1,18933:10740669,36298836 -g1,18933:11372961,36298836 -h1,18933:13585981,36298836:0,0,0 -k1,18933:32583029,36298836:18997048 -g1,18933:32583029,36298836 -) -(1,18933:6630773,36965014:25952256,404226,76021 -h1,18933:6630773,36965014:0,0,0 -g1,18933:7579210,36965014 -g1,18933:8211502,36965014 -g1,18933:8527648,36965014 -g1,18933:8843794,36965014 -g1,18933:9159940,36965014 -g1,18933:9476086,36965014 -g1,18933:10108378,36965014 -g1,18933:10424524,36965014 -g1,18933:10740670,36965014 -g1,18933:11372962,36965014 -h1,18933:13585982,36965014:0,0,0 -k1,18933:32583030,36965014:18997048 -g1,18933:32583030,36965014 -) -(1,18933:6630773,37631192:25952256,404226,6290 -h1,18933:6630773,37631192:0,0,0 -g1,18933:7579210,37631192 -g1,18933:8211502,37631192 -g1,18933:9476085,37631192 -g1,18933:11056814,37631192 -g1,18933:12005251,37631192 -g1,18933:13585980,37631192 -h1,18933:14850563,37631192:0,0,0 -k1,18933:32583029,37631192:17732466 -g1,18933:32583029,37631192 +[1,797:6630773,45706769:25952256,40108032,0 +v1,717:6630773,6254097:0,393216,0 +(1,717:6630773,7269450:25952256,1408569,196608 +g1,717:6630773,7269450 +g1,717:6630773,7269450 +g1,717:6434165,7269450 +(1,717:6434165,7269450:0,1408569,196608 +r1,797:32779637,7269450:26345472,1605177,196608 +k1,717:6434165,7269450:-26345472 ) -] -) -g1,18934:32583029,37637482 -g1,18934:6630773,37637482 -g1,18934:6630773,37637482 -g1,18934:32583029,37637482 -g1,18934:32583029,37637482 -) -h1,18934:6630773,37834090:0,0,0 -(1,18938:6630773,39199866:25952256,513147,134348 -h1,18937:6630773,39199866:983040,0,0 -k1,18937:8397829,39199866:156181 -k1,18937:9757250,39199866:156180 -k1,18937:12574848,39199866:156181 -k1,18937:13599380,39199866:156180 -k1,18937:14848046,39199866:156181 -k1,18937:15360087,39199866:156181 -k1,18937:19411727,39199866:156180 -k1,18937:21982211,39199866:156138 -k1,18937:23121432,39199866:156181 -k1,18937:23936904,39199866:156180 -k1,18937:27207356,39199866:156181 -k1,18937:29431852,39199866:156180 -k1,18937:30535684,39199866:156181 -k1,18938:32583029,39199866:0 -) -(1,18938:6630773,40041354:25952256,513147,126483 -k1,18937:7874349,40041354:224491 -k1,18937:14154366,40041354:224490 -k1,18937:15946478,40041354:224491 -k1,18937:18342832,40041354:224491 -k1,18937:19586408,40041354:224491 -k1,18937:21464371,40041354:224490 -k1,18937:23202088,40041354:224491 -k1,18937:25281903,40041354:224491 -k1,18937:26122432,40041354:224491 -k1,18937:27366007,40041354:224490 -k1,18937:29747942,40041354:224491 -k1,18937:32583029,40041354:0 -) -(1,18938:6630773,40882842:25952256,513147,134348 -k1,18937:8215762,40882842:204145 -k1,18937:8951403,40882842:204144 -k1,18937:9511408,40882842:204145 -k1,18937:13312823,40882842:204144 -k1,18937:15087866,40882842:204145 -k1,18937:16275050,40882842:204144 -k1,18937:17091957,40882842:204145 -k1,18937:18491479,40882842:204145 -k1,18937:19732403,40882842:204144 -k1,18937:20564383,40882842:204145 -k1,18937:21971768,40882842:204144 -k1,18937:23716664,40882842:204145 -k1,18937:24789160,40882842:204144 -k1,18937:27163857,40882842:204145 -k1,18937:29782347,40882842:204144 -k1,18937:31563944,40882842:204145 -k1,18937:32583029,40882842:0 -) -(1,18938:6630773,41724330:25952256,513147,102891 -k1,18937:10357605,41724330:220656 -k1,18937:11229689,41724330:220656 -k1,18937:12469431,41724330:220657 -k1,18937:15104411,41724330:220634 -k1,18937:16481777,41724330:220656 -k1,18937:17893879,41724330:220657 -k1,18937:18982887,41724330:220656 -k1,18937:20509676,41724330:220656 -k1,18937:23857710,41724330:220656 -k1,18937:24536463,41724330:220656 -k1,18937:28719427,41724330:220657 -k1,18937:30006354,41724330:220656 -k1,18937:31896867,41724330:220656 -k1,18937:32583029,41724330:0 -) -(1,18938:6630773,42565818:25952256,513147,126483 -g1,18937:7698354,42565818 -g1,18937:9372798,42565818 -g1,18937:9927887,42565818 -g1,18937:11621337,42565818 -g1,18937:13711280,42565818 -g1,18937:15101954,42565818 -g1,18937:16735111,42565818 -g1,18937:17802692,42565818 -g1,18937:19579373,42565818 -g1,18937:20797687,42565818 -g1,18937:22491137,42565818 -k1,18938:32583029,42565818:8935182 -g1,18938:32583029,42565818 -) -v1,18940:6630773,43756284:0,393216,0 -(1,18950:6630773,45403737:25952256,2040669,196608 -g1,18950:6630773,45403737 -g1,18950:6630773,45403737 -g1,18950:6434165,45403737 -(1,18950:6434165,45403737:0,2040669,196608 -r1,18950:32779637,45403737:26345472,2237277,196608 -k1,18950:6434165,45403737:-26345472 -) -(1,18950:6434165,45403737:26345472,2040669,196608 -[1,18950:6630773,45403737:25952256,1844061,0 -(1,18942:6630773,43970194:25952256,410518,107478 -(1,18941:6630773,43970194:0,0,0 -g1,18941:6630773,43970194 -g1,18941:6630773,43970194 -g1,18941:6303093,43970194 -(1,18941:6303093,43970194:0,0,0 -) -g1,18941:6630773,43970194 -) -g1,18942:8843793,43970194 -g1,18942:9792231,43970194 -k1,18942:9792231,43970194:0 -h1,18942:30341699,43970194:0,0,0 -k1,18942:32583029,43970194:2241330 -g1,18942:32583029,43970194 -) -(1,18943:6630773,44636372:25952256,410518,107478 -h1,18943:6630773,44636372:0,0,0 -g1,18943:6946919,44636372 -g1,18943:7263065,44636372 -g1,18943:7579211,44636372 -g1,18943:7895357,44636372 -g1,18943:8211503,44636372 -g1,18943:8527649,44636372 -g1,18943:8843795,44636372 -g1,18943:9159941,44636372 -g1,18943:9476087,44636372 -g1,18943:9792233,44636372 -g1,18943:10108379,44636372 -g1,18943:10424525,44636372 -g1,18943:10740671,44636372 -g1,18943:11056817,44636372 -g1,18943:11372963,44636372 -g1,18943:11689109,44636372 -k1,18943:11689109,44636372:0 -h1,18943:23386499,44636372:0,0,0 -k1,18943:32583029,44636372:9196530 -g1,18943:32583029,44636372 -) -(1,18944:6630773,45302550:25952256,404226,101187 -h1,18944:6630773,45302550:0,0,0 -g1,18944:6946919,45302550 -g1,18944:7263065,45302550 -g1,18944:7579211,45302550 -g1,18944:7895357,45302550 -g1,18944:8211503,45302550 -g1,18944:8527649,45302550 -g1,18944:8843795,45302550 -g1,18944:9159941,45302550 -g1,18944:9476087,45302550 -g1,18944:9792233,45302550 -g1,18944:10108379,45302550 -g1,18944:10424525,45302550 -g1,18944:10740671,45302550 -g1,18944:11056817,45302550 -g1,18944:11372963,45302550 -g1,18944:11689109,45302550 -g1,18944:12953692,45302550 -g1,18944:13585984,45302550 -h1,18944:14534421,45302550:0,0,0 -k1,18944:32583029,45302550:18048608 -g1,18944:32583029,45302550 +(1,717:6434165,7269450:26345472,1408569,196608 +[1,717:6630773,7269450:25952256,1211961,0 +(1,712:6630773,6461715:25952256,404226,6290 +h1,712:6630773,6461715:0,0,0 +h1,712:6946919,6461715:0,0,0 +k1,712:32583029,6461715:25636110 +g1,712:32583029,6461715 +) +(1,716:6630773,7193429:25952256,404226,76021 +(1,714:6630773,7193429:0,0,0 +g1,714:6630773,7193429 +g1,714:6630773,7193429 +g1,714:6303093,7193429 +(1,714:6303093,7193429:0,0,0 +) +g1,714:6630773,7193429 +) +g1,716:7579210,7193429 +g1,716:8843793,7193429 +h1,716:9792230,7193429:0,0,0 +k1,716:32583030,7193429:22790800 +g1,716:32583030,7193429 +) +] +) +g1,717:32583029,7269450 +g1,717:6630773,7269450 +g1,717:6630773,7269450 +g1,717:32583029,7269450 +g1,717:32583029,7269450 +) +h1,717:6630773,7466058:0,0,0 +v1,720:6630773,9356122:0,393216,0 +(1,721:6630773,13739323:25952256,4776417,0 +g1,721:6630773,13739323 +g1,721:6303093,13739323 +r1,797:6401397,13739323:98304,4776417,0 +g1,721:6600626,13739323 +g1,721:6797234,13739323 +[1,721:6797234,13739323:25785795,4776417,0 +(1,721:6797234,10246888:25785795,1283982,196608 +(1,720:6797234,10246888:0,1283982,196608 +r1,797:8400153,10246888:1602919,1480590,196608 +k1,720:6797234,10246888:-1602919 +) +(1,720:6797234,10246888:1602919,1283982,196608 +) +k1,720:8656759,10246888:256606 +k1,720:9811207,10246888:256605 +k1,720:11410646,10246888:256606 +k1,720:13061202,10246888:256605 +k1,720:14336893,10246888:256606 +k1,720:15685984,10246888:256606 +k1,720:16601881,10246888:256605 +k1,720:17877572,10246888:256606 +k1,720:20192008,10246888:256606 +k1,720:23808644,10246888:256605 +k1,720:25611900,10246888:256606 +k1,720:26481267,10246888:256605 +k1,720:27756958,10246888:256606 +k1,720:32583029,10246888:0 +) +(1,721:6797234,11088376:25785795,513147,134348 +k1,720:7990121,11088376:245236 +(1,720:7990121,11088376:0,452978,115847 +r1,797:10810370,11088376:2820249,568825,115847 +k1,720:7990121,11088376:-2820249 +) +(1,720:7990121,11088376:2820249,452978,115847 +k1,720:7990121,11088376:3277 +h1,720:10807093,11088376:0,411205,112570 +) +k1,720:11055606,11088376:245236 +k1,720:13036234,11088376:245235 +(1,720:13036234,11088376:0,452978,115847 +r1,797:17263330,11088376:4227096,568825,115847 +k1,720:13036234,11088376:-4227096 +) +(1,720:13036234,11088376:4227096,452978,115847 +k1,720:13036234,11088376:3277 +h1,720:17260053,11088376:0,411205,112570 +) +k1,720:17508566,11088376:245236 +k1,720:18945247,11088376:245236 +k1,720:20974373,11088376:245236 +k1,720:22238693,11088376:245235 +k1,720:25475648,11088376:245236 +k1,720:26333646,11088376:245236 +k1,720:27597967,11088376:245236 +k1,720:29026127,11088376:245235 +k1,720:29930655,11088376:245236 +k1,720:31194976,11088376:245236 +k1,720:32583029,11088376:0 +) +(1,721:6797234,11929864:25785795,513147,134348 +k1,720:8615575,11929864:146518 +k1,720:11154157,11929864:146518 +k1,720:12849292,11929864:146519 +k1,720:15700481,11929864:146518 +k1,720:16312960,11929864:146518 +k1,720:17629951,11929864:146518 +k1,720:18711013,11929864:146519 +(1,720:18711013,11929864:0,452978,122846 +r1,797:25048380,11929864:6337367,575824,122846 +k1,720:18711013,11929864:-6337367 +) +(1,720:18711013,11929864:6337367,452978,122846 +g1,720:22231408,11929864 +g1,720:23286544,11929864 +h1,720:25045103,11929864:0,411205,112570 +) +k1,720:25368568,11929864:146518 +(1,720:25368568,11929864:0,452978,122846 +r1,797:32409359,11929864:7040791,575824,122846 +k1,720:25368568,11929864:-7040791 +) +(1,720:25368568,11929864:7040791,452978,122846 +g1,720:28888963,11929864 +g1,720:29944099,11929864 +h1,720:32406082,11929864:0,411205,112570 +) +k1,721:32583029,11929864:0 +) +(1,721:6797234,12771352:25785795,505283,122846 +(1,720:6797234,12771352:0,452978,122846 +r1,797:15948296,12771352:9151062,575824,122846 +k1,720:6797234,12771352:-9151062 +) +(1,720:6797234,12771352:9151062,452978,122846 +g1,720:10317629,12771352 +g1,720:11372765,12771352 +h1,720:15945019,12771352:0,411205,112570 +) +k1,720:16162217,12771352:213921 +k1,720:17059023,12771352:213921 +(1,720:17059023,12771352:0,452978,122846 +r1,797:25506661,12771352:8447638,575824,122846 +k1,720:17059023,12771352:-8447638 +) +(1,720:17059023,12771352:8447638,452978,122846 +g1,720:20579418,12771352 +g1,720:21634554,12771352 +h1,720:25503384,12771352:0,411205,112570 +) +k1,720:25894252,12771352:213921 +k1,720:27719703,12771352:213921 +k1,720:30288333,12771352:213921 +k1,720:31521339,12771352:213921 +(1,720:31521339,12771352:0,435480,115847 +r1,797:32583029,12771352:1061690,551327,115847 +k1,720:31521339,12771352:-1061690 +) +(1,720:31521339,12771352:1061690,435480,115847 +g1,720:32228040,12771352 +h1,720:32579752,12771352:0,411205,112570 +) +k1,720:32583029,12771352:0 +) +(1,721:6797234,13612840:25785795,513147,126483 +g1,720:7682625,13612840 +g1,720:10147434,13612840 +g1,720:12200677,13612840 +g1,720:13591351,13612840 +k1,721:32583028,13612840:16801464 +g1,721:32583028,13612840 +) +] +g1,721:32583029,13739323 +) +h1,721:6630773,13739323:0,0,0 +(1,724:6630773,15105099:25952256,505283,126483 +h1,723:6630773,15105099:983040,0,0 +k1,723:9552648,15105099:155600 +k1,723:10727333,15105099:155600 +k1,723:14322918,15105099:155600 +k1,723:15991744,15105099:155600 +k1,723:16833506,15105099:155600 +k1,723:17344966,15105099:155600 +k1,723:20532916,15105099:155599 +k1,723:23029462,15105099:155600 +k1,723:23540922,15105099:155600 +k1,723:25376865,15105099:155600 +k1,723:26816971,15105099:155600 +k1,723:27504068,15105099:155600 +k1,723:28725939,15105099:155600 +k1,723:29237399,15105099:155600 +(1,723:29237399,15105099:0,452978,115847 +r1,797:32409359,15105099:3171960,568825,115847 +k1,723:29237399,15105099:-3171960 +) +(1,723:29237399,15105099:3171960,452978,115847 +k1,723:29237399,15105099:3277 +h1,723:32406082,15105099:0,411205,112570 +) +k1,723:32583029,15105099:0 +) +(1,724:6630773,15946587:25952256,513147,126483 +k1,723:7315637,15946587:226767 +k1,723:8674867,15946587:226768 +k1,723:9649400,15946587:226767 +k1,723:13466229,15946587:226767 +k1,723:14379158,15946587:226767 +k1,723:15376629,15946587:226768 +(1,723:15376629,15946587:0,452978,122846 +r1,797:17845166,15946587:2468537,575824,122846 +k1,723:15376629,15946587:-2468537 +) +(1,723:15376629,15946587:2468537,452978,122846 +k1,723:15376629,15946587:3277 +h1,723:17841889,15946587:0,411205,112570 +) +k1,723:18071933,15946587:226767 +k1,723:20221526,15946587:226767 +k1,723:21076128,15946587:226767 +k1,723:22506137,15946587:226768 +k1,723:24099985,15946587:226767 +k1,723:25136122,15946587:226767 +k1,723:27431205,15946587:226767 +k1,723:28649533,15946587:226768 +k1,723:30389526,15946587:226767 +k1,723:31563944,15946587:226767 +k1,723:32583029,15946587:0 +) +(1,724:6630773,16788075:25952256,513147,126483 +g1,723:8701055,16788075 +g1,723:10091729,16788075 +g1,723:11310043,16788075 +g1,723:12657463,16788075 +g1,723:14013402,16788075 +g1,723:14744128,16788075 +g1,723:17072622,16788075 +g1,723:20861913,16788075 +g1,723:21747304,16788075 +g1,723:22965618,16788075 +k1,724:32583029,16788075:7178161 +g1,724:32583029,16788075 +) +v1,726:6630773,17978541:0,393216,0 +(1,740:6630773,23657140:25952256,6071815,196608 +g1,740:6630773,23657140 +g1,740:6630773,23657140 +g1,740:6434165,23657140 +(1,740:6434165,23657140:0,6071815,196608 +r1,797:32779637,23657140:26345472,6268423,196608 +k1,740:6434165,23657140:-26345472 +) +(1,740:6434165,23657140:26345472,6071815,196608 +[1,740:6630773,23657140:25952256,5875207,0 +(1,728:6630773,18186159:25952256,404226,101187 +(1,727:6630773,18186159:0,0,0 +g1,727:6630773,18186159 +g1,727:6630773,18186159 +g1,727:6303093,18186159 +(1,727:6303093,18186159:0,0,0 +) +g1,727:6630773,18186159 +) +g1,728:9792230,18186159 +g1,728:10740668,18186159 +h1,728:11056814,18186159:0,0,0 +k1,728:32583030,18186159:21526216 +g1,728:32583030,18186159 +) +(1,729:6630773,18852337:25952256,404226,101187 +h1,729:6630773,18852337:0,0,0 +g1,729:7263065,18852337 +g1,729:8211503,18852337 +k1,729:8211503,18852337:0 +h1,729:13585980,18852337:0,0,0 +k1,729:32583028,18852337:18997048 +g1,729:32583028,18852337 +) +(1,730:6630773,19518515:25952256,388497,82312 +h1,730:6630773,19518515:0,0,0 +g1,730:6946919,19518515 +g1,730:7263065,19518515 +g1,730:7579211,19518515 +g1,730:7895357,19518515 +g1,730:8211503,19518515 +g1,730:8527649,19518515 +g1,730:8843795,19518515 +g1,730:9159941,19518515 +g1,730:9476087,19518515 +g1,730:9792233,19518515 +g1,730:10108379,19518515 +g1,730:10424525,19518515 +k1,730:10424525,19518515:0 +h1,730:11056817,19518515:0,0,0 +k1,730:32583029,19518515:21526212 +g1,730:32583029,19518515 +) +(1,731:6630773,20184693:25952256,404226,82312 +h1,731:6630773,20184693:0,0,0 +g1,731:6946919,20184693 +g1,731:7263065,20184693 +g1,731:7579211,20184693 +g1,731:7895357,20184693 +g1,731:8211503,20184693 +g1,731:8527649,20184693 +g1,731:8843795,20184693 +g1,731:9159941,20184693 +g1,731:9476087,20184693 +g1,731:9792233,20184693 +g1,731:10108379,20184693 +g1,731:10424525,20184693 +g1,731:11056817,20184693 +g1,731:11689109,20184693 +k1,731:11689109,20184693:0 +h1,731:12321401,20184693:0,0,0 +k1,731:32583029,20184693:20261628 +g1,731:32583029,20184693 +) +(1,732:6630773,20850871:25952256,404226,82312 +h1,732:6630773,20850871:0,0,0 +g1,732:6946919,20850871 +g1,732:7263065,20850871 +g1,732:7579211,20850871 +g1,732:7895357,20850871 +g1,732:8211503,20850871 +g1,732:8527649,20850871 +g1,732:8843795,20850871 +g1,732:9159941,20850871 +g1,732:9476087,20850871 +g1,732:9792233,20850871 +g1,732:10108379,20850871 +g1,732:10424525,20850871 +g1,732:11056817,20850871 +g1,732:11689109,20850871 +k1,732:11689109,20850871:0 +h1,732:12321401,20850871:0,0,0 +k1,732:32583029,20850871:20261628 +g1,732:32583029,20850871 +) +(1,733:6630773,21517049:25952256,388497,9436 +h1,733:6630773,21517049:0,0,0 +g1,733:6946919,21517049 +g1,733:7263065,21517049 +g1,733:7579211,21517049 +g1,733:7895357,21517049 +g1,733:8211503,21517049 +g1,733:8527649,21517049 +g1,733:8843795,21517049 +g1,733:9159941,21517049 +g1,733:9476087,21517049 +g1,733:9792233,21517049 +g1,733:10108379,21517049 +g1,733:10424525,21517049 +h1,733:10740671,21517049:0,0,0 +k1,733:32583029,21517049:21842358 +g1,733:32583029,21517049 +) +(1,734:6630773,22183227:25952256,404226,76021 +h1,734:6630773,22183227:0,0,0 +h1,734:6946919,22183227:0,0,0 +k1,734:32583029,22183227:25636110 +g1,734:32583029,22183227 +) +(1,735:6630773,22849405:25952256,404226,6290 +h1,735:6630773,22849405:0,0,0 +h1,735:6946919,22849405:0,0,0 +k1,735:32583029,22849405:25636110 +g1,735:32583029,22849405 +) +(1,739:6630773,23581119:25952256,404226,76021 +(1,737:6630773,23581119:0,0,0 +g1,737:6630773,23581119 +g1,737:6630773,23581119 +g1,737:6303093,23581119 +(1,737:6303093,23581119:0,0,0 +) +g1,737:6630773,23581119 +) +g1,739:7579210,23581119 +g1,739:8843793,23581119 +h1,739:9792230,23581119:0,0,0 +k1,739:32583030,23581119:22790800 +g1,739:32583030,23581119 +) +] +) +g1,740:32583029,23657140 +g1,740:6630773,23657140 +g1,740:6630773,23657140 +g1,740:32583029,23657140 +g1,740:32583029,23657140 +) +h1,740:6630773,23853748:0,0,0 +v1,744:6630773,25743812:0,393216,0 +(1,745:6630773,28444037:25952256,3093441,0 +g1,745:6630773,28444037 +g1,745:6303093,28444037 +r1,797:6401397,28444037:98304,3093441,0 +g1,745:6600626,28444037 +g1,745:6797234,28444037 +[1,745:6797234,28444037:25785795,3093441,0 +(1,745:6797234,26634578:25785795,1283982,196608 +(1,744:6797234,26634578:0,1283982,196608 +r1,797:8400153,26634578:1602919,1480590,196608 +k1,744:6797234,26634578:-1602919 +) +(1,744:6797234,26634578:1602919,1283982,196608 +) +k1,744:8800825,26634578:400672 +k1,744:12101464,26634578:400671 +k1,744:14835218,26634578:400672 +k1,744:16629840,26634578:400671 +k1,744:18049597,26634578:400672 +k1,744:19542753,26634578:400671 +k1,744:20602717,26634578:400672 +k1,744:22022473,26634578:400671 +k1,744:24480975,26634578:400672 +k1,744:28241678,26634578:400672 +k1,744:31034413,26634578:400671 +k1,744:32583029,26634578:0 +) +(1,745:6797234,27476066:25785795,513147,126483 +k1,744:10071182,27476066:569277 +k1,744:11106420,27476066:569277 +k1,744:12846170,27476066:569277 +k1,744:14349989,27476066:569276 +(1,744:14349989,27476066:0,452978,115847 +r1,797:19632221,27476066:5282232,568825,115847 +k1,744:14349989,27476066:-5282232 +) +(1,744:14349989,27476066:5282232,452978,115847 +g1,744:17870384,27476066 +g1,744:18925520,27476066 +h1,744:19628944,27476066:0,411205,112570 +) +k1,744:20375168,27476066:569277 +(1,744:20375168,27476066:0,452978,115847 +r1,797:25305688,27476066:4930520,568825,115847 +k1,744:20375168,27476066:-4930520 +) +(1,744:20375168,27476066:4930520,452978,115847 +g1,744:23895563,27476066 +g1,744:24950699,27476066 +h1,744:25302411,27476066:0,411205,112570 +) +k1,744:26048635,27476066:569277 +(1,744:26048635,27476066:0,452978,115847 +r1,797:31330867,27476066:5282232,568825,115847 +k1,744:26048635,27476066:-5282232 +) +(1,744:26048635,27476066:5282232,452978,115847 +g1,744:29569030,27476066 +g1,744:30624166,27476066 +h1,744:31327590,27476066:0,411205,112570 +) +k1,744:31900144,27476066:569277 +k1,745:32583029,27476066:0 +) +(1,745:6797234,28317554:25785795,513147,126483 +(1,744:6797234,28317554:0,452978,122846 +r1,797:14541448,28317554:7744214,575824,122846 +k1,744:6797234,28317554:-7744214 +) +(1,744:6797234,28317554:7744214,452978,122846 +g1,744:10317629,28317554 +g1,744:11372765,28317554 +h1,744:14538171,28317554:0,411205,112570 +) +g1,744:14914347,28317554 +g1,744:16725106,28317554 +g1,744:19279044,28317554 +g1,744:20497358,28317554 +(1,744:20497358,28317554:0,435480,115847 +r1,797:21559048,28317554:1061690,551327,115847 +k1,744:20497358,28317554:-1061690 +) +(1,744:20497358,28317554:1061690,435480,115847 +g1,744:21204059,28317554 +h1,744:21555771,28317554:0,411205,112570 +) +g1,744:21758277,28317554 +g1,744:22643668,28317554 +g1,744:25108477,28317554 +g1,744:27161720,28317554 +g1,744:28552394,28317554 +k1,745:32583029,28317554:1840422 +g1,745:32583029,28317554 +) +] +g1,745:32583029,28444037 +) +h1,745:6630773,28444037:0,0,0 +v1,748:6630773,29809813:0,393216,0 +(1,771:6630773,41663164:25952256,12246567,0 +g1,771:6630773,41663164 +g1,771:6303093,41663164 +r1,797:6401397,41663164:98304,12246567,0 +g1,771:6600626,41663164 +g1,771:6797234,41663164 +[1,771:6797234,41663164:25785795,12246567,0 +(1,750:6797234,30578482:25785795,1161885,196608 +(1,748:6797234,30578482:0,1161885,196608 +r1,797:8344870,30578482:1547636,1358493,196608 +k1,748:6797234,30578482:-1547636 +) +(1,748:6797234,30578482:1547636,1161885,196608 +) +k1,748:8538863,30578482:193993 +k1,748:9929544,30578482:193994 +k1,748:13640199,30578482:193993 +k1,748:14781844,30578482:193994 +k1,748:15994922,30578482:193993 +k1,748:18951258,30578482:193993 +k1,748:21155897,30578482:193994 +k1,748:22009182,30578482:193993 +k1,748:23222260,30578482:193993 +k1,748:26448605,30578482:193994 +k1,748:27258636,30578482:193993 +k1,748:27808490,30578482:193994 +(1,748:27808490,30578482:0,452978,115847 +r1,797:30628739,30578482:2820249,568825,115847 +k1,748:27808490,30578482:-2820249 +) +(1,748:27808490,30578482:2820249,452978,115847 +k1,748:27808490,30578482:3277 +h1,748:30625462,30578482:0,411205,112570 +) +k1,748:30822732,30578482:193993 +k1,750:32583029,30578482:0 +) +(1,750:6797234,31353773:25785795,513147,126483 +k1,748:8606382,31353773:170093 +k1,748:9880757,31353773:170093 +k1,748:10798616,31353773:170093 +k1,748:14382479,31353773:170093 +k1,748:18069234,31353773:170093 +k1,748:18925489,31353773:170093 +k1,748:19711620,31353773:170093 +k1,748:20900797,31353773:170092 +k1,748:22437971,31353773:170093 +k1,748:23275220,31353773:170093 +(1,748:23275220,31353773:0,459977,115847 +r1,797:23985198,31353773:709978,575824,115847 +k1,748:23275220,31353773:-709978 +) +(1,748:23275220,31353773:709978,459977,115847 +k1,748:23275220,31353773:3277 +h1,748:23981921,31353773:0,411205,112570 +) +k1,748:24328961,31353773:170093 +k1,748:25690499,31353773:170093 +k1,748:27240780,31353773:170093 +k1,748:28515155,31353773:170093 +k1,748:30151944,31353773:170093 +k1,748:31069803,31353773:170093 +k1,748:32583029,31353773:0 +) +(1,750:6797234,32019951:25785795,513147,134348 +k1,748:7910123,32019951:165238 +k1,748:8431221,32019951:165238 +k1,748:9896038,32019951:165238 +k1,748:12005729,32019951:165238 +k1,748:13124516,32019951:165238 +k1,748:14394036,32019951:165238 +k1,748:15506925,32019951:165238 +k1,748:18333581,32019951:165239 +k1,748:20761122,32019951:165238 +k1,748:21945445,32019951:165238 +k1,748:24772100,32019951:165238 +k1,748:26792662,32019951:165238 +k1,748:27609328,32019951:165238 +k1,748:29356605,32019951:165238 +k1,748:29877703,32019951:165238 +k1,748:32583029,32019951:0 +) +(1,750:6797234,32686129:25785795,513147,7863 +g1,748:8694501,32686129 +g1,748:9912815,32686129 +g1,748:12377624,32686129 +g1,748:14257196,32686129 +g1,748:14987922,32686129 +g1,748:18139548,32686129 +k1,750:32583029,32686129:14443481 +g1,750:32583029,32686129 +) +v1,750:6797234,33876595:0,393216,0 +(1,769:6797234,40942268:25785795,7458889,196608 +g1,769:6797234,40942268 +g1,769:6797234,40942268 +g1,769:6600626,40942268 +(1,769:6600626,40942268:0,7458889,196608 +r1,797:32779637,40942268:26179011,7655497,196608 +k1,769:6600625,40942268:-26179012 +) +(1,769:6600626,40942268:26179011,7458889,196608 +[1,769:6797234,40942268:25785795,7262281,0 +(1,752:6797234,34084213:25785795,404226,107478 +(1,751:6797234,34084213:0,0,0 +g1,751:6797234,34084213 +g1,751:6797234,34084213 +g1,751:6469554,34084213 +(1,751:6469554,34084213:0,0,0 +) +g1,751:6797234,34084213 +) +g1,752:9958691,34084213 +g1,752:10907129,34084213 +h1,752:12487857,34084213:0,0,0 +k1,752:32583029,34084213:20095172 +g1,752:32583029,34084213 +) +(1,753:6797234,34750391:25785795,404226,107478 +h1,753:6797234,34750391:0,0,0 +g1,753:7429526,34750391 +g1,753:8377964,34750391 +k1,753:8377964,34750391:0 +h1,753:13752441,34750391:0,0,0 +k1,753:32583029,34750391:18830588 +g1,753:32583029,34750391 +) +(1,754:6797234,35416569:25785795,388497,82312 +h1,754:6797234,35416569:0,0,0 +g1,754:7113380,35416569 +g1,754:7429526,35416569 +g1,754:7745672,35416569 +g1,754:8061818,35416569 +g1,754:8377964,35416569 +g1,754:8694110,35416569 +g1,754:9010256,35416569 +g1,754:9326402,35416569 +g1,754:9642548,35416569 +g1,754:9958694,35416569 +g1,754:10274840,35416569 +g1,754:10590986,35416569 +g1,754:11855569,35416569 +g1,754:12487861,35416569 +k1,754:12487861,35416569:0 +h1,754:13120153,35416569:0,0,0 +k1,754:32583029,35416569:19462876 +g1,754:32583029,35416569 +) +(1,755:6797234,36082747:25785795,404226,82312 +h1,755:6797234,36082747:0,0,0 +g1,755:7113380,36082747 +g1,755:7429526,36082747 +g1,755:7745672,36082747 +g1,755:8061818,36082747 +g1,755:8377964,36082747 +g1,755:8694110,36082747 +g1,755:9010256,36082747 +g1,755:9326402,36082747 +g1,755:9642548,36082747 +g1,755:9958694,36082747 +g1,755:10274840,36082747 +g1,755:10590986,36082747 +g1,755:11855569,36082747 +g1,755:12487861,36082747 +g1,755:13120153,36082747 +g1,755:13752445,36082747 +k1,755:13752445,36082747:0 +h1,755:14384737,36082747:0,0,0 +k1,755:32583029,36082747:18198292 +g1,755:32583029,36082747 +) +(1,756:6797234,36748925:25785795,404226,82312 +h1,756:6797234,36748925:0,0,0 +g1,756:7113380,36748925 +g1,756:7429526,36748925 +g1,756:7745672,36748925 +g1,756:8061818,36748925 +g1,756:8377964,36748925 +g1,756:8694110,36748925 +g1,756:9010256,36748925 +g1,756:9326402,36748925 +g1,756:9642548,36748925 +g1,756:9958694,36748925 +g1,756:10274840,36748925 +g1,756:10590986,36748925 +g1,756:12487860,36748925 +g1,756:13120152,36748925 +g1,756:13752444,36748925 +g1,756:14384736,36748925 +k1,756:14384736,36748925:0 +h1,756:15017028,36748925:0,0,0 +k1,756:32583028,36748925:17566000 +g1,756:32583028,36748925 +) +(1,757:6797234,37415103:25785795,410518,107478 +h1,757:6797234,37415103:0,0,0 +g1,757:7113380,37415103 +g1,757:7429526,37415103 +g1,757:7745672,37415103 +g1,757:8061818,37415103 +g1,757:8377964,37415103 +g1,757:8694110,37415103 +g1,757:9010256,37415103 +g1,757:9326402,37415103 +g1,757:9642548,37415103 +g1,757:9958694,37415103 +g1,757:10274840,37415103 +g1,757:10590986,37415103 +g1,757:14068589,37415103 +g1,757:16281609,37415103 +g1,757:18178483,37415103 +g1,757:21656085,37415103 +h1,757:22288377,37415103:0,0,0 +k1,757:32583029,37415103:10294652 +g1,757:32583029,37415103 +) +(1,758:6797234,38081281:25785795,404226,76021 +h1,758:6797234,38081281:0,0,0 +h1,758:7113380,38081281:0,0,0 +k1,758:32583028,38081281:25469648 +g1,758:32583028,38081281 +) +(1,762:6797234,38812995:25785795,410518,107478 +(1,760:6797234,38812995:0,0,0 +g1,760:6797234,38812995 +g1,760:6797234,38812995 +g1,760:6469554,38812995 +(1,760:6469554,38812995:0,0,0 +) +g1,760:6797234,38812995 +) +g1,762:7745671,38812995 +g1,762:9010254,38812995 +g1,762:10274837,38812995 +g1,762:12487857,38812995 +g1,762:14384731,38812995 +h1,762:16913896,38812995:0,0,0 +k1,762:32583029,38812995:15669133 +g1,762:32583029,38812995 +) +(1,764:6797234,40134533:25785795,404226,6290 +(1,763:6797234,40134533:0,0,0 +g1,763:6797234,40134533 +g1,763:6797234,40134533 +g1,763:6469554,40134533 +(1,763:6469554,40134533:0,0,0 +) +g1,763:6797234,40134533 +) +h1,764:7113380,40134533:0,0,0 +k1,764:32583028,40134533:25469648 +g1,764:32583028,40134533 +) +(1,768:6797234,40866247:25785795,404226,76021 +(1,766:6797234,40866247:0,0,0 +g1,766:6797234,40866247 +g1,766:6797234,40866247 +g1,766:6469554,40866247 +(1,766:6469554,40866247:0,0,0 +) +g1,766:6797234,40866247 +) +g1,768:7745671,40866247 +g1,768:9010254,40866247 +h1,768:9326400,40866247:0,0,0 +k1,768:32583028,40866247:23256628 +g1,768:32583028,40866247 +) +] +) +g1,769:32583029,40942268 +g1,769:6797234,40942268 +g1,769:6797234,40942268 +g1,769:32583029,40942268 +g1,769:32583029,40942268 +) +h1,769:6797234,41138876:0,0,0 +] +g1,771:32583029,41663164 +) +h1,771:6630773,41663164:0,0,0 +v1,774:6630773,43028940:0,393216,0 +(1,797:6630773,45614933:25952256,2979209,0 +g1,797:6630773,45614933 +g1,797:6303093,45614933 +r1,797:6401397,45614933:98304,2979209,0 +g1,797:6600626,45614933 +g1,797:6797234,45614933 +[1,797:6797234,45614933:25785795,2979209,0 +(1,775:6797234,43797609:25785795,1161885,196608 +(1,774:6797234,43797609:0,1161885,196608 +r1,797:8344870,43797609:1547636,1358493,196608 +k1,774:6797234,43797609:-1547636 +) +(1,774:6797234,43797609:1547636,1161885,196608 +) +k1,774:8633309,43797609:288439 +k1,774:10118435,43797609:288439 +(1,774:10118435,43797609:0,452978,115847 +r1,797:12938684,43797609:2820249,568825,115847 +k1,774:10118435,43797609:-2820249 +) +(1,774:10118435,43797609:2820249,452978,115847 +k1,774:10118435,43797609:3277 +h1,774:12935407,43797609:0,411205,112570 +) +k1,774:13227123,43797609:288439 +k1,774:16701922,43797609:288439 +k1,774:18094644,43797609:288440 +k1,774:21593036,43797609:288439 +k1,774:22829126,43797609:288439 +k1,774:25605967,43797609:288439 +(1,774:25605967,43797609:0,459977,115847 +r1,797:28777928,43797609:3171961,575824,115847 +k1,774:25605967,43797609:-3171961 +) +(1,774:25605967,43797609:3171961,459977,115847 +g1,774:26664380,43797609 +g1,774:27367804,43797609 +h1,774:28774651,43797609:0,411205,112570 +) +k1,774:29066367,43797609:288439 +k1,774:32583029,43797609:0 +) +(1,775:6797234,44639097:25785795,505283,126483 +k1,774:8688351,44639097:193079 +k1,774:9647546,44639097:193079 +k1,774:10859710,44639097:193079 +k1,774:14415441,44639097:193079 +k1,774:15712802,44639097:193079 +k1,774:16653647,44639097:193079 +k1,774:19936749,44639097:193079 +k1,774:20891356,44639097:193079 +k1,774:23842190,44639097:193079 +k1,774:26045914,44639097:193079 +k1,774:26921878,44639097:193079 +k1,774:29530614,44639097:193079 +k1,774:31734338,44639097:193079 +k1,775:32583029,44639097:0 +) +(1,775:6797234,45480585:25785795,505283,134348 +k1,774:9178106,45480585:237845 +k1,774:10177480,45480585:237846 +k1,774:11434410,45480585:237845 +k1,774:13325728,45480585:237845 +k1,774:14928689,45480585:237846 +k1,774:16363221,45480585:237845 +k1,774:19839855,45480585:237845 +k1,774:20609197,45480585:237845 +k1,774:22497240,45480585:237846 +k1,774:25090449,45480585:237845 +k1,774:26519739,45480585:237845 +k1,774:29478640,45480585:237846 +k1,774:31386342,45480585:237845 +k1,774:32583029,45480585:0 +) +] +g1,797:32583029,45614933 ) ] +(1,797:32583029,45706769:0,0,0 +g1,797:32583029,45706769 +) +) +] +(1,797:6630773,47279633:25952256,0,0 +h1,797:6630773,47279633:25952256,0,0 ) -g1,18950:32583029,45403737 -g1,18950:6630773,45403737 -g1,18950:6630773,45403737 -g1,18950:32583029,45403737 -g1,18950:32583029,45403737 +] +(1,797:4262630,4025873:0,0,0 +[1,797:-473656,4025873:0,0,0 +(1,797:-473656,-710413:0,0,0 +(1,797:-473656,-710413:0,0,0 +g1,797:-473656,-710413 +) +g1,797:-473656,-710413 +) +] +) +] +!26868 +}20 +Input:308:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:309:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:310:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:311:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:312:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:313:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:314:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:315:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:316:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:317:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:318:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:319:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:320:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:321:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:322:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:323:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:324:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:325:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:326:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:327:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:328:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:329:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:330:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:331:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:332:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:333:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:334:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:335:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2559 +{21 +[1,835:4262630,47279633:28320399,43253760,0 +(1,835:4262630,4025873:0,0,0 +[1,835:-473656,4025873:0,0,0 +(1,835:-473656,-710413:0,0,0 +(1,835:-473656,-644877:0,0,0 +k1,835:-473656,-644877:-65536 ) -] -(1,18950:32583029,45706769:0,0,0 -g1,18950:32583029,45706769 +(1,835:-473656,4736287:0,0,0 +k1,835:-473656,4736287:5209943 ) +g1,835:-473656,-710413 ) ] -(1,18950:6630773,47279633:25952256,0,0 -h1,18950:6630773,47279633:25952256,0,0 ) -] -(1,18950:4262630,4025873:0,0,0 -[1,18950:-473656,4025873:0,0,0 -(1,18950:-473656,-710413:0,0,0 -(1,18950:-473656,-710413:0,0,0 -g1,18950:-473656,-710413 +[1,835:6630773,47279633:25952256,43253760,0 +[1,835:6630773,4812305:25952256,786432,0 +(1,835:6630773,4812305:25952256,505283,134348 +(1,835:6630773,4812305:25952256,505283,134348 +g1,835:3078558,4812305 +[1,835:3078558,4812305:0,0,0 +(1,835:3078558,2439708:0,1703936,0 +k1,835:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,835:2537886,2439708:1179648,16384,0 ) -g1,18950:-473656,-710413 +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,835:3078558,1915420:16384,1179648,0 ) -] +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) ] -!26335 -}369 -Input:2986:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2987:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!196 -{370 -[1,19011:4262630,47279633:28320399,43253760,0 -(1,19011:4262630,4025873:0,0,0 -[1,19011:-473656,4025873:0,0,0 -(1,19011:-473656,-710413:0,0,0 -(1,19011:-473656,-644877:0,0,0 -k1,19011:-473656,-644877:-65536 -) -(1,19011:-473656,4736287:0,0,0 -k1,19011:-473656,4736287:5209943 -) -g1,19011:-473656,-710413 ) -] ) -[1,19011:6630773,47279633:25952256,43253760,0 -[1,19011:6630773,4812305:25952256,786432,0 -(1,19011:6630773,4812305:25952256,513147,126483 -(1,19011:6630773,4812305:25952256,513147,126483 -g1,19011:3078558,4812305 -[1,19011:3078558,4812305:0,0,0 -(1,19011:3078558,2439708:0,1703936,0 -k1,19011:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,19011:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,19011:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 ) ] +[1,835:3078558,4812305:0,0,0 +(1,835:3078558,2439708:0,1703936,0 +g1,835:29030814,2439708 +g1,835:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,835:36151628,1915420:16384,1179648,0 ) -) -) -] -[1,19011:3078558,4812305:0,0,0 -(1,19011:3078558,2439708:0,1703936,0 -g1,19011:29030814,2439708 -g1,19011:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,19011:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) ] ) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,19011:37855564,2439708:1179648,16384,0 -) +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,835:37855564,2439708:1179648,16384,0 ) -k1,19011:3078556,2439708:-34777008 ) -] -[1,19011:3078558,4812305:0,0,0 -(1,19011:3078558,49800853:0,16384,2228224 -k1,19011:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,19011:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,19011:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 +k1,835:3078556,2439708:-34777008 ) ] +[1,835:3078558,4812305:0,0,0 +(1,835:3078558,49800853:0,16384,2228224 +k1,835:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,835:2537886,49800853:1179648,16384,0 ) +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,835:3078558,51504789:16384,1179648,0 ) +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) ] -[1,19011:3078558,4812305:0,0,0 -(1,19011:3078558,49800853:0,16384,2228224 -g1,19011:29030814,49800853 -g1,19011:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,19011:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 -) -] -) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,19011:37855564,49800853:1179648,16384,0 ) ) -k1,19011:3078556,49800853:-34777008 ) ] -g1,19011:6630773,4812305 -g1,19011:6630773,4812305 -g1,19011:8364200,4812305 -g1,19011:11956228,4812305 -g1,19011:13698175,4812305 -g1,19011:16459862,4812305 -g1,19011:18899112,4812305 -k1,19011:31387652,4812305:12488540 +[1,835:3078558,4812305:0,0,0 +(1,835:3078558,49800853:0,16384,2228224 +g1,835:29030814,49800853 +g1,835:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,835:36151628,51504789:16384,1179648,0 ) +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 +) +] +) +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,835:37855564,49800853:1179648,16384,0 ) -] -[1,19011:6630773,45706769:25952256,40108032,0 -(1,19011:6630773,45706769:25952256,40108032,0 -(1,19011:6630773,45706769:0,0,0 -g1,19011:6630773,45706769 -) -[1,19011:6630773,45706769:25952256,40108032,0 -v1,18950:6630773,6254097:0,393216,0 -(1,18950:6630773,8567728:25952256,2706847,196608 -g1,18950:6630773,8567728 -g1,18950:6630773,8567728 -g1,18950:6434165,8567728 -(1,18950:6434165,8567728:0,2706847,196608 -r1,19011:32779637,8567728:26345472,2903455,196608 -k1,18950:6434165,8567728:-26345472 -) -(1,18950:6434165,8567728:26345472,2706847,196608 -[1,18950:6630773,8567728:25952256,2510239,0 -(1,18945:6630773,6468007:25952256,410518,101187 -h1,18945:6630773,6468007:0,0,0 -k1,18945:6630773,6468007:0 -h1,18945:13585978,6468007:0,0,0 -k1,18945:32583030,6468007:18997052 -g1,18945:32583030,6468007 -) -(1,18946:6630773,7134185:25952256,404226,82312 -h1,18946:6630773,7134185:0,0,0 -g1,18946:7263065,7134185 -g1,18946:7579211,7134185 -g1,18946:7895357,7134185 -g1,18946:8211503,7134185 -g1,18946:8527649,7134185 -g1,18946:8843795,7134185 -g1,18946:9159941,7134185 -g1,18946:9476087,7134185 -g1,18946:9792233,7134185 -g1,18946:10108379,7134185 -g1,18946:10424525,7134185 -g1,18946:10740671,7134185 -g1,18946:11056817,7134185 -g1,18946:11372963,7134185 -g1,18946:12953692,7134185 -g1,18946:13585984,7134185 -k1,18946:13585984,7134185:0 -h1,18946:15166713,7134185:0,0,0 -k1,18946:32583029,7134185:17416316 -g1,18946:32583029,7134185 -) -(1,18947:6630773,7800363:25952256,410518,101187 -h1,18947:6630773,7800363:0,0,0 -g1,18947:7263065,7800363 -g1,18947:7579211,7800363 -g1,18947:7895357,7800363 -g1,18947:8211503,7800363 -g1,18947:8527649,7800363 -g1,18947:8843795,7800363 -g1,18947:9159941,7800363 -g1,18947:9476087,7800363 -g1,18947:9792233,7800363 -g1,18947:10108379,7800363 -g1,18947:10424525,7800363 -g1,18947:10740671,7800363 -g1,18947:11056817,7800363 -g1,18947:11372963,7800363 -g1,18947:14218274,7800363 -g1,18947:14850566,7800363 -k1,18947:14850566,7800363:0 -h1,18947:24651082,7800363:0,0,0 -k1,18947:32583029,7800363:7931947 -g1,18947:32583029,7800363 -) -(1,18948:6630773,8466541:25952256,410518,101187 -h1,18948:6630773,8466541:0,0,0 -g1,18948:10108376,8466541 -g1,18948:11056814,8466541 -k1,18948:11056814,8466541:0 -h1,18948:23386496,8466541:0,0,0 -k1,18948:32583029,8466541:9196533 -g1,18948:32583029,8466541 +) +k1,835:3078556,49800853:-34777008 +) +] +g1,835:6630773,4812305 +k1,835:18771974,4812305:11344283 +g1,835:20158715,4812305 +g1,835:20807521,4812305 +g1,835:24121676,4812305 +g1,835:28605649,4812305 +g1,835:30015328,4812305 +) +) +] +[1,835:6630773,45706769:25952256,40108032,0 +(1,835:6630773,45706769:25952256,40108032,0 +(1,835:6630773,45706769:0,0,0 +g1,835:6630773,45706769 +) +[1,835:6630773,45706769:25952256,40108032,0 +v1,797:6630773,6254097:0,393216,0 +(1,797:6630773,18486987:25952256,12626106,0 +g1,797:6630773,18486987 +g1,797:6303093,18486987 +r1,835:6401397,18486987:98304,12626106,0 +g1,797:6600626,18486987 +g1,797:6797234,18486987 +[1,797:6797234,18486987:25785795,12626106,0 +(1,775:6797234,6374028:25785795,513147,134348 +k1,774:10311907,6374028:209692 +k1,774:11180891,6374028:209692 +k1,774:12409668,6374028:209692 +k1,774:13925493,6374028:209692 +(1,774:13925493,6374028:0,452978,115847 +r1,835:16745742,6374028:2820249,568825,115847 +k1,774:13925493,6374028:-2820249 +) +(1,774:13925493,6374028:2820249,452978,115847 +k1,774:13925493,6374028:3277 +h1,774:16742465,6374028:0,411205,112570 +) +k1,774:16955434,6374028:209692 +k1,774:19826544,6374028:209693 +k1,774:21891560,6374028:209692 +k1,774:23799290,6374028:209692 +k1,774:26295533,6374028:209692 +k1,774:28240618,6374028:209692 +(1,774:28240618,6374028:0,459977,115847 +r1,835:31412579,6374028:3171961,575824,115847 +k1,774:28240618,6374028:-3171961 +) +(1,774:28240618,6374028:3171961,459977,115847 +g1,774:29299031,6374028 +g1,774:30002455,6374028 +h1,774:31409302,6374028:0,411205,112570 +) +k1,774:31622271,6374028:209692 +k1,775:32583029,6374028:0 +) +(1,775:6797234,7215516:25785795,513147,134348 +k1,774:9010821,7215516:187869 +k1,774:11396767,7215516:187868 +k1,774:13384910,7215516:187869 +k1,774:14903159,7215516:187868 +k1,774:16661271,7215516:187869 +k1,774:18345326,7215516:187868 +k1,774:20268588,7215516:187869 +(1,774:20268588,7215516:0,452978,115847 +r1,835:23088837,7215516:2820249,568825,115847 +k1,774:20268588,7215516:-2820249 +) +(1,774:20268588,7215516:2820249,452978,115847 +k1,774:20268588,7215516:3277 +h1,774:23085560,7215516:0,411205,112570 +) +k1,774:23276705,7215516:187868 +k1,774:24169741,7215516:187869 +k1,774:26101522,7215516:187868 +k1,774:27355662,7215516:187869 +k1,774:28508875,7215516:187868 +k1,774:31189078,7215516:187869 +k1,774:32583029,7215516:0 +) +(1,775:6797234,8057004:25785795,513147,126483 +k1,774:7798577,8057004:212945 +k1,774:9104007,8057004:212945 +k1,774:10653886,8057004:212945 +k1,774:12132988,8057004:212946 +k1,774:13365018,8057004:212945 +k1,774:15228160,8057004:212945 +k1,774:17906569,8057004:212945 +k1,774:19620288,8057004:212945 +k1,774:21346459,8057004:212945 +k1,774:23427835,8057004:212945 +k1,774:25511179,8057004:212946 +k1,774:26375552,8057004:212945 +k1,774:30426941,8057004:212945 +k1,774:31563944,8057004:212945 +k1,774:32583029,8057004:0 +) +(1,775:6797234,8898492:25785795,505283,115847 +g1,774:8698433,8898492 +g1,774:10677620,8898492 +g1,774:12270800,8898492 +g1,774:15695056,8898492 +g1,774:17591667,8898492 +(1,774:17591667,8898492:0,452978,115847 +r1,835:20411916,8898492:2820249,568825,115847 +k1,774:17591667,8898492:-2820249 +) +(1,774:17591667,8898492:2820249,452978,115847 +k1,774:17591667,8898492:3277 +h1,774:20408639,8898492:0,411205,112570 +) +g1,774:20611145,8898492 +g1,774:21341871,8898492 +g1,774:23411498,8898492 +g1,774:24262155,8898492 +g1,774:25873685,8898492 +g1,774:27264359,8898492 +k1,775:32583029,8898492:1480226 +g1,775:32583029,8898492 +) +v1,777:6797234,10088958:0,393216,0 +(1,794:6797234,17766091:25785795,8070349,196608 +g1,794:6797234,17766091 +g1,794:6797234,17766091 +g1,794:6600626,17766091 +(1,794:6600626,17766091:0,8070349,196608 +r1,835:32779637,17766091:26179011,8266957,196608 +k1,794:6600625,17766091:-26179012 +) +(1,794:6600626,17766091:26179011,8070349,196608 +[1,794:6797234,17766091:25785795,7873741,0 +(1,779:6797234,10296576:25785795,404226,107478 +(1,778:6797234,10296576:0,0,0 +g1,778:6797234,10296576 +g1,778:6797234,10296576 +g1,778:6469554,10296576 +(1,778:6469554,10296576:0,0,0 +) +g1,778:6797234,10296576 +) +g1,779:9958691,10296576 +g1,779:10907129,10296576 +h1,779:12487857,10296576:0,0,0 +k1,779:32583029,10296576:20095172 +g1,779:32583029,10296576 +) +(1,780:6797234,10962754:25785795,410518,107478 +h1,780:6797234,10962754:0,0,0 +g1,780:7745671,10962754 +g1,780:11223274,10962754 +g1,780:12171711,10962754 +g1,780:14384731,10962754 +h1,780:14700877,10962754:0,0,0 +k1,780:32583029,10962754:17882152 +g1,780:32583029,10962754 +) +(1,781:6797234,11628932:25785795,404226,6290 +h1,781:6797234,11628932:0,0,0 +g1,781:7113380,11628932 +g1,781:7429526,11628932 +g1,781:8061818,11628932 +g1,781:9010256,11628932 +h1,781:9326402,11628932:0,0,0 +k1,781:32583030,11628932:23256628 +g1,781:32583030,11628932 +) +(1,782:6797234,12295110:25785795,410518,107478 +h1,782:6797234,12295110:0,0,0 +g1,782:7429526,12295110 +g1,782:9010255,12295110 +g1,782:9958692,12295110 +g1,782:13436295,12295110 +g1,782:14384732,12295110 +g1,782:16597752,12295110 +h1,782:16913898,12295110:0,0,0 +k1,782:32583029,12295110:15669131 +g1,782:32583029,12295110 +) +(1,783:6797234,12961288:25785795,404226,76021 +h1,783:6797234,12961288:0,0,0 +g1,783:7113380,12961288 +g1,783:7429526,12961288 +g1,783:8061818,12961288 +g1,783:9010256,12961288 +g1,783:9642548,12961288 +g1,783:10274840,12961288 +h1,783:10590986,12961288:0,0,0 +k1,783:32583030,12961288:21992044 +g1,783:32583030,12961288 +) +(1,784:6797234,13627466:25785795,410518,107478 +h1,784:6797234,13627466:0,0,0 +g1,784:7429526,13627466 +g1,784:9010255,13627466 +g1,784:9958692,13627466 +g1,784:13436295,13627466 +g1,784:14384732,13627466 +g1,784:16913898,13627466 +h1,784:17230044,13627466:0,0,0 +k1,784:32583029,13627466:15352985 +g1,784:32583029,13627466 +) +(1,785:6797234,14293644:25785795,404226,76021 +h1,785:6797234,14293644:0,0,0 +g1,785:7113380,14293644 +g1,785:7429526,14293644 +g1,785:8061818,14293644 +g1,785:9010256,14293644 +g1,785:9642548,14293644 +g1,785:10274840,14293644 +h1,785:10590986,14293644:0,0,0 +k1,785:32583030,14293644:21992044 +g1,785:32583030,14293644 +) +(1,786:6797234,14959822:25785795,404226,76021 +h1,786:6797234,14959822:0,0,0 +g1,786:7429526,14959822 +g1,786:9010255,14959822 +h1,786:9326401,14959822:0,0,0 +k1,786:32583029,14959822:23256628 +g1,786:32583029,14959822 +) +(1,787:6797234,15626000:25785795,404226,9436 +h1,787:6797234,15626000:0,0,0 +g1,787:7113380,15626000 +g1,787:7429526,15626000 +g1,787:8061818,15626000 +g1,787:9010256,15626000 +h1,787:9326402,15626000:0,0,0 +k1,787:32583030,15626000:23256628 +g1,787:32583030,15626000 +) +(1,788:6797234,16292178:25785795,404226,76021 +h1,788:6797234,16292178:0,0,0 +h1,788:7113380,16292178:0,0,0 +k1,788:32583028,16292178:25469648 +g1,788:32583028,16292178 +) +(1,789:6797234,16958356:25785795,404226,6290 +h1,789:6797234,16958356:0,0,0 +h1,789:7113380,16958356:0,0,0 +k1,789:32583028,16958356:25469648 +g1,789:32583028,16958356 +) +(1,793:6797234,17690070:25785795,404226,76021 +(1,791:6797234,17690070:0,0,0 +g1,791:6797234,17690070 +g1,791:6797234,17690070 +g1,791:6469554,17690070 +(1,791:6469554,17690070:0,0,0 +) +g1,791:6797234,17690070 +) +g1,793:7745671,17690070 +g1,793:9010254,17690070 +h1,793:9958691,17690070:0,0,0 +k1,793:32583029,17690070:22624338 +g1,793:32583029,17690070 +) +] +) +g1,794:32583029,17766091 +g1,794:6797234,17766091 +g1,794:6797234,17766091 +g1,794:32583029,17766091 +g1,794:32583029,17766091 +) +h1,794:6797234,17962699:0,0,0 +] +g1,797:32583029,18486987 +) +h1,797:6630773,18486987:0,0,0 +(1,799:6630773,20114907:25952256,505283,115847 +(1,799:6630773,20114907:2809528,485622,11795 +g1,799:6630773,20114907 +g1,799:9440301,20114907 +) +g1,799:13214519,20114907 +(1,799:13214519,20114907:0,459977,115847 +r1,835:16034768,20114907:2820249,575824,115847 +k1,799:13214519,20114907:-2820249 +) +(1,799:13214519,20114907:2820249,459977,115847 +k1,799:13214519,20114907:3277 +h1,799:16031491,20114907:0,411205,112570 +) +k1,799:32583029,20114907:16548261 +g1,799:32583029,20114907 +) +(1,803:6630773,21349611:25952256,513147,134348 +k1,801:10252481,21349611:183689 +k1,801:12031316,21349611:183689 +k1,801:12746502,21349611:183689 +k1,801:13286051,21349611:183689 +k1,801:16855986,21349611:183690 +k1,801:17698967,21349611:183689 +k1,801:18901741,21349611:183689 +k1,801:19500257,21349611:183673 +k1,801:22699913,21349611:183689 +k1,801:23955772,21349611:183690 +k1,801:25493435,21349611:183689 +k1,801:27654345,21349611:183689 +k1,801:28785685,21349611:183689 +k1,801:31227089,21349611:183689 +k1,803:32583029,21349611:0 +) +(1,803:6630773,22191099:25952256,513147,134348 +k1,801:7996325,22191099:153136 +k1,801:9645647,22191099:153135 +k1,801:11083289,22191099:153136 +k1,801:12573359,22191099:153136 +k1,801:15138875,22191099:153136 +k1,801:17135538,22191099:153135 +k1,801:18731121,22191099:153136 +k1,801:21520115,22191099:153136 +k1,801:24978232,22191099:153136 +k1,801:26203536,22191099:153135 +k1,801:27422943,22191099:153136 +k1,801:30913172,22191099:153136 +k1,801:32583029,22191099:0 +) +(1,803:6630773,23032587:25952256,513147,126483 +k1,802:10268326,23032587:199534 +k1,802:14061198,23032587:199533 +k1,802:17336337,23032587:199534 +k1,802:18067367,23032587:199533 +k1,802:20183829,23032587:199534 +k1,802:21144890,23032587:199533 +k1,802:23412740,23032587:199534 +k1,802:24271565,23032587:199533 +k1,802:27069602,23032587:199534 +(1,802:27069602,23032587:0,459977,115847 +r1,835:29889851,23032587:2820249,575824,115847 +k1,802:27069602,23032587:-2820249 +) +(1,802:27069602,23032587:2820249,459977,115847 +k1,802:27069602,23032587:3277 +h1,802:29886574,23032587:0,411205,112570 +) +k1,802:30089384,23032587:199533 +k1,802:32583029,23032587:0 +) +(1,803:6630773,23874075:25952256,513147,134348 +k1,802:7562930,23874075:245995 +k1,802:8164786,23874075:245996 +k1,802:10283800,23874075:245995 +k1,802:12535197,23874075:245995 +k1,802:14162036,23874075:245995 +k1,802:17103528,23874075:245996 +k1,802:19032488,23874075:245995 +k1,802:20933267,23874075:245995 +k1,802:24755562,23874075:245995 +k1,802:25357418,23874075:245996 +(1,802:25357418,23874075:0,452978,122846 +r1,835:27825955,23874075:2468537,575824,122846 +k1,802:25357418,23874075:-2468537 +) +(1,802:25357418,23874075:2468537,452978,122846 +k1,802:25357418,23874075:3277 +h1,802:27822678,23874075:0,411205,112570 +) +k1,802:28071950,23874075:245995 +k1,802:30295822,23874075:245995 +k1,802:32583029,23874075:0 +) +(1,803:6630773,24715563:25952256,513147,126483 +k1,802:7799919,24715563:150061 +k1,802:9792851,24715563:150060 +k1,802:10602204,24715563:150061 +k1,802:11108125,24715563:150061 +k1,802:12449631,24715563:150061 +k1,802:16087517,24715563:150060 +(1,802:16087517,24715563:0,414482,115847 +r1,835:17500918,24715563:1413401,530329,115847 +k1,802:16087517,24715563:-1413401 +) +(1,802:16087517,24715563:1413401,414482,115847 +k1,802:16087517,24715563:3277 +h1,802:17497641,24715563:0,411205,112570 +) +k1,802:18031743,24715563:150061 +k1,802:18952507,24715563:150061 +k1,802:22542552,24715563:150060 +k1,802:23344041,24715563:150061 +k1,802:24586587,24715563:150061 +k1,802:25684299,24715563:150061 +(1,802:25684299,24715563:0,414482,115847 +r1,835:27097700,24715563:1413401,530329,115847 +k1,802:25684299,24715563:-1413401 +) +(1,802:25684299,24715563:1413401,414482,115847 +k1,802:25684299,24715563:3277 +h1,802:27094423,24715563:0,411205,112570 +) +k1,802:27247760,24715563:150060 +k1,802:29095203,24715563:150061 +k1,803:32583029,24715563:0 +) +(1,803:6630773,25557051:25952256,513147,126483 +(1,802:6630773,25557051:0,414482,115847 +r1,835:7692462,25557051:1061689,530329,115847 +k1,802:6630773,25557051:-1061689 +) +(1,802:6630773,25557051:1061689,414482,115847 +k1,802:6630773,25557051:3277 +h1,802:7689185,25557051:0,411205,112570 +) +k1,802:8278227,25557051:205001 +k1,802:9674674,25557051:205002 +k1,802:10650378,25557051:205001 +k1,802:14295364,25557051:205001 +k1,802:15151794,25557051:205002 +k1,802:16449280,25557051:205001 +k1,802:17601933,25557051:205002 +(1,802:17601933,25557051:0,414482,115847 +r1,835:19367046,25557051:1765113,530329,115847 +k1,802:17601933,25557051:-1765113 +) +(1,802:17601933,25557051:1765113,414482,115847 +k1,802:17601933,25557051:3277 +h1,802:19363769,25557051:0,411205,112570 +) +k1,802:19572047,25557051:205001 +k1,802:21474430,25557051:205001 +k1,802:25167258,25557051:205002 +(1,802:25167258,25557051:0,414482,115847 +r1,835:25877236,25557051:709978,530329,115847 +k1,802:25167258,25557051:-709978 +) +(1,802:25167258,25557051:709978,414482,115847 +k1,802:25167258,25557051:3277 +h1,802:25873959,25557051:0,411205,112570 +) +k1,802:26463001,25557051:205001 +k1,802:27412491,25557051:205001 +k1,802:29069115,25557051:205002 +k1,802:31023272,25557051:205001 +k1,803:32583029,25557051:0 +) +(1,803:6630773,26398539:25952256,513147,134348 +k1,802:8088340,26398539:190101 +k1,802:10023009,26398539:190101 +k1,802:11232194,26398539:190100 +k1,802:13904143,26398539:190101 +k1,802:15113329,26398539:190101 +k1,802:16983773,26398539:190101 +k1,802:19932283,26398539:190100 +k1,802:20738422,26398539:190101 +k1,802:21947608,26398539:190101 +k1,802:24916436,26398539:190101 +k1,802:27084414,26398539:190101 +k1,802:27806011,26398539:190100 +k1,802:29763618,26398539:190101 +k1,802:31521340,26398539:190101 +(1,802:31521340,26398539:0,414482,115847 +r1,835:32583029,26398539:1061689,530329,115847 +k1,802:31521340,26398539:-1061689 +) +(1,802:31521340,26398539:1061689,414482,115847 +k1,802:31521340,26398539:3277 +h1,802:32579752,26398539:0,411205,112570 +) +k1,802:32583029,26398539:0 +) +(1,803:6630773,27240027:25952256,513147,134348 +k1,802:7281229,27240027:176631 +(1,802:7281229,27240027:0,414482,115847 +r1,835:8694630,27240027:1413401,530329,115847 +k1,802:7281229,27240027:-1413401 +) +(1,802:7281229,27240027:1413401,414482,115847 +k1,802:7281229,27240027:3277 +h1,802:8691353,27240027:0,411205,112570 +) +k1,802:8871260,27240027:176630 +k1,802:9579388,27240027:176631 +(1,802:9579388,27240027:0,414482,115847 +r1,835:10992789,27240027:1413401,530329,115847 +k1,802:9579388,27240027:-1413401 +) +(1,802:9579388,27240027:1413401,414482,115847 +k1,802:9579388,27240027:3277 +h1,802:10989512,27240027:0,411205,112570 +) +k1,802:11169420,27240027:176631 +k1,802:12537496,27240027:176631 +k1,802:14281747,27240027:176630 +(1,802:14281747,27240027:0,414482,115847 +r1,835:14991725,27240027:709978,530329,115847 +k1,802:14281747,27240027:-709978 +) +(1,802:14281747,27240027:709978,414482,115847 +k1,802:14281747,27240027:3277 +h1,802:14988448,27240027:0,411205,112570 +) +k1,802:15168356,27240027:176631 +k1,802:15818812,27240027:176631 +(1,802:15818812,27240027:0,414482,115847 +r1,835:17232213,27240027:1413401,530329,115847 +k1,802:15818812,27240027:-1413401 +) +(1,802:15818812,27240027:1413401,414482,115847 +k1,802:15818812,27240027:3277 +h1,802:17228936,27240027:0,411205,112570 +) +k1,802:17408844,27240027:176631 +k1,802:18116971,27240027:176630 +(1,802:18116971,27240027:0,414482,115847 +r1,835:19882084,27240027:1765113,530329,115847 +k1,802:18116971,27240027:-1765113 +) +(1,802:18116971,27240027:1765113,414482,115847 +k1,802:18116971,27240027:3277 +h1,802:19878807,27240027:0,411205,112570 +) +k1,802:20232385,27240027:176631 +k1,802:21306859,27240027:176631 +k1,802:23138274,27240027:176631 +k1,802:26717533,27240027:176630 +k1,802:27998446,27240027:176631 +k1,802:28922843,27240027:176631 +k1,802:30231281,27240027:176631 +k1,802:30822732,27240027:176608 +k1,803:32583029,27240027:0 +) +(1,803:6630773,28081515:25952256,513147,134348 +k1,802:8436894,28081515:167066 +k1,802:11604855,28081515:167067 +k1,802:12791006,28081515:167066 +k1,802:15670607,28081515:167066 +k1,802:18319522,28081515:167067 +k1,802:19114423,28081515:167066 +k1,802:20300574,28081515:167066 +k1,802:21834721,28081515:167066 +k1,802:22661080,28081515:167067 +k1,802:25136324,28081515:167066 +k1,802:27508677,28081515:167066 +k1,802:28361906,28081515:167067 +k1,802:31931601,28081515:167066 +k1,802:32583029,28081515:0 +) +(1,803:6630773,28923003:25952256,513147,134348 +k1,802:10420938,28923003:179131 +(1,802:10420938,28923003:0,414482,115847 +r1,835:11482627,28923003:1061689,530329,115847 +k1,802:10420938,28923003:-1061689 +) +(1,802:10420938,28923003:1061689,414482,115847 +k1,802:10420938,28923003:3277 +h1,802:11479350,28923003:0,411205,112570 +) +k1,802:11661758,28923003:179131 +k1,802:13032334,28923003:179131 +(1,802:13032334,28923003:0,414482,115847 +r1,835:13742312,28923003:709978,530329,115847 +k1,802:13032334,28923003:-709978 +) +(1,802:13032334,28923003:709978,414482,115847 +k1,802:13032334,28923003:3277 +h1,802:13739035,28923003:0,411205,112570 +) +k1,802:14095113,28923003:179131 +k1,802:17133580,28923003:179131 +k1,802:18445173,28923003:179131 +k1,802:19976966,28923003:179130 +k1,802:21818745,28923003:179131 +k1,802:22463837,28923003:179131 +k1,802:24023156,28923003:179131 +k1,802:25193847,28923003:179131 +k1,802:27693608,28923003:179131 +k1,802:29315186,28923003:179131 +k1,802:30513402,28923003:179131 +k1,802:32583029,28923003:0 +) +(1,803:6630773,29764491:25952256,505283,134348 +k1,802:8832527,29764491:223877 +k1,802:11835132,29764491:223878 +k1,802:12820537,29764491:223877 +k1,802:14063500,29764491:223878 +k1,802:17727362,29764491:223877 +k1,802:20156527,29764491:223878 +k1,802:21066566,29764491:223877 +k1,802:24362771,29764491:223877 +k1,802:25238077,29764491:223878 +(1,802:25238077,29764491:0,414482,115847 +r1,835:26651478,29764491:1413401,530329,115847 +k1,802:25238077,29764491:-1413401 +) +(1,802:25238077,29764491:1413401,414482,115847 +k1,802:25238077,29764491:3277 +h1,802:26648201,29764491:0,411205,112570 +) +k1,802:27049025,29764491:223877 +k1,802:28159605,29764491:223878 +k1,802:31242818,29764491:223877 +k1,802:32583029,29764491:0 +) +(1,803:6630773,30605979:25952256,513147,134348 +g1,802:9111310,30605979 +g1,802:9961967,30605979 +(1,802:9961967,30605979:0,414482,115847 +r1,835:11375368,30605979:1413401,530329,115847 +k1,802:9961967,30605979:-1413401 +) +(1,802:9961967,30605979:1413401,414482,115847 +k1,802:9961967,30605979:3277 +h1,802:11372091,30605979:0,411205,112570 +) +g1,802:11748267,30605979 +g1,802:13414192,30605979 +g1,802:14087246,30605979 +(1,802:14087246,30605979:0,414482,115847 +r1,835:15148935,30605979:1061689,530329,115847 +k1,802:14087246,30605979:-1061689 +) +(1,802:14087246,30605979:1061689,414482,115847 +k1,802:14087246,30605979:3277 +h1,802:15145658,30605979:0,411205,112570 +) +g1,802:15348164,30605979 +g1,802:17757267,30605979 +(1,802:17757267,30605979:0,414482,115847 +r1,835:18467245,30605979:709978,530329,115847 +k1,802:17757267,30605979:-709978 +) +(1,802:17757267,30605979:709978,414482,115847 +k1,802:17757267,30605979:3277 +h1,802:18463968,30605979:0,411205,112570 +) +g1,802:18666474,30605979 +g1,802:19857263,30605979 +g1,802:22080899,30605979 +g1,802:23722575,30605979 +(1,802:23722575,30605979:0,414482,115847 +r1,835:25135976,30605979:1413401,530329,115847 +k1,802:23722575,30605979:-1413401 +) +(1,802:23722575,30605979:1413401,414482,115847 +k1,802:23722575,30605979:3277 +h1,802:25132699,30605979:0,411205,112570 +) +k1,803:32583029,30605979:7273383 +g1,803:32583029,30605979 +) +(1,805:6630773,31447467:25952256,513147,134348 +h1,804:6630773,31447467:983040,0,0 +k1,804:9027359,31447467:216859 +k1,804:10594260,31447467:216859 +k1,804:12460660,31447467:216859 +k1,804:13625170,31447467:216859 +(1,804:13625170,31447467:0,459977,115847 +r1,835:16445419,31447467:2820249,575824,115847 +k1,804:13625170,31447467:-2820249 +) +(1,804:13625170,31447467:2820249,459977,115847 +k1,804:13625170,31447467:3277 +h1,804:16442142,31447467:0,411205,112570 +) +k1,804:16662278,31447467:216859 +k1,804:17410634,31447467:216859 +k1,804:19829504,31447467:216860 +k1,804:20697791,31447467:216859 +k1,804:22199156,31447467:216859 +k1,804:23363666,31447467:216859 +(1,804:23363666,31447467:0,459977,115847 +r1,835:26535627,31447467:3171961,575824,115847 +k1,804:23363666,31447467:-3171961 +) +(1,804:23363666,31447467:3171961,459977,115847 +g1,804:24422079,31447467 +g1,804:25125503,31447467 +h1,804:26532350,31447467:0,411205,112570 +) +k1,804:26752486,31447467:216859 +k1,804:29044870,31447467:216859 +k1,804:30071099,31447467:216859 +k1,804:31786111,31447467:216859 +h1,804:32583029,31447467:0,0,0 +k1,804:32583029,31447467:0 +) +(1,805:6630773,32288955:25952256,513147,134348 +k1,804:7988788,32288955:285846 +k1,804:10646382,32288955:285846 +k1,804:11548267,32288955:285847 +k1,804:14217657,32288955:285846 +k1,804:15154931,32288955:285846 +k1,804:16459862,32288955:285846 +k1,804:19938622,32288955:285846 +k1,804:23178176,32288955:285846 +k1,804:24123315,32288955:285847 +k1,804:26891009,32288955:285846 +k1,804:28245747,32288955:285846 +k1,804:29550678,32288955:285846 +k1,804:32583029,32288955:0 +) +(1,805:6630773,33130443:25952256,505283,126483 +k1,804:10262997,33130443:192239 +k1,804:10986732,33130443:192238 +k1,804:14240158,33130443:192239 +k1,804:15045158,33130443:192238 +k1,804:16986553,33130443:192239 +k1,804:19793023,33130443:192239 +(1,804:19793023,33130443:0,435480,115847 +r1,835:20151289,33130443:358266,551327,115847 +k1,804:19793023,33130443:-358266 +) +(1,804:19793023,33130443:358266,435480,115847 +k1,804:19793023,33130443:3277 +h1,804:20148012,33130443:0,411205,112570 +) +k1,804:20343527,33130443:192238 +k1,804:23153929,33130443:192239 +k1,804:25231639,33130443:192239 +k1,804:27104220,33130443:192238 +k1,804:28428921,33130443:192239 +k1,804:29368925,33130443:192238 +k1,804:31966991,33130443:192239 +k1,804:32583029,33130443:0 +) +(1,805:6630773,33971931:25952256,505283,126483 +g1,804:7849087,33971931 +g1,804:10827043,33971931 +g1,804:13004149,33971931 +g1,804:13816140,33971931 +g1,804:15764525,33971931 +g1,804:18577985,33971931 +(1,804:18577985,33971931:0,435480,115847 +r1,835:18936251,33971931:358266,551327,115847 +k1,804:18577985,33971931:-358266 +) +(1,804:18577985,33971931:358266,435480,115847 +k1,804:18577985,33971931:3277 +h1,804:18932974,33971931:0,411205,112570 +) +g1,804:19309150,33971931 +g1,804:20699824,33971931 +g1,804:21623881,33971931 +k1,805:32583029,33971931:9976108 +g1,805:32583029,33971931 +) +(1,807:6630773,34813419:25952256,513147,134348 +h1,806:6630773,34813419:983040,0,0 +k1,806:8244175,34813419:160469 +k1,806:8936140,34813419:160468 +k1,806:12452052,34813419:160469 +k1,806:13263949,34813419:160469 +k1,806:14861622,34813419:160468 +k1,806:18424720,34813419:160469 +k1,806:19236616,34813419:160468 +(1,806:19236616,34813419:0,459977,115847 +r1,835:21353441,34813419:2116825,575824,115847 +k1,806:19236616,34813419:-2116825 +) +(1,806:19236616,34813419:2116825,459977,115847 +k1,806:19236616,34813419:3277 +h1,806:21350164,34813419:0,411205,112570 +) +k1,806:21513910,34813419:160469 +k1,806:22435907,34813419:160469 +k1,806:25384277,34813419:160468 +k1,806:26498295,34813419:160469 +k1,806:27938682,34813419:160469 +k1,806:28455010,34813419:160468 +k1,806:29921612,34813419:160469 +k1,806:32583029,34813419:0 +) +(1,807:6630773,35654907:25952256,513147,134348 +g1,806:8223953,35654907 +g1,806:10581938,35654907 +g1,806:14183796,35654907 +g1,806:15034453,35654907 +g1,806:17243671,35654907 +g1,806:18461985,35654907 +g1,806:19753699,35654907 +g1,806:20612220,35654907 +g1,806:21830534,35654907 +k1,807:32583029,35654907:7883329 +g1,807:32583029,35654907 +) +v1,809:6630773,36845373:0,393216,0 +(1,817:6630773,38526904:25952256,2074747,196608 +g1,817:6630773,38526904 +g1,817:6630773,38526904 +g1,817:6434165,38526904 +(1,817:6434165,38526904:0,2074747,196608 +r1,835:32779637,38526904:26345472,2271355,196608 +k1,817:6434165,38526904:-26345472 +) +(1,817:6434165,38526904:26345472,2074747,196608 +[1,817:6630773,38526904:25952256,1878139,0 +(1,811:6630773,37052991:25952256,404226,101187 +(1,810:6630773,37052991:0,0,0 +g1,810:6630773,37052991 +g1,810:6630773,37052991 +g1,810:6303093,37052991 +(1,810:6303093,37052991:0,0,0 +) +g1,810:6630773,37052991 +) +g1,811:9159939,37052991 +g1,811:10108377,37052991 +g1,811:12637544,37052991 +g1,811:14850564,37052991 +g1,811:16747439,37052991 +h1,811:18328168,37052991:0,0,0 +k1,811:32583029,37052991:14254861 +g1,811:32583029,37052991 +) +(1,812:6630773,37719169:25952256,410518,101187 +h1,812:6630773,37719169:0,0,0 +g1,812:10424522,37719169 +g1,812:11056814,37719169 +g1,812:13902126,37719169 +g1,812:15166709,37719169 +g1,812:15799001,37719169 +g1,812:16747439,37719169 +g1,812:17695876,37719169 +g1,812:18328168,37719169 +k1,812:18328168,37719169:0 +h1,812:19276606,37719169:0,0,0 +k1,812:32583029,37719169:13306423 +g1,812:32583029,37719169 +) +(1,816:6630773,38450883:25952256,404226,76021 +(1,814:6630773,38450883:0,0,0 +g1,814:6630773,38450883 +g1,814:6630773,38450883 +g1,814:6303093,38450883 +(1,814:6303093,38450883:0,0,0 +) +g1,814:6630773,38450883 +) +g1,816:7579210,38450883 +g1,816:8843793,38450883 +g1,816:9159939,38450883 +g1,816:9792231,38450883 +g1,816:10740668,38450883 +g1,816:11056814,38450883 +g1,816:11689106,38450883 +g1,816:12005252,38450883 +h1,816:12321398,38450883:0,0,0 +k1,816:32583030,38450883:20261632 +g1,816:32583030,38450883 +) +] +) +g1,817:32583029,38526904 +g1,817:6630773,38526904 +g1,817:6630773,38526904 +g1,817:32583029,38526904 +g1,817:32583029,38526904 +) +h1,817:6630773,38723512:0,0,0 +(1,821:6630773,40089288:25952256,505283,134348 +h1,820:6630773,40089288:983040,0,0 +k1,820:8439020,40089288:197372 +k1,820:11347616,40089288:197372 +k1,820:12564073,40089288:197372 +k1,820:14363145,40089288:197372 +k1,820:17337933,40089288:197372 +k1,820:19372935,40089288:197372 +k1,820:20101803,40089288:197371 +k1,820:20950603,40089288:197372 +k1,820:22623190,40089288:197372 +k1,820:23506724,40089288:197372 +k1,820:24474799,40089288:197372 +k1,820:27744499,40089288:197372 +k1,820:30147158,40089288:197372 +k1,820:30995958,40089288:197372 +(1,820:30995958,40089288:0,414482,115847 +r1,835:32409359,40089288:1413401,530329,115847 +k1,820:30995958,40089288:-1413401 +) +(1,820:30995958,40089288:1413401,414482,115847 +k1,820:30995958,40089288:3277 +h1,820:32406082,40089288:0,411205,112570 +) +k1,820:32583029,40089288:0 +) +(1,821:6630773,40930776:25952256,513147,126483 +k1,820:7865846,40930776:215988 +k1,820:9924706,40930776:215988 +k1,820:10799986,40930776:215988 +k1,820:11371833,40930776:215987 +k1,820:15341723,40930776:215988 +k1,820:18786670,40930776:215988 +k1,820:19812028,40930776:215988 +k1,820:21047101,40930776:215988 +k1,820:22232366,40930776:215988 +k1,820:23076189,40930776:215988 +k1,820:24311261,40930776:215987 +k1,820:25833382,40930776:215988 +k1,820:28710787,40930776:215988 +k1,820:29795127,40930776:215988 +k1,820:32583029,40930776:0 +) +(1,821:6630773,41772264:25952256,513147,126483 +g1,820:7849087,41772264 +g1,820:10753642,41772264 +g1,820:12963516,41772264 +g1,820:14110396,41772264 +g1,820:14665485,41772264 +g1,820:17016261,41772264 +g1,820:20520471,41772264 +g1,820:21371128,41772264 +g1,820:22854863,41772264 +g1,820:25832819,41772264 +g1,820:26793576,41772264 +g1,820:27407648,41772264 +g1,820:30302373,41772264 +(1,820:30302373,41772264:0,452978,115847 +r1,835:32067486,41772264:1765113,568825,115847 +k1,820:30302373,41772264:-1765113 +) +(1,820:30302373,41772264:1765113,452978,115847 +k1,820:30302373,41772264:3277 +h1,820:32064209,41772264:0,411205,112570 +) +k1,821:32583029,41772264:341873 +g1,821:32583029,41772264 +) +v1,823:6630773,42962730:0,393216,0 +(1,831:6630773,44628532:25952256,2059018,196608 +g1,831:6630773,44628532 +g1,831:6630773,44628532 +g1,831:6434165,44628532 +(1,831:6434165,44628532:0,2059018,196608 +r1,835:32779637,44628532:26345472,2255626,196608 +k1,831:6434165,44628532:-26345472 +) +(1,831:6434165,44628532:26345472,2059018,196608 +[1,831:6630773,44628532:25952256,1862410,0 +(1,825:6630773,43154619:25952256,388497,9436 +(1,824:6630773,43154619:0,0,0 +g1,824:6630773,43154619 +g1,824:6630773,43154619 +g1,824:6303093,43154619 +(1,824:6303093,43154619:0,0,0 +) +g1,824:6630773,43154619 +) +g1,825:8211502,43154619 +g1,825:9159940,43154619 +k1,825:9159940,43154619:0 +h1,825:10740669,43154619:0,0,0 +k1,825:32583029,43154619:21842360 +g1,825:32583029,43154619 +) +(1,826:6630773,43820797:25952256,410518,82312 +h1,826:6630773,43820797:0,0,0 +g1,826:10424521,43820797 +g1,826:11056813,43820797 +g1,826:12005251,43820797 +g1,826:14218272,43820797 +h1,826:15799000,43820797:0,0,0 +k1,826:32583028,43820797:16784028 +g1,826:32583028,43820797 +) +(1,830:6630773,44552511:25952256,404226,76021 +(1,828:6630773,44552511:0,0,0 +g1,828:6630773,44552511 +g1,828:6630773,44552511 +g1,828:6303093,44552511 +(1,828:6303093,44552511:0,0,0 +) +g1,828:6630773,44552511 +) +g1,830:7579210,44552511 +g1,830:8843793,44552511 +g1,830:9476085,44552511 +g1,830:10108377,44552511 +g1,830:10740669,44552511 +g1,830:11372961,44552511 +g1,830:12005253,44552511 +g1,830:12637545,44552511 +h1,830:12953691,44552511:0,0,0 +k1,830:32583029,44552511:19629338 +g1,830:32583029,44552511 +) +] +) +g1,831:32583029,44628532 +g1,831:6630773,44628532 +g1,831:6630773,44628532 +g1,831:32583029,44628532 +g1,831:32583029,44628532 +) +h1,831:6630773,44825140:0,0,0 +] +(1,835:32583029,45706769:0,0,0 +g1,835:32583029,45706769 +) +) +] +(1,835:6630773,47279633:25952256,0,0 +h1,835:6630773,47279633:25952256,0,0 +) +] +(1,835:4262630,4025873:0,0,0 +[1,835:-473656,4025873:0,0,0 +(1,835:-473656,-710413:0,0,0 +(1,835:-473656,-710413:0,0,0 +g1,835:-473656,-710413 +) +g1,835:-473656,-710413 +) +] ) ] +!30986 +}21 +Input:336:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:337:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:338:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:339:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:340:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:341:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:342:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:343:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:344:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:345:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:346:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:347:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:348:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:349:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:350:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:351:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:352:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:353:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:354:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1740 +{22 +[1,906:4262630,47279633:28320399,43253760,0 +(1,906:4262630,4025873:0,0,0 +[1,906:-473656,4025873:0,0,0 +(1,906:-473656,-710413:0,0,0 +(1,906:-473656,-644877:0,0,0 +k1,906:-473656,-644877:-65536 ) -g1,18950:32583029,8567728 -g1,18950:6630773,8567728 -g1,18950:6630773,8567728 -g1,18950:32583029,8567728 -g1,18950:32583029,8567728 -) -h1,18950:6630773,8764336:0,0,0 -v1,18954:6630773,10638814:0,393216,0 -(1,18955:6630773,12923008:25952256,2677410,616038 -g1,18955:6630773,12923008 -(1,18955:6630773,12923008:25952256,2677410,616038 -(1,18955:6630773,13539046:25952256,3293448,0 -[1,18955:6630773,13539046:25952256,3293448,0 -(1,18955:6630773,13512832:25952256,3241020,0 -r1,19011:6656987,13512832:26214,3241020,0 -[1,18955:6656987,13512832:25899828,3241020,0 -(1,18955:6656987,12923008:25899828,2061372,0 -[1,18955:7246811,12923008:24720180,2061372,0 -(1,18955:7246811,11947172:24720180,1085536,298548 -(1,18954:7246811,11947172:0,1085536,298548 -r1,19011:8753226,11947172:1506415,1384084,298548 -k1,18954:7246811,11947172:-1506415 -) -(1,18954:7246811,11947172:1506415,1085536,298548 -) -k1,18954:8970235,11947172:217009 -k1,18954:10229265,11947172:217008 -k1,18954:13962281,11947172:217009 -k1,18954:16569370,11947172:216991 -k1,18954:18099721,11947172:217009 -k1,18954:20497112,11947172:217008 -k1,18954:21461887,11947172:217009 -k1,18954:25574356,11947172:217009 -k1,18954:26407403,11947172:217009 -k1,18954:28646197,11947172:217008 -k1,18954:30819456,11947172:217009 -k1,18955:31966991,11947172:0 -) -(1,18955:7246811,12788660:24720180,505283,134348 -g1,18954:8693190,12788660 -(1,18954:8693190,12788660:0,452978,115847 -r1,19011:12568574,12788660:3875384,568825,115847 -k1,18954:8693190,12788660:-3875384 -) -(1,18954:8693190,12788660:3875384,452978,115847 -g1,18954:10455026,12788660 -g1,18954:11158450,12788660 -h1,18954:12565297,12788660:0,411205,112570 -) -g1,18954:12941473,12788660 -g1,18954:15026173,12788660 -g1,18954:15756899,12788660 -g1,18954:18668663,12788660 -g1,18954:20754018,12788660 -k1,18955:31966991,12788660:7099279 -g1,18955:31966991,12788660 -) -] +(1,906:-473656,4736287:0,0,0 +k1,906:-473656,4736287:5209943 ) -] -r1,19011:32583029,13512832:26214,3241020,0 +g1,906:-473656,-710413 ) ] ) +[1,906:6630773,47279633:25952256,43253760,0 +[1,906:6630773,4812305:25952256,786432,0 +(1,906:6630773,4812305:25952256,513147,126483 +(1,906:6630773,4812305:25952256,513147,126483 +g1,906:3078558,4812305 +[1,906:3078558,4812305:0,0,0 +(1,906:3078558,2439708:0,1703936,0 +k1,906:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,906:2537886,2439708:1179648,16384,0 ) -g1,18955:32583029,12923008 -) -h1,18955:6630773,13539046:0,0,0 -(1,18958:6630773,16863109:25952256,32768,229376 -(1,18958:6630773,16863109:0,32768,229376 -(1,18958:6630773,16863109:5505024,32768,229376 -r1,19011:12135797,16863109:5505024,262144,229376 -) -k1,18958:6630773,16863109:-5505024 -) -(1,18958:6630773,16863109:25952256,32768,0 -r1,19011:32583029,16863109:25952256,32768,0 -) -) -(1,18958:6630773,18467437:25952256,615776,151780 -(1,18958:6630773,18467437:2464678,582746,14155 -g1,18958:6630773,18467437 -g1,18958:9095451,18467437 -) -g1,18958:11145680,18467437 -g1,18958:15755745,18467437 -g1,18958:17937308,18467437 -g1,18958:21510069,18467437 -k1,18958:32583029,18467437:8066430 -g1,18958:32583029,18467437 -) -(1,18962:6630773,19702141:25952256,505283,134348 -k1,18961:10159805,19702141:226673 -k1,18961:12872258,19702141:226672 -k1,18961:14488294,19702141:226673 -k1,18961:18223764,19702141:226672 -k1,18961:20788106,19702141:226673 -k1,18961:22869447,19702141:226672 -k1,18961:23905490,19702141:226673 -k1,18961:29602452,19702141:226672 -k1,18961:32583029,19702141:0 -) -(1,18962:6630773,20543629:25952256,513147,134348 -k1,18961:12389366,20543629:153299 -k1,18961:13998829,20543629:153253 -k1,18961:16663467,20543629:153298 -k1,18961:18291981,20543629:153299 -k1,18961:20734452,20543629:153298 -k1,18961:21777730,20543629:153299 -k1,18961:25021707,20543629:153299 -k1,18961:26459511,20543629:153298 -k1,18961:27717092,20543629:153299 -k1,18961:28618156,20543629:153298 -k1,18961:31195632,20543629:153299 -k1,18961:32583029,20543629:0 -) -(1,18962:6630773,21385117:25952256,505283,134348 -k1,18961:7158883,21385117:172250 -k1,18961:9946676,21385117:172251 -k1,18961:13625102,21385117:172250 -k1,18961:14448780,21385117:172250 -k1,18961:17055038,21385117:172251 -k1,18961:19083268,21385117:172250 -k1,18961:22090605,21385117:172250 -k1,18961:22945741,21385117:172251 -k1,18961:25234149,21385117:172250 -k1,18961:26969433,21385117:172250 -k1,18961:29746740,21385117:172251 -k1,18961:31773659,21385117:172250 -k1,18961:32583029,21385117:0 -) -(1,18962:6630773,22226605:25952256,513147,126483 -g1,18961:8189219,22226605 -g1,18961:11120644,22226605 -g1,18961:12002758,22226605 -g1,18961:12818025,22226605 -g1,18961:14650411,22226605 -g1,18961:17030023,22226605 -g1,18961:18220812,22226605 -g1,18961:21763688,22226605 -k1,18962:32583029,22226605:9132444 -g1,18962:32583029,22226605 -) -(1,18963:6630773,24317865:25952256,555811,147783 -(1,18963:6630773,24317865:2899444,534184,12975 -g1,18963:6630773,24317865 -g1,18963:9530217,24317865 -) -k1,18963:32583028,24317865:19905380 -g1,18963:32583028,24317865 -) -(1,18969:6630773,25552569:25952256,513147,134348 -k1,18968:7782077,25552569:197755 -k1,18968:9259750,25552569:197755 -k1,18968:10855388,25552569:197755 -k1,18968:11409003,25552569:197755 -k1,18968:13731435,25552569:197755 -k1,18968:16590607,25552569:197755 -k1,18968:18523755,25552569:197755 -k1,18968:19077370,25552569:197755 -k1,18968:21677675,25552569:197755 -k1,18968:23443051,25552569:197755 -k1,18968:24659891,25552569:197755 -k1,18968:28028933,25552569:197755 -$1,18968:28236027,25552569 -k1,18968:29816755,25552569:0 -k1,18968:30211937,25552569:0 -k1,18968:30607119,25552569:0 -k1,18968:31002301,25552569:0 -k1,18968:32187847,25552569:0 -k1,18969:32583029,25552569:0 -) -(1,18969:6630773,26394057:25952256,513147,134348 -k1,18968:10187411,26394057:0 -k1,18968:10582593,26394057:0 -$1,18968:12163321,26394057 -k1,18968:12556734,26394057:186319 -k1,18968:14751076,26394057:186319 -k1,18968:16672788,26394057:186319 -k1,18968:17214967,26394057:186319 -k1,18968:20160351,26394057:186318 -k1,18968:21576781,26394057:186319 -k1,18968:24286236,26394057:186319 -k1,18968:26706677,26394057:186319 -k1,18968:27846545,26394057:186319 -k1,18968:30466871,26394057:186319 -k1,18968:32583029,26394057:0 -) -(1,18969:6630773,27235545:25952256,513147,7863 -g1,18968:8219365,27235545 -g1,18968:9986215,27235545 -g1,18968:10541304,27235545 -g1,18968:14474119,27235545 -k1,18969:32583029,27235545:15532690 -g1,18969:32583029,27235545 -) -v1,18971:6630773,28593528:0,393216,0 -(1,18972:6630773,31648155:25952256,3447843,616038 -g1,18972:6630773,31648155 -(1,18972:6630773,31648155:25952256,3447843,616038 -(1,18972:6630773,32264193:25952256,4063881,0 -[1,18972:6630773,32264193:25952256,4063881,0 -(1,18972:6630773,32237979:25952256,4011453,0 -r1,19011:6656987,32237979:26214,4011453,0 -[1,18972:6656987,32237979:25899828,4011453,0 -(1,18972:6656987,31648155:25899828,2831805,0 -[1,18972:7246811,31648155:24720180,2831805,0 -(1,18972:7246811,29838696:24720180,1022346,134348 -k1,18971:8773397,29838696:271073 -k1,18971:10425313,29838696:271072 -k1,18971:13357803,29838696:271073 -k1,18971:15489442,29838696:271072 -k1,18971:17942209,29838696:271073 -k1,18971:19232366,29838696:271072 -k1,18971:23777697,29838696:271073 -k1,18971:24708061,29838696:271072 -k1,18971:25998219,29838696:271073 -k1,18971:29564441,29838696:271072 -k1,18971:31966991,29838696:0 -) -(1,18972:7246811,30680184:24720180,513147,134348 -k1,18971:11212504,30680184:142978 -k1,18971:12900820,30680184:142977 -k1,18971:17106375,30680184:142978 -k1,18971:20414742,30680184:142978 -k1,18971:23538296,30680184:142977 -k1,18971:27955532,30680184:142978 -k1,18971:31966991,30680184:0 -) -(1,18972:7246811,31521672:24720180,505283,126483 -g1,18971:8578502,31521672 -g1,18971:9525497,31521672 -g1,18971:12575542,31521672 -k1,18972:31966991,31521672:17239902 -g1,18972:31966991,31521672 -) -] +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,906:3078558,1915420:16384,1179648,0 ) -] -r1,19011:32583029,32237979:26214,4011453,0 +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) ] ) ) -g1,18972:32583029,31648155 -) -h1,18972:6630773,32264193:0,0,0 -(1,18975:6630773,33622177:25952256,513147,134348 -h1,18974:6630773,33622177:983040,0,0 -k1,18974:9273441,33622177:171305 -k1,18974:10313099,33622177:171306 -k1,18974:11576889,33622177:171305 -k1,18974:14443690,33622177:171305 -(1,18974:14443690,33622177:0,459977,115847 -r1,19011:17967362,33622177:3523672,575824,115847 -k1,18974:14443690,33622177:-3523672 -) -(1,18974:14443690,33622177:3523672,459977,115847 -k1,18974:14443690,33622177:3277 -h1,18974:17964085,33622177:0,411205,112570 -) -k1,18974:18138668,33622177:171306 -k1,18974:19877594,33622177:171305 -k1,18974:22629052,33622177:171306 -k1,18974:25478157,33622177:171305 -k1,18974:26300890,33622177:171305 -k1,18974:28906203,33622177:171306 -k1,18974:31193666,33622177:171305 -k1,18974:32583029,33622177:0 -) -(1,18975:6630773,34463665:25952256,513147,7863 -g1,18974:8397623,34463665 -g1,18974:9753562,34463665 -k1,18975:32583028,34463665:20550124 -g1,18975:32583028,34463665 -) -v1,18977:6630773,35646338:0,393216,0 -(1,18985:6630773,38600980:25952256,3347858,196608 -g1,18985:6630773,38600980 -g1,18985:6630773,38600980 -g1,18985:6434165,38600980 -(1,18985:6434165,38600980:0,3347858,196608 -r1,19011:32779637,38600980:26345472,3544466,196608 -k1,18985:6434165,38600980:-26345472 -) -(1,18985:6434165,38600980:26345472,3347858,196608 -[1,18985:6630773,38600980:25952256,3151250,0 -(1,18979:6630773,35853956:25952256,404226,101187 -(1,18978:6630773,35853956:0,0,0 -g1,18978:6630773,35853956 -g1,18978:6630773,35853956 -g1,18978:6303093,35853956 -(1,18978:6303093,35853956:0,0,0 -) -g1,18978:6630773,35853956 -) -g1,18979:9159939,35853956 -g1,18979:10108377,35853956 -h1,18979:17695873,35853956:0,0,0 -k1,18979:32583029,35853956:14887156 -g1,18979:32583029,35853956 -) -(1,18980:6630773,36520134:25952256,410518,9436 -h1,18980:6630773,36520134:0,0,0 -g1,18980:10108376,36520134 -k1,18980:10108376,36520134:0 -h1,18980:10740668,36520134:0,0,0 -k1,18980:32583028,36520134:21842360 -g1,18980:32583028,36520134 -) -(1,18981:6630773,37186312:25952256,410518,107478 -h1,18981:6630773,37186312:0,0,0 -g1,18981:6946919,37186312 -g1,18981:7263065,37186312 -g1,18981:7579211,37186312 -g1,18981:7895357,37186312 -g1,18981:15482853,37186312 -k1,18981:15482853,37186312:0 -h1,18981:25915660,37186312:0,0,0 -k1,18981:32583029,37186312:6667369 -g1,18981:32583029,37186312 -) -(1,18982:6630773,37852490:25952256,410518,101187 -h1,18982:6630773,37852490:0,0,0 -g1,18982:6946919,37852490 -g1,18982:7263065,37852490 -g1,18982:7579211,37852490 -g1,18982:7895357,37852490 -g1,18982:8211503,37852490 -g1,18982:8527649,37852490 -g1,18982:8843795,37852490 -g1,18982:9159941,37852490 -g1,18982:9476087,37852490 -g1,18982:9792233,37852490 -g1,18982:10108379,37852490 -g1,18982:10424525,37852490 -g1,18982:10740671,37852490 -g1,18982:11056817,37852490 -g1,18982:11372963,37852490 -g1,18982:11689109,37852490 -g1,18982:12005255,37852490 -g1,18982:12321401,37852490 -g1,18982:12637547,37852490 -g1,18982:13902130,37852490 -g1,18982:14534422,37852490 -g1,18982:16115151,37852490 -g1,18982:18644317,37852490 -g1,18982:19276609,37852490 -h1,18982:20857338,37852490:0,0,0 -k1,18982:32583029,37852490:11725691 -g1,18982:32583029,37852490 -) -(1,18983:6630773,38518668:25952256,410518,82312 -h1,18983:6630773,38518668:0,0,0 -g1,18983:11689104,38518668 -g1,18983:14850561,38518668 -g1,18983:15482853,38518668 -h1,18983:16115145,38518668:0,0,0 -k1,18983:32583029,38518668:16467884 -g1,18983:32583029,38518668 ) ] +[1,906:3078558,4812305:0,0,0 +(1,906:3078558,2439708:0,1703936,0 +g1,906:29030814,2439708 +g1,906:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,906:36151628,1915420:16384,1179648,0 ) -g1,18985:32583029,38600980 -g1,18985:6630773,38600980 -g1,18985:6630773,38600980 -g1,18985:32583029,38600980 -g1,18985:32583029,38600980 -) -h1,18985:6630773,38797588:0,0,0 -(1,18989:6630773,40155571:25952256,513147,134348 -h1,18988:6630773,40155571:983040,0,0 -k1,18988:8985699,40155571:175199 -k1,18988:12426558,40155571:175200 -k1,18988:14513442,40155571:175199 -k1,18988:15880087,40155571:175200 -k1,18988:19252132,40155571:175199 -k1,18988:21437976,40155571:175199 -k1,18988:22560827,40155571:175200 -k1,18988:24187648,40155571:175199 -k1,18988:26701173,40155571:175200 -k1,18988:29303170,40155571:175199 -k1,18988:31008636,40155571:175200 -k1,18988:31835263,40155571:175199 -k1,18988:32583029,40155571:0 -) -(1,18989:6630773,40997059:25952256,513147,134348 -k1,18988:8266084,40997059:221044 -k1,18988:10054748,40997059:221043 -k1,18988:10631652,40997059:221044 -k1,18988:12725714,40997059:221043 -k1,18988:15098305,40997059:221044 -k1,18988:16272897,40997059:221043 -k1,18988:17309209,40997059:221044 -k1,18988:18733493,40997059:221043 -k1,18988:19716065,40997059:221044 -k1,18988:22676513,40997059:221043 -k1,18988:24291508,40997059:221044 -k1,18988:24868411,40997059:221043 -k1,18988:27159082,40997059:221044 -k1,18988:29358002,40997059:221043 -k1,18988:32583029,40997059:0 -) -(1,18989:6630773,41838547:25952256,513147,134348 -k1,18988:8009322,41838547:181862 -k1,18988:9580548,41838547:181863 -k1,18988:12541137,41838547:181862 -k1,18988:13254496,41838547:181862 -k1,18988:14052396,41838547:181862 -k1,18988:15622967,41838547:181863 -k1,18988:17546121,41838547:181862 -k1,18988:19121934,41838547:181862 -k1,18988:21969802,41838547:181863 -k1,18988:24219980,41838547:181862 -k1,18988:25593287,41838547:181862 -k1,18988:27393233,41838547:181862 -k1,18988:28860912,41838547:181863 -k1,18988:31821501,41838547:181862 -k1,18988:32583029,41838547:0 -) -(1,18989:6630773,42680035:25952256,505283,102891 -g1,18988:7849087,42680035 -g1,18988:10624536,42680035 -g1,18988:11509927,42680035 -g1,18988:12987763,42680035 -g1,18988:13873154,42680035 -g1,18988:15091468,42680035 -k1,18989:32583029,42680035:15892483 -g1,18989:32583029,42680035 -) -v1,18991:6630773,43862708:0,393216,0 -(1,19011:6630773,45510161:25952256,2040669,196608 -g1,19011:6630773,45510161 -g1,19011:6630773,45510161 -g1,19011:6434165,45510161 -(1,19011:6434165,45510161:0,2040669,196608 -r1,19011:32779637,45510161:26345472,2237277,196608 -k1,19011:6434165,45510161:-26345472 -) -(1,19011:6434165,45510161:26345472,2040669,196608 -[1,19011:6630773,45510161:25952256,1844061,0 -(1,18993:6630773,44076618:25952256,410518,101187 -(1,18992:6630773,44076618:0,0,0 -g1,18992:6630773,44076618 -g1,18992:6630773,44076618 -g1,18992:6303093,44076618 -(1,18992:6303093,44076618:0,0,0 -) -g1,18992:6630773,44076618 -) -k1,18993:6630773,44076618:0 -g1,18993:20857328,44076618 -g1,18993:21805765,44076618 -g1,18993:27180242,44076618 -k1,18993:27180242,44076618:0 -h1,18993:28444824,44076618:0,0,0 -k1,18993:32583029,44076618:4138205 -g1,18993:32583029,44076618 -) -(1,18994:6630773,44742796:25952256,404226,76021 -h1,18994:6630773,44742796:0,0,0 -g1,18994:6946919,44742796 -g1,18994:7263065,44742796 -g1,18994:11056814,44742796 -g1,18994:11689106,44742796 -g1,18994:12637543,44742796 -k1,18994:12637543,44742796:0 -h1,18994:13902125,44742796:0,0,0 -k1,18994:32583029,44742796:18680904 -g1,18994:32583029,44742796 -) -(1,18995:6630773,45408974:25952256,404226,101187 -h1,18995:6630773,45408974:0,0,0 -g1,18995:6946919,45408974 -g1,18995:7263065,45408974 -g1,18995:14534415,45408974 -g1,18995:15166707,45408974 -k1,18995:15166707,45408974:0 -h1,18995:15798999,45408974:0,0,0 -k1,18995:32583029,45408974:16784030 -g1,18995:32583029,45408974 +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) ] ) -g1,19011:32583029,45510161 -g1,19011:6630773,45510161 -g1,19011:6630773,45510161 -g1,19011:32583029,45510161 -g1,19011:32583029,45510161 +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,906:37855564,2439708:1179648,16384,0 ) -] -(1,19011:32583029,45706769:0,0,0 -g1,19011:32583029,45706769 ) +k1,906:3078556,2439708:-34777008 ) ] -(1,19011:6630773,47279633:25952256,0,0 -h1,19011:6630773,47279633:25952256,0,0 +[1,906:3078558,4812305:0,0,0 +(1,906:3078558,49800853:0,16384,2228224 +k1,906:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,906:2537886,49800853:1179648,16384,0 ) -] -(1,19011:4262630,4025873:0,0,0 -[1,19011:-473656,4025873:0,0,0 -(1,19011:-473656,-710413:0,0,0 -(1,19011:-473656,-710413:0,0,0 -g1,19011:-473656,-710413 +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,906:3078558,51504789:16384,1179648,0 ) -g1,19011:-473656,-710413 +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) ] -) +) +) +) ] -!19978 -}370 -Input:2988:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!104 -{371 -[1,19074:4262630,47279633:28320399,43253760,0 -(1,19074:4262630,4025873:0,0,0 -[1,19074:-473656,4025873:0,0,0 -(1,19074:-473656,-710413:0,0,0 -(1,19074:-473656,-644877:0,0,0 -k1,19074:-473656,-644877:-65536 -) -(1,19074:-473656,4736287:0,0,0 -k1,19074:-473656,4736287:5209943 -) -g1,19074:-473656,-710413 +[1,906:3078558,4812305:0,0,0 +(1,906:3078558,49800853:0,16384,2228224 +g1,906:29030814,49800853 +g1,906:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,906:36151628,51504789:16384,1179648,0 +) +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 +) +] +) +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,906:37855564,49800853:1179648,16384,0 +) +) +k1,906:3078556,49800853:-34777008 +) +] +g1,906:6630773,4812305 +g1,906:6630773,4812305 +g1,906:9175536,4812305 +g1,906:9990803,4812305 +g1,906:13137841,4812305 +g1,906:14654344,4812305 +k1,906:31786112,4812305:17131768 +) +) +] +[1,906:6630773,45706769:25952256,40108032,0 +(1,906:6630773,45706769:25952256,40108032,0 +(1,906:6630773,45706769:0,0,0 +g1,906:6630773,45706769 +) +[1,906:6630773,45706769:25952256,40108032,0 +v1,835:6630773,6254097:0,393216,0 +(1,850:6630773,17021979:25952256,11161098,0 +g1,850:6630773,17021979 +g1,850:6303093,17021979 +r1,906:6401397,17021979:98304,11161098,0 +g1,850:6600626,17021979 +g1,850:6797234,17021979 +[1,850:6797234,17021979:25785795,11161098,0 +(1,836:6797234,7144863:25785795,1283982,196608 +(1,835:6797234,7144863:0,1283982,196608 +r1,906:8400153,7144863:1602919,1480590,196608 +k1,835:6797234,7144863:-1602919 +) +(1,835:6797234,7144863:1602919,1283982,196608 +) +k1,835:8625049,7144863:224896 +k1,835:10566988,7144863:224896 +k1,835:14018878,7144863:224897 +k1,835:17235493,7144863:224896 +k1,835:18111817,7144863:224896 +k1,835:19679546,7144863:224896 +k1,835:21472064,7144863:224897 +k1,835:23090911,7144863:224896 +k1,835:23671667,7144863:224896 +k1,835:25029681,7144863:224896 +k1,835:28379990,7144863:224897 +k1,835:30413680,7144863:224896 +k1,835:31657661,7144863:224896 +k1,836:32583029,7144863:0 +) +(1,836:6797234,7986351:25785795,505283,126483 +k1,835:9369085,7986351:292509 +k1,835:11530025,7986351:292509 +k1,835:13315444,7986351:292509 +k1,835:14778426,7986351:292509 +k1,835:18735708,7986351:292509 +k1,835:20325175,7986351:292509 +k1,835:23396410,7986351:292508 +k1,835:25699564,7986351:292509 +k1,835:26983633,7986351:292509 +k1,835:28824758,7986351:292509 +k1,835:30497455,7986351:292509 +k1,835:31955194,7986351:292509 +k1,835:32583029,7986351:0 +) +(1,836:6797234,8827839:25785795,505283,126483 +k1,835:9864537,8827839:227628 +k1,835:12021546,8827839:227629 +k1,835:13708005,8827839:227628 +k1,835:15266014,8827839:227628 +k1,835:18485361,8827839:227628 +k1,835:19364418,8827839:227629 +k1,835:20783491,8827839:227628 +k1,835:22713089,8827839:227628 +k1,835:25570677,8827839:227628 +k1,835:27669359,8827839:227629 +k1,835:28524822,8827839:227628 +k1,835:30454420,8827839:227628 +k1,835:32583029,8827839:0 +) +(1,836:6797234,9669327:25785795,513147,126483 +g1,835:8339296,9669327 +g1,835:9932476,9669327 +g1,835:11150790,9669327 +g1,835:12846206,9669327 +g1,835:14538345,9669327 +g1,835:15908047,9669327 +g1,835:17558243,9669327 +g1,835:21422245,9669327 +g1,835:22951855,9669327 +(1,835:22951855,9669327:0,459977,115847 +r1,906:25068680,9669327:2116825,575824,115847 +k1,835:22951855,9669327:-2116825 +) +(1,835:22951855,9669327:2116825,459977,115847 +k1,835:22951855,9669327:3277 +h1,835:25065403,9669327:0,411205,112570 +) +g1,835:25267909,9669327 +k1,836:32583029,9669327:5214691 +g1,836:32583029,9669327 +) +v1,838:6797234,10859793:0,393216,0 +(1,847:6797234,14483759:25785795,4017182,196608 +g1,847:6797234,14483759 +g1,847:6797234,14483759 +g1,847:6600626,14483759 +(1,847:6600626,14483759:0,4017182,196608 +r1,906:32779637,14483759:26179011,4213790,196608 +k1,847:6600625,14483759:-26179012 +) +(1,847:6600626,14483759:26179011,4017182,196608 +[1,847:6797234,14483759:25785795,3820574,0 +(1,840:6797234,11051682:25785795,388497,9436 +(1,839:6797234,11051682:0,0,0 +g1,839:6797234,11051682 +g1,839:6797234,11051682 +g1,839:6469554,11051682 +(1,839:6469554,11051682:0,0,0 +) +g1,839:6797234,11051682 +) +g1,840:7429526,11051682 +g1,840:8377964,11051682 +h1,840:9642547,11051682:0,0,0 +k1,840:32583029,11051682:22940482 +g1,840:32583029,11051682 +) +(1,841:6797234,11717860:25785795,410518,82312 +h1,841:6797234,11717860:0,0,0 +g1,841:9642545,11717860 +g1,841:10274837,11717860 +g1,841:11223275,11717860 +g1,841:12171713,11717860 +k1,841:12171713,11717860:0 +h1,841:13120151,11717860:0,0,0 +k1,841:32583029,11717860:19462878 +g1,841:32583029,11717860 +) +(1,842:6797234,12384038:25785795,410518,82312 +h1,842:6797234,12384038:0,0,0 +g1,842:9642545,12384038 +g1,842:10274837,12384038 +g1,842:11223275,12384038 +g1,842:11855567,12384038 +g1,842:12487859,12384038 +g1,842:13436297,12384038 +g1,842:14068589,12384038 +g1,842:14700881,12384038 +h1,842:15333173,12384038:0,0,0 +k1,842:32583029,12384038:17249856 +g1,842:32583029,12384038 +) +(1,843:6797234,13050216:25785795,410518,101187 +h1,843:6797234,13050216:0,0,0 +g1,843:10907128,13050216 +g1,843:11539420,13050216 +g1,843:12804004,13050216 +g1,843:13436296,13050216 +g1,843:14068588,13050216 +g1,843:15017026,13050216 +g1,843:15649318,13050216 +g1,843:16281610,13050216 +g1,843:17230048,13050216 +g1,843:17862340,13050216 +k1,843:17862340,13050216:41419 +h1,843:19800633,13050216:0,0,0 +k1,843:32583029,13050216:12782396 +g1,843:32583029,13050216 +) +(1,844:6797234,13716394:25785795,410518,107478 +h1,844:6797234,13716394:0,0,0 +g1,844:12804004,13716394 +g1,844:13436296,13716394 +g1,844:14068588,13716394 +g1,844:15017026,13716394 +g1,844:15649318,13716394 +g1,844:16281610,13716394 +g1,844:17230048,13716394 +g1,844:17862340,13716394 +g1,844:19443069,13716394 +g1,844:21023798,13716394 +k1,844:21023798,13716394:41419 +h1,844:22962091,13716394:0,0,0 +k1,844:32583029,13716394:9620938 +g1,844:32583029,13716394 +) +(1,845:6797234,14382572:25785795,410518,101187 +h1,845:6797234,14382572:0,0,0 +g1,845:10274837,14382572 +g1,845:10907129,14382572 +g1,845:11539421,14382572 +g1,845:12487859,14382572 +g1,845:13120151,14382572 +g1,845:13752443,14382572 +g1,845:14700881,14382572 +g1,845:15333173,14382572 +g1,845:16281610,14382572 +k1,845:16281610,14382572:39846 +h1,845:18850621,14382572:0,0,0 +k1,845:32583029,14382572:13732408 +g1,845:32583029,14382572 +) +] +) +g1,847:32583029,14483759 +g1,847:6797234,14483759 +g1,847:6797234,14483759 +g1,847:32583029,14483759 +g1,847:32583029,14483759 +) +h1,847:6797234,14680367:0,0,0 +(1,850:6797234,16046143:25785795,513147,134348 +h1,849:6797234,16046143:983040,0,0 +k1,849:9514538,16046143:182371 +k1,849:10162870,16046143:182371 +k1,849:11515713,16046143:182370 +k1,849:13228350,16046143:182371 +k1,849:14062149,16046143:182371 +k1,849:16525828,16046143:182371 +k1,849:18167030,16046143:182371 +k1,849:23004423,16046143:182371 +k1,849:23853949,16046143:182370 +(1,849:23853949,16046143:0,452978,122846 +r1,906:26322486,16046143:2468537,575824,122846 +k1,849:23853949,16046143:-2468537 +) +(1,849:23853949,16046143:2468537,452978,122846 +k1,849:23853949,16046143:3277 +h1,849:26319209,16046143:0,411205,112570 +) +k1,849:26504857,16046143:182371 +k1,849:28697873,16046143:182371 +k1,849:30071689,16046143:182371 +k1,849:32583029,16046143:0 +) +(1,850:6797234,16887631:25785795,505283,134348 +g1,849:9323646,16887631 +g1,849:10547858,16887631 +g1,849:13025774,16887631 +(1,849:13025774,16887631:661914,485622,0 +) +g1,849:13886917,16887631 +g1,849:14895516,16887631 +g1,849:16592898,16887631 +(1,849:16592898,16887631:661914,485622,0 +) +k1,850:32583029,16887631:15154547 +g1,850:32583029,16887631 +) +] +g1,850:32583029,17021979 +) +h1,850:6630773,17021979:0,0,0 +v1,853:6630773,18202979:0,393216,0 +(1,889:6630773,36773218:25952256,18963455,0 +g1,889:6630773,36773218 +g1,889:6303093,36773218 +r1,906:6401397,36773218:98304,18963455,0 +g1,889:6600626,36773218 +g1,889:6797234,36773218 +[1,889:6797234,36773218:25785795,18963455,0 +(1,854:6797234,18895299:25785795,1085536,298548 +(1,853:6797234,18895299:0,1085536,298548 +r1,906:8303649,18895299:1506415,1384084,298548 +k1,853:6797234,18895299:-1506415 +) +(1,853:6797234,18895299:1506415,1085536,298548 +) +k1,853:8467491,18895299:163842 +k1,853:9259167,18895299:163841 +k1,853:10442094,18895299:163842 +k1,853:11973016,18895299:163841 +k1,853:12804014,18895299:163842 +(1,853:12804014,18895299:0,459977,115847 +r1,906:15624263,18895299:2820249,575824,115847 +k1,853:12804014,18895299:-2820249 +) +(1,853:12804014,18895299:2820249,459977,115847 +k1,853:12804014,18895299:3277 +h1,853:15620986,18895299:0,411205,112570 +) +k1,853:15961774,18895299:163841 +k1,853:17144701,18895299:163842 +k1,853:19321808,18895299:163841 +k1,853:20144942,18895299:163842 +k1,853:21327868,18895299:163841 +k1,853:24270437,18895299:163842 +k1,853:26114621,18895299:163841 +k1,853:26809960,18895299:163842 +k1,853:30638574,18895299:163841 +k1,853:31563944,18895299:163842 +k1,853:32583029,18895299:0 +) +(1,854:6797234,19736787:25785795,513147,134348 +k1,853:9053336,19736787:242836 +k1,853:9955464,19736787:242836 +k1,853:11217385,19736787:242836 +k1,853:13529848,19736787:242836 +k1,853:15750561,19736787:242836 +k1,853:18198684,19736787:242836 +k1,853:19127682,19736787:242836 +k1,853:20141221,19736787:242836 +k1,853:23456385,19736787:242836 +k1,853:24350649,19736787:242836 +k1,853:25381883,19736787:242836 +k1,853:26930852,19736787:242836 +k1,853:29302297,19736787:242836 +k1,853:32583029,19736787:0 +) +(1,854:6797234,20578275:25785795,513147,126483 +k1,853:9343854,20578275:180770 +(1,853:9343854,20578275:0,414482,115847 +r1,906:10757255,20578275:1413401,530329,115847 +k1,853:9343854,20578275:-1413401 +) +(1,853:9343854,20578275:1413401,414482,115847 +k1,853:9343854,20578275:3277 +h1,853:10753978,20578275:0,411205,112570 +) +k1,853:11318789,20578275:180770 +k1,853:11987128,20578275:180751 +k1,853:14906648,20578275:180770 +k1,853:17591549,20578275:180770 +k1,853:18303816,20578275:180770 +k1,853:19136013,20578275:180769 +k1,853:20409268,20578275:180770 +k1,853:20945898,20578275:180770 +k1,853:24159019,20578275:180770 +k1,853:25624295,20578275:180770 +k1,853:28146010,20578275:180769 +k1,853:28682640,20578275:180770 +(1,853:28682640,20578275:0,452978,122846 +r1,906:31151177,20578275:2468537,575824,122846 +k1,853:28682640,20578275:-2468537 +) +(1,853:28682640,20578275:2468537,452978,122846 +k1,853:28682640,20578275:3277 +h1,853:31147900,20578275:0,411205,112570 +) +k1,853:31331947,20578275:180770 +k1,854:32583029,20578275:0 +) +(1,854:6797234,21419763:25785795,513147,134348 +k1,853:7947239,21419763:210219 +k1,853:8816750,21419763:210219 +k1,853:11040235,21419763:210219 +k1,853:12580836,21419763:210220 +k1,853:15852242,21419763:210219 +k1,853:17346967,21419763:210219 +k1,853:18015283,21419763:210219 +k1,853:19357964,21419763:210219 +k1,853:20315949,21419763:210219 +k1,853:23163338,21419763:210220 +k1,853:25903247,21419763:210219 +k1,853:29516095,21419763:210219 +k1,853:31931601,21419763:210219 +k1,853:32583029,21419763:0 +) +(1,854:6797234,22261251:25785795,513147,134348 +k1,853:7982652,22261251:166333 +k1,853:9850955,22261251:166333 +k1,853:12145897,22261251:166333 +k1,853:15923264,22261251:166333 +k1,853:18455447,22261251:166333 +(1,853:18455447,22261251:0,414482,115847 +r1,906:19517136,22261251:1061689,530329,115847 +k1,853:18455447,22261251:-1061689 +) +(1,853:18455447,22261251:1061689,414482,115847 +k1,853:18455447,22261251:3277 +h1,853:19513859,22261251:0,411205,112570 +) +k1,853:19683468,22261251:166332 +k1,853:21041246,22261251:166333 +(1,853:21041246,22261251:0,414482,115847 +r1,906:21751224,22261251:709978,530329,115847 +k1,853:21041246,22261251:-709978 +) +(1,853:21041246,22261251:709978,414482,115847 +k1,853:21041246,22261251:3277 +h1,853:21747947,22261251:0,411205,112570 +) +k1,853:22124651,22261251:166333 +k1,853:23282544,22261251:166333 +k1,853:25646955,22261251:166333 +k1,853:28747990,22261251:166333 +k1,853:29723693,22261251:166333 +k1,853:32583029,22261251:0 +) +(1,854:6797234,23102739:25785795,513147,134348 +k1,853:8104958,23102739:175262 +k1,853:9632883,23102739:175262 +k1,853:11644464,23102739:175262 +k1,853:14652847,23102739:175262 +k1,853:15444147,23102739:175262 +k1,853:15975269,23102739:175262 +k1,853:18929258,23102739:175262 +k1,853:20784863,23102739:175262 +k1,853:21619417,23102739:175262 +k1,853:23807945,23102739:175262 +k1,853:25313588,23102739:175262 +k1,853:26882801,23102739:175262 +k1,853:28077148,23102739:175262 +k1,853:31470228,23102739:175262 +k1,854:32583029,23102739:0 +) +(1,854:6797234,23944227:25785795,513147,134348 +k1,853:8928624,23944227:162033 +k1,853:9749950,23944227:162034 +k1,853:10931068,23944227:162033 +k1,853:13401279,23944227:162033 +k1,853:15768600,23944227:162034 +k1,853:16582061,23944227:162033 +(1,853:16582061,23944227:0,414482,115847 +r1,906:17643750,23944227:1061689,530329,115847 +k1,853:16582061,23944227:-1061689 +) +(1,853:16582061,23944227:1061689,414482,115847 +k1,853:16582061,23944227:3277 +h1,853:17640473,23944227:0,411205,112570 +) +k1,853:17805783,23944227:162033 +k1,853:19159262,23944227:162034 +(1,853:19159262,23944227:0,414482,115847 +r1,906:19869240,23944227:709978,530329,115847 +k1,853:19159262,23944227:-709978 +) +(1,853:19159262,23944227:709978,414482,115847 +k1,853:19159262,23944227:3277 +h1,853:19865963,23944227:0,411205,112570 +) +k1,853:20031273,23944227:162033 +k1,853:21931321,23944227:162033 +k1,853:25385884,23944227:162034 +k1,853:26445760,23944227:162033 +k1,853:27514156,23944227:162033 +k1,853:28879431,23944227:162034 +k1,853:29802992,23944227:162033 +k1,853:32583029,23944227:0 +) +(1,854:6797234,24785715:25785795,513147,134348 +k1,853:8736007,24785715:203380 +k1,853:11009014,24785715:203380 +k1,853:13520572,24785715:203380 +k1,853:14383243,24785715:203379 +k1,853:17348966,24785715:203380 +k1,853:20069584,24785715:203380 +k1,853:21526668,24785715:203380 +k1,853:22834330,24785715:203380 +k1,853:24526033,24785715:203380 +k1,853:26123363,24785715:203379 +k1,853:27345828,24785715:203380 +k1,853:30540927,24785715:203380 +k1,853:32583029,24785715:0 +) +(1,854:6797234,25627203:25785795,505283,134348 +g1,853:9355104,25627203 +g1,853:10935177,25627203 +g1,853:12304879,25627203 +g1,853:16168881,25627203 +g1,853:17665068,25627203 +g1,853:18883382,25627203 +g1,853:21861338,25627203 +g1,853:24071212,25627203 +g1,853:25262001,25627203 +g1,853:27009846,25627203 +g1,853:28589263,25627203 +k1,854:32583029,25627203:2828536 +g1,854:32583029,25627203 +) +v1,856:6797234,26817669:0,393216,0 +(1,887:6797234,36052322:25785795,9627869,196608 +g1,887:6797234,36052322 +g1,887:6797234,36052322 +g1,887:6600626,36052322 +(1,887:6600626,36052322:0,9627869,196608 +r1,906:32779637,36052322:26179011,9824477,196608 +k1,887:6600625,36052322:-26179012 +) +(1,887:6600626,36052322:26179011,9627869,196608 +[1,887:6797234,36052322:25785795,9431261,0 +(1,858:6797234,27031579:25785795,410518,82312 +(1,857:6797234,27031579:0,0,0 +g1,857:6797234,27031579 +g1,857:6797234,27031579 +g1,857:6469554,27031579 +(1,857:6469554,27031579:0,0,0 +) +g1,857:6797234,27031579 +) +k1,858:6797234,27031579:0 +g1,858:10907129,27031579 +g1,858:12487859,27031579 +k1,858:12487859,27031579:0 +h1,858:14384735,27031579:0,0,0 +k1,858:32583029,27031579:18198294 +g1,858:32583029,27031579 +) +(1,862:6797234,27763293:25785795,404226,76021 +(1,860:6797234,27763293:0,0,0 +g1,860:6797234,27763293 +g1,860:6797234,27763293 +g1,860:6469554,27763293 +(1,860:6469554,27763293:0,0,0 +) +g1,860:6797234,27763293 +) +g1,862:7745671,27763293 +g1,862:9010254,27763293 +h1,862:9326400,27763293:0,0,0 +k1,862:32583028,27763293:23256628 +g1,862:32583028,27763293 +) +(1,864:6797234,29084831:25785795,410518,82312 +(1,863:6797234,29084831:0,0,0 +g1,863:6797234,29084831 +g1,863:6797234,29084831 +g1,863:6469554,29084831 +(1,863:6469554,29084831:0,0,0 +) +g1,863:6797234,29084831 +) +k1,864:6797234,29084831:0 +g1,864:11223274,29084831 +g1,864:12804004,29084831 +k1,864:12804004,29084831:0 +h1,864:14700880,29084831:0,0,0 +k1,864:32583028,29084831:17882148 +g1,864:32583028,29084831 +) +(1,868:6797234,29816545:25785795,404226,76021 +(1,866:6797234,29816545:0,0,0 +g1,866:6797234,29816545 +g1,866:6797234,29816545 +g1,866:6469554,29816545 +(1,866:6469554,29816545:0,0,0 +) +g1,866:6797234,29816545 +) +g1,868:7745671,29816545 +g1,868:9010254,29816545 +k1,868:9010254,29816545:0 +h1,868:9642545,29816545:0,0,0 +k1,868:32583029,29816545:22940484 +g1,868:32583029,29816545 +) +(1,870:6797234,31138083:25785795,410518,82312 +(1,869:6797234,31138083:0,0,0 +g1,869:6797234,31138083 +g1,869:6797234,31138083 +g1,869:6469554,31138083 +(1,869:6469554,31138083:0,0,0 +) +g1,869:6797234,31138083 +) +k1,870:6797234,31138083:0 +g1,870:11539421,31138083 +g1,870:14068587,31138083 +g1,870:15649317,31138083 +k1,870:15649317,31138083:0 +h1,870:17546193,31138083:0,0,0 +k1,870:32583029,31138083:15036836 +g1,870:32583029,31138083 +) +(1,874:6797234,31869797:25785795,404226,76021 +(1,872:6797234,31869797:0,0,0 +g1,872:6797234,31869797 +g1,872:6797234,31869797 +g1,872:6469554,31869797 +(1,872:6469554,31869797:0,0,0 +) +g1,872:6797234,31869797 +) +g1,874:7745671,31869797 +g1,874:9010254,31869797 +g1,874:9326400,31869797 +g1,874:9958692,31869797 +k1,874:9958692,31869797:0 +h1,874:10590983,31869797:0,0,0 +k1,874:32583029,31869797:21992046 +g1,874:32583029,31869797 +) +(1,876:6797234,33191335:25785795,410518,82312 +(1,875:6797234,33191335:0,0,0 +g1,875:6797234,33191335 +g1,875:6797234,33191335 +g1,875:6469554,33191335 +(1,875:6469554,33191335:0,0,0 +) +g1,875:6797234,33191335 +) +k1,876:6797234,33191335:0 +g1,876:11855566,33191335 +g1,876:14068587,33191335 +g1,876:15649317,33191335 +k1,876:15649317,33191335:0 +h1,876:17546193,33191335:0,0,0 +k1,876:32583029,33191335:15036836 +g1,876:32583029,33191335 +) +(1,880:6797234,33923049:25785795,404226,76021 +(1,878:6797234,33923049:0,0,0 +g1,878:6797234,33923049 +g1,878:6797234,33923049 +g1,878:6469554,33923049 +(1,878:6469554,33923049:0,0,0 +) +g1,878:6797234,33923049 +) +g1,880:7745671,33923049 +g1,880:9010254,33923049 +g1,880:9958691,33923049 +g1,880:10274837,33923049 +h1,880:10590983,33923049:0,0,0 +k1,880:32583029,33923049:21992046 +g1,880:32583029,33923049 +) +(1,882:6797234,35244587:25785795,410518,82312 +(1,881:6797234,35244587:0,0,0 +g1,881:6797234,35244587 +g1,881:6797234,35244587 +g1,881:6469554,35244587 +(1,881:6469554,35244587:0,0,0 +) +g1,881:6797234,35244587 +) +k1,882:6797234,35244587:0 +g1,882:11855566,35244587 +g1,882:14068587,35244587 +g1,882:15649317,35244587 +h1,882:16281609,35244587:0,0,0 +k1,882:32583029,35244587:16301420 +g1,882:32583029,35244587 +) +(1,886:6797234,35976301:25785795,404226,76021 +(1,884:6797234,35976301:0,0,0 +g1,884:6797234,35976301 +g1,884:6797234,35976301 +g1,884:6469554,35976301 +(1,884:6469554,35976301:0,0,0 +) +g1,884:6797234,35976301 +) +g1,886:7745671,35976301 +g1,886:9010254,35976301 +g1,886:9642546,35976301 +h1,886:9958692,35976301:0,0,0 +k1,886:32583028,35976301:22624336 +g1,886:32583028,35976301 +) +] +) +g1,887:32583029,36052322 +g1,887:6797234,36052322 +g1,887:6797234,36052322 +g1,887:32583029,36052322 +g1,887:32583029,36052322 +) +h1,887:6797234,36248930:0,0,0 +] +g1,889:32583029,36773218 +) +h1,889:6630773,36773218:0,0,0 +v1,892:6630773,37954219:0,393216,0 +(1,906:6630773,45706769:25952256,8145766,0 +g1,906:6630773,45706769 +g1,906:6303093,45706769 +r1,906:6401397,45706769:98304,8145766,0 +g1,906:6600626,45706769 +g1,906:6797234,45706769 +[1,906:6797234,45706769:25785795,8145766,0 +(1,893:6797234,38844985:25785795,1283982,196608 +(1,892:6797234,38844985:0,1283982,196608 +r1,906:8400153,38844985:1602919,1480590,196608 +k1,892:6797234,38844985:-1602919 +) +(1,892:6797234,38844985:1602919,1283982,196608 +) +k1,892:8585663,38844985:185510 +k1,892:10644846,38844985:185509 +k1,892:12565749,38844985:185510 +(1,892:12565749,38844985:0,459977,115847 +r1,906:15385998,38844985:2820249,575824,115847 +k1,892:12565749,38844985:-2820249 +) +(1,892:12565749,38844985:2820249,459977,115847 +k1,892:12565749,38844985:3277 +h1,892:15382721,38844985:0,411205,112570 +) +k1,892:15745178,38844985:185510 +k1,892:16286547,38844985:185509 +k1,892:18345076,38844985:185510 +k1,892:21716946,38844985:185510 +k1,892:22553883,38844985:185509 +k1,892:25451273,38844985:185510 +k1,892:28452865,38844985:185510 +k1,892:30205995,38844985:185509 +k1,892:31410590,38844985:185510 +k1,892:32583029,38844985:0 +) +(1,893:6797234,39686473:25785795,505283,134348 +k1,892:9265407,39686473:159995 +(1,892:9265407,39686473:0,414482,115847 +r1,906:9623673,39686473:358266,530329,115847 +k1,892:9265407,39686473:-358266 +) +(1,892:9265407,39686473:358266,414482,115847 +k1,892:9265407,39686473:3277 +h1,892:9620396,39686473:0,411205,112570 +) +k1,892:9783667,39686473:159994 +k1,892:11135107,39686473:159995 +(1,892:11135107,39686473:0,452978,115847 +r1,906:11493373,39686473:358266,568825,115847 +k1,892:11135107,39686473:-358266 +) +(1,892:11135107,39686473:358266,452978,115847 +k1,892:11135107,39686473:3277 +h1,892:11490096,39686473:0,411205,112570 +) +k1,892:11653368,39686473:159995 +k1,892:13080829,39686473:159995 +k1,892:13596683,39686473:159994 +k1,892:15599550,39686473:159995 +k1,892:17737422,39686473:159995 +(1,892:17737422,39686473:0,452978,115847 +r1,906:18095688,39686473:358266,568825,115847 +k1,892:17737422,39686473:-358266 +) +(1,892:17737422,39686473:358266,452978,115847 +k1,892:17737422,39686473:3277 +h1,892:18092411,39686473:0,411205,112570 +) +k1,892:18429353,39686473:159995 +k1,892:20444016,39686473:159994 +k1,892:21413381,39686473:159995 +k1,892:24164014,39686473:159995 +k1,892:25343094,39686473:159995 +k1,892:30126653,39686473:159994 +k1,892:31966991,39686473:159995 +k1,892:32583029,39686473:0 +) +(1,893:6797234,40527961:25785795,505283,126483 +k1,892:8960686,40527961:185575 +(1,892:8960686,40527961:0,414482,115847 +r1,906:9318952,40527961:358266,530329,115847 +k1,892:8960686,40527961:-358266 +) +(1,892:8960686,40527961:358266,414482,115847 +k1,892:8960686,40527961:3277 +h1,892:9315675,40527961:0,411205,112570 +) +k1,892:9504527,40527961:185575 +k1,892:10221599,40527961:185575 +k1,892:11426259,40527961:185575 +k1,892:14586513,40527961:185575 +(1,892:14586513,40527961:0,452978,115847 +r1,906:15648202,40527961:1061689,568825,115847 +k1,892:14586513,40527961:-1061689 +) +(1,892:14586513,40527961:1061689,452978,115847 +k1,892:14586513,40527961:3277 +h1,892:15644925,40527961:0,411205,112570 +) +k1,892:15833777,40527961:185575 +k1,892:16702237,40527961:185575 +(1,892:16702237,40527961:0,452978,115847 +r1,906:17763926,40527961:1061689,568825,115847 +k1,892:16702237,40527961:-1061689 +) +(1,892:16702237,40527961:1061689,452978,115847 +k1,892:16702237,40527961:3277 +h1,892:17760649,40527961:0,411205,112570 +) +k1,892:18123171,40527961:185575 +k1,892:19920276,40527961:185575 +k1,892:21687890,40527961:185575 +k1,892:23851342,40527961:185575 +(1,892:23851342,40527961:0,452978,115847 +r1,906:24209608,40527961:358266,568825,115847 +k1,892:23851342,40527961:-358266 +) +(1,892:23851342,40527961:358266,452978,115847 +k1,892:23851342,40527961:3277 +h1,892:24206331,40527961:0,411205,112570 +) +k1,892:24395183,40527961:185575 +k1,892:25232186,40527961:185575 +k1,892:27133494,40527961:185575 +k1,892:28338154,40527961:185575 +k1,892:30366601,40527961:185575 +k1,893:32583029,40527961:0 +k1,893:32583029,40527961:0 +) +v1,895:6797234,41718427:0,393216,0 +(1,902:6797234,44010037:25785795,2684826,196608 +g1,902:6797234,44010037 +g1,902:6797234,44010037 +g1,902:6600626,44010037 +(1,902:6600626,44010037:0,2684826,196608 +r1,906:32779637,44010037:26179011,2881434,196608 +k1,902:6600625,44010037:-26179012 +) +(1,902:6600626,44010037:26179011,2684826,196608 +[1,902:6797234,44010037:25785795,2488218,0 +(1,897:6797234,41910316:25785795,388497,9436 +(1,896:6797234,41910316:0,0,0 +g1,896:6797234,41910316 +g1,896:6797234,41910316 +g1,896:6469554,41910316 +(1,896:6469554,41910316:0,0,0 +) +g1,896:6797234,41910316 +) +g1,897:7429526,41910316 +g1,897:8377964,41910316 +k1,897:8377964,41910316:0 +h1,897:10274839,41910316:0,0,0 +k1,897:32583029,41910316:22308190 +g1,897:32583029,41910316 +) +(1,898:6797234,42576494:25785795,404226,9436 +h1,898:6797234,42576494:0,0,0 +g1,898:7429526,42576494 +g1,898:8377964,42576494 +h1,898:9958693,42576494:0,0,0 +k1,898:32583029,42576494:22624336 +g1,898:32583029,42576494 +) +(1,899:6797234,43242672:25785795,404226,101187 +h1,899:6797234,43242672:0,0,0 +g1,899:7429526,43242672 +g1,899:8377964,43242672 +g1,899:11855568,43242672 +g1,899:13120152,43242672 +g1,899:15965464,43242672 +h1,899:16913901,43242672:0,0,0 +k1,899:32583029,43242672:15669128 +g1,899:32583029,43242672 +) +(1,900:6797234,43908850:25785795,404226,101187 +h1,900:6797234,43908850:0,0,0 +g1,900:7429526,43908850 +g1,900:9010255,43908850 +k1,900:9010255,43908850:1573 +h1,900:10276411,43908850:0,0,0 +k1,900:32583029,43908850:22306618 +g1,900:32583029,43908850 +) +] +) +g1,902:32583029,44010037 +g1,902:6797234,44010037 +g1,902:6797234,44010037 +g1,902:32583029,44010037 +g1,902:32583029,44010037 +) +h1,902:6797234,44206645:0,0,0 +(1,906:6797234,45572421:25785795,513147,134348 +h1,905:6797234,45572421:983040,0,0 +k1,905:8460256,45572421:202225 +k1,905:9832955,45572421:202226 +k1,905:10850448,45572421:202225 +k1,905:12118944,45572421:202225 +k1,905:15985943,45572421:202226 +k1,905:17518549,45572421:202225 +k1,905:18739860,45572421:202226 +k1,905:20596869,45572421:202225 +k1,905:23107272,45572421:202225 +k1,905:24301058,45572421:202226 +k1,905:26155446,45572421:202225 +k1,905:27040556,45572421:202225 +k1,905:28413255,45572421:202226 +k1,905:30786032,45572421:202225 +k1,905:32583029,45572421:0 +) +] +g1,906:32583029,45706769 +) +] +(1,906:32583029,45706769:0,0,0 +g1,906:32583029,45706769 +) +) +] +(1,906:6630773,47279633:25952256,0,0 +h1,906:6630773,47279633:25952256,0,0 +) +] +(1,906:4262630,4025873:0,0,0 +[1,906:-473656,4025873:0,0,0 +(1,906:-473656,-710413:0,0,0 +(1,906:-473656,-710413:0,0,0 +g1,906:-473656,-710413 +) +g1,906:-473656,-710413 +) +] +) +] +!27082 +}22 +Input:355:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:356:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:357:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:358:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:359:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:360:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:361:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:362:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!739 +{23 +[1,953:4262630,47279633:28320399,43253760,0 +(1,953:4262630,4025873:0,0,0 +[1,953:-473656,4025873:0,0,0 +(1,953:-473656,-710413:0,0,0 +(1,953:-473656,-644877:0,0,0 +k1,953:-473656,-644877:-65536 ) -] +(1,953:-473656,4736287:0,0,0 +k1,953:-473656,4736287:5209943 ) -[1,19074:6630773,47279633:25952256,43253760,0 -[1,19074:6630773,4812305:25952256,786432,0 -(1,19074:6630773,4812305:25952256,505283,126483 -(1,19074:6630773,4812305:25952256,505283,126483 -g1,19074:3078558,4812305 -[1,19074:3078558,4812305:0,0,0 -(1,19074:3078558,2439708:0,1703936,0 -k1,19074:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,19074:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,19074:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 +g1,953:-473656,-710413 ) ] ) +[1,953:6630773,47279633:25952256,43253760,0 +[1,953:6630773,4812305:25952256,786432,0 +(1,953:6630773,4812305:25952256,505283,134348 +(1,953:6630773,4812305:25952256,505283,134348 +g1,953:3078558,4812305 +[1,953:3078558,4812305:0,0,0 +(1,953:3078558,2439708:0,1703936,0 +k1,953:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,953:2537886,2439708:1179648,16384,0 ) +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,953:3078558,1915420:16384,1179648,0 ) -] -[1,19074:3078558,4812305:0,0,0 -(1,19074:3078558,2439708:0,1703936,0 -g1,19074:29030814,2439708 -g1,19074:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,19074:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) ] ) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,19074:37855564,2439708:1179648,16384,0 ) ) -k1,19074:3078556,2439708:-34777008 -) -] -[1,19074:3078558,4812305:0,0,0 -(1,19074:3078558,49800853:0,16384,2228224 -k1,19074:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,19074:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,19074:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 -) ] +[1,953:3078558,4812305:0,0,0 +(1,953:3078558,2439708:0,1703936,0 +g1,953:29030814,2439708 +g1,953:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,953:36151628,1915420:16384,1179648,0 ) -) +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) ] -[1,19074:3078558,4812305:0,0,0 -(1,19074:3078558,49800853:0,16384,2228224 -g1,19074:29030814,49800853 -g1,19074:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,19074:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 ) -] -) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,19074:37855564,49800853:1179648,16384,0 -) -) -k1,19074:3078556,49800853:-34777008 -) -] -g1,19074:6630773,4812305 -k1,19074:25146660,4812305:17320510 -g1,19074:26880087,4812305 -g1,19074:29193507,4812305 -g1,19074:30603186,4812305 +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,953:37855564,2439708:1179648,16384,0 ) ) -] -[1,19074:6630773,45706769:25952256,40108032,0 -(1,19074:6630773,45706769:25952256,40108032,0 -(1,19074:6630773,45706769:0,0,0 -g1,19074:6630773,45706769 -) -[1,19074:6630773,45706769:25952256,40108032,0 -v1,19011:6630773,6254097:0,393216,0 -(1,19011:6630773,15229507:25952256,9368626,196608 -g1,19011:6630773,15229507 -g1,19011:6630773,15229507 -g1,19011:6434165,15229507 -(1,19011:6434165,15229507:0,9368626,196608 -r1,19074:32779637,15229507:26345472,9565234,196608 -k1,19011:6434165,15229507:-26345472 -) -(1,19011:6434165,15229507:26345472,9368626,196608 -[1,19011:6630773,15229507:25952256,9172018,0 -(1,18996:6630773,6461715:25952256,404226,107478 -h1,18996:6630773,6461715:0,0,0 -g1,18996:6946919,6461715 -g1,18996:7263065,6461715 -g1,18996:7579211,6461715 -g1,18996:7895357,6461715 -g1,18996:8211503,6461715 -g1,18996:8527649,6461715 -g1,18996:8843795,6461715 -g1,18996:9159941,6461715 -g1,18996:9476087,6461715 -g1,18996:9792233,6461715 -g1,18996:10108379,6461715 -g1,18996:10424525,6461715 -g1,18996:10740671,6461715 -g1,18996:11056817,6461715 -g1,18996:11372963,6461715 -g1,18996:11689109,6461715 -g1,18996:12005255,6461715 -g1,18996:12321401,6461715 -g1,18996:12637547,6461715 -g1,18996:15482858,6461715 -g1,18996:16115150,6461715 -g1,18996:21173482,6461715 -g1,18996:23386502,6461715 -g1,18996:24018794,6461715 -g1,18996:28444834,6461715 -g1,18996:29393271,6461715 -g1,18996:30025563,6461715 -k1,18996:30025563,6461715:0 -h1,18996:32238583,6461715:0,0,0 -k1,18996:32583029,6461715:344446 -g1,18996:32583029,6461715 -) -(1,18997:6630773,7127893:25952256,404226,82312 -h1,18997:6630773,7127893:0,0,0 -g1,18997:6946919,7127893 -g1,18997:7263065,7127893 -g1,18997:7579211,7127893 -g1,18997:7895357,7127893 -g1,18997:8211503,7127893 -g1,18997:8527649,7127893 -g1,18997:8843795,7127893 -g1,18997:9159941,7127893 -g1,18997:9476087,7127893 -g1,18997:9792233,7127893 -g1,18997:10108379,7127893 -g1,18997:10424525,7127893 -g1,18997:10740671,7127893 -g1,18997:11056817,7127893 -g1,18997:11372963,7127893 -g1,18997:11689109,7127893 -g1,18997:12005255,7127893 -g1,18997:12321401,7127893 -g1,18997:12637547,7127893 -g1,18997:14534421,7127893 -g1,18997:15166713,7127893 -g1,18997:21489628,7127893 -g1,18997:23702648,7127893 -k1,18997:23702648,7127893:0 -h1,18997:26231813,7127893:0,0,0 -k1,18997:32583029,7127893:6351216 -g1,18997:32583029,7127893 -) -(1,18998:6630773,7794071:25952256,404226,82312 -h1,18998:6630773,7794071:0,0,0 -g1,18998:6946919,7794071 -g1,18998:7263065,7794071 -g1,18998:7579211,7794071 -g1,18998:7895357,7794071 -g1,18998:8211503,7794071 -g1,18998:8527649,7794071 -g1,18998:8843795,7794071 -g1,18998:9159941,7794071 -g1,18998:9476087,7794071 -g1,18998:9792233,7794071 -g1,18998:10108379,7794071 -g1,18998:10424525,7794071 -g1,18998:10740671,7794071 -g1,18998:11056817,7794071 -g1,18998:11372963,7794071 -g1,18998:11689109,7794071 -g1,18998:12005255,7794071 -g1,18998:12321401,7794071 -g1,18998:12637547,7794071 -g1,18998:14850567,7794071 -g1,18998:15482859,7794071 -g1,18998:22121919,7794071 -g1,18998:24018794,7794071 -k1,18998:24018794,7794071:0 -h1,18998:26547959,7794071:0,0,0 -k1,18998:32583029,7794071:6035070 -g1,18998:32583029,7794071 -) -(1,18999:6630773,8460249:25952256,410518,101187 -h1,18999:6630773,8460249:0,0,0 -g1,18999:6946919,8460249 -g1,18999:7263065,8460249 -g1,18999:7579211,8460249 -g1,18999:7895357,8460249 -g1,18999:8211503,8460249 -g1,18999:8527649,8460249 -g1,18999:8843795,8460249 -g1,18999:9159941,8460249 -g1,18999:9476087,8460249 -g1,18999:9792233,8460249 -g1,18999:10108379,8460249 -g1,18999:10424525,8460249 -g1,18999:10740671,8460249 -g1,18999:11056817,8460249 -g1,18999:11372963,8460249 -g1,18999:11689109,8460249 -g1,18999:12005255,8460249 -g1,18999:12321401,8460249 -g1,18999:12637547,8460249 -g1,18999:14534421,8460249 -g1,18999:15166713,8460249 -g1,18999:21805773,8460249 -g1,18999:24018793,8460249 -g1,18999:26547959,8460249 -g1,18999:27496397,8460249 -h1,18999:31922437,8460249:0,0,0 -k1,18999:32583029,8460249:660592 -g1,18999:32583029,8460249 -) -(1,19000:6630773,9126427:25952256,0,0 -h1,19000:6630773,9126427:0,0,0 -h1,19000:6630773,9126427:0,0,0 -k1,19000:32583029,9126427:25952256 -g1,19000:32583029,9126427 -) -(1,19001:6630773,9792605:25952256,410518,101187 -h1,19001:6630773,9792605:0,0,0 -g1,19001:20857328,9792605 -g1,19001:21805765,9792605 -g1,19001:26231805,9792605 -k1,19001:26231805,9792605:0 -h1,19001:27496387,9792605:0,0,0 -k1,19001:32583029,9792605:5086642 -g1,19001:32583029,9792605 -) -(1,19002:6630773,10458783:25952256,404226,76021 -h1,19002:6630773,10458783:0,0,0 -g1,19002:6946919,10458783 -g1,19002:7263065,10458783 -g1,19002:11056814,10458783 -g1,19002:11689106,10458783 -g1,19002:12637543,10458783 -k1,19002:12637543,10458783:0 -h1,19002:13902125,10458783:0,0,0 -k1,19002:32583029,10458783:18680904 -g1,19002:32583029,10458783 -) -(1,19003:6630773,11124961:25952256,404226,101187 -h1,19003:6630773,11124961:0,0,0 -g1,19003:6946919,11124961 -g1,19003:7263065,11124961 -g1,19003:14534415,11124961 -g1,19003:15166707,11124961 -k1,19003:15166707,11124961:0 -h1,19003:15798999,11124961:0,0,0 -k1,19003:32583029,11124961:16784030 -g1,19003:32583029,11124961 -) -(1,19004:6630773,11791139:25952256,404226,107478 -h1,19004:6630773,11791139:0,0,0 -g1,19004:6946919,11791139 -g1,19004:7263065,11791139 -g1,19004:7579211,11791139 -g1,19004:7895357,11791139 -g1,19004:8211503,11791139 -g1,19004:8527649,11791139 -g1,19004:8843795,11791139 -g1,19004:9159941,11791139 -g1,19004:9476087,11791139 -g1,19004:9792233,11791139 -g1,19004:10108379,11791139 -g1,19004:10424525,11791139 -g1,19004:10740671,11791139 -g1,19004:11056817,11791139 -g1,19004:11372963,11791139 -g1,19004:11689109,11791139 -g1,19004:12005255,11791139 -g1,19004:12321401,11791139 -g1,19004:12637547,11791139 -g1,19004:15482858,11791139 -g1,19004:16115150,11791139 -g1,19004:21173482,11791139 -g1,19004:23386502,11791139 -g1,19004:24018794,11791139 -g1,19004:28444834,11791139 -g1,19004:29393271,11791139 -g1,19004:30025563,11791139 -k1,19004:30025563,11791139:0 -h1,19004:32238583,11791139:0,0,0 -k1,19004:32583029,11791139:344446 -g1,19004:32583029,11791139 -) -(1,19005:6630773,12457317:25952256,404226,82312 -h1,19005:6630773,12457317:0,0,0 -g1,19005:6946919,12457317 -g1,19005:7263065,12457317 -g1,19005:7579211,12457317 -g1,19005:7895357,12457317 -g1,19005:8211503,12457317 -g1,19005:8527649,12457317 -g1,19005:8843795,12457317 -g1,19005:9159941,12457317 -g1,19005:9476087,12457317 -g1,19005:9792233,12457317 -g1,19005:10108379,12457317 -g1,19005:10424525,12457317 -g1,19005:10740671,12457317 -g1,19005:11056817,12457317 -g1,19005:11372963,12457317 -g1,19005:11689109,12457317 -g1,19005:12005255,12457317 -g1,19005:12321401,12457317 -g1,19005:12637547,12457317 -g1,19005:14850567,12457317 -g1,19005:15482859,12457317 -g1,19005:21805774,12457317 -g1,19005:24018794,12457317 -k1,19005:24018794,12457317:0 -h1,19005:26547959,12457317:0,0,0 -k1,19005:32583029,12457317:6035070 -g1,19005:32583029,12457317 -) -(1,19006:6630773,13123495:25952256,404226,82312 -h1,19006:6630773,13123495:0,0,0 -g1,19006:6946919,13123495 -g1,19006:7263065,13123495 -g1,19006:7579211,13123495 -g1,19006:7895357,13123495 -g1,19006:8211503,13123495 -g1,19006:8527649,13123495 -g1,19006:8843795,13123495 -g1,19006:9159941,13123495 -g1,19006:9476087,13123495 -g1,19006:9792233,13123495 -g1,19006:10108379,13123495 -g1,19006:10424525,13123495 -g1,19006:10740671,13123495 -g1,19006:11056817,13123495 -g1,19006:11372963,13123495 -g1,19006:11689109,13123495 -g1,19006:12005255,13123495 -g1,19006:12321401,13123495 -g1,19006:12637547,13123495 -g1,19006:15166713,13123495 -g1,19006:15799005,13123495 -g1,19006:22438065,13123495 -g1,19006:24334940,13123495 -k1,19006:24334940,13123495:0 -h1,19006:26864105,13123495:0,0,0 -k1,19006:32583029,13123495:5718924 -g1,19006:32583029,13123495 -) -(1,19007:6630773,13789673:25952256,410518,101187 -h1,19007:6630773,13789673:0,0,0 -g1,19007:6946919,13789673 -g1,19007:7263065,13789673 -g1,19007:7579211,13789673 -g1,19007:7895357,13789673 -g1,19007:8211503,13789673 -g1,19007:8527649,13789673 -g1,19007:8843795,13789673 -g1,19007:9159941,13789673 -g1,19007:9476087,13789673 -g1,19007:9792233,13789673 -g1,19007:10108379,13789673 -g1,19007:10424525,13789673 -g1,19007:10740671,13789673 -g1,19007:11056817,13789673 -g1,19007:11372963,13789673 -g1,19007:11689109,13789673 -g1,19007:12005255,13789673 -g1,19007:12321401,13789673 -g1,19007:12637547,13789673 -g1,19007:14850567,13789673 -g1,19007:15482859,13789673 -g1,19007:22121919,13789673 -g1,19007:24334939,13789673 -g1,19007:26864105,13789673 -g1,19007:27812543,13789673 -h1,19007:31290145,13789673:0,0,0 -k1,19007:32583029,13789673:1292884 -g1,19007:32583029,13789673 -) -(1,19008:6630773,14455851:25952256,0,0 -h1,19008:6630773,14455851:0,0,0 -h1,19008:6630773,14455851:0,0,0 -k1,19008:32583029,14455851:25952256 -g1,19008:32583029,14455851 -) -(1,19009:6630773,15122029:25952256,410518,107478 -h1,19009:6630773,15122029:0,0,0 -g1,19009:14850561,15122029 -h1,19009:18644309,15122029:0,0,0 -k1,19009:32583029,15122029:13938720 -g1,19009:32583029,15122029 +k1,953:3078556,2439708:-34777008 ) ] +[1,953:3078558,4812305:0,0,0 +(1,953:3078558,49800853:0,16384,2228224 +k1,953:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,953:2537886,49800853:1179648,16384,0 ) -g1,19011:32583029,15229507 -g1,19011:6630773,15229507 -g1,19011:6630773,15229507 -g1,19011:32583029,15229507 -g1,19011:32583029,15229507 -) -h1,19011:6630773,15426115:0,0,0 -v1,19015:6630773,17259877:0,393216,0 -(1,19016:6630773,22859887:25952256,5993226,616038 -g1,19016:6630773,22859887 -(1,19016:6630773,22859887:25952256,5993226,616038 -(1,19016:6630773,23475925:25952256,6609264,0 -[1,19016:6630773,23475925:25952256,6609264,0 -(1,19016:6630773,23449711:25952256,6556836,0 -r1,19074:6656987,23449711:26214,6556836,0 -[1,19016:6656987,23449711:25899828,6556836,0 -(1,19016:6656987,22859887:25899828,5377188,0 -[1,19016:7246811,22859887:24720180,5377188,0 -(1,19016:7246811,18644584:24720180,1161885,196608 -(1,19015:7246811,18644584:0,1161885,196608 -r1,19074:8794447,18644584:1547636,1358493,196608 -k1,19015:7246811,18644584:-1547636 -) -(1,19015:7246811,18644584:1547636,1161885,196608 -) -k1,19015:8972317,18644584:177870 -k1,19015:10695527,18644584:177871 -k1,19015:14168547,18644584:177870 -k1,19015:16054941,18644584:177870 -k1,19015:18965663,18644584:177871 -k1,19015:20618748,18644584:177870 -k1,19015:21152479,18644584:177871 -k1,19015:23637872,18644584:177870 -k1,19015:27362550,18644584:177870 -k1,19015:28731866,18644584:177871 -k1,19015:29928821,18644584:177870 -k1,19015:31966991,18644584:0 -) -(1,19016:7246811,19486072:24720180,513147,134348 -k1,19015:8886708,19486072:250534 -k1,19015:10241525,19486072:250535 -k1,19015:11777875,19486072:250534 -k1,19015:12776176,19486072:250535 -k1,19015:16922170,19486072:250534 -k1,19015:17858867,19486072:250535 -k1,19015:18465261,19486072:250534 -(1,19015:18465261,19486072:0,414482,115847 -r1,19074:19526950,19486072:1061689,530329,115847 -k1,19015:18465261,19486072:-1061689 -) -(1,19015:18465261,19486072:1061689,414482,115847 -k1,19015:18465261,19486072:3277 -h1,19015:19523673,19486072:0,411205,112570 -) -k1,19015:19777484,19486072:250534 -k1,19015:21011059,19486072:250535 -k1,19015:23820119,19486072:250534 -k1,19015:24426514,19486072:250535 -k1,19015:27299799,19486072:250534 -k1,19015:28233219,19486072:250535 -k1,19015:30563210,19486072:250534 -k1,19015:31966991,19486072:0 -) -(1,19016:7246811,20327560:24720180,505283,134348 -k1,19015:8247547,20327560:182847 -k1,19015:10505918,20327560:182846 -k1,19015:12717760,20327560:182847 -k1,19015:13358703,20327560:182846 -k1,19015:14073047,20327560:182847 -k1,19015:16885854,20327560:182847 -k1,19015:17720128,20327560:182846 -k1,19015:20190837,20327560:182847 -k1,19015:22012738,20327560:182846 -k1,19015:24754111,20327560:182847 -k1,19015:25956042,20327560:182846 -k1,19015:28007304,20327560:182831 -k1,19015:30149021,20327560:182846 -k1,19015:30947906,20327560:182847 -k1,19015:31966991,20327560:0 -) -(1,19016:7246811,21169048:24720180,505283,134348 -k1,19015:10125813,21169048:256251 -k1,19015:11064949,21169048:256251 -k1,19015:13400657,21169048:256251 -k1,19015:15390991,21169048:256251 -k1,19015:19732101,21169048:256251 -k1,19015:21007437,21169048:256251 -k1,19015:21678474,21169048:256194 -k1,19015:24514877,21169048:256251 -k1,19015:28089215,21169048:256251 -k1,19015:29449748,21169048:256251 -k1,19015:30453765,21169048:256251 -k1,19015:31966991,21169048:0 -) -(1,19016:7246811,22010536:24720180,513147,134348 -k1,19015:8096103,22010536:197864 -k1,19015:10581829,22010536:197864 -k1,19015:14074843,22010536:197864 -k1,19015:17005559,22010536:197865 -k1,19015:17964951,22010536:197864 -k1,19015:20231131,22010536:197864 -k1,19015:21088287,22010536:197864 -k1,19015:22305236,22010536:197864 -k1,19015:24667754,22010536:197864 -k1,19015:26966048,22010536:197865 -k1,19015:29086738,22010536:197864 -k1,19015:31315563,22010536:197864 -k1,19015:31966991,22010536:0 -) -(1,19016:7246811,22852024:24720180,505283,7863 -g1,19015:8954679,22852024 -k1,19016:31966991,22852024:21762540 -g1,19016:31966991,22852024 -) -] +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,953:3078558,51504789:16384,1179648,0 ) -] -r1,19074:32583029,23449711:26214,6556836,0 +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) ] ) ) -g1,19016:32583029,22859887 -) -h1,19016:6630773,23475925:0,0,0 -(1,19019:6630773,26779631:25952256,32768,229376 -(1,19019:6630773,26779631:0,32768,229376 -(1,19019:6630773,26779631:5505024,32768,229376 -r1,19074:12135797,26779631:5505024,262144,229376 -) -k1,19019:6630773,26779631:-5505024 -) -(1,19019:6630773,26779631:25952256,32768,0 -r1,19074:32583029,26779631:25952256,32768,0 -) -) -(1,19019:6630773,28383959:25952256,606339,14155 -(1,19019:6630773,28383959:2464678,582746,14155 -g1,19019:6630773,28383959 -g1,19019:9095451,28383959 -) -k1,19019:32583029,28383959:19475988 -g1,19019:32583029,28383959 -) -(1,19028:6630773,29618663:25952256,513147,134348 -k1,19027:8153628,29618663:251457 -k1,19027:9064376,29618663:251456 -k1,19027:10334918,29618663:251457 -k1,19027:14155465,29618663:251456 -k1,19027:15066214,29618663:251457 -k1,19027:17053064,29618663:251457 -k1,19027:20458112,29618663:251456 -k1,19027:21241066,29618663:251457 -k1,19027:22777029,29618663:251457 -k1,19027:25438899,29618663:251456 -k1,19027:26349648,29618663:251457 -k1,19027:28298486,29618663:251456 -k1,19027:29741388,29618663:251457 -k1,19027:32583029,29618663:0 -) -(1,19028:6630773,30460151:25952256,505283,134348 -k1,19027:7961250,30460151:226195 -k1,19027:8935210,30460151:226194 -k1,19027:12189824,30460151:226195 -k1,19027:13882714,30460151:226194 -k1,19027:17103249,30460151:226195 -k1,19027:19688084,30460151:226194 -k1,19027:20372376,30460151:226195 -k1,19027:23228530,30460151:226194 -k1,19027:24106153,30460151:226195 -k1,19027:25928804,30460151:226194 -k1,19027:26771037,30460151:226195 -k1,19027:27412047,30460151:226167 -k1,19027:29104938,30460151:226195 -k1,19027:31391584,30460151:226194 -k1,19027:32583029,30460151:0 -) -(1,19028:6630773,31301639:25952256,505283,134348 -k1,19027:9678746,31301639:227303 -k1,19027:11300000,31301639:227303 -k1,19027:13078540,31301639:227303 -k1,19027:14695206,31301639:227303 -k1,19027:16361024,31301639:227303 -k1,19027:17859725,31301639:227303 -k1,19027:20267411,31301639:227303 -k1,19027:23753819,31301639:227303 -k1,19027:25265628,31301639:227303 -k1,19027:25907746,31301639:227275 -k1,19027:28634592,31301639:227303 -k1,19027:30700180,31301639:227303 -k1,19027:32583029,31301639:0 -) -(1,19028:6630773,32143127:25952256,513147,134348 -k1,19027:9186200,32143127:265599 -k1,19027:10067838,32143127:265600 -k1,19027:12003294,32143127:265599 -k1,19027:13460339,32143127:265600 -k1,19027:18124715,32143127:265599 -k1,19027:21174284,32143127:265600 -k1,19027:24127514,32143127:265599 -k1,19027:27024385,32143127:265600 -k1,19027:29104676,32143127:265599 -k1,19027:30389361,32143127:265600 -k1,19027:31923737,32143127:265599 -k1,19027:32583029,32143127:0 -) -(1,19028:6630773,32984615:25952256,505283,134348 -k1,19027:8237622,32984615:217486 -k1,19027:9719953,32984615:217486 -k1,19027:11331389,32984615:217485 -k1,19027:13434346,32984615:217486 -k1,19027:14109929,32984615:217486 -k1,19027:14858912,32984615:217486 -k1,19027:17706358,32984615:217486 -k1,19027:18575271,32984615:217485 -k1,19027:20562884,32984615:217486 -k1,19027:23315303,32984615:217486 -k1,19027:25918299,32984615:217486 -k1,19027:28896160,32984615:217485 -k1,19027:30132731,32984615:217486 -k1,19027:31931601,32984615:217486 -k1,19027:32583029,32984615:0 -) -(1,19028:6630773,33826103:25952256,505283,134348 -k1,19027:8426928,33826103:199698 -k1,19027:10020576,33826103:199697 -k1,19027:11609637,33826103:199698 -k1,19027:12425373,33826103:199698 -k1,19027:15778662,33826103:199697 -k1,19027:17713753,33826103:199698 -k1,19027:18932535,33826103:199697 -k1,19027:20785706,33826103:199698 -k1,19027:22709001,33826103:199698 -k1,19027:23594860,33826103:199697 -k1,19027:25492596,33826103:199698 -k1,19027:27427687,33826103:199698 -k1,19027:29600017,33826103:199697 -k1,19027:31193666,33826103:199698 -k1,19027:32583029,33826103:0 -) -(1,19028:6630773,34667591:25952256,505283,134348 -k1,19027:8816000,34667591:147057 -k1,19027:9579094,34667591:147056 -k1,19027:12357422,34667591:147057 -k1,19027:14414801,34667591:147005 -k1,19027:15793934,34667591:147056 -k1,19027:18358614,34667591:147057 -h1,19027:18757073,34667591:0,0,0 -k1,19027:19284893,34667591:147056 -k1,19027:20812794,34667591:147057 -k1,19027:21491348,34667591:147057 -k1,19027:22409107,34667591:147056 -k1,19027:25765462,34667591:147057 -k1,19027:28396333,34667591:147056 -k1,19027:29615559,34667591:147057 -k1,19027:32583029,34667591:0 -) -(1,19028:6630773,35509079:25952256,513147,134348 -k1,19027:9232365,35509079:240985 -k1,19027:10124778,35509079:240985 -k1,19027:11113529,35509079:240985 -k1,19027:13720364,35509079:240985 -k1,19027:14980434,35509079:240985 -k1,19027:17047907,35509079:240985 -k1,19027:17948185,35509079:240986 -k1,19027:19392411,35509079:240985 -k1,19027:21389106,35509079:240985 -k1,19027:22583640,35509079:240985 -k1,19027:25254700,35509079:240985 -k1,19027:25851545,35509079:240985 -k1,19027:27225648,35509079:240985 -k1,19027:29591310,35509079:240985 -k1,19027:32583029,35509079:0 -) -(1,19028:6630773,36350567:25952256,513147,126483 -k1,19027:7507998,36350567:225797 -k1,19027:9394476,36350567:225796 -k1,19027:10639358,36350567:225797 -k1,19027:12219128,36350567:225796 -k1,19027:14396587,36350567:225797 -k1,19027:15694552,36350567:225796 -k1,19027:19131613,36350567:225797 -k1,19027:21735711,36350567:225796 -k1,19027:24141891,36350567:225797 -k1,19027:26717808,36350567:225796 -k1,19027:27393182,36350567:225797 -k1,19027:28543036,36350567:225796 -k1,19027:30303031,36350567:225797 -k1,19028:32583029,36350567:0 -) -(1,19028:6630773,37192055:25952256,505283,95026 -g1,19027:9961312,37192055 -g1,19027:11351986,37192055 -g1,19027:15136690,37192055 -k1,19028:32583029,37192055:15471739 -g1,19028:32583029,37192055 -) -(1,19030:6630773,38033543:25952256,505283,134348 -h1,19029:6630773,38033543:983040,0,0 -k1,19029:8967282,38033543:156782 -k1,19029:12351057,38033543:156782 -k1,19029:14193426,38033543:156783 -k1,19029:17531326,38033543:156782 -k1,19029:18339536,38033543:156782 -k1,19029:20231711,38033543:156782 -k1,19029:22361127,38033543:156783 -k1,19029:24006232,38033543:156782 -k1,19029:25556965,38033543:156782 -k1,19029:26732832,38033543:156782 -k1,19029:28419881,38033543:156783 -k1,19029:29228091,38033543:156782 -k1,19029:32227169,38033543:156782 -k1,19029:32583029,38033543:0 -) -(1,19030:6630773,38875031:25952256,505283,134348 -k1,19029:10314272,38875031:177323 -k1,19029:11143024,38875031:177324 -k1,19029:11676207,38875031:177323 -k1,19029:13347751,38875031:177323 -k1,19029:14207959,38875031:177323 -k1,19029:16639722,38875031:177324 -k1,19029:19814006,38875031:177323 -k1,19029:20944878,38875031:177323 -k1,19029:22254663,38875031:177323 -k1,19029:23524472,38875031:177324 -k1,19029:24116616,38875031:177301 -k1,19029:26874091,38875031:177323 -k1,19029:29824898,38875031:177324 -k1,19029:30653649,38875031:177323 -k1,19029:32583029,38875031:0 -) -(1,19030:6630773,39716519:25952256,505283,134348 -k1,19029:7246374,39716519:259741 -k1,19029:9000336,39716519:259741 -k1,19029:12593238,39716519:259741 -k1,19029:14864279,39716519:259741 -k1,19029:18120981,39716519:259741 -k1,19029:20766232,39716519:259741 -k1,19029:24021624,39716519:259741 -k1,19029:27798027,39716519:259741 -k1,19029:29759738,39716519:259741 -k1,19029:32583029,39716519:0 -) -(1,19030:6630773,40558007:25952256,513147,134348 -k1,19029:9437263,40558007:230270 -k1,19029:10659092,40558007:230269 -k1,19029:12175178,40558007:230270 -k1,19029:15363088,40558007:230270 -k1,19029:16546907,40558007:230270 -k1,19029:17909638,40558007:230269 -k1,19029:19232393,40558007:230270 -k1,19029:24181255,40558007:230270 -k1,19029:25800888,40558007:230270 -k1,19029:27598778,40558007:230269 -k1,19029:31635378,40558007:230270 -k1,19029:32583029,40558007:0 -) -(1,19030:6630773,41399495:25952256,505283,126483 -g1,19029:8033243,41399495 -k1,19030:32583030,41399495:21714700 -g1,19030:32583030,41399495 -) -v1,19032:6630773,42561810:0,393216,0 -(1,19074:6630773,45510161:25952256,3341567,196608 -g1,19074:6630773,45510161 -g1,19074:6630773,45510161 -g1,19074:6434165,45510161 -(1,19074:6434165,45510161:0,3341567,196608 -r1,19074:32779637,45510161:26345472,3538175,196608 -k1,19074:6434165,45510161:-26345472 -) -(1,19074:6434165,45510161:26345472,3341567,196608 -[1,19074:6630773,45510161:25952256,3144959,0 -(1,19034:6630773,42769428:25952256,404226,101187 -(1,19033:6630773,42769428:0,0,0 -g1,19033:6630773,42769428 -g1,19033:6630773,42769428 -g1,19033:6303093,42769428 -(1,19033:6303093,42769428:0,0,0 -) -g1,19033:6630773,42769428 -) -k1,19034:6630773,42769428:0 -h1,19034:11056813,42769428:0,0,0 -k1,19034:32583029,42769428:21526216 -g1,19034:32583029,42769428 -) -(1,19035:6630773,43435606:25952256,404226,101187 -h1,19035:6630773,43435606:0,0,0 -g1,19035:7895356,43435606 -g1,19035:8843794,43435606 -g1,19035:19592746,43435606 -g1,19035:21805766,43435606 -g1,19035:22438058,43435606 -h1,19035:25915661,43435606:0,0,0 -k1,19035:32583029,43435606:6667368 -g1,19035:32583029,43435606 -) -(1,19036:6630773,44101784:25952256,404226,101187 -h1,19036:6630773,44101784:0,0,0 -g1,19036:10740668,44101784 -g1,19036:18012019,44101784 -k1,19036:18012019,44101784:0 -h1,19036:21173476,44101784:0,0,0 -k1,19036:32583029,44101784:11409553 -g1,19036:32583029,44101784 -) -(1,19037:6630773,44767962:25952256,369623,101187 -h1,19037:6630773,44767962:0,0,0 -g1,19037:6946919,44767962 -g1,19037:7263065,44767962 -g1,19037:7579211,44767962 -g1,19037:7895357,44767962 -g1,19037:8211503,44767962 -g1,19037:8527649,44767962 -g1,19037:8843795,44767962 -g1,19037:9159941,44767962 -g1,19037:12321398,44767962 -g1,19037:12953690,44767962 -k1,19037:12953690,44767962:0 -h1,19037:14850564,44767962:0,0,0 -k1,19037:32583028,44767962:17732464 -g1,19037:32583028,44767962 -) -(1,19038:6630773,45434140:25952256,404226,76021 -h1,19038:6630773,45434140:0,0,0 -g1,19038:6946919,45434140 -g1,19038:7263065,45434140 -g1,19038:7579211,45434140 -g1,19038:7895357,45434140 -g1,19038:8211503,45434140 -g1,19038:8527649,45434140 -g1,19038:8843795,45434140 -g1,19038:9159941,45434140 -g1,19038:11689107,45434140 -g1,19038:12321399,45434140 -k1,19038:12321399,45434140:0 -h1,19038:13902128,45434140:0,0,0 -k1,19038:32583028,45434140:18680900 -g1,19038:32583028,45434140 -) -] -) -g1,19074:32583029,45510161 -g1,19074:6630773,45510161 -g1,19074:6630773,45510161 -g1,19074:32583029,45510161 -g1,19074:32583029,45510161 ) ] -(1,19074:32583029,45706769:0,0,0 -g1,19074:32583029,45706769 -) +[1,953:3078558,4812305:0,0,0 +(1,953:3078558,49800853:0,16384,2228224 +g1,953:29030814,49800853 +g1,953:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,953:36151628,51504789:16384,1179648,0 ) -] -(1,19074:6630773,47279633:25952256,0,0 -h1,19074:6630773,47279633:25952256,0,0 +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 ) ] -(1,19074:4262630,4025873:0,0,0 -[1,19074:-473656,4025873:0,0,0 -(1,19074:-473656,-710413:0,0,0 -(1,19074:-473656,-710413:0,0,0 -g1,19074:-473656,-710413 ) -g1,19074:-473656,-710413 +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,953:37855564,49800853:1179648,16384,0 ) -] ) -] -!25865 -}371 -!12 -{372 -[1,19103:4262630,47279633:28320399,43253760,0 -(1,19103:4262630,4025873:0,0,0 -[1,19103:-473656,4025873:0,0,0 -(1,19103:-473656,-710413:0,0,0 -(1,19103:-473656,-644877:0,0,0 -k1,19103:-473656,-644877:-65536 -) -(1,19103:-473656,4736287:0,0,0 -k1,19103:-473656,4736287:5209943 -) -g1,19103:-473656,-710413 +k1,953:3078556,49800853:-34777008 ) ] +g1,953:6630773,4812305 +k1,953:18771974,4812305:11344283 +g1,953:20158715,4812305 +g1,953:20807521,4812305 +g1,953:24121676,4812305 +g1,953:28605649,4812305 +g1,953:30015328,4812305 +) +) +] +[1,953:6630773,45706769:25952256,40108032,0 +(1,953:6630773,45706769:25952256,40108032,0 +(1,953:6630773,45706769:0,0,0 +g1,953:6630773,45706769 +) +[1,953:6630773,45706769:25952256,40108032,0 +v1,906:6630773,6254097:0,393216,0 +(1,906:6630773,8164987:25952256,2304106,0 +g1,906:6630773,8164987 +g1,906:6303093,8164987 +r1,953:6401397,8164987:98304,2304106,0 +g1,906:6600626,8164987 +g1,906:6797234,8164987 +[1,906:6797234,8164987:25785795,2304106,0 +(1,906:6797234,6366164:25785795,505283,134348 +k1,905:8042231,6366164:225912 +k1,905:10278788,6366164:225912 +k1,905:11884888,6366164:225912 +k1,905:14482547,6366164:225911 +k1,905:15469987,6366164:225912 +k1,905:18098449,6366164:225912 +k1,905:19343446,6366164:225912 +k1,905:21239215,6366164:225912 +k1,905:23047166,6366164:225912 +k1,905:25085804,6366164:225912 +k1,905:26503160,6366164:225911 +k1,905:28071905,6366164:225912 +k1,905:29691768,6366164:225912 +k1,905:30936765,6366164:225912 +k1,906:32583029,6366164:0 +) +(1,906:6797234,7207652:25785795,505283,126483 +k1,905:9106721,7207652:166460 +k1,905:10766091,7207652:166460 +k1,905:12103023,7207652:166459 +k1,905:15578396,7207652:166460 +k1,905:17293472,7207652:166460 +k1,905:18911554,7207652:166460 +k1,905:22358746,7207652:166460 +k1,905:24191787,7207652:166460 +k1,905:25775790,7207652:166459 +k1,905:27034735,7207652:166460 +(1,905:27034735,7207652:0,452978,115847 +r1,953:30206695,7207652:3171960,568825,115847 +k1,905:27034735,7207652:-3171960 +) +(1,905:27034735,7207652:3171960,452978,115847 +k1,905:27034735,7207652:3277 +h1,905:30203418,7207652:0,411205,112570 +) +k1,905:30373155,7207652:166460 +k1,906:32583029,7207652:0 +) +(1,906:6797234,8049140:25785795,505283,115847 +(1,905:6797234,8049140:0,459977,115847 +r1,953:11024330,8049140:4227096,575824,115847 +k1,905:6797234,8049140:-4227096 +) +(1,905:6797234,8049140:4227096,459977,115847 +k1,905:6797234,8049140:3277 +h1,905:11021053,8049140:0,411205,112570 +) +g1,905:11223559,8049140 +g1,905:12074216,8049140 +g1,905:14304406,8049140 +g1,905:15522720,8049140 +k1,906:32583029,8049140:12060567 +g1,906:32583029,8049140 +) +] +g1,906:32583029,8164987 +) +h1,906:6630773,8164987:0,0,0 +(1,908:6630773,10256247:25952256,555811,12975 +(1,908:6630773,10256247:2450326,534184,12975 +g1,908:6630773,10256247 +g1,908:9081099,10256247 +) +k1,908:32583029,10256247:20399914 +g1,908:32583029,10256247 +) +(1,911:6630773,11490951:25952256,513147,134348 +k1,910:7719841,11490951:135519 +k1,910:9135278,11490951:135519 +k1,910:10289882,11490951:135519 +k1,910:12163416,11490951:135519 +k1,910:14970838,11490951:135519 +k1,910:15757785,11490951:135519 +k1,910:16912389,11490951:135519 +k1,910:19493056,11490951:135519 +k1,910:20287867,11490951:135519 +k1,910:23447873,11490951:135519 +k1,910:26658997,11490951:135519 +k1,910:27453808,11490951:135519 +k1,910:27945187,11490951:135519 +k1,910:30822732,11490951:135519 +k1,911:32583029,11490951:0 +) +(1,911:6630773,12332439:25952256,505283,134348 +k1,910:8503970,12332439:234142 +k1,910:11069884,12332439:234143 +k1,910:11986911,12332439:234142 +k1,910:17739840,12332439:234142 +k1,910:21060728,12332439:234142 +k1,910:22051156,12332439:234143 +k1,910:25129560,12332439:234142 +k1,910:26317251,12332439:234142 +k1,910:27643878,12332439:234142 +k1,910:28897106,12332439:234143 +k1,910:30784721,12332439:234142 +k1,910:32583029,12332439:0 +) +(1,911:6630773,13173927:25952256,513147,126483 +k1,910:9724425,13173927:202859 +k1,910:10578712,13173927:202859 +k1,910:12519586,13173927:202859 +k1,910:14174068,13173927:202860 +k1,910:15533637,13173927:202859 +k1,910:16395788,13173927:202859 +k1,910:18295374,13173927:202859 +k1,910:21957879,13173927:202859 +k1,910:22820030,13173927:202859 +k1,910:24041975,13173927:202860 +k1,910:27320439,13173927:202859 +k1,910:28182590,13173927:202859 +k1,910:28741309,13173927:202859 +k1,911:32583029,13173927:0 +) +(1,911:6630773,14015415:25952256,505283,134348 +g1,910:8072565,14015415 +g1,910:9290879,14015415 +g1,910:11731439,14015415 +k1,911:32583028,14015415:17960796 +g1,911:32583028,14015415 +) +(1,913:6630773,14856903:25952256,513147,134348 +h1,912:6630773,14856903:983040,0,0 +k1,912:9048723,14856903:238223 +k1,912:11565634,14856903:238224 +k1,912:12463149,14856903:238223 +k1,912:15777633,14856903:238224 +k1,912:17512043,14856903:238223 +k1,912:19488282,14856903:238224 +k1,912:22559626,14856903:238223 +k1,912:25469096,14856903:238223 +k1,912:27636700,14856903:238224 +k1,912:29772846,14856903:238223 +k1,912:30366930,14856903:238224 +k1,912:32020075,14856903:238223 +k1,912:32583029,14856903:0 +) +(1,913:6630773,15698391:25952256,513147,126483 +k1,912:8857031,15698391:194642 +k1,912:10880783,15698391:194642 +k1,912:12620763,15698391:194641 +k1,912:14560629,15698391:194642 +k1,912:17127019,15698391:194642 +k1,912:17677521,15698391:194642 +k1,912:20904513,15698391:194641 +k1,912:22383661,15698391:194642 +k1,912:26152637,15698391:194642 +k1,912:28045317,15698391:194642 +k1,912:29259043,15698391:194641 +k1,912:30803727,15698391:194642 +k1,912:31657661,15698391:194642 +k1,913:32583029,15698391:0 +) +(1,913:6630773,16539879:25952256,513147,134348 +k1,912:9232249,16539879:238248 +k1,912:10602960,16539879:238249 +k1,912:12011681,16539879:238248 +k1,912:13269015,16539879:238249 +k1,912:14922185,16539879:238248 +k1,912:16351879,16539879:238249 +k1,912:19368198,16539879:238248 +k1,912:20219209,16539879:238249 +k1,912:21476542,16539879:238248 +k1,912:23098911,16539879:238249 +k1,912:26523519,16539879:238248 +k1,912:29737103,16539879:238249 +k1,912:30994436,16539879:238248 +k1,912:32583029,16539879:0 +) +(1,913:6630773,17381367:25952256,513147,134348 +k1,912:7450003,17381367:191395 +k1,912:8056233,17381367:191387 +k1,912:9902412,17381367:191395 +k1,912:11810194,17381367:191394 +k1,912:12660881,17381367:191395 +k1,912:15569399,17381367:191395 +k1,912:17506018,17381367:191395 +k1,912:18688972,17381367:191394 +k1,912:21838007,17381367:191395 +k1,912:23773315,17381367:191395 +k1,912:25700103,17381367:191395 +(1,912:25700103,17381367:0,459977,115847 +r1,953:26761792,17381367:1061689,575824,115847 +k1,912:25700103,17381367:-1061689 +) +(1,912:25700103,17381367:1061689,459977,115847 +k1,912:25700103,17381367:3277 +h1,912:26758515,17381367:0,411205,112570 +) +k1,912:27126856,17381367:191394 +(1,912:27126856,17381367:0,452978,115847 +r1,953:28891969,17381367:1765113,568825,115847 +k1,912:27126856,17381367:-1765113 +) +(1,912:27126856,17381367:1765113,452978,115847 +k1,912:27126856,17381367:3277 +h1,912:28888692,17381367:0,411205,112570 +) +k1,912:29083364,17381367:191395 +k1,912:30466204,17381367:191395 +(1,912:30466204,17381367:0,414482,115847 +r1,953:32583029,17381367:2116825,530329,115847 +k1,912:30466204,17381367:-2116825 +) +(1,912:30466204,17381367:2116825,414482,115847 +k1,912:30466204,17381367:3277 +h1,912:32579752,17381367:0,411205,112570 +) +k1,912:32583029,17381367:0 +) +(1,913:6630773,18222855:25952256,513147,126483 +k1,912:10319290,18222855:160714 +k1,912:12037796,18222855:160715 +k1,912:13941768,18222855:160714 +k1,912:14718520,18222855:160714 +k1,912:16209616,18222855:160715 +k1,912:18153565,18222855:160714 +k1,912:21288303,18222855:160714 +k1,912:22829205,18222855:160714 +k1,912:25419995,18222855:160715 +k1,912:26974660,18222855:160714 +k1,912:29459936,18222855:160714 +k1,912:30272079,18222855:160715 +k1,912:31451878,18222855:160714 +k1,913:32583029,18222855:0 +) +(1,913:6630773,19064343:25952256,505283,126483 +k1,912:7891484,19064343:168226 +k1,912:9439897,19064343:168225 +k1,912:11662021,19064343:168226 +k1,912:13391315,19064343:168226 +k1,912:14750985,19064343:168225 +k1,912:16249592,19064343:168226 +k1,912:17436903,19064343:168226 +k1,912:20637480,19064343:168226 +k1,912:22090211,19064343:168225 +k1,912:25677450,19064343:168226 +k1,912:26864761,19064343:168226 +k1,912:29750109,19064343:168225 +k1,912:30449832,19064343:168226 +k1,912:32583029,19064343:0 +) +(1,913:6630773,19905831:25952256,513147,134348 +k1,912:8642981,19905831:228973 +k1,912:9891038,19905831:228972 +k1,912:11773484,19905831:228973 +k1,912:15113450,19905831:228972 +k1,912:16446705,19905831:228973 +k1,912:17423444,19905831:228973 +k1,912:21853929,19905831:228972 +k1,912:23476853,19905831:228973 +k1,912:25356023,19905831:228973 +k1,912:27027442,19905831:228972 +k1,912:28413125,19905831:228973 +k1,912:29301389,19905831:228972 +k1,912:31227089,19905831:228973 +k1,913:32583029,19905831:0 +) +(1,913:6630773,20747319:25952256,513147,134348 +k1,912:9180022,20747319:164394 +k1,912:11079810,20747319:164395 +k1,912:12263289,20747319:164394 +k1,912:13923216,20747319:164395 +k1,912:16388579,20747319:164394 +k1,912:17212266,20747319:164395 +k1,912:19015715,20747319:164394 +k1,912:21467317,20747319:164395 +k1,912:23804885,20747319:164394 +k1,912:24585318,20747319:164395 +k1,912:25768797,20747319:164394 +k1,912:28102434,20747319:164395 +k1,912:28918256,20747319:164394 +k1,913:32583029,20747319:0 +) +(1,913:6630773,21588807:25952256,513147,126483 +k1,912:7242268,21588807:196652 +k1,912:9773971,21588807:196655 +k1,912:10598461,21588807:196655 +k1,912:11383629,21588807:196655 +k1,912:13531946,21588807:196655 +k1,912:17207251,21588807:196654 +k1,912:19735022,21588807:196655 +k1,912:21676901,21588807:196655 +k1,912:22559718,21588807:196655 +k1,912:25846396,21588807:196655 +k1,912:26659089,21588807:196655 +k1,912:28058984,21588807:196654 +k1,912:30534326,21588807:196655 +k1,912:31835263,21588807:196655 +k1,912:32583029,21588807:0 +) +(1,913:6630773,22430295:25952256,513147,134348 +k1,912:9591034,22430295:241172 +k1,912:14776898,22430295:241173 +k1,912:15779598,22430295:241172 +k1,912:17450766,22430295:241172 +k1,912:18343367,22430295:241173 +k1,912:19603624,22430295:241172 +k1,912:21637207,22430295:241173 +k1,912:24904176,22430295:241172 +k1,912:28235371,22430295:241172 +k1,912:29092582,22430295:241173 +k1,912:31612441,22430295:241172 +h1,912:32583029,22430295:0,0,0 +k1,912:32583029,22430295:0 +) +(1,913:6630773,23271783:25952256,485622,134348 +g1,912:7639372,23271783 +g1,912:9336754,23271783 +h1,912:10133672,23271783:0,0,0 +k1,913:32583030,23271783:22275688 +g1,913:32583030,23271783 +) +(1,914:6630773,24899703:25952256,505283,126483 +(1,914:6630773,24899703:2809528,485622,11795 +g1,914:6630773,24899703 +g1,914:9440301,24899703 +) +(1,914:9440301,24899703:0,459977,115847 +r1,953:10501990,24899703:1061689,575824,115847 +k1,914:9440301,24899703:-1061689 +) +(1,914:9440301,24899703:1061689,459977,115847 +k1,914:9440301,24899703:3277 +h1,914:10498713,24899703:0,411205,112570 +) +g1,914:10706462,24899703 +k1,914:32583028,24899703:20084156 +g1,914:32583028,24899703 +) +(1,916:6630773,26134407:25952256,513147,126483 +k1,915:8001440,26134407:173980 +k1,915:9777120,26134407:173980 +k1,915:13256081,26134407:173980 +k1,915:14943287,26134407:173980 +k1,915:16503353,26134407:173980 +k1,915:17336625,26134407:173980 +k1,915:18925527,26134407:173980 +k1,915:19631004,26134407:173980 +k1,915:20160844,26134407:173980 +(1,915:20160844,26134407:0,459977,115847 +r1,953:21222533,26134407:1061689,575824,115847 +k1,915:20160844,26134407:-1061689 +) +(1,915:20160844,26134407:1061689,459977,115847 +k1,915:20160844,26134407:3277 +h1,915:21219256,26134407:0,411205,112570 +) +k1,915:21396512,26134407:173979 +k1,915:23159085,26134407:173980 +k1,915:25207395,26134407:173980 +k1,915:27126599,26134407:173980 +k1,915:28897036,26134407:173980 +k1,915:29687054,26134407:173980 +k1,915:30275852,26134407:173955 +k1,915:31259202,26134407:173980 +k1,915:32583029,26134407:0 +) +(1,916:6630773,26975895:25952256,513147,126483 +k1,915:7523335,26975895:209677 +k1,915:10041189,26975895:209676 +k1,915:10910158,26975895:209677 +k1,915:13130479,26975895:209676 +k1,915:13991584,26975895:209677 +k1,915:15147600,26975895:209676 +k1,915:17175901,26975895:209677 +k1,915:18582264,26975895:209676 +k1,915:21231846,26975895:209677 +k1,915:22632967,26975895:209676 +k1,915:23790295,26975895:209677 +k1,915:25019056,26975895:209676 +k1,915:26411658,26975895:209677 +k1,915:27280626,26975895:209676 +k1,915:28509388,26975895:209677 +k1,915:30696941,26975895:209676 +k1,915:31589503,26975895:209677 +k1,915:32583029,26975895:0 +) +(1,916:6630773,27817383:25952256,513147,126483 +k1,915:8497613,27817383:183875 +k1,915:10344137,27817383:183876 +k1,915:11140774,27817383:183875 +k1,915:12343734,27817383:183875 +k1,915:13599778,27817383:183875 +k1,915:14442946,27817383:183876 +k1,915:15645906,27817383:183875 +k1,915:18853612,27817383:183875 +k1,915:21080245,27817383:183876 +k1,915:22283205,27817383:183875 +k1,915:23882002,27817383:183875 +k1,915:27252237,27817383:183875 +k1,915:27967610,27817383:183876 +k1,915:31386342,27817383:183875 +k1,915:32583029,27817383:0 +) +(1,916:6630773,28658871:25952256,513147,126483 +k1,915:8180782,28658871:199967 +k1,915:10030289,28658871:199966 +k1,915:11331261,28658871:199967 +k1,915:11887088,28658871:199967 +k1,915:13429231,28658871:199966 +k1,915:14315360,28658871:199967 +k1,915:15534412,28658871:199967 +k1,915:18809984,28658871:199967 +k1,915:20114232,28658871:199966 +k1,915:21061965,28658871:199967 +k1,915:23878129,28658871:199967 +k1,915:24729523,28658871:199966 +k1,915:25700193,28658871:199967 +k1,915:27933742,28658871:199967 +k1,915:30747939,28658871:199966 +k1,915:31563944,28658871:199967 +k1,915:32583029,28658871:0 +) +(1,916:6630773,29500359:25952256,513147,134348 +g1,915:9769947,29500359 +g1,915:10628468,29500359 +g1,915:14518029,29500359 +g1,915:17389161,29500359 +g1,915:18607475,29500359 +g1,915:20460177,29500359 +g1,915:22155593,29500359 +g1,915:23006250,29500359 +g1,915:23953245,29500359 +g1,915:27213661,29500359 +g1,915:30084137,29500359 +k1,916:32583029,29500359:569512 +g1,916:32583029,29500359 +) +(1,934:6630773,42817789:25952256,12519559,0 +k1,934:11984091,42817789:5353318 +(1,917:11984091,42817789:0,0,0 +g1,917:11984091,42817789 +g1,917:11984091,42817789 +g1,917:11656411,42817789 +(1,917:11656411,42817789:0,0,0 +) +g1,917:11984091,42817789 +) +(1,932:11984091,42817789:15245620,12519559,0 +g1,932:15002947,42817789 +(1,932:15002947,31243676:0,0,0 +(1,932:15002947,31243676:0,0,0 +g1,919:15002947,31243676 +(1,920:15002947,31243676:0,0,0 +(1,920:15002947,31243676:0,0,0 +g1,920:15002947,31243676 +g1,920:15002947,31243676 +g1,920:15002947,31243676 +g1,920:15002947,31243676 +g1,920:15002947,31243676 +(1,920:15002947,31243676:0,0,0 +(1,920:15002947,31243676:589824,56623,0 +(1,920:15002947,31243676:589824,56623,0 +) +g1,920:15592771,31243676 +) +) +g1,920:15002947,31243676 +g1,920:15002947,31243676 +) +) +g1,920:15002947,31243676 +(1,921:15002947,31243676:0,0,0 +(1,921:15002947,31243676:0,0,0 +g1,921:15002947,31243676 +g1,921:15002947,31243676 +g1,921:15002947,31243676 +g1,921:15002947,31243676 +g1,921:15002947,31243676 +(1,921:15002947,31243676:0,0,0 +(1,921:15002947,31243676:358613,319685,0 +(1,921:15002947,31243676:358613,319685,0 +$1,921:15002947,31243676 +$1,921:15361560,31243676 +) +g1,921:15361560,31243676 +) +) +g1,921:15002947,31243676 +g1,921:15002947,31243676 +) +) +g1,921:15002947,31243676 +(1,922:15002947,31243676:0,0,0 +(1,922:15002947,31243676:0,0,0 +g1,922:15002947,31243676 +g1,922:15002947,31243676 +(1,922:15002947,31243676:0,0,0 +(1,922:15002947,31243676:3805042,414307,104590 +(1,922:15002947,31243676:3805042,414307,104590 +(1,922:15002947,31243676:0,414307,104590 +r1,953:18807989,31243676:3805042,518897,104590 +k1,922:15002947,31243676:-3805042 +) +(1,922:15002947,31243676:3805042,414307,104590 +g1,922:16272387,31243676 +h1,922:18804712,31243676:0,370085,101313 +) +) +g1,922:18807989,31243676 +) +) +g1,922:15002947,31243676 +g1,922:15002947,31243676 +) +) +(1,923:15002947,31243676:0,0,0 +(1,923:15002947,31243676:0,0,0 +g1,923:15002947,31243676 +g1,923:15002947,31243676 +g1,923:15002947,31243676 +g1,923:15002947,31243676 +g1,923:15002947,31243676 +(1,923:15002947,31243676:0,0,0 +(1,923:15002947,31243676:4121582,373362,104590 +(1,923:15002947,31243676:4121582,373362,104590 +(1,923:15002947,31243676:0,373362,104590 +r1,953:19124529,31243676:4121582,477952,104590 +k1,923:15002947,31243676:-4121582 +) +(1,923:15002947,31243676:4121582,373362,104590 +g1,923:18488171,31243676 +h1,923:19121252,31243676:0,370085,101313 +) +) +g1,923:19124529,31243676 +) +) +g1,923:15002947,31243676 +g1,923:15002947,31243676 +) +) +(1,924:15002947,31243676:0,0,0 +(1,924:15002947,31243676:0,0,0 +g1,924:15002947,31243676 +g1,924:15002947,31243676 +g1,924:15002947,31243676 +g1,924:15002947,31243676 +g1,924:15002947,31243676 +(1,924:15002947,31243676:0,0,0 +(1,924:15002947,31243676:4121582,373362,104590 +(1,924:15002947,31243676:4121582,373362,104590 +(1,924:15002947,31243676:0,373362,104590 +r1,953:19124529,31243676:4121582,477952,104590 +k1,924:15002947,31243676:-4121582 +) +(1,924:15002947,31243676:4121582,373362,104590 +g1,924:18488171,31243676 +h1,924:19121252,31243676:0,370085,101313 +) ) -[1,19103:6630773,47279633:25952256,43253760,0 -[1,19103:6630773,4812305:25952256,786432,0 -(1,19103:6630773,4812305:25952256,505283,134348 -(1,19103:6630773,4812305:25952256,505283,134348 -g1,19103:3078558,4812305 -[1,19103:3078558,4812305:0,0,0 -(1,19103:3078558,2439708:0,1703936,0 -k1,19103:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,19103:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,19103:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 +g1,924:19124529,31243676 ) -] ) +g1,924:15002947,31243676 +g1,924:15002947,31243676 +) +) +g1,924:15002947,31243676 +g1,925:15002947,31243676 +(1,925:15002947,31243676:0,0,0 +(1,925:15002947,31243676:0,0,0 +g1,925:15002947,31243676 +g1,925:15002947,31243676 +g1,925:15002947,31243676 +g1,925:15002947,31243676 +g1,925:15002947,31243676 +(1,925:15002947,31243676:0,0,0 +(1,925:15002947,31243676:589824,56623,0 +(1,925:15002947,31243676:589824,56623,0 +) +g1,925:15592771,31243676 +) +) +g1,925:15002947,31243676 +g1,925:15002947,31243676 +) +) +g1,925:15002947,31243676 +g1,926:15002947,31243676 +g1,926:15002947,31243676 +g1,926:15002947,31243676 +g1,926:15002947,31243676 +g1,927:15002947,31243676 +g1,927:15002947,31243676 +g1,927:15002947,31243676 +(1,927:15002947,31243676:0,0,0 +(1,927:15002947,31243676:0,0,0 +g1,927:15002947,31243676 +g1,927:15002947,31243676 +g1,927:15002947,31243676 +g1,927:15002947,31243676 +g1,927:15002947,31243676 +(1,927:15002947,31243676:0,0,0 +(1,927:15002947,31243676:2418868,426443,7077 +(1,927:15002947,31243676:2418868,426443,7077 +) +g1,927:17421815,31243676 +) +) +g1,927:15002947,31243676 +g1,927:15002947,31243676 +) +) +g1,927:15002947,31243676 +g1,928:15002947,31243676 +g1,928:15002947,31243676 +g1,928:15002947,31243676 +(1,928:15002947,31243676:0,0,0 +(1,928:15002947,31243676:0,0,0 +g1,928:15002947,31243676 +g1,928:15002947,31243676 +g1,928:15002947,31243676 +g1,928:15002947,31243676 +g1,928:15002947,31243676 +(1,928:15002947,31243676:0,0,0 +(1,928:15002947,31243676:1643250,454754,7077 +(1,928:15002947,31243676:1643250,454754,7077 ) +g1,928:16646197,31243676 ) -] -[1,19103:3078558,4812305:0,0,0 -(1,19103:3078558,2439708:0,1703936,0 -g1,19103:29030814,2439708 -g1,19103:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,19103:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 ) -] +g1,928:15002947,31243676 +g1,928:15002947,31243676 ) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,19103:37855564,2439708:1179648,16384,0 ) +g1,928:15002947,31243676 +g1,929:15002947,31243676 +g1,929:15002947,31243676 +g1,929:15002947,31243676 +g1,929:15002947,31243676 +g1,929:15002947,31243676 +g1,930:15002947,31243676 +g1,930:15002947,31243676 +g1,930:15002947,31243676 +g1,930:15002947,31243676 +g1,931:15002947,31243676 +g1,931:15002947,31243676 +g1,931:15002947,31243676 +g1,931:15002947,31243676 +g1,931:15002947,31243676 +g1,931:15002947,31243676 +g1,932:15002947,31243676 +g1,932:15002947,31243676 ) -k1,19103:3078556,2439708:-34777008 +g1,932:15002947,31243676 ) -] -[1,19103:3078558,4812305:0,0,0 -(1,19103:3078558,49800853:0,16384,2228224 -k1,19103:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,19103:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,19103:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 ) -] +g1,934:27229711,42817789 +k1,934:32583029,42817789:5353318 ) +v1,937:6630773,44560344:0,393216,0 +(1,953:6630773,45510161:25952256,1343033,196608 +g1,953:6630773,45510161 +g1,953:6630773,45510161 +g1,953:6434165,45510161 +(1,953:6434165,45510161:0,1343033,196608 +r1,953:32779637,45510161:26345472,1539641,196608 +k1,953:6434165,45510161:-26345472 +) +(1,953:6434165,45510161:26345472,1343033,196608 +[1,953:6630773,45510161:25952256,1146425,0 +(1,939:6630773,44767962:25952256,404226,9436 +(1,938:6630773,44767962:0,0,0 +g1,938:6630773,44767962 +g1,938:6630773,44767962 +g1,938:6303093,44767962 +(1,938:6303093,44767962:0,0,0 ) +g1,938:6630773,44767962 ) -] -[1,19103:3078558,4812305:0,0,0 -(1,19103:3078558,49800853:0,16384,2228224 -g1,19103:29030814,49800853 -g1,19103:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,19103:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 +g1,939:7263065,44767962 +g1,939:8211503,44767962 +h1,939:8527649,44767962:0,0,0 +k1,939:32583029,44767962:24055380 +g1,939:32583029,44767962 +) +(1,940:6630773,45434140:25952256,410518,76021 +h1,940:6630773,45434140:0,0,0 +g1,940:7895356,45434140 +g1,940:8843793,45434140 +g1,940:9792230,45434140 +g1,940:11372960,45434140 +g1,940:12005252,45434140 +g1,940:12953690,45434140 +g1,940:13585982,45434140 +g1,940:14218274,45434140 +h1,940:14534420,45434140:0,0,0 +k1,940:32583028,45434140:18048608 +g1,940:32583028,45434140 ) ] ) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,19103:37855564,49800853:1179648,16384,0 -) -) -k1,19103:3078556,49800853:-34777008 +g1,953:32583029,45510161 +g1,953:6630773,45510161 +g1,953:6630773,45510161 +g1,953:32583029,45510161 +g1,953:32583029,45510161 ) ] -g1,19103:6630773,4812305 -g1,19103:6630773,4812305 -g1,19103:9205682,4812305 -g1,19103:11846782,4812305 -k1,19103:31387652,4812305:19540870 +(1,953:32583029,45706769:0,0,0 +g1,953:32583029,45706769 ) ) -] -[1,19103:6630773,45706769:25952256,40108032,0 -(1,19103:6630773,45706769:25952256,40108032,0 -(1,19103:6630773,45706769:0,0,0 -g1,19103:6630773,45706769 -) -[1,19103:6630773,45706769:25952256,40108032,0 -v1,19074:6630773,6254097:0,393216,0 -(1,19074:6630773,25241243:25952256,19380362,196608 -g1,19074:6630773,25241243 -g1,19074:6630773,25241243 -g1,19074:6434165,25241243 -(1,19074:6434165,25241243:0,19380362,196608 -r1,19103:32779637,25241243:26345472,19576970,196608 -k1,19074:6434165,25241243:-26345472 -) -(1,19074:6434165,25241243:26345472,19380362,196608 -[1,19074:6630773,25241243:25952256,19183754,0 -(1,19039:6630773,6461715:25952256,404226,101187 -h1,19039:6630773,6461715:0,0,0 -g1,19039:6946919,6461715 -g1,19039:7263065,6461715 -g1,19039:7579211,6461715 -g1,19039:7895357,6461715 -g1,19039:8211503,6461715 -g1,19039:8527649,6461715 -g1,19039:8843795,6461715 -g1,19039:9159941,6461715 -g1,19039:9476087,6461715 -g1,19039:9792233,6461715 -g1,19039:14850565,6461715 -g1,19039:20225042,6461715 -k1,19039:20225042,6461715:0 -h1,19039:24651082,6461715:0,0,0 -k1,19039:32583029,6461715:7931947 -g1,19039:32583029,6461715 -) -(1,19040:6630773,7127893:25952256,404226,82312 -h1,19040:6630773,7127893:0,0,0 -g1,19040:6946919,7127893 -g1,19040:7263065,7127893 -g1,19040:7579211,7127893 -g1,19040:7895357,7127893 -g1,19040:8211503,7127893 -g1,19040:8527649,7127893 -g1,19040:8843795,7127893 -g1,19040:9159941,7127893 -g1,19040:9476087,7127893 -g1,19040:9792233,7127893 -k1,19040:9792233,7127893:0 -h1,19040:12005253,7127893:0,0,0 -k1,19040:32583029,7127893:20577776 -g1,19040:32583029,7127893 -) -(1,19041:6630773,7794071:25952256,404226,82312 -h1,19041:6630773,7794071:0,0,0 -g1,19041:6946919,7794071 -g1,19041:7263065,7794071 -g1,19041:7579211,7794071 -g1,19041:7895357,7794071 -g1,19041:8211503,7794071 -g1,19041:8527649,7794071 -g1,19041:8843795,7794071 -g1,19041:9159941,7794071 -g1,19041:9476087,7794071 -g1,19041:9792233,7794071 -k1,19041:9792233,7794071:0 -h1,19041:14850564,7794071:0,0,0 -k1,19041:32583028,7794071:17732464 -g1,19041:32583028,7794071 -) -(1,19042:6630773,8460249:25952256,404226,101187 -h1,19042:6630773,8460249:0,0,0 -g1,19042:6946919,8460249 -g1,19042:7263065,8460249 -g1,19042:7579211,8460249 -g1,19042:7895357,8460249 -g1,19042:8211503,8460249 -g1,19042:8527649,8460249 -g1,19042:8843795,8460249 -g1,19042:9159941,8460249 -g1,19042:9476087,8460249 -g1,19042:9792233,8460249 -k1,19042:9792233,8460249:0 -h1,19042:13585981,8460249:0,0,0 -k1,19042:32583029,8460249:18997048 -g1,19042:32583029,8460249 -) -(1,19043:6630773,9126427:25952256,410518,101187 -h1,19043:6630773,9126427:0,0,0 -g1,19043:6946919,9126427 -g1,19043:7263065,9126427 -g1,19043:7579211,9126427 -g1,19043:7895357,9126427 -g1,19043:8211503,9126427 -g1,19043:8527649,9126427 -g1,19043:8843795,9126427 -g1,19043:9159941,9126427 -g1,19043:9476087,9126427 -g1,19043:9792233,9126427 -k1,19043:9792233,9126427:0 -h1,19043:14218273,9126427:0,0,0 -k1,19043:32583029,9126427:18364756 -g1,19043:32583029,9126427 -) -(1,19044:6630773,9792605:25952256,410518,101187 -h1,19044:6630773,9792605:0,0,0 -g1,19044:6946919,9792605 -g1,19044:7263065,9792605 -g1,19044:7579211,9792605 -g1,19044:7895357,9792605 -g1,19044:8211503,9792605 -g1,19044:8527649,9792605 -g1,19044:8843795,9792605 -g1,19044:9159941,9792605 -g1,19044:9476087,9792605 -g1,19044:9792233,9792605 -h1,19044:14534418,9792605:0,0,0 -k1,19044:32583030,9792605:18048612 -g1,19044:32583030,9792605 -) -(1,19045:6630773,10458783:25952256,404226,76021 -h1,19045:6630773,10458783:0,0,0 -g1,19045:6946919,10458783 -g1,19045:7263065,10458783 -g1,19045:7579211,10458783 -g1,19045:7895357,10458783 -g1,19045:8211503,10458783 -g1,19045:8527649,10458783 -g1,19045:8843795,10458783 -g1,19045:9159941,10458783 -h1,19045:9476087,10458783:0,0,0 -k1,19045:32583029,10458783:23106942 -g1,19045:32583029,10458783 -) -(1,19046:6630773,11124961:25952256,404226,76021 -h1,19046:6630773,11124961:0,0,0 -h1,19046:6946919,11124961:0,0,0 -k1,19046:32583029,11124961:25636110 -g1,19046:32583029,11124961 -) -(1,19047:6630773,11791139:25952256,404226,82312 -h1,19047:6630773,11791139:0,0,0 -g1,19047:10108376,11791139 -g1,19047:11056814,11791139 -g1,19047:13902126,11791139 -h1,19047:17063583,11791139:0,0,0 -k1,19047:32583029,11791139:15519446 -g1,19047:32583029,11791139 -) -(1,19048:6630773,12457317:25952256,404226,76021 -h1,19048:6630773,12457317:0,0,0 -k1,19048:6630773,12457317:0 -h1,19048:12953686,12457317:0,0,0 -k1,19048:32583030,12457317:19629344 -g1,19048:32583030,12457317 -) -(1,19057:6630773,13189031:25952256,410518,107478 -(1,19050:6630773,13189031:0,0,0 -g1,19050:6630773,13189031 -g1,19050:6630773,13189031 -g1,19050:6303093,13189031 -(1,19050:6303093,13189031:0,0,0 -) -g1,19050:6630773,13189031 -) -g1,19057:7579210,13189031 -g1,19057:7895356,13189031 -g1,19057:9159939,13189031 -g1,19057:11372959,13189031 -g1,19057:11689105,13189031 -g1,19057:12005251,13189031 -g1,19057:12321397,13189031 -g1,19057:12637543,13189031 -g1,19057:12953689,13189031 -g1,19057:13269835,13189031 -g1,19057:13585981,13189031 -g1,19057:13902127,13189031 -g1,19057:14218273,13189031 -g1,19057:14534419,13189031 -g1,19057:18012022,13189031 -g1,19057:18328168,13189031 -g1,19057:18644314,13189031 -g1,19057:18960460,13189031 -g1,19057:19276606,13189031 -g1,19057:19592752,13189031 -g1,19057:19908898,13189031 -g1,19057:24334938,13189031 -g1,19057:24651084,13189031 -g1,19057:24967230,13189031 -g1,19057:25283376,13189031 -h1,19057:29393270,13189031:0,0,0 -k1,19057:32583029,13189031:3189759 -g1,19057:32583029,13189031 -) -(1,19057:6630773,13855209:25952256,410518,101187 -h1,19057:6630773,13855209:0,0,0 -g1,19057:7579210,13855209 -g1,19057:7895356,13855209 -g1,19057:9159939,13855209 -g1,19057:13585979,13855209 -g1,19057:13902125,13855209 -g1,19057:14218271,13855209 -g1,19057:14534417,13855209 -g1,19057:19592748,13855209 -g1,19057:19908894,13855209 -g1,19057:24018788,13855209 -g1,19057:24334934,13855209 -g1,19057:24651080,13855209 -g1,19057:24967226,13855209 -g1,19057:25283372,13855209 -h1,19057:30025557,13855209:0,0,0 -k1,19057:32583029,13855209:2557472 -g1,19057:32583029,13855209 -) -(1,19057:6630773,14521387:25952256,404226,101187 -h1,19057:6630773,14521387:0,0,0 -g1,19057:7579210,14521387 -g1,19057:7895356,14521387 -g1,19057:9159939,14521387 -g1,19057:13269833,14521387 -g1,19057:13585979,14521387 -g1,19057:13902125,14521387 -g1,19057:14218271,14521387 -g1,19057:14534417,14521387 -g1,19057:19592748,14521387 -g1,19057:19908894,14521387 -g1,19057:24334934,14521387 -g1,19057:24651080,14521387 -g1,19057:24967226,14521387 -g1,19057:25283372,14521387 -h1,19057:28760974,14521387:0,0,0 -k1,19057:32583029,14521387:3822055 -g1,19057:32583029,14521387 -) -(1,19057:6630773,15187565:25952256,404226,101187 -h1,19057:6630773,15187565:0,0,0 -g1,19057:7579210,15187565 -g1,19057:9159939,15187565 -g1,19057:13269833,15187565 -g1,19057:13585979,15187565 -g1,19057:13902125,15187565 -g1,19057:14218271,15187565 -g1,19057:14534417,15187565 -g1,19057:19908894,15187565 -g1,19057:24018788,15187565 -g1,19057:24334934,15187565 -g1,19057:24651080,15187565 -g1,19057:24967226,15187565 -g1,19057:25283372,15187565 -h1,19057:27812537,15187565:0,0,0 -k1,19057:32583029,15187565:4770492 -g1,19057:32583029,15187565 -) -(1,19057:6630773,15853743:25952256,410518,101187 -h1,19057:6630773,15853743:0,0,0 -g1,19057:7579210,15853743 -g1,19057:9159939,15853743 -g1,19057:12005250,15853743 -g1,19057:12321396,15853743 -g1,19057:12637542,15853743 -g1,19057:12953688,15853743 -g1,19057:13269834,15853743 -g1,19057:13585980,15853743 -g1,19057:13902126,15853743 -g1,19057:14218272,15853743 -g1,19057:14534418,15853743 -g1,19057:19276604,15853743 -g1,19057:19592750,15853743 -g1,19057:19908896,15853743 -g1,19057:23386499,15853743 -g1,19057:23702645,15853743 -g1,19057:24018791,15853743 -g1,19057:24334937,15853743 -g1,19057:24651083,15853743 -g1,19057:24967229,15853743 -g1,19057:25283375,15853743 -h1,19057:29709415,15853743:0,0,0 -k1,19057:32583029,15853743:2873614 -g1,19057:32583029,15853743 -) -(1,19057:6630773,16519921:25952256,410518,76021 -h1,19057:6630773,16519921:0,0,0 -g1,19057:7579210,16519921 -g1,19057:9159939,16519921 -h1,19057:13269833,16519921:0,0,0 -k1,19057:32583029,16519921:19313196 -g1,19057:32583029,16519921 -) -(1,19059:6630773,17841459:25952256,404226,9436 -(1,19058:6630773,17841459:0,0,0 -g1,19058:6630773,17841459 -g1,19058:6630773,17841459 -g1,19058:6303093,17841459 -(1,19058:6303093,17841459:0,0,0 -) -g1,19058:6630773,17841459 -) -g1,19059:10108376,17841459 -k1,19059:10108376,17841459:0 -h1,19059:11372958,17841459:0,0,0 -k1,19059:32583030,17841459:21210072 -g1,19059:32583030,17841459 -) -(1,19060:6630773,18507637:25952256,410518,82312 -h1,19060:6630773,18507637:0,0,0 -g1,19060:6946919,18507637 -g1,19060:7263065,18507637 -g1,19060:10424522,18507637 -g1,19060:14850562,18507637 -g1,19060:15482854,18507637 -g1,19060:16431292,18507637 -k1,19060:16431292,18507637:0 -h1,19060:17695874,18507637:0,0,0 -k1,19060:32583029,18507637:14887155 -g1,19060:32583029,18507637 -) -(1,19061:6630773,19173815:25952256,410518,107478 -h1,19061:6630773,19173815:0,0,0 -g1,19061:6946919,19173815 -g1,19061:7263065,19173815 -g1,19061:11056813,19173815 -g1,19061:15166707,19173815 -k1,19061:15166707,19173815:0 -h1,19061:16431289,19173815:0,0,0 -k1,19061:32583029,19173815:16151740 -g1,19061:32583029,19173815 -) -(1,19062:6630773,19839993:25952256,404226,107478 -h1,19062:6630773,19839993:0,0,0 -g1,19062:6946919,19839993 -g1,19062:7263065,19839993 -g1,19062:11372959,19839993 -g1,19062:14534416,19839993 -g1,19062:15166708,19839993 -g1,19062:20541185,19839993 -g1,19062:22438059,19839993 -g1,19062:23070351,19839993 -g1,19062:24967226,19839993 -g1,19062:25599518,19839993 -g1,19062:26547955,19839993 -g1,19062:27180247,19839993 -h1,19062:28760976,19839993:0,0,0 -k1,19062:32583029,19839993:3822053 -g1,19062:32583029,19839993 -) -(1,19073:6630773,20571707:25952256,404226,82312 -(1,19064:6630773,20571707:0,0,0 -g1,19064:6630773,20571707 -g1,19064:6630773,20571707 -g1,19064:6303093,20571707 -(1,19064:6303093,20571707:0,0,0 -) -g1,19064:6630773,20571707 -) -g1,19073:7579210,20571707 -g1,19073:8211502,20571707 -g1,19073:10740668,20571707 -g1,19073:11056814,20571707 -g1,19073:11372960,20571707 -g1,19073:12637543,20571707 -g1,19073:13902126,20571707 -g1,19073:14534418,20571707 -h1,19073:15166709,20571707:0,0,0 -k1,19073:32583029,20571707:17416320 -g1,19073:32583029,20571707 -) -(1,19073:6630773,21237885:25952256,404226,101187 -h1,19073:6630773,21237885:0,0,0 -g1,19073:7579210,21237885 -g1,19073:8211502,21237885 -g1,19073:11372959,21237885 -g1,19073:13585979,21237885 -g1,19073:15798999,21237885 -h1,19073:18960456,21237885:0,0,0 -k1,19073:32583029,21237885:13622573 -g1,19073:32583029,21237885 -) -(1,19073:6630773,21904063:25952256,410518,107478 -h1,19073:6630773,21904063:0,0,0 -g1,19073:7579210,21904063 -g1,19073:7895356,21904063 -g1,19073:8211502,21904063 -g1,19073:12005250,21904063 -h1,19073:14850561,21904063:0,0,0 -k1,19073:32583029,21904063:17732468 -g1,19073:32583029,21904063 -) -(1,19073:6630773,22570241:25952256,404226,6290 -h1,19073:6630773,22570241:0,0,0 -g1,19073:7579210,22570241 -g1,19073:7895356,22570241 -g1,19073:8211502,22570241 -g1,19073:8527648,22570241 -g1,19073:8843794,22570241 -g1,19073:9159940,22570241 -g1,19073:9476086,22570241 -g1,19073:9792232,22570241 -g1,19073:10108378,22570241 -g1,19073:12005253,22570241 -g1,19073:12321399,22570241 -g1,19073:12637545,22570241 -g1,19073:12953691,22570241 -g1,19073:13269837,22570241 -k1,19073:13269837,22570241:0 -h1,19073:14850566,22570241:0,0,0 -k1,19073:32583030,22570241:17732464 -g1,19073:32583030,22570241 -) -(1,19073:6630773,23236419:25952256,388497,9436 -h1,19073:6630773,23236419:0,0,0 -g1,19073:7579210,23236419 -g1,19073:8211502,23236419 -g1,19073:8527648,23236419 -g1,19073:8843794,23236419 -g1,19073:9159940,23236419 -g1,19073:9476086,23236419 -g1,19073:9792232,23236419 -g1,19073:10108378,23236419 -g1,19073:10424524,23236419 -g1,19073:10740670,23236419 -g1,19073:12005253,23236419 -g1,19073:12321399,23236419 -g1,19073:12637545,23236419 -g1,19073:12953691,23236419 -g1,19073:13269837,23236419 -h1,19073:14850565,23236419:0,0,0 -k1,19073:32583029,23236419:17732464 -g1,19073:32583029,23236419 -) -(1,19073:6630773,23902597:25952256,388497,9436 -h1,19073:6630773,23902597:0,0,0 -g1,19073:7579210,23902597 -g1,19073:8211502,23902597 -g1,19073:8527648,23902597 -g1,19073:8843794,23902597 -g1,19073:9159940,23902597 -g1,19073:9476086,23902597 -g1,19073:9792232,23902597 -g1,19073:10108378,23902597 -g1,19073:10424524,23902597 -g1,19073:10740670,23902597 -g1,19073:12005253,23902597 -g1,19073:12321399,23902597 -g1,19073:12637545,23902597 -g1,19073:12953691,23902597 -g1,19073:13269837,23902597 -h1,19073:14850565,23902597:0,0,0 -k1,19073:32583029,23902597:17732464 -g1,19073:32583029,23902597 -) -(1,19073:6630773,24568775:25952256,388497,9436 -h1,19073:6630773,24568775:0,0,0 -g1,19073:7579210,24568775 -g1,19073:8211502,24568775 -g1,19073:8527648,24568775 -g1,19073:8843794,24568775 -g1,19073:9159940,24568775 -g1,19073:9476086,24568775 -g1,19073:9792232,24568775 -g1,19073:10108378,24568775 -g1,19073:10424524,24568775 -g1,19073:10740670,24568775 -g1,19073:12005253,24568775 -g1,19073:12321399,24568775 -g1,19073:12637545,24568775 -g1,19073:12953691,24568775 -g1,19073:13269837,24568775 -h1,19073:14850565,24568775:0,0,0 -k1,19073:32583029,24568775:17732464 -g1,19073:32583029,24568775 -) -(1,19073:6630773,25234953:25952256,404226,6290 -h1,19073:6630773,25234953:0,0,0 -g1,19073:7579210,25234953 -g1,19073:8211502,25234953 -g1,19073:9476085,25234953 -g1,19073:11056814,25234953 -g1,19073:12637543,25234953 -h1,19073:13902126,25234953:0,0,0 -k1,19073:32583030,25234953:18680904 -g1,19073:32583030,25234953 +] +(1,953:6630773,47279633:25952256,0,0 +h1,953:6630773,47279633:25952256,0,0 ) ] +(1,953:4262630,4025873:0,0,0 +[1,953:-473656,4025873:0,0,0 +(1,953:-473656,-710413:0,0,0 +(1,953:-473656,-710413:0,0,0 +g1,953:-473656,-710413 ) -g1,19074:32583029,25241243 -g1,19074:6630773,25241243 -g1,19074:6630773,25241243 -g1,19074:32583029,25241243 -g1,19074:32583029,25241243 -) -h1,19074:6630773,25437851:0,0,0 -v1,19078:6630773,27217338:0,393216,0 -(1,19079:6630773,30411504:25952256,3587382,616038 -g1,19079:6630773,30411504 -(1,19079:6630773,30411504:25952256,3587382,616038 -(1,19079:6630773,31027542:25952256,4203420,0 -[1,19079:6630773,31027542:25952256,4203420,0 -(1,19079:6630773,31001328:25952256,4150992,0 -r1,19103:6656987,31001328:26214,4150992,0 -[1,19079:6656987,31001328:25899828,4150992,0 -(1,19079:6656987,30411504:25899828,2971344,0 -[1,19079:7246811,30411504:24720180,2971344,0 -(1,19079:7246811,28602045:24720180,1161885,196608 -(1,19078:7246811,28602045:0,1161885,196608 -r1,19103:8794447,28602045:1547636,1358493,196608 -k1,19078:7246811,28602045:-1547636 -) -(1,19078:7246811,28602045:1547636,1161885,196608 -) -k1,19078:9073481,28602045:279034 -k1,19078:11887448,28602045:279034 -k1,19078:14551993,28602045:279035 -k1,19078:17972823,28602045:279034 -k1,19078:19641220,28602045:279034 -k1,19078:21640574,28602045:279034 -k1,19078:23204114,28602045:279034 -k1,19078:24575633,28602045:279034 -k1,19078:26827301,28602045:279035 -k1,19078:29190380,28602045:279034 -k1,19078:30736880,28602045:279034 -k1,19078:31966991,28602045:0 -) -(1,19079:7246811,29443533:24720180,505283,134348 -k1,19078:9779878,29443533:199330 -k1,19078:10630636,29443533:199330 -k1,19078:14157229,29443533:199330 -k1,19078:16212540,29443533:199331 -k1,19078:17906091,29443533:199330 -k1,19078:18788306,29443533:199330 -k1,19078:21415745,29443533:199330 -k1,19078:22432964,29443533:199330 -k1,19078:24021002,29443533:199330 -k1,19078:24906495,29443533:199331 -k1,19078:26760609,29443533:199330 -k1,19078:27951499,29443533:199330 -k1,19078:28960199,29443533:199330 -k1,19078:31966991,29443533:0 -) -(1,19079:7246811,30285021:24720180,513147,126483 -g1,19078:8839991,30285021 -g1,19078:10058305,30285021 -g1,19078:13096554,30285021 -g1,19078:14314868,30285021 -g1,19078:15606582,30285021 -g1,19078:16465103,30285021 -g1,19078:17020192,30285021 -g1,19078:20042712,30285021 -g1,19078:20773438,30285021 -g1,19078:23135355,30285021 -g1,19078:27064893,30285021 -g1,19078:27915550,30285021 -g1,19078:29133864,30285021 -g1,19078:29747936,30285021 -k1,19079:31966991,30285021:664541 -g1,19079:31966991,30285021 -) -] +g1,953:-473656,-710413 ) ] -r1,19103:32583029,31001328:26214,4150992,0 ) ] +!22776 +}23 +Input:363:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:364:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:365:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:366:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:367:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:368:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:369:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!648 +{24 +[1,1040:4262630,47279633:28320399,43253760,0 +(1,1040:4262630,4025873:0,0,0 +[1,1040:-473656,4025873:0,0,0 +(1,1040:-473656,-710413:0,0,0 +(1,1040:-473656,-644877:0,0,0 +k1,1040:-473656,-644877:-65536 ) +(1,1040:-473656,4736287:0,0,0 +k1,1040:-473656,4736287:5209943 ) -g1,19079:32583029,30411504 -) -h1,19079:6630773,31027542:0,0,0 -v1,19083:6630773,32807029:0,393216,0 -(1,19094:6630773,37761155:25952256,5347342,616038 -g1,19094:6630773,37761155 -(1,19094:6630773,37761155:25952256,5347342,616038 -(1,19094:6630773,38377193:25952256,5963380,0 -[1,19094:6630773,38377193:25952256,5963380,0 -(1,19094:6630773,38350979:25952256,5910952,0 -r1,19103:6656987,38350979:26214,5910952,0 -[1,19094:6656987,38350979:25899828,5910952,0 -(1,19094:6656987,37761155:25899828,4731304,0 -[1,19094:7246811,37761155:24720180,4731304,0 -(1,19085:7246811,34052197:24720180,1022346,134348 -k1,19083:8700179,34052197:197855 -k1,19083:9367926,34052197:197854 -k1,19083:10097278,34052197:197855 -k1,19083:12424397,34052197:197854 -k1,19083:14206257,34052197:197855 -k1,19083:15055540,34052197:197855 -k1,19083:16910144,34052197:197854 -k1,19083:18117253,34052197:197855 -k1,19083:19506552,34052197:197854 -k1,19083:20320445,34052197:197855 -k1,19083:21537385,34052197:197855 -k1,19083:23102320,34052197:197854 -k1,19083:23959467,34052197:197855 -k1,19083:25176407,34052197:197855 -k1,19083:27129971,34052197:197854 -k1,19083:28346911,34052197:197855 -k1,19083:29879733,34052197:197854 -k1,19083:31315563,34052197:197855 -k1,19083:31966991,34052197:0 -) -(1,19085:7246811,34893685:24720180,505283,126483 -g1,19083:8637485,34893685 -g1,19083:10121220,34893685 -g1,19083:11339534,34893685 -g1,19083:14530482,34893685 -g1,19084:15833993,34893685 -g1,19084:16780988,34893685 -g1,19084:18098261,34893685 -g1,19084:18913528,34893685 -g1,19084:19468617,34893685 -g1,19084:21924906,34893685 -k1,19085:31966991,34893685:7622496 -g1,19085:31966991,34893685 -) -v1,19087:7246811,36084151:0,393216,0 -(1,19092:7246811,37040259:24720180,1349324,196608 -g1,19092:7246811,37040259 -g1,19092:7246811,37040259 -g1,19092:7050203,37040259 -(1,19092:7050203,37040259:0,1349324,196608 -r1,19103:32163599,37040259:25113396,1545932,196608 -k1,19092:7050203,37040259:-25113396 -) -(1,19092:7050203,37040259:25113396,1349324,196608 -[1,19092:7246811,37040259:24720180,1152716,0 -(1,19089:7246811,36291769:24720180,404226,82312 -(1,19088:7246811,36291769:0,0,0 -g1,19088:7246811,36291769 -g1,19088:7246811,36291769 -g1,19088:6919131,36291769 -(1,19088:6919131,36291769:0,0,0 -) -g1,19088:7246811,36291769 -) -k1,19089:7246811,36291769:0 -g1,19089:12621288,36291769 -g1,19089:15782745,36291769 -g1,19089:16415037,36291769 -h1,19089:17995766,36291769:0,0,0 -k1,19089:31966991,36291769:13971225 -g1,19089:31966991,36291769 -) -(1,19090:7246811,36957947:24720180,404226,82312 -h1,19090:7246811,36957947:0,0,0 -g1,19090:13569725,36957947 -g1,19090:16731182,36957947 -g1,19090:17363474,36957947 -h1,19090:18944203,36957947:0,0,0 -k1,19090:31966991,36957947:13022788 -g1,19090:31966991,36957947 +g1,1040:-473656,-710413 ) ] ) -g1,19092:31966991,37040259 -g1,19092:7246811,37040259 -g1,19092:7246811,37040259 -g1,19092:31966991,37040259 -g1,19092:31966991,37040259 +[1,1040:6630773,47279633:25952256,43253760,0 +[1,1040:6630773,4812305:25952256,786432,0 +(1,1040:6630773,4812305:25952256,513147,126483 +(1,1040:6630773,4812305:25952256,513147,126483 +g1,1040:3078558,4812305 +[1,1040:3078558,4812305:0,0,0 +(1,1040:3078558,2439708:0,1703936,0 +k1,1040:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,1040:2537886,2439708:1179648,16384,0 ) -h1,19092:7246811,37236867:0,0,0 -] +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,1040:3078558,1915420:16384,1179648,0 ) -] -r1,19103:32583029,38350979:26214,5910952,0 +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) ] ) ) -g1,19094:32583029,37761155 -) -h1,19094:6630773,38377193:0,0,0 -(1,19096:6630773,41184761:25952256,32768,229376 -(1,19096:6630773,41184761:0,32768,229376 -(1,19096:6630773,41184761:5505024,32768,229376 -r1,19103:12135797,41184761:5505024,262144,229376 -) -k1,19096:6630773,41184761:-5505024 -) -(1,19096:6630773,41184761:25952256,32768,0 -r1,19103:32583029,41184761:25952256,32768,0 -) -) -(1,19096:6630773,42789089:25952256,606339,161218 -(1,19096:6630773,42789089:2464678,582746,14155 -g1,19096:6630773,42789089 -g1,19096:9095451,42789089 -) -g1,19096:12303307,42789089 -k1,19096:32583029,42789089:17283416 -g1,19096:32583029,42789089 -) -(1,19098:6630773,44023793:25952256,513147,134348 -k1,19097:8565683,44023793:282747 -k1,19097:10051671,44023793:282747 -k1,19097:10865915,44023793:282747 -k1,19097:12167746,44023793:282746 -k1,19097:13633418,44023793:282747 -k1,19097:14575457,44023793:282747 -k1,19097:15877289,44023793:282747 -k1,19097:17915746,44023793:282747 -k1,19097:18411401,44023793:282663 -k1,19097:22480818,44023793:282747 -k1,19097:23449726,44023793:282746 -k1,19097:26007883,44023793:282747 -k1,19097:28693180,44023793:282747 -k1,19097:29995012,44023793:282747 -k1,19097:32583029,44023793:0 -) -(1,19098:6630773,44865281:25952256,513147,134348 -k1,19097:7566280,44865281:276215 -k1,19097:9689955,44865281:276215 -k1,19097:10652332,44865281:276215 -k1,19097:12308735,44865281:276215 -k1,19097:13576510,44865281:276215 -k1,19097:14942589,44865281:276215 -k1,19097:15878096,44865281:276215 -k1,19097:18521471,44865281:276215 -k1,19097:21006249,44865281:276215 -k1,19097:23541489,44865281:276214 -k1,19097:24430466,44865281:276215 -k1,19097:25725766,44865281:276215 -k1,19097:27184906,44865281:276215 -k1,19097:28120413,44865281:276215 -k1,19097:30230981,44865281:276215 -k1,19097:31130443,44865281:276215 -k1,19097:32184570,44865281:276215 -k1,19097:32583029,44865281:0 -) -(1,19098:6630773,45706769:25952256,505283,134348 -k1,19097:9940232,45706769:182736 -k1,19097:11293441,45706769:182736 -k1,19097:13656560,45706769:182736 -k1,19097:15251597,45706769:182736 -k1,19097:15794126,45706769:182736 -k1,19097:18011099,45706769:182736 -k1,19097:20248390,45706769:182737 -k1,19097:22232055,45706769:182736 -k1,19097:23606236,45706769:182736 -k1,19097:24988936,45706769:182736 -k1,19097:25945652,45706769:182736 -k1,19097:30528475,45706769:182736 -k1,19097:32583029,45706769:0 ) ] -(1,19103:32583029,45706769:0,0,0 -g1,19103:32583029,45706769 +[1,1040:3078558,4812305:0,0,0 +(1,1040:3078558,2439708:0,1703936,0 +g1,1040:29030814,2439708 +g1,1040:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,1040:36151628,1915420:16384,1179648,0 ) +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) ] -(1,19103:6630773,47279633:25952256,0,0 -h1,19103:6630773,47279633:25952256,0,0 ) -] -(1,19103:4262630,4025873:0,0,0 -[1,19103:-473656,4025873:0,0,0 -(1,19103:-473656,-710413:0,0,0 -(1,19103:-473656,-710413:0,0,0 -g1,19103:-473656,-710413 +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,1040:37855564,2439708:1179648,16384,0 ) -g1,19103:-473656,-710413 ) -] +k1,1040:3078556,2439708:-34777008 ) ] -!24140 -}372 -!12 -{373 -[1,19103:4262630,47279633:28320399,43253760,0 -(1,19103:4262630,4025873:0,0,0 -[1,19103:-473656,4025873:0,0,0 -(1,19103:-473656,-710413:0,0,0 -(1,19103:-473656,-644877:0,0,0 -k1,19103:-473656,-644877:-65536 -) -(1,19103:-473656,4736287:0,0,0 -k1,19103:-473656,4736287:5209943 -) -g1,19103:-473656,-710413 +[1,1040:3078558,4812305:0,0,0 +(1,1040:3078558,49800853:0,16384,2228224 +k1,1040:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,1040:2537886,49800853:1179648,16384,0 ) -] +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,1040:3078558,51504789:16384,1179648,0 ) -[1,19103:6630773,47279633:25952256,43253760,0 -[1,19103:6630773,4812305:25952256,786432,0 -(1,19103:6630773,4812305:25952256,505283,126483 -(1,19103:6630773,4812305:25952256,505283,126483 -g1,19103:3078558,4812305 -[1,19103:3078558,4812305:0,0,0 -(1,19103:3078558,2439708:0,1703936,0 -k1,19103:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,19103:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,19103:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) ] ) ) ) ] -[1,19103:3078558,4812305:0,0,0 -(1,19103:3078558,2439708:0,1703936,0 -g1,19103:29030814,2439708 -g1,19103:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,19103:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 -) -] -) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,19103:37855564,2439708:1179648,16384,0 -) -) -k1,19103:3078556,2439708:-34777008 +[1,1040:3078558,4812305:0,0,0 +(1,1040:3078558,49800853:0,16384,2228224 +g1,1040:29030814,49800853 +g1,1040:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,1040:36151628,51504789:16384,1179648,0 ) -] -[1,19103:3078558,4812305:0,0,0 -(1,19103:3078558,49800853:0,16384,2228224 -k1,19103:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,19103:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,19103:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 ) ] ) +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,1040:37855564,49800853:1179648,16384,0 ) ) -] -[1,19103:3078558,4812305:0,0,0 -(1,19103:3078558,49800853:0,16384,2228224 -g1,19103:29030814,49800853 -g1,19103:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,19103:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 +k1,1040:3078556,49800853:-34777008 ) ] +g1,1040:6630773,4812305 +g1,1040:6630773,4812305 +g1,1040:9175536,4812305 +g1,1040:9990803,4812305 +g1,1040:13137841,4812305 +g1,1040:14654344,4812305 +k1,1040:31786112,4812305:17131768 ) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,19103:37855564,49800853:1179648,16384,0 -) -) -k1,19103:3078556,49800853:-34777008 ) ] -g1,19103:6630773,4812305 -k1,19103:25146660,4812305:17320510 -g1,19103:26880087,4812305 -g1,19103:29193507,4812305 -g1,19103:30603186,4812305 +[1,1040:6630773,45706769:25952256,40108032,0 +(1,1040:6630773,45706769:25952256,40108032,0 +(1,1040:6630773,45706769:0,0,0 +g1,1040:6630773,45706769 ) +[1,1040:6630773,45706769:25952256,40108032,0 +v1,953:6630773,6254097:0,393216,0 +(1,953:6630773,9988880:25952256,4127999,196608 +g1,953:6630773,9988880 +g1,953:6630773,9988880 +g1,953:6434165,9988880 +(1,953:6434165,9988880:0,4127999,196608 +r1,1040:32779637,9988880:26345472,4324607,196608 +k1,953:6434165,9988880:-26345472 ) -] -[1,19103:6630773,45706769:25952256,40108032,0 -(1,19103:6630773,45706769:25952256,40108032,0 -(1,19103:6630773,45706769:0,0,0 -g1,19103:6630773,45706769 -) -[1,19103:6630773,45706769:25952256,40108032,0 -(1,19098:6630773,6254097:25952256,513147,134348 -k1,19097:8769642,6254097:164269 -k1,19097:9411458,6254097:164059 -k1,19097:10745990,6254097:164059 -k1,19097:12458665,6254097:164059 -k1,19097:13274152,6254097:164059 -k1,19097:15193265,6254097:164059 -k1,19097:16335777,6254097:164059 -k1,19097:18650072,6254097:164059 -k1,19097:21512248,6254097:164059 -k1,19097:22437835,6254097:164059 -k1,19097:23520709,6254097:164059 -k1,19097:28369282,6254097:164059 -k1,19097:29945642,6254097:164059 -k1,19097:31395517,6254097:164059 -k1,19097:32583029,6254097:0 -) -(1,19098:6630773,7095585:25952256,513147,126483 -g1,19097:7279579,7095585 -g1,19097:9796817,7095585 -g1,19097:12050600,7095585 -k1,19098:32583028,7095585:18557828 -g1,19098:32583028,7095585 +(1,953:6434165,9988880:26345472,4127999,196608 +[1,953:6630773,9988880:25952256,3931391,0 +(1,941:6630773,6461715:25952256,404226,6290 +h1,941:6630773,6461715:0,0,0 +h1,941:6946919,6461715:0,0,0 +k1,941:32583029,6461715:25636110 +g1,941:32583029,6461715 +) +(1,945:6630773,7193429:25952256,404226,76021 +(1,943:6630773,7193429:0,0,0 +g1,943:6630773,7193429 +g1,943:6630773,7193429 +g1,943:6303093,7193429 +(1,943:6303093,7193429:0,0,0 +) +g1,943:6630773,7193429 +) +g1,945:7579210,7193429 +g1,945:8843793,7193429 +h1,945:9476084,7193429:0,0,0 +k1,945:32583028,7193429:23106944 +g1,945:32583028,7193429 +) +(1,947:6630773,8514967:25952256,410518,101187 +(1,946:6630773,8514967:0,0,0 +g1,946:6630773,8514967 +g1,946:6630773,8514967 +g1,946:6303093,8514967 +(1,946:6303093,8514967:0,0,0 +) +g1,946:6630773,8514967 +) +g1,947:7263065,8514967 +g1,947:8211503,8514967 +g1,947:11056816,8514967 +g1,947:11689108,8514967 +g1,947:14534419,8514967 +g1,947:17379730,8514967 +k1,947:17379730,8514967:0 +h1,947:19908895,8514967:0,0,0 +k1,947:32583029,8514967:12674134 +g1,947:32583029,8514967 +) +(1,948:6630773,9181145:25952256,404226,6290 +h1,948:6630773,9181145:0,0,0 +h1,948:6946919,9181145:0,0,0 +k1,948:32583029,9181145:25636110 +g1,948:32583029,9181145 +) +(1,952:6630773,9912859:25952256,404226,76021 +(1,950:6630773,9912859:0,0,0 +g1,950:6630773,9912859 +g1,950:6630773,9912859 +g1,950:6303093,9912859 +(1,950:6303093,9912859:0,0,0 +) +g1,950:6630773,9912859 +) +g1,952:7579210,9912859 +g1,952:8843793,9912859 +h1,952:9476084,9912859:0,0,0 +k1,952:32583028,9912859:23106944 +g1,952:32583028,9912859 +) +] +) +g1,953:32583029,9988880 +g1,953:6630773,9988880 +g1,953:6630773,9988880 +g1,953:32583029,9988880 +g1,953:32583029,9988880 +) +h1,953:6630773,10185488:0,0,0 +(1,957:6630773,11551264:25952256,513147,126483 +h1,956:6630773,11551264:983040,0,0 +k1,956:9337328,11551264:235192 +k1,956:10591606,11551264:235193 +k1,956:14013158,11551264:235192 +(1,956:14013158,11551264:0,452978,115847 +r1,1040:17536832,11551264:3523674,568825,115847 +k1,956:14013158,11551264:-3523674 +) +(1,956:14013158,11551264:3523674,452978,115847 +g1,956:14719859,11551264 +g1,956:15774995,11551264 +g1,956:16478419,11551264 +g1,956:17181843,11551264 +h1,956:17533555,11551264:0,411205,112570 +) +k1,956:17772025,11551264:235193 +k1,956:18538714,11551264:235192 +k1,956:21607028,11551264:235193 +k1,956:22977304,11551264:235192 +k1,956:25141877,11551264:235193 +k1,956:26771020,11551264:235192 +k1,956:29517553,11551264:235193 +(1,956:29517553,11551264:0,414482,115847 +r1,1040:29875819,11551264:358266,530329,115847 +k1,956:29517553,11551264:-358266 +) +(1,956:29517553,11551264:358266,414482,115847 +k1,956:29517553,11551264:3277 +h1,956:29872542,11551264:0,411205,112570 +) +k1,956:30111011,11551264:235192 +k1,957:32583029,11551264:0 +) +(1,957:6630773,12392752:25952256,513147,134348 +k1,956:8434324,12392752:218235 +k1,956:10648129,12392752:218234 +k1,956:12317986,12392752:218235 +k1,956:13195513,12392752:218235 +k1,956:14432832,12392752:218234 +k1,956:16661712,12392752:218235 +k1,956:17495985,12392752:218235 +(1,956:17495985,12392752:0,435480,115847 +r1,1040:18557674,12392752:1061689,551327,115847 +k1,956:17495985,12392752:-1061689 +) +(1,956:17495985,12392752:1061689,435480,115847 +k1,956:17495985,12392752:3277 +h1,956:18554397,12392752:0,411205,112570 +) +k1,956:18949578,12392752:218234 +k1,956:21506793,12392752:218235 +k1,956:22384320,12392752:218235 +k1,956:22958414,12392752:218234 +k1,956:25301326,12392752:218235 +k1,956:28705921,12392752:218235 +k1,956:30437381,12392752:218234 +k1,956:32227169,12392752:218235 +k1,956:32583029,12392752:0 +) +(1,957:6630773,13234240:25952256,513147,126483 +g1,956:10243772,13234240 +g1,956:13629361,13234240 +g1,956:15597407,13234240 +g1,956:17082452,13234240 +g1,956:18756896,13234240 +g1,956:20466075,13234240 +g1,956:22178530,13234240 +g1,956:23325410,13234240 +g1,956:24543724,13234240 +g1,956:26319749,13234240 +g1,956:27178270,13234240 +g1,956:28396584,13234240 +(1,956:28396584,13234240:0,459977,115847 +r1,1040:29458273,13234240:1061689,575824,115847 +k1,956:28396584,13234240:-1061689 +) +(1,956:28396584,13234240:1061689,459977,115847 +k1,956:28396584,13234240:3277 +h1,956:29454996,13234240:0,411205,112570 +) +g1,956:29657502,13234240 +k1,957:32583029,13234240:1336934 +g1,957:32583029,13234240 +) +v1,959:6630773,14600016:0,393216,0 +(1,960:6630773,16268172:25952256,2061372,0 +g1,960:6630773,16268172 +g1,960:6303093,16268172 +r1,1040:6401397,16268172:98304,2061372,0 +g1,960:6600626,16268172 +g1,960:6797234,16268172 +[1,960:6797234,16268172:25785795,2061372,0 +(1,960:6797234,15292336:25785795,1085536,298548 +(1,959:6797234,15292336:0,1085536,298548 +r1,1040:8303649,15292336:1506415,1384084,298548 +k1,959:6797234,15292336:-1506415 +) +(1,959:6797234,15292336:1506415,1085536,298548 +) +k1,959:8486972,15292336:183323 +k1,959:9140188,15292336:183323 +k1,959:9855009,15292336:183324 +k1,959:13247630,15292336:183323 +k1,959:14082381,15292336:183323 +k1,959:15679316,15292336:183323 +k1,959:17147145,15292336:183323 +k1,959:17686328,15292336:183323 +k1,959:18863178,15292336:183324 +k1,959:19729386,15292336:183323 +k1,959:21890586,15292336:183323 +k1,959:22733201,15292336:183323 +k1,959:24929790,15292336:183323 +k1,959:26533278,15292336:183323 +k1,959:27248099,15292336:183324 +k1,959:27787282,15292336:183323 +k1,959:29510701,15292336:183323 +k1,959:32583029,15292336:0 +) +(1,960:6797234,16133824:25785795,505283,134348 +g1,959:7647891,16133824 +(1,959:7647891,16133824:0,459977,115847 +r1,1040:9413004,16133824:1765113,575824,115847 +k1,959:7647891,16133824:-1765113 +) +(1,959:7647891,16133824:1765113,459977,115847 +k1,959:7647891,16133824:3277 +h1,959:9409727,16133824:0,411205,112570 +) +g1,959:9785903,16133824 +g1,959:11269638,16133824 +g1,959:13929744,16133824 +g1,959:14938343,16133824 +g1,959:16918185,16133824 +g1,959:18189583,16133824 +g1,959:20063912,16133824 +g1,959:21282226,16133824 +g1,959:24998117,16133824 +g1,959:25813384,16133824 +g1,959:27031698,16133824 +g1,959:28645849,16133824 +k1,960:32583029,16133824:2186713 +g1,960:32583029,16133824 +) +] +g1,960:32583029,16268172 +) +h1,960:6630773,16268172:0,0,0 +(1,963:6630773,17633948:25952256,513147,126483 +h1,962:6630773,17633948:983040,0,0 +g1,962:9530085,17633948 +g1,962:12721033,17633948 +g1,962:13579554,17633948 +g1,962:14871268,17633948 +g1,962:15737653,17633948 +(1,962:15737653,17633948:0,459977,115847 +r1,1040:16799342,17633948:1061689,575824,115847 +k1,962:15737653,17633948:-1061689 +) +(1,962:15737653,17633948:1061689,459977,115847 +k1,962:15737653,17633948:3277 +h1,962:16796065,17633948:0,411205,112570 +) +g1,962:16998571,17633948 +g1,962:20789828,17633948 +g1,962:21648349,17633948 +g1,962:23177959,17633948 +g1,962:24028616,17633948 +g1,962:25957340,17633948 +g1,962:27665208,17633948 +k1,963:32583029,17633948:3651665 +g1,963:32583029,17633948 +) +v1,965:6630773,18824414:0,393216,0 +(1,977:6630773,23170657:25952256,4739459,196608 +g1,977:6630773,23170657 +g1,977:6630773,23170657 +g1,977:6434165,23170657 +(1,977:6434165,23170657:0,4739459,196608 +r1,1040:32779637,23170657:26345472,4936067,196608 +k1,977:6434165,23170657:-26345472 +) +(1,977:6434165,23170657:26345472,4739459,196608 +[1,977:6630773,23170657:25952256,4542851,0 +(1,967:6630773,19032032:25952256,404226,82312 +(1,966:6630773,19032032:0,0,0 +g1,966:6630773,19032032 +g1,966:6630773,19032032 +g1,966:6303093,19032032 +(1,966:6303093,19032032:0,0,0 +) +g1,966:6630773,19032032 +) +g1,967:7263065,19032032 +g1,967:8211503,19032032 +g1,967:9792233,19032032 +g1,967:10740671,19032032 +g1,967:11689109,19032032 +g1,967:12637547,19032032 +h1,967:13269839,19032032:0,0,0 +k1,967:32583029,19032032:19313190 +g1,967:32583029,19032032 +) +(1,968:6630773,19698210:25952256,410518,101187 +h1,968:6630773,19698210:0,0,0 +g1,968:8527647,19698210 +g1,968:9476084,19698210 +g1,968:10424521,19698210 +g1,968:14534415,19698210 +g1,968:15166707,19698210 +g1,968:17063581,19698210 +g1,968:18012018,19698210 +k1,968:18012018,19698210:0 +h1,968:20225038,19698210:0,0,0 +k1,968:32583029,19698210:12357991 +g1,968:32583029,19698210 +) +(1,976:6630773,20429924:25952256,404226,76021 +(1,970:6630773,20429924:0,0,0 +g1,970:6630773,20429924 +g1,970:6630773,20429924 +g1,970:6303093,20429924 +(1,970:6303093,20429924:0,0,0 +) +g1,970:6630773,20429924 +) +g1,976:7579210,20429924 +g1,976:8843793,20429924 +h1,976:9159939,20429924:0,0,0 +k1,976:32583029,20429924:23423090 +g1,976:32583029,20429924 +) +(1,976:6630773,21096102:25952256,404226,76021 +h1,976:6630773,21096102:0,0,0 +g1,976:7579210,21096102 +g1,976:8843793,21096102 +h1,976:9159939,21096102:0,0,0 +k1,976:32583029,21096102:23423090 +g1,976:32583029,21096102 +) +(1,976:6630773,21762280:25952256,404226,76021 +h1,976:6630773,21762280:0,0,0 +g1,976:7579210,21762280 +g1,976:8843793,21762280 +h1,976:9159939,21762280:0,0,0 +k1,976:32583029,21762280:23423090 +g1,976:32583029,21762280 +) +(1,976:6630773,22428458:25952256,404226,76021 +h1,976:6630773,22428458:0,0,0 +g1,976:7579210,22428458 +g1,976:8843793,22428458 +h1,976:9476084,22428458:0,0,0 +k1,976:32583028,22428458:23106944 +g1,976:32583028,22428458 +) +(1,976:6630773,23094636:25952256,404226,76021 +h1,976:6630773,23094636:0,0,0 +g1,976:7579210,23094636 +g1,976:8843793,23094636 +h1,976:9476084,23094636:0,0,0 +k1,976:32583028,23094636:23106944 +g1,976:32583028,23094636 +) +] +) +g1,977:32583029,23170657 +g1,977:6630773,23170657 +g1,977:6630773,23170657 +g1,977:32583029,23170657 +g1,977:32583029,23170657 +) +h1,977:6630773,23367265:0,0,0 +(1,981:6630773,24733041:25952256,505283,134348 +h1,980:6630773,24733041:983040,0,0 +k1,980:8373511,24733041:272110 +k1,980:9745388,24733041:272183 +k1,980:10669000,24733041:272184 +(1,980:10669000,24733041:0,459977,115847 +r1,1040:11730689,24733041:1061689,575824,115847 +k1,980:10669000,24733041:-1061689 +) +(1,980:10669000,24733041:1061689,459977,115847 +k1,980:10669000,24733041:3277 +h1,980:11727412,24733041:0,411205,112570 +) +k1,980:12002872,24733041:272183 +k1,980:13767965,24733041:272183 +k1,980:15106420,24733041:272184 +k1,980:17389248,24733041:272183 +k1,980:18017291,24733041:272183 +k1,980:20143489,24733041:272184 +k1,980:21369221,24733041:272183 +k1,980:23171670,24733041:272183 +k1,980:24095282,24733041:272184 +k1,980:26374177,24733041:272183 +k1,980:28657005,24733041:272183 +k1,980:29580617,24733041:272184 +k1,980:30623503,24733041:272183 +k1,980:32583029,24733041:0 +) +(1,981:6630773,25574529:25952256,513147,134348 +k1,980:7583319,25574529:227718 +k1,980:9095544,25574529:227719 +k1,980:10703450,25574529:227718 +k1,980:11922728,25574529:227718 +k1,980:13216717,25574529:227718 +k1,980:14804963,25574529:227719 +k1,980:15510438,25574529:227718 +k1,980:16606508,25574529:227718 +k1,980:18416266,25574529:227719 +k1,980:19256746,25574529:227718 +k1,980:20936086,25574529:227718 +k1,980:23880928,25574529:227719 +k1,980:25127731,25574529:227718 +k1,980:27035792,25574529:227718 +k1,980:27922802,25574529:227718 +k1,980:29353762,25574529:227719 +k1,980:31714677,25574529:227718 +k1,980:32583029,25574529:0 +) +(1,981:6630773,26416017:25952256,513147,134348 +k1,980:7919960,26416017:184905 +k1,980:10089951,26416017:184905 +k1,980:11605237,26416017:184905 +k1,980:12809227,26416017:184905 +k1,980:15032302,26416017:184905 +k1,980:16897550,26416017:184905 +k1,980:19827102,26416017:184904 +k1,980:22539075,26416017:184905 +k1,980:24735935,26416017:184905 +k1,980:25665984,26416017:184905 +k1,980:26502317,26416017:184905 +k1,980:27885876,26416017:184905 +k1,980:29401162,26416017:184905 +k1,980:30605152,26416017:184905 +k1,980:32583029,26416017:0 +) +(1,981:6630773,27257505:25952256,513147,134348 +k1,980:8702553,27257505:163372 +k1,980:9481963,27257505:163372 +k1,980:11832271,27257505:163372 +k1,980:14038399,27257505:163371 +k1,980:15070123,27257505:163372 +k1,980:17162875,27257505:163372 +k1,980:17682107,27257505:163372 +k1,980:21807786,27257505:163372 +k1,980:23949035,27257505:163372 +k1,980:26155164,27257505:163372 +k1,980:27337620,27257505:163371 +k1,980:28989315,27257505:163372 +k1,980:29811979,27257505:163372 +k1,980:30994436,27257505:163372 +k1,981:32583029,27257505:0 +k1,981:32583029,27257505:0 +) +v1,983:6630773,28447971:0,393216,0 +(1,1040:6630773,44148129:25952256,16093374,196608 +g1,1040:6630773,44148129 +g1,1040:6630773,44148129 +g1,1040:6434165,44148129 +(1,1040:6434165,44148129:0,16093374,196608 +r1,1040:32779637,44148129:26345472,16289982,196608 +k1,1040:6434165,44148129:-26345472 +) +(1,1040:6434165,44148129:26345472,16093374,196608 +[1,1040:6630773,44148129:25952256,15896766,0 +(1,985:6630773,28661881:25952256,410518,76021 +(1,984:6630773,28661881:0,0,0 +g1,984:6630773,28661881 +g1,984:6630773,28661881 +g1,984:6303093,28661881 +(1,984:6303093,28661881:0,0,0 +) +g1,984:6630773,28661881 +) +g1,985:7263065,28661881 +g1,985:8211503,28661881 +g1,985:10108377,28661881 +g1,985:11056814,28661881 +g1,985:12005251,28661881 +h1,985:13585980,28661881:0,0,0 +k1,985:32583028,28661881:18997048 +g1,985:32583028,28661881 +) +(1,986:6630773,29328059:25952256,404226,6290 +h1,986:6630773,29328059:0,0,0 +h1,986:6946919,29328059:0,0,0 +k1,986:32583029,29328059:25636110 +g1,986:32583029,29328059 +) +(1,990:6630773,30059773:25952256,379060,7863 +(1,988:6630773,30059773:0,0,0 +g1,988:6630773,30059773 +g1,988:6630773,30059773 +g1,988:6303093,30059773 +(1,988:6303093,30059773:0,0,0 +) +g1,988:6630773,30059773 +) +g1,990:7579210,30059773 +h1,990:8843793,30059773:0,0,0 +k1,990:32583029,30059773:23739236 +g1,990:32583029,30059773 +) +(1,992:6630773,31381311:25952256,404226,76021 +(1,991:6630773,31381311:0,0,0 +g1,991:6630773,31381311 +g1,991:6630773,31381311 +g1,991:6303093,31381311 +(1,991:6303093,31381311:0,0,0 +) +g1,991:6630773,31381311 +) +g1,992:7263065,31381311 +g1,992:8211503,31381311 +k1,992:8211503,31381311:0 +h1,992:11056814,31381311:0,0,0 +k1,992:32583030,31381311:21526216 +g1,992:32583030,31381311 +) +(1,993:6630773,32047489:25952256,410518,107478 +h1,993:6630773,32047489:0,0,0 +g1,993:8527647,32047489 +g1,993:9476084,32047489 +g1,993:14218270,32047489 +g1,993:14850562,32047489 +g1,993:16115145,32047489 +h1,993:16431291,32047489:0,0,0 +k1,993:32583029,32047489:16151738 +g1,993:32583029,32047489 +) +(1,994:6630773,32713667:25952256,404226,76021 +h1,994:6630773,32713667:0,0,0 +g1,994:6946919,32713667 +g1,994:7263065,32713667 +g1,994:8843794,32713667 +g1,994:9792232,32713667 +h1,994:11689107,32713667:0,0,0 +k1,994:32583029,32713667:20893922 +g1,994:32583029,32713667 +) +(1,995:6630773,33379845:25952256,404226,101187 +h1,995:6630773,33379845:0,0,0 +g1,995:6946919,33379845 +g1,995:7263065,33379845 +k1,995:7263065,33379845:0 +h1,995:9792230,33379845:0,0,0 +k1,995:32583030,33379845:22790800 +g1,995:32583030,33379845 +) +(1,996:6630773,34046023:25952256,404226,76021 +h1,996:6630773,34046023:0,0,0 +h1,996:6946919,34046023:0,0,0 +k1,996:32583029,34046023:25636110 +g1,996:32583029,34046023 +) +(1,1004:6630773,34777737:25952256,404226,76021 +(1,998:6630773,34777737:0,0,0 +g1,998:6630773,34777737 +g1,998:6630773,34777737 +g1,998:6303093,34777737 +(1,998:6303093,34777737:0,0,0 +) +g1,998:6630773,34777737 +) +g1,1004:7579210,34777737 +g1,1004:8843793,34777737 +h1,1004:9159939,34777737:0,0,0 +k1,1004:32583029,34777737:23423090 +g1,1004:32583029,34777737 +) +(1,1004:6630773,35443915:25952256,404226,76021 +h1,1004:6630773,35443915:0,0,0 +g1,1004:7579210,35443915 +g1,1004:8843793,35443915 +g1,1004:9159939,35443915 +g1,1004:9792231,35443915 +h1,1004:10424522,35443915:0,0,0 +k1,1004:32583030,35443915:22158508 +g1,1004:32583030,35443915 +) +(1,1004:6630773,36110093:25952256,404226,76021 +h1,1004:6630773,36110093:0,0,0 +g1,1004:7579210,36110093 +g1,1004:8843793,36110093 +g1,1004:9159939,36110093 +g1,1004:9792231,36110093 +g1,1004:10740668,36110093 +g1,1004:11056814,36110093 +h1,1004:11372960,36110093:0,0,0 +k1,1004:32583028,36110093:21210068 +g1,1004:32583028,36110093 +) +(1,1004:6630773,36776271:25952256,404226,76021 +h1,1004:6630773,36776271:0,0,0 +g1,1004:7579210,36776271 +g1,1004:8843793,36776271 +g1,1004:9159939,36776271 +g1,1004:9792231,36776271 +g1,1004:10740668,36776271 +g1,1004:11056814,36776271 +g1,1004:11689106,36776271 +h1,1004:12321397,36776271:0,0,0 +k1,1004:32583029,36776271:20261632 +g1,1004:32583029,36776271 +) +(1,1004:6630773,37442449:25952256,404226,76021 +h1,1004:6630773,37442449:0,0,0 +g1,1004:7579210,37442449 +g1,1004:8843793,37442449 +g1,1004:9159939,37442449 +g1,1004:9792231,37442449 +g1,1004:10740668,37442449 +g1,1004:11056814,37442449 +g1,1004:11689106,37442449 +g1,1004:12637543,37442449 +h1,1004:13269834,37442449:0,0,0 +k1,1004:32583030,37442449:19313196 +g1,1004:32583030,37442449 +) +(1,1006:6630773,38763987:25952256,404226,6290 +(1,1005:6630773,38763987:0,0,0 +g1,1005:6630773,38763987 +g1,1005:6630773,38763987 +g1,1005:6303093,38763987 +(1,1005:6303093,38763987:0,0,0 +) +g1,1005:6630773,38763987 +) +h1,1006:6946919,38763987:0,0,0 +k1,1006:32583029,38763987:25636110 +g1,1006:32583029,38763987 +) +(1,1010:6630773,39495701:25952256,404226,76021 +(1,1008:6630773,39495701:0,0,0 +g1,1008:6630773,39495701 +g1,1008:6630773,39495701 +g1,1008:6303093,39495701 +(1,1008:6303093,39495701:0,0,0 +) +g1,1008:6630773,39495701 +) +g1,1010:7579210,39495701 +g1,1010:8843793,39495701 +g1,1010:9159939,39495701 +g1,1010:9792231,39495701 +g1,1010:10740668,39495701 +g1,1010:11056814,39495701 +g1,1010:11689106,39495701 +g1,1010:12637543,39495701 +h1,1010:13269834,39495701:0,0,0 +k1,1010:32583030,39495701:19313196 +g1,1010:32583030,39495701 +) +(1,1012:6630773,40817239:25952256,410518,107478 +(1,1011:6630773,40817239:0,0,0 +g1,1011:6630773,40817239 +g1,1011:6630773,40817239 +g1,1011:6303093,40817239 +(1,1011:6303093,40817239:0,0,0 +) +g1,1011:6630773,40817239 +) +g1,1012:7263065,40817239 +g1,1012:8843794,40817239 +g1,1012:11056814,40817239 +g1,1012:12005251,40817239 +g1,1012:12953688,40817239 +g1,1012:14850562,40817239 +g1,1012:17695873,40817239 +g1,1012:18328165,40817239 +g1,1012:19908894,40817239 +g1,1012:22121914,40817239 +k1,1012:22121914,40817239:23593 +h1,1012:24042381,40817239:0,0,0 +k1,1012:32583029,40817239:8540648 +g1,1012:32583029,40817239 +) +(1,1013:6630773,41483417:25952256,404226,107478 +h1,1013:6630773,41483417:0,0,0 +g1,1013:7263065,41483417 +g1,1013:8211503,41483417 +k1,1013:8211503,41483417:0 +h1,1013:13902126,41483417:0,0,0 +k1,1013:32583030,41483417:18680904 +g1,1013:32583030,41483417 +) +(1,1014:6630773,42149595:25952256,410518,107478 +h1,1014:6630773,42149595:0,0,0 +g1,1014:8527647,42149595 +g1,1014:9476084,42149595 +g1,1014:14218270,42149595 +g1,1014:14850562,42149595 +g1,1014:16115145,42149595 +h1,1014:16431291,42149595:0,0,0 +k1,1014:32583029,42149595:16151738 +g1,1014:32583029,42149595 +) +(1,1015:6630773,42815773:25952256,404226,76021 +h1,1015:6630773,42815773:0,0,0 +g1,1015:6946919,42815773 +g1,1015:7263065,42815773 +g1,1015:8843794,42815773 +g1,1015:9792232,42815773 +h1,1015:11689107,42815773:0,0,0 +k1,1015:32583029,42815773:20893922 +g1,1015:32583029,42815773 +) +(1,1016:6630773,43481951:25952256,404226,101187 +h1,1016:6630773,43481951:0,0,0 +g1,1016:6946919,43481951 +g1,1016:7263065,43481951 +k1,1016:7263065,43481951:0 +h1,1016:9792230,43481951:0,0,0 +k1,1016:32583030,43481951:22790800 +g1,1016:32583030,43481951 +) +(1,1017:6630773,44148129:25952256,404226,76021 +h1,1017:6630773,44148129:0,0,0 +h1,1017:6946919,44148129:0,0,0 +k1,1017:32583029,44148129:25636110 +g1,1017:32583029,44148129 +) +] +) +g1,1040:32583029,44148129 +g1,1040:6630773,44148129 +g1,1040:6630773,44148129 +g1,1040:32583029,44148129 +g1,1040:32583029,44148129 +) +] +(1,1040:32583029,45706769:0,0,0 +g1,1040:32583029,45706769 +) +) +] +(1,1040:6630773,47279633:25952256,0,0 +h1,1040:6630773,47279633:25952256,0,0 +) +] +(1,1040:4262630,4025873:0,0,0 +[1,1040:-473656,4025873:0,0,0 +(1,1040:-473656,-710413:0,0,0 +(1,1040:-473656,-710413:0,0,0 +g1,1040:-473656,-710413 +) +g1,1040:-473656,-710413 +) +] +) +] +!22574 +}24 +Input:370:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:371:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:372:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:373:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:374:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:375:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:376:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:377:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:378:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:379:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:380:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:381:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:382:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:383:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:384:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:385:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:386:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1558 +{25 +[1,1076:4262630,47279633:28320399,43253760,0 +(1,1076:4262630,4025873:0,0,0 +[1,1076:-473656,4025873:0,0,0 +(1,1076:-473656,-710413:0,0,0 +(1,1076:-473656,-644877:0,0,0 +k1,1076:-473656,-644877:-65536 ) -] -(1,19103:32583029,45706769:0,0,0 -g1,19103:32583029,45706769 +(1,1076:-473656,4736287:0,0,0 +k1,1076:-473656,4736287:5209943 ) +g1,1076:-473656,-710413 ) ] -(1,19103:6630773,47279633:25952256,0,0 -h1,19103:6630773,47279633:25952256,0,0 ) -] -(1,19103:4262630,4025873:0,0,0 -[1,19103:-473656,4025873:0,0,0 -(1,19103:-473656,-710413:0,0,0 -(1,19103:-473656,-710413:0,0,0 -g1,19103:-473656,-710413 +[1,1076:6630773,47279633:25952256,43253760,0 +[1,1076:6630773,4812305:25952256,786432,0 +(1,1076:6630773,4812305:25952256,505283,134348 +(1,1076:6630773,4812305:25952256,505283,134348 +g1,1076:3078558,4812305 +[1,1076:3078558,4812305:0,0,0 +(1,1076:3078558,2439708:0,1703936,0 +k1,1076:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,1076:2537886,2439708:1179648,16384,0 ) -g1,19103:-473656,-710413 +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,1076:3078558,1915420:16384,1179648,0 ) -] +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) ] -!4249 -}373 -!11 -{374 -[1,19106:4262630,47279633:28320399,43253760,11795 -(1,19106:4262630,4025873:0,0,0 -[1,19106:-473656,4025873:0,0,0 -(1,19106:-473656,-710413:0,0,0 -(1,19106:-473656,-644877:0,0,0 -k1,19106:-473656,-644877:-65536 ) -(1,19106:-473656,4736287:0,0,0 -k1,19106:-473656,4736287:5209943 ) -g1,19106:-473656,-710413 ) ] +[1,1076:3078558,4812305:0,0,0 +(1,1076:3078558,2439708:0,1703936,0 +g1,1076:29030814,2439708 +g1,1076:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,1076:36151628,1915420:16384,1179648,0 ) -[1,19106:6630773,47279633:25952256,43253760,11795 -[1,19106:6630773,4812305:25952256,786432,0 -(1,19106:6630773,4812305:25952256,0,0 -(1,19106:6630773,4812305:25952256,0,0 -g1,19106:3078558,4812305 -[1,19106:3078558,4812305:0,0,0 -(1,19106:3078558,2439708:0,1703936,0 -k1,19106:1358238,2439708:-1720320 -(1,19106:1358238,2439708:1720320,1703936,0 -(1,19106:1358238,2439708:1179648,16384,0 -r1,19106:2537886,2439708:1179648,16384,0 -) -g1,19106:3062174,2439708 -(1,19106:3062174,2439708:16384,1703936,0 -[1,19106:3062174,2439708:25952256,1703936,0 -(1,19106:3062174,1915420:25952256,1179648,0 -(1,19106:3062174,1915420:16384,1179648,0 -r1,19106:3078558,1915420:16384,1179648,0 -) -k1,19106:29014430,1915420:25935872 -g1,19106:29014430,1915420 +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) ] ) +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,1076:37855564,2439708:1179648,16384,0 ) ) -] -[1,19106:3078558,4812305:0,0,0 -(1,19106:3078558,2439708:0,1703936,0 -g1,19106:29030814,2439708 -g1,19106:36135244,2439708 -(1,19106:36135244,2439708:1720320,1703936,0 -(1,19106:36135244,2439708:16384,1703936,0 -[1,19106:36135244,2439708:25952256,1703936,0 -(1,19106:36135244,1915420:25952256,1179648,0 -(1,19106:36135244,1915420:16384,1179648,0 -r1,19106:36151628,1915420:16384,1179648,0 -) -k1,19106:62087500,1915420:25935872 -g1,19106:62087500,1915420 +k1,1076:3078556,2439708:-34777008 ) ] +[1,1076:3078558,4812305:0,0,0 +(1,1076:3078558,49800853:0,16384,2228224 +k1,1076:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,1076:2537886,49800853:1179648,16384,0 ) -g1,19106:36675916,2439708 -(1,19106:36675916,2439708:1179648,16384,0 -r1,19106:37855564,2439708:1179648,16384,0 -) -) -k1,19106:3078556,2439708:-34777008 +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,1076:3078558,51504789:16384,1179648,0 ) -] -[1,19106:3078558,4812305:0,0,0 -(1,19106:3078558,49800853:0,16384,2228224 -k1,19106:1358238,49800853:-1720320 -(1,19106:1358238,49800853:1720320,16384,2228224 -(1,19106:1358238,49800853:1179648,16384,0 -r1,19106:2537886,49800853:1179648,16384,0 -) -g1,19106:3062174,49800853 -(1,19106:3062174,52029077:16384,1703936,0 -[1,19106:3062174,52029077:25952256,1703936,0 -(1,19106:3062174,51504789:25952256,1179648,0 -(1,19106:3062174,51504789:16384,1179648,0 -r1,19106:3078558,51504789:16384,1179648,0 -) -k1,19106:29014430,51504789:25935872 -g1,19106:29014430,51504789 +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) ] ) ) ) ] -[1,19106:3078558,4812305:0,0,0 -(1,19106:3078558,49800853:0,16384,2228224 -g1,19106:29030814,49800853 -g1,19106:36135244,49800853 -(1,19106:36135244,49800853:1720320,16384,2228224 -(1,19106:36135244,52029077:16384,1703936,0 -[1,19106:36135244,52029077:25952256,1703936,0 -(1,19106:36135244,51504789:25952256,1179648,0 -(1,19106:36135244,51504789:16384,1179648,0 -r1,19106:36151628,51504789:16384,1179648,0 -) -k1,19106:62087500,51504789:25935872 -g1,19106:62087500,51504789 -) -] -) -g1,19106:36675916,49800853 -(1,19106:36675916,49800853:1179648,16384,0 -r1,19106:37855564,49800853:1179648,16384,0 -) -) -k1,19106:3078556,49800853:-34777008 +[1,1076:3078558,4812305:0,0,0 +(1,1076:3078558,49800853:0,16384,2228224 +g1,1076:29030814,49800853 +g1,1076:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,1076:36151628,51504789:16384,1179648,0 +) +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 +) +] +) +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,1076:37855564,49800853:1179648,16384,0 +) +) +k1,1076:3078556,49800853:-34777008 +) +] +g1,1076:6630773,4812305 +k1,1076:18771974,4812305:11344283 +g1,1076:20158715,4812305 +g1,1076:20807521,4812305 +g1,1076:24121676,4812305 +g1,1076:28605649,4812305 +g1,1076:30015328,4812305 +) +) +] +[1,1076:6630773,45706769:25952256,40108032,0 +(1,1076:6630773,45706769:25952256,40108032,0 +(1,1076:6630773,45706769:0,0,0 +g1,1076:6630773,45706769 +) +[1,1076:6630773,45706769:25952256,40108032,0 +v1,1040:6630773,6254097:0,393216,0 +(1,1040:6630773,14641308:25952256,8780427,196608 +g1,1040:6630773,14641308 +g1,1040:6630773,14641308 +g1,1040:6434165,14641308 +(1,1040:6434165,14641308:0,8780427,196608 +r1,1076:32779637,14641308:26345472,8977035,196608 +k1,1040:6434165,14641308:-26345472 +) +(1,1040:6434165,14641308:26345472,8780427,196608 +[1,1040:6630773,14641308:25952256,8583819,0 +(1,1025:6630773,6461715:25952256,404226,76021 +(1,1019:6630773,6461715:0,0,0 +g1,1019:6630773,6461715 +g1,1019:6630773,6461715 +g1,1019:6303093,6461715 +(1,1019:6303093,6461715:0,0,0 +) +g1,1019:6630773,6461715 +) +g1,1025:7579210,6461715 +g1,1025:8843793,6461715 +g1,1025:9476085,6461715 +g1,1025:10108377,6461715 +g1,1025:10740669,6461715 +g1,1025:11372961,6461715 +h1,1025:11689107,6461715:0,0,0 +k1,1025:32583029,6461715:20893922 +g1,1025:32583029,6461715 +) +(1,1025:6630773,7127893:25952256,404226,76021 +h1,1025:6630773,7127893:0,0,0 +g1,1025:7579210,7127893 +g1,1025:8843793,7127893 +g1,1025:9159939,7127893 +g1,1025:9792231,7127893 +g1,1025:10740668,7127893 +g1,1025:11056814,7127893 +g1,1025:11689106,7127893 +g1,1025:12005252,7127893 +g1,1025:12637544,7127893 +g1,1025:12953690,7127893 +h1,1025:13269836,7127893:0,0,0 +k1,1025:32583028,7127893:19313192 +g1,1025:32583028,7127893 +) +(1,1025:6630773,7794071:25952256,404226,76021 +h1,1025:6630773,7794071:0,0,0 +g1,1025:7579210,7794071 +g1,1025:8843793,7794071 +g1,1025:9159939,7794071 +g1,1025:9792231,7794071 +g1,1025:10740668,7794071 +g1,1025:11056814,7794071 +g1,1025:11689106,7794071 +g1,1025:12005252,7794071 +g1,1025:12637544,7794071 +g1,1025:12953690,7794071 +h1,1025:13269836,7794071:0,0,0 +k1,1025:32583028,7794071:19313192 +g1,1025:32583028,7794071 +) +(1,1025:6630773,8460249:25952256,404226,76021 +h1,1025:6630773,8460249:0,0,0 +g1,1025:7579210,8460249 +g1,1025:8843793,8460249 +g1,1025:9159939,8460249 +g1,1025:9792231,8460249 +g1,1025:10740668,8460249 +g1,1025:11056814,8460249 +g1,1025:11689106,8460249 +g1,1025:12637543,8460249 +g1,1025:12953689,8460249 +h1,1025:13269835,8460249:0,0,0 +k1,1025:32583029,8460249:19313194 +g1,1025:32583029,8460249 +) +(1,1025:6630773,9126427:25952256,404226,76021 +h1,1025:6630773,9126427:0,0,0 +g1,1025:7579210,9126427 +g1,1025:8843793,9126427 +g1,1025:9159939,9126427 +g1,1025:9792231,9126427 +g1,1025:10740668,9126427 +g1,1025:11056814,9126427 +g1,1025:11689106,9126427 +g1,1025:12637543,9126427 +h1,1025:13269834,9126427:0,0,0 +k1,1025:32583030,9126427:19313196 +g1,1025:32583030,9126427 +) +(1,1027:6630773,10447965:25952256,404226,6290 +(1,1026:6630773,10447965:0,0,0 +g1,1026:6630773,10447965 +g1,1026:6630773,10447965 +g1,1026:6303093,10447965 +(1,1026:6303093,10447965:0,0,0 +) +g1,1026:6630773,10447965 +) +h1,1027:6946919,10447965:0,0,0 +k1,1027:32583029,10447965:25636110 +g1,1027:32583029,10447965 +) +(1,1031:6630773,11179679:25952256,404226,76021 +(1,1029:6630773,11179679:0,0,0 +g1,1029:6630773,11179679 +g1,1029:6630773,11179679 +g1,1029:6303093,11179679 +(1,1029:6303093,11179679:0,0,0 +) +g1,1029:6630773,11179679 +) +g1,1031:7579210,11179679 +g1,1031:8843793,11179679 +g1,1031:9159939,11179679 +g1,1031:9792231,11179679 +g1,1031:10740668,11179679 +g1,1031:11056814,11179679 +g1,1031:11689106,11179679 +g1,1031:12637543,11179679 +h1,1031:13269834,11179679:0,0,0 +k1,1031:32583030,11179679:19313196 +g1,1031:32583030,11179679 +) +(1,1033:6630773,12501217:25952256,410518,101187 +(1,1032:6630773,12501217:0,0,0 +g1,1032:6630773,12501217 +g1,1032:6630773,12501217 +g1,1032:6303093,12501217 +(1,1032:6303093,12501217:0,0,0 +) +g1,1032:6630773,12501217 +) +g1,1033:7263065,12501217 +g1,1033:7895357,12501217 +g1,1033:11372960,12501217 +g1,1033:14850563,12501217 +g1,1033:15799000,12501217 +g1,1033:18644311,12501217 +g1,1033:19908894,12501217 +k1,1033:19908894,12501217:14156 +h1,1033:22136070,12501217:0,0,0 +k1,1033:32583029,12501217:10446959 +g1,1033:32583029,12501217 +) +(1,1034:6630773,13167395:25952256,404226,6290 +h1,1034:6630773,13167395:0,0,0 +g1,1034:7263065,13167395 +g1,1034:8211503,13167395 +h1,1034:9159941,13167395:0,0,0 +k1,1034:32583029,13167395:23423088 +g1,1034:32583029,13167395 +) +(1,1035:6630773,13833573:25952256,404226,6290 +h1,1035:6630773,13833573:0,0,0 +h1,1035:6946919,13833573:0,0,0 +k1,1035:32583029,13833573:25636110 +g1,1035:32583029,13833573 +) +(1,1039:6630773,14565287:25952256,404226,76021 +(1,1037:6630773,14565287:0,0,0 +g1,1037:6630773,14565287 +g1,1037:6630773,14565287 +g1,1037:6303093,14565287 +(1,1037:6303093,14565287:0,0,0 +) +g1,1037:6630773,14565287 +) +g1,1039:7579210,14565287 +g1,1039:8843793,14565287 +g1,1039:9159939,14565287 +g1,1039:9792231,14565287 +g1,1039:10740668,14565287 +g1,1039:11056814,14565287 +g1,1039:11689106,14565287 +g1,1039:12637543,14565287 +h1,1039:13269834,14565287:0,0,0 +k1,1039:32583030,14565287:19313196 +g1,1039:32583030,14565287 +) +] +) +g1,1040:32583029,14641308 +g1,1040:6630773,14641308 +g1,1040:6630773,14641308 +g1,1040:32583029,14641308 +g1,1040:32583029,14641308 +) +h1,1040:6630773,14837916:0,0,0 +(1,1044:6630773,16203692:25952256,505283,126483 +h1,1043:6630773,16203692:983040,0,0 +k1,1043:8511971,16203692:270323 +k1,1043:9801378,16203692:270322 +k1,1043:12826179,16203692:270323 +k1,1043:15067169,16203692:270322 +k1,1043:16205844,16203692:270323 +k1,1043:17989392,16203692:270322 +(1,1043:17989392,16203692:0,452978,122846 +r1,1076:24678472,16203692:6689080,575824,122846 +k1,1043:17989392,16203692:-6689080 +) +(1,1043:17989392,16203692:6689080,452978,122846 +g1,1043:23268347,16203692 +g1,1043:23971771,16203692 +h1,1043:24675195,16203692:0,411205,112570 +) +k1,1043:24948795,16203692:270323 +k1,1043:25870545,16203692:270322 +k1,1043:27783200,16203692:270323 +k1,1043:28409382,16203692:270322 +k1,1043:29962900,16203692:270323 +k1,1043:32583029,16203692:0 +) +(1,1044:6630773,17045180:25952256,513147,134348 +k1,1043:8783567,17045180:174917 +k1,1043:10352434,17045180:174916 +k1,1043:10883211,17045180:174917 +k1,1043:13998073,17045180:174917 +k1,1043:14832282,17045180:174917 +k1,1043:16026283,17045180:174916 +k1,1043:17854673,17045180:174917 +k1,1043:20042856,17045180:174917 +k1,1043:20903934,17045180:174916 +k1,1043:23056728,17045180:174917 +(1,1043:23056728,17045180:0,414482,115847 +r1,1076:23414994,17045180:358266,530329,115847 +k1,1043:23056728,17045180:-358266 +) +(1,1043:23056728,17045180:358266,414482,115847 +k1,1043:23056728,17045180:3277 +h1,1043:23411717,17045180:0,411205,112570 +) +k1,1043:23763581,17045180:174917 +k1,1043:25730251,17045180:174916 +k1,1043:27108409,17045180:174917 +k1,1043:29047555,17045180:174917 +k1,1043:29753969,17045180:174917 +k1,1043:31263853,17045180:174916 +k1,1043:32124932,17045180:174917 +k1,1043:32583029,17045180:0 +) +(1,1044:6630773,17886668:25952256,513147,134348 +k1,1043:9257592,17886668:153490 +k1,1043:10695589,17886668:153491 +k1,1043:12315775,17886668:153490 +k1,1043:13488351,17886668:153491 +k1,1043:15008922,17886668:153490 +k1,1043:16860451,17886668:153491 +(1,1043:16860451,17886668:0,414482,115847 +r1,1076:17218717,17886668:358266,530329,115847 +k1,1043:16860451,17886668:-358266 +) +(1,1043:16860451,17886668:358266,414482,115847 +k1,1043:16860451,17886668:3277 +h1,1043:17215440,17886668:0,411205,112570 +) +k1,1043:17372207,17886668:153490 +k1,1043:18057195,17886668:153491 +k1,1043:18981388,17886668:153490 +k1,1043:21131761,17886668:153491 +k1,1043:23263128,17886668:153490 +k1,1043:24075911,17886668:153491 +k1,1043:26242667,17886668:153490 +k1,1043:27816323,17886668:153491 +k1,1043:29102275,17886668:153490 +k1,1043:30003532,17886668:153491 +k1,1043:32583029,17886668:0 +) +(1,1044:6630773,18728156:25952256,505283,134348 +g1,1043:9812545,18728156 +g1,1043:11405725,18728156 +(1,1043:11405725,18728156:0,452978,115847 +r1,1076:14929397,18728156:3523672,568825,115847 +k1,1043:11405725,18728156:-3523672 +) +(1,1043:11405725,18728156:3523672,452978,115847 +k1,1043:11405725,18728156:3277 +h1,1043:14926120,18728156:0,411205,112570 +) +g1,1043:15128626,18728156 +g1,1043:18102649,18728156 +g1,1043:18953306,18728156 +(1,1043:18953306,18728156:0,452978,115847 +r1,1076:19311572,18728156:358266,568825,115847 +k1,1043:18953306,18728156:-358266 +) +(1,1043:18953306,18728156:358266,452978,115847 +k1,1043:18953306,18728156:3277 +h1,1043:19308295,18728156:0,411205,112570 +) +k1,1044:32583029,18728156:13097787 +g1,1044:32583029,18728156 +) +v1,1045:6630773,20093932:0,393216,0 +(1,1049:6630773,27001597:25952256,7300881,0 +g1,1049:6630773,27001597 +g1,1049:6303093,27001597 +r1,1076:6401397,27001597:98304,7300881,0 +g1,1049:6600626,27001597 +g1,1049:6797234,27001597 +[1,1049:6797234,27001597:25785795,7300881,0 +(1,1047:6797234,20984698:25785795,1283982,196608 +(1,1045:6797234,20984698:0,1283982,196608 +r1,1076:8400153,20984698:1602919,1480590,196608 +k1,1045:6797234,20984698:-1602919 +) +(1,1045:6797234,20984698:1602919,1283982,196608 +) +k1,1045:8622529,20984698:222376 +k1,1045:8622529,20984698:0 +k1,1046:10391554,20984698:222375 +k1,1046:11226692,20984698:222376 +k1,1046:12468152,20984698:222375 +k1,1046:14863702,20984698:222376 +k1,1046:16653699,20984698:222376 +k1,1046:17895159,20984698:222375 +k1,1046:19972859,20984698:222376 +k1,1046:23360624,20984698:222376 +k1,1046:24774444,20984698:222375 +k1,1046:25903183,20984698:222376 +k1,1046:26776986,20984698:222375 +k1,1046:30664135,20984698:222376 +k1,1046:32583029,20984698:0 +) +(1,1047:6797234,21826186:25785795,513147,115847 +k1,1046:8027968,21826186:211649 +k1,1046:11018344,21826186:211649 +k1,1046:12910336,21826186:211649 +k1,1046:15147703,21826186:211649 +k1,1046:16926973,21826186:211649 +k1,1046:17754660,21826186:211649 +k1,1046:19417931,21826186:211649 +k1,1046:21170331,21826186:211649 +k1,1046:22009815,21826186:211649 +k1,1046:23240549,21826186:211649 +k1,1046:24948385,21826186:211649 +k1,1046:27130702,21826186:211649 +k1,1046:29371346,21826186:211649 +(1,1046:29371346,21826186:0,452978,115847 +r1,1076:31839883,21826186:2468537,568825,115847 +k1,1046:29371346,21826186:-2468537 +) +(1,1046:29371346,21826186:2468537,452978,115847 +k1,1046:29371346,21826186:3277 +h1,1046:31836606,21826186:0,411205,112570 +) +k1,1046:32051532,21826186:211649 +k1,1046:32583029,21826186:0 +) +(1,1047:6797234,22667674:25785795,505283,126483 +k1,1046:8516024,22667674:205564 +k1,1046:10731578,22667674:205565 +k1,1046:11956227,22667674:205564 +k1,1046:13503969,22667674:205565 +k1,1046:14360961,22667674:205564 +k1,1046:16282259,22667674:205565 +k1,1046:20545812,22667674:205564 +k1,1046:22762021,22667674:205564 +k1,1046:25184014,22667674:205565 +k1,1046:26643282,22667674:205564 +k1,1046:27953129,22667674:205565 +k1,1046:29356036,22667674:205564 +k1,1047:32583029,22667674:0 +) +(1,1047:6797234,23509162:25785795,513147,126483 +(1,1046:6797234,23509162:0,452978,115847 +r1,1076:9265771,23509162:2468537,568825,115847 +k1,1046:6797234,23509162:-2468537 +) +(1,1046:6797234,23509162:2468537,452978,115847 +k1,1046:6797234,23509162:3277 +h1,1046:9262494,23509162:0,411205,112570 +) +k1,1046:9416908,23509162:151137 +k1,1046:13084708,23509162:151138 +k1,1046:13887273,23509162:151137 +k1,1046:16841385,23509162:151137 +k1,1046:18694492,23509162:151137 +k1,1046:21860941,23509162:151138 +k1,1046:23505644,23509162:151137 +k1,1046:24342943,23509162:151137 +(1,1046:24342943,23509162:0,452978,115847 +r1,1076:24701209,23509162:358266,568825,115847 +k1,1046:24342943,23509162:-358266 +) +(1,1046:24342943,23509162:358266,452978,115847 +k1,1046:24342943,23509162:3277 +h1,1046:24697932,23509162:0,411205,112570 +) +k1,1046:25026017,23509162:151138 +k1,1046:25860039,23509162:151137 +k1,1046:27129220,23509162:151137 +k1,1046:28932520,23509162:151137 +k1,1046:29742950,23509162:151138 +k1,1046:30913172,23509162:151137 +k1,1046:32583029,23509162:0 +) +(1,1047:6797234,24350650:25785795,505283,126483 +g1,1046:8490029,24350650 +g1,1046:9375420,24350650 +(1,1046:9375420,24350650:0,452978,122846 +r1,1076:16064500,24350650:6689080,575824,122846 +k1,1046:9375420,24350650:-6689080 +) +(1,1046:9375420,24350650:6689080,452978,122846 +g1,1046:14654375,24350650 +g1,1046:15357799,24350650 +h1,1046:16061223,24350650:0,411205,112570 +) +g1,1046:16437399,24350650 +g1,1046:17398156,24350650 +k1,1047:32583029,24350650:11454564 +g1,1047:32583029,24350650 +) +(1,1049:6797234,25192138:25785795,505283,134348 +h1,1048:6797234,25192138:983040,0,0 +k1,1048:8680789,25192138:272680 +k1,1048:10156710,25192138:272680 +k1,1048:11970141,25192138:272680 +k1,1048:13261907,25192138:272681 +k1,1048:15030774,25192138:272680 +k1,1048:18295173,25192138:272680 +k1,1048:20698428,25192138:272680 +k1,1048:21780478,25192138:272680 +k1,1048:23990402,25192138:272680 +k1,1048:24945968,25192138:272681 +k1,1048:28292942,25192138:272680 +k1,1048:29637791,25192138:272680 +k1,1048:30929556,25192138:272680 +k1,1048:32583029,25192138:0 +) +(1,1049:6797234,26033626:25785795,513147,134348 +k1,1048:9915219,26033626:133475 +k1,1048:11152975,26033626:133474 +k1,1048:12034216,26033626:133475 +k1,1048:13680917,26033626:133475 +k1,1048:14762043,26033626:133475 +k1,1048:18217537,26033626:133474 +k1,1048:22322494,26033626:133475 +k1,1048:24698611,26033626:133475 +k1,1048:26328273,26033626:133475 +k1,1048:27746253,26033626:133474 +k1,1048:29372638,26033626:133475 +k1,1048:30572384,26033626:133475 +k1,1048:32583029,26033626:0 +) +(1,1049:6797234,26875114:25785795,505283,126483 +g1,1048:8015548,26875114 +g1,1048:11053797,26875114 +k1,1049:32583029,26875114:19182388 +g1,1049:32583029,26875114 +) +] +g1,1049:32583029,27001597 +) +h1,1049:6630773,27001597:0,0,0 +v1,1052:6630773,28367373:0,393216,0 +(1,1072:6630773,41506038:25952256,13531881,0 +g1,1072:6630773,41506038 +g1,1072:6303093,41506038 +r1,1076:6401397,41506038:98304,13531881,0 +g1,1072:6600626,41506038 +g1,1072:6797234,41506038 +[1,1072:6797234,41506038:25785795,13531881,0 +(1,1053:6797234,29258139:25785795,1283982,196608 +(1,1052:6797234,29258139:0,1283982,196608 +r1,1076:9362479,29258139:2565245,1480590,196608 +k1,1052:6797234,29258139:-2565245 +) +(1,1052:6797234,29258139:2565245,1283982,196608 +) +k1,1052:9591523,29258139:229044 +k1,1052:10448402,29258139:229044 +k1,1052:11696531,29258139:229044 +k1,1052:14917293,29258139:229043 +k1,1052:17001661,29258139:229044 +k1,1052:18099057,29258139:229044 +k1,1052:19988783,29258139:229044 +k1,1052:21236912,29258139:229044 +k1,1052:22558441,29258139:229044 +k1,1052:23454641,29258139:229044 +(1,1052:23454641,29258139:0,452978,115847 +r1,1076:25219754,29258139:1765113,568825,115847 +k1,1052:23454641,29258139:-1765113 +) +(1,1052:23454641,29258139:1765113,452978,115847 +k1,1052:23454641,29258139:3277 +h1,1052:25216477,29258139:0,411205,112570 +) +k1,1052:25448798,29258139:229044 +k1,1052:28105295,29258139:229043 +k1,1052:28690199,29258139:229044 +k1,1052:30897120,29258139:229044 +k1,1052:31812326,29258139:229044 +k1,1052:32583029,29258139:0 +) +(1,1053:6797234,30099627:25785795,505283,134348 +k1,1052:10082572,30099627:213010 +k1,1052:10947010,30099627:213010 +k1,1052:11948418,30099627:213010 +k1,1052:15442160,30099627:213010 +(1,1052:15442160,30099627:0,452978,122846 +r1,1076:18965832,30099627:3523672,575824,122846 +k1,1052:15442160,30099627:-3523672 +) +(1,1052:15442160,30099627:3523672,452978,122846 +k1,1052:15442160,30099627:3277 +h1,1052:18962555,30099627:0,411205,112570 +) +k1,1052:19352512,30099627:213010 +k1,1052:20840197,30099627:213010 +k1,1052:22072292,30099627:213010 +k1,1052:25277021,30099627:213010 +k1,1052:27358462,30099627:213010 +k1,1052:28762917,30099627:213010 +k1,1052:31286071,30099627:213010 +k1,1052:32583029,30099627:0 +) +(1,1053:6797234,30941115:25785795,513147,134348 +k1,1052:8010538,30941115:194219 +k1,1052:9377197,30941115:194220 +k1,1052:13233568,30941115:194219 +k1,1052:14419347,30941115:194219 +k1,1052:17918548,30941115:194220 +k1,1052:19488368,30941115:194219 +k1,1052:21380625,30941115:194219 +k1,1052:22593930,30941115:194220 +k1,1052:24801415,30941115:194219 +k1,1052:25662790,30941115:194219 +(1,1052:25662790,30941115:0,414482,115847 +r1,1076:26021056,30941115:358266,530329,115847 +k1,1052:25662790,30941115:-358266 +) +(1,1052:25662790,30941115:358266,414482,115847 +k1,1052:25662790,30941115:3277 +h1,1052:26017779,30941115:0,411205,112570 +) +k1,1052:26215276,30941115:194220 +k1,1052:26940992,30941115:194219 +k1,1052:28291921,30941115:194219 +k1,1052:29169026,30941115:194220 +k1,1052:31187112,30941115:194219 +k1,1052:32583029,30941115:0 +) +(1,1053:6797234,31782603:25785795,513147,134348 +k1,1052:8064391,31782603:248072 +k1,1052:10570178,31782603:248072 +k1,1052:11579778,31782603:248072 +k1,1052:14824810,31782603:248071 +k1,1052:15724310,31782603:248072 +(1,1052:15724310,31782603:0,414482,115847 +r1,1076:16082576,31782603:358266,530329,115847 +k1,1052:15724310,31782603:-358266 +) +(1,1052:15724310,31782603:358266,414482,115847 +k1,1052:15724310,31782603:3277 +h1,1052:16079299,31782603:0,411205,112570 +) +k1,1052:16504318,31782603:248072 +k1,1052:19060568,31782603:248072 +k1,1052:19967932,31782603:248072 +k1,1052:22978347,31782603:248072 +k1,1052:25743656,31782603:248071 +k1,1052:28972305,31782603:248072 +k1,1052:30640542,31782603:248072 +k1,1053:32583029,31782603:0 +) +(1,1053:6797234,32624091:25785795,505283,115847 +(1,1052:6797234,32624091:0,452978,115847 +r1,1076:12079466,32624091:5282232,568825,115847 +k1,1052:6797234,32624091:-5282232 +) +(1,1052:6797234,32624091:5282232,452978,115847 +g1,1052:7503935,32624091 +g1,1052:8559071,32624091 +h1,1052:12076189,32624091:0,411205,112570 +) +k1,1053:32583030,32624091:20122800 +g1,1053:32583030,32624091 +) +v1,1055:6797234,33814557:0,393216,0 +(1,1069:6797234,40785142:25785795,7363801,196608 +g1,1069:6797234,40785142 +g1,1069:6797234,40785142 +g1,1069:6600626,40785142 +(1,1069:6600626,40785142:0,7363801,196608 +r1,1076:32779637,40785142:26179011,7560409,196608 +k1,1069:6600625,40785142:-26179012 +) +(1,1069:6600626,40785142:26179011,7363801,196608 +[1,1069:6797234,40785142:25785795,7167193,0 +(1,1057:6797234,34022175:25785795,404226,107478 +(1,1056:6797234,34022175:0,0,0 +g1,1056:6797234,34022175 +g1,1056:6797234,34022175 +g1,1056:6469554,34022175 +(1,1056:6469554,34022175:0,0,0 +) +g1,1056:6797234,34022175 +) +g1,1057:7429526,34022175 +g1,1057:8377964,34022175 +k1,1057:8377964,34022175:0 +h1,1057:14068587,34022175:0,0,0 +k1,1057:32583029,34022175:18514442 +g1,1057:32583029,34022175 +) +(1,1058:6797234,34688353:25785795,410518,107478 +h1,1058:6797234,34688353:0,0,0 +g1,1058:8694108,34688353 +g1,1058:9642545,34688353 +g1,1058:14384731,34688353 +g1,1058:15017023,34688353 +g1,1058:16281606,34688353 +h1,1058:16597752,34688353:0,0,0 +k1,1058:32583029,34688353:15985277 +g1,1058:32583029,34688353 +) +(1,1059:6797234,35354531:25785795,404226,76021 +h1,1059:6797234,35354531:0,0,0 +g1,1059:7113380,35354531 +g1,1059:7429526,35354531 +g1,1059:9010255,35354531 +g1,1059:9958693,35354531 +h1,1059:11855568,35354531:0,0,0 +k1,1059:32583028,35354531:20727460 +g1,1059:32583028,35354531 +) +(1,1060:6797234,36020709:25785795,404226,76021 +h1,1060:6797234,36020709:0,0,0 +h1,1060:7113380,36020709:0,0,0 +k1,1060:32583028,36020709:25469648 +g1,1060:32583028,36020709 +) +(1,1061:6797234,36686887:25785795,404226,101187 +h1,1061:6797234,36686887:0,0,0 +k1,1061:6797234,36686887:0 +h1,1061:9326399,36686887:0,0,0 +k1,1061:32583029,36686887:23256630 +g1,1061:32583029,36686887 +) +(1,1062:6797234,37353065:25785795,0,0 +h1,1062:6797234,37353065:0,0,0 +h1,1062:6797234,37353065:0,0,0 +k1,1062:32583030,37353065:25785796 +g1,1062:32583030,37353065 +) +(1,1063:6797234,38019243:25785795,404226,107478 +h1,1063:6797234,38019243:0,0,0 +g1,1063:7429526,38019243 +g1,1063:8377964,38019243 +k1,1063:8377964,38019243:0 +h1,1063:14068587,38019243:0,0,0 +k1,1063:32583029,38019243:18514442 +g1,1063:32583029,38019243 +) +(1,1064:6797234,38685421:25785795,410518,107478 +h1,1064:6797234,38685421:0,0,0 +g1,1064:8694108,38685421 +g1,1064:9642545,38685421 +g1,1064:13752440,38685421 +h1,1064:14068586,38685421:0,0,0 +k1,1064:32583030,38685421:18514444 +g1,1064:32583030,38685421 +) +(1,1065:6797234,39351599:25785795,404226,76021 +h1,1065:6797234,39351599:0,0,0 +g1,1065:7113380,39351599 +g1,1065:7429526,39351599 +g1,1065:9010255,39351599 +g1,1065:9958693,39351599 +h1,1065:11855568,39351599:0,0,0 +k1,1065:32583028,39351599:20727460 +g1,1065:32583028,39351599 +) +(1,1066:6797234,40017777:25785795,404226,76021 +h1,1066:6797234,40017777:0,0,0 +h1,1066:7113380,40017777:0,0,0 +k1,1066:32583028,40017777:25469648 +g1,1066:32583028,40017777 +) +(1,1067:6797234,40683955:25785795,404226,101187 +h1,1067:6797234,40683955:0,0,0 +k1,1067:6797234,40683955:0 +h1,1067:9326399,40683955:0,0,0 +k1,1067:32583029,40683955:23256630 +g1,1067:32583029,40683955 +) +] +) +g1,1069:32583029,40785142 +g1,1069:6797234,40785142 +g1,1069:6797234,40785142 +g1,1069:32583029,40785142 +g1,1069:32583029,40785142 +) +h1,1069:6797234,40981750:0,0,0 +] +g1,1072:32583029,41506038 +) +h1,1072:6630773,41506038:0,0,0 +v1,1075:6630773,42871814:0,393216,0 +(1,1076:6630773,45449942:25952256,2971344,0 +g1,1076:6630773,45449942 +g1,1076:6303093,45449942 +r1,1076:6401397,45449942:98304,2971344,0 +g1,1076:6600626,45449942 +g1,1076:6797234,45449942 +[1,1076:6797234,45449942:25785795,2971344,0 +(1,1076:6797234,43640483:25785795,1161885,196608 +(1,1075:6797234,43640483:0,1161885,196608 +r1,1076:8344870,43640483:1547636,1358493,196608 +k1,1075:6797234,43640483:-1547636 +) +(1,1075:6797234,43640483:1547636,1161885,196608 +) +k1,1075:8582135,43640483:237265 +(1,1075:8582135,43640483:0,459977,115847 +r1,1076:9643824,43640483:1061689,575824,115847 +k1,1075:8582135,43640483:-1061689 +) +(1,1075:8582135,43640483:1061689,459977,115847 +k1,1075:8582135,43640483:3277 +h1,1075:9640547,43640483:0,411205,112570 +) +k1,1075:9881089,43640483:237265 +k1,1075:11863577,43640483:237264 +k1,1075:12787004,43640483:237265 +k1,1075:16114292,43640483:237265 +k1,1075:18380552,43640483:237265 +k1,1075:19233854,43640483:237264 +k1,1075:20490204,43640483:237265 +k1,1075:23257159,43640483:237265 +k1,1075:24153716,43640483:237265 +k1,1075:26501895,43640483:237264 +k1,1075:28214375,43640483:237265 +k1,1075:31313597,43640483:237265 +k1,1076:32583029,43640483:0 +) +(1,1076:6797234,44481971:25785795,513147,126483 +k1,1075:9512828,44481971:194424 +k1,1075:12640642,44481971:194423 +k1,1075:14031753,44481971:194424 +k1,1075:17639946,44481971:194423 +k1,1075:21020730,44481971:194424 +k1,1075:21831191,44481971:194423 +k1,1075:23044700,44481971:194424 +k1,1075:24654046,44481971:194424 +k1,1075:25980931,44481971:194423 +k1,1075:26923121,44481971:194424 +k1,1075:29950665,44481971:194423 +k1,1075:31635378,44481971:194424 +k1,1075:32583029,44481971:0 +) +(1,1076:6797234,45323459:25785795,513147,126483 +k1,1075:8454920,45323459:206064 +k1,1075:11284390,45323459:206064 +k1,1075:12149746,45323459:206064 +k1,1075:13374895,45323459:206064 +k1,1075:15558836,45323459:206064 +k1,1075:16447785,45323459:206064 +k1,1075:17821045,45323459:206064 +k1,1075:20246158,45323459:206064 +k1,1075:22149604,45323459:206064 +k1,1075:23692602,45323459:206064 +k1,1075:26190460,45323459:206064 +k1,1075:27415609,45323459:206064 +k1,1075:30698588,45323459:206064 +k1,1075:31563944,45323459:206064 +k1,1075:32583029,45323459:0 +) +] +g1,1076:32583029,45449942 +) +] +(1,1076:32583029,45706769:0,0,0 +g1,1076:32583029,45706769 +) +) +] +(1,1076:6630773,47279633:25952256,0,0 +h1,1076:6630773,47279633:25952256,0,0 +) +] +(1,1076:4262630,4025873:0,0,0 +[1,1076:-473656,4025873:0,0,0 +(1,1076:-473656,-710413:0,0,0 +(1,1076:-473656,-710413:0,0,0 +g1,1076:-473656,-710413 +) +g1,1076:-473656,-710413 ) ] -g1,19106:6630773,4812305 -) ) ] -[1,19106:6630773,45706769:25952256,40108032,0 -(1,19106:6630773,45706769:25952256,40108032,0 -(1,19106:6630773,45706769:0,0,0 -g1,19106:6630773,45706769 -) -[1,19106:6630773,45706769:25952256,40108032,0 -[1,19106:6630773,12106481:25952256,6507744,0 -(1,19106:6630773,7073297:25952256,32768,229376 -(1,19106:6630773,7073297:0,32768,229376 -(1,19106:6630773,7073297:5505024,32768,229376 -r1,19106:12135797,7073297:5505024,262144,229376 -) -k1,19106:6630773,7073297:-5505024 -) -) -(1,19106:6630773,8803457:25952256,909509,241827 -h1,19106:6630773,8803457:0,0,0 -k1,19106:23428371,8803457:9154658 -k1,19106:32583029,8803457:9154658 -) -(1,19106:6630773,9419505:25952256,32768,0 -(1,19106:6630773,9419505:5505024,32768,0 -r1,19106:12135797,9419505:5505024,32768,0 +!25822 +}25 +Input:387:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:388:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:389:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:390:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:391:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:392:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:393:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:394:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:395:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:396:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:397:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1012 +{26 +[1,1156:4262630,47279633:28320399,43253760,0 +(1,1156:4262630,4025873:0,0,0 +[1,1156:-473656,4025873:0,0,0 +(1,1156:-473656,-710413:0,0,0 +(1,1156:-473656,-644877:0,0,0 +k1,1156:-473656,-644877:-65536 ) -k1,19106:22359413,9419505:10223616 -k1,19106:32583029,9419505:10223616 +(1,1156:-473656,4736287:0,0,0 +k1,1156:-473656,4736287:5209943 ) -] -(1,19106:7613813,12947969:24969216,513147,126483 -(1,19106:7613813,12947969:-983040,0,0 -g1,19106:6630773,12947969 -g1,19106:5320053,12947969 -g1,19106:4992373,12947969 -(1,19106:4992373,12947969:1310720,0,0 -k1,19106:6303093,12947969:1310720 -) -g1,19106:6630773,12947969 -) -k1,19106:8383240,12947969:281839 -k1,19106:9326255,12947969:281757 -k1,19106:10239779,12947969:281757 -k1,19106:11712817,12947969:281593 -k1,19106:12444806,12947969:281757 -k1,19106:13403550,12947969:281757 -k1,19106:15957275,12947969:281592 -k1,19106:18421055,12947969:282086 -k1,19106:22545024,12947969:281593 -k1,19106:23442654,12947969:281592 -k1,19106:26720553,12947969:281593 -k1,19106:29384872,12947969:282086 -k1,19106:32583029,12947969:0 -) -(1,19106:7613813,13789457:24969216,485622,11795 -g1,19106:10146124,13789457 -g1,19106:12190847,13789457 -g1,19106:13981945,13789457 -k1,19106:32583029,13789457:14442825 -g1,19106:32583029,13789457 -) -(1,19106:7613813,14630945:24969216,505283,134348 -(1,19106:7613813,14630945:-983040,0,0 -g1,19106:6630773,14630945 -g1,19106:5320053,14630945 -g1,19106:4992373,14630945 -(1,19106:4992373,14630945:1310720,0,0 -k1,19106:6303093,14630945:1310720 -) -g1,19106:6630773,14630945 -) -k1,19106:8819101,14630945:171130 -k1,19106:9842853,14630945:171129 -k1,19106:10675213,14630945:171102 -k1,19106:11499708,14630945:171101 -k1,19106:14840814,14630945:171130 -k1,19106:16203304,14630945:171045 -k1,19106:16982579,14630945:171101 -k1,19106:17782827,14630945:171102 -k1,19106:19948788,14630945:171045 -k1,19106:21777295,14630945:171101 -k1,19106:23923109,14630945:171214 -k1,19106:24223251,14630945:-13 -k1,19106:24223264,14630945:13 -k1,19106:27366367,14630945:171045 -k1,19106:30727049,14630945:171045 -k1,19106:32583029,14630945:0 -) -(1,19106:7613813,15472433:24969216,505283,134348 -k1,19106:9619282,15472433:197331 -k1,19106:12978080,15472433:197341 -k1,19106:13976925,15472433:197340 -k1,19106:15505948,15472433:197331 -k1,19106:18693687,15472433:197331 -k1,19106:20035282,15472433:197336 -k1,19106:21247769,15472433:197334 -k1,19106:23540297,15472433:197342 -k1,19106:25074571,15472433:197340 -$1,19106:25074571,15472433 -k1,19106:25864935,15472433:0 -k1,19106:26260117,15472433:0 -k1,19106:27840845,15472433:0 -k1,19106:28236027,15472433:0 -k1,19106:30211937,15472433:0 -k1,19106:30607119,15472433:0 -k1,19106:32187847,15472433:0 -k1,19106:32583029,15472433:0 -) -(1,19106:7613813,16313921:24969216,485622,11796 -$1,19106:10380087,16313921 -k1,19106:32583029,16313921:22029272 -g1,19106:32583029,16313921 -) -(1,19106:7613813,17155409:24969216,513147,126483 -(1,19106:7613813,17155409:-983040,0,0 -g1,19106:6630773,17155409 -g1,19106:5320053,17155409 -g1,19106:4992373,17155409 -(1,19106:4992373,17155409:1310720,0,0 -k1,19106:6303093,17155409:1310720 -) -g1,19106:6630773,17155409 -) -k1,19106:9169461,17155409:256724 -k1,19106:10044787,17155409:256666 -k1,19106:10962712,17155409:256667 -k1,19106:12410709,17155409:256552 -k1,19106:13117607,17155409:256666 -k1,19106:14111554,17155409:256667 -k1,19106:17580681,17155409:256552 -k1,19106:20019270,17155409:256895 -k1,19106:20809572,17155409:256839 -k1,19106:21969210,17155409:256552 -k1,19106:25577273,17155409:256552 -k1,19106:29868221,17155409:256552 -k1,19106:31048831,17155409:256552 -k1,19106:32583029,17155409:0 -) -(1,19106:7613813,17996897:24969216,505283,126483 -k1,19106:10520447,17996897:283883 -k1,19106:12014781,17996897:283884 -k1,19106:15283681,17996897:284391 -k1,19106:18605158,17996897:283883 -k1,19106:20080487,17996897:283884 -k1,19106:23501430,17996897:284390 -k1,19106:25377606,17996897:284307 -k1,19106:30317167,17996897:283883 -k1,19106:31773659,17996897:284053 -k1,19106:32583029,17996897:0 -) -(1,19106:7613813,18838385:24969216,505283,126483 -g1,19106:8407454,18838385 -k1,19106:32583029,18838385:23396352 -g1,19106:32583029,18838385 -) -(1,19106:7613813,19679873:24969216,505283,134348 -(1,19106:7613813,19679873:-983040,0,0 -g1,19106:6630773,19679873 -g1,19106:5320053,19679873 -g1,19106:4992373,19679873 -(1,19106:4992373,19679873:1310720,0,0 -k1,19106:6303093,19679873:1310720 -) -g1,19106:6630773,19679873 -) -k1,19106:9118445,19679873:205708 -k1,19106:9942807,19679873:205702 -k1,19106:10983444,19679873:205708 -k1,19106:11639378,19679873:205702 -k1,19106:12582360,19679873:205702 -k1,19106:16174313,19679873:205708 -k1,19106:17571447,19679873:205689 -k1,19106:18438407,19679873:205702 -k1,19106:19262769,19679873:205702 -k1,19106:21203851,19679873:205689 -k1,19106:23591272,19679873:205727 -k1,19106:24984473,19679873:205689 -k1,19106:26556588,19679873:205689 -k1,19106:27122070,19679873:205689 -k1,19106:30628184,19679873:205721 -k1,19106:31323427,19679873:205689 -k1,19106:32583029,19679873:0 -) -(1,19106:7613813,20521361:24969216,513147,134348 -k1,19106:11129207,20521361:179611 -k1,19106:15343213,20521361:179610 -k1,19106:16446882,20521361:179611 -k1,19106:18160691,20521361:179611 -k1,19106:20963052,20521361:179610 -k1,19106:22353113,20521361:179611 -k1,19106:25517350,20521361:179728 -k1,19106:28734554,20521361:179610 -k1,19106:29366363,20521361:179611 -k1,19106:30991160,20521361:179728 -k1,19106:32583029,20521361:0 -) -(1,19106:7613813,21362849:24969216,505283,126483 -g1,19106:12468720,21362849 -g1,19106:13840388,21362849 -g1,19106:14848987,21362849 -g1,19106:16063369,21362849 -g1,19106:16834727,21362849 -k1,19106:32583029,21362849:14969079 -g1,19106:32583029,21362849 -) -(1,19106:7613813,22204337:24969216,505283,134348 -(1,19106:7613813,22204337:-983040,0,0 -g1,19106:6630773,22204337 -g1,19106:5320053,22204337 -g1,19106:4992373,22204337 -(1,19106:4992373,22204337:1310720,0,0 -k1,19106:6303093,22204337:1310720 -) -g1,19106:6630773,22204337 -) -k1,19106:8440694,22204337:156448 -k1,19106:9215760,22204337:156406 -k1,19106:9921358,22204337:156406 -k1,19106:12259628,22204337:156576 -k1,19106:12559770,22204337:-13 -k1,19106:12559783,22204337:13 -k1,19106:13942282,22204337:156320 -k1,19106:14966954,22204337:156320 -k1,19106:16839007,22204337:156320 -k1,19106:21088050,22204337:156320 -k1,19106:25231921,22204337:156661 -k1,19106:26189959,22204337:156533 -k1,19106:27533791,22204337:156320 -k1,19106:30766371,22204337:156320 -k1,19106:32583029,22204337:0 -) -(1,19106:7613813,23045825:24969216,505283,126483 -g1,19106:10498707,23045825 -g1,19106:13288574,23045825 -g1,19106:15428979,23045825 -g1,19106:16643361,23045825 -k1,19106:32583029,23045825:13047564 -g1,19106:32583029,23045825 -) -(1,19106:7613813,23887313:24969216,505283,126483 -(1,19106:7613813,23887313:-983040,0,0 -g1,19106:6630773,23887313 -g1,19106:5320053,23887313 -g1,19106:4992373,23887313 -(1,19106:4992373,23887313:1310720,0,0 -k1,19106:6303093,23887313:1310720 -) -g1,19106:6630773,23887313 -) -g1,19106:8851132,23887313 -g1,19106:9599553,23887313 -g1,19106:11980476,23887313 -g1,19106:12539498,23887313 -g1,19106:14772964,23887313 -g1,19106:16144632,23887313 -g1,19106:17153231,23887313 -g1,19106:18367613,23887313 -g1,19106:19935889,23887313 -k1,19106:32583029,23887313:11070999 -g1,19106:32583029,23887313 -) -(1,19106:7613813,24728801:24969216,513147,134349 -(1,19106:7613813,24728801:-983040,0,0 -g1,19106:6630773,24728801 -g1,19106:5320053,24728801 -g1,19106:4992373,24728801 -(1,19106:4992373,24728801:1310720,0,0 -k1,19106:6303093,24728801:1310720 -) -g1,19106:6630773,24728801 -) -(1,19106:6630773,24728801:983040,211026,0 -k1,19106:7613813,24728801:327680 -) -k1,19106:10014577,24728801:219070 -k1,19106:11421041,24728801:218952 -k1,19106:12089569,24728801:218951 -k1,19106:14785900,24728801:219070 -k1,19106:16375308,24728801:219051 -$1,19106:16375308,24728801 -k1,19106:17977664,24728801:21628 -k1,19106:18394473,24728801:21627 -k1,19106:18811283,24728801:21628 -k1,19106:19228093,24728801:21628 -k1,19106:20435267,24728801:21628 -k1,19106:20852077,24728801:21628 -k1,19106:22849615,24728801:21628 -(1,19106:23244797,24827115:32768,0,0 -) -k1,19106:23299192,24728801:21627 -k1,19106:24901548,24728801:21628 -k1,19106:25318358,24728801:21628 -k1,19106:26525532,24728801:21628 -k1,19106:26942342,24728801:21628 -k1,19106:28939880,24728801:21628 -k1,19106:29356690,24728801:21628 -k1,19106:31354227,24728801:21627 -k1,19106:31771037,24728801:21628 -k1,19106:32187847,24728801:21628 -k1,19106:32583029,24728801:0 -) -(1,19106:7613813,25570289:24969216,513147,126484 -g1,19106:10380087,25570289 -g1,19106:10775269,25570289 -$1,19106:11960815,25570289 -g1,19106:12160044,25570289 -g1,19106:14681214,25570289 -g1,19106:15689813,25570289 -g1,19106:19954896,25570289 -g1,19106:21326564,25570289 -g1,19106:22335163,25570289 -g1,19106:23128804,25570289 -k1,19106:32583029,25570289:7878084 -g1,19106:32583029,25570289 -) -(1,19106:7613813,26411777:24969216,505283,134348 -(1,19106:7613813,26411777:-983040,0,0 -g1,19106:6630773,26411777 -g1,19106:5320053,26411777 -g1,19106:4992373,26411777 -(1,19106:4992373,26411777:1310720,0,0 -k1,19106:6303093,26411777:1310720 -) -g1,19106:6630773,26411777 -) -(1,19106:6630773,26411777:983040,211026,0 -k1,19106:7613813,26411777:327680 -) -g1,19106:9994736,26411777 -g1,19106:11393929,26411777 -g1,19106:12367138,26411777 -g1,19106:17130294,26411777 -g1,19106:18903042,26411777 -g1,19106:20694140,26411777 -g1,19106:26073335,26411777 -g1,19106:27445003,26411777 -g1,19106:28453602,26411777 -g1,19106:29247243,26411777 -k1,19106:32583029,26411777:1759645 -g1,19106:32583029,26411777 -) -(1,19106:7613813,27253265:24969216,505283,134348 -(1,19106:7613813,27253265:-983040,0,0 -g1,19106:6630773,27253265 -g1,19106:5320053,27253265 -g1,19106:4992373,27253265 -(1,19106:4992373,27253265:1310720,0,0 -k1,19106:6303093,27253265:1310720 -) -g1,19106:6630773,27253265 -) -k1,19106:10253891,27253265:236873 -k1,19106:10940960,27253265:236837 -k1,19106:11915076,27253265:236836 -k1,19106:14333756,27253265:236986 -k1,19106:17659229,27253265:236761 -k1,19106:18519462,27253265:236986 -k1,19106:19952910,27253265:236761 -k1,19106:20634660,27253265:236761 -k1,19106:22915060,27253265:236987 -k1,19106:26189415,27253265:236761 -k1,19106:27617621,27253265:236761 -k1,19106:30991160,27253265:236986 -k1,19106:32583029,27253265:0 -) -(1,19106:7613813,28094753:24969216,505283,126483 -g1,19106:11797631,28094753 -g1,19106:13169299,28094753 -g1,19106:14177898,28094753 -g1,19106:15392280,28094753 -g1,19106:16163638,28094753 -k1,19106:32583029,28094753:14843250 -g1,19106:32583029,28094753 -) -(1,19106:7613813,28936241:24969216,505283,134348 -(1,19106:7613813,28936241:-983040,0,0 -g1,19106:6630773,28936241 -g1,19106:5320053,28936241 -g1,19106:4992373,28936241 -(1,19106:4992373,28936241:1310720,0,0 -k1,19106:6303093,28936241:1310720 -) -g1,19106:6630773,28936241 -) -k1,19106:8982648,28936241:162972 -k1,19106:9925463,28936241:162937 -k1,19106:12270238,28936241:163081 -k1,19106:12882678,28936241:162863 -k1,19106:15856380,28936241:162863 -k1,19106:19253662,28936241:163081 -k1,19106:20650569,28936241:162864 -k1,19106:21755402,28936241:163081 -k1,19106:24366035,28936241:162863 -k1,19106:25464097,28936241:162863 -k1,19106:26843526,28936241:163081 -k1,19106:28598440,28936241:163045 -k1,19106:32583029,28936241:0 -) -(1,19106:7613813,29777729:24969216,505283,126483 -g1,19106:8985481,29777729 -g1,19106:9994080,29777729 -g1,19106:11208462,29777729 -g1,19106:12776738,29777729 -k1,19106:32583029,29777729:18230150 -g1,19106:32583029,29777729 -) -(1,19106:7613813,30619217:24969216,513147,134348 -(1,19106:7613813,30619217:-983040,0,0 -g1,19106:6630773,30619217 -g1,19106:5320053,30619217 -g1,19106:4992373,30619217 -(1,19106:4992373,30619217:1310720,0,0 -k1,19106:6303093,30619217:1310720 -) -g1,19106:6630773,30619217 -) -k1,19106:10077156,30619217:163685 -k1,19106:11020684,30619217:163650 -k1,19106:11713210,30619217:163650 -k1,19106:14058695,30619217:163791 -k1,19106:15409786,30619217:163579 -k1,19106:18367819,30619217:163578 -k1,19106:19147435,30619217:163578 -k1,19106:22322393,30619217:163579 -k1,19106:24194052,30619217:163791 -k1,19106:28120159,30619217:163685 -k1,19106:29419035,30619217:163792 -k1,19106:31174660,30619217:163756 -k1,19106:32583029,30619217:0 -) -(1,19106:7613813,31460705:24969216,505283,126483 -g1,19106:11797631,31460705 -g1,19106:13169299,31460705 -g1,19106:14177898,31460705 -g1,19106:14971539,31460705 -k1,19106:32583029,31460705:16035349 -g1,19106:32583029,31460705 -) -(1,19106:7613813,32302193:24969216,513147,134348 -(1,19106:7613813,32302193:-983040,0,0 -g1,19106:6630773,32302193 -g1,19106:5320053,32302193 -g1,19106:4992373,32302193 -(1,19106:4992373,32302193:1310720,0,0 -k1,19106:6303093,32302193:1310720 -) -g1,19106:6630773,32302193 -) -k1,19106:9388126,32302193:144433 -k1,19106:9982736,32302193:144378 -k1,19106:10809999,32302193:144378 -k1,19106:13136289,32302193:144596 -k1,19106:18181339,32302193:144268 -k1,19106:20349359,32302193:144268 -k1,19106:21417685,32302193:144268 -k1,19106:23340273,32302193:144597 -k1,19106:28738726,32302193:144432 -k1,19106:29477516,32302193:144378 -k1,19106:30991160,32302193:144597 -k1,19106:32583029,32302193:0 -) -(1,19106:7613813,33143681:24969216,505283,126483 -g1,19106:11797631,33143681 -g1,19106:13169299,33143681 -g1,19106:14177898,33143681 -g1,19106:14971539,33143681 -k1,19106:32583030,33143681:16832268 -g1,19106:32583030,33143681 -) -(1,19106:7613813,33985169:24969216,505283,126483 -(1,19106:7613813,33985169:-983040,0,0 -g1,19106:6630773,33985169 -g1,19106:5320053,33985169 -g1,19106:4992373,33985169 -(1,19106:4992373,33985169:1310720,0,0 -k1,19106:6303093,33985169:1310720 -) -g1,19106:6630773,33985169 -) -k1,19106:9510786,33985169:172065 -k1,19106:10420103,33985169:172037 -k1,19106:11042373,33985169:172038 -k1,19106:13396213,33985169:172146 -k1,19106:14755708,33985169:171983 -k1,19106:15377268,33985169:171983 -k1,19106:17221237,33985169:172146 -k1,19106:19287947,33985169:172064 -k1,19106:20054397,33985169:172038 -k1,19106:21994049,33985169:172146 -k1,19106:23758037,33985169:172119 -k1,19106:27914609,33985169:171983 -k1,19106:29259085,33985169:172037 -k1,19106:30240438,33985169:171983 -k1,19106:31006888,33985169:172038 -k1,19106:32583029,33985169:0 -k1,19106:32583029,33985169:0 -) -(1,19106:7613813,34826657:24969216,505283,134348 -(1,19106:7613813,34826657:-983040,0,0 -g1,19106:6630773,34826657 -g1,19106:5320053,34826657 -g1,19106:4992373,34826657 -(1,19106:4992373,34826657:1310720,0,0 -k1,19106:6303093,34826657:1310720 -) -g1,19106:6630773,34826657 -) -k1,19106:10175217,34826657:511438 -k1,19106:11235538,34826657:511129 -k1,19106:13929605,34826657:512373 -k1,19106:18378170,34826657:510507 -k1,19106:21619562,34826657:510507 -k1,19106:23493218,34826657:510507 -k1,19106:24628838,34826657:512373 -k1,19106:28004199,34826657:511438 -k1,19106:29109740,34826657:511129 -k1,19106:30991160,34826657:512373 -k1,19106:32583029,34826657:0 -) -(1,19106:7613813,35668145:24969216,505283,126483 -g1,19106:11797631,35668145 -g1,19106:13169299,35668145 -g1,19106:14177898,35668145 -g1,19106:14971539,35668145 -k1,19106:32583029,35668145:16035349 -g1,19106:32583029,35668145 -) -(1,19106:7613813,36509633:24969216,505283,126483 -(1,19106:7613813,36509633:-983040,0,0 -g1,19106:6630773,36509633 -g1,19106:5320053,36509633 -g1,19106:4992373,36509633 -(1,19106:4992373,36509633:1310720,0,0 -k1,19106:6303093,36509633:1310720 -) -g1,19106:6630773,36509633 -) -k1,19106:8483504,36509633:237269 -k1,19106:9571429,36509633:237268 -k1,19106:10545940,36509633:237231 -k1,19106:16558896,36509633:237268 -k1,19106:17987496,36509633:237155 -k1,19106:18853873,36509633:237231 -k1,19106:19768091,36509633:237231 -k1,19106:21336938,36509633:237155 -k1,19106:23756015,36509633:237383 -k1,19106:27191982,36509633:237155 -k1,19106:30333919,36509633:237382 -k1,19106:31641277,36509633:237155 -k1,19106:32583029,36509633:0 -) -(1,19106:7613813,37351121:24969216,505283,134349 -k1,19106:9118615,37351121:309425 -k1,19106:10443854,37351121:310086 -k1,19106:12124187,37351121:309976 -$1,19106:12124187,37351121 -k1,19106:14220937,37351121:120840 -k1,19106:14736960,37351121:120841 -k1,19106:15252982,37351121:120840 -k1,19106:15769004,37351121:120840 -k1,19106:17075391,37351121:120841 -k1,19106:17591413,37351121:120840 -k1,19106:21268891,37351121:120840 -k1,19106:21784914,37351121:120841 -k1,19106:23091300,37351121:120840 -k1,19106:23607322,37351121:120840 -k1,19106:25308891,37351121:120841 -k1,19106:25824913,37351121:120840 -k1,19106:27131299,37351121:120840 -k1,19106:27647322,37351121:120841 -$1,19106:28832868,37351121 -k1,19106:29142293,37351121:309425 -k1,19106:31773659,37351121:309425 -k1,19106:32583029,37351121:0 -) -(1,19106:7613813,38192609:24969216,505283,126483 -g1,19106:11878896,38192609 -g1,19106:13250564,38192609 -g1,19106:14259163,38192609 -g1,19106:15052804,38192609 -k1,19106:32583029,38192609:15954084 -g1,19106:32583029,38192609 -) -(1,19106:7613813,39034097:24969216,505283,134348 -(1,19106:7613813,39034097:-983040,0,0 -g1,19106:6630773,39034097 -g1,19106:5320053,39034097 -g1,19106:4992373,39034097 -(1,19106:4992373,39034097:1310720,0,0 -k1,19106:6303093,39034097:1310720 -) -g1,19106:6630773,39034097 -) -k1,19106:11135502,39034097:337295 -k1,19106:12149648,39034097:337159 -k1,19106:14669050,39034097:337708 -k1,19106:17827914,39034097:336884 -k1,19106:18614374,39034097:336883 -k1,19106:20161708,39034097:336884 -k1,19106:22102913,39034097:336884 -k1,19106:25942040,39034097:336883 -k1,19106:27642073,39034097:336884 -k1,19106:29719106,39034097:337708 -k1,19106:32583029,39034097:0 -) -(1,19106:7613813,39875585:24969216,505283,126483 -g1,19106:8407454,39875585 -g1,19106:9975730,39875585 -g1,19106:11766828,39875585 -g1,19106:15950646,39875585 -g1,19106:17322314,39875585 -g1,19106:18330913,39875585 -g1,19106:19124554,39875585 -k1,19106:32583029,39875585:11882334 -g1,19106:32583029,39875585 -) -(1,19106:7613813,40717073:24969216,505283,126483 -(1,19106:7613813,40717073:-983040,0,0 -g1,19106:6630773,40717073 -g1,19106:5320053,40717073 -g1,19106:4992373,40717073 -(1,19106:4992373,40717073:1310720,0,0 -k1,19106:6303093,40717073:1310720 -) -g1,19106:6630773,40717073 -) -k1,19106:9088443,40717073:205198 -k1,19106:9866420,40717073:205192 -k1,19106:11263045,40717073:205180 -k1,19106:12076412,40717073:205193 -k1,19106:14950873,40717073:205180 -k1,19106:17337783,40717073:205216 -k1,19106:18446049,40717073:205180 -k1,19106:22518508,40717073:205180 -k1,19106:23323343,40717073:205181 -k1,19106:25931728,40717073:205180 -k1,19106:29960278,40717073:205180 -k1,19106:32583029,40717073:0 -) -(1,19106:7613813,41558561:24969216,505283,134348 -g1,19106:9176191,41558561 -g1,19106:9998667,41558561 -g1,19106:13061819,41558561 -g1,19106:13855460,41558561 -g1,19106:15423736,41558561 -g1,19106:17214834,41558561 -g1,19106:21398652,41558561 -g1,19106:22770320,41558561 -g1,19106:23778919,41558561 -g1,19106:24572560,41558561 -k1,19106:32583029,41558561:6434328 -g1,19106:32583029,41558561 -) -(1,19106:7613813,42400049:24969216,513147,134348 -(1,19106:7613813,42400049:-983040,0,0 -g1,19106:6630773,42400049 -g1,19106:5320053,42400049 -g1,19106:4992373,42400049 -(1,19106:4992373,42400049:1310720,0,0 -k1,19106:6303093,42400049:1310720 -) -g1,19106:6630773,42400049 -) -k1,19106:9148181,42400049:264936 -k1,19106:9985837,42400049:264871 -k1,19106:10779585,42400049:264872 -k1,19106:12235770,42400049:264740 -k1,19106:13108815,42400049:264871 -k1,19106:16042836,42400049:264740 -k1,19106:18489663,42400049:265133 -k1,19106:19243958,42400049:264741 -k1,19106:22719307,42400049:264740 -k1,19106:23600085,42400049:264740 -k1,19106:26895210,42400049:264740 -k1,19106:29932779,42400049:264741 -k1,19106:31959782,42400049:264740 -k1,19106:32583029,42400049:0 -) -(1,19106:7613813,43241537:24969216,505283,126483 -g1,19106:9047085,43241537 -g1,19106:10188066,43241537 -g1,19106:13424889,43241537 -g1,19106:14076316,43241537 -g1,19106:15720614,43241537 -g1,19106:16514255,43241537 -g1,19106:18082531,43241537 -g1,19106:19873629,43241537 -g1,19106:24057447,43241537 -g1,19106:25429115,43241537 -g1,19106:26437714,43241537 -g1,19106:27231355,43241537 -k1,19106:32583029,43241537:3775533 -g1,19106:32583029,43241537 -) -(1,19106:7613813,44083025:24969216,505283,126483 -(1,19106:7613813,44083025:-983040,0,0 -g1,19106:6630773,44083025 -g1,19106:5320053,44083025 -g1,19106:4992373,44083025 -(1,19106:4992373,44083025:1310720,0,0 -k1,19106:6303093,44083025:1310720 -) -g1,19106:6630773,44083025 -) -k1,19106:9624075,44083025:222440 -k1,19106:10296725,44083025:222418 -k1,19106:10969374,44083025:222417 -k1,19106:13373578,44083025:222510 -k1,19106:15619701,44083025:222371 -k1,19106:17991653,44083025:222371 -k1,19106:19577173,44083025:222371 -k1,19106:20422930,44083025:222510 -k1,19106:22128381,44083025:222371 -k1,19106:24391612,44083025:222440 -k1,19106:25511942,44083025:222487 -k1,19106:28771907,44083025:222371 -k1,19106:29446476,44083025:222371 -k1,19106:32583029,44083025:0 -) -(1,19106:7613813,44924513:24969216,505283,126483 -g1,19106:8407454,44924513 -g1,19106:9802060,44924513 -g1,19106:11173728,44924513 -g1,19106:12182327,44924513 -g1,19106:12975968,44924513 -k1,19106:32583029,44924513:18030920 -g1,19106:32583029,44924513 +g1,1156:-473656,-710413 ) ] -(1,19106:32583029,45706769:0,0,0 -g1,19106:32583029,45706769 ) +[1,1156:6630773,47279633:25952256,43253760,0 +[1,1156:6630773,4812305:25952256,786432,0 +(1,1156:6630773,4812305:25952256,513147,126483 +(1,1156:6630773,4812305:25952256,513147,126483 +g1,1156:3078558,4812305 +[1,1156:3078558,4812305:0,0,0 +(1,1156:3078558,2439708:0,1703936,0 +k1,1156:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,1156:2537886,2439708:1179648,16384,0 ) -] -(1,19106:6630773,47279633:25952256,485622,11795 -(1,19106:6630773,47279633:25952256,485622,11795 -(1,19106:6630773,47279633:0,0,0 -v1,19106:6630773,47279633:0,0,0 -) -g1,19106:6830002,47279633 -k1,19106:31387652,47279633:24557650 +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,1156:3078558,1915420:16384,1179648,0 ) +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) ] -(1,19106:4262630,4025873:0,0,0 -[1,19106:-473656,4025873:0,0,0 -(1,19106:-473656,-710413:0,0,0 -(1,19106:-473656,-710413:0,0,0 -g1,19106:-473656,-710413 ) -g1,19106:-473656,-710413 -) -] ) -] -!24430 -}374 -!12 -{375 -[1,19106:4262630,47279633:28320399,43253760,0 -(1,19106:4262630,4025873:0,0,0 -[1,19106:-473656,4025873:0,0,0 -(1,19106:-473656,-710413:0,0,0 -(1,19106:-473656,-644877:0,0,0 -k1,19106:-473656,-644877:-65536 -) -(1,19106:-473656,4736287:0,0,0 -k1,19106:-473656,4736287:5209943 -) -g1,19106:-473656,-710413 ) ] +[1,1156:3078558,4812305:0,0,0 +(1,1156:3078558,2439708:0,1703936,0 +g1,1156:29030814,2439708 +g1,1156:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,1156:36151628,1915420:16384,1179648,0 ) -[1,19106:6630773,47279633:25952256,43253760,0 -[1,19106:6630773,4812305:25952256,786432,0 -(1,19106:6630773,4812305:25952256,505283,134348 -(1,19106:6630773,4812305:25952256,505283,134348 -g1,19106:3078558,4812305 -[1,19106:3078558,4812305:0,0,0 -(1,19106:3078558,2439708:0,1703936,0 -k1,19106:1358238,2439708:-1720320 -(1,19106:1358238,2439708:1720320,1703936,0 -(1,19106:1358238,2439708:1179648,16384,0 -r1,19106:2537886,2439708:1179648,16384,0 -) -g1,19106:3062174,2439708 -(1,19106:3062174,2439708:16384,1703936,0 -[1,19106:3062174,2439708:25952256,1703936,0 -(1,19106:3062174,1915420:25952256,1179648,0 -(1,19106:3062174,1915420:16384,1179648,0 -r1,19106:3078558,1915420:16384,1179648,0 -) -k1,19106:29014430,1915420:25935872 -g1,19106:29014430,1915420 +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) ] ) +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,1156:37855564,2439708:1179648,16384,0 ) ) -] -[1,19106:3078558,4812305:0,0,0 -(1,19106:3078558,2439708:0,1703936,0 -g1,19106:29030814,2439708 -g1,19106:36135244,2439708 -(1,19106:36135244,2439708:1720320,1703936,0 -(1,19106:36135244,2439708:16384,1703936,0 -[1,19106:36135244,2439708:25952256,1703936,0 -(1,19106:36135244,1915420:25952256,1179648,0 -(1,19106:36135244,1915420:16384,1179648,0 -r1,19106:36151628,1915420:16384,1179648,0 -) -k1,19106:62087500,1915420:25935872 -g1,19106:62087500,1915420 +k1,1156:3078556,2439708:-34777008 ) ] +[1,1156:3078558,4812305:0,0,0 +(1,1156:3078558,49800853:0,16384,2228224 +k1,1156:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,1156:2537886,49800853:1179648,16384,0 ) -g1,19106:36675916,2439708 -(1,19106:36675916,2439708:1179648,16384,0 -r1,19106:37855564,2439708:1179648,16384,0 +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,1156:3078558,51504789:16384,1179648,0 ) -) -k1,19106:3078556,2439708:-34777008 +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) ] -[1,19106:3078558,4812305:0,0,0 -(1,19106:3078558,49800853:0,16384,2228224 -k1,19106:1358238,49800853:-1720320 -(1,19106:1358238,49800853:1720320,16384,2228224 -(1,19106:1358238,49800853:1179648,16384,0 -r1,19106:2537886,49800853:1179648,16384,0 -) -g1,19106:3062174,49800853 -(1,19106:3062174,52029077:16384,1703936,0 -[1,19106:3062174,52029077:25952256,1703936,0 -(1,19106:3062174,51504789:25952256,1179648,0 -(1,19106:3062174,51504789:16384,1179648,0 -r1,19106:3078558,51504789:16384,1179648,0 -) -k1,19106:29014430,51504789:25935872 -g1,19106:29014430,51504789 ) -] ) ) +] +[1,1156:3078558,4812305:0,0,0 +(1,1156:3078558,49800853:0,16384,2228224 +g1,1156:29030814,49800853 +g1,1156:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,1156:36151628,51504789:16384,1179648,0 +) +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 +) +] +) +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,1156:37855564,49800853:1179648,16384,0 +) +) +k1,1156:3078556,49800853:-34777008 +) +] +g1,1156:6630773,4812305 +g1,1156:6630773,4812305 +g1,1156:9175536,4812305 +g1,1156:9990803,4812305 +g1,1156:13137841,4812305 +g1,1156:14654344,4812305 +k1,1156:31786112,4812305:17131768 +) +) +] +[1,1156:6630773,45706769:25952256,40108032,0 +(1,1156:6630773,45706769:25952256,40108032,0 +(1,1156:6630773,45706769:0,0,0 +g1,1156:6630773,45706769 +) +[1,1156:6630773,45706769:25952256,40108032,0 +v1,1076:6630773,6254097:0,393216,0 +(1,1076:6630773,8172851:25952256,2311970,0 +g1,1076:6630773,8172851 +g1,1076:6303093,8172851 +r1,1156:6401397,8172851:98304,2311970,0 +g1,1076:6600626,8172851 +g1,1076:6797234,8172851 +[1,1076:6797234,8172851:25785795,2311970,0 +(1,1076:6797234,6374028:25785795,513147,126483 +k1,1075:9257988,6374028:182067 +k1,1075:10790097,6374028:182067 +k1,1075:11631457,6374028:182068 +k1,1075:14889129,6374028:182067 +k1,1075:15687234,6374028:182067 +k1,1075:16888386,6374028:182067 +k1,1075:18659046,6374028:182067 +k1,1075:20191155,6374028:182067 +k1,1075:22070605,6374028:182068 +k1,1075:23244232,6374028:182067 +k1,1075:24820905,6374028:182067 +k1,1075:25654400,6374028:182067 +k1,1075:27165537,6374028:182067 +k1,1075:28915226,6374028:182068 +k1,1075:30254003,6374028:182067 +k1,1075:30967567,6374028:182067 +k1,1076:32583029,6374028:0 +) +(1,1076:6797234,7215516:25785795,505283,134348 +k1,1075:8396983,7215516:188759 +k1,1075:11302866,7215516:188760 +k1,1075:13223086,7215516:188759 +k1,1075:15297316,7215516:188759 +k1,1075:16354428,7215516:188760 +k1,1075:17647469,7215516:188759 +k1,1075:18651496,7215516:188759 +k1,1075:20234206,7215516:188759 +(1,1075:20234206,7215516:0,452978,115847 +r1,1156:22702743,7215516:2468537,568825,115847 +k1,1075:20234206,7215516:-2468537 +) +(1,1075:20234206,7215516:2468537,452978,115847 +k1,1075:20234206,7215516:3277 +h1,1075:22699466,7215516:0,411205,112570 +) +k1,1075:23065173,7215516:188760 +k1,1075:24445377,7215516:188759 +k1,1075:27106809,7215516:188759 +k1,1075:27827066,7215516:188760 +k1,1075:30688383,7215516:188759 +k1,1075:32583029,7215516:0 +) +(1,1076:6797234,8057004:25785795,513147,115847 +g1,1075:7647891,8057004 +g1,1075:8866205,8057004 +g1,1075:10553757,8057004 +g1,1075:11412278,8057004 +g1,1075:12630592,8057004 +g1,1075:14213941,8057004 +g1,1075:17303963,8057004 +g1,1075:19388663,8057004 +g1,1075:20456244,8057004 +g1,1075:21759755,8057004 +g1,1075:22774252,8057004 +g1,1075:24367432,8057004 +(1,1075:24367432,8057004:0,452978,115847 +r1,1156:26484257,8057004:2116825,568825,115847 +k1,1075:24367432,8057004:-2116825 +) +(1,1075:24367432,8057004:2116825,452978,115847 +k1,1075:24367432,8057004:3277 +h1,1075:26480980,8057004:0,411205,112570 +) +k1,1076:32583029,8057004:5925102 +g1,1076:32583029,8057004 +) +] +g1,1076:32583029,8172851 +) +h1,1076:6630773,8172851:0,0,0 +(1,1078:6630773,9800771:25952256,505283,126483 +(1,1078:6630773,9800771:2809528,485622,11795 +g1,1078:6630773,9800771 +g1,1078:9440301,9800771 +) +(1,1078:9440301,9800771:0,452978,115847 +r1,1156:11205414,9800771:1765113,568825,115847 +k1,1078:9440301,9800771:-1765113 +) +(1,1078:9440301,9800771:1765113,452978,115847 +k1,1078:9440301,9800771:3277 +h1,1078:11202137,9800771:0,411205,112570 +) +g1,1078:11409886,9800771 +k1,1078:32583028,9800771:19380732 +g1,1078:32583028,9800771 +) +(1,1080:6630773,11035475:25952256,513147,126483 +(1,1079:6630773,11035475:0,452978,115847 +r1,1156:8395886,11035475:1765113,568825,115847 +k1,1079:6630773,11035475:-1765113 +) +(1,1079:6630773,11035475:1765113,452978,115847 +k1,1079:6630773,11035475:3277 +h1,1079:8392609,11035475:0,411205,112570 +) +k1,1079:8690074,11035475:294188 +k1,1079:10729486,11035475:294188 +k1,1079:12015234,11035475:294188 +k1,1079:15614403,11035475:294188 +k1,1079:18059483,11035475:294188 +k1,1079:19820367,11035475:294188 +k1,1079:20580516,11035475:294188 +k1,1079:21940975,11035475:294188 +k1,1079:22921325,11035475:294188 +k1,1079:26520494,11035475:294188 +k1,1079:28327908,11035475:294188 +k1,1079:29308258,11035475:294188 +(1,1079:29308258,11035475:0,459977,115847 +r1,1156:30369947,11035475:1061689,575824,115847 +k1,1079:29308258,11035475:-1061689 +) +(1,1079:29308258,11035475:1061689,459977,115847 +k1,1079:29308258,11035475:3277 +h1,1079:30366670,11035475:0,411205,112570 +) +k1,1079:30664135,11035475:294188 +k1,1079:32583029,11035475:0 +) +(1,1080:6630773,11876963:25952256,513147,134348 +k1,1079:9141676,11876963:171923 +k1,1079:9972891,11876963:171923 +k1,1079:10500673,11876963:171922 +k1,1079:11666122,11876963:171923 +k1,1079:12520930,11876963:171923 +k1,1079:14844400,11876963:171923 +k1,1079:16396511,11876963:171923 +k1,1079:17921096,11876963:171922 +k1,1079:18448879,11876963:171923 +k1,1079:20690429,11876963:171923 +k1,1079:24108350,11876963:171923 +k1,1079:26165744,11876963:171923 +k1,1079:26869163,11876963:171922 +k1,1079:29328293,11876963:171923 +k1,1079:30270919,11876963:171923 +k1,1080:32583029,11876963:0 +) +(1,1080:6630773,12718451:25952256,505283,102891 +g1,1079:8344539,12718451 +g1,1079:9615937,12718451 +g1,1079:11700637,12718451 +g1,1079:13004148,12718451 +g1,1079:14489193,12718451 +g1,1079:15436188,12718451 +g1,1079:15991277,12718451 +k1,1080:32583029,12718451:13906742 +g1,1080:32583029,12718451 +) +(1,1098:6630773,25803587:25952256,12519559,0 +k1,1098:11982920,25803587:5352147 +(1,1081:11982920,25803587:0,0,0 +g1,1081:11982920,25803587 +g1,1081:11982920,25803587 +g1,1081:11655240,25803587 +(1,1081:11655240,25803587:0,0,0 +) +g1,1081:11982920,25803587 +) +(1,1096:11982920,25803587:15247963,12519559,0 +g1,1096:15470289,25803587 +(1,1096:15470289,14229474:0,0,0 +(1,1096:15470289,14229474:0,0,0 +g1,1083:15470289,14229474 +(1,1084:15470289,14229474:0,0,0 +(1,1084:15470289,14229474:0,0,0 +g1,1084:15470289,14229474 +g1,1084:15470289,14229474 +g1,1084:15470289,14229474 +g1,1084:15470289,14229474 +g1,1084:15470289,14229474 +(1,1084:15470289,14229474:0,0,0 +(1,1084:15470289,14229474:589824,56623,0 +(1,1084:15470289,14229474:589824,56623,0 +) +g1,1084:16060113,14229474 +) +) +g1,1084:15470289,14229474 +g1,1084:15470289,14229474 +) +) +g1,1084:15470289,14229474 +(1,1085:15470289,14229474:0,0,0 +(1,1085:15470289,14229474:0,0,0 +g1,1085:15470289,14229474 +g1,1085:15470289,14229474 +g1,1085:15470289,14229474 +g1,1085:15470289,14229474 +g1,1085:15470289,14229474 +(1,1085:15470289,14229474:0,0,0 +(1,1085:15470289,14229474:358613,319685,0 +(1,1085:15470289,14229474:358613,319685,0 +$1,1085:15470289,14229474 +$1,1085:15828902,14229474 +) +g1,1085:15828902,14229474 +) +) +g1,1085:15470289,14229474 +g1,1085:15470289,14229474 +) +) +g1,1085:15470289,14229474 +(1,1086:15470289,14229474:0,0,0 +(1,1086:15470289,14229474:0,0,0 +g1,1086:15470289,14229474 +g1,1086:15470289,14229474 +(1,1086:15470289,14229474:0,0,0 +(1,1086:15470289,14229474:4754664,408008,104590 +(1,1086:15470289,14229474:4754664,408008,104590 +(1,1086:15470289,14229474:0,408008,104590 +r1,1156:20224953,14229474:4754664,512598,104590 +k1,1086:15470289,14229474:-4754664 +) +(1,1086:15470289,14229474:4754664,408008,104590 +g1,1086:17372810,14229474 +h1,1086:20221676,14229474:0,370085,101313 +) +) +g1,1086:20224953,14229474 +) +) +g1,1086:15470289,14229474 +g1,1086:15470289,14229474 +) +) +(1,1087:15470289,14229474:0,0,0 +(1,1087:15470289,14229474:0,0,0 +g1,1087:15470289,14229474 +g1,1087:15470289,14229474 +g1,1087:15470289,14229474 +g1,1087:15470289,14229474 +g1,1087:15470289,14229474 +(1,1087:15470289,14229474:0,0,0 +(1,1087:15470289,14229474:4121582,373362,104590 +(1,1087:15470289,14229474:4121582,373362,104590 +(1,1087:15470289,14229474:0,373362,104590 +r1,1156:19591871,14229474:4121582,477952,104590 +k1,1087:15470289,14229474:-4121582 +) +(1,1087:15470289,14229474:4121582,373362,104590 +g1,1087:18955513,14229474 +h1,1087:19588594,14229474:0,370085,101313 +) +) +g1,1087:19591871,14229474 +) +) +g1,1087:15470289,14229474 +g1,1087:15470289,14229474 +) +) +(1,1088:15470289,14229474:0,0,0 +(1,1088:15470289,14229474:0,0,0 +g1,1088:15470289,14229474 +g1,1088:15470289,14229474 +g1,1088:15470289,14229474 +g1,1088:15470289,14229474 +g1,1088:15470289,14229474 +(1,1088:15470289,14229474:0,0,0 +(1,1088:15470289,14229474:4121582,373362,104590 +(1,1088:15470289,14229474:4121582,373362,104590 +(1,1088:15470289,14229474:0,373362,104590 +r1,1156:19591871,14229474:4121582,477952,104590 +k1,1088:15470289,14229474:-4121582 +) +(1,1088:15470289,14229474:4121582,373362,104590 +g1,1088:18955513,14229474 +h1,1088:19588594,14229474:0,370085,101313 +) ) -] -[1,19106:3078558,4812305:0,0,0 -(1,19106:3078558,49800853:0,16384,2228224 -g1,19106:29030814,49800853 -g1,19106:36135244,49800853 -(1,19106:36135244,49800853:1720320,16384,2228224 -(1,19106:36135244,52029077:16384,1703936,0 -[1,19106:36135244,52029077:25952256,1703936,0 -(1,19106:36135244,51504789:25952256,1179648,0 -(1,19106:36135244,51504789:16384,1179648,0 -r1,19106:36151628,51504789:16384,1179648,0 -) -k1,19106:62087500,51504789:25935872 -g1,19106:62087500,51504789 +g1,1088:19591871,14229474 ) -] ) -g1,19106:36675916,49800853 -(1,19106:36675916,49800853:1179648,16384,0 -r1,19106:37855564,49800853:1179648,16384,0 +g1,1088:15470289,14229474 +g1,1088:15470289,14229474 +) +) +g1,1088:15470289,14229474 +g1,1089:15470289,14229474 +(1,1089:15470289,14229474:0,0,0 +(1,1089:15470289,14229474:0,0,0 +g1,1089:15470289,14229474 +g1,1089:15470289,14229474 +g1,1089:15470289,14229474 +g1,1089:15470289,14229474 +g1,1089:15470289,14229474 +(1,1089:15470289,14229474:0,0,0 +(1,1089:15470289,14229474:589824,56623,0 +(1,1089:15470289,14229474:589824,56623,0 +) +g1,1089:16060113,14229474 +) +) +g1,1089:15470289,14229474 +g1,1089:15470289,14229474 +) +) +g1,1089:15470289,14229474 +g1,1090:15470289,14229474 +g1,1090:15470289,14229474 +g1,1090:15470289,14229474 +g1,1090:15470289,14229474 +g1,1091:15470289,14229474 +g1,1091:15470289,14229474 +g1,1091:15470289,14229474 +(1,1091:15470289,14229474:0,0,0 +(1,1091:15470289,14229474:0,0,0 +g1,1091:15470289,14229474 +g1,1091:15470289,14229474 +g1,1091:15470289,14229474 +g1,1091:15470289,14229474 +g1,1091:15470289,14229474 +(1,1091:15470289,14229474:0,0,0 +(1,1091:15470289,14229474:1272717,373362,104590 +(1,1091:15470289,14229474:1272717,373362,104590 +(1,1091:15470289,14229474:0,373362,104590 +r1,1156:16743006,14229474:1272717,477952,104590 +k1,1091:15470289,14229474:-1272717 +) +(1,1091:15470289,14229474:1272717,373362,104590 +k1,1091:15470289,14229474:3277 +h1,1091:16739729,14229474:0,370085,101313 +) +) +g1,1091:16743006,14229474 +) +) +g1,1091:15470289,14229474 +g1,1091:15470289,14229474 +) +) +g1,1091:15470289,14229474 +g1,1092:15470289,14229474 +g1,1092:15470289,14229474 +g1,1092:15470289,14229474 +(1,1092:15470289,14229474:0,0,0 +(1,1092:15470289,14229474:0,0,0 +g1,1092:15470289,14229474 +g1,1092:15470289,14229474 +g1,1092:15470289,14229474 +g1,1092:15470289,14229474 +g1,1092:15470289,14229474 +(1,1092:15470289,14229474:0,0,0 +(1,1092:15470289,14229474:1589257,373362,104590 +(1,1092:15470289,14229474:1589257,373362,104590 +(1,1092:15470289,14229474:0,373362,104590 +r1,1156:17059546,14229474:1589257,477952,104590 +k1,1092:15470289,14229474:-1589257 +) +(1,1092:15470289,14229474:1589257,373362,104590 +k1,1092:15470289,14229474:3277 +h1,1092:17056269,14229474:0,370085,101313 +) +) +g1,1092:17059546,14229474 +) +) +g1,1092:15470289,14229474 +g1,1092:15470289,14229474 +) +) +g1,1092:15470289,14229474 +g1,1093:15470289,14229474 +g1,1093:15470289,14229474 +g1,1093:15470289,14229474 +g1,1093:15470289,14229474 +g1,1093:15470289,14229474 +g1,1094:15470289,14229474 +g1,1094:15470289,14229474 +g1,1094:15470289,14229474 +g1,1094:15470289,14229474 +g1,1095:15470289,14229474 +g1,1095:15470289,14229474 +g1,1095:15470289,14229474 +g1,1095:15470289,14229474 +g1,1095:15470289,14229474 +g1,1095:15470289,14229474 +g1,1096:15470289,14229474 +g1,1096:15470289,14229474 +) +g1,1096:15470289,14229474 +) +) +g1,1098:27230883,25803587 +k1,1098:32583029,25803587:5352146 +) +v1,1102:6630773,27184634:0,393216,0 +(1,1121:6630773,34234578:25952256,7443160,196608 +g1,1121:6630773,34234578 +g1,1121:6630773,34234578 +g1,1121:6434165,34234578 +(1,1121:6434165,34234578:0,7443160,196608 +r1,1156:32779637,34234578:26345472,7639768,196608 +k1,1121:6434165,34234578:-26345472 +) +(1,1121:6434165,34234578:26345472,7443160,196608 +[1,1121:6630773,34234578:25952256,7246552,0 +(1,1104:6630773,27376523:25952256,388497,4718 +(1,1103:6630773,27376523:0,0,0 +g1,1103:6630773,27376523 +g1,1103:6630773,27376523 +g1,1103:6303093,27376523 +(1,1103:6303093,27376523:0,0,0 +) +g1,1103:6630773,27376523 +) +g1,1104:7263065,27376523 +g1,1104:8211503,27376523 +h1,1104:8527649,27376523:0,0,0 +k1,1104:32583029,27376523:24055380 +g1,1104:32583029,27376523 +) +(1,1105:6630773,28042701:25952256,404226,76021 +h1,1105:6630773,28042701:0,0,0 +g1,1105:8527647,28042701 +g1,1105:9476084,28042701 +g1,1105:10108376,28042701 +g1,1105:11372959,28042701 +h1,1105:11689105,28042701:0,0,0 +k1,1105:32583029,28042701:20893924 +g1,1105:32583029,28042701 +) +(1,1106:6630773,28708879:25952256,404226,101187 +h1,1106:6630773,28708879:0,0,0 +g1,1106:6946919,28708879 +g1,1106:7263065,28708879 +k1,1106:7263065,28708879:0 +h1,1106:9792230,28708879:0,0,0 +k1,1106:32583030,28708879:22790800 +g1,1106:32583030,28708879 +) +(1,1107:6630773,29375057:25952256,388497,4718 +h1,1107:6630773,29375057:0,0,0 +g1,1107:6946919,29375057 +g1,1107:7263065,29375057 +g1,1107:7895357,29375057 +g1,1107:8843795,29375057 +h1,1107:9792233,29375057:0,0,0 +k1,1107:32583029,29375057:22790796 +g1,1107:32583029,29375057 +) +(1,1108:6630773,30041235:25952256,404226,76021 +h1,1108:6630773,30041235:0,0,0 +h1,1108:6946919,30041235:0,0,0 +k1,1108:32583029,30041235:25636110 +g1,1108:32583029,30041235 +) +(1,1114:6630773,30772949:25952256,404226,76021 +(1,1110:6630773,30772949:0,0,0 +g1,1110:6630773,30772949 +g1,1110:6630773,30772949 +g1,1110:6303093,30772949 +(1,1110:6303093,30772949:0,0,0 +) +g1,1110:6630773,30772949 +) +g1,1114:7579210,30772949 +g1,1114:8843793,30772949 +h1,1114:9159939,30772949:0,0,0 +k1,1114:32583029,30772949:23423090 +g1,1114:32583029,30772949 +) +(1,1114:6630773,31439127:25952256,404226,76021 +h1,1114:6630773,31439127:0,0,0 +g1,1114:7579210,31439127 +g1,1114:8843793,31439127 +h1,1114:9159939,31439127:0,0,0 +k1,1114:32583029,31439127:23423090 +g1,1114:32583029,31439127 +) +(1,1114:6630773,32105305:25952256,404226,76021 +h1,1114:6630773,32105305:0,0,0 +g1,1114:7579210,32105305 +g1,1114:8843793,32105305 +h1,1114:9476084,32105305:0,0,0 +k1,1114:32583028,32105305:23106944 +g1,1114:32583028,32105305 +) +(1,1116:6630773,33426843:25952256,404226,101187 +(1,1115:6630773,33426843:0,0,0 +g1,1115:6630773,33426843 +g1,1115:6630773,33426843 +g1,1115:6303093,33426843 +(1,1115:6303093,33426843:0,0,0 +) +g1,1115:6630773,33426843 +) +k1,1116:6630773,33426843:0 +h1,1116:9159938,33426843:0,0,0 +k1,1116:32583030,33426843:23423092 +g1,1116:32583030,33426843 +) +(1,1120:6630773,34158557:25952256,404226,76021 +(1,1118:6630773,34158557:0,0,0 +g1,1118:6630773,34158557 +g1,1118:6630773,34158557 +g1,1118:6303093,34158557 +(1,1118:6303093,34158557:0,0,0 +) +g1,1118:6630773,34158557 +) +g1,1120:7579210,34158557 +g1,1120:8843793,34158557 +h1,1120:9792230,34158557:0,0,0 +k1,1120:32583030,34158557:22790800 +g1,1120:32583030,34158557 +) +] +) +g1,1121:32583029,34234578 +g1,1121:6630773,34234578 +g1,1121:6630773,34234578 +g1,1121:32583029,34234578 +g1,1121:32583029,34234578 +) +h1,1121:6630773,34431186:0,0,0 +v1,1125:6630773,35908113:0,393216,0 +(1,1126:6630773,36995487:25952256,1480590,0 +g1,1126:6630773,36995487 +g1,1126:6303093,36995487 +r1,1156:6401397,36995487:98304,1480590,0 +g1,1126:6600626,36995487 +g1,1126:6797234,36995487 +[1,1126:6797234,36995487:25785795,1480590,0 +(1,1126:6797234,36798879:25785795,1283982,196608 +(1,1125:6797234,36798879:0,1283982,196608 +r1,1156:8400153,36798879:1602919,1480590,196608 +k1,1125:6797234,36798879:-1602919 +) +(1,1125:6797234,36798879:1602919,1283982,196608 +) +g1,1125:8599382,36798879 +g1,1125:10457983,36798879 +g1,1125:12038056,36798879 +g1,1125:13521791,36798879 +g1,1125:14891493,36798879 +g1,1125:18755495,36798879 +g1,1125:20251682,36798879 +g1,1125:21469996,36798879 +g1,1125:23075628,36798879 +g1,1125:24955200,36798879 +g1,1125:25821585,36798879 +(1,1125:25821585,36798879:0,414482,115847 +r1,1156:26179851,36798879:358266,530329,115847 +k1,1125:25821585,36798879:-358266 +) +(1,1125:25821585,36798879:358266,414482,115847 +k1,1125:25821585,36798879:3277 +h1,1125:26176574,36798879:0,411205,112570 +) +g1,1125:26379080,36798879 +g1,1125:27109806,36798879 +g1,1125:29168291,36798879 +g1,1125:30809967,36798879 +k1,1126:32583029,36798879:802474 +g1,1126:32583029,36798879 +) +] +g1,1126:32583029,36995487 +) +h1,1126:6630773,36995487:0,0,0 +v1,1130:6630773,38154695:0,393216,0 +(1,1156:6630773,45706769:25952256,7945290,0 +g1,1156:6630773,45706769 +g1,1156:6303093,45706769 +r1,1156:6401397,45706769:98304,7945290,0 +g1,1156:6600626,45706769 +g1,1156:6797234,45706769 +[1,1156:6797234,45706769:25785795,7945290,0 +(1,1131:6797234,39045461:25785795,1283982,196608 +(1,1130:6797234,39045461:0,1283982,196608 +r1,1156:9362479,39045461:2565245,1480590,196608 +k1,1130:6797234,39045461:-2565245 +) +(1,1130:6797234,39045461:2565245,1283982,196608 +) +g1,1130:9561708,39045461 +g1,1130:10957624,39045461 +g1,1130:14673515,39045461 +g1,1130:16728068,39045461 +g1,1130:18031579,39045461 +g1,1130:18978574,39045461 +g1,1130:22354988,39045461 +k1,1131:32583029,39045461:9402943 +g1,1131:32583029,39045461 +) +v1,1133:6797234,40235927:0,393216,0 +(1,1141:6797234,43168549:25785795,3325838,196608 +g1,1141:6797234,43168549 +g1,1141:6797234,43168549 +g1,1141:6600626,43168549 +(1,1141:6600626,43168549:0,3325838,196608 +r1,1156:32779637,43168549:26179011,3522446,196608 +k1,1141:6600625,43168549:-26179012 +) +(1,1141:6600626,43168549:26179011,3325838,196608 +[1,1141:6797234,43168549:25785795,3129230,0 +(1,1135:6797234,40427816:25785795,388497,4718 +(1,1134:6797234,40427816:0,0,0 +g1,1134:6797234,40427816 +g1,1134:6797234,40427816 +g1,1134:6469554,40427816 +(1,1134:6469554,40427816:0,0,0 +) +g1,1134:6797234,40427816 +) +g1,1135:7429526,40427816 +g1,1135:8377964,40427816 +h1,1135:8694110,40427816:0,0,0 +k1,1135:32583030,40427816:23888920 +g1,1135:32583030,40427816 +) +(1,1136:6797234,41093994:25785795,404226,101187 +h1,1136:6797234,41093994:0,0,0 +k1,1136:6797234,41093994:0 +h1,1136:9326399,41093994:0,0,0 +k1,1136:32583029,41093994:23256630 +g1,1136:32583029,41093994 +) +(1,1137:6797234,41760172:25785795,404226,76021 +h1,1137:6797234,41760172:0,0,0 +g1,1137:8694108,41760172 +g1,1137:9642545,41760172 +g1,1137:10274837,41760172 +g1,1137:11539420,41760172 +h1,1137:11855566,41760172:0,0,0 +k1,1137:32583030,41760172:20727464 +g1,1137:32583030,41760172 +) +(1,1138:6797234,42426350:25785795,404226,101187 +h1,1138:6797234,42426350:0,0,0 +g1,1138:7113380,42426350 +g1,1138:7429526,42426350 +g1,1138:9958691,42426350 +g1,1138:10907129,42426350 +h1,1138:12171713,42426350:0,0,0 +k1,1138:32583029,42426350:20411316 +g1,1138:32583029,42426350 +) +(1,1139:6797234,43092528:25785795,404226,76021 +h1,1139:6797234,43092528:0,0,0 +h1,1139:7113380,43092528:0,0,0 +k1,1139:32583028,43092528:25469648 +g1,1139:32583028,43092528 +) +] +) +g1,1141:32583029,43168549 +g1,1141:6797234,43168549 +g1,1141:6797234,43168549 +g1,1141:32583029,43168549 +g1,1141:32583029,43168549 +) +h1,1141:6797234,43365157:0,0,0 +(1,1145:6797234,44730933:25785795,513147,126483 +h1,1144:6797234,44730933:983040,0,0 +k1,1144:10344918,44730933:230907 +k1,1144:11872783,44730933:230907 +k1,1144:13306932,44730933:230908 +k1,1144:15638268,44730933:230907 +k1,1144:17060620,44730933:230907 +k1,1144:18621908,44730933:230907 +k1,1144:19310912,44730933:230907 +k1,1144:21673050,44730933:230907 +k1,1144:22555386,44730933:230908 +k1,1144:23805378,44730933:230907 +k1,1144:26562698,44730933:230907 +k1,1144:27409643,44730933:230907 +k1,1144:28055362,44730933:230876 +k1,1144:28945561,44730933:230907 +k1,1144:31683875,44730933:230907 +k1,1145:32583029,44730933:0 +) +(1,1145:6797234,45572421:25785795,505283,134348 +g1,1144:10286370,45572421 +g1,1144:11137027,45572421 +g1,1144:13567757,45572421 +g1,1144:16608627,45572421 +g1,1144:18817845,45572421 +g1,1144:19372934,45572421 +g1,1144:21445182,45572421 +g1,1144:24830771,45572421 +g1,1144:26176225,45572421 +g1,1144:27394539,45572421 +g1,1144:28750478,45572421 +k1,1145:32583029,45572421:1790449 +g1,1145:32583029,45572421 +) +] +g1,1156:32583029,45706769 +) +] +(1,1156:32583029,45706769:0,0,0 +g1,1156:32583029,45706769 +) +) +] +(1,1156:6630773,47279633:25952256,0,0 +h1,1156:6630773,47279633:25952256,0,0 +) +] +(1,1156:4262630,4025873:0,0,0 +[1,1156:-473656,4025873:0,0,0 +(1,1156:-473656,-710413:0,0,0 +(1,1156:-473656,-710413:0,0,0 +g1,1156:-473656,-710413 +) +g1,1156:-473656,-710413 +) +] +) +] +!22104 +}26 +Input:398:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:399:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:400:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:401:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:402:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:403:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:404:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:405:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:406:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:407:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:408:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:409:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:410:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:411:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:412:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:413:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:414:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:415:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:416:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:417:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:418:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:419:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:420:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:421:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:422:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2286 +{27 +[1,1211:4262630,47279633:28320399,43253760,0 +(1,1211:4262630,4025873:0,0,0 +[1,1211:-473656,4025873:0,0,0 +(1,1211:-473656,-710413:0,0,0 +(1,1211:-473656,-644877:0,0,0 +k1,1211:-473656,-644877:-65536 ) +(1,1211:-473656,4736287:0,0,0 +k1,1211:-473656,4736287:5209943 ) -k1,19106:3078556,49800853:-34777008 +g1,1211:-473656,-710413 ) ] -g1,19106:6630773,4812305 -k1,19106:28581402,4812305:20755252 ) +[1,1211:6630773,47279633:25952256,43253760,0 +[1,1211:6630773,4812305:25952256,786432,0 +(1,1211:6630773,4812305:25952256,505283,134348 +(1,1211:6630773,4812305:25952256,505283,134348 +g1,1211:3078558,4812305 +[1,1211:3078558,4812305:0,0,0 +(1,1211:3078558,2439708:0,1703936,0 +k1,1211:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,1211:2537886,2439708:1179648,16384,0 ) -] -[1,19106:6630773,45706769:25952256,40108032,0 -(1,19106:6630773,45706769:25952256,40108032,0 -(1,19106:6630773,45706769:0,0,0 -g1,19106:6630773,45706769 -) -[1,19106:6630773,45706769:25952256,40108032,0 -(1,19106:7613813,6254097:24969216,505283,134348 -(1,19106:7613813,6254097:-983040,0,0 -g1,19106:6630773,6254097 -g1,19106:5320053,6254097 -g1,19106:4992373,6254097 -(1,19106:4992373,6254097:1310720,0,0 -k1,19106:6303093,6254097:1310720 -) -g1,19106:6630773,6254097 -) -k1,19106:9629463,6254097:227828 -k1,19106:10307494,6254097:227799 -k1,19106:10985525,6254097:227799 -k1,19106:13395133,6254097:227914 -k1,19106:16711587,6254097:227742 -k1,19106:17924991,6254097:227743 -k1,19106:19991018,6254097:227742 -k1,19106:22131756,6254097:227742 -k1,19106:23722648,6254097:227743 -k1,19106:24573780,6254097:227885 -k1,19106:28463018,6254097:227742 -k1,19106:30702801,6254097:227828 -k1,19106:32583029,6254097:0 -) -(1,19106:7613813,7095585:24969216,513147,134348 -k1,19106:9881597,7095585:278766 -k1,19106:11370814,7095585:278767 -k1,19106:16354410,7095585:278766 -k1,19106:19869344,7095585:278766 -k1,19106:22523611,7095585:279243 -k1,19106:25839971,7095585:278766 -k1,19106:26570936,7095585:278767 -k1,19106:29812585,7095585:278766 -k1,19106:32130831,7095585:278766 -k1,19106:32583029,7095585:0 -) -(1,19106:7613813,7937073:24969216,505283,126483 -g1,19106:10096316,7937073 -g1,19106:12467408,7937073 -g1,19106:13261049,7937073 -g1,19106:14829325,7937073 -g1,19106:16620423,7937073 -g1,19106:20836354,7937073 -g1,19106:22208022,7937073 -g1,19106:23216621,7937073 -g1,19106:24010262,7937073 -k1,19106:32583029,7937073:6996626 -g1,19106:32583029,7937073 -) -(1,19106:7613813,8778561:24969216,505283,126483 -(1,19106:7613813,8778561:-983040,0,0 -g1,19106:6630773,8778561 -g1,19106:5320053,8778561 -g1,19106:4992373,8778561 -(1,19106:4992373,8778561:1310720,0,0 -k1,19106:6303093,8778561:1310720 -) -g1,19106:6630773,8778561 -) -k1,19106:9799111,8778561:199557 -k1,19106:10627814,8778561:199557 -k1,19106:13009067,8778561:199559 -k1,19106:17310521,8778561:199556 -k1,19106:20366136,8778561:199556 -k1,19106:21928842,8778561:199557 -k1,19106:22577975,8778561:199556 -k1,19106:23987982,8778561:199557 -k1,19106:24637115,8778561:199556 -k1,19106:26970525,8778561:199558 -k1,19106:28404125,8778561:199557 -k1,19106:29545435,8778561:199558 -k1,19106:32583029,8778561:0 -) -(1,19106:7613813,9620049:24969216,505283,126483 -k1,19106:8294076,9620049:228065 -k1,19106:11485023,9620049:228064 -k1,19106:12909775,9620049:228065 -k1,19106:13582828,9620049:228064 -k1,19106:16061572,9620049:228238 -k1,19106:19327230,9620049:228064 -k1,19106:20746740,9620049:228065 -k1,19106:24111530,9620049:228237 -k1,19106:25534972,9620049:228065 -k1,19106:26778362,9620049:228237 -k1,19106:28598440,9620049:228209 -k1,19106:32583029,9620049:0 -) -(1,19106:7613813,10461537:24969216,505283,126483 -g1,19106:8985481,10461537 -g1,19106:9994080,10461537 -g1,19106:11208462,10461537 -g1,19106:12378279,10461537 -k1,19106:32583029,10461537:19027068 -g1,19106:32583029,10461537 -) -(1,19106:7613813,11303025:24969216,513147,134348 -(1,19106:7613813,11303025:-983040,0,0 -g1,19106:6630773,11303025 -g1,19106:5320053,11303025 -g1,19106:4992373,11303025 -(1,19106:4992373,11303025:1310720,0,0 -k1,19106:6303093,11303025:1310720 -) -g1,19106:6630773,11303025 -) -k1,19106:10173353,11303025:277576 -k1,19106:11069511,11303025:277498 -k1,19106:12126887,11303025:277498 -k1,19106:13992822,11303025:277342 -k1,19106:14842527,11303025:277576 -k1,19106:17094937,11303025:277810 -k1,19106:20647113,11303025:277342 -k1,19106:23530822,11303025:277342 -k1,19106:24732222,11303025:277342 -k1,19106:27862346,11303025:277342 -k1,19106:29350138,11303025:277342 -k1,19106:32583029,11303025:0 -) -(1,19106:7613813,12144513:24969216,505283,126483 -g1,19106:9703756,12144513 -g1,19106:13787304,12144513 -g1,19106:15121617,12144513 -g1,19106:16516223,12144513 -g1,19106:17730605,12144513 -g1,19106:19521703,12144513 -k1,19106:32583029,12144513:8903067 -g1,19106:32583029,12144513 -) -(1,19106:7613813,12986001:24969216,513147,134348 -(1,19106:7613813,12986001:-983040,0,0 -g1,19106:6630773,12986001 -g1,19106:5320053,12986001 -g1,19106:4992373,12986001 -(1,19106:4992373,12986001:1310720,0,0 -k1,19106:6303093,12986001:1310720 -) -g1,19106:6630773,12986001 -) -k1,19106:10311432,12986001:162686 -k1,19106:10924313,12986001:162649 -k1,19106:12278334,12986001:162576 -k1,19106:13178264,12986001:162650 -k1,19106:14019866,12986001:162649 -k1,19106:16806504,12986001:162576 -k1,19106:19150993,12986001:162795 -k1,19106:22444879,12986001:162576 -k1,19106:25191067,12986001:162759 -k1,19106:28031554,12986001:162686 -k1,19106:32583029,12986001:0 -) -(1,19106:7613813,13827489:24969216,505283,134348 -k1,19106:9000503,13827489:176240 -k1,19106:12825131,13827489:176239 -k1,19106:14364520,13827489:176240 -k1,19106:15164144,13827489:176377 -k1,19106:17054806,13827489:176240 -k1,19106:20737359,13827489:176377 -k1,19106:22108975,13827489:176239 -k1,19106:23300505,13827489:176377 -k1,19106:25068729,13827489:176355 -k1,19106:30424934,13827489:176239 -k1,19106:31773659,13827489:176286 -k1,19106:32583029,13827489:0 -) -(1,19106:7613813,14668977:24969216,505283,126483 -g1,19106:8407454,14668977 -k1,19106:32583029,14668977:23396352 -g1,19106:32583029,14668977 -) -(1,19106:7613813,15510465:24969216,513147,134348 -(1,19106:7613813,15510465:-983040,0,0 -g1,19106:6630773,15510465 -g1,19106:5320053,15510465 -g1,19106:4992373,15510465 -(1,19106:4992373,15510465:1310720,0,0 -k1,19106:6303093,15510465:1310720 -) -g1,19106:6630773,15510465 -) -k1,19106:9380445,15510465:173452 -k1,19106:10082747,15510465:173426 -k1,19106:11447567,15510465:173375 -k1,19106:12400871,15510465:173426 -k1,19106:14530496,15510465:173375 -k1,19106:16292463,15510465:173374 -k1,19106:17038044,15510465:173452 -k1,19106:19186174,15510465:173530 -k1,19106:21752923,15510465:173374 -k1,19106:24657183,15510465:173375 -k1,19106:25754615,15510465:173374 -k1,19106:28321365,15510465:173375 -k1,19106:30938731,15510465:173529 -k1,19106:32583029,15510465:0 -) -(1,19106:7613813,16351953:24969216,505283,134348 -g1,19106:9845313,16351953 -g1,19106:13274156,16351953 -g1,19106:15318879,16351953 -g1,19106:16713485,16351953 -g1,19106:17927867,16351953 -g1,19106:19718965,16351953 -g1,19106:23902783,16351953 -g1,19106:25274451,16351953 -g1,19106:26283050,16351953 -g1,19106:27497432,16351953 -g1,19106:29065708,16351953 -k1,19106:32583029,16351953:1941180 -g1,19106:32583029,16351953 -) -(1,19106:7613813,17193441:24969216,513147,134348 -(1,19106:7613813,17193441:-983040,0,0 -g1,19106:6630773,17193441 -g1,19106:5320053,17193441 -g1,19106:4992373,17193441 -(1,19106:4992373,17193441:1310720,0,0 -k1,19106:6303093,17193441:1310720 -) -g1,19106:6630773,17193441 -) -k1,19106:9422745,17193441:231480 -k1,19106:10262368,17193441:231449 -k1,19106:11043008,17193441:231448 -k1,19106:13456279,17193441:231577 -k1,19106:16763924,17193441:231385 -k1,19106:19523224,17193441:231577 -k1,19106:20951295,17193441:231384 -k1,19106:24412293,17193441:231384 -k1,19106:25302970,17193441:231385 -k1,19106:28064044,17193441:231384 -k1,19106:30141115,17193441:231577 -k1,19106:31567876,17193441:231384 -k1,19106:32583029,17193441:0 -) -(1,19106:7613813,18034929:24969216,505283,126483 -g1,19106:9404911,18034929 -g1,19106:13588729,18034929 -g1,19106:14960397,18034929 -g1,19106:15968996,18034929 -g1,19106:16762637,18034929 -k1,19106:32583029,18034929:14244251 -g1,19106:32583029,18034929 -) -(1,19106:7613813,18876417:24969216,505283,134348 -(1,19106:7613813,18876417:-983040,0,0 -g1,19106:6630773,18876417 -g1,19106:5320053,18876417 -g1,19106:4992373,18876417 -(1,19106:4992373,18876417:1310720,0,0 -k1,19106:6303093,18876417:1310720 -) -g1,19106:6630773,18876417 -) -k1,19106:9662982,18876417:218093 -k1,19106:10518721,18876417:218074 -k1,19106:11398053,18876417:218074 -k1,19106:12807534,18876417:218036 -k1,19106:13644268,18876417:218074 -k1,19106:14391218,18876417:218074 -k1,19106:16659877,18876417:218037 -k1,19106:19059720,18876417:218149 -k1,19106:19359862,18876417:-13 -k1,19106:19359875,18876417:13 -k1,19106:20774599,18876417:218037 -k1,19106:23542641,18876417:218036 -k1,19106:26713730,18876417:218037 -k1,19106:29985182,18876417:218130 -k1,19106:32583029,18876417:0 -) -(1,19106:7613813,19717905:24969216,513147,126483 -k1,19106:9080836,19717905:199557 -k1,19106:9939684,19717905:199556 -k1,19106:11158326,19717905:199557 -k1,19106:12951718,19717905:199556 -k1,19106:18776885,19717905:199557 -k1,19106:21238090,19717905:199558 -k1,19106:22239154,19717905:199559 -k1,19106:26509151,19717905:199556 -k1,19106:27679297,19717905:199558 -k1,19106:28894007,19717905:199557 -k1,19106:32583029,19717905:0 -) -(1,19106:7613813,20559393:24969216,505283,126483 -g1,19106:9149976,20559393 -$1,19106:9149976,20559393 -g1,19106:9940340,20559393 -g1,19106:10335522,20559393 -g1,19106:11916250,20559393 -g1,19106:12311432,20559393 -$1,19106:15868070,20559393 -g1,19106:16067299,20559393 -g1,19106:17438967,20559393 -g1,19106:18447566,20559393 -g1,19106:19241207,20559393 -k1,19106:32583029,20559393:11765681 -g1,19106:32583029,20559393 -) -(1,19106:7613813,21400881:24969216,513147,134348 -(1,19106:7613813,21400881:-983040,0,0 -g1,19106:6630773,21400881 -g1,19106:5320053,21400881 -g1,19106:4992373,21400881 -(1,19106:4992373,21400881:1310720,0,0 -k1,19106:6303093,21400881:1310720 -) -g1,19106:6630773,21400881 -) -k1,19106:10503364,21400881:218304 -k1,19106:11294435,21400881:218286 -k1,19106:12292598,21400881:218285 -k1,19106:13702290,21400881:218247 -k1,19106:14469768,21400881:218286 -k1,19106:15138285,21400881:218285 -k1,19106:17717794,21400881:218247 -k1,19106:20117849,21400881:218361 -k1,19106:23118100,21400881:218248 -k1,19106:24982611,21400881:218247 -k1,19106:25803789,21400881:218247 -k1,19106:28169110,21400881:218362 -k1,19106:31120265,21400881:218304 -k1,19106:32583029,21400881:0 -) -(1,19106:7613813,22242369:24969216,505283,134348 -k1,19106:11325018,22242369:166363 -k1,19106:16571568,22242369:166199 -k1,19106:20070273,22242369:166199 -k1,19106:23432860,22242369:166396 -k1,19106:24794435,22242369:166198 -k1,19106:25975853,22242369:166265 -k1,19106:27314557,22242369:166265 -k1,19106:28290126,22242369:166199 -k1,19106:29471543,22242369:166264 -k1,19106:31006888,22242369:166298 -k1,19106:32583029,22242369:0 -k1,19106:32583029,22242369:0 -) -(1,19106:7613813,23083857:24969216,513147,134348 -(1,19106:7613813,23083857:-983040,0,0 -g1,19106:6630773,23083857 -g1,19106:5320053,23083857 -g1,19106:4992373,23083857 -(1,19106:4992373,23083857:1310720,0,0 -k1,19106:6303093,23083857:1310720 -) -g1,19106:6630773,23083857 -) -k1,19106:10242290,23083857:162357 -k1,19106:10977395,23083857:162320 -k1,19106:11919593,23083857:162320 -k1,19106:13273284,23083857:162246 -k1,19106:14054264,23083857:162320 -k1,19106:15533128,23083857:162246 -k1,19106:17877290,23083857:162468 -k1,19106:19227048,23083857:162246 -k1,19106:21875075,23083857:162246 -k1,19106:22653359,23083857:162246 -k1,19106:27379753,23083857:162467 -k1,19106:30211936,23083857:162246 -k1,19106:32583029,23083857:0 -) -(1,19106:7613813,23925345:24969216,505283,126483 -g1,19106:9008419,23925345 -g1,19106:10222801,23925345 -g1,19106:12013899,23925345 -g1,19106:16229830,23925345 -g1,19106:17601498,23925345 -g1,19106:18610097,23925345 -g1,19106:19403738,23925345 -k1,19106:32583029,23925345:12001609 -g1,19106:32583029,23925345 -) -(1,19106:7613813,24766833:24969216,505283,134348 -(1,19106:7613813,24766833:-983040,0,0 -g1,19106:6630773,24766833 -g1,19106:5320053,24766833 -g1,19106:4992373,24766833 -(1,19106:4992373,24766833:1310720,0,0 -k1,19106:6303093,24766833:1310720 -) -g1,19106:6630773,24766833 -) -k1,19106:8907311,24766833:137443 -k1,19106:9721680,24766833:137382 -k1,19106:10403666,24766833:137382 -k1,19106:12722988,24766833:137628 -k1,19106:13023130,24766833:-13 -k1,19106:13023143,24766833:13 -k1,19106:15579334,24766833:137257 -k1,19106:20543033,24766833:137628 -k1,19106:21482104,24766833:137566 -k1,19106:22806874,24766833:137258 -k1,19106:26089205,24766833:137258 -k1,19106:28625735,24766833:137257 -k1,19106:30305896,24766833:137443 -k1,19106:31458431,24766833:137382 -k1,19106:32583029,24766833:0 -) -(1,19106:7613813,25608321:24969216,505283,126483 -g1,19106:9008419,25608321 -g1,19106:10380087,25608321 -g1,19106:11388686,25608321 -g1,19106:12603068,25608321 -g1,19106:13772885,25608321 -k1,19106:32583030,25608321:17234004 -g1,19106:32583030,25608321 -) -(1,19106:7613813,26449809:24969216,505283,173670 -(1,19106:7613813,26449809:-983040,0,0 -g1,19106:6630773,26449809 -g1,19106:5320053,26449809 -g1,19106:4992373,26449809 -(1,19106:4992373,26449809:1310720,0,0 -k1,19106:6303093,26449809:1310720 -) -g1,19106:6630773,26449809 -) -k1,19106:9671449,26449809:165612 -k1,19106:10375734,26449809:165579 -k1,19106:12723141,26449809:165713 -[1,19106:12862077,26449809:342688,473825,0 -(1,19106:12862077,26313167:342688,337183,0 +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,1211:3078558,1915420:16384,1179648,0 ) -] -(1,19106:13431719,26623479:372900,473825,0 -) -k1,19106:14470993,26449809:165679 -k1,19106:15034964,26449809:165512 -k1,19106:18302294,26449809:165511 -k1,19106:22219741,26449809:165511 -k1,19106:24692321,26449809:165713 -k1,19106:27343159,26449809:165713 -k1,19106:28742713,26449809:165511 -k1,19106:29850178,26449809:165713 -k1,19106:32583029,26449809:0 -) -(1,19106:7613813,27291297:24969216,505283,126483 -g1,19106:13067063,27291297 -g1,19106:13860704,27291297 -g1,19106:15428980,27291297 -g1,19106:17220078,27291297 -g1,19106:22042872,27291297 -g1,19106:23414540,27291297 -g1,19106:24423139,27291297 -g1,19106:25216780,27291297 -k1,19106:32583029,27291297:5790108 -g1,19106:32583029,27291297 -) -(1,19106:7613813,28132785:24969216,513147,134348 -(1,19106:7613813,28132785:-983040,0,0 -g1,19106:6630773,28132785 -g1,19106:5320053,28132785 -g1,19106:4992373,28132785 -(1,19106:4992373,28132785:1310720,0,0 -k1,19106:6303093,28132785:1310720 -) -g1,19106:6630773,28132785 -) -k1,19106:9110216,28132785:313478 -k1,19106:9956388,28132785:313364 -k1,19106:12451902,28132785:313820 -k1,19106:12752044,28132785:-13 -k1,19106:12752057,28132785:13 -k1,19106:15855062,28132785:313137 -k1,19106:19563619,28132785:313137 -k1,19106:20536047,28132785:313136 -k1,19106:23933308,28132785:313137 -k1,19106:26572973,28132785:313137 -k1,19106:28621503,28132785:313137 -k1,19106:31193666,28132785:313137 -k1,19106:32583029,28132785:0 -) -(1,19106:7613813,28974273:24969216,505283,134348 -k1,19106:10826637,28974273:184405 -k1,19106:11812532,28974273:184390 -k1,19106:15733710,28974273:184315 -k1,19106:16520957,28974273:184316 -k1,19106:21391753,28974273:184316 -k1,19106:24480712,28974273:184404 -k1,19106:27755706,28974273:184316 -k1,19106:29707617,28974273:184405 -k1,19106:30857307,28974273:184345 -k1,19106:31803151,28974273:184316 -k1,19106:32583029,28974273:0 -) -(1,19106:7613813,29815761:24969216,505283,134348 -k1,19106:9984315,29815761:247791 -k1,19106:11423552,29815761:247792 -k1,19106:12244225,29815761:247888 -k1,19106:14310277,29815761:248083 -k1,19106:18169248,29815761:247937 -k1,19106:21458153,29815761:248034 -k1,19106:24137330,29815761:247791 -k1,19106:26587932,29815761:247937 -k1,19106:27850974,29815761:247889 -k1,19106:30991160,29815761:248082 -k1,19106:32583029,29815761:0 -) -(1,19106:7613813,30657249:24969216,505283,126483 -g1,19106:12436607,30657249 -g1,19106:13808275,30657249 -g1,19106:14816874,30657249 -g1,19106:15610515,30657249 -k1,19106:32583029,30657249:15794832 -g1,19106:32583029,30657249 -) -(1,19106:7613813,31498737:24969216,505283,134349 -(1,19106:7613813,31498737:-983040,0,0 -g1,19106:6630773,31498737 -g1,19106:5320053,31498737 -g1,19106:4992373,31498737 -(1,19106:4992373,31498737:1310720,0,0 -k1,19106:6303093,31498737:1310720 -) -g1,19106:6630773,31498737 -) -k1,19106:9231551,31498737:285391 -k1,19106:9967088,31498737:285305 -k1,19106:12434431,31498737:285649 -k1,19106:16510167,31498737:285134 -k1,19106:17419063,31498737:285649 -k1,19106:19074983,31498737:285563 -$1,19106:19074983,31498737 -k1,19106:21145096,31498737:94203 -k1,19106:21634481,31498737:94203 -k1,19106:22123866,31498737:94203 -k1,19106:22613250,31498737:94202 -k1,19106:24288181,31498737:94203 -k1,19106:24777566,31498737:94203 -k1,19106:25266951,31498737:94203 -(1,19106:25662133,31597051:32768,0,0 -) -k1,19106:25789103,31498737:94202 -k1,19106:28649580,31498737:94203 -k1,19106:29138965,31498737:94203 -k1,19106:30418714,31498737:94203 -k1,19106:30908098,31498737:94202 -k1,19106:32187847,31498737:94203 -k1,19106:32583029,31498737:0 -) -(1,19106:7613813,32340225:24969216,505283,98314 -g1,19106:10380087,32340225 -g1,19106:10775269,32340225 -g1,19106:12751179,32340225 -(1,19106:13146361,32438539:32768,0,0 -) -g1,19106:13179129,32340225 -g1,19106:16735767,32340225 -g1,19106:17130949,32340225 -g1,19106:17921313,32340225 -g1,19106:18316495,32340225 -g1,19106:20292405,32340225 -g1,19106:20687587,32340225 -$1,19106:22268315,32340225 -g1,19106:22467544,32340225 -g1,19106:24988714,32340225 -g1,19106:25997313,32340225 -k1,19106:32583029,32340225:2346192 -g1,19106:32583029,32340225 -) -(1,19106:7613813,33181713:24969216,513147,134348 -(1,19106:7613813,33181713:-983040,0,0 -g1,19106:6630773,33181713 -g1,19106:5320053,33181713 -g1,19106:4992373,33181713 -(1,19106:4992373,33181713:1310720,0,0 -k1,19106:6303093,33181713:1310720 -) -g1,19106:6630773,33181713 -) -k1,19106:8112763,33181713:154231 -k1,19106:9004228,33181713:154185 -k1,19106:9707606,33181713:154186 -k1,19106:10989577,33181713:154096 -k1,19106:12200112,33181713:154095 -k1,19106:13545652,33181713:154095 -k1,19106:14244442,33181713:154186 -k1,19106:15166619,33181713:154095 -k1,19106:17128198,33181713:154096 -k1,19106:19464257,33181713:154365 -k1,19106:22450163,33181713:154095 -k1,19106:25014018,33181713:154096 -k1,19106:26092171,33181713:154095 -k1,19106:26695844,33181713:154096 -k1,19106:29880324,33181713:154095 -k1,19106:32583029,33181713:0 -) -(1,19106:7613813,34023201:24969216,505283,134348 -k1,19106:8955000,34023201:170059 -k1,19106:10110544,34023201:169883 -k1,19106:11222355,34023201:170059 -k1,19106:15455617,34023201:170030 -k1,19106:17339922,34023201:169883 -k1,19106:21016070,34023201:169972 -k1,19106:21780424,34023201:169942 -k1,19106:23319530,34023201:170059 -k1,19106:25081428,34023201:170029 -k1,19106:30431278,34023201:169884 -k1,19106:31773659,34023201:169942 -k1,19106:32583029,34023201:0 -) -(1,19106:7613813,34864689:24969216,505283,126483 -g1,19106:8407454,34864689 -k1,19106:32583029,34864689:23396352 -g1,19106:32583029,34864689 -) -(1,19106:7613813,35706177:24969216,513147,134348 -(1,19106:7613813,35706177:-983040,0,0 -g1,19106:6630773,35706177 -g1,19106:5320053,35706177 -g1,19106:4992373,35706177 -(1,19106:4992373,35706177:1310720,0,0 -k1,19106:6303093,35706177:1310720 -) -g1,19106:6630773,35706177 -) -k1,19106:9226018,35706177:159927 -k1,19106:10051752,35706177:159888 -k1,19106:12393491,35706177:160045 -k1,19106:13740812,35706177:159809 -k1,19106:14930847,35706177:159809 -k1,19106:15706694,35706177:159809 -k1,19106:16316080,35706177:159809 -k1,19106:21040013,35706177:160006 -k1,19106:21689376,35706177:159809 -k1,19106:23371586,35706177:159809 -k1,19106:24147433,35706177:159809 -k1,19106:27337627,35706177:159809 -k1,19106:30279439,35706177:159809 -k1,19106:32583029,35706177:0 -) -(1,19106:7613813,36547665:24969216,505283,126483 -g1,19106:8699744,36547665 -g1,19106:10903719,36547665 -g1,19106:12948442,36547665 -g1,19106:13742083,36547665 -g1,19106:15310359,36547665 -g1,19106:17101457,36547665 -g1,19106:21285275,36547665 -g1,19106:22656943,36547665 -g1,19106:23665542,36547665 -g1,19106:24879924,36547665 -g1,19106:26049741,36547665 -g1,19106:27618017,36547665 -k1,19106:32583029,36547665:3388871 -g1,19106:32583029,36547665 -) -(1,19106:7613813,37389153:24969216,505283,126483 -(1,19106:7613813,37389153:-983040,0,0 -g1,19106:6630773,37389153 -g1,19106:5320053,37389153 -g1,19106:4992373,37389153 -(1,19106:4992373,37389153:1310720,0,0 -k1,19106:6303093,37389153:1310720 -) -g1,19106:6630773,37389153 -) -k1,19106:9288775,37389153:171566 -k1,19106:10009505,37389153:171538 -k1,19106:12362848,37389153:171649 -k1,19106:12983908,37389153:171483 -k1,19106:16140065,37389153:171648 -k1,19106:17545591,37389153:171483 -k1,19106:18658991,37389153:171648 -k1,19106:20186414,37389153:171483 -k1,19106:22203474,37389153:171566 -k1,19106:22969424,37389153:171538 -k1,19106:24510120,37389153:171649 -k1,19106:26273610,37389153:171621 -k1,19106:30429682,37389153:171483 -k1,19106:31773659,37389153:171538 -k1,19106:32583029,37389153:0 -) -(1,19106:7613813,38230641:24969216,505283,126483 -g1,19106:8407454,38230641 -k1,19106:32583029,38230641:22599434 -g1,19106:32583029,38230641 -) -(1,19106:7613813,39072129:24969216,505283,126483 -(1,19106:7613813,39072129:-983040,0,0 -g1,19106:6630773,39072129 -g1,19106:5320053,39072129 -g1,19106:4992373,39072129 -(1,19106:4992373,39072129:1310720,0,0 -k1,19106:6303093,39072129:1310720 -) -g1,19106:6630773,39072129 -) -(1,19106:6630773,39072129:983040,211026,0 -k1,19106:7613813,39072129:327680 -) -k1,19106:9987550,39072129:192043 -k1,19106:10629126,39072129:191999 -k1,19106:13805678,39072129:192043 -k1,19106:15105235,39072129:191999 -k1,19106:16239030,39072129:192043 -k1,19106:19316616,39072129:192036 -k1,19106:20864555,39072129:191999 -k1,19106:25103403,39072129:192000 -k1,19106:25747600,39072129:191999 -k1,19106:28396588,39072129:192043 -k1,19106:29783964,39072129:191999 -k1,19106:30991160,39072129:192043 -k1,19106:32583029,39072129:0 -) -(1,19106:7613813,39913617:24969216,505283,126483 -g1,19106:11797631,39913617 -g1,19106:13169299,39913617 -g1,19106:14177898,39913617 -g1,19106:15392280,39913617 -g1,19106:16562097,39913617 -k1,19106:32583029,39913617:14444791 -g1,19106:32583029,39913617 -) -(1,19106:7613813,40755105:24969216,505283,134348 -(1,19106:7613813,40755105:-983040,0,0 -g1,19106:6630773,40755105 -g1,19106:5320053,40755105 -g1,19106:4992373,40755105 -(1,19106:4992373,40755105:1310720,0,0 -k1,19106:6303093,40755105:1310720 -) -g1,19106:6630773,40755105 -) -k1,19106:9760477,40755105:204832 -k1,19106:10594450,40755105:204827 -k1,19106:11990711,40755105:204816 -k1,19106:12768323,40755105:204827 -k1,19106:16380355,40755105:204815 -k1,19106:18245853,40755105:204816 -k1,19106:19022814,40755105:204832 -k1,19106:21202263,40755105:204849 -k1,19106:24238890,40755105:204816 -k1,19106:25429367,40755105:204816 -k1,19106:27125126,40755105:204815 -k1,19106:28995244,40755105:204849 -k1,19106:31647830,40755105:204816 -k1,19106:32583029,40755105:0 -) -(1,19106:7613813,41596593:24969216,505283,126483 -g1,19106:9029390,41596593 -g1,19106:10423996,41596593 -g1,19106:11638378,41596593 -g1,19106:13429476,41596593 -g1,19106:17613294,41596593 -g1,19106:18984962,41596593 -g1,19106:19993561,41596593 -g1,19106:20787202,41596593 -k1,19106:32583029,41596593:10618145 -g1,19106:32583029,41596593 -) -(1,19106:7613813,42438081:24969216,513147,134348 -(1,19106:7613813,42438081:-983040,0,0 -g1,19106:6630773,42438081 -g1,19106:5320053,42438081 -g1,19106:4992373,42438081 -(1,19106:4992373,42438081:1310720,0,0 -k1,19106:6303093,42438081:1310720 -) -g1,19106:6630773,42438081 -) -k1,19106:8485046,42438081:168687 -k1,19106:9272362,42438081:168656 -k1,19106:10118005,42438081:168656 -k1,19106:12468477,42438081:168778 -k1,19106:13086649,42438081:168595 -k1,19106:17645501,42438081:168595 -k1,19106:18738154,42438081:168595 -k1,19106:20440947,42438081:168595 -k1,19106:23063393,42438081:168778 -k1,19106:26124930,42438081:168778 -k1,19106:27488901,42438081:168594 -k1,19106:28672832,42438081:168778 -k1,19106:30211937,42438081:168748 -$1,19106:30211937,42438081 -k1,19106:32187847,42438081:0 -k1,19106:32583029,42438081:0 -) -(1,19106:7613813,43279569:24969216,505283,134349 -g1,19106:8008995,43279569 -g1,19106:8404177,43279569 -g1,19106:11170451,43279569 -g1,19106:11565633,43279569 -g1,19106:12751179,43279569 -g1,19106:13146361,43279569 -$1,19106:17888545,43279569 -g1,19106:18087774,43279569 -g1,19106:20608944,43279569 -g1,19106:21617543,43279569 -g1,19106:25882626,43279569 -g1,19106:27254294,43279569 -g1,19106:28262893,43279569 -g1,19106:29477275,43279569 -g1,19106:30647092,43279569 -k1,19106:32583029,43279569:359796 -g1,19106:32583029,43279569 -) -(1,19106:7613813,44121057:24969216,513147,126483 -(1,19106:7613813,44121057:-983040,0,0 -g1,19106:6630773,44121057 -g1,19106:5320053,44121057 -g1,19106:4992373,44121057 -(1,19106:4992373,44121057:1310720,0,0 -k1,19106:6303093,44121057:1310720 -) -g1,19106:6630773,44121057 -) -k1,19106:9716403,44121057:274135 -k1,19106:10440696,44121057:274061 -k1,19106:11343902,44121057:274060 -k1,19106:12809259,44121057:273912 -k1,19106:13760306,44121057:274060 -k1,19106:14771647,44121057:274061 -k1,19106:16735077,44121057:273912 -k1,19106:19191130,44121057:274359 -k1,19106:23521064,44121057:273911 -k1,19106:25944557,44121057:273912 -k1,19106:26821399,44121057:273911 -k1,19106:27455104,44121057:273912 -k1,19106:28939465,44121057:273911 -k1,19106:31222502,44121057:274359 -k1,19106:32583029,44121057:0 -) -(1,19106:7613813,44962545:24969216,505283,134348 -g1,19106:9506492,44962545 -g1,19106:12395974,44962545 -g1,19106:13767642,44962545 -g1,19106:14776241,44962545 -g1,19106:15990623,44962545 -g1,19106:17558899,44962545 -k1,19106:32583029,44962545:13447989 -g1,19106:32583029,44962545 +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) ] -(1,19106:32583029,45706769:0,0,0 -g1,19106:32583029,45706769 ) ) -] -(1,19106:6630773,47279633:25952256,0,0 -h1,19106:6630773,47279633:25952256,0,0 ) ] -(1,19106:4262630,4025873:0,0,0 -[1,19106:-473656,4025873:0,0,0 -(1,19106:-473656,-710413:0,0,0 -(1,19106:-473656,-710413:0,0,0 -g1,19106:-473656,-710413 +[1,1211:3078558,4812305:0,0,0 +(1,1211:3078558,2439708:0,1703936,0 +g1,1211:29030814,2439708 +g1,1211:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,1211:36151628,1915420:16384,1179648,0 ) -g1,19106:-473656,-710413 +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) ] ) -] -!27631 -}375 -!12 -{376 -[1,19108:4262630,47279633:28320399,43253760,0 -(1,19108:4262630,4025873:0,0,0 -[1,19108:-473656,4025873:0,0,0 -(1,19108:-473656,-710413:0,0,0 -(1,19108:-473656,-644877:0,0,0 -k1,19108:-473656,-644877:-65536 -) -(1,19108:-473656,4736287:0,0,0 -k1,19108:-473656,4736287:5209943 -) -g1,19108:-473656,-710413 +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,1211:37855564,2439708:1179648,16384,0 ) -] ) -[1,19108:6630773,47279633:25952256,43253760,0 -[1,19108:6630773,4812305:25952256,786432,0 -(1,19108:6630773,4812305:25952256,505283,134348 -(1,19108:6630773,4812305:25952256,505283,134348 -g1,19108:3078558,4812305 -[1,19108:3078558,4812305:0,0,0 -(1,19108:3078558,2439708:0,1703936,0 -k1,19108:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,19108:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,19108:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 +k1,1211:3078556,2439708:-34777008 ) ] +[1,1211:3078558,4812305:0,0,0 +(1,1211:3078558,49800853:0,16384,2228224 +k1,1211:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,1211:2537886,49800853:1179648,16384,0 ) +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,1211:3078558,51504789:16384,1179648,0 ) +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) ] -[1,19108:3078558,4812305:0,0,0 -(1,19108:3078558,2439708:0,1703936,0 -g1,19108:29030814,2439708 -g1,19108:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,19108:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 ) -] ) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,19108:37855564,2439708:1179648,16384,0 ) +] +[1,1211:3078558,4812305:0,0,0 +(1,1211:3078558,49800853:0,16384,2228224 +g1,1211:29030814,49800853 +g1,1211:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,1211:36151628,51504789:16384,1179648,0 ) -k1,19108:3078556,2439708:-34777008 +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 ) ] -[1,19108:3078558,4812305:0,0,0 -(1,19108:3078558,49800853:0,16384,2228224 -k1,19108:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,19108:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,19108:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 ) -] +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,1211:37855564,49800853:1179648,16384,0 ) ) +k1,1211:3078556,49800853:-34777008 ) ] -[1,19108:3078558,4812305:0,0,0 -(1,19108:3078558,49800853:0,16384,2228224 -g1,19108:29030814,49800853 -g1,19108:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,19108:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 +g1,1211:6630773,4812305 +k1,1211:18771974,4812305:11344283 +g1,1211:20158715,4812305 +g1,1211:20807521,4812305 +g1,1211:24121676,4812305 +g1,1211:28605649,4812305 +g1,1211:30015328,4812305 +) ) ] +[1,1211:6630773,45706769:25952256,40108032,0 +(1,1211:6630773,45706769:25952256,40108032,0 +(1,1211:6630773,45706769:0,0,0 +g1,1211:6630773,45706769 ) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,19108:37855564,49800853:1179648,16384,0 +[1,1211:6630773,45706769:25952256,40108032,0 +v1,1156:6630773,6254097:0,393216,0 +(1,1156:6630773,9662966:25952256,3802085,0 +g1,1156:6630773,9662966 +g1,1156:6303093,9662966 +r1,1211:6401397,9662966:98304,3802085,0 +g1,1156:6600626,9662966 +g1,1156:6797234,9662966 +[1,1156:6797234,9662966:25785795,3802085,0 +v1,1147:6797234,6254097:0,393216,0 +(1,1152:6797234,7132611:25785795,1271730,196608 +g1,1152:6797234,7132611 +g1,1152:6797234,7132611 +g1,1152:6600626,7132611 +(1,1152:6600626,7132611:0,1271730,196608 +r1,1211:32779637,7132611:26179011,1468338,196608 +k1,1152:6600625,7132611:-26179012 +) +(1,1152:6600626,7132611:26179011,1271730,196608 +[1,1152:6797234,7132611:25785795,1075122,0 +(1,1149:6797234,6461715:25785795,404226,9436 +(1,1148:6797234,6461715:0,0,0 +g1,1148:6797234,6461715 +g1,1148:6797234,6461715 +g1,1148:6469554,6461715 +(1,1148:6469554,6461715:0,0,0 +) +g1,1148:6797234,6461715 +) +g1,1149:7429526,6461715 +g1,1149:8377964,6461715 +g1,1149:9010256,6461715 +g1,1149:9958694,6461715 +g1,1149:10590986,6461715 +g1,1149:11539424,6461715 +h1,1149:12487862,6461715:0,0,0 +k1,1149:32583030,6461715:20095168 +g1,1149:32583030,6461715 +) +(1,1150:6797234,7127893:25785795,284164,4718 +h1,1150:6797234,7127893:0,0,0 +h1,1150:7113380,7127893:0,0,0 +k1,1150:32583028,7127893:25469648 +g1,1150:32583028,7127893 +) +] +) +g1,1152:32583029,7132611 +g1,1152:6797234,7132611 +g1,1152:6797234,7132611 +g1,1152:32583029,7132611 +g1,1152:32583029,7132611 +) +h1,1152:6797234,7329219:0,0,0 +(1,1156:6797234,8694995:25785795,513147,126483 +h1,1155:6797234,8694995:983040,0,0 +k1,1155:10364773,8694995:250762 +k1,1155:11912492,8694995:250761 +k1,1155:12519114,8694995:250762 +k1,1155:15011207,8694995:250762 +(1,1155:15011207,8694995:0,452978,115847 +r1,1211:17831456,8694995:2820249,568825,115847 +k1,1155:15011207,8694995:-2820249 +) +(1,1155:15011207,8694995:2820249,452978,115847 +k1,1155:15011207,8694995:3277 +h1,1155:17828179,8694995:0,411205,112570 +) +k1,1155:18082218,8694995:250762 +k1,1155:19433984,8694995:250761 +k1,1155:21194696,8694995:250762 +k1,1155:23410883,8694995:250762 +k1,1155:25704402,8694995:250762 +(1,1155:25704402,8694995:0,452978,115847 +r1,1211:28172939,8694995:2468537,568825,115847 +k1,1155:25704402,8694995:-2468537 +) +(1,1155:25704402,8694995:2468537,452978,115847 +k1,1155:25704402,8694995:3277 +h1,1155:28169662,8694995:0,411205,112570 +) +k1,1155:28597370,8694995:250761 +k1,1155:30400025,8694995:250762 +k1,1156:32583029,8694995:0 +) +(1,1156:6797234,9536483:25785795,513147,126483 +g1,1155:8635518,9536483 +g1,1155:9300708,9536483 +k1,1156:32583030,9536483:19999624 +g1,1156:32583030,9536483 +) +] +g1,1156:32583029,9662966 +) +h1,1156:6630773,9662966:0,0,0 +v1,1159:6630773,11028742:0,393216,0 +(1,1160:6630773,14437722:25952256,3802196,0 +g1,1160:6630773,14437722 +g1,1160:6303093,14437722 +r1,1211:6401397,14437722:98304,3802196,0 +g1,1160:6600626,14437722 +g1,1160:6797234,14437722 +[1,1160:6797234,14437722:25785795,3802196,0 +(1,1160:6797234,11797411:25785795,1161885,196608 +(1,1159:6797234,11797411:0,1161885,196608 +r1,1211:8344870,11797411:1547636,1358493,196608 +k1,1159:6797234,11797411:-1547636 +) +(1,1159:6797234,11797411:1547636,1161885,196608 +) +k1,1159:8564424,11797411:219554 +(1,1159:8564424,11797411:0,452978,115847 +r1,1211:10329537,11797411:1765113,568825,115847 +k1,1159:8564424,11797411:-1765113 +) +(1,1159:8564424,11797411:1765113,452978,115847 +k1,1159:8564424,11797411:3277 +h1,1159:10326260,11797411:0,411205,112570 +) +k1,1159:10549090,11797411:219553 +k1,1159:12513868,11797411:219554 +k1,1159:13419583,11797411:219553 +k1,1159:16729160,11797411:219554 +k1,1159:18804037,11797411:219553 +k1,1159:20156053,11797411:219554 +k1,1159:23464318,11797411:219553 +k1,1159:25381910,11797411:219554 +k1,1159:26620548,11797411:219553 +k1,1159:29872453,11797411:219554 +k1,1159:32051532,11797411:219553 +k1,1160:32583029,11797411:0 +) +(1,1160:6797234,12638899:25785795,505283,134348 +(1,1159:6797234,12638899:0,414482,115847 +r1,1211:8562347,12638899:1765113,530329,115847 +k1,1159:6797234,12638899:-1765113 +) +(1,1159:6797234,12638899:1765113,414482,115847 +k1,1159:6797234,12638899:3277 +h1,1159:8559070,12638899:0,411205,112570 +) +k1,1159:8970835,12638899:234818 +k1,1159:9833488,12638899:234818 +k1,1159:11812219,12638899:234818 +k1,1159:13744420,12638899:234819 +k1,1159:15263744,12638899:234818 +k1,1159:17790356,12638899:234818 +k1,1159:20838635,12638899:234818 +k1,1159:23790576,12638899:234818 +k1,1159:25880064,12638899:234819 +k1,1159:26924252,12638899:234818 +k1,1159:27929773,12638899:234818 +k1,1159:31391584,12638899:234818 +k1,1159:32583029,12638899:0 +) +(1,1160:6797234,13480387:25785795,513147,126483 +k1,1159:10042492,13480387:212907 +k1,1159:12265388,13480387:212907 +k1,1159:13497380,13480387:212907 +k1,1159:17124057,13480387:212907 +k1,1159:20696995,13480387:212907 +k1,1159:21778254,13480387:212907 +k1,1159:23095442,13480387:212906 +k1,1159:24408043,13480387:212907 +(1,1159:24408043,13480387:0,452978,115847 +r1,1211:26876580,13480387:2468537,568825,115847 +k1,1159:24408043,13480387:-2468537 +) +(1,1159:24408043,13480387:2468537,452978,115847 +k1,1159:24408043,13480387:3277 +h1,1159:26873303,13480387:0,411205,112570 +) +k1,1159:27089487,13480387:212907 +k1,1159:27918432,13480387:212907 +k1,1159:29150424,13480387:212907 +k1,1159:30940127,13480387:212907 +k1,1159:31812326,13480387:212907 +k1,1160:32583029,13480387:0 +) +(1,1160:6797234,14321875:25785795,459977,115847 +(1,1159:6797234,14321875:0,459977,115847 +r1,1211:7507212,14321875:709978,575824,115847 +k1,1159:6797234,14321875:-709978 +) +(1,1159:6797234,14321875:709978,459977,115847 +k1,1159:6797234,14321875:3277 +h1,1159:7503935,14321875:0,411205,112570 +) +g1,1159:7706441,14321875 +g1,1159:8588555,14321875 +(1,1159:8588555,14321875:0,452978,115847 +r1,1211:10001956,14321875:1413401,568825,115847 +k1,1159:8588555,14321875:-1413401 +) +(1,1159:8588555,14321875:1413401,452978,115847 +k1,1159:8588555,14321875:3277 +h1,1159:9998679,14321875:0,411205,112570 +) +g1,1159:10201185,14321875 +k1,1160:32583028,14321875:19021812 +g1,1160:32583028,14321875 +) +] +g1,1160:32583029,14437722 +) +h1,1160:6630773,14437722:0,0,0 +(1,1162:6630773,16065642:25952256,505283,126483 +(1,1162:6630773,16065642:2809528,485622,11795 +g1,1162:6630773,16065642 +g1,1162:9440301,16065642 +) +(1,1162:9440301,16065642:0,414482,115847 +r1,1211:11557126,16065642:2116825,530329,115847 +k1,1162:9440301,16065642:-2116825 +) +(1,1162:9440301,16065642:2116825,414482,115847 +k1,1162:9440301,16065642:3277 +h1,1162:11553849,16065642:0,411205,112570 +) +g1,1162:11761598,16065642 +k1,1162:32583028,16065642:19029020 +g1,1162:32583028,16065642 +) +(1,1164:6630773,17300346:25952256,513147,126483 +k1,1163:8088054,17300346:260594 +(1,1163:8088054,17300346:0,414482,115847 +r1,1211:10204879,17300346:2116825,530329,115847 +k1,1163:8088054,17300346:-2116825 +) +(1,1163:8088054,17300346:2116825,414482,115847 +k1,1163:8088054,17300346:3277 +h1,1163:10201602,17300346:0,411205,112570 +) +k1,1163:10465473,17300346:260594 +k1,1163:10465473,17300346:0 +k1,1163:13749897,17300346:260593 +k1,1163:14541988,17300346:260594 +k1,1163:16015653,17300346:260594 +k1,1163:19581228,17300346:260594 +k1,1163:21528719,17300346:260594 +k1,1163:22861482,17300346:260594 +k1,1163:24649719,17300346:260593 +k1,1163:27884337,17300346:260594 +k1,1163:28831093,17300346:260594 +k1,1163:32583029,17300346:0 +) +(1,1164:6630773,18141834:25952256,505283,126483 +k1,1163:7951010,18141834:187775 +k1,1163:10268050,18141834:187775 +k1,1163:12827573,18141834:187775 +k1,1163:13824719,18141834:187776 +k1,1163:14368354,18141834:187775 +k1,1163:15655823,18141834:187775 +k1,1163:16495026,18141834:187775 +(1,1163:16495026,18141834:0,452978,115847 +r1,1211:18963563,18141834:2468537,568825,115847 +k1,1163:16495026,18141834:-2468537 +) +(1,1163:16495026,18141834:2468537,452978,115847 +k1,1163:16495026,18141834:3277 +h1,1163:18960286,18141834:0,411205,112570 +) +k1,1163:19325008,18141834:187775 +k1,1163:21398254,18141834:187775 +k1,1163:22690311,18141834:187775 +k1,1163:23625853,18141834:187776 +k1,1163:26127704,18141834:187775 +k1,1163:29366180,18141834:187775 +k1,1163:31563944,18141834:187775 +k1,1163:32583029,18141834:0 +) +(1,1164:6630773,18983322:25952256,513147,126483 +k1,1163:10239895,18983322:195352 +k1,1163:13621607,18983322:195352 +k1,1163:15101464,18983322:195351 +k1,1163:17194739,18983322:195352 +k1,1163:18409176,18983322:195352 +k1,1163:20181324,18983322:195352 +k1,1163:21035968,18983322:195352 +k1,1163:22250405,18983322:195352 +k1,1163:24034349,18983322:195351 +k1,1163:25058731,18983322:195352 +k1,1163:27611413,18983322:195352 +k1,1163:31400104,18983322:195352 +k1,1163:32583029,18983322:0 +) +(1,1164:6630773,19824810:25952256,513147,115847 +k1,1163:7545016,19824810:254951 +k1,1163:10690760,19824810:254951 +k1,1163:13641207,19824810:254951 +(1,1163:13641207,19824810:0,452978,115847 +r1,1211:16109744,19824810:2468537,568825,115847 +k1,1163:13641207,19824810:-2468537 +) +(1,1163:13641207,19824810:2468537,452978,115847 +k1,1163:13641207,19824810:3277 +h1,1163:16106467,19824810:0,411205,112570 +) +k1,1163:16364695,19824810:254951 +k1,1163:18241662,19824810:254951 +k1,1163:19244380,19824810:254952 +k1,1163:21540777,19824810:254951 +k1,1163:22481890,19824810:254951 +k1,1163:26012330,19824810:254951 +k1,1163:28984404,19824810:254951 +k1,1163:29855393,19824810:254951 +k1,1163:30466204,19824810:254951 +(1,1163:30466204,19824810:0,414482,115847 +r1,1211:32583029,19824810:2116825,530329,115847 +k1,1163:30466204,19824810:-2116825 +) +(1,1163:30466204,19824810:2116825,414482,115847 +k1,1163:30466204,19824810:3277 +h1,1163:32579752,19824810:0,411205,112570 +) +k1,1163:32583029,19824810:0 +) +(1,1164:6630773,20666298:25952256,505283,126483 +g1,1163:8244924,20666298 +g1,1163:9576615,20666298 +g1,1163:10842115,20666298 +k1,1164:32583028,20666298:20164772 +g1,1164:32583028,20666298 +) +(1,1182:6630773,32541514:25952256,11027837,0 +k1,1182:12321541,32541514:5690768 +(1,1165:12321541,32541514:0,0,0 +g1,1165:12321541,32541514 +g1,1165:12321541,32541514 +g1,1165:11993861,32541514 +(1,1165:11993861,32541514:0,0,0 +) +g1,1165:12321541,32541514 +) +(1,1180:12321541,32541514:14570720,11027837,0 +g1,1180:15131667,32541514 +(1,1180:15131667,22459123:0,0,0 +(1,1180:15131667,22459123:0,0,0 +g1,1167:15131667,22459123 +(1,1168:15131667,22459123:0,0,0 +(1,1168:15131667,22459123:0,0,0 +g1,1168:15131667,22459123 +g1,1168:15131667,22459123 +g1,1168:15131667,22459123 +g1,1168:15131667,22459123 +g1,1168:15131667,22459123 +(1,1168:15131667,22459123:0,0,0 +(1,1168:15131667,22459123:589824,56623,0 +(1,1168:15131667,22459123:589824,56623,0 +) +g1,1168:15721491,22459123 +) +) +g1,1168:15131667,22459123 +g1,1168:15131667,22459123 +) +) +g1,1168:15131667,22459123 +(1,1169:15131667,22459123:0,0,0 +(1,1169:15131667,22459123:0,0,0 +g1,1169:15131667,22459123 +g1,1169:15131667,22459123 +g1,1169:15131667,22459123 +g1,1169:15131667,22459123 +g1,1169:15131667,22459123 +(1,1169:15131667,22459123:0,0,0 +(1,1169:15131667,22459123:358613,319685,0 +(1,1169:15131667,22459123:358613,319685,0 +$1,1169:15131667,22459123 +$1,1169:15490280,22459123 +) +g1,1169:15490280,22459123 +) +) +g1,1169:15131667,22459123 +g1,1169:15131667,22459123 +) +) +g1,1169:15131667,22459123 +(1,1170:15131667,22459123:0,0,0 +(1,1170:15131667,22459123:0,0,0 +g1,1170:15131667,22459123 +g1,1170:15131667,22459123 +g1,1170:15131667,22459123 +g1,1170:15131667,22459123 +g1,1170:15131667,22459123 +(1,1170:15131667,22459123:0,0,0 +(1,1170:15131667,22459123:1905798,373362,104590 +(1,1170:15131667,22459123:1905798,373362,104590 +(1,1170:15131667,22459123:0,373362,104590 +r1,1211:17037465,22459123:1905798,477952,104590 +k1,1170:15131667,22459123:-1905798 +) +(1,1170:15131667,22459123:1905798,373362,104590 +k1,1170:15131667,22459123:3277 +h1,1170:17034188,22459123:0,370085,101313 +) +) +g1,1170:17037465,22459123 +) +) +g1,1170:15131667,22459123 +g1,1170:15131667,22459123 +) +) +g1,1170:15131667,22459123 +(1,1171:15131667,22459123:0,0,0 +(1,1171:15131667,22459123:0,0,0 +g1,1171:15131667,22459123 +g1,1171:15131667,22459123 +g1,1171:15131667,22459123 +g1,1171:15131667,22459123 +g1,1171:15131667,22459123 +(1,1171:15131667,22459123:0,0,0 +(1,1171:15131667,22459123:4121582,373362,104590 +(1,1171:15131667,22459123:4121582,373362,104590 +(1,1171:15131667,22459123:0,373362,104590 +r1,1211:19253249,22459123:4121582,477952,104590 +k1,1171:15131667,22459123:-4121582 +) +(1,1171:15131667,22459123:4121582,373362,104590 +g1,1171:18616891,22459123 +h1,1171:19249972,22459123:0,370085,101313 +) +) +g1,1171:19253249,22459123 +) +) +g1,1171:15131667,22459123 +g1,1171:15131667,22459123 +) +) +g1,1171:15131667,22459123 +(1,1172:15131667,22459123:0,0,0 +(1,1172:15131667,22459123:0,0,0 +g1,1172:15131667,22459123 +g1,1172:15131667,22459123 +g1,1172:15131667,22459123 +g1,1172:15131667,22459123 +g1,1172:15131667,22459123 +(1,1172:15131667,22459123:0,0,0 +(1,1172:15131667,22459123:4121582,373362,104590 +(1,1172:15131667,22459123:4121582,373362,104590 +(1,1172:15131667,22459123:0,373362,104590 +r1,1211:19253249,22459123:4121582,477952,104590 +k1,1172:15131667,22459123:-4121582 +) +(1,1172:15131667,22459123:4121582,373362,104590 +g1,1172:18616891,22459123 +h1,1172:19249972,22459123:0,370085,101313 +) +) +g1,1172:19253249,22459123 +) +) +g1,1172:15131667,22459123 +g1,1172:15131667,22459123 +) +) +g1,1172:15131667,22459123 +g1,1173:15131667,22459123 +(1,1173:15131667,22459123:0,0,0 +(1,1173:15131667,22459123:0,0,0 +g1,1173:15131667,22459123 +g1,1173:15131667,22459123 +g1,1173:15131667,22459123 +g1,1173:15131667,22459123 +g1,1173:15131667,22459123 +(1,1173:15131667,22459123:0,0,0 +(1,1173:15131667,22459123:589824,56623,0 +(1,1173:15131667,22459123:589824,56623,0 +) +g1,1173:15721491,22459123 +) +) +g1,1173:15131667,22459123 +g1,1173:15131667,22459123 +) +) +g1,1173:15131667,22459123 +g1,1174:15131667,22459123 +g1,1174:15131667,22459123 +g1,1174:15131667,22459123 +g1,1174:15131667,22459123 +g1,1174:15131667,22459123 +g1,1174:15131667,22459123 +g1,1175:15131667,22459123 +g1,1175:15131667,22459123 +g1,1175:15131667,22459123 +g1,1175:15131667,22459123 +g1,1175:15131667,22459123 +(1,1175:15131667,22459123:0,0,0 +(1,1175:15131667,22459123:0,0,0 +g1,1175:15131667,22459123 +g1,1175:15131667,22459123 +g1,1175:15131667,22459123 +g1,1175:15131667,22459123 +g1,1175:15131667,22459123 +(1,1175:15131667,22459123:0,0,0 +(1,1175:15131667,22459123:0,0,0 +(1,1175:15131667,22459123:0,0,0 +) +g1,1175:15131667,22459123 +) +) +g1,1175:15131667,22459123 +g1,1175:15131667,22459123 +) +) +g1,1175:15131667,22459123 +g1,1176:15131667,22459123 +g1,1176:15131667,22459123 +g1,1176:15131667,22459123 +g1,1176:15131667,22459123 +(1,1176:15131667,22459123:0,0,0 +(1,1176:15131667,22459123:0,0,0 +g1,1176:15131667,22459123 +g1,1176:15131667,22459123 +g1,1176:15131667,22459123 +g1,1176:15131667,22459123 +g1,1176:15131667,22459123 +(1,1176:15131667,22459123:0,0,0 +(1,1176:15131667,22459123:2418868,426443,7077 +(1,1176:15131667,22459123:2418868,426443,7077 +) +g1,1176:17550535,22459123 +) +) +g1,1176:15131667,22459123 +g1,1176:15131667,22459123 +) +) +g1,1176:15131667,22459123 +g1,1177:15131667,22459123 +g1,1177:15131667,22459123 +g1,1177:15131667,22459123 +g1,1177:15131667,22459123 +g1,1177:15131667,22459123 +(1,1177:15131667,22459123:0,0,0 +(1,1177:15131667,22459123:0,0,0 +g1,1177:15131667,22459123 +g1,1177:15131667,22459123 +g1,1177:15131667,22459123 +g1,1177:15131667,22459123 +g1,1177:15131667,22459123 +(1,1177:15131667,22459123:0,0,0 +(1,1177:15131667,22459123:2222339,408008,104590 +(1,1177:15131667,22459123:2222339,408008,104590 +(1,1177:15131667,22459123:0,408008,104590 +r1,1211:17354006,22459123:2222339,512598,104590 +k1,1177:15131667,22459123:-2222339 +) +(1,1177:15131667,22459123:2222339,408008,104590 +k1,1177:15131667,22459123:3277 +h1,1177:17350729,22459123:0,370085,101313 +) +) +g1,1177:17354006,22459123 +) +) +g1,1177:15131667,22459123 +g1,1177:15131667,22459123 +) +) +g1,1177:15131667,22459123 +g1,1178:15131667,22459123 +g1,1178:15131667,22459123 +g1,1178:15131667,22459123 +g1,1178:15131667,22459123 +g1,1178:15131667,22459123 +g1,1178:15131667,22459123 +g1,1179:15131667,22459123 +g1,1179:15131667,22459123 +g1,1179:15131667,22459123 +g1,1179:15131667,22459123 +g1,1179:15131667,22459123 +g1,1179:15131667,22459123 +g1,1180:15131667,22459123 +g1,1180:15131667,22459123 +) +g1,1180:15131667,22459123 +) +) +g1,1182:26892261,32541514 +k1,1182:32583029,32541514:5690768 +) +v1,1185:6630773,34387340:0,393216,0 +(1,1200:6630773,40716388:25952256,6722264,196608 +g1,1200:6630773,40716388 +g1,1200:6630773,40716388 +g1,1200:6434165,40716388 +(1,1200:6434165,40716388:0,6722264,196608 +r1,1211:32779637,40716388:26345472,6918872,196608 +k1,1200:6434165,40716388:-26345472 +) +(1,1200:6434165,40716388:26345472,6722264,196608 +[1,1200:6630773,40716388:25952256,6525656,0 +(1,1187:6630773,34579229:25952256,388497,4718 +(1,1186:6630773,34579229:0,0,0 +g1,1186:6630773,34579229 +g1,1186:6630773,34579229 +g1,1186:6303093,34579229 +(1,1186:6303093,34579229:0,0,0 +) +g1,1186:6630773,34579229 +) +g1,1187:7263065,34579229 +g1,1187:8211503,34579229 +h1,1187:8527649,34579229:0,0,0 +k1,1187:32583029,34579229:24055380 +g1,1187:32583029,34579229 +) +(1,1188:6630773,35245407:25952256,404226,101187 +h1,1188:6630773,35245407:0,0,0 +k1,1188:6630773,35245407:0 +h1,1188:8843793,35245407:0,0,0 +k1,1188:32583029,35245407:23739236 +g1,1188:32583029,35245407 +) +(1,1189:6630773,35911585:25952256,404226,101187 +h1,1189:6630773,35911585:0,0,0 +g1,1189:6946919,35911585 +g1,1189:7263065,35911585 +k1,1189:7263065,35911585:0 +h1,1189:9792230,35911585:0,0,0 +k1,1189:32583030,35911585:22790800 +g1,1189:32583030,35911585 +) +(1,1190:6630773,36577763:25952256,410518,76021 +h1,1190:6630773,36577763:0,0,0 +g1,1190:6946919,36577763 +g1,1190:7263065,36577763 +g1,1190:8211502,36577763 +g1,1190:9159939,36577763 +g1,1190:9792231,36577763 +g1,1190:11056814,36577763 +k1,1190:11056814,36577763:0 +h1,1190:13269833,36577763:0,0,0 +k1,1190:32583029,36577763:19313196 +g1,1190:32583029,36577763 +) +(1,1191:6630773,37243941:25952256,388497,4718 +h1,1191:6630773,37243941:0,0,0 +g1,1191:6946919,37243941 +g1,1191:7263065,37243941 +g1,1191:7895357,37243941 +g1,1191:8843795,37243941 +h1,1191:9792233,37243941:0,0,0 +k1,1191:32583029,37243941:22790796 +g1,1191:32583029,37243941 +) +(1,1192:6630773,37910119:25952256,404226,76021 +h1,1192:6630773,37910119:0,0,0 +h1,1192:6946919,37910119:0,0,0 +k1,1192:32583029,37910119:25636110 +g1,1192:32583029,37910119 +) +(1,1199:6630773,38641833:25952256,404226,76021 +(1,1194:6630773,38641833:0,0,0 +g1,1194:6630773,38641833 +g1,1194:6630773,38641833 +g1,1194:6303093,38641833 +(1,1194:6303093,38641833:0,0,0 +) +g1,1194:6630773,38641833 +) +g1,1199:7579210,38641833 +g1,1199:8843793,38641833 +h1,1199:9159939,38641833:0,0,0 +k1,1199:32583029,38641833:23423090 +g1,1199:32583029,38641833 +) +(1,1199:6630773,39308011:25952256,404226,76021 +h1,1199:6630773,39308011:0,0,0 +g1,1199:7579210,39308011 +g1,1199:8843793,39308011 +h1,1199:9159939,39308011:0,0,0 +k1,1199:32583029,39308011:23423090 +g1,1199:32583029,39308011 +) +(1,1199:6630773,39974189:25952256,404226,76021 +h1,1199:6630773,39974189:0,0,0 +g1,1199:7579210,39974189 +g1,1199:8843793,39974189 +h1,1199:9476084,39974189:0,0,0 +k1,1199:32583028,39974189:23106944 +g1,1199:32583028,39974189 +) +(1,1199:6630773,40640367:25952256,404226,76021 +h1,1199:6630773,40640367:0,0,0 +g1,1199:7579210,40640367 +g1,1199:8843793,40640367 +h1,1199:9792230,40640367:0,0,0 +k1,1199:32583030,40640367:22790800 +g1,1199:32583030,40640367 +) +] +) +g1,1200:32583029,40716388 +g1,1200:6630773,40716388 +g1,1200:6630773,40716388 +g1,1200:32583029,40716388 +g1,1200:32583029,40716388 +) +h1,1200:6630773,40912996:0,0,0 +v1,1204:6630773,42803060:0,393216,0 +(1,1205:6630773,44669662:25952256,2259818,0 +g1,1205:6630773,44669662 +g1,1205:6303093,44669662 +r1,1211:6401397,44669662:98304,2259818,0 +g1,1205:6600626,44669662 +g1,1205:6797234,44669662 +[1,1205:6797234,44669662:25785795,2259818,0 +(1,1205:6797234,43693826:25785795,1283982,196608 +(1,1204:6797234,43693826:0,1283982,196608 +r1,1211:8400153,43693826:1602919,1480590,196608 +k1,1204:6797234,43693826:-1602919 +) +(1,1204:6797234,43693826:1602919,1283982,196608 +) +k1,1204:8662858,43693826:262705 +k1,1204:10887057,43693826:262706 +k1,1204:13459906,43693826:262705 +k1,1204:15019570,43693826:262706 +k1,1204:16301360,43693826:262705 +k1,1204:19225482,43693826:262705 +k1,1204:21343512,43693826:262706 +k1,1204:23947163,43693826:262705 +k1,1204:25228954,43693826:262706 +k1,1204:27502304,43693826:262705 +k1,1204:28223106,43693826:262705 +k1,1204:30152393,43693826:262706 +k1,1204:31563944,43693826:262705 +k1,1204:32583029,43693826:0 +) +(1,1205:6797234,44535314:25785795,513147,134348 +g1,1204:9980973,44535314 +g1,1204:10839494,44535314 +g1,1204:13226315,44535314 +(1,1204:13226315,44535314:0,452978,115847 +r1,1211:15694852,44535314:2468537,568825,115847 +k1,1204:13226315,44535314:-2468537 +) +(1,1204:13226315,44535314:2468537,452978,115847 +k1,1204:13226315,44535314:3277 +h1,1204:15691575,44535314:0,411205,112570 +) +g1,1204:15894081,44535314 +g1,1204:19783642,44535314 +g1,1204:20669033,44535314 +g1,1204:23958285,44535314 +g1,1204:24966884,44535314 +g1,1204:26664266,44535314 +h1,1204:27461184,44535314:0,0,0 +k1,1205:32583029,44535314:4948175 +g1,1205:32583029,44535314 +) +] +g1,1205:32583029,44669662 +) +h1,1205:6630773,44669662:0,0,0 +v1,1208:6630773,46035438:0,393216,0 +] +(1,1211:32583029,45706769:0,0,0 +g1,1211:32583029,45706769 +) +) +] +(1,1211:6630773,47279633:25952256,0,0 +h1,1211:6630773,47279633:25952256,0,0 +) +] +(1,1211:4262630,4025873:0,0,0 +[1,1211:-473656,4025873:0,0,0 +(1,1211:-473656,-710413:0,0,0 +(1,1211:-473656,-710413:0,0,0 +g1,1211:-473656,-710413 +) +g1,1211:-473656,-710413 +) +] +) +] +!24142 +}27 +Input:423:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:424:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:425:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:426:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:427:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:428:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:429:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:430:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:431:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:432:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!921 +{28 +[1,1298:4262630,47279633:28320399,43253760,0 +(1,1298:4262630,4025873:0,0,0 +[1,1298:-473656,4025873:0,0,0 +(1,1298:-473656,-710413:0,0,0 +(1,1298:-473656,-644877:0,0,0 +k1,1298:-473656,-644877:-65536 ) +(1,1298:-473656,4736287:0,0,0 +k1,1298:-473656,4736287:5209943 ) -k1,19108:3078556,49800853:-34777008 +g1,1298:-473656,-710413 ) ] -g1,19108:6630773,4812305 -g1,19108:6630773,4812305 -g1,19108:10831630,4812305 -k1,19108:31387652,4812305:20556022 -) ) -] -[1,19108:6630773,45706769:25952256,40108032,0 -(1,19108:6630773,45706769:25952256,40108032,0 -(1,19108:6630773,45706769:0,0,0 -g1,19108:6630773,45706769 -) -[1,19108:6630773,45706769:25952256,40108032,0 -(1,19106:7613813,6254097:24969216,505283,134348 -(1,19106:7613813,6254097:-983040,0,0 -g1,19106:6630773,6254097 -g1,19106:5320053,6254097 -g1,19106:4992373,6254097 -(1,19106:4992373,6254097:1310720,0,0 -k1,19106:6303093,6254097:1310720 -) -g1,19106:6630773,6254097 -) -k1,19106:9062288,6254097:221641 -k1,19106:9960893,6254097:221618 -k1,19106:12364295,6254097:221708 -k1,19106:14846318,6254097:221686 -k1,19106:18891262,6254097:221574 -k1,19106:20647034,6254097:221574 -k1,19106:24918733,6254097:221574 -k1,19106:26503456,6254097:221574 -k1,19106:27348411,6254097:221708 -k1,19106:28555646,6254097:221574 -k1,19106:29719106,6254097:221708 -k1,19106:32583029,6254097:0 -) -(1,19106:7613813,7095585:24969216,505283,126483 -g1,19106:8407454,7095585 -g1,19106:9975730,7095585 -g1,19106:11766828,7095585 -g1,19106:15950646,7095585 -g1,19106:17322314,7095585 -g1,19106:18330913,7095585 -g1,19106:19545295,7095585 -g1,19106:20715112,7095585 -g1,19106:22283388,7095585 -k1,19106:32583029,7095585:8723500 -g1,19106:32583029,7095585 -) -(1,19106:7613813,7937073:24969216,513147,134348 -(1,19106:7613813,7937073:-983040,0,0 -g1,19106:6630773,7937073 -g1,19106:5320053,7937073 -g1,19106:4992373,7937073 -(1,19106:4992373,7937073:1310720,0,0 -k1,19106:6303093,7937073:1310720 -) -g1,19106:6630773,7937073 -) -k1,19106:8882183,7937073:229624 -k1,19106:9790729,7937073:229593 -k1,19106:10553131,7937073:229594 -k1,19106:12964539,7937073:229714 -k1,19106:13264681,7937073:-13 -k1,19106:13264694,7937073:13 -k1,19106:17951331,7937073:229533 -k1,19106:18840156,7937073:229533 -k1,19106:21843173,7937073:229533 -k1,19106:25217123,7937073:229533 -k1,19106:27514972,7937073:229533 -k1,19106:28935950,7937073:229533 -k1,19106:32583029,7937073:0 -) -(1,19106:7613813,8778561:24969216,513147,126483 -g1,19106:8429080,8778561 -g1,19106:11182902,8778561 -g1,19106:12041423,8778561 -g1,19106:16096790,8778561 -g1,19106:17097524,8778561 -g1,19106:20568966,8778561 -g1,19106:21738783,8778561 -g1,19106:22953165,8778561 -g1,19106:25870828,8778561 -g1,19106:27242496,8778561 -g1,19106:28251095,8778561 -g1,19106:29044736,8778561 -k1,19106:32583029,8778561:1962152 -g1,19106:32583029,8778561 -) -(1,19106:7613813,9620049:24969216,513147,126483 -(1,19106:7613813,9620049:-983040,0,0 -g1,19106:6630773,9620049 -g1,19106:5320053,9620049 -g1,19106:4992373,9620049 -(1,19106:4992373,9620049:1310720,0,0 -k1,19106:6303093,9620049:1310720 -) -g1,19106:6630773,9620049 -) -k1,19106:8774329,9620049:251532 -k1,19106:9570412,9620049:251479 -k1,19106:10440552,9620049:251480 -k1,19106:12873934,9620049:251688 -k1,19106:14312822,9620049:251376 -k1,19106:16472605,9620049:251375 -k1,19106:19058373,9620049:251376 -k1,19106:19925787,9620049:251376 -k1,19106:24098836,9620049:251375 -k1,19106:28294480,9620049:251688 -k1,19106:31519380,9620049:251532 -k1,19106:32583029,9620049:0 -) -(1,19106:7613813,10461537:24969216,505283,126483 -g1,19106:10637644,10461537 -g1,19106:12682367,10461537 -g1,19106:14076973,10461537 -g1,19106:15291355,10461537 -g1,19106:17082453,10461537 -g1,19106:21937360,10461537 -g1,19106:23309028,10461537 -g1,19106:24317627,10461537 -g1,19106:25111268,10461537 -k1,19106:32583029,10461537:5895620 -g1,19106:32583029,10461537 -) -(1,19106:7613813,11303025:24969216,505283,126483 -(1,19106:7613813,11303025:-983040,0,0 -g1,19106:6630773,11303025 -g1,19106:5320053,11303025 -g1,19106:4992373,11303025 -(1,19106:4992373,11303025:1310720,0,0 -k1,19106:6303093,11303025:1310720 -) -g1,19106:6630773,11303025 -) -k1,19106:9866757,11303025:202978 -k1,19106:10849609,11303025:202974 -k1,19106:11718429,11303025:202974 -k1,19106:13112840,11303025:202966 -k1,19106:13888599,11303025:202974 -k1,19106:14768560,11303025:202974 -k1,19106:16952025,11303025:202967 -k1,19106:19336708,11303025:202989 -k1,19106:21933049,11303025:202966 -k1,19106:24539221,11303025:202967 -k1,19106:27473073,11303025:202967 -k1,19106:29039188,11303025:202966 -k1,19106:29775640,11303025:202989 -k1,19106:31222502,11303025:202989 -k1,19106:32583029,11303025:0 -) -(1,19106:7613813,12144513:24969216,505283,134348 -g1,19106:9506492,12144513 -g1,19106:12569644,12144513 -g1,19106:14360742,12144513 -g1,19106:19183536,12144513 -g1,19106:20555204,12144513 -g1,19106:21563803,12144513 -g1,19106:22357444,12144513 -k1,19106:32583029,12144513:8649444 -g1,19106:32583029,12144513 -) -(1,19106:7613813,12986001:24969216,505283,134348 -(1,19106:7613813,12986001:-983040,0,0 -g1,19106:6630773,12986001 -g1,19106:5320053,12986001 -g1,19106:4992373,12986001 -(1,19106:4992373,12986001:1310720,0,0 -k1,19106:6303093,12986001:1310720 -) -g1,19106:6630773,12986001 -) -k1,19106:10050834,12986001:322174 -k1,19106:11051840,12986001:322053 -k1,19106:13556076,12986001:322542 -k1,19106:14327460,12986001:321807 -k1,19106:17708567,12986001:322542 -k1,19106:20478145,12986001:321808 -k1,19106:22863105,12986001:322542 -k1,19106:24777394,12986001:322420 -k1,19106:30279168,12986001:321808 -k1,19106:31773659,12986001:322052 -k1,19106:32583029,12986001:0 -) -(1,19106:7613813,13827489:24969216,505283,126483 -g1,19106:8828195,13827489 -g1,19106:10396471,13827489 -k1,19106:32583028,13827489:20610416 -g1,19106:32583028,13827489 -) -(1,19106:7613813,14668977:24969216,505283,126483 -(1,19106:7613813,14668977:-983040,0,0 -g1,19106:6630773,14668977 -g1,19106:5320053,14668977 -g1,19106:4992373,14668977 -(1,19106:4992373,14668977:1310720,0,0 -k1,19106:6303093,14668977:1310720 -) -g1,19106:6630773,14668977 -) -k1,19106:10064044,14668977:335384 -k1,19106:11078246,14668977:335249 -k1,19106:13595731,14668977:335791 -k1,19106:17053499,14668977:334977 -k1,19106:18012537,14668977:335791 -k1,19106:19581558,14668977:334978 -k1,19106:20859101,14668977:335791 -k1,19106:23233559,14668977:334978 -k1,19106:24020734,14668977:334977 -k1,19106:26638986,14668977:334978 -k1,19106:28109861,14668977:335791 -k1,19106:29640216,14668977:334978 -k1,19106:30991160,14668977:335791 -k1,19106:32583029,14668977:0 -) -(1,19106:7613813,15510465:24969216,505283,126483 -g1,19106:11797631,15510465 -g1,19106:13169299,15510465 -g1,19106:14177898,15510465 -g1,19106:15392280,15510465 -g1,19106:16960556,15510465 -k1,19106:32583029,15510465:14046332 -g1,19106:32583029,15510465 -) -(1,19106:7613813,16351953:24969216,513147,126483 -(1,19106:7613813,16351953:-983040,0,0 -g1,19106:6630773,16351953 -g1,19106:5320053,16351953 -g1,19106:4992373,16351953 -(1,19106:4992373,16351953:1310720,0,0 -k1,19106:6303093,16351953:1310720 -) -g1,19106:6630773,16351953 -) -k1,19106:9960289,16351953:231629 -k1,19106:10870838,16351953:231596 -k1,19106:12293815,16351953:231532 -k1,19106:13178805,16351953:231596 -k1,19106:16995812,16351953:231532 -k1,19106:19409232,16351953:231726 -k1,19106:20090341,16351953:231532 -k1,19106:21245930,16351953:231531 -k1,19106:23011660,16351953:231532 -k1,19106:25697054,16351953:231726 -k1,19106:28376356,16351953:231532 -k1,19106:29543087,16351953:231532 -k1,19106:30991160,16351953:231725 -k1,19106:32583029,16351953:0 -) -(1,19106:7613813,17193441:24969216,505283,126483 -g1,19106:11797631,17193441 -g1,19106:13169299,17193441 -g1,19106:14177898,17193441 -g1,19106:15392280,17193441 -g1,19106:16960556,17193441 -g1,19106:18528832,17193441 -k1,19106:32583029,17193441:12478056 -g1,19106:32583029,17193441 -) -(1,19106:7613813,18034929:24969216,513147,134348 -(1,19106:7613813,18034929:-983040,0,0 -g1,19106:6630773,18034929 -g1,19106:5320053,18034929 -g1,19106:4992373,18034929 -(1,19106:4992373,18034929:1310720,0,0 -k1,19106:6303093,18034929:1310720 -) -g1,19106:6630773,18034929 -) -k1,19106:10007355,18034929:278695 -k1,19106:10964924,18034929:278616 -k1,19106:12434827,18034929:278458 -k1,19106:13342589,18034929:278616 -k1,19106:15774560,18034929:278458 -k1,19106:18235187,18034929:278933 -k1,19106:21062736,18034929:278854 -k1,19106:23682139,18034929:278457 -k1,19106:26771436,18034929:278458 -k1,19106:27973952,18034929:278458 -k1,19106:29786608,18034929:278458 -k1,19106:32583029,18034929:0 -) -(1,19106:7613813,18876417:24969216,505283,134348 -k1,19106:9014133,18876417:166277 -k1,19106:10122359,18876417:166474 -k1,19106:13152757,18876417:166475 -k1,19106:14420694,18876417:166277 -k1,19106:15155168,18876417:166277 -k1,19106:16690689,18876417:166474 -k1,19106:18448999,18876417:166441 -k1,19106:24647211,18876417:166278 -k1,19106:25985993,18876417:166343 -k1,19106:26961640,18876417:166277 -k1,19106:28143136,18876417:166343 -k1,19106:29678559,18876417:166376 -k1,19106:31213982,18876417:166376 -k1,19106:32583029,18876417:0 -) -(1,19106:7613813,19717905:24969216,505283,95026 -k1,19106:32583030,19717905:23393076 -g1,19106:32583030,19717905 -) -(1,19106:7613813,20559393:24969216,513147,134348 -(1,19106:7613813,20559393:-983040,0,0 -g1,19106:6630773,20559393 -g1,19106:5320053,20559393 -g1,19106:4992373,20559393 -(1,19106:4992373,20559393:1310720,0,0 -k1,19106:6303093,20559393:1310720 -) -g1,19106:6630773,20559393 -) -k1,19106:8714535,20559393:142586 -k1,19106:9522911,20559393:142530 -k1,19106:11847361,20559393:142756 -k1,19106:12147503,20559393:-13 -k1,19106:12147516,20559393:13 -k1,19106:13213990,20559393:142416 -k1,19106:14375491,20559393:142416 -k1,19106:18602111,20559393:142416 -k1,19106:19403819,20559393:142416 -k1,19106:24500101,20559393:142416 -k1,19106:28143790,20559393:142756 -k1,19106:29087994,20559393:142699 -k1,19106:32583029,20559393:0 -) -(1,19106:7613813,21400881:24969216,505283,126483 -g1,19106:10275885,21400881 -g1,19106:11619373,21400881 -g1,19106:12833755,21400881 -g1,19106:15925088,21400881 -g1,19106:17461251,21400881 -$1,19106:17461251,21400881 -g1,19106:18251615,21400881 -g1,19106:18646797,21400881 -g1,19106:20227525,21400881 -g1,19106:20622707,21400881 -g1,19106:22993799,21400881 -g1,19106:23388981,21400881 -$1,19106:25760073,21400881 -g1,19106:25959302,21400881 -g1,19106:27330970,21400881 -g1,19106:28339569,21400881 -g1,19106:29133210,21400881 -k1,19106:32583029,21400881:2670596 -g1,19106:32583029,21400881 -) -(1,19106:7613813,22242369:24969216,505283,126483 -(1,19106:7613813,22242369:-983040,0,0 -g1,19106:6630773,22242369 -g1,19106:5320053,22242369 -g1,19106:4992373,22242369 -(1,19106:4992373,22242369:1310720,0,0 -k1,19106:6303093,22242369:1310720 -) -g1,19106:6630773,22242369 -) -k1,19106:8788540,22242369:168094 -k1,19106:9485479,22242369:168063 -k1,19106:10319387,22242369:168062 -k1,19106:12669268,22242369:168187 -k1,19106:16599691,22242369:168001 -k1,19106:19370781,22242369:168000 -k1,19106:21862219,22242369:168187 -k1,19106:24069699,22242369:168000 -k1,19106:24689898,22242369:168001 -k1,19106:27141172,22242369:168000 -k1,19106:28444443,22242369:168187 -k1,19106:29807820,22242369:168000 -k1,19106:30991160,22242369:168187 -k1,19106:32583029,22242369:0 -) -(1,19106:7613813,23083857:24969216,505283,126483 -g1,19106:11797631,23083857 -g1,19106:13169299,23083857 -g1,19106:14177898,23083857 -g1,19106:14971539,23083857 -k1,19106:32583029,23083857:16035349 -g1,19106:32583029,23083857 -) -(1,19106:7613813,23925345:24969216,505283,126483 -(1,19106:7613813,23925345:-983040,0,0 -g1,19106:6630773,23925345 -g1,19106:5320053,23925345 -g1,19106:4992373,23925345 -(1,19106:4992373,23925345:1310720,0,0 -k1,19106:6303093,23925345:1310720 -) -g1,19106:6630773,23925345 -) -k1,19106:8019929,23925345:236378 -k1,19106:8874275,23925345:236341 -k1,19106:11292459,23925345:236490 -k1,19106:14338254,23925345:236267 -k1,19106:18070867,23925345:236267 -k1,19106:19670284,23925345:236268 -k1,19106:20356128,23925345:236267 -k1,19106:21802845,23925345:236267 -k1,19106:23723610,23925345:236490 -k1,19106:25156564,23925345:236267 -k1,19106:25837820,23925345:236267 -k1,19106:28117723,23925345:236490 -k1,19106:31391584,23925345:236267 -k1,19106:32583029,23925345:0 -) -(1,19106:7613813,24766833:24969216,505283,126483 -g1,19106:10949595,24766833 -g1,19106:11743236,24766833 -g1,19106:13311512,24766833 -g1,19106:15102610,24766833 -g1,19106:19286428,24766833 -g1,19106:20658096,24766833 -g1,19106:21666695,24766833 -g1,19106:22881077,24766833 -g1,19106:24050894,24766833 -g1,19106:25220711,24766833 -k1,19106:32583029,24766833:5786177 -g1,19106:32583029,24766833 -) -(1,19106:7613813,25608321:24969216,505283,134348 -(1,19106:7613813,25608321:-983040,0,0 -g1,19106:6630773,25608321 -g1,19106:5320053,25608321 -g1,19106:4992373,25608321 -(1,19106:4992373,25608321:1310720,0,0 -k1,19106:6303093,25608321:1310720 -) -g1,19106:6630773,25608321 -) -(1,19106:6630773,25608321:983040,211026,0 -k1,19106:7613813,25608321:327680 -) -k1,19106:9945891,25608321:150384 -k1,19106:13468053,25608321:150335 -k1,19106:16839238,25608321:150090 -k1,19106:18775840,25608321:150091 -k1,19106:20136380,25608321:150090 -k1,19106:23303092,25608321:150090 -k1,19106:26949528,25608321:150090 -k1,19106:28462768,25608321:150091 -k1,19106:29062435,25608321:150090 -k1,19106:32583029,25608321:0 -) -(1,19106:7613813,26449809:24969216,505283,126483 -g1,19106:10850636,26449809 -g1,19106:12241310,26449809 -g1,19106:15577092,26449809 -g1,19106:17368190,26449809 -g1,19106:22747385,26449809 -g1,19106:24119053,26449809 -g1,19106:25127652,26449809 -g1,19106:25921293,26449809 -k1,19106:32583029,26449809:5085595 -g1,19106:32583029,26449809 -) -(1,19106:7613813,27291297:24969216,505283,126483 -(1,19106:7613813,27291297:-983040,0,0 -g1,19106:6630773,27291297 -g1,19106:5320053,27291297 -g1,19106:4992373,27291297 -(1,19106:4992373,27291297:1310720,0,0 -k1,19106:6303093,27291297:1310720 -) -g1,19106:6630773,27291297 -) -k1,19106:7929393,27291297:145842 -k1,19106:8866909,27291297:145841 -k1,19106:9462930,27291297:145789 -k1,19106:10058950,27291297:145788 -k1,19106:12469061,27291297:145842 -k1,19106:13806187,27291297:145681 -k1,19106:14605370,27291297:145789 -k1,19106:18336526,27291297:145681 -k1,19106:20664221,27291297:146001 -k1,19106:21259479,27291297:145681 -k1,19106:24926075,27291297:146002 -k1,19106:28109350,27291297:145681 -k1,19106:29446476,27291297:145681 -k1,19106:32583029,27291297:0 -) -(1,19106:7613813,28132785:24969216,505283,126483 -g1,19106:9008419,28132785 -g1,19106:10222801,28132785 -g1,19106:12013899,28132785 -g1,19106:16197717,28132785 -g1,19106:17569385,28132785 -g1,19106:18577984,28132785 -g1,19106:19371625,28132785 -k1,19106:32583029,28132785:11635263 -g1,19106:32583029,28132785 -) -(1,19106:7613813,28974273:24969216,513147,126483 -(1,19106:7613813,28974273:-983040,0,0 -g1,19106:6630773,28974273 -g1,19106:5320053,28974273 -g1,19106:4992373,28974273 -(1,19106:4992373,28974273:1310720,0,0 -k1,19106:6303093,28974273:1310720 -) -g1,19106:6630773,28974273 -) -k1,19106:9359159,28974273:386129 -k1,19106:10482384,28974273:385945 -k1,19106:12059401,28974273:385572 -k1,19106:13074491,28974273:385944 -k1,19106:15694185,28974273:385572 -k1,19106:17560587,28974273:385944 -k1,19106:19921876,28974273:386689 -k1,19106:20222018,28974273:-13 -k1,19106:20222031,28974273:13 -k1,19106:21510034,28974273:385572 -k1,19106:24842760,28974273:385572 -k1,19106:26622283,28974273:385572 -k1,19106:29385501,28974273:385572 -k1,19106:30390850,28974273:386689 -k1,19106:32583029,28974273:0 -) -(1,19106:7613813,29815761:24969216,505283,126483 -k1,19106:8746732,29815761:331414 -k1,19106:12094110,29815761:330756 -k1,19106:17433127,29815761:330756 -k1,19106:20876843,29815761:330756 -k1,19106:22750710,29815761:331149 -k1,19106:24096882,29815761:331019 -k1,19106:27320530,29815761:331544 -k1,19106:28988878,29815761:331414 -$1,19106:28988878,29815761 -k1,19106:29923474,29815761:144232 -k1,19106:30462887,29815761:144231 -k1,19106:32187847,29815761:144232 -k1,19106:32583029,29815761:0 -) -(1,19106:7613813,30657249:24969216,485622,126484 -g1,19106:13936725,30657249 -g1,19106:14331907,30657249 -$1,19106:14727089,30657249 -k1,19106:32583029,30657249:17682270 -g1,19106:32583029,30657249 -) -(1,19106:7613813,31498737:24969216,513147,134348 -(1,19106:7613813,31498737:-983040,0,0 -g1,19106:6630773,31498737 -g1,19106:5320053,31498737 -g1,19106:4992373,31498737 -(1,19106:4992373,31498737:1310720,0,0 -k1,19106:6303093,31498737:1310720 -) -g1,19106:6630773,31498737 -) -k1,19106:9466586,31498737:170464 -k1,19106:10087253,31498737:170435 -k1,19106:10918946,31498737:170435 -k1,19106:13271190,31498737:170550 -k1,19106:17070951,31498737:170377 -k1,19106:18165386,31498737:170377 -k1,19106:22838259,31498737:170550 -k1,19106:24369163,31498737:170377 -k1,19106:26233134,31498737:170521 -k1,19106:30449135,31498737:170464 -k1,19106:31213982,31498737:170435 -k1,19106:32583029,31498737:0 -) -(1,19106:7613813,32340225:24969216,505283,126483 -g1,19106:9404911,32340225 -g1,19106:13588729,32340225 -g1,19106:14960397,32340225 -g1,19106:15968996,32340225 -g1,19106:16762637,32340225 -k1,19106:32583029,32340225:15041169 -g1,19106:32583029,32340225 -) -(1,19106:7613813,33181713:24969216,505283,134348 -(1,19106:7613813,33181713:-983040,0,0 -g1,19106:6630773,33181713 -g1,19106:5320053,33181713 -g1,19106:4992373,33181713 -(1,19106:4992373,33181713:1310720,0,0 -k1,19106:6303093,33181713:1310720 -) -g1,19106:6630773,33181713 -) -k1,19106:8628829,33181713:291498 -k1,19106:9581494,33181713:291407 -k1,19106:10579470,33181713:291498 -k1,19106:11415481,33181713:291407 -k1,19106:12372734,33181713:291407 -k1,19106:14207605,33181713:291498 -k1,19106:15690273,33181713:291223 -k1,19106:16526284,33181713:291407 -k1,19106:19629002,33181713:291223 -k1,19106:22102470,33181713:291774 -k1,19106:22883247,33181713:291223 -k1,19106:26431609,33181713:291223 -k1,19106:28558495,33181713:291223 -k1,19106:29449372,33181713:291223 -k1,19106:30364393,33181713:291774 -k1,19106:31641277,33181713:291223 -k1,19106:32583029,33181713:0 -) -(1,19106:7613813,34023201:24969216,505283,134348 -g1,19106:10676965,34023201 -g1,19106:11470606,34023201 -g1,19106:13038882,34023201 -g1,19106:14829980,34023201 -g1,19106:19013798,34023201 -g1,19106:20385466,34023201 -g1,19106:21394065,34023201 -g1,19106:22187706,34023201 -k1,19106:32583029,34023201:8819182 -g1,19106:32583029,34023201 +[1,1298:6630773,47279633:25952256,43253760,0 +[1,1298:6630773,4812305:25952256,786432,0 +(1,1298:6630773,4812305:25952256,513147,126483 +(1,1298:6630773,4812305:25952256,513147,126483 +g1,1298:3078558,4812305 +[1,1298:3078558,4812305:0,0,0 +(1,1298:3078558,2439708:0,1703936,0 +k1,1298:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,1298:2537886,2439708:1179648,16384,0 ) -] -(1,19108:32583029,45706769:0,0,0 -g1,19108:32583029,45706769 +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,1298:3078558,1915420:16384,1179648,0 ) +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) ] -(1,19108:6630773,47279633:25952256,0,0 -h1,19108:6630773,47279633:25952256,0,0 ) -] -(1,19108:4262630,4025873:0,0,0 -[1,19108:-473656,4025873:0,0,0 -(1,19108:-473656,-710413:0,0,0 -(1,19108:-473656,-710413:0,0,0 -g1,19108:-473656,-710413 ) -g1,19108:-473656,-710413 ) ] +[1,1298:3078558,4812305:0,0,0 +(1,1298:3078558,2439708:0,1703936,0 +g1,1298:29030814,2439708 +g1,1298:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,1298:36151628,1915420:16384,1179648,0 ) -] -!20708 -}376 -!12 -{377 -[1,19108:4262630,47279633:28320399,43253760,0 -(1,19108:4262630,4025873:0,0,0 -[1,19108:-473656,4025873:0,0,0 -(1,19108:-473656,-710413:0,0,0 -(1,19108:-473656,-644877:0,0,0 -k1,19108:-473656,-644877:-65536 -) -(1,19108:-473656,4736287:0,0,0 -k1,19108:-473656,4736287:5209943 -) -g1,19108:-473656,-710413 +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) ] ) -[1,19108:6630773,47279633:25952256,43253760,0 -[1,19108:6630773,4812305:25952256,786432,0 -(1,19108:6630773,4812305:25952256,0,0 -(1,19108:6630773,4812305:25952256,0,0 -g1,19108:3078558,4812305 -[1,19108:3078558,4812305:0,0,0 -(1,19108:3078558,2439708:0,1703936,0 -k1,19108:1358238,2439708:-1720320 -(1,19108:1358238,2439708:1720320,1703936,0 -(1,19108:1358238,2439708:1179648,16384,0 -r1,19108:2537886,2439708:1179648,16384,0 -) -g1,19108:3062174,2439708 -(1,19108:3062174,2439708:16384,1703936,0 -[1,19108:3062174,2439708:25952256,1703936,0 -(1,19108:3062174,1915420:25952256,1179648,0 -(1,19108:3062174,1915420:16384,1179648,0 -r1,19108:3078558,1915420:16384,1179648,0 -) -k1,19108:29014430,1915420:25935872 -g1,19108:29014430,1915420 -) -] +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,1298:37855564,2439708:1179648,16384,0 ) ) +k1,1298:3078556,2439708:-34777008 ) ] -[1,19108:3078558,4812305:0,0,0 -(1,19108:3078558,2439708:0,1703936,0 -g1,19108:29030814,2439708 -g1,19108:36135244,2439708 -(1,19108:36135244,2439708:1720320,1703936,0 -(1,19108:36135244,2439708:16384,1703936,0 -[1,19108:36135244,2439708:25952256,1703936,0 -(1,19108:36135244,1915420:25952256,1179648,0 -(1,19108:36135244,1915420:16384,1179648,0 -r1,19108:36151628,1915420:16384,1179648,0 -) -k1,19108:62087500,1915420:25935872 -g1,19108:62087500,1915420 +[1,1298:3078558,4812305:0,0,0 +(1,1298:3078558,49800853:0,16384,2228224 +k1,1298:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,1298:2537886,49800853:1179648,16384,0 ) -] +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,1298:3078558,51504789:16384,1179648,0 ) -g1,19108:36675916,2439708 -(1,19108:36675916,2439708:1179648,16384,0 -r1,19108:37855564,2439708:1179648,16384,0 +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) +] ) -k1,19108:3078556,2439708:-34777008 ) -] -[1,19108:3078558,4812305:0,0,0 -(1,19108:3078558,49800853:0,16384,2228224 -k1,19108:1358238,49800853:-1720320 -(1,19108:1358238,49800853:1720320,16384,2228224 -(1,19108:1358238,49800853:1179648,16384,0 -r1,19108:2537886,49800853:1179648,16384,0 -) -g1,19108:3062174,49800853 -(1,19108:3062174,52029077:16384,1703936,0 -[1,19108:3062174,52029077:25952256,1703936,0 -(1,19108:3062174,51504789:25952256,1179648,0 -(1,19108:3062174,51504789:16384,1179648,0 -r1,19108:3078558,51504789:16384,1179648,0 -) -k1,19108:29014430,51504789:25935872 -g1,19108:29014430,51504789 ) ] +[1,1298:3078558,4812305:0,0,0 +(1,1298:3078558,49800853:0,16384,2228224 +g1,1298:29030814,49800853 +g1,1298:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,1298:36151628,51504789:16384,1179648,0 +) +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 +) +] +) +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,1298:37855564,49800853:1179648,16384,0 +) +) +k1,1298:3078556,49800853:-34777008 +) +] +g1,1298:6630773,4812305 +g1,1298:6630773,4812305 +g1,1298:9175536,4812305 +g1,1298:9990803,4812305 +g1,1298:13137841,4812305 +g1,1298:14654344,4812305 +k1,1298:31786112,4812305:17131768 +) +) +] +[1,1298:6630773,45706769:25952256,40108032,0 +(1,1298:6630773,45706769:25952256,40108032,0 +(1,1298:6630773,45706769:0,0,0 +g1,1298:6630773,45706769 +) +[1,1298:6630773,45706769:25952256,40108032,0 +v1,1211:6630773,6254097:0,393216,0 +(1,1211:6630773,12921045:25952256,7060164,0 +g1,1211:6630773,12921045 +g1,1211:6303093,12921045 +r1,1298:6401397,12921045:98304,7060164,0 +g1,1211:6600626,12921045 +g1,1211:6797234,12921045 +[1,1211:6797234,12921045:25785795,7060164,0 +(1,1209:6797234,7022766:25785795,1161885,196608 +(1,1208:6797234,7022766:0,1161885,196608 +r1,1298:8344870,7022766:1547636,1358493,196608 +k1,1208:6797234,7022766:-1547636 +) +(1,1208:6797234,7022766:1547636,1161885,196608 +) +k1,1208:8527550,7022766:182680 +k1,1208:11673114,7022766:182681 +(1,1208:11673114,7022766:0,414482,115847 +r1,1298:13789939,7022766:2116825,530329,115847 +k1,1208:11673114,7022766:-2116825 +) +(1,1208:11673114,7022766:2116825,414482,115847 +k1,1208:11673114,7022766:3277 +h1,1208:13786662,7022766:0,411205,112570 +) +k1,1208:13972619,7022766:182680 +k1,1208:15570222,7022766:182681 +k1,1208:19107035,7022766:182680 +k1,1208:20281276,7022766:182681 +k1,1208:22334354,7022766:182680 +k1,1208:23168462,7022766:182680 +k1,1208:24763444,7022766:182681 +k1,1208:25412085,7022766:182680 +k1,1208:26974954,7022766:182681 +k1,1208:28632849,7022766:182680 +k1,1208:29171390,7022766:182681 +k1,1208:31227089,7022766:182680 +k1,1209:32583029,7022766:0 +) +(1,1209:6797234,7864254:25785795,513147,134348 +k1,1208:8972834,7864254:286197 +k1,1208:12092153,7864254:286198 +k1,1208:12994388,7864254:286197 +k1,1208:17032522,7864254:286198 +k1,1208:17978011,7864254:286197 +k1,1208:21155001,7864254:286197 +k1,1208:21899296,7864254:286198 +k1,1208:22716990,7864254:286197 +k1,1208:25452924,7864254:286198 +k1,1208:26500649,7864254:286197 +k1,1208:27805932,7864254:286198 +k1,1208:28506885,7864254:286110 +k1,1208:31635378,7864254:286197 +k1,1208:32583029,7864254:0 +) +(1,1209:6797234,8705742:25785795,513147,126483 +k1,1208:8049715,8705742:233396 +k1,1208:11696880,8705742:233395 +k1,1208:15116636,8705742:233396 +k1,1208:15966070,8705742:233396 +k1,1208:17218550,8705742:233395 +k1,1208:19028742,8705742:233396 +k1,1208:19921430,8705742:233396 +k1,1208:20510685,8705742:233395 +k1,1208:22159003,8705742:233396 +k1,1208:23043827,8705742:233396 +k1,1208:25648970,8705742:233395 +k1,1208:27532563,8705742:233396 +k1,1208:29208406,8705742:233396 +k1,1208:30598511,8705742:233395 +k1,1208:31931601,8705742:233396 +k1,1209:32583029,8705742:0 +) +(1,1209:6797234,9547230:25785795,513147,115847 +(1,1208:6797234,9547230:0,452978,115847 +r1,1298:9265771,9547230:2468537,568825,115847 +k1,1208:6797234,9547230:-2468537 +) +(1,1208:6797234,9547230:2468537,452978,115847 +k1,1208:6797234,9547230:3277 +h1,1208:9262494,9547230:0,411205,112570 +) +g1,1208:9638670,9547230 +g1,1208:11289521,9547230 +g1,1208:13498739,9547230 +g1,1208:14053828,9547230 +g1,1208:17015400,9547230 +(1,1208:17015400,9547230:0,459977,115847 +r1,1298:17725378,9547230:709978,575824,115847 +k1,1208:17015400,9547230:-709978 +) +(1,1208:17015400,9547230:709978,459977,115847 +k1,1208:17015400,9547230:3277 +h1,1208:17722101,9547230:0,411205,112570 +) +g1,1208:17924607,9547230 +g1,1208:18806721,9547230 +(1,1208:18806721,9547230:0,452978,115847 +r1,1298:20220122,9547230:1413401,568825,115847 +k1,1208:18806721,9547230:-1413401 +) +(1,1208:18806721,9547230:1413401,452978,115847 +k1,1208:18806721,9547230:3277 +h1,1208:20216845,9547230:0,411205,112570 +) +g1,1208:20419351,9547230 +k1,1209:32583029,9547230:8803647 +g1,1209:32583029,9547230 +) +(1,1211:6797234,10388718:25785795,505283,126483 +h1,1210:6797234,10388718:983040,0,0 +k1,1210:10822756,10388718:252614 +(1,1210:10822756,10388718:0,452978,115847 +r1,1298:13291293,10388718:2468537,568825,115847 +k1,1210:10822756,10388718:-2468537 +) +(1,1210:10822756,10388718:2468537,452978,115847 +k1,1210:10822756,10388718:3277 +h1,1210:13288016,10388718:0,411205,112570 +) +k1,1210:13543906,10388718:252613 +k1,1210:14900802,10388718:252614 +k1,1210:15901182,10388718:252614 +k1,1210:17439611,10388718:252613 +k1,1210:19205451,10388718:252614 +k1,1210:21468054,10388718:252614 +(1,1210:21468054,10388718:0,459977,115847 +r1,1298:22529743,10388718:1061689,575824,115847 +k1,1210:21468054,10388718:-1061689 +) +(1,1210:21468054,10388718:1061689,459977,115847 +k1,1210:21468054,10388718:3277 +h1,1210:22526466,10388718:0,411205,112570 +) +k1,1210:22782357,10388718:252614 +k1,1210:24226415,10388718:252613 +(1,1210:24226415,10388718:0,452978,115847 +r1,1298:25991528,10388718:1765113,568825,115847 +k1,1210:24226415,10388718:-1765113 +) +(1,1210:24226415,10388718:1765113,452978,115847 +k1,1210:24226415,10388718:3277 +h1,1210:25988251,10388718:0,411205,112570 +) +k1,1210:26244142,10388718:252614 +k1,1210:28415650,10388718:252614 +k1,1210:29296098,10388718:252613 +k1,1210:31042278,10388718:252614 +k1,1210:32583029,10388718:0 +) +(1,1211:6797234,11230206:25785795,513147,126483 +k1,1210:7948718,11230206:203833 +k1,1210:10328345,11230206:203832 +k1,1210:11551263,11230206:203833 +k1,1210:12847580,11230206:203832 +k1,1210:13718569,11230206:203833 +(1,1210:13718569,11230206:0,452978,115847 +r1,1298:16187106,11230206:2468537,568825,115847 +k1,1210:13718569,11230206:-2468537 +) +(1,1210:13718569,11230206:2468537,452978,115847 +k1,1210:13718569,11230206:3277 +h1,1210:16183829,11230206:0,411205,112570 +) +k1,1210:16390939,11230206:203833 +k1,1210:18775154,11230206:203832 +k1,1210:19726753,11230206:203833 +k1,1210:22657539,11230206:203833 +k1,1210:23809022,11230206:203832 +k1,1210:27655346,11230206:203833 +k1,1210:31395501,11230206:203832 +k1,1210:32227169,11230206:203833 +k1,1211:32583029,11230206:0 +) +(1,1211:6797234,12071694:25785795,513147,134348 +(1,1210:6797234,12071694:0,459977,115847 +r1,1298:7858923,12071694:1061689,575824,115847 +k1,1210:6797234,12071694:-1061689 +) +(1,1210:6797234,12071694:1061689,459977,115847 +k1,1210:6797234,12071694:3277 +h1,1210:7855646,12071694:0,411205,112570 +) +k1,1210:8022715,12071694:163792 +k1,1210:9775099,12071694:163791 +(1,1210:9775099,12071694:0,452978,115847 +r1,1298:11891924,12071694:2116825,568825,115847 +k1,1210:9775099,12071694:-2116825 +) +(1,1210:9775099,12071694:2116825,452978,115847 +k1,1210:9775099,12071694:3277 +h1,1210:11888647,12071694:0,411205,112570 +) +k1,1210:12055716,12071694:163792 +k1,1210:15439292,12071694:163792 +k1,1210:16622169,12071694:163792 +k1,1210:19130183,12071694:163791 +k1,1210:22011098,12071694:163792 +k1,1210:23366335,12071694:163792 +k1,1210:25542737,12071694:163791 +k1,1210:26357957,12071694:163792 +k1,1210:27540834,12071694:163792 +k1,1210:29192949,12071694:163792 +k1,1210:30016032,12071694:163791 +k1,1210:31198909,12071694:163792 +k1,1210:32583029,12071694:0 +) +(1,1211:6797234,12913182:25785795,355205,7863 +k1,1211:32583029,12913182:24455414 +g1,1211:32583029,12913182 +) +] +g1,1211:32583029,12921045 +) +h1,1211:6630773,12921045:0,0,0 +(1,1213:6630773,15012305:25952256,555811,139132 +(1,1213:6630773,15012305:2450326,534184,12975 +g1,1213:6630773,15012305 +g1,1213:9081099,15012305 +) +g1,1213:12020913,15012305 +g1,1213:14217484,15012305 +g1,1213:15704693,15012305 +g1,1213:16796130,15012305 +g1,1213:18712272,15012305 +g1,1213:19642949,15012305 +k1,1213:32583029,15012305:12442662 +g1,1213:32583029,15012305 +) +(1,1216:6630773,16247009:25952256,513147,134348 +k1,1215:7321391,16247009:212861 +k1,1215:8704725,16247009:212861 +k1,1215:10392801,16247009:212861 +k1,1215:12892213,16247009:212861 +k1,1215:16177402,16247009:212861 +k1,1215:17006301,16247009:212861 +k1,1215:18921132,16247009:212861 +k1,1215:22480260,16247009:212860 +k1,1215:23151218,16247009:212861 +k1,1215:24496541,16247009:212861 +k1,1215:25873977,16247009:212861 +k1,1215:28378632,16247009:212861 +k1,1215:29242921,16247009:212861 +k1,1215:30626255,16247009:212861 +k1,1215:31490544,16247009:212861 +k1,1215:32583029,16247009:0 +) +(1,1216:6630773,17088497:25952256,513147,134348 +k1,1215:8529993,17088497:153996 +(1,1215:8737087,17088497:0,459977,115847 +r1,1298:9798776,17088497:1061689,575824,115847 +k1,1215:8737087,17088497:-1061689 +) +(1,1215:8737087,17088497:1061689,459977,115847 +k1,1215:8737087,17088497:3277 +h1,1215:9795499,17088497:0,411205,112570 +) +k1,1215:10126442,17088497:153996 +(1,1215:10126442,17088497:0,452978,115847 +r1,1298:11891555,17088497:1765113,568825,115847 +k1,1215:10126442,17088497:-1765113 +) +(1,1215:10126442,17088497:1765113,452978,115847 +k1,1215:10126442,17088497:3277 +h1,1215:11888278,17088497:0,411205,112570 +) +k1,1215:12219221,17088497:153996 +(1,1215:12219221,17088497:0,414482,115847 +r1,1298:14336046,17088497:2116825,530329,115847 +k1,1215:12219221,17088497:-2116825 +) +(1,1215:12219221,17088497:2116825,414482,115847 +k1,1215:12219221,17088497:3277 +h1,1215:14332769,17088497:0,411205,112570 +) +k1,1215:14697137,17088497:153997 +k1,1215:15798784,17088497:153996 +k1,1215:17704557,17088497:153996 +k1,1215:18517845,17088497:153996 +k1,1215:19690926,17088497:153996 +k1,1215:21837216,17088497:153996 +k1,1215:22938863,17088497:153996 +k1,1215:24978330,17088497:153996 +k1,1215:25748365,17088497:153997 +k1,1215:26317159,17088497:153951 +k1,1215:27627865,17088497:153996 +k1,1215:29738111,17088497:153996 +k1,1215:32583029,17088497:0 +) +(1,1216:6630773,17929985:25952256,505283,134348 +k1,1215:7859376,17929985:136118 +k1,1215:12361503,17929985:136118 +k1,1215:13125457,17929985:136119 +k1,1215:13850088,17929985:136118 +k1,1215:15721599,17929985:136118 +k1,1215:20050055,17929985:136118 +k1,1215:23224422,17929985:136118 +k1,1215:25990501,17929985:136119 +k1,1215:27964904,17929985:136118 +k1,1215:30262399,17929985:136118 +k1,1215:32583029,17929985:0 +) +(1,1216:6630773,18771473:25952256,513147,126483 +k1,1215:7961104,18771473:138886 +k1,1215:9970388,18771473:138886 +k1,1215:10760701,18771473:138885 +k1,1215:14564360,18771473:138886 +k1,1215:15523101,18771473:138886 +k1,1215:17157519,18771473:138886 +k1,1215:18244055,18771473:138885 +k1,1215:20126854,18771473:138886 +k1,1215:21659691,18771473:138886 +k1,1215:25211692,18771473:138886 +k1,1215:25966615,18771473:138885 +k1,1215:26901108,18771473:138886 +k1,1215:28633830,18771473:138886 +k1,1215:32583029,18771473:0 +) +(1,1216:6630773,19612961:25952256,513147,134348 +k1,1215:7477804,19612961:160869 +k1,1215:8053477,19612961:160830 +k1,1215:8745843,19612961:160869 +k1,1215:9677414,19612961:160868 +k1,1215:13428345,19612961:160869 +k1,1215:16605180,19612961:160868 +k1,1215:20103142,19612961:160869 +k1,1215:23540155,19612961:160868 +k1,1215:25471151,19612961:160869 +k1,1215:26283447,19612961:160868 +k1,1215:27192082,19612961:160869 +k1,1215:29136185,19612961:160868 +k1,1215:31140582,19612961:160869 +k1,1215:32583029,19612961:0 +) +(1,1216:6630773,20454449:25952256,513147,126483 +k1,1215:7899096,20454449:249238 +k1,1215:9240820,20454449:249239 +k1,1215:10149350,20454449:249238 +k1,1215:12729705,20454449:249239 +k1,1215:15869736,20454449:249238 +k1,1215:16746810,20454449:249239 +k1,1215:18984410,20454449:249238 +k1,1215:21897688,20454449:249239 +k1,1215:22814082,20454449:249238 +k1,1215:23651834,20454449:249239 +k1,1215:29278301,20454449:249238 +k1,1215:30059037,20454449:249239 +k1,1215:31821501,20454449:249238 +k1,1215:32583029,20454449:0 +) +(1,1216:6630773,21295937:25952256,513147,126483 +k1,1215:9074261,21295937:177908 +k1,1215:10443615,21295937:177909 +k1,1215:12366747,21295937:177908 +k1,1215:13881589,21295937:177908 +k1,1215:14807263,21295937:177908 +k1,1215:17928394,21295937:177909 +k1,1215:18915672,21295937:177908 +k1,1215:20112665,21295937:177908 +k1,1215:21259850,21295937:177908 +k1,1215:23323230,21295937:177909 +k1,1215:25925315,21295937:177908 +k1,1215:27425084,21295937:177908 +k1,1215:28262284,21295937:177908 +k1,1215:29459278,21295937:177909 +k1,1215:31923737,21295937:177908 +k1,1215:32583029,21295937:0 +) +(1,1216:6630773,22137425:25952256,505283,126483 +k1,1215:9622419,22137425:207021 +k1,1215:14448417,22137425:207020 +k1,1215:17590140,22137425:207021 +k1,1215:19263857,22137425:207021 +k1,1215:23992861,22137425:207020 +k1,1215:25945106,22137425:207021 +k1,1215:27143687,22137425:207021 +k1,1215:29637914,22137425:207020 +k1,1215:31931601,22137425:207021 +k1,1215:32583029,22137425:0 +) +(1,1216:6630773,22978913:25952256,513147,126483 +g1,1215:9242382,22978913 +g1,1215:10884058,22978913 +g1,1215:14202145,22978913 +g1,1215:16318302,22978913 +g1,1215:19854624,22978913 +g1,1215:23079650,22978913 +g1,1215:24470324,22978913 +k1,1216:32583029,22978913:4862119 +g1,1216:32583029,22978913 +) +(1,1218:6630773,23820401:25952256,513147,134348 +h1,1217:6630773,23820401:983040,0,0 +k1,1217:11011140,23820401:298129 +k1,1217:13175734,23820401:298129 +k1,1217:15334430,23820401:298129 +k1,1217:16283987,23820401:298129 +k1,1217:17329882,23820401:298129 +k1,1217:20461789,23820401:298130 +k1,1217:23049091,23820401:298129 +k1,1217:24366305,23820401:298129 +k1,1217:26437183,23820401:298129 +k1,1217:29411147,23820401:298129 +k1,1217:30325314,23820401:298129 +k1,1217:32583029,23820401:0 +) +(1,1218:6630773,24661889:25952256,513147,134348 +k1,1217:8719541,24661889:245240 +k1,1217:10634639,24661889:245241 +k1,1217:13814581,24661889:245240 +k1,1217:15795214,24661889:245240 +k1,1217:20232793,24661889:245241 +k1,1217:21669478,24661889:245240 +k1,1217:24312025,24661889:245240 +k1,1217:24972062,24661889:245194 +k1,1217:28243100,24661889:245241 +k1,1217:31110435,24661889:245240 +k1,1217:32583029,24661889:0 +) +(1,1218:6630773,25503377:25952256,513147,134348 +k1,1217:8548356,25503377:144834 +k1,1217:10183480,25503377:144835 +k1,1217:11196666,25503377:144834 +k1,1217:12333061,25503377:144835 +k1,1217:14970229,25503377:144834 +k1,1217:16509014,25503377:144834 +k1,1217:18466575,25503377:144835 +k1,1217:19808096,25503377:144834 +k1,1217:22664810,25503377:144834 +k1,1217:24047620,25503377:144835 +k1,1217:24851746,25503377:144834 +k1,1217:28343505,25503377:144835 +k1,1217:29507424,25503377:144834 +k1,1217:32583029,25503377:0 +) +(1,1218:6630773,26344865:25952256,513147,126483 +k1,1217:8288361,26344865:232180 +k1,1217:9179833,26344865:232180 +k1,1217:10182716,26344865:232180 +k1,1217:10829706,26344865:232147 +k1,1217:14501871,26344865:232180 +k1,1217:15265548,26344865:232180 +k1,1217:16149156,26344865:232180 +k1,1217:17473821,26344865:232180 +k1,1217:20401497,26344865:232180 +(1,1217:20401497,26344865:0,452978,115847 +r1,1298:24980305,26344865:4578808,568825,115847 +k1,1217:20401497,26344865:-4578808 +) +(1,1217:20401497,26344865:4578808,452978,115847 +k1,1217:20401497,26344865:3277 +h1,1217:24977028,26344865:0,411205,112570 +) +k1,1217:25386155,26344865:232180 +k1,1217:28553037,26344865:232180 +k1,1217:29804302,26344865:232180 +k1,1217:32583029,26344865:0 +) +(1,1218:6630773,27186353:25952256,505283,134348 +k1,1217:8231868,27186353:175687 +k1,1217:8939052,27186353:175687 +k1,1217:9730776,27186353:175686 +k1,1217:12478096,27186353:175687 +k1,1217:13845228,27186353:175687 +k1,1217:18246021,27186353:175687 +k1,1217:19440792,27186353:175686 +k1,1217:23056464,27186353:175687 +k1,1217:24854167,27186353:175687 +k1,1217:26382517,27186353:175687 +k1,1217:27946911,27186353:175686 +k1,1217:30483205,27186353:175687 +k1,1217:31310320,27186353:175687 +k1,1218:32583029,27186353:0 +) +(1,1218:6630773,28027841:25952256,513147,134348 +k1,1217:8125947,28027841:142511 +k1,1217:9216109,28027841:142511 +k1,1217:10377705,28027841:142511 +k1,1217:13298943,28027841:142511 +k1,1217:14866862,28027841:142511 +k1,1217:15660800,28027841:142510 +k1,1217:17278526,28027841:142511 +k1,1217:19398258,28027841:142511 +k1,1217:22962404,28027841:142511 +k1,1217:24154802,28027841:142511 +k1,1217:26877465,28027841:142511 +k1,1217:32583029,28027841:0 +) +(1,1218:6630773,28869329:25952256,513147,134348 +g1,1217:7777653,28869329 +g1,1217:9558266,28869329 +g1,1217:10705146,28869329 +g1,1217:15462404,28869329 +g1,1217:17157820,28869329 +g1,1217:18751000,28869329 +g1,1217:20847496,28869329 +g1,1217:22472133,28869329 +k1,1218:32583029,28869329:6689261 +g1,1218:32583029,28869329 +) +v1,1220:6630773,30059795:0,393216,0 +(1,1232:6630773,34339453:25952256,4672874,196608 +g1,1232:6630773,34339453 +g1,1232:6630773,34339453 +g1,1232:6434165,34339453 +(1,1232:6434165,34339453:0,4672874,196608 +r1,1298:32779637,34339453:26345472,4869482,196608 +k1,1232:6434165,34339453:-26345472 +) +(1,1232:6434165,34339453:26345472,4672874,196608 +[1,1232:6630773,34339453:25952256,4476266,0 +(1,1222:6630773,30267413:25952256,404226,101187 +(1,1221:6630773,30267413:0,0,0 +g1,1221:6630773,30267413 +g1,1221:6630773,30267413 +g1,1221:6303093,30267413 +(1,1221:6303093,30267413:0,0,0 +) +g1,1221:6630773,30267413 +) +k1,1222:6630773,30267413:0 +g1,1222:11372958,30267413 +g1,1222:12321396,30267413 +k1,1222:12321396,30267413:0 +h1,1222:15166707,30267413:0,0,0 +k1,1222:32583029,30267413:17416322 +g1,1222:32583029,30267413 +) +(1,1223:6630773,30933591:25952256,410518,76021 +h1,1223:6630773,30933591:0,0,0 +g1,1223:6946919,30933591 +g1,1223:7263065,30933591 +g1,1223:7579211,30933591 +g1,1223:7895357,30933591 +g1,1223:8211503,30933591 +g1,1223:8527649,30933591 +g1,1223:8843795,30933591 +g1,1223:9159941,30933591 +g1,1223:9476087,30933591 +g1,1223:9792233,30933591 +g1,1223:10108379,30933591 +g1,1223:10424525,30933591 +g1,1223:11689108,30933591 +g1,1223:12637545,30933591 +g1,1223:13585982,30933591 +g1,1223:17063586,30933591 +h1,1223:17379732,30933591:0,0,0 +k1,1223:32583029,30933591:15203297 +g1,1223:32583029,30933591 +) +(1,1224:6630773,31599769:25952256,404226,76021 +h1,1224:6630773,31599769:0,0,0 +g1,1224:6946919,31599769 +g1,1224:7263065,31599769 +g1,1224:7579211,31599769 +g1,1224:7895357,31599769 +g1,1224:8211503,31599769 +g1,1224:8527649,31599769 +g1,1224:8843795,31599769 +g1,1224:9159941,31599769 +g1,1224:9476087,31599769 +g1,1224:9792233,31599769 +g1,1224:10108379,31599769 +g1,1224:10424525,31599769 +g1,1224:10740671,31599769 +g1,1224:11056817,31599769 +g1,1224:12637546,31599769 +g1,1224:13585984,31599769 +g1,1224:14218276,31599769 +g1,1224:14850568,31599769 +h1,1224:16115151,31599769:0,0,0 +k1,1224:32583029,31599769:16467878 +g1,1224:32583029,31599769 +) +(1,1225:6630773,32265947:25952256,404226,76021 +h1,1225:6630773,32265947:0,0,0 +g1,1225:6946919,32265947 +g1,1225:7263065,32265947 +g1,1225:7579211,32265947 +g1,1225:7895357,32265947 +g1,1225:8211503,32265947 +g1,1225:8527649,32265947 +g1,1225:8843795,32265947 +g1,1225:9159941,32265947 +g1,1225:9476087,32265947 +g1,1225:9792233,32265947 +g1,1225:10108379,32265947 +g1,1225:10424525,32265947 +g1,1225:10740671,32265947 +g1,1225:11056817,32265947 +h1,1225:11372963,32265947:0,0,0 +k1,1225:32583029,32265947:21210066 +g1,1225:32583029,32265947 +) +(1,1226:6630773,32932125:25952256,404226,76021 +h1,1226:6630773,32932125:0,0,0 +g1,1226:6946919,32932125 +g1,1226:7263065,32932125 +g1,1226:7579211,32932125 +g1,1226:7895357,32932125 +g1,1226:8211503,32932125 +g1,1226:8527649,32932125 +g1,1226:8843795,32932125 +g1,1226:9159941,32932125 +g1,1226:9476087,32932125 +g1,1226:9792233,32932125 +g1,1226:10108379,32932125 +g1,1226:10424525,32932125 +h1,1226:11056816,32932125:0,0,0 +k1,1226:32583028,32932125:21526212 +g1,1226:32583028,32932125 +) +(1,1231:6630773,33663839:25952256,404226,101187 +(1,1228:6630773,33663839:0,0,0 +g1,1228:6630773,33663839 +g1,1228:6630773,33663839 +g1,1228:6303093,33663839 +(1,1228:6303093,33663839:0,0,0 +) +g1,1228:6630773,33663839 +) +g1,1231:7579210,33663839 +g1,1231:7895356,33663839 +g1,1231:8211502,33663839 +g1,1231:8527648,33663839 +g1,1231:10108377,33663839 +g1,1231:10424523,33663839 +g1,1231:12637543,33663839 +h1,1231:14850563,33663839:0,0,0 +k1,1231:32583029,33663839:17732466 +g1,1231:32583029,33663839 +) +(1,1231:6630773,34330017:25952256,388497,9436 +h1,1231:6630773,34330017:0,0,0 +g1,1231:7579210,34330017 +g1,1231:7895356,34330017 +g1,1231:8211502,34330017 +g1,1231:8527648,34330017 +g1,1231:10108377,34330017 +g1,1231:10424523,34330017 +g1,1231:10740669,34330017 +g1,1231:11056815,34330017 +g1,1231:12637544,34330017 +g1,1231:12953690,34330017 +g1,1231:13269836,34330017 +g1,1231:13585982,34330017 +h1,1231:14850565,34330017:0,0,0 +k1,1231:32583029,34330017:17732464 +g1,1231:32583029,34330017 +) +] +) +g1,1232:32583029,34339453 +g1,1232:6630773,34339453 +g1,1232:6630773,34339453 +g1,1232:32583029,34339453 +g1,1232:32583029,34339453 +) +h1,1232:6630773,34536061:0,0,0 +v1,1236:6630773,36426125:0,393216,0 +(1,1298:6630773,45622577:25952256,9589668,0 +g1,1298:6630773,45622577 +g1,1298:6303093,45622577 +r1,1298:6401397,45622577:98304,9589668,0 +g1,1298:6600626,45622577 +g1,1298:6797234,45622577 +[1,1298:6797234,45622577:25785795,9589668,0 +(1,1237:6797234,37194794:25785795,1161885,196608 +(1,1236:6797234,37194794:0,1161885,196608 +r1,1298:8344870,37194794:1547636,1358493,196608 +k1,1236:6797234,37194794:-1547636 +) +(1,1236:6797234,37194794:1547636,1161885,196608 +) +k1,1236:8596402,37194794:251532 +k1,1236:11971380,37194794:251532 +k1,1236:14809618,37194794:251532 +k1,1236:16455101,37194794:251532 +k1,1236:18277531,37194794:251532 +k1,1236:19918426,37194794:251532 +k1,1236:21608473,37194794:251532 +k1,1236:22542890,37194794:251532 +k1,1236:24546199,37194794:251532 +k1,1236:26999741,37194794:251532 +k1,1236:28640636,37194794:251532 +k1,1236:30330683,37194794:251532 +k1,1236:31450567,37194794:251532 +k1,1236:32583029,37194794:0 +) +(1,1237:6797234,38036282:25785795,513147,126483 +k1,1236:8518865,38036282:191365 +k1,1236:9361658,38036282:191365 +k1,1236:10905686,38036282:191365 +k1,1236:15172735,38036282:191365 +k1,1236:16631566,38036282:191365 +k1,1236:19500733,38036282:191366 +k1,1236:20509987,38036282:191365 +k1,1236:24893690,38036282:191365 +k1,1236:27372262,38036282:191365 +k1,1236:28849443,38036282:191365 +k1,1236:31086842,38036282:191365 +k1,1236:32583029,38036282:0 +) +(1,1237:6797234,38877770:25785795,505283,134348 +k1,1236:9647574,38877770:263634 +k1,1236:10369304,38877770:263633 +k1,1236:11164435,38877770:263634 +k1,1236:13012073,38877770:263633 +k1,1236:14776481,38877770:263634 +k1,1236:15691542,38877770:263633 +k1,1236:17047661,38877770:263634 +k1,1236:21503632,38877770:263633 +k1,1236:24805515,38877770:263634 +k1,1236:27872779,38877770:263634 +k1,1236:29178434,38877770:263633 +k1,1236:32583029,38877770:0 +) +(1,1237:6797234,39719258:25785795,513147,126483 +k1,1236:8378353,39719258:296613 +k1,1236:9666526,39719258:296613 +k1,1236:13268120,39719258:296613 +k1,1236:15251630,39719258:296613 +k1,1236:15962988,39719258:296515 +k1,1236:18927572,39719258:296613 +k1,1236:21621492,39719258:296613 +k1,1236:25117573,39719258:296613 +k1,1236:25884079,39719258:296613 +k1,1236:26712189,39719258:296613 +k1,1236:28425690,39719258:296613 +k1,1236:31931601,39719258:296613 +k1,1236:32583029,39719258:0 +) +(1,1237:6797234,40560746:25785795,513147,126483 +k1,1236:9790084,40560746:261965 +k1,1236:11118320,40560746:261965 +k1,1236:12755887,40560746:261966 +k1,1236:17210190,40560746:261965 +k1,1236:18131447,40560746:261965 +k1,1236:21669557,40560746:261965 +k1,1236:23003691,40560746:261965 +k1,1236:24551472,40560746:261965 +k1,1236:26635339,40560746:261966 +k1,1236:27844955,40560746:261965 +k1,1236:29126005,40560746:261965 +k1,1236:32583029,40560746:0 +) +(1,1237:6797234,41402234:25785795,513147,134348 +k1,1236:7665731,41402234:209205 +k1,1236:15416165,41402234:209206 +k1,1236:18651167,41402234:209205 +k1,1236:19808024,41402234:209206 +k1,1236:22414536,41402234:209205 +k1,1236:24494795,41402234:209206 +k1,1236:25900687,41402234:209205 +k1,1236:28283067,41402234:209206 +k1,1236:30059893,41402234:209205 +k1,1236:32583029,41402234:0 +) +(1,1237:6797234,42243722:25785795,513147,126483 +k1,1236:8086889,42243722:270570 +k1,1236:9853646,42243722:270570 +k1,1236:13115935,42243722:270570 +k1,1236:14002543,42243722:270570 +k1,1236:15476354,42243722:270570 +k1,1236:16906911,42243722:270570 +k1,1236:18169041,42243722:270570 +k1,1236:19505881,42243722:270569 +k1,1236:22708532,42243722:270570 +k1,1236:25508792,42243722:270570 +k1,1236:27159550,42243722:270570 +k1,1236:28421680,42243722:270570 +k1,1236:29711335,42243722:270570 +k1,1236:31635378,42243722:270570 +k1,1236:32583029,42243722:0 +) +(1,1237:6797234,43085210:25785795,505283,102891 +k1,1236:7786216,43085210:222866 +k1,1236:10483721,43085210:222866 +k1,1236:12194910,43085210:222866 +k1,1236:13286128,43085210:222866 +k1,1236:14500554,43085210:222866 +k1,1236:17934684,43085210:222866 +k1,1236:18773588,43085210:222866 +k1,1236:20015540,43085210:222867 +k1,1236:23314011,43085210:222866 +k1,1236:25135955,43085210:222866 +k1,1236:26550266,43085210:222866 +k1,1236:27641484,43085210:222866 +k1,1236:29477191,43085210:222866 +k1,1236:30903298,43085210:222866 +k1,1236:31812326,43085210:222866 +k1,1236:32583029,43085210:0 +) +(1,1237:6797234,43926698:25785795,473825,7863 +k1,1237:32583028,43926698:23051632 +g1,1237:32583028,43926698 +) +v1,1239:6797234,45117164:0,393216,0 +(1,1243:6797234,45425969:25785795,702021,196608 +g1,1243:6797234,45425969 +g1,1243:6797234,45425969 +g1,1243:6600626,45425969 +(1,1243:6600626,45425969:0,702021,196608 +r1,1298:32779637,45425969:26179011,898629,196608 +k1,1243:6600625,45425969:-26179012 +) +(1,1243:6600626,45425969:26179011,702021,196608 +[1,1243:6797234,45425969:25785795,505413,0 +(1,1241:6797234,45324782:25785795,404226,101187 +(1,1240:6797234,45324782:0,0,0 +g1,1240:6797234,45324782 +g1,1240:6797234,45324782 +g1,1240:6469554,45324782 +(1,1240:6469554,45324782:0,0,0 +) +g1,1240:6797234,45324782 +) +g1,1241:7429526,45324782 +g1,1241:8377964,45324782 +g1,1241:12171713,45324782 +g1,1241:12804005,45324782 +g1,1241:13752442,45324782 +g1,1241:15017025,45324782 +g1,1241:16597754,45324782 +g1,1241:21023794,45324782 +k1,1241:21023794,45324782:0 +h1,1241:23236814,45324782:0,0,0 +k1,1241:32583029,45324782:9346215 +g1,1241:32583029,45324782 +) +] +) +g1,1243:32583029,45425969 +g1,1243:6797234,45425969 +g1,1243:6797234,45425969 +g1,1243:32583029,45425969 +g1,1243:32583029,45425969 +) +h1,1243:6797234,45622577:0,0,0 +] +g1,1298:32583029,45622577 +) +] +(1,1298:32583029,45706769:0,0,0 +g1,1298:32583029,45706769 +) +) +] +(1,1298:6630773,47279633:25952256,0,0 +h1,1298:6630773,47279633:25952256,0,0 +) +] +(1,1298:4262630,4025873:0,0,0 +[1,1298:-473656,4025873:0,0,0 +(1,1298:-473656,-710413:0,0,0 +(1,1298:-473656,-710413:0,0,0 +g1,1298:-473656,-710413 +) +g1,1298:-473656,-710413 +) +] +) +] +!28335 +}28 +Input:433:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!102 +{29 +[1,1329:4262630,47279633:28320399,43253760,0 +(1,1329:4262630,4025873:0,0,0 +[1,1329:-473656,4025873:0,0,0 +(1,1329:-473656,-710413:0,0,0 +(1,1329:-473656,-644877:0,0,0 +k1,1329:-473656,-644877:-65536 ) +(1,1329:-473656,4736287:0,0,0 +k1,1329:-473656,4736287:5209943 ) -) -] -[1,19108:3078558,4812305:0,0,0 -(1,19108:3078558,49800853:0,16384,2228224 -g1,19108:29030814,49800853 -g1,19108:36135244,49800853 -(1,19108:36135244,49800853:1720320,16384,2228224 -(1,19108:36135244,52029077:16384,1703936,0 -[1,19108:36135244,52029077:25952256,1703936,0 -(1,19108:36135244,51504789:25952256,1179648,0 -(1,19108:36135244,51504789:16384,1179648,0 -r1,19108:36151628,51504789:16384,1179648,0 -) -k1,19108:62087500,51504789:25935872 -g1,19108:62087500,51504789 +g1,1329:-473656,-710413 ) ] ) -g1,19108:36675916,49800853 -(1,19108:36675916,49800853:1179648,16384,0 -r1,19108:37855564,49800853:1179648,16384,0 +[1,1329:6630773,47279633:25952256,43253760,0 +[1,1329:6630773,4812305:25952256,786432,0 +(1,1329:6630773,4812305:25952256,505283,134348 +(1,1329:6630773,4812305:25952256,505283,134348 +g1,1329:3078558,4812305 +[1,1329:3078558,4812305:0,0,0 +(1,1329:3078558,2439708:0,1703936,0 +k1,1329:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,1329:2537886,2439708:1179648,16384,0 ) +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,1329:3078558,1915420:16384,1179648,0 ) -k1,19108:3078556,49800853:-34777008 +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) ] -g1,19108:6630773,4812305 ) ) -] -[1,19108:6630773,45706769:0,40108032,0 -(1,19108:6630773,45706769:0,40108032,0 -(1,19108:6630773,45706769:0,0,0 -g1,19108:6630773,45706769 ) -[1,19108:6630773,45706769:0,40108032,0 -h1,19108:6630773,6254097:0,0,0 ] -(1,19108:6630773,45706769:0,0,0 -g1,19108:6630773,45706769 +[1,1329:3078558,4812305:0,0,0 +(1,1329:3078558,2439708:0,1703936,0 +g1,1329:29030814,2439708 +g1,1329:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,1329:36151628,1915420:16384,1179648,0 ) +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) ] -(1,19108:6630773,47279633:25952256,0,0 -h1,19108:6630773,47279633:25952256,0,0 ) -] -(1,19108:4262630,4025873:0,0,0 -[1,19108:-473656,4025873:0,0,0 -(1,19108:-473656,-710413:0,0,0 -(1,19108:-473656,-710413:0,0,0 -g1,19108:-473656,-710413 +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,1329:37855564,2439708:1179648,16384,0 ) -g1,19108:-473656,-710413 ) -] +k1,1329:3078556,2439708:-34777008 ) ] -!3399 -}377 -Input:2989:C:\Users\Aphalo\Documents\Own_manuscripts\Books\learnr-book-crc-2ed\using-r-main-crc.ind -!111 -{378 -[2989,86:4262630,47279633:28320399,43253760,11795 -(2989,86:4262630,4025873:0,0,0 -[2989,86:-473656,4025873:0,0,0 -(2989,86:-473656,-710413:0,0,0 -(2989,86:-473656,-644877:0,0,0 -k2989,86:-473656,-644877:-65536 -) -(2989,86:-473656,4736287:0,0,0 -k2989,86:-473656,4736287:5209943 -) -g2989,86:-473656,-710413 +[1,1329:3078558,4812305:0,0,0 +(1,1329:3078558,49800853:0,16384,2228224 +k1,1329:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,1329:2537886,49800853:1179648,16384,0 ) -] +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,1329:3078558,51504789:16384,1179648,0 ) -[2989,86:6630773,47279633:25952256,43253760,11795 -[2989,86:6630773,4812305:25952256,786432,0 -(2989,86:6630773,4812305:25952256,0,0 -(2989,86:6630773,4812305:25952256,0,0 -g2989,86:3078558,4812305 -[2989,86:3078558,4812305:0,0,0 -(2989,86:3078558,2439708:0,1703936,0 -k2989,86:1358238,2439708:-1720320 -(2989,1:1358238,2439708:1720320,1703936,0 -(2989,1:1358238,2439708:1179648,16384,0 -r2989,86:2537886,2439708:1179648,16384,0 -) -g2989,1:3062174,2439708 -(2989,1:3062174,2439708:16384,1703936,0 -[2989,1:3062174,2439708:25952256,1703936,0 -(2989,1:3062174,1915420:25952256,1179648,0 -(2989,1:3062174,1915420:16384,1179648,0 -r2989,86:3078558,1915420:16384,1179648,0 -) -k2989,1:29014430,1915420:25935872 -g2989,1:29014430,1915420 +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) ] ) ) ) ] -[2989,86:3078558,4812305:0,0,0 -(2989,86:3078558,2439708:0,1703936,0 -g2989,86:29030814,2439708 -g2989,86:36135244,2439708 -(2989,1:36135244,2439708:1720320,1703936,0 -(2989,1:36135244,2439708:16384,1703936,0 -[2989,1:36135244,2439708:25952256,1703936,0 -(2989,1:36135244,1915420:25952256,1179648,0 -(2989,1:36135244,1915420:16384,1179648,0 -r2989,86:36151628,1915420:16384,1179648,0 -) -k2989,1:62087500,1915420:25935872 -g2989,1:62087500,1915420 -) -] -) -g2989,1:36675916,2439708 -(2989,1:36675916,2439708:1179648,16384,0 -r2989,86:37855564,2439708:1179648,16384,0 -) +[1,1329:3078558,4812305:0,0,0 +(1,1329:3078558,49800853:0,16384,2228224 +g1,1329:29030814,49800853 +g1,1329:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,1329:36151628,51504789:16384,1179648,0 +) +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 +) +] +) +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,1329:37855564,49800853:1179648,16384,0 +) +) +k1,1329:3078556,49800853:-34777008 +) +] +g1,1329:6630773,4812305 +k1,1329:18771974,4812305:11344283 +g1,1329:20158715,4812305 +g1,1329:20807521,4812305 +g1,1329:24121676,4812305 +g1,1329:28605649,4812305 +g1,1329:30015328,4812305 +) +) +] +[1,1329:6630773,45706769:25952256,40108032,0 +(1,1329:6630773,45706769:25952256,40108032,0 +(1,1329:6630773,45706769:0,0,0 +g1,1329:6630773,45706769 +) +[1,1329:6630773,45706769:25952256,40108032,0 +v1,1298:6630773,6254097:0,393216,0 +(1,1298:6630773,31397504:25952256,25536623,0 +g1,1298:6630773,31397504 +g1,1298:6303093,31397504 +r1,1329:6401397,31397504:98304,25536623,0 +g1,1298:6600626,31397504 +g1,1298:6797234,31397504 +[1,1298:6797234,31397504:25785795,25536623,0 +v1,1247:6797234,6254097:0,393216,0 +(1,1259:6797234,11797429:25785795,5936548,196608 +g1,1259:6797234,11797429 +g1,1259:6797234,11797429 +g1,1259:6600626,11797429 +(1,1259:6600626,11797429:0,5936548,196608 +r1,1329:32779637,11797429:26179011,6133156,196608 +k1,1259:6600625,11797429:-26179012 +) +(1,1259:6600626,11797429:26179011,5936548,196608 +[1,1259:6797234,11797429:25785795,5739940,0 +(1,1249:6797234,6461715:25785795,404226,76021 +(1,1248:6797234,6461715:0,0,0 +g1,1248:6797234,6461715 +g1,1248:6797234,6461715 +g1,1248:6469554,6461715 +(1,1248:6469554,6461715:0,0,0 +) +g1,1248:6797234,6461715 +) +g1,1249:7429526,6461715 +g1,1249:8061818,6461715 +g1,1249:9010256,6461715 +k1,1249:9010256,6461715:0 +h1,1249:11855567,6461715:0,0,0 +k1,1249:32583029,6461715:20727462 +g1,1249:32583029,6461715 +) +(1,1250:6797234,7127893:25785795,404226,107478 +h1,1250:6797234,7127893:0,0,0 +g1,1250:7429526,7127893 +g1,1250:8377964,7127893 +g1,1250:15017025,7127893 +g1,1250:15649317,7127893 +g1,1250:19759211,7127893 +k1,1250:19759211,7127893:41419 +h1,1250:21697504,7127893:0,0,0 +k1,1250:32583029,7127893:10885525 +g1,1250:32583029,7127893 +) +(1,1251:6797234,7794071:25785795,404226,0 +h1,1251:6797234,7794071:0,0,0 +g1,1251:7429526,7794071 +g1,1251:8377964,7794071 +h1,1251:8694110,7794071:0,0,0 +k1,1251:32583030,7794071:23888920 +g1,1251:32583030,7794071 +) +(1,1252:6797234,8460249:25785795,404226,107478 +h1,1252:6797234,8460249:0,0,0 +g1,1252:8694108,8460249 +g1,1252:9642545,8460249 +g1,1252:10274837,8460249 +g1,1252:13752440,8460249 +h1,1252:14068586,8460249:0,0,0 +k1,1252:32583030,8460249:18514444 +g1,1252:32583030,8460249 +) +(1,1253:6797234,9126427:25785795,404226,76021 +h1,1253:6797234,9126427:0,0,0 +g1,1253:7113380,9126427 +g1,1253:7429526,9126427 +g1,1253:9010255,9126427 +g1,1253:9958693,9126427 +g1,1253:12171714,9126427 +g1,1253:12804006,9126427 +h1,1253:14068589,9126427:0,0,0 +k1,1253:32583029,9126427:18514440 +g1,1253:32583029,9126427 +) +(1,1254:6797234,9792605:25785795,404226,101187 +h1,1254:6797234,9792605:0,0,0 +g1,1254:7113380,9792605 +g1,1254:7429526,9792605 +k1,1254:7429526,9792605:0 +h1,1254:9958691,9792605:0,0,0 +k1,1254:32583029,9792605:22624338 +g1,1254:32583029,9792605 +) +(1,1255:6797234,10458783:25785795,404226,0 +h1,1255:6797234,10458783:0,0,0 +g1,1255:7113380,10458783 +g1,1255:7429526,10458783 +g1,1255:8061818,10458783 +g1,1255:9010256,10458783 +g1,1255:9642548,10458783 +g1,1255:10274840,10458783 +h1,1255:10590986,10458783:0,0,0 +k1,1255:32583030,10458783:21992044 +g1,1255:32583030,10458783 +) +(1,1256:6797234,11124961:25785795,404226,76021 +h1,1256:6797234,11124961:0,0,0 +h1,1256:7113380,11124961:0,0,0 +k1,1256:32583028,11124961:25469648 +g1,1256:32583028,11124961 +) +(1,1257:6797234,11791139:25785795,404226,6290 +h1,1257:6797234,11791139:0,0,0 +h1,1257:7113380,11791139:0,0,0 +k1,1257:32583028,11791139:25469648 +g1,1257:32583028,11791139 +) +] +) +g1,1259:32583029,11797429 +g1,1259:6797234,11797429 +g1,1259:6797234,11797429 +g1,1259:32583029,11797429 +g1,1259:32583029,11797429 +) +h1,1259:6797234,11994037:0,0,0 +v1,1263:6797234,13708791:0,393216,0 +(1,1273:6797234,17919767:25785795,4604192,196608 +g1,1273:6797234,17919767 +g1,1273:6797234,17919767 +g1,1273:6600626,17919767 +(1,1273:6600626,17919767:0,4604192,196608 +r1,1329:32779637,17919767:26179011,4800800,196608 +k1,1273:6600625,17919767:-26179012 +) +(1,1273:6600626,17919767:26179011,4604192,196608 +[1,1273:6797234,17919767:25785795,4407584,0 +(1,1265:6797234,13916409:25785795,404226,76021 +(1,1264:6797234,13916409:0,0,0 +g1,1264:6797234,13916409 +g1,1264:6797234,13916409 +g1,1264:6469554,13916409 +(1,1264:6469554,13916409:0,0,0 +) +g1,1264:6797234,13916409 +) +g1,1265:7429526,13916409 +g1,1265:8061818,13916409 +g1,1265:9010256,13916409 +k1,1265:9010256,13916409:0 +h1,1265:11855567,13916409:0,0,0 +k1,1265:32583029,13916409:20727462 +g1,1265:32583029,13916409 +) +(1,1266:6797234,14582587:25785795,404226,107478 +h1,1266:6797234,14582587:0,0,0 +g1,1266:7429526,14582587 +g1,1266:8377964,14582587 +g1,1266:15017025,14582587 +g1,1266:15649317,14582587 +g1,1266:19759211,14582587 +k1,1266:19759211,14582587:41419 +h1,1266:21697504,14582587:0,0,0 +k1,1266:32583029,14582587:10885525 +g1,1266:32583029,14582587 +) +(1,1267:6797234,15248765:25785795,410518,107478 +h1,1267:6797234,15248765:0,0,0 +g1,1267:8694108,15248765 +g1,1267:9642545,15248765 +g1,1267:14384731,15248765 +g1,1267:15017023,15248765 +g1,1267:16281606,15248765 +h1,1267:16597752,15248765:0,0,0 +k1,1267:32583029,15248765:15985277 +g1,1267:32583029,15248765 +) +(1,1268:6797234,15914943:25785795,404226,76021 +h1,1268:6797234,15914943:0,0,0 +g1,1268:7113380,15914943 +g1,1268:7429526,15914943 +g1,1268:9010255,15914943 +g1,1268:9958693,15914943 +g1,1268:12171714,15914943 +g1,1268:12804006,15914943 +h1,1268:14068589,15914943:0,0,0 +k1,1268:32583029,15914943:18514440 +g1,1268:32583029,15914943 +) +(1,1269:6797234,16581121:25785795,404226,101187 +h1,1269:6797234,16581121:0,0,0 +g1,1269:7113380,16581121 +g1,1269:7429526,16581121 +k1,1269:7429526,16581121:0 +h1,1269:9958691,16581121:0,0,0 +k1,1269:32583029,16581121:22624338 +g1,1269:32583029,16581121 +) +(1,1270:6797234,17247299:25785795,404226,76021 +h1,1270:6797234,17247299:0,0,0 +h1,1270:7113380,17247299:0,0,0 +k1,1270:32583028,17247299:25469648 +g1,1270:32583028,17247299 +) +(1,1271:6797234,17913477:25785795,404226,6290 +h1,1271:6797234,17913477:0,0,0 +h1,1271:7113380,17913477:0,0,0 +k1,1271:32583028,17913477:25469648 +g1,1271:32583028,17913477 +) +] +) +g1,1273:32583029,17919767 +g1,1273:6797234,17919767 +g1,1273:6797234,17919767 +g1,1273:32583029,17919767 +g1,1273:32583029,17919767 +) +h1,1273:6797234,18116375:0,0,0 +v1,1277:6797234,19831129:0,393216,0 +(1,1284:6797234,22043571:25785795,2605658,196608 +g1,1284:6797234,22043571 +g1,1284:6797234,22043571 +g1,1284:6600626,22043571 +(1,1284:6600626,22043571:0,2605658,196608 +r1,1329:32779637,22043571:26179011,2802266,196608 +k1,1284:6600625,22043571:-26179012 +) +(1,1284:6600626,22043571:26179011,2605658,196608 +[1,1284:6797234,22043571:25785795,2409050,0 +(1,1279:6797234,20038747:25785795,404226,107478 +(1,1278:6797234,20038747:0,0,0 +g1,1278:6797234,20038747 +g1,1278:6797234,20038747 +g1,1278:6469554,20038747 +(1,1278:6469554,20038747:0,0,0 +) +g1,1278:6797234,20038747 +) +g1,1279:7429526,20038747 +g1,1279:10274837,20038747 +g1,1279:11223274,20038747 +g1,1279:12804003,20038747 +g1,1279:14384732,20038747 +g1,1279:16281606,20038747 +g1,1279:17862335,20038747 +g1,1279:22288375,20038747 +k1,1279:22288375,20038747:1573 +h1,1279:23870676,20038747:0,0,0 +k1,1279:32583029,20038747:8712353 +g1,1279:32583029,20038747 +) +(1,1280:6797234,20704925:25785795,404226,101187 +h1,1280:6797234,20704925:0,0,0 +g1,1280:7429526,20704925 +g1,1280:8694109,20704925 +g1,1280:10590983,20704925 +g1,1280:12487857,20704925 +g1,1280:14068586,20704925 +g1,1280:15017023,20704925 +g1,1280:16597752,20704925 +g1,1280:17546189,20704925 +g1,1280:18810772,20704925 +g1,1280:21339938,20704925 +k1,1280:21339938,20704925:41419 +h1,1280:24542814,20704925:0,0,0 +k1,1280:32583029,20704925:8040215 +g1,1280:32583029,20704925 +) +(1,1281:6797234,21371103:25785795,404226,107478 +h1,1281:6797234,21371103:0,0,0 +g1,1281:7429526,21371103 +g1,1281:8377964,21371103 +g1,1281:13120150,21371103 +g1,1281:13752442,21371103 +k1,1281:13752442,21371103:0 +h1,1281:18810774,21371103:0,0,0 +k1,1281:32583029,21371103:13772255 +g1,1281:32583029,21371103 +) +(1,1282:6797234,22037281:25785795,404226,6290 +h1,1282:6797234,22037281:0,0,0 +h1,1282:7113380,22037281:0,0,0 +k1,1282:32583028,22037281:25469648 +g1,1282:32583028,22037281 +) +] +) +g1,1284:32583029,22043571 +g1,1284:6797234,22043571 +g1,1284:6797234,22043571 +g1,1284:32583029,22043571 +g1,1284:32583029,22043571 +) +h1,1284:6797234,22240179:0,0,0 +v1,1288:6797234,23954933:0,393216,0 +(1,1294:6797234,25501197:25785795,1939480,196608 +g1,1294:6797234,25501197 +g1,1294:6797234,25501197 +g1,1294:6600626,25501197 +(1,1294:6600626,25501197:0,1939480,196608 +r1,1329:32779637,25501197:26179011,2136088,196608 +k1,1294:6600625,25501197:-26179012 +) +(1,1294:6600626,25501197:26179011,1939480,196608 +[1,1294:6797234,25501197:25785795,1742872,0 +(1,1290:6797234,24162551:25785795,404226,6290 +(1,1289:6797234,24162551:0,0,0 +g1,1289:6797234,24162551 +g1,1289:6797234,24162551 +g1,1289:6469554,24162551 +(1,1289:6469554,24162551:0,0,0 +) +g1,1289:6797234,24162551 +) +g1,1290:7429526,24162551 +g1,1290:8377963,24162551 +g1,1290:9958692,24162551 +k1,1290:9958692,24162551:23593 +h1,1290:11879159,24162551:0,0,0 +k1,1290:32583029,24162551:20703870 +g1,1290:32583029,24162551 +) +(1,1291:6797234,24828729:25785795,410518,76021 +h1,1291:6797234,24828729:0,0,0 +g1,1291:7429526,24828729 +g1,1291:8377964,24828729 +k1,1291:8377964,24828729:0 +h1,1291:10590984,24828729:0,0,0 +k1,1291:32583028,24828729:21992044 +g1,1291:32583028,24828729 +) +(1,1292:6797234,25494907:25785795,404226,6290 +h1,1292:6797234,25494907:0,0,0 +h1,1292:7113380,25494907:0,0,0 +k1,1292:32583028,25494907:25469648 +g1,1292:32583028,25494907 +) +] +) +g1,1294:32583029,25501197 +g1,1294:6797234,25501197 +g1,1294:6797234,25501197 +g1,1294:32583029,25501197 +g1,1294:32583029,25501197 +) +h1,1294:6797234,25697805:0,0,0 +(1,1298:6797234,27063581:25785795,513147,115847 +h1,1297:6797234,27063581:983040,0,0 +k1,1297:11062115,27063581:182643 +k1,1297:12670166,27063581:182643 +k1,1297:13957091,27063581:182643 +k1,1297:14887500,27063581:182643 +k1,1297:17861977,27063581:182643 +k1,1297:19438570,27063581:182642 +(1,1297:19438570,27063581:0,452978,115847 +r1,1329:24017378,27063581:4578808,568825,115847 +k1,1297:19438570,27063581:-4578808 +) +(1,1297:19438570,27063581:4578808,452978,115847 +k1,1297:19438570,27063581:3277 +h1,1297:24014101,27063581:0,411205,112570 +) +k1,1297:24373691,27063581:182643 +k1,1297:25598356,27063581:182643 +k1,1297:26136859,27063581:182643 +k1,1297:28297379,27063581:182643 +k1,1297:29139314,27063581:182643 +k1,1297:30341042,27063581:182643 +k1,1297:32583029,27063581:0 +) +(1,1298:6797234,27905069:25785795,505283,126483 +k1,1297:10021869,27905069:234883 +k1,1297:11275837,27905069:234883 +(1,1297:11275837,27905069:0,459977,115847 +r1,1329:12337526,27905069:1061689,575824,115847 +k1,1297:11275837,27905069:-1061689 +) +(1,1297:11275837,27905069:1061689,459977,115847 +k1,1297:11275837,27905069:3277 +h1,1297:12334249,27905069:0,411205,112570 +) +k1,1297:12572409,27905069:234883 +k1,1297:14222214,27905069:234883 +k1,1297:16312421,27905069:234883 +k1,1297:18230269,27905069:234883 +k1,1297:19875290,27905069:234882 +k1,1297:21301618,27905069:234883 +k1,1297:22555586,27905069:234883 +k1,1297:26095450,27905069:234883 +(1,1297:26095450,27905069:0,452978,115847 +r1,1329:27860563,27905069:1765113,568825,115847 +k1,1297:26095450,27905069:-1765113 +) +(1,1297:26095450,27905069:1765113,452978,115847 +k1,1297:26095450,27905069:3277 +h1,1297:27857286,27905069:0,411205,112570 +) +k1,1297:28095446,27905069:234883 +k1,1297:29745251,27905069:234883 +k1,1297:31563944,27905069:234883 +k1,1297:32583029,27905069:0 +) +(1,1298:6797234,28746557:25785795,513147,134348 +k1,1297:10376717,28746557:242390 +k1,1297:13805467,28746557:242390 +k1,1297:15783250,28746557:242390 +k1,1297:18765045,28746557:242390 +k1,1297:20690400,28746557:242390 +k1,1297:22342928,28746557:242389 +k1,1297:23776763,28746557:242390 +k1,1297:26714649,28746557:242390 +(1,1297:26714649,28746557:0,459977,115847 +r1,1329:28831474,28746557:2116825,575824,115847 +k1,1297:26714649,28746557:-2116825 +) +(1,1297:26714649,28746557:2116825,459977,115847 +k1,1297:26714649,28746557:3277 +h1,1297:28828197,28746557:0,411205,112570 +) +k1,1297:29073864,28746557:242390 +k1,1297:30999219,28746557:242390 +k1,1297:32583029,28746557:0 +) +(1,1298:6797234,29588045:25785795,513147,126483 +k1,1297:8161825,29588045:167904 +(1,1297:8161825,29588045:0,459977,115847 +r1,1329:9223514,29588045:1061689,575824,115847 +k1,1297:8161825,29588045:-1061689 +) +(1,1297:8161825,29588045:1061689,459977,115847 +k1,1297:8161825,29588045:3277 +h1,1297:9220237,29588045:0,411205,112570 +) +k1,1297:9391418,29588045:167904 +k1,1297:10974244,29588045:167904 +k1,1297:13602370,29588045:167904 +k1,1297:18157254,29588045:167904 +k1,1297:18984450,29588045:167904 +k1,1297:21783625,29588045:167904 +k1,1297:22602957,29588045:167904 +(1,1297:22602957,29588045:0,452978,115847 +r1,1329:22961223,29588045:358266,568825,115847 +k1,1297:22602957,29588045:-358266 +) +(1,1297:22602957,29588045:358266,452978,115847 +k1,1297:22602957,29588045:3277 +h1,1297:22957946,29588045:0,411205,112570 +) +k1,1297:23129127,29588045:167904 +k1,1297:24979996,29588045:167904 +k1,1297:26731710,29588045:167904 +k1,1297:28091059,29588045:167904 +k1,1297:29278048,29588045:167904 +k1,1297:32583029,29588045:0 +) +(1,1298:6797234,30429533:25785795,513147,126483 +k1,1297:8752407,30429533:265655 +k1,1297:10432985,30429533:265656 +k1,1297:13833687,30429533:265655 +k1,1297:15118428,30429533:265656 +k1,1297:17526455,30429533:265655 +k1,1297:20867716,30429533:265656 +k1,1297:22558779,30429533:265655 +k1,1297:24031607,30429533:265655 +k1,1297:25947460,30429533:265656 +k1,1297:27655562,30429533:265655 +k1,1297:28718136,30429533:265656 +k1,1297:30739501,30429533:265655 +k1,1297:32583029,30429533:0 +) +(1,1298:6797234,31271021:25785795,513147,126483 +g1,1297:8438910,31271021 +g1,1297:9657224,31271021 +g1,1297:12241964,31271021 +g1,1297:13771574,31271021 +g1,1297:16111209,31271021 +g1,1297:17258089,31271021 +g1,1297:17872161,31271021 +g1,1297:19614108,31271021 +g1,1297:20622707,31271021 +g1,1297:21803010,31271021 +g1,1297:24056137,31271021 +g1,1297:26141492,31271021 +g1,1297:29229548,31271021 +g1,1297:30225695,31271021 +k1,1298:32583029,31271021:814616 +g1,1298:32583029,31271021 +) +] +g1,1298:32583029,31397504 +) +h1,1298:6630773,31397504:0,0,0 +(1,1301:6630773,33953476:25952256,564462,147783 +(1,1301:6630773,33953476:2450326,534184,12975 +g1,1301:6630773,33953476 +g1,1301:9081099,33953476 +) +g1,1301:12074981,33953476 +g1,1301:13044587,33953476 +k1,1301:32583030,33953476:17566792 +g1,1301:32583030,33953476 +) +(1,1305:6630773,35188180:25952256,513147,7863 +k1,1304:7729211,35188180:200595 +k1,1304:8948890,35188180:200594 +k1,1304:13788123,35188180:200595 +k1,1304:16276580,35188180:200595 +k1,1304:19993836,35188180:200594 +k1,1304:21634257,35188180:200595 +k1,1304:23690176,35188180:200595 +k1,1304:24995052,35188180:200594 +k1,1304:25943413,35188180:200595 +k1,1304:28435147,35188180:200595 +k1,1304:29589290,35188180:200594 +k1,1304:30922347,35188180:200595 +k1,1304:32583029,35188180:0 +) +(1,1305:6630773,36029668:25952256,513147,126483 +g1,1304:7600705,36029668 +g1,1304:10461351,36029668 +g1,1304:12054531,36029668 +g1,1304:13426199,36029668 +(1,1304:13426199,36029668:0,459977,115847 +r1,1329:14487888,36029668:1061689,575824,115847 +k1,1304:13426199,36029668:-1061689 +) +(1,1304:13426199,36029668:1061689,459977,115847 +k1,1304:13426199,36029668:3277 +h1,1304:14484611,36029668:0,411205,112570 +) +g1,1304:14687117,36029668 +g1,1304:16805240,36029668 +g1,1304:17958018,36029668 +g1,1304:19463380,36029668 +g1,1304:21591989,36029668 +g1,1304:22147078,36029668 +g1,1304:24433629,36029668 +g1,1304:25292150,36029668 +g1,1304:26880742,36029668 +g1,1304:27731399,36029668 +g1,1304:29527085,36029668 +k1,1305:32583029,36029668:1488323 +g1,1305:32583029,36029668 +) +v1,1307:6630773,37160559:0,393216,0 +(1,1325:6630773,45510161:25952256,8742818,196608 +g1,1325:6630773,45510161 +g1,1325:6630773,45510161 +g1,1325:6434165,45510161 +(1,1325:6434165,45510161:0,8742818,196608 +r1,1329:32779637,45510161:26345472,8939426,196608 +k1,1325:6434165,45510161:-26345472 +) +(1,1325:6434165,45510161:26345472,8742818,196608 +[1,1325:6630773,45510161:25952256,8546210,0 +(1,1309:6630773,37368177:25952256,404226,82312 +(1,1308:6630773,37368177:0,0,0 +g1,1308:6630773,37368177 +g1,1308:6630773,37368177 +g1,1308:6303093,37368177 +(1,1308:6303093,37368177:0,0,0 +) +g1,1308:6630773,37368177 +) +g1,1309:7263065,37368177 +g1,1309:8211503,37368177 +g1,1309:12321398,37368177 +h1,1309:13269835,37368177:0,0,0 +k1,1309:32583029,37368177:19313194 +g1,1309:32583029,37368177 +) +(1,1310:6630773,38034355:25952256,328204,0 +h1,1310:6630773,38034355:0,0,0 +h1,1310:6946919,38034355:0,0,0 +k1,1310:32583029,38034355:25636110 +g1,1310:32583029,38034355 +) +(1,1324:6630773,38766069:25952256,404226,82312 +(1,1312:6630773,38766069:0,0,0 +g1,1312:6630773,38766069 +g1,1312:6630773,38766069 +g1,1312:6303093,38766069 +(1,1312:6303093,38766069:0,0,0 +) +g1,1312:6630773,38766069 +) +g1,1324:7579210,38766069 +g1,1324:7895356,38766069 +g1,1324:8211502,38766069 +g1,1324:8527648,38766069 +g1,1324:8843794,38766069 +g1,1324:9159940,38766069 +g1,1324:9476086,38766069 +g1,1324:11056815,38766069 +g1,1324:12637544,38766069 +g1,1324:14218273,38766069 +g1,1324:15799002,38766069 +k1,1324:15799002,38766069:0 +h1,1324:17063585,38766069:0,0,0 +k1,1324:32583029,38766069:15519444 +g1,1324:32583029,38766069 +) +(1,1324:6630773,39432247:25952256,404226,82312 +h1,1324:6630773,39432247:0,0,0 +g1,1324:7579210,39432247 +g1,1324:7895356,39432247 +g1,1324:9476084,39432247 +g1,1324:9792230,39432247 +g1,1324:10108376,39432247 +g1,1324:10424522,39432247 +g1,1324:11056814,39432247 +g1,1324:11372960,39432247 +g1,1324:11689106,39432247 +g1,1324:12637543,39432247 +g1,1324:12953689,39432247 +g1,1324:13269835,39432247 +g1,1324:14218272,39432247 +g1,1324:14534418,39432247 +g1,1324:14850564,39432247 +g1,1324:15799001,39432247 +g1,1324:16115147,39432247 +g1,1324:16431293,39432247 +h1,1324:17063584,39432247:0,0,0 +k1,1324:32583029,39432247:15519445 +g1,1324:32583029,39432247 +) +(1,1324:6630773,40098425:25952256,404226,82312 +h1,1324:6630773,40098425:0,0,0 +g1,1324:7579210,40098425 +g1,1324:7895356,40098425 +g1,1324:9476084,40098425 +g1,1324:9792230,40098425 +g1,1324:10108376,40098425 +g1,1324:10424522,40098425 +g1,1324:11056814,40098425 +g1,1324:11372960,40098425 +g1,1324:11689106,40098425 +g1,1324:12637543,40098425 +g1,1324:12953689,40098425 +g1,1324:13269835,40098425 +g1,1324:14218272,40098425 +g1,1324:14534418,40098425 +g1,1324:14850564,40098425 +g1,1324:15799001,40098425 +g1,1324:16115147,40098425 +g1,1324:16431293,40098425 +h1,1324:17063584,40098425:0,0,0 +k1,1324:32583029,40098425:15519445 +g1,1324:32583029,40098425 +) +(1,1324:6630773,40764603:25952256,404226,82312 +h1,1324:6630773,40764603:0,0,0 +g1,1324:7579210,40764603 +g1,1324:7895356,40764603 +g1,1324:9476084,40764603 +g1,1324:9792230,40764603 +g1,1324:10108376,40764603 +g1,1324:10424522,40764603 +g1,1324:11056814,40764603 +g1,1324:11372960,40764603 +g1,1324:11689106,40764603 +g1,1324:12637543,40764603 +g1,1324:12953689,40764603 +g1,1324:13269835,40764603 +g1,1324:14218272,40764603 +g1,1324:14534418,40764603 +g1,1324:14850564,40764603 +g1,1324:15799001,40764603 +g1,1324:16115147,40764603 +g1,1324:16431293,40764603 +h1,1324:17063584,40764603:0,0,0 +k1,1324:32583029,40764603:15519445 +g1,1324:32583029,40764603 +) +(1,1324:6630773,41430781:25952256,404226,82312 +h1,1324:6630773,41430781:0,0,0 +g1,1324:7579210,41430781 +g1,1324:7895356,41430781 +g1,1324:9476084,41430781 +g1,1324:9792230,41430781 +g1,1324:10108376,41430781 +g1,1324:10424522,41430781 +g1,1324:11056814,41430781 +g1,1324:11372960,41430781 +g1,1324:11689106,41430781 +g1,1324:12637543,41430781 +g1,1324:12953689,41430781 +g1,1324:13269835,41430781 +g1,1324:14218272,41430781 +g1,1324:14534418,41430781 +g1,1324:14850564,41430781 +g1,1324:15799001,41430781 +g1,1324:16115147,41430781 +g1,1324:16431293,41430781 +h1,1324:17063584,41430781:0,0,0 +k1,1324:32583029,41430781:15519445 +g1,1324:32583029,41430781 +) +(1,1324:6630773,42096959:25952256,404226,82312 +h1,1324:6630773,42096959:0,0,0 +g1,1324:7579210,42096959 +g1,1324:7895356,42096959 +g1,1324:9476084,42096959 +g1,1324:9792230,42096959 +g1,1324:10108376,42096959 +g1,1324:10424522,42096959 +g1,1324:11056814,42096959 +g1,1324:11372960,42096959 +g1,1324:11689106,42096959 +g1,1324:12637543,42096959 +g1,1324:12953689,42096959 +g1,1324:13269835,42096959 +g1,1324:14218272,42096959 +g1,1324:14534418,42096959 +g1,1324:14850564,42096959 +g1,1324:15799001,42096959 +g1,1324:16115147,42096959 +g1,1324:16431293,42096959 +h1,1324:17063584,42096959:0,0,0 +k1,1324:32583029,42096959:15519445 +g1,1324:32583029,42096959 +) +(1,1324:6630773,42763137:25952256,404226,82312 +h1,1324:6630773,42763137:0,0,0 +g1,1324:7579210,42763137 +g1,1324:7895356,42763137 +g1,1324:9476084,42763137 +g1,1324:9792230,42763137 +g1,1324:10108376,42763137 +g1,1324:10424522,42763137 +g1,1324:11056814,42763137 +g1,1324:11372960,42763137 +g1,1324:11689106,42763137 +g1,1324:12637543,42763137 +g1,1324:12953689,42763137 +g1,1324:13269835,42763137 +g1,1324:14218272,42763137 +g1,1324:14534418,42763137 +g1,1324:14850564,42763137 +g1,1324:15799001,42763137 +g1,1324:16115147,42763137 +g1,1324:16431293,42763137 +h1,1324:17063584,42763137:0,0,0 +k1,1324:32583029,42763137:15519445 +g1,1324:32583029,42763137 +) +(1,1324:6630773,43429315:25952256,404226,82312 +h1,1324:6630773,43429315:0,0,0 +g1,1324:7579210,43429315 +g1,1324:7895356,43429315 +g1,1324:9476084,43429315 +g1,1324:9792230,43429315 +g1,1324:10108376,43429315 +g1,1324:10424522,43429315 +g1,1324:11056814,43429315 +g1,1324:11372960,43429315 +g1,1324:11689106,43429315 +g1,1324:12637543,43429315 +g1,1324:12953689,43429315 +g1,1324:13269835,43429315 +g1,1324:14218272,43429315 +g1,1324:14534418,43429315 +g1,1324:14850564,43429315 +g1,1324:15799001,43429315 +g1,1324:16115147,43429315 +g1,1324:16431293,43429315 +h1,1324:17063584,43429315:0,0,0 +k1,1324:32583029,43429315:15519445 +g1,1324:32583029,43429315 +) +(1,1324:6630773,44095493:25952256,404226,82312 +h1,1324:6630773,44095493:0,0,0 +g1,1324:7579210,44095493 +g1,1324:7895356,44095493 +g1,1324:9476084,44095493 +g1,1324:9792230,44095493 +g1,1324:10108376,44095493 +g1,1324:10424522,44095493 +g1,1324:11056814,44095493 +g1,1324:11372960,44095493 +g1,1324:11689106,44095493 +g1,1324:12637543,44095493 +g1,1324:12953689,44095493 +g1,1324:13269835,44095493 +g1,1324:14218272,44095493 +g1,1324:14534418,44095493 +g1,1324:14850564,44095493 +g1,1324:15799001,44095493 +g1,1324:16115147,44095493 +g1,1324:16431293,44095493 +h1,1324:17063584,44095493:0,0,0 +k1,1324:32583029,44095493:15519445 +g1,1324:32583029,44095493 +) +(1,1324:6630773,44761671:25952256,404226,82312 +h1,1324:6630773,44761671:0,0,0 +g1,1324:7579210,44761671 +g1,1324:7895356,44761671 +g1,1324:9476084,44761671 +g1,1324:9792230,44761671 +g1,1324:10108376,44761671 +g1,1324:10424522,44761671 +g1,1324:11056814,44761671 +g1,1324:11372960,44761671 +g1,1324:11689106,44761671 +g1,1324:12637543,44761671 +g1,1324:12953689,44761671 +g1,1324:13269835,44761671 +g1,1324:14218272,44761671 +g1,1324:14534418,44761671 +g1,1324:14850564,44761671 +g1,1324:15799001,44761671 +g1,1324:16115147,44761671 +g1,1324:16431293,44761671 +h1,1324:17063584,44761671:0,0,0 +k1,1324:32583029,44761671:15519445 +g1,1324:32583029,44761671 +) +(1,1324:6630773,45427849:25952256,404226,82312 +h1,1324:6630773,45427849:0,0,0 +g1,1324:7579210,45427849 +g1,1324:9476084,45427849 +g1,1324:9792230,45427849 +g1,1324:10108376,45427849 +g1,1324:11056813,45427849 +g1,1324:11372959,45427849 +g1,1324:11689105,45427849 +g1,1324:12637542,45427849 +g1,1324:12953688,45427849 +g1,1324:13269834,45427849 +g1,1324:14218271,45427849 +g1,1324:14534417,45427849 +g1,1324:14850563,45427849 +g1,1324:15799000,45427849 +g1,1324:16115146,45427849 +g1,1324:16431292,45427849 +h1,1324:17063583,45427849:0,0,0 +k1,1324:32583029,45427849:15519446 +g1,1324:32583029,45427849 +) +] +) +g1,1325:32583029,45510161 +g1,1325:6630773,45510161 +g1,1325:6630773,45510161 +g1,1325:32583029,45510161 +g1,1325:32583029,45510161 +) +h1,1325:6630773,45706769:0,0,0 +] +(1,1329:32583029,45706769:0,0,0 +g1,1329:32583029,45706769 +) +) +] +(1,1329:6630773,47279633:25952256,0,0 +h1,1329:6630773,47279633:25952256,0,0 +) +] +(1,1329:4262630,4025873:0,0,0 +[1,1329:-473656,4025873:0,0,0 +(1,1329:-473656,-710413:0,0,0 +(1,1329:-473656,-710413:0,0,0 +g1,1329:-473656,-710413 +) +g1,1329:-473656,-710413 +) +] +) +] +!26535 +}29 +Input:434:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:435:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:436:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:437:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:438:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:439:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:440:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:441:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:442:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:443:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:444:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:445:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:446:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:447:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:448:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:449:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:450:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:451:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:452:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:453:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:454:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:455:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2013 +{30 +[1,1401:4262630,47279633:28320399,43253760,0 +(1,1401:4262630,4025873:0,0,0 +[1,1401:-473656,4025873:0,0,0 +(1,1401:-473656,-710413:0,0,0 +(1,1401:-473656,-644877:0,0,0 +k1,1401:-473656,-644877:-65536 ) -k2989,86:3078556,2439708:-34777008 +(1,1401:-473656,4736287:0,0,0 +k1,1401:-473656,4736287:5209943 ) -] -[2989,86:3078558,4812305:0,0,0 -(2989,86:3078558,49800853:0,16384,2228224 -k2989,86:1358238,49800853:-1720320 -(2989,1:1358238,49800853:1720320,16384,2228224 -(2989,1:1358238,49800853:1179648,16384,0 -r2989,86:2537886,49800853:1179648,16384,0 -) -g2989,1:3062174,49800853 -(2989,1:3062174,52029077:16384,1703936,0 -[2989,1:3062174,52029077:25952256,1703936,0 -(2989,1:3062174,51504789:25952256,1179648,0 -(2989,1:3062174,51504789:16384,1179648,0 -r2989,86:3078558,51504789:16384,1179648,0 -) -k2989,1:29014430,51504789:25935872 -g2989,1:29014430,51504789 +g1,1401:-473656,-710413 ) ] ) +[1,1401:6630773,47279633:25952256,43253760,0 +[1,1401:6630773,4812305:25952256,786432,0 +(1,1401:6630773,4812305:25952256,513147,126483 +(1,1401:6630773,4812305:25952256,513147,126483 +g1,1401:3078558,4812305 +[1,1401:3078558,4812305:0,0,0 +(1,1401:3078558,2439708:0,1703936,0 +k1,1401:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,1401:2537886,2439708:1179648,16384,0 ) +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,1401:3078558,1915420:16384,1179648,0 ) -] -[2989,86:3078558,4812305:0,0,0 -(2989,86:3078558,49800853:0,16384,2228224 -g2989,86:29030814,49800853 -g2989,86:36135244,49800853 -(2989,1:36135244,49800853:1720320,16384,2228224 -(2989,1:36135244,52029077:16384,1703936,0 -[2989,1:36135244,52029077:25952256,1703936,0 -(2989,1:36135244,51504789:25952256,1179648,0 -(2989,1:36135244,51504789:16384,1179648,0 -r2989,86:36151628,51504789:16384,1179648,0 -) -k2989,1:62087500,51504789:25935872 -g2989,1:62087500,51504789 +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) ] ) -g2989,1:36675916,49800853 -(2989,1:36675916,49800853:1179648,16384,0 -r2989,86:37855564,49800853:1179648,16384,0 -) ) -k2989,86:3078556,49800853:-34777008 ) ] -g2989,86:6630773,4812305 +[1,1401:3078558,4812305:0,0,0 +(1,1401:3078558,2439708:0,1703936,0 +g1,1401:29030814,2439708 +g1,1401:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,1401:36151628,1915420:16384,1179648,0 ) +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) ] -[2989,86:6630773,45706769:25952256,40108032,0 -(2989,86:6630773,45706769:25952256,40108032,0 -(2989,86:6630773,45706769:0,0,0 -g2989,86:6630773,45706769 -) -[2989,86:6630773,45706769:25952256,40108032,0 -[2989,1:6630773,12106481:25952256,6507744,0 -(2989,1:6630773,7073297:25952256,32768,229376 -(2989,1:6630773,7073297:0,32768,229376 -(2989,1:6630773,7073297:5505024,32768,229376 -r2989,86:12135797,7073297:5505024,262144,229376 -) -k2989,1:6630773,7073297:-5505024 ) +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,1401:37855564,2439708:1179648,16384,0 ) -(2989,1:6630773,8803457:25952256,909509,22412 -h2989,1:6630773,8803457:0,0,0 -g2989,1:11695002,8803457 -k2989,1:23726232,8803457:8856797 -k2989,1:32583029,8803457:8856797 -) -(2989,1:6630773,9419505:25952256,32768,0 -(2989,1:6630773,9419505:5505024,32768,0 -r2989,86:12135797,9419505:5505024,32768,0 -) -k2989,1:22359413,9419505:10223616 -k2989,1:32583029,9419505:10223616 -) -] -(2989,86:6630773,45706769:25952256,32627728,126483 -[2989,86:6630773,45706769:11829248,32627728,126483 -(2989,5:6630773,13734401:11829248,513147,134348 -h2989,3:6630773,13734401:0,0,0 -k2989,3:9996866,13734401:191529 -k2989,3:13547770,13734401:191529 -k2989,4:13547770,13734401:0 -k2989,4:14706610,13734401:191529 -k2989,4:17800729,13734401:191529 -k2989,4:18460021,13734401:0 -) -(2989,5:9252213,14575889:9207808,505283,134348 -g2989,4:12344201,14575889 -k2989,5:16989393,14575889:1470628 -k2989,5:18460021,14575889:1470628 -) -(2989,6:6630773,15423098:11829248,513147,134348 -h2989,5:6630773,15423098:0,0,0 -g2989,5:9157185,15423098 -g2989,5:10015706,15423098 -g2989,5:11653450,15423098 -k2989,6:15455195,15423098:3004827 -k2989,6:18460021,15423098:3004826 -) -(2989,7:6630773,16270308:11829248,513147,126483 -h2989,6:6630773,16270308:0,0,0 -g2989,6:9384595,16270308 -g2989,6:10243116,16270308 -k2989,7:15678673,16270308:2781349 -k2989,7:18460021,16270308:2781348 -) -(2989,8:6630773,17117517:11829248,513147,102891 -h2989,7:6630773,17117517:0,0,0 -r2989,86:6630773,17117517:0,616038,102891 -g2989,7:7941493,17117517 -g2989,7:7941493,17117517 -g2989,7:10128429,17117517 -g2989,7:13044781,17117517 -k2989,8:16350090,17117517:2109932 -k2989,8:18460021,17117517:2109931 -) -(2989,9:6630773,17964727:11829248,513147,126483 -h2989,8:6630773,17964727:0,0,0 -g2989,8:9893810,17964727 -g2989,8:11060350,17964727 -g2989,8:13814172,17964727 -g2989,8:14672693,17964727 -k2989,9:18257514,17964727:202508 -k2989,9:18460021,17964727:202507 -) -(2989,11:6630773,18811936:11829248,505283,134348 -h2989,9:6630773,18811936:0,0,0 -g2989,9:10620604,18811936 -g2989,9:14179208,18811936 -k2989,10:14179208,18811936:0 -g2989,10:15345748,18811936 -k2989,10:18460021,18811936:211683 -) -(2989,11:9252213,19653424:9207808,513147,134348 -g2989,10:10110734,19653424 -g2989,10:13202722,19653424 -k2989,11:17726673,19653424:733349 -k2989,11:18460021,19653424:733348 -) -(2989,12:6630773,20500634:11829248,513147,126483 -h2989,11:6630773,20500634:0,0,0 -g2989,11:9438335,20500634 -g2989,11:10604875,20500634 -g2989,11:13358697,20500634 -g2989,11:14217218,20500634 -k2989,12:17665724,20500634:794298 -k2989,12:18460021,20500634:794297 -) -(2989,13:6630773,21347843:11829248,505283,126483 -h2989,12:6630773,21347843:0,0,0 -g2989,12:9939685,21347843 -k2989,13:14797542,21347843:3662480 -k2989,13:18460021,21347843:3662479 -) -(2989,14:6630773,22195053:11829248,513147,126483 -h2989,13:6630773,22195053:0,0,0 -g2989,13:8593576,22195053 -g2989,13:11992273,22195053 -g2989,13:13560549,22195053 -k2989,14:16607974,22195053:1852048 -k2989,14:18460021,22195053:1852047 -) -(2989,15:6630773,23042262:11829248,513147,102891 -h2989,14:6630773,23042262:0,0,0 -g2989,14:10106147,23042262 -g2989,14:13216485,23042262 -k2989,15:16236712,23042262:2223309 -k2989,15:18460021,23042262:2223309 -) -(2989,16:6630773,23889472:11829248,485622,126483 -h2989,15:6630773,23889472:0,0,0 -r2989,86:6630773,23889472:0,612105,126483 -g2989,15:7941493,23889472 -g2989,15:7941493,23889472 -g2989,15:9526808,23889472 -g2989,15:13285297,23889472 -k2989,16:16271118,23889472:2188903 -k2989,16:18460021,23889472:2188903 -) -(2989,17:6630773,24736681:11829248,485622,126483 -h2989,16:6630773,24736681:0,0,0 -g2989,16:8983515,24736681 -k2989,17:14682526,24736681:3777495 -k2989,17:18460021,24736681:3777495 -) -(2989,18:6630773,25583891:11829248,505283,102891 -h2989,17:6630773,25583891:0,0,0 -r2989,86:6630773,25583891:0,608174,102891 -g2989,17:7941493,25583891 -g2989,17:7941493,25583891 -g2989,17:11989651,25583891 -k2989,18:15623295,25583891:2836726 -k2989,18:18460021,25583891:2836726 -) -(2989,19:6630773,26431100:11829248,485622,134348 -h2989,18:6630773,26431100:0,0,0 -g2989,18:10649440,26431100 -k2989,19:14953190,26431100:3506832 -k2989,19:18460021,26431100:3506831 -) -(2989,20:6630773,27278310:11829248,505283,134348 -h2989,19:6630773,27278310:0,0,0 -r2989,86:6630773,27278310:0,639631,134348 -g2989,19:7941493,27278310 -g2989,19:7941493,27278310 -g2989,19:11024961,27278310 -k2989,20:15140950,27278310:3319071 -k2989,20:18460021,27278310:3319071 -) -(2989,21:6630773,28125519:11829248,513147,102891 -h2989,20:6630773,28125519:0,0,0 -r2989,86:6630773,28125519:0,616038,102891 -g2989,20:7941493,28125519 -g2989,20:7941493,28125519 -g2989,20:10788377,28125519 -k2989,21:15022658,28125519:3437363 -k2989,21:18460021,28125519:3437363 -) -(2989,22:6630773,28972729:11829248,505283,102891 -h2989,21:6630773,28972729:0,0,0 -g2989,21:10112700,28972729 -k2989,22:15247119,28972729:3212903 -k2989,22:18460021,28972729:3212902 -) -(2989,26:6630773,30570655:11829248,505283,102891 -h2989,25:6630773,30570655:0,0,0 -g2989,25:8263930,30570655 -g2989,25:9051672,30570655 -k2989,26:13955076,30570655:4504945 -k2989,26:18460021,30570655:4504945 -) -(2989,27:6630773,31417865:11829248,505283,102891 -h2989,26:6630773,31417865:0,0,0 -g2989,26:8518209,31417865 -k2989,27:13887574,31417865:4572447 -k2989,27:18460021,31417865:4572447 -) -(2989,28:6630773,32265074:11829248,505283,134348 -h2989,27:6630773,32265074:0,0,0 -g2989,27:8591610,32265074 -g2989,27:9986216,32265074 -k2989,28:14422348,32265074:4037673 -k2989,28:18460021,32265074:4037673 -) -(2989,29:6630773,33112284:11829248,477757,102891 -h2989,28:6630773,33112284:0,0,0 -g2989,28:8387137,33112284 -k2989,29:13822038,33112284:4637983 -k2989,29:18460021,33112284:4637983 -) -(2989,30:6630773,33959493:11829248,505283,102891 -h2989,29:6630773,33959493:0,0,0 -g2989,29:11250405,33959493 -k2989,30:15452902,33959493:3007120 -k2989,30:18460021,33959493:3007119 -) -(2989,31:6630773,34806703:11829248,505283,134348 -h2989,30:6630773,34806703:0,0,0 -g2989,30:10557034,34806703 -k2989,31:15106216,34806703:3353805 -k2989,31:18460021,34806703:3353805 -) -(2989,32:6630773,35653912:11829248,505283,102891 -h2989,31:6630773,35653912:0,0,0 -g2989,31:10744467,35653912 -k2989,32:15199933,35653912:3260089 -k2989,32:18460021,35653912:3260088 -) -(2989,33:6630773,36501122:11829248,505283,102891 -h2989,32:6630773,36501122:0,0,0 -g2989,32:9341342,36501122 -g2989,32:12990386,36501122 -k2989,33:16123663,36501122:2336359 -k2989,33:18460021,36501122:2336358 -) -(2989,34:6630773,37348331:11829248,505283,126483 -h2989,33:6630773,37348331:0,0,0 -g2989,33:7989989,37348331 -g2989,33:9970487,37348331 -g2989,33:11137027,37348331 -g2989,33:13117525,37348331 -g2989,33:14476741,37348331 -k2989,33:18460021,37348331:2791835 -) -(2989,34:9252213,38189819:9207808,505283,126483 -g2989,33:12277354,38189819 -k2989,34:16007336,38189819:2452685 -k2989,34:18460021,38189819:2452685 -) -(2989,35:6630773,39037029:11829248,505283,102891 -h2989,34:6630773,39037029:0,0,0 -g2989,34:9515667,39037029 -k2989,35:14585533,39037029:3874489 -k2989,35:18460021,39037029:3874488 -) -(2989,39:6630773,40634955:11829248,485622,102891 -h2989,38:6630773,40634955:0,0,0 -g2989,38:7457181,40634955 -g2989,38:8626998,40634955 -g2989,38:9796815,40634955 -g2989,38:10966632,40634955 -g2989,38:12136449,40634955 -g2989,38:13306266,40634955 -g2989,38:14476083,40634955 -g2989,38:16044359,40634955 -k2989,38:18460021,40634955:1046615 -) -(2989,39:9252213,41476443:9207808,485622,102891 -g2989,38:10820489,41476443 -g2989,38:12388765,41476443 -k2989,39:16022082,41476443:2437940 -k2989,39:18460021,41476443:2437939 -) -(2989,40:6630773,42323653:11829248,485622,102891 -h2989,39:6630773,42323653:0,0,0 -g2989,39:8286867,42323653 -g2989,39:9058225,42323653 -g2989,39:9829583,42323653 -g2989,39:10999400,42323653 -g2989,39:12169217,42323653 -g2989,39:13339034,42323653 -g2989,39:14907310,42323653 -g2989,39:16475586,42323653 -k2989,40:18065492,42323653:394529 -k2989,40:18460021,42323653:394529 -) -(2989,41:6630773,43170862:11829248,513147,134348 -h2989,40:6630773,43170862:0,0,0 -g2989,40:10276540,43170862 -g2989,40:13491080,43170862 -g2989,40:14657620,43170862 -k2989,41:17670967,43170862:789055 -k2989,41:18460021,43170862:789054 -) -(2989,42:6630773,44018072:11829248,505283,134348 -h2989,41:6630773,44018072:0,0,0 -g2989,41:9540571,44018072 -g2989,41:13256462,44018072 -g2989,41:14849642,44018072 -k2989,41:18460021,44018072:1822557 -) -(2989,42:9252213,44859560:9207808,485622,11795 -k2989,42:15215334,44859560:3244688 -k2989,42:18460021,44859560:3244687 -) -(2989,43:6630773,45706769:11829248,505283,126483 -h2989,42:6630773,45706769:0,0,0 -g2989,42:9804681,45706769 -g2989,42:12139073,45706769 -g2989,42:14338461,45706769 -k2989,43:16797700,45706769:1662321 -k2989,43:18460021,45706769:1662321 ) -] -k2989,86:19606901,45706769:1146880 -r2989,86:19606901,45706769:0,32754211,126483 -k2989,86:20753781,45706769:1146880 -[2989,86:20753781,45706769:11829248,32627728,102891 -(2989,44:20753781,13734401:11829248,505283,134348 -h2989,43:20753781,13734401:0,0,0 -g2989,43:23927689,13734401 -g2989,43:25992728,13734401 -g2989,43:29584100,13734401 -k2989,44:31482024,13734401:1101006 -k2989,44:32583029,13734401:1101005 -) -(2989,45:20753781,14579480:11829248,505283,134348 -h2989,44:20753781,14579480:0,0,0 -g2989,44:23927689,14579480 -g2989,44:26496700,14579480 -k2989,45:29938324,14579480:2644706 -k2989,45:32583029,14579480:2644705 -) -(2989,46:20753781,15424559:11829248,505283,102891 -h2989,45:20753781,15424559:0,0,0 -g2989,45:23764505,15424559 -g2989,45:26556338,15424559 -g2989,45:29407154,15424559 -k2989,46:31592780,15424559:990249 -k2989,46:32583029,15424559:990249 -) -(2989,47:20753781,16269639:11829248,505283,102891 -h2989,46:20753781,16269639:0,0,0 -g2989,46:23359492,16269639 -k2989,47:28568949,16269639:4014080 -k2989,47:32583029,16269639:4014080 -) -(2989,48:20753781,17114718:11829248,505283,126483 -h2989,47:20753781,17114718:0,0,0 -r2989,86:20753781,17114718:0,631766,126483 -g2989,47:22064501,17114718 -g2989,47:22064501,17114718 -g2989,47:23017394,17114718 -g2989,47:24771792,17114718 -g2989,47:27390610,17114718 -k2989,48:30584508,17114718:1998521 -k2989,48:32583029,17114718:1998521 -) -(2989,49:20753781,17959797:11829248,505283,7863 -h2989,48:20753781,17959797:0,0,0 -g2989,48:23185822,17959797 -g2989,48:24576496,17959797 -k2989,49:29636203,17959797:2946826 -k2989,49:32583029,17959797:2946826 -) -(2989,50:20753781,18804876:11829248,505283,102891 -h2989,49:20753781,18804876:0,0,0 -r2989,86:20753781,18804876:0,608174,102891 -g2989,49:22064501,18804876 -g2989,49:22064501,18804876 -g2989,49:25412080,18804876 -k2989,50:29958313,18804876:2624717 -k2989,50:32583029,18804876:2624716 -) -(2989,51:20753781,19649955:11829248,505283,134348 -h2989,50:20753781,19649955:0,0,0 -r2989,86:20753781,19649955:0,639631,134348 -g2989,50:22064501,19649955 -g2989,50:22064501,19649955 -g2989,50:24507027,19649955 -k2989,51:29505786,19649955:3077243 -k2989,51:32583029,19649955:3077243 -) -(2989,52:20753781,20495034:11829248,505283,134348 -h2989,51:20753781,20495034:0,0,0 -r2989,86:20753781,20495034:0,639631,134348 -g2989,51:22064501,20495034 -g2989,51:22064501,20495034 -g2989,51:25057530,20495034 -g2989,51:27660620,20495034 -g2989,51:30216524,20495034 -k2989,52:32360535,20495034:222495 -k2989,52:32583029,20495034:222494 -) -(2989,53:20753781,21340114:11829248,505283,126483 -h2989,52:20753781,21340114:0,0,0 -g2989,52:23129461,21340114 -g2989,52:26056954,21340114 -k2989,53:30679208,21340114:1903821 -k2989,53:32583029,21340114:1903821 -) -(2989,54:20753781,22185193:11829248,485622,102891 -h2989,53:20753781,22185193:0,0,0 -g2989,53:23324758,22185193 -k2989,54:28551582,22185193:4031447 -k2989,54:32583029,22185193:4031447 -) -(2989,55:20753781,23030272:11829248,505283,7863 -h2989,54:20753781,23030272:0,0,0 -k2989,55:27476464,23030272:5106565 -k2989,55:32583029,23030272:5106565 -) -(2989,56:20753781,23875351:11829248,513147,102891 -h2989,55:20753781,23875351:0,0,0 -r2989,86:20753781,23875351:0,616038,102891 -g2989,55:22064501,23875351 -g2989,55:22064501,23875351 -g2989,55:25849860,23875351 -k2989,56:30575661,23875351:2007368 -k2989,56:32583029,23875351:2007368 -) -(2989,57:20753781,24720430:11829248,485622,102891 -h2989,56:20753781,24720430:0,0,0 -r2989,86:20753781,24720430:0,588513,102891 -g2989,56:22064501,24720430 -g2989,56:22064501,24720430 -g2989,56:24505717,24720430 -k2989,57:29142062,24720430:3440968 -k2989,57:32583029,24720430:3440967 -) -(2989,58:20753781,25565509:11829248,513147,134348 -h2989,57:20753781,25565509:0,0,0 -g2989,57:24706912,25565509 -g2989,57:25565433,25565509 -g2989,57:28196703,25565509 -k2989,57:32583029,25565509:2698119 -) -(2989,58:23375221,26406997:9207808,505283,102891 -g2989,57:26564202,26406997 -k2989,58:30534374,26406997:2048656 -k2989,58:32583029,26406997:2048655 -) -(2989,59:20753781,27252077:11829248,485622,126483 -h2989,58:20753781,27252077:0,0,0 -g2989,58:24706912,27252077 -g2989,58:28156727,27252077 -k2989,59:31330636,27252077:1252393 -k2989,59:32583029,27252077:1252393 -) -(2989,60:20753781,28097156:11829248,505283,126483 -h2989,59:20753781,28097156:0,0,0 -g2989,59:24366780,28097156 -g2989,59:26062196,28097156 -g2989,59:29951757,28097156 -k2989,60:31865082,28097156:717948 -k2989,60:32583029,28097156:717947 -) -(2989,61:20753781,28942235:11829248,505283,102891 -h2989,60:20753781,28942235:0,0,0 -g2989,60:24546349,28942235 -g2989,60:27994853,28942235 -k2989,61:30886630,28942235:1696400 -k2989,61:32583029,28942235:1696399 -) -(2989,62:20753781,29787314:11829248,505283,102891 -h2989,61:20753781,29787314:0,0,0 -g2989,61:24546349,29787314 -g2989,61:28435910,29787314 -k2989,62:31107158,29787314:1475871 -k2989,62:32583029,29787314:1475871 -) -(2989,63:20753781,30632393:11829248,505283,102891 -h2989,62:20753781,30632393:0,0,0 -g2989,62:23546925,30632393 -k2989,63:28264207,30632393:4318823 -k2989,63:32583029,30632393:4318822 -) -(2989,64:20753781,31477472:11829248,513147,102891 -h2989,63:20753781,31477472:0,0,0 -g2989,63:23240872,31477472 -g2989,63:24099393,31477472 -g2989,63:27374227,31477472 -g2989,63:29097168,31477472 -k2989,64:31437787,31477472:1145242 -k2989,64:32583029,31477472:1145242 -) -(2989,66:20753781,32322552:11829248,505283,134348 -h2989,64:20753781,32322552:0,0,0 -g2989,64:24691184,32322552 -g2989,64:28249788,32322552 -k2989,65:28249788,32322552:0 -g2989,65:29416328,32322552 -k2989,65:32583029,32322552:264111 -) -(2989,66:23375221,33164040:9207808,513147,134348 -g2989,65:24233742,33164040 -g2989,65:27325730,33164040 -k2989,66:31823467,33164040:759563 -k2989,66:32583029,33164040:759562 -) -(2989,67:20753781,34009119:11829248,505283,102891 -h2989,66:20753781,34009119:0,0,0 -g2989,66:24607297,34009119 -k2989,67:29954380,34009119:2628650 -k2989,67:32583029,34009119:2628649 -) -(2989,68:20753781,34854198:11829248,505283,102891 -h2989,67:20753781,34854198:0,0,0 -r2989,86:20753781,34854198:0,608174,102891 -g2989,67:22064501,34854198 -g2989,67:22064501,34854198 -g2989,67:24850436,34854198 -k2989,68:29314421,34854198:3268608 -k2989,68:32583029,34854198:3268608 -) -(2989,69:20753781,35699277:11829248,481690,126483 -h2989,68:20753781,35699277:0,0,0 -r2989,86:20753781,35699277:0,608173,126483 -g2989,68:22064501,35699277 -g2989,68:22064501,35699277 -g2989,68:27342770,35699277 -k2989,69:30560588,35699277:2022441 -k2989,69:32583029,35699277:2022441 -) -(2989,70:20753781,36544356:11829248,485622,126483 -h2989,69:20753781,36544356:0,0,0 -r2989,86:20753781,36544356:0,612105,126483 -g2989,69:22064501,36544356 -g2989,69:22064501,36544356 -g2989,69:25905566,36544356 -k2989,70:29841986,36544356:2741043 -k2989,70:32583029,36544356:2741043 -) -(2989,71:20753781,37389435:11829248,485622,102891 -h2989,70:20753781,37389435:0,0,0 -r2989,86:20753781,37389435:0,588513,102891 -g2989,70:22064501,37389435 -g2989,70:22064501,37389435 -g2989,70:24944153,37389435 -k2989,71:29361280,37389435:3221750 -k2989,71:32583029,37389435:3221749 -) -(2989,72:20753781,38234515:11829248,485622,126483 -h2989,71:20753781,38234515:0,0,0 -r2989,86:20753781,38234515:0,612105,126483 -g2989,71:22064501,38234515 -g2989,71:22064501,38234515 -g2989,71:25595580,38234515 -k2989,72:29686993,38234515:2896036 -k2989,72:32583029,38234515:2896036 -) -(2989,73:20753781,39079594:11829248,485622,102891 -h2989,72:20753781,39079594:0,0,0 -g2989,72:23006908,39079594 -k2989,73:28392657,39079594:4190372 -k2989,73:32583029,39079594:4190372 -) -(2989,77:20753781,40639885:11829248,505283,7863 -h2989,76:20753781,40639885:0,0,0 -k2989,77:27363087,40639885:5219943 -k2989,77:32583029,40639885:5219942 -) -(2989,78:20753781,41484964:11829248,505283,126483 -h2989,77:20753781,41484964:0,0,0 -r2989,86:20753781,41484964:0,631766,126483 -g2989,77:22064501,41484964 -g2989,77:22064501,41484964 -g2989,77:25908187,41484964 -g2989,77:26720178,41484964 -g2989,77:27938492,41484964 -g2989,77:28582710,41484964 -k2989,77:32583029,41484964:1406404 -) -(2989,78:23375221,42326452:9207808,485622,11795 -k2989,78:28939883,42326452:3643146 -k2989,78:32583029,42326452:3643146 -) -(2989,79:20753781,43171531:11829248,505283,134348 -h2989,78:20753781,43171531:0,0,0 -r2989,86:20753781,43171531:0,639631,134348 -g2989,78:22064501,43171531 -g2989,78:22064501,43171531 -g2989,78:24630235,43171531 -g2989,78:26218827,43171531 -g2989,78:27856571,43171531 -k2989,79:30618259,43171531:1964770 -k2989,79:32583029,43171531:1964770 -) -(2989,80:20753781,44016611:11829248,513147,7863 -h2989,79:20753781,44016611:0,0,0 -g2989,79:22342373,44016611 -k2989,80:28400849,44016611:4182180 -k2989,80:32583029,44016611:4182180 -) -(2989,81:20753781,44861690:11829248,505283,126483 -h2989,80:20753781,44861690:0,0,0 -r2989,86:20753781,44861690:0,631766,126483 -g2989,80:22064501,44861690 -g2989,80:22064501,44861690 -g2989,80:26705105,44861690 -k2989,81:31003284,44861690:1579746 -k2989,81:32583029,44861690:1579745 -) -(2989,82:20753781,45706769:11829248,513147,102891 -h2989,81:20753781,45706769:0,0,0 -g2989,81:22342373,45706769 -g2989,81:24921870,45706769 -k2989,82:29713208,45706769:2869822 -k2989,82:32583029,45706769:2869821 +k1,1401:3078556,2439708:-34777008 ) ] -(2989,86:32583029,45706769:0,355205,126483 -h2989,86:32583029,45706769:420741,355205,126483 -k2989,86:32583029,45706769:-420741 -) +[1,1401:3078558,4812305:0,0,0 +(1,1401:3078558,49800853:0,16384,2228224 +k1,1401:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,1401:2537886,49800853:1179648,16384,0 ) -] -(2989,86:32583029,45706769:0,0,0 -g2989,86:32583029,45706769 +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,1401:3078558,51504789:16384,1179648,0 ) +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) ] -(2989,86:6630773,47279633:25952256,485622,11795 -(2989,86:6630773,47279633:25952256,485622,11795 -k2989,86:19009213,47279633:12378440 -k2989,86:32583030,47279633:12378440 -) ) -] -(2989,86:4262630,4025873:0,0,0 -[2989,86:-473656,4025873:0,0,0 -(2989,86:-473656,-710413:0,0,0 -(2989,86:-473656,-710413:0,0,0 -g2989,86:-473656,-710413 ) -g2989,86:-473656,-710413 ) ] +[1,1401:3078558,4812305:0,0,0 +(1,1401:3078558,49800853:0,16384,2228224 +g1,1401:29030814,49800853 +g1,1401:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,1401:36151628,51504789:16384,1179648,0 +) +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 +) +] +) +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,1401:37855564,49800853:1179648,16384,0 ) -] -!21349 -}378 -!12 -{379 -[2989,178:4262630,47279633:28320399,43253760,0 -(2989,178:4262630,4025873:0,0,0 -[2989,178:-473656,4025873:0,0,0 -(2989,178:-473656,-710413:0,0,0 -(2989,178:-473656,-644877:0,0,0 -k2989,178:-473656,-644877:-65536 -) -(2989,178:-473656,4736287:0,0,0 -k2989,178:-473656,4736287:5209943 -) -g2989,178:-473656,-710413 ) -] +k1,1401:3078556,49800853:-34777008 +) +] +g1,1401:6630773,4812305 +g1,1401:6630773,4812305 +g1,1401:9175536,4812305 +g1,1401:9990803,4812305 +g1,1401:13137841,4812305 +g1,1401:14654344,4812305 +k1,1401:31786112,4812305:17131768 +) +) +] +[1,1401:6630773,45706769:25952256,40108032,0 +(1,1401:6630773,45706769:25952256,40108032,0 +(1,1401:6630773,45706769:0,0,0 +g1,1401:6630773,45706769 +) +[1,1401:6630773,45706769:25952256,40108032,0 +v1,1329:6630773,6254097:0,393216,0 +(1,1342:6630773,11266518:25952256,5405637,196608 +g1,1342:6630773,11266518 +g1,1342:6630773,11266518 +g1,1342:6434165,11266518 +(1,1342:6434165,11266518:0,5405637,196608 +r1,1401:32779637,11266518:26345472,5602245,196608 +k1,1342:6434165,11266518:-26345472 +) +(1,1342:6434165,11266518:26345472,5405637,196608 +[1,1342:6630773,11266518:25952256,5209029,0 +(1,1331:6630773,6461715:25952256,404226,76021 +(1,1330:6630773,6461715:0,0,0 +g1,1330:6630773,6461715 +g1,1330:6630773,6461715 +g1,1330:6303093,6461715 +(1,1330:6303093,6461715:0,0,0 +) +g1,1330:6630773,6461715 +) +g1,1331:9159939,6461715 +g1,1331:10108377,6461715 +k1,1331:10108377,6461715:0 +h1,1331:12953688,6461715:0,0,0 +k1,1331:32583028,6461715:19629340 +g1,1331:32583028,6461715 +) +(1,1332:6630773,7127893:25952256,410518,76021 +h1,1332:6630773,7127893:0,0,0 +g1,1332:7895356,7127893 +g1,1332:8843793,7127893 +g1,1332:9792230,7127893 +g1,1332:13269834,7127893 +h1,1332:13585980,7127893:0,0,0 +k1,1332:32583028,7127893:18997048 +g1,1332:32583028,7127893 +) +(1,1333:6630773,7794071:25952256,404226,76021 +h1,1333:6630773,7794071:0,0,0 +g1,1333:6946919,7794071 +g1,1333:7263065,7794071 +g1,1333:10740668,7794071 +g1,1333:11689106,7794071 +h1,1333:12005252,7794071:0,0,0 +k1,1333:32583028,7794071:20577776 +g1,1333:32583028,7794071 +) +(1,1334:6630773,8460249:25952256,410518,107478 +h1,1334:6630773,8460249:0,0,0 +g1,1334:6946919,8460249 +g1,1334:7263065,8460249 +g1,1334:8527648,8460249 +g1,1334:9476085,8460249 +g1,1334:10424522,8460249 +k1,1334:10424522,8460249:0 +h1,1334:13585980,8460249:0,0,0 +k1,1334:32583028,8460249:18997048 +g1,1334:32583028,8460249 +) +(1,1335:6630773,9126427:25952256,404226,107478 +h1,1335:6630773,9126427:0,0,0 +g1,1335:6946919,9126427 +g1,1335:7263065,9126427 +g1,1335:7579211,9126427 +g1,1335:7895357,9126427 +g1,1335:11372960,9126427 +g1,1335:12321398,9126427 +g1,1335:15799001,9126427 +g1,1335:16431293,9126427 +g1,1335:18012022,9126427 +h1,1335:18644313,9126427:0,0,0 +k1,1335:32583029,9126427:13938716 +g1,1335:32583029,9126427 +) +(1,1336:6630773,9792605:25952256,404226,76021 +h1,1336:6630773,9792605:0,0,0 +h1,1336:6946919,9792605:0,0,0 +k1,1336:32583029,9792605:25636110 +g1,1336:32583029,9792605 +) +(1,1337:6630773,10458783:25952256,404226,101187 +h1,1337:6630773,10458783:0,0,0 +k1,1337:6630773,10458783:0 +h1,1337:11056812,10458783:0,0,0 +k1,1337:32583028,10458783:21526216 +g1,1337:32583028,10458783 +) +(1,1341:6630773,11190497:25952256,404226,76021 +(1,1339:6630773,11190497:0,0,0 +g1,1339:6630773,11190497 +g1,1339:6630773,11190497 +g1,1339:6303093,11190497 +(1,1339:6303093,11190497:0,0,0 +) +g1,1339:6630773,11190497 +) +g1,1341:7579210,11190497 +g1,1341:7895356,11190497 +g1,1341:9159939,11190497 +g1,1341:10424522,11190497 +g1,1341:11689105,11190497 +g1,1341:12953688,11190497 +g1,1341:14218271,11190497 +g1,1341:15482854,11190497 +g1,1341:16747437,11190497 +g1,1341:18012020,11190497 +g1,1341:19276603,11190497 +g1,1341:20541186,11190497 +h1,1341:21489623,11190497:0,0,0 +k1,1341:32583029,11190497:11093406 +g1,1341:32583029,11190497 +) +] +) +g1,1342:32583029,11266518 +g1,1342:6630773,11266518 +g1,1342:6630773,11266518 +g1,1342:32583029,11266518 +g1,1342:32583029,11266518 +) +h1,1342:6630773,11463126:0,0,0 +(1,1346:6630773,12828902:25952256,505283,134348 +h1,1345:6630773,12828902:983040,0,0 +k1,1345:9055277,12828902:244777 +k1,1345:10796241,12828902:244777 +k1,1345:12896342,12828902:244777 +k1,1345:13672615,12828902:244776 +k1,1345:15271366,12828902:244777 +k1,1345:18022895,12828902:244777 +k1,1345:18725769,12828902:244777 +k1,1345:20103008,12828902:244777 +k1,1345:21944242,12828902:244777 +k1,1345:23582969,12828902:244776 +k1,1345:24959553,12828902:244777 +k1,1345:30495707,12828902:244777 +k1,1345:32583029,12828902:0 +) +(1,1346:6630773,13670390:25952256,513147,126483 +k1,1345:8205956,13670390:181232 +k1,1345:8999950,13670390:181232 +k1,1345:10676714,13670390:181232 +k1,1345:12014656,13670390:181232 +k1,1345:14578777,13670390:181232 +k1,1345:15951454,13670390:181232 +k1,1345:17289397,13670390:181233 +k1,1345:18848196,13670390:181232 +k1,1345:21964130,13670390:181232 +k1,1345:25593211,13670390:181232 +k1,1345:26642795,13670390:181232 +k1,1345:28354293,13670390:181232 +k1,1345:30185722,13670390:181232 +k1,1345:32583029,13670390:0 +) +(1,1346:6630773,14511878:25952256,513147,115847 +k1,1345:10807571,14511878:201384 +(1,1345:10807571,14511878:0,452978,115847 +r1,1401:13276108,14511878:2468537,568825,115847 +k1,1345:10807571,14511878:-2468537 +) +(1,1345:10807571,14511878:2468537,452978,115847 +g1,1345:12569407,14511878 +h1,1345:13272831,14511878:0,411205,112570 +) +k1,1345:13477492,14511878:201384 +k1,1345:15829768,14511878:201384 +k1,1345:17187861,14511878:201383 +k1,1345:18480419,14511878:201384 +k1,1345:19297841,14511878:201384 +k1,1345:20518310,14511878:201384 +k1,1345:22980686,14511878:201384 +k1,1345:24201155,14511878:201384 +k1,1345:25559249,14511878:201384 +k1,1345:26570003,14511878:201384 +k1,1345:27790471,14511878:201383 +k1,1345:29297988,14511878:201384 +k1,1345:30703268,14511878:201384 +k1,1345:31563944,14511878:201384 +k1,1345:32583029,14511878:0 +) +(1,1346:6630773,15353366:25952256,505283,115847 +k1,1345:9135902,15353366:263798 +k1,1345:11956259,15353366:263798 +(1,1345:11956259,15353366:0,452978,115847 +r1,1401:14073084,15353366:2116825,568825,115847 +k1,1345:11956259,15353366:-2116825 +) +(1,1345:11956259,15353366:2116825,452978,115847 +g1,1345:13718095,15353366 +h1,1345:14069807,15353366:0,411205,112570 +) +k1,1345:14336883,15353366:263799 +k1,1345:16751573,15353366:263798 +k1,1345:18219267,15353366:263798 +k1,1345:19813446,15353366:263798 +k1,1345:21268689,15353366:263798 +(1,1345:21268689,15353366:0,452978,115847 +r1,1401:23737227,15353366:2468538,568825,115847 +k1,1345:21268689,15353366:-2468538 +) +(1,1345:21268689,15353366:2468538,452978,115847 +g1,1345:22327102,15353366 +g1,1345:23030526,15353366 +h1,1345:23733950,15353366:0,411205,112570 +) +k1,1345:24001025,15353366:263798 +k1,1345:26415716,15353366:263799 +k1,1345:29062403,15353366:263798 +k1,1345:30672311,15353366:263798 +k1,1345:31563944,15353366:263798 +k1,1345:32583029,15353366:0 +) +(1,1346:6630773,16194854:25952256,513147,134348 +k1,1345:9555332,16194854:263142 +k1,1345:11847470,16194854:263143 +k1,1345:13129697,16194854:263142 +k1,1345:15073183,16194854:263143 +k1,1345:16003481,16194854:263142 +(1,1345:16003481,16194854:0,452978,115847 +r1,1401:16361747,16194854:358266,568825,115847 +k1,1345:16003481,16194854:-358266 +) +(1,1345:16003481,16194854:358266,452978,115847 +k1,1345:16003481,16194854:3277 +h1,1345:16358470,16194854:0,411205,112570 +) +k1,1345:16624890,16194854:263143 +k1,1345:19459009,16194854:263142 +k1,1345:20669802,16194854:263142 +k1,1345:22384567,16194854:263143 +k1,1345:25364832,16194854:263142 +k1,1345:26287267,16194854:263143 +k1,1345:27569494,16194854:263142 +k1,1345:29534607,16194854:263143 +k1,1345:31386342,16194854:263142 +k1,1345:32583029,16194854:0 +) +(1,1346:6630773,17036342:25952256,513147,134348 +k1,1345:8491584,17036342:180468 +k1,1345:9339208,17036342:180468 +(1,1345:9339208,17036342:0,452978,122846 +r1,1401:9697474,17036342:358266,575824,122846 +k1,1345:9339208,17036342:-358266 +) +(1,1345:9339208,17036342:358266,452978,122846 +k1,1345:9339208,17036342:3277 +h1,1345:9694197,17036342:0,411205,112570 +) +k1,1345:9877942,17036342:180468 +k1,1345:12629387,17036342:180468 +k1,1345:13757506,17036342:180468 +k1,1345:15389596,17036342:180468 +k1,1345:18287187,17036342:180468 +k1,1345:19126947,17036342:180468 +k1,1345:20326499,17036342:180467 +k1,1345:22173548,17036342:180468 +k1,1345:23942609,17036342:180468 +k1,1345:25314522,17036342:180468 +k1,1345:26514075,17036342:180468 +k1,1345:28361124,17036342:180468 +k1,1345:29956514,17036342:180468 +k1,1345:30668479,17036342:180468 +k1,1345:31966991,17036342:180468 +k1,1345:32583029,17036342:0 +) +(1,1346:6630773,17877830:25952256,513147,134348 +g1,1345:7919866,17877830 +g1,1345:9066746,17877830 +g1,1345:10717597,17877830 +g1,1345:13633949,17877830 +g1,1345:14492470,17877830 +g1,1345:15710784,17877830 +g1,1345:17611983,17877830 +g1,1345:19399805,17877830 +g1,1345:20795721,17877830 +g1,1345:22661531,17877830 +g1,1345:24275682,17877830 +g1,1345:26224722,17877830 +(1,1345:26224722,17877830:0,452978,122846 +r1,1401:26582988,17877830:358266,575824,122846 +k1,1345:26224722,17877830:-358266 +) +(1,1345:26224722,17877830:358266,452978,122846 +k1,1345:26224722,17877830:3277 +h1,1345:26579711,17877830:0,411205,112570 +) +g1,1345:26782217,17877830 +g1,1345:29552423,17877830 +k1,1346:32583029,17877830:714564 +g1,1346:32583029,17877830 +) +v1,1348:6630773,19243606:0,393216,0 +(1,1351:6630773,27842112:25952256,8991722,0 +g1,1351:6630773,27842112 +g1,1351:6303093,27842112 +r1,1401:6401397,27842112:98304,8991722,0 +g1,1351:6600626,27842112 +g1,1351:6797234,27842112 +[1,1351:6797234,27842112:25785795,8991722,0 +(1,1349:6797234,20134372:25785795,1283982,196608 +(1,1348:6797234,20134372:0,1283982,196608 +r1,1401:9362479,20134372:2565245,1480590,196608 +k1,1348:6797234,20134372:-2565245 +) +(1,1348:6797234,20134372:2565245,1283982,196608 +) +k1,1348:9539047,20134372:176568 +k1,1348:10321168,20134372:176568 +k1,1348:12703678,20134372:176568 +k1,1348:13899331,20134372:176568 +k1,1348:15572087,20134372:176569 +k1,1348:16364693,20134372:176568 +k1,1348:17560346,20134372:176568 +k1,1348:20398331,20134372:176568 +k1,1348:21190937,20134372:176568 +k1,1348:22386590,20134372:176568 +k1,1348:23711349,20134372:176568 +k1,1348:25858585,20134372:176568 +k1,1348:27890478,20134372:176569 +k1,1348:28791874,20134372:176568 +k1,1348:30252948,20134372:176568 +k1,1348:30887613,20134372:176568 +k1,1348:32583029,20134372:0 +) +(1,1349:6797234,20975860:25785795,513147,126483 +k1,1348:8079351,20975860:263032 +k1,1348:10353028,20975860:263032 +k1,1348:11991661,20975860:263032 +k1,1348:12870732,20975860:263033 +k1,1348:14152849,20975860:263032 +k1,1348:15722014,20975860:263032 +k1,1348:17639830,20975860:263032 +k1,1348:20616053,20975860:263032 +k1,1348:21546241,20975860:263032 +(1,1348:21546241,20975860:0,414482,115847 +r1,1401:21904507,20975860:358266,530329,115847 +k1,1348:21546241,20975860:-358266 +) +(1,1348:21546241,20975860:358266,414482,115847 +k1,1348:21546241,20975860:3277 +h1,1348:21901230,20975860:0,411205,112570 +) +k1,1348:22341209,20975860:263032 +k1,1348:23209795,20975860:263033 +k1,1348:25735130,20975860:263032 +k1,1348:27017247,20975860:263032 +k1,1348:28933752,20975860:263032 +k1,1348:31858201,20975860:263032 +k1,1348:32583029,20975860:0 +) +(1,1349:6797234,21817348:25785795,513147,126483 +k1,1348:8269440,21817348:187700 +k1,1348:8915236,21817348:187699 +k1,1348:10798352,21817348:187700 +k1,1348:12005137,21817348:187700 +k1,1348:14203482,21817348:187700 +k1,1348:15766782,21817348:187699 +k1,1348:16570520,21817348:187700 +k1,1348:17777305,21817348:187700 +k1,1348:19113195,21817348:187699 +k1,1348:20955679,21817348:187700 +k1,1348:22677577,21817348:187700 +k1,1348:23532433,21817348:187700 +(1,1348:23532433,21817348:0,414482,115847 +r1,1401:23890699,21817348:358266,530329,115847 +k1,1348:23532433,21817348:-358266 +) +(1,1348:23532433,21817348:358266,414482,115847 +k1,1348:23532433,21817348:3277 +h1,1348:23887422,21817348:0,411205,112570 +) +k1,1348:24252068,21817348:187699 +k1,1348:25045321,21817348:187700 +k1,1348:27495324,21817348:187700 +k1,1348:28702109,21817348:187700 +k1,1348:30385995,21817348:187699 +k1,1348:31298523,21817348:187700 +k1,1348:32583029,21817348:0 +) +(1,1349:6797234,22658836:25785795,505283,126483 +g1,1348:9729970,22658836 +g1,1348:11323150,22658836 +g1,1348:15197638,22658836 +g1,1348:17124396,22658836 +g1,1348:17975053,22658836 +g1,1348:19594447,22658836 +g1,1348:20686932,22658836 +g1,1348:23650470,22658836 +g1,1348:24611227,22658836 +(1,1348:24611227,22658836:0,452978,115847 +r1,1401:26728052,22658836:2116825,568825,115847 +k1,1348:24611227,22658836:-2116825 +) +(1,1348:24611227,22658836:2116825,452978,115847 +k1,1348:24611227,22658836:3277 +h1,1348:26724775,22658836:0,411205,112570 +) +g1,1348:26927281,22658836 +g1,1348:28317955,22658836 +(1,1348:28317955,22658836:0,452978,115847 +r1,1401:30434780,22658836:2116825,568825,115847 +k1,1348:28317955,22658836:-2116825 +) +(1,1348:28317955,22658836:2116825,452978,115847 +k1,1348:28317955,22658836:3277 +h1,1348:30431503,22658836:0,411205,112570 +) +k1,1349:32583029,22658836:1767485 +g1,1349:32583029,22658836 +) +(1,1351:6797234,23500324:25785795,513147,134348 +h1,1350:6797234,23500324:983040,0,0 +k1,1350:9170854,23500324:172921 +k1,1350:10362861,23500324:172922 +k1,1350:12031969,23500324:172921 +k1,1350:13375363,23500324:172921 +k1,1350:15356423,23500324:172922 +k1,1350:18307415,23500324:172921 +k1,1350:21067042,23500324:172921 +k1,1350:21926126,23500324:172922 +k1,1350:24938067,23500324:172921 +k1,1350:25576950,23500324:172922 +k1,1350:26768956,23500324:172921 +k1,1350:29427658,23500324:172921 +k1,1350:30259872,23500324:172922 +k1,1350:31966991,23500324:172921 +k1,1351:32583029,23500324:0 +) +(1,1351:6797234,24341812:25785795,513147,134348 +(1,1350:6797234,24341812:0,414482,115847 +r1,1401:7155500,24341812:358266,530329,115847 +k1,1350:6797234,24341812:-358266 +) +(1,1350:6797234,24341812:358266,414482,115847 +k1,1350:6797234,24341812:3277 +h1,1350:7152223,24341812:0,411205,112570 +) +k1,1350:7338095,24341812:182595 +k1,1350:10509133,24341812:182596 +k1,1350:12325541,24341812:182595 +k1,1350:12974097,24341812:182595 +k1,1350:14175777,24341812:182595 +k1,1350:16844154,24341812:182596 +k1,1350:17686041,24341812:182595 +k1,1350:20581827,24341812:182595 +k1,1350:21380461,24341812:182596 +(1,1350:21380461,24341812:0,414482,115847 +r1,1401:21738727,24341812:358266,530329,115847 +k1,1350:21380461,24341812:-358266 +) +(1,1350:21380461,24341812:358266,414482,115847 +k1,1350:21380461,24341812:3277 +h1,1350:21735450,24341812:0,411205,112570 +) +k1,1350:21921322,24341812:182595 +k1,1350:24939004,24341812:182595 +k1,1350:26313044,24341812:182595 +k1,1350:27514725,24341812:182596 +k1,1350:30409855,24341812:182595 +k1,1350:32583029,24341812:0 +) +(1,1351:6797234,25183300:25785795,513147,126483 +k1,1350:8233901,25183300:238013 +k1,1350:10770262,25183300:238013 +k1,1350:11659703,25183300:238013 +k1,1350:12645482,25183300:238013 +k1,1350:16112454,25183300:238013 +k1,1350:17298118,25183300:238013 +k1,1350:19895426,25183300:238012 +k1,1350:23404996,25183300:238013 +k1,1350:25276822,25183300:238013 +k1,1350:27471085,25183300:238013 +k1,1350:30083467,25183300:238013 +k1,1350:30795305,25183300:238013 +(1,1350:30795305,25183300:0,414482,115847 +r1,1401:31153571,25183300:358266,530329,115847 +k1,1350:30795305,25183300:-358266 +) +(1,1350:30795305,25183300:358266,414482,115847 +k1,1350:30795305,25183300:3277 +h1,1350:31150294,25183300:0,411205,112570 +) +k1,1350:31391584,25183300:238013 +k1,1350:32583029,25183300:0 +) +(1,1351:6797234,26024788:25785795,513147,126483 +k1,1350:8735177,26024788:169126 +k1,1350:10346751,26024788:169127 +k1,1350:12170661,26024788:169126 +k1,1350:15380003,26024788:169127 +k1,1350:16633095,26024788:169126 +k1,1350:17453649,26024788:169126 +k1,1350:19303119,26024788:169127 +k1,1350:20778378,26024788:169126 +k1,1350:22496121,26024788:169127 +k1,1350:23316675,26024788:169126 +k1,1350:25556739,26024788:169126 +k1,1350:27580535,26024788:169127 +k1,1350:28559031,26024788:169126 +k1,1350:29747243,26024788:169127 +k1,1350:31412556,26024788:169126 +k1,1350:32583029,26024788:0 +) +(1,1351:6797234,26866276:25785795,513147,126483 +k1,1350:8949336,26866276:170293 +k1,1350:10731158,26866276:170292 +k1,1350:12830831,26866276:170293 +k1,1350:15734631,26866276:170293 +k1,1350:16564215,26866276:170292 +k1,1350:19496851,26866276:170293 +k1,1350:21266222,26866276:170293 +k1,1350:22627960,26866276:170293 +k1,1350:23989697,26866276:170292 +k1,1350:25618821,26866276:170293 +k1,1350:27458971,26866276:170293 +k1,1350:29274217,26866276:170292 +k1,1350:30902686,26866276:170293 +k1,1350:32583029,26866276:0 +) +(1,1351:6797234,27707764:25785795,505283,134348 +g1,1350:8326844,27707764 +g1,1350:9177501,27707764 +g1,1350:12006034,27707764 +g1,1350:13224348,27707764 +g1,1350:15093434,27707764 +g1,1350:16017491,27707764 +g1,1350:17501226,27707764 +g1,1350:19693405,27707764 +g1,1350:22065808,27707764 +g1,1350:23256597,27707764 +g1,1350:24522097,27707764 +k1,1351:32583029,27707764:4846391 +g1,1351:32583029,27707764 +) +] +g1,1351:32583029,27842112 +) +h1,1351:6630773,27842112:0,0,0 +v1,1354:6630773,29207888:0,393216,0 +(1,1401:6630773,44957127:25952256,16142455,0 +g1,1401:6630773,44957127 +g1,1401:6303093,44957127 +r1,1401:6401397,44957127:98304,16142455,0 +g1,1401:6600626,44957127 +g1,1401:6797234,44957127 +[1,1401:6797234,44957127:25785795,16142455,0 +(1,1356:6797234,29976557:25785795,1161885,196608 +(1,1354:6797234,29976557:0,1161885,196608 +r1,1401:8344870,29976557:1547636,1358493,196608 +k1,1354:6797234,29976557:-1547636 +) +(1,1354:6797234,29976557:1547636,1161885,196608 +) +k1,1354:8549277,29976557:204407 +k1,1354:9231440,29976557:204406 +k1,1354:10454932,29976557:204407 +k1,1354:12128655,29976557:204406 +k1,1354:14818843,29976557:204407 +k1,1354:15682541,29976557:204406 +k1,1354:18934372,29976557:204407 +k1,1354:19670275,29976557:204406 +k1,1354:21445580,29976557:204407 +k1,1354:22841431,29976557:204406 +k1,1354:24064923,29976557:204407 +k1,1354:25765516,29976557:204406 +k1,1354:28803044,29976557:204407 +k1,1354:29620212,29976557:204406 +k1,1354:31276241,29976557:204407 +k1,1356:32583029,29976557:0 +) +(1,1356:6797234,30818045:25785795,513147,134348 +k1,1354:8606730,30818045:186169 +k1,1354:10241245,30818045:186169 +k1,1354:11808913,30818045:186169 +k1,1354:13014167,30818045:186169 +k1,1354:16126519,30818045:186169 +k1,1354:18278113,30818045:186169 +k1,1354:19225809,30818045:186168 +k1,1354:20431063,30818045:186169 +k1,1354:22032154,30818045:186169 +k1,1354:23714510,30818045:186169 +k1,1354:25004961,30818045:186169 +k1,1354:26906863,30818045:186169 +k1,1354:27448892,30818045:186169 +k1,1354:28610892,30818045:186169 +k1,1354:32583029,30818045:0 +) +(1,1356:6797234,31659533:25785795,513147,134348 +k1,1354:7633517,31659533:184855 +k1,1354:8837457,31659533:184855 +k1,1354:10491630,31659533:184856 +k1,1354:13199621,31659533:184855 +k1,1354:14809884,31659533:184855 +k1,1354:15654031,31659533:184855 +k1,1354:16194746,31659533:184855 +k1,1354:18384348,31659533:184856 +k1,1355:20352438,31659533:184855 +k1,1355:22856612,31659533:184855 +k1,1355:24435418,31659533:184855 +k1,1355:26737741,31659533:184855 +k1,1355:28841491,31659533:184856 +k1,1355:29712508,31659533:184855 +k1,1355:30916448,31659533:184855 +k1,1355:32583029,31659533:0 +) +(1,1356:6797234,32501021:25785795,513147,126483 +k1,1355:8408371,32501021:196215 +k1,1355:9136082,32501021:196214 +k1,1355:12165418,32501021:196215 +k1,1355:13963333,32501021:196215 +k1,1355:17638199,32501021:196215 +k1,1355:19037654,32501021:196214 +k1,1355:19765366,32501021:196215 +k1,1355:20980666,32501021:196215 +k1,1355:22511849,32501021:196215 +k1,1355:24370711,32501021:196214 +k1,1355:25218354,32501021:196215 +k1,1355:26801311,32501021:196215 +k1,1355:27945177,32501021:196215 +k1,1355:29709668,32501021:196214 +k1,1355:30565175,32501021:196215 +k1,1356:32583029,32501021:0 +) +(1,1356:6797234,33342509:25785795,513147,134348 +k1,1355:8026198,33342509:238715 +k1,1355:11340518,33342509:238715 +k1,1355:13178311,33342509:238715 +k1,1355:14044860,33342509:238714 +k1,1355:15486816,33342509:238715 +k1,1355:18560618,33342509:238715 +k1,1355:22991671,33342509:238715 +k1,1355:24334668,33342509:238715 +k1,1355:25321149,33342509:238715 +k1,1355:28337934,33342509:238714 +k1,1355:30377578,33342509:238715 +k1,1355:31563944,33342509:238715 +k1,1355:32583029,33342509:0 +) +(1,1356:6797234,34183997:25785795,513147,126483 +k1,1355:8652381,34183997:188566 +k1,1355:10429540,34183997:188566 +k1,1355:11304268,34183997:188566 +k1,1355:11907667,34183997:188556 +k1,1355:13197238,34183997:188566 +k1,1355:13741664,34183997:188566 +k1,1355:16625726,34183997:188566 +(1,1355:16625726,34183997:0,452978,115847 +r1,1401:18390839,34183997:1765113,568825,115847 +k1,1355:16625726,34183997:-1765113 +) +(1,1355:16625726,34183997:1765113,452978,115847 +k1,1355:16625726,34183997:3277 +h1,1355:18387562,34183997:0,411205,112570 +) +k1,1355:18579405,34183997:188566 +k1,1355:20653442,34183997:188566 +k1,1355:23182954,34183997:188566 +k1,1355:24390605,34183997:188566 +k1,1355:25944287,34183997:188567 +k1,1355:26792145,34183997:188566 +k1,1355:27336571,34183997:188566 +k1,1355:29503014,34183997:188566 +k1,1355:31896867,34183997:188566 +k1,1355:32583029,34183997:0 +) +(1,1356:6797234,35025485:25785795,513147,134348 +k1,1355:7772561,35025485:186929 +k1,1355:11205488,35025485:186929 +k1,1355:14490303,35025485:186928 +k1,1355:15696317,35025485:186929 +k1,1355:17549827,35025485:186929 +k1,1355:19151678,35025485:186929 +k1,1355:20100134,35025485:186928 +k1,1355:21057766,35025485:186929 +k1,1355:23797322,35025485:186929 +k1,1355:26679747,35025485:186929 +k1,1355:27970957,35025485:186928 +k1,1355:28905652,35025485:186929 +k1,1355:31931601,35025485:186929 +k1,1355:32583029,35025485:0 +) +(1,1356:6797234,35866973:25785795,513147,134348 +g1,1355:9625767,35866973 +g1,1355:13900680,35866973 +k1,1356:32583029,35866973:14628947 +g1,1356:32583029,35866973 +) +v1,1358:6797234,37057439:0,393216,0 +(1,1369:6797234,40743796:25785795,4079573,196608 +g1,1369:6797234,40743796 +g1,1369:6797234,40743796 +g1,1369:6600626,40743796 +(1,1369:6600626,40743796:0,4079573,196608 +r1,1401:32779637,40743796:26179011,4276181,196608 +k1,1369:6600625,40743796:-26179012 +) +(1,1369:6600626,40743796:26179011,4079573,196608 +[1,1369:6797234,40743796:25785795,3882965,0 +(1,1360:6797234,37271349:25785795,410518,101187 +(1,1359:6797234,37271349:0,0,0 +g1,1359:6797234,37271349 +g1,1359:6797234,37271349 +g1,1359:6469554,37271349 +(1,1359:6469554,37271349:0,0,0 +) +g1,1359:6797234,37271349 +) +g1,1360:9326400,37271349 +g1,1360:10274838,37271349 +g1,1360:15649316,37271349 +g1,1360:16281608,37271349 +k1,1360:16281608,37271349:23593 +h1,1360:18202075,37271349:0,0,0 +k1,1360:32583029,37271349:14380954 +g1,1360:32583029,37271349 +) +(1,1361:6797234,37937527:25785795,410518,76021 +h1,1361:6797234,37937527:0,0,0 +g1,1361:8061817,37937527 +g1,1361:9010254,37937527 +g1,1361:9958691,37937527 +g1,1361:13436295,37937527 +h1,1361:13752441,37937527:0,0,0 +k1,1361:32583029,37937527:18830588 +g1,1361:32583029,37937527 +) +(1,1362:6797234,38603705:25785795,404226,82312 +h1,1362:6797234,38603705:0,0,0 +g1,1362:7113380,38603705 +g1,1362:7429526,38603705 +g1,1362:10907129,38603705 +g1,1362:11855567,38603705 +g1,1362:14700879,38603705 +h1,1362:15333170,38603705:0,0,0 +k1,1362:32583030,38603705:17249860 +g1,1362:32583030,38603705 +) +(1,1363:6797234,39269883:25785795,404226,76021 +h1,1363:6797234,39269883:0,0,0 +h1,1363:7113380,39269883:0,0,0 +k1,1363:32583028,39269883:25469648 +g1,1363:32583028,39269883 +) +(1,1364:6797234,39936061:25785795,404226,101187 +h1,1364:6797234,39936061:0,0,0 +k1,1364:6797234,39936061:0 +h1,1364:11223273,39936061:0,0,0 +k1,1364:32583029,39936061:21359756 +g1,1364:32583029,39936061 +) +(1,1368:6797234,40667775:25785795,404226,76021 +(1,1366:6797234,40667775:0,0,0 +g1,1366:6797234,40667775 +g1,1366:6797234,40667775 +g1,1366:6469554,40667775 +(1,1366:6469554,40667775:0,0,0 +) +g1,1366:6797234,40667775 +) +g1,1368:7745671,40667775 +g1,1368:8061817,40667775 +g1,1368:9326400,40667775 +g1,1368:10590983,40667775 +g1,1368:11855566,40667775 +g1,1368:13120149,40667775 +g1,1368:14384732,40667775 +g1,1368:15649315,40667775 +g1,1368:16913898,40667775 +g1,1368:18178481,40667775 +g1,1368:19443064,40667775 +g1,1368:20707647,40667775 +h1,1368:21656084,40667775:0,0,0 +k1,1368:32583029,40667775:10926945 +g1,1368:32583029,40667775 +) +] +) +g1,1369:32583029,40743796 +g1,1369:6797234,40743796 +g1,1369:6797234,40743796 +g1,1369:32583029,40743796 +g1,1369:32583029,40743796 +) +h1,1369:6797234,40940404:0,0,0 +(1,1373:6797234,42306180:25785795,513147,115847 +h1,1372:6797234,42306180:983040,0,0 +(1,1372:7780274,42306180:0,452978,115847 +r1,1401:9897099,42306180:2116825,568825,115847 +k1,1372:7780274,42306180:-2116825 +) +(1,1372:7780274,42306180:2116825,452978,115847 +g1,1372:9542110,42306180 +h1,1372:9893822,42306180:0,411205,112570 +) +k1,1372:10065777,42306180:168678 +k1,1372:12385347,42306180:168678 +k1,1372:13757922,42306180:168679 +(1,1372:13757922,42306180:0,452978,115847 +r1,1401:14116188,42306180:358266,568825,115847 +k1,1372:13757922,42306180:-358266 +) +(1,1372:13757922,42306180:358266,452978,115847 +k1,1372:13757922,42306180:3277 +h1,1372:14112911,42306180:0,411205,112570 +) +k1,1372:14284866,42306180:168678 +k1,1372:15644989,42306180:168678 +k1,1372:16579783,42306180:168678 +k1,1372:19635323,42306180:168679 +k1,1372:23062451,42306180:168678 +k1,1372:23847167,42306180:168678 +k1,1372:24430658,42306180:168648 +k1,1372:25618421,42306180:168678 +k1,1372:26990996,42306180:168679 +k1,1372:28908830,42306180:168678 +k1,1372:31103226,42306180:168678 +k1,1373:32583029,42306180:0 +k1,1373:32583029,42306180:0 +) +(1,1376:6797234,43147668:25785795,513147,126483 +h1,1374:6797234,43147668:983040,0,0 +k1,1374:9553325,43147668:307666 +k1,1374:12192107,43147668:307666 +k1,1374:14244997,43147668:307666 +k1,1374:15656946,43147668:307667 +k1,1374:16712378,43147668:307666 +k1,1374:20390561,43147668:307666 +k1,1374:21164188,43147668:307666 +k1,1374:22340206,43147668:307666 +k1,1374:23740357,43147668:307666 +k1,1374:24818727,43147668:307667 +k1,1374:26918803,43147668:307666 +k1,1374:30095635,43147668:307666 +k1,1374:31896867,43147668:307666 +k1,1376:32583029,43147668:0 +) +(1,1376:6797234,43989156:25785795,513147,126483 +(1,1374:6797234,43989156:0,452978,115847 +r1,1401:9265771,43989156:2468537,568825,115847 +k1,1374:6797234,43989156:-2468537 +) +(1,1374:6797234,43989156:2468537,452978,115847 +k1,1374:6797234,43989156:3277 +h1,1374:9262494,43989156:0,411205,112570 +) +k1,1374:9594414,43989156:154973 +(1,1374:9594414,43989156:0,452978,115847 +r1,1401:12414663,43989156:2820249,568825,115847 +k1,1374:9594414,43989156:-2820249 +) +(1,1374:9594414,43989156:2820249,452978,115847 +k1,1374:9594414,43989156:3277 +h1,1374:12411386,43989156:0,411205,112570 +) +k1,1374:12569637,43989156:154974 +k1,1374:13407495,43989156:154973 +(1,1374:13407495,43989156:0,452978,115847 +r1,1401:16227744,43989156:2820249,568825,115847 +k1,1374:13407495,43989156:-2820249 +) +(1,1374:13407495,43989156:2820249,452978,115847 +k1,1374:13407495,43989156:3277 +h1,1374:16224467,43989156:0,411205,112570 +) +k1,1374:16556387,43989156:154973 +k1,1374:17327399,43989156:154974 +k1,1374:19145020,43989156:154973 +k1,1374:19959285,43989156:154973 +k1,1374:21133344,43989156:154974 +k1,1374:22990287,43989156:154973 +(1,1374:22990287,43989156:0,459977,115847 +r1,1401:24051976,43989156:1061689,575824,115847 +k1,1374:22990287,43989156:-1061689 +) +(1,1374:22990287,43989156:1061689,459977,115847 +k1,1374:22990287,43989156:3277 +h1,1374:24048699,43989156:0,411205,112570 +) +k1,1374:24206950,43989156:154974 +k1,1374:25950516,43989156:154973 +k1,1374:27155376,43989156:154973 +k1,1374:29589037,43989156:154974 +h1,1374:30559625,43989156:0,0,0 +k1,1374:30714598,43989156:154973 +k1,1374:32583029,43989156:0 +) +(1,1376:6797234,44830644:25785795,513147,126483 +g1,1375:7944114,44830644 +g1,1375:10260811,44830644 +g1,1375:11269410,44830644 +g1,1375:12487724,44830644 +g1,1375:13779438,44830644 +g1,1375:14637959,44830644 +g1,1375:15856273,44830644 +g1,1375:18817845,44830644 +g1,1375:20809484,44830644 +k1,1376:32583029,44830644:8574077 +g1,1376:32583029,44830644 +) +] +g1,1401:32583029,44957127 +) +] +(1,1401:32583029,45706769:0,0,0 +g1,1401:32583029,45706769 +) +) +] +(1,1401:6630773,47279633:25952256,0,0 +h1,1401:6630773,47279633:25952256,0,0 +) +] +(1,1401:4262630,4025873:0,0,0 +[1,1401:-473656,4025873:0,0,0 +(1,1401:-473656,-710413:0,0,0 +(1,1401:-473656,-710413:0,0,0 +g1,1401:-473656,-710413 +) +g1,1401:-473656,-710413 +) +] +) +] +!30168 +}30 +Input:456:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:457:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:458:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:459:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:460:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:461:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:462:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:463:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:464:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:465:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!921 +{31 +[1,1432:4262630,47279633:28320399,43253760,0 +(1,1432:4262630,4025873:0,0,0 +[1,1432:-473656,4025873:0,0,0 +(1,1432:-473656,-710413:0,0,0 +(1,1432:-473656,-644877:0,0,0 +k1,1432:-473656,-644877:-65536 +) +(1,1432:-473656,4736287:0,0,0 +k1,1432:-473656,4736287:5209943 ) -[2989,178:6630773,47279633:25952256,43253760,0 -[2989,178:6630773,4812305:25952256,786432,0 -(2989,178:6630773,4812305:25952256,505283,11795 -(2989,178:6630773,4812305:25952256,505283,11795 -g2989,178:3078558,4812305 -[2989,178:3078558,4812305:0,0,0 -(2989,178:3078558,2439708:0,1703936,0 -k2989,178:1358238,2439708:-1720320 -(2989,1:1358238,2439708:1720320,1703936,0 -(2989,1:1358238,2439708:1179648,16384,0 -r2989,178:2537886,2439708:1179648,16384,0 -) -g2989,1:3062174,2439708 -(2989,1:3062174,2439708:16384,1703936,0 -[2989,1:3062174,2439708:25952256,1703936,0 -(2989,1:3062174,1915420:25952256,1179648,0 -(2989,1:3062174,1915420:16384,1179648,0 -r2989,178:3078558,1915420:16384,1179648,0 -) -k2989,1:29014430,1915420:25935872 -g2989,1:29014430,1915420 +g1,1432:-473656,-710413 ) ] ) +[1,1432:6630773,47279633:25952256,43253760,0 +[1,1432:6630773,4812305:25952256,786432,0 +(1,1432:6630773,4812305:25952256,505283,134348 +(1,1432:6630773,4812305:25952256,505283,134348 +g1,1432:3078558,4812305 +[1,1432:3078558,4812305:0,0,0 +(1,1432:3078558,2439708:0,1703936,0 +k1,1432:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,1432:2537886,2439708:1179648,16384,0 ) +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,1432:3078558,1915420:16384,1179648,0 ) -] -[2989,178:3078558,4812305:0,0,0 -(2989,178:3078558,2439708:0,1703936,0 -g2989,178:29030814,2439708 -g2989,178:36135244,2439708 -(2989,1:36135244,2439708:1720320,1703936,0 -(2989,1:36135244,2439708:16384,1703936,0 -[2989,1:36135244,2439708:25952256,1703936,0 -(2989,1:36135244,1915420:25952256,1179648,0 -(2989,1:36135244,1915420:16384,1179648,0 -r2989,178:36151628,1915420:16384,1179648,0 -) -k2989,1:62087500,1915420:25935872 -g2989,1:62087500,1915420 +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) ] ) -g2989,1:36675916,2439708 -(2989,1:36675916,2439708:1179648,16384,0 -r2989,178:37855564,2439708:1179648,16384,0 -) ) -k2989,178:3078556,2439708:-34777008 ) ] -[2989,178:3078558,4812305:0,0,0 -(2989,178:3078558,49800853:0,16384,2228224 -k2989,178:1358238,49800853:-1720320 -(2989,1:1358238,49800853:1720320,16384,2228224 -(2989,1:1358238,49800853:1179648,16384,0 -r2989,178:2537886,49800853:1179648,16384,0 -) -g2989,1:3062174,49800853 -(2989,1:3062174,52029077:16384,1703936,0 -[2989,1:3062174,52029077:25952256,1703936,0 -(2989,1:3062174,51504789:25952256,1179648,0 -(2989,1:3062174,51504789:16384,1179648,0 -r2989,178:3078558,51504789:16384,1179648,0 -) -k2989,1:29014430,51504789:25935872 -g2989,1:29014430,51504789 +[1,1432:3078558,4812305:0,0,0 +(1,1432:3078558,2439708:0,1703936,0 +g1,1432:29030814,2439708 +g1,1432:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,1432:36151628,1915420:16384,1179648,0 +) +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) ] ) +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,1432:37855564,2439708:1179648,16384,0 ) ) -] -[2989,178:3078558,4812305:0,0,0 -(2989,178:3078558,49800853:0,16384,2228224 -g2989,178:29030814,49800853 -g2989,178:36135244,49800853 -(2989,1:36135244,49800853:1720320,16384,2228224 -(2989,1:36135244,52029077:16384,1703936,0 -[2989,1:36135244,52029077:25952256,1703936,0 -(2989,1:36135244,51504789:25952256,1179648,0 -(2989,1:36135244,51504789:16384,1179648,0 -r2989,178:36151628,51504789:16384,1179648,0 -) -k2989,1:62087500,51504789:25935872 -g2989,1:62087500,51504789 +k1,1432:3078556,2439708:-34777008 ) ] +[1,1432:3078558,4812305:0,0,0 +(1,1432:3078558,49800853:0,16384,2228224 +k1,1432:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,1432:2537886,49800853:1179648,16384,0 ) -g2989,1:36675916,49800853 -(2989,1:36675916,49800853:1179648,16384,0 -r2989,178:37855564,49800853:1179648,16384,0 +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,1432:3078558,51504789:16384,1179648,0 ) -) -k2989,178:3078556,49800853:-34777008 +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) ] -g2989,178:6630773,4812305 -k2989,178:28224886,4812305:20398736 -g2989,178:30907930,4812305 -) ) -] -[2989,178:6630773,45706769:25952256,40108032,0 -(2989,178:6630773,45706769:25952256,40108032,0 -(2989,178:6630773,45706769:0,0,0 -g2989,178:6630773,45706769 -) -[2989,178:6630773,45706769:25952256,40108032,0 -(2989,178:6630773,45706769:25952256,40108032,134348 -[2989,178:6630773,45706769:11829248,40108032,102891 -(2989,83:6630773,6254097:11829248,513147,134348 -h2989,82:6630773,6254097:0,0,0 -r2989,178:6630773,6254097:0,647495,134348 -g2989,82:7941493,6254097 -g2989,82:7941493,6254097 -g2989,82:10959425,6254097 -g2989,82:13166677,6254097 -k2989,83:16211808,6254097:2248213 -k2989,83:18460021,6254097:2248213 -) -(2989,84:6630773,7099387:11829248,505283,134348 -h2989,83:6630773,7099387:0,0,0 -r2989,178:6630773,7099387:0,639631,134348 -g2989,83:7941493,7099387 -g2989,83:7941493,7099387 -g2989,83:11278586,7099387 -k2989,84:15267763,7099387:3192259 -k2989,84:18460021,7099387:3192258 -) -(2989,85:6630773,7944677:11829248,505283,134348 -h2989,84:6630773,7944677:0,0,0 -r2989,178:6630773,7944677:0,639631,134348 -g2989,84:7941493,7944677 -g2989,84:7941493,7944677 -g2989,84:11194700,7944677 -g2989,84:13577589,7944677 -k2989,85:16417264,7944677:2042757 -k2989,85:18460021,7944677:2042757 -) -(2989,86:6630773,8789966:11829248,505283,134348 -h2989,85:6630773,8789966:0,0,0 -r2989,178:6630773,8789966:0,639631,134348 -g2989,85:7941493,8789966 -g2989,85:7941493,8789966 -g2989,85:10870297,8789966 -g2989,85:13956387,8789966 -k2989,86:16606663,8789966:1853358 -k2989,86:18460021,8789966:1853358 -) -(2989,87:6630773,9635256:11829248,505283,134348 -h2989,86:6630773,9635256:0,0,0 -r2989,178:6630773,9635256:0,639631,134348 -g2989,86:7941493,9635256 -g2989,86:7941493,9635256 -g2989,86:10870297,9635256 -g2989,86:12777394,9635256 -g2989,86:13947211,9635256 -k2989,87:16602075,9635256:1857946 -k2989,87:18460021,9635256:1857946 -) -(2989,88:6630773,10480546:11829248,505283,134348 -h2989,87:6630773,10480546:0,0,0 -r2989,178:6630773,10480546:0,639631,134348 -g2989,87:7941493,10480546 -g2989,87:7941493,10480546 -g2989,87:11641655,10480546 -k2989,88:15449297,10480546:3010724 -k2989,88:18460021,10480546:3010724 -) -(2989,89:6630773,11325836:11829248,505283,126483 -h2989,88:6630773,11325836:0,0,0 -g2989,88:8219365,11325836 -g2989,88:12674502,11325836 -g2989,88:13489769,11325836 -g2989,88:14708083,11325836 -k2989,88:18460021,11325836:667814 -) -(2989,89:9252213,12167324:9207808,485622,11795 -k2989,89:15215334,12167324:3244688 -k2989,89:18460021,12167324:3244687 -) -(2989,90:6630773,13012613:11829248,505283,102891 -h2989,89:6630773,13012613:0,0,0 -g2989,89:10580627,13012613 -g2989,89:12148903,13012613 -g2989,89:13717179,13012613 -k2989,90:16686289,13012613:1773733 -k2989,90:18460021,13012613:1773732 -) -(2989,91:6630773,13857903:11829248,505283,126483 -h2989,90:6630773,13857903:0,0,0 -g2989,90:9456029,13857903 -g2989,90:11024305,13857903 -g2989,90:12592581,13857903 -k2989,91:16123990,13857903:2336032 -k2989,91:18460021,13857903:2336031 -) -(2989,92:6630773,14703193:11829248,505283,134348 -h2989,91:6630773,14703193:0,0,0 -g2989,91:9397703,14703193 -g2989,91:12060430,14703193 -g2989,91:13226970,14703193 -k2989,91:18460021,14703193:2235434 -) -(2989,92:9252213,15544681:9207808,505283,134348 -k2989,92:15001031,15544681:3458990 -k2989,92:18460021,15544681:3458990 -) -(2989,93:6630773,16389971:11829248,505283,7863 -h2989,92:6630773,16389971:0,0,0 -k2989,93:13714232,16389971:4745790 -k2989,93:18460021,16389971:4745789 -) -(2989,94:6630773,17235260:11829248,505283,134348 -h2989,93:6630773,17235260:0,0,0 -r2989,178:6630773,17235260:0,639631,134348 -g2989,93:7941493,17235260 -g2989,93:7941493,17235260 -g2989,93:10473148,17235260 -g2989,93:11639688,17235260 -g2989,93:14227704,17235260 -k2989,93:18460021,17235260:2073561 -) -(2989,94:9252213,18076748:9207808,505283,7863 -k2989,94:15024952,18076748:3435070 -k2989,94:18460021,18076748:3435069 -) -(2989,95:6630773,18922038:11829248,505283,102891 -h2989,94:6630773,18922038:0,0,0 -g2989,94:10108112,18922038 -k2989,95:14881755,18922038:3578266 -k2989,95:18460021,18922038:3578266 -) -(2989,96:6630773,19767328:11829248,505283,102891 -h2989,95:6630773,19767328:0,0,0 -g2989,95:11115401,19767328 -k2989,96:16146928,19767328:2313094 -k2989,96:18460021,19767328:2313093 -) -(2989,97:6630773,20612618:11829248,513147,126483 -h2989,96:6630773,20612618:0,0,0 -r2989,178:6630773,20612618:0,639630,126483 -g2989,96:7941493,20612618 -g2989,96:7941493,20612618 -g2989,96:10473148,20612618 -g2989,96:12239998,20612618 -g2989,96:16223931,20612618 -k2989,97:17939665,20612618:520357 -k2989,97:18460021,20612618:520356 -) -(2989,98:6630773,21457907:11829248,513147,126483 -h2989,97:6630773,21457907:0,0,0 -r2989,178:6630773,21457907:0,639630,126483 -g2989,97:7941493,21457907 -g2989,97:7941493,21457907 -g2989,97:12144316,21457907 -g2989,97:13911166,21457907 -g2989,97:17214835,21457907 -k2989,98:18435117,21457907:24905 -k2989,98:18460021,21457907:24904 -) -(2989,99:6630773,22303197:11829248,505283,126483 -h2989,98:6630773,22303197:0,0,0 -r2989,178:6630773,22303197:0,631766,126483 -g2989,98:7941493,22303197 -g2989,98:7941493,22303197 -g2989,98:13176508,22303197 -g2989,98:15465680,22303197 -k2989,99:17560539,22303197:899482 -k2989,99:18460021,22303197:899482 -) -(2989,100:6630773,23148487:11829248,513147,126483 -h2989,99:6630773,23148487:0,0,0 -r2989,178:6630773,23148487:0,639630,126483 -g2989,99:7941493,23148487 -g2989,99:7941493,23148487 -g2989,99:11071492,23148487 -g2989,99:12838342,23148487 -g2989,99:17214836,23148487 -k2989,100:18435117,23148487:24904 -k2989,100:18460021,23148487:24904 -) -(2989,101:6630773,23993777:11829248,505283,126483 -h2989,100:6630773,23993777:0,0,0 -g2989,100:9505182,23993777 -g2989,100:12624695,23993777 -k2989,101:16140047,23993777:2319975 -k2989,101:18460021,23993777:2319974 -) -(2989,103:6630773,24839066:11829248,505283,126483 -h2989,101:6630773,24839066:0,0,0 -g2989,101:9043152,24839066 -g2989,101:10611428,24839066 -g2989,101:12179704,24839066 -g2989,101:13747980,24839066 -g2989,101:15316256,24839066 -g2989,101:16884532,24839066 -k2989,101:18460021,24839066:206442 -) -(2989,103:9252213,25680554:9207808,485622,102891 -g2989,101:10820489,25680554 -g2989,101:12388765,25680554 -g2989,101:13957041,25680554 -g2989,102:15525317,25680554 -k2989,103:17590358,25680554:869664 -k2989,103:18460021,25680554:869663 -) -(2989,104:6630773,26525844:11829248,505283,126483 -h2989,103:6630773,26525844:0,0,0 -g2989,103:9288257,26525844 -k2989,104:14471828,26525844:3988194 -k2989,104:18460021,26525844:3988193 -) -(2989,108:6630773,28089856:11829248,505283,126483 -h2989,107:6630773,28089856:0,0,0 -g2989,107:9184710,28089856 -k2989,108:14220825,28089856:4239197 -k2989,108:18460021,28089856:4239196 -) -(2989,109:6630773,28935145:11829248,513147,126483 -h2989,108:6630773,28935145:0,0,0 -g2989,108:8739066,28935145 -g2989,108:9885946,28935145 -g2989,108:10530164,28935145 -g2989,108:13064441,28935145 -k2989,109:16160690,28935145:2299331 -k2989,109:18460021,28935145:2299331 -) -(2989,110:6630773,29780435:11829248,485622,102891 -h2989,109:6630773,29780435:0,0,0 -g2989,109:9001865,29780435 -g2989,109:9773223,29780435 -g2989,109:10943040,29780435 -k2989,110:15299219,29780435:3160802 -k2989,110:18460021,29780435:3160802 -) -(2989,111:6630773,30625725:11829248,505283,102891 -h2989,110:6630773,30625725:0,0,0 -g2989,110:7931662,30625725 -$2989,110:8138756,30625725 -$2989,110:8500515,30625725 -g2989,110:9080508,30625725 -g2989,110:10247048,30625725 -g2989,110:13133908,30625725 -k2989,110:18460021,30625725:2049968 -) -(2989,111:9252213,31467213:9207808,473825,126483 -k2989,111:15322158,31467213:3137864 -k2989,111:18460021,31467213:3137863 -) -(2989,112:6630773,32312503:11829248,505283,102891 -h2989,111:6630773,32312503:0,0,0 -g2989,111:8650592,32312503 -k2989,112:14152995,32312503:4307026 -k2989,112:18460021,32312503:4307026 -) -(2989,113:6630773,33157792:11829248,505283,134348 -h2989,112:6630773,33157792:0,0,0 -g2989,112:9893155,33157792 -k2989,113:14871270,33157792:3588752 -k2989,113:18460021,33157792:3588751 -) -(2989,114:6630773,34003082:11829248,513147,102891 -h2989,113:6630773,34003082:0,0,0 -r2989,178:6630773,34003082:0,616038,102891 -g2989,113:7941493,34003082 -g2989,113:7941493,34003082 -g2989,113:9366901,34003082 -g2989,113:11053142,34003082 -g2989,113:14144475,34003082 -k2989,114:17661465,34003082:798557 -k2989,114:18460021,34003082:798556 -) -(2989,115:6630773,34848372:11829248,485622,102891 -h2989,114:6630773,34848372:0,0,0 -g2989,114:10232631,34848372 -g2989,114:11083288,34848372 -g2989,114:11901177,34848372 -k2989,115:15778288,34848372:2681734 -k2989,115:18460021,34848372:2681733 -) -(2989,116:6630773,35693662:11829248,513147,102891 -h2989,115:6630773,35693662:0,0,0 -g2989,115:10353872,35693662 -k2989,116:15004635,35693662:3455386 -k2989,116:18460021,35693662:3455386 -) -(2989,120:6630773,37257673:11829248,513147,134348 -h2989,119:6630773,37257673:0,0,0 -g2989,119:8718750,37257673 -g2989,119:12277354,37257673 -g2989,119:13443894,37257673 -g2989,119:16545713,37257673 -k2989,119:18460021,37257673:1255016 -) -(2989,120:9252213,38099161:9207808,513147,134348 -g2989,119:12344201,38099161 -k2989,120:16346485,38099161:2113536 -k2989,120:18460021,38099161:2113536 -) -(2989,121:6630773,38944451:11829248,513147,102891 -h2989,120:6630773,38944451:0,0,0 -g2989,120:9227964,38944451 -k2989,121:14804751,38944451:3655271 -k2989,121:18460021,38944451:3655270 -) -(2989,122:6630773,39789741:11829248,505283,134348 -h2989,121:6630773,39789741:0,0,0 -r2989,178:6630773,39789741:0,639631,134348 -g2989,121:7941493,39789741 -g2989,121:7941493,39789741 -g2989,121:10565554,39789741 -g2989,121:12949098,39789741 -k2989,122:16103019,39789741:2357003 -k2989,122:18460021,39789741:2357002 -) -(2989,123:6630773,40635031:11829248,485622,102891 -h2989,122:6630773,40635031:0,0,0 -r2989,178:6630773,40635031:0,588513,102891 -g2989,122:7941493,40635031 -g2989,122:7941493,40635031 -g2989,122:10533441,40635031 -g2989,122:11384098,40635031 -g2989,122:14377127,40635031 -k2989,123:16817033,40635031:1642988 -k2989,123:18460021,40635031:1642988 -) -(2989,124:6630773,41480320:11829248,505283,126483 -h2989,123:6630773,41480320:0,0,0 -r2989,178:6630773,41480320:0,631766,126483 -g2989,123:7941493,41480320 -g2989,123:7941493,41480320 -g2989,123:9665089,41480320 -g2989,123:12207230,41480320 -g2989,123:14372539,41480320 -k2989,124:16814739,41480320:1645282 -k2989,124:18460021,41480320:1645282 -) -(2989,125:6630773,42325610:11829248,505283,102891 -h2989,124:6630773,42325610:0,0,0 -r2989,178:6630773,42325610:0,608174,102891 -g2989,124:7941493,42325610 -g2989,124:7941493,42325610 -g2989,124:10158576,42325610 -k2989,125:14707758,42325610:3752264 -k2989,125:18460021,42325610:3752263 -) -(2989,126:6630773,43170900:11829248,505283,102891 -h2989,125:6630773,43170900:0,0,0 -r2989,178:6630773,43170900:0,608174,102891 -g2989,125:7941493,43170900 -g2989,125:7941493,43170900 -g2989,125:10106802,43170900 -k2989,126:14681871,43170900:3778151 -k2989,126:18460021,43170900:3778150 -) -(2989,127:6630773,44016190:11829248,505283,134348 -h2989,126:6630773,44016190:0,0,0 -r2989,178:6630773,44016190:0,639631,134348 -g2989,126:7941493,44016190 -g2989,126:7941493,44016190 -g2989,126:10117943,44016190 -g2989,126:12283252,44016190 -k2989,127:15770096,44016190:2689926 -k2989,127:18460021,44016190:2689925 -) -(2989,128:6630773,44861479:11829248,505283,102891 -h2989,127:6630773,44861479:0,0,0 -r2989,178:6630773,44861479:0,608174,102891 -g2989,127:7941493,44861479 -g2989,127:7941493,44861479 -g2989,127:10821800,44861479 -k2989,128:15039370,44861479:3420652 -k2989,128:18460021,44861479:3420651 -) -(2989,129:6630773,45706769:11829248,505283,102891 -h2989,128:6630773,45706769:0,0,0 -r2989,178:6630773,45706769:0,608174,102891 -g2989,128:7941493,45706769 -g2989,128:7941493,45706769 -g2989,128:10514436,45706769 -g2989,128:12679745,45706769 -k2989,129:15968342,45706769:2491679 -k2989,129:18460021,45706769:2491679 ) -] -k2989,178:19606901,45706769:1146880 -r2989,178:19606901,45706769:0,40242380,134348 -k2989,178:20753781,45706769:1146880 -[2989,178:20753781,45706769:11829248,40108032,134348 -(2989,130:20753781,6254097:11829248,505283,102891 -h2989,129:20753781,6254097:0,0,0 -r2989,178:20753781,6254097:0,608174,102891 -g2989,129:22064501,6254097 -g2989,129:22064501,6254097 -g2989,129:24638755,6254097 -g2989,129:26804064,6254097 -k2989,130:30092006,6254097:2491024 -k2989,130:32583029,6254097:2491023 -) -(2989,131:20753781,7097126:11829248,505283,102891 -h2989,130:20753781,7097126:0,0,0 -r2989,178:20753781,7097126:0,608174,102891 -g2989,130:22064501,7097126 -g2989,130:22064501,7097126 -g2989,130:24638755,7097126 -g2989,130:27022299,7097126 -k2989,131:30201123,7097126:2381906 -k2989,131:32583029,7097126:2381906 -) -(2989,132:20753781,7940155:11829248,513147,7863 -h2989,131:20753781,7940155:0,0,0 -g2989,131:21936050,7940155 -k2989,132:28293698,7940155:4289332 -k2989,132:32583029,7940155:4289331 -) -(2989,133:20753781,8783184:11829248,505283,126483 -h2989,132:20753781,8783184:0,0,0 -r2989,178:20753781,8783184:0,631766,126483 -g2989,132:22064501,8783184 -g2989,132:22064501,8783184 -g2989,132:25106682,8783184 -k2989,133:29442544,8783184:3140485 -k2989,133:32583029,8783184:3140485 -) -(2989,134:20753781,9626213:11829248,505283,126483 -h2989,133:20753781,9626213:0,0,0 -r2989,178:20753781,9626213:0,631766,126483 -g2989,133:22064501,9626213 -g2989,133:22064501,9626213 -g2989,133:24094806,9626213 -g2989,133:27810042,9626213 -k2989,134:30794224,9626213:1788805 -k2989,134:32583029,9626213:1788805 -) -(2989,135:20753781,10469242:11829248,513147,126483 -h2989,134:20753781,10469242:0,0,0 -g2989,134:21936050,10469242 -g2989,134:25713545,10469242 -k2989,135:30507504,10469242:2075526 -k2989,135:32583029,10469242:2075525 -) -(2989,136:20753781,11312271:11829248,513147,126483 -h2989,135:20753781,11312271:0,0,0 -g2989,135:21936050,11312271 -k2989,136:28148863,11312271:4434166 -k2989,136:32583029,11312271:4434166 -) -(2989,137:20753781,12155300:11829248,485622,134348 -h2989,136:20753781,12155300:0,0,0 -r2989,178:20753781,12155300:0,619970,134348 -g2989,136:22064501,12155300 -g2989,136:22064501,12155300 -g2989,136:24822911,12155300 -k2989,137:29300659,12155300:3282371 -k2989,137:32583029,12155300:3282370 -) -(2989,138:20753781,12998329:11829248,505283,126483 -h2989,137:20753781,12998329:0,0,0 -r2989,178:20753781,12998329:0,631766,126483 -g2989,137:22064501,12998329 -g2989,137:22064501,12998329 -g2989,137:24094806,12998329 -g2989,137:27810042,12998329 -k2989,138:30794224,12998329:1788805 -k2989,138:32583029,12998329:1788805 -) -(2989,139:20753781,13841358:11829248,513147,134348 -h2989,138:20753781,13841358:0,0,0 -g2989,138:23385051,13841358 -g2989,138:25272487,13841358 -k2989,139:30335799,13841358:2247230 -k2989,139:32583029,13841358:2247230 -) -(2989,140:20753781,14684387:11829248,505283,102891 -h2989,139:20753781,14684387:0,0,0 -r2989,178:20753781,14684387:0,608174,102891 -g2989,139:22064501,14684387 -g2989,139:22064501,14684387 -g2989,139:25713545,14684387 -k2989,140:30109045,14684387:2473984 -k2989,140:32583029,14684387:2473984 -) -(2989,141:20753781,15527416:11829248,513147,134348 -h2989,140:20753781,15527416:0,0,0 -g2989,140:22898774,15527416 -g2989,140:24065314,15527416 -g2989,140:26696584,15527416 -g2989,140:28584020,15527416 -k2989,141:31991566,15527416:591464 -k2989,141:32583029,15527416:591463 -) -(2989,142:20753781,16370445:11829248,513147,126483 -h2989,141:20753781,16370445:0,0,0 -g2989,141:23377842,16370445 -g2989,141:24544382,16370445 -g2989,141:25726651,16370445 -k2989,142:30044164,16370445:2538866 -k2989,142:32583029,16370445:2538865 -) -(2989,143:20753781,17213474:11829248,513147,126483 -h2989,142:20753781,17213474:0,0,0 -g2989,142:21900661,17213474 -g2989,142:23688483,17213474 -k2989,143:28733445,17213474:3849585 -k2989,143:32583029,17213474:3849584 -) -(2989,144:20753781,18056503:11829248,513147,134348 -h2989,143:20753781,18056503:0,0,0 -g2989,143:23820865,18056503 -g2989,143:24990682,18056503 -g2989,143:26558958,18056503 -g2989,143:28127234,18056503 -g2989,143:29695510,18056503 -k2989,144:31736958,18056503:846071 -k2989,144:32583029,18056503:846071 -) -(2989,145:20753781,18899532:11829248,513147,134348 -h2989,144:20753781,18899532:0,0,0 -g2989,144:24158376,18899532 -g2989,144:27332284,18899532 -g2989,144:29727624,18899532 -k2989,144:32583029,18899532:1287784 -) -(2989,145:23375221,19741020:9207808,505283,102891 -g2989,144:26564202,19741020 -k2989,145:29972075,19741020:2610955 -k2989,145:32583029,19741020:2610954 -) -(2989,146:20753781,20584049:11829248,485622,102891 -h2989,145:20753781,20584049:0,0,0 -g2989,145:24167551,20584049 -g2989,145:25735827,20584049 -g2989,145:27304103,20584049 -k2989,146:30541255,20584049:2041775 -k2989,146:32583029,20584049:2041774 -) -(2989,147:20753781,21427078:11829248,513147,134348 -h2989,146:20753781,21427078:0,0,0 -g2989,146:23648506,21427078 -g2989,146:27250364,21427078 -g2989,146:28065631,21427078 -g2989,146:29283945,21427078 -k2989,146:32583029,21427078:214960 -) -(2989,147:23375221,22268566:9207808,485622,11795 -k2989,147:28576814,22268566:4006216 -k2989,147:32583029,22268566:4006215 -) -(2989,148:20753781,23111595:11829248,513147,7863 -h2989,147:20753781,23111595:0,0,0 -k2989,148:28181304,23111595:4401726 -k2989,148:32583029,23111595:4401725 -) -(2989,149:20753781,23954624:11829248,485622,134348 -h2989,148:20753781,23954624:0,0,0 -r2989,178:20753781,23954624:0,619970,134348 -g2989,148:22064501,23954624 -g2989,148:22064501,23954624 -g2989,148:25840030,23954624 -k2989,149:29809218,23954624:2773811 -k2989,149:32583029,23954624:2773811 -) -(2989,150:20753781,24797653:11829248,505283,102891 -h2989,149:20753781,24797653:0,0,0 -r2989,178:20753781,24797653:0,608174,102891 -g2989,149:22064501,24797653 -g2989,149:22064501,24797653 -g2989,149:23697658,24797653 -g2989,149:24515547,24797653 -k2989,150:29146977,24797653:3436053 -k2989,150:32583029,24797653:3436052 -) -(2989,151:20753781,25640682:11829248,513147,134348 -h2989,150:20753781,25640682:0,0,0 -r2989,178:20753781,25640682:0,647495,134348 -g2989,150:22064501,25640682 -g2989,150:22064501,25640682 -g2989,150:24867475,25640682 -g2989,150:26523569,25640682 -g2989,150:28091845,25640682 -k2989,151:30935126,25640682:1647904 -k2989,151:32583029,25640682:1647903 -) -(2989,152:20753781,26483711:11829248,513147,134348 -h2989,151:20753781,26483711:0,0,0 -g2989,151:23228420,26483711 -k2989,152:29107000,26483711:3476030 -k2989,152:32583029,26483711:3476029 -) -(2989,153:20753781,27326740:11829248,505283,134348 -h2989,152:20753781,27326740:0,0,0 -r2989,178:20753781,27326740:0,639631,134348 -g2989,152:22064501,27326740 -g2989,152:22064501,27326740 -g2989,152:24565354,27326740 -g2989,152:25209572,27326740 -g2989,152:27078658,27326740 -k2989,153:30428532,27326740:2154497 -k2989,153:32583029,27326740:2154497 -) -(2989,154:20753781,28169769:11829248,513147,134348 -h2989,153:20753781,28169769:0,0,0 -r2989,178:20753781,28169769:0,647495,134348 -g2989,153:22064501,28169769 -g2989,153:22064501,28169769 -g2989,153:25166320,28169769 -g2989,153:26024841,28169769 -g2989,153:29116829,28169769 -k2989,154:31447618,28169769:1135412 -k2989,154:32583029,28169769:1135411 -) -(2989,155:20753781,29012798:11829248,505283,126483 -h2989,154:20753781,29012798:0,0,0 -r2989,178:20753781,29012798:0,631766,126483 -g2989,154:22064501,29012798 -g2989,154:22064501,29012798 -g2989,154:26777850,29012798 -g2989,154:27659964,29012798 -g2989,154:28477853,29012798 -k2989,155:31128130,29012798:1454900 -k2989,155:32583029,29012798:1454899 -) -(2989,156:20753781,29855827:11829248,513147,134348 -h2989,155:20753781,29855827:0,0,0 -r2989,178:20753781,29855827:0,647495,134348 -g2989,155:22064501,29855827 -g2989,155:22064501,29855827 -g2989,155:23546925,29855827 -g2989,155:26979045,29855827 -g2989,155:27837566,29855827 -g2989,155:29599829,29855827 -k2989,156:31689118,29855827:893912 -k2989,156:32583029,29855827:893911 -) -(2989,157:20753781,30698856:11829248,505283,134348 -h2989,156:20753781,30698856:0,0,0 -r2989,178:20753781,30698856:0,639631,134348 -g2989,156:22064501,30698856 -g2989,156:22064501,30698856 -g2989,156:24223256,30698856 -g2989,156:27093732,30698856 -g2989,156:31645207,30698856 -k2989,156:32583029,30698856:321784 -) -(2989,157:23375221,31540344:9207808,485622,102891 -g2989,156:24193110,31540344 -k2989,157:28985758,31540344:3597271 -k2989,157:32583029,31540344:3597271 -) -(2989,158:20753781,32383373:11829248,505283,134348 -h2989,157:20753781,32383373:0,0,0 -r2989,178:20753781,32383373:0,639631,134348 -g2989,157:22064501,32383373 -g2989,157:22064501,32383373 -g2989,157:24843882,32383373 -g2989,157:29348826,32383373 -k2989,158:31563616,32383373:1019413 -k2989,158:32583029,32383373:1019413 -) -(2989,159:20753781,33226402:11829248,505283,134348 -h2989,158:20753781,33226402:0,0,0 -r2989,178:20753781,33226402:0,639631,134348 -g2989,158:22064501,33226402 -g2989,158:22064501,33226402 -g2989,158:24961847,33226402 -k2989,159:29370127,33226402:3212903 -k2989,159:32583029,33226402:3212902 -) -(2989,160:20753781,34069431:11829248,505283,126483 -h2989,159:20753781,34069431:0,0,0 -r2989,178:20753781,34069431:0,631766,126483 -g2989,159:22064501,34069431 -g2989,159:22064501,34069431 -g2989,159:23766471,34069431 -g2989,159:26127077,34069431 -g2989,159:26942344,34069431 -g2989,159:28593851,34069431 -g2989,159:29984525,34069431 -k2989,159:32583029,34069431:663881 -) -(2989,160:23375221,34910919:9207808,485622,11795 -k2989,160:28377584,34910919:4205445 -k2989,160:32583029,34910919:4205445 -) -(2989,161:20753781,35753948:11829248,485622,102891 -h2989,160:20753781,35753948:0,0,0 -r2989,178:20753781,35753948:0,588513,102891 -g2989,160:22064501,35753948 -g2989,160:22064501,35753948 -g2989,160:25117168,35753948 -g2989,160:25932435,35753948 -g2989,160:26750324,35753948 -k2989,161:30264365,35753948:2318664 -k2989,161:32583029,35753948:2318664 -) -(2989,162:20753781,36596977:11829248,505283,134348 -h2989,161:20753781,36596977:0,0,0 -r2989,178:20753781,36596977:0,639631,134348 -g2989,161:22064501,36596977 -g2989,161:22064501,36596977 -g2989,161:23282815,36596977 -g2989,161:23927033,36596977 -g2989,161:27142229,36596977 -k2989,162:30460318,36596977:2122712 -k2989,162:32583029,36596977:2122711 -) -(2989,163:20753781,37440006:11829248,505283,134348 -h2989,162:20753781,37440006:0,0,0 -r2989,178:20753781,37440006:0,639631,134348 -g2989,162:22064501,37440006 -g2989,162:22064501,37440006 -g2989,162:23999123,37440006 -g2989,162:25217437,37440006 -g2989,162:25861655,37440006 -g2989,162:29076851,37440006 -k2989,163:31228399,37440006:1354630 -k2989,163:32583029,37440006:1354630 -) -(2989,167:20753781,38964078:11829248,505283,134348 -h2989,166:20753781,38964078:0,0,0 -g2989,166:24645308,38964078 -g2989,166:26657263,38964078 -g2989,166:29348171,38964078 -k2989,167:32324817,38964078:258213 -k2989,167:32583029,38964078:258212 -) -(2989,168:20753781,39807107:11829248,505283,134348 -h2989,167:20753781,39807107:0,0,0 -g2989,167:23259877,39807107 -k2989,168:29148615,39807107:3434415 -k2989,168:32583029,39807107:3434414 -) -(2989,169:20753781,40650136:11829248,505283,126483 -h2989,168:20753781,40650136:0,0,0 -r2989,178:20753781,40650136:0,631766,126483 -g2989,168:22064501,40650136 -g2989,168:22064501,40650136 -g2989,168:23017394,40650136 -g2989,168:24771792,40650136 -g2989,168:27390610,40650136 -k2989,169:30584508,40650136:1998521 -k2989,169:32583029,40650136:1998521 -) -(2989,171:20753781,41493165:11829248,505283,134348 -h2989,169:20753781,41493165:0,0,0 -g2989,169:24460497,41493165 -g2989,169:28019101,41493165 -k2989,170:28019101,41493165:0 -g2989,170:29185641,41493165 -k2989,170:32583029,41493165:494798 -) -(2989,171:23375221,42334653:9207808,513147,134348 -g2989,170:24233742,42334653 -g2989,170:27325730,42334653 -k2989,171:31708123,42334653:874906 -k2989,171:32583029,42334653:874906 -) -(2989,172:20753781,43177682:11829248,505283,134348 -h2989,171:20753781,43177682:0,0,0 -g2989,171:25580507,43177682 -k2989,172:29679457,43177682:2903573 -k2989,172:32583029,43177682:2903572 -) -(2989,173:20753781,44020711:11829248,513147,134348 -h2989,172:20753781,44020711:0,0,0 -g2989,172:23968976,44020711 -k2989,173:28873691,44020711:3709338 -k2989,173:32583029,44020711:3709338 -) -(2989,174:20753781,44863740:11829248,505283,134348 -h2989,173:20753781,44863740:0,0,0 -g2989,173:24735748,44863740 -k2989,174:29257077,44863740:3325952 -k2989,174:32583029,44863740:3325952 -) -(2989,178:20753781,45706769:11829248,505283,134348 -h2989,174:20753781,45706769:0,0,0 -g2989,174:24022061,45706769 -g2989,174:25191878,45706769 -g2989,174:28283211,45706769 -g2989,174:29851487,45706769 -k2989,174:32583029,45706769:1362495 ) ] -(2989,178:32583029,45706769:0,355205,126483 -h2989,178:32583029,45706769:420741,355205,126483 -k2989,178:32583029,45706769:-420741 +[1,1432:3078558,4812305:0,0,0 +(1,1432:3078558,49800853:0,16384,2228224 +g1,1432:29030814,49800853 +g1,1432:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,1432:36151628,51504789:16384,1179648,0 +) +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 +) +] ) +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,1432:37855564,49800853:1179648,16384,0 ) -] -(2989,178:32583029,45706769:0,0,0 -g2989,178:32583029,45706769 ) +k1,1432:3078556,49800853:-34777008 ) ] -(2989,178:6630773,47279633:25952256,0,0 -h2989,178:6630773,47279633:25952256,0,0 +g1,1432:6630773,4812305 +k1,1432:18771974,4812305:11344283 +g1,1432:20158715,4812305 +g1,1432:20807521,4812305 +g1,1432:24121676,4812305 +g1,1432:28605649,4812305 +g1,1432:30015328,4812305 +) +) +] +[1,1432:6630773,45706769:25952256,40108032,0 +(1,1432:6630773,45706769:25952256,40108032,0 +(1,1432:6630773,45706769:0,0,0 +g1,1432:6630773,45706769 +) +[1,1432:6630773,45706769:25952256,40108032,0 +v1,1401:6630773,6254097:0,393216,0 +(1,1401:6630773,15790679:25952256,9929798,0 +g1,1401:6630773,15790679 +g1,1401:6303093,15790679 +r1,1432:6401397,15790679:98304,9929798,0 +g1,1401:6600626,15790679 +g1,1401:6797234,15790679 +[1,1401:6797234,15790679:25785795,9929798,0 +v1,1378:6797234,6254097:0,393216,0 +(1,1386:6797234,7935628:25785795,2074747,196608 +g1,1386:6797234,7935628 +g1,1386:6797234,7935628 +g1,1386:6600626,7935628 +(1,1386:6600626,7935628:0,2074747,196608 +r1,1432:32779637,7935628:26179011,2271355,196608 +k1,1386:6600625,7935628:-26179012 +) +(1,1386:6600626,7935628:26179011,2074747,196608 +[1,1386:6797234,7935628:25785795,1878139,0 +(1,1380:6797234,6461715:25785795,404226,101187 +(1,1379:6797234,6461715:0,0,0 +g1,1379:6797234,6461715 +g1,1379:6797234,6461715 +g1,1379:6469554,6461715 +(1,1379:6469554,6461715:0,0,0 +) +g1,1379:6797234,6461715 +) +g1,1380:9326400,6461715 +g1,1380:10274838,6461715 +g1,1380:13120149,6461715 +g1,1380:15333169,6461715 +g1,1380:15965461,6461715 +g1,1380:16913899,6461715 +g1,1380:18494628,6461715 +g1,1380:19126920,6461715 +g1,1380:21972231,6461715 +g1,1380:25133688,6461715 +k1,1380:25133688,6461715:0 +h1,1380:26398271,6461715:0,0,0 +k1,1380:32583029,6461715:6184758 +g1,1380:32583029,6461715 +) +(1,1381:6797234,7127893:25785795,404226,101187 +h1,1381:6797234,7127893:0,0,0 +k1,1381:6797234,7127893:0 +h1,1381:11223273,7127893:0,0,0 +k1,1381:32583029,7127893:21359756 +g1,1381:32583029,7127893 +) +(1,1385:6797234,7859607:25785795,404226,76021 +(1,1383:6797234,7859607:0,0,0 +g1,1383:6797234,7859607 +g1,1383:6797234,7859607 +g1,1383:6469554,7859607 +(1,1383:6469554,7859607:0,0,0 +) +g1,1383:6797234,7859607 +) +g1,1385:7745671,7859607 +g1,1385:8061817,7859607 +g1,1385:9326400,7859607 +g1,1385:10590983,7859607 +g1,1385:11855566,7859607 +g1,1385:13120149,7859607 +g1,1385:14384732,7859607 +g1,1385:15649315,7859607 +g1,1385:16913898,7859607 +g1,1385:18178481,7859607 +g1,1385:19443064,7859607 +g1,1385:20707647,7859607 +h1,1385:21656084,7859607:0,0,0 +k1,1385:32583029,7859607:10926945 +g1,1385:32583029,7859607 +) +] +) +g1,1386:32583029,7935628 +g1,1386:6797234,7935628 +g1,1386:6797234,7935628 +g1,1386:32583029,7935628 +g1,1386:32583029,7935628 +) +h1,1386:6797234,8132236:0,0,0 +(1,1389:6797234,9498012:25785795,513147,134348 +h1,1388:6797234,9498012:983040,0,0 +k1,1388:11577079,9498012:223782 +k1,1388:13004757,9498012:223782 +k1,1388:14923955,9498012:223782 +k1,1388:15679235,9498012:223783 +k1,1388:16258877,9498012:223782 +k1,1388:19221409,9498012:223782 +k1,1388:22693155,9498012:223782 +k1,1388:23641765,9498012:223782 +k1,1388:24280365,9498012:223757 +k1,1388:25605153,9498012:223783 +k1,1388:26184795,9498012:223782 +k1,1388:28716100,9498012:223782 +k1,1388:31635378,9498012:223782 +k1,1388:32583029,9498012:0 +) +(1,1389:6797234,10339500:25785795,513147,134348 +k1,1388:8323321,10339500:149176 +k1,1388:9290385,10339500:149175 +k1,1388:11473143,10339500:149176 +k1,1388:13016269,10339500:149175 +(1,1388:13016269,10339500:0,459977,115847 +r1,1432:15133094,10339500:2116825,575824,115847 +k1,1388:13016269,10339500:-2116825 +) +(1,1388:13016269,10339500:2116825,459977,115847 +k1,1388:13016269,10339500:3277 +h1,1388:15129817,10339500:0,411205,112570 +) +k1,1388:15455940,10339500:149176 +k1,1388:16063212,10339500:149175 +k1,1388:16743885,10339500:149176 +k1,1388:19022325,10339500:149175 +k1,1388:22736660,10339500:149176 +k1,1388:23537264,10339500:149176 +k1,1388:25508340,10339500:149175 +k1,1388:26123477,10339500:149176 +k1,1388:27927436,10339500:149175 +k1,1388:28608109,10339500:149176 +k1,1388:29527987,10339500:149175 +k1,1388:32168186,10339500:149176 +k1,1389:32583029,10339500:0 +) +(1,1389:6797234,11180988:25785795,513147,134348 +k1,1388:9826177,11180988:159777 +k1,1388:13238505,11180988:159776 +k1,1388:14345933,11180988:159777 +k1,1388:18755064,11180988:159777 +k1,1388:21333774,11180988:159776 +k1,1388:22152843,11180988:159777 +k1,1388:24118137,11180988:159777 +k1,1388:25296999,11180988:159777 +k1,1388:29850964,11180988:159776 +k1,1388:30879093,11180988:159777 +k1,1388:32583029,11180988:0 +) +(1,1389:6797234,12022476:25785795,513147,134348 +k1,1388:7584522,12022476:159453 +k1,1388:8947216,12022476:159453 +k1,1388:10647419,12022476:159452 +k1,1388:12542265,12022476:159453 +(1,1388:12542265,12022476:0,452978,115847 +r1,1432:15714225,12022476:3171960,568825,115847 +k1,1388:12542265,12022476:-3171960 +) +(1,1388:12542265,12022476:3171960,452978,115847 +k1,1388:12542265,12022476:3277 +h1,1388:15710948,12022476:0,411205,112570 +) +k1,1388:15873678,12022476:159453 +k1,1388:19119877,12022476:159453 +k1,1388:20298414,12022476:159452 +k1,1388:22575335,12022476:159453 +k1,1388:24480012,12022476:159453 +k1,1388:25906931,12022476:159453 +k1,1388:26422243,12022476:159452 +k1,1388:28454715,12022476:159453 +k1,1388:31309664,12022476:159453 +k1,1388:32583029,12022476:0 +) +(1,1389:6797234,12863964:25785795,513147,134348 +g1,1388:8463159,12863964 +g1,1388:11934601,12863964 +g1,1388:16209514,12863964 +g1,1388:17600188,12863964 +k1,1389:32583029,12863964:11415061 +g1,1389:32583029,12863964 +) +v1,1391:6797234,14054430:0,393216,0 +(1,1398:6797234,15069783:25785795,1408569,196608 +g1,1398:6797234,15069783 +g1,1398:6797234,15069783 +g1,1398:6600626,15069783 +(1,1398:6600626,15069783:0,1408569,196608 +r1,1432:32779637,15069783:26179011,1605177,196608 +k1,1398:6600625,15069783:-26179012 +) +(1,1398:6600626,15069783:26179011,1408569,196608 +[1,1398:6797234,15069783:25785795,1211961,0 +(1,1393:6797234,14262048:25785795,404226,76021 +(1,1392:6797234,14262048:0,0,0 +g1,1392:6797234,14262048 +g1,1392:6797234,14262048 +g1,1392:6469554,14262048 +(1,1392:6469554,14262048:0,0,0 +) +g1,1392:6797234,14262048 +) +k1,1393:6797234,14262048:0 +h1,1393:9958691,14262048:0,0,0 +k1,1393:32583029,14262048:22624338 +g1,1393:32583029,14262048 +) +(1,1397:6797234,14993762:25785795,404226,76021 +(1,1395:6797234,14993762:0,0,0 +g1,1395:6797234,14993762 +g1,1395:6797234,14993762 +g1,1395:6469554,14993762 +(1,1395:6469554,14993762:0,0,0 +) +g1,1395:6797234,14993762 +) +g1,1397:7745671,14993762 +g1,1397:8061817,14993762 +g1,1397:9326400,14993762 +g1,1397:10590983,14993762 +g1,1397:11855566,14993762 +g1,1397:13120149,14993762 +g1,1397:14384732,14993762 +g1,1397:15649315,14993762 +g1,1397:16913898,14993762 +g1,1397:18178481,14993762 +g1,1397:19443064,14993762 +g1,1397:20707647,14993762 +h1,1397:21656084,14993762:0,0,0 +k1,1397:32583029,14993762:10926945 +g1,1397:32583029,14993762 +) +] +) +g1,1398:32583029,15069783 +g1,1398:6797234,15069783 +g1,1398:6797234,15069783 +g1,1398:32583029,15069783 +g1,1398:32583029,15069783 +) +h1,1398:6797234,15266391:0,0,0 +] +g1,1401:32583029,15790679 +) +h1,1401:6630773,15790679:0,0,0 +v1,1404:6630773,17078577:0,393216,0 +(1,1406:6630773,23986242:25952256,7300881,0 +g1,1406:6630773,23986242 +g1,1406:6303093,23986242 +r1,1432:6401397,23986242:98304,7300881,0 +g1,1406:6600626,23986242 +g1,1406:6797234,23986242 +[1,1406:6797234,23986242:25785795,7300881,0 +(1,1406:6797234,17969343:25785795,1283982,196608 +(1,1404:6797234,17969343:0,1283982,196608 +r1,1432:8400153,17969343:1602919,1480590,196608 +k1,1404:6797234,17969343:-1602919 +) +(1,1404:6797234,17969343:1602919,1283982,196608 +) +k1,1404:8714124,17969343:313971 +k1,1404:9633647,17969343:313970 +k1,1404:11368439,17969343:313971 +k1,1404:13638660,17969343:313971 +k1,1404:15123103,17969343:313970 +k1,1404:17677750,17969343:313971 +k1,1404:19194962,17969343:313971 +k1,1404:20657123,17969343:313970 +k1,1404:23806181,17969343:313971 +k1,1404:24844979,17969343:313970 +k1,1404:26443456,17969343:313971 +k1,1404:28133028,17969343:313971 +k1,1404:29466083,17969343:313970 +k1,1404:30928245,17969343:313971 +k1,1404:32583029,17969343:0 +) +(1,1406:6797234,18810831:25785795,513147,126483 +k1,1404:9709742,18810831:199317 +k1,1404:10900619,18810831:199317 +k1,1404:13065360,18810831:199316 +k1,1404:14427286,18810831:199317 +k1,1404:16691642,18810831:199317 +k1,1404:18713515,18810831:199317 +k1,1404:20005317,18810831:199317 +k1,1404:20863925,18810831:199316 +k1,1404:24370189,18810831:199317 +k1,1404:25220934,18810831:199317 +k1,1404:27240841,18810831:199317 +k1,1404:27796018,18810831:199317 +k1,1404:29317195,18810831:199316 +k1,1404:30175804,18810831:199317 +k1,1404:31394206,18810831:199317 +k1,1406:32583029,18810831:0 +) +(1,1406:6797234,19652319:25785795,513147,126483 +k1,1404:8513723,19652319:224234 +k1,1405:9343510,19652319:224234 +k1,1405:10396774,19652319:224234 +k1,1405:12644759,19652319:224233 +k1,1405:15251882,19652319:224234 +k1,1405:17345203,19652319:224234 +k1,1405:18726147,19652319:224234 +k1,1405:20719198,19652319:224234 +k1,1405:23205735,19652319:224234 +k1,1405:24449053,19652319:224233 +k1,1405:26790755,19652319:224234 +k1,1405:28760213,19652319:224234 +k1,1405:30871884,19652319:224234 +k1,1405:32583029,19652319:0 +) +(1,1406:6797234,20493807:25785795,513147,126483 +k1,1405:10157757,20493807:221348 +k1,1405:11398190,20493807:221348 +k1,1405:13706860,20493807:221348 +k1,1405:15119653,20493807:221348 +k1,1405:16433486,20493807:221348 +(1,1405:16433486,20493807:0,452978,115847 +r1,1432:19605446,20493807:3171960,568825,115847 +k1,1405:16433486,20493807:-3171960 +) +(1,1405:16433486,20493807:3171960,452978,115847 +k1,1405:16433486,20493807:3277 +h1,1405:19602169,20493807:0,411205,112570 +) +k1,1405:19826794,20493807:221348 +k1,1405:21935580,20493807:221349 +k1,1405:23868073,20493807:221348 +k1,1405:24772306,20493807:221348 +k1,1405:26380396,20493807:221348 +k1,1405:27437328,20493807:221348 +k1,1405:28124637,20493807:221348 +k1,1405:30000769,20493807:221348 +k1,1405:30753614,20493807:221348 +k1,1405:31591000,20493807:221348 +k1,1405:32227169,20493807:221326 +k1,1405:32583029,20493807:0 +) +(1,1406:6797234,21335295:25785795,513147,134348 +k1,1405:9679271,21335295:186541 +k1,1405:10813463,21335295:186541 +k1,1405:12203246,21335295:186542 +k1,1405:15637751,21335295:186541 +k1,1405:16311867,21335295:186528 +k1,1405:18082414,21335295:186542 +k1,1405:19931603,21335295:186541 +k1,1405:20769572,21335295:186541 +k1,1405:22444436,21335295:186541 +k1,1405:23162474,21335295:186541 +k1,1405:24742967,21335295:186542 +(1,1405:24742967,21335295:0,452978,115847 +r1,1432:29321775,21335295:4578808,568825,115847 +k1,1405:24742967,21335295:-4578808 +) +(1,1405:24742967,21335295:4578808,452978,115847 +k1,1405:24742967,21335295:3277 +h1,1405:29318498,21335295:0,411205,112570 +) +k1,1405:29508316,21335295:186541 +k1,1405:30381019,21335295:186541 +k1,1405:32583029,21335295:0 +) +(1,1406:6797234,22176783:25785795,513147,134348 +k1,1405:10095180,22176783:272149 +k1,1405:11704263,22176783:272149 +k1,1405:13713116,22176783:272149 +k1,1405:15004351,22176783:272150 +k1,1405:16929973,22176783:272149 +k1,1405:18590175,22176783:272149 +k1,1405:20534147,22176783:272149 +k1,1405:21489181,22176783:272149 +k1,1405:22374092,22176783:272149 +k1,1405:24141773,22176783:272149 +k1,1405:25161688,22176783:272149 +k1,1405:27195446,22176783:272150 +k1,1405:28083633,22176783:272149 +k1,1405:29374867,22176783:272149 +k1,1405:30997058,22176783:272149 +k1,1405:32583029,22176783:0 +) +(1,1406:6797234,23018271:25785795,513147,134348 +k1,1405:9426866,23018271:177275 +k1,1405:10501984,23018271:177275 +k1,1405:11585622,23018271:177275 +k1,1405:13139807,23018271:177274 +k1,1405:14508527,23018271:177275 +k1,1405:17054273,23018271:177275 +k1,1405:18933518,23018271:177275 +k1,1405:20498846,23018271:177275 +k1,1405:22504575,23018271:177275 +k1,1405:23297888,23018271:177275 +k1,1405:25545444,23018271:177274 +k1,1405:26670370,23018271:177275 +k1,1405:28539785,23018271:177275 +k1,1405:31412556,23018271:177275 +k1,1405:32583029,23018271:0 +) +(1,1406:6797234,23859759:25785795,513147,126483 +g1,1405:8333397,23859759 +g1,1405:9798782,23859759 +g1,1405:11975232,23859759 +g1,1405:12790499,23859759 +g1,1405:14008813,23859759 +g1,1405:16762635,23859759 +g1,1405:17621156,23859759 +g1,1405:19279216,23859759 +g1,1405:20808826,23859759 +k1,1406:32583029,23859759:10211169 +g1,1406:32583029,23859759 +) +] +g1,1406:32583029,23986242 +) +h1,1406:6630773,23986242:0,0,0 +(1,1408:6630773,25614162:25952256,505283,126483 +(1,1408:6630773,25614162:2809528,485622,11795 +g1,1408:6630773,25614162 +g1,1408:9440301,25614162 +) +k1,1408:32583029,25614162:20257178 +g1,1408:32583029,25614162 +) +(1,1411:6630773,26848866:25952256,513147,126483 +k1,1410:10361036,26848866:257510 +k1,1410:11486897,26848866:257509 +k1,1410:13274673,26848866:257510 +k1,1410:14183610,26848866:257509 +k1,1410:16156853,26848866:257510 +k1,1410:17795206,26848866:257509 +k1,1410:19337222,26848866:257510 +k1,1410:22300057,26848866:257509 +k1,1410:24053754,26848866:257510 +k1,1410:24842760,26848866:257509 +k1,1410:27933391,26848866:257510 +k1,1410:29657596,26848866:257509 +k1,1410:30381067,26848866:257510 +k1,1410:31657661,26848866:257509 +k1,1411:32583029,26848866:0 +) +(1,1411:6630773,27690354:25952256,513147,126483 +k1,1410:9264742,27690354:270741 +k1,1410:10194775,27690354:270741 +k1,1410:10821375,27690354:270740 +k1,1410:12923192,27690354:270741 +k1,1410:13876818,27690354:270741 +k1,1410:16843055,27690354:270741 +k1,1410:17645293,27690354:270741 +k1,1410:20380188,27690354:270741 +k1,1410:21412456,27690354:270740 +k1,1410:22702282,27690354:270741 +k1,1410:24353867,27690354:270741 +k1,1410:25307493,27690354:270741 +k1,1410:26264396,27690354:270741 +k1,1410:26890997,27690354:270741 +k1,1410:29004609,27690354:270740 +k1,1410:29934642,27690354:270741 +k1,1410:30976086,27690354:270741 +k1,1410:32583029,27690354:0 +) +(1,1411:6630773,28531842:25952256,513147,126483 +k1,1410:10060273,28531842:223479 +k1,1410:10771317,28531842:223456 +k1,1410:13129304,28531842:223479 +k1,1410:16014200,28531842:223479 +k1,1410:16769177,28531842:223480 +k1,1410:17348516,28531842:223479 +k1,1410:19403072,28531842:223480 +k1,1410:20911057,28531842:223479 +k1,1410:24874021,28531842:223480 +k1,1410:26362345,28531842:223479 +k1,1410:26941685,28531842:223480 +k1,1410:28509963,28531842:223479 +k1,1410:30654303,28531842:223480 +k1,1410:31563944,28531842:223479 +k1,1410:32583029,28531842:0 +) +(1,1411:6630773,29373330:25952256,513147,134348 +k1,1410:9440354,29373330:222875 +k1,1410:12555334,29373330:222876 +k1,1410:13461094,29373330:222875 +k1,1410:15106757,29373330:222876 +k1,1410:15685492,29373330:222875 +k1,1410:16891408,29373330:222876 +k1,1410:17800445,29373330:222875 +k1,1410:21356481,29373330:222875 +k1,1410:24100527,29373330:222876 +k1,1410:27113270,29373330:222875 +(1,1410:27113270,29373330:0,452978,115847 +r1,1432:30285230,29373330:3171960,568825,115847 +k1,1410:27113270,29373330:-3171960 +) +(1,1410:27113270,29373330:3171960,452978,115847 +k1,1410:27113270,29373330:3277 +h1,1410:30281953,29373330:0,411205,112570 +) +k1,1410:30508106,29373330:222876 +k1,1410:31835263,29373330:222875 +k1,1410:32583029,29373330:0 +) +(1,1411:6630773,30214818:25952256,505283,126483 +k1,1410:8317763,30214818:173764 +k1,1410:9142955,30214818:173764 +k1,1410:11389623,30214818:173764 +k1,1410:12847892,30214818:173763 +k1,1410:13377516,30214818:173764 +k1,1410:14932124,30214818:173764 +k1,1410:17866920,30214818:173764 +k1,1410:21480669,30214818:173764 +k1,1410:23515000,30214818:173764 +k1,1410:24340192,30214818:173764 +k1,1410:25261721,30214818:173763 +k1,1410:28268606,30214818:173764 +k1,1410:30140408,30214818:173764 +k1,1410:31333257,30214818:173764 +k1,1411:32583029,30214818:0 +) +(1,1411:6630773,31056306:25952256,513147,126483 +k1,1410:8166834,31056306:228618 +k1,1410:11264619,31056306:228619 +k1,1410:12176122,31056306:228618 +k1,1410:12760601,31056306:228619 +k1,1410:14993965,31056306:228618 +k1,1410:16897028,31056306:228618 +k1,1410:19915515,31056306:228619 +(1,1410:19915515,31056306:0,452978,115847 +r1,1432:23087475,31056306:3171960,568825,115847 +k1,1410:19915515,31056306:-3171960 +) +(1,1410:19915515,31056306:3171960,452978,115847 +k1,1410:19915515,31056306:3277 +h1,1410:23084198,31056306:0,411205,112570 +) +k1,1410:23316093,31056306:228618 +k1,1410:24648993,31056306:228618 +k1,1410:26163428,31056306:228619 +k1,1410:28107779,31056306:228618 +k1,1410:29832585,31056306:228619 +k1,1410:31931601,31056306:228618 +k1,1410:32583029,31056306:0 +) +(1,1411:6630773,31897794:25952256,513147,126483 +k1,1410:8227845,31897794:184771 +k1,1410:9098777,31897794:184770 +k1,1410:9741645,31897794:184771 +k1,1410:11764700,31897794:184770 +k1,1410:14542075,31897794:184771 +k1,1410:15918290,31897794:184770 +k1,1410:18808387,31897794:184771 +k1,1410:20377277,31897794:184770 +k1,1410:21213476,31897794:184771 +k1,1410:22849869,31897794:184771 +k1,1410:24736609,31897794:184770 +k1,1410:25537418,31897794:184771 +k1,1410:26741273,31897794:184770 +k1,1410:28502840,31897794:184771 +k1,1410:29346902,31897794:184770 +k1,1410:29887533,31897794:184771 +k1,1410:32583029,31897794:0 +) +(1,1411:6630773,32739282:25952256,513147,134348 +g1,1410:7512887,32739282 +g1,1410:8328154,32739282 +g1,1410:9546468,32739282 +g1,1410:11729472,32739282 +g1,1410:12587993,32739282 +g1,1410:13143082,32739282 +k1,1411:32583028,32739282:17435200 +g1,1411:32583028,32739282 +) +v1,1413:6630773,33851869:0,393216,0 +(1,1424:6630773,36892687:25952256,3434034,196608 +g1,1424:6630773,36892687 +g1,1424:6630773,36892687 +g1,1424:6434165,36892687 +(1,1424:6434165,36892687:0,3434034,196608 +r1,1432:32779637,36892687:26345472,3630642,196608 +k1,1424:6434165,36892687:-26345472 +) +(1,1424:6434165,36892687:26345472,3434034,196608 +[1,1424:6630773,36892687:25952256,3237426,0 +(1,1415:6630773,34065779:25952256,410518,101187 +(1,1414:6630773,34065779:0,0,0 +g1,1414:6630773,34065779 +g1,1414:6630773,34065779 +g1,1414:6303093,34065779 +(1,1414:6303093,34065779:0,0,0 +) +g1,1414:6630773,34065779 +) +k1,1415:6630773,34065779:0 +h1,1415:14218269,34065779:0,0,0 +k1,1415:32583029,34065779:18364760 +g1,1415:32583029,34065779 +) +(1,1419:6630773,34797493:25952256,404226,76021 +(1,1417:6630773,34797493:0,0,0 +g1,1417:6630773,34797493 +g1,1417:6630773,34797493 +g1,1417:6303093,34797493 +(1,1417:6303093,34797493:0,0,0 +) +g1,1417:6630773,34797493 +) +g1,1419:7579210,34797493 +g1,1419:8843793,34797493 +h1,1419:10108376,34797493:0,0,0 +k1,1419:32583028,34797493:22474652 +g1,1419:32583028,34797493 +) +(1,1421:6630773,36119031:25952256,410518,101187 +(1,1420:6630773,36119031:0,0,0 +g1,1420:6630773,36119031 +g1,1420:6630773,36119031 +g1,1420:6303093,36119031 +(1,1420:6303093,36119031:0,0,0 +) +g1,1420:6630773,36119031 +) +k1,1421:6630773,36119031:0 +k1,1421:6630773,36119031:0 +h1,1421:17063580,36119031:0,0,0 +k1,1421:32583029,36119031:15519449 +g1,1421:32583029,36119031 +) +(1,1422:6630773,36785209:25952256,410518,107478 +h1,1422:6630773,36785209:0,0,0 +g1,1422:7263065,36785209 +g1,1422:8843794,36785209 +g1,1422:10424523,36785209 +g1,1422:12321397,36785209 +g1,1422:13585980,36785209 +g1,1422:14534417,36785209 +g1,1422:15799000,36785209 +g1,1422:17379729,36785209 +g1,1422:18960458,36785209 +k1,1422:18960458,36785209:1573 +h1,1422:20226614,36785209:0,0,0 +k1,1422:32583029,36785209:12356415 +g1,1422:32583029,36785209 +) +] +) +g1,1424:32583029,36892687 +g1,1424:6630773,36892687 +g1,1424:6630773,36892687 +g1,1424:32583029,36892687 +g1,1424:32583029,36892687 +) +h1,1424:6630773,37089295:0,0,0 +(1,1427:6630773,40343273:25952256,32768,229376 +(1,1427:6630773,40343273:0,32768,229376 +(1,1427:6630773,40343273:5505024,32768,229376 +r1,1432:12135797,40343273:5505024,262144,229376 +) +k1,1427:6630773,40343273:-5505024 +) +(1,1427:6630773,40343273:25952256,32768,0 +r1,1432:32583029,40343273:25952256,32768,0 +) +) +(1,1427:6630773,41947601:25952256,615776,151780 +(1,1427:6630773,41947601:1974731,575668,0 +g1,1427:6630773,41947601 +g1,1427:8605504,41947601 +) +g1,1427:11225896,41947601 +k1,1427:32583030,41947601:17602708 +g1,1427:32583030,41947601 +) +(1,1430:6630773,43182305:25952256,513147,134348 +k1,1429:8832346,43182305:318068 +k1,1429:12176210,43182305:318067 +k1,1429:14257852,43182305:318068 +k1,1429:14931779,43182305:318067 +k1,1429:17945343,43182305:318068 +k1,1429:20468697,43182305:318067 +k1,1429:21472927,43182305:318068 +k1,1429:22561697,43182305:318067 +k1,1429:25952093,43182305:318068 +k1,1429:26921588,43182305:318067 +k1,1429:30520388,43182305:318068 +(1,1429:30520388,43182305:0,414482,115847 +r1,1432:31582077,43182305:1061689,530329,115847 +k1,1429:30520388,43182305:-1061689 +) +(1,1429:30520388,43182305:1061689,414482,115847 +k1,1429:30520388,43182305:3277 +h1,1429:31578800,43182305:0,411205,112570 +) +k1,1429:31900144,43182305:318067 +k1,1429:32583029,43182305:0 +) +(1,1430:6630773,44023793:25952256,513147,134348 +k1,1429:10334214,44023793:224790 +k1,1429:11210433,44023793:224791 +k1,1429:14304389,44023793:224790 +k1,1429:15145217,44023793:224790 +k1,1429:15725867,44023793:224790 +k1,1429:19037404,44023793:224791 +k1,1429:19929350,44023793:224790 +k1,1429:20568957,44023793:224764 +k1,1429:23083576,44023793:224791 +k1,1429:25513653,44023793:224790 +k1,1429:26424605,44023793:224790 +k1,1429:27420098,44023793:224790 +k1,1429:30717217,44023793:224791 +k1,1429:31593435,44023793:224790 +k1,1430:32583029,44023793:0 +) +(1,1430:6630773,44865281:25952256,505283,126483 +k1,1429:9360222,44865281:225318 +(1,1429:9360222,44865281:0,414482,115847 +r1,1432:9718488,44865281:358266,530329,115847 +k1,1429:9360222,44865281:-358266 +) +(1,1429:9360222,44865281:358266,414482,115847 +k1,1429:9360222,44865281:3277 +h1,1429:9715211,44865281:0,411205,112570 +) +k1,1429:9943807,44865281:225319 +k1,1429:10852010,44865281:225318 +k1,1429:14555979,44865281:225318 +k1,1429:18320241,44865281:225318 +k1,1429:19196988,44865281:225319 +k1,1429:21307777,44865281:225318 +(1,1429:21307777,44865281:0,414482,115847 +r1,1432:22369466,44865281:1061689,530329,115847 +k1,1429:21307777,44865281:-1061689 +) +(1,1429:21307777,44865281:1061689,414482,115847 +k1,1429:21307777,44865281:3277 +h1,1429:22366189,44865281:0,411205,112570 +) +k1,1429:22594784,44865281:225318 +k1,1429:23351600,44865281:225319 +k1,1429:24228346,44865281:225318 +k1,1429:25201430,44865281:225318 +k1,1429:27798496,44865281:225318 +k1,1429:29128097,44865281:225319 +k1,1429:30101181,44865281:225318 +k1,1429:32583029,44865281:0 +) +(1,1430:6630773,45706769:25952256,513147,134348 +k1,1429:8345148,45706769:216877 +k1,1429:9951388,45706769:216877 +k1,1429:12548534,45706769:216878 +k1,1429:15498918,45706769:216877 +k1,1429:16398680,45706769:216877 +k1,1429:18769070,45706769:216877 +k1,1429:19803837,45706769:216878 +k1,1429:21409422,45706769:216877 +k1,1429:22312461,45706769:216877 +k1,1429:23548423,45706769:216877 +k1,1429:27169895,45706769:216877 +k1,1429:28038201,45706769:216878 +k1,1429:29002844,45706769:216877 +k1,1429:31591469,45706769:216877 +k1,1429:32583029,45706769:0 +) +] +(1,1432:32583029,45706769:0,0,0 +g1,1432:32583029,45706769 +) +) +] +(1,1432:6630773,47279633:25952256,0,0 +h1,1432:6630773,47279633:25952256,0,0 +) +] +(1,1432:4262630,4025873:0,0,0 +[1,1432:-473656,4025873:0,0,0 +(1,1432:-473656,-710413:0,0,0 +(1,1432:-473656,-710413:0,0,0 +g1,1432:-473656,-710413 +) +g1,1432:-473656,-710413 +) +] +) +] +!25325 +}31 +Input:466:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:467:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:468:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:469:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:470:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:471:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:472:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:473:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:474:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:475:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:476:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:477:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:478:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:479:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:480:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:481:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:482:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:483:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:484:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:485:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:486:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:487:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:488:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:489:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:490:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:491:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2377 +{32 +[1,1481:4262630,47279633:28320399,43253760,0 +(1,1481:4262630,4025873:0,0,0 +[1,1481:-473656,4025873:0,0,0 +(1,1481:-473656,-710413:0,0,0 +(1,1481:-473656,-644877:0,0,0 +k1,1481:-473656,-644877:-65536 ) -] -(2989,178:4262630,4025873:0,0,0 -[2989,178:-473656,4025873:0,0,0 -(2989,178:-473656,-710413:0,0,0 -(2989,178:-473656,-710413:0,0,0 -g2989,178:-473656,-710413 +(1,1481:-473656,4736287:0,0,0 +k1,1481:-473656,4736287:5209943 ) -g2989,178:-473656,-710413 +g1,1481:-473656,-710413 ) ] ) -] -!27270 -}379 -!12 -{380 -[2989,266:4262630,47279633:28320399,43253760,0 -(2989,266:4262630,4025873:0,0,0 -[2989,266:-473656,4025873:0,0,0 -(2989,266:-473656,-710413:0,0,0 -(2989,266:-473656,-644877:0,0,0 -k2989,266:-473656,-644877:-65536 -) -(2989,266:-473656,4736287:0,0,0 -k2989,266:-473656,4736287:5209943 -) -g2989,266:-473656,-710413 +[1,1481:6630773,47279633:25952256,43253760,0 +[1,1481:6630773,4812305:25952256,786432,0 +(1,1481:6630773,4812305:25952256,513147,126483 +(1,1481:6630773,4812305:25952256,513147,126483 +g1,1481:3078558,4812305 +[1,1481:3078558,4812305:0,0,0 +(1,1481:3078558,2439708:0,1703936,0 +k1,1481:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,1481:2537886,2439708:1179648,16384,0 ) -] +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,1481:3078558,1915420:16384,1179648,0 ) -[2989,266:6630773,47279633:25952256,43253760,0 -[2989,266:6630773,4812305:25952256,786432,0 -(2989,266:6630773,4812305:25952256,505283,11795 -(2989,266:6630773,4812305:25952256,505283,11795 -g2989,266:3078558,4812305 -[2989,266:3078558,4812305:0,0,0 -(2989,266:3078558,2439708:0,1703936,0 -k2989,266:1358238,2439708:-1720320 -(2989,1:1358238,2439708:1720320,1703936,0 -(2989,1:1358238,2439708:1179648,16384,0 -r2989,266:2537886,2439708:1179648,16384,0 -) -g2989,1:3062174,2439708 -(2989,1:3062174,2439708:16384,1703936,0 -[2989,1:3062174,2439708:25952256,1703936,0 -(2989,1:3062174,1915420:25952256,1179648,0 -(2989,1:3062174,1915420:16384,1179648,0 -r2989,266:3078558,1915420:16384,1179648,0 -) -k2989,1:29014430,1915420:25935872 -g2989,1:29014430,1915420 +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) ] ) ) ) ] -[2989,266:3078558,4812305:0,0,0 -(2989,266:3078558,2439708:0,1703936,0 -g2989,266:29030814,2439708 -g2989,266:36135244,2439708 -(2989,1:36135244,2439708:1720320,1703936,0 -(2989,1:36135244,2439708:16384,1703936,0 -[2989,1:36135244,2439708:25952256,1703936,0 -(2989,1:36135244,1915420:25952256,1179648,0 -(2989,1:36135244,1915420:16384,1179648,0 -r2989,266:36151628,1915420:16384,1179648,0 -) -k2989,1:62087500,1915420:25935872 -g2989,1:62087500,1915420 +[1,1481:3078558,4812305:0,0,0 +(1,1481:3078558,2439708:0,1703936,0 +g1,1481:29030814,2439708 +g1,1481:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,1481:36151628,1915420:16384,1179648,0 ) -] +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) -g2989,1:36675916,2439708 -(2989,1:36675916,2439708:1179648,16384,0 -r2989,266:37855564,2439708:1179648,16384,0 +] ) +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,1481:37855564,2439708:1179648,16384,0 ) -k2989,266:3078556,2439708:-34777008 ) -] -[2989,266:3078558,4812305:0,0,0 -(2989,266:3078558,49800853:0,16384,2228224 -k2989,266:1358238,49800853:-1720320 -(2989,1:1358238,49800853:1720320,16384,2228224 -(2989,1:1358238,49800853:1179648,16384,0 -r2989,266:2537886,49800853:1179648,16384,0 -) -g2989,1:3062174,49800853 -(2989,1:3062174,52029077:16384,1703936,0 -[2989,1:3062174,52029077:25952256,1703936,0 -(2989,1:3062174,51504789:25952256,1179648,0 -(2989,1:3062174,51504789:16384,1179648,0 -r2989,266:3078558,51504789:16384,1179648,0 -) -k2989,1:29014430,51504789:25935872 -g2989,1:29014430,51504789 +k1,1481:3078556,2439708:-34777008 ) ] +[1,1481:3078558,4812305:0,0,0 +(1,1481:3078558,49800853:0,16384,2228224 +k1,1481:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,1481:2537886,49800853:1179648,16384,0 ) +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,1481:3078558,51504789:16384,1179648,0 ) +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) ] -[2989,266:3078558,4812305:0,0,0 -(2989,266:3078558,49800853:0,16384,2228224 -g2989,266:29030814,49800853 -g2989,266:36135244,49800853 -(2989,1:36135244,49800853:1720320,16384,2228224 -(2989,1:36135244,52029077:16384,1703936,0 -[2989,1:36135244,52029077:25952256,1703936,0 -(2989,1:36135244,51504789:25952256,1179648,0 -(2989,1:36135244,51504789:16384,1179648,0 -r2989,266:36151628,51504789:16384,1179648,0 -) -k2989,1:62087500,51504789:25935872 -g2989,1:62087500,51504789 ) -] ) -g2989,1:36675916,49800853 -(2989,1:36675916,49800853:1179648,16384,0 -r2989,266:37855564,49800853:1179648,16384,0 ) +] +[1,1481:3078558,4812305:0,0,0 +(1,1481:3078558,49800853:0,16384,2228224 +g1,1481:29030814,49800853 +g1,1481:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,1481:36151628,51504789:16384,1179648,0 ) -k2989,266:3078556,49800853:-34777008 +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 ) ] -g2989,266:6630773,4812305 -g2989,266:6630773,4812305 -g2989,266:9313817,4812305 -g2989,266:11188146,4812305 -k2989,266:31387652,4812305:20199506 ) +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,1481:37855564,49800853:1179648,16384,0 ) -] -[2989,266:6630773,45706769:25952256,40108032,0 -(2989,266:6630773,45706769:25952256,40108032,0 -(2989,266:6630773,45706769:0,0,0 -g2989,266:6630773,45706769 -) -[2989,266:6630773,45706769:25952256,40108032,0 -(2989,266:6630773,45706769:25952256,40108032,134348 -[2989,266:6630773,45706769:11829248,40108032,134348 -(2989,178:9252213,6254097:9207808,485622,102891 -k2989,174:10819965,6254097:198705 -k2989,174:12387717,6254097:198705 -k2989,174:13955470,6254097:198706 -k2989,175:15523222,6254097:198705 -k2989,175:17090974,6254097:198705 -k2989,175:18460021,6254097:0 -) -(2989,178:9252213,7095585:9207808,485622,102891 -g2989,175:10820489,7095585 -g2989,175:12388765,7095585 -g2989,175:13957041,7095585 -g2989,175:15525317,7095585 -k2989,175:18460021,7095585:1565657 -) -(2989,178:9252213,7937073:9207808,485622,102891 -g2989,175:12343546,7937073 -g2989,175:13911822,7937073 -g2989,176:15480098,7937073 -g2989,176:17048374,7937073 -k2989,176:18460021,7937073:42600 -) -(2989,178:9252213,8778561:9207808,485622,102891 -k2989,176:10819965,8778561:198705 -k2989,176:12387717,8778561:198705 -k2989,176:13955470,8778561:198706 -k2989,176:15523222,8778561:198705 -k2989,176:17090974,8778561:198705 -k2989,176:18460021,8778561:0 -) -(2989,178:9252213,9620049:9207808,485622,102891 -g2989,176:10820489,9620049 -g2989,176:12388765,9620049 -k2989,178:16022082,9620049:2437940 -k2989,178:18460021,9620049:2437939 -) -(2989,179:6630773,10480143:11829248,505283,134348 -h2989,178:6630773,10480143:0,0,0 -g2989,178:10117943,10480143 -g2989,178:11686219,10480143 -g2989,178:13254495,10480143 -g2989,178:14822771,10480143 -g2989,178:16391047,10480143 -k2989,178:18460021,10480143:699927 -) -(2989,179:9252213,11321631:9207808,485622,11795 -k2989,179:14453806,11321631:4006216 -k2989,179:18460021,11321631:4006215 -) -(2989,180:6630773,12181724:11829248,505283,134348 -h2989,179:6630773,12181724:0,0,0 -g2989,179:9834827,12181724 -k2989,180:14745113,12181724:3714909 -k2989,180:18460021,12181724:3714908 -) -(2989,181:6630773,13041818:11829248,505283,134348 -h2989,180:6630773,13041818:0,0,0 -g2989,180:10281783,13041818 -k2989,181:14968591,13041818:3491431 -k2989,181:18460021,13041818:3491430 -) -(2989,182:6630773,13901911:11829248,505283,134348 -h2989,181:6630773,13901911:0,0,0 -g2989,181:9518944,13901911 -k2989,182:14587171,13901911:3872850 -k2989,182:18460021,13901911:3872850 -) -(2989,183:6630773,14762005:11829248,505283,134348 -h2989,182:6630773,14762005:0,0,0 -g2989,182:9491419,14762005 -k2989,183:14573409,14762005:3886613 -k2989,183:18460021,14762005:3886612 -) -(2989,184:6630773,15622099:11829248,485622,102891 -h2989,183:6630773,15622099:0,0,0 -g2989,183:7912001,15622099 -g2989,183:9081818,15622099 -k2989,184:14368608,15622099:4091413 -k2989,184:18460021,15622099:4091413 -) -(2989,185:6630773,16482192:11829248,505283,102891 -h2989,184:6630773,16482192:0,0,0 -g2989,184:9262043,16482192 -k2989,185:14458721,16482192:4001301 -k2989,185:18460021,16482192:4001300 -) -(2989,186:6630773,17342286:11829248,505283,134348 -h2989,185:6630773,17342286:0,0,0 -g2989,185:8412041,17342286 -g2989,185:9578581,17342286 -g2989,185:13470108,17342286 -g2989,185:15482063,17342286 -k2989,186:18130046,17342286:329975 -k2989,186:18460021,17342286:329975 -) -(2989,187:6630773,18202379:11829248,485622,102891 -h2989,186:6630773,18202379:0,0,0 -g2989,186:8124339,18202379 -g2989,186:8850477,18202379 -k2989,187:13854479,18202379:4605543 -k2989,187:18460021,18202379:4605542 -) -(2989,188:6630773,19062473:11829248,513147,134348 -h2989,187:6630773,19062473:0,0,0 -g2989,187:9732592,19062473 -g2989,187:10591113,19062473 -g2989,187:13683101,19062473 -g2989,187:15251377,19062473 -k2989,188:17453388,19062473:1006634 -k2989,188:18460021,19062473:1006633 -) -(2989,189:6630773,19922567:11829248,505283,102891 -h2989,188:6630773,19922567:0,0,0 -r2989,266:6630773,19922567:0,608174,102891 -g2989,188:7941493,19922567 -g2989,188:7941493,19922567 -g2989,188:11696050,19922567 -k2989,189:15675724,19922567:2784297 -k2989,189:18460021,19922567:2784297 -) -(2989,190:6630773,20782660:11829248,505283,102891 -h2989,189:6630773,20782660:0,0,0 -r2989,266:6630773,20782660:0,608174,102891 -g2989,189:7941493,20782660 -g2989,189:7941493,20782660 -g2989,189:11696050,20782660 -k2989,190:15675724,20782660:2784297 -k2989,190:18460021,20782660:2784297 -) -(2989,191:6630773,21642754:11829248,485622,102891 -h2989,190:6630773,21642754:0,0,0 -r2989,266:6630773,21642754:0,588513,102891 -g2989,190:7941493,21642754 -g2989,190:7941493,21642754 -g2989,190:12104995,21642754 -k2989,191:16641725,21642754:1818297 -k2989,191:18460021,21642754:1818296 -) -(2989,192:6630773,22502847:11829248,505283,102891 -h2989,191:6630773,22502847:0,0,0 -r2989,266:6630773,22502847:0,608174,102891 -g2989,191:7941493,22502847 -g2989,191:7941493,22502847 -g2989,191:10340110,22502847 -g2989,191:12615520,22502847 -k2989,192:16896987,22502847:1563034 -k2989,192:18460021,22502847:1563034 -) -(2989,193:6630773,23362941:11829248,505283,102891 -h2989,192:6630773,23362941:0,0,0 -r2989,266:6630773,23362941:0,608174,102891 -g2989,192:7941493,23362941 -g2989,192:7941493,23362941 -g2989,192:11024961,23362941 -g2989,192:15136034,23362941 -g2989,192:16704310,23362941 -k2989,193:18179854,23362941:280167 -k2989,193:18460021,23362941:280167 -) -(2989,194:6630773,24223035:11829248,513147,102891 -h2989,193:6630773,24223035:0,0,0 -r2989,266:6630773,24223035:0,616038,102891 -g2989,193:7941493,24223035 -g2989,193:7941493,24223035 -g2989,193:9756840,24223035 -g2989,193:11147514,24223035 -g2989,193:12187570,24223035 -g2989,193:14462980,24223035 -k2989,194:17820717,24223035:639304 -k2989,194:18460021,24223035:639304 -) -(2989,195:6630773,25083128:11829248,505283,134348 -h2989,194:6630773,25083128:0,0,0 -r2989,266:6630773,25083128:0,639631,134348 -g2989,194:7941493,25083128 -g2989,194:7941493,25083128 -g2989,194:10523611,25083128 -g2989,194:13886263,25083128 -k2989,195:17532359,25083128:927663 -k2989,195:18460021,25083128:927662 -) -(2989,196:6630773,25943222:11829248,505283,126483 -h2989,195:6630773,25943222:0,0,0 -r2989,266:6630773,25943222:0,631766,126483 -g2989,195:7941493,25943222 -g2989,195:7941493,25943222 -g2989,195:11066249,25943222 -g2989,195:13755846,25943222 -k2989,196:17467150,25943222:992871 -k2989,196:18460021,25943222:992871 -) -(2989,197:6630773,26803315:11829248,505283,102891 -h2989,196:6630773,26803315:0,0,0 -r2989,266:6630773,26803315:0,608174,102891 -g2989,196:7941493,26803315 -g2989,196:7941493,26803315 -g2989,196:11711123,26803315 -g2989,196:13986533,26803315 -k2989,197:17582494,26803315:877528 -k2989,197:18460021,26803315:877527 -) -(2989,198:6630773,27663409:11829248,505283,102891 -h2989,197:6630773,27663409:0,0,0 -r2989,266:6630773,27663409:0,608174,102891 -g2989,197:7941493,27663409 -g2989,197:7941493,27663409 -g2989,197:12052566,27663409 -k2989,198:15853982,27663409:2606039 -k2989,198:18460021,27663409:2606039 -) -(2989,199:6630773,28523503:11829248,505283,134348 -h2989,198:6630773,28523503:0,0,0 -r2989,266:6630773,28523503:0,639631,134348 -g2989,198:7941493,28523503 -g2989,198:7941493,28523503 -g2989,198:10713010,28523503 -g2989,198:11268099,28523503 -g2989,198:13627395,28523503 -k2989,199:17402925,28523503:1057097 -k2989,199:18460021,28523503:1057096 -) -(2989,200:6630773,29383596:11829248,505283,102891 -h2989,199:6630773,29383596:0,0,0 -r2989,266:6630773,29383596:0,608174,102891 -g2989,199:7941493,29383596 -g2989,199:7941493,29383596 -g2989,199:9703756,29383596 -k2989,200:14679577,29383596:3780444 -k2989,200:18460021,29383596:3780444 -) -(2989,201:6630773,30243690:11829248,505283,102891 -h2989,200:6630773,30243690:0,0,0 -r2989,266:6630773,30243690:0,608174,102891 -g2989,200:7941493,30243690 -g2989,200:7941493,30243690 -g2989,200:10666480,30243690 -g2989,200:12941890,30243690 -k2989,201:17060172,30243690:1399849 -k2989,201:18460021,30243690:1399849 -) -(2989,202:6630773,31103783:11829248,505283,102891 -h2989,201:6630773,31103783:0,0,0 -r2989,266:6630773,31103783:0,608174,102891 -g2989,201:7941493,31103783 -g2989,201:7941493,31103783 -g2989,201:11183559,31103783 -k2989,202:16181007,31103783:2279015 -k2989,202:18460021,31103783:2279014 -) -(2989,203:6630773,31963877:11829248,513147,102891 -h2989,202:6630773,31963877:0,0,0 -r2989,266:6630773,31963877:0,616038,102891 -g2989,202:7941493,31963877 -g2989,202:7941493,31963877 -g2989,202:10203140,31963877 -k2989,203:15690797,31963877:2769224 -k2989,203:18460021,31963877:2769224 -) -(2989,204:6630773,32823971:11829248,513147,126483 -h2989,203:6630773,32823971:0,0,0 -r2989,266:6630773,32823971:0,639630,126483 -g2989,203:7941493,32823971 -g2989,203:7941493,32823971 -g2989,203:10385985,32823971 -g2989,203:12364516,32823971 -k2989,204:16009957,32823971:2450064 -k2989,204:18460021,32823971:2450064 -) -(2989,205:6630773,33684064:11829248,513147,126483 -h2989,204:6630773,33684064:0,0,0 -r2989,266:6630773,33684064:0,639630,126483 -g2989,204:7941493,33684064 -g2989,204:7941493,33684064 -g2989,204:10385985,33684064 -g2989,204:12364516,33684064 -k2989,205:16009957,33684064:2450064 -k2989,205:18460021,33684064:2450064 -) -(2989,206:6630773,34544158:11829248,513147,102891 -h2989,205:6630773,34544158:0,0,0 -r2989,266:6630773,34544158:0,616038,102891 -g2989,205:7941493,34544158 -g2989,205:7941493,34544158 -g2989,205:10836218,34544158 -g2989,205:13732254,34544158 -k2989,206:17455354,34544158:1004667 -k2989,206:18460021,34544158:1004667 -) -(2989,207:6630773,35404251:11829248,485622,134348 -h2989,206:6630773,35404251:0,0,0 -r2989,266:6630773,35404251:0,619970,134348 -g2989,206:7941493,35404251 -g2989,206:7941493,35404251 -g2989,206:11821879,35404251 -g2989,206:13390155,35404251 -k2989,207:17284305,35404251:1175717 -k2989,207:18460021,35404251:1175716 -) -(2989,208:6630773,36264345:11829248,505283,134348 -h2989,207:6630773,36264345:0,0,0 -r2989,266:6630773,36264345:0,639631,134348 -g2989,207:7941493,36264345 -g2989,207:7941493,36264345 -g2989,207:11456844,36264345 -g2989,207:15337230,36264345 -k2989,208:17496314,36264345:963707 -k2989,208:18460021,36264345:963707 -) -(2989,209:6630773,37124439:11829248,505283,102891 -h2989,208:6630773,37124439:0,0,0 -r2989,266:6630773,37124439:0,608174,102891 -g2989,208:7941493,37124439 -g2989,208:7941493,37124439 -g2989,208:11456844,37124439 -g2989,208:14683181,37124439 -k2989,209:17169290,37124439:1290732 -k2989,209:18460021,37124439:1290731 -) -(2989,210:6630773,37984532:11829248,505283,126483 -h2989,209:6630773,37984532:0,0,0 -r2989,266:6630773,37984532:0,631766,126483 -g2989,209:7941493,37984532 -g2989,209:7941493,37984532 -g2989,209:10600944,37984532 -g2989,209:12416291,37984532 -g2989,209:14691701,37984532 -k2989,210:17173550,37984532:1286472 -k2989,210:18460021,37984532:1286471 -) -(2989,211:6630773,38844626:11829248,505283,126483 -h2989,210:6630773,38844626:0,0,0 -r2989,266:6630773,38844626:0,631766,126483 -g2989,210:7941493,38844626 -g2989,210:7941493,38844626 -g2989,210:11682288,38844626 -g2989,210:14371885,38844626 -k2989,211:17775170,38844626:684852 -k2989,211:18460021,38844626:684851 -) -(2989,212:6630773,39704719:11829248,505283,134348 -h2989,211:6630773,39704719:0,0,0 -r2989,266:6630773,39704719:0,639631,134348 -g2989,211:7941493,39704719 -g2989,211:7941493,39704719 -g2989,211:12125966,39704719 -k2989,211:18460021,39704719:2652898 -) -(2989,212:9252213,40546207:9207808,485622,11795 -k2989,212:15215334,40546207:3244688 -k2989,212:18460021,40546207:3244687 -) -(2989,213:6630773,41406301:11829248,513147,134348 -h2989,212:6630773,41406301:0,0,0 -r2989,266:6630773,41406301:0,647495,134348 -g2989,212:7941493,41406301 -g2989,212:7941493,41406301 -g2989,212:10948284,41406301 -g2989,212:11806805,41406301 -g2989,212:13569068,41406301 -g2989,212:15137344,41406301 -k2989,213:18157899,41406301:302122 -k2989,213:18460021,41406301:302122 -) -(2989,214:6630773,42266395:11829248,505283,102891 -h2989,213:6630773,42266395:0,0,0 -r2989,266:6630773,42266395:0,608174,102891 -g2989,213:8596853,42266395 -g2989,213:8596853,42266395 -g2989,213:10134983,42266395 -k2989,214:14895191,42266395:3564831 -k2989,214:18460021,42266395:3564830 -) -(2989,215:6630773,43126488:11829248,485622,102891 -h2989,214:6630773,43126488:0,0,0 -r2989,266:6630773,43126488:0,588513,102891 -g2989,214:7941493,43126488 -g2989,214:7941493,43126488 -g2989,214:11840885,43126488 -k2989,215:15748142,43126488:2711880 -k2989,215:18460021,43126488:2711879 -) -(2989,216:6630773,43986582:11829248,505283,126483 -h2989,215:6630773,43986582:0,0,0 -r2989,266:6630773,43986582:0,631766,126483 -g2989,215:7941493,43986582 -g2989,215:7941493,43986582 -g2989,215:9418019,43986582 -g2989,215:13825315,43986582 -k2989,216:17501885,43986582:958137 -k2989,216:18460021,43986582:958136 -) -(2989,217:6630773,44846675:11829248,505283,134348 -h2989,216:6630773,44846675:0,0,0 -r2989,266:6630773,44846675:0,639631,134348 -g2989,216:7941493,44846675 -g2989,216:7941493,44846675 -g2989,216:9748320,44846675 -g2989,216:10633711,44846675 -g2989,216:11277929,44846675 -g2989,216:13940656,44846675 -k2989,217:17559555,44846675:900466 -k2989,217:18460021,44846675:900466 -) -(2989,218:6630773,45706769:11829248,485622,134348 -h2989,217:6630773,45706769:0,0,0 -r2989,266:6630773,45706769:0,619970,134348 -g2989,217:7941493,45706769 -g2989,217:7941493,45706769 -g2989,217:9828929,45706769 -g2989,217:13191581,45706769 -k2989,218:17185018,45706769:1275004 -k2989,218:18460021,45706769:1275003 ) -] -k2989,266:19606901,45706769:1146880 -r2989,266:19606901,45706769:0,40242380,134348 -k2989,266:20753781,45706769:1146880 -[2989,266:20753781,45706769:11829248,40108032,11795 -(2989,219:20753781,6254097:11829248,505283,126483 -h2989,218:20753781,6254097:0,0,0 -r2989,266:20753781,6254097:0,631766,126483 -g2989,218:22064501,6254097 -g2989,218:22064501,6254097 -g2989,218:23928344,6254097 -g2989,218:28039417,6254097 -k2989,219:31670440,6254097:912590 -k2989,219:32583029,6254097:912589 -) -(2989,220:20753781,7099440:11829248,505283,102891 -h2989,219:20753781,7099440:0,0,0 -r2989,266:20753781,7099440:0,608174,102891 -g2989,219:22064501,7099440 -g2989,219:22064501,7099440 -g2989,219:24339911,7099440 -g2989,219:25908187,7099440 -k2989,220:30604825,7099440:1978205 -k2989,220:32583029,7099440:1978204 -) -(2989,221:20753781,7944783:11829248,513147,134348 -h2989,220:20753781,7944783:0,0,0 -r2989,266:20753781,7944783:0,647495,134348 -g2989,220:22064501,7944783 -g2989,220:22064501,7944783 -g2989,220:22858797,7944783 -g2989,220:26739183,7944783 -k2989,221:30258795,7944783:2324235 -k2989,221:32583029,7944783:2324234 -) -(2989,222:20753781,8790126:11829248,505283,102891 -h2989,221:20753781,8790126:0,0,0 -r2989,266:20753781,8790126:0,608174,102891 -g2989,221:22064501,8790126 -g2989,221:22064501,8790126 -g2989,221:23532507,8790126 -g2989,221:25807917,8790126 -k2989,222:29793162,8790126:2789868 -k2989,222:32583029,8790126:2789867 -) -(2989,223:20753781,9635469:11829248,485622,102891 -h2989,222:20753781,9635469:0,0,0 -r2989,266:20753781,9635469:0,588513,102891 -g2989,222:22064501,9635469 -g2989,222:22064501,9635469 -g2989,222:25290838,9635469 -g2989,222:26859114,9635469 -k2989,223:31080288,9635469:1502741 -k2989,223:32583029,9635469:1502741 -) -(2989,224:20753781,10480812:11829248,513147,134348 -h2989,223:20753781,10480812:0,0,0 -r2989,266:20753781,10480812:0,647495,134348 -g2989,223:22064501,10480812 -g2989,223:22064501,10480812 -g2989,223:25195155,10480812 -g2989,223:26053676,10480812 -g2989,223:27530202,10480812 -g2989,223:30192929,10480812 -k2989,224:31985668,10480812:597362 -k2989,224:32583029,10480812:597361 -) -(2989,225:20753781,11326155:11829248,485622,126483 -h2989,224:20753781,11326155:0,0,0 -r2989,266:20753781,11326155:0,612105,126483 -g2989,224:22064501,11326155 -g2989,224:22064501,11326155 -g2989,224:25254138,11326155 -g2989,224:28150174,11326155 -k2989,225:31725818,11326155:857211 -k2989,225:32583029,11326155:857211 -) -(2989,226:20753781,12171498:11829248,485622,126483 -h2989,225:20753781,12171498:0,0,0 -r2989,266:20753781,12171498:0,612105,126483 -g2989,225:22064501,12171498 -g2989,225:22064501,12171498 -g2989,225:23891644,12171498 -g2989,225:25663082,12171498 -k2989,226:29720744,12171498:2862285 -k2989,226:32583029,12171498:2862285 -) -(2989,227:20753781,13016841:11829248,505283,134348 -h2989,226:20753781,13016841:0,0,0 -r2989,266:20753781,13016841:0,639631,134348 -g2989,226:22064501,13016841 -g2989,226:22064501,13016841 -g2989,226:23489909,13016841 -g2989,226:24880583,13016841 -g2989,226:26593694,13016841 -k2989,226:32583029,13016841:2308178 -) -(2989,227:23375221,13858329:9207808,485622,11795 -k2989,227:29338342,13858329:3244688 -k2989,227:32583029,13858329:3244687 -) -(2989,228:20753781,14703672:11829248,505283,126483 -h2989,227:20753781,14703672:0,0,0 -r2989,266:20753781,14703672:0,631766,126483 -g2989,227:22719861,14703672 -g2989,227:22719861,14703672 -g2989,227:26005180,14703672 -k2989,228:29891793,14703672:2691236 -k2989,228:32583029,14703672:2691236 -) -(2989,229:20753781,15549015:11829248,505283,102891 -h2989,228:20753781,15549015:0,0,0 -r2989,266:20753781,15549015:0,608174,102891 -g2989,228:22064501,15549015 -g2989,228:22064501,15549015 -g2989,228:24754098,15549015 -g2989,228:26322374,15549015 -k2989,229:30811918,15549015:1771111 -k2989,229:32583029,15549015:1771111 -) -(2989,230:20753781,16394359:11829248,505283,134348 -h2989,229:20753781,16394359:0,0,0 -r2989,266:20753781,16394359:0,639631,134348 -g2989,229:22064501,16394359 -g2989,229:22064501,16394359 -g2989,229:23274295,16394359 -g2989,229:26636947,16394359 -k2989,230:30969205,16394359:1613825 -k2989,230:32583029,16394359:1613824 -) -(2989,231:20753781,17239702:11829248,505283,102891 -h2989,230:20753781,17239702:0,0,0 -r2989,266:20753781,17239702:0,608174,102891 -g2989,230:22064501,17239702 -g2989,230:22064501,17239702 -g2989,230:23689138,17239702 -g2989,230:25079812,17239702 -g2989,230:26659885,17239702 -g2989,230:28935295,17239702 -k2989,231:32118379,17239702:464651 -k2989,231:32583029,17239702:464650 -) -(2989,232:20753781,18085045:11829248,505283,126483 -h2989,231:20753781,18085045:0,0,0 -r2989,266:20753781,18085045:0,631766,126483 -g2989,231:22064501,18085045 -g2989,231:22064501,18085045 -g2989,231:24605987,18085045 -g2989,231:25973723,18085045 -g2989,231:27364397,18085045 -k2989,231:32583029,18085045:3770286 -) -(2989,232:23375221,18926533:9207808,485622,134348 -g2989,231:27255607,18926533 -k2989,232:31278535,18926533:1304495 -k2989,232:32583029,18926533:1304494 -) -(2989,233:20753781,19771876:11829248,505283,134348 -h2989,232:20753781,19771876:0,0,0 -g2989,232:23341797,19771876 -g2989,232:25699782,19771876 -g2989,232:28410351,19771876 -k2989,233:31094379,19771876:1488651 -k2989,233:32583029,19771876:1488650 -) -(2989,234:20753781,20617219:11829248,505283,134348 -h2989,233:20753781,20617219:0,0,0 -g2989,233:22819475,20617219 -g2989,233:24387751,20617219 -g2989,233:25956027,20617219 -k2989,234:29867217,20617219:2715813 -k2989,234:32583029,20617219:2715812 -) -(2989,235:20753781,21462562:11829248,505283,134348 -h2989,234:20753781,21462562:0,0,0 -g2989,234:22237516,21462562 -g2989,234:25155834,21462562 -g2989,234:28762935,21462562 -k2989,234:32583029,21462562:1070203 -) -(2989,235:23375221,22304050:9207808,485622,11795 -k2989,235:28576814,22304050:4006216 -k2989,235:32583029,22304050:4006215 -) -(2989,236:20753781,23149393:11829248,505283,134348 -h2989,235:20753781,23149393:0,0,0 -g2989,235:24451321,23149393 -k2989,236:29114864,23149393:3468166 -k2989,236:32583029,23149393:3468165 -) -(2989,237:20753781,23994736:11829248,505283,134348 -h2989,236:20753781,23994736:0,0,0 -g2989,236:24458531,23994736 -g2989,236:28062355,23994736 -g2989,236:29070954,23994736 -k2989,236:32583029,23994736:1949041 -) -(2989,237:23375221,24836224:9207808,485622,11795 -k2989,237:29338342,24836224:3244688 -k2989,237:32583029,24836224:3244687 -) -(2989,238:20753781,25681567:11829248,473825,134348 -h2989,237:20753781,25681567:0,0,0 -k2989,238:28109870,25681567:4473160 -k2989,238:32583029,25681567:4473159 -) -(2989,239:20753781,26526910:11829248,505283,126483 -h2989,238:20753781,26526910:0,0,0 -r2989,266:20753781,26526910:0,631766,126483 -k2989,238:22064501,26526910:1310720 -k2989,238:22064501,26526910:0 -k2989,238:27310003,26526910:188744 -k2989,238:28114784,26526910:188743 -k2989,238:31387652,26526910:188744 -k2989,239:32583029,26526910:0 -k2989,239:32583029,26526910:0 -) -(2989,243:20753781,28091863:11829248,505283,102891 -h2989,242:20753781,28091863:0,0,0 -g2989,242:23419785,28091863 -g2989,242:24988061,28091863 -g2989,242:26556337,28091863 -k2989,243:30167372,28091863:2415658 -k2989,243:32583029,28091863:2415657 -) -(2989,244:20753781,28937206:11829248,505283,102891 -h2989,243:20753781,28937206:0,0,0 -g2989,243:23493185,28937206 -k2989,244:28635796,28937206:3947234 -k2989,244:32583029,28937206:3947233 -) -(2989,245:20753781,29782549:11829248,485622,102891 -h2989,244:20753781,29782549:0,0,0 -g2989,244:22936129,29782549 -g2989,244:24504405,29782549 -k2989,245:29141406,29782549:3441624 -k2989,245:32583029,29782549:3441623 -) -(2989,249:20753781,31347502:11829248,505283,134348 -h2989,248:20753781,31347502:0,0,0 -g2989,248:22213923,31347502 -g2989,248:23380463,31347502 -g2989,248:26843385,31347502 -k2989,248:32583029,31347502:1607599 -) -(2989,249:23375221,32188990:9207808,473825,7863 -k2989,249:30007792,32188990:2575237 -k2989,249:32583029,32188990:2575237 -) -(2989,250:20753781,33034333:11829248,513147,102891 -h2989,249:20753781,33034333:0,0,0 -g2989,249:22040252,33034333 -g2989,249:23187132,33034333 -g2989,249:24005021,33034333 -k2989,250:28692484,33034333:3890545 -k2989,250:32583029,33034333:3890545 -) -(2989,251:20753781,33879676:11829248,477757,134348 -h2989,250:20753781,33879676:0,0,0 -g2989,250:23373910,33879676 -k2989,251:28376929,33879676:4206101 -k2989,251:32583029,33879676:4206100 -) -(2989,252:20753781,34725019:11829248,505283,134348 -h2989,251:20753781,34725019:0,0,0 -g2989,251:24124953,34725019 -k2989,252:29048673,34725019:3534357 -k2989,252:32583029,34725019:3534356 -) -(2989,253:20753781,35570363:11829248,513147,102891 -h2989,252:20753781,35570363:0,0,0 -r2989,266:20753781,35570363:0,616038,102891 -g2989,252:22064501,35570363 -g2989,252:22064501,35570363 -g2989,252:23582970,35570363 -g2989,252:25269211,35570363 -k2989,253:30285337,35570363:2297693 -k2989,253:32583029,35570363:2297692 -) -(2989,254:20753781,36415706:11829248,513147,102891 -h2989,253:20753781,36415706:0,0,0 -r2989,266:20753781,36415706:0,616038,102891 -g2989,253:22064501,36415706 -g2989,253:22064501,36415706 -g2989,253:23702901,36415706 -g2989,253:25389142,36415706 -k2989,254:30345302,36415706:2237727 -k2989,254:32583029,36415706:2237727 -) -(2989,255:20753781,37261049:11829248,505283,102891 -h2989,254:20753781,37261049:0,0,0 -r2989,266:20753781,37261049:0,608174,102891 -g2989,254:22064501,37261049 -g2989,254:22064501,37261049 -g2989,254:25590993,37261049 -k2989,255:30446228,37261049:2136802 -k2989,255:32583029,37261049:2136801 -) -(2989,256:20753781,38106392:11829248,513147,102891 -h2989,255:20753781,38106392:0,0,0 -r2989,266:20753781,38106392:0,616038,102891 -g2989,255:22064501,38106392 -g2989,255:22064501,38106392 -g2989,255:23549546,38106392 -g2989,255:25235787,38106392 -k2989,256:30268625,38106392:2314405 -k2989,256:32583029,38106392:2314404 -) -(2989,257:20753781,38951735:11829248,505283,134348 -h2989,256:20753781,38951735:0,0,0 -r2989,266:20753781,38951735:0,639631,134348 -g2989,256:22064501,38951735 -g2989,256:22064501,38951735 -g2989,256:24814391,38951735 -k2989,257:29296399,38951735:3286631 -k2989,257:32583029,38951735:3286630 -) -(2989,258:20753781,39797078:11829248,513147,102891 -h2989,257:20753781,39797078:0,0,0 -r2989,266:20753781,39797078:0,616038,102891 -g2989,257:22064501,39797078 -g2989,257:22064501,39797078 -g2989,257:24421175,39797078 -g2989,257:26107416,39797078 -k2989,258:30704439,39797078:1878590 -k2989,258:32583029,39797078:1878590 -) -(2989,259:20753781,40642421:11829248,513147,102891 -h2989,258:20753781,40642421:0,0,0 -r2989,266:20753781,40642421:0,616038,102891 -g2989,258:22064501,40642421 -g2989,258:22064501,40642421 -g2989,258:23965700,40642421 -g2989,258:27249053,40642421 -k2989,258:32583029,40642421:2401240 -) -(2989,259:23375221,41483909:9207808,485622,11795 -k2989,259:29338342,41483909:3244688 -k2989,259:32583029,41483909:3244687 -) -(2989,260:20753781,42329252:11829248,505283,126483 -h2989,259:20753781,42329252:0,0,0 -r2989,266:20753781,42329252:0,631766,126483 -g2989,259:22064501,42329252 -g2989,259:22064501,42329252 -g2989,259:24886481,42329252 -g2989,259:27597050,42329252 -k2989,260:31449256,42329252:1133773 -k2989,260:32583029,42329252:1133773 -) -(2989,261:20753781,43174595:11829248,485622,102891 -h2989,260:20753781,43174595:0,0,0 -r2989,266:20753781,43174595:0,588513,102891 -g2989,260:22064501,43174595 -g2989,260:22064501,43174595 -g2989,260:24518169,43174595 -g2989,260:28727546,43174595 -k2989,261:32014504,43174595:568525 -k2989,261:32583029,43174595:568525 -) -(2989,262:20753781,44019938:11829248,513147,102891 -h2989,261:20753781,44019938:0,0,0 -r2989,266:20753781,44019938:0,616038,102891 -g2989,261:22064501,44019938 -g2989,261:22064501,44019938 -g2989,261:23489909,44019938 -g2989,261:25176150,44019938 -k2989,262:30238806,44019938:2344223 -k2989,262:32583029,44019938:2344223 -) -(2989,263:20753781,44865281:11829248,505283,102891 -h2989,262:20753781,44865281:0,0,0 -r2989,266:20753781,44865281:0,608174,102891 -g2989,262:22064501,44865281 -g2989,262:22064501,44865281 -g2989,262:25887216,44865281 -g2989,262:27277890,44865281 -k2989,262:32583029,44865281:1622671 -) -(2989,263:23375221,45706769:9207808,485622,11795 -k2989,263:29338342,45706769:3244688 -k2989,263:32583029,45706769:3244687 +k1,1481:3078556,49800853:-34777008 ) ] -(2989,266:32583029,45706769:0,355205,126483 -h2989,266:32583029,45706769:420741,355205,126483 -k2989,266:32583029,45706769:-420741 +g1,1481:6630773,4812305 +g1,1481:6630773,4812305 +g1,1481:8671564,4812305 +g1,1481:11756343,4812305 +k1,1481:31786111,4812305:20029768 ) ) ] -(2989,266:32583029,45706769:0,0,0 -g2989,266:32583029,45706769 +[1,1481:6630773,45706769:25952256,40108032,0 +(1,1481:6630773,45706769:25952256,40108032,0 +(1,1481:6630773,45706769:0,0,0 +g1,1481:6630773,45706769 ) +[1,1481:6630773,45706769:25952256,40108032,0 +(1,1430:6630773,6254097:25952256,513147,126483 +k1,1429:12402707,6254097:190233 +k1,1429:13578601,6254097:190233 +k1,1429:15827975,6254097:190233 +k1,1429:17560926,6254097:190233 +k1,1429:18871169,6254097:190233 +k1,1429:21731995,6254097:190234 +k1,1429:22968183,6254097:190233 +k1,1429:24171603,6254097:190233 +k1,1429:25801007,6254097:190233 +k1,1429:26594171,6254097:190233 +k1,1429:29257077,6254097:190233 +k1,1429:32583029,6254097:0 +) +(1,1430:6630773,7095585:25952256,513147,126483 +g1,1429:8593576,7095585 +g1,1429:11818602,7095585 +g1,1429:13122113,7095585 +g1,1429:15619690,7095585 +(1,1429:15619690,7095585:0,459977,115847 +r1,1481:16681379,7095585:1061689,575824,115847 +k1,1429:15619690,7095585:-1061689 +) +(1,1429:15619690,7095585:1061689,459977,115847 +k1,1429:15619690,7095585:3277 +h1,1429:16678102,7095585:0,411205,112570 +) +g1,1429:17054278,7095585 +(1,1429:17054278,7095585:0,452978,115847 +r1,1481:18819391,7095585:1765113,568825,115847 +k1,1429:17054278,7095585:-1765113 +) +(1,1429:17054278,7095585:1765113,452978,115847 +k1,1429:17054278,7095585:3277 +h1,1429:18816114,7095585:0,411205,112570 +) +g1,1429:19018620,7095585 +g1,1429:19900734,7095585 +(1,1429:19900734,7095585:0,414482,115847 +r1,1481:22017559,7095585:2116825,530329,115847 +k1,1429:19900734,7095585:-2116825 +) +(1,1429:19900734,7095585:2116825,414482,115847 +k1,1429:19900734,7095585:3277 +h1,1429:22014282,7095585:0,411205,112570 +) +g1,1429:22216788,7095585 +k1,1430:32583029,7095585:8447347 +g1,1430:32583029,7095585 +) +v1,1432:6630773,8461361:0,393216,0 +(1,1433:6630773,13563953:25952256,5495808,0 +g1,1433:6630773,13563953 +g1,1433:6303093,13563953 +r1,1481:6401397,13563953:98304,5495808,0 +g1,1433:6600626,13563953 +g1,1433:6797234,13563953 +[1,1433:6797234,13563953:25785795,5495808,0 +(1,1433:6797234,9230030:25785795,1161885,196608 +(1,1432:6797234,9230030:0,1161885,196608 +r1,1481:8344870,9230030:1547636,1358493,196608 +k1,1432:6797234,9230030:-1547636 +) +(1,1432:6797234,9230030:1547636,1161885,196608 +) +k1,1432:8545179,9230030:200309 +k1,1432:13084627,9230030:200309 +(1,1432:13084627,9230030:0,459977,115847 +r1,1481:14146316,9230030:1061689,575824,115847 +k1,1432:13084627,9230030:-1061689 +) +(1,1432:13084627,9230030:1061689,459977,115847 +k1,1432:13084627,9230030:3277 +h1,1432:14143039,9230030:0,411205,112570 +) +k1,1432:14520294,9230030:200308 +(1,1432:14520294,9230030:0,452978,115847 +r1,1481:16285407,9230030:1765113,568825,115847 +k1,1432:14520294,9230030:-1765113 +) +(1,1432:14520294,9230030:1765113,452978,115847 +k1,1432:14520294,9230030:3277 +h1,1432:16282130,9230030:0,411205,112570 +) +k1,1432:16485716,9230030:200309 +k1,1432:17877470,9230030:200309 +(1,1432:17877470,9230030:0,414482,115847 +r1,1481:19994295,9230030:2116825,530329,115847 +k1,1432:17877470,9230030:-2116825 +) +(1,1432:17877470,9230030:2116825,414482,115847 +k1,1432:17877470,9230030:3277 +h1,1432:19991018,9230030:0,411205,112570 +) +k1,1432:20194604,9230030:200309 +k1,1432:22140137,9230030:200309 +k1,1432:23332006,9230030:200309 +k1,1432:27122376,9230030:200308 +k1,1432:28008847,9230030:200309 +k1,1432:31692395,9230030:200309 +k1,1433:32583029,9230030:0 +) +(1,1433:6797234,10071518:25785795,513147,134348 +k1,1432:9643201,10071518:245498 +k1,1432:13192369,10071518:245498 +k1,1432:14097158,10071518:245497 +k1,1432:17084682,10071518:245498 +k1,1432:21020512,10071518:245498 +k1,1432:21893845,10071518:245498 +k1,1432:24944284,10071518:245498 +k1,1432:26108596,10071518:245497 +k1,1432:28146504,10071518:245498 +k1,1432:31417799,10071518:245498 +k1,1432:32583029,10071518:0 +) +(1,1433:6797234,10913006:25785795,513147,134348 +k1,1432:11196229,10913006:181753 +k1,1432:13905050,10913006:181753 +k1,1432:14772965,10913006:181753 +k1,1432:18238073,10913006:181754 +k1,1432:18775686,10913006:181753 +k1,1432:21652935,10913006:181753 +k1,1432:22450726,10913006:181753 +k1,1432:25016023,10913006:181753 +k1,1432:26145427,10913006:181753 +k1,1432:27778803,10913006:181754 +k1,1432:28619848,10913006:181753 +k1,1432:29820686,10913006:181753 +k1,1432:32583029,10913006:0 +) +(1,1433:6797234,11754494:25785795,513147,134348 +k1,1432:9929149,11754494:178207 +k1,1432:10766649,11754494:178208 +k1,1432:12453495,11754494:178207 +k1,1432:14513897,11754494:178208 +k1,1432:15615506,11754494:178207 +k1,1432:17483232,11754494:178208 +k1,1432:18277477,11754494:178207 +k1,1432:20200909,11754494:178208 +k1,1432:21398201,11754494:178207 +k1,1432:23749583,11754494:178208 +k1,1432:24587082,11754494:178207 +k1,1432:26798872,11754494:178208 +k1,1432:30024503,11754494:178207 +k1,1432:32583029,11754494:0 +) +(1,1433:6797234,12595982:25785795,505283,126483 +k1,1432:7414723,12595982:261629 +k1,1432:9091274,12595982:261629 +k1,1432:10457185,12595982:261629 +k1,1432:11466580,12595982:261629 +k1,1432:13766379,12595982:261629 +k1,1432:14644046,12595982:261629 +k1,1432:17747317,12595982:261630 +k1,1432:19200391,12595982:261629 +k1,1432:20975246,12595982:261629 +k1,1432:21852913,12595982:261629 +k1,1432:25776038,12595982:261629 +k1,1432:29258762,12595982:261629 +k1,1432:30723632,12595982:261629 +k1,1432:31516758,12595982:261629 +k1,1432:32583029,12595982:0 +) +(1,1433:6797234,13437470:25785795,513147,126483 +g1,1432:9626423,13437470 +g1,1432:10441690,13437470 +g1,1432:11660004,13437470 +g1,1432:13226314,13437470 +g1,1432:14084835,13437470 +g1,1432:16076474,13437470 +k1,1433:32583029,13437470:13307087 +g1,1433:32583029,13437470 +) +] +g1,1433:32583029,13563953 +) +h1,1433:6630773,13563953:0,0,0 +(1,1436:6630773,14929729:25952256,513147,126483 +h1,1435:6630773,14929729:983040,0,0 +k1,1435:9076534,14929729:266034 +k1,1435:12104911,14929729:266034 +k1,1435:14163355,14929729:266034 +k1,1435:17455186,14929729:266034 +k1,1435:18337258,14929729:266034 +k1,1435:20037220,14929729:266034 +k1,1435:20718031,14929729:265968 +k1,1435:22727323,14929729:266034 +k1,1435:23609395,14929729:266034 +k1,1435:24894514,14929729:266034 +k1,1435:26715717,14929729:266034 +k1,1435:27641043,14929729:266034 +k1,1435:28926162,14929729:266034 +k1,1435:31202841,14929729:266034 +k1,1435:32583029,14929729:0 +) +(1,1436:6630773,15771217:25952256,513147,134348 +k1,1435:8851365,15771217:172592 +k1,1435:9971609,15771217:172593 +k1,1435:11652840,15771217:172592 +(1,1435:11652840,15771217:0,414482,115847 +r1,1481:12011106,15771217:358266,530329,115847 +k1,1435:11652840,15771217:-358266 +) +(1,1435:11652840,15771217:358266,414482,115847 +k1,1435:11652840,15771217:3277 +h1,1435:12007829,15771217:0,411205,112570 +) +k1,1435:12183699,15771217:172593 +k1,1435:15810694,15771217:172592 +k1,1435:17002372,15771217:172593 +k1,1435:18730133,15771217:172592 +k1,1435:19562018,15771217:172593 +k1,1435:20753695,15771217:172592 +k1,1435:22885814,15771217:172593 +k1,1435:24438594,15771217:172592 +k1,1435:26621832,15771217:172593 +k1,1435:29004298,15771217:172592 +k1,1435:30195976,15771217:172593 +k1,1435:31923737,15771217:172592 +k1,1435:32583029,15771217:0 +) +(1,1436:6630773,16612705:25952256,513147,126483 +k1,1435:7822942,16612705:173084 +k1,1435:9676369,16612705:173084 +k1,1435:12628180,16612705:173084 +k1,1435:13562792,16612705:173084 +k1,1435:14754961,16612705:173084 +k1,1435:17299793,16612705:173084 +k1,1435:20342043,16612705:173084 +(1,1435:20342043,16612705:0,452978,115847 +r1,1481:23162292,16612705:2820249,568825,115847 +k1,1435:20342043,16612705:-2820249 +) +(1,1435:20342043,16612705:2820249,452978,115847 +k1,1435:20342043,16612705:3277 +h1,1435:23159015,16612705:0,411205,112570 +) +k1,1435:23335376,16612705:173084 +k1,1435:24699905,16612705:173084 +(1,1435:24699905,16612705:0,452978,115847 +r1,1481:27520154,16612705:2820249,568825,115847 +k1,1435:24699905,16612705:-2820249 +) +(1,1435:24699905,16612705:2820249,452978,115847 +k1,1435:24699905,16612705:3277 +h1,1435:27516877,16612705:0,411205,112570 +) +k1,1435:27693238,16612705:173084 +k1,1435:29937260,16612705:173084 +k1,1435:30466204,16612705:173084 +(1,1435:30466204,16612705:0,414482,115847 +r1,1481:32583029,16612705:2116825,530329,115847 +k1,1435:30466204,16612705:-2116825 +) +(1,1435:30466204,16612705:2116825,414482,115847 +k1,1435:30466204,16612705:3277 +h1,1435:32579752,16612705:0,411205,112570 +) +k1,1435:32583029,16612705:0 +) +(1,1436:6630773,17454193:25952256,505283,134348 +k1,1435:7481442,17454193:167784 +(1,1435:7481442,17454193:0,452978,115847 +r1,1481:8894843,17454193:1413401,568825,115847 +k1,1435:7481442,17454193:-1413401 +) +(1,1435:7481442,17454193:1413401,452978,115847 +k1,1435:7481442,17454193:3277 +h1,1435:8891566,17454193:0,411205,112570 +) +k1,1435:9062626,17454193:167783 +k1,1435:9916572,17454193:167784 +k1,1435:10855059,17454193:167784 +k1,1435:14095171,17454193:167784 +k1,1435:16468241,17454193:167783 +k1,1435:19194551,17454193:167784 +(1,1435:19194551,17454193:0,414482,115847 +r1,1481:19552817,17454193:358266,530329,115847 +k1,1435:19194551,17454193:-358266 +) +(1,1435:19194551,17454193:358266,414482,115847 +k1,1435:19194551,17454193:3277 +h1,1435:19549540,17454193:0,411205,112570 +) +k1,1435:19894271,17454193:167784 +(1,1435:19894271,17454193:0,452978,115847 +r1,1481:22714520,17454193:2820249,568825,115847 +k1,1435:19894271,17454193:-2820249 +) +(1,1435:19894271,17454193:2820249,452978,115847 +k1,1435:19894271,17454193:3277 +h1,1435:22711243,17454193:0,411205,112570 +) +k1,1435:22882304,17454193:167784 +k1,1435:25391033,17454193:167783 +k1,1435:25914677,17454193:167784 +(1,1435:25914677,17454193:0,452978,115847 +r1,1481:27328078,17454193:1413401,568825,115847 +k1,1435:25914677,17454193:-1413401 +) +(1,1435:25914677,17454193:1413401,452978,115847 +k1,1435:25914677,17454193:3277 +h1,1435:27324801,17454193:0,411205,112570 +) +k1,1435:27495862,17454193:167784 +k1,1435:28346531,17454193:167784 +k1,1435:29285017,17454193:167783 +(1,1435:29285017,17454193:0,414482,115847 +r1,1481:31050130,17454193:1765113,530329,115847 +k1,1435:29285017,17454193:-1765113 +) +(1,1435:29285017,17454193:1765113,414482,115847 +k1,1435:29285017,17454193:3277 +h1,1435:31046853,17454193:0,411205,112570 +) +k1,1435:31391584,17454193:167784 +k1,1436:32583029,17454193:0 +) +(1,1436:6630773,18295681:25952256,513147,126483 +(1,1435:6630773,18295681:0,452978,115847 +r1,1481:9451022,18295681:2820249,568825,115847 +k1,1435:6630773,18295681:-2820249 +) +(1,1435:6630773,18295681:2820249,452978,115847 +k1,1435:6630773,18295681:3277 +h1,1435:9447745,18295681:0,411205,112570 +) +k1,1435:9727243,18295681:276221 +k1,1435:12132730,18295681:276222 +k1,1435:15348241,18295681:276221 +k1,1435:16412860,18295681:276221 +k1,1435:19467808,18295681:276221 +k1,1435:21424373,18295681:276222 +k1,1435:22968060,18295681:276221 +k1,1435:23600141,18295681:276221 +k1,1435:26027909,18295681:276221 +k1,1435:27993649,18295681:276222 +(1,1435:27993649,18295681:0,452978,115847 +r1,1481:30813898,18295681:2820249,568825,115847 +k1,1435:27993649,18295681:-2820249 +) +(1,1435:27993649,18295681:2820249,452978,115847 +k1,1435:27993649,18295681:3277 +h1,1435:30810621,18295681:0,411205,112570 +) +k1,1435:31090119,18295681:276221 +k1,1435:32583029,18295681:0 +) +(1,1436:6630773,19137169:25952256,513147,134348 +k1,1435:7821660,19137169:171802 +k1,1435:12359471,19137169:171802 +k1,1435:15648165,19137169:171802 +k1,1435:16471395,19137169:171802 +k1,1435:17662282,19137169:171802 +k1,1435:20906411,19137169:171801 +k1,1435:23283500,19137169:171802 +k1,1435:24106730,19137169:171802 +k1,1435:25066930,19137169:171802 +(1,1435:25066930,19137169:0,459977,115847 +r1,1481:27887179,19137169:2820249,575824,115847 +k1,1435:25066930,19137169:-2820249 +) +(1,1435:25066930,19137169:2820249,459977,115847 +k1,1435:25066930,19137169:3277 +h1,1435:27883902,19137169:0,411205,112570 +) +k1,1435:28058981,19137169:171802 +k1,1435:31685186,19137169:171802 +k1,1435:32583029,19137169:0 +) +(1,1436:6630773,19978657:25952256,513147,126483 +k1,1435:8479751,19978657:152251 +k1,1435:10424412,19978657:152251 +k1,1435:13602460,19978657:152251 +k1,1435:14858994,19978657:152252 +k1,1435:15759011,19978657:152251 +k1,1435:17424488,19978657:152251 +k1,1435:18228167,19978657:152251 +k1,1435:20143992,19978657:152251 +k1,1435:21066947,19978657:152252 +k1,1435:21633994,19978657:152204 +k1,1435:24481741,19978657:152251 +k1,1435:25918498,19978657:152251 +k1,1435:28411695,19978657:152251 +k1,1435:28919807,19978657:152252 +k1,1435:30752401,19978657:152251 +k1,1435:31563944,19978657:152251 +k1,1435:32583029,19978657:0 +) +(1,1436:6630773,20820145:25952256,513147,134348 +k1,1435:8483867,20820145:199621 +k1,1435:9366372,20820145:199620 +k1,1435:9921853,20820145:199621 +k1,1435:12883816,20820145:199620 +k1,1435:14638606,20820145:199621 +k1,1435:15524389,20820145:199621 +k1,1435:16512407,20820145:199620 +k1,1435:19958026,20820145:199621 +k1,1435:20785481,20820145:199620 +k1,1435:22004187,20820145:199621 +k1,1435:23570889,20820145:199621 +k1,1435:24437665,20820145:199620 +(1,1435:24437665,20820145:0,452978,115847 +r1,1481:26906202,20820145:2468537,568825,115847 +k1,1435:24437665,20820145:-2468537 +) +(1,1435:24437665,20820145:2468537,452978,115847 +k1,1435:24437665,20820145:3277 +h1,1435:26902925,20820145:0,411205,112570 +) +k1,1435:27105823,20820145:199621 +k1,1435:28496888,20820145:199620 +(1,1435:28496888,20820145:0,452978,115847 +r1,1481:31317137,20820145:2820249,568825,115847 +k1,1435:28496888,20820145:-2820249 +) +(1,1435:28496888,20820145:2820249,452978,115847 +k1,1435:28496888,20820145:3277 +h1,1435:31313860,20820145:0,411205,112570 +) +k1,1435:31516758,20820145:199621 +k1,1435:32583029,20820145:0 +) +(1,1436:6630773,21661633:25952256,513147,134348 +k1,1435:8327651,21661633:230182 +k1,1435:9576919,21661633:230183 +k1,1435:11820367,21661633:230182 +k1,1435:12709842,21661633:230183 +k1,1435:13959109,21661633:230182 +k1,1435:16199936,21661633:230182 +k1,1435:19208846,21661633:230183 +k1,1435:20386679,21661633:230182 +k1,1435:22068483,21661633:230182 +k1,1435:24922072,21661633:230183 +k1,1435:25811546,21661633:230182 +k1,1435:27060814,21661633:230183 +k1,1435:30377742,21661633:230182 +k1,1435:32583029,21661633:0 +) +(1,1436:6630773,22503121:25952256,505283,134348 +k1,1435:7564020,22503121:247085 +k1,1435:8581809,22503121:247086 +k1,1435:12074892,22503121:247085 +k1,1435:14182544,22503121:247085 +k1,1435:15081057,22503121:247085 +k1,1435:16075909,22503121:247086 +k1,1435:19777397,22503121:247085 +k1,1435:20652317,22503121:247085 +k1,1435:24063481,22503121:247086 +(1,1435:24063481,22503121:0,452978,115847 +r1,1481:26532018,22503121:2468537,568825,115847 +k1,1435:24063481,22503121:-2468537 +) +(1,1435:24063481,22503121:2468537,452978,115847 +k1,1435:24063481,22503121:3277 +h1,1435:26528741,22503121:0,411205,112570 +) +k1,1435:26779103,22503121:247085 +k1,1435:27557685,22503121:247085 +k1,1435:29317996,22503121:247085 +k1,1435:30216510,22503121:247086 +k1,1435:32227169,22503121:247085 +k1,1435:32583029,22503121:0 +) +(1,1436:6630773,23344609:25952256,513147,134348 +k1,1435:9539479,23344609:213210 +k1,1435:10404118,23344609:213211 +k1,1435:11636413,23344609:213210 +k1,1435:14718790,23344609:213211 +k1,1435:16676568,23344609:213210 +k1,1435:17245638,23344609:213210 +k1,1435:20803807,23344609:213211 +k1,1435:21676309,23344609:213210 +k1,1435:22660223,23344609:213211 +k1,1435:24832959,23344609:213210 +k1,1435:26330675,23344609:213210 +k1,1435:27644891,23344609:213211 +k1,1435:29030540,23344609:213210 +k1,1435:29926636,23344609:213211 +k1,1435:31790043,23344609:213210 +k1,1436:32583029,23344609:0 +) +(1,1436:6630773,24186097:25952256,513147,126483 +k1,1435:9895185,24186097:172424 +k1,1435:11259054,24186097:172424 +(1,1435:11259054,24186097:0,452978,115847 +r1,1481:14079303,24186097:2820249,568825,115847 +k1,1435:11259054,24186097:-2820249 +) +(1,1435:11259054,24186097:2820249,452978,115847 +k1,1435:11259054,24186097:3277 +h1,1435:14076026,24186097:0,411205,112570 +) +k1,1435:14251728,24186097:172425 +k1,1435:15615597,24186097:172424 +(1,1435:15615597,24186097:0,452978,115847 +r1,1481:18435846,24186097:2820249,568825,115847 +k1,1435:15615597,24186097:-2820249 +) +(1,1435:15615597,24186097:2820249,452978,115847 +k1,1435:15615597,24186097:3277 +h1,1435:18432569,24186097:0,411205,112570 +) +k1,1435:18608270,24186097:172424 +k1,1435:19772254,24186097:172424 +k1,1435:21457905,24186097:172425 +k1,1435:22281757,24186097:172424 +k1,1435:24217755,24186097:172424 +k1,1435:24746039,24186097:172424 +k1,1435:27613960,24186097:172425 +k1,1435:28437812,24186097:172424 +k1,1435:29629321,24186097:172424 +k1,1435:32583029,24186097:0 +) +(1,1436:6630773,25027585:25952256,513147,134348 +k1,1435:7504187,25027585:214122 +k1,1435:8074169,25027585:214122 +k1,1435:10266168,25027585:214122 +k1,1435:11163175,25027585:214122 +k1,1435:12544493,25027585:214122 +(1,1435:12544493,25027585:0,452978,115847 +r1,1481:15013030,25027585:2468537,568825,115847 +k1,1435:12544493,25027585:-2468537 +) +(1,1435:12544493,25027585:2468537,452978,115847 +k1,1435:12544493,25027585:3277 +h1,1435:15009753,25027585:0,411205,112570 +) +k1,1435:15227152,25027585:214122 +k1,1435:17782220,25027585:214122 +k1,1435:18767045,25027585:214122 +k1,1435:20630708,25027585:214122 +k1,1435:21527715,25027585:214122 +k1,1435:22097697,25027585:214122 +k1,1435:23305345,25027585:214122 +k1,1435:24202352,25027585:214122 +k1,1435:24772334,25027585:214122 +k1,1435:26964333,25027585:214122 +k1,1435:30540452,25027585:214122 +k1,1435:31563944,25027585:214122 +k1,1435:32583029,25027585:0 +) +(1,1436:6630773,25869073:25952256,505283,134348 +k1,1435:8235043,25869073:161823 +k1,1435:9588312,25869073:161824 +k1,1435:13468648,25869073:161823 +k1,1435:14246510,25869073:161824 +k1,1435:16421599,25869073:161823 +k1,1435:17774867,25869073:161823 +k1,1435:19491860,25869073:161824 +k1,1435:21813094,25869073:161823 +k1,1435:22994002,25869073:161823 +k1,1435:25166471,25869073:161824 +k1,1435:28107021,25869073:161823 +k1,1435:29030373,25869073:161824 +k1,1435:30211281,25869073:161823 +k1,1435:32583029,25869073:0 +) +(1,1436:6630773,26710561:25952256,513147,7863 +k1,1436:32583029,26710561:23083090 +g1,1436:32583029,26710561 +) +(1,1437:6630773,28801821:25952256,564462,147783 +(1,1437:6630773,28801821:2450326,527696,0 +g1,1437:6630773,28801821 +g1,1437:9081099,28801821 +) +g1,1437:12662511,28801821 +g1,1437:16328989,28801821 +g1,1437:17279130,28801821 +g1,1437:20208852,28801821 +g1,1437:21776080,28801821 +k1,1437:32583029,28801821:9302439 +g1,1437:32583029,28801821 +) +(1,1440:6630773,30036525:25952256,513147,126483 +k1,1439:7735505,30036525:151183 +k1,1439:9192820,30036525:151182 +k1,1439:12476624,30036525:151183 +k1,1439:13646892,30036525:151183 +k1,1439:14890559,30036525:151182 +k1,1439:15708898,30036525:151183 +(1,1439:15708898,30036525:0,452978,115847 +r1,1481:18529147,30036525:2820249,568825,115847 +k1,1439:15708898,30036525:-2820249 +) +(1,1439:15708898,30036525:2820249,452978,115847 +k1,1439:15708898,30036525:3277 +h1,1439:18525870,30036525:0,411205,112570 +) +k1,1439:18854000,30036525:151183 +(1,1439:18854000,30036525:0,452978,115847 +r1,1481:21674249,30036525:2820249,568825,115847 +k1,1439:18854000,30036525:-2820249 +) +(1,1439:18854000,30036525:2820249,452978,115847 +k1,1439:18854000,30036525:3277 +h1,1439:21670972,30036525:0,411205,112570 +) +k1,1439:21825432,30036525:151183 +k1,1439:23168059,30036525:151182 +(1,1439:23168059,30036525:0,452978,115847 +r1,1481:25988308,30036525:2820249,568825,115847 +k1,1439:23168059,30036525:-2820249 +) +(1,1439:23168059,30036525:2820249,452978,115847 +k1,1439:23168059,30036525:3277 +h1,1439:25985031,30036525:0,411205,112570 +) +k1,1439:26313161,30036525:151183 +k1,1439:27092179,30036525:151183 +k1,1439:28262446,30036525:151182 +k1,1439:30714598,30036525:151183 +k1,1439:32583029,30036525:0 +) +(1,1440:6630773,30878013:25952256,513147,126483 +g1,1439:7698354,30878013 +g1,1439:9661157,30878013 +g1,1439:10216246,30878013 +g1,1439:14390889,30878013 +g1,1439:17285614,30878013 +g1,1439:18136271,30878013 +g1,1439:18691360,30878013 +k1,1440:32583029,30878013:11740122 +g1,1440:32583029,30878013 +) +v1,1442:6630773,32243789:0,393216,0 +(1,1443:6630773,35594921:25952256,3744348,0 +g1,1443:6630773,35594921 +g1,1443:6303093,35594921 +r1,1481:6401397,35594921:98304,3744348,0 +g1,1443:6600626,35594921 +g1,1443:6797234,35594921 +[1,1443:6797234,35594921:25785795,3744348,0 +(1,1443:6797234,32936109:25785795,1085536,298548 +(1,1442:6797234,32936109:0,1085536,298548 +r1,1481:8303649,32936109:1506415,1384084,298548 +k1,1442:6797234,32936109:-1506415 +) +(1,1442:6797234,32936109:1506415,1085536,298548 +) +k1,1442:8454263,32936109:150614 +k1,1442:9092417,32936109:150566 +k1,1442:12490340,32936109:150614 +k1,1442:13172451,32936109:150614 +k1,1442:14607571,32936109:150614 +k1,1442:15777270,32936109:150614 +k1,1442:19120798,32936109:150614 +k1,1442:21894818,32936109:150614 +k1,1442:24335261,32936109:150615 +k1,1442:25101913,32936109:150614 +k1,1442:26271612,32936109:150614 +k1,1442:27415752,32936109:150614 +k1,1442:28249251,32936109:150614 +k1,1442:30377742,32936109:150614 +k1,1442:32583029,32936109:0 +) +(1,1443:6797234,33777597:25785795,513147,134348 +k1,1442:7767931,33777597:284535 +k1,1442:11124794,33777597:284535 +k1,1442:12060758,33777597:284536 +k1,1442:13364378,33777597:284535 +(1,1442:13364378,33777597:0,414482,115847 +r1,1481:13722644,33777597:358266,530329,115847 +k1,1442:13364378,33777597:-358266 +) +(1,1442:13364378,33777597:358266,414482,115847 +k1,1442:13364378,33777597:3277 +h1,1442:13719367,33777597:0,411205,112570 +) +k1,1442:14007179,33777597:284535 +k1,1442:17572446,33777597:284535 +k1,1442:18516274,33777597:284536 +k1,1442:20593219,33777597:284535 +k1,1442:23903551,33777597:284535 +k1,1442:25320548,33777597:284535 +k1,1442:26352849,33777597:284535 +k1,1442:28766650,33777597:284536 +k1,1442:31256472,33777597:284535 +k1,1442:32227169,33777597:284535 +k1,1442:32583029,33777597:0 +) +(1,1443:6797234,34619085:25785795,513147,134348 +k1,1442:10151148,34619085:178695 +k1,1442:13402170,34619085:178694 +k1,1442:14232293,34619085:178695 +k1,1442:15430073,34619085:178695 +k1,1442:16914901,34619085:178695 +k1,1442:19222204,34619085:178694 +k1,1442:22681631,34619085:178695 +k1,1442:23519618,34619085:178695 +k1,1442:24717398,34619085:178695 +k1,1442:27267840,34619085:178694 +k1,1442:30315701,34619085:178695 +k1,1442:31563944,34619085:178695 +k1,1442:32583029,34619085:0 +) +(1,1443:6797234,35460573:25785795,513147,134348 +g1,1442:9691959,35460573 +g1,1442:12096475,35460573 +g1,1442:12981866,35460573 +g1,1442:16253423,35460573 +g1,1442:17104080,35460573 +(1,1442:17104080,35460573:0,414482,115847 +r1,1481:18165769,35460573:1061689,530329,115847 +k1,1442:17104080,35460573:-1061689 +) +(1,1442:17104080,35460573:1061689,414482,115847 +k1,1442:17104080,35460573:3277 +h1,1442:18162492,35460573:0,411205,112570 +) +g1,1442:18364998,35460573 +g1,1442:20186243,35460573 +g1,1442:21133238,35460573 +g1,1442:24868134,35460573 +g1,1442:26461314,35460573 +g1,1442:27863784,35460573 +k1,1443:32583029,35460573:1561065 +g1,1443:32583029,35460573 +) +] +g1,1443:32583029,35594921 +) +h1,1443:6630773,35594921:0,0,0 +v1,1446:6630773,37309675:0,393216,0 +(1,1455:6630773,39657384:25952256,2740925,196608 +g1,1455:6630773,39657384 +g1,1455:6630773,39657384 +g1,1455:6434165,39657384 +(1,1455:6434165,39657384:0,2740925,196608 +r1,1481:32779637,39657384:26345472,2937533,196608 +k1,1455:6434165,39657384:-26345472 +) +(1,1455:6434165,39657384:26345472,2740925,196608 +[1,1455:6630773,39657384:25952256,2544317,0 +(1,1448:6630773,37517293:25952256,404226,107478 +(1,1447:6630773,37517293:0,0,0 +g1,1447:6630773,37517293 +g1,1447:6630773,37517293 +g1,1447:6303093,37517293 +(1,1447:6303093,37517293:0,0,0 +) +g1,1447:6630773,37517293 +) +k1,1448:6630773,37517293:0 +g1,1448:12005250,37517293 +g1,1448:12637542,37517293 +g1,1448:13585979,37517293 +g1,1448:15166708,37517293 +g1,1448:18012019,37517293 +g1,1448:19592748,37517293 +g1,1448:20857331,37517293 +k1,1448:20857331,37517293:1573 +h1,1448:22755778,37517293:0,0,0 +k1,1448:32583029,37517293:9827251 +g1,1448:32583029,37517293 +) +(1,1449:6630773,38183471:25952256,410518,101187 +h1,1449:6630773,38183471:0,0,0 +g1,1449:9476084,38183471 +g1,1449:10424522,38183471 +g1,1449:13269834,38183471 +g1,1449:13902126,38183471 +g1,1449:14534418,38183471 +g1,1449:16431292,38183471 +g1,1449:18644312,38183471 +g1,1449:19592749,38183471 +g1,1449:21489623,38183471 +g1,1449:22438060,38183471 +g1,1449:24018789,38183471 +g1,1449:26231809,38183471 +k1,1449:26231809,38183471:14156 +h1,1449:27826693,38183471:0,0,0 +k1,1449:32583029,38183471:4756336 +g1,1449:32583029,38183471 +) +(1,1450:6630773,38849649:25952256,404226,76021 +h1,1450:6630773,38849649:0,0,0 +k1,1450:6630773,38849649:0 +h1,1450:10740667,38849649:0,0,0 +k1,1450:32583029,38849649:21842362 +g1,1450:32583029,38849649 +) +(1,1454:6630773,39581363:25952256,404226,76021 +(1,1452:6630773,39581363:0,0,0 +g1,1452:6630773,39581363 +g1,1452:6630773,39581363 +g1,1452:6303093,39581363 +(1,1452:6303093,39581363:0,0,0 +) +g1,1452:6630773,39581363 +) +g1,1454:7579210,39581363 +g1,1454:7895356,39581363 +g1,1454:9159939,39581363 +g1,1454:11056813,39581363 +g1,1454:12953687,39581363 +g1,1454:14850561,39581363 +g1,1454:16747435,39581363 +g1,1454:18644309,39581363 +g1,1454:20541183,39581363 +h1,1454:21489620,39581363:0,0,0 +k1,1454:32583029,39581363:11093409 +g1,1454:32583029,39581363 +) +] +) +g1,1455:32583029,39657384 +g1,1455:6630773,39657384 +g1,1455:6630773,39657384 +g1,1455:32583029,39657384 +g1,1455:32583029,39657384 +) +h1,1455:6630773,39853992:0,0,0 +v1,1459:6630773,41568746:0,393216,0 +(1,1463:6630773,41890134:25952256,714604,196608 +g1,1463:6630773,41890134 +g1,1463:6630773,41890134 +g1,1463:6434165,41890134 +(1,1463:6434165,41890134:0,714604,196608 +r1,1481:32779637,41890134:26345472,911212,196608 +k1,1463:6434165,41890134:-26345472 +) +(1,1463:6434165,41890134:26345472,714604,196608 +[1,1463:6630773,41890134:25952256,517996,0 +(1,1461:6630773,41782656:25952256,410518,107478 +(1,1460:6630773,41782656:0,0,0 +g1,1460:6630773,41782656 +g1,1460:6630773,41782656 +g1,1460:6303093,41782656 +(1,1460:6303093,41782656:0,0,0 +) +g1,1460:6630773,41782656 +) +g1,1461:8843793,41782656 +g1,1461:9792231,41782656 +g1,1461:13585980,41782656 +g1,1461:14534418,41782656 +g1,1461:17063584,41782656 +g1,1461:17695876,41782656 +h1,1461:18328167,41782656:0,0,0 +k1,1461:32583029,41782656:14254862 +g1,1461:32583029,41782656 +) +] +) +g1,1463:32583029,41890134 +g1,1463:6630773,41890134 +g1,1463:6630773,41890134 +g1,1463:32583029,41890134 +g1,1463:32583029,41890134 +) +h1,1463:6630773,42086742:0,0,0 +v1,1467:6630773,43801496:0,393216,0 +(1,1481:6630773,44681584:25952256,1273304,196608 +g1,1481:6630773,44681584 +g1,1481:6630773,44681584 +g1,1481:6434165,44681584 +(1,1481:6434165,44681584:0,1273304,196608 +r1,1481:32779637,44681584:26345472,1469912,196608 +k1,1481:6434165,44681584:-26345472 +) +(1,1481:6434165,44681584:26345472,1273304,196608 +[1,1481:6630773,44681584:25952256,1076696,0 +(1,1469:6630773,44015406:25952256,410518,101187 +(1,1468:6630773,44015406:0,0,0 +g1,1468:6630773,44015406 +g1,1468:6630773,44015406 +g1,1468:6303093,44015406 +(1,1468:6303093,44015406:0,0,0 +) +g1,1468:6630773,44015406 +) +g1,1469:7263065,44015406 +g1,1469:8211503,44015406 +g1,1469:11056815,44015406 +g1,1469:11689107,44015406 +g1,1469:14850564,44015406 +g1,1469:16115147,44015406 +g1,1469:16747439,44015406 +g1,1469:19276605,44015406 +g1,1469:19908897,44015406 +g1,1469:20541189,44015406 +h1,1469:21173481,44015406:0,0,0 +k1,1469:32583029,44015406:11409548 +g1,1469:32583029,44015406 +) +(1,1470:6630773,44681584:25952256,404226,76021 +h1,1470:6630773,44681584:0,0,0 +k1,1470:6630773,44681584:0 +h1,1470:8527647,44681584:0,0,0 +k1,1470:32583029,44681584:24055382 +g1,1470:32583029,44681584 +) +] +) +g1,1481:32583029,44681584 +g1,1481:6630773,44681584 +g1,1481:6630773,44681584 +g1,1481:32583029,44681584 +g1,1481:32583029,44681584 ) ] -(2989,266:6630773,47279633:25952256,0,0 -h2989,266:6630773,47279633:25952256,0,0 +(1,1481:32583029,45706769:0,0,0 +g1,1481:32583029,45706769 ) -] -(2989,266:4262630,4025873:0,0,0 -[2989,266:-473656,4025873:0,0,0 -(2989,266:-473656,-710413:0,0,0 -(2989,266:-473656,-710413:0,0,0 -g2989,266:-473656,-710413 ) -g2989,266:-473656,-710413 +] +(1,1481:6630773,47279633:25952256,0,0 +h1,1481:6630773,47279633:25952256,0,0 +) +] +(1,1481:4262630,4025873:0,0,0 +[1,1481:-473656,4025873:0,0,0 +(1,1481:-473656,-710413:0,0,0 +(1,1481:-473656,-710413:0,0,0 +g1,1481:-473656,-710413 +) +g1,1481:-473656,-710413 ) ] ) ] -!28326 -}380 -!12 -{381 -[2989,365:4262630,47279633:28320399,43253760,0 -(2989,365:4262630,4025873:0,0,0 -[2989,365:-473656,4025873:0,0,0 -(2989,365:-473656,-710413:0,0,0 -(2989,365:-473656,-644877:0,0,0 -k2989,365:-473656,-644877:-65536 -) -(2989,365:-473656,4736287:0,0,0 -k2989,365:-473656,4736287:5209943 -) -g2989,365:-473656,-710413 +!30267 +}32 +Input:492:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:493:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:494:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:495:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:496:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:497:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:498:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:499:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!739 +{33 +[1,1603:4262630,47279633:28320399,43253760,0 +(1,1603:4262630,4025873:0,0,0 +[1,1603:-473656,4025873:0,0,0 +(1,1603:-473656,-710413:0,0,0 +(1,1603:-473656,-644877:0,0,0 +k1,1603:-473656,-644877:-65536 ) -] +(1,1603:-473656,4736287:0,0,0 +k1,1603:-473656,4736287:5209943 ) -[2989,365:6630773,47279633:25952256,43253760,0 -[2989,365:6630773,4812305:25952256,786432,0 -(2989,365:6630773,4812305:25952256,505283,11795 -(2989,365:6630773,4812305:25952256,505283,11795 -g2989,365:3078558,4812305 -[2989,365:3078558,4812305:0,0,0 -(2989,365:3078558,2439708:0,1703936,0 -k2989,365:1358238,2439708:-1720320 -(2989,1:1358238,2439708:1720320,1703936,0 -(2989,1:1358238,2439708:1179648,16384,0 -r2989,365:2537886,2439708:1179648,16384,0 -) -g2989,1:3062174,2439708 -(2989,1:3062174,2439708:16384,1703936,0 -[2989,1:3062174,2439708:25952256,1703936,0 -(2989,1:3062174,1915420:25952256,1179648,0 -(2989,1:3062174,1915420:16384,1179648,0 -r2989,365:3078558,1915420:16384,1179648,0 -) -k2989,1:29014430,1915420:25935872 -g2989,1:29014430,1915420 +g1,1603:-473656,-710413 ) ] ) +[1,1603:6630773,47279633:25952256,43253760,0 +[1,1603:6630773,4812305:25952256,786432,0 +(1,1603:6630773,4812305:25952256,505283,134348 +(1,1603:6630773,4812305:25952256,505283,134348 +g1,1603:3078558,4812305 +[1,1603:3078558,4812305:0,0,0 +(1,1603:3078558,2439708:0,1703936,0 +k1,1603:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,1603:2537886,2439708:1179648,16384,0 ) +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,1603:3078558,1915420:16384,1179648,0 ) -] -[2989,365:3078558,4812305:0,0,0 -(2989,365:3078558,2439708:0,1703936,0 -g2989,365:29030814,2439708 -g2989,365:36135244,2439708 -(2989,1:36135244,2439708:1720320,1703936,0 -(2989,1:36135244,2439708:16384,1703936,0 -[2989,1:36135244,2439708:25952256,1703936,0 -(2989,1:36135244,1915420:25952256,1179648,0 -(2989,1:36135244,1915420:16384,1179648,0 -r2989,365:36151628,1915420:16384,1179648,0 -) -k2989,1:62087500,1915420:25935872 -g2989,1:62087500,1915420 +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) ] ) -g2989,1:36675916,2439708 -(2989,1:36675916,2439708:1179648,16384,0 -r2989,365:37855564,2439708:1179648,16384,0 ) ) -k2989,365:3078556,2439708:-34777008 -) ] -[2989,365:3078558,4812305:0,0,0 -(2989,365:3078558,49800853:0,16384,2228224 -k2989,365:1358238,49800853:-1720320 -(2989,1:1358238,49800853:1720320,16384,2228224 -(2989,1:1358238,49800853:1179648,16384,0 -r2989,365:2537886,49800853:1179648,16384,0 -) -g2989,1:3062174,49800853 -(2989,1:3062174,52029077:16384,1703936,0 -[2989,1:3062174,52029077:25952256,1703936,0 -(2989,1:3062174,51504789:25952256,1179648,0 -(2989,1:3062174,51504789:16384,1179648,0 -r2989,365:3078558,51504789:16384,1179648,0 -) -k2989,1:29014430,51504789:25935872 -g2989,1:29014430,51504789 +[1,1603:3078558,4812305:0,0,0 +(1,1603:3078558,2439708:0,1703936,0 +g1,1603:29030814,2439708 +g1,1603:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,1603:36151628,1915420:16384,1179648,0 +) +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) ] ) +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,1603:37855564,2439708:1179648,16384,0 ) ) -] -[2989,365:3078558,4812305:0,0,0 -(2989,365:3078558,49800853:0,16384,2228224 -g2989,365:29030814,49800853 -g2989,365:36135244,49800853 -(2989,1:36135244,49800853:1720320,16384,2228224 -(2989,1:36135244,52029077:16384,1703936,0 -[2989,1:36135244,52029077:25952256,1703936,0 -(2989,1:36135244,51504789:25952256,1179648,0 -(2989,1:36135244,51504789:16384,1179648,0 -r2989,365:36151628,51504789:16384,1179648,0 -) -k2989,1:62087500,51504789:25935872 -g2989,1:62087500,51504789 +k1,1603:3078556,2439708:-34777008 ) ] +[1,1603:3078558,4812305:0,0,0 +(1,1603:3078558,49800853:0,16384,2228224 +k1,1603:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,1603:2537886,49800853:1179648,16384,0 ) -g2989,1:36675916,49800853 -(2989,1:36675916,49800853:1179648,16384,0 -r2989,365:37855564,49800853:1179648,16384,0 -) +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,1603:3078558,51504789:16384,1179648,0 ) -k2989,365:3078556,49800853:-34777008 +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) ] -g2989,365:6630773,4812305 -k2989,365:28224886,4812305:20398736 -g2989,365:30907930,4812305 ) ) -] -[2989,365:6630773,45706769:25952256,40108032,0 -(2989,365:6630773,45706769:25952256,40108032,0 -(2989,365:6630773,45706769:0,0,0 -g2989,365:6630773,45706769 -) -[2989,365:6630773,45706769:25952256,40108032,0 -(2989,365:6630773,45706769:25952256,40108032,134348 -[2989,365:6630773,45706769:11829248,40108032,134348 -(2989,264:6630773,6254097:11829248,513147,102891 -h2989,263:6630773,6254097:0,0,0 -r2989,365:6630773,6254097:0,616038,102891 -g2989,263:7941493,6254097 -g2989,263:7941493,6254097 -g2989,263:9499939,6254097 -g2989,263:10890613,6254097 -g2989,263:12958273,6254097 -g2989,263:14644514,6254097 -k2989,264:17911484,6254097:548537 -k2989,264:18460021,6254097:548537 -) -(2989,265:6630773,7100652:11829248,505283,126483 -h2989,264:6630773,7100652:0,0,0 -g2989,264:9992769,7100652 -g2989,264:11383443,7100652 -g2989,264:14129401,7100652 -g2989,264:16024046,7100652 -k2989,265:18202792,7100652:257230 -k2989,265:18460021,7100652:257229 -) -(2989,266:6630773,7947208:11829248,505283,134348 -h2989,265:6630773,7947208:0,0,0 -g2989,265:10093695,7947208 -k2989,265:18460021,7947208:4234281 -) -(2989,266:9252213,8788696:9207808,485622,102891 -g2989,265:13682446,8788696 -k2989,266:16270463,8788696:2189558 -k2989,266:18460021,8788696:2189558 -) -(2989,267:6630773,9635251:11829248,513147,134348 -h2989,266:6630773,9635251:0,0,0 -g2989,266:12608967,9635251 -k2989,267:16132183,9635251:2327839 -k2989,267:18460021,9635251:2327838 -) -(2989,268:6630773,10481806:11829248,485622,102891 -h2989,267:6630773,10481806:0,0,0 -g2989,267:9720795,10481806 -k2989,268:14688097,10481806:3771925 -k2989,268:18460021,10481806:3771924 -) -(2989,269:6630773,11328361:11829248,513147,126483 -h2989,268:6630773,11328361:0,0,0 -r2989,365:6630773,11328361:0,639630,126483 -g2989,268:7941493,11328361 -g2989,268:7941493,11328361 -g2989,268:9088373,11328361 -g2989,268:10876195,11328361 -k2989,269:15265797,11328361:3194225 -k2989,269:18460021,11328361:3194224 -) -(2989,270:6630773,12174917:11829248,513147,134348 -h2989,269:6630773,12174917:0,0,0 -r2989,365:6630773,12174917:0,647495,134348 -g2989,269:7941493,12174917 -g2989,269:7941493,12174917 -g2989,269:10480357,12174917 -g2989,269:11338878,12174917 -g2989,269:13457001,12174917 -k2989,270:16556200,12174917:1903822 -k2989,270:18460021,12174917:1903821 -) -(2989,271:6630773,13021472:11829248,505283,126483 -h2989,270:6630773,13021472:0,0,0 -r2989,365:6630773,13021472:0,631766,126483 -g2989,270:7941493,13021472 -g2989,270:7941493,13021472 -g2989,270:10157265,13021472 -g2989,270:11945087,13021472 -k2989,271:15800243,13021472:2659779 -k2989,271:18460021,13021472:2659778 -) -(2989,272:6630773,13868027:11829248,505283,126483 -h2989,271:6630773,13868027:0,0,0 -r2989,365:6630773,13868027:0,631766,126483 -g2989,271:7941493,13868027 -g2989,271:7941493,13868027 -g2989,271:9830240,13868027 -g2989,271:11618062,13868027 -k2989,272:15636730,13868027:2823291 -k2989,272:18460021,13868027:2823291 -) -(2989,276:6630773,15454396:11829248,485622,102891 -h2989,275:6630773,15454396:0,0,0 -g2989,275:8270483,15454396 -g2989,275:9440300,15454396 -k2989,276:14547849,15454396:3912172 -k2989,276:18460021,15454396:3912172 -) -(2989,277:6630773,16300952:11829248,505283,134348 -h2989,276:6630773,16300952:0,0,0 -g2989,276:8397623,16300952 -g2989,276:11232055,16300952 -g2989,276:12820647,16300952 -g2989,276:15632796,16300952 -k2989,277:18405625,16300952:54396 -k2989,277:18460021,16300952:54396 -) -(2989,278:6630773,17147507:11829248,513147,134348 -h2989,277:6630773,17147507:0,0,0 -r2989,365:6630773,17147507:0,647495,134348 -g2989,277:7941493,17147507 -g2989,277:7941493,17147507 -g2989,277:10832941,17147507 -k2989,278:15244170,17147507:3215852 -k2989,278:18460021,17147507:3215851 -) -(2989,279:6630773,17994062:11829248,485622,134348 -h2989,278:6630773,17994062:0,0,0 -r2989,365:6630773,17994062:0,619970,134348 -g2989,278:7941493,17994062 -g2989,278:7941493,17994062 -g2989,278:11209118,17994062 -k2989,279:15432258,17994062:3027763 -k2989,279:18460021,17994062:3027763 -) -(2989,280:6630773,18840617:11829248,505283,134348 -h2989,279:6630773,18840617:0,0,0 -g2989,279:9748320,18840617 -k2989,280:14701859,18840617:3758162 -k2989,280:18460021,18840617:3758162 -) -(2989,284:6630773,20426987:11829248,505283,102891 -h2989,283:6630773,20426987:0,0,0 -g2989,283:8909459,20426987 -g2989,283:10079276,20426987 -g2989,283:11249093,20426987 -k2989,284:15452246,20426987:3007776 -k2989,284:18460021,20426987:3007775 -) -(2989,288:6630773,22013356:11829248,505283,134348 -h2989,287:6630773,22013356:0,0,0 -k2989,288:14131696,22013356:4328325 -k2989,288:18460021,22013356:4328325 -) -(2989,290:6630773,22859911:11829248,485622,102891 -h2989,288:6630773,22859911:0,0,0 -r2989,365:6630773,22859911:0,588513,102891 -g2989,288:7941493,22859911 -g2989,288:7941493,22859911 -g2989,288:8767901,22859911 -g2989,288:9937718,22859911 -g2989,288:11107535,22859911 -g2989,288:12277352,22859911 -g2989,288:13447169,22859911 -g2989,288:14616986,22859911 -g2989,288:15786803,22859911 -k2989,288:18460021,22859911:1304171 -) -(2989,290:9252213,23701399:9207808,485622,102891 -g2989,288:10820489,23701399 -g2989,288:12388765,23701399 -g2989,288:13957041,23701399 -k2989,290:16806220,23701399:1653802 -k2989,290:18460021,23701399:1653801 -) -(2989,291:6630773,24547954:11829248,485622,102891 -h2989,290:6630773,24547954:0,0,0 -r2989,365:6630773,24547954:0,588513,102891 -g2989,290:7941493,24547954 -g2989,290:7941493,24547954 -g2989,290:9597587,24547954 -g2989,290:10368945,24547954 -g2989,290:11140303,24547954 -g2989,290:12310120,24547954 -g2989,290:13479937,24547954 -g2989,290:14649754,24547954 -g2989,290:16218030,24547954 -k2989,290:18460021,24547954:872944 -) -(2989,291:9252213,25389442:9207808,485622,11795 -k2989,291:14453806,25389442:4006216 -k2989,291:18460021,25389442:4006215 -) -(2989,292:6630773,26235998:11829248,485622,102891 -h2989,291:6630773,26235998:0,0,0 -r2989,365:6630773,26235998:0,588513,102891 -g2989,291:7941493,26235998 -g2989,291:7941493,26235998 -g2989,291:10512470,26235998 -k2989,292:15083934,26235998:3376087 -k2989,292:18460021,26235998:3376087 -) -(2989,293:6630773,27082553:11829248,485622,102891 -h2989,292:6630773,27082553:0,0,0 -r2989,365:6630773,27082553:0,588513,102891 -g2989,292:7941493,27082553 -g2989,292:7941493,27082553 -g2989,292:11355263,27082553 -g2989,292:12923539,27082553 -g2989,292:14491815,27082553 -k2989,293:17073607,27082553:1386415 -k2989,293:18460021,27082553:1386414 -) -(2989,294:6630773,27929108:11829248,485622,102891 -h2989,293:6630773,27929108:0,0,0 -r2989,365:6630773,27929108:0,588513,102891 -g2989,293:7941493,27929108 -g2989,293:7941493,27929108 -g2989,293:10123841,27929108 -g2989,293:11692117,27929108 -k2989,294:15673758,27929108:2786264 -k2989,294:18460021,27929108:2786263 -) -(2989,295:6630773,28775663:11829248,485622,102891 -h2989,294:6630773,28775663:0,0,0 -r2989,365:6630773,28775663:0,588513,102891 -g2989,294:7941493,28775663 -g2989,294:7941493,28775663 -g2989,294:9581203,28775663 -g2989,294:10751020,28775663 -k2989,295:15203209,28775663:3256812 -k2989,295:18460021,28775663:3256812 -) -(2989,296:6630773,29622219:11829248,477757,173670 -h2989,295:6630773,29622219:0,0,0 -r2989,365:6630773,29622219:0,651427,173670 -g2989,295:7941493,29622219 -g2989,295:7941493,29622219 -[2989,295:8070599,29622219:341312,473825,0 -(2989,295:8070599,29484200:341312,335806,0 ) ] -(2989,295:8638865,29795889:370934,473825,0 -) -g2989,295:9731350,29622219 -k2989,296:14494145,29622219:3965877 -k2989,296:18460021,29622219:3965876 -) -(2989,297:6630773,30468774:11829248,505283,102891 -h2989,296:6630773,30468774:0,0,0 -r2989,365:6630773,30468774:0,608174,102891 -g2989,296:7941493,30468774 -g2989,296:7941493,30468774 -g2989,296:11617407,30468774 -g2989,296:13185683,30468774 -k2989,297:16420541,30468774:2039481 -k2989,297:18460021,30468774:2039480 -) -(2989,298:6630773,31315329:11829248,505283,126483 -h2989,297:6630773,31315329:0,0,0 -r2989,365:6630773,31315329:0,631766,126483 -g2989,297:7941493,31315329 -g2989,297:7941493,31315329 -g2989,297:10432516,31315329 -g2989,297:11823190,31315329 -g2989,297:15272349,31315329 -k2989,298:17264644,31315329:1195377 -k2989,298:18460021,31315329:1195377 -) -(2989,299:6630773,32161885:11829248,505283,102891 -h2989,298:6630773,32161885:0,0,0 -r2989,365:6630773,32161885:0,608174,102891 -g2989,298:7941493,32161885 -g2989,298:7941493,32161885 -g2989,298:10258845,32161885 -k2989,299:14558663,32161885:3901359 -k2989,299:18460021,32161885:3901358 -) -(2989,300:6630773,33008440:11829248,505283,126483 -h2989,299:6630773,33008440:0,0,0 -r2989,365:6630773,33008440:0,631766,126483 -g2989,299:7941493,33008440 -g2989,299:7941493,33008440 -g2989,299:10479046,33008440 -g2989,299:12047322,33008440 -g2989,299:13615598,33008440 -k2989,300:16635498,33008440:1824523 -k2989,300:18460021,33008440:1824523 -) -(2989,301:6630773,33854995:11829248,505283,102891 -h2989,300:6630773,33854995:0,0,0 -r2989,365:6630773,33854995:0,608174,102891 -g2989,300:7941493,33854995 -g2989,300:7941493,33854995 -g2989,300:12080091,33854995 -k2989,301:15867745,33854995:2592277 -k2989,301:18460021,33854995:2592276 -) -(2989,302:6630773,34701550:11829248,485622,102891 -h2989,301:6630773,34701550:0,0,0 -r2989,365:6630773,34701550:0,588513,102891 -g2989,301:7941493,34701550 -g2989,301:7941493,34701550 -g2989,301:8667631,34701550 -g2989,301:9438989,34701550 -g2989,301:10210347,34701550 -g2989,301:11778623,34701550 -k2989,302:15717011,34701550:2743011 -k2989,302:18460021,34701550:2743010 -) -(2989,303:6630773,35548106:11829248,505283,102891 -h2989,302:6630773,35548106:0,0,0 -r2989,365:6630773,35548106:0,608174,102891 -g2989,302:7941493,35548106 -g2989,302:7941493,35548106 -g2989,302:10172338,35548106 -k2989,303:14515409,35548106:3944612 -k2989,303:18460021,35548106:3944612 -) -(2989,304:6630773,36394661:11829248,485622,102891 -h2989,303:6630773,36394661:0,0,0 -r2989,365:6630773,36394661:0,588513,102891 -g2989,303:7941493,36394661 -g2989,303:7941493,36394661 -g2989,303:10534096,36394661 -k2989,304:15094747,36394661:3365274 -k2989,304:18460021,36394661:3365274 -) -(2989,305:6630773,37241216:11829248,485622,102891 -h2989,304:6630773,37241216:0,0,0 -r2989,365:6630773,37241216:0,588513,102891 -g2989,304:7941493,37241216 -g2989,304:7941493,37241216 -g2989,304:9638219,37241216 -g2989,304:11206495,37241216 -k2989,305:15430947,37241216:3029075 -k2989,305:18460021,37241216:3029074 -) -(2989,306:6630773,38087771:11829248,485622,102891 -h2989,305:6630773,38087771:0,0,0 -r2989,365:6630773,38087771:0,588513,102891 -g2989,305:7941493,38087771 -g2989,305:7941493,38087771 -g2989,305:10052407,38087771 -k2989,306:14853903,38087771:3606119 -k2989,306:18460021,38087771:3606118 -) -(2989,307:6630773,38934327:11829248,485622,173670 -h2989,306:6630773,38934327:0,0,0 -[2989,306:6759879,38934327:341312,473825,0 -(2989,306:6759879,38796308:341312,335806,0 +[1,1603:3078558,4812305:0,0,0 +(1,1603:3078558,49800853:0,16384,2228224 +g1,1603:29030814,49800853 +g1,1603:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,1603:36151628,51504789:16384,1179648,0 ) -] -(2989,306:7328145,39107997:370934,473825,0 +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 +) +] +) +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,1603:37855564,49800853:1179648,16384,0 +) +) +k1,1603:3078556,49800853:-34777008 +) +] +g1,1603:6630773,4812305 +k1,1603:18771974,4812305:11344283 +g1,1603:20158715,4812305 +g1,1603:20807521,4812305 +g1,1603:24121676,4812305 +g1,1603:28605649,4812305 +g1,1603:30015328,4812305 +) +) +] +[1,1603:6630773,45706769:25952256,40108032,0 +(1,1603:6630773,45706769:25952256,40108032,0 +(1,1603:6630773,45706769:0,0,0 +g1,1603:6630773,45706769 +) +[1,1603:6630773,45706769:25952256,40108032,0 +v1,1481:6630773,6254097:0,393216,0 +(1,1481:6630773,10496531:25952256,4635650,196608 +g1,1481:6630773,10496531 +g1,1481:6630773,10496531 +g1,1481:6434165,10496531 +(1,1481:6434165,10496531:0,4635650,196608 +r1,1603:32779637,10496531:26345472,4832258,196608 +k1,1481:6434165,10496531:-26345472 +) +(1,1481:6434165,10496531:26345472,4635650,196608 +[1,1481:6630773,10496531:25952256,4439042,0 +(1,1480:6630773,6468007:25952256,410518,9436 +(1,1472:6630773,6468007:0,0,0 +g1,1472:6630773,6468007 +g1,1472:6630773,6468007 +g1,1472:6303093,6468007 +(1,1472:6303093,6468007:0,0,0 +) +g1,1472:6630773,6468007 +) +g1,1480:7579210,6468007 +g1,1480:9159939,6468007 +g1,1480:10108376,6468007 +h1,1480:10424522,6468007:0,0,0 +k1,1480:32583030,6468007:22158508 +g1,1480:32583030,6468007 +) +(1,1480:6630773,7134185:25952256,410518,31456 +h1,1480:6630773,7134185:0,0,0 +g1,1480:7579210,7134185 +g1,1480:7895356,7134185 +g1,1480:8527648,7134185 +g1,1480:9159940,7134185 +g1,1480:10424523,7134185 +h1,1480:11689106,7134185:0,0,0 +k1,1480:32583030,7134185:20893924 +g1,1480:32583030,7134185 +) +(1,1480:6630773,7800363:25952256,410518,31456 +h1,1480:6630773,7800363:0,0,0 +g1,1480:7579210,7800363 +g1,1480:7895356,7800363 +g1,1480:8527648,7800363 +g1,1480:9159940,7800363 +g1,1480:10424523,7800363 +h1,1480:11689106,7800363:0,0,0 +k1,1480:32583030,7800363:20893924 +g1,1480:32583030,7800363 +) +(1,1480:6630773,8466541:25952256,410518,31456 +h1,1480:6630773,8466541:0,0,0 +g1,1480:7579210,8466541 +g1,1480:7895356,8466541 +g1,1480:8527648,8466541 +g1,1480:9159940,8466541 +g1,1480:10424523,8466541 +h1,1480:11689106,8466541:0,0,0 +k1,1480:32583030,8466541:20893924 +g1,1480:32583030,8466541 +) +(1,1480:6630773,9132719:25952256,410518,31456 +h1,1480:6630773,9132719:0,0,0 +g1,1480:7579210,9132719 +g1,1480:7895356,9132719 +g1,1480:8527648,9132719 +g1,1480:9159940,9132719 +g1,1480:10424523,9132719 +h1,1480:11689106,9132719:0,0,0 +k1,1480:32583030,9132719:20893924 +g1,1480:32583030,9132719 +) +(1,1480:6630773,9798897:25952256,410518,31456 +h1,1480:6630773,9798897:0,0,0 +g1,1480:7579210,9798897 +g1,1480:7895356,9798897 +g1,1480:8527648,9798897 +g1,1480:9159940,9798897 +g1,1480:10424523,9798897 +h1,1480:11689106,9798897:0,0,0 +k1,1480:32583030,9798897:20893924 +g1,1480:32583030,9798897 +) +(1,1480:6630773,10465075:25952256,410518,31456 +h1,1480:6630773,10465075:0,0,0 +g1,1480:7579210,10465075 +g1,1480:7895356,10465075 +g1,1480:8527648,10465075 +g1,1480:9159940,10465075 +g1,1480:10424523,10465075 +h1,1480:11689106,10465075:0,0,0 +k1,1480:32583030,10465075:20893924 +g1,1480:32583030,10465075 +) +] +) +g1,1481:32583029,10496531 +g1,1481:6630773,10496531 +g1,1481:6630773,10496531 +g1,1481:32583029,10496531 +g1,1481:32583029,10496531 +) +h1,1481:6630773,10693139:0,0,0 +v1,1485:6630773,12407893:0,393216,0 +(1,1493:6630773,14095716:25952256,2081039,196608 +g1,1493:6630773,14095716 +g1,1493:6630773,14095716 +g1,1493:6434165,14095716 +(1,1493:6434165,14095716:0,2081039,196608 +r1,1603:32779637,14095716:26345472,2277647,196608 +k1,1493:6434165,14095716:-26345472 +) +(1,1493:6434165,14095716:26345472,2081039,196608 +[1,1493:6630773,14095716:25952256,1884431,0 +(1,1487:6630773,12621803:25952256,410518,101187 +(1,1486:6630773,12621803:0,0,0 +g1,1486:6630773,12621803 +g1,1486:6630773,12621803 +g1,1486:6303093,12621803 +(1,1486:6303093,12621803:0,0,0 +) +g1,1486:6630773,12621803 +) +g1,1487:7263065,12621803 +g1,1487:8211503,12621803 +g1,1487:11056815,12621803 +g1,1487:11689107,12621803 +g1,1487:14850564,12621803 +g1,1487:16115147,12621803 +g1,1487:16747439,12621803 +g1,1487:19276605,12621803 +g1,1487:19908897,12621803 +g1,1487:20541189,12621803 +h1,1487:21173481,12621803:0,0,0 +k1,1487:32583029,12621803:11409548 +g1,1487:32583029,12621803 +) +(1,1488:6630773,13287981:25952256,404226,76021 +h1,1488:6630773,13287981:0,0,0 +k1,1488:6630773,13287981:0 +h1,1488:8527647,13287981:0,0,0 +k1,1488:32583029,13287981:24055382 +g1,1488:32583029,13287981 +) +(1,1492:6630773,14019695:25952256,404226,76021 +(1,1490:6630773,14019695:0,0,0 +g1,1490:6630773,14019695 +g1,1490:6630773,14019695 +g1,1490:6303093,14019695 +(1,1490:6303093,14019695:0,0,0 +) +g1,1490:6630773,14019695 +) +g1,1492:7579210,14019695 +g1,1492:7895356,14019695 +g1,1492:9159939,14019695 +g1,1492:11056813,14019695 +g1,1492:12637542,14019695 +g1,1492:14218271,14019695 +g1,1492:15799000,14019695 +g1,1492:17379729,14019695 +g1,1492:18960458,14019695 +h1,1492:19908895,14019695:0,0,0 +k1,1492:32583029,14019695:12674134 +g1,1492:32583029,14019695 +) +] +) +g1,1493:32583029,14095716 +g1,1493:6630773,14095716 +g1,1493:6630773,14095716 +g1,1493:32583029,14095716 +g1,1493:32583029,14095716 +) +h1,1493:6630773,14292324:0,0,0 +v1,1497:6630773,16007078:0,393216,0 +(1,1511:6630773,21647404:25952256,6033542,196608 +g1,1511:6630773,21647404 +g1,1511:6630773,21647404 +g1,1511:6434165,21647404 +(1,1511:6434165,21647404:0,6033542,196608 +r1,1603:32779637,21647404:26345472,6230150,196608 +k1,1511:6434165,21647404:-26345472 +) +(1,1511:6434165,21647404:26345472,6033542,196608 +[1,1511:6630773,21647404:25952256,5836934,0 +(1,1499:6630773,16220988:25952256,410518,101187 +(1,1498:6630773,16220988:0,0,0 +g1,1498:6630773,16220988 +g1,1498:6630773,16220988 +g1,1498:6303093,16220988 +(1,1498:6303093,16220988:0,0,0 +) +g1,1498:6630773,16220988 +) +g1,1499:7263065,16220988 +g1,1499:8211503,16220988 +g1,1499:11056815,16220988 +g1,1499:11689107,16220988 +g1,1499:14850564,16220988 +g1,1499:16115147,16220988 +g1,1499:16747439,16220988 +g1,1499:19276605,16220988 +g1,1499:19908897,16220988 +g1,1499:20541189,16220988 +g1,1499:21489627,16220988 +g1,1499:24334938,16220988 +g1,1499:24967230,16220988 +h1,1499:26864104,16220988:0,0,0 +k1,1499:32583029,16220988:5718925 +g1,1499:32583029,16220988 +) +(1,1500:6630773,16887166:25952256,404226,76021 +h1,1500:6630773,16887166:0,0,0 +k1,1500:6630773,16887166:0 +h1,1500:8527647,16887166:0,0,0 +k1,1500:32583029,16887166:24055382 +g1,1500:32583029,16887166 +) +(1,1510:6630773,17618880:25952256,410518,9436 +(1,1502:6630773,17618880:0,0,0 +g1,1502:6630773,17618880 +g1,1502:6630773,17618880 +g1,1502:6303093,17618880 +(1,1502:6303093,17618880:0,0,0 +) +g1,1502:6630773,17618880 +) +g1,1510:7579210,17618880 +g1,1510:9159939,17618880 +g1,1510:10108376,17618880 +h1,1510:10424522,17618880:0,0,0 +k1,1510:32583030,17618880:22158508 +g1,1510:32583030,17618880 +) +(1,1510:6630773,18285058:25952256,410518,31456 +h1,1510:6630773,18285058:0,0,0 +g1,1510:7579210,18285058 +g1,1510:7895356,18285058 +g1,1510:8527648,18285058 +g1,1510:9159940,18285058 +g1,1510:10424523,18285058 +h1,1510:11689106,18285058:0,0,0 +k1,1510:32583030,18285058:20893924 +g1,1510:32583030,18285058 +) +(1,1510:6630773,18951236:25952256,410518,31456 +h1,1510:6630773,18951236:0,0,0 +g1,1510:7579210,18951236 +g1,1510:7895356,18951236 +g1,1510:8527648,18951236 +g1,1510:9159940,18951236 +g1,1510:10424523,18951236 +h1,1510:11689106,18951236:0,0,0 +k1,1510:32583030,18951236:20893924 +g1,1510:32583030,18951236 +) +(1,1510:6630773,19617414:25952256,410518,31456 +h1,1510:6630773,19617414:0,0,0 +g1,1510:7579210,19617414 +g1,1510:7895356,19617414 +g1,1510:8527648,19617414 +g1,1510:9159940,19617414 +g1,1510:10424523,19617414 +h1,1510:11689106,19617414:0,0,0 +k1,1510:32583030,19617414:20893924 +g1,1510:32583030,19617414 +) +(1,1510:6630773,20283592:25952256,410518,31456 +h1,1510:6630773,20283592:0,0,0 +g1,1510:7579210,20283592 +g1,1510:7895356,20283592 +g1,1510:8527648,20283592 +g1,1510:9159940,20283592 +g1,1510:10424523,20283592 +h1,1510:11689106,20283592:0,0,0 +k1,1510:32583030,20283592:20893924 +g1,1510:32583030,20283592 +) +(1,1510:6630773,20949770:25952256,410518,31456 +h1,1510:6630773,20949770:0,0,0 +g1,1510:7579210,20949770 +g1,1510:7895356,20949770 +g1,1510:8527648,20949770 +g1,1510:9159940,20949770 +g1,1510:10424523,20949770 +h1,1510:11689106,20949770:0,0,0 +k1,1510:32583030,20949770:20893924 +g1,1510:32583030,20949770 +) +(1,1510:6630773,21615948:25952256,410518,31456 +h1,1510:6630773,21615948:0,0,0 +g1,1510:7579210,21615948 +g1,1510:7895356,21615948 +g1,1510:8527648,21615948 +g1,1510:9159940,21615948 +g1,1510:10424523,21615948 +h1,1510:11689106,21615948:0,0,0 +k1,1510:32583030,21615948:20893924 +g1,1510:32583030,21615948 +) +] +) +g1,1511:32583029,21647404 +g1,1511:6630773,21647404 +g1,1511:6630773,21647404 +g1,1511:32583029,21647404 +g1,1511:32583029,21647404 +) +h1,1511:6630773,21844012:0,0,0 +(1,1515:6630773,23209788:25952256,505283,126483 +h1,1514:6630773,23209788:983040,0,0 +k1,1514:8818833,23209788:251471 +k1,1514:10174586,23209788:251471 +k1,1514:11451040,23209788:251471 +k1,1514:13557834,23209788:251470 +k1,1514:15093811,23209788:251471 +k1,1514:16364367,23209788:251471 +k1,1514:19824481,23209788:251471 +k1,1514:22249126,23209788:251471 +k1,1514:23492157,23209788:251471 +k1,1514:24762713,23209788:251471 +k1,1514:26667656,23209788:251470 +k1,1514:27535165,23209788:251471 +k1,1514:28805721,23209788:251471 +k1,1514:30711976,23209788:251471 +k1,1514:32583029,23209788:0 +) +(1,1515:6630773,24051276:25952256,513147,134348 +g1,1514:7902171,24051276 +g1,1514:9120485,24051276 +g1,1514:10874883,24051276 +g1,1514:12265557,24051276 +g1,1514:15396211,24051276 +g1,1514:16254732,24051276 +g1,1514:17473046,24051276 +g1,1514:19962103,24051276 +g1,1514:22940059,24051276 +k1,1515:32583029,24051276:7726042 +g1,1515:32583029,24051276 +) +(1,1517:6630773,24892764:25952256,513147,134348 +h1,1516:6630773,24892764:983040,0,0 +k1,1516:11642713,24892764:196355 +k1,1516:14864866,24892764:196356 +k1,1516:16165503,24892764:196355 +k1,1516:17109625,24892764:196356 +k1,1516:19687558,24892764:196355 +k1,1516:20693283,24892764:196355 +k1,1516:21908724,24892764:196356 +k1,1516:22900686,24892764:196355 +k1,1516:24288486,24892764:196355 +k1,1516:26690129,24892764:196356 +k1,1516:27537912,24892764:196355 +(1,1516:27537912,24892764:0,414482,115847 +r1,1603:28599601,24892764:1061689,530329,115847 +k1,1516:27537912,24892764:-1061689 +) +(1,1516:27537912,24892764:1061689,414482,115847 +k1,1516:27537912,24892764:3277 +h1,1516:28596324,24892764:0,411205,112570 +) +k1,1516:28969627,24892764:196356 +k1,1516:31837885,24892764:196355 +k1,1516:32583029,24892764:0 +) +(1,1517:6630773,25734252:25952256,505283,126483 +g1,1516:7481430,25734252 +g1,1516:10144157,25734252 +g1,1516:11362471,25734252 +g1,1516:14553419,25734252 +g1,1516:16607972,25734252 +g1,1516:18457398,25734252 +g1,1516:21578222,25734252 +g1,1516:23360145,25734252 +g1,1516:24578459,25734252 +g1,1516:27019019,25734252 +g1,1516:28374958,25734252 +k1,1517:32583029,25734252:1751782 +g1,1517:32583029,25734252 +) +v1,1519:6630773,26924718:0,393216,0 +(1,1527:6630773,28612541:25952256,2081039,196608 +g1,1527:6630773,28612541 +g1,1527:6630773,28612541 +g1,1527:6434165,28612541 +(1,1527:6434165,28612541:0,2081039,196608 +r1,1603:32779637,28612541:26345472,2277647,196608 +k1,1527:6434165,28612541:-26345472 +) +(1,1527:6434165,28612541:26345472,2081039,196608 +[1,1527:6630773,28612541:25952256,1884431,0 +(1,1521:6630773,27138628:25952256,410518,107478 +(1,1520:6630773,27138628:0,0,0 +g1,1520:6630773,27138628 +g1,1520:6630773,27138628 +g1,1520:6303093,27138628 +(1,1520:6303093,27138628:0,0,0 +) +g1,1520:6630773,27138628 +) +g1,1521:7263065,27138628 +g1,1521:8211503,27138628 +g1,1521:11056815,27138628 +g1,1521:11689107,27138628 +g1,1521:14850564,27138628 +g1,1521:16115147,27138628 +g1,1521:16747439,27138628 +g1,1521:20541188,27138628 +g1,1521:21489626,27138628 +g1,1521:24018792,27138628 +g1,1521:24651084,27138628 +g1,1521:25915667,27138628 +g1,1521:26547959,27138628 +g1,1521:27180251,27138628 +h1,1521:27812543,27138628:0,0,0 +k1,1521:32583029,27138628:4770486 +g1,1521:32583029,27138628 +) +(1,1522:6630773,27804806:25952256,404226,76021 +h1,1522:6630773,27804806:0,0,0 +k1,1522:6630773,27804806:0 +h1,1522:8527647,27804806:0,0,0 +k1,1522:32583029,27804806:24055382 +g1,1522:32583029,27804806 +) +(1,1526:6630773,28536520:25952256,404226,76021 +(1,1524:6630773,28536520:0,0,0 +g1,1524:6630773,28536520 +g1,1524:6630773,28536520 +g1,1524:6303093,28536520 +(1,1524:6303093,28536520:0,0,0 +) +g1,1524:6630773,28536520 +) +g1,1526:7579210,28536520 +g1,1526:7895356,28536520 +g1,1526:9159939,28536520 +g1,1526:11056813,28536520 +g1,1526:12637542,28536520 +g1,1526:14218271,28536520 +g1,1526:15799000,28536520 +g1,1526:17379729,28536520 +g1,1526:18960458,28536520 +h1,1526:19908895,28536520:0,0,0 +k1,1526:32583029,28536520:12674134 +g1,1526:32583029,28536520 +) +] +) +g1,1527:32583029,28612541 +g1,1527:6630773,28612541 +g1,1527:6630773,28612541 +g1,1527:32583029,28612541 +g1,1527:32583029,28612541 +) +h1,1527:6630773,28809149:0,0,0 +(1,1531:6630773,30174925:25952256,513147,134348 +h1,1530:6630773,30174925:983040,0,0 +k1,1530:8623996,30174925:236203 +k1,1530:11142817,30174925:236202 +k1,1530:12065182,30174925:236203 +k1,1530:15430728,30174925:236202 +k1,1530:16282969,30174925:236203 +k1,1530:18797859,30174925:236203 +h1,1530:20340577,30174925:0,0,0 +k1,1530:20576779,30174925:236202 +k1,1530:21622352,30174925:236203 +k1,1530:23356707,30174925:236202 +h1,1530:24153625,30174925:0,0,0 +k1,1530:24563498,30174925:236203 +k1,1530:26497738,30174925:236202 +k1,1530:29245936,30174925:236203 +k1,1530:32583029,30174925:0 +) +(1,1531:6630773,31016413:25952256,513147,126483 +k1,1530:9879896,31016413:223326 +k1,1530:11094783,31016413:223327 +k1,1530:14275749,31016413:223326 +k1,1530:16007714,31016413:223326 +k1,1530:17323526,31016413:223327 +k1,1530:19727235,31016413:223326 +k1,1530:20698327,31016413:223326 +k1,1530:24108669,31016413:223326 +k1,1530:25256054,31016413:223327 +k1,1530:26498465,31016413:223326 +k1,1530:28423761,31016413:223326 +k1,1530:30427046,31016413:223327 +k1,1530:32117068,31016413:223326 +k1,1530:32583029,31016413:0 +) +(1,1531:6630773,31857901:25952256,513147,126483 +k1,1530:8578150,31857901:154967 +k1,1530:11758914,31857901:154967 +k1,1530:12905442,31857901:154968 +k1,1530:15347616,31857901:154967 +k1,1530:16568854,31857901:154967 +k1,1530:17409983,31857901:154967 +k1,1530:18772780,31857901:154968 +k1,1530:19613909,31857901:154967 +k1,1530:23105969,31857901:154967 +k1,1530:26460404,31857901:154967 +k1,1530:27995560,31857901:154968 +k1,1530:29142087,31857901:154967 +k1,1530:31140582,31857901:154967 +k1,1530:32583029,31857901:0 +) +(1,1531:6630773,32699389:25952256,505283,126483 +g1,1530:7849087,32699389 +g1,1530:11353297,32699389 +(1,1530:11353297,32699389:0,459977,115847 +r1,1603:13118410,32699389:1765113,575824,115847 +k1,1530:11353297,32699389:-1765113 +) +(1,1530:11353297,32699389:1765113,459977,115847 +k1,1530:11353297,32699389:3277 +h1,1530:13115133,32699389:0,411205,112570 +) +g1,1530:13317639,32699389 +k1,1531:32583029,32699389:17346496 +g1,1531:32583029,32699389 +) +v1,1533:6630773,33889855:0,393216,0 +(1,1541:6630773,35571386:25952256,2074747,196608 +g1,1541:6630773,35571386 +g1,1541:6630773,35571386 +g1,1541:6434165,35571386 +(1,1541:6434165,35571386:0,2074747,196608 +r1,1603:32779637,35571386:26345472,2271355,196608 +k1,1541:6434165,35571386:-26345472 +) +(1,1541:6434165,35571386:26345472,2074747,196608 +[1,1541:6630773,35571386:25952256,1878139,0 +(1,1535:6630773,34097473:25952256,404226,107478 +(1,1534:6630773,34097473:0,0,0 +g1,1534:6630773,34097473 +g1,1534:6630773,34097473 +g1,1534:6303093,34097473 +(1,1534:6303093,34097473:0,0,0 +) +g1,1534:6630773,34097473 +) +g1,1535:7263065,34097473 +g1,1535:8211503,34097473 +g1,1535:12637543,34097473 +g1,1535:13269835,34097473 +h1,1535:13585981,34097473:0,0,0 +k1,1535:32583029,34097473:18997048 +g1,1535:32583029,34097473 +) +(1,1536:6630773,34763651:25952256,404226,76021 +h1,1536:6630773,34763651:0,0,0 +k1,1536:6630773,34763651:0 +h1,1536:8527647,34763651:0,0,0 +k1,1536:32583029,34763651:24055382 +g1,1536:32583029,34763651 +) +(1,1540:6630773,35495365:25952256,404226,76021 +(1,1538:6630773,35495365:0,0,0 +g1,1538:6630773,35495365 +g1,1538:6630773,35495365 +g1,1538:6303093,35495365 +(1,1538:6303093,35495365:0,0,0 +) +g1,1538:6630773,35495365 +) +g1,1540:7579210,35495365 +g1,1540:7895356,35495365 +g1,1540:9159939,35495365 +g1,1540:11056813,35495365 +g1,1540:12637542,35495365 +g1,1540:14218271,35495365 +g1,1540:15799000,35495365 +g1,1540:17379729,35495365 +g1,1540:18960458,35495365 +h1,1540:19908895,35495365:0,0,0 +k1,1540:32583029,35495365:12674134 +g1,1540:32583029,35495365 +) +] +) +g1,1541:32583029,35571386 +g1,1541:6630773,35571386 +g1,1541:6630773,35571386 +g1,1541:32583029,35571386 +g1,1541:32583029,35571386 +) +h1,1541:6630773,35767994:0,0,0 +v1,1545:6630773,37658058:0,393216,0 +(1,1603:6630773,45292979:25952256,8028137,0 +g1,1603:6630773,45292979 +g1,1603:6303093,45292979 +r1,1603:6401397,45292979:98304,8028137,0 +g1,1603:6600626,45292979 +g1,1603:6797234,45292979 +[1,1603:6797234,45292979:25785795,8028137,0 +(1,1546:6797234,38426727:25785795,1161885,196608 +(1,1545:6797234,38426727:0,1161885,196608 +r1,1603:8344870,38426727:1547636,1358493,196608 +k1,1545:6797234,38426727:-1547636 +) +(1,1545:6797234,38426727:1547636,1161885,196608 +) +k1,1545:8545023,38426727:200153 +k1,1545:11535043,38426727:200152 +(1,1545:11535043,38426727:0,452978,115847 +r1,1603:14355292,38426727:2820249,568825,115847 +k1,1545:11535043,38426727:-2820249 +) +(1,1545:11535043,38426727:2820249,452978,115847 +k1,1545:11535043,38426727:3277 +h1,1545:14352015,38426727:0,411205,112570 +) +k1,1545:14555445,38426727:200153 +k1,1545:15859880,38426727:200153 +k1,1545:16807799,38426727:200153 +k1,1545:18594578,38426727:200152 +k1,1545:19446159,38426727:200153 +k1,1545:20738797,38426727:200153 +k1,1545:21625112,38426727:200153 +k1,1545:22844349,38426727:200152 +k1,1545:24827081,38426727:200153 +k1,1545:25686526,38426727:200153 +k1,1545:28665406,38426727:200153 +k1,1545:30876203,38426727:200152 +k1,1545:31607853,38426727:200153 +k1,1546:32583029,38426727:0 +) +(1,1546:6797234,39268215:25785795,513147,134348 +k1,1545:9248990,39268215:228775 +k1,1545:10966088,39268215:228775 +k1,1545:11726361,39268215:228776 +k1,1545:12310996,39268215:228775 +k1,1545:15169731,39268215:228775 +k1,1545:16636481,39268215:228775 +k1,1545:17524548,39268215:228775 +k1,1545:20767324,39268215:228775 +k1,1545:23064416,39268215:228776 +k1,1545:24484636,39268215:228775 +k1,1545:27697921,39268215:228775 +k1,1545:29959623,39268215:228775 +k1,1545:32583029,39268215:0 +) +(1,1546:6797234,40109703:25785795,513147,126483 +k1,1545:9302207,40109703:196795 +k1,1545:10111764,40109703:196795 +k1,1545:11760182,40109703:196796 +k1,1545:13934854,40109703:196795 +k1,1545:15880805,40109703:196795 +k1,1545:18691831,40109703:196795 +k1,1545:20456247,40109703:196795 +k1,1545:21008903,40109703:196796 +k1,1545:22199224,40109703:196795 +k1,1545:23055311,40109703:196795 +k1,1545:25733954,40109703:196795 +k1,1545:27805080,40109703:196796 +k1,1545:29770692,40109703:196795 +k1,1545:30715253,40109703:196795 +k1,1545:32583029,40109703:0 +) +(1,1546:6797234,40951191:25785795,505283,134348 +k1,1545:9430112,40951191:188385 +k1,1545:11686812,40951191:188384 +k1,1545:13066642,40951191:188385 +k1,1545:16413206,40951191:188384 +k1,1545:17798278,40951191:188385 +k1,1545:21058990,40951191:188384 +k1,1545:23452662,40951191:188385 +k1,1545:24292474,40951191:188384 +(1,1545:24292474,40951191:0,414482,115847 +r1,1603:27464434,40951191:3171960,530329,115847 +k1,1545:24292474,40951191:-3171960 +) +(1,1545:24292474,40951191:3171960,414482,115847 +k1,1545:24292474,40951191:3277 +h1,1545:27461157,40951191:0,411205,112570 +) +k1,1545:27652819,40951191:188385 +k1,1545:30601579,40951191:188384 +k1,1545:31145824,40951191:188385 +k1,1546:32583029,40951191:0 +) +(1,1546:6797234,41792679:25785795,513147,134348 +k1,1545:8567174,41792679:183969 +k1,1545:9698794,41792679:183969 +k1,1545:10901847,41792679:183968 +k1,1545:12471902,41792679:183969 +k1,1545:13315163,41792679:183969 +k1,1545:14518217,41792679:183969 +k1,1545:16712830,41792679:183968 +k1,1545:18577142,41792679:183969 +k1,1545:19952556,41792679:183969 +k1,1545:20924923,41792679:183969 +k1,1545:25151153,41792679:183969 +k1,1545:26602587,41792679:183968 +k1,1545:28320754,41792679:183969 +k1,1545:29696168,41792679:183969 +k1,1545:32583029,41792679:0 +) +(1,1546:6797234,42634167:25785795,505283,134348 +k1,1545:9121234,42634167:298282 +k1,1545:10704023,42634167:298283 +k1,1545:12021390,42634167:298282 +k1,1545:13853870,42634167:298282 +k1,1545:14768191,42634167:298283 +k1,1545:16085558,42634167:298282 +k1,1545:18542597,42634167:298283 +k1,1545:19832439,42634167:298282 +k1,1545:21461102,42634167:298282 +k1,1545:23918141,42634167:298283 +k1,1545:27333315,42634167:298282 +k1,1545:28283025,42634167:298282 +k1,1545:29600393,42634167:298283 +k1,1545:31966991,42634167:298282 +k1,1546:32583029,42634167:0 +) +(1,1546:6797234,43475655:25785795,414482,115847 +(1,1545:6797234,43475655:0,414482,115847 +r1,1603:9969194,43475655:3171960,530329,115847 +k1,1545:6797234,43475655:-3171960 +) +(1,1545:6797234,43475655:3171960,414482,115847 +k1,1545:6797234,43475655:3277 +h1,1545:9965917,43475655:0,411205,112570 +) +k1,1546:32583028,43475655:22440164 +g1,1546:32583028,43475655 +) +(1,1548:6797234,44317143:25785795,513147,134348 +h1,1547:6797234,44317143:983040,0,0 +k1,1547:8911241,44317143:177418 +k1,1547:10394792,44317143:177418 +k1,1547:11664695,44317143:177418 +(1,1547:11664695,44317143:0,452978,115847 +r1,1603:14484944,44317143:2820249,568825,115847 +k1,1547:11664695,44317143:-2820249 +) +(1,1547:11664695,44317143:2820249,452978,115847 +k1,1547:11664695,44317143:3277 +h1,1547:14481667,44317143:0,411205,112570 +) +k1,1547:14662362,44317143:177418 +k1,1547:15491208,44317143:177418 +k1,1547:17598006,44317143:177418 +k1,1547:18794510,44317143:177419 +k1,1547:20931454,44317143:177418 +(1,1547:20931454,44317143:0,452978,115847 +r1,1603:23048279,44317143:2116825,568825,115847 +k1,1547:20931454,44317143:-2116825 +) +(1,1547:20931454,44317143:2116825,452978,115847 +k1,1547:20931454,44317143:3277 +h1,1547:23045002,44317143:0,411205,112570 +) +k1,1547:23225697,44317143:177418 +k1,1547:26765112,44317143:177418 +k1,1547:29571179,44317143:177418 +k1,1547:31311631,44317143:177418 +k1,1547:32583029,44317143:0 +) +(1,1548:6797234,45158631:25785795,513147,134348 +k1,1547:7653285,45158631:173166 +k1,1547:9476648,45158631:173166 +k1,1547:12876807,45158631:173166 +k1,1547:15253949,45158631:173167 +k1,1547:18829744,45158631:173166 +k1,1547:20107192,45158631:173166 +k1,1547:21028124,45158631:173166 +k1,1547:23406577,45158631:173166 +k1,1547:24231171,45158631:173166 +k1,1547:25423423,45158631:173167 +k1,1547:28292085,45158631:173166 +k1,1547:29116679,45158631:173166 +k1,1547:30037611,45158631:173166 +k1,1548:32583029,45158631:0 +k1,1548:32583029,45158631:0 +) +] +g1,1603:32583029,45292979 +) +] +(1,1603:32583029,45706769:0,0,0 +g1,1603:32583029,45706769 +) +) +] +(1,1603:6630773,47279633:25952256,0,0 +h1,1603:6630773,47279633:25952256,0,0 +) +] +(1,1603:4262630,4025873:0,0,0 +[1,1603:-473656,4025873:0,0,0 +(1,1603:-473656,-710413:0,0,0 +(1,1603:-473656,-710413:0,0,0 +g1,1603:-473656,-710413 +) +g1,1603:-473656,-710413 +) +] +) +] +!25272 +}33 +Input:500:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:501:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:502:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:503:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:504:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:505:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:506:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:507:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!739 +{34 +[1,1614:4262630,47279633:28320399,43253760,0 +(1,1614:4262630,4025873:0,0,0 +[1,1614:-473656,4025873:0,0,0 +(1,1614:-473656,-710413:0,0,0 +(1,1614:-473656,-644877:0,0,0 +k1,1614:-473656,-644877:-65536 ) -g2989,306:8420630,38934327 -g2989,306:9590447,38934327 -k2989,307:14622923,38934327:3837099 -k2989,307:18460021,38934327:3837098 +(1,1614:-473656,4736287:0,0,0 +k1,1614:-473656,4736287:5209943 ) -(2989,308:6630773,39780882:11829248,477757,173670 -h2989,307:6630773,39780882:0,0,0 -[2989,307:6759879,39780882:341312,473825,0 -(2989,307:6759879,39642863:341312,335806,0 +g1,1614:-473656,-710413 ) ] -(2989,307:7328145,39954552:370934,473825,0 -) -g2989,307:8420630,39780882 -k2989,308:13838785,39780882:4621237 -k2989,308:18460021,39780882:4621236 -) -(2989,309:6630773,40627437:11829248,505283,102891 -h2989,308:6630773,40627437:0,0,0 -g2989,308:9349206,40627437 -g2989,308:10917482,40627437 -g2989,308:12485758,40627437 -k2989,309:16070578,40627437:2389443 -k2989,309:18460021,40627437:2389443 -) -(2989,310:6630773,41473993:11829248,505283,102891 -h2989,309:6630773,41473993:0,0,0 -g2989,309:10876850,41473993 -g2989,309:12046667,41473993 -g2989,309:13614943,41473993 -g2989,309:15183219,41473993 -g2989,309:16751495,41473993 -k2989,310:18203447,41473993:256575 -k2989,310:18460021,41473993:256574 -) -(2989,311:6630773,42320548:11829248,505283,102891 -h2989,310:6630773,42320548:0,0,0 -g2989,310:8642728,42320548 -g2989,310:11333636,42320548 -k2989,311:16256045,42320548:2203976 -k2989,311:18460021,42320548:2203976 -) -(2989,312:6630773,43167103:11829248,513147,126483 -h2989,311:6630773,43167103:0,0,0 -r2989,365:6630773,43167103:0,639630,126483 -g2989,311:7941493,43167103 -g2989,311:7941493,43167103 -g2989,311:10695315,43167103 -g2989,311:11553836,43167103 -g2989,311:15309048,43167103 -k2989,312:17482223,43167103:977798 -k2989,312:18460021,43167103:977798 -) -(2989,313:6630773,44013658:11829248,513147,126483 -h2989,312:6630773,44013658:0,0,0 -r2989,365:6630773,44013658:0,639630,126483 -g2989,312:7941493,44013658 -g2989,312:7941493,44013658 -g2989,312:10695315,44013658 -g2989,312:11553836,44013658 -g2989,312:14580944,44013658 -k2989,313:17118171,44013658:1341850 -k2989,313:18460021,44013658:1341850 -) -(2989,314:6630773,44860214:11829248,505283,102891 -h2989,313:6630773,44860214:0,0,0 -r2989,365:6630773,44860214:0,608174,102891 -g2989,313:7941493,44860214 -g2989,313:7941493,44860214 -g2989,313:10575385,44860214 -g2989,313:12513940,44860214 -k2989,314:16084669,44860214:2375352 -k2989,314:18460021,44860214:2375352 -) -(2989,315:6630773,45706769:11829248,505283,134348 -h2989,314:6630773,45706769:0,0,0 -r2989,365:6630773,45706769:0,639631,134348 -g2989,314:7941493,45706769 -g2989,314:7941493,45706769 -g2989,314:9953448,45706769 -g2989,314:13643124,45706769 -k2989,315:16649261,45706769:1810760 -k2989,315:18460021,45706769:1810760 ) -] -k2989,365:19606901,45706769:1146880 -r2989,365:19606901,45706769:0,40242380,134348 -k2989,365:20753781,45706769:1146880 -[2989,365:20753781,45706769:11829248,40108032,126483 -(2989,316:20753781,6254097:11829248,505283,134348 -h2989,315:20753781,6254097:0,0,0 -r2989,365:20753781,6254097:0,639631,134348 -g2989,315:22064501,6254097 -g2989,315:22064501,6254097 -g2989,315:25836753,6254097 -g2989,315:29526429,6254097 -k2989,316:31652418,6254097:930612 -k2989,316:32583029,6254097:930611 -) -(2989,317:20753781,7097100:11829248,505283,126483 -h2989,316:20753781,7097100:0,0,0 -r2989,365:20753781,7097100:0,631766,126483 -g2989,316:22064501,7097100 -g2989,316:22064501,7097100 -g2989,316:25254138,7097100 -g2989,316:27192693,7097100 -k2989,317:30485550,7097100:2097480 -k2989,317:32583029,7097100:2097479 -) -(2989,318:20753781,7940102:11829248,485622,102891 -h2989,317:20753781,7940102:0,0,0 -g2989,317:22879768,7940102 -g2989,317:23651126,7940102 -g2989,317:24422484,7940102 -g2989,317:25193842,7940102 -g2989,317:26363659,7940102 -g2989,317:27533476,7940102 -g2989,317:28703293,7940102 -k2989,318:31240850,7940102:1342180 -k2989,318:32583029,7940102:1342179 -) -(2989,319:20753781,8783105:11829248,513147,134348 -h2989,318:20753781,8783105:0,0,0 -g2989,318:22936785,8783105 -g2989,318:24449356,8783105 -g2989,318:25331470,8783105 -g2989,318:29114208,8783105 -k2989,319:32207835,8783105:375194 -k2989,319:32583029,8783105:375194 -) -(2989,320:20753781,9626108:11829248,505283,102891 -h2989,319:20753781,9626108:0,0,0 -g2989,319:22450508,9626108 -k2989,320:28477527,9626108:4105503 -k2989,320:32583029,9626108:4105502 -) -(2989,321:20753781,10469111:11829248,505283,126483 -h2989,320:20753781,10469111:0,0,0 -r2989,365:20753781,10469111:0,631766,126483 -g2989,320:22064501,10469111 -g2989,320:22064501,10469111 -g2989,320:24643998,10469111 -g2989,320:25668325,10469111 -k2989,321:29524136,10469111:3058893 -k2989,321:32583029,10469111:3058893 -) -(2989,322:20753781,11312113:11829248,485622,102891 -h2989,321:20753781,11312113:0,0,0 -r2989,365:20753781,11312113:0,588513,102891 -g2989,321:22064501,11312113 -g2989,321:22064501,11312113 -g2989,321:24656449,11312113 -g2989,321:26123144,11312113 -g2989,321:28473920,11312113 -k2989,322:30926934,11312113:1656096 -k2989,322:32583029,11312113:1656095 -) -(2989,323:20753781,12155116:11829248,513147,134348 -h2989,322:20753781,12155116:0,0,0 -r2989,365:20753781,12155116:0,647495,134348 -g2989,322:22064501,12155116 -g2989,322:22064501,12155116 -g2989,322:25494000,12155116 -k2989,323:29436974,12155116:3146056 -k2989,323:32583029,12155116:3146055 -) -(2989,324:20753781,12998119:11829248,485622,102891 -h2989,323:20753781,12998119:0,0,0 -r2989,365:20753781,12998119:0,588513,102891 -g2989,323:22064501,12998119 -g2989,323:22064501,12998119 -g2989,323:24102670,12998119 -g2989,323:25743036,12998119 -k2989,324:29561492,12998119:3021538 -k2989,324:32583029,12998119:3021537 -) -(2989,325:20753781,13841122:11829248,505283,102891 -h2989,324:20753781,13841122:0,0,0 -r2989,365:20753781,13841122:0,608174,102891 -g2989,324:22064501,13841122 -g2989,324:22064501,13841122 -g2989,324:24887136,13841122 -g2989,324:28474576,13841122 -k2989,325:31489561,13841122:1093469 -k2989,325:32583029,13841122:1093468 -) -(2989,326:20753781,14684124:11829248,505283,102891 -h2989,325:20753781,14684124:0,0,0 -r2989,365:20753781,14684124:0,608174,102891 -g2989,325:22064501,14684124 -g2989,325:22064501,14684124 -g2989,325:24554869,14684124 -g2989,325:25724686,14684124 -k2989,326:29552317,14684124:3030713 -k2989,326:32583029,14684124:3030712 -) -(2989,327:20753781,15527127:11829248,485622,102891 -h2989,326:20753781,15527127:0,0,0 -r2989,365:20753781,15527127:0,588513,102891 -g2989,326:22064501,15527127 -g2989,326:22064501,15527127 -g2989,326:25368826,15527127 -k2989,327:29374387,15527127:3208643 -k2989,327:32583029,15527127:3208642 -) -(2989,328:20753781,16370130:11829248,505283,134348 -h2989,327:20753781,16370130:0,0,0 -g2989,327:23212036,16370130 -g2989,327:27937181,16370130 -k2989,328:30857794,16370130:1725236 -k2989,328:32583029,16370130:1725235 -) -(2989,329:20753781,17213133:11829248,505283,102891 -h2989,328:20753781,17213133:0,0,0 -g2989,328:22055326,17213133 -g2989,328:23221866,17213133 -g2989,328:25233821,17213133 -k2989,329:30067429,17213133:2515600 -k2989,329:32583029,17213133:2515600 -) -(2989,330:20753781,18056135:11829248,505283,102891 -h2989,329:20753781,18056135:0,0,0 -g2989,329:23122251,18056135 -k2989,330:28450329,18056135:4132701 -k2989,330:32583029,18056135:4132700 -) -(2989,331:20753781,18899138:11829248,505283,134348 -h2989,330:20753781,18899138:0,0,0 -g2989,330:23022637,18899138 -g2989,330:26472452,18899138 -k2989,331:29926200,18899138:2656830 -k2989,331:32583029,18899138:2656829 -) -(2989,332:20753781,19742141:11829248,505283,134348 -h2989,331:20753781,19742141:0,0,0 -g2989,331:23022637,19742141 -g2989,331:25232511,19742141 -g2989,331:26623185,19742141 -g2989,331:28331053,19742141 -k2989,331:32583029,19742141:1751122 -) -(2989,332:23375221,20583629:9207808,485622,11795 -k2989,332:28939883,20583629:3643146 -k2989,332:32583029,20583629:3643146 -) -(2989,333:20753781,21426631:11829248,513147,134348 -h2989,332:20753781,21426631:0,0,0 -g2989,332:24335323,21426631 -g2989,332:25725997,21426631 -g2989,332:29196128,21426631 -k2989,332:32583029,21426631:1109525 -) -(2989,333:23375221,22268119:9207808,505283,102891 -g2989,332:25137484,22268119 -k2989,333:29457945,22268119:3125084 -k2989,333:32583029,22268119:3125084 -) -(2989,334:20753781,23111122:11829248,505283,126483 -h2989,333:20753781,23111122:0,0,0 -g2989,333:22871904,23111122 -g2989,333:24038444,23111122 -g2989,333:25495309,23111122 -k2989,334:30397731,23111122:2185299 -k2989,334:32583029,23111122:2185298 -) -(2989,335:20753781,23954125:11829248,513147,102891 -h2989,334:20753781,23954125:0,0,0 -r2989,365:20753781,23954125:0,616038,102891 -g2989,334:22064501,23954125 -g2989,334:22064501,23954125 -g2989,334:24107258,23954125 -g2989,334:28197359,23954125 -g2989,334:31288692,23954125 -k2989,335:32533549,23954125:49480 -k2989,335:32583029,23954125:49480 -) -(2989,336:20753781,24797128:11829248,505283,102891 -h2989,335:20753781,24797128:0,0,0 -r2989,365:20753781,24797128:0,608174,102891 -g2989,335:22064501,24797128 -g2989,335:22064501,24797128 -g2989,335:24554869,24797128 -k2989,336:29166638,24797128:3416392 -k2989,336:32583029,24797128:3416391 -) -(2989,337:20753781,25640130:11829248,513147,126483 -h2989,336:20753781,25640130:0,0,0 -g2989,336:22213267,25640130 -g2989,336:23071788,25640130 -g2989,336:25891146,25640130 -g2989,336:29196126,25640130 -k2989,337:31288037,25640130:1294993 -k2989,337:32583029,25640130:1294992 -) -(2989,338:20753781,26483133:11829248,505283,102891 -h2989,337:20753781,26483133:0,0,0 -g2989,337:24391684,26483133 -g2989,337:25959960,26483133 -k2989,338:29869183,26483133:2713846 -k2989,338:32583029,26483133:2713846 -) -(2989,342:20753781,28006741:11829248,505283,7863 -h2989,341:20753781,28006741:0,0,0 -g2989,341:23640641,28006741 -k2989,342:29749908,28006741:2833122 -k2989,342:32583029,28006741:2833121 -) -(2989,343:20753781,28849744:11829248,485622,126483 -h2989,342:20753781,28849744:0,0,0 -r2989,365:20753781,28849744:0,612105,126483 -g2989,342:22064501,28849744 -g2989,342:22064501,28849744 -g2989,342:25369481,28849744 -k2989,343:29937013,28849744:2646016 -k2989,343:32583029,28849744:2646016 -) -(2989,344:20753781,29692747:11829248,505283,134348 -h2989,343:20753781,29692747:0,0,0 -r2989,365:20753781,29692747:0,639631,134348 -g2989,343:22064501,29692747 -g2989,343:22064501,29692747 -g2989,343:25187291,29692747 -g2989,343:27497435,29692747 -k2989,344:30438691,29692747:2144338 -k2989,344:32583029,29692747:2144338 -) -(2989,345:20753781,30535749:11829248,505283,134348 -h2989,344:20753781,30535749:0,0,0 -g2989,344:24161652,30535749 -k2989,345:28970029,30535749:3613000 -k2989,345:32583029,30535749:3613000 -) -(2989,346:20753781,31378752:11829248,505283,134348 -h2989,345:20753781,31378752:0,0,0 -g2989,345:24138715,31378752 -g2989,345:25706991,31378752 -k2989,346:30504227,31378752:2078803 -k2989,346:32583029,31378752:2078802 -) -(2989,347:20753781,32221755:11829248,505283,126483 -h2989,346:20753781,32221755:0,0,0 -g2989,346:24124953,32221755 -g2989,346:25291493,32221755 -g2989,346:29351448,32221755 -k2989,346:32583029,32221755:676988 -) -(2989,347:23375221,33063243:9207808,513147,7863 -g2989,346:24233742,33063243 -k2989,347:29735490,33063243:2847540 -k2989,347:32583029,33063243:2847539 -) -(2989,348:20753781,33906245:11829248,505283,102891 -h2989,347:20753781,33906245:0,0,0 -g2989,347:24429695,33906245 -g2989,347:25997971,33906245 -k2989,348:29888189,33906245:2694841 -k2989,348:32583029,33906245:2694840 -) -(2989,349:20753781,34749248:11829248,513147,102891 -h2989,348:20753781,34749248:0,0,0 -g2989,348:22600585,34749248 -g2989,348:25999282,34749248 -k2989,349:29689615,34749248:2893415 -k2989,349:32583029,34749248:2893414 -) -(2989,350:20753781,35592251:11829248,505283,126483 -h2989,349:20753781,35592251:0,0,0 -g2989,349:22600585,35592251 -g2989,349:26050400,35592251 -k2989,350:29715174,35592251:2867856 -k2989,350:32583029,35592251:2867855 -) -(2989,351:20753781,36435254:11829248,485622,102891 -h2989,350:20753781,36435254:0,0,0 -g2989,350:23860187,36435254 -k2989,351:29182366,36435254:3400663 -k2989,351:32583029,36435254:3400663 -) -(2989,352:20753781,37278256:11829248,473825,7863 -h2989,351:20753781,37278256:0,0,0 -k2989,352:27712066,37278256:4870963 -k2989,352:32583029,37278256:4870963 -) -(2989,353:20753781,38121259:11829248,505283,102891 -h2989,352:20753781,38121259:0,0,0 -r2989,365:20753781,38121259:0,608174,102891 -g2989,352:22064501,38121259 -g2989,352:22064501,38121259 -g2989,352:26112659,38121259 -k2989,353:29746303,38121259:2836726 -k2989,353:32583029,38121259:2836726 -) -(2989,354:20753781,38964262:11829248,505283,102891 -h2989,353:20753781,38964262:0,0,0 -g2989,353:25157799,38964262 -k2989,354:29268873,38964262:3314156 -k2989,354:32583029,38964262:3314156 -) -(2989,355:20753781,39807265:11829248,505283,134348 -h2989,354:20753781,39807265:0,0,0 -g2989,354:22548812,39807265 -g2989,354:23715352,39807265 -g2989,354:29518565,39807265 -k2989,355:32158356,39807265:424674 -k2989,355:32583029,39807265:424673 -) -(2989,356:20753781,40650267:11829248,513147,134348 -h2989,355:20753781,40650267:0,0,0 -g2989,355:23573139,40650267 -g2989,355:25161731,40650267 -g2989,355:26928581,40650267 -g2989,355:28300249,40650267 -k2989,355:32583029,40650267:1967393 -) -(2989,356:23375221,41491755:9207808,485622,11795 -k2989,356:29338342,41491755:3244688 -k2989,356:32583029,41491755:3244687 -) -(2989,357:20753781,42334758:11829248,505283,102891 -h2989,356:20753781,42334758:0,0,0 -g2989,356:23911305,42334758 -k2989,357:28844856,42334758:3738174 -k2989,357:32583029,42334758:3738173 -) -(2989,358:20753781,43177761:11829248,505283,126483 -h2989,357:20753781,43177761:0,0,0 -r2989,365:20753781,43177761:0,631766,126483 -g2989,357:22064501,43177761 -g2989,357:22064501,43177761 -g2989,357:23017394,43177761 -g2989,357:24771792,43177761 -g2989,357:27390610,43177761 -k2989,358:30584508,43177761:1998521 -k2989,358:32583029,43177761:1998521 -) -(2989,359:20753781,44020764:11829248,505283,126483 -h2989,358:20753781,44020764:0,0,0 -g2989,358:26463932,44020764 -g2989,358:29626699,44020764 -k2989,359:31702553,44020764:880477 -k2989,359:32583029,44020764:880476 -) -(2989,360:20753781,44863766:11829248,505283,102891 -h2989,359:20753781,44863766:0,0,0 -g2989,359:26899091,44863766 -k2989,360:30338749,44863766:2244281 -k2989,360:32583029,44863766:2244280 -) -(2989,361:20753781,45706769:11829248,513147,126483 -h2989,360:20753781,45706769:0,0,0 -g2989,360:23942108,45706769 -g2989,360:24564045,45706769 -g2989,360:26630394,45706769 -k2989,361:29805941,45706769:2777088 -k2989,361:32583029,45706769:2777088 +[1,1614:6630773,47279633:25952256,43253760,0 +[1,1614:6630773,4812305:25952256,786432,0 +(1,1614:6630773,4812305:25952256,513147,126483 +(1,1614:6630773,4812305:25952256,513147,126483 +g1,1614:3078558,4812305 +[1,1614:3078558,4812305:0,0,0 +(1,1614:3078558,2439708:0,1703936,0 +k1,1614:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,1614:2537886,2439708:1179648,16384,0 ) -] -(2989,365:32583029,45706769:0,355205,126483 -h2989,365:32583029,45706769:420741,355205,126483 -k2989,365:32583029,45706769:-420741 +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,1614:3078558,1915420:16384,1179648,0 ) +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) ] -(2989,365:32583029,45706769:0,0,0 -g2989,365:32583029,45706769 ) ) -] -(2989,365:6630773,47279633:25952256,0,0 -h2989,365:6630773,47279633:25952256,0,0 ) ] -(2989,365:4262630,4025873:0,0,0 -[2989,365:-473656,4025873:0,0,0 -(2989,365:-473656,-710413:0,0,0 -(2989,365:-473656,-710413:0,0,0 -g2989,365:-473656,-710413 +[1,1614:3078558,4812305:0,0,0 +(1,1614:3078558,2439708:0,1703936,0 +g1,1614:29030814,2439708 +g1,1614:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,1614:36151628,1915420:16384,1179648,0 ) -g2989,365:-473656,-710413 +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) ] ) -] -!27922 -}381 -!12 -{382 -[2989,457:4262630,47279633:28320399,43253760,0 -(2989,457:4262630,4025873:0,0,0 -[2989,457:-473656,4025873:0,0,0 -(2989,457:-473656,-710413:0,0,0 -(2989,457:-473656,-644877:0,0,0 -k2989,457:-473656,-644877:-65536 -) -(2989,457:-473656,4736287:0,0,0 -k2989,457:-473656,4736287:5209943 -) -g2989,457:-473656,-710413 +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,1614:37855564,2439708:1179648,16384,0 ) -] ) -[2989,457:6630773,47279633:25952256,43253760,0 -[2989,457:6630773,4812305:25952256,786432,0 -(2989,457:6630773,4812305:25952256,505283,11795 -(2989,457:6630773,4812305:25952256,505283,11795 -g2989,457:3078558,4812305 -[2989,457:3078558,4812305:0,0,0 -(2989,457:3078558,2439708:0,1703936,0 -k2989,457:1358238,2439708:-1720320 -(2989,1:1358238,2439708:1720320,1703936,0 -(2989,1:1358238,2439708:1179648,16384,0 -r2989,457:2537886,2439708:1179648,16384,0 -) -g2989,1:3062174,2439708 -(2989,1:3062174,2439708:16384,1703936,0 -[2989,1:3062174,2439708:25952256,1703936,0 -(2989,1:3062174,1915420:25952256,1179648,0 -(2989,1:3062174,1915420:16384,1179648,0 -r2989,457:3078558,1915420:16384,1179648,0 -) -k2989,1:29014430,1915420:25935872 -g2989,1:29014430,1915420 +k1,1614:3078556,2439708:-34777008 ) ] +[1,1614:3078558,4812305:0,0,0 +(1,1614:3078558,49800853:0,16384,2228224 +k1,1614:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,1614:2537886,49800853:1179648,16384,0 ) +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,1614:3078558,51504789:16384,1179648,0 ) +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) ] -[2989,457:3078558,4812305:0,0,0 -(2989,457:3078558,2439708:0,1703936,0 -g2989,457:29030814,2439708 -g2989,457:36135244,2439708 -(2989,1:36135244,2439708:1720320,1703936,0 -(2989,1:36135244,2439708:16384,1703936,0 -[2989,1:36135244,2439708:25952256,1703936,0 -(2989,1:36135244,1915420:25952256,1179648,0 -(2989,1:36135244,1915420:16384,1179648,0 -r2989,457:36151628,1915420:16384,1179648,0 -) -k2989,1:62087500,1915420:25935872 -g2989,1:62087500,1915420 ) -] -) -g2989,1:36675916,2439708 -(2989,1:36675916,2439708:1179648,16384,0 -r2989,457:37855564,2439708:1179648,16384,0 -) -) -k2989,457:3078556,2439708:-34777008 ) -] -[2989,457:3078558,4812305:0,0,0 -(2989,457:3078558,49800853:0,16384,2228224 -k2989,457:1358238,49800853:-1720320 -(2989,1:1358238,49800853:1720320,16384,2228224 -(2989,1:1358238,49800853:1179648,16384,0 -r2989,457:2537886,49800853:1179648,16384,0 -) -g2989,1:3062174,49800853 -(2989,1:3062174,52029077:16384,1703936,0 -[2989,1:3062174,52029077:25952256,1703936,0 -(2989,1:3062174,51504789:25952256,1179648,0 -(2989,1:3062174,51504789:16384,1179648,0 -r2989,457:3078558,51504789:16384,1179648,0 -) -k2989,1:29014430,51504789:25935872 -g2989,1:29014430,51504789 ) ] +[1,1614:3078558,4812305:0,0,0 +(1,1614:3078558,49800853:0,16384,2228224 +g1,1614:29030814,49800853 +g1,1614:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,1614:36151628,51504789:16384,1179648,0 ) -) +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 ) ] -[2989,457:3078558,4812305:0,0,0 -(2989,457:3078558,49800853:0,16384,2228224 -g2989,457:29030814,49800853 -g2989,457:36135244,49800853 -(2989,1:36135244,49800853:1720320,16384,2228224 -(2989,1:36135244,52029077:16384,1703936,0 -[2989,1:36135244,52029077:25952256,1703936,0 -(2989,1:36135244,51504789:25952256,1179648,0 -(2989,1:36135244,51504789:16384,1179648,0 -r2989,457:36151628,51504789:16384,1179648,0 -) -k2989,1:62087500,51504789:25935872 -g2989,1:62087500,51504789 ) -] +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,1614:37855564,49800853:1179648,16384,0 ) -g2989,1:36675916,49800853 -(2989,1:36675916,49800853:1179648,16384,0 -r2989,457:37855564,49800853:1179648,16384,0 ) +k1,1614:3078556,49800853:-34777008 +) +] +g1,1614:6630773,4812305 +g1,1614:6630773,4812305 +g1,1614:8671564,4812305 +g1,1614:11756343,4812305 +k1,1614:31786111,4812305:20029768 +) +) +] +[1,1614:6630773,45706769:25952256,40108032,0 +(1,1614:6630773,45706769:25952256,40108032,0 +(1,1614:6630773,45706769:0,0,0 +g1,1614:6630773,45706769 +) +[1,1614:6630773,45706769:25952256,40108032,0 +v1,1603:6630773,6254097:0,393216,0 +(1,1603:6630773,27622155:25952256,21761274,0 +g1,1603:6630773,27622155 +g1,1603:6303093,27622155 +r1,1614:6401397,27622155:98304,21761274,0 +g1,1603:6600626,27622155 +g1,1603:6797234,27622155 +[1,1603:6797234,27622155:25785795,21761274,0 +v1,1550:6797234,6254097:0,393216,0 +(1,1564:6797234,11932696:25785795,6071815,196608 +g1,1564:6797234,11932696 +g1,1564:6797234,11932696 +g1,1564:6600626,11932696 +(1,1564:6600626,11932696:0,6071815,196608 +r1,1614:32779637,11932696:26179011,6268423,196608 +k1,1564:6600625,11932696:-26179012 +) +(1,1564:6600626,11932696:26179011,6071815,196608 +[1,1564:6797234,11932696:25785795,5875207,0 +(1,1552:6797234,6461715:25785795,404226,76021 +(1,1551:6797234,6461715:0,0,0 +g1,1551:6797234,6461715 +g1,1551:6797234,6461715 +g1,1551:6469554,6461715 +(1,1551:6469554,6461715:0,0,0 +) +g1,1551:6797234,6461715 +) +k1,1552:6797234,6461715:0 +h1,1552:11855565,6461715:0,0,0 +k1,1552:32583029,6461715:20727464 +g1,1552:32583029,6461715 +) +(1,1553:6797234,7127893:25785795,404226,101187 +h1,1553:6797234,7127893:0,0,0 +g1,1553:9010254,7127893 +g1,1553:9958692,7127893 +g1,1553:14384733,7127893 +g1,1553:15649317,7127893 +g1,1553:17862337,7127893 +g1,1553:19443066,7127893 +g1,1553:20075358,7127893 +g1,1553:21339941,7127893 +g1,1553:22288378,7127893 +g1,1553:22920670,7127893 +h1,1553:23552962,7127893:0,0,0 +k1,1553:32583029,7127893:9030067 +g1,1553:32583029,7127893 +) +(1,1554:6797234,7794071:25785795,404226,76021 +h1,1554:6797234,7794071:0,0,0 +k1,1554:6797234,7794071:0 +h1,1554:10274836,7794071:0,0,0 +k1,1554:32583028,7794071:22308192 +g1,1554:32583028,7794071 +) +(1,1563:6797234,8525785:25785795,410518,9436 +(1,1556:6797234,8525785:0,0,0 +g1,1556:6797234,8525785 +g1,1556:6797234,8525785 +g1,1556:6469554,8525785 +(1,1556:6469554,8525785:0,0,0 +) +g1,1556:6797234,8525785 +) +g1,1563:7745671,8525785 +g1,1563:9326400,8525785 +g1,1563:10274837,8525785 +h1,1563:10590983,8525785:0,0,0 +k1,1563:32583029,8525785:21992046 +g1,1563:32583029,8525785 +) +(1,1563:6797234,9191963:25785795,410518,76021 +h1,1563:6797234,9191963:0,0,0 +g1,1563:7745671,9191963 +g1,1563:8061817,9191963 +g1,1563:8694109,9191963 +g1,1563:9326401,9191963 +g1,1563:10590984,9191963 +g1,1563:12487858,9191963 +g1,1563:14384732,9191963 +g1,1563:15965461,9191963 +g1,1563:17546190,9191963 +h1,1563:19126918,9191963:0,0,0 +k1,1563:32583029,9191963:13456111 +g1,1563:32583029,9191963 +) +(1,1563:6797234,9858141:25785795,410518,76021 +h1,1563:6797234,9858141:0,0,0 +g1,1563:7745671,9858141 +g1,1563:8061817,9858141 +g1,1563:8694109,9858141 +g1,1563:9326401,9858141 +g1,1563:10590984,9858141 +g1,1563:12487858,9858141 +g1,1563:14068587,9858141 +g1,1563:15649316,9858141 +g1,1563:17230045,9858141 +h1,1563:18494628,9858141:0,0,0 +k1,1563:32583029,9858141:14088401 +g1,1563:32583029,9858141 +) +(1,1563:6797234,10524319:25785795,410518,76021 +h1,1563:6797234,10524319:0,0,0 +g1,1563:7745671,10524319 +g1,1563:8061817,10524319 +g1,1563:8694109,10524319 +g1,1563:9326401,10524319 +g1,1563:10590984,10524319 +g1,1563:12487858,10524319 +g1,1563:14384732,10524319 +g1,1563:15965461,10524319 +g1,1563:16597753,10524319 +h1,1563:17862336,10524319:0,0,0 +k1,1563:32583029,10524319:14720693 +g1,1563:32583029,10524319 +) +(1,1563:6797234,11190497:25785795,410518,76021 +h1,1563:6797234,11190497:0,0,0 +g1,1563:7745671,11190497 +g1,1563:8061817,11190497 +g1,1563:8694109,11190497 +g1,1563:9326401,11190497 +g1,1563:10590984,11190497 +g1,1563:12487858,11190497 +g1,1563:14068587,11190497 +g1,1563:15965461,11190497 +g1,1563:17862335,11190497 +h1,1563:19443063,11190497:0,0,0 +k1,1563:32583029,11190497:13139966 +g1,1563:32583029,11190497 +) +(1,1563:6797234,11856675:25785795,410518,76021 +h1,1563:6797234,11856675:0,0,0 +g1,1563:7745671,11856675 +g1,1563:8061817,11856675 +g1,1563:8694109,11856675 +g1,1563:9326401,11856675 +g1,1563:10590984,11856675 +g1,1563:12487858,11856675 +g1,1563:14068587,11856675 +g1,1563:15965461,11856675 +g1,1563:17862335,11856675 +h1,1563:19443063,11856675:0,0,0 +k1,1563:32583029,11856675:13139966 +g1,1563:32583029,11856675 +) +] +) +g1,1564:32583029,11932696 +g1,1564:6797234,11932696 +g1,1564:6797234,11932696 +g1,1564:32583029,11932696 +g1,1564:32583029,11932696 +) +h1,1564:6797234,12129304:0,0,0 +(1,1568:6797234,13495080:25785795,513147,126483 +h1,1567:6797234,13495080:983040,0,0 +k1,1567:8987548,13495080:253725 +k1,1567:11202110,13495080:253725 +k1,1567:12474920,13495080:253725 +k1,1567:15424142,13495080:253726 +k1,1567:16962373,13495080:253725 +k1,1567:18084450,13495080:253725 +k1,1567:19470637,13495080:253725 +k1,1567:21661606,13495080:253725 +k1,1567:22271191,13495080:253725 +k1,1567:25220413,13495080:253726 +k1,1567:26758644,13495080:253725 +k1,1567:29353315,13495080:253725 +k1,1567:29962900,13495080:253725 +k1,1567:32583029,13495080:0 +) +(1,1568:6797234,14336568:25785795,513147,134348 +g1,1567:8974340,14336568 +g1,1567:9832861,14336568 +g1,1567:12045356,14336568 +k1,1568:32583029,14336568:19965544 +g1,1568:32583029,14336568 +) +v1,1570:6797234,15527034:0,393216,0 +(1,1576:6797234,17149321:25785795,2015503,196608 +g1,1576:6797234,17149321 +g1,1576:6797234,17149321 +g1,1576:6600626,17149321 +(1,1576:6600626,17149321:0,2015503,196608 +r1,1614:32779637,17149321:26179011,2212111,196608 +k1,1576:6600625,17149321:-26179012 +) +(1,1576:6600626,17149321:26179011,2015503,196608 +[1,1576:6797234,17149321:25785795,1818895,0 +(1,1572:6797234,15740944:25785795,410518,82312 +(1,1571:6797234,15740944:0,0,0 +g1,1571:6797234,15740944 +g1,1571:6797234,15740944 +g1,1571:6469554,15740944 +(1,1571:6469554,15740944:0,0,0 +) +g1,1571:6797234,15740944 +) +g1,1572:10590982,15740944 +g1,1572:11539420,15740944 +g1,1572:15333169,15740944 +g1,1572:17230043,15740944 +g1,1572:17862335,15740944 +g1,1572:20075355,15740944 +h1,1572:20391501,15740944:0,0,0 +k1,1572:32583029,15740944:12191528 +g1,1572:32583029,15740944 +) +(1,1573:6797234,16407122:25785795,404226,82312 +h1,1573:6797234,16407122:0,0,0 +g1,1573:7113380,16407122 +g1,1573:7429526,16407122 +g1,1573:7745672,16407122 +g1,1573:8061818,16407122 +g1,1573:8377964,16407122 +g1,1573:8694110,16407122 +g1,1573:9010256,16407122 +g1,1573:12171714,16407122 +g1,1573:14068588,16407122 +g1,1573:14700880,16407122 +g1,1573:17230046,16407122 +g1,1573:17546192,16407122 +g1,1573:19443066,16407122 +g1,1573:21339940,16407122 +g1,1573:21972232,16407122 +h1,1573:24185252,16407122:0,0,0 +k1,1573:32583029,16407122:8397777 +g1,1573:32583029,16407122 +) +(1,1574:6797234,17073300:25785795,404226,76021 +h1,1574:6797234,17073300:0,0,0 +g1,1574:7113380,17073300 +g1,1574:7429526,17073300 +g1,1574:7745672,17073300 +g1,1574:8061818,17073300 +h1,1574:8377964,17073300:0,0,0 +k1,1574:32583028,17073300:24205064 +g1,1574:32583028,17073300 +) +] +) +g1,1576:32583029,17149321 +g1,1576:6797234,17149321 +g1,1576:6797234,17149321 +g1,1576:32583029,17149321 +g1,1576:32583029,17149321 +) +h1,1576:6797234,17345929:0,0,0 +(1,1580:6797234,18711705:25785795,513147,126483 +h1,1579:6797234,18711705:983040,0,0 +g1,1579:8933052,18711705 +g1,1579:10516401,18711705 +g1,1579:11808115,18711705 +(1,1579:11808115,18711705:0,452978,115847 +r1,1614:14628364,18711705:2820249,568825,115847 +k1,1579:11808115,18711705:-2820249 +) +(1,1579:11808115,18711705:2820249,452978,115847 +k1,1579:11808115,18711705:3277 +h1,1579:14625087,18711705:0,411205,112570 +) +g1,1579:14827593,18711705 +g1,1579:15678250,18711705 +g1,1579:17641053,18711705 +g1,1579:18938010,18711705 +g1,1579:21832735,18711705 +g1,1579:22683392,18711705 +g1,1579:24334243,18711705 +g1,1579:27156878,18711705 +g1,1579:29333984,18711705 +g1,1579:30192505,18711705 +g1,1579:31410819,18711705 +k1,1580:32583029,18711705:5014 +g1,1580:32583029,18711705 +) +v1,1582:6797234,19902171:0,393216,0 +(1,1601:6797234,26901259:25785795,7392304,196608 +g1,1601:6797234,26901259 +g1,1601:6797234,26901259 +g1,1601:6600626,26901259 +(1,1601:6600626,26901259:0,7392304,196608 +r1,1614:32779637,26901259:26179011,7588912,196608 +k1,1601:6600625,26901259:-26179012 +) +(1,1601:6600626,26901259:26179011,7392304,196608 +[1,1601:6797234,26901259:25785795,7195696,0 +(1,1584:6797234,20109789:25785795,404226,101187 +(1,1583:6797234,20109789:0,0,0 +g1,1583:6797234,20109789 +g1,1583:6797234,20109789 +g1,1583:6469554,20109789 +(1,1583:6469554,20109789:0,0,0 +) +g1,1583:6797234,20109789 +) +g1,1584:9010254,20109789 +g1,1584:9958692,20109789 +g1,1584:12804004,20109789 +g1,1584:13436296,20109789 +k1,1584:13436296,20109789:0 +h1,1584:15649316,20109789:0,0,0 +k1,1584:32583028,20109789:16933712 +g1,1584:32583028,20109789 +) +(1,1585:6797234,20775967:25785795,404226,82312 +h1,1585:6797234,20775967:0,0,0 +g1,1585:7113380,20775967 +g1,1585:7429526,20775967 +g1,1585:7745672,20775967 +g1,1585:8061818,20775967 +g1,1585:8377964,20775967 +g1,1585:8694110,20775967 +g1,1585:9010256,20775967 +g1,1585:9326402,20775967 +g1,1585:9642548,20775967 +g1,1585:9958694,20775967 +g1,1585:10274840,20775967 +g1,1585:10590986,20775967 +g1,1585:10907132,20775967 +g1,1585:11223278,20775967 +g1,1585:11539424,20775967 +g1,1585:11855570,20775967 +g1,1585:12171716,20775967 +g1,1585:13436299,20775967 +g1,1585:14068591,20775967 +k1,1585:14068591,20775967:0 +h1,1585:17862339,20775967:0,0,0 +k1,1585:32583029,20775967:14720690 +g1,1585:32583029,20775967 +) +(1,1586:6797234,21442145:25785795,404226,82312 +h1,1586:6797234,21442145:0,0,0 +g1,1586:7113380,21442145 +g1,1586:7429526,21442145 +g1,1586:7745672,21442145 +g1,1586:8061818,21442145 +g1,1586:8377964,21442145 +g1,1586:8694110,21442145 +g1,1586:9010256,21442145 +g1,1586:9326402,21442145 +g1,1586:9642548,21442145 +g1,1586:9958694,21442145 +g1,1586:10274840,21442145 +g1,1586:10590986,21442145 +g1,1586:10907132,21442145 +g1,1586:11223278,21442145 +g1,1586:11539424,21442145 +g1,1586:11855570,21442145 +g1,1586:12171716,21442145 +g1,1586:15333173,21442145 +g1,1586:15965465,21442145 +g1,1586:18178486,21442145 +g1,1586:18810778,21442145 +g1,1586:19759216,21442145 +g1,1586:20707653,21442145 +g1,1586:21339945,21442145 +k1,1586:21339945,21442145:0 +h1,1586:22288383,21442145:0,0,0 +k1,1586:32583029,21442145:10294646 +g1,1586:32583029,21442145 +) +(1,1587:6797234,22108323:25785795,404226,76021 +h1,1587:6797234,22108323:0,0,0 +g1,1587:7113380,22108323 +g1,1587:7429526,22108323 +g1,1587:7745672,22108323 +g1,1587:8061818,22108323 +g1,1587:8377964,22108323 +g1,1587:8694110,22108323 +g1,1587:9010256,22108323 +g1,1587:9326402,22108323 +g1,1587:9642548,22108323 +g1,1587:9958694,22108323 +g1,1587:10274840,22108323 +g1,1587:10590986,22108323 +g1,1587:10907132,22108323 +g1,1587:11223278,22108323 +g1,1587:11539424,22108323 +g1,1587:11855570,22108323 +g1,1587:12171716,22108323 +g1,1587:14068590,22108323 +g1,1587:14700882,22108323 +h1,1587:16281611,22108323:0,0,0 +k1,1587:32583029,22108323:16301418 +g1,1587:32583029,22108323 +) +(1,1588:6797234,22774501:25785795,404226,76021 +h1,1588:6797234,22774501:0,0,0 +k1,1588:6797234,22774501:0 +h1,1588:10907127,22774501:0,0,0 +k1,1588:32583029,22774501:21675902 +g1,1588:32583029,22774501 +) +(1,1592:6797234,23506215:25785795,404226,101187 +(1,1590:6797234,23506215:0,0,0 +g1,1590:6797234,23506215 +g1,1590:6797234,23506215 +g1,1590:6469554,23506215 +(1,1590:6469554,23506215:0,0,0 +) +g1,1590:6797234,23506215 +) +g1,1592:7745671,23506215 +g1,1592:9010254,23506215 +g1,1592:11855565,23506215 +h1,1592:14068585,23506215:0,0,0 +k1,1592:32583029,23506215:18514444 +g1,1592:32583029,23506215 +) +(1,1594:6797234,24827753:25785795,404226,6290 +(1,1593:6797234,24827753:0,0,0 +g1,1593:6797234,24827753 +g1,1593:6797234,24827753 +g1,1593:6469554,24827753 +(1,1593:6469554,24827753:0,0,0 +) +g1,1593:6797234,24827753 +) +h1,1594:8694108,24827753:0,0,0 +k1,1594:32583028,24827753:23888920 +g1,1594:32583028,24827753 +) +(1,1600:6797234,25559467:25785795,404226,82312 +(1,1596:6797234,25559467:0,0,0 +g1,1596:6797234,25559467 +g1,1596:6797234,25559467 +g1,1596:6469554,25559467 +(1,1596:6469554,25559467:0,0,0 +) +g1,1596:6797234,25559467 +) +g1,1600:7745671,25559467 +g1,1600:8061817,25559467 +g1,1600:8377963,25559467 +g1,1600:8694109,25559467 +g1,1600:9010255,25559467 +g1,1600:9326401,25559467 +g1,1600:9642547,25559467 +g1,1600:9958693,25559467 +g1,1600:10274839,25559467 +g1,1600:10590985,25559467 +g1,1600:10907131,25559467 +g1,1600:11223277,25559467 +g1,1600:12804006,25559467 +g1,1600:13120152,25559467 +g1,1600:13436298,25559467 +g1,1600:13752444,25559467 +g1,1600:14068590,25559467 +g1,1600:14384736,25559467 +g1,1600:14700882,25559467 +g1,1600:16281611,25559467 +g1,1600:16597757,25559467 +g1,1600:16913903,25559467 +g1,1600:17230049,25559467 +g1,1600:17546195,25559467 +g1,1600:19126924,25559467 +g1,1600:19443070,25559467 +g1,1600:19759216,25559467 +g1,1600:20075362,25559467 +g1,1600:20391508,25559467 +g1,1600:20707654,25559467 +g1,1600:21023800,25559467 +g1,1600:22604529,25559467 +g1,1600:22920675,25559467 +g1,1600:23236821,25559467 +g1,1600:23552967,25559467 +g1,1600:23869113,25559467 +g1,1600:24185259,25559467 +k1,1600:24185259,25559467:0 +h1,1600:25449842,25559467:0,0,0 +k1,1600:32583029,25559467:7133187 +g1,1600:32583029,25559467 +) +(1,1600:6797234,26225645:25785795,388497,9436 +h1,1600:6797234,26225645:0,0,0 +g1,1600:7745671,26225645 +g1,1600:9326400,26225645 +g1,1600:12804003,26225645 +g1,1600:16281606,26225645 +g1,1600:19126917,26225645 +g1,1600:22604520,26225645 +h1,1600:25449831,26225645:0,0,0 +k1,1600:32583029,26225645:7133198 +g1,1600:32583029,26225645 +) +(1,1600:6797234,26891823:25785795,404226,9436 +h1,1600:6797234,26891823:0,0,0 +g1,1600:7745671,26891823 +g1,1600:8694108,26891823 +g1,1600:9010254,26891823 +g1,1600:9326400,26891823 +g1,1600:9642546,26891823 +g1,1600:12804003,26891823 +g1,1600:13120149,26891823 +g1,1600:16281606,26891823 +g1,1600:19126917,26891823 +g1,1600:19443063,26891823 +g1,1600:22604520,26891823 +g1,1600:22920666,26891823 +h1,1600:25449831,26891823:0,0,0 +k1,1600:32583029,26891823:7133198 +g1,1600:32583029,26891823 +) +] +) +g1,1601:32583029,26901259 +g1,1601:6797234,26901259 +g1,1601:6797234,26901259 +g1,1601:32583029,26901259 +g1,1601:32583029,26901259 +) +h1,1601:6797234,27097867:0,0,0 +] +g1,1603:32583029,27622155 +) +h1,1603:6630773,27622155:0,0,0 +v1,1606:6630773,28987931:0,393216,0 +(1,1607:6630773,32411024:25952256,3816309,0 +g1,1607:6630773,32411024 +g1,1607:6303093,32411024 +r1,1614:6401397,32411024:98304,3816309,0 +g1,1607:6600626,32411024 +g1,1607:6797234,32411024 +[1,1607:6797234,32411024:25785795,3816309,0 +(1,1607:6797234,29878697:25785795,1283982,196608 +(1,1606:6797234,29878697:0,1283982,196608 +r1,1614:8400153,29878697:1602919,1480590,196608 +k1,1606:6797234,29878697:-1602919 +) +(1,1606:6797234,29878697:1602919,1283982,196608 +) +k1,1606:8576653,29878697:176500 +k1,1606:9571042,29878697:176500 +k1,1606:12825768,29878697:176500 +k1,1606:13618305,29878697:176499 +k1,1606:16073492,29878697:176500 +(1,1606:16073492,29878697:661914,485622,0 +) +k1,1606:16911906,29878697:176500 +k1,1606:17897776,29878697:176500 +k1,1606:19572429,29878697:176500 +(1,1606:19572429,29878697:661914,485622,0 +) +k1,1606:20584513,29878697:176500 +k1,1606:22316182,29878697:176500 +(1,1606:22316182,29878697:0,459977,115847 +r1,1614:25839854,29878697:3523672,575824,115847 +k1,1606:22316182,29878697:-3523672 +) +(1,1606:22316182,29878697:3523672,459977,115847 +k1,1606:22316182,29878697:3277 +h1,1606:25836577,29878697:0,411205,112570 +) +k1,1606:26016353,29878697:176499 +k1,1606:26724350,29878697:176500 +k1,1606:29283739,29878697:176500 +k1,1606:31027860,29878697:176500 +k1,1607:32583029,29878697:0 +) +(1,1607:6797234,30720185:25785795,513147,126483 +(1,1606:6797234,30720185:0,452978,115847 +r1,1614:8210635,30720185:1413401,568825,115847 +k1,1606:6797234,30720185:-1413401 +) +(1,1606:6797234,30720185:1413401,452978,115847 +k1,1606:6797234,30720185:3277 +h1,1606:8207358,30720185:0,411205,112570 +) +k1,1606:8537417,30720185:153112 +k1,1606:10585830,30720185:153112 +k1,1606:13434439,30720185:153113 +(1,1606:13434439,30720185:0,452978,115847 +r1,1614:18013247,30720185:4578808,568825,115847 +k1,1606:13434439,30720185:-4578808 +) +(1,1606:13434439,30720185:4578808,452978,115847 +k1,1606:13434439,30720185:3277 +h1,1606:18009970,30720185:0,411205,112570 +) +k1,1606:18166359,30720185:153112 +k1,1606:20701049,30720185:153112 +k1,1606:22709485,30720185:153112 +k1,1606:23514025,30720185:153112 +k1,1606:24686222,30720185:153112 +k1,1606:26228698,30720185:153113 +k1,1606:28258106,30720185:153112 +(1,1606:28258106,30720185:0,414482,115847 +r1,1614:29671507,30720185:1413401,530329,115847 +k1,1606:28258106,30720185:-1413401 +) +(1,1606:28258106,30720185:1413401,414482,115847 +k1,1606:28258106,30720185:3277 +h1,1606:29668230,30720185:0,411205,112570 +) +k1,1606:29824619,30720185:153112 +k1,1606:32583029,30720185:0 +) +(1,1607:6797234,31561673:25785795,513147,126483 +k1,1606:7721685,31561673:238289 +k1,1606:10621391,31561673:238289 +k1,1606:12249043,31561673:238289 +k1,1606:13103369,31561673:238288 +k1,1606:13930171,31561673:238289 +k1,1606:15365147,31561673:238289 +k1,1606:16780463,31561673:238289 +k1,1606:17550249,31561673:238289 +k1,1606:18439966,31561673:238289 +k1,1606:20702007,31561673:238289 +k1,1606:21959381,31561673:238289 +k1,1606:23935684,31561673:238288 +k1,1606:25365418,31561673:238289 +k1,1606:28447314,31561673:238289 +k1,1606:31635378,31561673:238289 +k1,1606:32583029,31561673:0 +) +(1,1607:6797234,32403161:25785795,505283,7863 +g1,1606:8448085,32403161 +k1,1607:32583028,32403161:21578384 +g1,1607:32583028,32403161 +) +] +g1,1607:32583029,32411024 +) +h1,1607:6630773,32411024:0,0,0 +(1,1609:6630773,34502284:25952256,564462,147783 +(1,1609:6630773,34502284:2450326,534184,0 +g1,1609:6630773,34502284 +g1,1609:9081099,34502284 +) +g1,1609:12662511,34502284 +g1,1609:16328989,34502284 +g1,1609:17279130,34502284 +g1,1609:20622646,34502284 +g1,1609:22189874,34502284 +k1,1609:32583029,34502284:8076195 +g1,1609:32583029,34502284 +) +(1,1611:6630773,35736988:25952256,513147,126483 +k1,1610:7539069,35736988:280461 +k1,1610:8838615,35736988:280461 +k1,1610:10503196,35736988:280461 +k1,1610:13445073,35736988:280460 +k1,1610:14593886,35736988:280461 +k1,1610:15966832,35736988:280461 +(1,1610:15966832,35736988:0,452978,115847 +r1,1614:18435369,35736988:2468537,568825,115847 +k1,1610:15966832,35736988:-2468537 +) +(1,1610:15966832,35736988:2468537,452978,115847 +k1,1610:15966832,35736988:3277 +h1,1610:18432092,35736988:0,411205,112570 +) +k1,1610:18715830,35736988:280461 +k1,1610:20187736,35736988:280461 +(1,1610:20187736,35736988:0,452978,115847 +r1,1614:22304561,35736988:2116825,568825,115847 +k1,1610:20187736,35736988:-2116825 +) +(1,1610:20187736,35736988:2116825,452978,115847 +k1,1610:20187736,35736988:3277 +h1,1610:22301284,35736988:0,411205,112570 +) +k1,1610:22585022,35736988:280461 +k1,1610:23516911,35736988:280461 +k1,1610:26585273,35736988:280460 +k1,1610:27884819,35736988:280461 +k1,1610:29903295,35736988:280461 +k1,1610:31131407,35736988:280461 +k1,1610:32583029,35736988:0 +) +(1,1611:6630773,36578476:25952256,513147,115847 +k1,1610:9260012,36578476:246350 +k1,1610:10165655,36578476:246351 +k1,1610:12499982,36578476:246350 +(1,1610:12499982,36578476:0,452978,115847 +r1,1614:15320231,36578476:2820249,568825,115847 +k1,1610:12499982,36578476:-2820249 +) +(1,1610:12499982,36578476:2820249,452978,115847 +k1,1610:12499982,36578476:3277 +h1,1610:15316954,36578476:0,411205,112570 +) +k1,1610:15740252,36578476:246351 +k1,1610:16614437,36578476:246350 +k1,1610:17275584,36578476:246304 +k1,1610:18541019,36578476:246350 +k1,1610:22462629,36578476:246351 +k1,1610:23368271,36578476:246350 +k1,1610:23970482,36578476:246351 +k1,1610:26477824,36578476:246350 +k1,1610:28258373,36578476:246351 +k1,1610:29696168,36578476:246350 +k1,1610:32583029,36578476:0 +) +(1,1611:6630773,37419964:25952256,513147,134348 +k1,1610:8246286,37419964:228116 +k1,1610:10359872,37419964:228115 +k1,1610:10943848,37419964:228116 +k1,1610:13867459,37419964:228115 +k1,1610:14627072,37419964:228116 +k1,1610:17226936,37419964:228116 +k1,1610:18446611,37419964:228115 +k1,1610:20542503,37419964:228116 +k1,1610:23555243,37419964:228116 +k1,1610:24980045,37419964:228115 +k1,1610:28280489,37419964:228116 +k1,1610:30713891,37419964:228115 +k1,1610:31593435,37419964:228116 +k1,1611:32583029,37419964:0 +) +(1,1611:6630773,38261452:25952256,513147,134348 +k1,1610:9350953,38261452:216049 +(1,1610:9350953,38261452:0,414482,115847 +r1,1614:11467778,38261452:2116825,530329,115847 +k1,1610:9350953,38261452:-2116825 +) +(1,1610:9350953,38261452:2116825,414482,115847 +k1,1610:9350953,38261452:3277 +h1,1610:11464501,38261452:0,411205,112570 +) +k1,1610:11683827,38261452:216049 +k1,1610:15474211,38261452:216050 +k1,1610:17077657,38261452:216049 +k1,1610:19179177,38261452:216049 +k1,1610:21649665,38261452:216049 +k1,1610:22884799,38261452:216049 +k1,1610:25796344,38261452:216049 +k1,1610:27144856,38261452:216050 +k1,1610:28108671,38261452:216049 +k1,1610:30870138,38261452:216049 +k1,1610:31563944,38261452:216049 +k1,1610:32583029,38261452:0 +) +(1,1611:6630773,39102940:25952256,513147,134348 +k1,1610:9523345,39102940:197076 +k1,1610:10251918,39102940:197076 +k1,1610:12820742,39102940:197076 +k1,1610:13669246,39102940:197076 +k1,1610:17059236,39102940:197076 +k1,1610:18964180,39102940:197076 +k1,1610:20029607,39102940:197075 +k1,1610:21273948,39102940:197076 +k1,1610:22755530,39102940:197076 +k1,1610:23820958,39102940:197076 +k1,1610:26429104,39102940:197076 +k1,1610:27435550,39102940:197076 +k1,1610:28651711,39102940:197076 +k1,1610:30154920,39102940:197076 +k1,1610:32583029,39102940:0 +) +(1,1611:6630773,39944428:25952256,513147,134348 +k1,1610:8043830,39944428:221612 +k1,1610:8731404,39944428:221613 +k1,1610:9972101,39944428:221612 +k1,1610:12889210,39944428:221613 +k1,1610:13642319,39944428:221612 +k1,1610:16235679,39944428:221612 +k1,1610:17108720,39944428:221613 +k1,1610:20523246,39944428:221612 +k1,1610:23631719,39944428:221612 +k1,1610:25240729,39944428:221613 +k1,1610:26481426,39944428:221612 +k1,1610:28944370,39944428:221613 +k1,1610:31594091,39944428:221612 +k1,1611:32583029,39944428:0 +) +(1,1611:6630773,40785916:25952256,513147,134348 +k1,1610:8211229,40785916:244832 +k1,1610:9560342,40785916:244831 +k1,1610:11280389,40785916:244832 +k1,1610:13276997,40785916:244831 +k1,1610:17370758,40785916:244832 +k1,1610:18807034,40785916:244831 +k1,1610:23276972,40785916:244832 +k1,1610:25172000,40785916:244831 +k1,1610:28175242,40785916:244832 +k1,1610:29047908,40785916:244831 +k1,1610:30311825,40785916:244832 +k1,1610:31923737,40785916:244831 +k1,1610:32583029,40785916:0 +) +(1,1611:6630773,41627404:25952256,513147,126483 +k1,1610:8782572,41627404:171956 +k1,1610:10348479,41627404:171956 +k1,1610:12170633,41627404:171957 +k1,1610:13785036,41627404:171956 +k1,1610:15129431,41627404:171956 +k1,1610:19150316,41627404:171956 +k1,1610:19780370,41627404:171957 +k1,1610:20483823,41627404:171956 +k1,1610:23285739,41627404:171956 +k1,1610:24649140,41627404:171956 +k1,1610:26798318,41627404:171957 +k1,1610:27621702,41627404:171956 +k1,1610:29557232,41627404:171956 +k1,1610:32583029,41627404:0 +) +(1,1611:6630773,42468892:25952256,505283,134348 +g1,1610:8217399,42468892 +g1,1610:11087875,42468892 +g1,1610:13871844,42468892 +g1,1610:14683835,42468892 +k1,1611:32583029,42468892:16235235 +g1,1611:32583029,42468892 +) +v1,1613:6630773,43834668:0,393216,0 +(1,1614:6630773,44825536:25952256,1384084,0 +g1,1614:6630773,44825536 +g1,1614:6303093,44825536 +r1,1614:6401397,44825536:98304,1384084,0 +g1,1614:6600626,44825536 +g1,1614:6797234,44825536 +[1,1614:6797234,44825536:25785795,1384084,0 +(1,1614:6797234,44526988:25785795,1085536,298548 +(1,1613:6797234,44526988:0,1085536,298548 +r1,1614:8303649,44526988:1506415,1384084,298548 +k1,1613:6797234,44526988:-1506415 +) +(1,1613:6797234,44526988:1506415,1085536,298548 +) +k1,1613:8543880,44526988:240231 +k1,1613:9271658,44526988:240190 +k1,1613:12759198,44526988:240231 +k1,1613:13808799,44526988:240231 +k1,1613:15068115,44526988:240231 +k1,1613:18003842,44526988:240231 +k1,1613:18895501,44526988:240231 +k1,1613:19883498,44526988:240231 +k1,1613:22495477,44526988:240231 +k1,1613:23267205,44526988:240231 +k1,1613:24791942,44526988:240231 +k1,1613:26051258,44526988:240231 +k1,1613:28269366,44526988:240231 +k1,1613:29192482,44526988:240231 +k1,1613:31450567,44526988:240231 +k1,1613:32583029,44526988:0 +) +] +g1,1614:32583029,44825536 +) +] +(1,1614:32583029,45706769:0,0,0 +g1,1614:32583029,45706769 +) +) +] +(1,1614:6630773,47279633:25952256,0,0 +h1,1614:6630773,47279633:25952256,0,0 +) +] +(1,1614:4262630,4025873:0,0,0 +[1,1614:-473656,4025873:0,0,0 +(1,1614:-473656,-710413:0,0,0 +(1,1614:-473656,-710413:0,0,0 +g1,1614:-473656,-710413 +) +g1,1614:-473656,-710413 +) +] +) +] +!26906 +}34 +Input:508:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:509:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:510:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:511:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:512:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:513:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:514:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!648 +{35 +[1,1706:4262630,47279633:28320399,43253760,0 +(1,1706:4262630,4025873:0,0,0 +[1,1706:-473656,4025873:0,0,0 +(1,1706:-473656,-710413:0,0,0 +(1,1706:-473656,-644877:0,0,0 +k1,1706:-473656,-644877:-65536 +) +(1,1706:-473656,4736287:0,0,0 +k1,1706:-473656,4736287:5209943 ) -k2989,457:3078556,49800853:-34777008 +g1,1706:-473656,-710413 ) ] -g2989,457:6630773,4812305 -g2989,457:6630773,4812305 -g2989,457:9313817,4812305 -g2989,457:11188146,4812305 -k2989,457:31387652,4812305:20199506 ) +[1,1706:6630773,47279633:25952256,43253760,0 +[1,1706:6630773,4812305:25952256,786432,0 +(1,1706:6630773,4812305:25952256,505283,134348 +(1,1706:6630773,4812305:25952256,505283,134348 +g1,1706:3078558,4812305 +[1,1706:3078558,4812305:0,0,0 +(1,1706:3078558,2439708:0,1703936,0 +k1,1706:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,1706:2537886,2439708:1179648,16384,0 ) -] -[2989,457:6630773,45706769:25952256,40108032,0 -(2989,457:6630773,45706769:25952256,40108032,0 -(2989,457:6630773,45706769:0,0,0 -g2989,457:6630773,45706769 -) -[2989,457:6630773,45706769:25952256,40108032,0 -(2989,457:6630773,45706769:25952256,40108032,126483 -[2989,457:6630773,45706769:11829248,40108032,102891 -(2989,362:6630773,6254097:11829248,485622,173670 -h2989,361:6630773,6254097:0,0,0 -(2989,361:6630773,6254097:1181614,473825,0 -) -(2989,361:8117325,6427767:355205,473825,0 -) -g2989,361:9173764,6254097 -k2989,362:14414581,6254097:4045440 -k2989,362:18460021,6254097:4045440 -) -(2989,363:6630773,7099335:11829248,513147,102891 -h2989,362:6630773,7099335:0,0,0 -g2989,362:8817709,7099335 -g2989,362:12064362,7099335 -k2989,363:16621408,7099335:1838613 -k2989,363:18460021,7099335:1838613 -) -(2989,364:6630773,7944573:11829248,505283,126483 -h2989,363:6630773,7944573:0,0,0 -r2989,457:6630773,7944573:0,631766,126483 -g2989,363:7941493,7944573 -g2989,363:7941493,7944573 -g2989,363:12570300,7944573 -k2989,364:16112849,7944573:2347172 -k2989,364:18460021,7944573:2347172 -) -(2989,365:6630773,8789811:11829248,505283,7863 -h2989,364:6630773,8789811:0,0,0 -k2989,365:13704401,8789811:4755620 -k2989,365:18460021,8789811:4755620 -) -(2989,366:6630773,9635049:11829248,505283,134348 -h2989,365:6630773,9635049:0,0,0 -r2989,457:6630773,9635049:0,639631,134348 -g2989,365:7941493,9635049 -g2989,365:7941493,9635049 -g2989,365:11833020,9635049 -g2989,365:14018645,9635049 -k2989,366:18460021,9635049:3474065 -) -(2989,366:9252213,10476537:9207808,505283,134348 -g2989,365:13143740,10476537 -g2989,365:15155695,10476537 -k2989,366:17966862,10476537:493159 -k2989,366:18460021,10476537:493159 -) -(2989,367:6630773,11321775:11829248,505283,102891 -h2989,366:6630773,11321775:0,0,0 -r2989,457:6630773,11321775:0,608174,102891 -g2989,366:7941493,11321775 -g2989,366:7941493,11321775 -g2989,366:10127118,11321775 -g2989,366:11293658,11321775 -g2989,366:13305613,11321775 -k2989,367:17041821,11321775:1418200 -k2989,367:18460021,11321775:1418200 -) -(2989,368:6630773,12167012:11829248,505283,102891 -h2989,367:6630773,12167012:0,0,0 -r2989,457:6630773,12167012:0,608174,102891 -k2989,367:7941493,12167012:1310720 -k2989,367:7941493,12167012:0 -k2989,367:11551653,12167012:186559 -k2989,367:12705524,12167012:186560 -k2989,367:16142013,12167012:186559 -k2989,368:18460021,12167012:0 -k2989,368:18460021,12167012:0 -) -(2989,369:6630773,13012250:11829248,513147,102891 -h2989,368:6630773,13012250:0,0,0 -r2989,457:6630773,13012250:0,616038,102891 -g2989,368:7941493,13012250 -g2989,368:7941493,13012250 -g2989,368:11871031,13012250 -k2989,369:15763215,13012250:2696807 -k2989,369:18460021,13012250:2696806 -) -(2989,370:6630773,13857488:11829248,513147,134348 -h2989,369:6630773,13857488:0,0,0 -g2989,369:9148010,13857488 -g2989,369:11455532,13857488 -k2989,370:16316993,13857488:2143028 -k2989,370:18460021,13857488:2143028 -) -(2989,371:6630773,14702726:11829248,505283,102891 -h2989,370:6630773,14702726:0,0,0 -g2989,370:9781088,14702726 -g2989,370:11349364,14702726 -g2989,370:12917640,14702726 -g2989,370:14485916,14702726 -g2989,370:16054192,14702726 -k2989,370:18460021,14702726:1036782 -) -(2989,371:9252213,15544214:9207808,485622,11795 -k2989,371:14453806,15544214:4006216 -k2989,371:18460021,15544214:4006215 -) -(2989,372:6630773,16389452:11829248,505283,102891 -h2989,371:6630773,16389452:0,0,0 -k2989,371:10938781,16389452:194314 -k2989,371:11705225,16389452:194315 -k2989,371:13197807,16389452:194314 -k2989,371:14362710,16389452:194315 -k2989,371:15527612,16389452:194314 -k2989,371:17090974,16389452:194315 -k2989,371:18460021,16389452:0 -) -(2989,372:9252213,17230940:9207808,485622,102891 -g2989,371:10820489,17230940 -k2989,372:15237944,17230940:3222078 -k2989,372:18460021,17230940:3222077 -) -(2989,373:6630773,18076178:11829248,505283,134348 -h2989,372:6630773,18076178:0,0,0 -g2989,372:12433986,18076178 -g2989,372:15022002,18076178 -k2989,373:18100228,18076178:359793 -k2989,373:18460021,18076178:359793 -) -(2989,374:6630773,18921416:11829248,513147,126483 -h2989,373:6630773,18921416:0,0,0 -g2989,373:10690728,18921416 -g2989,373:13444550,18921416 -g2989,373:14303071,18921416 -k2989,373:18460021,18921416:1329071 -) -(2989,374:9252213,19762904:9207808,485622,0 -k2989,374:15215334,19762904:3244688 -k2989,374:18460021,19762904:3244687 -) -(2989,375:6630773,20608142:11829248,505283,102891 -h2989,374:6630773,20608142:0,0,0 -g2989,374:10690728,20608142 -g2989,374:13848252,20608142 -k2989,375:17513353,20608142:946668 -k2989,375:18460021,20608142:946668 -) -(2989,379:6630773,22171238:11829248,505283,134348 -h2989,378:6630773,22171238:0,0,0 -g2989,378:8898318,22171238 -g2989,378:10288992,22171238 -g2989,378:13131288,22171238 -k2989,379:16393343,22171238:2066678 -k2989,379:18460021,22171238:2066678 -) -(2989,380:6630773,23016475:11829248,485622,126483 -h2989,379:6630773,23016475:0,0,0 -g2989,379:10859811,23016475 -k2989,380:15257605,23016475:3202417 -k2989,380:18460021,23016475:3202416 -) -(2989,381:6630773,23861713:11829248,485622,102891 -h2989,380:6630773,23861713:0,0,0 -g2989,380:8658456,23861713 -k2989,381:14156927,23861713:4303094 -k2989,381:18460021,23861713:4303094 -) -(2989,382:6630773,24706951:11829248,513147,102891 -h2989,381:6630773,24706951:0,0,0 -g2989,381:9227964,24706951 -g2989,381:10796240,24706951 -g2989,381:12364516,24706951 -k2989,382:16009957,24706951:2450064 -k2989,382:18460021,24706951:2450064 -) -(2989,383:6630773,25552189:11829248,505283,126483 -h2989,382:6630773,25552189:0,0,0 -g2989,382:8947470,25552189 -g2989,382:11863822,25552189 -g2989,382:13981945,25552189 -k2989,383:16818672,25552189:1641350 -k2989,383:18460021,25552189:1641349 -) -(2989,384:6630773,26397427:11829248,485622,102891 -h2989,383:6630773,26397427:0,0,0 -g2989,383:9393770,26397427 -g2989,383:10962046,26397427 -g2989,383:12530322,26397427 -k2989,384:16092860,26397427:2367161 -k2989,384:18460021,26397427:2367161 -) -(2989,385:6630773,27242665:11829248,485622,102891 -h2989,384:6630773,27242665:0,0,0 -g2989,384:9315782,27242665 -k2989,385:14485590,27242665:3974431 -k2989,385:18460021,27242665:3974431 -) -(2989,386:6630773,28087903:11829248,485622,126483 -h2989,385:6630773,28087903:0,0,0 -g2989,385:10251637,28087903 -k2989,386:14754288,28087903:3705733 -k2989,386:18460021,28087903:3705733 -) -(2989,387:6630773,28933141:11829248,505283,126483 -h2989,386:6630773,28933141:0,0,0 -g2989,386:9445544,28933141 -g2989,386:12651565,28933141 -k2989,387:15954252,28933141:2505769 -k2989,387:18460021,28933141:2505769 -) -(2989,388:6630773,29778379:11829248,505283,102891 -h2989,387:6630773,29778379:0,0,0 -g2989,387:8990724,29778379 -k2989,388:14323061,29778379:4136960 -k2989,388:18460021,29778379:4136960 -) -(2989,389:6630773,30623617:11829248,505283,102891 -h2989,388:6630773,30623617:0,0,0 -g2989,388:8216088,30623617 -g2989,388:9382628,30623617 -g2989,388:12831787,30623617 -k2989,389:16804908,30623617:1655113 -k2989,389:18460021,30623617:1655113 -) -(2989,390:6630773,31468855:11829248,505283,102891 -h2989,389:6630773,31468855:0,0,0 -g2989,389:10079932,31468855 -g2989,389:12770840,31468855 -k2989,390:16974647,31468855:1485374 -k2989,390:18460021,31468855:1485374 -) -(2989,391:6630773,32314092:11829248,505283,102891 -h2989,390:6630773,32314092:0,0,0 -g2989,390:9186021,32314092 -g2989,390:13340348,32314092 -k2989,391:16497873,32314092:1962148 -k2989,391:18460021,32314092:1962148 -) -(2989,392:6630773,33159330:11829248,505283,126483 -h2989,391:6630773,33159330:0,0,0 -g2989,391:9688027,33159330 -k2989,392:14671713,33159330:3788309 -k2989,392:18460021,33159330:3788308 -) -(2989,393:6630773,34004568:11829248,505283,7863 -h2989,392:6630773,34004568:0,0,0 -k2989,393:13953438,34004568:4506583 -k2989,393:18460021,34004568:4506583 -) -(2989,394:6630773,34849806:11829248,505283,102891 -h2989,393:6630773,34849806:0,0,0 -r2989,457:6630773,34849806:0,608174,102891 -g2989,393:7941493,34849806 -g2989,393:7941493,34849806 -g2989,393:10497397,34849806 -k2989,394:14877168,34849806:3582853 -k2989,394:18460021,34849806:3582853 -) -(2989,395:6630773,35695044:11829248,513147,134348 -h2989,394:6630773,35695044:0,0,0 -r2989,457:6630773,35695044:0,647495,134348 -g2989,394:7941493,35695044 -g2989,394:7941493,35695044 -g2989,394:10572763,35695044 -g2989,394:12633870,35695044 -k2989,395:15945405,35695044:2514617 -k2989,395:18460021,35695044:2514616 -) -(2989,396:6630773,36540282:11829248,485622,134348 -h2989,395:6630773,36540282:0,0,0 -r2989,457:6630773,36540282:0,619970,134348 -g2989,395:7941493,36540282 -g2989,395:7941493,36540282 -g2989,395:10544583,36540282 -k2989,396:14900761,36540282:3559260 -k2989,396:18460021,36540282:3559260 -) -(2989,397:6630773,37385520:11829248,505283,102891 -h2989,396:6630773,37385520:0,0,0 -r2989,457:6630773,37385520:0,608174,102891 -g2989,396:7941493,37385520 -g2989,396:7941493,37385520 -g2989,396:10197242,37385520 -k2989,397:14727091,37385520:3732931 -k2989,397:18460021,37385520:3732930 -) -(2989,398:6630773,38230758:11829248,505283,102891 -h2989,397:6630773,38230758:0,0,0 -g2989,397:9646084,38230758 -g2989,397:11036758,38230758 -g2989,397:12744626,38230758 -g2989,397:16393670,38230758 -k2989,398:18387604,38230758:72418 -k2989,398:18460021,38230758:72417 -) -(2989,399:6630773,39075996:11829248,505283,102891 -h2989,398:6630773,39075996:0,0,0 -g2989,398:9450131,39075996 -g2989,398:11833675,39075996 -k2989,399:15545307,39075996:2914714 -k2989,399:18460021,39075996:2914714 -) -(2989,400:6630773,39921234:11829248,505283,134348 -h2989,399:6630773,39921234:0,0,0 -g2989,399:9623802,39921234 -g2989,399:12053221,39921234 -g2989,399:13443895,39921234 -g2989,399:15826128,39921234 -k2989,399:18460021,39921234:449578 -) -(2989,400:9252213,40762722:9207808,485622,0 -k2989,400:14254576,40762722:4205445 -k2989,400:18460021,40762722:4205445 -) -(2989,404:6630773,42325817:11829248,505283,134348 -h2989,403:6630773,42325817:0,0,0 -g2989,403:8789528,42325817 -g2989,403:11230744,42325817 -k2989,404:15443071,42325817:3016950 -k2989,404:18460021,42325817:3016950 -) -(2989,405:6630773,43171055:11829248,505283,134348 -h2989,404:6630773,43171055:0,0,0 -r2989,457:6630773,43171055:0,639631,134348 -g2989,404:7941493,43171055 -g2989,404:7941493,43171055 -g2989,404:8826884,43171055 -g2989,404:12000792,43171055 -g2989,404:14569803,43171055 -k2989,405:17112601,43171055:1347421 -k2989,405:18460021,43171055:1347420 -) -(2989,406:6630773,44016293:11829248,505283,134348 -h2989,405:6630773,44016293:0,0,0 -g2989,405:11673768,44016293 -g2989,405:16398913,44016293 -k2989,406:18027156,44016293:432866 -k2989,406:18460021,44016293:432865 -) -(2989,407:6630773,44861531:11829248,505283,134348 -h2989,406:6630773,44861531:0,0,0 -g2989,406:9293500,44861531 -k2989,407:14474449,44861531:3985572 -k2989,407:18460021,44861531:3985572 -) -(2989,408:6630773,45706769:11829248,505283,102891 -h2989,407:6630773,45706769:0,0,0 -r2989,457:6630773,45706769:0,608174,102891 -g2989,407:7941493,45706769 -g2989,407:7941493,45706769 -g2989,407:10096972,45706769 -k2989,408:14676956,45706769:3783066 -k2989,408:18460021,45706769:3783065 +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,1706:3078558,1915420:16384,1179648,0 ) -] -k2989,457:19606901,45706769:1146880 -r2989,457:19606901,45706769:0,40234515,126483 -k2989,457:20753781,45706769:1146880 -[2989,457:20753781,45706769:11829248,40108032,102891 -(2989,409:20753781,6254097:11829248,485622,102891 -h2989,408:20753781,6254097:0,0,0 -g2989,408:23282815,6254097 -k2989,409:28530611,6254097:4052419 -k2989,409:32583029,6254097:4052418 -) -(2989,410:20753781,7097211:11829248,473825,134348 -h2989,409:20753781,7097211:0,0,0 -g2989,409:24006988,7097211 -k2989,410:29583119,7097211:2999911 -k2989,410:32583029,7097211:2999910 -) -(2989,411:20753781,7940324:11829248,485622,102891 -h2989,410:20753781,7940324:0,0,0 -r2989,457:20753781,7940324:0,588513,102891 -g2989,410:22064501,7940324 -g2989,410:22064501,7940324 -g2989,410:24190488,7940324 -g2989,410:24961846,7940324 -g2989,410:25733204,7940324 -g2989,410:26504562,7940324 -g2989,410:27674379,7940324 -k2989,411:30527163,7940324:2055866 -k2989,411:32583029,7940324:2055866 -) -(2989,412:20753781,8783438:11829248,505283,102891 -h2989,411:20753781,8783438:0,0,0 -r2989,457:20753781,8783438:0,608174,102891 -g2989,411:22064501,8783438 -g2989,411:22064501,8783438 -g2989,411:26377424,8783438 -g2989,411:27148782,8783438 -g2989,411:28646279,8783438 -g2989,411:29816096,8783438 -g2989,411:30985913,8783438 -k2989,411:32583029,8783438:228069 -) -(2989,412:23375221,9624926:9207808,485622,11795 -k2989,412:28576814,9624926:4006216 -k2989,412:32583029,9624926:4006215 -) -(2989,413:20753781,10468039:11829248,485622,102891 -h2989,412:20753781,10468039:0,0,0 -r2989,457:20753781,10468039:0,588513,102891 -g2989,412:22064501,10468039 -g2989,412:22064501,10468039 -g2989,412:23134049,10468039 -g2989,412:23917203,10468039 -g2989,412:24688561,10468039 -g2989,412:25459919,10468039 -g2989,412:26231277,10468039 -k2989,413:29805612,10468039:2777417 -k2989,413:32583029,10468039:2777417 -) -(2989,414:20753781,11311153:11829248,485622,102891 -h2989,413:20753781,11311153:0,0,0 -r2989,457:20753781,11311153:0,588513,102891 -g2989,413:22064501,11311153 -g2989,413:22064501,11311153 -g2989,413:23889022,11311153 -g2989,413:24660380,11311153 -g2989,413:25431738,11311153 -g2989,413:26203096,11311153 -g2989,413:27372913,11311153 -k2989,414:30575660,11311153:2007370 -k2989,414:32583029,11311153:2007369 -) -(2989,415:20753781,12154266:11829248,426639,126483 -h2989,414:20753781,12154266:0,0,0 -k2989,415:28206863,12154266:4376167 -k2989,415:32583029,12154266:4376166 -) -(2989,416:20753781,12997380:11829248,485622,126483 -h2989,415:20753781,12997380:0,0,0 -r2989,457:20753781,12997380:0,612105,126483 -g2989,415:22064501,12997380 -g2989,415:22064501,12997380 -g2989,415:26191303,12997380 -k2989,416:30347924,12997380:2235105 -k2989,416:32583029,12997380:2235105 -) -(2989,417:20753781,13840494:11829248,513147,134348 -h2989,416:20753781,13840494:0,0,0 -r2989,457:20753781,13840494:0,647495,134348 -g2989,416:22064501,13840494 -g2989,416:22064501,13840494 -g2989,416:24867475,13840494 -g2989,416:26523569,13840494 -g2989,416:28091845,13840494 -k2989,417:30935126,13840494:1647904 -k2989,417:32583029,13840494:1647903 -) -(2989,418:20753781,14683607:11829248,485622,102891 -h2989,417:20753781,14683607:0,0,0 -r2989,457:20753781,14683607:0,588513,102891 -g2989,417:22064501,14683607 -g2989,417:22064501,14683607 -g2989,417:23371944,14683607 -k2989,418:28938245,14683607:3644785 -k2989,418:32583029,14683607:3644784 -) -(2989,419:20753781,15526721:11829248,485622,102891 -h2989,418:20753781,15526721:0,0,0 -g2989,418:21823329,15526721 -g2989,418:22606483,15526721 -g2989,418:23377841,15526721 -g2989,418:24149199,15526721 -g2989,418:24920557,15526721 -g2989,418:26090374,15526721 -k2989,419:29934390,15526721:2648639 -k2989,419:32583029,15526721:2648639 -) -(2989,420:20753781,16369834:11829248,513147,102891 -h2989,419:20753781,16369834:0,0,0 -g2989,419:23864119,16369834 -g2989,419:25030659,16369834 -g2989,419:28506033,16369834 -k2989,420:31913251,16369834:669779 -k2989,420:32583029,16369834:669778 -) -(2989,424:20753781,17895400:11829248,505283,134348 -h2989,423:20753781,17895400:0,0,0 -k2989,424:28123632,17895400:4459397 -k2989,424:32583029,17895400:4459397 -) -(2989,425:20753781,18738514:11829248,505283,126483 -h2989,424:20753781,18738514:0,0,0 -r2989,457:20753781,18738514:0,631766,126483 -g2989,424:22064501,18738514 -g2989,424:22064501,18738514 -g2989,424:25373413,18738514 -k2989,425:29575910,18738514:3007120 -k2989,425:32583029,18738514:3007119 -) -(2989,426:20753781,19581627:11829248,505283,134348 -h2989,425:20753781,19581627:0,0,0 -r2989,457:20753781,19581627:0,639631,134348 -g2989,425:22064501,19581627 -g2989,425:22064501,19581627 -g2989,425:25990762,19581627 -k2989,426:29884584,19581627:2698445 -k2989,426:32583029,19581627:2698445 -) -(2989,427:20753781,20424741:11829248,505283,102891 -h2989,426:20753781,20424741:0,0,0 -r2989,457:20753781,20424741:0,608174,102891 -g2989,426:22064501,20424741 -g2989,426:22064501,20424741 -g2989,426:26178195,20424741 -k2989,427:29978301,20424741:2604729 -k2989,427:32583029,20424741:2604728 -) -(2989,428:20753781,21267855:11829248,505283,102891 -h2989,427:20753781,21267855:0,0,0 -r2989,457:20753781,21267855:0,608174,102891 -g2989,427:22064501,21267855 -g2989,427:22064501,21267855 -g2989,427:24949395,21267855 -k2989,428:29363901,21267855:3219129 -k2989,428:32583029,21267855:3219128 -) -(2989,429:20753781,22110968:11829248,505283,102891 -h2989,428:20753781,22110968:0,0,0 -r2989,457:20753781,22110968:0,608174,102891 -g2989,428:22064501,22110968 -g2989,428:22064501,22110968 -g2989,428:26014355,22110968 -g2989,428:27582631,22110968 -g2989,428:29150907,22110968 -k2989,429:31464657,22110968:1118373 -k2989,429:32583029,22110968:1118372 -) -(2989,430:20753781,22954082:11829248,505283,126483 -h2989,429:20753781,22954082:0,0,0 -r2989,457:20753781,22954082:0,631766,126483 -g2989,429:22064501,22954082 -g2989,429:22064501,22954082 -g2989,429:24889757,22954082 -g2989,429:26458033,22954082 -g2989,429:28026309,22954082 -k2989,430:30902358,22954082:1680672 -k2989,430:32583029,22954082:1680671 -) -(2989,431:20753781,23797195:11829248,505283,102891 -h2989,430:20753781,23797195:0,0,0 -r2989,457:20753781,23797195:0,608174,102891 -g2989,430:22064501,23797195 -g2989,430:22064501,23797195 -g2989,430:25541840,23797195 -k2989,431:29660123,23797195:2922906 -k2989,431:32583029,23797195:2922906 -) -(2989,433:20753781,24640309:11829248,505283,126483 -h2989,431:20753781,24640309:0,0,0 -r2989,457:20753781,24640309:0,631766,126483 -g2989,431:22064501,24640309 -g2989,431:22064501,24640309 -g2989,431:24476880,24640309 -g2989,431:26045156,24640309 -g2989,431:27613432,24640309 -g2989,431:29181708,24640309 -g2989,431:30749984,24640309 -k2989,431:32583029,24640309:463998 -) -(2989,433:23375221,25481797:9207808,485622,102891 -g2989,431:24943497,25481797 -g2989,431:26511773,25481797 -g2989,431:28080049,25481797 -g2989,432:29648325,25481797 -g2989,432:31216601,25481797 -k2989,433:32497504,25481797:85526 -k2989,433:32583029,25481797:85525 -) -(2989,434:20753781,26324910:11829248,505283,126483 -h2989,433:20753781,26324910:0,0,0 -r2989,457:20753781,26324910:0,631766,126483 -g2989,433:22064501,26324910 -g2989,433:22064501,26324910 -g2989,433:24721985,26324910 -k2989,434:29250196,26324910:3332834 -k2989,434:32583029,26324910:3332833 -) -(2989,435:20753781,27168024:11829248,513147,102891 -h2989,434:20753781,27168024:0,0,0 -r2989,457:20753781,27168024:0,616038,102891 -g2989,434:22064501,27168024 -g2989,434:22064501,27168024 -g2989,434:25787600,27168024 -k2989,435:29783003,27168024:2800026 -k2989,435:32583029,27168024:2800026 -) -(2989,436:20753781,28011138:11829248,513147,134348 -h2989,435:20753781,28011138:0,0,0 -r2989,457:20753781,28011138:0,647495,134348 -g2989,435:22064501,28011138 -g2989,435:22064501,28011138 -g2989,435:25131585,28011138 -g2989,435:26301402,28011138 -g2989,435:27869678,28011138 -g2989,435:29437954,28011138 -g2989,435:31006230,28011138 -k2989,436:32392318,28011138:190711 -k2989,436:32583029,28011138:190711 -) -(2989,437:20753781,28854251:11829248,505283,134348 -h2989,436:20753781,28854251:0,0,0 -r2989,457:20753781,28854251:0,639631,134348 -g2989,436:22064501,28854251 -g2989,436:22064501,28854251 -g2989,436:26891227,28854251 -k2989,437:30334817,28854251:2248213 -k2989,437:32583029,28854251:2248212 -) -(2989,438:20753781,29697365:11829248,513147,134348 -h2989,437:20753781,29697365:0,0,0 -r2989,457:20753781,29697365:0,647495,134348 -g2989,437:22064501,29697365 -g2989,437:22064501,29697365 -g2989,437:25279696,29697365 -k2989,438:29529051,29697365:3053978 -k2989,438:32583029,29697365:3053978 -) -(2989,439:20753781,30540478:11829248,505283,134348 -h2989,438:20753781,30540478:0,0,0 -r2989,457:20753781,30540478:0,639631,134348 -g2989,438:22064501,30540478 -g2989,438:22064501,30540478 -g2989,438:26046468,30540478 -k2989,439:29912437,30540478:2670592 -k2989,439:32583029,30540478:2670592 -) -(2989,443:20753781,31383592:11829248,505283,134348 -h2989,439:20753781,31383592:0,0,0 -r2989,457:20753781,31383592:0,639631,134348 -g2989,439:22064501,31383592 -g2989,439:22064501,31383592 -g2989,439:25332781,31383592 -g2989,439:26502598,31383592 -g2989,439:29593931,31383592 -g2989,439:31162207,31383592 -k2989,439:32583029,31383592:51775 -) -(2989,443:23375221,32225080:9207808,485622,102891 -k2989,439:24942973,32225080:198705 -k2989,439:26510725,32225080:198705 -k2989,440:28078478,32225080:198706 -k2989,440:29646230,32225080:198705 -k2989,440:31213982,32225080:198705 -k2989,440:32583029,32225080:0 -) -(2989,443:23375221,33066568:9207808,485622,102891 -g2989,440:24943497,33066568 -g2989,440:26511773,33066568 -g2989,440:28080049,33066568 -g2989,440:29648325,33066568 -k2989,440:32583029,33066568:1565657 -) -(2989,443:23375221,33908056:9207808,485622,102891 -g2989,440:26466554,33908056 -g2989,441:28034830,33908056 -g2989,441:29603106,33908056 -g2989,441:31171382,33908056 -k2989,441:32583029,33908056:42600 -) -(2989,443:23375221,34749544:9207808,485622,102891 -k2989,441:24942973,34749544:198705 -k2989,441:26510725,34749544:198705 -k2989,441:28078478,34749544:198706 -k2989,441:29646230,34749544:198705 -k2989,441:31213982,34749544:198705 -k2989,441:32583029,34749544:0 -) -(2989,443:23375221,35591032:9207808,485622,102891 -g2989,442:24943497,35591032 -g2989,442:26511773,35591032 -k2989,443:30145090,35591032:2437940 -k2989,443:32583029,35591032:2437939 -) -(2989,444:20753781,36434145:11829248,505283,134348 -h2989,443:20753781,36434145:0,0,0 -r2989,457:20753781,36434145:0,639631,134348 -g2989,443:22064501,36434145 -g2989,443:22064501,36434145 -g2989,443:25551671,36434145 -g2989,443:27119947,36434145 -g2989,443:28688223,36434145 -g2989,443:30256499,36434145 -k2989,443:32583029,36434145:957483 -) -(2989,444:23375221,37275633:9207808,485622,102891 -g2989,443:24943497,37275633 -k2989,444:29360952,37275633:3222078 -k2989,444:32583029,37275633:3222077 -) -(2989,445:20753781,38118747:11829248,505283,134348 -h2989,444:20753781,38118747:0,0,0 -r2989,457:20753781,38118747:0,639631,134348 -g2989,444:22064501,38118747 -g2989,444:22064501,38118747 -g2989,444:25268555,38118747 -k2989,445:29523481,38118747:3059549 -k2989,445:32583029,38118747:3059548 -) -(2989,446:20753781,38961860:11829248,505283,134348 -h2989,445:20753781,38961860:0,0,0 -r2989,457:20753781,38961860:0,639631,134348 -g2989,445:22064501,38961860 -g2989,445:22064501,38961860 -g2989,445:25715511,38961860 -k2989,446:29746959,38961860:2836071 -k2989,446:32583029,38961860:2836070 -) -(2989,447:20753781,39804974:11829248,505283,134348 -h2989,446:20753781,39804974:0,0,0 -r2989,457:20753781,39804974:0,639631,134348 -g2989,446:22064501,39804974 -g2989,446:22064501,39804974 -g2989,446:24952672,39804974 -k2989,447:29365539,39804974:3217490 -k2989,447:32583029,39804974:3217490 -) -(2989,448:20753781,40648088:11829248,505283,134348 -h2989,447:20753781,40648088:0,0,0 -r2989,457:20753781,40648088:0,639631,134348 -g2989,447:22064501,40648088 -g2989,447:22064501,40648088 -g2989,447:24925147,40648088 -k2989,448:29351777,40648088:3231253 -k2989,448:32583029,40648088:3231252 -) -(2989,449:20753781,41491201:11829248,505283,134348 -h2989,448:20753781,41491201:0,0,0 -r2989,457:20753781,41491201:0,639631,134348 -g2989,448:22064501,41491201 -g2989,448:22064501,41491201 -g2989,448:24130195,41491201 -g2989,448:25698471,41491201 -g2989,448:27266747,41491201 -k2989,449:30522577,41491201:2060453 -k2989,449:32583029,41491201:2060452 -) -(2989,450:20753781,42334315:11829248,505283,134348 -h2989,449:20753781,42334315:0,0,0 -r2989,457:20753781,42334315:0,639631,134348 -g2989,449:22064501,42334315 -g2989,449:22064501,42334315 -g2989,449:25762041,42334315 -k2989,450:29770224,42334315:2812806 -k2989,450:32583029,42334315:2812805 -) -(2989,451:20753781,43177428:11829248,505283,102891 -h2989,450:20753781,43177428:0,0,0 -r2989,457:20753781,43177428:0,608174,102891 -g2989,450:22064501,43177428 -g2989,450:22064501,43177428 -g2989,450:24730505,43177428 -g2989,450:26298781,43177428 -g2989,450:27867057,43177428 -k2989,451:30822732,43177428:1760298 -k2989,451:32583029,43177428:1760297 -) -(2989,452:20753781,44020542:11829248,505283,102891 -h2989,451:20753781,44020542:0,0,0 -r2989,457:20753781,44020542:0,608174,102891 -g2989,451:22064501,44020542 -g2989,451:22064501,44020542 -g2989,451:24803905,44020542 -k2989,452:29291156,44020542:3291874 -k2989,452:32583029,44020542:3291873 -) -(2989,453:20753781,44863655:11829248,505283,134348 -h2989,452:20753781,44863655:0,0,0 -r2989,457:20753781,44863655:0,639631,134348 -g2989,452:22064501,44863655 -g2989,452:22064501,44863655 -g2989,452:25182048,44863655 -k2989,453:29480227,44863655:3102802 -k2989,453:32583029,44863655:3102802 -) -(2989,454:20753781,45706769:11829248,505283,102891 -h2989,453:20753781,45706769:0,0,0 -r2989,457:20753781,45706769:0,608174,102891 -g2989,453:22064501,45706769 -g2989,453:22064501,45706769 -g2989,453:24343187,45706769 -g2989,453:25513004,45706769 -g2989,453:26682821,45706769 -k2989,454:30230614,45706769:2352416 -k2989,454:32583029,45706769:2352415 +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) ] -(2989,457:32583029,45706769:0,355205,126483 -h2989,457:32583029,45706769:420741,355205,126483 -k2989,457:32583029,45706769:-420741 +) ) ) ] -(2989,457:32583029,45706769:0,0,0 -g2989,457:32583029,45706769 +[1,1706:3078558,4812305:0,0,0 +(1,1706:3078558,2439708:0,1703936,0 +g1,1706:29030814,2439708 +g1,1706:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,1706:36151628,1915420:16384,1179648,0 ) +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) ] -(2989,457:6630773,47279633:25952256,0,0 -h2989,457:6630773,47279633:25952256,0,0 ) -] -(2989,457:4262630,4025873:0,0,0 -[2989,457:-473656,4025873:0,0,0 -(2989,457:-473656,-710413:0,0,0 -(2989,457:-473656,-710413:0,0,0 -g2989,457:-473656,-710413 +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,1706:37855564,2439708:1179648,16384,0 ) -g2989,457:-473656,-710413 ) -] +k1,1706:3078556,2439708:-34777008 ) ] -!27739 -}382 -!12 -{383 -[2989,548:4262630,47279633:28320399,43253760,0 -(2989,548:4262630,4025873:0,0,0 -[2989,548:-473656,4025873:0,0,0 -(2989,548:-473656,-710413:0,0,0 -(2989,548:-473656,-644877:0,0,0 -k2989,548:-473656,-644877:-65536 -) -(2989,548:-473656,4736287:0,0,0 -k2989,548:-473656,4736287:5209943 -) -g2989,548:-473656,-710413 +[1,1706:3078558,4812305:0,0,0 +(1,1706:3078558,49800853:0,16384,2228224 +k1,1706:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,1706:2537886,49800853:1179648,16384,0 ) -] +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,1706:3078558,51504789:16384,1179648,0 ) -[2989,548:6630773,47279633:25952256,43253760,0 -[2989,548:6630773,4812305:25952256,786432,0 -(2989,548:6630773,4812305:25952256,505283,11795 -(2989,548:6630773,4812305:25952256,505283,11795 -g2989,548:3078558,4812305 -[2989,548:3078558,4812305:0,0,0 -(2989,548:3078558,2439708:0,1703936,0 -k2989,548:1358238,2439708:-1720320 -(2989,1:1358238,2439708:1720320,1703936,0 -(2989,1:1358238,2439708:1179648,16384,0 -r2989,548:2537886,2439708:1179648,16384,0 -) -g2989,1:3062174,2439708 -(2989,1:3062174,2439708:16384,1703936,0 -[2989,1:3062174,2439708:25952256,1703936,0 -(2989,1:3062174,1915420:25952256,1179648,0 -(2989,1:3062174,1915420:16384,1179648,0 -r2989,548:3078558,1915420:16384,1179648,0 -) -k2989,1:29014430,1915420:25935872 -g2989,1:29014430,1915420 +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) ] ) ) ) ] -[2989,548:3078558,4812305:0,0,0 -(2989,548:3078558,2439708:0,1703936,0 -g2989,548:29030814,2439708 -g2989,548:36135244,2439708 -(2989,1:36135244,2439708:1720320,1703936,0 -(2989,1:36135244,2439708:16384,1703936,0 -[2989,1:36135244,2439708:25952256,1703936,0 -(2989,1:36135244,1915420:25952256,1179648,0 -(2989,1:36135244,1915420:16384,1179648,0 -r2989,548:36151628,1915420:16384,1179648,0 -) -k2989,1:62087500,1915420:25935872 -g2989,1:62087500,1915420 +[1,1706:3078558,4812305:0,0,0 +(1,1706:3078558,49800853:0,16384,2228224 +g1,1706:29030814,49800853 +g1,1706:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,1706:36151628,51504789:16384,1179648,0 ) -] +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 +) +] ) -g2989,1:36675916,2439708 -(2989,1:36675916,2439708:1179648,16384,0 -r2989,548:37855564,2439708:1179648,16384,0 +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,1706:37855564,49800853:1179648,16384,0 ) ) -k2989,548:3078556,2439708:-34777008 +k1,1706:3078556,49800853:-34777008 +) +] +g1,1706:6630773,4812305 +k1,1706:18771974,4812305:11344283 +g1,1706:20158715,4812305 +g1,1706:20807521,4812305 +g1,1706:24121676,4812305 +g1,1706:28605649,4812305 +g1,1706:30015328,4812305 +) +) +] +[1,1706:6630773,45706769:25952256,40108032,0 +(1,1706:6630773,45706769:25952256,40108032,0 +(1,1706:6630773,45706769:0,0,0 +g1,1706:6630773,45706769 +) +[1,1706:6630773,45706769:25952256,40108032,0 +v1,1614:6630773,6254097:0,393216,0 +(1,1614:6630773,7341999:25952256,1481118,0 +g1,1614:6630773,7341999 +g1,1614:6303093,7341999 +r1,1706:6401397,7341999:98304,1481118,0 +g1,1614:6600626,7341999 +g1,1614:6797234,7341999 +[1,1614:6797234,7341999:25785795,1481118,0 +(1,1614:6797234,6374028:25785795,513147,134348 +k1,1613:9184156,6374028:257657 +k1,1613:10189579,6374028:257657 +k1,1613:12652524,6374028:257658 +k1,1613:13596343,6374028:257657 +k1,1613:14209860,6374028:257657 +k1,1613:17642736,6374028:257657 +k1,1613:20972722,6374028:257658 +k1,1613:21881807,6374028:257657 +k1,1613:23158549,6374028:257657 +k1,1613:24722339,6374028:257657 +k1,1613:27108606,6374028:257658 +k1,1613:30646995,6374028:257657 +k1,1613:31563944,6374028:257657 +k1,1613:32583029,6374028:0 +) +(1,1614:6797234,7215516:25785795,513147,126483 +g1,1613:9368211,7215516 +k1,1614:32583029,7215516:20345652 +g1,1614:32583029,7215516 +) +] +g1,1614:32583029,7341999 +) +h1,1614:6630773,7341999:0,0,0 +v1,1617:6630773,9056753:0,393216,0 +(1,1626:6630773,11410754:25952256,2747217,196608 +g1,1626:6630773,11410754 +g1,1626:6630773,11410754 +g1,1626:6434165,11410754 +(1,1626:6434165,11410754:0,2747217,196608 +r1,1706:32779637,11410754:26345472,2943825,196608 +k1,1626:6434165,11410754:-26345472 +) +(1,1626:6434165,11410754:26345472,2747217,196608 +[1,1626:6630773,11410754:25952256,2550609,0 +(1,1619:6630773,9270663:25952256,410518,82312 +(1,1618:6630773,9270663:0,0,0 +g1,1618:6630773,9270663 +g1,1618:6630773,9270663 +g1,1618:6303093,9270663 +(1,1618:6303093,9270663:0,0,0 +) +g1,1618:6630773,9270663 +) +g1,1619:9476084,9270663 +g1,1619:10424522,9270663 +g1,1619:16431291,9270663 +g1,1619:18012020,9270663 +g1,1619:18644312,9270663 +h1,1619:19592749,9270663:0,0,0 +k1,1619:32583029,9270663:12990280 +g1,1619:32583029,9270663 +) +(1,1620:6630773,9936841:25952256,404226,101187 +h1,1620:6630773,9936841:0,0,0 +g1,1620:7263065,9936841 +g1,1620:8211503,9936841 +g1,1620:13269834,9936841 +g1,1620:15482854,9936841 +g1,1620:16115146,9936841 +g1,1620:17063584,9936841 +g1,1620:18328167,9936841 +g1,1620:18960459,9936841 +h1,1620:20541187,9936841:0,0,0 +k1,1620:32583029,9936841:12041842 +g1,1620:32583029,9936841 +) +(1,1621:6630773,10603019:25952256,404226,76021 +h1,1621:6630773,10603019:0,0,0 +k1,1621:6630773,10603019:0 +h1,1621:8527647,10603019:0,0,0 +k1,1621:32583029,10603019:24055382 +g1,1621:32583029,10603019 +) +(1,1625:6630773,11334733:25952256,404226,76021 +(1,1623:6630773,11334733:0,0,0 +g1,1623:6630773,11334733 +g1,1623:6630773,11334733 +g1,1623:6303093,11334733 +(1,1623:6303093,11334733:0,0,0 +) +g1,1623:6630773,11334733 +) +g1,1625:7579210,11334733 +g1,1625:7895356,11334733 +g1,1625:9159939,11334733 +g1,1625:11372959,11334733 +g1,1625:13269833,11334733 +g1,1625:15166707,11334733 +g1,1625:17063581,11334733 +g1,1625:18328164,11334733 +g1,1625:20225038,11334733 +h1,1625:21173475,11334733:0,0,0 +k1,1625:32583029,11334733:11409554 +g1,1625:32583029,11334733 +) +] +) +g1,1626:32583029,11410754 +g1,1626:6630773,11410754 +g1,1626:6630773,11410754 +g1,1626:32583029,11410754 +g1,1626:32583029,11410754 +) +h1,1626:6630773,11607362:0,0,0 +v1,1630:6630773,13497426:0,393216,0 +(1,1631:6630773,15237543:25952256,2133333,0 +g1,1631:6630773,15237543 +g1,1631:6303093,15237543 +r1,1706:6401397,15237543:98304,2133333,0 +g1,1631:6600626,15237543 +g1,1631:6797234,15237543 +[1,1631:6797234,15237543:25785795,2133333,0 +(1,1631:6797234,14388192:25785795,1283982,196608 +(1,1630:6797234,14388192:0,1283982,196608 +r1,1706:8400153,14388192:1602919,1480590,196608 +k1,1630:6797234,14388192:-1602919 +) +(1,1630:6797234,14388192:1602919,1283982,196608 +) +k1,1630:8570453,14388192:170300 +k1,1630:10946695,14388192:170300 +k1,1630:12136080,14388192:170300 +k1,1630:14967796,14388192:170299 +k1,1630:16993420,14388192:170300 +k1,1630:17888548,14388192:170300 +k1,1630:19343354,14388192:170300 +k1,1630:19971751,14388192:170300 +k1,1630:23260254,14388192:170300 +k1,1630:24634449,14388192:170299 +k1,1630:26873065,14388192:170300 +k1,1630:29370548,14388192:170300 +k1,1630:30200140,14388192:170300 +k1,1630:32583029,14388192:0 +) +(1,1631:6797234,15229680:25785795,355205,7863 +k1,1631:32583029,15229680:23543808 +g1,1631:32583029,15229680 +) +] +g1,1631:32583029,15237543 +) +h1,1631:6630773,15237543:0,0,0 +v1,1634:6630773,16603319:0,393216,0 +(1,1635:6630773,20152897:25952256,3942794,0 +g1,1635:6630773,20152897 +g1,1635:6303093,20152897 +r1,1706:6401397,20152897:98304,3942794,0 +g1,1635:6600626,20152897 +g1,1635:6797234,20152897 +[1,1635:6797234,20152897:25785795,3942794,0 +(1,1635:6797234,17494085:25785795,1283982,196608 +(1,1634:6797234,17494085:0,1283982,196608 +r1,1706:8400153,17494085:1602919,1480590,196608 +k1,1634:6797234,17494085:-1602919 +) +(1,1634:6797234,17494085:1602919,1283982,196608 +) +k1,1634:8654640,17494085:254487 +k1,1634:10455777,17494085:254487 +k1,1634:11545848,17494085:254487 +k1,1634:12819420,17494085:254487 +k1,1634:14461960,17494085:254487 +k1,1634:16544901,17494085:254487 +k1,1634:17747040,17494085:254488 +(1,1634:17747040,17494085:0,452978,115847 +r1,1706:20215577,17494085:2468537,568825,115847 +k1,1634:17747040,17494085:-2468537 +) +(1,1634:17747040,17494085:2468537,452978,115847 +k1,1634:17747040,17494085:3277 +h1,1634:20212300,17494085:0,411205,112570 +) +k1,1634:20470064,17494085:254487 +k1,1634:21915996,17494085:254487 +(1,1634:21915996,17494085:0,452978,115847 +r1,1706:24032821,17494085:2116825,568825,115847 +k1,1634:21915996,17494085:-2116825 +) +(1,1634:21915996,17494085:2116825,452978,115847 +k1,1634:21915996,17494085:3277 +h1,1634:24029544,17494085:0,411205,112570 +) +k1,1634:24287308,17494085:254487 +k1,1634:25733240,17494085:254487 +k1,1634:27771617,17494085:254487 +k1,1634:29665159,17494085:254487 +k1,1634:31412556,17494085:254487 +k1,1634:32583029,17494085:0 +) +(1,1635:6797234,18335573:25785795,513147,134348 +k1,1634:10640741,18335573:178734 +k1,1634:12149857,18335573:178735 +k1,1634:15555584,18335573:178734 +k1,1634:19136947,18335573:178734 +k1,1634:20419964,18335573:178735 +k1,1634:21346464,18335573:178734 +k1,1634:23730486,18335573:178735 +k1,1634:24560648,18335573:178734 +k1,1634:25758467,18335573:178734 +k1,1634:28308950,18335573:178735 +k1,1634:31356850,18335573:178734 +k1,1634:32583029,18335573:0 +) +(1,1635:6797234,19177061:25785795,513147,134348 +k1,1634:8135496,19177061:167789 +k1,1634:10100282,19177061:167789 +k1,1634:11565030,19177061:167790 +(1,1634:11565030,19177061:0,452978,115847 +r1,1706:14033567,19177061:2468537,568825,115847 +k1,1634:11565030,19177061:-2468537 +) +(1,1634:11565030,19177061:2468537,452978,115847 +k1,1634:11565030,19177061:3277 +h1,1634:14030290,19177061:0,411205,112570 +) +k1,1634:14201356,19177061:167789 +k1,1634:15576318,19177061:167789 +k1,1634:18600821,19177061:167789 +k1,1634:19420039,19177061:167790 +k1,1634:21063043,19177061:167789 +k1,1634:24511564,19177061:167789 +k1,1634:26747669,19177061:167789 +k1,1634:28366426,19177061:167790 +k1,1634:29150253,19177061:167789 +k1,1634:32583029,19177061:0 +) +(1,1635:6797234,20018549:25785795,513147,134348 +g1,1634:10350596,20018549 +g1,1634:11903799,20018549 +g1,1634:14653689,20018549 +g1,1634:15800569,20018549 +g1,1634:16414641,20018549 +g1,1634:18110057,20018549 +k1,1635:32583029,20018549:12645173 +g1,1635:32583029,20018549 +) +] +g1,1635:32583029,20152897 +) +h1,1635:6630773,20152897:0,0,0 +(1,1638:6630773,21518673:25952256,513147,134348 +h1,1637:6630773,21518673:983040,0,0 +k1,1637:8387880,21518673:296310 +k1,1637:9552542,21518673:296310 +k1,1637:11612426,21518673:296310 +k1,1637:12264597,21518673:296311 +k1,1637:15256403,21518673:296310 +k1,1637:16837219,21518673:296310 +k1,1637:19474475,21518673:296310 +k1,1637:20126645,21518673:296310 +k1,1637:22103298,21518673:296310 +k1,1637:23058900,21518673:296310 +k1,1637:24374296,21518673:296311 +k1,1637:26324079,21518673:296310 +k1,1637:28633655,21518673:296310 +k1,1637:29616127,21518673:296310 +k1,1637:30700835,21518673:296310 +k1,1637:32583029,21518673:0 +) +(1,1638:6630773,22360161:25952256,513147,126483 +k1,1637:8259007,22360161:194306 +k1,1637:9472398,22360161:194306 +k1,1637:13341963,22360161:194306 +k1,1637:14195561,22360161:194306 +k1,1637:15408952,22360161:194306 +k1,1637:17283601,22360161:194306 +k1,1637:20256634,22360161:194306 +k1,1637:21212467,22360161:194305 +(1,1637:21212467,22360161:0,452978,115847 +r1,1706:23681004,22360161:2468537,568825,115847 +k1,1637:21212467,22360161:-2468537 +) +(1,1637:21212467,22360161:2468537,452978,115847 +k1,1637:21212467,22360161:3277 +h1,1637:23677727,22360161:0,411205,112570 +) +k1,1637:23875310,22360161:194306 +k1,1637:25061176,22360161:194306 +k1,1637:26274567,22360161:194306 +k1,1637:28122346,22360161:194306 +k1,1637:29002814,22360161:194306 +k1,1637:30941033,22360161:194306 +k1,1637:31794631,22360161:194306 +k1,1637:32583029,22360161:0 +) +(1,1638:6630773,23201649:25952256,513147,134348 +k1,1637:8719909,23201649:206942 +k1,1637:9880401,23201649:206943 +k1,1637:11353499,23201649:206942 +k1,1637:12176480,23201649:206943 +k1,1637:13402507,23201649:206942 +k1,1637:14993570,23201649:206943 +k1,1637:18365901,23201649:206942 +k1,1637:18928704,23201649:206943 +k1,1637:21573585,23201649:206942 +k1,1637:24476024,23201649:206943 +k1,1637:25967472,23201649:206942 +k1,1637:28515361,23201649:206943 +k1,1637:29510701,23201649:206942 +k1,1637:32583029,23201649:0 +) +(1,1638:6630773,24043137:25952256,505283,134348 +g1,1637:10494775,24043137 +g1,1637:11418832,24043137 +g1,1637:12902567,24043137 +g1,1637:14810320,24043137 +g1,1637:16200994,24043137 +g1,1637:18558979,24043137 +g1,1637:19862490,24043137 +g1,1637:20809485,24043137 +g1,1637:22809643,24043137 +k1,1638:32583029,24043137:6418598 +g1,1638:32583029,24043137 +) +v1,1640:6630773,25233603:0,393216,0 +(1,1652:6630773,29586137:25952256,4745750,196608 +g1,1652:6630773,29586137 +g1,1652:6630773,29586137 +g1,1652:6434165,29586137 +(1,1652:6434165,29586137:0,4745750,196608 +r1,1706:32779637,29586137:26345472,4942358,196608 +k1,1652:6434165,29586137:-26345472 +) +(1,1652:6434165,29586137:26345472,4745750,196608 +[1,1652:6630773,29586137:25952256,4549142,0 +(1,1642:6630773,25441221:25952256,404226,82312 +(1,1641:6630773,25441221:0,0,0 +g1,1641:6630773,25441221 +g1,1641:6630773,25441221 +g1,1641:6303093,25441221 +(1,1641:6303093,25441221:0,0,0 +) +g1,1641:6630773,25441221 +) +g1,1642:11372959,25441221 +g1,1642:12321397,25441221 +g1,1642:17379729,25441221 +g1,1642:18960458,25441221 +g1,1642:19592750,25441221 +g1,1642:20857333,25441221 +g1,1642:21805770,25441221 +g1,1642:22438062,25441221 +g1,1642:23702646,25441221 +g1,1642:25283375,25441221 +g1,1642:25915667,25441221 +h1,1642:26547959,25441221:0,0,0 +k1,1642:32583029,25441221:6035070 +g1,1642:32583029,25441221 +) +(1,1643:6630773,26107399:25952256,404226,107478 +h1,1643:6630773,26107399:0,0,0 +g1,1643:11372959,26107399 +g1,1643:12321397,26107399 +g1,1643:19276602,26107399 +g1,1643:21489622,26107399 +g1,1643:22121914,26107399 +h1,1643:22754206,26107399:0,0,0 +k1,1643:32583029,26107399:9828823 +g1,1643:32583029,26107399 +) +(1,1644:6630773,26773577:25952256,404226,6290 +h1,1644:6630773,26773577:0,0,0 +h1,1644:11056813,26773577:0,0,0 +k1,1644:32583029,26773577:21526216 +g1,1644:32583029,26773577 +) +(1,1651:6630773,27505291:25952256,404226,82312 +(1,1646:6630773,27505291:0,0,0 +g1,1646:6630773,27505291 +g1,1646:6630773,27505291 +g1,1646:6303093,27505291 +(1,1646:6303093,27505291:0,0,0 +) +g1,1646:6630773,27505291 +) +g1,1651:7579210,27505291 +g1,1651:7895356,27505291 +g1,1651:8211502,27505291 +g1,1651:8527648,27505291 +g1,1651:8843794,27505291 +g1,1651:9159940,27505291 +g1,1651:10740669,27505291 +k1,1651:10740669,27505291:0 +h1,1651:12005252,27505291:0,0,0 +k1,1651:32583028,27505291:20577776 +g1,1651:32583028,27505291 +) +(1,1651:6630773,28171469:25952256,404226,82312 +h1,1651:6630773,28171469:0,0,0 +g1,1651:7579210,28171469 +g1,1651:9159938,28171469 +g1,1651:10740667,28171469 +h1,1651:12005250,28171469:0,0,0 +k1,1651:32583030,28171469:20577780 +g1,1651:32583030,28171469 +) +(1,1651:6630773,28837647:25952256,404226,82312 +h1,1651:6630773,28837647:0,0,0 +g1,1651:7579210,28837647 +g1,1651:9159938,28837647 +g1,1651:10740667,28837647 +g1,1651:11056813,28837647 +h1,1651:12005250,28837647:0,0,0 +k1,1651:32583030,28837647:20577780 +g1,1651:32583030,28837647 +) +(1,1651:6630773,29503825:25952256,404226,82312 +h1,1651:6630773,29503825:0,0,0 +g1,1651:7579210,29503825 +g1,1651:9159938,29503825 +g1,1651:9476084,29503825 +g1,1651:10740667,29503825 +h1,1651:12005250,29503825:0,0,0 +k1,1651:32583030,29503825:20577780 +g1,1651:32583030,29503825 +) +] +) +g1,1652:32583029,29586137 +g1,1652:6630773,29586137 +g1,1652:6630773,29586137 +g1,1652:32583029,29586137 +g1,1652:32583029,29586137 +) +h1,1652:6630773,29782745:0,0,0 +v1,1656:6630773,31497499:0,393216,0 +(1,1660:6630773,31812596:25952256,708313,196608 +g1,1660:6630773,31812596 +g1,1660:6630773,31812596 +g1,1660:6434165,31812596 +(1,1660:6434165,31812596:0,708313,196608 +r1,1706:32779637,31812596:26345472,904921,196608 +k1,1660:6434165,31812596:-26345472 +) +(1,1660:6434165,31812596:26345472,708313,196608 +[1,1660:6630773,31812596:25952256,511705,0 +(1,1658:6630773,31711409:25952256,410518,101187 +(1,1657:6630773,31711409:0,0,0 +g1,1657:6630773,31711409 +g1,1657:6630773,31711409 +g1,1657:6303093,31711409 +(1,1657:6303093,31711409:0,0,0 +) +g1,1657:6630773,31711409 +) +g1,1658:9792230,31711409 +g1,1658:10740668,31711409 +g1,1658:14534417,31711409 +h1,1658:15482854,31711409:0,0,0 +k1,1658:32583030,31711409:17100176 +g1,1658:32583030,31711409 +) +] +) +g1,1660:32583029,31812596 +g1,1660:6630773,31812596 +g1,1660:6630773,31812596 +g1,1660:32583029,31812596 +g1,1660:32583029,31812596 +) +h1,1660:6630773,32009204:0,0,0 +v1,1664:6630773,33723958:0,393216,0 +(1,1681:6630773,39469858:25952256,6139116,196608 +g1,1681:6630773,39469858 +g1,1681:6630773,39469858 +g1,1681:6434165,39469858 +(1,1681:6434165,39469858:0,6139116,196608 +r1,1706:32779637,39469858:26345472,6335724,196608 +k1,1681:6434165,39469858:-26345472 +) +(1,1681:6434165,39469858:26345472,6139116,196608 +[1,1681:6630773,39469858:25952256,5942508,0 +(1,1666:6630773,33937868:25952256,410518,101187 +(1,1665:6630773,33937868:0,0,0 +g1,1665:6630773,33937868 +g1,1665:6630773,33937868 +g1,1665:6303093,33937868 +(1,1665:6303093,33937868:0,0,0 +) +g1,1665:6630773,33937868 +) +g1,1666:7263065,33937868 +g1,1666:8211503,33937868 +g1,1666:10740669,33937868 +g1,1666:11372961,33937868 +g1,1666:16431293,33937868 +g1,1666:18644313,33937868 +g1,1666:19276605,33937868 +g1,1666:20225043,33937868 +g1,1666:21489626,33937868 +g1,1666:22121918,33937868 +h1,1666:25283375,33937868:0,0,0 +k1,1666:32583029,33937868:7299654 +g1,1666:32583029,33937868 +) +(1,1667:6630773,34604046:25952256,404226,76021 +h1,1667:6630773,34604046:0,0,0 +k1,1667:6630773,34604046:0 +h1,1667:9159938,34604046:0,0,0 +k1,1667:32583030,34604046:23423092 +g1,1667:32583030,34604046 +) +(1,1671:6630773,35335760:25952256,404226,101187 +(1,1669:6630773,35335760:0,0,0 +g1,1669:6630773,35335760 +g1,1669:6630773,35335760 +g1,1669:6303093,35335760 +(1,1669:6303093,35335760:0,0,0 +) +g1,1669:6630773,35335760 +) +g1,1671:7579210,35335760 +g1,1671:8843793,35335760 +g1,1671:11689104,35335760 +h1,1671:13902124,35335760:0,0,0 +k1,1671:32583028,35335760:18680904 +g1,1671:32583028,35335760 +) +(1,1673:6630773,36657298:25952256,277873,0 +(1,1672:6630773,36657298:0,0,0 +g1,1672:6630773,36657298 +g1,1672:6630773,36657298 +g1,1672:6303093,36657298 +(1,1672:6303093,36657298:0,0,0 +) +g1,1672:6630773,36657298 +) +h1,1673:6946919,36657298:0,0,0 +k1,1673:32583029,36657298:25636110 +g1,1673:32583029,36657298 +) +(1,1680:6630773,37389012:25952256,404226,82312 +(1,1675:6630773,37389012:0,0,0 +g1,1675:6630773,37389012 +g1,1675:6630773,37389012 +g1,1675:6303093,37389012 +(1,1675:6303093,37389012:0,0,0 +) +g1,1675:6630773,37389012 +) +g1,1680:7579210,37389012 +g1,1680:7895356,37389012 +g1,1680:8211502,37389012 +g1,1680:8527648,37389012 +g1,1680:8843794,37389012 +g1,1680:9159940,37389012 +g1,1680:10740669,37389012 +k1,1680:10740669,37389012:0 +h1,1680:12005252,37389012:0,0,0 +k1,1680:32583028,37389012:20577776 +g1,1680:32583028,37389012 +) +(1,1680:6630773,38055190:25952256,404226,82312 +h1,1680:6630773,38055190:0,0,0 +g1,1680:7579210,38055190 +g1,1680:9159938,38055190 +g1,1680:10740667,38055190 +h1,1680:12005250,38055190:0,0,0 +k1,1680:32583030,38055190:20577780 +g1,1680:32583030,38055190 +) +(1,1680:6630773,38721368:25952256,404226,82312 +h1,1680:6630773,38721368:0,0,0 +g1,1680:7579210,38721368 +g1,1680:9159938,38721368 +g1,1680:10740667,38721368 +g1,1680:11056813,38721368 +h1,1680:12005250,38721368:0,0,0 +k1,1680:32583030,38721368:20577780 +g1,1680:32583030,38721368 +) +(1,1680:6630773,39387546:25952256,404226,82312 +h1,1680:6630773,39387546:0,0,0 +g1,1680:7579210,39387546 +g1,1680:9159938,39387546 +g1,1680:9476084,39387546 +g1,1680:10740667,39387546 +h1,1680:12005250,39387546:0,0,0 +k1,1680:32583030,39387546:20577780 +g1,1680:32583030,39387546 +) +] +) +g1,1681:32583029,39469858 +g1,1681:6630773,39469858 +g1,1681:6630773,39469858 +g1,1681:32583029,39469858 +g1,1681:32583029,39469858 +) +h1,1681:6630773,39666466:0,0,0 +(1,1685:6630773,41032242:25952256,513147,134348 +h1,1684:6630773,41032242:983040,0,0 +k1,1684:8442216,41032242:200568 +k1,1684:9661870,41032242:200569 +k1,1684:11833106,41032242:200568 +k1,1684:14062669,41032242:200568 +k1,1684:15131589,41032242:200568 +k1,1684:17537445,41032242:200569 +(1,1684:17537445,41032242:0,435480,115847 +r1,1706:21061118,41032242:3523673,551327,115847 +k1,1684:17537445,41032242:-3523673 +) +(1,1684:17537445,41032242:3523673,435480,115847 +g1,1684:20002705,41032242 +g1,1684:20706129,41032242 +h1,1684:21057841,41032242:0,411205,112570 +) +k1,1684:21435356,41032242:200568 +k1,1684:22708093,41032242:200568 +k1,1684:23374623,41032242:200569 +k1,1684:24443543,41032242:200568 +k1,1684:26081316,41032242:200568 +(1,1684:26081316,41032242:0,435480,115847 +r1,1706:29604989,41032242:3523673,551327,115847 +k1,1684:26081316,41032242:-3523673 +) +(1,1684:26081316,41032242:3523673,435480,115847 +g1,1684:28546576,41032242 +g1,1684:29250000,41032242 +h1,1684:29601712,41032242:0,411205,112570 +) +k1,1684:29979227,41032242:200568 +k1,1684:31048148,41032242:200569 +k1,1684:32227169,41032242:200568 +k1,1684:32583029,41032242:0 +) +(1,1685:6630773,41873730:25952256,513147,134348 +k1,1684:8816305,41873730:174887 +k1,1684:10671536,41873730:174888 +k1,1684:12130929,41873730:174887 +k1,1684:12837313,41873730:174887 +k1,1684:16745787,41873730:174888 +k1,1684:17749704,41873730:174887 +k1,1684:20177719,41873730:174887 +k1,1684:21371692,41873730:174888 +k1,1684:23981897,41873730:174887 +k1,1684:26145147,41873730:174888 +k1,1684:26979326,41873730:174887 +k1,1684:28173298,41873730:174887 +k1,1684:30435508,41873730:174888 +k1,1684:31478747,41873730:174887 +k1,1684:32583029,41873730:0 +) +(1,1685:6630773,42715218:25952256,513147,126483 +g1,1684:9969177,42715218 +g1,1684:11187491,42715218 +g1,1684:13229592,42715218 +g1,1684:14822772,42715218 +g1,1684:17717497,42715218 +(1,1684:17717497,42715218:0,452978,115847 +r1,1706:18779186,42715218:1061689,568825,115847 +k1,1684:17717497,42715218:-1061689 +) +(1,1684:17717497,42715218:1061689,452978,115847 +k1,1684:17717497,42715218:3277 +h1,1684:18775909,42715218:0,411205,112570 +) +k1,1685:32583029,42715218:13630173 +g1,1685:32583029,42715218 +) +v1,1687:6630773,43905684:0,393216,0 +(1,1706:6630773,44785772:25952256,1273304,196608 +g1,1706:6630773,44785772 +g1,1706:6630773,44785772 +g1,1706:6434165,44785772 +(1,1706:6434165,44785772:0,1273304,196608 +r1,1706:32779637,44785772:26345472,1469912,196608 +k1,1706:6434165,44785772:-26345472 +) +(1,1706:6434165,44785772:26345472,1273304,196608 +[1,1706:6630773,44785772:25952256,1076696,0 +(1,1689:6630773,44119594:25952256,410518,101187 +(1,1688:6630773,44119594:0,0,0 +g1,1688:6630773,44119594 +g1,1688:6630773,44119594 +g1,1688:6303093,44119594 +(1,1688:6303093,44119594:0,0,0 +) +g1,1688:6630773,44119594 +) +g1,1689:7263065,44119594 +g1,1689:8211503,44119594 +g1,1689:10740669,44119594 +g1,1689:11372961,44119594 +g1,1689:16431293,44119594 +g1,1689:18644313,44119594 +g1,1689:19276605,44119594 +g1,1689:20225043,44119594 +g1,1689:21489626,44119594 +g1,1689:22121918,44119594 +h1,1689:25283375,44119594:0,0,0 +k1,1689:32583029,44119594:7299654 +g1,1689:32583029,44119594 +) +(1,1690:6630773,44785772:25952256,277873,0 +h1,1690:6630773,44785772:0,0,0 +h1,1690:6946919,44785772:0,0,0 +k1,1690:32583029,44785772:25636110 +g1,1690:32583029,44785772 +) +] +) +g1,1706:32583029,44785772 +g1,1706:6630773,44785772 +g1,1706:6630773,44785772 +g1,1706:32583029,44785772 +g1,1706:32583029,44785772 +) +] +(1,1706:32583029,45706769:0,0,0 +g1,1706:32583029,45706769 +) +) +] +(1,1706:6630773,47279633:25952256,0,0 +h1,1706:6630773,47279633:25952256,0,0 +) +] +(1,1706:4262630,4025873:0,0,0 +[1,1706:-473656,4025873:0,0,0 +(1,1706:-473656,-710413:0,0,0 +(1,1706:-473656,-710413:0,0,0 +g1,1706:-473656,-710413 +) +g1,1706:-473656,-710413 +) +] +) +] +!23382 +}35 +Input:515:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:516:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:517:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:518:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:519:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:520:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:521:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:522:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:523:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:524:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!921 +{36 +[1,1767:4262630,47279633:28320399,43253760,0 +(1,1767:4262630,4025873:0,0,0 +[1,1767:-473656,4025873:0,0,0 +(1,1767:-473656,-710413:0,0,0 +(1,1767:-473656,-644877:0,0,0 +k1,1767:-473656,-644877:-65536 ) -] -[2989,548:3078558,4812305:0,0,0 -(2989,548:3078558,49800853:0,16384,2228224 -k2989,548:1358238,49800853:-1720320 -(2989,1:1358238,49800853:1720320,16384,2228224 -(2989,1:1358238,49800853:1179648,16384,0 -r2989,548:2537886,49800853:1179648,16384,0 -) -g2989,1:3062174,49800853 -(2989,1:3062174,52029077:16384,1703936,0 -[2989,1:3062174,52029077:25952256,1703936,0 -(2989,1:3062174,51504789:25952256,1179648,0 -(2989,1:3062174,51504789:16384,1179648,0 -r2989,548:3078558,51504789:16384,1179648,0 -) -k2989,1:29014430,51504789:25935872 -g2989,1:29014430,51504789 +(1,1767:-473656,4736287:0,0,0 +k1,1767:-473656,4736287:5209943 +) +g1,1767:-473656,-710413 ) ] ) +[1,1767:6630773,47279633:25952256,43253760,0 +[1,1767:6630773,4812305:25952256,786432,0 +(1,1767:6630773,4812305:25952256,513147,126483 +(1,1767:6630773,4812305:25952256,513147,126483 +g1,1767:3078558,4812305 +[1,1767:3078558,4812305:0,0,0 +(1,1767:3078558,2439708:0,1703936,0 +k1,1767:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,1767:2537886,2439708:1179648,16384,0 ) +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,1767:3078558,1915420:16384,1179648,0 ) -] -[2989,548:3078558,4812305:0,0,0 -(2989,548:3078558,49800853:0,16384,2228224 -g2989,548:29030814,49800853 -g2989,548:36135244,49800853 -(2989,1:36135244,49800853:1720320,16384,2228224 -(2989,1:36135244,52029077:16384,1703936,0 -[2989,1:36135244,52029077:25952256,1703936,0 -(2989,1:36135244,51504789:25952256,1179648,0 -(2989,1:36135244,51504789:16384,1179648,0 -r2989,548:36151628,51504789:16384,1179648,0 -) -k2989,1:62087500,51504789:25935872 -g2989,1:62087500,51504789 +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) ] ) -g2989,1:36675916,49800853 -(2989,1:36675916,49800853:1179648,16384,0 -r2989,548:37855564,49800853:1179648,16384,0 ) ) -k2989,548:3078556,49800853:-34777008 -) ] -g2989,548:6630773,4812305 -k2989,548:28224886,4812305:20398736 -g2989,548:30907930,4812305 +[1,1767:3078558,4812305:0,0,0 +(1,1767:3078558,2439708:0,1703936,0 +g1,1767:29030814,2439708 +g1,1767:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,1767:36151628,1915420:16384,1179648,0 ) +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) ] -[2989,548:6630773,45706769:25952256,40108032,0 -(2989,548:6630773,45706769:25952256,40108032,0 -(2989,548:6630773,45706769:0,0,0 -g2989,548:6630773,45706769 -) -[2989,548:6630773,45706769:25952256,40108032,0 -(2989,548:6630773,45706769:25952256,40108032,126483 -[2989,548:6630773,45706769:11829248,40108032,126483 -(2989,455:6630773,6254097:11829248,505283,102891 -h2989,454:6630773,6254097:0,0,0 -r2989,548:6630773,6254097:0,608174,102891 -g2989,454:7941493,6254097 -g2989,454:7941493,6254097 -g2989,454:10659926,6254097 -g2989,454:12228202,6254097 -g2989,454:13796478,6254097 -k2989,455:16725938,6254097:1734083 -k2989,455:18460021,6254097:1734083 -) -(2989,456:6630773,7113305:11829248,505283,102891 -h2989,455:6630773,7113305:0,0,0 -r2989,548:6630773,7113305:0,608174,102891 -g2989,455:7941493,7113305 -g2989,455:7941493,7113305 -g2989,455:12187570,7113305 -g2989,455:13357387,7113305 -g2989,455:14925663,7113305 -g2989,455:16493939,7113305 -k2989,455:18460021,7113305:597035 -) -(2989,456:9252213,7954793:9207808,485622,11795 -k2989,456:14453806,7954793:4006216 -k2989,456:18460021,7954793:4006215 -) -(2989,457:6630773,8814000:11829248,505283,102891 -h2989,456:6630773,8814000:0,0,0 -r2989,548:6630773,8814000:0,608174,102891 -g2989,456:7941493,8814000 -g2989,456:7941493,8814000 -g2989,456:10309963,8814000 -k2989,457:14982681,8814000:3477341 -k2989,457:18460021,8814000:3477340 -) -(2989,458:6630773,9673208:11829248,505283,102891 -h2989,457:6630773,9673208:0,0,0 -r2989,548:6630773,9673208:0,608174,102891 -g2989,457:7941493,9673208 -g2989,457:7941493,9673208 -g2989,457:11579396,9673208 -g2989,457:13147672,9673208 -k2989,458:16401535,9673208:2058486 -k2989,458:18460021,9673208:2058486 -) -(2989,459:6630773,10532415:11829248,505283,134348 -h2989,458:6630773,10532415:0,0,0 -r2989,548:6630773,10532415:0,639631,134348 -g2989,458:7941493,10532415 -g2989,458:7941493,10532415 -g2989,458:11349364,10532415 -k2989,459:15502381,10532415:2957640 -k2989,459:18460021,10532415:2957640 -) -(2989,460:6630773,11391623:11829248,505283,134348 -h2989,459:6630773,11391623:0,0,0 -r2989,548:6630773,11391623:0,639631,134348 -g2989,459:7941493,11391623 -g2989,459:7941493,11391623 -g2989,459:11326427,11391623 -g2989,459:12894703,11391623 -k2989,460:17036579,11391623:1423443 -k2989,460:18460021,11391623:1423442 -) -(2989,461:6630773,12250831:11829248,505283,102891 -h2989,460:6630773,12250831:0,0,0 -r2989,548:6630773,12250831:0,608174,102891 -g2989,460:7941493,12250831 -g2989,460:7941493,12250831 -g2989,460:12345511,12250831 -k2989,461:15801225,12250831:2658796 -k2989,461:18460021,12250831:2658796 -) -(2989,462:6630773,13110038:11829248,505283,102891 -h2989,461:6630773,13110038:0,0,0 -r2989,548:6630773,13110038:0,608174,102891 -g2989,461:7941493,13110038 -g2989,461:7941493,13110038 -g2989,461:14086803,13110038 -k2989,462:16871101,13110038:1588921 -k2989,462:18460021,13110038:1588920 -) -(2989,463:6630773,13969246:11829248,513147,102891 -h2989,462:6630773,13969246:0,0,0 -r2989,548:6630773,13969246:0,616038,102891 -g2989,462:7941493,13969246 -g2989,462:7941493,13969246 -g2989,462:10538684,13969246 -g2989,462:12106960,13969246 -g2989,462:13675236,13969246 -k2989,463:16665317,13969246:1794704 -k2989,463:18460021,13969246:1794704 -) -(2989,464:6630773,14828454:11829248,505283,102891 -h2989,463:6630773,14828454:0,0,0 -r2989,548:6630773,14828454:0,608174,102891 -g2989,463:7941493,14828454 -g2989,463:7941493,14828454 -g2989,463:10301444,14828454 -k2989,464:14978421,14828454:3481600 -k2989,464:18460021,14828454:3481600 -) -(2989,465:6630773,15687661:11829248,505283,126483 -h2989,464:6630773,15687661:0,0,0 -r2989,548:6630773,15687661:0,631766,126483 -g2989,464:7941493,15687661 -g2989,464:7941493,15687661 -g2989,464:12047978,15687661 -g2989,464:13616254,15687661 -k2989,465:16635826,15687661:1824195 -k2989,465:18460021,15687661:1824195 -) -(2989,466:6630773,16546869:11829248,505283,134348 -h2989,465:6630773,16546869:0,0,0 -r2989,548:6630773,16546869:0,639631,134348 -g2989,465:7941493,16546869 -g2989,465:7941493,16546869 -g2989,465:11658694,16546869 -k2989,466:15657046,16546869:2802975 -k2989,466:18460021,16546869:2802975 -) -(2989,467:6630773,17406076:11829248,505283,126483 -h2989,466:6630773,17406076:0,0,0 -r2989,548:6630773,17406076:0,631766,126483 -g2989,466:7941493,17406076 -g2989,466:7941493,17406076 -g2989,466:11594469,17406076 -k2989,467:15624934,17406076:2835088 -k2989,467:18460021,17406076:2835087 -) -(2989,468:6630773,18265284:11829248,505283,126483 -h2989,467:6630773,18265284:0,0,0 -r2989,548:6630773,18265284:0,631766,126483 -g2989,467:7941493,18265284 -g2989,467:7941493,18265284 -g2989,467:10304720,18265284 -k2989,468:14980059,18265284:3479962 -k2989,468:18460021,18265284:3479962 -) -(2989,469:6630773,19124492:11829248,505283,102891 -h2989,468:6630773,19124492:0,0,0 -r2989,548:6630773,19124492:0,608174,102891 -g2989,468:7941493,19124492 -g2989,468:7941493,19124492 -g2989,468:11489611,19124492 -k2989,469:15572505,19124492:2887517 -k2989,469:18460021,19124492:2887516 -) -(2989,470:6630773,19983699:11829248,505283,102891 -h2989,469:6630773,19983699:0,0,0 -r2989,548:6630773,19983699:0,608174,102891 -g2989,469:7941493,19983699 -g2989,469:7941493,19983699 -g2989,469:10404335,19983699 -g2989,469:11972611,19983699 -g2989,469:15063944,19983699 -g2989,469:16632220,19983699 -k2989,469:18460021,19983699:458754 -) -(2989,470:9252213,20825187:9207808,485622,11795 -k2989,470:14453806,20825187:4006216 -k2989,470:18460021,20825187:4006215 -) -(2989,471:6630773,21684395:11829248,505283,102891 -h2989,470:6630773,21684395:0,0,0 -r2989,548:6630773,21684395:0,608174,102891 -g2989,470:7941493,21684395 -g2989,470:7941493,21684395 -g2989,470:10727428,21684395 -g2989,470:12295704,21684395 -k2989,471:15975551,21684395:2484470 -k2989,471:18460021,21684395:2484470 -) -(2989,472:6630773,22543603:11829248,505283,126483 -h2989,471:6630773,22543603:0,0,0 -r2989,548:6630773,22543603:0,631766,126483 -g2989,471:7941493,22543603 -g2989,471:7941493,22543603 -g2989,471:11241230,22543603 -k2989,472:15448314,22543603:3011707 -k2989,472:18460021,22543603:3011707 -) -(2989,473:6630773,23402810:11829248,505283,126483 -h2989,472:6630773,23402810:0,0,0 -r2989,548:6630773,23402810:0,631766,126483 -g2989,472:7941493,23402810 -g2989,472:7941493,23402810 -g2989,472:11656073,23402810 -k2989,473:15655736,23402810:2804286 -k2989,473:18460021,23402810:2804285 -) -(2989,474:6630773,24262018:11829248,505283,102891 -h2989,473:6630773,24262018:0,0,0 -r2989,548:6630773,24262018:0,608174,102891 -g2989,473:7941493,24262018 -g2989,473:7941493,24262018 -g2989,473:11699327,24262018 -g2989,473:13267603,24262018 -k2989,474:16461501,24262018:1998521 -k2989,474:18460021,24262018:1998520 -) -(2989,475:6630773,25121225:11829248,505283,102891 -h2989,474:6630773,25121225:0,0,0 -r2989,548:6630773,25121225:0,608174,102891 -g2989,474:7941493,25121225 -g2989,474:7941493,25121225 -g2989,474:10410233,25121225 -k2989,475:15032816,25121225:3427206 -k2989,475:18460021,25121225:3427205 -) -(2989,476:6630773,25980433:11829248,505283,102891 -h2989,475:6630773,25980433:0,0,0 -r2989,548:6630773,25980433:0,608174,102891 -g2989,475:7941493,25980433 -g2989,475:7941493,25980433 -g2989,475:11533520,25980433 -k2989,476:15594459,25980433:2865562 -k2989,476:18460021,25980433:2865562 -) -(2989,477:6630773,26839641:11829248,505283,102891 -h2989,476:6630773,26839641:0,0,0 -r2989,548:6630773,26839641:0,608174,102891 -g2989,476:7941493,26839641 -g2989,476:7941493,26839641 -g2989,476:11154722,26839641 -k2989,477:15405060,26839641:3054961 -k2989,477:18460021,26839641:3054961 -) -(2989,478:6630773,27698848:11829248,505283,102891 -h2989,477:6630773,27698848:0,0,0 -r2989,548:6630773,27698848:0,608174,102891 -g2989,477:7941493,27698848 -g2989,477:7941493,27698848 -g2989,477:10647474,27698848 -g2989,477:12215750,27698848 -k2989,478:15935574,27698848:2524447 -k2989,478:18460021,27698848:2524447 -) -(2989,479:6630773,28558056:11829248,505283,126483 -h2989,478:6630773,28558056:0,0,0 -r2989,548:6630773,28558056:0,631766,126483 -g2989,478:7941493,28558056 -g2989,478:7941493,28558056 -g2989,478:10639609,28558056 -k2989,479:15147504,28558056:3312518 -k2989,479:18460021,28558056:3312517 -) -(2989,480:6630773,29417263:11829248,513147,102891 -h2989,479:6630773,29417263:0,0,0 -r2989,548:6630773,29417263:0,616038,102891 -g2989,479:7941493,29417263 -g2989,479:7941493,29417263 -g2989,479:9302675,29417263 -g2989,479:10870951,29417263 -k2989,480:15263175,29417263:3196847 -k2989,480:18460021,29417263:3196846 -) -(2989,481:6630773,30276471:11829248,505283,102891 -h2989,480:6630773,30276471:0,0,0 -r2989,548:6630773,30276471:0,608174,102891 -g2989,480:7941493,30276471 -g2989,480:7941493,30276471 -g2989,480:11632480,30276471 -k2989,481:15643939,30276471:2816082 -k2989,481:18460021,30276471:2816082 -) -(2989,482:6630773,31135679:11829248,505283,102891 -h2989,481:6630773,31135679:0,0,0 -r2989,548:6630773,31135679:0,608174,102891 -g2989,481:7941493,31135679 -g2989,481:7941493,31135679 -g2989,481:10247704,31135679 -k2989,482:14951551,31135679:3508470 -k2989,482:18460021,31135679:3508470 -) -(2989,483:6630773,31994886:11829248,505283,134348 -h2989,482:6630773,31994886:0,0,0 -r2989,548:6630773,31994886:0,639631,134348 -g2989,482:7941493,31994886 -g2989,482:7941493,31994886 -g2989,482:10847359,31994886 -k2989,483:15251379,31994886:3208643 -k2989,483:18460021,31994886:3208642 -) -(2989,484:6630773,32854094:11829248,505283,102891 -h2989,483:6630773,32854094:0,0,0 -r2989,548:6630773,32854094:0,608174,102891 -g2989,483:7941493,32854094 -g2989,483:7941493,32854094 -g2989,483:11017752,32854094 -g2989,483:12187569,32854094 -k2989,484:15921484,32854094:2538538 -k2989,484:18460021,32854094:2538537 -) -(2989,485:6630773,33713302:11829248,505283,102891 -h2989,484:6630773,33713302:0,0,0 -r2989,548:6630773,33713302:0,608174,102891 -g2989,484:7941493,33713302 -g2989,484:7941493,33713302 -g2989,484:10543271,33713302 -g2989,484:11713088,33713302 -g2989,484:12882905,33713302 -g2989,484:15974238,33713302 -k2989,485:17814818,33713302:645203 -k2989,485:18460021,33713302:645203 -) -(2989,486:6630773,34572509:11829248,505283,126483 -h2989,485:6630773,34572509:0,0,0 -r2989,548:6630773,34572509:0,631766,126483 -g2989,485:7941493,34572509 -g2989,485:7941493,34572509 -g2989,485:11778625,34572509 -k2989,486:15517782,34572509:2942239 -k2989,486:18460021,34572509:2942239 -) -(2989,487:6630773,35431717:11829248,505283,126483 -h2989,486:6630773,35431717:0,0,0 -r2989,548:6630773,35431717:0,631766,126483 -g2989,486:7941493,35431717 -g2989,486:7941493,35431717 -g2989,486:10659926,35431717 -k2989,487:15157662,35431717:3302359 -k2989,487:18460021,35431717:3302359 -) -(2989,488:6630773,36290924:11829248,505283,126483 -h2989,487:6630773,36290924:0,0,0 -r2989,548:6630773,36290924:0,631766,126483 -g2989,487:7941493,36290924 -g2989,487:7941493,36290924 -g2989,487:10186100,36290924 -g2989,487:11754376,36290924 -g2989,487:13322652,36290924 -g2989,487:14890928,36290924 -k2989,488:17273163,36290924:1186858 -k2989,488:18460021,36290924:1186858 -) -(2989,490:6630773,37150132:11829248,505283,126483 -h2989,488:6630773,37150132:0,0,0 -r2989,548:6630773,37150132:0,631766,126483 -g2989,488:7941493,37150132 -g2989,488:7941493,37150132 -g2989,488:11589226,37150132 -g2989,488:12759043,37150132 -g2989,488:14327319,37150132 -g2989,488:15895595,37150132 -k2989,488:18460021,37150132:1195379 -) -(2989,490:9252213,37991620:9207808,485622,102891 -k2989,488:10819965,37991620:198705 -k2989,488:12387717,37991620:198705 -k2989,489:13955470,37991620:198706 -k2989,489:15523222,37991620:198705 -k2989,489:17090974,37991620:198705 -k2989,489:18460021,37991620:0 -) -(2989,490:9252213,38833108:9207808,485622,102891 -g2989,489:10820489,38833108 -k2989,490:15237944,38833108:3222078 -k2989,490:18460021,38833108:3222077 -) -(2989,491:6630773,39692316:11829248,505283,102891 -h2989,490:6630773,39692316:0,0,0 -r2989,548:6630773,39692316:0,608174,102891 -g2989,490:7941493,39692316 -g2989,490:7941493,39692316 -g2989,490:10301444,39692316 -k2989,491:14978421,39692316:3481600 -k2989,491:18460021,39692316:3481600 -) -(2989,492:6630773,40551523:11829248,485622,134348 -h2989,491:6630773,40551523:0,0,0 -r2989,548:6630773,40551523:0,619970,134348 -g2989,491:7941493,40551523 -g2989,491:7941493,40551523 -g2989,491:10049786,40551523 -k2989,492:14852592,40551523:3607429 -k2989,492:18460021,40551523:3607429 -) -(2989,493:6630773,41410731:11829248,505283,102891 -h2989,492:6630773,41410731:0,0,0 -r2989,548:6630773,41410731:0,608174,102891 -g2989,492:7941493,41410731 -g2989,492:7941493,41410731 -g2989,492:10092384,41410731 -g2989,492:11660660,41410731 -g2989,492:13228936,41410731 -g2989,492:14797212,41410731 -g2989,492:16365488,41410731 -k2989,493:18010443,41410731:449578 -k2989,493:18460021,41410731:449578 -) -(2989,494:6630773,42269939:11829248,505283,126483 -h2989,493:6630773,42269939:0,0,0 -r2989,548:6630773,42269939:0,631766,126483 -g2989,493:7941493,42269939 -g2989,493:7941493,42269939 -g2989,493:10543927,42269939 -g2989,493:12112203,42269939 -g2989,493:15203536,42269939 -g2989,493:16771812,42269939 -k2989,494:18213605,42269939:246416 -k2989,494:18460021,42269939:246416 -) -(2989,495:6630773,43129146:11829248,505283,102891 -h2989,494:6630773,43129146:0,0,0 -r2989,548:6630773,43129146:0,608174,102891 -g2989,494:7941493,43129146 -g2989,494:7941493,43129146 -g2989,494:10055028,43129146 -g2989,494:11623304,43129146 -k2989,495:15639351,43129146:2820670 -k2989,495:18460021,43129146:2820670 -) -(2989,496:6630773,43988354:11829248,505283,102891 -h2989,495:6630773,43988354:0,0,0 -r2989,548:6630773,43988354:0,608174,102891 -g2989,495:7941493,43988354 -g2989,495:7941493,43988354 -g2989,495:10346663,43988354 -k2989,496:15001031,43988354:3458991 -k2989,496:18460021,43988354:3458990 -) -(2989,497:6630773,44847561:11829248,505283,102891 -h2989,496:6630773,44847561:0,0,0 -g2989,496:8948125,44847561 -k2989,497:13903303,44847561:4556719 -k2989,497:18460021,44847561:4556718 -) -(2989,498:6630773,45706769:11829248,505283,126483 -h2989,497:6630773,45706769:0,0,0 -g2989,497:10737258,45706769 -g2989,497:12305534,45706769 -k2989,498:15980466,45706769:2479555 -k2989,498:18460021,45706769:2479555 ) -] -k2989,548:19606901,45706769:1146880 -r2989,548:19606901,45706769:0,40234515,126483 -k2989,548:20753781,45706769:1146880 -[2989,548:20753781,45706769:11829248,40108032,102891 -(2989,499:20753781,6254097:11829248,505283,126483 -h2989,498:20753781,6254097:0,0,0 -g2989,498:22445265,6254097 -g2989,498:23611805,6254097 -g2989,498:26652675,6254097 -k2989,498:32583029,6254097:2002781 -) -(2989,499:23375221,7095585:9207808,505283,126483 -k2989,499:29256422,7095585:3326608 -k2989,499:32583029,7095585:3326607 -) -(2989,500:20753781,7953611:11829248,485622,126483 -h2989,499:20753781,7953611:0,0,0 -g2989,499:22343029,7953611 -g2989,499:25462542,7953611 -g2989,499:27030818,7953611 -k2989,500:30404612,7953611:2178417 -k2989,500:32583029,7953611:2178417 -) -(2989,501:20753781,8811638:11829248,473825,126483 -h2989,500:20753781,8811638:0,0,0 -k2989,501:27528565,8811638:5054464 -k2989,501:32583029,8811638:5054464 -) -(2989,502:20753781,9669664:11829248,505283,102891 -h2989,501:20753781,9669664:0,0,0 -r2989,548:20753781,9669664:0,608174,102891 -g2989,501:22064501,9669664 -g2989,501:22064501,9669664 -g2989,501:23697658,9669664 -g2989,501:24515547,9669664 -k2989,502:29908505,9669664:2674525 -k2989,502:32583029,9669664:2674524 -) -(2989,503:20753781,10527690:11829248,505283,126483 -h2989,502:20753781,10527690:0,0,0 -r2989,548:20753781,10527690:0,631766,126483 -g2989,502:22064501,10527690 -g2989,502:22064501,10527690 -g2989,502:26034016,10527690 -g2989,502:26849283,10527690 -g2989,502:28255685,10527690 -k2989,503:31017046,10527690:1565984 -k2989,503:32583029,10527690:1565983 -) -(2989,504:20753781,11385717:11829248,505283,126483 -h2989,503:20753781,11385717:0,0,0 -r2989,548:20753781,11385717:0,631766,126483 -g2989,503:22064501,11385717 -g2989,503:22064501,11385717 -g2989,503:25347854,11385717 -k2989,504:29563130,11385717:3019899 -k2989,504:32583029,11385717:3019899 -) -(2989,505:20753781,12243743:11829248,485622,126483 -h2989,504:20753781,12243743:0,0,0 -r2989,548:20753781,12243743:0,612105,126483 -g2989,504:22064501,12243743 -g2989,504:22064501,12243743 -g2989,504:24311730,12243743 -k2989,505:29806596,12243743:2776433 -k2989,505:32583029,12243743:2776433 -) -(2989,506:20753781,13101769:11829248,505283,134348 -h2989,505:20753781,13101769:0,0,0 -g2989,505:24470982,13101769 -k2989,506:29124694,13101769:3458335 -k2989,506:32583029,13101769:3458335 -) -(2989,507:20753781,13959796:11829248,505283,126483 -h2989,506:20753781,13959796:0,0,0 -g2989,506:24051552,13959796 -k2989,507:28914979,13959796:3668050 -k2989,507:32583029,13959796:3668050 -) -(2989,508:20753781,14817822:11829248,505283,126483 -h2989,507:20753781,14817822:0,0,0 -k2989,508:27472204,14817822:5110825 -k2989,508:32583029,14817822:5110825 -) -(2989,509:20753781,15675848:11829248,505283,102891 -h2989,508:20753781,15675848:0,0,0 -r2989,548:20753781,15675848:0,608174,102891 -g2989,508:22064501,15675848 -g2989,508:22064501,15675848 -g2989,508:25611964,15675848 -k2989,509:29695185,15675848:2887844 -k2989,509:32583029,15675848:2887844 -) -(2989,510:20753781,16533874:11829248,485622,126483 -h2989,509:20753781,16533874:0,0,0 -r2989,548:20753781,16533874:0,612105,126483 -g2989,509:22064501,16533874 -g2989,509:22064501,16533874 -g2989,509:23516123,16533874 -g2989,509:26503254,16533874 -k2989,510:30140830,16533874:2442199 -k2989,510:32583029,16533874:2442199 -) -(2989,511:20753781,17391901:11829248,505283,134348 -h2989,510:20753781,17391901:0,0,0 -r2989,548:20753781,17391901:0,639631,134348 -g2989,510:22064501,17391901 -g2989,510:22064501,17391901 -g2989,510:23697658,17391901 -g2989,510:24341876,17391901 -g2989,510:27433864,17391901 -k2989,511:30406906,17391901:2176124 -k2989,511:32583029,17391901:2176123 -) -(2989,512:20753781,18249927:11829248,505283,126483 -h2989,511:20753781,18249927:0,0,0 -r2989,548:20753781,18249927:0,631766,126483 -g2989,511:22064501,18249927 -g2989,511:22064501,18249927 -g2989,511:24518824,18249927 -g2989,511:27050479,18249927 -k2989,512:30414443,18249927:2168587 -k2989,512:32583029,18249927:2168586 -) -(2989,513:20753781,19107953:11829248,505283,126483 -h2989,512:20753781,19107953:0,0,0 -r2989,548:20753781,19107953:0,631766,126483 -g2989,512:22064501,19107953 -g2989,512:22064501,19107953 -g2989,512:23423717,19107953 -g2989,512:24814391,19107953 -g2989,512:27839532,19107953 -g2989,512:29489728,19107953 -k2989,513:32395595,19107953:187434 -k2989,513:32583029,19107953:187434 -) -(2989,514:20753781,19965980:11829248,505283,126483 -h2989,513:20753781,19965980:0,0,0 -r2989,548:20753781,19965980:0,631766,126483 -g2989,513:22064501,19965980 -g2989,513:22064501,19965980 -g2989,513:24432316,19965980 -g2989,513:26082512,19965980 -k2989,514:30691987,19965980:1891042 -k2989,514:32583029,19965980:1891042 -) -(2989,515:20753781,20824006:11829248,485622,126483 -h2989,514:20753781,20824006:0,0,0 -r2989,548:20753781,20824006:0,612105,126483 -g2989,514:22064501,20824006 -g2989,514:22064501,20824006 -g2989,514:24815047,20824006 -k2989,515:30058255,20824006:2524775 -k2989,515:32583029,20824006:2524774 -) -(2989,516:20753781,21682032:11829248,505283,102891 -h2989,515:20753781,21682032:0,0,0 -r2989,548:20753781,21682032:0,608174,102891 -g2989,515:22064501,21682032 -g2989,515:22064501,21682032 -g2989,515:24858300,21682032 -k2989,516:30079881,21682032:2503148 -k2989,516:32583029,21682032:2503148 -) -(2989,517:20753781,22540059:11829248,505283,126483 -h2989,516:20753781,22540059:0,0,0 -r2989,548:20753781,22540059:0,631766,126483 -g2989,516:22064501,22540059 -g2989,516:22064501,22540059 -g2989,516:24646619,22540059 -g2989,516:26296815,22540059 -k2989,517:30799139,22540059:1783891 -k2989,517:32583029,22540059:1783890 -) -(2989,518:20753781,23398085:11829248,485622,134348 -h2989,517:20753781,23398085:0,0,0 -r2989,548:20753781,23398085:0,619970,134348 -g2989,517:22064501,23398085 -g2989,517:22064501,23398085 -g2989,517:25921294,23398085 -k2989,518:30611378,23398085:1971651 -k2989,518:32583029,23398085:1971651 -) -(2989,519:20753781,24256111:11829248,505283,134348 -h2989,518:20753781,24256111:0,0,0 -r2989,548:20753781,24256111:0,639631,134348 -g2989,518:22064501,24256111 -g2989,518:22064501,24256111 -g2989,518:25544462,24256111 -g2989,518:28061044,24256111 -k2989,519:30919725,24256111:1663304 -k2989,519:32583029,24256111:1663304 -) -(2989,520:20753781,25114138:11829248,505283,126483 -h2989,519:20753781,25114138:0,0,0 -r2989,548:20753781,25114138:0,631766,126483 -g2989,519:22064501,25114138 -g2989,519:22064501,25114138 -g2989,519:26092343,25114138 -g2989,519:28539457,25114138 -k2989,520:31158932,25114138:1424098 -k2989,520:32583029,25114138:1424097 -) -(2989,521:20753781,25972164:11829248,505283,102891 -h2989,520:20753781,25972164:0,0,0 -r2989,548:20753781,25972164:0,608174,102891 -g2989,520:22064501,25972164 -g2989,520:22064501,25972164 -g2989,520:23653093,25972164 -g2989,520:27534135,25972164 -k2989,521:31417799,25972164:1165231 -k2989,521:32583029,25972164:1165230 -) -(2989,522:20753781,26830190:11829248,505283,126483 -h2989,521:20753781,26830190:0,0,0 -r2989,548:20753781,26830190:0,631766,126483 -g2989,521:22064501,26830190 -g2989,521:22064501,26830190 -g2989,521:24596156,26830190 -k2989,522:29228241,26830190:3354788 -k2989,522:32583029,26830190:3354788 -) -(2989,523:20753781,27688216:11829248,505283,102891 -h2989,522:20753781,27688216:0,0,0 -r2989,548:20753781,27688216:0,608174,102891 -g2989,522:22719861,27688216 -g2989,522:22719861,27688216 -g2989,522:23317549,27688216 -g2989,522:27035406,27688216 -k2989,523:30406906,27688216:2176123 -k2989,523:32583029,27688216:2176123 -) -(2989,524:20753781,28546243:11829248,505283,102891 -h2989,523:20753781,28546243:0,0,0 -r2989,548:20753781,28546243:0,608174,102891 -g2989,523:22719861,28546243 -g2989,523:22719861,28546243 -g2989,523:23317549,28546243 -g2989,523:27365707,28546243 -k2989,524:31333585,28546243:1249445 -k2989,524:32583029,28546243:1249444 -) -(2989,525:20753781,29404269:11829248,505283,126483 -h2989,524:20753781,29404269:0,0,0 -r2989,548:20753781,29404269:0,631766,126483 -g2989,524:22064501,29404269 -g2989,524:22064501,29404269 -g2989,524:23335899,29404269 -g2989,524:24986095,29404269 -k2989,525:29382251,29404269:3200779 -k2989,525:32583029,29404269:3200778 -) -(2989,526:20753781,30262295:11829248,505283,102891 -h2989,525:20753781,30262295:0,0,0 -r2989,548:20753781,30262295:0,608174,102891 -g2989,525:22064501,30262295 -g2989,525:22064501,30262295 -g2989,525:23870673,30262295 -g2989,525:25618518,30262295 -k2989,526:29698462,30262295:2884567 -k2989,526:32583029,30262295:2884567 -) -(2989,527:20753781,31120322:11829248,513147,126483 -h2989,526:20753781,31120322:0,0,0 -r2989,548:20753781,31120322:0,639630,126483 -g2989,526:22064501,31120322 -g2989,526:22064501,31120322 -g2989,526:25433051,31120322 -g2989,526:27083247,31120322 -k2989,527:30430827,31120322:2152203 -k2989,527:32583029,31120322:2152202 -) -(2989,528:20753781,31978348:11829248,513147,102891 -h2989,527:20753781,31978348:0,0,0 -r2989,548:20753781,31978348:0,616038,102891 -g2989,527:22064501,31978348 -g2989,527:22064501,31978348 -g2989,527:23976186,31978348 -g2989,527:26420678,31978348 -k2989,528:30861070,31978348:1721959 -k2989,528:32583029,31978348:1721959 -) -(2989,529:20753781,32836374:11829248,513147,102891 -h2989,528:20753781,32836374:0,0,0 -r2989,548:20753781,32836374:0,616038,102891 -g2989,528:22064501,32836374 -g2989,528:22064501,32836374 -g2989,528:24098738,32836374 -k2989,529:28938572,32836374:3644457 -k2989,529:32583029,32836374:3644457 -) -(2989,530:20753781,33694401:11829248,505283,134348 -h2989,529:20753781,33694401:0,0,0 -r2989,548:20753781,33694401:0,639631,134348 -g2989,529:22064501,33694401 -g2989,529:22064501,33694401 -g2989,529:26003870,33694401 -k2989,530:30652666,33694401:1930363 -k2989,530:32583029,33694401:1930363 -) -(2989,531:20753781,34552427:11829248,505283,134348 -h2989,530:20753781,34552427:0,0,0 -r2989,548:20753781,34552427:0,639631,134348 -g2989,530:22064501,34552427 -g2989,530:22064501,34552427 -g2989,530:23814312,34552427 -g2989,530:26963316,34552427 -g2989,530:29626043,34552427 -k2989,531:32463753,34552427:119277 -k2989,531:32583029,34552427:119276 -) -(2989,532:20753781,35410453:11829248,505283,126483 -h2989,531:20753781,35410453:0,0,0 -r2989,548:20753781,35410453:0,631766,126483 -g2989,531:22064501,35410453 -g2989,531:22064501,35410453 -g2989,531:23814312,35410453 -g2989,531:25794810,35410453 -k2989,532:30548136,35410453:2034893 -k2989,532:32583029,35410453:2034893 -) -(2989,533:20753781,36268480:11829248,505283,102891 -h2989,532:20753781,36268480:0,0,0 -r2989,548:20753781,36268480:0,608174,102891 -g2989,532:22064501,36268480 -g2989,532:22064501,36268480 -g2989,532:23814312,36268480 -g2989,532:26083168,36268480 -k2989,533:30692315,36268480:1890714 -k2989,533:32583029,36268480:1890714 -) -(2989,534:20753781,37126506:11829248,485622,102891 -h2989,533:20753781,37126506:0,0,0 -r2989,548:20753781,37126506:0,588513,102891 -g2989,533:22064501,37126506 -g2989,533:22064501,37126506 -g2989,533:24318284,37126506 -k2989,534:29809873,37126506:2773156 -k2989,534:32583029,37126506:2773156 -) -(2989,535:20753781,37984532:11829248,485622,102891 -h2989,534:20753781,37984532:0,0,0 -r2989,548:20753781,37984532:0,588513,102891 -g2989,534:22064501,37984532 -g2989,534:22064501,37984532 -g2989,534:24144613,37984532 -g2989,534:25030004,37984532 -g2989,534:29193506,37984532 -k2989,535:32247484,37984532:335545 -k2989,535:32583029,37984532:335545 -) -(2989,536:20753781,38842559:11829248,505283,102891 -h2989,535:20753781,38842559:0,0,0 -r2989,548:20753781,38842559:0,608174,102891 -g2989,535:22064501,38842559 -g2989,535:22064501,38842559 -g2989,535:24281584,38842559 -k2989,536:29791523,38842559:2791506 -k2989,536:32583029,38842559:2791506 -) -(2989,537:20753781,39700585:11829248,505283,126483 -h2989,536:20753781,39700585:0,0,0 -r2989,548:20753781,39700585:0,631766,126483 -g2989,536:22064501,39700585 -g2989,536:22064501,39700585 -g2989,536:24325493,39700585 -g2989,536:25893769,39700585 -k2989,537:29836088,39700585:2746942 -k2989,537:32583029,39700585:2746941 -) -(2989,538:20753781,40558611:11829248,505283,126483 -h2989,537:20753781,40558611:0,0,0 -r2989,548:20753781,40558611:0,631766,126483 -g2989,537:22064501,40558611 -g2989,537:22064501,40558611 -g2989,537:23432237,40558611 -g2989,537:25082433,40558611 -k2989,538:29430420,40558611:3152610 -k2989,538:32583029,40558611:3152609 -) -(2989,539:20753781,41416637:11829248,485622,134348 -h2989,538:20753781,41416637:0,0,0 -r2989,548:20753781,41416637:0,619970,134348 -g2989,538:22064501,41416637 -g2989,538:22064501,41416637 -g2989,538:24149201,41416637 -g2989,538:25600823,41416637 -g2989,538:29290499,41416637 -k2989,539:31534453,41416637:1048577 -k2989,539:32583029,41416637:1048576 -) -(2989,540:20753781,42274664:11829248,505283,126483 -h2989,539:20753781,42274664:0,0,0 -r2989,548:20753781,42274664:0,631766,126483 -g2989,539:22064501,42274664 -g2989,539:22064501,42274664 -g2989,539:23990604,42274664 -g2989,539:25381278,42274664 -g2989,539:27706495,42274664 -g2989,539:29686993,42274664 -k2989,540:31732700,42274664:850330 -k2989,540:32583029,42274664:850329 -) -(2989,541:20753781,43132690:11829248,505283,126483 -h2989,540:20753781,43132690:0,0,0 -r2989,548:20753781,43132690:0,631766,126483 -g2989,540:22064501,43132690 -g2989,540:22064501,43132690 -g2989,540:23911305,43132690 -g2989,540:28054491,43132690 -k2989,541:31677977,43132690:905053 -k2989,541:32583029,43132690:905052 -) -(2989,542:20753781,43990716:11829248,505283,102891 -h2989,541:20753781,43990716:0,0,0 -r2989,548:20753781,43990716:0,608174,102891 -g2989,541:22064501,43990716 -g2989,541:22064501,43990716 -g2989,541:24241607,43990716 -g2989,541:25230545,43990716 -k2989,542:30266004,43990716:2317026 -k2989,542:32583029,43990716:2317025 -) -(2989,543:20753781,44848743:11829248,485622,102891 -h2989,542:20753781,44848743:0,0,0 -r2989,548:20753781,44848743:0,588513,102891 -g2989,542:22064501,44848743 -g2989,542:22064501,44848743 -g2989,542:24505717,44848743 -k2989,543:29142062,44848743:3440968 -k2989,543:32583029,44848743:3440967 -) -(2989,544:20753781,45706769:11829248,505283,102891 -h2989,543:20753781,45706769:0,0,0 -r2989,548:20753781,45706769:0,608174,102891 -g2989,543:22064501,45706769 -g2989,543:22064501,45706769 -g2989,543:25127653,45706769 -k2989,544:29453030,45706769:3130000 -k2989,544:32583029,45706769:3129999 +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,1767:37855564,2439708:1179648,16384,0 ) -] -(2989,548:32583029,45706769:0,355205,126483 -h2989,548:32583029,45706769:420741,355205,126483 -k2989,548:32583029,45706769:-420741 ) +k1,1767:3078556,2439708:-34777008 ) ] -(2989,548:32583029,45706769:0,0,0 -g2989,548:32583029,45706769 +[1,1767:3078558,4812305:0,0,0 +(1,1767:3078558,49800853:0,16384,2228224 +k1,1767:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,1767:2537886,49800853:1179648,16384,0 ) +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,1767:3078558,51504789:16384,1179648,0 ) -] -(2989,548:6630773,47279633:25952256,0,0 -h2989,548:6630773,47279633:25952256,0,0 +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) ] -(2989,548:4262630,4025873:0,0,0 -[2989,548:-473656,4025873:0,0,0 -(2989,548:-473656,-710413:0,0,0 -(2989,548:-473656,-710413:0,0,0 -g2989,548:-473656,-710413 ) -g2989,548:-473656,-710413 ) -] -) -] -!31050 -}383 -!12 -{384 -[2989,638:4262630,47279633:28320399,43253760,0 -(2989,638:4262630,4025873:0,0,0 -[2989,638:-473656,4025873:0,0,0 -(2989,638:-473656,-710413:0,0,0 -(2989,638:-473656,-644877:0,0,0 -k2989,638:-473656,-644877:-65536 -) -(2989,638:-473656,4736287:0,0,0 -k2989,638:-473656,4736287:5209943 -) -g2989,638:-473656,-710413 ) ] +[1,1767:3078558,4812305:0,0,0 +(1,1767:3078558,49800853:0,16384,2228224 +g1,1767:29030814,49800853 +g1,1767:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,1767:36151628,51504789:16384,1179648,0 ) -[2989,638:6630773,47279633:25952256,43253760,0 -[2989,638:6630773,4812305:25952256,786432,0 -(2989,638:6630773,4812305:25952256,505283,11795 -(2989,638:6630773,4812305:25952256,505283,11795 -g2989,638:3078558,4812305 -[2989,638:3078558,4812305:0,0,0 -(2989,638:3078558,2439708:0,1703936,0 -k2989,638:1358238,2439708:-1720320 -(2989,1:1358238,2439708:1720320,1703936,0 -(2989,1:1358238,2439708:1179648,16384,0 -r2989,638:2537886,2439708:1179648,16384,0 -) -g2989,1:3062174,2439708 -(2989,1:3062174,2439708:16384,1703936,0 -[2989,1:3062174,2439708:25952256,1703936,0 -(2989,1:3062174,1915420:25952256,1179648,0 -(2989,1:3062174,1915420:16384,1179648,0 -r2989,638:3078558,1915420:16384,1179648,0 -) -k2989,1:29014430,1915420:25935872 -g2989,1:29014430,1915420 +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 ) ] ) +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,1767:37855564,49800853:1179648,16384,0 ) ) -] -[2989,638:3078558,4812305:0,0,0 -(2989,638:3078558,2439708:0,1703936,0 -g2989,638:29030814,2439708 -g2989,638:36135244,2439708 -(2989,1:36135244,2439708:1720320,1703936,0 -(2989,1:36135244,2439708:16384,1703936,0 -[2989,1:36135244,2439708:25952256,1703936,0 -(2989,1:36135244,1915420:25952256,1179648,0 -(2989,1:36135244,1915420:16384,1179648,0 -r2989,638:36151628,1915420:16384,1179648,0 -) -k2989,1:62087500,1915420:25935872 -g2989,1:62087500,1915420 +k1,1767:3078556,49800853:-34777008 ) ] +g1,1767:6630773,4812305 +g1,1767:6630773,4812305 +g1,1767:8671564,4812305 +g1,1767:11756343,4812305 +k1,1767:31786111,4812305:20029768 +) +) +] +[1,1767:6630773,45706769:25952256,40108032,0 +(1,1767:6630773,45706769:25952256,40108032,0 +(1,1767:6630773,45706769:0,0,0 +g1,1767:6630773,45706769 +) +[1,1767:6630773,45706769:25952256,40108032,0 +v1,1706:6630773,6254097:0,393216,0 +(1,1706:6630773,11928169:25952256,6067288,196608 +g1,1706:6630773,11928169 +g1,1706:6630773,11928169 +g1,1706:6434165,11928169 +(1,1706:6434165,11928169:0,6067288,196608 +r1,1767:32779637,11928169:26345472,6263896,196608 +k1,1706:6434165,11928169:-26345472 +) +(1,1706:6434165,11928169:26345472,6067288,196608 +[1,1706:6630773,11928169:25952256,5870680,0 +(1,1696:6630773,6461715:25952256,404226,82312 +(1,1692:6630773,6461715:0,0,0 +g1,1692:6630773,6461715 +g1,1692:6630773,6461715 +g1,1692:6303093,6461715 +(1,1692:6303093,6461715:0,0,0 +) +g1,1692:6630773,6461715 +) +g1,1696:7579210,6461715 +g1,1696:7895356,6461715 +g1,1696:8211502,6461715 +g1,1696:8527648,6461715 +g1,1696:8843794,6461715 +g1,1696:9159940,6461715 +g1,1696:10740669,6461715 +g1,1696:12321398,6461715 +k1,1696:12321398,6461715:0 +h1,1696:13585981,6461715:0,0,0 +k1,1696:32583029,6461715:18997048 +g1,1696:32583029,6461715 +) +(1,1696:6630773,7127893:25952256,404226,82312 +h1,1696:6630773,7127893:0,0,0 +g1,1696:7579210,7127893 +g1,1696:9159938,7127893 +g1,1696:10740667,7127893 +g1,1696:12321396,7127893 +g1,1696:12637542,7127893 +h1,1696:13585979,7127893:0,0,0 +k1,1696:32583029,7127893:18997050 +g1,1696:32583029,7127893 +) +(1,1696:6630773,7794071:25952256,404226,82312 +h1,1696:6630773,7794071:0,0,0 +g1,1696:7579210,7794071 +g1,1696:9159938,7794071 +g1,1696:10740667,7794071 +g1,1696:11056813,7794071 +g1,1696:12321396,7794071 +h1,1696:13585979,7794071:0,0,0 +k1,1696:32583029,7794071:18997050 +g1,1696:32583029,7794071 +) +(1,1698:6630773,9115609:25952256,404226,76021 +(1,1697:6630773,9115609:0,0,0 +g1,1697:6630773,9115609 +g1,1697:6630773,9115609 +g1,1697:6303093,9115609 +(1,1697:6303093,9115609:0,0,0 +) +g1,1697:6630773,9115609 +) +k1,1698:6630773,9115609:0 +h1,1698:7895356,9115609:0,0,0 +k1,1698:32583028,9115609:24687672 +g1,1698:32583028,9115609 +) +(1,1705:6630773,9847323:25952256,404226,82312 +(1,1700:6630773,9847323:0,0,0 +g1,1700:6630773,9847323 +g1,1700:6630773,9847323 +g1,1700:6303093,9847323 +(1,1700:6303093,9847323:0,0,0 +) +g1,1700:6630773,9847323 +) +g1,1705:7579210,9847323 +g1,1705:7895356,9847323 +g1,1705:8211502,9847323 +g1,1705:8527648,9847323 +g1,1705:8843794,9847323 +g1,1705:9159940,9847323 +g1,1705:10740669,9847323 +k1,1705:10740669,9847323:0 +h1,1705:12005252,9847323:0,0,0 +k1,1705:32583028,9847323:20577776 +g1,1705:32583028,9847323 +) +(1,1705:6630773,10513501:25952256,404226,82312 +h1,1705:6630773,10513501:0,0,0 +g1,1705:7579210,10513501 +g1,1705:9159938,10513501 +g1,1705:10740667,10513501 +h1,1705:12005250,10513501:0,0,0 +k1,1705:32583030,10513501:20577780 +g1,1705:32583030,10513501 +) +(1,1705:6630773,11179679:25952256,404226,82312 +h1,1705:6630773,11179679:0,0,0 +g1,1705:7579210,11179679 +g1,1705:9159938,11179679 +g1,1705:10740667,11179679 +g1,1705:11056813,11179679 +h1,1705:12005250,11179679:0,0,0 +k1,1705:32583030,11179679:20577780 +g1,1705:32583030,11179679 +) +(1,1705:6630773,11845857:25952256,404226,82312 +h1,1705:6630773,11845857:0,0,0 +g1,1705:7579210,11845857 +g1,1705:9159938,11845857 +g1,1705:9476084,11845857 +g1,1705:10740667,11845857 +h1,1705:12005250,11845857:0,0,0 +k1,1705:32583030,11845857:20577780 +g1,1705:32583030,11845857 +) +] +) +g1,1706:32583029,11928169 +g1,1706:6630773,11928169 +g1,1706:6630773,11928169 +g1,1706:32583029,11928169 +g1,1706:32583029,11928169 +) +h1,1706:6630773,12124777:0,0,0 +(1,1710:6630773,13352191:25952256,513147,134348 +h1,1709:6630773,13352191:983040,0,0 +k1,1709:8358958,13352191:257557 +k1,1709:10266771,13352191:257616 +k1,1709:13044246,13352191:257616 +k1,1709:16136949,13352191:257616 +k1,1709:17466734,13352191:257616 +k1,1709:20208165,13352191:257616 +k1,1709:21117209,13352191:257616 +k1,1709:23144296,13352191:257615 +k1,1709:25862134,13352191:257616 +k1,1709:28134982,13352191:257616 +k1,1709:29411683,13352191:257616 +k1,1709:30681830,13352191:257616 +k1,1710:32583029,13352191:0 +) +(1,1710:6630773,14193679:25952256,513147,126483 +k1,1709:8147101,14193679:212817 +k1,1709:10435443,14193679:212817 +k1,1709:12677256,14193679:212818 +k1,1709:13421570,14193679:212817 +k1,1709:15332425,14193679:212817 +k1,1709:16413594,14193679:212817 +k1,1709:18389985,14193679:212817 +k1,1709:18958663,14193679:212818 +k1,1709:21866976,14193679:212817 +k1,1709:23364299,14193679:212817 +k1,1709:25918062,14193679:212817 +k1,1709:26486739,14193679:212817 +k1,1709:28379900,14193679:212818 +k1,1709:29252009,14193679:212817 +k1,1709:29820686,14193679:212817 +k1,1709:32583029,14193679:0 +) +(1,1710:6630773,15035167:25952256,505283,134348 +k1,1709:8862875,15035167:218836 +k1,1709:10524157,15035167:218835 +k1,1709:11531391,15035167:218836 +k1,1709:13632420,15035167:218835 +k1,1709:14923425,15035167:218836 +k1,1709:17166668,15035167:218836 +k1,1709:18827950,15035167:218835 +k1,1709:20377167,15035167:218836 +k1,1709:22379237,15035167:218835 +k1,1709:23466425,15035167:218836 +k1,1709:26473162,15035167:218835 +k1,1709:29074887,15035167:218836 +k1,1709:32583029,15035167:0 +) +(1,1710:6630773,15876655:25952256,505283,134348 +(1,1709:6837867,15876655:0,435480,115847 +r1,1767:10361540,15876655:3523673,551327,115847 +k1,1709:6837867,15876655:-3523673 +) +(1,1709:6837867,15876655:3523673,435480,115847 +g1,1709:9303127,15876655 +g1,1709:10006551,15876655 +h1,1709:10358263,15876655:0,411205,112570 +) +k1,1709:11021900,15876655:279596 +k1,1709:11657357,15876655:279597 +k1,1709:14024275,15876655:279596 +k1,1709:14835368,15876655:279596 +k1,1709:18067362,15876655:279597 +k1,1709:19740909,15876655:279596 +k1,1709:21472127,15876655:279596 +k1,1709:24134612,15876655:279596 +k1,1709:27776206,15876655:279597 +k1,1709:29074887,15876655:279596 +k1,1709:32583029,15876655:0 +) +(1,1710:6630773,16718143:25952256,513147,134348 +k1,1709:7765439,16718143:187015 +k1,1709:8971539,16718143:187015 +k1,1709:13782119,16718143:187015 +k1,1709:16352023,16718143:187015 +k1,1709:17155075,16718143:187014 +k1,1709:18361175,16718143:187015 +k1,1709:20983508,16718143:187015 +k1,1709:23257845,16718143:187015 +(1,1709:23464939,16718143:0,452978,115847 +r1,1767:28395459,16718143:4930520,568825,115847 +k1,1709:23464939,16718143:-4930520 +) +(1,1709:23464939,16718143:4930520,452978,115847 +k1,1709:23464939,16718143:3277 +h1,1709:28392182,16718143:0,411205,112570 +) +k1,1709:28963238,16718143:187015 +k1,1709:29778088,16718143:187015 +k1,1709:32583029,16718143:0 +) +(1,1710:6630773,17559631:25952256,505283,126483 +k1,1709:8541285,17559631:212474 +k1,1709:9622110,17559631:212473 +k1,1709:12622486,17559631:212474 +k1,1709:14038856,17559631:212474 +k1,1709:17759472,17559631:212474 +(1,1709:17966566,17559631:0,435480,115847 +r1,1767:21490239,17559631:3523673,551327,115847 +k1,1709:17966566,17559631:-3523673 +) +(1,1709:17966566,17559631:3523673,435480,115847 +g1,1709:20431826,17559631 +g1,1709:21135250,17559631 +h1,1709:21486962,17559631:0,411205,112570 +) +k1,1709:22083476,17559631:212473 +k1,1709:23747572,17559631:212474 +k1,1709:26342935,17559631:212474 +k1,1709:27171447,17559631:212474 +k1,1709:28403005,17559631:212473 +k1,1709:31394206,17559631:212474 +k1,1710:32583029,17559631:0 +) +(1,1710:6630773,18401119:25952256,513147,134348 +k1,1709:8014541,18401119:272277 +k1,1709:10988867,18401119:272277 +k1,1709:12280228,18401119:272276 +k1,1709:16060647,18401119:272277 +k1,1709:17280575,18401119:272277 +k1,1709:18709562,18401119:272277 +k1,1709:20185734,18401119:272276 +k1,1709:21074049,18401119:272277 +k1,1709:22365411,18401119:272277 +k1,1709:25073006,18401119:272277 +k1,1709:27168494,18401119:272276 +k1,1709:29074584,18401119:272277 +k1,1709:32051532,18401119:272277 +k1,1709:32583029,18401119:0 +) +(1,1710:6630773,19242607:25952256,513147,134348 +k1,1709:8105535,19242607:190256 +k1,1709:9057319,19242607:190256 +k1,1709:10982968,19242607:190256 +(1,1709:10982968,19242607:0,452978,115847 +r1,1767:13451505,19242607:2468537,568825,115847 +k1,1709:10982968,19242607:-2468537 +) +(1,1709:10982968,19242607:2468537,452978,115847 +k1,1709:10982968,19242607:3277 +h1,1709:13448228,19242607:0,411205,112570 +) +k1,1709:13641762,19242607:190257 +k1,1709:14851103,19242607:190256 +k1,1709:18386317,19242607:190256 +k1,1709:19235865,19242607:190256 +k1,1709:20445206,19242607:190256 +k1,1709:23070780,19242607:190256 +k1,1709:25348358,19242607:190256 +k1,1709:26221500,19242607:190257 +k1,1709:28061297,19242607:190256 +k1,1709:29638950,19242607:190256 +k1,1709:31714677,19242607:190256 +k1,1709:32583029,19242607:0 +) +(1,1710:6630773,20084095:25952256,505283,134348 +k1,1709:9583753,20084095:165078 +k1,1709:13256972,20084095:165077 +k1,1709:17667472,20084095:165078 +k1,1709:22353224,20084095:165078 +k1,1709:24213062,20084095:165077 +k1,1709:25708521,20084095:165078 +k1,1709:28607106,20084095:165078 +k1,1709:29763743,20084095:165077 +k1,1709:31966991,20084095:165078 +k1,1710:32583029,20084095:0 +) +(1,1710:6630773,20925583:25952256,513147,134348 +k1,1709:7381160,20925583:161874 +k1,1709:9241072,20925583:161874 +k1,1709:12116137,20925583:161874 +k1,1709:14870614,20925583:161873 +k1,1709:16299954,20925583:161874 +k1,1709:16817688,20925583:161874 +k1,1709:18852581,20925583:161874 +k1,1709:20868469,20925583:161874 +k1,1709:22049428,20925583:161874 +k1,1709:23745499,20925583:161873 +k1,1709:26350555,20925583:161874 +k1,1709:29399290,20925583:161874 +k1,1709:31206118,20925583:161874 +k1,1709:32583029,20925583:0 +) +(1,1710:6630773,21767071:25952256,513147,126483 +g1,1709:7849087,21767071 +g1,1709:10356494,21767071 +g1,1709:13334450,21767071 +g1,1709:14295207,21767071 +g1,1709:15513521,21767071 +g1,1709:18084498,21767071 +g1,1709:21152893,21767071 +g1,1709:22343682,21767071 +g1,1709:24581081,21767071 +g1,1709:25466472,21767071 +k1,1710:32583029,21767071:5408689 +g1,1710:32583029,21767071 +) +v1,1712:6630773,22819175:0,393216,0 +(1,1718:6630773,24441462:25952256,2015503,196608 +g1,1718:6630773,24441462 +g1,1718:6630773,24441462 +g1,1718:6434165,24441462 +(1,1718:6434165,24441462:0,2015503,196608 +r1,1767:32779637,24441462:26345472,2212111,196608 +k1,1718:6434165,24441462:-26345472 +) +(1,1718:6434165,24441462:26345472,2015503,196608 +[1,1718:6630773,24441462:25952256,1818895,0 +(1,1714:6630773,23033085:25952256,410518,82312 +(1,1713:6630773,23033085:0,0,0 +g1,1713:6630773,23033085 +g1,1713:6630773,23033085 +g1,1713:6303093,23033085 +(1,1713:6303093,23033085:0,0,0 +) +g1,1713:6630773,23033085 +) +g1,1714:10424521,23033085 +g1,1714:11372959,23033085 +g1,1714:15166708,23033085 +g1,1714:17063582,23033085 +g1,1714:17695874,23033085 +g1,1714:19908894,23033085 +h1,1714:20225040,23033085:0,0,0 +k1,1714:32583029,23033085:12357989 +g1,1714:32583029,23033085 +) +(1,1715:6630773,23699263:25952256,404226,82312 +h1,1715:6630773,23699263:0,0,0 +g1,1715:6946919,23699263 +g1,1715:7263065,23699263 +g1,1715:7579211,23699263 +g1,1715:7895357,23699263 +g1,1715:8211503,23699263 +g1,1715:8527649,23699263 +g1,1715:8843795,23699263 +g1,1715:12005253,23699263 +g1,1715:13902127,23699263 +g1,1715:14534419,23699263 +g1,1715:17063585,23699263 +g1,1715:17379731,23699263 +g1,1715:19276605,23699263 +g1,1715:21173479,23699263 +g1,1715:21805771,23699263 +h1,1715:24018791,23699263:0,0,0 +k1,1715:32583029,23699263:8564238 +g1,1715:32583029,23699263 +) +(1,1716:6630773,24365441:25952256,404226,76021 +h1,1716:6630773,24365441:0,0,0 +g1,1716:6946919,24365441 +g1,1716:7263065,24365441 +g1,1716:7579211,24365441 +g1,1716:7895357,24365441 +h1,1716:8211503,24365441:0,0,0 +k1,1716:32583029,24365441:24371526 +g1,1716:32583029,24365441 +) +] +) +g1,1718:32583029,24441462 +g1,1718:6630773,24441462 +g1,1718:6630773,24441462 +g1,1718:32583029,24441462 +g1,1718:32583029,24441462 +) +h1,1718:6630773,24638070:0,0,0 +v1,1722:6630773,26076101:0,393216,0 +(1,1732:6630773,29096279:25952256,3413394,196608 +g1,1732:6630773,29096279 +g1,1732:6630773,29096279 +g1,1732:6434165,29096279 +(1,1732:6434165,29096279:0,3413394,196608 +r1,1767:32779637,29096279:26345472,3610002,196608 +k1,1732:6434165,29096279:-26345472 +) +(1,1732:6434165,29096279:26345472,3413394,196608 +[1,1732:6630773,29096279:25952256,3216786,0 +(1,1724:6630773,26283719:25952256,404226,101187 +(1,1723:6630773,26283719:0,0,0 +g1,1723:6630773,26283719 +g1,1723:6630773,26283719 +g1,1723:6303093,26283719 +(1,1723:6303093,26283719:0,0,0 +) +g1,1723:6630773,26283719 +) +g1,1724:7263065,26283719 +g1,1724:8211503,26283719 +g1,1724:10740669,26283719 +g1,1724:11372961,26283719 +g1,1724:16431293,26283719 +g1,1724:18644313,26283719 +g1,1724:19276605,26283719 +g1,1724:20225043,26283719 +g1,1724:21489626,26283719 +g1,1724:22121918,26283719 +g1,1724:26231812,26283719 +g1,1724:28128686,26283719 +g1,1724:28760978,26283719 +h1,1724:30341707,26283719:0,0,0 +k1,1724:32583029,26283719:2241322 +g1,1724:32583029,26283719 +) +(1,1725:6630773,26949897:25952256,277873,0 +h1,1725:6630773,26949897:0,0,0 +h1,1725:6946919,26949897:0,0,0 +k1,1725:32583029,26949897:25636110 +g1,1725:32583029,26949897 +) +(1,1731:6630773,27681611:25952256,404226,82312 +(1,1727:6630773,27681611:0,0,0 +g1,1727:6630773,27681611 +g1,1727:6630773,27681611 +g1,1727:6303093,27681611 +(1,1727:6303093,27681611:0,0,0 +) +g1,1727:6630773,27681611 +) +g1,1731:7579210,27681611 +g1,1731:7895356,27681611 +g1,1731:8211502,27681611 +g1,1731:8527648,27681611 +g1,1731:8843794,27681611 +g1,1731:9159940,27681611 +g1,1731:9476086,27681611 +g1,1731:9792232,27681611 +g1,1731:10108378,27681611 +g1,1731:10424524,27681611 +g1,1731:10740670,27681611 +g1,1731:12321399,27681611 +g1,1731:12637545,27681611 +g1,1731:12953691,27681611 +k1,1731:12953691,27681611:0 +h1,1731:14218274,27681611:0,0,0 +k1,1731:32583030,27681611:18364756 +g1,1731:32583030,27681611 +) +(1,1731:6630773,28347789:25952256,404226,82312 +h1,1731:6630773,28347789:0,0,0 +g1,1731:7579210,28347789 +g1,1731:9159938,28347789 +g1,1731:12321395,28347789 +h1,1731:14218269,28347789:0,0,0 +k1,1731:32583029,28347789:18364760 +g1,1731:32583029,28347789 +) +(1,1731:6630773,29013967:25952256,404226,82312 +h1,1731:6630773,29013967:0,0,0 +g1,1731:7579210,29013967 +g1,1731:9159938,29013967 +g1,1731:9476084,29013967 +g1,1731:12321395,29013967 +g1,1731:12637541,29013967 +h1,1731:14218269,29013967:0,0,0 +k1,1731:32583029,29013967:18364760 +g1,1731:32583029,29013967 +) +] +) +g1,1732:32583029,29096279 +g1,1732:6630773,29096279 +g1,1732:6630773,29096279 +g1,1732:32583029,29096279 +g1,1732:32583029,29096279 +) +h1,1732:6630773,29292887:0,0,0 +v1,1736:6630773,30730917:0,393216,0 +(1,1746:6630773,33751095:25952256,3413394,196608 +g1,1746:6630773,33751095 +g1,1746:6630773,33751095 +g1,1746:6434165,33751095 +(1,1746:6434165,33751095:0,3413394,196608 +r1,1767:32779637,33751095:26345472,3610002,196608 +k1,1746:6434165,33751095:-26345472 +) +(1,1746:6434165,33751095:26345472,3413394,196608 +[1,1746:6630773,33751095:25952256,3216786,0 +(1,1738:6630773,30938535:25952256,404226,101187 +(1,1737:6630773,30938535:0,0,0 +g1,1737:6630773,30938535 +g1,1737:6630773,30938535 +g1,1737:6303093,30938535 +(1,1737:6303093,30938535:0,0,0 +) +g1,1737:6630773,30938535 +) +g1,1738:7263065,30938535 +g1,1738:8211503,30938535 +g1,1738:10740669,30938535 +g1,1738:11372961,30938535 +g1,1738:16431293,30938535 +g1,1738:18644313,30938535 +g1,1738:19276605,30938535 +g1,1738:20225043,30938535 +g1,1738:21489626,30938535 +g1,1738:22121918,30938535 +g1,1738:26231812,30938535 +g1,1738:28128686,30938535 +g1,1738:28760978,30938535 +h1,1738:30341707,30938535:0,0,0 +k1,1738:32583029,30938535:2241322 +g1,1738:32583029,30938535 +) +(1,1739:6630773,31604713:25952256,277873,0 +h1,1739:6630773,31604713:0,0,0 +h1,1739:6946919,31604713:0,0,0 +k1,1739:32583029,31604713:25636110 +g1,1739:32583029,31604713 +) +(1,1745:6630773,32336427:25952256,404226,82312 +(1,1741:6630773,32336427:0,0,0 +g1,1741:6630773,32336427 +g1,1741:6630773,32336427 +g1,1741:6303093,32336427 +(1,1741:6303093,32336427:0,0,0 +) +g1,1741:6630773,32336427 +) +g1,1745:7579210,32336427 +g1,1745:7895356,32336427 +g1,1745:8211502,32336427 +g1,1745:8527648,32336427 +g1,1745:8843794,32336427 +g1,1745:9159940,32336427 +g1,1745:9476086,32336427 +g1,1745:9792232,32336427 +g1,1745:10108378,32336427 +g1,1745:10424524,32336427 +g1,1745:10740670,32336427 +g1,1745:11056816,32336427 +g1,1745:12637545,32336427 +g1,1745:12953691,32336427 +g1,1745:13269837,32336427 +g1,1745:13585983,32336427 +g1,1745:13902129,32336427 +g1,1745:15482858,32336427 +g1,1745:15799004,32336427 +g1,1745:16115150,32336427 +g1,1745:16431296,32336427 +g1,1745:16747442,32336427 +k1,1745:16747442,32336427:0 +h1,1745:18012025,32336427:0,0,0 +k1,1745:32583029,32336427:14571004 +g1,1745:32583029,32336427 +) +(1,1745:6630773,33002605:25952256,404226,82312 +h1,1745:6630773,33002605:0,0,0 +g1,1745:7579210,33002605 +g1,1745:9159938,33002605 +g1,1745:12637541,33002605 +g1,1745:15482852,33002605 +h1,1745:18012017,33002605:0,0,0 +k1,1745:32583029,33002605:14571012 +g1,1745:32583029,33002605 +) +(1,1745:6630773,33668783:25952256,404226,82312 +h1,1745:6630773,33668783:0,0,0 +g1,1745:7579210,33668783 +g1,1745:9159938,33668783 +g1,1745:9476084,33668783 +g1,1745:12637541,33668783 +g1,1745:15482852,33668783 +h1,1745:18012017,33668783:0,0,0 +k1,1745:32583029,33668783:14571012 +g1,1745:32583029,33668783 +) +] +) +g1,1746:32583029,33751095 +g1,1746:6630773,33751095 +g1,1746:6630773,33751095 +g1,1746:32583029,33751095 +g1,1746:32583029,33751095 +) +h1,1746:6630773,33947703:0,0,0 +(1,1750:6630773,35175117:25952256,513147,126483 +h1,1749:6630773,35175117:983040,0,0 +k1,1749:8538261,35175117:296613 +k1,1749:9600990,35175117:296613 +k1,1749:12889322,35175117:296613 +k1,1749:15214930,35175117:296613 +k1,1749:16379895,35175117:296613 +k1,1749:18151723,35175117:296613 +k1,1749:19961562,35175117:296613 +k1,1749:22983163,35175117:296614 +k1,1749:26479244,35175117:296613 +k1,1749:29967460,35175117:296613 +k1,1749:30880111,35175117:296613 +k1,1749:31591469,35175117:296515 +k1,1749:32583029,35175117:0 +) +(1,1750:6630773,36016605:25952256,513147,134348 +k1,1749:9870108,36016605:213538 +k1,1749:11477597,36016605:213538 +k1,1749:12863574,36016605:213538 +k1,1749:15205721,36016605:213538 +k1,1749:19030293,36016605:213538 +k1,1749:21129302,36016605:213538 +k1,1749:22447122,36016605:213538 +k1,1749:23408426,36016605:213538 +k1,1749:25489740,36016605:213538 +k1,1749:27438671,36016605:213538 +k1,1749:29063855,36016605:213538 +k1,1749:31966991,36016605:213538 +k1,1749:32583029,36016605:0 +) +(1,1750:6630773,36858093:25952256,505283,134348 +k1,1749:12323269,36858093:197302 +(1,1749:12323269,36858093:0,452978,115847 +r1,1767:14088383,36858093:1765114,568825,115847 +k1,1749:12323269,36858093:-1765114 +) +(1,1749:12323269,36858093:1765114,452978,115847 +g1,1749:13029970,36858093 +g1,1749:13733394,36858093 +h1,1749:14085106,36858093:0,411205,112570 +) +k1,1749:14459355,36858093:197302 +k1,1749:15416875,36858093:197302 +k1,1749:19770470,36858093:197302 +k1,1749:21476411,36858093:197302 +k1,1749:23742029,36858093:197302 +k1,1749:25319519,36858093:197302 +k1,1749:26621103,36858093:197302 +k1,1749:27566171,36858093:197302 +k1,1749:29631249,36858093:197302 +k1,1749:31563944,36858093:197302 +k1,1749:32583029,36858093:0 +) +(1,1750:6630773,37699581:25952256,513147,126483 +k1,1749:8535631,37699581:251385 +k1,1749:10871060,37699581:251384 +k1,1749:11808607,37699581:251385 +k1,1749:13007642,37699581:251384 +k1,1749:15984014,37699581:251385 +k1,1749:19434866,37699581:251384 +k1,1749:20877696,37699581:251385 +k1,1749:25354186,37699581:251384 +k1,1749:26891387,37699581:251385 +k1,1749:29348058,37699581:251384 +k1,1749:30250871,37699581:251385 +k1,1749:31521340,37699581:251384 +(1,1749:31521340,37699581:0,414482,115847 +r1,1767:32583029,37699581:1061689,530329,115847 +k1,1749:31521340,37699581:-1061689 +) +(1,1749:31521340,37699581:1061689,414482,115847 +k1,1749:31521340,37699581:3277 +h1,1749:32579752,37699581:0,411205,112570 +) +k1,1749:32583029,37699581:0 +) +(1,1750:6630773,38541069:25952256,513147,126483 +k1,1749:10160368,38541069:248863 +k1,1749:11068522,38541069:248862 +k1,1749:13080959,38541069:248863 +k1,1749:16529289,38541069:248862 +k1,1749:17265690,38541069:248813 +k1,1749:18527083,38541069:248862 +k1,1749:21611033,38541069:248863 +k1,1749:25164876,38541069:248862 +k1,1749:26065167,38541069:248863 +k1,1749:27333114,38541069:248862 +k1,1749:30919070,38541069:248863 +k1,1750:32583029,38541069:0 +) +(1,1750:6630773,39382557:25952256,513147,126483 +k1,1749:8483709,39382557:229609 +(1,1749:8483709,39382557:0,424981,115847 +r1,1767:12710806,39382557:4227097,540828,115847 +k1,1749:8483709,39382557:-4227097 +) +(1,1749:8483709,39382557:4227097,424981,115847 +g1,1749:11652393,39382557 +g1,1749:12355817,39382557 +h1,1749:12707529,39382557:0,411205,112570 +) +k1,1749:12940415,39382557:229609 +k1,1749:15659081,39382557:229609 +k1,1749:16842238,39382557:229608 +k1,1749:19865647,39382557:229609 +k1,1749:22841870,39382557:229609 +(1,1749:22841870,39382557:0,414482,115847 +r1,1767:23200136,39382557:358266,530329,115847 +k1,1749:22841870,39382557:-358266 +) +(1,1749:22841870,39382557:358266,414482,115847 +k1,1749:22841870,39382557:3277 +h1,1749:23196859,39382557:0,411205,112570 +) +k1,1749:23429745,39382557:229609 +k1,1749:24275392,39382557:229609 +k1,1749:25987425,39382557:229609 +k1,1749:27731570,39382557:229608 +(1,1749:27938664,39382557:0,459977,115847 +r1,1767:28296930,39382557:358266,575824,115847 +k1,1749:27938664,39382557:-358266 +) +(1,1749:27938664,39382557:358266,459977,115847 +k1,1749:27938664,39382557:3277 +h1,1749:28293653,39382557:0,411205,112570 +) +k1,1749:28733633,39382557:229609 +k1,1749:30154687,39382557:229609 +k1,1749:31821501,39382557:229609 +k1,1749:32583029,39382557:0 +) +(1,1750:6630773,40224045:25952256,513147,126483 +g1,1749:8568017,40224045 +g1,1749:9123106,40224045 +g1,1749:12080090,40224045 +g1,1749:12930747,40224045 +g1,1749:13918374,40224045 +g1,1749:16358934,40224045 +g1,1749:18686772,40224045 +g1,1749:22166733,40224045 +(1,1749:22373827,40224045:0,435480,115847 +r1,1767:24490653,40224045:2116826,551327,115847 +k1,1749:22373827,40224045:-2116826 +) +(1,1749:22373827,40224045:2116826,435480,115847 +g1,1749:23432240,40224045 +g1,1749:24135664,40224045 +h1,1749:24487376,40224045:0,411205,112570 +) +k1,1750:32583029,40224045:7711612 +g1,1750:32583029,40224045 +) +v1,1752:6630773,41276150:0,393216,0 +(1,1762:6630773,44290037:25952256,3407103,196608 +g1,1762:6630773,44290037 +g1,1762:6630773,44290037 +g1,1762:6434165,44290037 +(1,1762:6434165,44290037:0,3407103,196608 +r1,1767:32779637,44290037:26345472,3603711,196608 +k1,1762:6434165,44290037:-26345472 +) +(1,1762:6434165,44290037:26345472,3407103,196608 +[1,1762:6630773,44290037:25952256,3210495,0 +(1,1754:6630773,41483768:25952256,404226,107478 +(1,1753:6630773,41483768:0,0,0 +g1,1753:6630773,41483768 +g1,1753:6630773,41483768 +g1,1753:6303093,41483768 +(1,1753:6303093,41483768:0,0,0 +) +g1,1753:6630773,41483768 +) +k1,1754:6630773,41483768:0 +g1,1754:12005250,41483768 +g1,1754:12637542,41483768 +g1,1754:13585979,41483768 +g1,1754:15166708,41483768 +g1,1754:18012019,41483768 +g1,1754:19592748,41483768 +g1,1754:20857331,41483768 +k1,1754:20857331,41483768:1573 +h1,1754:22755778,41483768:0,0,0 +k1,1754:32583029,41483768:9827251 +g1,1754:32583029,41483768 +) +(1,1755:6630773,42149946:25952256,410518,76021 +h1,1755:6630773,42149946:0,0,0 +g1,1755:9476084,42149946 +g1,1755:10424522,42149946 +k1,1755:10424522,42149946:0 +h1,1755:13269833,42149946:0,0,0 +k1,1755:32583029,42149946:19313196 +g1,1755:32583029,42149946 +) +(1,1756:6630773,42816124:25952256,410518,101187 +h1,1756:6630773,42816124:0,0,0 +g1,1756:7263065,42816124 +g1,1756:8211503,42816124 +g1,1756:11056815,42816124 +g1,1756:11689107,42816124 +g1,1756:14850564,42816124 +g1,1756:16115147,42816124 +g1,1756:16747439,42816124 +g1,1756:18328169,42816124 +g1,1756:19276606,42816124 +g1,1756:19908898,42816124 +h1,1756:20541190,42816124:0,0,0 +k1,1756:32583029,42816124:12041839 +g1,1756:32583029,42816124 +) +(1,1757:6630773,43482302:25952256,404226,76021 +h1,1757:6630773,43482302:0,0,0 +k1,1757:6630773,43482302:0 +h1,1757:8527647,43482302:0,0,0 +k1,1757:32583029,43482302:24055382 +g1,1757:32583029,43482302 +) +(1,1761:6630773,44214016:25952256,404226,76021 +(1,1759:6630773,44214016:0,0,0 +g1,1759:6630773,44214016 +g1,1759:6630773,44214016 +g1,1759:6303093,44214016 +(1,1759:6303093,44214016:0,0,0 +) +g1,1759:6630773,44214016 +) +g1,1761:7579210,44214016 +g1,1761:7895356,44214016 +g1,1761:9159939,44214016 +g1,1761:11372959,44214016 +g1,1761:12637542,44214016 +g1,1761:14218271,44214016 +g1,1761:15799000,44214016 +g1,1761:17379729,44214016 +g1,1761:18960458,44214016 +h1,1761:19908895,44214016:0,0,0 +k1,1761:32583029,44214016:12674134 +g1,1761:32583029,44214016 +) +] +) +g1,1762:32583029,44290037 +g1,1762:6630773,44290037 +g1,1762:6630773,44290037 +g1,1762:32583029,44290037 +g1,1762:32583029,44290037 +) +h1,1762:6630773,44486645:0,0,0 +v1,1766:6630773,46099985:0,393216,0 +] +(1,1767:32583029,45706769:0,0,0 +g1,1767:32583029,45706769 +) +) +] +(1,1767:6630773,47279633:25952256,0,0 +h1,1767:6630773,47279633:25952256,0,0 +) +] +(1,1767:4262630,4025873:0,0,0 +[1,1767:-473656,4025873:0,0,0 +(1,1767:-473656,-710413:0,0,0 +(1,1767:-473656,-710413:0,0,0 +g1,1767:-473656,-710413 +) +g1,1767:-473656,-710413 +) +] +) +] +!27328 +}36 +Input:525:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:526:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:527:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:528:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:529:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:530:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:531:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:532:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:533:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:534:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:535:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:536:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:537:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:538:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:539:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:540:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:541:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:542:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:543:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:544:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:545:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:546:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:547:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2104 +{37 +[1,1800:4262630,47279633:28320399,43253760,0 +(1,1800:4262630,4025873:0,0,0 +[1,1800:-473656,4025873:0,0,0 +(1,1800:-473656,-710413:0,0,0 +(1,1800:-473656,-644877:0,0,0 +k1,1800:-473656,-644877:-65536 ) -g2989,1:36675916,2439708 -(2989,1:36675916,2439708:1179648,16384,0 -r2989,638:37855564,2439708:1179648,16384,0 -) -) -k2989,638:3078556,2439708:-34777008 +(1,1800:-473656,4736287:0,0,0 +k1,1800:-473656,4736287:5209943 ) -] -[2989,638:3078558,4812305:0,0,0 -(2989,638:3078558,49800853:0,16384,2228224 -k2989,638:1358238,49800853:-1720320 -(2989,1:1358238,49800853:1720320,16384,2228224 -(2989,1:1358238,49800853:1179648,16384,0 -r2989,638:2537886,49800853:1179648,16384,0 -) -g2989,1:3062174,49800853 -(2989,1:3062174,52029077:16384,1703936,0 -[2989,1:3062174,52029077:25952256,1703936,0 -(2989,1:3062174,51504789:25952256,1179648,0 -(2989,1:3062174,51504789:16384,1179648,0 -r2989,638:3078558,51504789:16384,1179648,0 -) -k2989,1:29014430,51504789:25935872 -g2989,1:29014430,51504789 +g1,1800:-473656,-710413 ) ] ) +[1,1800:6630773,47279633:25952256,43253760,0 +[1,1800:6630773,4812305:25952256,786432,0 +(1,1800:6630773,4812305:25952256,505283,134348 +(1,1800:6630773,4812305:25952256,505283,134348 +g1,1800:3078558,4812305 +[1,1800:3078558,4812305:0,0,0 +(1,1800:3078558,2439708:0,1703936,0 +k1,1800:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,1800:2537886,2439708:1179648,16384,0 ) +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,1800:3078558,1915420:16384,1179648,0 ) -] -[2989,638:3078558,4812305:0,0,0 -(2989,638:3078558,49800853:0,16384,2228224 -g2989,638:29030814,49800853 -g2989,638:36135244,49800853 -(2989,1:36135244,49800853:1720320,16384,2228224 -(2989,1:36135244,52029077:16384,1703936,0 -[2989,1:36135244,52029077:25952256,1703936,0 -(2989,1:36135244,51504789:25952256,1179648,0 -(2989,1:36135244,51504789:16384,1179648,0 -r2989,638:36151628,51504789:16384,1179648,0 -) -k2989,1:62087500,51504789:25935872 -g2989,1:62087500,51504789 +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) ] ) -g2989,1:36675916,49800853 -(2989,1:36675916,49800853:1179648,16384,0 -r2989,638:37855564,49800853:1179648,16384,0 -) ) -k2989,638:3078556,49800853:-34777008 ) ] -g2989,638:6630773,4812305 -g2989,638:6630773,4812305 -g2989,638:9313817,4812305 -g2989,638:11188146,4812305 -k2989,638:31387652,4812305:20199506 +[1,1800:3078558,4812305:0,0,0 +(1,1800:3078558,2439708:0,1703936,0 +g1,1800:29030814,2439708 +g1,1800:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,1800:36151628,1915420:16384,1179648,0 ) +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) ] -[2989,638:6630773,45706769:25952256,40108032,0 -(2989,638:6630773,45706769:25952256,40108032,0 -(2989,638:6630773,45706769:0,0,0 -g2989,638:6630773,45706769 -) -[2989,638:6630773,45706769:25952256,40108032,0 -(2989,638:6630773,45706769:25952256,40108032,126483 -[2989,638:6630773,45706769:11829248,40108032,126483 -(2989,545:6630773,6254097:11829248,505283,102891 -h2989,544:6630773,6254097:0,0,0 -r2989,638:6630773,6254097:0,608174,102891 -g2989,544:7941493,6254097 -g2989,544:7941493,6254097 -g2989,544:10840150,6254097 -g2989,544:15247446,6254097 -k2989,545:18212950,6254097:247071 -k2989,545:18460021,6254097:247071 -) -(2989,546:6630773,7132462:11829248,513147,126483 -h2989,545:6630773,7132462:0,0,0 -r2989,638:6630773,7132462:0,639630,126483 -g2989,545:7941493,7132462 -g2989,545:7941493,7132462 -g2989,545:10299478,7132462 -g2989,545:11150135,7132462 -g2989,545:12836376,7132462 -k2989,546:16245887,7132462:2214134 -k2989,546:18460021,7132462:2214134 -) -(2989,547:6630773,8010827:11829248,485622,126483 -h2989,546:6630773,8010827:0,0,0 -r2989,638:6630773,8010827:0,612105,126483 -g2989,546:7941493,8010827 -g2989,546:7941493,8010827 -g2989,546:9378697,8010827 -g2989,546:11910352,8010827 -k2989,547:15782875,8010827:2677146 -k2989,547:18460021,8010827:2677146 -) -(2989,548:6630773,8889192:11829248,505283,126483 -h2989,547:6630773,8889192:0,0,0 -r2989,638:6630773,8889192:0,631766,126483 -g2989,547:7941493,8889192 -g2989,547:7941493,8889192 -g2989,547:9109999,8889192 -g2989,547:11462741,8889192 -k2989,548:16320598,8889192:2139424 -k2989,548:18460021,8889192:2139423 -) -(2989,549:6630773,9767557:11829248,513147,126483 -h2989,548:6630773,9767557:0,0,0 -r2989,638:6630773,9767557:0,639630,126483 -g2989,548:7941493,9767557 -g2989,548:7941493,9767557 -g2989,548:9748320,9767557 -g2989,548:10606841,9767557 -g2989,548:14005538,9767557 -k2989,549:17591996,9767557:868025 -k2989,549:18460021,9767557:868025 -) -(2989,550:6630773,10645922:11829248,485622,126483 -h2989,549:6630773,10645922:0,0,0 -r2989,638:6630773,10645922:0,612105,126483 -g2989,549:7941493,10645922 -g2989,549:7941493,10645922 -g2989,549:11329049,10645922 -g2989,549:13860704,10645922 -k2989,550:16758051,10645922:1701970 -k2989,550:18460021,10645922:1701970 -) -(2989,551:6630773,11524287:11829248,485622,134348 -h2989,550:6630773,11524287:0,0,0 -r2989,638:6630773,11524287:0,619970,134348 -g2989,550:7941493,11524287 -g2989,550:7941493,11524287 -g2989,550:10886681,11524287 -k2989,551:15271040,11524287:3188982 -k2989,551:18460021,11524287:3188981 -) -(2989,552:6630773,12402652:11829248,473825,134348 -h2989,551:6630773,12402652:0,0,0 -r2989,638:6630773,12402652:0,608173,134348 -g2989,551:7941493,12402652 -g2989,551:7941493,12402652 -g2989,551:12030284,12402652 -k2989,551:18460021,12402652:2221670 -) -(2989,552:9252213,13244140:9207808,485622,11795 -k2989,552:15215334,13244140:3244688 -k2989,552:18460021,13244140:3244687 -) -(2989,553:6630773,14122505:11829248,513147,102891 -h2989,552:6630773,14122505:0,0,0 -r2989,638:6630773,14122505:0,616038,102891 -g2989,552:7941493,14122505 -g2989,552:7941493,14122505 -g2989,552:11119989,14122505 -g2989,552:12991697,14122505 -k2989,553:17085076,14122505:1374946 -k2989,553:18460021,14122505:1374945 -) -(2989,554:6630773,15000870:11829248,505283,134348 -h2989,553:6630773,15000870:0,0,0 -r2989,638:6630773,15000870:0,639631,134348 -g2989,553:7941493,15000870 -g2989,553:7941493,15000870 -g2989,553:11411624,15000870 -k2989,554:15533511,15000870:2926510 -k2989,554:18460021,15000870:2926510 -) -(2989,555:6630773,15879235:11829248,513147,134348 -h2989,554:6630773,15879235:0,0,0 -r2989,638:6630773,15879235:0,647495,134348 -g2989,554:7941493,15879235 -g2989,554:7941493,15879235 -g2989,554:10511815,15879235 -g2989,554:12363207,15879235 -g2989,554:13395399,15879235 -k2989,555:16525399,15879235:1934623 -k2989,555:18460021,15879235:1934622 -) -(2989,556:6630773,16757600:11829248,485622,134348 -h2989,555:6630773,16757600:0,0,0 -r2989,638:6630773,16757600:0,619970,134348 -g2989,555:7941493,16757600 -g2989,555:7941493,16757600 -g2989,555:9218134,16757600 -g2989,555:12219682,16757600 -k2989,556:15937540,16757600:2522481 -k2989,556:18460021,16757600:2522481 -) -(2989,557:6630773,17635965:11829248,485622,134348 -h2989,556:6630773,17635965:0,0,0 -r2989,638:6630773,17635965:0,619970,134348 -g2989,556:7941493,17635965 -g2989,556:7941493,17635965 -g2989,556:10347975,17635965 -k2989,557:15001687,17635965:3458335 -k2989,557:18460021,17635965:3458334 -) -(2989,558:6630773,18514330:11829248,513147,134348 -h2989,557:6630773,18514330:0,0,0 -r2989,638:6630773,18514330:0,647495,134348 -g2989,557:7941493,18514330 -g2989,557:7941493,18514330 -g2989,557:10174304,18514330 -g2989,557:11024961,18514330 -g2989,557:12380900,18514330 -g2989,557:13547440,18514330 -k2989,557:18460021,18514330:3131312 -) -(2989,558:9252213,19355818:9207808,505283,134348 -k2989,558:15404733,19355818:3055289 -k2989,558:18460021,19355818:3055288 -) -(2989,559:6630773,20234183:11829248,505283,7863 -h2989,558:6630773,20234183:0,0,0 -r2989,638:6630773,20234183:0,513146,7863 -g2989,558:7941493,20234183 -g2989,558:7941493,20234183 -k2989,559:14152012,20234183:4308009 -k2989,559:18460021,20234183:4308009 -) -(2989,560:6630773,21112548:11829248,505283,102891 -h2989,559:6630773,21112548:0,0,0 -r2989,638:6630773,21112548:0,608174,102891 -g2989,559:8596853,21112548 -g2989,559:8596853,21112548 -g2989,559:10048475,21112548 -g2989,559:12265558,21112548 -k2989,560:15960478,21112548:2499543 -k2989,560:18460021,21112548:2499543 -) -(2989,561:6630773,21990913:11829248,505283,102891 -h2989,560:6630773,21990913:0,0,0 -r2989,638:6630773,21990913:0,608174,102891 -g2989,560:8596853,21990913 -g2989,560:8596853,21990913 -g2989,560:10784444,21990913 -k2989,561:15219921,21990913:3240100 -k2989,561:18460021,21990913:3240100 -) -(2989,562:6630773,22869278:11829248,505283,102891 -h2989,561:6630773,22869278:0,0,0 -r2989,638:6630773,22869278:0,608174,102891 -g2989,561:8596853,22869278 -g2989,561:8596853,22869278 -g2989,561:9980318,22869278 -g2989,561:12468064,22869278 -k2989,562:16061731,22869278:2398290 -k2989,562:18460021,22869278:2398290 -) -(2989,563:6630773,23747643:11829248,505283,102891 -h2989,562:6630773,23747643:0,0,0 -r2989,638:6630773,23747643:0,608174,102891 -g2989,562:8596853,23747643 -g2989,562:8596853,23747643 -g2989,562:9980318,23747643 -g2989,562:12197401,23747643 -k2989,563:15926400,23747643:2533622 -k2989,563:18460021,23747643:2533621 -) -(2989,564:6630773,24626008:11829248,513147,102891 -h2989,563:6630773,24626008:0,0,0 -r2989,638:6630773,24626008:0,616038,102891 -g2989,563:8596853,24626008 -g2989,563:8596853,24626008 -g2989,563:14137266,24626008 -k2989,564:16896332,24626008:1563689 -k2989,564:18460021,24626008:1563689 -) -(2989,565:6630773,25504374:11829248,505283,126483 -h2989,564:6630773,25504374:0,0,0 -r2989,638:6630773,25504374:0,631766,126483 -g2989,564:7941493,25504374 -g2989,564:7941493,25504374 -g2989,564:10309964,25504374 -g2989,564:11960160,25504374 -k2989,565:16569307,25504374:1890714 -k2989,565:18460021,25504374:1890714 -) -(2989,566:6630773,26382739:11829248,505283,126483 -h2989,565:6630773,26382739:0,0,0 -r2989,638:6630773,26382739:0,631766,126483 -g2989,565:7941493,26382739 -g2989,565:7941493,26382739 -g2989,565:11387376,26382739 -g2989,565:13158814,26382739 -k2989,566:16407106,26382739:2052915 -k2989,566:18460021,26382739:2052915 -) -(2989,567:6630773,27261104:11829248,505283,102891 -h2989,566:6630773,27261104:0,0,0 -r2989,638:6630773,27261104:0,608174,102891 -g2989,566:7941493,27261104 -g2989,566:7941493,27261104 -g2989,566:10551792,27261104 -g2989,566:12996284,27261104 -k2989,567:17087369,27261104:1372652 -k2989,567:18460021,27261104:1372652 -) -(2989,568:6630773,28139469:11829248,473825,7863 -h2989,567:6630773,28139469:0,0,0 -r2989,638:6630773,28139469:0,481688,7863 -g2989,567:7941493,28139469 -g2989,567:7941493,28139469 -k2989,568:14627476,28139469:3832545 -k2989,568:18460021,28139469:3832545 -) -(2989,569:6630773,29017834:11829248,505283,126483 -h2989,568:6630773,29017834:0,0,0 -r2989,638:6630773,29017834:0,631766,126483 -g2989,568:8596853,29017834 -g2989,568:8596853,29017834 -g2989,568:11302179,29017834 -k2989,569:15478789,29017834:2981233 -k2989,569:18460021,29017834:2981232 -) -(2989,570:6630773,29896199:11829248,505283,126483 -h2989,569:6630773,29896199:0,0,0 -r2989,638:6630773,29896199:0,631766,126483 -g2989,569:8596853,29896199 -g2989,569:8596853,29896199 -g2989,569:11128508,29896199 -g2989,569:12320607,29896199 -k2989,570:15988003,29896199:2472019 -k2989,570:18460021,29896199:2472018 -) -(2989,571:6630773,30774564:11829248,505283,102891 -h2989,570:6630773,30774564:0,0,0 -r2989,638:6630773,30774564:0,608174,102891 -g2989,570:8596853,30774564 -g2989,570:8596853,30774564 -g2989,570:11380822,30774564 -k2989,571:15518110,30774564:2941911 -k2989,571:18460021,30774564:2941911 -) -(2989,572:6630773,31652929:11829248,505283,126483 -h2989,571:6630773,31652929:0,0,0 -r2989,638:6630773,31652929:0,631766,126483 -g2989,571:7941493,31652929 -g2989,571:7941493,31652929 -g2989,571:9496007,31652929 -g2989,571:11146203,31652929 -k2989,572:15400801,31652929:3059221 -k2989,572:18460021,31652929:3059220 -) -(2989,573:6630773,32531294:11829248,505283,134348 -h2989,572:6630773,32531294:0,0,0 -r2989,638:6630773,32531294:0,639631,134348 -g2989,572:7941493,32531294 -g2989,572:7941493,32531294 -g2989,572:10458075,32531294 -k2989,573:15818265,32531294:2641757 -k2989,573:18460021,32531294:2641756 -) -(2989,574:6630773,33409659:11829248,505283,102891 -h2989,573:6630773,33409659:0,0,0 -r2989,638:6630773,33409659:0,608174,102891 -g2989,573:7941493,33409659 -g2989,573:7941493,33409659 -g2989,573:10727428,33409659 -k2989,574:15952941,33409659:2507080 -k2989,574:18460021,33409659:2507080 -) -(2989,575:6630773,34288024:11829248,485622,126483 -h2989,574:6630773,34288024:0,0,0 -r2989,638:6630773,34288024:0,612105,126483 -g2989,574:7941493,34288024 -g2989,574:7941493,34288024 -g2989,574:9433747,34288024 -g2989,574:11965402,34288024 -k2989,575:15810400,34288024:2649621 -k2989,575:18460021,34288024:2649621 -) -(2989,576:6630773,35166389:11829248,485622,134348 -h2989,575:6630773,35166389:0,0,0 -r2989,638:6630773,35166389:0,619970,134348 -g2989,575:7941493,35166389 -g2989,575:7941493,35166389 -g2989,575:9301365,35166389 -k2989,576:15239910,35166389:3220112 -k2989,576:18460021,35166389:3220111 -) -(2989,577:6630773,36044754:11829248,485622,102891 -h2989,576:6630773,36044754:0,0,0 -r2989,638:6630773,36044754:0,588513,102891 -g2989,576:7941493,36044754 -g2989,576:7941493,36044754 -g2989,576:9366901,36044754 -g2989,576:10355839,36044754 -k2989,577:15767147,36044754:2692875 -k2989,577:18460021,36044754:2692874 -) -(2989,578:6630773,36923119:11829248,505283,126483 -h2989,577:6630773,36923119:0,0,0 -r2989,638:6630773,36923119:0,631766,126483 -g2989,577:7941493,36923119 -g2989,577:7941493,36923119 -g2989,577:9151287,36923119 -g2989,577:10801483,36923119 -k2989,578:15989969,36923119:2470053 -k2989,578:18460021,36923119:2470052 -) -(2989,579:6630773,37801484:11829248,505283,102891 -h2989,578:6630773,37801484:0,0,0 -r2989,638:6630773,37801484:0,608174,102891 -g2989,578:7941493,37801484 -g2989,578:7941493,37801484 -g2989,578:9581859,37801484 -k2989,579:15380157,37801484:3079865 -k2989,579:18460021,37801484:3079864 -) -(2989,580:6630773,38679849:11829248,505283,102891 -h2989,579:6630773,38679849:0,0,0 -r2989,638:6630773,38679849:0,608174,102891 -g2989,579:7941493,38679849 -g2989,579:7941493,38679849 -g2989,579:11507962,38679849 -k2989,580:15581680,38679849:2878341 -k2989,580:18460021,38679849:2878341 -) -(2989,581:6630773,39558214:11829248,505283,126483 -h2989,580:6630773,39558214:0,0,0 -r2989,638:6630773,39558214:0,631766,126483 -g2989,580:7941493,39558214 -g2989,580:7941493,39558214 -g2989,580:9914782,39558214 -g2989,580:11564978,39558214 -k2989,581:16371716,39558214:2088305 -k2989,581:18460021,39558214:2088305 -) -(2989,582:6630773,40436579:11829248,505283,102891 -h2989,581:6630773,40436579:0,0,0 -r2989,638:6630773,40436579:0,608174,102891 -g2989,581:7941493,40436579 -g2989,581:7941493,40436579 -g2989,581:9698513,40436579 -g2989,581:11431940,40436579 -k2989,582:16305197,40436579:2154824 -k2989,582:18460021,40436579:2154824 -) -(2989,583:6630773,41314944:11829248,505283,102891 -h2989,582:6630773,41314944:0,0,0 -r2989,638:6630773,41314944:0,608174,102891 -g2989,582:7941493,41314944 -g2989,582:7941493,41314944 -g2989,582:9534673,41314944 -g2989,582:11853992,41314944 -k2989,583:16516223,41314944:1943798 -k2989,583:18460021,41314944:1943798 -) -(2989,584:6630773,42193309:11829248,505283,134348 -h2989,583:6630773,42193309:0,0,0 -g2989,583:10403025,42193309 -g2989,583:14092701,42193309 -k2989,584:16874050,42193309:1585972 -k2989,584:18460021,42193309:1585971 -) -(2989,585:6630773,43071674:11829248,505283,126483 -h2989,584:6630773,43071674:0,0,0 -g2989,584:10283749,43071674 -k2989,585:14969574,43071674:3490448 -k2989,585:18460021,43071674:3490447 -) -(2989,586:6630773,43950039:11829248,505283,126483 -h2989,585:6630773,43950039:0,0,0 -g2989,585:10346009,43950039 -k2989,586:15000704,43950039:3459318 -k2989,586:18460021,43950039:3459317 -) -(2989,587:6630773,44828404:11829248,473825,126483 -h2989,586:6630773,44828404:0,0,0 -k2989,587:14011438,44828404:4448584 -k2989,587:18460021,44828404:4448583 -) -(2989,588:6630773,45706769:11829248,505283,126483 -h2989,587:6630773,45706769:0,0,0 -r2989,638:6630773,45706769:0,631766,126483 -g2989,587:7941493,45706769 -g2989,587:7941493,45706769 -g2989,587:9788297,45706769 -g2989,587:13565792,45706769 -k2989,588:16411366,45706769:2048656 -k2989,588:18460021,45706769:2048655 ) -] -k2989,638:19606901,45706769:1146880 -r2989,638:19606901,45706769:0,40234515,126483 -k2989,638:20753781,45706769:1146880 -[2989,638:20753781,45706769:11829248,40108032,126483 -(2989,589:20753781,6254097:11829248,505283,126483 -h2989,588:20753781,6254097:0,0,0 -g2989,588:23794651,6254097 -g2989,588:27921453,6254097 -k2989,588:32583029,6254097:1933312 -) -(2989,589:23375221,7095585:9207808,485622,11795 -k2989,589:29338342,7095585:3244688 -k2989,589:32583029,7095585:3244687 -) -(2989,590:20753781,7938614:11829248,355205,134348 -h2989,589:20753781,7938614:0,0,0 -k2989,590:28688225,7938614:3894805 -k2989,590:32583029,7938614:3894804 -) -(2989,591:20753781,8781643:11829248,505283,102891 -h2989,590:20753781,8781643:0,0,0 -r2989,638:20753781,8781643:0,608174,102891 -g2989,590:22064501,8781643 -g2989,590:22064501,8781643 -g2989,590:23951937,8781643 -k2989,591:28665942,8781643:3917087 -k2989,591:32583029,8781643:3917087 -) -(2989,592:20753781,9624672:11829248,477757,102891 -h2989,591:20753781,9624672:0,0,0 -r2989,638:20753781,9624672:0,580648,102891 -g2989,591:22064501,9624672 -g2989,591:22064501,9624672 -g2989,591:23820865,9624672 -k2989,592:28600406,9624672:3982623 -k2989,592:32583029,9624672:3982623 -) -(2989,593:20753781,10467701:11829248,505283,126483 -h2989,592:20753781,10467701:0,0,0 -r2989,638:20753781,10467701:0,631766,126483 -g2989,592:22064501,10467701 -g2989,592:22064501,10467701 -g2989,592:24618438,10467701 -k2989,593:28999193,10467701:3583837 -k2989,593:32583029,10467701:3583836 -) -(2989,594:20753781,11310730:11829248,485622,102891 -h2989,593:20753781,11310730:0,0,0 -r2989,638:20753781,11310730:0,588513,102891 -g2989,593:22064501,11310730 -g2989,593:22064501,11310730 -g2989,593:24435593,11310730 -g2989,593:25206951,11310730 -g2989,593:26376768,11310730 -k2989,594:30077587,11310730:2505442 -k2989,594:32583029,11310730:2505442 -) -(2989,595:20753781,12153759:11829248,505283,102891 -h2989,594:20753781,12153759:0,0,0 -r2989,638:20753781,12153759:0,608174,102891 -g2989,594:22064501,12153759 -g2989,594:22064501,12153759 -g2989,594:24084320,12153759 -k2989,595:28931363,12153759:3651666 -k2989,595:32583029,12153759:3651666 -) -(2989,596:20753781,12996788:11829248,485622,102891 -h2989,595:20753781,12996788:0,0,0 -r2989,638:20753781,12996788:0,588513,102891 -g2989,595:22064501,12996788 -g2989,595:22064501,12996788 -g2989,595:23345729,12996788 -g2989,595:24515546,12996788 -k2989,596:29146976,12996788:3436053 -k2989,596:32583029,12996788:3436053 -) -(2989,597:20753781,13839817:11829248,485622,102891 -h2989,596:20753781,13839817:0,0,0 -r2989,638:20753781,13839817:0,588513,102891 -g2989,596:22064501,13839817 -g2989,596:22064501,13839817 -g2989,596:23558067,13839817 -g2989,596:24284205,13839817 -k2989,597:28632847,13839817:3950183 -k2989,597:32583029,13839817:3950182 -) -(2989,598:20753781,14682846:11829248,477757,134348 -h2989,597:20753781,14682846:0,0,0 -r2989,638:20753781,14682846:0,612105,134348 -g2989,597:22064501,14682846 -g2989,597:22064501,14682846 -g2989,597:24684630,14682846 -k2989,598:29032289,14682846:3550741 -k2989,598:32583029,14682846:3550740 -) -(2989,599:20753781,15525875:11829248,485622,102891 -h2989,598:20753781,15525875:0,0,0 -r2989,638:20753781,15525875:0,588513,102891 -g2989,598:22064501,15525875 -g2989,598:22064501,15525875 -g2989,598:24190488,15525875 -g2989,598:25360305,15525875 -k2989,599:29569356,15525875:3013674 -k2989,599:32583029,15525875:3013673 -) -(2989,600:20753781,16368904:11829248,513147,126483 -h2989,599:20753781,16368904:0,0,0 -r2989,638:20753781,16368904:0,639630,126483 -g2989,599:22064501,16368904 -g2989,599:22064501,16368904 -g2989,599:25252828,16368904 -g2989,599:25874765,16368904 -g2989,599:27941114,16368904 -k2989,600:30461301,16368904:2121728 -k2989,600:32583029,16368904:2121728 -) -(2989,601:20753781,17211933:11829248,485622,173670 -h2989,600:20753781,17211933:0,0,0 -r2989,638:20753781,17211933:0,659292,173670 -g2989,600:22064501,17211933 -g2989,600:22064501,17211933 -(2989,600:22064501,17211933:1181614,473825,0 -) -(2989,600:23551053,17385603:355205,473825,0 -) -g2989,600:24607492,17211933 -k2989,601:29192949,17211933:3390080 -k2989,601:32583029,17211933:3390080 -) -(2989,602:20753781,18054962:11829248,505283,102891 -h2989,601:20753781,18054962:0,0,0 -r2989,638:20753781,18054962:0,608174,102891 -g2989,601:22064501,18054962 -g2989,601:22064501,18054962 -g2989,601:25214816,18054962 -g2989,601:26783092,18054962 -g2989,601:28351368,18054962 -g2989,601:29919644,18054962 -k2989,601:32583029,18054962:1294338 -) -(2989,602:23375221,18896450:9207808,485622,102891 -g2989,601:24943497,18896450 -k2989,602:29360952,18896450:3222078 -k2989,602:32583029,18896450:3222077 -) -(2989,603:20753781,19739479:11829248,505283,102891 -h2989,602:20753781,19739479:0,0,0 -r2989,638:20753781,19739479:0,608174,102891 -g2989,602:22064501,19739479 -g2989,602:22064501,19739479 -g2989,602:26377424,19739479 -g2989,602:27945700,19739479 -k2989,603:30862053,19739479:1720976 -k2989,603:32583029,19739479:1720976 -) -(2989,604:20753781,20582508:11829248,485622,102891 -h2989,603:20753781,20582508:0,0,0 -r2989,638:20753781,20582508:0,588513,102891 -g2989,603:22064501,20582508 -g2989,603:22064501,20582508 -g2989,603:24092184,20582508 -k2989,604:28935295,20582508:3647734 -k2989,604:32583029,20582508:3647734 -) -(2989,605:20753781,21425537:11829248,485622,102891 -h2989,604:20753781,21425537:0,0,0 -r2989,638:20753781,21425537:0,588513,102891 -g2989,604:22064501,21425537 -g2989,604:22064501,21425537 -g2989,604:24827498,21425537 -g2989,604:26395774,21425537 -g2989,604:27964050,21425537 -k2989,605:30871228,21425537:1711801 -k2989,605:32583029,21425537:1711801 -) -(2989,606:20753781,22268566:11829248,485622,102891 -h2989,605:20753781,22268566:0,0,0 -r2989,638:20753781,22268566:0,588513,102891 -g2989,605:22064501,22268566 -g2989,605:22064501,22268566 -g2989,605:24749510,22268566 -k2989,606:29263958,22268566:3319071 -k2989,606:32583029,22268566:3319071 -) -(2989,607:20753781,23111595:11829248,505283,126483 -h2989,606:20753781,23111595:0,0,0 -r2989,638:20753781,23111595:0,631766,126483 -g2989,606:22064501,23111595 -g2989,606:22064501,23111595 -g2989,606:25121755,23111595 -k2989,607:29450081,23111595:3132949 -k2989,607:32583029,23111595:3132948 -) -(2989,608:20753781,23954624:11829248,485622,102891 -h2989,607:20753781,23954624:0,0,0 -r2989,638:20753781,23954624:0,588513,102891 -g2989,607:22064501,23954624 -g2989,607:22064501,23954624 -g2989,607:24593535,23954624 -k2989,608:29185971,23954624:3397059 -k2989,608:32583029,23954624:3397058 -) -(2989,609:20753781,24797653:11829248,485622,102891 -h2989,608:20753781,24797653:0,0,0 -r2989,638:20753781,24797653:0,588513,102891 -g2989,608:22064501,24797653 -g2989,608:22064501,24797653 -g2989,608:23134049,24797653 -g2989,608:23917203,24797653 -k2989,609:28847805,24797653:3735225 -k2989,609:32583029,24797653:3735224 -) -(2989,610:20753781,25640682:11829248,485622,102891 -h2989,609:20753781,25640682:0,0,0 -r2989,638:20753781,25640682:0,588513,102891 -g2989,609:22064501,25640682 -g2989,609:22064501,25640682 -g2989,609:24076455,25640682 -k2989,610:28728201,25640682:3854828 -k2989,610:32583029,25640682:3854828 -) -(2989,612:20753781,26483711:11829248,505283,102891 -h2989,610:20753781,26483711:0,0,0 -r2989,638:20753781,26483711:0,608174,102891 -g2989,610:22064501,26483711 -g2989,610:22064501,26483711 -g2989,610:24861577,26483711 -g2989,610:25632935,26483711 -g2989,610:26404293,26483711 -g2989,610:28300249,26483711 -g2989,610:29470066,26483711 -g2989,610:30639883,26483711 -k2989,610:32583029,26483711:972558 -) -(2989,612:23375221,27325199:9207808,485622,102891 -g2989,610:24545038,27325199 -g2989,610:25714855,27325199 -g2989,611:26884672,27325199 -g2989,611:28054489,27325199 -g2989,611:29622765,27325199 -g2989,611:31191041,27325199 -k2989,611:32583029,27325199:22941 -) -(2989,612:23375221,28166687:9207808,485622,102891 -g2989,611:24943497,28166687 -g2989,611:26511773,28166687 -k2989,612:30145090,28166687:2437940 -k2989,612:32583029,28166687:2437939 -) -(2989,613:20753781,29009716:11829248,505283,102891 -h2989,612:20753781,29009716:0,0,0 -r2989,638:20753781,29009716:0,608174,102891 -g2989,612:22064501,29009716 -g2989,612:22064501,29009716 -g2989,612:24594190,29009716 -k2989,613:29186298,29009716:3396731 -k2989,613:32583029,29009716:3396731 -) -(2989,614:20753781,29852745:11829248,485622,102891 -h2989,613:20753781,29852745:0,0,0 -r2989,638:20753781,29852745:0,588513,102891 -g2989,613:22064501,29852745 -g2989,613:22064501,29852745 -g2989,613:23596077,29852745 -g2989,613:24367435,29852745 -g2989,613:25935711,29852745 -g2989,613:27503987,29852745 -k2989,614:30641197,29852745:1941833 -k2989,614:32583029,29852745:1941832 -) -(2989,615:20753781,30695774:11829248,485622,102891 -h2989,614:20753781,30695774:0,0,0 -r2989,638:20753781,30695774:0,588513,102891 -g2989,614:22064501,30695774 -g2989,614:22064501,30695774 -g2989,614:23868706,30695774 -k2989,615:28823556,30695774:3759473 -k2989,615:32583029,30695774:3759473 -) -(2989,616:20753781,31538803:11829248,485622,102891 -h2989,615:20753781,31538803:0,0,0 -r2989,638:20753781,31538803:0,588513,102891 -g2989,615:22064501,31538803 -g2989,615:22064501,31538803 -g2989,615:23859531,31538803 -g2989,615:24630889,31538803 -g2989,615:26199165,31538803 -g2989,615:27767441,31538803 -k2989,616:30772924,31538803:1810106 -k2989,616:32583029,31538803:1810105 -) -(2989,617:20753781,32381832:11829248,485622,102891 -h2989,616:20753781,32381832:0,0,0 -r2989,638:20753781,32381832:0,588513,102891 -g2989,616:22064501,32381832 -g2989,616:22064501,32381832 -g2989,616:24448700,32381832 -k2989,617:29113553,32381832:3469476 -k2989,617:32583029,32381832:3469476 -) -(2989,618:20753781,33224861:11829248,485622,102891 -h2989,617:20753781,33224861:0,0,0 -r2989,638:20753781,33224861:0,588513,102891 -g2989,617:22064501,33224861 -g2989,617:22064501,33224861 -g2989,617:24004366,33224861 -g2989,617:25572642,33224861 -k2989,618:29675524,33224861:2907505 -k2989,618:32583029,33224861:2907505 -) -(2989,619:20753781,34067890:11829248,485622,126483 -h2989,618:20753781,34067890:0,0,0 -r2989,638:20753781,34067890:0,612105,126483 -g2989,618:22064501,34067890 -g2989,618:22064501,34067890 -g2989,618:24318283,34067890 -g2989,618:25886559,34067890 -k2989,619:29832483,34067890:2750547 -k2989,619:32583029,34067890:2750546 -) -(2989,620:20753781,34910919:11829248,485622,102891 -h2989,619:20753781,34910919:0,0,0 -r2989,638:20753781,34910919:0,588513,102891 -g2989,619:22064501,34910919 -g2989,619:22064501,34910919 -g2989,619:23889022,34910919 -g2989,619:25058839,34910919 -k2989,620:29418623,34910919:3164407 -k2989,620:32583029,34910919:3164406 -) -(2989,621:20753781,35753948:11829248,485622,102891 -h2989,620:20753781,35753948:0,0,0 -r2989,638:20753781,35753948:0,588513,102891 -g2989,620:22064501,35753948 -g2989,620:22064501,35753948 -g2989,620:23729770,35753948 -k2989,621:28754088,35753948:3828941 -k2989,621:32583029,35753948:3828941 -) -(2989,622:20753781,36596977:11829248,505283,102891 -h2989,621:20753781,36596977:0,0,0 -r2989,638:20753781,36596977:0,608174,102891 -g2989,621:22064501,36596977 -g2989,621:22064501,36596977 -g2989,621:24606642,36596977 -k2989,622:28993295,36596977:3589735 -k2989,622:32583029,36596977:3589734 -) -(2989,623:20753781,37440006:11829248,505283,126483 -h2989,622:20753781,37440006:0,0,0 -g2989,622:25988796,37440006 -g2989,622:29177777,37440006 -k2989,623:31478092,37440006:1104938 -k2989,623:32583029,37440006:1104937 -) -(2989,624:20753781,38283035:11829248,505283,134348 -h2989,623:20753781,38283035:0,0,0 -g2989,623:25988796,38283035 -g2989,623:29283946,38283035 -k2989,624:31531176,38283035:1051853 -k2989,624:32583029,38283035:1051853 -) -(2989,625:20753781,39126064:11829248,505283,126483 -h2989,624:20753781,39126064:0,0,0 -g2989,624:23291334,39126064 -g2989,624:24859610,39126064 -g2989,624:26427886,39126064 -k2989,625:30103146,39126064:2479883 -k2989,625:32583029,39126064:2479883 -) -(2989,629:20753781,40650136:11829248,473825,0 -h2989,628:20753781,40650136:0,0,0 -k2989,629:26875827,40650136:5707203 -k2989,629:32583029,40650136:5707202 -) -(2989,630:20753781,41493165:11829248,505283,126483 -h2989,629:20753781,41493165:0,0,0 -r2989,638:20753781,41493165:0,631766,126483 -g2989,629:22064501,41493165 -g2989,629:22064501,41493165 -g2989,629:23825453,41493165 -k2989,630:28602700,41493165:3980329 -k2989,630:32583029,41493165:3980329 -) -(2989,631:20753781,42336194:11829248,505283,134348 -h2989,630:20753781,42336194:0,0,0 -g2989,630:21367853,42336194 -g2989,630:22253244,42336194 -g2989,630:22808333,42336194 -g2989,630:26023529,42336194 -g2989,630:26794887,42336194 -k2989,631:29888188,42336194:2694842 -k2989,631:32583029,42336194:2694841 -) -(2989,632:20753781,43179223:11829248,485622,134348 -h2989,631:20753781,43179223:0,0,0 -g2989,631:21367853,43179223 -g2989,631:22253244,43179223 -g2989,631:22808333,43179223 -g2989,631:25923259,43179223 -k2989,632:29452374,43179223:3130656 -k2989,632:32583029,43179223:3130655 -) -(2989,633:20753781,44022252:11829248,481690,134348 -h2989,632:20753781,44022252:0,0,0 -g2989,632:21367853,44022252 -g2989,632:22253244,44022252 -g2989,632:22808333,44022252 -g2989,632:25923259,44022252 -k2989,633:29452374,44022252:3130656 -k2989,633:32583029,44022252:3130655 -) -(2989,634:20753781,44865281:11829248,505283,102891 -h2989,633:20753781,44865281:0,0,0 -g2989,633:23447310,44865281 -g2989,633:26636291,44865281 -k2989,634:32583029,44865281:4979427 -) -(2989,634:23375221,45706769:9207808,505283,126483 -g2989,633:28610236,45706769 -k2989,634:32004674,45706769:578356 -k2989,634:32583029,45706769:578355 +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,1800:37855564,2439708:1179648,16384,0 ) -] -(2989,638:32583029,45706769:0,355205,126483 -h2989,638:32583029,45706769:420741,355205,126483 -k2989,638:32583029,45706769:-420741 ) +k1,1800:3078556,2439708:-34777008 ) ] -(2989,638:32583029,45706769:0,0,0 -g2989,638:32583029,45706769 +[1,1800:3078558,4812305:0,0,0 +(1,1800:3078558,49800853:0,16384,2228224 +k1,1800:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,1800:2537886,49800853:1179648,16384,0 ) +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,1800:3078558,51504789:16384,1179648,0 ) -] -(2989,638:6630773,47279633:25952256,0,0 -h2989,638:6630773,47279633:25952256,0,0 +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) ] -(2989,638:4262630,4025873:0,0,0 -[2989,638:-473656,4025873:0,0,0 -(2989,638:-473656,-710413:0,0,0 -(2989,638:-473656,-710413:0,0,0 -g2989,638:-473656,-710413 ) -g2989,638:-473656,-710413 +) ) ] +[1,1800:3078558,4812305:0,0,0 +(1,1800:3078558,49800853:0,16384,2228224 +g1,1800:29030814,49800853 +g1,1800:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,1800:36151628,51504789:16384,1179648,0 +) +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 +) +] +) +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,1800:37855564,49800853:1179648,16384,0 +) +) +k1,1800:3078556,49800853:-34777008 +) +] +g1,1800:6630773,4812305 +k1,1800:18771974,4812305:11344283 +g1,1800:20158715,4812305 +g1,1800:20807521,4812305 +g1,1800:24121676,4812305 +g1,1800:28605649,4812305 +g1,1800:30015328,4812305 +) +) +] +[1,1800:6630773,45706769:25952256,40108032,0 +(1,1800:6630773,45706769:25952256,40108032,0 +(1,1800:6630773,45706769:0,0,0 +g1,1800:6630773,45706769 +) +[1,1800:6630773,45706769:25952256,40108032,0 +v1,1767:6630773,6254097:0,393216,0 +(1,1767:6630773,13039665:25952256,7178784,0 +g1,1767:6630773,13039665 +g1,1767:6303093,13039665 +r1,1800:6401397,13039665:98304,7178784,0 +g1,1767:6600626,13039665 +g1,1767:6797234,13039665 +[1,1767:6797234,13039665:25785795,7178784,0 +(1,1767:6797234,7022766:25785795,1161885,196608 +(1,1766:6797234,7022766:0,1161885,196608 +r1,1800:8344870,7022766:1547636,1358493,196608 +k1,1766:6797234,7022766:-1547636 +) +(1,1766:6797234,7022766:1547636,1161885,196608 +) +k1,1766:8513715,7022766:168845 +k1,1766:10704202,7022766:173289 +k1,1766:14006179,7022766:173288 +k1,1766:15127119,7022766:173289 +k1,1766:16749408,7022766:173288 +k1,1766:20388385,7022766:168846 +k1,1766:22452531,7022766:168845 +k1,1766:25647173,7022766:168845 +k1,1766:27986571,7022766:168846 +k1,1766:30284681,7022766:168845 +k1,1766:32583029,7022766:0 +) +(1,1767:6797234,7864254:25785795,513147,126483 +k1,1766:9327731,7864254:199381 +k1,1766:11272335,7864254:199380 +k1,1766:12157878,7864254:199381 +k1,1766:13737447,7864254:199381 +k1,1766:14928387,7864254:199380 +k1,1766:16340839,7864254:199381 +k1,1766:19014858,7864254:199380 +k1,1766:19701827,7864254:199381 +k1,1766:22025884,7864254:199380 +k1,1766:24886682,7864254:199381 +k1,1766:25617560,7864254:199381 +k1,1766:26836025,7864254:199380 +k1,1766:31336534,7864254:199381 +k1,1767:32583029,7864254:0 +) +(1,1767:6797234,8705742:25785795,505283,134348 +k1,1766:8552616,8705742:274268 +k1,1766:10745778,8705742:274268 +k1,1766:11888398,8705742:274268 +k1,1766:14237536,8705742:274268 +k1,1766:17070330,8705742:274268 +k1,1766:17700459,8705742:274269 +k1,1766:21061473,8705742:274268 +k1,1766:22620247,8705742:274268 +k1,1766:24842245,8705742:274268 +k1,1766:25472373,8705742:274268 +k1,1766:27830686,8705742:274268 +k1,1766:29947826,8705742:274268 +k1,1766:32583029,8705742:0 +) +(1,1767:6797234,9547230:25785795,505283,126483 +k1,1766:10185499,9547230:167170 +k1,1766:10840224,9547230:167137 +k1,1766:13209404,9547230:167170 +k1,1766:14743655,9547230:167170 +k1,1766:15442321,9547230:167169 +k1,1766:15965351,9547230:167170 +k1,1766:18473466,9547230:167169 +k1,1766:20559530,9547230:167170 +k1,1766:24528443,9547230:167170 +k1,1766:25687172,9547230:167169 +k1,1766:27431794,9547230:167170 +k1,1766:28986360,9547230:167169 +k1,1766:29509390,9547230:167170 +k1,1766:32583029,9547230:0 +) +(1,1767:6797234,10388718:25785795,513147,126483 +k1,1766:8241588,10388718:159848 +k1,1766:10450747,10388718:159848 +k1,1766:11223357,10388718:159848 +k1,1766:12834827,10388718:159848 +k1,1766:15885468,10388718:159848 +k1,1766:17242004,10388718:159849 +k1,1766:20113732,10388718:159848 +k1,1766:21465025,10388718:159848 +k1,1766:24451441,10388718:159848 +k1,1766:26212989,10388718:159848 +k1,1766:29111587,10388718:159848 +k1,1766:32583029,10388718:0 +) +(1,1767:6797234,11230206:25785795,513147,11795 +k1,1766:7673867,11230206:217341 +k1,1766:9094449,11230206:217341 +k1,1766:10741131,11230206:217342 +k1,1766:11489969,11230206:217341 +k1,1766:12726395,11230206:217341 +k1,1766:16415178,11230206:217341 +k1,1766:17291811,11230206:217341 +k1,1766:21025814,11230206:217341 +k1,1766:23878359,11230206:217342 +k1,1766:27421652,11230206:217341 +k1,1766:30766371,11230206:217341 +k1,1766:32583029,11230206:0 +) +(1,1767:6797234,12071694:25785795,505283,134348 +k1,1766:10011830,12071694:222877 +k1,1766:11226267,12071694:222877 +k1,1766:13811062,12071694:222877 +k1,1766:16507267,12071694:222876 +k1,1766:20238286,12071694:222877 +k1,1766:21954729,12071694:222877 +k1,1766:22863768,12071694:222877 +k1,1766:23442505,12071694:222877 +k1,1766:26027300,12071694:222877 +k1,1766:28610127,12071694:222876 +k1,1766:30065081,12071694:222877 +k1,1766:31786111,12071694:222877 +h1,1766:32583029,12071694:0,0,0 +k1,1766:32583029,12071694:0 +) +(1,1767:6797234,12913182:25785795,513147,126483 +g1,1766:7944114,12913182 +g1,1766:9845313,12913182 +g1,1766:13761744,12913182 +g1,1766:14612401,12913182 +g1,1766:15830715,12913182 +g1,1766:17122429,12913182 +g1,1766:17980950,12913182 +g1,1766:20511295,12913182 +g1,1766:23427647,12913182 +k1,1767:32583029,12913182:7029394 +g1,1767:32583029,12913182 +) +] +g1,1767:32583029,13039665 +) +h1,1767:6630773,13039665:0,0,0 +(1,1769:6630773,15847233:25952256,32768,229376 +(1,1769:6630773,15847233:0,32768,229376 +(1,1769:6630773,15847233:5505024,32768,229376 +r1,1800:12135797,15847233:5505024,262144,229376 +) +k1,1769:6630773,15847233:-5505024 +) +(1,1769:6630773,15847233:25952256,32768,0 +r1,1800:32583029,15847233:25952256,32768,0 +) +) +(1,1769:6630773,17451561:25952256,606339,151780 +(1,1769:6630773,17451561:1974731,573309,14155 +g1,1769:6630773,17451561 +g1,1769:8605504,17451561 +) +g1,1769:12737418,17451561 +g1,1769:14546212,17451561 +g1,1769:17669920,17451561 +k1,1769:32583029,17451561:12762217 +g1,1769:32583029,17451561 +) +(1,1772:6630773,18686265:25952256,513147,134348 +k1,1771:7296168,18686265:250552 +k1,1771:10307147,18686265:250603 +k1,1771:12789252,18686265:250604 +k1,1771:16065652,18686265:250603 +k1,1771:17600762,18686265:250604 +k1,1771:18955647,18686265:250603 +k1,1771:19954017,18686265:250604 +k1,1771:21717846,18686265:250603 +k1,1771:22619878,18686265:250604 +k1,1771:24599977,18686265:250604 +k1,1771:27108295,18686265:250603 +k1,1771:29971164,18686265:250604 +k1,1771:31966991,18686265:250603 +k1,1772:32583029,18686265:0 +) +(1,1772:6630773,19527753:25952256,513147,134348 +k1,1771:7444072,19527753:224786 +k1,1771:8865545,19527753:224786 +k1,1771:10692031,19527753:224786 +k1,1771:14221798,19527753:224786 +k1,1771:15959810,19527753:224786 +k1,1771:17176156,19527753:224786 +k1,1771:19168447,19527753:224785 +k1,1771:20340884,19527753:224786 +k1,1771:23197596,19527753:224786 +(1,1771:23197596,19527753:0,452978,115847 +r1,1800:25314421,19527753:2116825,568825,115847 +k1,1771:23197596,19527753:-2116825 +) +(1,1771:23197596,19527753:2116825,452978,115847 +k1,1771:23197596,19527753:3277 +h1,1771:25311144,19527753:0,411205,112570 +) +k1,1771:25712877,19527753:224786 +(1,1771:25712877,19527753:0,452978,115847 +r1,1800:27477990,19527753:1765113,568825,115847 +k1,1771:25712877,19527753:-1765113 +) +(1,1771:25712877,19527753:1765113,452978,115847 +k1,1771:25712877,19527753:3277 +h1,1771:27474713,19527753:0,411205,112570 +) +k1,1771:27702776,19527753:224786 +k1,1771:31169628,19527753:224786 +(1,1771:31169628,19527753:0,452978,115847 +r1,1800:32583029,19527753:1413401,568825,115847 +k1,1771:31169628,19527753:-1413401 +) +(1,1771:31169628,19527753:1413401,452978,115847 +k1,1771:31169628,19527753:3277 +h1,1771:32579752,19527753:0,411205,112570 +) +k1,1771:32583029,19527753:0 +) +(1,1772:6630773,20369241:25952256,505283,134348 +k1,1771:9914950,20369241:233476 +k1,1771:13478966,20369241:233476 +(1,1771:13478966,20369241:0,452978,115847 +r1,1800:15244079,20369241:1765113,568825,115847 +k1,1771:13478966,20369241:-1765113 +) +(1,1771:13478966,20369241:1765113,452978,115847 +k1,1771:13478966,20369241:3277 +h1,1771:15240802,20369241:0,411205,112570 +) +k1,1771:15651224,20369241:233475 +k1,1771:17076145,20369241:233476 +(1,1771:17076145,20369241:0,452978,115847 +r1,1800:18841258,20369241:1765113,568825,115847 +k1,1771:17076145,20369241:-1765113 +) +(1,1771:17076145,20369241:1765113,452978,115847 +k1,1771:17076145,20369241:3277 +h1,1771:18837981,20369241:0,411205,112570 +) +k1,1771:19248404,20369241:233476 +k1,1771:22579767,20369241:233476 +k1,1771:24309429,20369241:233475 +k1,1771:28966585,20369241:233476 +k1,1771:29970764,20369241:233476 +k1,1771:32583029,20369241:0 +) +(1,1772:6630773,21210729:25952256,513147,134348 +k1,1771:10022463,21210729:280696 +k1,1771:11064686,21210729:280695 +k1,1771:11701242,21210729:280696 +k1,1771:13854956,21210729:280695 +k1,1771:16831148,21210729:280696 +k1,1771:18211537,21210729:280695 +k1,1771:21578979,21210729:280696 +k1,1771:22878759,21210729:280695 +k1,1771:25494503,21210729:280696 +k1,1771:27271385,21210729:280695 +k1,1771:28743526,21210729:280696 +k1,1771:30128503,21210729:280695 +k1,1771:32124932,21210729:280696 +k1,1771:32583029,21210729:0 +) +(1,1772:6630773,22052217:25952256,513147,126483 +k1,1771:8666274,22052217:165103 +k1,1771:9482805,22052217:165103 +k1,1771:13486351,22052217:165102 +k1,1771:15525784,22052217:165103 +k1,1771:18716684,22052217:165103 +k1,1771:19873347,22052217:165103 +k1,1771:22325000,22052217:165102 +k1,1771:23106141,22052217:165103 +k1,1771:23724719,22052217:165069 +k1,1771:25081267,22052217:165103 +k1,1771:28363261,22052217:165102 +k1,1771:29253192,22052217:165103 +k1,1771:30884991,22052217:165103 +k1,1771:32583029,22052217:0 +) +(1,1772:6630773,22893705:25952256,513147,134348 +k1,1771:9504859,22893705:261821 +k1,1771:13207976,22893705:261822 +k1,1771:14461357,22893705:261821 +k1,1771:16410076,22893705:261822 +k1,1771:18052085,22893705:261821 +k1,1771:19305466,22893705:261821 +k1,1771:20948787,22893705:261822 +k1,1771:21698133,22893705:261758 +k1,1771:23525610,22893705:261822 +k1,1771:25181382,22893705:261821 +k1,1771:28434923,22893705:261822 +k1,1771:29356036,22893705:261821 +k1,1771:32583029,22893705:0 +) +(1,1772:6630773,23735193:25952256,513147,134348 +k1,1771:9791282,23735193:134712 +k1,1771:12709963,23735193:134712 +k1,1771:13460713,23735193:134712 +k1,1771:15029353,23735193:134712 +k1,1771:15578844,23735193:134648 +k1,1771:16998062,23735193:134712 +k1,1771:20566206,23735193:134713 +k1,1771:23313183,23735193:134712 +k1,1771:26889190,23735193:134712 +k1,1771:27555399,23735193:134712 +k1,1771:30540927,23735193:134712 +k1,1771:32583029,23735193:0 +) +(1,1772:6630773,24576681:25952256,513147,134348 +k1,1771:7710050,24576681:181434 +k1,1771:9588211,24576681:181434 +k1,1771:12795442,24576681:181434 +k1,1771:14329538,24576681:181433 +k1,1771:14866832,24576681:181434 +k1,1771:17026143,24576681:181434 +k1,1771:17866869,24576681:181434 +k1,1771:20844724,24576681:181434 +k1,1771:23039424,24576681:181434 +k1,1771:23907019,24576681:181433 +k1,1771:25597092,24576681:181434 +k1,1771:27084659,24576681:181434 +k1,1771:30512091,24576681:181434 +k1,1771:32583029,24576681:0 +) +(1,1772:6630773,25418169:25952256,513147,115847 +g1,1771:7777653,25418169 +(1,1771:7777653,25418169:0,452978,115847 +r1,1800:12356461,25418169:4578808,568825,115847 +k1,1771:7777653,25418169:-4578808 +) +(1,1771:7777653,25418169:4578808,452978,115847 +k1,1771:7777653,25418169:3277 +h1,1771:12353184,25418169:0,411205,112570 +) +k1,1772:32583029,25418169:20052898 +g1,1772:32583029,25418169 +) +(1,1791:6630773,37831079:25952256,11536845,0 +k1,1774:7197569,37831079:566796 +[1,1791:7197569,37831079:24818664,11536845,0 +(1,1791:7197569,26359770:24818664,65536,0 +g1,1791:7197569,26359770 +(1,1791:7197569,26359770:24818664,65536,0 +r1,1800:32016233,26359770:24818664,65536,0 +) +g1,1791:32016233,26359770 +) +(1,1791:7197569,32235039:24818664,5809733,5399432 +g1,1791:7197569,32235039 +(1,1791:7197569,32235039:24818664,5809733,5399432 +g1,1774:7396798,32235039 +$1,1791:7396798,32235039 +[1,1791:7396798,32235039:24619435,5809733,5399432 +(1,1777:7396798,27201288:24619435,539955,231411 +g1,1776:7396798,27201288 +(1,1776:7396798,27201288:5234169,539955,231411 +r1,1800:7396798,27201288:0,771366,231411 +g1,1776:7724478,27201288 +g1,1776:7724479,27201288 +k1,1776:12303287,27201288:1788940 +g1,1776:12630967,27201288 +) +g1,1776:12630967,27201288 +(1,1776:12630967,27201288:11273228,539955,231411 +g1,1776:12958647,27201288 +g1,1776:12958648,27201288 +k1,1776:23576515,27201288:6432083 +g1,1776:23904195,27201288 +) +g1,1776:23904195,27201288 +(1,1777:23904195,27201288:8112038,539955,231411 +g1,1776:24231875,27201288 +g1,1776:24231876,27201288 +g1,1776:26386044,27201288 +k1,1777:31688553,27201288:3289243 +g1,1777:32016233,27201288 +) +g1,1777:32016233,27201288 +) +(1,1779:7396798,28356070:24619435,594022,231411 +g1,1778:7396798,28356070 +(1,1778:7396798,28356070:5234169,594022,231411 +r1,1800:7396798,28356070:0,771366,231411 +g1,1778:7724478,28356070 +g1,1778:7724479,28356070 +(1,1778:7724479,28356070:0,452978,115847 +r1,1800:9489592,28356070:1765113,568825,115847 +k1,1778:7724479,28356070:-1765113 +) +(1,1778:7724479,28356070:1765113,452978,115847 +k1,1778:7724479,28356070:3277 +h1,1778:9486315,28356070:0,411205,112570 +) +k1,1778:12303287,28356070:2813695 +g1,1778:12630967,28356070 +) +g1,1778:12630967,28356070 +(1,1778:12630967,28356070:11273228,594022,231411 +g1,1778:12958647,28356070 +g1,1778:12958648,28356070 +$1,1778:12958648,28356070 +(1,1778:12958648,28394714:649462,567542,79954 +) +[1,1778:13608110,28497608:909902,735560,5505 +(1,1778:13608110,28010692:393347,248644,5505 +) +(1,1778:13608110,28497608:909902,346358,5505 +) +] +g1,1778:14627248,28356070 +(1,1778:15100419,28454384:233243,346358,5505 +) +$1,1778:15333662,28356070 +k1,1778:23576515,28356070:8242853 +g1,1778:23904195,28356070 +) +g1,1778:23904195,28356070 +(1,1779:23904195,28356070:8112038,594022,231411 +g1,1778:24231875,28356070 +g1,1778:24231876,28356070 +g1,1778:27224905,28356070 +k1,1779:31688553,28356070:4065189 +g1,1779:32016233,28356070 +) +g1,1779:32016233,28356070 +) +(1,1780:7396798,29161842:24619435,574361,231411 +g1,1779:7396798,29161842 +(1,1779:7396798,29161842:5234169,574361,231411 +r1,1800:7396798,29161842:0,771366,231411 +g1,1779:7724478,29161842 +g1,1779:7724479,29161842 +(1,1779:7724479,29161842:0,452978,115847 +r1,1800:9841304,29161842:2116825,568825,115847 +k1,1779:7724479,29161842:-2116825 +) +(1,1779:7724479,29161842:2116825,452978,115847 +k1,1779:7724479,29161842:3277 +h1,1779:9838027,29161842:0,411205,112570 +) +k1,1779:12303287,29161842:2461983 +g1,1779:12630967,29161842 +) +g1,1779:12630967,29161842 +(1,1779:12630967,29161842:11273228,574361,231411 +g1,1779:12958647,29161842 +g1,1779:12958648,29161842 +$1,1779:12958648,29161842 +(1,1779:12958648,29180825:692060,528220,79954 +) +[1,1779:13650708,29292846:909902,705365,5505 +(1,1779:13650708,28836125:393347,248644,5505 +) +(1,1779:13650708,29292846:909902,346358,5505 +) +] +g1,1779:14669846,29161842 +(1,1779:15143017,29260156:233243,346358,5505 +) +$1,1779:15376260,29161842 +k1,1779:23576515,29161842:8200255 +g1,1779:23904195,29161842 +) +g1,1779:23904195,29161842 +(1,1780:23904195,29161842:8112038,574361,231411 +g1,1779:24231875,29161842 +g1,1779:24231876,29161842 +g1,1779:27224905,29161842 +k1,1780:31688553,29161842:4065189 +g1,1780:32016233,29161842 ) -] -!29860 -}384 -!12 -{385 -[2989,735:4262630,47279633:28320399,43253760,0 -(2989,735:4262630,4025873:0,0,0 -[2989,735:-473656,4025873:0,0,0 -(2989,735:-473656,-710413:0,0,0 -(2989,735:-473656,-644877:0,0,0 -k2989,735:-473656,-644877:-65536 -) -(2989,735:-473656,4736287:0,0,0 -k2989,735:-473656,4736287:5209943 -) -g2989,735:-473656,-710413 +g1,1780:32016233,29161842 ) -] +(1,1781:7396798,30114281:24619435,721028,231411 +g1,1780:7396798,30114281 +(1,1780:7396798,30114281:5234169,721028,231411 +r1,1800:7396798,30114281:0,771366,231411 +g1,1780:7724478,30114281 +g1,1780:7724479,30114281 +(1,1780:7724479,30114281:0,452978,115847 +r1,1800:10544728,30114281:2820249,568825,115847 +k1,1780:7724479,30114281:-2820249 ) -[2989,735:6630773,47279633:25952256,43253760,0 -[2989,735:6630773,4812305:25952256,786432,0 -(2989,735:6630773,4812305:25952256,505283,11795 -(2989,735:6630773,4812305:25952256,505283,11795 -g2989,735:3078558,4812305 -[2989,735:3078558,4812305:0,0,0 -(2989,735:3078558,2439708:0,1703936,0 -k2989,735:1358238,2439708:-1720320 -(2989,1:1358238,2439708:1720320,1703936,0 -(2989,1:1358238,2439708:1179648,16384,0 -r2989,735:2537886,2439708:1179648,16384,0 -) -g2989,1:3062174,2439708 -(2989,1:3062174,2439708:16384,1703936,0 -[2989,1:3062174,2439708:25952256,1703936,0 -(2989,1:3062174,1915420:25952256,1179648,0 -(2989,1:3062174,1915420:16384,1179648,0 -r2989,735:3078558,1915420:16384,1179648,0 -) -k2989,1:29014430,1915420:25935872 -g2989,1:29014430,1915420 +(1,1780:7724479,30114281:2820249,452978,115847 +k1,1780:7724479,30114281:3277 +h1,1780:10541451,30114281:0,411205,112570 ) -] +k1,1780:12303287,30114281:1758559 +g1,1780:12630967,30114281 ) +g1,1780:12630967,30114281 +(1,1780:12630967,30114281:11273228,721028,231411 +g1,1780:12958647,30114281 +g1,1780:12958648,30114281 +$1,1780:12958648,30114281 +(1,1780:12958648,30152925:649462,567542,79954 ) +[1,1780:13608110,30255819:909902,821346,5505 +(1,1780:13608110,29768903:311689,334430,0 ) -] -[2989,735:3078558,4812305:0,0,0 -(2989,735:3078558,2439708:0,1703936,0 -g2989,735:29030814,2439708 -g2989,735:36135244,2439708 -(2989,1:36135244,2439708:1720320,1703936,0 -(2989,1:36135244,2439708:16384,1703936,0 -[2989,1:36135244,2439708:25952256,1703936,0 -(2989,1:36135244,1915420:25952256,1179648,0 -(2989,1:36135244,1915420:16384,1179648,0 -r2989,735:36151628,1915420:16384,1179648,0 -) -k2989,1:62087500,1915420:25935872 -g2989,1:62087500,1915420 +(1,1780:13608110,30255819:909902,346358,5505 ) ] +g1,1780:14627248,30114281 +(1,1780:15100419,30212595:233243,346358,5505 ) -g2989,1:36675916,2439708 -(2989,1:36675916,2439708:1179648,16384,0 -r2989,735:37855564,2439708:1179648,16384,0 -) +g1,1780:15632297,30114281 +g1,1780:16318905,30114281 +(1,1780:16318905,30152925:649462,567542,79954 ) -k2989,735:3078556,2439708:-34777008 +[1,1780:16968367,30287624:909902,894371,5505 +(1,1780:16968367,29739611:286917,346358,96797 ) -] -[2989,735:3078558,4812305:0,0,0 -(2989,735:3078558,49800853:0,16384,2228224 -k2989,735:1358238,49800853:-1720320 -(2989,1:1358238,49800853:1720320,16384,2228224 -(2989,1:1358238,49800853:1179648,16384,0 -r2989,735:2537886,49800853:1179648,16384,0 -) -g2989,1:3062174,49800853 -(2989,1:3062174,52029077:16384,1703936,0 -[2989,1:3062174,52029077:25952256,1703936,0 -(2989,1:3062174,51504789:25952256,1179648,0 -(2989,1:3062174,51504789:16384,1179648,0 -r2989,735:3078558,51504789:16384,1179648,0 -) -k2989,1:29014430,51504789:25935872 -g2989,1:29014430,51504789 +(1,1780:16968367,30287624:909902,346358,5505 ) ] +g1,1780:17987505,30114281 +(1,1780:18460676,30212595:233243,346358,5505 ) +g1,1780:18992554,30114281 +g1,1780:19679162,30114281 +(1,1780:19679162,30152925:649462,567542,79954 ) +[1,1780:20328624,30255819:909902,735560,5505 +(1,1780:20328624,29768903:393347,248644,5505 ) -] -[2989,735:3078558,4812305:0,0,0 -(2989,735:3078558,49800853:0,16384,2228224 -g2989,735:29030814,49800853 -g2989,735:36135244,49800853 -(2989,1:36135244,49800853:1720320,16384,2228224 -(2989,1:36135244,52029077:16384,1703936,0 -[2989,1:36135244,52029077:25952256,1703936,0 -(2989,1:36135244,51504789:25952256,1179648,0 -(2989,1:36135244,51504789:16384,1179648,0 -r2989,735:36151628,51504789:16384,1179648,0 -) -k2989,1:62087500,51504789:25935872 -g2989,1:62087500,51504789 +(1,1780:20328624,30255819:909902,346358,5505 ) ] +g1,1780:21347762,30114281 +(1,1780:21820933,30212595:233243,346358,5505 ) -g2989,1:36675916,49800853 -(2989,1:36675916,49800853:1179648,16384,0 -r2989,735:37855564,49800853:1179648,16384,0 +$1,1780:22054176,30114281 +k1,1780:23576515,30114281:1522339 +g1,1780:23904195,30114281 ) +g1,1780:23904195,30114281 +(1,1781:23904195,30114281:8112038,721028,231411 +g1,1780:24231875,30114281 +g1,1780:24231876,30114281 +g1,1780:27224905,30114281 +$1,1780:27224905,30114281 +(1,1780:27740018,30212595:779158,298648,5505 ) -k2989,735:3078556,49800853:-34777008 +g1,1780:28701236,30114281 +g1,1780:29451493,30114281 +(1,1780:29966606,30212595:463995,331678,0 ) -] -g2989,735:6630773,4812305 -k2989,735:28224886,4812305:20398736 -g2989,735:30907930,4812305 +$1,1780:30430601,30114281 +k1,1781:31688553,30114281:1257952 +g1,1781:32016233,30114281 ) +g1,1781:32016233,30114281 ) -] -[2989,735:6630773,45706769:25952256,40108032,0 -(2989,735:6630773,45706769:25952256,40108032,0 -(2989,735:6630773,45706769:0,0,0 -g2989,735:6630773,45706769 -) -[2989,735:6630773,45706769:25952256,40108032,0 -(2989,735:6630773,45706769:25952256,40108032,126483 -[2989,735:6630773,45706769:11829248,40108032,126483 -(2989,635:6630773,6254097:11829248,505283,134348 -h2989,634:6630773,6254097:0,0,0 -g2989,634:9324302,6254097 -g2989,634:12619452,6254097 -k2989,635:18460021,6254097:4873258 -) -(2989,635:9252213,7095585:9207808,505283,134348 -g2989,634:14487228,7095585 -k2989,635:17934750,7095585:525272 -k2989,635:18460021,7095585:525271 -) -(2989,636:6630773,7938614:11829248,505283,126483 -h2989,635:6630773,7938614:0,0,0 -g2989,635:10067481,7938614 -g2989,635:11017097,7938614 -k2989,636:14937789,7938614:3522233 -k2989,636:18460021,7938614:3522232 -) -(2989,637:6630773,8781643:11829248,505283,126483 -h2989,636:6630773,8781643:0,0,0 -g2989,636:8994000,8781643 -k2989,637:14324699,8781643:4135322 -k2989,637:18460021,8781643:4135322 -) -(2989,638:6630773,9624672:11829248,505283,102891 -h2989,637:6630773,9624672:0,0,0 -g2989,637:10178891,9624672 -k2989,638:14917145,9624672:3542877 -k2989,638:18460021,9624672:3542876 -) -(2989,639:6630773,10467701:11829248,505283,102891 -h2989,638:6630773,10467701:0,0,0 -g2989,638:9093615,10467701 -g2989,638:10661891,10467701 -g2989,638:13753224,10467701 -g2989,638:15321500,10467701 -g2989,638:16889776,10467701 -k2989,639:18272587,10467701:187434 -k2989,639:18460021,10467701:187434 -) -(2989,640:6630773,11310730:11829248,505283,102891 -h2989,639:6630773,11310730:0,0,0 -g2989,639:9416708,11310730 -g2989,639:10984984,11310730 -k2989,640:15320191,11310730:3139830 -k2989,640:18460021,11310730:3139830 -) -(2989,641:6630773,12153759:11829248,505283,126483 -h2989,640:6630773,12153759:0,0,0 -g2989,640:8183320,12153759 -g2989,640:11198631,12153759 -g2989,640:12589305,12153759 -g2989,640:16368766,12153759 -k2989,641:17812853,12153759:647169 -k2989,641:18460021,12153759:647168 -) -(2989,642:6630773,12996788:11829248,513147,134348 -h2989,641:6630773,12996788:0,0,0 -g2989,641:9689338,12996788 -g2989,641:10547859,12996788 -g2989,641:14323388,12996788 -g2989,641:15493205,12996788 -k2989,642:17574302,12996788:885720 -k2989,642:18460021,12996788:885719 -) -(2989,643:6630773,13839817:11829248,505283,134348 -h2989,642:6630773,13839817:0,0,0 -g2989,642:9827619,13839817 -g2989,642:12490346,13839817 -k2989,643:15873643,13839817:2586379 -k2989,643:18460021,13839817:2586378 -) -(2989,644:6630773,14682846:11829248,505283,126483 -h2989,643:6630773,14682846:0,0,0 -g2989,643:9060848,14682846 -g2989,643:10227388,14682846 -g2989,643:14489194,14682846 -k2989,644:17805316,14682846:654705 -k2989,644:18460021,14682846:654705 -) -(2989,645:6630773,15525875:11829248,505283,126483 -h2989,644:6630773,15525875:0,0,0 -g2989,644:10892579,15525875 -g2989,644:12481171,15525875 -g2989,644:15408664,15525875 -k2989,645:17895101,15525875:564921 -k2989,645:18460021,15525875:564920 -) -(2989,646:6630773,16368904:11829248,505283,126483 -h2989,645:6630773,16368904:0,0,0 -g2989,645:10892579,16368904 -g2989,645:13926895,16368904 -k2989,646:16591917,16368904:1868104 -k2989,646:18460021,16368904:1868104 -) -(2989,647:6630773,17211933:11829248,505283,126483 -h2989,646:6630773,17211933:0,0,0 -g2989,646:9930510,17211933 -k2989,647:14792954,17211933:3667067 -k2989,647:18460021,17211933:3667067 -) -(2989,648:6630773,18054962:11829248,505283,126483 -h2989,647:6630773,18054962:0,0,0 -g2989,647:10345353,18054962 -k2989,648:15000376,18054962:3459646 -k2989,648:18460021,18054962:3459645 -) -(2989,649:6630773,18897991:11829248,505283,134348 -h2989,648:6630773,18897991:0,0,0 -g2989,648:9977696,18897991 -g2989,648:12492312,18897991 -k2989,649:16835383,18897991:1624638 -k2989,649:18460021,18897991:1624638 -) -(2989,650:6630773,19741020:11829248,505283,102891 -h2989,649:6630773,19741020:0,0,0 -g2989,649:10388607,19741020 -g2989,649:11956883,19741020 -k2989,650:15806141,19741020:2653881 -k2989,650:18460021,19741020:2653880 -) -(2989,651:6630773,20584049:11829248,485622,102891 -h2989,650:6630773,20584049:0,0,0 -g2989,650:8642727,20584049 -k2989,651:13949833,20584049:4510188 -k2989,651:18460021,20584049:4510188 -) -(2989,652:6630773,21427078:11829248,505283,102891 -h2989,651:6630773,21427078:0,0,0 -g2989,651:9099513,21427078 -k2989,652:14377456,21427078:4082566 -k2989,652:18460021,21427078:4082565 -) -(2989,653:6630773,22270107:11829248,505283,102891 -h2989,652:6630773,22270107:0,0,0 -g2989,652:10769371,22270107 -k2989,653:15212385,22270107:3247637 -k2989,653:18460021,22270107:3247636 -) -(2989,654:6630773,23113136:11829248,505283,102891 -h2989,653:6630773,23113136:0,0,0 -g2989,653:10222800,23113136 -k2989,654:14939099,23113136:3520922 -k2989,654:18460021,23113136:3520922 -) -(2989,655:6630773,23956165:11829248,485622,126483 -h2989,654:6630773,23956165:0,0,0 -g2989,654:11473883,23956165 -k2989,655:15564641,23956165:2895381 -k2989,655:18460021,23956165:2895380 -) -(2989,656:6630773,24799194:11829248,505283,126483 -h2989,655:6630773,24799194:0,0,0 -g2989,655:9646739,24799194 -g2989,655:13250563,24799194 -g2989,655:14259162,24799194 -k2989,655:18460021,24799194:2637825 -) -(2989,656:9252213,25640682:9207808,485622,11795 -k2989,656:15215334,25640682:3244688 -k2989,656:18460021,25640682:3244687 -) -(2989,657:6630773,26483711:11829248,505283,102891 -h2989,656:6630773,26483711:0,0,0 -g2989,656:9844002,26483711 -k2989,657:14749700,26483711:3710321 -k2989,657:18460021,26483711:3710321 -) -(2989,659:6630773,27326740:11829248,505283,102891 -h2989,657:6630773,27326740:0,0,0 -k2989,657:9420804,27326740:192184 -k2989,657:10185118,27326740:192185 -k2989,657:10949431,27326740:192184 -k2989,657:12838343,27326740:192185 -k2989,657:14001115,27326740:192184 -k2989,657:15163888,27326740:192185 -k2989,657:16326660,27326740:192184 -k2989,657:17489433,27326740:192185 -k2989,657:18460021,27326740:0 -) -(2989,659:9252213,28168228:9207808,485622,102891 -g2989,657:10422030,28168228 -g2989,657:11591847,28168228 -g2989,658:13160123,28168228 -g2989,658:14728399,28168228 -g2989,658:16296675,28168228 -k2989,658:18460021,28168228:794299 -) -(2989,659:9252213,29009716:9207808,485622,102891 -g2989,658:10820489,29009716 -k2989,659:15237944,29009716:3222078 -k2989,659:18460021,29009716:3222077 -) -(2989,660:6630773,29852745:11829248,505283,102891 -h2989,659:6630773,29852745:0,0,0 -g2989,659:9160462,29852745 -k2989,660:14407930,29852745:4052091 -k2989,660:18460021,29852745:4052091 -) -(2989,664:6630773,31376817:11829248,485622,102891 -h2989,663:6630773,31376817:0,0,0 -g2989,663:7356911,31376817 -g2989,663:8128269,31376817 -g2989,663:8899627,31376817 -g2989,663:10467903,31376817 -k2989,664:15061651,31376817:3398371 -k2989,664:18460021,31376817:3398370 -) -(2989,665:6630773,32219846:11829248,505283,102891 -h2989,664:6630773,32219846:0,0,0 -g2989,664:8861618,32219846 -k2989,665:13860049,32219846:4599972 -k2989,665:18460021,32219846:4599972 -) -(2989,666:6630773,33062875:11829248,505283,126483 -h2989,665:6630773,33062875:0,0,0 -g2989,665:7583666,33062875 -g2989,665:9338064,33062875 -g2989,665:11956882,33062875 -k2989,666:15806140,33062875:2653881 -k2989,666:18460021,33062875:2653881 -) -(2989,667:6630773,33905904:11829248,485622,102891 -h2989,666:6630773,33905904:0,0,0 -g2989,666:8162349,33905904 -g2989,666:8933707,33905904 -g2989,666:10501983,33905904 -g2989,666:12070259,33905904 -k2989,667:15862829,33905904:2597193 -k2989,667:18460021,33905904:2597192 -) -(2989,668:6630773,34748933:11829248,505283,102891 -h2989,667:6630773,34748933:0,0,0 -g2989,667:9336754,34748933 -g2989,667:10905030,34748933 -k2989,668:15280214,34748933:3179807 -k2989,668:18460021,34748933:3179807 -) -(2989,669:6630773,35591962:11829248,513147,134348 -h2989,668:6630773,35591962:0,0,0 -g2989,668:8732512,35591962 -g2989,668:12291116,35591962 -g2989,668:13457656,35591962 -g2989,668:16559475,35591962 -k2989,668:18460021,35591962:1241254 -) -(2989,669:9252213,36433450:9207808,505283,134348 -g2989,668:12344201,36433450 -k2989,669:16353366,36433450:2106655 -k2989,669:18460021,36433450:2106655 -) -(2989,670:6630773,37276479:11829248,505283,134348 -h2989,669:6630773,37276479:0,0,0 -g2989,669:9299399,37276479 -g2989,669:11258270,37276479 -k2989,670:15456834,37276479:3003187 -k2989,670:18460021,37276479:3003187 -) -(2989,671:6630773,38119508:11829248,473825,126483 -h2989,670:6630773,38119508:0,0,0 -g2989,670:8834748,38119508 -k2989,671:13846614,38119508:4613407 -k2989,671:18460021,38119508:4613407 -) -(2989,672:6630773,38962537:11829248,485622,126483 -h2989,671:6630773,38962537:0,0,0 -g2989,671:9165050,38962537 -k2989,672:14210995,38962537:4249027 -k2989,672:18460021,38962537:4249026 -) -(2989,673:6630773,39805566:11829248,505283,134348 -h2989,672:6630773,39805566:0,0,0 -r2989,735:6630773,39805566:0,639631,134348 -g2989,672:7941493,39805566 -g2989,672:7941493,39805566 -g2989,672:11636412,39805566 -k2989,673:15645905,39805566:2814116 -k2989,673:18460021,39805566:2814116 -) -(2989,674:6630773,40648595:11829248,513147,102891 -h2989,673:6630773,40648595:0,0,0 -r2989,735:6630773,40648595:0,616038,102891 -g2989,673:7941493,40648595 -g2989,673:7941493,40648595 -g2989,673:11396551,40648595 -k2989,674:15326745,40648595:3133276 -k2989,674:18460021,40648595:3133276 -) -(2989,675:6630773,41491624:11829248,505283,126483 -h2989,674:6630773,41491624:0,0,0 -r2989,735:6630773,41491624:0,631766,126483 -g2989,674:7941493,41491624 -g2989,674:7941493,41491624 -g2989,674:11708502,41491624 -k2989,675:15482721,41491624:2977301 -k2989,675:18460021,41491624:2977300 -) -(2989,676:6630773,42334653:11829248,485622,134348 -h2989,675:6630773,42334653:0,0,0 -r2989,735:6630773,42334653:0,619970,134348 -g2989,675:7941493,42334653 -g2989,675:7941493,42334653 -g2989,675:11066249,42334653 -k2989,676:15161594,42334653:3298427 -k2989,676:18460021,42334653:3298427 -) -(2989,677:6630773,43177682:11829248,485622,134348 -h2989,676:6630773,43177682:0,0,0 -r2989,735:6630773,43177682:0,619970,134348 -g2989,676:7941493,43177682 -g2989,676:7941493,43177682 -g2989,676:10572108,43177682 -k2989,677:14914524,43177682:3545498 -k2989,677:18460021,43177682:3545497 -) -(2989,678:6630773,44020711:11829248,513147,134348 -h2989,677:6630773,44020711:0,0,0 -g2989,677:10669101,44020711 -g2989,677:14067798,44020711 -g2989,677:15636074,44020711 -k2989,678:17645736,44020711:814285 -k2989,678:18460021,44020711:814285 -) -(2989,679:6630773,44863740:11829248,505283,126483 -h2989,678:6630773,44863740:0,0,0 -g2989,678:9328889,44863740 -k2989,679:14492144,44863740:3967878 -k2989,679:18460021,44863740:3967877 -) -(2989,680:6630773,45706769:11829248,485622,126483 -h2989,679:6630773,45706769:0,0,0 -g2989,679:9943617,45706769 -k2989,680:14600278,45706769:3859743 -k2989,680:18460021,45706769:3859743 +(1,1782:7396798,31066720:24619435,721028,231411 +g1,1781:7396798,31066720 +(1,1781:7396798,31066720:5234169,721028,231411 +r1,1800:7396798,31066720:0,771366,231411 +g1,1781:7724478,31066720 +g1,1781:7724479,31066720 +(1,1781:7724479,31066720:0,452978,115847 +r1,1800:10896439,31066720:3171960,568825,115847 +k1,1781:7724479,31066720:-3171960 ) -] -k2989,735:19606901,45706769:1146880 -r2989,735:19606901,45706769:0,40234515,126483 -k2989,735:20753781,45706769:1146880 -[2989,735:20753781,45706769:11829248,40108032,102891 -(2989,681:20753781,6254097:11829248,485622,102891 -h2989,680:20753781,6254097:0,0,0 -g2989,680:22391525,6254097 -k2989,681:28448035,6254097:4134994 -k2989,681:32583029,6254097:4134994 -) -(2989,682:20753781,7100766:11829248,513147,102891 -h2989,681:20753781,7100766:0,0,0 -g2989,681:22114963,7100766 -g2989,681:23683239,7100766 -k2989,682:28730823,7100766:3852207 -k2989,682:32583029,7100766:3852206 -) -(2989,683:20753781,7947435:11829248,505283,102891 -h2989,682:20753781,7947435:0,0,0 -g2989,682:24444768,7947435 -k2989,683:29111587,7947435:3471442 -k2989,683:32583029,7947435:3471442 -) -(2989,684:20753781,8794104:11829248,505283,126483 -h2989,683:20753781,8794104:0,0,0 -g2989,683:23077687,8794104 -g2989,683:24773103,8794104 -g2989,683:28662664,8794104 -k2989,684:31220535,8794104:1362494 -k2989,684:32583029,8794104:1362494 -) -(2989,685:20753781,9640774:11829248,505283,126483 -h2989,684:20753781,9640774:0,0,0 -g2989,684:23147155,9640774 -k2989,685:28870415,9640774:3712615 -k2989,685:32583029,9640774:3712614 -) -(2989,686:20753781,10487443:11829248,485622,102891 -h2989,685:20753781,10487443:0,0,0 -r2989,735:20753781,10487443:0,588513,102891 -g2989,685:22064501,10487443 -g2989,685:22064501,10487443 -g2989,685:23417164,10487443 -k2989,686:28398556,10487443:4184474 -k2989,686:32583029,10487443:4184473 -) -(2989,687:20753781,11334112:11829248,485622,102891 -h2989,686:20753781,11334112:0,0,0 -r2989,735:20753781,11334112:0,588513,102891 -g2989,686:22064501,11334112 -g2989,686:22064501,11334112 -g2989,686:23777612,11334112 -k2989,687:28578780,11334112:4004250 -k2989,687:32583029,11334112:4004249 -) -(2989,688:20753781,12180781:11829248,485622,102891 -h2989,687:20753781,12180781:0,0,0 -g2989,687:22557986,12180781 -k2989,688:28168196,12180781:4414833 -k2989,688:32583029,12180781:4414833 -) -(2989,689:20753781,13027450:11829248,485622,102891 -h2989,688:20753781,13027450:0,0,0 -g2989,688:22548811,13027450 -g2989,688:23320169,13027450 -g2989,688:24888445,13027450 -g2989,688:26456721,13027450 -k2989,689:30117564,13027450:2465466 -k2989,689:32583029,13027450:2465465 -) -(2989,690:20753781,13874119:11829248,485622,102891 -h2989,689:20753781,13874119:0,0,0 -g2989,689:23137980,13874119 -k2989,690:28458193,13874119:4124836 -k2989,690:32583029,13874119:4124836 -) -(2989,691:20753781,14720789:11829248,513147,102891 -h2989,690:20753781,14720789:0,0,0 -g2989,690:25672913,14720789 -k2989,691:29526430,14720789:3056599 -k2989,691:32583029,14720789:3056599 -) -(2989,692:20753781,15567458:11829248,485622,102891 -h2989,691:20753781,15567458:0,0,0 -g2989,691:22693646,15567458 -g2989,691:24261922,15567458 -k2989,692:29020164,15567458:3562865 -k2989,692:32583029,15567458:3562865 -) -(2989,694:20753781,16414127:11829248,513147,134348 -h2989,692:20753781,16414127:0,0,0 -g2989,692:23806448,16414127 -g2989,692:27365052,16414127 -k2989,693:27365052,16414127:0 -g2989,693:28531592,16414127 -g2989,693:31633411,16414127 -k2989,693:32583029,16414127:290326 -) -(2989,694:23375221,17255615:9207808,505283,134348 -g2989,693:26467209,17255615 -k2989,694:30951838,17255615:1631191 -k2989,694:32583029,17255615:1631191 -) -(2989,695:20753781,18102284:11829248,505283,102891 -h2989,694:20753781,18102284:0,0,0 -g2989,694:23059992,18102284 -k2989,695:28419199,18102284:4163830 -k2989,695:32583029,18102284:4163830 -) -(2989,696:20753781,18948953:11829248,505283,134348 -h2989,695:20753781,18948953:0,0,0 -g2989,695:23659647,18948953 -k2989,696:28719027,18948953:3864003 -k2989,696:32583029,18948953:3864002 -) -(2989,697:20753781,19795622:11829248,473825,7863 -h2989,696:20753781,19795622:0,0,0 -k2989,697:28422476,19795622:4160553 -k2989,697:32583029,19795622:4160553 -) -(2989,698:20753781,20642291:11829248,505283,102891 -h2989,697:20753781,20642291:0,0,0 -r2989,735:20753781,20642291:0,608174,102891 -g2989,697:22064501,20642291 -g2989,697:22064501,20642291 -g2989,697:25521525,20642291 -k2989,698:29649966,20642291:2933064 -k2989,698:32583029,20642291:2933063 -) -(2989,699:20753781,21488961:11829248,505283,102891 -h2989,698:20753781,21488961:0,0,0 -g2989,698:23830040,21488961 -g2989,698:24999857,21488961 -k2989,699:29389132,21488961:3193898 -k2989,699:32583029,21488961:3193897 -) -(2989,700:20753781,22335630:11829248,485622,126483 -h2989,699:20753781,22335630:0,0,0 -g2989,699:23007563,22335630 -g2989,699:24575839,22335630 -k2989,700:29177123,22335630:3405907 -k2989,700:32583029,22335630:3405906 -) -(2989,704:20753781,23924011:11829248,513147,7863 -h2989,703:20753781,23924011:0,0,0 -g2989,703:22179189,23924011 -k2989,704:28037780,23924011:4545249 -k2989,704:32583029,23924011:4545249 -) -(2989,705:20753781,24770680:11829248,513147,102891 -h2989,704:20753781,24770680:0,0,0 -r2989,735:20753781,24770680:0,616038,102891 -g2989,704:22064501,24770680 -g2989,704:22064501,24770680 -g2989,704:23827419,24770680 -g2989,704:25841340,24770680 -g2989,704:27948322,24770680 -k2989,705:30863364,24770680:1719665 -k2989,705:32583029,24770680:1719665 -) -(2989,706:20753781,25617349:11829248,513147,102891 -h2989,705:20753781,25617349:0,0,0 -r2989,735:20753781,25617349:0,616038,102891 -g2989,705:22064501,25617349 -g2989,705:22064501,25617349 -g2989,705:23657681,25617349 -g2989,705:25260691,25617349 -g2989,705:28256341,25617349 -k2989,706:31017374,25617349:1565656 -k2989,706:32583029,25617349:1565655 -) -(2989,707:20753781,26464018:11829248,513147,134348 -h2989,706:20753781,26464018:0,0,0 -g2989,706:23269708,26464018 -g2989,706:26828312,26464018 -g2989,706:27994852,26464018 -g2989,706:31096671,26464018 -k2989,706:32583029,26464018:827066 -) -(2989,707:23375221,27305506:9207808,505283,134348 -g2989,706:26467209,27305506 -k2989,707:30683468,27305506:1899561 -k2989,707:32583029,27305506:1899561 -) -(2989,708:20753781,28152175:11829248,505283,7863 -h2989,707:20753781,28152175:0,0,0 -k2989,708:27574113,28152175:5008917 -k2989,708:32583029,28152175:5008916 -) -(2989,709:20753781,28998844:11829248,513147,102891 -h2989,708:20753781,28998844:0,0,0 -r2989,735:20753781,28998844:0,616038,102891 -g2989,708:22064501,28998844 -g2989,708:22064501,28998844 -g2989,708:25780392,28998844 -g2989,708:27373572,28998844 -g2989,708:28962164,28998844 -k2989,708:32583029,28998844:1240597 -) -(2989,709:23375221,29840332:9207808,485622,11795 -k2989,709:29338342,29840332:3244688 -k2989,709:32583029,29840332:3244687 -) -(2989,710:20753781,30687002:11829248,505283,102891 -h2989,709:20753781,30687002:0,0,0 -g2989,709:23355559,30687002 -g2989,709:24525376,30687002 -g2989,709:25695193,30687002 -g2989,709:28786526,30687002 -k2989,710:31282466,30687002:1300563 -k2989,710:32583029,30687002:1300563 -) -(2989,711:20753781,31533671:11829248,505283,126483 -h2989,710:20753781,31533671:0,0,0 -g2989,710:24590913,31533671 -k2989,711:28985430,31533671:3597599 -k2989,711:32583029,31533671:3597599 -) -(2989,712:20753781,32380340:11829248,505283,126483 -h2989,711:20753781,32380340:0,0,0 -g2989,711:23472214,32380340 -k2989,712:28625310,32380340:3957719 -k2989,712:32583029,32380340:3957719 -) -(2989,713:20753781,33227009:11829248,505283,126483 -h2989,712:20753781,33227009:0,0,0 -g2989,712:22998388,33227009 -g2989,712:24566664,33227009 -g2989,712:26134940,33227009 -g2989,712:27703216,33227009 -k2989,713:30740811,33227009:1842218 -k2989,713:32583029,33227009:1842218 -) -(2989,715:20753781,34073678:11829248,505283,126483 -h2989,713:20753781,34073678:0,0,0 -g2989,713:24401514,34073678 -g2989,713:25571331,34073678 -g2989,713:27139607,34073678 -g2989,713:28707883,34073678 -g2989,713:30276159,34073678 -k2989,713:32583029,34073678:937823 -) -(2989,715:23375221,34915166:9207808,485622,102891 -k2989,713:24942973,34915166:198705 -k2989,713:26510725,34915166:198705 -k2989,713:28078478,34915166:198706 -k2989,714:29646230,34915166:198705 -k2989,714:31213982,34915166:198705 -k2989,714:32583029,34915166:0 -) -(2989,715:23375221,35756654:9207808,485622,11795 -k2989,715:28576814,35756654:4006216 -k2989,715:32583029,35756654:4006215 -) -(2989,716:20753781,36603323:11829248,485622,102891 -h2989,715:20753781,36603323:0,0,0 -g2989,715:22378418,36603323 -g2989,715:24596156,36603323 -k2989,716:29948809,36603323:2634220 -k2989,716:32583029,36603323:2634220 -) -(2989,717:20753781,37449992:11829248,505283,126483 -h2989,716:20753781,37449992:0,0,0 -r2989,735:20753781,37449992:0,631766,126483 -g2989,716:22064501,37449992 -g2989,716:22064501,37449992 -g2989,716:27167789,37449992 -k2989,717:30473098,37449992:2109932 -k2989,717:32583029,37449992:2109931 -) -(2989,718:20753781,38296662:11829248,505283,102891 -h2989,717:20753781,38296662:0,0,0 -g2989,717:23113732,38296662 -k2989,718:28446069,38296662:4136960 -k2989,718:32583029,38296662:4136960 -) -(2989,719:20753781,39143331:11829248,481690,126483 -h2989,718:20753781,39143331:0,0,0 -g2989,718:22339096,39143331 -g2989,718:26188680,39143331 -k2989,719:30346613,39143331:2236417 -k2989,719:32583029,39143331:2236416 -) -(2989,720:20753781,39990000:11829248,485622,126483 -h2989,719:20753781,39990000:0,0,0 -g2989,719:22339096,39990000 -g2989,719:26097585,39990000 -k2989,720:29738766,39990000:2844263 -k2989,720:32583029,39990000:2844263 -) -(2989,724:20753781,41578381:11829248,485622,102891 -h2989,723:20753781,41578381:0,0,0 -g2989,723:24141992,41578381 -k2989,724:28960199,41578381:3622830 -k2989,724:32583029,41578381:3622830 -) -(2989,725:20753781,42425050:11829248,485622,102891 -h2989,724:20753781,42425050:0,0,0 -g2989,724:22578302,42425050 -g2989,724:23349660,42425050 -g2989,724:24121018,42425050 -g2989,724:24892376,42425050 -g2989,724:26062193,42425050 -g2989,724:27232010,42425050 -g2989,724:28800286,42425050 -k2989,725:31289346,42425050:1293683 -k2989,725:32583029,42425050:1293683 -) -(2989,726:20753781,43271719:11829248,485622,102891 -h2989,725:20753781,43271719:0,0,0 -g2989,725:22789984,43271719 -k2989,726:28284195,43271719:4298834 -k2989,726:32583029,43271719:4298834 -) -(2989,727:20753781,44118388:11829248,505283,102891 -h2989,726:20753781,44118388:0,0,0 -g2989,726:22904672,44118388 -g2989,726:24472948,44118388 -g2989,726:26041224,44118388 -g2989,726:27609500,44118388 -g2989,726:29177776,44118388 -k2989,727:31478091,44118388:1104938 -k2989,727:32583029,44118388:1104938 -) -(2989,731:20753781,45706769:11829248,505283,102891 -h2989,730:20753781,45706769:0,0,0 -g2989,730:23968321,45706769 -k2989,731:28674134,45706769:3908895 -k2989,731:32583029,45706769:3908895 +(1,1781:7724479,31066720:3171960,452978,115847 +k1,1781:7724479,31066720:3277 +h1,1781:10893162,31066720:0,411205,112570 ) -] -(2989,735:32583029,45706769:0,355205,126483 -h2989,735:32583029,45706769:420741,355205,126483 -k2989,735:32583029,45706769:-420741 +k1,1781:12303287,31066720:1406848 +g1,1781:12630967,31066720 ) +g1,1781:12630967,31066720 +(1,1781:12630967,31066720:11273228,721028,231411 +g1,1781:12958647,31066720 +g1,1781:12958648,31066720 +$1,1781:12958648,31066720 +(1,1781:12958648,31085703:692060,528220,79954 ) -] -(2989,735:32583029,45706769:0,0,0 -g2989,735:32583029,45706769 +[1,1781:13650708,31192219:909902,785646,5505 +(1,1781:13650708,30741003:311689,334430,0 ) +(1,1781:13650708,31192219:909902,346358,5505 ) ] -(2989,735:6630773,47279633:25952256,0,0 -h2989,735:6630773,47279633:25952256,0,0 +g1,1781:14669846,31066720 +(1,1781:15143017,31165034:233243,346358,5505 ) -] -(2989,735:4262630,4025873:0,0,0 -[2989,735:-473656,4025873:0,0,0 -(2989,735:-473656,-710413:0,0,0 -(2989,735:-473656,-710413:0,0,0 -g2989,735:-473656,-710413 +g1,1781:15674895,31066720 +g1,1781:16361503,31066720 +(1,1781:16361503,31085703:692060,528220,79954 ) -g2989,735:-473656,-710413 +[1,1781:17053563,31240063:909902,894371,5505 +(1,1781:17053563,30692050:286917,346358,96797 ) -] +(1,1781:17053563,31240063:909902,346358,5505 ) ] -!24066 -}385 -!12 -{386 -[1,19109:4262630,47279633:28320399,43253760,0 -(1,19109:4262630,4025873:0,0,0 -[1,19109:-473656,4025873:0,0,0 -(1,19109:-473656,-710413:0,0,0 -(1,19109:-473656,-644877:0,0,0 -k1,19109:-473656,-644877:-65536 -) -(1,19109:-473656,4736287:0,0,0 -k1,19109:-473656,4736287:5209943 -) -g1,19109:-473656,-710413 +g1,1781:18072701,31066720 +(1,1781:18545872,31165034:233243,346358,5505 ) -] +g1,1781:19077750,31066720 +g1,1781:19764358,31066720 +(1,1781:19764358,31085703:692060,528220,79954 ) -[1,19109:6630773,47279633:25952256,43253760,0 -[1,19109:6630773,4812305:25952256,786432,0 -(1,19109:6630773,4812305:25952256,505283,11795 -(1,19109:6630773,4812305:25952256,505283,11795 -g1,19109:3078558,4812305 -[1,19109:3078558,4812305:0,0,0 -(1,19109:3078558,2439708:0,1703936,0 -k1,19109:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,19109:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,19109:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 +[1,1781:20456418,31197724:909902,705365,5505 +(1,1781:20456418,30741003:393347,248644,5505 ) -] +(1,1781:20456418,31197724:909902,346358,5505 ) +] +g1,1781:21475556,31066720 +(1,1781:21948727,31165034:233243,346358,5505 ) +$1,1781:22181970,31066720 +k1,1781:23576515,31066720:1394545 +g1,1781:23904195,31066720 +) +g1,1781:23904195,31066720 +(1,1782:23904195,31066720:8112038,721028,231411 +g1,1781:24231875,31066720 +g1,1781:24231876,31066720 +g1,1781:27224905,31066720 +$1,1781:27224905,31066720 +(1,1781:27740018,31165034:779158,298648,5505 +) +g1,1781:28701236,31066720 +g1,1781:29451493,31066720 +(1,1781:29966606,31165034:463995,331678,0 +) +$1,1781:30430601,31066720 +k1,1782:31688553,31066720:1257952 +g1,1782:32016233,31066720 +) +g1,1782:32016233,31066720 +) +(1,1783:7396798,31838086:24619435,539955,231411 +g1,1782:7396798,31838086 +(1,1782:7396798,31838086:5234169,539955,231411 +r1,1800:7396798,31838086:0,771366,231411 +g1,1782:7724478,31838086 +g1,1782:7724479,31838086 +(1,1782:7724479,31838086:0,452978,115847 +r1,1800:10544728,31838086:2820249,568825,115847 +k1,1782:7724479,31838086:-2820249 +) +(1,1782:7724479,31838086:2820249,452978,115847 +k1,1782:7724479,31838086:3277 +h1,1782:10541451,31838086:0,411205,112570 +) +k1,1782:12303287,31838086:1758559 +g1,1782:12630967,31838086 +) +g1,1782:12630967,31838086 +(1,1782:12630967,31838086:11273228,539955,231411 +g1,1782:12958647,31838086 +g1,1782:12958648,31838086 +g1,1782:16664708,31838086 +k1,1782:23576515,31838086:3714961 +g1,1782:23904195,31838086 +) +g1,1782:23904195,31838086 +(1,1783:23904195,31838086:8112038,539955,231411 +g1,1782:24231875,31838086 +g1,1782:24231876,31838086 +g1,1782:27224905,31838086 +$1,1782:27224905,31838086 +(1,1782:27740018,31936400:779158,298648,5505 +) +g1,1782:28701236,31838086 +g1,1782:29451493,31838086 +(1,1782:29966606,31936400:463995,331678,0 +) +$1,1782:30430601,31838086 +k1,1783:31688553,31838086:1257952 +g1,1783:32016233,31838086 +) +g1,1783:32016233,31838086 +) +(1,1784:7396798,32609452:24619435,539955,231411 +g1,1783:7396798,32609452 +(1,1783:7396798,32609452:5234169,539955,231411 +r1,1800:7396798,32609452:0,771366,231411 +g1,1783:7724478,32609452 +g1,1783:7724479,32609452 +(1,1783:7724479,32609452:0,452978,115847 +r1,1800:10544728,32609452:2820249,568825,115847 +k1,1783:7724479,32609452:-2820249 +) +(1,1783:7724479,32609452:2820249,452978,115847 +k1,1783:7724479,32609452:3277 +h1,1783:10541451,32609452:0,411205,112570 +) +k1,1783:12303287,32609452:1758559 +g1,1783:12630967,32609452 +) +g1,1783:12630967,32609452 +(1,1783:12630967,32609452:11273228,539955,231411 +g1,1783:12958647,32609452 +g1,1783:12958648,32609452 +g1,1783:16664708,32609452 +k1,1783:23576515,32609452:3819818 +g1,1783:23904195,32609452 +) +g1,1783:23904195,32609452 +(1,1784:23904195,32609452:8112038,539955,231411 +g1,1783:24231875,32609452 +g1,1783:24231876,32609452 +g1,1783:27224905,32609452 +$1,1783:27224905,32609452 +(1,1783:27740018,32707766:779158,298648,5505 +) +g1,1783:28701236,32609452 +g1,1783:29451493,32609452 +(1,1783:29966606,32707766:463995,331678,0 +) +$1,1783:30430601,32609452 +k1,1784:31688553,32609452:1257952 +g1,1784:32016233,32609452 +) +g1,1784:32016233,32609452 +) +(1,1785:7396798,33380818:24619435,539955,231411 +g1,1784:7396798,33380818 +(1,1784:7396798,33380818:5234169,539955,231411 +r1,1800:7396798,33380818:0,771366,231411 +g1,1784:7724478,33380818 +g1,1784:7724479,33380818 +(1,1784:7724479,33380818:0,452978,115847 +r1,1800:10544728,33380818:2820249,568825,115847 +k1,1784:7724479,33380818:-2820249 +) +(1,1784:7724479,33380818:2820249,452978,115847 +k1,1784:7724479,33380818:3277 +h1,1784:10541451,33380818:0,411205,112570 +) +k1,1784:12303287,33380818:1758559 +g1,1784:12630967,33380818 +) +g1,1784:12630967,33380818 +(1,1784:12630967,33380818:11273228,539955,231411 +g1,1784:12958647,33380818 +g1,1784:12958648,33380818 +g1,1784:15681013,33380818 +k1,1784:23576515,33380818:5535551 +g1,1784:23904195,33380818 +) +g1,1784:23904195,33380818 +(1,1785:23904195,33380818:8112038,539955,231411 +g1,1784:24231875,33380818 +g1,1784:24231876,33380818 +g1,1784:27224905,33380818 +$1,1784:27224905,33380818 +(1,1784:27740018,33479132:779158,298648,5505 +) +g1,1784:28701236,33380818 +g1,1784:29451493,33380818 +(1,1784:29966606,33479132:463995,331678,0 +) +$1,1784:30430601,33380818 +k1,1785:31688553,33380818:1257952 +g1,1785:32016233,33380818 +) +g1,1785:32016233,33380818 +) +(1,1786:7396798,34152184:24619435,539955,231411 +g1,1785:7396798,34152184 +(1,1785:7396798,34152184:5234169,539955,231411 +r1,1800:7396798,34152184:0,771366,231411 +g1,1785:7724478,34152184 +g1,1785:7724479,34152184 +(1,1785:7724479,34152184:0,459977,115847 +r1,1800:9841304,34152184:2116825,575824,115847 +k1,1785:7724479,34152184:-2116825 +) +(1,1785:7724479,34152184:2116825,459977,115847 +k1,1785:7724479,34152184:3277 +h1,1785:9838027,34152184:0,411205,112570 +) +k1,1785:12303287,34152184:2461983 +g1,1785:12630967,34152184 +) +g1,1785:12630967,34152184 +(1,1785:12630967,34152184:11273228,539955,231411 +g1,1785:12958647,34152184 +g1,1785:12958648,34152184 +$1,1785:12958648,34152184 +(1,1785:13431819,34250498:311689,339935,0 +) +g1,1785:13889156,34152184 +g1,1785:14603001,34152184 +(1,1785:15076172,34250498:311689,334430,0 +) +g1,1785:15686496,34152184 +g1,1785:16373104,34152184 +(1,1785:16846275,34250498:233243,346358,5505 +) +g1,1785:17225166,34152184 +g1,1785:17939011,34152184 +(1,1785:18412182,34250498:909902,346358,5505 +) +g1,1785:19620719,34152184 +g1,1785:20307327,34152184 +(1,1785:20780498,34250498:393347,248644,5505 +) +g1,1785:21319493,34152184 +g1,1785:22033338,34152184 +(1,1785:22506509,34250498:1070006,334430,5505 +) +$1,1785:23576515,34152184 +g1,1785:23576515,34152184 +g1,1785:23904195,34152184 +) +g1,1785:23904195,34152184 +(1,1786:23904195,34152184:8112038,539955,231411 +g1,1785:24231875,34152184 +g1,1785:24231876,34152184 +g1,1785:27224905,34152184 +$1,1785:27224905,34152184 +(1,1785:27740018,34250498:779158,298648,5505 +) +g1,1785:28701236,34152184 +g1,1785:29451493,34152184 +(1,1785:29966606,34250498:463995,331678,0 +) +g1,1785:30576249,34152184 +g1,1785:31290094,34152184 +$1,1785:31688553,34152184 +g1,1786:31688553,34152184 +g1,1786:32016233,34152184 +) +g1,1786:32016233,34152184 +) +(1,1787:7396798,34923550:24619435,539955,231411 +g1,1786:7396798,34923550 +(1,1786:7396798,34923550:5234169,539955,231411 +r1,1800:7396798,34923550:0,771366,231411 +g1,1786:7724478,34923550 +g1,1786:7724479,34923550 +(1,1786:7724479,34923550:0,459977,115847 +r1,1800:10896439,34923550:3171960,575824,115847 +k1,1786:7724479,34923550:-3171960 +) +(1,1786:7724479,34923550:3171960,459977,115847 +k1,1786:7724479,34923550:3277 +h1,1786:10893162,34923550:0,411205,112570 +) +k1,1786:12303287,34923550:1406848 +g1,1786:12630967,34923550 +) +g1,1786:12630967,34923550 +(1,1786:12630967,34923550:11273228,539955,231411 +g1,1786:12958647,34923550 +g1,1786:12958648,34923550 +g1,1786:15444428,34923550 +g1,1786:16302949,34923550 +k1,1786:23576515,34923550:6166008 +g1,1786:23904195,34923550 +) +g1,1786:23904195,34923550 +(1,1787:23904195,34923550:8112038,539955,231411 +g1,1786:24231875,34923550 +g1,1786:24231876,34923550 +g1,1786:27224905,34923550 +$1,1786:27224905,34923550 +(1,1786:27740018,35021864:779158,298648,5505 +) +g1,1786:28701236,34923550 +g1,1786:29451493,34923550 +(1,1786:29966606,35021864:463995,331678,0 +) +g1,1786:30576249,34923550 +g1,1786:31290094,34923550 +$1,1786:31688553,34923550 +g1,1787:31688553,34923550 +g1,1787:32016233,34923550 +) +g1,1787:32016233,34923550 +) +(1,1788:7396798,35694916:24619435,539955,231411 +g1,1787:7396798,35694916 +(1,1787:7396798,35694916:5234169,539955,231411 +r1,1800:7396798,35694916:0,771366,231411 +g1,1787:7724478,35694916 +g1,1787:7724479,35694916 +(1,1787:7724479,35694916:0,459977,115847 +r1,1800:11599863,35694916:3875384,575824,115847 +k1,1787:7724479,35694916:-3875384 +) +(1,1787:7724479,35694916:3875384,459977,115847 +k1,1787:7724479,35694916:3277 +h1,1787:11596586,35694916:0,411205,112570 +) +k1,1787:12303287,35694916:703424 +g1,1787:12630967,35694916 +) +g1,1787:12630967,35694916 +(1,1787:12630967,35694916:11273228,539955,231411 +g1,1787:12958647,35694916 +g1,1787:12958648,35694916 +$1,1787:12958648,35694916 +$1,1787:13634979,35694916 +k1,1787:23576515,35694916:9941536 +g1,1787:23904195,35694916 +) +g1,1787:23904195,35694916 +(1,1788:23904195,35694916:8112038,539955,231411 +g1,1787:24231875,35694916 +g1,1787:24231876,35694916 +g1,1787:27224905,35694916 +$1,1787:27224905,35694916 +(1,1787:27740018,35793230:779158,298648,5505 +) +g1,1787:28701236,35694916 +g1,1787:29451493,35694916 +(1,1787:29966606,35793230:463995,331678,0 +) +$1,1787:30430601,35694916 +k1,1788:31688553,35694916:1257952 +g1,1788:32016233,35694916 +) +g1,1788:32016233,35694916 +) +(1,1789:7396798,36466282:24619435,539955,231411 +g1,1788:7396798,36466282 +(1,1788:7396798,36466282:5234169,539955,231411 +r1,1800:7396798,36466282:0,771366,231411 +g1,1788:7724478,36466282 +g1,1788:7724479,36466282 +(1,1788:7724479,36466282:0,452978,115847 +r1,1800:9489592,36466282:1765113,568825,115847 +k1,1788:7724479,36466282:-1765113 +) +(1,1788:7724479,36466282:1765113,452978,115847 +k1,1788:7724479,36466282:3277 +h1,1788:9486315,36466282:0,411205,112570 +) +k1,1788:12303287,36466282:2813695 +g1,1788:12630967,36466282 +) +g1,1788:12630967,36466282 +(1,1788:12630967,36466282:11273228,539955,231411 +g1,1788:12958647,36466282 +g1,1788:12958648,36466282 +g1,1788:16502179,36466282 +k1,1788:23576515,36466282:4173057 +g1,1788:23904195,36466282 +) +g1,1788:23904195,36466282 +(1,1789:23904195,36466282:8112038,539955,231411 +g1,1788:24231875,36466282 +g1,1788:24231876,36466282 +$1,1788:24231876,36466282 +(1,1788:24746989,36564596:779158,298648,5505 +) +g1,1788:25708207,36466282 +g1,1788:26411278,36466282 +(1,1788:26926391,36564596:463995,331678,0 +) +$1,1788:27390386,36466282 +k1,1789:31688553,36466282:4298167 +g1,1789:32016233,36466282 +) +g1,1789:32016233,36466282 +) +(1,1790:7396798,37237648:24619435,539955,231411 +g1,1789:7396798,37237648 +(1,1789:7396798,37237648:5234169,539955,231411 +r1,1800:7396798,37237648:0,771366,231411 +g1,1789:7724478,37237648 +g1,1789:7724479,37237648 +(1,1789:7724479,37237648:0,452978,115847 +r1,1800:12303287,37237648:4578808,568825,115847 +k1,1789:7724479,37237648:-4578808 +) +(1,1789:7724479,37237648:4578808,452978,115847 +k1,1789:7724479,37237648:3277 +h1,1789:12300010,37237648:0,411205,112570 +) +g1,1789:12303287,37237648 +g1,1789:12630967,37237648 +) +g1,1789:12630967,37237648 +(1,1789:12630967,37237648:11273228,539955,231411 +g1,1789:12958647,37237648 +g1,1789:12958648,37237648 +g1,1789:16502179,37237648 +k1,1789:23576515,37237648:4167159 +g1,1789:23904195,37237648 +) +g1,1789:23904195,37237648 +(1,1790:23904195,37237648:8112038,539955,231411 +g1,1789:24231875,37237648 +g1,1789:24231876,37237648 +$1,1789:24231876,37237648 +(1,1789:24746989,37335962:779158,298648,5505 +) +g1,1789:25708207,37237648 +g1,1789:26411278,37237648 +(1,1789:26926391,37335962:463995,331678,0 +) +$1,1789:27390386,37237648 +k1,1790:31688553,37237648:4298167 +g1,1790:32016233,37237648 +) +g1,1790:32016233,37237648 +) +] +$1,1791:32016233,32235039 +) +g1,1791:32016233,32235039 +) +(1,1791:7197569,37831079:24818664,65536,0 +g1,1791:7197569,37831079 +(1,1791:7197569,37831079:24818664,65536,0 +r1,1800:32016233,37831079:24818664,65536,0 +) +g1,1791:32016233,37831079 +) +] +k1,1791:32583029,37831079:566796 +g1,1791:32583029,37831079 +) +v1,1794:6630773,39196855:0,393216,0 +(1,1795:6630773,41897080:25952256,3093441,0 +g1,1795:6630773,41897080 +g1,1795:6303093,41897080 +r1,1800:6401397,41897080:98304,3093441,0 +g1,1795:6600626,41897080 +g1,1795:6797234,41897080 +[1,1795:6797234,41897080:25785795,3093441,0 +(1,1795:6797234,40087621:25785795,1283982,196608 +(1,1794:6797234,40087621:0,1283982,196608 +r1,1800:8400153,40087621:1602919,1480590,196608 +k1,1794:6797234,40087621:-1602919 +) +(1,1794:6797234,40087621:1602919,1283982,196608 +) +k1,1794:8694922,40087621:294769 +k1,1794:10630713,40087621:294769 +k1,1794:11281342,40087621:294769 +(1,1794:11281342,40087621:0,452978,115847 +r1,1800:13749879,40087621:2468537,568825,115847 +k1,1794:11281342,40087621:-2468537 +) +(1,1794:11281342,40087621:2468537,452978,115847 +k1,1794:11281342,40087621:3277 +h1,1794:13746602,40087621:0,411205,112570 +) +k1,1794:14044648,40087621:294769 +k1,1794:16317294,40087621:294769 +k1,1794:18105629,40087621:294769 +k1,1794:19086559,40087621:294768 +(1,1794:19086559,40087621:0,452978,115847 +r1,1800:26479064,40087621:7392505,568825,115847 +k1,1794:19086559,40087621:-7392505 +) +(1,1794:19086559,40087621:7392505,452978,115847 +g1,1794:19793260,40087621 +g1,1794:20848396,40087621 +g1,1794:22606955,40087621 +g1,1794:23662091,40087621 +g1,1794:24717227,40087621 +g1,1794:25772363,40087621 +h1,1794:26475787,40087621:0,411205,112570 +) +k1,1794:26773833,40087621:294769 +k1,1794:28260047,40087621:294769 +k1,1794:29992021,40087621:294769 +k1,1794:30744887,40087621:294769 +k1,1794:31725818,40087621:294769 +k1,1795:32583029,40087621:0 +) +(1,1795:6797234,40929109:25785795,513147,134348 +k1,1794:9452336,40929109:226993 +k1,1794:10330757,40929109:226993 +k1,1794:11576834,40929109:226992 +k1,1794:14829624,40929109:226993 +k1,1794:15672655,40929109:226993 +k1,1794:16918733,40929109:226993 +k1,1794:18711381,40929109:226993 +k1,1794:20967369,40929109:226993 +k1,1794:22092204,40929109:226992 +k1,1794:23338282,40929109:226993 +k1,1794:28188840,40929109:226993 +k1,1794:32583029,40929109:0 +) +(1,1795:6797234,41770597:25785795,513147,126483 +g1,1794:9929199,41770597 +g1,1794:11621338,41770597 +g1,1794:12991040,41770597 +g1,1794:14181829,41770597 +g1,1794:15761902,41770597 +g1,1794:16612559,41770597 +g1,1794:20476561,41770597 +g1,1794:22224406,41770597 +g1,1794:23875257,41770597 +g1,1794:26769982,41770597 +k1,1795:32583029,41770597:2500857 +g1,1795:32583029,41770597 ) ] -[1,19109:3078558,4812305:0,0,0 -(1,19109:3078558,2439708:0,1703936,0 -g1,19109:29030814,2439708 -g1,19109:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,19109:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 +g1,1795:32583029,41897080 ) +h1,1795:6630773,41897080:0,0,0 ] +(1,1800:32583029,45706769:0,0,0 +g1,1800:32583029,45706769 +) +) +] +(1,1800:6630773,47279633:25952256,0,0 +h1,1800:6630773,47279633:25952256,0,0 +) +] +(1,1800:4262630,4025873:0,0,0 +[1,1800:-473656,4025873:0,0,0 +(1,1800:-473656,-710413:0,0,0 +(1,1800:-473656,-710413:0,0,0 +g1,1800:-473656,-710413 +) +g1,1800:-473656,-710413 +) +] +) +] +!34153 +}37 +Input:548:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:549:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:550:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:551:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:552:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:553:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:554:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:555:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!739 +{38 +[1,1869:4262630,47279633:28320399,43253760,0 +(1,1869:4262630,4025873:0,0,0 +[1,1869:-473656,4025873:0,0,0 +(1,1869:-473656,-710413:0,0,0 +(1,1869:-473656,-644877:0,0,0 +k1,1869:-473656,-644877:-65536 ) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,19109:37855564,2439708:1179648,16384,0 -) -) -k1,19109:3078556,2439708:-34777008 +(1,1869:-473656,4736287:0,0,0 +k1,1869:-473656,4736287:5209943 ) -] -[1,19109:3078558,4812305:0,0,0 -(1,19109:3078558,49800853:0,16384,2228224 -k1,19109:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,19109:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,19109:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 +g1,1869:-473656,-710413 ) ] ) +[1,1869:6630773,47279633:25952256,43253760,0 +[1,1869:6630773,4812305:25952256,786432,0 +(1,1869:6630773,4812305:25952256,505283,134348 +(1,1869:6630773,4812305:25952256,505283,134348 +g1,1869:3078558,4812305 +[1,1869:3078558,4812305:0,0,0 +(1,1869:3078558,2439708:0,1703936,0 +k1,1869:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,1869:2537886,2439708:1179648,16384,0 ) +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,1869:3078558,1915420:16384,1179648,0 ) -] -[1,19109:3078558,4812305:0,0,0 -(1,19109:3078558,49800853:0,16384,2228224 -g1,19109:29030814,49800853 -g1,19109:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,19109:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) ] ) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,19109:37855564,49800853:1179648,16384,0 -) ) -k1,19109:3078556,49800853:-34777008 ) ] -g1,19109:6630773,4812305 -g1,19109:6630773,4812305 -g1,19109:9313817,4812305 -g1,19109:11188146,4812305 -k1,19109:31387652,4812305:20199506 +[1,1869:3078558,4812305:0,0,0 +(1,1869:3078558,2439708:0,1703936,0 +g1,1869:29030814,2439708 +g1,1869:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,1869:36151628,1915420:16384,1179648,0 ) +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) ] -[1,19109:6630773,45706769:25952256,40108032,0 -(1,19109:6630773,45706769:25952256,40108032,0 -(1,19109:6630773,45706769:0,0,0 -g1,19109:6630773,45706769 -) -[1,19109:6630773,45706769:25952256,40108032,0 -(2989,766:6630773,15979697:25952256,10380960,134348 -[2989,766:6630773,15979697:11829248,10380960,102891 -(2989,732:6630773,6254097:11829248,426639,7863 -h2989,731:6630773,6254097:0,0,0 -k2989,732:13534336,6254097:4925686 -k2989,732:18460021,6254097:4925685 -) -(2989,733:6630773,7095585:11829248,505283,134348 -h2989,732:6630773,7095585:0,0,0 -r1,19109:6630773,7095585:0,639631,134348 -g2989,732:7941493,7095585 -g2989,732:7941493,7095585 -g2989,732:9258766,7095585 -g2989,732:11471261,7095585 -g2989,732:14745439,7095585 -k2989,733:17001189,7095585:1458832 -k2989,733:18460021,7095585:1458832 -) -(2989,734:6630773,7937073:11829248,485622,102891 -h2989,733:6630773,7937073:0,0,0 -g2989,733:11196011,7937073 -k2989,734:15425705,7937073:3034317 -k2989,734:18460021,7937073:3034316 -) -(2989,735:6630773,8778561:11829248,505283,102891 -h2989,734:6630773,8778561:0,0,0 -g2989,734:10167095,8778561 -g2989,734:13816139,8778561 -k2989,735:16536539,8778561:1923482 -k2989,735:18460021,8778561:1923482 -) -(2989,736:6630773,9620049:11829248,513147,102891 -h2989,735:6630773,9620049:0,0,0 -g2989,735:10167095,9620049 -g2989,735:12236066,9620049 -k2989,736:15945732,9620049:2514289 -k2989,736:18460021,9620049:2514289 -) -(2989,737:6630773,10461537:11829248,426639,7863 -h2989,736:6630773,10461537:0,0,0 -k2989,737:13699486,10461537:4760535 -k2989,737:18460021,10461537:4760535 -) -(2989,738:6630773,11303025:11829248,505283,134348 -h2989,737:6630773,11303025:0,0,0 -r1,19109:6630773,11303025:0,639631,134348 -g2989,737:7941493,11303025 -g2989,737:7941493,11303025 -g2989,737:11053797,11303025 -k2989,738:15717667,11303025:2742354 -k2989,738:18460021,11303025:2742354 -) -(2989,739:6630773,12144513:11829248,505283,102891 -h2989,738:6630773,12144513:0,0,0 -r1,19109:6630773,12144513:0,608174,102891 -g2989,738:7941493,12144513 -g2989,738:7941493,12144513 -g2989,738:10764128,12144513 -g2989,738:14351568,12144513 -k2989,739:16804254,12144513:1655768 -k2989,739:18460021,12144513:1655767 -) -(2989,740:6630773,12986001:11829248,485622,134348 -h2989,739:6630773,12986001:0,0,0 -r1,19109:6630773,12986001:0,619970,134348 -g2989,739:7941493,12986001 -g2989,739:7941493,12986001 -g2989,739:10574729,12986001 -k2989,740:14915834,12986001:3544187 -k2989,740:18460021,12986001:3544187 -) -(2989,741:6630773,13827489:11829248,505283,134348 -h2989,740:6630773,13827489:0,0,0 -r1,19109:6630773,13827489:0,639631,134348 -g2989,740:7941493,13827489 -g2989,740:7941493,13827489 -g2989,740:9560887,13827489 -g2989,740:11947052,13827489 -k2989,741:15601996,13827489:2858026 -k2989,741:18460021,13827489:2858025 -) -(2989,745:6630773,15138209:11829248,485622,102891 -h2989,744:6630773,15138209:0,0,0 -g2989,744:8296042,15138209 -k2989,745:13975720,15138209:4484301 -k2989,745:18460021,15138209:4484301 -) -(2989,746:6630773,15979697:11829248,505283,102891 -h2989,745:6630773,15979697:0,0,0 -g2989,745:9172914,15979697 -k2989,746:14214927,15979697:4245095 -k2989,746:18460021,15979697:4245094 ) -] -k2989,766:19606901,15979697:1146880 -r1,19109:19606901,15979697:0,10515308,134348 -k2989,766:20753781,15979697:1146880 -[2989,766:20753781,15979697:11829248,10380960,134348 -(2989,747:20753781,6254097:11829248,505283,134348 -h2989,746:20753781,6254097:0,0,0 -g2989,746:23539716,6254097 -g2989,746:26804719,6254097 -k2989,747:31053091,6254097:1529939 -k2989,747:32583029,6254097:1529938 -) -(2989,748:20753781,7098740:11829248,513147,102891 -h2989,747:20753781,7098740:0,0,0 -g2989,747:24767205,7098740 -g2989,747:25933745,7098740 -g2989,747:27522337,7098740 -k2989,748:30990831,7098740:1592198 -k2989,748:32583029,7098740:1592198 -) -(2989,749:20753781,7943382:11829248,505283,126483 -h2989,748:20753781,7943382:0,0,0 -g2989,748:23356215,7943382 -g2989,748:24924491,7943382 -g2989,748:28015824,7943382 -g2989,748:29584100,7943382 -k2989,749:31681253,7943382:901776 -k2989,749:32583029,7943382:901776 -) -(2989,753:20753781,9495964:11829248,485622,102891 -h2989,752:20753781,9495964:0,0,0 -g2989,752:23346384,9495964 -k2989,753:28562395,9495964:4020634 -k2989,753:32583029,9495964:4020634 -) -(2989,754:20753781,10340606:11829248,505283,102891 -h2989,753:20753781,10340606:0,0,0 -g2989,753:22867316,10340606 -g2989,753:24435592,10340606 -k2989,754:29106999,10340606:3476030 -k2989,754:32583029,10340606:3476030 -) -(2989,755:20753781,11185249:11829248,485622,102891 -h2989,754:20753781,11185249:0,0,0 -g2989,754:22450507,11185249 -g2989,754:24018783,11185249 -k2989,755:28898595,11185249:3684435 -k2989,755:32583029,11185249:3684434 -) -(2989,756:20753781,12029892:11829248,505283,102891 -h2989,755:20753781,12029892:0,0,0 -g2989,755:23158951,12029892 -k2989,756:28468679,12029892:4114351 -k2989,756:32583029,12029892:4114350 -) -(2989,757:20753781,12874535:11829248,485622,102891 -h2989,756:20753781,12874535:0,0,0 -g2989,756:22864695,12874535 -k2989,757:28321551,12874535:4261479 -k2989,757:32583029,12874535:4261478 -) -(2989,761:20753781,14427116:11829248,505283,102891 -h2989,760:20753781,14427116:0,0,0 -g2989,760:24248160,14427116 -g2989,760:27353911,14427116 -k2989,761:30566159,14427116:2016871 -k2989,761:32583029,14427116:2016870 -) -(2989,765:20753781,15979697:11829248,505283,134348 -h2989,764:20753781,15979697:0,0,0 -g2989,764:22373175,15979697 -g2989,764:24585670,15979697 -g2989,764:27248397,15979697 -k2989,765:30314172,15979697:2268857 -k2989,765:32583029,15979697:2268857 +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,1869:37855564,2439708:1179648,16384,0 ) -] -(2989,766:32583029,15979697:0,355205,126483 -h2989,766:32583029,15979697:420741,355205,126483 -k2989,766:32583029,15979697:-420741 ) +k1,1869:3078556,2439708:-34777008 ) ] -(1,19109:32583029,45706769:0,0,0 -g1,19109:32583029,45706769 +[1,1869:3078558,4812305:0,0,0 +(1,1869:3078558,49800853:0,16384,2228224 +k1,1869:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,1869:2537886,49800853:1179648,16384,0 ) +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,1869:3078558,51504789:16384,1179648,0 ) -] -(1,19109:6630773,47279633:25952256,0,0 -h1,19109:6630773,47279633:25952256,0,0 +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) ] -(1,19109:4262630,4025873:0,0,0 -[1,19109:-473656,4025873:0,0,0 -(1,19109:-473656,-710413:0,0,0 -(1,19109:-473656,-710413:0,0,0 -g1,19109:-473656,-710413 ) -g1,19109:-473656,-710413 ) -] ) ] -!8854 -}386 -!11 -{387 -[1,19109:4262630,47279633:28320399,43253760,0 -(1,19109:4262630,4025873:0,0,0 -[1,19109:-473656,4025873:0,0,0 -(1,19109:-473656,-710413:0,0,0 -(1,19109:-473656,-644877:0,0,0 -k1,19109:-473656,-644877:-65536 -) -(1,19109:-473656,4736287:0,0,0 -k1,19109:-473656,4736287:5209943 +[1,1869:3078558,4812305:0,0,0 +(1,1869:3078558,49800853:0,16384,2228224 +g1,1869:29030814,49800853 +g1,1869:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,1869:36151628,51504789:16384,1179648,0 ) -g1,19109:-473656,-710413 +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 ) ] ) -[1,19109:6630773,47279633:25952256,43253760,0 -[1,19109:6630773,4812305:25952256,786432,0 -(1,19109:6630773,4812305:25952256,0,0 -(1,19109:6630773,4812305:25952256,0,0 -g1,19109:3078558,4812305 -[1,19109:3078558,4812305:0,0,0 -(1,19109:3078558,2439708:0,1703936,0 -k1,19109:1358238,2439708:-1720320 -(1,19109:1358238,2439708:1720320,1703936,0 -(1,19109:1358238,2439708:1179648,16384,0 -r1,19109:2537886,2439708:1179648,16384,0 -) -g1,19109:3062174,2439708 -(1,19109:3062174,2439708:16384,1703936,0 -[1,19109:3062174,2439708:25952256,1703936,0 -(1,19109:3062174,1915420:25952256,1179648,0 -(1,19109:3062174,1915420:16384,1179648,0 -r1,19109:3078558,1915420:16384,1179648,0 -) -k1,19109:29014430,1915420:25935872 -g1,19109:29014430,1915420 -) -] +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,1869:37855564,49800853:1179648,16384,0 ) ) +k1,1869:3078556,49800853:-34777008 +) +] +g1,1869:6630773,4812305 +g1,1869:6630773,4812305 +g1,1869:8849822,4812305 +g1,1869:11107537,4812305 +g1,1869:12517216,4812305 +g1,1869:15753383,4812305 +g1,1869:18067459,4812305 +k1,1869:31786111,4812305:13718652 +) +) +] +[1,1869:6630773,45706769:25952256,40108032,0 +(1,1869:6630773,45706769:25952256,40108032,0 +(1,1869:6630773,45706769:0,0,0 +g1,1869:6630773,45706769 +) +[1,1869:6630773,45706769:25952256,40108032,0 +(1,1797:6630773,6254097:25952256,32768,229376 +(1,1797:6630773,6254097:0,32768,229376 +(1,1797:6630773,6254097:5505024,32768,229376 +r1,1869:12135797,6254097:5505024,262144,229376 +) +k1,1797:6630773,6254097:-5505024 +) +(1,1797:6630773,6254097:25952256,32768,0 +r1,1869:32583029,6254097:25952256,32768,0 +) +) +(1,1797:6630773,7858425:25952256,606339,161218 +(1,1797:6630773,7858425:1974731,582746,14155 +g1,1797:6630773,7858425 +g1,1797:8605504,7858425 +) +g1,1797:11443737,7858425 +g1,1797:14255232,7858425 +g1,1797:15964935,7858425 +g1,1797:19924620,7858425 +k1,1797:32583029,7858425:9923985 +g1,1797:32583029,7858425 +) +(1,1800:6630773,9093129:25952256,513147,134348 +k1,1799:7551008,9093129:292400 +k1,1799:8609524,9093129:292400 +k1,1799:12547692,9093129:292400 +k1,1799:15831810,9093129:292399 +k1,1799:18166967,9093129:292400 +k1,1799:19662608,9093129:292400 +k1,1799:22407365,9093129:292400 +k1,1799:23568117,9093129:292400 +k1,1799:25335732,9093129:292400 +k1,1799:27141357,9093129:292399 +k1,1799:29393283,9093129:292400 +k1,1799:31753999,9093129:292400 +k1,1800:32583029,9093129:0 +) +(1,1800:6630773,9934617:25952256,505283,134348 +k1,1799:9068166,9934617:295021 +k1,1799:10049349,9934617:295021 +k1,1799:12204283,9934617:295022 +k1,1799:15473983,9934617:295021 +k1,1799:17965115,9934617:295021 +k1,1799:18876174,9934617:295021 +k1,1799:20190280,9934617:295021 +k1,1799:21981488,9934617:295021 +k1,1799:26220467,9934617:295022 +k1,1799:27143323,9934617:295021 +k1,1799:29140314,9934617:295021 +k1,1799:31563944,9934617:295021 +k1,1799:32583029,9934617:0 +) +(1,1800:6630773,10776105:25952256,513147,126483 +k1,1799:8982292,10776105:283203 +k1,1799:10257055,10776105:283203 +k1,1799:13632247,10776105:283203 +k1,1799:14601612,10776105:283203 +k1,1799:16206676,10776105:283203 +k1,1799:17149171,10776105:283203 +k1,1799:18451459,10776105:283203 +k1,1799:20404518,10776105:283202 +k1,1799:22639383,10776105:283203 +k1,1799:24365033,10776105:283203 +k1,1799:25260998,10776105:283203 +k1,1799:26662245,10776105:283203 +k1,1799:28544526,10776105:283203 +k1,1799:29455564,10776105:283203 +k1,1799:31900144,10776105:283203 +k1,1799:32583029,10776105:0 +) +(1,1800:6630773,11617593:25952256,505283,134348 +k1,1799:10005128,11617593:290231 +k1,1799:11314444,11617593:290231 +k1,1799:13564200,11617593:290230 +k1,1799:15592446,11617593:290231 +k1,1799:16534105,11617593:290231 +k1,1799:17572102,11617593:290231 +k1,1799:20637127,11617593:290231 +k1,1799:22264291,11617593:290230 +k1,1799:24084788,11617593:290231 +k1,1799:25026447,11617593:290231 +k1,1799:26064444,11617593:290231 +k1,1799:28846353,11617593:290230 +k1,1799:29749346,11617593:290231 +k1,1799:31157621,11617593:290231 +k1,1799:32583029,11617593:0 +) +(1,1800:6630773,12459081:25952256,505283,134348 +k1,1799:8232473,12459081:236585 +k1,1799:12867835,12459081:236585 +k1,1799:13852186,12459081:236585 +k1,1799:16872740,12459081:236585 +k1,1799:18484926,12459081:236585 +k1,1799:19407673,12459081:236585 +k1,1799:20000117,12459081:236584 +k1,1799:23211381,12459081:236585 +k1,1799:25313776,12459081:236585 +k1,1799:27588531,12459081:236585 +k1,1799:28441154,12459081:236585 +k1,1799:29033599,12459081:236585 +k1,1799:31955194,12459081:236585 +k1,1799:32583029,12459081:0 +) +(1,1800:6630773,13300569:25952256,513147,126483 +k1,1799:8066431,13300569:232417 +k1,1799:9839599,13300569:232417 +k1,1799:12767512,13300569:232417 +(1,1799:12767512,13300569:0,452978,122846 +r1,1869:15587761,13300569:2820249,575824,122846 +k1,1799:12767512,13300569:-2820249 +) +(1,1799:12767512,13300569:2820249,452978,122846 +k1,1799:12767512,13300569:3277 +h1,1799:15584484,13300569:0,411205,112570 +) +k1,1799:15820178,13300569:232417 +k1,1799:17674611,13300569:232417 +k1,1799:18654794,13300569:232417 +k1,1799:20400437,13300569:232417 +k1,1799:22960037,13300569:232417 +k1,1799:23851746,13300569:232417 +k1,1799:25103248,13300569:232417 +k1,1799:28412580,13300569:232417 +(1,1799:28412580,13300569:0,414482,115847 +r1,1869:29122558,13300569:709978,530329,115847 +k1,1799:28412580,13300569:-709978 +) +(1,1799:28412580,13300569:709978,414482,115847 +k1,1799:28412580,13300569:3277 +h1,1799:29119281,13300569:0,411205,112570 +) +k1,1799:29354975,13300569:232417 +k1,1799:30270277,13300569:232417 +(1,1799:30270277,13300569:0,414482,115847 +r1,1869:30980255,13300569:709978,530329,115847 +k1,1799:30270277,13300569:-709978 +) +(1,1799:30270277,13300569:709978,414482,115847 +k1,1799:30270277,13300569:3277 +h1,1799:30976978,13300569:0,411205,112570 +) +k1,1799:31386342,13300569:232417 +k1,1799:32583029,13300569:0 +) +(1,1800:6630773,14142057:25952256,505283,7863 +g1,1799:10346664,14142057 +g1,1799:12414324,14142057 +g1,1799:16646639,14142057 +g1,1799:17634266,14142057 +k1,1800:32583029,14142057:13682607 +g1,1800:32583029,14142057 +) +(1,1802:6630773,14983545:25952256,473825,134348 +h1,1801:6630773,14983545:983040,0,0 +g1,1801:9248936,14983545 +g1,1801:11183558,14983545 +g1,1801:11738647,14983545 +(1,1801:11738647,14983545:0,452978,115847 +r1,1869:14910607,14983545:3171960,568825,115847 +k1,1801:11738647,14983545:-3171960 +) +(1,1801:11738647,14983545:3171960,452978,115847 +k1,1801:11738647,14983545:3277 +h1,1801:14907330,14983545:0,411205,112570 +) +g1,1801:15109836,14983545 +k1,1802:32583029,14983545:14541768 +g1,1802:32583029,14983545 +) +v1,1804:6630773,16005031:0,393216,0 +(1,1812:6630773,17686562:25952256,2074747,196608 +g1,1812:6630773,17686562 +g1,1812:6630773,17686562 +g1,1812:6434165,17686562 +(1,1812:6434165,17686562:0,2074747,196608 +r1,1869:32779637,17686562:26345472,2271355,196608 +k1,1812:6434165,17686562:-26345472 +) +(1,1812:6434165,17686562:26345472,2074747,196608 +[1,1812:6630773,17686562:25952256,1878139,0 +(1,1806:6630773,16212649:25952256,404226,107478 +(1,1805:6630773,16212649:0,0,0 +g1,1805:6630773,16212649 +g1,1805:6630773,16212649 +g1,1805:6303093,16212649 +(1,1805:6303093,16212649:0,0,0 +) +g1,1805:6630773,16212649 +) +k1,1806:6630773,16212649:0 +g1,1806:10424522,16212649 +h1,1806:12005251,16212649:0,0,0 +k1,1806:32583029,16212649:20577778 +g1,1806:32583029,16212649 +) +(1,1807:6630773,16878827:25952256,284164,4718 +h1,1807:6630773,16878827:0,0,0 +h1,1807:6946919,16878827:0,0,0 +k1,1807:32583029,16878827:25636110 +g1,1807:32583029,16878827 +) +(1,1811:6630773,17610541:25952256,404226,76021 +(1,1809:6630773,17610541:0,0,0 +g1,1809:6630773,17610541 +g1,1809:6630773,17610541 +g1,1809:6303093,17610541 +(1,1809:6303093,17610541:0,0,0 +) +g1,1809:6630773,17610541 +) +g1,1811:7579210,17610541 +g1,1811:8843793,17610541 +h1,1811:10108376,17610541:0,0,0 +k1,1811:32583028,17610541:22474652 +g1,1811:32583028,17610541 +) +] +) +g1,1812:32583029,17686562 +g1,1812:6630773,17686562 +g1,1812:6630773,17686562 +g1,1812:32583029,17686562 +g1,1812:32583029,17686562 +) +h1,1812:6630773,17883170:0,0,0 +(1,1815:6630773,19079967:25952256,505283,134348 +h1,1814:6630773,19079967:983040,0,0 +g1,1814:9274495,19079967 +g1,1814:11209117,19079967 +g1,1814:11764206,19079967 +(1,1814:11764206,19079967:0,452978,115847 +r1,1869:14936166,19079967:3171960,568825,115847 +k1,1814:11764206,19079967:-3171960 +) +(1,1814:11764206,19079967:3171960,452978,115847 +k1,1814:11764206,19079967:3277 +h1,1814:14932889,19079967:0,411205,112570 +) +g1,1814:15135395,19079967 +g1,1814:17014967,19079967 +g1,1814:19252366,19079967 +g1,1814:20067633,19079967 +g1,1814:20622722,19079967 +k1,1815:32583029,19079967:9275297 +g1,1815:32583029,19079967 +) +v1,1817:6630773,20101453:0,393216,0 +(1,1826:6630773,22455454:25952256,2747217,196608 +g1,1826:6630773,22455454 +g1,1826:6630773,22455454 +g1,1826:6434165,22455454 +(1,1826:6434165,22455454:0,2747217,196608 +r1,1869:32779637,22455454:26345472,2943825,196608 +k1,1826:6434165,22455454:-26345472 +) +(1,1826:6434165,22455454:26345472,2747217,196608 +[1,1826:6630773,22455454:25952256,2550609,0 +(1,1819:6630773,20315363:25952256,410518,6290 +(1,1818:6630773,20315363:0,0,0 +g1,1818:6630773,20315363 +g1,1818:6630773,20315363 +g1,1818:6303093,20315363 +(1,1818:6303093,20315363:0,0,0 +) +g1,1818:6630773,20315363 +) +g1,1819:10424521,20315363 +g1,1819:11372959,20315363 +h1,1819:12321396,20315363:0,0,0 +k1,1819:32583028,20315363:20261632 +g1,1819:32583028,20315363 +) +(1,1820:6630773,20981541:25952256,410518,107478 +h1,1820:6630773,20981541:0,0,0 +g1,1820:12953687,20981541 +h1,1820:14534416,20981541:0,0,0 +k1,1820:32583028,20981541:18048612 +g1,1820:32583028,20981541 +) +(1,1821:6630773,21647719:25952256,404226,6290 +h1,1821:6630773,21647719:0,0,0 +h1,1821:6946919,21647719:0,0,0 +k1,1821:32583029,21647719:25636110 +g1,1821:32583029,21647719 +) +(1,1825:6630773,22379433:25952256,404226,76021 +(1,1823:6630773,22379433:0,0,0 +g1,1823:6630773,22379433 +g1,1823:6630773,22379433 +g1,1823:6303093,22379433 +(1,1823:6303093,22379433:0,0,0 +) +g1,1823:6630773,22379433 +) +g1,1825:7579210,22379433 +g1,1825:8843793,22379433 +h1,1825:10108376,22379433:0,0,0 +k1,1825:32583028,22379433:22474652 +g1,1825:32583028,22379433 +) +] +) +g1,1826:32583029,22455454 +g1,1826:6630773,22455454 +g1,1826:6630773,22455454 +g1,1826:32583029,22455454 +g1,1826:32583029,22455454 +) +h1,1826:6630773,22652062:0,0,0 +(1,1830:6630773,23848859:25952256,505283,126483 +h1,1829:6630773,23848859:983040,0,0 +k1,1829:9098405,23848859:287905 +k1,1829:10558748,23848859:287904 +k1,1829:11859184,23848859:287905 +k1,1829:15138807,23848859:287904 +k1,1829:17282036,23848859:287905 +k1,1829:18385209,23848859:287905 +k1,1829:19739384,23848859:287904 +k1,1829:24060375,23848859:287905 +k1,1829:25645238,23848859:287905 +k1,1829:27089852,23848859:287904 +k1,1829:28714691,23848859:287905 +k1,1829:30551211,23848859:287904 +k1,1829:31490544,23848859:287905 +k1,1830:32583029,23848859:0 +) +(1,1830:6630773,24690347:25952256,505283,134348 +(1,1829:6630773,24690347:0,452978,122846 +r1,1869:9451022,24690347:2820249,575824,122846 +k1,1829:6630773,24690347:-2820249 +) +(1,1829:6630773,24690347:2820249,452978,122846 +k1,1829:6630773,24690347:3277 +h1,1829:9447745,24690347:0,411205,112570 +) +k1,1829:9795175,24690347:170483 +k1,1829:12864971,24690347:170483 +k1,1829:16192324,24690347:170484 +k1,1829:18281701,24690347:170483 +k1,1829:19320536,24690347:170483 +k1,1829:20827953,24690347:170483 +k1,1829:22547053,24690347:170484 +k1,1829:23368964,24690347:170483 +k1,1829:24631932,24690347:170483 +k1,1829:27777094,24690347:170483 +k1,1829:30143689,24690347:170484 +k1,1829:30965600,24690347:170483 +k1,1829:32583029,24690347:0 +) +(1,1830:6630773,25531835:25952256,513147,134348 +k1,1829:9017453,25531835:192535 +k1,1829:9892874,25531835:192536 +k1,1829:12783526,25531835:192535 +k1,1829:14935587,25531835:192535 +k1,1829:17196439,25531835:192536 +k1,1829:18380534,25531835:192535 +k1,1829:19178622,25531835:192535 +k1,1829:21069196,25531835:192536 +k1,1829:22130083,25531835:192535 +k1,1829:24004273,25531835:192536 +k1,1829:25907953,25531835:192535 +k1,1829:26751916,25531835:192535 +k1,1829:29374527,25531835:192536 +k1,1829:31635378,25531835:192535 +k1,1829:32583029,25531835:0 +) +(1,1830:6630773,26373323:25952256,505283,134348 +k1,1829:9143674,26373323:223073 +k1,1829:11222727,26373323:223073 +k1,1829:15372717,26373323:223073 +k1,1829:16278675,26373323:223073 +k1,1829:17187910,26373323:223073 +(1,1829:17187910,26373323:0,452978,115847 +r1,1869:20359870,26373323:3171960,568825,115847 +k1,1829:17187910,26373323:-3171960 +) +(1,1829:17187910,26373323:3171960,452978,115847 +k1,1829:17187910,26373323:3277 +h1,1829:20356593,26373323:0,411205,112570 +) +k1,1829:20582943,26373323:223073 +k1,1829:22369051,26373323:223074 +k1,1829:23197677,26373323:223073 +k1,1829:25118788,26373323:223073 +k1,1829:25957899,26373323:223073 +k1,1829:26536832,26373323:223073 +k1,1829:28174827,26373323:223073 +k1,1829:29266252,26373323:223073 +k1,1829:32583029,26373323:0 +) +(1,1830:6630773,27214811:25952256,513147,134348 +k1,1829:7196567,27214811:209934 +k1,1829:9384377,27214811:209933 +k1,1829:10277196,27214811:209934 +k1,1829:11480656,27214811:209934 +k1,1829:12349881,27214811:209933 +k1,1829:14519341,27214811:209934 +k1,1829:16971262,27214811:209934 +k1,1829:17864080,27214811:209933 +k1,1829:18679567,27214811:209934 +k1,1829:19757853,27214811:209934 +k1,1829:22991617,27214811:209933 +k1,1829:23814313,27214811:209934 +k1,1829:26567699,27214811:209934 +k1,1829:28737158,27214811:209933 +k1,1829:31015408,27214811:209934 +k1,1829:32583029,27214811:0 +) +(1,1830:6630773,28056299:25952256,505283,134348 +k1,1829:9529583,28056299:227563 +k1,1829:12731826,28056299:227564 +k1,1829:15155500,28056299:227563 +k1,1829:17237732,28056299:227563 +k1,1829:18274666,28056299:227564 +k1,1829:19891592,28056299:227563 +k1,1829:20802040,28056299:227563 +k1,1829:23715269,28056299:227564 +k1,1829:24430392,28056299:227535 +k1,1829:27435371,28056299:227563 +k1,1829:29030015,28056299:227563 +k1,1829:29789076,28056299:227564 +k1,1829:31714677,28056299:227563 +k1,1829:32583029,28056299:0 +) +(1,1830:6630773,28897787:25952256,513147,134348 +k1,1829:8984130,28897787:171663 +k1,1829:10545156,28897787:171663 +k1,1829:12284441,28897787:171664 +k1,1829:12811964,28897787:171663 +k1,1829:14209806,28897787:171663 +k1,1829:15364509,28897787:171663 +k1,1829:16727618,28897787:171664 +k1,1829:17767633,28897787:171663 +k1,1829:19487912,28897787:171663 +k1,1829:20311003,28897787:171663 +k1,1829:22220682,28897787:171664 +k1,1829:23411430,28897787:171663 +k1,1829:25542619,28897787:171663 +k1,1829:28831174,28897787:171663 +k1,1829:29654266,28897787:171664 +k1,1829:30845014,28897787:171663 +k1,1829:32583029,28897787:0 +) +(1,1830:6630773,29739275:25952256,513147,134348 +k1,1829:7477352,29739275:187287 +k1,1829:8683725,29739275:187288 +k1,1829:9854052,29739275:187287 +k1,1829:10850709,29739275:187287 +k1,1829:12556465,29739275:187287 +k1,1829:13426638,29739275:187288 +k1,1829:13969785,29739275:187287 +k1,1829:17131751,29739275:187287 +k1,1829:19184848,29739275:187287 +k1,1829:20784437,29739275:187288 +k1,1829:22539345,29739275:187287 +k1,1829:23745717,29739275:187287 +k1,1829:26107490,29739275:187288 +k1,1829:26907539,29739275:187287 +k1,1829:28113911,29739275:187287 +k1,1829:29373367,29739275:187287 +k1,1829:30219947,29739275:187288 +k1,1829:31426319,29739275:187287 +k1,1830:32583029,29739275:0 +k1,1830:32583029,29739275:0 +) +(1,1832:6630773,30580763:25952256,513147,126483 +h1,1831:6630773,30580763:983040,0,0 +g1,1831:10417443,30580763 +g1,1831:11983753,30580763 +g1,1831:12714479,30580763 +g1,1831:14611746,30580763 +(1,1831:14611746,30580763:0,452978,115847 +r1,1869:17783706,30580763:3171960,568825,115847 +k1,1831:14611746,30580763:-3171960 +) +(1,1831:14611746,30580763:3171960,452978,115847 +k1,1831:14611746,30580763:3277 +h1,1831:17780429,30580763:0,411205,112570 +) +g1,1831:17982935,30580763 +g1,1831:20192809,30580763 +g1,1831:21383598,30580763 +g1,1831:22601912,30580763 +g1,1831:24644013,30580763 +g1,1831:25502534,30580763 +g1,1831:26057623,30580763 +k1,1832:32583029,30580763:2287848 +g1,1832:32583029,30580763 +) +v1,1834:6630773,31602249:0,393216,0 +(1,1844:6630773,34622428:25952256,3413395,196608 +g1,1844:6630773,34622428 +g1,1844:6630773,34622428 +g1,1844:6434165,34622428 +(1,1844:6434165,34622428:0,3413395,196608 +r1,1869:32779637,34622428:26345472,3610003,196608 +k1,1844:6434165,34622428:-26345472 +) +(1,1844:6434165,34622428:26345472,3413395,196608 +[1,1844:6630773,34622428:25952256,3216787,0 +(1,1836:6630773,31816159:25952256,410518,76021 +(1,1835:6630773,31816159:0,0,0 +g1,1835:6630773,31816159 +g1,1835:6630773,31816159 +g1,1835:6303093,31816159 +(1,1835:6303093,31816159:0,0,0 +) +g1,1835:6630773,31816159 +) +k1,1836:6630773,31816159:0 +g1,1836:7895356,31816159 +g1,1836:8843793,31816159 +g1,1836:9792230,31816159 +g1,1836:11372960,31816159 +h1,1836:11689106,31816159:0,0,0 +k1,1836:32583030,31816159:20893924 +g1,1836:32583030,31816159 +) +(1,1837:6630773,32482337:25952256,404226,107478 +h1,1837:6630773,32482337:0,0,0 +g1,1837:6946919,32482337 +g1,1837:7263065,32482337 +g1,1837:7579211,32482337 +g1,1837:13902125,32482337 +g1,1837:14850563,32482337 +g1,1837:16115146,32482337 +g1,1837:16747438,32482337 +g1,1837:18328167,32482337 +h1,1837:19592751,32482337:0,0,0 +k1,1837:32583029,32482337:12990278 +g1,1837:32583029,32482337 +) +(1,1838:6630773,33148515:25952256,404226,76021 +h1,1838:6630773,33148515:0,0,0 +h1,1838:6946919,33148515:0,0,0 +k1,1838:32583029,33148515:25636110 +g1,1838:32583029,33148515 +) +(1,1839:6630773,33814693:25952256,404226,101187 +h1,1839:6630773,33814693:0,0,0 +g1,1839:10108376,33814693 +g1,1839:10740668,33814693 +h1,1839:12953688,33814693:0,0,0 +k1,1839:32583028,33814693:19629340 +g1,1839:32583028,33814693 +) +(1,1843:6630773,34546407:25952256,404226,76021 +(1,1841:6630773,34546407:0,0,0 +g1,1841:6630773,34546407 +g1,1841:6630773,34546407 +g1,1841:6303093,34546407 +(1,1841:6303093,34546407:0,0,0 +) +g1,1841:6630773,34546407 +) +g1,1843:7579210,34546407 +g1,1843:8843793,34546407 +g1,1843:11056813,34546407 +g1,1843:13269833,34546407 +g1,1843:15482853,34546407 +g1,1843:17695873,34546407 +h1,1843:19592747,34546407:0,0,0 +k1,1843:32583029,34546407:12990282 +g1,1843:32583029,34546407 +) +] +) +g1,1844:32583029,34622428 +g1,1844:6630773,34622428 +g1,1844:6630773,34622428 +g1,1844:32583029,34622428 +g1,1844:32583029,34622428 +) +h1,1844:6630773,34819036:0,0,0 +(1,1848:6630773,36015833:25952256,513147,134348 +h1,1847:6630773,36015833:983040,0,0 +k1,1847:9091095,36015833:280595 +k1,1847:14337353,36015833:280595 +k1,1847:17692242,36015833:280595 +k1,1847:18632129,36015833:280595 +k1,1847:21892646,36015833:280595 +k1,1847:22529101,36015833:280595 +k1,1847:24547711,36015833:280595 +k1,1847:25479734,36015833:280595 +k1,1847:26531032,36015833:280595 +k1,1847:28771153,36015833:280595 +k1,1847:29583245,36015833:280595 +k1,1847:30515268,36015833:280595 +k1,1847:31812326,36015833:280595 +k1,1847:32583029,36015833:0 +) +(1,1848:6630773,36857321:25952256,505283,134348 +k1,1847:8820658,36857321:230359 +k1,1847:10749055,36857321:230359 +k1,1847:11847767,36857321:230360 +k1,1847:13553341,36857321:230359 +k1,1847:16567669,36857321:230359 +k1,1847:17586426,36857321:230359 +k1,1847:19554800,36857321:230359 +k1,1847:20471321,36857321:230359 +k1,1847:21057541,36857321:230360 +k1,1847:24262579,36857321:230359 +k1,1847:26532418,36857321:230359 +k1,1847:27959464,36857321:230359 +k1,1847:32583029,36857321:0 +) +(1,1848:6630773,37698809:25952256,513147,122846 +g1,1847:9525498,37698809 +g1,1847:10256224,37698809 +(1,1847:10256224,37698809:0,452978,122846 +r1,1869:12021337,37698809:1765113,575824,122846 +k1,1847:10256224,37698809:-1765113 +) +(1,1847:10256224,37698809:1765113,452978,122846 +k1,1847:10256224,37698809:3277 +h1,1847:12018060,37698809:0,411205,112570 +) +k1,1848:32583029,37698809:20388022 +g1,1848:32583029,37698809 +) +v1,1850:6630773,38720295:0,393216,0 +(1,1863:6630773,41788900:25952256,3461821,196608 +g1,1863:6630773,41788900 +g1,1863:6630773,41788900 +g1,1863:6434165,41788900 +(1,1863:6434165,41788900:0,3461821,196608 +r1,1869:32779637,41788900:26345472,3658429,196608 +k1,1863:6434165,41788900:-26345472 +) +(1,1863:6434165,41788900:26345472,3461821,196608 +[1,1863:6630773,41788900:25952256,3265213,0 +(1,1852:6630773,38927913:25952256,404226,107478 +(1,1851:6630773,38927913:0,0,0 +g1,1851:6630773,38927913 +g1,1851:6630773,38927913 +g1,1851:6303093,38927913 +(1,1851:6303093,38927913:0,0,0 +) +g1,1851:6630773,38927913 +) +k1,1852:6630773,38927913:0 +h1,1852:9159939,38927913:0,0,0 +k1,1852:32583029,38927913:23423090 +g1,1852:32583029,38927913 +) +(1,1856:6630773,39659627:25952256,404226,76021 +(1,1854:6630773,39659627:0,0,0 +g1,1854:6630773,39659627 +g1,1854:6630773,39659627 +g1,1854:6303093,39659627 +(1,1854:6303093,39659627:0,0,0 +) +g1,1854:6630773,39659627 +) +g1,1856:7579210,39659627 +g1,1856:8843793,39659627 +h1,1856:10108376,39659627:0,0,0 +k1,1856:32583028,39659627:22474652 +g1,1856:32583028,39659627 +) +(1,1858:6630773,40981165:25952256,404226,107478 +(1,1857:6630773,40981165:0,0,0 +g1,1857:6630773,40981165 +g1,1857:6630773,40981165 +g1,1857:6303093,40981165 +(1,1857:6303093,40981165:0,0,0 +) +g1,1857:6630773,40981165 +) +k1,1858:6630773,40981165:0 +h1,1858:9159939,40981165:0,0,0 +k1,1858:32583029,40981165:23423090 +g1,1858:32583029,40981165 +) +(1,1862:6630773,41712879:25952256,404226,76021 +(1,1860:6630773,41712879:0,0,0 +g1,1860:6630773,41712879 +g1,1860:6630773,41712879 +g1,1860:6303093,41712879 +(1,1860:6303093,41712879:0,0,0 +) +g1,1860:6630773,41712879 +) +g1,1862:7579210,41712879 +g1,1862:8843793,41712879 +h1,1862:10108376,41712879:0,0,0 +k1,1862:32583028,41712879:22474652 +g1,1862:32583028,41712879 +) +] +) +g1,1863:32583029,41788900 +g1,1863:6630773,41788900 +g1,1863:6630773,41788900 +g1,1863:32583029,41788900 +g1,1863:32583029,41788900 +) +h1,1863:6630773,41985508:0,0,0 +(1,1867:6630773,43182305:25952256,513147,134348 +h1,1866:6630773,43182305:983040,0,0 +k1,1866:8276634,43182305:185064 +k1,1866:9330049,43182305:185063 +k1,1866:10990328,43182305:185064 +k1,1866:13959360,43182305:185063 +k1,1866:14500284,43182305:185064 +k1,1866:17660027,43182305:185064 +k1,1866:19822967,43182305:185063 +k1,1866:23370028,43182305:185064 +k1,1866:25514618,43182305:185064 +k1,1866:27767997,43182305:185063 +k1,1866:29144506,43182305:185064 +k1,1866:30197921,43182305:185063 +k1,1866:31931601,43182305:185064 +k1,1866:32583029,43182305:0 +) +(1,1867:6630773,44023793:25952256,513147,134348 +k1,1866:8788268,44023793:228115 +k1,1866:9372242,44023793:228114 +k1,1866:10593883,44023793:228115 +k1,1866:14183995,44023793:228115 +k1,1866:16108836,44023793:228114 +k1,1866:18626779,44023793:228115 +k1,1866:19723246,44023793:228115 +k1,1866:21055643,44023793:228115 +k1,1866:22376242,44023793:228114 +k1,1866:25299853,44023793:228115 +(1,1866:25299853,44023793:0,452978,122846 +r1,1869:27416678,44023793:2116825,575824,122846 +k1,1866:25299853,44023793:-2116825 +) +(1,1866:25299853,44023793:2116825,452978,122846 +k1,1866:25299853,44023793:3277 +h1,1866:27413401,44023793:0,411205,112570 +) +k1,1866:27818463,44023793:228115 +k1,1866:28674412,44023793:228114 +k1,1866:29921612,44023793:228115 +k1,1866:32583029,44023793:0 +) +(1,1867:6630773,44865281:25952256,513147,134348 +k1,1866:8681662,44865281:182458 +k1,1866:9732473,44865281:182459 +k1,1866:11007416,44865281:182458 +k1,1866:13885371,44865281:182459 +(1,1866:13885371,44865281:0,452978,115847 +r1,1869:15298772,44865281:1413401,568825,115847 +k1,1866:13885371,44865281:-1413401 +) +(1,1866:13885371,44865281:1413401,452978,115847 +k1,1866:13885371,44865281:3277 +h1,1866:15295495,44865281:0,411205,112570 +) +k1,1866:15481230,44865281:182458 +k1,1866:16315116,44865281:182458 +k1,1866:18521327,44865281:182459 +k1,1866:19059645,44865281:182458 +k1,1866:22216782,44865281:182458 +k1,1866:24377118,44865281:182459 +k1,1866:25218868,44865281:182458 +k1,1866:27360853,44865281:182459 +k1,1866:29611627,44865281:182458 +k1,1866:32583029,44865281:0 +) +(1,1867:6630773,45706769:25952256,513147,134348 +g1,1866:7185862,45706769 +g1,1866:9782398,45706769 +g1,1866:12322573,45706769 +g1,1866:13713247,45706769 +g1,1866:15346404,45706769 +g1,1866:17621814,45706769 +g1,1866:18587159,45706769 +g1,1866:20483115,45706769 +g1,1866:22972172,45706769 +g1,1866:24438867,45706769 +g1,1866:24993956,45706769 +k1,1867:32583029,45706769:6421877 +g1,1867:32583029,45706769 +) +] +(1,1869:32583029,45706769:0,0,0 +g1,1869:32583029,45706769 +) +) +] +(1,1869:6630773,47279633:25952256,0,0 +h1,1869:6630773,47279633:25952256,0,0 +) +] +(1,1869:4262630,4025873:0,0,0 +[1,1869:-473656,4025873:0,0,0 +(1,1869:-473656,-710413:0,0,0 +(1,1869:-473656,-710413:0,0,0 +g1,1869:-473656,-710413 +) +g1,1869:-473656,-710413 +) +] +) +] +!25917 +}38 +Input:556:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:557:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:558:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:559:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:560:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:561:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:562:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:563:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!739 +{39 +[1,1917:4262630,47279633:28320399,43253760,0 +(1,1917:4262630,4025873:0,0,0 +[1,1917:-473656,4025873:0,0,0 +(1,1917:-473656,-710413:0,0,0 +(1,1917:-473656,-644877:0,0,0 +k1,1917:-473656,-644877:-65536 +) +(1,1917:-473656,4736287:0,0,0 +k1,1917:-473656,4736287:5209943 ) -] -[1,19109:3078558,4812305:0,0,0 -(1,19109:3078558,2439708:0,1703936,0 -g1,19109:29030814,2439708 -g1,19109:36135244,2439708 -(1,19109:36135244,2439708:1720320,1703936,0 -(1,19109:36135244,2439708:16384,1703936,0 -[1,19109:36135244,2439708:25952256,1703936,0 -(1,19109:36135244,1915420:25952256,1179648,0 -(1,19109:36135244,1915420:16384,1179648,0 -r1,19109:36151628,1915420:16384,1179648,0 -) -k1,19109:62087500,1915420:25935872 -g1,19109:62087500,1915420 +g1,1917:-473656,-710413 ) ] ) -g1,19109:36675916,2439708 -(1,19109:36675916,2439708:1179648,16384,0 -r1,19109:37855564,2439708:1179648,16384,0 +[1,1917:6630773,47279633:25952256,43253760,0 +[1,1917:6630773,4812305:25952256,786432,0 +(1,1917:6630773,4812305:25952256,505283,134348 +(1,1917:6630773,4812305:25952256,505283,134348 +g1,1917:3078558,4812305 +[1,1917:3078558,4812305:0,0,0 +(1,1917:3078558,2439708:0,1703936,0 +k1,1917:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,1917:2537886,2439708:1179648,16384,0 ) +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,1917:3078558,1915420:16384,1179648,0 ) -k1,19109:3078556,2439708:-34777008 -) -] -[1,19109:3078558,4812305:0,0,0 -(1,19109:3078558,49800853:0,16384,2228224 -k1,19109:1358238,49800853:-1720320 -(1,19109:1358238,49800853:1720320,16384,2228224 -(1,19109:1358238,49800853:1179648,16384,0 -r1,19109:2537886,49800853:1179648,16384,0 -) -g1,19109:3062174,49800853 -(1,19109:3062174,52029077:16384,1703936,0 -[1,19109:3062174,52029077:25952256,1703936,0 -(1,19109:3062174,51504789:25952256,1179648,0 -(1,19109:3062174,51504789:16384,1179648,0 -r1,19109:3078558,51504789:16384,1179648,0 -) -k1,19109:29014430,51504789:25935872 -g1,19109:29014430,51504789 +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) ] ) ) ) ] -[1,19109:3078558,4812305:0,0,0 -(1,19109:3078558,49800853:0,16384,2228224 -g1,19109:29030814,49800853 -g1,19109:36135244,49800853 -(1,19109:36135244,49800853:1720320,16384,2228224 -(1,19109:36135244,52029077:16384,1703936,0 -[1,19109:36135244,52029077:25952256,1703936,0 -(1,19109:36135244,51504789:25952256,1179648,0 -(1,19109:36135244,51504789:16384,1179648,0 -r1,19109:36151628,51504789:16384,1179648,0 -) -k1,19109:62087500,51504789:25935872 -g1,19109:62087500,51504789 +[1,1917:3078558,4812305:0,0,0 +(1,1917:3078558,2439708:0,1703936,0 +g1,1917:29030814,2439708 +g1,1917:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,1917:36151628,1915420:16384,1179648,0 +) +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) ] ) -g1,19109:36675916,49800853 -(1,19109:36675916,49800853:1179648,16384,0 -r1,19109:37855564,49800853:1179648,16384,0 +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,1917:37855564,2439708:1179648,16384,0 ) ) -k1,19109:3078556,49800853:-34777008 +k1,1917:3078556,2439708:-34777008 ) ] -g1,19109:6630773,4812305 +[1,1917:3078558,4812305:0,0,0 +(1,1917:3078558,49800853:0,16384,2228224 +k1,1917:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,1917:2537886,49800853:1179648,16384,0 ) +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,1917:3078558,51504789:16384,1179648,0 ) -] -[1,19109:6630773,45706769:0,40108032,0 -(1,19109:6630773,45706769:0,40108032,0 -(1,19109:6630773,45706769:0,0,0 -g1,19109:6630773,45706769 +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) -[1,19109:6630773,45706769:0,40108032,0 -h1,19109:6630773,6254097:0,0,0 ] -(1,19109:6630773,45706769:0,0,0 -g1,19109:6630773,45706769 ) ) -] -(1,19109:6630773,47279633:25952256,0,0 -h1,19109:6630773,47279633:25952256,0,0 ) ] -(1,19109:4262630,4025873:0,0,0 -[1,19109:-473656,4025873:0,0,0 -(1,19109:-473656,-710413:0,0,0 -(1,19109:-473656,-710413:0,0,0 -g1,19109:-473656,-710413 +[1,1917:3078558,4812305:0,0,0 +(1,1917:3078558,49800853:0,16384,2228224 +g1,1917:29030814,49800853 +g1,1917:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,1917:36151628,51504789:16384,1179648,0 ) -g1,19109:-473656,-710413 +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 ) ] ) -] -!3399 -}387 -Input:2990:C:\Users\Aphalo\Documents\Own_manuscripts\Books\learnr-book-crc-2ed\rcatsidx.ind -!103 -{388 -[2990,86:4262630,47279633:28320399,43253760,11795 -(2990,86:4262630,4025873:0,0,0 -[2990,86:-473656,4025873:0,0,0 -(2990,86:-473656,-710413:0,0,0 -(2990,86:-473656,-644877:0,0,0 -k2990,86:-473656,-644877:-65536 -) -(2990,86:-473656,4736287:0,0,0 -k2990,86:-473656,4736287:5209943 -) -g2990,86:-473656,-710413 +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,1917:37855564,49800853:1179648,16384,0 ) -] ) -[2990,86:6630773,47279633:25952256,43253760,11795 -[2990,86:6630773,4812305:25952256,786432,0 -(2990,86:6630773,4812305:25952256,0,0 -(2990,86:6630773,4812305:25952256,0,0 -g2990,86:3078558,4812305 -[2990,86:3078558,4812305:0,0,0 -(2990,86:3078558,2439708:0,1703936,0 -k2990,86:1358238,2439708:-1720320 -(2990,1:1358238,2439708:1720320,1703936,0 -(2990,1:1358238,2439708:1179648,16384,0 -r2990,86:2537886,2439708:1179648,16384,0 -) -g2990,1:3062174,2439708 -(2990,1:3062174,2439708:16384,1703936,0 -[2990,1:3062174,2439708:25952256,1703936,0 -(2990,1:3062174,1915420:25952256,1179648,0 -(2990,1:3062174,1915420:16384,1179648,0 -r2990,86:3078558,1915420:16384,1179648,0 -) -k2990,1:29014430,1915420:25935872 -g2990,1:29014430,1915420 +k1,1917:3078556,49800853:-34777008 ) ] +g1,1917:6630773,4812305 +k1,1917:18771974,4812305:11344283 +g1,1917:20158715,4812305 +g1,1917:20807521,4812305 +g1,1917:24121676,4812305 +g1,1917:28605649,4812305 +g1,1917:30015328,4812305 +) +) +] +[1,1917:6630773,45706769:25952256,40108032,0 +(1,1917:6630773,45706769:25952256,40108032,0 +(1,1917:6630773,45706769:0,0,0 +g1,1917:6630773,45706769 +) +[1,1917:6630773,45706769:25952256,40108032,0 +v1,1869:6630773,6254097:0,393216,0 +(1,1883:6630773,11907006:25952256,6046125,196608 +g1,1883:6630773,11907006 +g1,1883:6630773,11907006 +g1,1883:6434165,11907006 +(1,1883:6434165,11907006:0,6046125,196608 +r1,1917:32779637,11907006:26345472,6242733,196608 +k1,1883:6434165,11907006:-26345472 +) +(1,1883:6434165,11907006:26345472,6046125,196608 +[1,1883:6630773,11907006:25952256,5849517,0 +(1,1871:6630773,6461715:25952256,404226,107478 +(1,1870:6630773,6461715:0,0,0 +g1,1870:6630773,6461715 +g1,1870:6630773,6461715 +g1,1870:6303093,6461715 +(1,1870:6303093,6461715:0,0,0 +) +g1,1870:6630773,6461715 +) +g1,1871:9792230,6461715 +g1,1871:10740668,6461715 +g1,1871:14218271,6461715 +g1,1871:14850563,6461715 +h1,1871:17063583,6461715:0,0,0 +k1,1871:32583029,6461715:15519446 +g1,1871:32583029,6461715 +) +(1,1872:6630773,7127893:25952256,404226,107478 +h1,1872:6630773,7127893:0,0,0 +g1,1872:9159939,7127893 +g1,1872:10108377,7127893 +k1,1872:10108377,7127893:0 +h1,1872:14850562,7127893:0,0,0 +k1,1872:32583030,7127893:17732468 +g1,1872:32583030,7127893 +) +(1,1873:6630773,7794071:25952256,404226,107478 +h1,1873:6630773,7794071:0,0,0 +k1,1873:6630773,7794071:0 +h1,1873:10424521,7794071:0,0,0 +k1,1873:32583029,7794071:22158508 +g1,1873:32583029,7794071 +) +(1,1882:6630773,8525785:25952256,410518,9436 +(1,1875:6630773,8525785:0,0,0 +g1,1875:6630773,8525785 +g1,1875:6630773,8525785 +g1,1875:6303093,8525785 +(1,1875:6303093,8525785:0,0,0 +) +g1,1875:6630773,8525785 +) +g1,1882:7579210,8525785 +g1,1882:9159939,8525785 +g1,1882:10108376,8525785 +h1,1882:10424522,8525785:0,0,0 +k1,1882:32583030,8525785:22158508 +g1,1882:32583030,8525785 +) +(1,1882:6630773,9191963:25952256,410518,50331 +h1,1882:6630773,9191963:0,0,0 +g1,1882:7579210,9191963 +g1,1882:7895356,9191963 +g1,1882:8527648,9191963 +g1,1882:10424522,9191963 +g1,1882:11689105,9191963 +h1,1882:12005251,9191963:0,0,0 +k1,1882:32583029,9191963:20577778 +g1,1882:32583029,9191963 +) +(1,1882:6630773,9858141:25952256,410518,50331 +h1,1882:6630773,9858141:0,0,0 +g1,1882:7579210,9858141 +g1,1882:7895356,9858141 +g1,1882:8527648,9858141 +g1,1882:10424522,9858141 +g1,1882:11689105,9858141 +h1,1882:12005251,9858141:0,0,0 +k1,1882:32583029,9858141:20577778 +g1,1882:32583029,9858141 +) +(1,1882:6630773,10524319:25952256,410518,50331 +h1,1882:6630773,10524319:0,0,0 +g1,1882:7579210,10524319 +g1,1882:7895356,10524319 +g1,1882:8527648,10524319 +g1,1882:10424522,10524319 +g1,1882:11689105,10524319 +h1,1882:12005251,10524319:0,0,0 +k1,1882:32583029,10524319:20577778 +g1,1882:32583029,10524319 +) +(1,1882:6630773,11190497:25952256,410518,50331 +h1,1882:6630773,11190497:0,0,0 +g1,1882:7579210,11190497 +g1,1882:7895356,11190497 +g1,1882:8527648,11190497 +g1,1882:10424522,11190497 +g1,1882:11689105,11190497 +h1,1882:12321396,11190497:0,0,0 +k1,1882:32583028,11190497:20261632 +g1,1882:32583028,11190497 +) +(1,1882:6630773,11856675:25952256,410518,50331 +h1,1882:6630773,11856675:0,0,0 +g1,1882:7579210,11856675 +g1,1882:7895356,11856675 +g1,1882:8527648,11856675 +g1,1882:10424522,11856675 +g1,1882:11689105,11856675 +h1,1882:12321396,11856675:0,0,0 +k1,1882:32583028,11856675:20261632 +g1,1882:32583028,11856675 +) +] +) +g1,1883:32583029,11907006 +g1,1883:6630773,11907006 +g1,1883:6630773,11907006 +g1,1883:32583029,11907006 +g1,1883:32583029,11907006 +) +h1,1883:6630773,12103614:0,0,0 +v1,1887:6630773,13993678:0,393216,0 +(1,1888:6630773,17535391:25952256,3934929,0 +g1,1888:6630773,17535391 +g1,1888:6303093,17535391 +r1,1917:6401397,17535391:98304,3934929,0 +g1,1888:6600626,17535391 +g1,1888:6797234,17535391 +[1,1888:6797234,17535391:25785795,3934929,0 +(1,1888:6797234,14884444:25785795,1283982,196608 +(1,1887:6797234,14884444:0,1283982,196608 +r1,1917:9362479,14884444:2565245,1480590,196608 +k1,1887:6797234,14884444:-2565245 +) +(1,1887:6797234,14884444:2565245,1283982,196608 +) +k1,1887:9539209,14884444:176730 +k1,1887:11573885,14884444:176730 +k1,1887:12409907,14884444:176730 +k1,1887:15216597,14884444:176730 +k1,1887:16816114,14884444:176730 +k1,1887:17652135,14884444:176729 +k1,1887:20854662,14884444:176730 +(1,1887:20854662,14884444:0,452978,122846 +r1,1917:23674911,14884444:2820249,575824,122846 +k1,1887:20854662,14884444:-2820249 +) +(1,1887:20854662,14884444:2820249,452978,122846 +k1,1887:20854662,14884444:3277 +h1,1887:23671634,14884444:0,411205,112570 +) +k1,1887:24025311,14884444:176730 +(1,1887:24025311,14884444:0,452978,122846 +r1,1917:25790424,14884444:1765113,575824,122846 +k1,1887:24025311,14884444:-1765113 +) +(1,1887:24025311,14884444:1765113,452978,122846 +k1,1887:24025311,14884444:3277 +h1,1887:25787147,14884444:0,411205,112570 +) +k1,1887:25967154,14884444:176730 +k1,1887:27335329,14884444:176730 +(1,1887:27335329,14884444:0,452978,122846 +r1,1917:29452154,14884444:2116825,575824,122846 +k1,1887:27335329,14884444:-2116825 +) +(1,1887:27335329,14884444:2116825,452978,122846 +k1,1887:27335329,14884444:3277 +h1,1887:29448877,14884444:0,411205,112570 +) +k1,1887:29628884,14884444:176730 +k1,1887:30421652,14884444:176730 +k1,1887:32583029,14884444:0 +) +(1,1888:6797234,15725932:25785795,513147,126483 +k1,1887:8213249,15725932:245542 +k1,1887:9551275,15725932:245541 +k1,1887:10479702,15725932:245542 +k1,1887:12494060,15725932:245541 +k1,1887:13832087,15725932:245542 +k1,1887:14729057,15725932:245542 +k1,1887:17404673,15725932:245541 +k1,1887:19109046,15725932:245542 +k1,1887:20684968,15725932:245541 +k1,1887:22319873,15725932:245542 +k1,1887:23455394,15725932:245542 +k1,1887:25268556,15725932:245541 +k1,1887:27216068,15725932:245542 +k1,1887:30281623,15725932:245541 +k1,1887:32227169,15725932:245542 +k1,1887:32583029,15725932:0 +) +(1,1888:6797234,16567420:25785795,505283,126483 +k1,1887:8819020,16567420:190710 +k1,1887:9661157,16567420:190709 +k1,1887:13285298,16567420:190710 +k1,1887:14852919,16567420:190710 +k1,1887:16235073,16567420:190709 +k1,1887:19604279,16567420:190710 +k1,1887:20986434,16567420:190710 +k1,1887:22368589,16567420:190710 +k1,1887:24431006,16567420:190709 +k1,1887:25824957,16567420:190710 +k1,1887:27846743,16567420:190710 +k1,1887:29530362,16567420:190709 +k1,1887:30740157,16567420:190710 +k1,1887:32583029,16567420:0 +) +(1,1888:6797234,17408908:25785795,505283,126483 +g1,1887:10037334,17408908 +g1,1887:10998091,17408908 +g1,1887:12216405,17408908 +g1,1887:14246710,17408908 +g1,1887:17104735,17408908 +g1,1887:18762795,17408908 +k1,1888:32583029,17408908:9621998 +g1,1888:32583029,17408908 +) +] +g1,1888:32583029,17535391 +) +h1,1888:6630773,17535391:0,0,0 +(1,1890:6630773,20342959:25952256,32768,229376 +(1,1890:6630773,20342959:0,32768,229376 +(1,1890:6630773,20342959:5505024,32768,229376 +r1,1917:12135797,20342959:5505024,262144,229376 +) +k1,1890:6630773,20342959:-5505024 +) +(1,1890:6630773,20342959:25952256,32768,0 +r1,1917:32583029,20342959:25952256,32768,0 +) +) +(1,1890:6630773,21947287:25952256,615776,151780 +(1,1890:6630773,21947287:1974731,573309,0 +g1,1890:6630773,21947287 +g1,1890:8605504,21947287 +) +g1,1890:10368685,21947287 +g1,1890:13916280,21947287 +g1,1890:16205584,21947287 +g1,1890:17263335,21947287 +k1,1890:32583029,21947287:13168802 +g1,1890:32583029,21947287 +) +(1,1893:6630773,23719704:25952256,1161885,196608 +(1,1892:6630773,23719704:0,1161885,196608 +r1,1917:8178409,23719704:1547636,1358493,196608 +k1,1892:6630773,23719704:-1547636 +) +(1,1892:6630773,23719704:1547636,1161885,196608 +) +k1,1892:8333150,23719704:154741 +k1,1892:9316921,23719704:154741 +k1,1892:11082538,23719704:154742 +k1,1892:12440520,23719704:154741 +k1,1892:15186555,23719704:154741 +k1,1892:15554244,23719704:154697 +k1,1892:16841447,23719704:154741 +k1,1892:19645809,23719704:154741 +k1,1892:21492690,23719704:154741 +k1,1892:24653567,23719704:154741 +k1,1892:27183334,23719704:154742 +k1,1892:27997367,23719704:154741 +k1,1892:29171193,23719704:154741 +k1,1892:29740733,23719704:154697 +k1,1892:32583029,23719704:0 +) +(1,1893:6630773,24561192:25952256,513147,134348 +k1,1892:8161148,24561192:245869 +k1,1892:9398577,24561192:245869 +k1,1892:11621667,24561192:245869 +k1,1892:13565574,24561192:245869 +k1,1892:16069158,24561192:245869 +k1,1892:19001349,24561192:245870 +k1,1892:22273015,24561192:245869 +k1,1892:23689357,24561192:245869 +k1,1892:24926786,24561192:245869 +k1,1892:26931641,24561192:245869 +k1,1892:29736036,24561192:245869 +k1,1892:31000990,24561192:245869 +k1,1892:32583029,24561192:0 +) +(1,1893:6630773,25402680:25952256,513147,134348 +k1,1892:10786972,25402680:138187 +k1,1892:12095632,25402680:138187 +k1,1892:13366281,25402680:138187 +k1,1892:15053085,25402680:138188 +k1,1892:15842700,25402680:138187 +k1,1892:17991532,25402680:138187 +k1,1892:18781147,25402680:138187 +k1,1892:20122575,25402680:138187 +k1,1892:22539449,25402680:138187 +k1,1892:24190862,25402680:138187 +k1,1892:26731600,25402680:138188 +k1,1892:29617712,25402680:138187 +(1,1892:29617712,25402680:661914,485622,0 +) +k1,1892:30417813,25402680:138187 +k1,1892:31747445,25402680:138187 +(1,1892:31747445,25402680:661914,485622,0 +) +k1,1892:32583029,25402680:0 +) +(1,1893:6630773,26244168:25952256,513147,134348 +k1,1892:7454966,26244168:196358 +k1,1892:8670410,26244168:196359 +k1,1892:10520241,26244168:196358 +k1,1892:11954574,26244168:196358 +k1,1892:12837094,26244168:196358 +k1,1892:13901805,26244168:196359 +k1,1892:15202445,26244168:196358 +k1,1892:17405515,26244168:196358 +k1,1892:19670189,26244168:196358 +k1,1892:20517976,26244168:196359 +(1,1892:20517976,26244168:0,452978,115847 +r1,1917:22986513,26244168:2468537,568825,115847 +k1,1892:20517976,26244168:-2468537 +) +(1,1892:20517976,26244168:2468537,452978,115847 +k1,1892:20517976,26244168:3277 +h1,1892:22983236,26244168:0,411205,112570 +) +k1,1892:23356541,26244168:196358 +(1,1892:23356541,26244168:0,452978,115847 +r1,1917:26528501,26244168:3171960,568825,115847 +k1,1892:23356541,26244168:-3171960 +) +(1,1892:23356541,26244168:3171960,452978,115847 +k1,1892:23356541,26244168:3277 +h1,1892:26525224,26244168:0,411205,112570 +) +k1,1892:26724859,26244168:196358 +k1,1892:28112662,26244168:196358 +k1,1892:30010991,26244168:196359 +k1,1892:31923737,26244168:196358 +k1,1892:32583029,26244168:0 +) +(1,1893:6630773,27085656:25952256,513147,134348 +k1,1892:9250549,27085656:156278 +k1,1892:10275179,27085656:156278 +k1,1892:11535739,27085656:156278 +k1,1892:13698729,27085656:156278 +k1,1892:15923323,27085656:156278 +k1,1892:16731029,27085656:156278 +k1,1892:19913105,27085656:156279 +k1,1892:21260828,27085656:156278 +k1,1892:25361063,27085656:156278 +k1,1892:26470890,27085656:156278 +k1,1892:27731450,27085656:156278 +k1,1892:29173544,27085656:156278 +k1,1892:31259202,27085656:156278 +k1,1892:32583029,27085656:0 +) +(1,1893:6630773,27927144:25952256,513147,134348 +k1,1892:7516584,27927144:226519 +k1,1892:10768900,27927144:226519 +k1,1892:13205292,27927144:226518 +k1,1892:17375768,27927144:226519 +k1,1892:18798974,27927144:226519 +k1,1892:19440308,27927144:226491 +k1,1892:22509123,27927144:226519 +k1,1892:23836647,27927144:226519 +k1,1892:24419025,27927144:226518 +k1,1892:25999518,27927144:226519 +k1,1892:29506769,27927144:226519 +k1,1892:32583029,27927144:0 +) +(1,1893:6630773,28768632:25952256,513147,134348 +k1,1892:8219541,28768632:194817 +k1,1892:9180473,28768632:194816 +k1,1892:10699117,28768632:194817 +k1,1892:12085379,28768632:194817 +k1,1892:14588373,28768632:194816 +k1,1892:17649079,28768632:194817 +k1,1892:18459934,28768632:194817 +k1,1892:19673835,28768632:194816 +k1,1892:21522125,28768632:194817 +k1,1892:23128588,28768632:194817 +k1,1892:24520091,28768632:194816 +k1,1892:28320043,28768632:194817 +k1,1892:29174152,28768632:194817 +k1,1892:30572209,28768632:194816 +k1,1892:31298523,28768632:194817 +k1,1892:32583029,28768632:0 +) +(1,1893:6630773,29610120:25952256,513147,134348 +k1,1892:7640901,29610120:141776 +k1,1892:8886959,29610120:141776 +k1,1892:11035447,29610120:141776 +k1,1892:13939567,29610120:141777 +k1,1892:17107140,29610120:141776 +k1,1892:17931801,29610120:141776 +k1,1892:21843863,29610120:141776 +k1,1892:22637067,29610120:141776 +k1,1892:23134703,29610120:141776 +k1,1892:24971241,29610120:141777 +k1,1892:27024702,29610120:141776 +k1,1892:28357923,29610120:141776 +k1,1892:32583029,29610120:0 +) +(1,1893:6630773,30451608:25952256,513147,126483 +g1,1892:7288099,30451608 +g1,1892:8018825,30451608 +g1,1892:10848014,30451608 +g1,1892:11698671,30451608 +g1,1892:13512707,30451608 +g1,1892:15457160,30451608 +g1,1892:17043786,30451608 +g1,1892:18566842,30451608 +g1,1892:19425363,30451608 +g1,1892:22650389,30451608 +g1,1892:23532503,30451608 +k1,1893:32583029,30451608:5106569 +g1,1893:32583029,30451608 +) +(1,1895:6630773,31293096:25952256,513147,126483 +h1,1894:6630773,31293096:983040,0,0 +k1,1894:8421263,31293096:179615 +k1,1894:9804120,31293096:179616 +k1,1894:11289868,31293096:179615 +k1,1894:14130901,31293096:179616 +k1,1894:15178868,31293096:179615 +k1,1894:16450969,31293096:179616 +k1,1894:16986444,31293096:179615 +k1,1894:20202997,31293096:179615 +k1,1894:22314614,31293096:179616 +k1,1894:23110267,31293096:179615 +k1,1894:25887075,31293096:179616 +k1,1894:28298846,31293096:179615 +k1,1894:29669907,31293096:179616 +k1,1894:30942007,31293096:179615 +k1,1895:32583029,31293096:0 +) +(1,1895:6630773,32134584:25952256,513147,134348 +k1,1894:8108709,32134584:210470 +(1,1894:8108709,32134584:0,452978,115847 +r1,1917:11280669,32134584:3171960,568825,115847 +k1,1894:8108709,32134584:-3171960 +) +(1,1894:8108709,32134584:3171960,452978,115847 +k1,1894:8108709,32134584:3277 +h1,1894:11277392,32134584:0,411205,112570 +) +k1,1894:11491139,32134584:210470 +k1,1894:12387771,32134584:210470 +k1,1894:13056338,32134584:210470 +k1,1894:15645110,32134584:210470 +k1,1894:17711560,32134584:210470 +k1,1894:20896708,32134584:210469 +k1,1894:23303289,32134584:210470 +k1,1894:24196644,32134584:210470 +k1,1894:27102610,32134584:210470 +k1,1894:29381396,32134584:210470 +k1,1894:30278028,32134584:210470 +k1,1894:31276896,32134584:210470 +k1,1894:32583029,32134584:0 +) +(1,1895:6630773,32976072:25952256,505283,134348 +k1,1894:10043590,32976072:166819 +k1,1894:11163958,32976072:166819 +k1,1894:13354528,32976072:166818 +k1,1894:13877207,32976072:166819 +k1,1894:16664155,32976072:166819 +k1,1894:18808851,32976072:166819 +k1,1894:20369621,32976072:166819 +k1,1894:22695196,32976072:166819 +k1,1894:25815722,32976072:166818 +k1,1894:27376492,32976072:166819 +k1,1894:29611627,32976072:166819 +k1,1894:32583029,32976072:0 +) +(1,1895:6630773,33817560:25952256,513147,7863 +g1,1894:7849087,33817560 +g1,1894:10743812,33817560 +k1,1895:32583029,33817560:19597230 +g1,1895:32583029,33817560 +) +v1,1897:6630773,35008026:0,393216,0 +(1,1911:6630773,40620040:25952256,6005230,196608 +g1,1911:6630773,40620040 +g1,1911:6630773,40620040 +g1,1911:6434165,40620040 +(1,1911:6434165,40620040:0,6005230,196608 +r1,1917:32779637,40620040:26345472,6201838,196608 +k1,1911:6434165,40620040:-26345472 +) +(1,1911:6434165,40620040:26345472,6005230,196608 +[1,1911:6630773,40620040:25952256,5808622,0 +(1,1899:6630773,35215644:25952256,404226,76021 +(1,1898:6630773,35215644:0,0,0 +g1,1898:6630773,35215644 +g1,1898:6630773,35215644 +g1,1898:6303093,35215644 +(1,1898:6303093,35215644:0,0,0 +) +g1,1898:6630773,35215644 +) +g1,1899:7263065,35215644 +g1,1899:8211503,35215644 +k1,1899:8211503,35215644:0 +h1,1899:11056814,35215644:0,0,0 +k1,1899:32583030,35215644:21526216 +g1,1899:32583030,35215644 +) +(1,1900:6630773,35881822:25952256,404226,76021 +h1,1900:6630773,35881822:0,0,0 +g1,1900:9159939,35881822 +g1,1900:10108377,35881822 +k1,1900:10108377,35881822:0 +h1,1900:12953688,35881822:0,0,0 +k1,1900:32583028,35881822:19629340 +g1,1900:32583028,35881822 +) +(1,1901:6630773,36548000:25952256,410518,82312 +h1,1901:6630773,36548000:0,0,0 +g1,1901:9792230,36548000 +g1,1901:10740668,36548000 +g1,1901:13902126,36548000 +g1,1901:16115146,36548000 +h1,1901:18012020,36548000:0,0,0 +k1,1901:32583029,36548000:14571009 +g1,1901:32583029,36548000 +) +(1,1902:6630773,37214178:25952256,410518,76021 +h1,1902:6630773,37214178:0,0,0 +g1,1902:7895356,37214178 +g1,1902:10424522,37214178 +g1,1902:11372959,37214178 +g1,1902:14850562,37214178 +h1,1902:15166708,37214178:0,0,0 +k1,1902:32583028,37214178:17416320 +g1,1902:32583028,37214178 +) +(1,1903:6630773,37880356:25952256,410518,82312 +h1,1903:6630773,37880356:0,0,0 +g1,1903:6946919,37880356 +g1,1903:7263065,37880356 +g1,1903:7579211,37880356 +g1,1903:13269834,37880356 +g1,1903:14218272,37880356 +g1,1903:19276604,37880356 +k1,1903:19276604,37880356:0 +h1,1903:21805770,37880356:0,0,0 +k1,1903:32583029,37880356:10777259 +g1,1903:32583029,37880356 +) +(1,1904:6630773,38546534:25952256,404226,76021 +h1,1904:6630773,38546534:0,0,0 +g1,1904:6946919,38546534 +g1,1904:7263065,38546534 +g1,1904:7579211,38546534 +h1,1904:7895357,38546534:0,0,0 +k1,1904:32583029,38546534:24687672 +g1,1904:32583029,38546534 +) +(1,1905:6630773,39212712:25952256,404226,6290 +h1,1905:6630773,39212712:0,0,0 +h1,1905:8843793,39212712:0,0,0 +k1,1905:32583029,39212712:23739236 +g1,1905:32583029,39212712 +) +(1,1910:6630773,39944426:25952256,404226,6290 +(1,1907:6630773,39944426:0,0,0 +g1,1907:6630773,39944426 +g1,1907:6630773,39944426 +g1,1907:6303093,39944426 +(1,1907:6303093,39944426:0,0,0 +) +g1,1907:6630773,39944426 +) +g1,1910:7579210,39944426 +g1,1910:7895356,39944426 +g1,1910:8211502,39944426 +g1,1910:8527648,39944426 +g1,1910:8843794,39944426 +g1,1910:9159940,39944426 +g1,1910:9476086,39944426 +g1,1910:11056815,39944426 +g1,1910:11372961,39944426 +g1,1910:11689107,39944426 +g1,1910:12005253,39944426 +g1,1910:12321399,39944426 +g1,1910:12637545,39944426 +g1,1910:12953691,39944426 +g1,1910:13269837,39944426 +g1,1910:14534420,39944426 +g1,1910:14850566,39944426 +g1,1910:15166712,39944426 +g1,1910:15482858,39944426 +g1,1910:15799004,39944426 +g1,1910:16115150,39944426 +g1,1910:16431296,39944426 +g1,1910:16747442,39944426 +h1,1910:17695879,39944426:0,0,0 +k1,1910:32583029,39944426:14887150 +g1,1910:32583029,39944426 +) +(1,1910:6630773,40610604:25952256,388497,9436 +h1,1910:6630773,40610604:0,0,0 +g1,1910:7579210,40610604 +g1,1910:7895356,40610604 +g1,1910:11056813,40610604 +g1,1910:11372959,40610604 +g1,1910:14534416,40610604 +k1,1910:14534416,40610604:0 +h1,1910:17695873,40610604:0,0,0 +k1,1910:32583029,40610604:14887156 +g1,1910:32583029,40610604 +) +] +) +g1,1911:32583029,40620040 +g1,1911:6630773,40620040 +g1,1911:6630773,40620040 +g1,1911:32583029,40620040 +g1,1911:32583029,40620040 +) +h1,1911:6630773,40816648:0,0,0 +(1,1915:6630773,42182424:25952256,513147,134348 +h1,1914:6630773,42182424:983040,0,0 +k1,1914:9559839,42182424:162791 +k1,1914:12937172,42182424:162792 +k1,1914:13455823,42182424:162791 +k1,1914:14518424,42182424:162792 +k1,1914:15297253,42182424:162791 +k1,1914:18368533,42182424:162792 +k1,1914:19147362,42182424:162791 +k1,1914:19666014,42182424:162792 +k1,1914:21417398,42182424:162791 +k1,1914:22448542,42182424:162792 +k1,1914:23912878,42182424:162791 +k1,1914:25094755,42182424:162792 +k1,1914:27934036,42182424:162791 +k1,1914:29381334,42182424:162792 +k1,1914:30412477,42182424:162791 +k1,1914:32583029,42182424:0 +) +(1,1915:6630773,43023912:25952256,513147,134348 +k1,1914:8945112,43023912:283378 +k1,1914:10247574,43023912:283377 +k1,1914:12966270,43023912:283378 +k1,1914:15317963,43023912:283377 +k1,1914:16260633,43023912:283378 +k1,1914:17563095,43023912:283377 +k1,1914:20872270,43023912:283378 +k1,1914:21841809,43023912:283377 +k1,1914:23673803,43023912:283378 +k1,1914:24488677,43023912:283377 +k1,1914:26810225,43023912:283378 +k1,1914:27709640,43023912:283377 +k1,1914:29012103,43023912:283378 +k1,1914:30289007,43023912:283378 +k1,1914:31563944,43023912:283377 +k1,1914:32583029,43023912:0 +) +(1,1915:6630773,43865400:25952256,513147,102891 +k1,1914:10284708,43865400:241475 +k1,1914:11185475,43865400:241475 +k1,1914:12446035,43865400:241475 +k1,1914:15886977,43865400:241474 +k1,1914:16756287,43865400:241475 +k1,1914:18201003,43865400:241475 +k1,1914:19983229,43865400:241475 +k1,1914:21093056,43865400:241475 +k1,1914:22438813,43865400:241475 +k1,1914:24115525,43865400:241474 +k1,1914:25376085,43865400:241475 +k1,1914:28313056,43865400:241475 +k1,1914:31966991,43865400:241475 +k1,1914:32583029,43865400:0 +) +(1,1915:6630773,44706888:25952256,513147,126483 +k1,1914:7787128,44706888:137270 +k1,1914:9339321,44706888:137271 +k1,1914:11987931,44706888:137270 +(1,1914:12195025,44706888:0,459977,115847 +r1,1917:12553291,44706888:358266,575824,115847 +k1,1914:12195025,44706888:-358266 +) +(1,1914:12195025,44706888:358266,459977,115847 +k1,1914:12195025,44706888:3277 +h1,1914:12550014,44706888:0,411205,112570 +) +k1,1914:12690561,44706888:137270 +k1,1914:13443870,44706888:137271 +k1,1914:14600225,44706888:137270 +k1,1914:16708164,44706888:137271 +k1,1914:18920959,44706888:137270 +k1,1914:20249674,44706888:137270 +k1,1914:21486639,44706888:137271 +k1,1914:22642994,44706888:137270 +k1,1914:25806061,44706888:137270 +k1,1914:26704860,44706888:137271 +k1,1914:27934615,44706888:137270 +k1,1914:28731178,44706888:137271 +k1,1914:29887533,44706888:137270 +k1,1914:32583029,44706888:0 +) +(1,1915:6630773,45548376:25952256,505283,126483 +g1,1914:7929696,45548376 +g1,1914:10818523,45548376 +(1,1914:11025617,45548376:0,459977,115847 +r1,1917:12087306,45548376:1061689,575824,115847 +k1,1914:11025617,45548376:-1061689 +) +(1,1914:11025617,45548376:1061689,459977,115847 +k1,1914:11025617,45548376:3277 +h1,1914:12084029,45548376:0,411205,112570 +) +g1,1914:12667299,45548376 +g1,1914:13820077,45548376 +g1,1914:16043058,45548376 +g1,1914:16598147,45548376 +g1,1914:19417505,45548376 +g1,1914:21594611,45548376 +g1,1914:23187791,45548376 +g1,1914:27087838,45548376 +k1,1915:32583029,45548376:2367813 +g1,1915:32583029,45548376 +) +] +(1,1917:32583029,45706769:0,0,0 +g1,1917:32583029,45706769 +) +) +] +(1,1917:6630773,47279633:25952256,0,0 +h1,1917:6630773,47279633:25952256,0,0 +) +] +(1,1917:4262630,4025873:0,0,0 +[1,1917:-473656,4025873:0,0,0 +(1,1917:-473656,-710413:0,0,0 +(1,1917:-473656,-710413:0,0,0 +g1,1917:-473656,-710413 +) +g1,1917:-473656,-710413 +) +] +) +] +!24450 +}39 +Input:564:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:565:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:566:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:567:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:568:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:569:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:570:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!648 +{40 +[1,1992:4262630,47279633:28320399,43253760,0 +(1,1992:4262630,4025873:0,0,0 +[1,1992:-473656,4025873:0,0,0 +(1,1992:-473656,-710413:0,0,0 +(1,1992:-473656,-644877:0,0,0 +k1,1992:-473656,-644877:-65536 ) +(1,1992:-473656,4736287:0,0,0 +k1,1992:-473656,4736287:5209943 ) +g1,1992:-473656,-710413 ) ] -[2990,86:3078558,4812305:0,0,0 -(2990,86:3078558,2439708:0,1703936,0 -g2990,86:29030814,2439708 -g2990,86:36135244,2439708 -(2990,1:36135244,2439708:1720320,1703936,0 -(2990,1:36135244,2439708:16384,1703936,0 -[2990,1:36135244,2439708:25952256,1703936,0 -(2990,1:36135244,1915420:25952256,1179648,0 -(2990,1:36135244,1915420:16384,1179648,0 -r2990,86:36151628,1915420:16384,1179648,0 -) -k2990,1:62087500,1915420:25935872 -g2990,1:62087500,1915420 -) -] -) -g2990,1:36675916,2439708 -(2990,1:36675916,2439708:1179648,16384,0 -r2990,86:37855564,2439708:1179648,16384,0 ) +[1,1992:6630773,47279633:25952256,43253760,0 +[1,1992:6630773,4812305:25952256,786432,0 +(1,1992:6630773,4812305:25952256,513147,126483 +(1,1992:6630773,4812305:25952256,513147,126483 +g1,1992:3078558,4812305 +[1,1992:3078558,4812305:0,0,0 +(1,1992:3078558,2439708:0,1703936,0 +k1,1992:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,1992:2537886,2439708:1179648,16384,0 ) -k2990,86:3078556,2439708:-34777008 +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,1992:3078558,1915420:16384,1179648,0 ) -] -[2990,86:3078558,4812305:0,0,0 -(2990,86:3078558,49800853:0,16384,2228224 -k2990,86:1358238,49800853:-1720320 -(2990,1:1358238,49800853:1720320,16384,2228224 -(2990,1:1358238,49800853:1179648,16384,0 -r2990,86:2537886,49800853:1179648,16384,0 -) -g2990,1:3062174,49800853 -(2990,1:3062174,52029077:16384,1703936,0 -[2990,1:3062174,52029077:25952256,1703936,0 -(2990,1:3062174,51504789:25952256,1179648,0 -(2990,1:3062174,51504789:16384,1179648,0 -r2990,86:3078558,51504789:16384,1179648,0 -) -k2990,1:29014430,51504789:25935872 -g2990,1:29014430,51504789 +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) ] ) ) ) ] -[2990,86:3078558,4812305:0,0,0 -(2990,86:3078558,49800853:0,16384,2228224 -g2990,86:29030814,49800853 -g2990,86:36135244,49800853 -(2990,1:36135244,49800853:1720320,16384,2228224 -(2990,1:36135244,52029077:16384,1703936,0 -[2990,1:36135244,52029077:25952256,1703936,0 -(2990,1:36135244,51504789:25952256,1179648,0 -(2990,1:36135244,51504789:16384,1179648,0 -r2990,86:36151628,51504789:16384,1179648,0 -) -k2990,1:62087500,51504789:25935872 -g2990,1:62087500,51504789 +[1,1992:3078558,4812305:0,0,0 +(1,1992:3078558,2439708:0,1703936,0 +g1,1992:29030814,2439708 +g1,1992:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,1992:36151628,1915420:16384,1179648,0 +) +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) ] ) -g2990,1:36675916,49800853 -(2990,1:36675916,49800853:1179648,16384,0 -r2990,86:37855564,49800853:1179648,16384,0 +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,1992:37855564,2439708:1179648,16384,0 ) ) -k2990,86:3078556,49800853:-34777008 +k1,1992:3078556,2439708:-34777008 ) ] -g2990,86:6630773,4812305 +[1,1992:3078558,4812305:0,0,0 +(1,1992:3078558,49800853:0,16384,2228224 +k1,1992:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,1992:2537886,49800853:1179648,16384,0 ) +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,1992:3078558,51504789:16384,1179648,0 ) -] -[2990,86:6630773,45706769:25952256,40108032,0 -(2990,86:6630773,45706769:25952256,40108032,0 -(2990,86:6630773,45706769:0,0,0 -g2990,86:6630773,45706769 -) -[2990,86:6630773,45706769:25952256,40108032,0 -[2990,1:6630773,12106481:25952256,6507744,0 -(2990,1:6630773,7073297:25952256,32768,229376 -(2990,1:6630773,7073297:0,32768,229376 -(2990,1:6630773,7073297:5505024,32768,229376 -r2990,86:12135797,7073297:5505024,262144,229376 -) -k2990,1:6630773,7073297:-5505024 -) -) -(2990,1:6630773,8803457:25952256,923664,241827 -h2990,1:6630773,8803457:0,0,0 -g2990,1:10235777,8803457 -g2990,1:11799990,8803457 -g2990,1:12964302,8803457 -g2990,1:17208675,8803457 -g2990,1:19014716,8803457 -k2990,1:28388200,8803457:4194829 -k2990,1:32583029,8803457:4194829 -) -(2990,1:6630773,9419505:25952256,32768,0 -(2990,1:6630773,9419505:5505024,32768,0 -r2990,86:12135797,9419505:5505024,32768,0 -) -k2990,1:22359413,9419505:10223616 -k2990,1:32583029,9419505:10223616 -) -] -(2990,86:6630773,45706769:25952256,32627728,126483 -[2990,86:6630773,45706769:11829248,32627728,102891 -(2990,4:6630773,13734401:11829248,505283,7863 -h2990,3:6630773,13734401:0,0,0 -g2990,3:9062814,13734401 -g2990,3:10453488,13734401 -k2990,4:15513195,13734401:2946826 -k2990,4:18460021,13734401:2946826 -) -(2990,5:6630773,14599148:11829248,485622,126483 -h2990,4:6630773,14599148:0,0,0 -r2990,86:6630773,14599148:0,612105,126483 -g2990,4:7941493,14599148 -g2990,4:7941493,14599148 -g2990,4:10290302,14599148 -g2990,4:11460119,14599148 -k2990,5:15358529,14599148:3101492 -k2990,5:18460021,14599148:3101492 -) -(2990,6:6630773,15463894:11829248,505283,102891 -h2990,5:6630773,15463894:0,0,0 -r2990,86:6630773,15463894:0,608174,102891 -g2990,5:7941493,15463894 -g2990,5:7941493,15463894 -g2990,5:9895120,15463894 -k2990,6:14775259,15463894:3684762 -k2990,6:18460021,15463894:3684762 -) -(2990,7:6630773,16328641:11829248,505283,102891 -h2990,6:6630773,16328641:0,0,0 -r2990,86:6630773,16328641:0,608174,102891 -g2990,6:7941493,16328641 -g2990,6:7941493,16328641 -g2990,6:11871031,16328641 -g2990,6:13040848,16328641 -g2990,6:14210665,16328641 -k2990,7:16733802,16328641:1726219 -k2990,7:18460021,16328641:1726219 -) -(2990,8:6630773,17193388:11829248,513147,102891 -h2990,7:6630773,17193388:0,0,0 -r2990,86:6630773,17193388:0,616038,102891 -g2990,7:7941493,17193388 -g2990,7:7941493,17193388 -g2990,7:12266213,17193388 -g2990,7:13436030,17193388 -g2990,7:14605847,17193388 -g2990,7:16174123,17193388 -k2990,8:17914761,17193388:545261 -k2990,8:18460021,17193388:545260 -) -(2990,9:6630773,18058134:11829248,505283,102891 -h2990,8:6630773,18058134:0,0,0 -r2990,86:6630773,18058134:0,608174,102891 -g2990,8:7941493,18058134 -g2990,8:7941493,18058134 -g2990,8:10685485,18058134 -g2990,8:11855302,18058134 -g2990,8:13025119,18058134 -g2990,8:14194936,18058134 -k2990,9:16725938,18058134:1734084 -k2990,9:18460021,18058134:1734083 -) -(2990,10:6630773,18922881:11829248,513147,102891 -h2990,9:6630773,18922881:0,0,0 -r2990,86:6630773,18922881:0,616038,102891 -g2990,9:7941493,18922881 -g2990,9:7941493,18922881 -g2990,9:10685485,18922881 -k2990,10:14971212,18922881:3488809 -k2990,10:18460021,18922881:3488809 -) -(2990,11:6630773,19787628:11829248,513147,102891 -h2990,10:6630773,19787628:0,0,0 -r2990,86:6630773,19787628:0,616038,102891 -g2990,10:7941493,19787628 -g2990,10:7941493,19787628 -g2990,10:11080667,19787628 -g2990,10:12648943,19787628 -k2990,11:16152171,19787628:2307851 -k2990,11:18460021,19787628:2307850 -) -(2990,12:6630773,20652374:11829248,505283,134348 -h2990,11:6630773,20652374:0,0,0 -r2990,86:6630773,20652374:0,639631,134348 -g2990,11:7941493,20652374 -g2990,11:7941493,20652374 -g2990,11:11080667,20652374 -g2990,11:12250484,20652374 -g2990,11:13420301,20652374 -g2990,11:14590118,20652374 -k2990,12:16923529,20652374:1536493 -k2990,12:18460021,20652374:1536492 -) -(2990,13:6630773,21517121:11829248,505283,102891 -h2990,12:6630773,21517121:0,0,0 -r2990,86:6630773,21517121:0,608174,102891 -g2990,12:7941493,21517121 -g2990,12:7941493,21517121 -g2990,12:9895120,21517121 -g2990,12:11064937,21517121 -g2990,12:12234754,21517121 -g2990,12:13404571,21517121 -g2990,12:14972847,21517121 -g2990,12:16541123,21517121 -k2990,13:18098261,21517121:361761 -k2990,13:18460021,21517121:361760 -) -(2990,14:6630773,22381868:11829248,505283,102891 -h2990,13:6630773,22381868:0,0,0 -r2990,86:6630773,22381868:0,608174,102891 -g2990,13:7941493,22381868 -g2990,13:7941493,22381868 -g2990,13:9104756,22381868 -k2990,14:14380077,22381868:4079944 -k2990,14:18460021,22381868:4079944 -) -(2990,15:6630773,23246614:11829248,505283,134348 -h2990,14:6630773,23246614:0,0,0 -r2990,86:6630773,23246614:0,639631,134348 -g2990,14:7941493,23246614 -g2990,14:7941493,23246614 -g2990,14:11080667,23246614 -g2990,14:12250484,23246614 -g2990,14:13420301,23246614 -g2990,14:14988577,23246614 -k2990,15:17321988,23246614:1138034 -k2990,15:18460021,23246614:1138033 -) -(2990,16:6630773,24111361:11829248,505283,102891 -h2990,15:6630773,24111361:0,0,0 -r2990,86:6630773,24111361:0,608174,102891 -g2990,15:7941493,24111361 -g2990,15:7941493,24111361 -g2990,15:10685485,24111361 -g2990,15:11855302,24111361 -g2990,15:13025119,24111361 -g2990,15:14194936,24111361 -g2990,15:15364753,24111361 -k2990,16:17510076,24111361:949946 -k2990,16:18460021,24111361:949945 -) -(2990,17:6630773,24976108:11829248,505283,102891 -h2990,16:6630773,24976108:0,0,0 -r2990,86:6630773,24976108:0,608174,102891 -g2990,16:7941493,24976108 -g2990,16:7941493,24976108 -g2990,16:11080667,24976108 -g2990,16:12250484,24976108 -g2990,16:13420301,24976108 -g2990,16:14590118,24976108 -g2990,16:15759935,24976108 -g2990,16:16929752,24976108 -k2990,17:18292575,24976108:167446 -k2990,17:18460021,24976108:167446 -) -(2990,18:6630773,25840854:11829248,505283,102891 -h2990,17:6630773,25840854:0,0,0 -r2990,86:6630773,25840854:0,608174,102891 -g2990,17:7941493,25840854 -g2990,17:7941493,25840854 -g2990,17:9499938,25840854 -k2990,18:14577668,25840854:3882353 -k2990,18:18460021,25840854:3882353 -) -(2990,19:6630773,26705601:11829248,513147,102891 -h2990,18:6630773,26705601:0,0,0 -r2990,86:6630773,26705601:0,616038,102891 -g2990,18:7941493,26705601 -g2990,18:7941493,26705601 -g2990,18:10685485,26705601 -k2990,19:15170442,26705601:3289580 -k2990,19:18460021,26705601:3289579 -) -(2990,20:6630773,27570348:11829248,505283,102891 -h2990,19:6630773,27570348:0,0,0 -r2990,86:6630773,27570348:0,608174,102891 -g2990,19:7941493,27570348 -g2990,19:7941493,27570348 -g2990,19:10685485,27570348 -g2990,19:12253761,27570348 -g2990,19:13822037,27570348 -g2990,19:15390313,27570348 -g2990,19:16958589,27570348 -k2990,19:18460021,27570348:132385 -) -(2990,20:9252213,28411836:9207808,485622,11795 -k2990,20:14453806,28411836:4006216 -k2990,20:18460021,28411836:4006215 -) -(2990,21:6630773,29276582:11829248,485622,102891 -h2990,20:6630773,29276582:0,0,0 -r2990,86:6630773,29276582:0,588513,102891 -g2990,20:7941493,29276582 -g2990,20:7941493,29276582 -g2990,20:10685485,29276582 -k2990,21:14971212,29276582:3488809 -k2990,21:18460021,29276582:3488809 -) -(2990,22:6630773,30141329:11829248,505283,126483 -h2990,21:6630773,30141329:0,0,0 -g2990,21:9587757,30141329 -g2990,21:10978431,30141329 -g2990,21:13371805,30141329 -k2990,22:16921236,30141329:1538786 -k2990,22:18460021,30141329:1538785 -) -(2990,23:6630773,31006076:11829248,513147,102891 -h2990,22:6630773,31006076:0,0,0 -r2990,86:6630773,31006076:0,616038,102891 -g2990,22:7941493,31006076 -g2990,22:7941493,31006076 -g2990,22:9895120,31006076 -g2990,22:11064937,31006076 -k2990,23:15160938,31006076:3299083 -k2990,23:18460021,31006076:3299083 -) -(2990,24:6630773,31870822:11829248,513147,126483 -h2990,23:6630773,31870822:0,0,0 -r2990,86:6630773,31870822:0,639630,126483 -g2990,23:7941493,31870822 -g2990,23:7941493,31870822 -g2990,23:15822852,31870822 -k2990,24:17539896,31870822:920126 -k2990,24:18460021,31870822:920125 -) -(2990,25:6630773,32735569:11829248,513147,102891 -h2990,24:6630773,32735569:0,0,0 -r2990,86:6630773,32735569:0,616038,102891 -g2990,24:7941493,32735569 -g2990,24:7941493,32735569 -g2990,24:15822852,32735569 -k2990,25:17539896,32735569:920126 -k2990,25:18460021,32735569:920125 -) -(2990,26:6630773,33600316:11829248,513147,102891 -h2990,25:6630773,33600316:0,0,0 -r2990,86:6630773,33600316:0,616038,102891 -g2990,25:7941493,33600316 -g2990,25:7941493,33600316 -g2990,25:15822852,33600316 -k2990,26:17539896,33600316:920126 -k2990,26:18460021,33600316:920125 -) -(2990,27:6630773,34465062:11829248,513147,134348 -h2990,26:6630773,34465062:0,0,0 -r2990,86:6630773,34465062:0,647495,134348 -g2990,26:7941493,34465062 -g2990,26:7941493,34465062 -g2990,26:17403580,34465062 -k2990,27:18330260,34465062:129762 -k2990,27:18460021,34465062:129761 -) -(2990,28:6630773,35329809:11829248,513147,134348 -h2990,27:6630773,35329809:0,0,0 -r2990,86:6630773,35329809:0,647495,134348 -g2990,27:7941493,35329809 -g2990,27:7941493,35329809 -g2990,27:16218034,35329809 -k2990,28:17737487,35329809:722535 -k2990,28:18460021,35329809:722534 -) -(2990,29:6630773,36194556:11829248,485622,102891 -h2990,28:6630773,36194556:0,0,0 -r2990,86:6630773,36194556:0,588513,102891 -g2990,28:7941493,36194556 -g2990,28:7941493,36194556 -g2990,28:10290302,36194556 -k2990,29:14773621,36194556:3686401 -k2990,29:18460021,36194556:3686400 -) -(2990,30:6630773,37059302:11829248,513147,102891 -h2990,29:6630773,37059302:0,0,0 -r2990,86:6630773,37059302:0,616038,102891 -g2990,29:7941493,37059302 -g2990,29:7941493,37059302 -g2990,29:9499938,37059302 -g2990,29:10669755,37059302 -k2990,30:14963347,37059302:3496674 -k2990,30:18460021,37059302:3496674 -) -(2990,31:6630773,37924049:11829248,481690,102891 -h2990,30:6630773,37924049:0,0,0 -r2990,86:6630773,37924049:0,584581,102891 -g2990,30:7941493,37924049 -g2990,30:7941493,37924049 -g2990,30:11080667,37924049 -k2990,31:15168803,37924049:3291218 -k2990,31:18460021,37924049:3291218 -) -(2990,32:6630773,38788796:11829248,505283,102891 -h2990,31:6630773,38788796:0,0,0 -r2990,86:6630773,38788796:0,608174,102891 -g2990,31:7941493,38788796 -g2990,31:7941493,38788796 -g2990,31:11080667,38788796 -k2990,32:15168803,38788796:3291218 -k2990,32:18460021,38788796:3291218 -) -(2990,33:6630773,39653542:11829248,505283,102891 -h2990,32:6630773,39653542:0,0,0 -r2990,86:6630773,39653542:0,608174,102891 -g2990,32:7941493,39653542 -g2990,32:7941493,39653542 -g2990,32:11871031,39653542 -k2990,33:15563985,39653542:2896036 -k2990,33:18460021,39653542:2896036 -) -(2990,34:6630773,40518289:11829248,505283,102891 -h2990,33:6630773,40518289:0,0,0 -r2990,86:6630773,40518289:0,608174,102891 -g2990,33:7941493,40518289 -g2990,33:7941493,40518289 -g2990,33:12266213,40518289 -k2990,34:15761576,40518289:2698445 -k2990,34:18460021,40518289:2698445 -) -(2990,35:6630773,41383036:11829248,485622,102891 -h2990,34:6630773,41383036:0,0,0 -r2990,86:6630773,41383036:0,588513,102891 -g2990,34:7941493,41383036 -g2990,34:7941493,41383036 -g2990,34:9104756,41383036 -g2990,34:10274573,41383036 -g2990,34:11444390,41383036 -k2990,35:15350665,41383036:3109357 -k2990,35:18460021,41383036:3109356 -) -(2990,36:6630773,42247782:11829248,505283,102891 -h2990,35:6630773,42247782:0,0,0 -r2990,86:6630773,42247782:0,608174,102891 -g2990,35:7941493,42247782 -g2990,35:7941493,42247782 -g2990,35:13451759,42247782 -k2990,36:16354349,42247782:2105672 -k2990,36:18460021,42247782:2105672 -) -(2990,37:6630773,43112529:11829248,505283,102891 -h2990,36:6630773,43112529:0,0,0 -r2990,86:6630773,43112529:0,608174,102891 -g2990,36:7941493,43112529 -g2990,36:7941493,43112529 -g2990,36:11475849,43112529 -k2990,37:15366394,43112529:3093627 -k2990,37:18460021,43112529:3093627 -) -(2990,38:6630773,43977276:11829248,485622,102891 -h2990,37:6630773,43977276:0,0,0 -r2990,86:6630773,43977276:0,588513,102891 -g2990,37:7941493,43977276 -g2990,37:7941493,43977276 -g2990,37:9499938,43977276 -k2990,38:14378439,43977276:4081583 -k2990,38:18460021,43977276:4081582 -) -(2990,39:6630773,44842022:11829248,505283,126483 -h2990,38:6630773,44842022:0,0,0 -r2990,86:6630773,44842022:0,631766,126483 -g2990,38:7941493,44842022 -g2990,38:7941493,44842022 -g2990,38:9104756,44842022 -k2990,39:14180848,44842022:4279174 -k2990,39:18460021,44842022:4279173 -) -(2990,40:6630773,45706769:11829248,485622,102891 -h2990,39:6630773,45706769:0,0,0 -r2990,86:6630773,45706769:0,588513,102891 -g2990,39:7941493,45706769 -g2990,39:7941493,45706769 -g2990,39:9895120,45706769 -k2990,40:14576030,45706769:3883992 -k2990,40:18460021,45706769:3883991 +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) ] -k2990,86:19606901,45706769:1146880 -r2990,86:19606901,45706769:0,32754211,126483 -k2990,86:20753781,45706769:1146880 -[2990,86:20753781,45706769:11829248,32627728,102891 -(2990,41:20753781,13734401:11829248,513147,7863 -h2990,40:20753781,13734401:0,0,0 -g2990,40:23240872,13734401 -g2990,40:24099393,13734401 -k2990,41:29879014,13734401:2704016 -k2990,41:32583029,13734401:2704015 -) -(2990,42:20753781,14581198:11829248,505283,126483 -h2990,41:20753781,14581198:0,0,0 -r2990,86:20753781,14581198:0,631766,126483 -g2990,41:22064501,14581198 -g2990,41:22064501,14581198 -g2990,41:25203675,14581198 -g2990,41:26771951,14581198 -g2990,41:28340227,14581198 -g2990,41:29908503,14581198 -k2990,42:31843455,14581198:739575 -k2990,42:32583029,14581198:739574 -) -(2990,43:20753781,15427995:11829248,505283,102891 -h2990,42:20753781,15427995:0,0,0 -r2990,86:20753781,15427995:0,608174,102891 -g2990,42:22064501,15427995 -g2990,42:22064501,15427995 -g2990,42:25203675,15427995 -g2990,42:26771951,15427995 -g2990,42:28340227,15427995 -k2990,43:31059317,15427995:1523713 -k2990,43:32583029,15427995:1523712 -) -(2990,44:20753781,16274792:11829248,513147,102891 -h2990,43:20753781,16274792:0,0,0 -r2990,86:20753781,16274792:0,616038,102891 -g2990,43:22064501,16274792 -g2990,43:22064501,16274792 -g2990,43:23622946,16274792 -g2990,43:26714279,16274792 -k2990,44:30246343,16274792:2336687 -k2990,44:32583029,16274792:2336686 -) -(2990,45:20753781,17121588:11829248,513147,102891 -h2990,44:20753781,17121588:0,0,0 -r2990,86:20753781,17121588:0,616038,102891 -g2990,44:22064501,17121588 -g2990,44:22064501,17121588 -g2990,44:23250047,17121588 -g2990,44:24413310,17121588 -g2990,44:25981586,17121588 -k2990,45:29879996,17121588:2703033 -k2990,45:32583029,17121588:2703033 -) -(2990,46:20753781,17968385:11829248,513147,102891 -h2990,45:20753781,17968385:0,0,0 -r2990,86:20753781,17968385:0,616038,102891 -g2990,45:22064501,17968385 -g2990,45:22064501,17968385 -g2990,45:23250047,17968385 -g2990,45:24435593,17968385 -g2990,45:25225957,17968385 -g2990,45:27179584,17968385 -k2990,46:30478995,17968385:2104034 -k2990,46:32583029,17968385:2104034 -) -(2990,47:20753781,18815182:11829248,513147,102891 -h2990,46:20753781,18815182:0,0,0 -r2990,86:20753781,18815182:0,616038,102891 -g2990,46:22064501,18815182 -g2990,46:22064501,18815182 -g2990,46:24018128,18815182 -k2990,47:28898267,18815182:3684762 -k2990,47:32583029,18815182:3684762 -) -(2990,48:20753781,19661979:11829248,513147,102891 -h2990,47:20753781,19661979:0,0,0 -r2990,86:20753781,19661979:0,616038,102891 -g2990,47:22064501,19661979 -g2990,47:22064501,19661979 -g2990,47:25994039,19661979 -k2990,48:29886223,19661979:2696807 -k2990,48:32583029,19661979:2696806 -) -(2990,49:20753781,20508776:11829248,513147,102891 -h2990,48:20753781,20508776:0,0,0 -r2990,86:20753781,20508776:0,616038,102891 -g2990,48:22064501,20508776 -g2990,48:22064501,20508776 -g2990,48:25598857,20508776 -k2990,49:30450160,20508776:2132870 -k2990,49:32583029,20508776:2132869 -) -(2990,50:20753781,21355573:11829248,505283,126483 -h2990,49:20753781,21355573:0,0,0 -r2990,86:20753781,21355573:0,631766,126483 -g2990,49:22064501,21355573 -g2990,49:22064501,21355573 -g2990,49:25598857,21355573 -g2990,49:26768674,21355573 -g2990,49:28336950,21355573 -k2990,50:31057678,21355573:1525351 -k2990,50:32583029,21355573:1525351 -) -(2990,51:20753781,22202370:11829248,505283,102891 -h2990,50:20753781,22202370:0,0,0 -r2990,86:20753781,22202370:0,608174,102891 -g2990,50:22064501,22202370 -g2990,50:22064501,22202370 -g2990,50:24808493,22202370 -g2990,50:26376769,22202370 -k2990,51:30077588,22202370:2505442 -k2990,51:32583029,22202370:2505441 -) -(2990,52:20753781,23049167:11829248,485622,126483 -h2990,51:20753781,23049167:0,0,0 -r2990,86:20753781,23049167:0,612105,126483 -g2990,51:22064501,23049167 -g2990,51:22064501,23049167 -g2990,51:24808493,23049167 -g2990,51:26376769,23049167 -g2990,51:27945045,23049167 -k2990,52:30861726,23049167:1721304 -k2990,52:32583029,23049167:1721303 -) -(2990,53:20753781,23895963:11829248,505283,102891 -h2990,52:20753781,23895963:0,0,0 -r2990,86:20753781,23895963:0,608174,102891 -g2990,52:22064501,23895963 -g2990,52:22064501,23895963 -g2990,52:25598857,23895963 -k2990,53:29688632,23895963:2894398 -k2990,53:32583029,23895963:2894397 -) -(2990,54:20753781,24742760:11829248,505283,126483 -h2990,53:20753781,24742760:0,0,0 -r2990,86:20753781,24742760:0,631766,126483 -g2990,53:22064501,24742760 -g2990,53:22064501,24742760 -g2990,53:24808493,24742760 -k2990,54:29094220,24742760:3488809 -k2990,54:32583029,24742760:3488809 -) -(2990,55:20753781,25589557:11829248,505283,126483 -h2990,54:20753781,25589557:0,0,0 -r2990,86:20753781,25589557:0,631766,126483 -g2990,54:22064501,25589557 -g2990,54:22064501,25589557 -g2990,54:25598857,25589557 -g2990,54:26768674,25589557 -g2990,54:28336950,25589557 -k2990,55:31057678,25589557:1525351 -k2990,55:32583029,25589557:1525351 -) -(2990,56:20753781,26436354:11829248,505283,102891 -h2990,55:20753781,26436354:0,0,0 -r2990,86:20753781,26436354:0,608174,102891 -g2990,55:22064501,26436354 -g2990,55:22064501,26436354 -g2990,55:25598857,26436354 -k2990,56:30450160,26436354:2132870 -k2990,56:32583029,26436354:2132869 -) -(2990,57:20753781,27283151:11829248,505283,126483 -h2990,56:20753781,27283151:0,0,0 -r2990,86:20753781,27283151:0,631766,126483 -g2990,56:22064501,27283151 -g2990,56:22064501,27283151 -g2990,56:25598857,27283151 -g2990,56:26768674,27283151 -g2990,56:28336950,27283151 -k2990,57:31057678,27283151:1525351 -k2990,57:32583029,27283151:1525351 -) -(2990,58:20753781,28129948:11829248,505283,102891 -h2990,57:20753781,28129948:0,0,0 -r2990,86:20753781,28129948:0,608174,102891 -g2990,57:22064501,28129948 -g2990,57:22064501,28129948 -g2990,57:24413310,28129948 -g2990,57:25981586,28129948 -g2990,57:27549862,28129948 -g2990,57:29118138,28129948 -k2990,58:31448272,28129948:1134757 -k2990,58:32583029,28129948:1134757 -) -(2990,62:20753781,29720585:11829248,505283,134348 -h2990,61:20753781,29720585:0,0,0 -g2990,61:22342373,29720585 -k2990,62:28607615,29720585:3975414 -k2990,62:32583029,29720585:3975414 -) -(2990,63:20753781,30567382:11829248,485622,102891 -h2990,62:20753781,30567382:0,0,0 -r2990,86:20753781,30567382:0,588513,102891 -g2990,62:22064501,30567382 -g2990,62:22064501,30567382 -g2990,62:25203675,30567382 -k2990,63:29491041,30567382:3091989 -k2990,63:32583029,30567382:3091988 -) -(2990,64:20753781,31414179:11829248,485622,102891 -h2990,63:20753781,31414179:0,0,0 -r2990,86:20753781,31414179:0,588513,102891 -g2990,63:22064501,31414179 -g2990,63:22064501,31414179 -g2990,63:24018128,31414179 -g2990,63:25586404,31414179 -k2990,64:29682405,31414179:2900624 -k2990,64:32583029,31414179:2900624 -) -(2990,65:20753781,32260976:11829248,505283,102891 -h2990,64:20753781,32260976:0,0,0 -r2990,86:20753781,32260976:0,608174,102891 -g2990,64:22064501,32260976 -g2990,64:22064501,32260976 -g2990,64:25598857,32260976 -g2990,64:27167133,32260976 -k2990,65:30472770,32260976:2110260 -k2990,65:32583029,32260976:2110259 -) -(2990,66:20753781,33107772:11829248,485622,126483 -h2990,65:20753781,33107772:0,0,0 -r2990,86:20753781,33107772:0,612105,126483 -g2990,65:22064501,33107772 -g2990,65:22064501,33107772 -g2990,65:26784403,33107772 -k2990,66:30281405,33107772:2301625 -k2990,66:32583029,33107772:2301624 -) -(2990,67:20753781,33954569:11829248,485622,126483 -h2990,66:20753781,33954569:0,0,0 -r2990,86:20753781,33954569:0,612105,126483 -g2990,66:22064501,33954569 -g2990,66:22064501,33954569 -g2990,66:27179585,33954569 -k2990,67:30478996,33954569:2104034 -k2990,67:32583029,33954569:2104033 -) -(2990,68:20753781,34801366:11829248,505283,102891 -h2990,67:20753781,34801366:0,0,0 -r2990,86:20753781,34801366:0,608174,102891 -g2990,67:22064501,34801366 -g2990,67:22064501,34801366 -g2990,67:24018128,34801366 -g2990,67:25586404,34801366 -k2990,68:29682405,34801366:2900624 -k2990,68:32583029,34801366:2900624 -) -(2990,69:20753781,35648163:11829248,485622,102891 -h2990,68:20753781,35648163:0,0,0 -r2990,86:20753781,35648163:0,588513,102891 -g2990,68:22064501,35648163 -g2990,68:22064501,35648163 -g2990,68:24808493,35648163 -k2990,69:29293450,35648163:3289580 -k2990,69:32583029,35648163:3289579 -) -(2990,70:20753781,36494960:11829248,485622,102891 -h2990,69:20753781,36494960:0,0,0 -r2990,86:20753781,36494960:0,588513,102891 -g2990,69:22064501,36494960 -g2990,69:22064501,36494960 -g2990,69:24808493,36494960 -k2990,70:29293450,36494960:3289580 -k2990,70:32583029,36494960:3289579 -) -(2990,71:20753781,37341757:11829248,505283,126483 -h2990,70:20753781,37341757:0,0,0 -r2990,86:20753781,37341757:0,631766,126483 -g2990,70:22064501,37341757 -g2990,70:22064501,37341757 -g2990,70:23622946,37341757 -k2990,71:28700676,37341757:3882353 -k2990,71:32583029,37341757:3882353 -) -(2990,72:20753781,38188554:11829248,485622,134348 -h2990,71:20753781,38188554:0,0,0 -r2990,86:20753781,38188554:0,619970,134348 -g2990,71:22064501,38188554 -g2990,71:22064501,38188554 -g2990,71:24808493,38188554 -k2990,72:29293450,38188554:3289580 -k2990,72:32583029,38188554:3289579 -) -(2990,73:20753781,39035351:11829248,505283,126483 -h2990,72:20753781,39035351:0,0,0 -r2990,86:20753781,39035351:0,631766,126483 -g2990,72:22064501,39035351 -g2990,72:22064501,39035351 -g2990,72:25994039,39035351 -g2990,72:27562315,39035351 -k2990,73:30670361,39035351:1912669 -k2990,73:32583029,39035351:1912668 -) -(2990,77:20753781,40625988:11829248,513147,7863 -h2990,76:20753781,40625988:0,0,0 -g2990,76:23978807,40625988 -g2990,76:25369481,40625988 -k2990,77:30368568,40625988:2214462 -k2990,77:32583029,40625988:2214461 -) -(2990,78:20753781,41472785:11829248,505283,102891 -h2990,77:20753781,41472785:0,0,0 -r2990,86:20753781,41472785:0,608174,102891 -g2990,77:22064501,41472785 -g2990,77:22064501,41472785 -g2990,77:24413310,41472785 -g2990,77:25583127,41472785 -k2990,78:29481537,41472785:3101492 -k2990,78:32583029,41472785:3101492 -) -(2990,79:20753781,42319582:11829248,505283,102891 -h2990,78:20753781,42319582:0,0,0 -r2990,86:20753781,42319582:0,608174,102891 -g2990,78:22064501,42319582 -g2990,78:22064501,42319582 -g2990,78:24413310,42319582 -g2990,78:25981586,42319582 -g2990,78:27549862,42319582 -g2990,78:29118138,42319582 -k2990,79:31448272,42319582:1134757 -k2990,79:32583029,42319582:1134757 -) -(2990,80:20753781,43166378:11829248,513147,102891 -h2990,79:20753781,43166378:0,0,0 -r2990,86:20753781,43166378:0,616038,102891 -g2990,79:22064501,43166378 -g2990,79:22064501,43166378 -g2990,79:27574767,43166378 -k2990,80:30676587,43166378:1906443 -k2990,80:32583029,43166378:1906442 -) -(2990,81:20753781,44013175:11829248,513147,102891 -h2990,80:20753781,44013175:0,0,0 -r2990,86:20753781,44013175:0,616038,102891 -g2990,80:22064501,44013175 -g2990,80:22064501,44013175 -g2990,80:27179585,44013175 -g2990,80:28747861,44013175 -g2990,80:30316137,44013175 -k2990,81:32047272,44013175:535758 -k2990,81:32583029,44013175:535757 -) -(2990,82:20753781,44859972:11829248,505283,134348 -h2990,81:20753781,44859972:0,0,0 -r2990,86:20753781,44859972:0,639631,134348 -g2990,81:22064501,44859972 -g2990,81:22064501,44859972 -g2990,81:26784403,44859972 -k2990,82:30281405,44859972:2301625 -k2990,82:32583029,44859972:2301624 -) -(2990,83:20753781,45706769:11829248,505283,102891 -h2990,82:20753781,45706769:0,0,0 -r2990,86:20753781,45706769:0,608174,102891 -g2990,82:22064501,45706769 -g2990,82:22064501,45706769 -g2990,82:24413310,45706769 -g2990,82:25981586,45706769 -k2990,83:29879996,45706769:2703033 -k2990,83:32583029,45706769:2703033 ) -] -(2990,86:32583029,45706769:0,355205,126483 -h2990,86:32583029,45706769:420741,355205,126483 -k2990,86:32583029,45706769:-420741 ) ) ] -(2990,86:32583029,45706769:0,0,0 -g2990,86:32583029,45706769 +[1,1992:3078558,4812305:0,0,0 +(1,1992:3078558,49800853:0,16384,2228224 +g1,1992:29030814,49800853 +g1,1992:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,1992:36151628,51504789:16384,1179648,0 ) +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 +) +] ) -] -(2990,86:6630773,47279633:25952256,485622,11795 -(2990,86:6630773,47279633:25952256,485622,11795 -k2990,86:19009213,47279633:12378440 -k2990,86:32583030,47279633:12378440 +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,1992:37855564,49800853:1179648,16384,0 ) ) -] -(2990,86:4262630,4025873:0,0,0 -[2990,86:-473656,4025873:0,0,0 -(2990,86:-473656,-710413:0,0,0 -(2990,86:-473656,-710413:0,0,0 -g2990,86:-473656,-710413 +k1,1992:3078556,49800853:-34777008 +) +] +g1,1992:6630773,4812305 +g1,1992:6630773,4812305 +g1,1992:8017514,4812305 +g1,1992:10787065,4812305 +g1,1992:12580785,4812305 +g1,1992:13396052,4812305 +g1,1992:15205501,4812305 +k1,1992:31786111,4812305:16580610 +) +) +] +[1,1992:6630773,45706769:25952256,40108032,0 +(1,1992:6630773,45706769:25952256,40108032,0 +(1,1992:6630773,45706769:0,0,0 +g1,1992:6630773,45706769 +) +[1,1992:6630773,45706769:25952256,40108032,0 +v1,1917:6630773,6254097:0,393216,0 +(1,1929:6630773,10600340:25952256,4739459,196608 +g1,1929:6630773,10600340 +g1,1929:6630773,10600340 +g1,1929:6434165,10600340 +(1,1929:6434165,10600340:0,4739459,196608 +r1,1992:32779637,10600340:26345472,4936067,196608 +k1,1929:6434165,10600340:-26345472 +) +(1,1929:6434165,10600340:26345472,4739459,196608 +[1,1929:6630773,10600340:25952256,4542851,0 +(1,1919:6630773,6461715:25952256,404226,76021 +(1,1918:6630773,6461715:0,0,0 +g1,1918:6630773,6461715 +g1,1918:6630773,6461715 +g1,1918:6303093,6461715 +(1,1918:6303093,6461715:0,0,0 +) +g1,1918:6630773,6461715 +) +g1,1919:9159939,6461715 +g1,1919:10108377,6461715 +k1,1919:10108377,6461715:0 +h1,1919:12953688,6461715:0,0,0 +k1,1919:32583028,6461715:19629340 +g1,1919:32583028,6461715 +) +(1,1920:6630773,7127893:25952256,410518,82312 +h1,1920:6630773,7127893:0,0,0 +g1,1920:8211502,7127893 +g1,1920:9159940,7127893 +g1,1920:12637543,7127893 +g1,1920:14218272,7127893 +h1,1920:15482855,7127893:0,0,0 +k1,1920:32583029,7127893:17100174 +g1,1920:32583029,7127893 +) +(1,1921:6630773,7794071:25952256,410518,76021 +h1,1921:6630773,7794071:0,0,0 +g1,1921:7895356,7794071 +g1,1921:8843793,7794071 +g1,1921:9792230,7794071 +g1,1921:11689104,7794071 +h1,1921:12005250,7794071:0,0,0 +k1,1921:32583030,7794071:20577780 +g1,1921:32583030,7794071 +) +(1,1922:6630773,8460249:25952256,410518,82312 +h1,1922:6630773,8460249:0,0,0 +g1,1922:6946919,8460249 +g1,1922:7263065,8460249 +g1,1922:7579211,8460249 +g1,1922:10108377,8460249 +g1,1922:11056815,8460249 +g1,1922:14534418,8460249 +k1,1922:14534418,8460249:0 +h1,1922:16115147,8460249:0,0,0 +k1,1922:32583029,8460249:16467882 +g1,1922:32583029,8460249 +) +(1,1923:6630773,9126427:25952256,404226,76021 +h1,1923:6630773,9126427:0,0,0 +g1,1923:6946919,9126427 +g1,1923:7263065,9126427 +g1,1923:7579211,9126427 +h1,1923:7895357,9126427:0,0,0 +k1,1923:32583029,9126427:24687672 +g1,1923:32583029,9126427 +) +(1,1924:6630773,9792605:25952256,404226,6290 +h1,1924:6630773,9792605:0,0,0 +h1,1924:8843793,9792605:0,0,0 +k1,1924:32583029,9792605:23739236 +g1,1924:32583029,9792605 +) +(1,1928:6630773,10524319:25952256,404226,76021 +(1,1926:6630773,10524319:0,0,0 +g1,1926:6630773,10524319 +g1,1926:6630773,10524319 +g1,1926:6303093,10524319 +(1,1926:6303093,10524319:0,0,0 +) +g1,1926:6630773,10524319 +) +g1,1928:7579210,10524319 +g1,1928:8843793,10524319 +g1,1928:9159939,10524319 +g1,1928:12321396,10524319 +g1,1928:12637542,10524319 +g1,1928:15798999,10524319 +k1,1928:15798999,10524319:0 +h1,1928:18960456,10524319:0,0,0 +k1,1928:32583029,10524319:13622573 +g1,1928:32583029,10524319 +) +] +) +g1,1929:32583029,10600340 +g1,1929:6630773,10600340 +g1,1929:6630773,10600340 +g1,1929:32583029,10600340 +g1,1929:32583029,10600340 +) +h1,1929:6630773,10796948:0,0,0 +(1,1933:6630773,11953008:25952256,513147,134348 +h1,1932:6630773,11953008:983040,0,0 +k1,1932:8786908,11953008:219546 +k1,1932:10110735,11953008:219545 +k1,1932:11422766,11953008:219546 +k1,1932:11998171,11953008:219545 +k1,1932:14376473,11953008:219546 +k1,1932:15589544,11953008:219545 +k1,1932:16468382,11953008:219546 +k1,1932:19713724,11953008:219545 +k1,1932:20584698,11953008:219546 +k1,1932:22150353,11953008:219545 +k1,1932:23459763,11953008:219546 +k1,1932:25967170,11953008:219545 +k1,1932:26846008,11953008:219546 +k1,1932:28084638,11953008:219545 +k1,1932:30685107,11953008:219546 +k1,1932:31563944,11953008:219545 +k1,1932:32583029,11953008:0 +) +(1,1933:6630773,12794496:25952256,505283,134348 +k1,1932:9226177,12794496:248560 +k1,1932:10428286,12794496:248560 +k1,1932:12700598,12794496:248560 +k1,1932:13305018,12794496:248560 +k1,1932:16173707,12794496:248560 +k1,1932:18400145,12794496:248561 +k1,1932:20042656,12794496:248560 +k1,1932:22449972,12794496:248560 +k1,1932:25652240,12794496:248560 +k1,1932:27294751,12794496:248560 +k1,1932:29611627,12794496:248560 +k1,1932:32583029,12794496:0 +) +(1,1933:6630773,13635984:25952256,505283,134348 +g1,1932:7849087,13635984 +g1,1932:10116632,13635984 +g1,1932:12010622,13635984 +g1,1932:12861279,13635984 +g1,1932:14079593,13635984 +g1,1932:15272348,13635984 +k1,1933:32583029,13635984:14183303 +g1,1933:32583029,13635984 +) +v1,1935:6630773,14616734:0,393216,0 +(1,1948:6630773,19562570:25952256,5339052,196608 +g1,1948:6630773,19562570 +g1,1948:6630773,19562570 +g1,1948:6434165,19562570 +(1,1948:6434165,19562570:0,5339052,196608 +r1,1992:32779637,19562570:26345472,5535660,196608 +k1,1948:6434165,19562570:-26345472 +) +(1,1948:6434165,19562570:26345472,5339052,196608 +[1,1948:6630773,19562570:25952256,5142444,0 +(1,1937:6630773,14824352:25952256,404226,76021 +(1,1936:6630773,14824352:0,0,0 +g1,1936:6630773,14824352 +g1,1936:6630773,14824352 +g1,1936:6303093,14824352 +(1,1936:6303093,14824352:0,0,0 +) +g1,1936:6630773,14824352 +) +g1,1937:9159939,14824352 +g1,1937:10108377,14824352 +k1,1937:10108377,14824352:0 +h1,1937:12953688,14824352:0,0,0 +k1,1937:32583028,14824352:19629340 +g1,1937:32583028,14824352 +) +(1,1938:6630773,15490530:25952256,410518,107478 +h1,1938:6630773,15490530:0,0,0 +g1,1938:8211502,15490530 +g1,1938:9159940,15490530 +g1,1938:13269835,15490530 +g1,1938:13902127,15490530 +g1,1938:15799002,15490530 +g1,1938:18328168,15490530 +g1,1938:18960460,15490530 +g1,1938:20541189,15490530 +g1,1938:23070355,15490530 +g1,1938:23702647,15490530 +h1,1938:24967230,15490530:0,0,0 +k1,1938:32583029,15490530:7615799 +g1,1938:32583029,15490530 +) +(1,1939:6630773,16156708:25952256,410518,76021 +h1,1939:6630773,16156708:0,0,0 +g1,1939:7895356,16156708 +g1,1939:8843793,16156708 +g1,1939:9792230,16156708 +g1,1939:13902124,16156708 +h1,1939:14218270,16156708:0,0,0 +k1,1939:32583030,16156708:18364760 +g1,1939:32583030,16156708 +) +(1,1940:6630773,16822886:25952256,410518,76021 +h1,1940:6630773,16822886:0,0,0 +g1,1940:6946919,16822886 +g1,1940:7263065,16822886 +g1,1940:7579211,16822886 +g1,1940:11689105,16822886 +g1,1940:12637543,16822886 +h1,1940:16431291,16822886:0,0,0 +k1,1940:32583029,16822886:16151738 +g1,1940:32583029,16822886 +) +(1,1941:6630773,17489064:25952256,404226,76021 +h1,1941:6630773,17489064:0,0,0 +g1,1941:6946919,17489064 +g1,1941:7263065,17489064 +g1,1941:7579211,17489064 +h1,1941:7895357,17489064:0,0,0 +k1,1941:32583029,17489064:24687672 +g1,1941:32583029,17489064 +) +(1,1942:6630773,18155242:25952256,404226,6290 +h1,1942:6630773,18155242:0,0,0 +h1,1942:8843793,18155242:0,0,0 +k1,1942:32583029,18155242:23739236 +g1,1942:32583029,18155242 +) +(1,1947:6630773,18886956:25952256,404226,107478 +(1,1944:6630773,18886956:0,0,0 +g1,1944:6630773,18886956 +g1,1944:6630773,18886956 +g1,1944:6303093,18886956 +(1,1944:6303093,18886956:0,0,0 +) +g1,1944:6630773,18886956 +) +g1,1947:7579210,18886956 +g1,1947:7895356,18886956 +g1,1947:8211502,18886956 +g1,1947:8527648,18886956 +g1,1947:11056814,18886956 +g1,1947:11372960,18886956 +g1,1947:11689106,18886956 +g1,1947:12005252,18886956 +g1,1947:14534418,18886956 +g1,1947:14850564,18886956 +g1,1947:15166710,18886956 +g1,1947:15482856,18886956 +h1,1947:17695876,18886956:0,0,0 +k1,1947:32583029,18886956:14887153 +g1,1947:32583029,18886956 +) +(1,1947:6630773,19553134:25952256,388497,9436 +h1,1947:6630773,19553134:0,0,0 +g1,1947:7579210,19553134 +g1,1947:7895356,19553134 +g1,1947:11056813,19553134 +g1,1947:11372959,19553134 +g1,1947:14534416,19553134 +k1,1947:14534416,19553134:0 +h1,1947:17695873,19553134:0,0,0 +k1,1947:32583029,19553134:14887156 +g1,1947:32583029,19553134 +) +] +) +g1,1948:32583029,19562570 +g1,1948:6630773,19562570 +g1,1948:6630773,19562570 +g1,1948:32583029,19562570 +g1,1948:32583029,19562570 +) +h1,1948:6630773,19759178:0,0,0 +(1,1952:6630773,20915238:25952256,513147,134348 +h1,1951:6630773,20915238:983040,0,0 +k1,1951:9239499,20915238:164233 +k1,1951:9935229,20915238:164233 +k1,1951:10870166,20915238:164234 +k1,1951:13695816,20915238:164233 +k1,1951:15595442,20915238:164233 +k1,1951:17747382,20915238:164233 +k1,1951:20959039,20915238:164233 +k1,1951:22076822,20915238:164234 +k1,1951:23333540,20915238:164233 +k1,1951:23853633,20915238:164233 +k1,1951:25432788,20915238:164233 +k1,1951:26248449,20915238:164233 +k1,1951:27100156,20915238:164234 +k1,1951:28919173,20915238:164233 +k1,1951:31575085,20915238:164233 +k1,1952:32583029,20915238:0 +) +(1,1952:6630773,21756726:25952256,513147,134348 +k1,1951:9035084,21756726:185262 +k1,1951:9576206,21756726:185262 +k1,1951:10754994,21756726:185262 +k1,1951:11599548,21756726:185262 +k1,1951:13497266,21756726:185262 +k1,1951:16174207,21756726:185262 +k1,1951:17313018,21756726:185262 +k1,1951:19668831,21756726:185261 +k1,1951:21291298,21756726:185262 +k1,1951:22127988,21756726:185262 +(1,1951:22127988,21756726:0,452978,115847 +r1,1992:24596525,21756726:2468537,568825,115847 +k1,1951:22127988,21756726:-2468537 +) +(1,1951:22127988,21756726:2468537,452978,115847 +k1,1951:22127988,21756726:3277 +h1,1951:24593248,21756726:0,411205,112570 +) +k1,1951:24781787,21756726:185262 +k1,1951:26170290,21756726:185262 +k1,1951:27349078,21756726:185262 +k1,1951:28193632,21756726:185262 +k1,1951:30091350,21756726:185262 +k1,1951:32583029,21756726:0 +) +(1,1952:6630773,22598214:25952256,513147,134348 +k1,1951:7562289,22598214:245354 +k1,1951:8265740,22598214:245354 +k1,1951:10912333,22598214:245354 +k1,1951:12609309,22598214:245354 +k1,1951:14567119,22598214:245354 +k1,1951:16800180,22598214:245354 +k1,1951:17731697,22598214:245355 +k1,1951:18332911,22598214:245354 +k1,1951:21280970,22598214:245354 +k1,1951:24477410,22598214:245354 +k1,1951:27795092,22598214:245354 +k1,1951:28691874,22598214:245354 +k1,1951:29725626,22598214:245354 +(1,1951:29725626,22598214:0,414482,115847 +r1,1992:30083892,22598214:358266,530329,115847 +k1,1951:29725626,22598214:-358266 +) +(1,1951:29725626,22598214:358266,414482,115847 +k1,1951:29725626,22598214:3277 +h1,1951:30080615,22598214:0,411205,112570 +) +k1,1951:30329246,22598214:245354 +k1,1952:32583029,22598214:0 +) +(1,1952:6630773,23439702:25952256,513147,134348 +k1,1951:8322492,23439702:278107 +k1,1951:9554147,23439702:278106 +k1,1951:10936536,23439702:278107 +k1,1951:12193095,23439702:278106 +k1,1951:14760375,23439702:278107 +k1,1951:16241722,23439702:278106 +k1,1951:19196319,23439702:278107 +k1,1951:21209818,23439702:278106 +k1,1951:24183421,23439702:278107 +(1,1951:24183421,23439702:0,452978,115847 +r1,1992:27355381,23439702:3171960,568825,115847 +k1,1951:24183421,23439702:-3171960 +) +(1,1951:24183421,23439702:3171960,452978,115847 +k1,1951:24183421,23439702:3277 +h1,1951:27352104,23439702:0,411205,112570 +) +k1,1951:27633487,23439702:278106 +k1,1951:28563022,23439702:278107 +k1,1951:29940822,23439702:278106 +(1,1951:29940822,23439702:0,452978,115847 +r1,1992:32409359,23439702:2468537,568825,115847 +k1,1951:29940822,23439702:-2468537 +) +(1,1951:29940822,23439702:2468537,452978,115847 +k1,1951:29940822,23439702:3277 +h1,1951:32406082,23439702:0,411205,112570 +) +k1,1951:32583029,23439702:0 +) +(1,1952:6630773,24281190:25952256,513147,134348 +k1,1951:9607089,24281190:186448 +(1,1951:9607089,24281190:0,452978,115847 +r1,1992:12779049,24281190:3171960,568825,115847 +k1,1951:9607089,24281190:-3171960 +) +(1,1951:9607089,24281190:3171960,452978,115847 +k1,1951:9607089,24281190:3277 +h1,1951:12775772,24281190:0,411205,112570 +) +k1,1951:12965497,24281190:186448 +k1,1951:15266793,24281190:186449 +k1,1951:16472326,24281190:186448 +k1,1951:19612482,24281190:186448 +k1,1951:20458222,24281190:186448 +k1,1951:21663756,24281190:186449 +k1,1951:22843730,24281190:186448 +k1,1951:25235465,24281190:186448 +k1,1951:26108075,24281190:186448 +k1,1951:27082922,24281190:186449 +k1,1951:29510701,24281190:186448 +k1,1951:32583029,24281190:0 +) +(1,1952:6630773,25122678:25952256,513147,134348 +k1,1951:7497541,25122678:180606 +k1,1951:10871061,25122678:180606 +k1,1951:14454297,25122678:180607 +k1,1951:15286331,25122678:180606 +k1,1951:16486022,25122678:180606 +k1,1951:19362124,25122678:180606 +k1,1951:21280746,25122678:180607 +k1,1951:23502798,25122678:180606 +k1,1951:25418797,25122678:180606 +k1,1951:27108042,25122678:180606 +k1,1951:29356965,25122678:180607 +k1,1951:30003532,25122678:180606 +k1,1952:32583029,25122678:0 +) +(1,1952:6630773,25964166:25952256,505283,134348 +(1,1951:6630773,25964166:0,452978,115847 +r1,1992:9099310,25964166:2468537,568825,115847 +k1,1951:6630773,25964166:-2468537 +) +(1,1951:6630773,25964166:2468537,452978,115847 +k1,1951:6630773,25964166:3277 +h1,1951:9096033,25964166:0,411205,112570 +) +k1,1951:9306803,25964166:207493 +k1,1951:11915535,25964166:207493 +k1,1951:15074114,25964166:207493 +k1,1951:18684236,25964166:207493 +k1,1951:19616557,25964166:207493 +k1,1951:20692402,25964166:207493 +k1,1951:22430161,25964166:207493 +k1,1951:23289082,25964166:207493 +k1,1951:25851284,25964166:207493 +k1,1951:27077862,25964166:207493 +k1,1951:29353671,25964166:207493 +k1,1951:31966991,25964166:207493 +k1,1952:32583029,25964166:0 +) +(1,1952:6630773,26805654:25952256,452978,115847 +(1,1951:6630773,26805654:0,452978,115847 +r1,1992:9099310,26805654:2468537,568825,115847 +k1,1951:6630773,26805654:-2468537 +) +(1,1951:6630773,26805654:2468537,452978,115847 +k1,1951:6630773,26805654:3277 +h1,1951:9096033,26805654:0,411205,112570 +) +k1,1952:32583028,26805654:23310048 +g1,1952:32583028,26805654 +) +v1,1954:6630773,27786404:0,393216,0 +(1,1989:6630773,45510161:25952256,18116973,196608 +g1,1989:6630773,45510161 +g1,1989:6630773,45510161 +g1,1989:6434165,45510161 +(1,1989:6434165,45510161:0,18116973,196608 +r1,1992:32779637,45510161:26345472,18313581,196608 +k1,1989:6434165,45510161:-26345472 +) +(1,1989:6434165,45510161:26345472,18116973,196608 +[1,1989:6630773,45510161:25952256,17920365,0 +(1,1956:6630773,28000314:25952256,410518,101187 +(1,1955:6630773,28000314:0,0,0 +g1,1955:6630773,28000314 +g1,1955:6630773,28000314 +g1,1955:6303093,28000314 +(1,1955:6303093,28000314:0,0,0 +) +g1,1955:6630773,28000314 +) +g1,1956:9159939,28000314 +g1,1956:10108377,28000314 +g1,1956:14218272,28000314 +g1,1956:14850564,28000314 +g1,1956:16747439,28000314 +g1,1956:17379731,28000314 +g1,1956:18012023,28000314 +g1,1956:19592752,28000314 +g1,1956:20225044,28000314 +g1,1956:23386501,28000314 +g1,1956:24334939,28000314 +h1,1956:25915667,28000314:0,0,0 +k1,1956:32583029,28000314:6667362 +g1,1956:32583029,28000314 +) +(1,1957:6630773,28666492:25952256,404226,76021 +h1,1957:6630773,28666492:0,0,0 +g1,1957:9159939,28666492 +g1,1957:10108377,28666492 +k1,1957:10108377,28666492:0 +h1,1957:12005251,28666492:0,0,0 +k1,1957:32583029,28666492:20577778 +g1,1957:32583029,28666492 +) +(1,1958:6630773,29332670:25952256,404226,107478 +h1,1958:6630773,29332670:0,0,0 +k1,1958:8829401,29332670:301754 +k1,1958:9763446,29332670:301753 +k1,1958:13542803,29332670:301754 +k1,1958:14160702,29332670:301753 +k1,1958:14778602,29332670:301754 +k1,1958:15396502,29332670:301754 +k1,1958:16330547,29332670:301753 +k1,1958:20109903,29332670:301754 +k1,1958:20727802,29332670:301753 +k1,1958:21345702,29332670:301754 +k1,1958:21963602,29332670:301754 +k1,1958:22581501,29332670:301753 +k1,1958:23199401,29332670:301754 +k1,1958:24133446,29332670:301753 +k1,1958:27280511,29332670:301754 +k1,1958:27898411,29332670:301754 +k1,1958:28516310,29332670:301753 +k1,1958:29134210,29332670:301754 +k1,1958:29752109,29332670:301753 +k1,1958:30370009,29332670:301754 +k1,1958:30370009,29332670:0 +h1,1958:32583029,29332670:0,0,0 +k1,1958:32583029,29332670:0 +k1,1958:32583029,29332670:0 +) +(1,1959:6630773,29998848:25952256,410518,76021 +h1,1959:6630773,29998848:0,0,0 +g1,1959:7895356,29998848 +g1,1959:8843793,29998848 +g1,1959:9792230,29998848 +g1,1959:14534415,29998848 +h1,1959:14850561,29998848:0,0,0 +k1,1959:32583029,29998848:17732468 +g1,1959:32583029,29998848 +) +(1,1960:6630773,30665026:25952256,404226,101187 +h1,1960:6630773,30665026:0,0,0 +g1,1960:6946919,30665026 +g1,1960:7263065,30665026 +g1,1960:7579211,30665026 +g1,1960:11689105,30665026 +g1,1960:12637543,30665026 +g1,1960:17695874,30665026 +g1,1960:19276603,30665026 +g1,1960:19908895,30665026 +h1,1960:22438060,30665026:0,0,0 +k1,1960:32583029,30665026:10144969 +g1,1960:32583029,30665026 +) +(1,1961:6630773,31331204:25952256,404226,76021 +h1,1961:6630773,31331204:0,0,0 +g1,1961:6946919,31331204 +g1,1961:7263065,31331204 +g1,1961:7579211,31331204 +h1,1961:7895357,31331204:0,0,0 +k1,1961:32583029,31331204:24687672 +g1,1961:32583029,31331204 +) +(1,1962:6630773,31997382:25952256,404226,82312 +h1,1962:6630773,31997382:0,0,0 +g1,1962:10740667,31997382 +g1,1962:13902124,31997382 +g1,1962:14534416,31997382 +h1,1962:15166708,31997382:0,0,0 +k1,1962:32583028,31997382:17416320 +g1,1962:32583028,31997382 +) +(1,1972:6630773,32716258:25952256,410518,9436 +(1,1964:6630773,32716258:0,0,0 +g1,1964:6630773,32716258 +g1,1964:6630773,32716258 +g1,1964:6303093,32716258 +(1,1964:6303093,32716258:0,0,0 +) +g1,1964:6630773,32716258 +) +g1,1972:7579210,32716258 +g1,1972:9159939,32716258 +g1,1972:10108376,32716258 +h1,1972:10424522,32716258:0,0,0 +k1,1972:32583030,32716258:22158508 +g1,1972:32583030,32716258 +) +(1,1972:6630773,33382436:25952256,410518,31456 +h1,1972:6630773,33382436:0,0,0 +g1,1972:7579210,33382436 +g1,1972:7895356,33382436 +g1,1972:8527648,33382436 +g1,1972:10740668,33382436 +g1,1972:11056814,33382436 +g1,1972:11372960,33382436 +g1,1972:11689106,33382436 +g1,1972:12005252,33382436 +g1,1972:13902126,33382436 +g1,1972:14850563,33382436 +h1,1972:15482854,33382436:0,0,0 +k1,1972:32583030,33382436:17100176 +g1,1972:32583030,33382436 +) +(1,1972:6630773,34048614:25952256,404226,82312 +h1,1972:6630773,34048614:0,0,0 +g1,1972:7579210,34048614 +g1,1972:7895356,34048614 +g1,1972:8211502,34048614 +g1,1972:9476085,34048614 +g1,1972:12005251,34048614 +g1,1972:15166708,34048614 +g1,1972:16431291,34048614 +h1,1972:17695874,34048614:0,0,0 +k1,1972:32583029,34048614:14887155 +g1,1972:32583029,34048614 +) +(1,1972:6630773,34714792:25952256,410518,107478 +h1,1972:6630773,34714792:0,0,0 +g1,1972:7579210,34714792 +g1,1972:7895356,34714792 +g1,1972:8527648,34714792 +g1,1972:13902125,34714792 +g1,1972:14850562,34714792 +h1,1972:15482853,34714792:0,0,0 +k1,1972:32583029,34714792:17100176 +g1,1972:32583029,34714792 +) +(1,1972:6630773,35380970:25952256,404226,82312 +h1,1972:6630773,35380970:0,0,0 +g1,1972:7579210,35380970 +g1,1972:7895356,35380970 +g1,1972:8211502,35380970 +g1,1972:9476085,35380970 +g1,1972:12005251,35380970 +g1,1972:15166708,35380970 +g1,1972:16431291,35380970 +h1,1972:17695874,35380970:0,0,0 +k1,1972:32583029,35380970:14887155 +g1,1972:32583029,35380970 +) +(1,1972:6630773,36047148:25952256,410518,101187 +h1,1972:6630773,36047148:0,0,0 +g1,1972:7579210,36047148 +g1,1972:7895356,36047148 +g1,1972:8527648,36047148 +g1,1972:11689105,36047148 +g1,1972:12005251,36047148 +g1,1972:13902125,36047148 +g1,1972:14850562,36047148 +h1,1972:15482853,36047148:0,0,0 +k1,1972:32583029,36047148:17100176 +g1,1972:32583029,36047148 +) +(1,1972:6630773,36713326:25952256,404226,82312 +h1,1972:6630773,36713326:0,0,0 +g1,1972:7579210,36713326 +g1,1972:7895356,36713326 +g1,1972:8211502,36713326 +g1,1972:9476085,36713326 +g1,1972:12005251,36713326 +g1,1972:15166708,36713326 +g1,1972:16431291,36713326 +h1,1972:17695874,36713326:0,0,0 +k1,1972:32583029,36713326:14887155 +g1,1972:32583029,36713326 +) +(1,1974:6630773,38022027:25952256,404226,82312 +(1,1973:6630773,38022027:0,0,0 +g1,1973:6630773,38022027 +g1,1973:6630773,38022027 +g1,1973:6303093,38022027 +(1,1973:6303093,38022027:0,0,0 +) +g1,1973:6630773,38022027 +) +k1,1974:6630773,38022027:0 +g1,1974:11372959,38022027 +k1,1974:11372959,38022027:0 +h1,1974:16431290,38022027:0,0,0 +k1,1974:32583029,38022027:16151739 +g1,1974:32583029,38022027 +) +(1,1988:6630773,38740903:25952256,410518,101187 +(1,1976:6630773,38740903:0,0,0 +g1,1976:6630773,38740903 +g1,1976:6630773,38740903 +g1,1976:6303093,38740903 +(1,1976:6303093,38740903:0,0,0 +) +g1,1976:6630773,38740903 +) +g1,1988:7579210,38740903 +g1,1988:10424521,38740903 +g1,1988:11372958,38740903 +g1,1988:14218269,38740903 +h1,1988:15798997,38740903:0,0,0 +k1,1988:32583029,38740903:16784032 +g1,1988:32583029,38740903 +) +(1,1988:6630773,39407081:25952256,379060,0 +h1,1988:6630773,39407081:0,0,0 +h1,1988:7263064,39407081:0,0,0 +k1,1988:32583028,39407081:25319964 +g1,1988:32583028,39407081 +) +(1,1988:6630773,40073259:25952256,404226,101187 +h1,1988:6630773,40073259:0,0,0 +g1,1988:7579210,40073259 +g1,1988:9476084,40073259 +g1,1988:10424521,40073259 +g1,1988:11056813,40073259 +g1,1988:11689105,40073259 +h1,1988:12005251,40073259:0,0,0 +k1,1988:32583029,40073259:20577778 +g1,1988:32583029,40073259 +) +(1,1988:6630773,40739437:25952256,404226,101187 +h1,1988:6630773,40739437:0,0,0 +g1,1988:7579210,40739437 +g1,1988:9476084,40739437 +g1,1988:10424521,40739437 +g1,1988:11056813,40739437 +g1,1988:11689105,40739437 +g1,1988:12321397,40739437 +g1,1988:12953689,40739437 +h1,1988:13269835,40739437:0,0,0 +k1,1988:32583029,40739437:19313194 +g1,1988:32583029,40739437 +) +(1,1988:6630773,41405615:25952256,404226,101187 +h1,1988:6630773,41405615:0,0,0 +g1,1988:7579210,41405615 +g1,1988:9476084,41405615 +g1,1988:10424521,41405615 +g1,1988:11056813,41405615 +g1,1988:11689105,41405615 +g1,1988:12321397,41405615 +g1,1988:12953689,41405615 +h1,1988:14850563,41405615:0,0,0 +k1,1988:32583029,41405615:17732466 +g1,1988:32583029,41405615 +) +(1,1988:6630773,42071793:25952256,410518,101187 +h1,1988:6630773,42071793:0,0,0 +g1,1988:7579210,42071793 +g1,1988:7895356,42071793 +g1,1988:8211502,42071793 +g1,1988:10424522,42071793 +g1,1988:10740668,42071793 +g1,1988:11056814,42071793 +g1,1988:11372960,42071793 +g1,1988:11689106,42071793 +g1,1988:12953689,42071793 +g1,1988:13902126,42071793 +g1,1988:15166709,42071793 +g1,1988:16115146,42071793 +g1,1988:17063583,42071793 +g1,1988:17379729,42071793 +g1,1988:17695875,42071793 +g1,1988:18012021,42071793 +g1,1988:18328167,42071793 +g1,1988:18644313,42071793 +g1,1988:19276605,42071793 +g1,1988:19592751,42071793 +g1,1988:19908897,42071793 +g1,1988:20225043,42071793 +k1,1988:20225043,42071793:0 +h1,1988:22121917,42071793:0,0,0 +k1,1988:32583029,42071793:10461112 +g1,1988:32583029,42071793 +) +(1,1988:6630773,42737971:25952256,388497,9436 +h1,1988:6630773,42737971:0,0,0 +g1,1988:7579210,42737971 +g1,1988:8211502,42737971 +g1,1988:8527648,42737971 +g1,1988:8843794,42737971 +g1,1988:9159940,42737971 +g1,1988:9476086,42737971 +g1,1988:9792232,42737971 +g1,1988:10424524,42737971 +h1,1988:12637544,42737971:0,0,0 +k1,1988:32583028,42737971:19945484 +g1,1988:32583028,42737971 +) +(1,1988:6630773,43404149:25952256,388497,9436 +h1,1988:6630773,43404149:0,0,0 +g1,1988:7579210,43404149 +g1,1988:8211502,43404149 +g1,1988:8527648,43404149 +g1,1988:8843794,43404149 +g1,1988:9159940,43404149 +g1,1988:9476086,43404149 +g1,1988:9792232,43404149 +g1,1988:10424524,43404149 +g1,1988:12953690,43404149 +g1,1988:13902127,43404149 +g1,1988:14218273,43404149 +g1,1988:14534419,43404149 +g1,1988:17063585,43404149 +g1,1988:19276605,43404149 +g1,1988:22438062,43404149 +h1,1988:23386499,43404149:0,0,0 +k1,1988:32583029,43404149:9196530 +g1,1988:32583029,43404149 +) +(1,1988:6630773,44070327:25952256,388497,9436 +h1,1988:6630773,44070327:0,0,0 +g1,1988:7579210,44070327 +g1,1988:8211502,44070327 +g1,1988:8527648,44070327 +g1,1988:8843794,44070327 +g1,1988:9159940,44070327 +g1,1988:9476086,44070327 +g1,1988:9792232,44070327 +g1,1988:10424524,44070327 +g1,1988:12953690,44070327 +g1,1988:13269836,44070327 +g1,1988:13902128,44070327 +g1,1988:14218274,44070327 +g1,1988:14534420,44070327 +g1,1988:14850566,44070327 +g1,1988:17063586,44070327 +g1,1988:19276606,44070327 +g1,1988:22438063,44070327 +h1,1988:23386500,44070327:0,0,0 +k1,1988:32583029,44070327:9196529 +g1,1988:32583029,44070327 +) +(1,1988:6630773,44736505:25952256,379060,0 +h1,1988:6630773,44736505:0,0,0 +g1,1988:7579210,44736505 +k1,1988:7579210,44736505:0 +h1,1988:8527648,44736505:0,0,0 +k1,1988:32583028,44736505:24055380 +g1,1988:32583028,44736505 +) +(1,1988:6630773,45402683:25952256,410518,107478 +h1,1988:6630773,45402683:0,0,0 +g1,1988:7579210,45402683 +g1,1988:10108376,45402683 +g1,1988:12321396,45402683 +g1,1988:12637542,45402683 +g1,1988:13269834,45402683 +g1,1988:15166709,45402683 +g1,1988:17063583,45402683 +g1,1988:18644312,45402683 +g1,1988:20225041,45402683 +g1,1988:21489625,45402683 +g1,1988:23070354,45402683 +g1,1988:24334938,45402683 +g1,1988:25599521,45402683 +g1,1988:26231813,45402683 +g1,1988:26864105,45402683 +h1,1988:27180251,45402683:0,0,0 +k1,1988:32583029,45402683:5402778 +g1,1988:32583029,45402683 +) +] +) +g1,1989:32583029,45510161 +g1,1989:6630773,45510161 +g1,1989:6630773,45510161 +g1,1989:32583029,45510161 +g1,1989:32583029,45510161 +) +h1,1989:6630773,45706769:0,0,0 +] +(1,1992:32583029,45706769:0,0,0 +g1,1992:32583029,45706769 +) +) +] +(1,1992:6630773,47279633:25952256,0,0 +h1,1992:6630773,47279633:25952256,0,0 +) +] +(1,1992:4262630,4025873:0,0,0 +[1,1992:-473656,4025873:0,0,0 +(1,1992:-473656,-710413:0,0,0 +(1,1992:-473656,-710413:0,0,0 +g1,1992:-473656,-710413 +) +g1,1992:-473656,-710413 +) +] +) +] +!27240 +}40 +Input:571:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:572:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:573:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:574:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:575:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!466 +{41 +[1,2057:4262630,47279633:28320399,43253760,0 +(1,2057:4262630,4025873:0,0,0 +[1,2057:-473656,4025873:0,0,0 +(1,2057:-473656,-710413:0,0,0 +(1,2057:-473656,-644877:0,0,0 +k1,2057:-473656,-644877:-65536 ) -g2990,86:-473656,-710413 +(1,2057:-473656,4736287:0,0,0 +k1,2057:-473656,4736287:5209943 ) -] +g1,2057:-473656,-710413 ) ] -!26637 -}388 -!12 -{389 -[2990,177:4262630,47279633:28320399,43253760,0 -(2990,177:4262630,4025873:0,0,0 -[2990,177:-473656,4025873:0,0,0 -(2990,177:-473656,-710413:0,0,0 -(2990,177:-473656,-644877:0,0,0 -k2990,177:-473656,-644877:-65536 -) -(2990,177:-473656,4736287:0,0,0 -k2990,177:-473656,4736287:5209943 -) -g2990,177:-473656,-710413 ) -] +[1,2057:6630773,47279633:25952256,43253760,0 +[1,2057:6630773,4812305:25952256,786432,0 +(1,2057:6630773,4812305:25952256,505283,134348 +(1,2057:6630773,4812305:25952256,505283,134348 +g1,2057:3078558,4812305 +[1,2057:3078558,4812305:0,0,0 +(1,2057:3078558,2439708:0,1703936,0 +k1,2057:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,2057:2537886,2439708:1179648,16384,0 ) -[2990,177:6630773,47279633:25952256,43253760,0 -[2990,177:6630773,4812305:25952256,786432,0 -(2990,177:6630773,4812305:25952256,513147,134348 -(2990,177:6630773,4812305:25952256,513147,134348 -g2990,177:3078558,4812305 -[2990,177:3078558,4812305:0,0,0 -(2990,177:3078558,2439708:0,1703936,0 -k2990,177:1358238,2439708:-1720320 -(2990,1:1358238,2439708:1720320,1703936,0 -(2990,1:1358238,2439708:1179648,16384,0 -r2990,177:2537886,2439708:1179648,16384,0 -) -g2990,1:3062174,2439708 -(2990,1:3062174,2439708:16384,1703936,0 -[2990,1:3062174,2439708:25952256,1703936,0 -(2990,1:3062174,1915420:25952256,1179648,0 -(2990,1:3062174,1915420:16384,1179648,0 -r2990,177:3078558,1915420:16384,1179648,0 -) -k2990,1:29014430,1915420:25935872 -g2990,1:29014430,1915420 +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,2057:3078558,1915420:16384,1179648,0 +) +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) ] ) ) ) ] -[2990,177:3078558,4812305:0,0,0 -(2990,177:3078558,2439708:0,1703936,0 -g2990,177:29030814,2439708 -g2990,177:36135244,2439708 -(2990,1:36135244,2439708:1720320,1703936,0 -(2990,1:36135244,2439708:16384,1703936,0 -[2990,1:36135244,2439708:25952256,1703936,0 -(2990,1:36135244,1915420:25952256,1179648,0 -(2990,1:36135244,1915420:16384,1179648,0 -r2990,177:36151628,1915420:16384,1179648,0 -) -k2990,1:62087500,1915420:25935872 -g2990,1:62087500,1915420 +[1,2057:3078558,4812305:0,0,0 +(1,2057:3078558,2439708:0,1703936,0 +g1,2057:29030814,2439708 +g1,2057:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,2057:36151628,1915420:16384,1179648,0 ) -] +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) -g2990,1:36675916,2439708 -(2990,1:36675916,2439708:1179648,16384,0 -r2990,177:37855564,2439708:1179648,16384,0 +] ) +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,2057:37855564,2439708:1179648,16384,0 ) -k2990,177:3078556,2439708:-34777008 ) -] -[2990,177:3078558,4812305:0,0,0 -(2990,177:3078558,49800853:0,16384,2228224 -k2990,177:1358238,49800853:-1720320 -(2990,1:1358238,49800853:1720320,16384,2228224 -(2990,1:1358238,49800853:1179648,16384,0 -r2990,177:2537886,49800853:1179648,16384,0 -) -g2990,1:3062174,49800853 -(2990,1:3062174,52029077:16384,1703936,0 -[2990,1:3062174,52029077:25952256,1703936,0 -(2990,1:3062174,51504789:25952256,1179648,0 -(2990,1:3062174,51504789:16384,1179648,0 -r2990,177:3078558,51504789:16384,1179648,0 -) -k2990,1:29014430,51504789:25935872 -g2990,1:29014430,51504789 +k1,2057:3078556,2439708:-34777008 ) ] +[1,2057:3078558,4812305:0,0,0 +(1,2057:3078558,49800853:0,16384,2228224 +k1,2057:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,2057:2537886,49800853:1179648,16384,0 ) +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,2057:3078558,51504789:16384,1179648,0 ) +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) ] -[2990,177:3078558,4812305:0,0,0 -(2990,177:3078558,49800853:0,16384,2228224 -g2990,177:29030814,49800853 -g2990,177:36135244,49800853 -(2990,1:36135244,49800853:1720320,16384,2228224 -(2990,1:36135244,52029077:16384,1703936,0 -[2990,1:36135244,52029077:25952256,1703936,0 -(2990,1:36135244,51504789:25952256,1179648,0 -(2990,1:36135244,51504789:16384,1179648,0 -r2990,177:36151628,51504789:16384,1179648,0 -) -k2990,1:62087500,51504789:25935872 -g2990,1:62087500,51504789 ) -] ) -g2990,1:36675916,49800853 -(2990,1:36675916,49800853:1179648,16384,0 -r2990,177:37855564,49800853:1179648,16384,0 ) +] +[1,2057:3078558,4812305:0,0,0 +(1,2057:3078558,49800853:0,16384,2228224 +g1,2057:29030814,49800853 +g1,2057:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,2057:36151628,51504789:16384,1179648,0 ) -k2990,177:3078556,49800853:-34777008 +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 +) +] +) +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,2057:37855564,49800853:1179648,16384,0 +) +) +k1,2057:3078556,49800853:-34777008 +) +] +g1,2057:6630773,4812305 +k1,2057:18771974,4812305:11344283 +g1,2057:20158715,4812305 +g1,2057:20807521,4812305 +g1,2057:24121676,4812305 +g1,2057:28605649,4812305 +g1,2057:30015328,4812305 +) +) +] +[1,2057:6630773,45706769:25952256,40108032,0 +(1,2057:6630773,45706769:25952256,40108032,0 +(1,2057:6630773,45706769:0,0,0 +g1,2057:6630773,45706769 +) +[1,2057:6630773,45706769:25952256,40108032,0 +(1,1993:6630773,6254097:25952256,513147,126483 +h1,1992:6630773,6254097:983040,0,0 +k1,1992:8273293,6254097:181723 +k1,1992:9323368,6254097:181723 +k1,1992:10696536,6254097:181723 +k1,1992:11687629,6254097:181723 +k1,1992:14144762,6254097:181723 +k1,1992:15418970,6254097:181723 +k1,1992:16548344,6254097:181723 +(1,1992:16548344,6254097:0,452978,115847 +r1,2057:19016881,6254097:2468537,568825,115847 +k1,1992:16548344,6254097:-2468537 +) +(1,1992:16548344,6254097:2468537,452978,115847 +k1,1992:16548344,6254097:3277 +h1,1992:19013604,6254097:0,411205,112570 +) +k1,1992:19198604,6254097:181723 +k1,1992:20248679,6254097:181723 +k1,1992:22199219,6254097:181723 +k1,1992:24519382,6254097:181723 +k1,1992:26343437,6254097:181723 +k1,1992:26881020,6254097:181723 +k1,1992:28056269,6254097:181723 +k1,1992:29631943,6254097:181723 +k1,1992:32583029,6254097:0 +) +(1,1993:6630773,7095585:25952256,505283,134348 +g1,1992:9783710,7095585 +g1,1992:10744467,7095585 +g1,1992:12679089,7095585 +g1,1992:16053537,7095585 +k1,1993:32583029,7095585:13616417 +g1,1993:32583029,7095585 +) +v1,1995:6630773,8270313:0,393216,0 +(1,2029:6630773,25360113:25952256,17483016,196608 +g1,2029:6630773,25360113 +g1,2029:6630773,25360113 +g1,2029:6434165,25360113 +(1,2029:6434165,25360113:0,17483016,196608 +r1,2057:32779637,25360113:26345472,17679624,196608 +k1,2029:6434165,25360113:-26345472 +) +(1,2029:6434165,25360113:26345472,17483016,196608 +[1,2029:6630773,25360113:25952256,17286408,0 +(1,1997:6630773,8477931:25952256,404226,76021 +(1,1996:6630773,8477931:0,0,0 +g1,1996:6630773,8477931 +g1,1996:6630773,8477931 +g1,1996:6303093,8477931 +(1,1996:6303093,8477931:0,0,0 +) +g1,1996:6630773,8477931 +) +g1,1997:9159939,8477931 +g1,1997:10108377,8477931 +k1,1997:10108377,8477931:0 +h1,1997:12005251,8477931:0,0,0 +k1,1997:32583029,8477931:20577778 +g1,1997:32583029,8477931 +) +(1,1998:6630773,9144109:25952256,404226,101187 +h1,1998:6630773,9144109:0,0,0 +g1,1998:8843793,9144109 +g1,1998:9792231,9144109 +g1,1998:12005251,9144109 +g1,1998:12637543,9144109 +g1,1998:13585981,9144109 +g1,1998:14218273,9144109 +g1,1998:14850565,9144109 +g1,1998:15482857,9144109 +g1,1998:16115149,9144109 +g1,1998:17063587,9144109 +g1,1998:17695879,9144109 +g1,1998:18328171,9144109 +g1,1998:18960463,9144109 +g1,1998:19592755,9144109 +k1,1998:19592755,9144109:0 +h1,1998:21805775,9144109:0,0,0 +k1,1998:32583029,9144109:10777254 +g1,1998:32583029,9144109 +) +(1,1999:6630773,9810287:25952256,410518,107478 +h1,1999:6630773,9810287:0,0,0 +g1,1999:7895356,9810287 +g1,1999:8843793,9810287 +g1,1999:9792230,9810287 +g1,1999:14534416,9810287 +g1,1999:15166708,9810287 +g1,1999:18012019,9810287 +h1,1999:18328165,9810287:0,0,0 +k1,1999:32583029,9810287:14254864 +g1,1999:32583029,9810287 +) +(1,2000:6630773,10476465:25952256,404226,101187 +h1,2000:6630773,10476465:0,0,0 +g1,2000:6946919,10476465 +g1,2000:7263065,10476465 +g1,2000:7579211,10476465 +g1,2000:11689105,10476465 +g1,2000:12637543,10476465 +g1,2000:17695874,10476465 +g1,2000:19276603,10476465 +g1,2000:19908895,10476465 +h1,2000:22438060,10476465:0,0,0 +k1,2000:32583029,10476465:10144969 +g1,2000:32583029,10476465 +) +(1,2001:6630773,11142643:25952256,404226,76021 +h1,2001:6630773,11142643:0,0,0 +g1,2001:6946919,11142643 +g1,2001:7263065,11142643 +g1,2001:7579211,11142643 +h1,2001:7895357,11142643:0,0,0 +k1,2001:32583029,11142643:24687672 +g1,2001:32583029,11142643 +) +(1,2002:6630773,11808821:25952256,404226,82312 +h1,2002:6630773,11808821:0,0,0 +g1,2002:10740667,11808821 +g1,2002:13902124,11808821 +g1,2002:14534416,11808821 +h1,2002:15166708,11808821:0,0,0 +k1,2002:32583028,11808821:17416320 +g1,2002:32583028,11808821 +) +(1,2012:6630773,12540535:25952256,410518,9436 +(1,2004:6630773,12540535:0,0,0 +g1,2004:6630773,12540535 +g1,2004:6630773,12540535 +g1,2004:6303093,12540535 +(1,2004:6303093,12540535:0,0,0 +) +g1,2004:6630773,12540535 +) +g1,2012:7579210,12540535 +g1,2012:9159939,12540535 +g1,2012:10108376,12540535 +h1,2012:10424522,12540535:0,0,0 +k1,2012:32583030,12540535:22158508 +g1,2012:32583030,12540535 +) +(1,2012:6630773,13206713:25952256,410518,31456 +h1,2012:6630773,13206713:0,0,0 +g1,2012:7579210,13206713 +g1,2012:7895356,13206713 +g1,2012:8527648,13206713 +g1,2012:10424522,13206713 +g1,2012:11372959,13206713 +h1,2012:12005250,13206713:0,0,0 +k1,2012:32583030,13206713:20577780 +g1,2012:32583030,13206713 +) +(1,2012:6630773,13872891:25952256,404226,82312 +h1,2012:6630773,13872891:0,0,0 +g1,2012:7579210,13872891 +g1,2012:7895356,13872891 +g1,2012:8211502,13872891 +g1,2012:9476085,13872891 +g1,2012:12005251,13872891 +g1,2012:15166708,13872891 +g1,2012:16431291,13872891 +h1,2012:17695874,13872891:0,0,0 +k1,2012:32583029,13872891:14887155 +g1,2012:32583029,13872891 +) +(1,2012:6630773,14539069:25952256,410518,31456 +h1,2012:6630773,14539069:0,0,0 +g1,2012:7579210,14539069 +g1,2012:7895356,14539069 +g1,2012:8527648,14539069 +g1,2012:10424522,14539069 +g1,2012:11372959,14539069 +h1,2012:12005250,14539069:0,0,0 +k1,2012:32583030,14539069:20577780 +g1,2012:32583030,14539069 +) +(1,2012:6630773,15205247:25952256,404226,82312 +h1,2012:6630773,15205247:0,0,0 +g1,2012:7579210,15205247 +g1,2012:7895356,15205247 +g1,2012:8211502,15205247 +g1,2012:9476085,15205247 +g1,2012:12005251,15205247 +g1,2012:15166708,15205247 +g1,2012:16431291,15205247 +h1,2012:17695874,15205247:0,0,0 +k1,2012:32583029,15205247:14887155 +g1,2012:32583029,15205247 +) +(1,2012:6630773,15871425:25952256,410518,31456 +h1,2012:6630773,15871425:0,0,0 +g1,2012:7579210,15871425 +g1,2012:7895356,15871425 +g1,2012:8527648,15871425 +g1,2012:10424522,15871425 +g1,2012:11372959,15871425 +h1,2012:12005250,15871425:0,0,0 +k1,2012:32583030,15871425:20577780 +g1,2012:32583030,15871425 +) +(1,2012:6630773,16537603:25952256,404226,82312 +h1,2012:6630773,16537603:0,0,0 +g1,2012:7579210,16537603 +g1,2012:7895356,16537603 +g1,2012:8211502,16537603 +g1,2012:9476085,16537603 +g1,2012:12005251,16537603 +g1,2012:15166708,16537603 +g1,2012:16431291,16537603 +h1,2012:17695874,16537603:0,0,0 +k1,2012:32583029,16537603:14887155 +g1,2012:32583029,16537603 +) +(1,2014:6630773,17859141:25952256,404226,82312 +(1,2013:6630773,17859141:0,0,0 +g1,2013:6630773,17859141 +g1,2013:6630773,17859141 +g1,2013:6303093,17859141 +(1,2013:6303093,17859141:0,0,0 +) +g1,2013:6630773,17859141 +) +k1,2014:6630773,17859141:0 +g1,2014:11372959,17859141 +h1,2014:13902124,17859141:0,0,0 +k1,2014:32583028,17859141:18680904 +g1,2014:32583028,17859141 +) +(1,2028:6630773,18590855:25952256,410518,101187 +(1,2016:6630773,18590855:0,0,0 +g1,2016:6630773,18590855 +g1,2016:6630773,18590855 +g1,2016:6303093,18590855 +(1,2016:6303093,18590855:0,0,0 +) +g1,2016:6630773,18590855 +) +g1,2028:7579210,18590855 +g1,2028:10424521,18590855 +g1,2028:11372958,18590855 +g1,2028:14218269,18590855 +h1,2028:15798997,18590855:0,0,0 +k1,2028:32583029,18590855:16784032 +g1,2028:32583029,18590855 +) +(1,2028:6630773,19257033:25952256,379060,0 +h1,2028:6630773,19257033:0,0,0 +h1,2028:7263064,19257033:0,0,0 +k1,2028:32583028,19257033:25319964 +g1,2028:32583028,19257033 +) +(1,2028:6630773,19923211:25952256,404226,101187 +h1,2028:6630773,19923211:0,0,0 +g1,2028:7579210,19923211 +g1,2028:9476084,19923211 +g1,2028:10424521,19923211 +g1,2028:11056813,19923211 +g1,2028:11689105,19923211 +h1,2028:12005251,19923211:0,0,0 +k1,2028:32583029,19923211:20577778 +g1,2028:32583029,19923211 +) +(1,2028:6630773,20589389:25952256,404226,101187 +h1,2028:6630773,20589389:0,0,0 +g1,2028:7579210,20589389 +g1,2028:9476084,20589389 +g1,2028:10424521,20589389 +g1,2028:11056813,20589389 +g1,2028:11689105,20589389 +g1,2028:12321397,20589389 +g1,2028:12953689,20589389 +h1,2028:13269835,20589389:0,0,0 +k1,2028:32583029,20589389:19313194 +g1,2028:32583029,20589389 +) +(1,2028:6630773,21255567:25952256,404226,101187 +h1,2028:6630773,21255567:0,0,0 +g1,2028:7579210,21255567 +g1,2028:9476084,21255567 +g1,2028:10424521,21255567 +g1,2028:11056813,21255567 +g1,2028:11689105,21255567 +g1,2028:12321397,21255567 +g1,2028:12953689,21255567 +h1,2028:14850563,21255567:0,0,0 +k1,2028:32583029,21255567:17732466 +g1,2028:32583029,21255567 +) +(1,2028:6630773,21921745:25952256,410518,101187 +h1,2028:6630773,21921745:0,0,0 +g1,2028:7579210,21921745 +g1,2028:7895356,21921745 +g1,2028:8211502,21921745 +g1,2028:10424522,21921745 +g1,2028:10740668,21921745 +g1,2028:11056814,21921745 +g1,2028:11372960,21921745 +g1,2028:11689106,21921745 +g1,2028:12953689,21921745 +g1,2028:13902126,21921745 +g1,2028:15166709,21921745 +g1,2028:16115146,21921745 +g1,2028:17063583,21921745 +g1,2028:17379729,21921745 +g1,2028:17695875,21921745 +g1,2028:18012021,21921745 +g1,2028:18328167,21921745 +g1,2028:18644313,21921745 +g1,2028:19276605,21921745 +g1,2028:19592751,21921745 +g1,2028:19908897,21921745 +g1,2028:20225043,21921745 +k1,2028:20225043,21921745:0 +h1,2028:22121917,21921745:0,0,0 +k1,2028:32583029,21921745:10461112 +g1,2028:32583029,21921745 +) +(1,2028:6630773,22587923:25952256,388497,9436 +h1,2028:6630773,22587923:0,0,0 +g1,2028:7579210,22587923 +g1,2028:8211502,22587923 +g1,2028:8527648,22587923 +g1,2028:8843794,22587923 +g1,2028:9159940,22587923 +g1,2028:9476086,22587923 +g1,2028:9792232,22587923 +g1,2028:10424524,22587923 +h1,2028:12637544,22587923:0,0,0 +k1,2028:32583028,22587923:19945484 +g1,2028:32583028,22587923 +) +(1,2028:6630773,23254101:25952256,388497,9436 +h1,2028:6630773,23254101:0,0,0 +g1,2028:7579210,23254101 +g1,2028:8211502,23254101 +g1,2028:8527648,23254101 +g1,2028:8843794,23254101 +g1,2028:9159940,23254101 +g1,2028:9476086,23254101 +g1,2028:9792232,23254101 +g1,2028:10424524,23254101 +g1,2028:12953690,23254101 +g1,2028:13902127,23254101 +g1,2028:14218273,23254101 +g1,2028:14534419,23254101 +g1,2028:17063585,23254101 +g1,2028:19276605,23254101 +g1,2028:22438062,23254101 +h1,2028:23386499,23254101:0,0,0 +k1,2028:32583029,23254101:9196530 +g1,2028:32583029,23254101 +) +(1,2028:6630773,23920279:25952256,388497,9436 +h1,2028:6630773,23920279:0,0,0 +g1,2028:7579210,23920279 +g1,2028:8211502,23920279 +g1,2028:8527648,23920279 +g1,2028:8843794,23920279 +g1,2028:9159940,23920279 +g1,2028:9476086,23920279 +g1,2028:9792232,23920279 +g1,2028:10424524,23920279 +g1,2028:12953690,23920279 +g1,2028:13269836,23920279 +g1,2028:13902128,23920279 +g1,2028:14218274,23920279 +g1,2028:14534420,23920279 +g1,2028:14850566,23920279 +g1,2028:17063586,23920279 +g1,2028:19276606,23920279 +g1,2028:22438063,23920279 +h1,2028:23386500,23920279:0,0,0 +k1,2028:32583029,23920279:9196529 +g1,2028:32583029,23920279 +) +(1,2028:6630773,24586457:25952256,379060,0 +h1,2028:6630773,24586457:0,0,0 +g1,2028:7579210,24586457 +k1,2028:7579210,24586457:0 +h1,2028:8527648,24586457:0,0,0 +k1,2028:32583028,24586457:24055380 +g1,2028:32583028,24586457 +) +(1,2028:6630773,25252635:25952256,410518,107478 +h1,2028:6630773,25252635:0,0,0 +g1,2028:7579210,25252635 +g1,2028:10108376,25252635 +g1,2028:12321396,25252635 +g1,2028:12637542,25252635 +g1,2028:13269834,25252635 +g1,2028:15166709,25252635 +g1,2028:17063583,25252635 +g1,2028:18644312,25252635 +g1,2028:20225041,25252635 +g1,2028:21489625,25252635 +g1,2028:23070354,25252635 +g1,2028:24334938,25252635 +g1,2028:25599521,25252635 +g1,2028:26231813,25252635 +g1,2028:26864105,25252635 +h1,2028:27180251,25252635:0,0,0 +k1,2028:32583029,25252635:5402778 +g1,2028:32583029,25252635 +) +] +) +g1,2029:32583029,25360113 +g1,2029:6630773,25360113 +g1,2029:6630773,25360113 +g1,2029:32583029,25360113 +g1,2029:32583029,25360113 +) +h1,2029:6630773,25556721:0,0,0 +(1,2032:6630773,28872839:25952256,32768,229376 +(1,2032:6630773,28872839:0,32768,229376 +(1,2032:6630773,28872839:5505024,32768,229376 +r1,2057:12135797,28872839:5505024,262144,229376 +) +k1,2032:6630773,28872839:-5505024 +) +(1,2032:6630773,28872839:25952256,32768,0 +r1,2057:32583029,28872839:25952256,32768,0 +) +) +(1,2032:6630773,30477167:25952256,606339,151780 +(1,2032:6630773,30477167:1974731,582746,14155 +g1,2032:6630773,30477167 +g1,2032:8605504,30477167 +) +g1,2032:10655733,30477167 +g1,2032:13036263,30477167 +g1,2032:14051547,30477167 +g1,2032:16091552,30477167 +k1,2032:32583029,30477167:15925246 +g1,2032:32583029,30477167 +) +(1,2035:6630773,31711871:25952256,513147,126483 +k1,2034:8101827,31711871:274367 +k1,2034:11584182,31711871:274368 +k1,2034:12959554,31711871:274367 +k1,2034:17093336,31711871:274367 +k1,2034:18386788,31711871:274367 +k1,2034:19753640,31711871:274367 +k1,2034:20687300,31711871:274368 +k1,2034:22351030,31711871:274367 +k1,2034:24345717,31711871:274367 +k1,2034:25236122,31711871:274367 +k1,2034:26099003,31711871:274368 +k1,2034:29084594,31711871:274367 +k1,2034:30792889,31711871:274367 +k1,2034:31482024,31711871:274292 +k1,2034:32583029,31711871:0 +) +(1,2035:6630773,32553359:25952256,513147,134348 +k1,2034:8960965,32553359:216001 +k1,2034:9532826,32553359:216001 +k1,2034:11138846,32553359:216001 +k1,2034:14275131,32553359:216001 +(1,2034:14275131,32553359:0,452978,115847 +r1,2057:14985109,32553359:709978,568825,115847 +k1,2034:14275131,32553359:-709978 +) +(1,2034:14275131,32553359:709978,452978,115847 +k1,2034:14275131,32553359:3277 +h1,2034:14981832,32553359:0,411205,112570 +) +k1,2034:15374780,32553359:216001 +k1,2034:16782225,32553359:216000 +k1,2034:17614264,32553359:216001 +k1,2034:21818131,32553359:216001 +k1,2034:23428083,32553359:216001 +k1,2034:24922691,32553359:216001 +k1,2034:27276476,32553359:216001 +k1,2034:28926405,32553359:216001 +k1,2034:29557232,32553359:215984 +k1,2034:32583029,32553359:0 +) +(1,2035:6630773,33394847:25952256,513147,134348 +k1,2034:7331711,33394847:242841 +k1,2034:10334927,33394847:242840 +k1,2034:10933628,33394847:242841 +k1,2034:13531832,33394847:242840 +k1,2034:16464271,33394847:242841 +k1,2034:17654762,33394847:242840 +k1,2034:19286966,33394847:242841 +k1,2034:22360961,33394847:242840 +k1,2034:23795247,33394847:242841 +k1,2034:29379271,33394847:242840 +k1,2034:30249947,33394847:242841 +k1,2034:32583029,33394847:0 +) +(1,2035:6630773,34236335:25952256,505283,126483 +k1,2034:9884534,34236335:215512 +k1,2034:10968399,34236335:215513 +k1,2034:12276396,34236335:215512 +k1,2034:15825070,34236335:215513 +k1,2034:18882223,34236335:215512 +k1,2034:19749164,34236335:215513 +k1,2034:21582105,34236335:215512 +k1,2034:23808263,34236335:215513 +k1,2034:25308281,34236335:215512 +k1,2034:26515354,34236335:215513 +k1,2034:28244092,34236335:215512 +k1,2034:29835206,34236335:215513 +k1,2034:31714677,34236335:215512 +k1,2034:32583029,34236335:0 +) +(1,2035:6630773,35077823:25952256,505283,134348 +k1,2034:8032588,35077823:297533 +k1,2034:10050442,35077823:297534 +k1,2034:11367060,35077823:297533 +k1,2034:15181255,35077823:297533 +k1,2034:17837430,35077823:297534 +k1,2034:19154048,35077823:297533 +k1,2034:21485164,35077823:297534 +k1,2034:23050163,35077823:297533 +k1,2034:23703556,35077823:297533 +k1,2034:27334251,35077823:297534 +k1,2034:30143124,35077823:297533 +k1,2034:32583029,35077823:0 +) +(1,2035:6630773,35919311:25952256,513147,126483 +k1,2034:9195251,35919311:237295 +k1,2034:10091838,35919311:237295 +k1,2034:12833919,35919311:237295 +k1,2034:13699049,35919311:237295 +k1,2034:15688121,35919311:237295 +k1,2034:17796469,35919311:237295 +k1,2034:20151231,35919311:237294 +k1,2034:23084022,35919311:237295 +k1,2034:24751313,35919311:237295 +k1,2034:26092890,35919311:237295 +k1,2034:27616001,35919311:237295 +k1,2034:28601062,35919311:237295 +k1,2034:32583029,35919311:0 +) +(1,2035:6630773,36760799:25952256,505283,126483 +g1,2034:8097468,36760799 +g1,2034:10167095,36760799 +g1,2034:11017752,36760799 +g1,2034:12629282,36760799 +k1,2035:32583028,36760799:18165924 +g1,2035:32583028,36760799 +) +(1,2037:6630773,37602287:25952256,513147,134348 +h1,2036:6630773,37602287:983040,0,0 +k1,2036:10650730,37602287:239185 +k1,2036:11549207,37602287:239185 +k1,2036:14997035,37602287:239185 +k1,2036:18077861,37602287:239185 +k1,2036:18968474,37602287:239185 +k1,2036:19563519,37602287:239185 +k1,2036:21192067,37602287:239185 +k1,2036:23307548,37602287:239185 +k1,2036:25282126,37602287:239185 +(1,2036:25282126,37602287:0,452978,115847 +r1,2057:28102375,37602287:2820249,568825,115847 +k1,2036:25282126,37602287:-2820249 +) +(1,2036:25282126,37602287:2820249,452978,115847 +k1,2036:25282126,37602287:3277 +h1,2036:28099098,37602287:0,411205,112570 +) +k1,2036:28341560,37602287:239185 +k1,2036:29772190,37602287:239185 +k1,2036:32583029,37602287:0 +) +(1,2037:6630773,38443775:25952256,513147,126483 +k1,2036:8419671,38443775:254700 +k1,2036:10068321,38443775:254699 +(1,2036:10068321,38443775:0,452978,115847 +r1,2057:12888570,38443775:2820249,568825,115847 +k1,2036:10068321,38443775:-2820249 +) +(1,2036:10068321,38443775:2820249,452978,115847 +k1,2036:10068321,38443775:3277 +h1,2036:12885293,38443775:0,411205,112570 +) +k1,2036:13143270,38443775:254700 +k1,2036:14389529,38443775:254699 +k1,2036:17776850,38443775:254700 +k1,2036:18647587,38443775:254699 +k1,2036:20000015,38443775:254700 +k1,2036:21560848,38443775:254700 +k1,2036:23175419,38443775:254699 +k1,2036:26265206,38443775:254700 +k1,2036:27473454,38443775:254699 +k1,2036:28820639,38443775:254700 +k1,2036:30094423,38443775:254699 +(1,2036:30094423,38443775:0,414482,115847 +r1,2057:30452689,38443775:358266,530329,115847 +k1,2036:30094423,38443775:-358266 +) +(1,2036:30094423,38443775:358266,414482,115847 +k1,2036:30094423,38443775:3277 +h1,2036:30449412,38443775:0,411205,112570 +) +k1,2036:30707389,38443775:254700 +k1,2037:32583029,38443775:0 +) +(1,2037:6630773,39285263:25952256,513147,134348 +g1,2036:8900940,39285263 +g1,2036:9751597,39285263 +g1,2036:12482482,39285263 +g1,2036:13700796,39285263 +g1,2036:15580368,39285263 +g1,2036:18558324,39285263 +g1,2036:19519081,39285263 +g1,2036:20737395,39285263 +g1,2036:24084974,39285263 +g1,2036:26979699,39285263 +g1,2036:27794966,39285263 +g1,2036:29013280,39285263 +k1,2037:32583029,39285263:2006060 +g1,2037:32583029,39285263 +) +v1,2039:6630773,40459991:0,393216,0 +(1,2057:6630773,45510161:25952256,5443386,196608 +g1,2057:6630773,45510161 +g1,2057:6630773,45510161 +g1,2057:6434165,45510161 +(1,2057:6434165,45510161:0,5443386,196608 +r1,2057:32779637,45510161:26345472,5639994,196608 +k1,2057:6434165,45510161:-26345472 +) +(1,2057:6434165,45510161:26345472,5443386,196608 +[1,2057:6630773,45510161:25952256,5246778,0 +(1,2041:6630773,40673901:25952256,410518,101187 +(1,2040:6630773,40673901:0,0,0 +g1,2040:6630773,40673901 +g1,2040:6630773,40673901 +g1,2040:6303093,40673901 +(1,2040:6303093,40673901:0,0,0 +) +g1,2040:6630773,40673901 +) +k1,2041:6630773,40673901:0 +g1,2041:10740668,40673901 +g1,2041:11372960,40673901 +g1,2041:13269835,40673901 +g1,2041:13902127,40673901 +g1,2041:14534419,40673901 +g1,2041:18012021,40673901 +k1,2041:18012021,40673901:0 +h1,2041:18644313,40673901:0,0,0 +k1,2041:32583029,40673901:13938716 +g1,2041:32583029,40673901 +) +(1,2042:6630773,41340079:25952256,404226,82312 +h1,2042:6630773,41340079:0,0,0 +g1,2042:6946919,41340079 +g1,2042:7263065,41340079 +g1,2042:11056814,41340079 +g1,2042:11689106,41340079 +k1,2042:11689106,41340079:0 +h1,2042:12321398,41340079:0,0,0 +k1,2042:32583030,41340079:20261632 +g1,2042:32583030,41340079 +) +(1,2043:6630773,42006257:25952256,404226,76021 +h1,2043:6630773,42006257:0,0,0 +g1,2043:6946919,42006257 +g1,2043:7263065,42006257 +g1,2043:7579211,42006257 +g1,2043:7895357,42006257 +g1,2043:8211503,42006257 +g1,2043:8527649,42006257 +g1,2043:8843795,42006257 +g1,2043:9159941,42006257 +g1,2043:9476087,42006257 +h1,2043:9792233,42006257:0,0,0 +k1,2043:32583029,42006257:22790796 +g1,2043:32583029,42006257 +) +(1,2044:6630773,42672435:25952256,379060,0 +h1,2044:6630773,42672435:0,0,0 +g1,2044:6946919,42672435 +g1,2044:7263065,42672435 +g1,2044:7579211,42672435 +g1,2044:7895357,42672435 +g1,2044:8211503,42672435 +g1,2044:8527649,42672435 +g1,2044:8843795,42672435 +g1,2044:9159941,42672435 +g1,2044:9476087,42672435 +g1,2044:9792233,42672435 +g1,2044:10108379,42672435 +g1,2044:11056816,42672435 +g1,2044:12005254,42672435 +h1,2044:12953692,42672435:0,0,0 +k1,2044:32583028,42672435:19629336 +g1,2044:32583028,42672435 +) +(1,2045:6630773,43338613:25952256,404226,107478 +h1,2045:6630773,43338613:0,0,0 +g1,2045:6946919,43338613 +g1,2045:7263065,43338613 +g1,2045:7579211,43338613 +g1,2045:7895357,43338613 +g1,2045:8211503,43338613 +g1,2045:8527649,43338613 +g1,2045:8843795,43338613 +g1,2045:9159941,43338613 +g1,2045:9476087,43338613 +g1,2045:9792233,43338613 +g1,2045:10108379,43338613 +g1,2045:12953690,43338613 +g1,2045:13902128,43338613 +g1,2045:15166712,43338613 +g1,2045:15799004,43338613 +h1,2045:17063587,43338613:0,0,0 +k1,2045:32583029,43338613:15519442 +g1,2045:32583029,43338613 +) +(1,2046:6630773,44004791:25952256,404226,76021 +h1,2046:6630773,44004791:0,0,0 +g1,2046:6946919,44004791 +g1,2046:7263065,44004791 +g1,2046:7579211,44004791 +g1,2046:7895357,44004791 +g1,2046:8211503,44004791 +g1,2046:8527649,44004791 +g1,2046:8843795,44004791 +g1,2046:9159941,44004791 +g1,2046:9476087,44004791 +g1,2046:10424524,44004791 +k1,2046:10424524,44004791:0 +h1,2046:11056816,44004791:0,0,0 +k1,2046:32583028,44004791:21526212 +g1,2046:32583028,44004791 +) +(1,2047:6630773,44670969:25952256,404226,107478 +h1,2047:6630773,44670969:0,0,0 +g1,2047:6946919,44670969 +g1,2047:7263065,44670969 +g1,2047:10108377,44670969 +g1,2047:10740669,44670969 +g1,2047:11689107,44670969 +h1,2047:14534418,44670969:0,0,0 +k1,2047:32583030,44670969:18048612 +g1,2047:32583030,44670969 +) +(1,2056:6630773,45402683:25952256,404226,107478 +(1,2049:6630773,45402683:0,0,0 +g1,2049:6630773,45402683 +g1,2049:6630773,45402683 +g1,2049:6303093,45402683 +(1,2049:6303093,45402683:0,0,0 +) +g1,2049:6630773,45402683 +) +g1,2056:7579210,45402683 +g1,2056:7895356,45402683 +g1,2056:8211502,45402683 +g1,2056:8527648,45402683 +g1,2056:8843794,45402683 +g1,2056:9476086,45402683 +g1,2056:9792232,45402683 +g1,2056:10108378,45402683 +g1,2056:10424524,45402683 +g1,2056:10740670,45402683 +g1,2056:11056816,45402683 +g1,2056:11372962,45402683 +g1,2056:11689108,45402683 +g1,2056:12005254,45402683 +g1,2056:12321400,45402683 +g1,2056:12637546,45402683 +g1,2056:13269838,45402683 +g1,2056:16115149,45402683 +g1,2056:16431295,45402683 +g1,2056:16747441,45402683 +g1,2056:17063587,45402683 +h1,2056:17695878,45402683:0,0,0 +k1,2056:32583029,45402683:14887151 +g1,2056:32583029,45402683 +) +] +) +g1,2057:32583029,45510161 +g1,2057:6630773,45510161 +g1,2057:6630773,45510161 +g1,2057:32583029,45510161 +g1,2057:32583029,45510161 +) +] +(1,2057:32583029,45706769:0,0,0 +g1,2057:32583029,45706769 +) +) +] +(1,2057:6630773,47279633:25952256,0,0 +h1,2057:6630773,47279633:25952256,0,0 +) +] +(1,2057:4262630,4025873:0,0,0 +[1,2057:-473656,4025873:0,0,0 +(1,2057:-473656,-710413:0,0,0 +(1,2057:-473656,-710413:0,0,0 +g1,2057:-473656,-710413 +) +g1,2057:-473656,-710413 +) +] +) +] +!25076 +}41 +Input:576:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:577:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!193 +{42 +[1,2108:4262630,47279633:28320399,43253760,0 +(1,2108:4262630,4025873:0,0,0 +[1,2108:-473656,4025873:0,0,0 +(1,2108:-473656,-710413:0,0,0 +(1,2108:-473656,-644877:0,0,0 +k1,2108:-473656,-644877:-65536 ) -] -g2990,177:6630773,4812305 -k2990,177:23318207,4812305:15492057 -g2990,177:25216129,4812305 -g2990,177:26031396,4812305 -g2990,177:26644813,4812305 -g2990,177:28902528,4812305 -g2990,177:29858042,4812305 +(1,2108:-473656,4736287:0,0,0 +k1,2108:-473656,4736287:5209943 ) +g1,2108:-473656,-710413 ) ] -[2990,177:6630773,45706769:25952256,40108032,0 -(2990,177:6630773,45706769:25952256,40108032,0 -(2990,177:6630773,45706769:0,0,0 -g2990,177:6630773,45706769 -) -[2990,177:6630773,45706769:25952256,40108032,0 -(2990,177:6630773,45706769:25952256,40108032,126483 -[2990,177:6630773,45706769:11829248,40108032,102891 -(2990,84:6630773,6254097:11829248,505283,102891 -h2990,83:6630773,6254097:0,0,0 -r2990,177:6630773,6254097:0,608174,102891 -g2990,83:7941493,6254097 -g2990,83:7941493,6254097 -g2990,83:10290302,6254097 -k2990,84:14773621,6254097:3686401 -k2990,84:18460021,6254097:3686400 -) -(2990,85:6630773,7112893:11829248,505283,102891 -h2990,84:6630773,7112893:0,0,0 -r2990,177:6630773,7112893:0,608174,102891 -g2990,84:7941493,7112893 -g2990,84:7941493,7112893 -g2990,84:12266213,7112893 -g2990,84:13834489,7112893 -g2990,84:15402765,7112893 -k2990,85:17529082,7112893:930940 -k2990,85:18460021,7112893:930939 -) -(2990,86:6630773,7971688:11829248,505283,102891 -h2990,85:6630773,7971688:0,0,0 -r2990,177:6630773,7971688:0,608174,102891 -g2990,85:7941493,7971688 -g2990,85:7941493,7971688 -g2990,85:15822852,7971688 -k2990,85:18460021,7971688:1268122 -) -(2990,86:9252213,8813176:9207808,485622,11795 -k2990,86:14453806,8813176:4006216 -k2990,86:18460021,8813176:4006215 -) -(2990,87:6630773,9671972:11829248,505283,102891 -h2990,86:6630773,9671972:0,0,0 -r2990,177:6630773,9671972:0,608174,102891 -g2990,86:7941493,9671972 -g2990,86:7941493,9671972 -g2990,86:11080667,9671972 -g2990,86:12648943,9671972 -g2990,86:14217219,9671972 -g2990,86:15785495,9671972 -k2990,86:18460021,9671972:1305479 -) -(2990,87:9252213,10513460:9207808,485622,102891 -g2990,86:10820489,10513460 -g2990,86:12388765,10513460 -k2990,87:16022082,10513460:2437940 -k2990,87:18460021,10513460:2437939 -) -(2990,88:6630773,11372255:11829248,505283,134348 -h2990,87:6630773,11372255:0,0,0 -r2990,177:6630773,11372255:0,639631,134348 -g2990,87:7941493,11372255 -g2990,87:7941493,11372255 -g2990,87:12661395,11372255 -k2990,88:16158397,11372255:2301625 -k2990,88:18460021,11372255:2301624 -) -(2990,89:6630773,12231051:11829248,505283,126483 -h2990,88:6630773,12231051:0,0,0 -r2990,177:6630773,12231051:0,631766,126483 -g2990,88:7941493,12231051 -g2990,88:7941493,12231051 -g2990,88:10290302,12231051 -k2990,89:14773621,12231051:3686401 -k2990,89:18460021,12231051:3686400 -) -(2990,90:6630773,13089846:11829248,505283,102891 -h2990,89:6630773,13089846:0,0,0 -r2990,177:6630773,13089846:0,608174,102891 -g2990,89:7941493,13089846 -g2990,89:7941493,13089846 -g2990,89:10290302,13089846 -g2990,89:11858578,13089846 -k2990,90:15756988,13089846:2703033 -k2990,90:18460021,13089846:2703033 -) -(2990,91:6630773,13948642:11829248,505283,126483 -h2990,90:6630773,13948642:0,0,0 -r2990,177:6630773,13948642:0,631766,126483 -g2990,90:7941493,13948642 -g2990,90:7941493,13948642 -g2990,90:11475849,13948642 -g2990,90:12645666,13948642 -k2990,91:15951303,13948642:2508719 -k2990,91:18460021,13948642:2508718 -) -(2990,92:6630773,14807437:11829248,505283,134348 -h2990,91:6630773,14807437:0,0,0 -r2990,177:6630773,14807437:0,639631,134348 -g2990,91:7941493,14807437 -g2990,91:7941493,14807437 -g2990,91:11871031,14807437 -k2990,92:15763215,14807437:2696807 -k2990,92:18460021,14807437:2696806 -) -(2990,93:6630773,15666233:11829248,505283,126483 -h2990,92:6630773,15666233:0,0,0 -r2990,177:6630773,15666233:0,631766,126483 -g2990,92:7941493,15666233 -g2990,92:7941493,15666233 -g2990,92:11080667,15666233 -k2990,93:15168803,15666233:3291218 -k2990,93:18460021,15666233:3291218 -) -(2990,94:6630773,16525028:11829248,505283,102891 -h2990,93:6630773,16525028:0,0,0 -r2990,177:6630773,16525028:0,608174,102891 -g2990,93:7941493,16525028 -g2990,93:7941493,16525028 -g2990,93:13846941,16525028 -g2990,93:15016758,16525028 -k2990,94:17136849,16525028:1323173 -k2990,94:18460021,16525028:1323172 -) -(2990,95:6630773,17383824:11829248,513147,102891 -h2990,94:6630773,17383824:0,0,0 -r2990,177:6630773,17383824:0,616038,102891 -g2990,94:7941493,17383824 -g2990,94:7941493,17383824 -g2990,94:14242123,17383824 -k2990,95:16948761,17383824:1511261 -k2990,95:18460021,17383824:1511260 -) -(2990,96:6630773,18242619:11829248,513147,102891 -h2990,95:6630773,18242619:0,0,0 -r2990,177:6630773,18242619:0,616038,102891 -g2990,95:7941493,18242619 -g2990,95:7941493,18242619 -g2990,95:13056577,18242619 -k2990,96:16355988,18242619:2104034 -k2990,96:18460021,18242619:2104033 -) -(2990,97:6630773,19101415:11829248,505283,134348 -h2990,96:6630773,19101415:0,0,0 -r2990,177:6630773,19101415:0,639631,134348 -g2990,96:7941493,19101415 -g2990,96:7941493,19101415 -g2990,96:13056577,19101415 -k2990,97:16156758,19101415:2303263 -k2990,97:18460021,19101415:2303263 -) -(2990,98:6630773,19960210:11829248,505283,134348 -h2990,97:6630773,19960210:0,0,0 -r2990,177:6630773,19960210:0,639631,134348 -g2990,97:7941493,19960210 -g2990,97:7941493,19960210 -g2990,97:13056577,19960210 -k2990,98:16156758,19960210:2303263 -k2990,98:18460021,19960210:2303263 -) -(2990,99:6630773,20819006:11829248,505283,102891 -h2990,98:6630773,20819006:0,0,0 -r2990,177:6630773,20819006:0,608174,102891 -g2990,98:7941493,20819006 -g2990,98:7941493,20819006 -g2990,98:12661395,20819006 -k2990,99:15959167,20819006:2500854 -k2990,99:18460021,20819006:2500854 -) -(2990,100:6630773,21677802:11829248,505283,102891 -h2990,99:6630773,21677802:0,0,0 -r2990,177:6630773,21677802:0,608174,102891 -g2990,99:7941493,21677802 -g2990,99:7941493,21677802 -g2990,99:13056577,21677802 -g2990,99:14226394,21677802 -g2990,99:15396211,21677802 -k2990,100:17326575,21677802:1133446 -k2990,100:18460021,21677802:1133446 -) -(2990,101:6630773,22536597:11829248,505283,102891 -h2990,100:6630773,22536597:0,0,0 -r2990,177:6630773,22536597:0,608174,102891 -g2990,100:7941493,22536597 -g2990,100:7941493,22536597 -g2990,100:11080667,22536597 -k2990,101:15368033,22536597:3091989 -k2990,101:18460021,22536597:3091988 -) -(2990,102:6630773,23395393:11829248,505283,102891 -h2990,101:6630773,23395393:0,0,0 -r2990,177:6630773,23395393:0,608174,102891 -g2990,101:7941493,23395393 -g2990,101:7941493,23395393 -g2990,101:12661395,23395393 -k2990,102:15959167,23395393:2500854 -k2990,102:18460021,23395393:2500854 -) -(2990,103:6630773,24254188:11829248,505283,102891 -h2990,102:6630773,24254188:0,0,0 -r2990,177:6630773,24254188:0,608174,102891 -g2990,102:7941493,24254188 -g2990,102:7941493,24254188 -g2990,102:12661395,24254188 -k2990,103:16158397,24254188:2301625 -k2990,103:18460021,24254188:2301624 -) -(2990,104:6630773,25112984:11829248,505283,134348 -h2990,103:6630773,25112984:0,0,0 -r2990,177:6630773,25112984:0,639631,134348 -g2990,103:7941493,25112984 -g2990,103:7941493,25112984 -g2990,103:11475849,25112984 -g2990,103:13044125,25112984 -g2990,103:14612401,25112984 -g2990,103:16180677,25112984 -k2990,103:18460021,25112984:910297 -) -(2990,104:9252213,25954472:9207808,485622,11795 -k2990,104:14453806,25954472:4006216 -k2990,104:18460021,25954472:4006215 -) -(2990,105:6630773,26813267:11829248,505283,102891 -h2990,104:6630773,26813267:0,0,0 -r2990,177:6630773,26813267:0,608174,102891 -g2990,104:7941493,26813267 -g2990,104:7941493,26813267 -g2990,104:11475849,26813267 -k2990,105:15366394,26813267:3093627 -k2990,105:18460021,26813267:3093627 -) -(2990,106:6630773,27672063:11829248,505283,102891 -h2990,105:6630773,27672063:0,0,0 -r2990,177:6630773,27672063:0,608174,102891 -g2990,105:7941493,27672063 -g2990,105:7941493,27672063 -g2990,105:10685485,27672063 -k2990,106:14971212,27672063:3488809 -k2990,106:18460021,27672063:3488809 -) -(2990,107:6630773,28530858:11829248,505283,102891 -h2990,106:6630773,28530858:0,0,0 -r2990,177:6630773,28530858:0,608174,102891 -g2990,106:7941493,28530858 -g2990,106:7941493,28530858 -g2990,106:11475849,28530858 -k2990,107:15366394,28530858:3093627 -k2990,107:18460021,28530858:3093627 -) -(2990,108:6630773,29389654:11829248,505283,102891 -h2990,107:6630773,29389654:0,0,0 -r2990,177:6630773,29389654:0,608174,102891 -g2990,107:7941493,29389654 -g2990,107:7941493,29389654 -g2990,107:13056577,29389654 -g2990,107:14226394,29389654 -g2990,107:15794670,29389654 -k2990,108:17725034,29389654:734987 -k2990,108:18460021,29389654:734987 -) -(2990,109:6630773,30248449:11829248,505283,102891 -h2990,108:6630773,30248449:0,0,0 -r2990,177:6630773,30248449:0,608174,102891 -g2990,108:7941493,30248449 -g2990,108:7941493,30248449 -g2990,108:12266213,30248449 -k2990,109:15960806,30248449:2499216 -k2990,109:18460021,30248449:2499215 -) -(2990,110:6630773,31107245:11829248,505283,102891 -h2990,109:6630773,31107245:0,0,0 -r2990,177:6630773,31107245:0,608174,102891 -g2990,109:7941493,31107245 -g2990,109:7941493,31107245 -g2990,109:10290302,31107245 -g2990,109:11858578,31107245 -k2990,110:15756988,31107245:2703033 -k2990,110:18460021,31107245:2703033 -) -(2990,111:6630773,31966040:11829248,505283,126483 -h2990,110:6630773,31966040:0,0,0 -r2990,177:6630773,31966040:0,631766,126483 -g2990,110:7941493,31966040 -g2990,110:7941493,31966040 -g2990,110:11475849,31966040 -k2990,111:15565624,31966040:2894398 -k2990,111:18460021,31966040:2894397 -) -(2990,112:6630773,32824836:11829248,505283,102891 -h2990,111:6630773,32824836:0,0,0 -r2990,177:6630773,32824836:0,608174,102891 -g2990,111:7941493,32824836 -g2990,111:7941493,32824836 -g2990,111:10685485,32824836 -k2990,112:15170442,32824836:3289580 -k2990,112:18460021,32824836:3289579 -) -(2990,113:6630773,33683632:11829248,505283,102891 -h2990,112:6630773,33683632:0,0,0 -r2990,177:6630773,33683632:0,608174,102891 -g2990,112:7941493,33683632 -g2990,112:7941493,33683632 -g2990,112:13056577,33683632 -k2990,113:16355988,33683632:2104034 -k2990,113:18460021,33683632:2104033 -) -(2990,114:6630773,34542427:11829248,505283,126483 -h2990,113:6630773,34542427:0,0,0 -r2990,177:6630773,34542427:0,631766,126483 -g2990,113:7941493,34542427 -g2990,113:7941493,34542427 -g2990,113:11475849,34542427 -k2990,114:15565624,34542427:2894398 -k2990,114:18460021,34542427:2894397 -) -(2990,115:6630773,35401223:11829248,505283,102891 -h2990,114:6630773,35401223:0,0,0 -r2990,177:6630773,35401223:0,608174,102891 -g2990,114:7941493,35401223 -g2990,114:7941493,35401223 -g2990,114:9499938,35401223 -k2990,115:14378439,35401223:4081583 -k2990,115:18460021,35401223:4081582 -) -(2990,116:6630773,36260018:11829248,505283,102891 -h2990,115:6630773,36260018:0,0,0 -r2990,177:6630773,36260018:0,608174,102891 -g2990,115:7941493,36260018 -g2990,115:7941493,36260018 -g2990,115:10290302,36260018 -g2990,115:11460119,36260018 -k2990,116:15557759,36260018:2902263 -k2990,116:18460021,36260018:2902262 -) -(2990,117:6630773,37118814:11829248,505283,134348 -h2990,116:6630773,37118814:0,0,0 -r2990,177:6630773,37118814:0,639631,134348 -g2990,116:7941493,37118814 -g2990,116:7941493,37118814 -g2990,116:11871031,37118814 -k2990,117:15563985,37118814:2896036 -k2990,117:18460021,37118814:2896036 -) -(2990,118:6630773,37977609:11829248,505283,102891 -h2990,117:6630773,37977609:0,0,0 -r2990,177:6630773,37977609:0,608174,102891 -g2990,117:7941493,37977609 -g2990,117:7941493,37977609 -g2990,117:12266213,37977609 -k2990,118:15761576,37977609:2698445 -k2990,118:18460021,37977609:2698445 -) -(2990,119:6630773,38836405:11829248,505283,102891 -h2990,118:6630773,38836405:0,0,0 -r2990,177:6630773,38836405:0,608174,102891 -g2990,118:7941493,38836405 -g2990,118:7941493,38836405 -g2990,118:11080667,38836405 -g2990,118:12250484,38836405 -g2990,118:13420301,38836405 -g2990,118:14988577,38836405 -g2990,118:16556853,38836405 -k2990,119:18106126,38836405:353896 -k2990,119:18460021,38836405:353895 -) -(2990,120:6630773,39695200:11829248,513147,102891 -h2990,119:6630773,39695200:0,0,0 -r2990,177:6630773,39695200:0,616038,102891 -g2990,119:7941493,39695200 -g2990,119:7941493,39695200 -g2990,119:10685485,39695200 -g2990,119:12253761,39695200 -g2990,119:13822037,39695200 -k2990,120:16738718,39695200:1721304 -k2990,120:18460021,39695200:1721303 -) -(2990,121:6630773,40553996:11829248,513147,102891 -h2990,120:6630773,40553996:0,0,0 -r2990,177:6630773,40553996:0,616038,102891 -g2990,120:7941493,40553996 -g2990,120:7941493,40553996 -g2990,120:13846941,40553996 -k2990,121:16751170,40553996:1708852 -k2990,121:18460021,40553996:1708851 -) -(2990,122:6630773,41412791:11829248,505283,102891 -h2990,121:6630773,41412791:0,0,0 -r2990,177:6630773,41412791:0,608174,102891 -g2990,121:7941493,41412791 -g2990,121:7941493,41412791 -g2990,121:12266213,41412791 -k2990,122:15761576,41412791:2698445 -k2990,122:18460021,41412791:2698445 -) -(2990,123:6630773,42271587:11829248,505283,102891 -h2990,122:6630773,42271587:0,0,0 -r2990,177:6630773,42271587:0,608174,102891 -g2990,122:7941493,42271587 -g2990,122:7941493,42271587 -g2990,122:11871031,42271587 -k2990,123:15563985,42271587:2896036 -k2990,123:18460021,42271587:2896036 -) -(2990,124:6630773,43130382:11829248,505283,102891 -h2990,123:6630773,43130382:0,0,0 -r2990,177:6630773,43130382:0,608174,102891 -g2990,123:7941493,43130382 -g2990,123:7941493,43130382 -g2990,123:12661395,43130382 -k2990,124:15959167,43130382:2500854 -k2990,124:18460021,43130382:2500854 -) -(2990,125:6630773,43989178:11829248,505283,102891 -h2990,124:6630773,43989178:0,0,0 -r2990,177:6630773,43989178:0,608174,102891 -g2990,124:7941493,43989178 -g2990,124:7941493,43989178 -g2990,124:12266213,43989178 -k2990,125:15960806,43989178:2499216 -k2990,125:18460021,43989178:2499215 -) -(2990,126:6630773,44847973:11829248,505283,102891 -h2990,125:6630773,44847973:0,0,0 -r2990,177:6630773,44847973:0,608174,102891 -g2990,125:7941493,44847973 -g2990,125:7941493,44847973 -g2990,125:15032488,44847973 -k2990,126:17343943,44847973:1116078 -k2990,126:18460021,44847973:1116078 -) -(2990,127:6630773,45706769:11829248,513147,102891 -h2990,126:6630773,45706769:0,0,0 -r2990,177:6630773,45706769:0,616038,102891 -g2990,126:7941493,45706769 -g2990,126:7941493,45706769 -g2990,126:13451759,45706769 -k2990,127:16553579,45706769:1906443 -k2990,127:18460021,45706769:1906442 ) -] -k2990,177:19606901,45706769:1146880 -r2990,177:19606901,45706769:0,40234515,126483 -k2990,177:20753781,45706769:1146880 -[2990,177:20753781,45706769:11829248,40108032,11795 -(2990,128:20753781,6254097:11829248,513147,126483 -h2990,127:20753781,6254097:0,0,0 -r2990,177:20753781,6254097:0,639630,126483 -g2990,127:22064501,6254097 -g2990,127:22064501,6254097 -g2990,127:27179585,6254097 -g2990,127:28747861,6254097 -k2990,128:31263134,6254097:1319896 -k2990,128:32583029,6254097:1319895 -) -(2990,129:20753781,7112123:11829248,505283,126483 -h2990,128:20753781,7112123:0,0,0 -r2990,177:20753781,7112123:0,631766,126483 -g2990,128:22064501,7112123 -g2990,128:22064501,7112123 -g2990,128:27574767,7112123 -k2990,129:30676587,7112123:1906443 -k2990,129:32583029,7112123:1906442 -) -(2990,130:20753781,7970150:11829248,505283,102891 -h2990,129:20753781,7970150:0,0,0 -r2990,177:20753781,7970150:0,608174,102891 -g2990,129:22064501,7970150 -g2990,129:22064501,7970150 -g2990,129:24413310,7970150 -k2990,130:29857386,7970150:2725643 -k2990,130:32583029,7970150:2725643 -) -(2990,131:20753781,8828176:11829248,505283,102891 -h2990,130:20753781,8828176:0,0,0 -r2990,177:20753781,8828176:0,608174,102891 -g2990,130:22064501,8828176 -g2990,130:22064501,8828176 -g2990,130:26389221,8828176 -g2990,130:27957497,8828176 -k2990,131:30867952,8828176:1715078 -k2990,131:32583029,8828176:1715077 -) -(2990,132:20753781,9686202:11829248,505283,126483 -h2990,131:20753781,9686202:0,0,0 -r2990,177:20753781,9686202:0,631766,126483 -g2990,131:22064501,9686202 -g2990,131:22064501,9686202 -g2990,131:26784403,9686202 -k2990,132:30082175,9686202:2500854 -k2990,132:32583029,9686202:2500854 -) -(2990,133:20753781,10544229:11829248,505283,102891 -h2990,132:20753781,10544229:0,0,0 -r2990,177:20753781,10544229:0,608174,102891 -g2990,132:22064501,10544229 -g2990,132:22064501,10544229 -g2990,132:25598857,10544229 -k2990,133:29688632,10544229:2894398 -k2990,133:32583029,10544229:2894397 -) -(2990,134:20753781,11402255:11829248,505283,102891 -h2990,133:20753781,11402255:0,0,0 -r2990,177:20753781,11402255:0,608174,102891 -g2990,133:22064501,11402255 -g2990,133:22064501,11402255 -g2990,133:25598857,11402255 -k2990,134:29688632,11402255:2894398 -k2990,134:32583029,11402255:2894397 -) -(2990,135:20753781,12260281:11829248,505283,126483 -h2990,134:20753781,12260281:0,0,0 -r2990,177:20753781,12260281:0,631766,126483 -g2990,134:22064501,12260281 -g2990,134:22064501,12260281 -g2990,134:25994039,12260281 -k2990,135:29886223,12260281:2696807 -k2990,135:32583029,12260281:2696806 -) -(2990,136:20753781,13118308:11829248,505283,102891 -h2990,135:20753781,13118308:0,0,0 -r2990,177:20753781,13118308:0,608174,102891 -g2990,135:22064501,13118308 -g2990,135:22064501,13118308 -g2990,135:25598857,13118308 -k2990,136:29688632,13118308:2894398 -k2990,136:32583029,13118308:2894397 -) -(2990,137:20753781,13976334:11829248,505283,102891 -h2990,136:20753781,13976334:0,0,0 -r2990,177:20753781,13976334:0,608174,102891 -g2990,136:22064501,13976334 -g2990,136:22064501,13976334 -g2990,136:25598857,13976334 -k2990,137:29688632,13976334:2894398 -k2990,137:32583029,13976334:2894397 -) -(2990,138:20753781,14834360:11829248,505283,102891 -h2990,137:20753781,14834360:0,0,0 -r2990,177:20753781,14834360:0,608174,102891 -g2990,137:22064501,14834360 -g2990,137:22064501,14834360 -g2990,137:24808493,14834360 -k2990,138:29094220,14834360:3488809 -k2990,138:32583029,14834360:3488809 -) -(2990,139:20753781,15692386:11829248,513147,102891 -h2990,138:20753781,15692386:0,0,0 -r2990,177:20753781,15692386:0,616038,102891 -g2990,138:22064501,15692386 -g2990,138:22064501,15692386 -g2990,138:27179585,15692386 -g2990,138:28349402,15692386 -g2990,138:29519219,15692386 -g2990,138:31087495,15692386 -k2990,139:32432951,15692386:150079 -k2990,139:32583029,15692386:150078 -) -(2990,140:20753781,16550413:11829248,505283,126483 -h2990,139:20753781,16550413:0,0,0 -r2990,177:20753781,16550413:0,631766,126483 -g2990,139:22064501,16550413 -g2990,139:22064501,16550413 -g2990,139:26784403,16550413 -k2990,140:30281405,16550413:2301625 -k2990,140:32583029,16550413:2301624 -) -(2990,141:20753781,17408439:11829248,505283,134348 -h2990,140:20753781,17408439:0,0,0 -r2990,177:20753781,17408439:0,639631,134348 -g2990,140:22064501,17408439 -g2990,140:22064501,17408439 -g2990,140:24808493,17408439 -k2990,141:29094220,17408439:3488809 -k2990,141:32583029,17408439:3488809 -) -(2990,142:20753781,18266465:11829248,513147,102891 -h2990,141:20753781,18266465:0,0,0 -r2990,177:20753781,18266465:0,616038,102891 -g2990,141:22064501,18266465 -g2990,141:22064501,18266465 -g2990,141:24808493,18266465 -k2990,142:29293450,18266465:3289580 -k2990,142:32583029,18266465:3289579 -) -(2990,143:20753781,19124492:11829248,505283,102891 -h2990,142:20753781,19124492:0,0,0 -r2990,177:20753781,19124492:0,608174,102891 -g2990,142:22064501,19124492 -g2990,142:22064501,19124492 -g2990,142:24413310,19124492 -g2990,142:25583127,19124492 -g2990,142:26752944,19124492 -k2990,143:30265675,19124492:2317354 -k2990,143:32583029,19124492:2317354 -) -(2990,144:20753781,19982518:11829248,505283,102891 -h2990,143:20753781,19982518:0,0,0 -r2990,177:20753781,19982518:0,608174,102891 -g2990,143:22064501,19982518 -g2990,143:22064501,19982518 -g2990,143:25203675,19982518 -k2990,144:29291811,19982518:3291218 -k2990,144:32583029,19982518:3291218 -) -(2990,145:20753781,20840544:11829248,505283,102891 -h2990,144:20753781,20840544:0,0,0 -r2990,177:20753781,20840544:0,608174,102891 -g2990,144:22064501,20840544 -g2990,144:22064501,20840544 -g2990,144:26389221,20840544 -k2990,145:30083814,20840544:2499216 -k2990,145:32583029,20840544:2499215 -) -(2990,146:20753781,21698571:11829248,505283,102891 -h2990,145:20753781,21698571:0,0,0 -r2990,177:20753781,21698571:0,608174,102891 -g2990,145:22064501,21698571 -g2990,145:22064501,21698571 -g2990,145:24413310,21698571 -k2990,146:29095858,21698571:3487171 -k2990,146:32583029,21698571:3487171 -) -(2990,147:20753781,22556597:11829248,505283,102891 -h2990,146:20753781,22556597:0,0,0 -r2990,177:20753781,22556597:0,608174,102891 -g2990,146:22064501,22556597 -g2990,146:22064501,22556597 -g2990,146:25994039,22556597 -k2990,147:29886223,22556597:2696807 -k2990,147:32583029,22556597:2696806 -) -(2990,148:20753781,23414623:11829248,505283,102891 -h2990,147:20753781,23414623:0,0,0 -r2990,177:20753781,23414623:0,608174,102891 -g2990,147:22064501,23414623 -g2990,147:22064501,23414623 -g2990,147:24018128,23414623 -g2990,147:25586404,23414623 -k2990,148:29682405,23414623:2900624 -k2990,148:32583029,23414623:2900624 -) -(2990,149:20753781,24272650:11829248,505283,102891 -h2990,148:20753781,24272650:0,0,0 -r2990,177:20753781,24272650:0,608174,102891 -g2990,148:22064501,24272650 -g2990,148:22064501,24272650 -g2990,148:25994039,24272650 -k2990,149:29886223,24272650:2696807 -k2990,149:32583029,24272650:2696806 -) -(2990,150:20753781,25130676:11829248,505283,102891 -h2990,149:20753781,25130676:0,0,0 -r2990,177:20753781,25130676:0,608174,102891 -g2990,149:22064501,25130676 -g2990,149:22064501,25130676 -g2990,149:25598857,25130676 -k2990,150:29489402,25130676:3093627 -k2990,150:32583029,25130676:3093627 -) -(2990,151:20753781,25988702:11829248,513147,102891 -h2990,150:20753781,25988702:0,0,0 -r2990,177:20753781,25988702:0,616038,102891 -g2990,150:22064501,25988702 -g2990,150:22064501,25988702 -g2990,150:28365131,25988702 -k2990,151:31071769,25988702:1511261 -k2990,151:32583029,25988702:1511260 -) -(2990,152:20753781,26846728:11829248,513147,102891 -h2990,151:20753781,26846728:0,0,0 -r2990,177:20753781,26846728:0,616038,102891 -g2990,151:22064501,26846728 -g2990,151:22064501,26846728 -g2990,151:25994039,26846728 -k2990,152:29886223,26846728:2696807 -k2990,152:32583029,26846728:2696806 -) -(2990,153:20753781,27704755:11829248,505283,102891 -h2990,152:20753781,27704755:0,0,0 -r2990,177:20753781,27704755:0,608174,102891 -g2990,152:22064501,27704755 -g2990,152:22064501,27704755 -g2990,152:26784403,27704755 -k2990,153:30281405,27704755:2301625 -k2990,153:32583029,27704755:2301624 -) -(2990,154:20753781,28562781:11829248,505283,102891 -h2990,153:20753781,28562781:0,0,0 -r2990,177:20753781,28562781:0,608174,102891 -g2990,153:22064501,28562781 -g2990,153:22064501,28562781 -g2990,153:27969949,28562781 -k2990,154:30874178,28562781:1708852 -k2990,154:32583029,28562781:1708851 -) -(2990,155:20753781,29420807:11829248,505283,126483 -h2990,154:20753781,29420807:0,0,0 -r2990,177:20753781,29420807:0,631766,126483 -g2990,154:22064501,29420807 -g2990,154:22064501,29420807 -g2990,154:24413310,29420807 -k2990,155:28896629,29420807:3686401 -k2990,155:32583029,29420807:3686400 -) -(2990,156:20753781,30278834:11829248,505283,126483 -h2990,155:20753781,30278834:0,0,0 -r2990,177:20753781,30278834:0,631766,126483 -g2990,155:22064501,30278834 -g2990,155:22064501,30278834 -g2990,155:28365131,30278834 -g2990,155:29933407,30278834 -k2990,156:31855907,30278834:727123 -k2990,156:32583029,30278834:727122 -) -(2990,157:20753781,31136860:11829248,505283,126483 -h2990,156:20753781,31136860:0,0,0 -r2990,177:20753781,31136860:0,631766,126483 -g2990,156:22064501,31136860 -g2990,156:22064501,31136860 -g2990,156:27179585,31136860 -k2990,157:31240524,31136860:1342506 -k2990,157:32583029,31136860:1342505 -) -(2990,158:20753781,31994886:11829248,513147,134348 -h2990,157:20753781,31994886:0,0,0 -r2990,177:20753781,31994886:0,647495,134348 -g2990,157:22064501,31994886 -g2990,157:22064501,31994886 -g2990,157:27179585,31994886 -k2990,158:30478996,31994886:2104034 -k2990,158:32583029,31994886:2104033 -) -(2990,159:20753781,32852913:11829248,513147,126483 -h2990,158:20753781,32852913:0,0,0 -r2990,177:20753781,32852913:0,639630,126483 -g2990,158:22064501,32852913 -g2990,158:22064501,32852913 -g2990,158:27179585,32852913 -g2990,158:28747861,32852913 -g2990,158:30316137,32852913 -k2990,159:32047272,32852913:535758 -k2990,159:32583029,32852913:535757 -) -(2990,160:20753781,33710939:11829248,513147,102891 -h2990,159:20753781,33710939:0,0,0 -r2990,177:20753781,33710939:0,616038,102891 -g2990,159:22064501,33710939 -g2990,159:22064501,33710939 -g2990,159:25598857,33710939 -g2990,159:26768674,33710939 -g2990,159:27938491,33710939 -g2990,159:29108308,33710939 -k2990,160:31244128,33710939:1338902 -k2990,160:32583029,33710939:1338901 -) -(2990,161:20753781,34568965:11829248,513147,126483 -h2990,160:20753781,34568965:0,0,0 -r2990,177:20753781,34568965:0,639630,126483 -g2990,160:22064501,34568965 -g2990,160:22064501,34568965 -g2990,160:26784403,34568965 -k2990,161:30281405,34568965:2301625 -k2990,161:32583029,34568965:2301624 -) -(2990,162:20753781,35426992:11829248,513147,102891 -h2990,161:20753781,35426992:0,0,0 -r2990,177:20753781,35426992:0,616038,102891 -g2990,161:22064501,35426992 -g2990,161:22064501,35426992 -g2990,161:25598857,35426992 -k2990,162:29688632,35426992:2894398 -k2990,162:32583029,35426992:2894397 -) -(2990,163:20753781,36285018:11829248,513147,102891 -h2990,162:20753781,36285018:0,0,0 -r2990,177:20753781,36285018:0,616038,102891 -g2990,162:22064501,36285018 -g2990,162:22064501,36285018 -g2990,162:25598857,36285018 -g2990,162:27167133,36285018 -k2990,163:30472770,36285018:2110260 -k2990,163:32583029,36285018:2110259 -) -(2990,164:20753781,37143044:11829248,513147,102891 -h2990,163:20753781,37143044:0,0,0 -r2990,177:20753781,37143044:0,616038,102891 -g2990,163:22064501,37143044 -g2990,163:22064501,37143044 -g2990,163:28365131,37143044 -k2990,164:31071769,37143044:1511261 -k2990,164:32583029,37143044:1511260 -) -(2990,165:20753781,38001071:11829248,513147,102891 -h2990,164:20753781,38001071:0,0,0 -r2990,177:20753781,38001071:0,616038,102891 -g2990,164:22064501,38001071 -g2990,164:22064501,38001071 -g2990,164:25598857,38001071 -g2990,164:26768674,38001071 -g2990,164:27938491,38001071 -k2990,165:30858449,38001071:1724581 -k2990,165:32583029,38001071:1724580 -) -(2990,166:20753781,38859097:11829248,513147,102891 -h2990,165:20753781,38859097:0,0,0 -r2990,177:20753781,38859097:0,616038,102891 -g2990,165:22064501,38859097 -g2990,165:22064501,38859097 -g2990,165:26389221,38859097 -k2990,166:30083814,38859097:2499216 -k2990,166:32583029,38859097:2499215 -) -(2990,167:20753781,39717123:11829248,513147,134348 -h2990,166:20753781,39717123:0,0,0 -r2990,177:20753781,39717123:0,647495,134348 -g2990,166:22064501,39717123 -g2990,166:22064501,39717123 -g2990,166:26784403,39717123 -k2990,167:30281405,39717123:2301625 -k2990,167:32583029,39717123:2301624 -) -(2990,168:20753781,40575149:11829248,513147,102891 -h2990,167:20753781,40575149:0,0,0 -r2990,177:20753781,40575149:0,616038,102891 -g2990,167:22064501,40575149 -g2990,167:22064501,40575149 -g2990,167:26389221,40575149 -k2990,168:30083814,40575149:2499216 -k2990,168:32583029,40575149:2499215 -) -(2990,169:20753781,41433176:11829248,505283,134348 -h2990,168:20753781,41433176:0,0,0 -r2990,177:20753781,41433176:0,639631,134348 -g2990,168:22064501,41433176 -g2990,168:22064501,41433176 -g2990,168:25598857,41433176 -k2990,169:29688632,41433176:2894398 -k2990,169:32583029,41433176:2894397 -) -(2990,170:20753781,42291202:11829248,505283,134348 -h2990,169:20753781,42291202:0,0,0 -r2990,177:20753781,42291202:0,639631,134348 -g2990,169:22064501,42291202 -g2990,169:22064501,42291202 -g2990,169:26784403,42291202 -k2990,170:30281405,42291202:2301625 -k2990,170:32583029,42291202:2301624 -) -(2990,171:20753781,43149228:11829248,485622,134348 -h2990,170:20753781,43149228:0,0,0 -r2990,177:20753781,43149228:0,619970,134348 -g2990,170:22064501,43149228 -g2990,170:22064501,43149228 -g2990,170:25994039,43149228 -k2990,171:29886223,43149228:2696807 -k2990,171:32583029,43149228:2696806 -) -(2990,172:20753781,44007255:11829248,505283,134348 -h2990,171:20753781,44007255:0,0,0 -r2990,177:20753781,44007255:0,639631,134348 -g2990,171:22064501,44007255 -g2990,171:22064501,44007255 -g2990,171:26784403,44007255 -g2990,171:28352679,44007255 -k2990,172:31065543,44007255:1517487 -k2990,172:32583029,44007255:1517486 -) -(2990,173:20753781,44865281:11829248,505283,134348 -h2990,172:20753781,44865281:0,0,0 -r2990,177:20753781,44865281:0,639631,134348 -g2990,172:22064501,44865281 -g2990,172:22064501,44865281 -g2990,172:26389221,44865281 -g2990,172:27957497,44865281 -g2990,172:29525773,44865281 -g2990,172:31094049,44865281 -k2990,172:32583029,44865281:119933 -) -(2990,173:23375221,45706769:9207808,485622,11795 -k2990,173:28576814,45706769:4006216 -k2990,173:32583029,45706769:4006215 +[1,2108:6630773,47279633:25952256,43253760,0 +[1,2108:6630773,4812305:25952256,786432,0 +(1,2108:6630773,4812305:25952256,505283,134348 +(1,2108:6630773,4812305:25952256,505283,134348 +g1,2108:3078558,4812305 +[1,2108:3078558,4812305:0,0,0 +(1,2108:3078558,2439708:0,1703936,0 +k1,2108:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,2108:2537886,2439708:1179648,16384,0 ) -] -(2990,177:32583029,45706769:0,355205,126483 -h2990,177:32583029,45706769:420741,355205,126483 -k2990,177:32583029,45706769:-420741 +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,2108:3078558,1915420:16384,1179648,0 ) +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) ] -(2990,177:32583029,45706769:0,0,0 -g2990,177:32583029,45706769 ) ) -] -(2990,177:6630773,47279633:25952256,0,0 -h2990,177:6630773,47279633:25952256,0,0 ) ] -(2990,177:4262630,4025873:0,0,0 -[2990,177:-473656,4025873:0,0,0 -(2990,177:-473656,-710413:0,0,0 -(2990,177:-473656,-710413:0,0,0 -g2990,177:-473656,-710413 +[1,2108:3078558,4812305:0,0,0 +(1,2108:3078558,2439708:0,1703936,0 +g1,2108:29030814,2439708 +g1,2108:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,2108:36151628,1915420:16384,1179648,0 ) -g2990,177:-473656,-710413 +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) ] ) -] -!31028 -}389 -!12 -{390 -[2990,266:4262630,47279633:28320399,43253760,0 -(2990,266:4262630,4025873:0,0,0 -[2990,266:-473656,4025873:0,0,0 -(2990,266:-473656,-710413:0,0,0 -(2990,266:-473656,-644877:0,0,0 -k2990,266:-473656,-644877:-65536 -) -(2990,266:-473656,4736287:0,0,0 -k2990,266:-473656,4736287:5209943 -) -g2990,266:-473656,-710413 +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,2108:37855564,2439708:1179648,16384,0 ) -] ) -[2990,266:6630773,47279633:25952256,43253760,0 -[2990,266:6630773,4812305:25952256,786432,0 -(2990,266:6630773,4812305:25952256,513147,134348 -(2990,266:6630773,4812305:25952256,513147,134348 -g2990,266:3078558,4812305 -[2990,266:3078558,4812305:0,0,0 -(2990,266:3078558,2439708:0,1703936,0 -k2990,266:1358238,2439708:-1720320 -(2990,1:1358238,2439708:1720320,1703936,0 -(2990,1:1358238,2439708:1179648,16384,0 -r2990,266:2537886,2439708:1179648,16384,0 -) -g2990,1:3062174,2439708 -(2990,1:3062174,2439708:16384,1703936,0 -[2990,1:3062174,2439708:25952256,1703936,0 -(2990,1:3062174,1915420:25952256,1179648,0 -(2990,1:3062174,1915420:16384,1179648,0 -r2990,266:3078558,1915420:16384,1179648,0 -) -k2990,1:29014430,1915420:25935872 -g2990,1:29014430,1915420 +k1,2108:3078556,2439708:-34777008 ) ] +[1,2108:3078558,4812305:0,0,0 +(1,2108:3078558,49800853:0,16384,2228224 +k1,2108:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,2108:2537886,49800853:1179648,16384,0 ) +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,2108:3078558,51504789:16384,1179648,0 ) +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 +) +] +) +) +) +] +[1,2108:3078558,4812305:0,0,0 +(1,2108:3078558,49800853:0,16384,2228224 +g1,2108:29030814,49800853 +g1,2108:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,2108:36151628,51504789:16384,1179648,0 +) +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 +) +] +) +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,2108:37855564,49800853:1179648,16384,0 +) +) +k1,2108:3078556,49800853:-34777008 +) +] +g1,2108:6630773,4812305 +g1,2108:6630773,4812305 +g1,2108:9205682,4812305 +g1,2108:11846782,4812305 +k1,2108:31786110,4812305:19939328 +) +) +] +[1,2108:6630773,45706769:25952256,40108032,0 +(1,2108:6630773,45706769:25952256,40108032,0 +(1,2108:6630773,45706769:0,0,0 +g1,2108:6630773,45706769 +) +[1,2108:6630773,45706769:25952256,40108032,0 +v1,2057:6630773,6254097:0,393216,0 +(1,2057:6630773,9120134:25952256,3259253,196608 +g1,2057:6630773,9120134 +g1,2057:6630773,9120134 +g1,2057:6434165,9120134 +(1,2057:6434165,9120134:0,3259253,196608 +r1,2108:32779637,9120134:26345472,3455861,196608 +k1,2057:6434165,9120134:-26345472 +) +(1,2057:6434165,9120134:26345472,3259253,196608 +[1,2057:6630773,9120134:25952256,3062645,0 +(1,2056:6630773,6445986:25952256,388497,9436 +h1,2056:6630773,6445986:0,0,0 +g1,2056:7579210,6445986 +g1,2056:8211502,6445986 +g1,2056:8527648,6445986 +g1,2056:8843794,6445986 +g1,2056:9476086,6445986 +g1,2056:13269834,6445986 +g1,2056:13585980,6445986 +g1,2056:13902126,6445986 +g1,2056:14218272,6445986 +g1,2056:14534418,6445986 +g1,2056:16115147,6445986 +g1,2056:16431293,6445986 +h1,2056:17695876,6445986:0,0,0 +k1,2056:32583029,6445986:14887153 +g1,2056:32583029,6445986 +) +(1,2056:6630773,7112164:25952256,388497,9436 +h1,2056:6630773,7112164:0,0,0 +g1,2056:7579210,7112164 +g1,2056:8211502,7112164 +g1,2056:8527648,7112164 +g1,2056:8843794,7112164 +g1,2056:9476086,7112164 +g1,2056:9792232,7112164 +g1,2056:13269835,7112164 +g1,2056:13585981,7112164 +g1,2056:13902127,7112164 +g1,2056:14218273,7112164 +g1,2056:14534419,7112164 +g1,2056:16115148,7112164 +g1,2056:16431294,7112164 +h1,2056:17695877,7112164:0,0,0 +k1,2056:32583029,7112164:14887152 +g1,2056:32583029,7112164 +) +(1,2056:6630773,7778342:25952256,388497,9436 +h1,2056:6630773,7778342:0,0,0 +g1,2056:7579210,7778342 +g1,2056:8211502,7778342 +g1,2056:8527648,7778342 +g1,2056:8843794,7778342 +g1,2056:9476086,7778342 +g1,2056:13269834,7778342 +g1,2056:13585980,7778342 +g1,2056:13902126,7778342 +g1,2056:14218272,7778342 +g1,2056:14534418,7778342 +g1,2056:16115147,7778342 +g1,2056:16431293,7778342 +h1,2056:17695876,7778342:0,0,0 +k1,2056:32583029,7778342:14887153 +g1,2056:32583029,7778342 +) +(1,2056:6630773,8444520:25952256,388497,9436 +h1,2056:6630773,8444520:0,0,0 +g1,2056:7579210,8444520 +g1,2056:8211502,8444520 +g1,2056:8527648,8444520 +g1,2056:8843794,8444520 +g1,2056:9476086,8444520 +g1,2056:13269834,8444520 +g1,2056:13585980,8444520 +g1,2056:13902126,8444520 +g1,2056:14218272,8444520 +g1,2056:14534418,8444520 +g1,2056:16115147,8444520 +g1,2056:16431293,8444520 +h1,2056:17695876,8444520:0,0,0 +k1,2056:32583029,8444520:14887153 +g1,2056:32583029,8444520 +) +(1,2056:6630773,9110698:25952256,388497,9436 +h1,2056:6630773,9110698:0,0,0 +g1,2056:7579210,9110698 +g1,2056:8527647,9110698 +g1,2056:9476084,9110698 +g1,2056:13269832,9110698 +g1,2056:13585978,9110698 +g1,2056:13902124,9110698 +g1,2056:14218270,9110698 +g1,2056:14534416,9110698 +g1,2056:16115145,9110698 +h1,2056:17695873,9110698:0,0,0 +k1,2056:32583029,9110698:14887156 +g1,2056:32583029,9110698 +) +] +) +g1,2057:32583029,9120134 +g1,2057:6630773,9120134 +g1,2057:6630773,9120134 +g1,2057:32583029,9120134 +g1,2057:32583029,9120134 +) +h1,2057:6630773,9316742:0,0,0 +(1,2061:6630773,10682518:25952256,505283,122846 +h1,2060:6630773,10682518:983040,0,0 +g1,2060:8642072,10682518 +g1,2060:12409081,10682518 +g1,2060:15449951,10682518 +g1,2060:16517532,10682518 +g1,2060:17821043,10682518 +g1,2060:19112757,10682518 +(1,2060:19112757,10682518:0,452978,122846 +r1,2108:22988141,10682518:3875384,575824,122846 +k1,2060:19112757,10682518:-3875384 +) +(1,2060:19112757,10682518:3875384,452978,122846 +k1,2060:19112757,10682518:3277 +h1,2060:22984864,10682518:0,411205,112570 +) +k1,2061:32583029,10682518:9421218 +g1,2061:32583029,10682518 +) +v1,2063:6630773,11872984:0,393216,0 +(1,2075:6630773,16158934:25952256,4679166,196608 +g1,2075:6630773,16158934 +g1,2075:6630773,16158934 +g1,2075:6434165,16158934 +(1,2075:6434165,16158934:0,4679166,196608 +r1,2108:32779637,16158934:26345472,4875774,196608 +k1,2075:6434165,16158934:-26345472 +) +(1,2075:6434165,16158934:26345472,4679166,196608 +[1,2075:6630773,16158934:25952256,4482558,0 +(1,2065:6630773,12086894:25952256,410518,107478 +(1,2064:6630773,12086894:0,0,0 +g1,2064:6630773,12086894 +g1,2064:6630773,12086894 +g1,2064:6303093,12086894 +(1,2064:6303093,12086894:0,0,0 +) +g1,2064:6630773,12086894 +) +k1,2065:6630773,12086894:0 +g1,2065:12005250,12086894 +g1,2065:12637542,12086894 +g1,2065:18644312,12086894 +g1,2065:20541187,12086894 +g1,2065:23070353,12086894 +g1,2065:24651082,12086894 +g1,2065:25283374,12086894 +k1,2065:25283374,12086894:0 +h1,2065:26547957,12086894:0,0,0 +k1,2065:32583029,12086894:6035072 +g1,2065:32583029,12086894 +) +(1,2066:6630773,12753072:25952256,404226,101187 +h1,2066:6630773,12753072:0,0,0 +g1,2066:6946919,12753072 +g1,2066:7263065,12753072 +g1,2066:7579211,12753072 +g1,2066:7895357,12753072 +g1,2066:8211503,12753072 +g1,2066:8527649,12753072 +g1,2066:8843795,12753072 +g1,2066:9159941,12753072 +g1,2066:9476087,12753072 +g1,2066:9792233,12753072 +g1,2066:10108379,12753072 +g1,2066:10740671,12753072 +g1,2066:11372963,12753072 +g1,2066:14850565,12753072 +k1,2066:14850565,12753072:0 +h1,2066:15482857,12753072:0,0,0 +k1,2066:32583029,12753072:17100172 +g1,2066:32583029,12753072 +) +(1,2067:6630773,13419250:25952256,404226,107478 +h1,2067:6630773,13419250:0,0,0 +g1,2067:6946919,13419250 +g1,2067:7263065,13419250 +g1,2067:10108377,13419250 +g1,2067:10740669,13419250 +g1,2067:11689107,13419250 +g1,2067:13585981,13419250 +g1,2067:15166710,13419250 +g1,2067:17695877,13419250 +g1,2067:19908897,13419250 +k1,2067:19908897,13419250:0 +h1,2067:20541189,13419250:0,0,0 +k1,2067:32583029,13419250:12041840 +g1,2067:32583029,13419250 +) +(1,2068:6630773,14085428:25952256,404226,107478 +h1,2068:6630773,14085428:0,0,0 +g1,2068:6946919,14085428 +g1,2068:7263065,14085428 +g1,2068:12005251,14085428 +g1,2068:12637543,14085428 +g1,2068:13585981,14085428 +g1,2068:14218273,14085428 +g1,2068:14850565,14085428 +g1,2068:17063585,14085428 +h1,2068:18644313,14085428:0,0,0 +k1,2068:32583029,14085428:13938716 +g1,2068:32583029,14085428 +) +(1,2074:6630773,14817142:25952256,379060,107478 +(1,2070:6630773,14817142:0,0,0 +g1,2070:6630773,14817142 +g1,2070:6630773,14817142 +g1,2070:6303093,14817142 +(1,2070:6303093,14817142:0,0,0 +) +g1,2070:6630773,14817142 +) +g1,2074:7579210,14817142 +g1,2074:7895356,14817142 +g1,2074:8211502,14817142 +g1,2074:10108376,14817142 +g1,2074:10424522,14817142 +g1,2074:10740668,14817142 +g1,2074:11056814,14817142 +g1,2074:11372960,14817142 +g1,2074:11689106,14817142 +g1,2074:12005252,14817142 +g1,2074:12321398,14817142 +g1,2074:12637544,14817142 +g1,2074:12953690,14817142 +h1,2074:13269836,14817142:0,0,0 +k1,2074:32583028,14817142:19313192 +g1,2074:32583028,14817142 +) +(1,2074:6630773,15483320:25952256,388497,9436 +h1,2074:6630773,15483320:0,0,0 +g1,2074:7579210,15483320 +g1,2074:8211502,15483320 +g1,2074:8527648,15483320 +g1,2074:8843794,15483320 +g1,2074:9159940,15483320 +g1,2074:10108377,15483320 +k1,2074:10108377,15483320:0 +h1,2074:13269834,15483320:0,0,0 +k1,2074:32583030,15483320:19313196 +g1,2074:32583030,15483320 +) +(1,2074:6630773,16149498:25952256,388497,9436 +h1,2074:6630773,16149498:0,0,0 +g1,2074:7579210,16149498 +g1,2074:8211502,16149498 +g1,2074:8527648,16149498 +g1,2074:8843794,16149498 +g1,2074:9159940,16149498 +g1,2074:10108377,16149498 +g1,2074:10424523,16149498 +h1,2074:13269834,16149498:0,0,0 +k1,2074:32583030,16149498:19313196 +g1,2074:32583030,16149498 +) +] +) +g1,2075:32583029,16158934 +g1,2075:6630773,16158934 +g1,2075:6630773,16158934 +g1,2075:32583029,16158934 +g1,2075:32583029,16158934 +) +h1,2075:6630773,16355542:0,0,0 +(1,2079:6630773,17721318:25952256,513147,134348 +h1,2078:6630773,17721318:983040,0,0 +k1,2078:10787470,17721318:210774 +k1,2078:12017328,17721318:210773 +k1,2078:15442643,17721318:210774 +k1,2078:18730332,17721318:210774 +k1,2078:19932665,17721318:210773 +k1,2078:21209710,17721318:210774 +k1,2078:24236566,17721318:210774 +k1,2078:25256710,17721318:210774 +k1,2078:26486568,17721318:210773 +k1,2078:27730845,17721318:210774 +k1,2078:28600911,17721318:210774 +k1,2078:29167544,17721318:210773 +k1,2078:30942007,17721318:210774 +k1,2079:32583029,17721318:0 +) +(1,2079:6630773,18562806:25952256,505283,126483 +k1,2078:8063956,18562806:165717 +(1,2078:8063956,18562806:0,452978,122846 +r1,2108:12291052,18562806:4227096,575824,122846 +k1,2078:8063956,18562806:-4227096 +) +(1,2078:8063956,18562806:4227096,452978,122846 +k1,2078:8063956,18562806:3277 +h1,2078:12287775,18562806:0,411205,112570 +) +k1,2078:12456769,18562806:165717 +k1,2078:13726769,18562806:165718 +k1,2078:14640252,18562806:165717 +k1,2078:16319195,18562806:165717 +k1,2078:17136340,18562806:165717 +k1,2078:19506033,18562806:165717 +k1,2078:20027611,18562806:165718 +k1,2078:22816734,18562806:165717 +k1,2078:23743979,18562806:165717 +k1,2078:25821381,18562806:165717 +k1,2078:26603136,18562806:165717 +k1,2078:27972095,18562806:165718 +k1,2078:29504893,18562806:165717 +k1,2078:30026470,18562806:165717 +k1,2079:32583029,18562806:0 +k1,2079:32583029,18562806:0 +) +v1,2081:6630773,19753272:0,393216,0 +(1,2092:6630773,23439629:25952256,4079573,196608 +g1,2092:6630773,23439629 +g1,2092:6630773,23439629 +g1,2092:6434165,23439629 +(1,2092:6434165,23439629:0,4079573,196608 +r1,2108:32779637,23439629:26345472,4276181,196608 +k1,2092:6434165,23439629:-26345472 +) +(1,2092:6434165,23439629:26345472,4079573,196608 +[1,2092:6630773,23439629:25952256,3882965,0 +(1,2083:6630773,19967182:25952256,410518,107478 +(1,2082:6630773,19967182:0,0,0 +g1,2082:6630773,19967182 +g1,2082:6630773,19967182 +g1,2082:6303093,19967182 +(1,2082:6303093,19967182:0,0,0 +) +g1,2082:6630773,19967182 +) +k1,2083:6630773,19967182:0 +g1,2083:12005250,19967182 +g1,2083:12637542,19967182 +g1,2083:18644312,19967182 +g1,2083:20541187,19967182 +g1,2083:23070353,19967182 +g1,2083:24651082,19967182 +g1,2083:25283374,19967182 +k1,2083:25283374,19967182:0 +h1,2083:26547957,19967182:0,0,0 +k1,2083:32583029,19967182:6035072 +g1,2083:32583029,19967182 +) +(1,2084:6630773,20633360:25952256,404226,101187 +h1,2084:6630773,20633360:0,0,0 +g1,2084:6946919,20633360 +g1,2084:7263065,20633360 +g1,2084:7579211,20633360 +g1,2084:7895357,20633360 +g1,2084:8211503,20633360 +g1,2084:8527649,20633360 +g1,2084:8843795,20633360 +g1,2084:9159941,20633360 +g1,2084:9476087,20633360 +g1,2084:9792233,20633360 +g1,2084:10108379,20633360 +g1,2084:10740671,20633360 +g1,2084:11372963,20633360 +g1,2084:14850565,20633360 +k1,2084:14850565,20633360:0 +h1,2084:15482857,20633360:0,0,0 +k1,2084:32583029,20633360:17100172 +g1,2084:32583029,20633360 +) +(1,2085:6630773,21299538:25952256,404226,107478 +h1,2085:6630773,21299538:0,0,0 +g1,2085:6946919,21299538 +g1,2085:7263065,21299538 +g1,2085:10108377,21299538 +g1,2085:10740669,21299538 +g1,2085:11689107,21299538 +g1,2085:13585981,21299538 +g1,2085:15166710,21299538 +g1,2085:17695877,21299538 +g1,2085:19908897,21299538 +k1,2085:19908897,21299538:0 +h1,2085:20541189,21299538:0,0,0 +k1,2085:32583029,21299538:12041840 +g1,2085:32583029,21299538 +) +(1,2086:6630773,21965716:25952256,404226,107478 +h1,2086:6630773,21965716:0,0,0 +g1,2086:6946919,21965716 +g1,2086:7263065,21965716 +g1,2086:12005251,21965716 +g1,2086:12637543,21965716 +g1,2086:13585981,21965716 +g1,2086:14218273,21965716 +g1,2086:14850565,21965716 +g1,2086:17063585,21965716 +g1,2086:18960459,21965716 +k1,2086:18960459,21965716:0 +h1,2086:19592751,21965716:0,0,0 +k1,2086:32583029,21965716:12990278 +g1,2086:32583029,21965716 +) +(1,2087:6630773,22631894:25952256,404226,107478 +h1,2087:6630773,22631894:0,0,0 +g1,2087:6946919,22631894 +g1,2087:7263065,22631894 +k1,2087:7263065,22631894:0 +h1,2087:12005251,22631894:0,0,0 +k1,2087:32583029,22631894:20577778 +g1,2087:32583029,22631894 +) +(1,2091:6630773,23363608:25952256,404226,76021 +(1,2089:6630773,23363608:0,0,0 +g1,2089:6630773,23363608 +g1,2089:6630773,23363608 +g1,2089:6303093,23363608 +(1,2089:6303093,23363608:0,0,0 +) +g1,2089:6630773,23363608 +) +g1,2091:7579210,23363608 +g1,2091:8843793,23363608 +g1,2091:12321396,23363608 +k1,2091:12321396,23363608:0 +h1,2091:15482853,23363608:0,0,0 +k1,2091:32583029,23363608:17100176 +g1,2091:32583029,23363608 +) +] +) +g1,2092:32583029,23439629 +g1,2092:6630773,23439629 +g1,2092:6630773,23439629 +g1,2092:32583029,23439629 +g1,2092:32583029,23439629 +) +h1,2092:6630773,23636237:0,0,0 +(1,2095:6630773,26968093:25952256,32768,229376 +(1,2095:6630773,26968093:0,32768,229376 +(1,2095:6630773,26968093:5505024,32768,229376 +r1,2108:12135797,26968093:5505024,262144,229376 +) +k1,2095:6630773,26968093:-5505024 +) +(1,2095:6630773,26968093:25952256,32768,0 +r1,2108:32583029,26968093:25952256,32768,0 +) +) +(1,2095:6630773,28572421:25952256,606339,161218 +(1,2095:6630773,28572421:1974731,582746,14155 +g1,2095:6630773,28572421 +g1,2095:8605504,28572421 +) +g1,2095:11813360,28572421 +k1,2095:32583030,28572421:17773364 +g1,2095:32583030,28572421 +) +(1,2097:6630773,29807125:25952256,513147,134348 +k1,2096:7835329,29807125:162534 +k1,2096:10273274,29807125:162535 +k1,2096:13168659,29807125:162534 +k1,2096:14140564,29807125:162535 +k1,2096:15322183,29807125:162534 +k1,2096:17859743,29807125:162535 +k1,2096:18689433,29807125:162534 +k1,2096:19266774,29807125:162498 +k1,2096:22558652,29807125:162534 +k1,2096:23337225,29807125:162535 +k1,2096:24518844,29807125:162534 +k1,2096:27025602,29807125:162535 +k1,2096:29779430,29807125:162534 +k1,2096:30154920,29807125:162498 +k1,2096:32583029,29807125:0 +) +(1,2097:6630773,30648613:25952256,513147,134348 +k1,2096:7798000,30648613:148142 +k1,2096:9858483,30648613:148142 +k1,2096:11194138,30648613:148143 +k1,2096:12372506,30648613:148142 +k1,2096:13136686,30648613:148142 +k1,2096:13734405,30648613:148142 +k1,2096:18446729,30648613:148397 +k1,2096:19084425,30648613:148142 +k1,2096:20754968,30648613:148142 +k1,2096:21519148,30648613:148142 +k1,2096:24697676,30648613:148143 +k1,2096:27627821,30648613:148142 +k1,2096:29907194,30648613:148142 +k1,2096:32583029,30648613:0 +) +(1,2097:6630773,31490101:25952256,505283,95026 +g1,2096:8021447,31490101 +g1,2096:11343467,31490101 +g1,2096:11992273,31490101 +k1,2097:32583028,31490101:17078680 +g1,2097:32583028,31490101 +) +] +(1,2108:32583029,45706769:0,0,0 +g1,2108:32583029,45706769 +) +) +] +(1,2108:6630773,47279633:25952256,0,0 +h1,2108:6630773,47279633:25952256,0,0 +) +] +(1,2108:4262630,4025873:0,0,0 +[1,2108:-473656,4025873:0,0,0 +(1,2108:-473656,-710413:0,0,0 +(1,2108:-473656,-710413:0,0,0 +g1,2108:-473656,-710413 ) -] -[2990,266:3078558,4812305:0,0,0 -(2990,266:3078558,2439708:0,1703936,0 -g2990,266:29030814,2439708 -g2990,266:36135244,2439708 -(2990,1:36135244,2439708:1720320,1703936,0 -(2990,1:36135244,2439708:16384,1703936,0 -[2990,1:36135244,2439708:25952256,1703936,0 -(2990,1:36135244,1915420:25952256,1179648,0 -(2990,1:36135244,1915420:16384,1179648,0 -r2990,266:36151628,1915420:16384,1179648,0 -) -k2990,1:62087500,1915420:25935872 -g2990,1:62087500,1915420 +g1,2108:-473656,-710413 ) ] ) -g2990,1:36675916,2439708 -(2990,1:36675916,2439708:1179648,16384,0 -r2990,266:37855564,2439708:1179648,16384,0 +] +!16883 +}42 +!11 +{43 +[1,2108:4262630,47279633:28320399,43253760,0 +(1,2108:4262630,4025873:0,0,0 +[1,2108:-473656,4025873:0,0,0 +(1,2108:-473656,-710413:0,0,0 +(1,2108:-473656,-644877:0,0,0 +k1,2108:-473656,-644877:-65536 ) +(1,2108:-473656,4736287:0,0,0 +k1,2108:-473656,4736287:5209943 ) -k2990,266:3078556,2439708:-34777008 +g1,2108:-473656,-710413 ) ] -[2990,266:3078558,4812305:0,0,0 -(2990,266:3078558,49800853:0,16384,2228224 -k2990,266:1358238,49800853:-1720320 -(2990,1:1358238,49800853:1720320,16384,2228224 -(2990,1:1358238,49800853:1179648,16384,0 -r2990,266:2537886,49800853:1179648,16384,0 -) -g2990,1:3062174,49800853 -(2990,1:3062174,52029077:16384,1703936,0 -[2990,1:3062174,52029077:25952256,1703936,0 -(2990,1:3062174,51504789:25952256,1179648,0 -(2990,1:3062174,51504789:16384,1179648,0 -r2990,266:3078558,51504789:16384,1179648,0 -) -k2990,1:29014430,51504789:25935872 -g2990,1:29014430,51504789 ) -] +[1,2108:6630773,47279633:25952256,43253760,0 +[1,2108:6630773,4812305:25952256,786432,0 +(1,2108:6630773,4812305:25952256,0,0 +(1,2108:6630773,4812305:25952256,0,0 +g1,2108:3078558,4812305 +[1,2108:3078558,4812305:0,0,0 +(1,2108:3078558,2439708:0,1703936,0 +k1,2108:1358238,2439708:-1720320 +(1,2108:1358238,2439708:1720320,1703936,0 +(1,2108:1358238,2439708:1179648,16384,0 +r1,2108:2537886,2439708:1179648,16384,0 ) +g1,2108:3062174,2439708 +(1,2108:3062174,2439708:16384,1703936,0 +[1,2108:3062174,2439708:25952256,1703936,0 +(1,2108:3062174,1915420:25952256,1179648,0 +(1,2108:3062174,1915420:16384,1179648,0 +r1,2108:3078558,1915420:16384,1179648,0 ) +k1,2108:29014430,1915420:25935872 +g1,2108:29014430,1915420 ) ] -[2990,266:3078558,4812305:0,0,0 -(2990,266:3078558,49800853:0,16384,2228224 -g2990,266:29030814,49800853 -g2990,266:36135244,49800853 -(2990,1:36135244,49800853:1720320,16384,2228224 -(2990,1:36135244,52029077:16384,1703936,0 -[2990,1:36135244,52029077:25952256,1703936,0 -(2990,1:36135244,51504789:25952256,1179648,0 -(2990,1:36135244,51504789:16384,1179648,0 -r2990,266:36151628,51504789:16384,1179648,0 -) -k2990,1:62087500,51504789:25935872 -g2990,1:62087500,51504789 ) -] ) -g2990,1:36675916,49800853 -(2990,1:36675916,49800853:1179648,16384,0 -r2990,266:37855564,49800853:1179648,16384,0 ) +] +[1,2108:3078558,4812305:0,0,0 +(1,2108:3078558,2439708:0,1703936,0 +g1,2108:29030814,2439708 +g1,2108:36135244,2439708 +(1,2108:36135244,2439708:1720320,1703936,0 +(1,2108:36135244,2439708:16384,1703936,0 +[1,2108:36135244,2439708:25952256,1703936,0 +(1,2108:36135244,1915420:25952256,1179648,0 +(1,2108:36135244,1915420:16384,1179648,0 +r1,2108:36151628,1915420:16384,1179648,0 ) -k2990,266:3078556,49800853:-34777008 +k1,2108:62087500,1915420:25935872 +g1,2108:62087500,1915420 ) ] -g2990,266:6630773,4812305 -g2990,266:6630773,4812305 -g2990,266:8528695,4812305 -g2990,266:9343962,4812305 -g2990,266:9957379,4812305 -g2990,266:12215094,4812305 -g2990,266:13170608,4812305 -g2990,266:16094824,4812305 -k2990,266:31387652,4812305:15292828 ) +g1,2108:36675916,2439708 +(1,2108:36675916,2439708:1179648,16384,0 +r1,2108:37855564,2439708:1179648,16384,0 ) -] -[2990,266:6630773,45706769:25952256,40108032,0 -(2990,266:6630773,45706769:25952256,40108032,0 -(2990,266:6630773,45706769:0,0,0 -g2990,266:6630773,45706769 -) -[2990,266:6630773,45706769:25952256,40108032,0 -(2990,266:6630773,45706769:25952256,40108032,134348 -[2990,266:6630773,45706769:11829248,40108032,134348 -(2990,174:6630773,6254097:11829248,505283,134348 -h2990,173:6630773,6254097:0,0,0 -r2990,266:6630773,6254097:0,639631,134348 -g2990,173:7941493,6254097 -g2990,173:7941493,6254097 -g2990,173:13056577,6254097 -k2990,174:16355988,6254097:2104034 -k2990,174:18460021,6254097:2104033 -) -(2990,175:6630773,7112893:11829248,505283,134348 -h2990,174:6630773,7112893:0,0,0 -r2990,266:6630773,7112893:0,639631,134348 -g2990,174:7941493,7112893 -g2990,174:7941493,7112893 -g2990,174:13846941,7112893 -k2990,175:16751170,7112893:1708852 -k2990,175:18460021,7112893:1708851 -) -(2990,176:6630773,7971688:11829248,505283,134348 -h2990,175:6630773,7971688:0,0,0 -r2990,266:6630773,7971688:0,639631,134348 -g2990,175:7941493,7971688 -g2990,175:7941493,7971688 -g2990,175:12266213,7971688 -g2990,175:13834489,7971688 -g2990,175:15402765,7971688 -k2990,176:17529082,7971688:930940 -k2990,176:18460021,7971688:930939 -) -(2990,177:6630773,8830484:11829248,505283,134348 -h2990,176:6630773,8830484:0,0,0 -r2990,266:6630773,8830484:0,639631,134348 -g2990,176:7941493,8830484 -g2990,176:7941493,8830484 -g2990,176:13056577,8830484 -k2990,177:16355988,8830484:2104034 -k2990,177:18460021,8830484:2104033 -) -(2990,178:6630773,9689279:11829248,505283,134348 -h2990,177:6630773,9689279:0,0,0 -r2990,266:6630773,9689279:0,639631,134348 -g2990,177:7941493,9689279 -g2990,177:7941493,9689279 -g2990,177:13846941,9689279 -k2990,178:16751170,9689279:1708852 -k2990,178:18460021,9689279:1708851 -) -(2990,179:6630773,10548075:11829248,505283,134348 -h2990,178:6630773,10548075:0,0,0 -r2990,266:6630773,10548075:0,639631,134348 -g2990,178:7941493,10548075 -g2990,178:7941493,10548075 -g2990,178:15032488,10548075 -k2990,179:17343943,10548075:1116078 -k2990,179:18460021,10548075:1116078 -) -(2990,180:6630773,11406870:11829248,505283,134348 -h2990,179:6630773,11406870:0,0,0 -r2990,266:6630773,11406870:0,639631,134348 -g2990,179:7941493,11406870 -g2990,179:7941493,11406870 -g2990,179:13451759,11406870 -k2990,180:16553579,11406870:1906443 -k2990,180:18460021,11406870:1906442 -) -(2990,181:6630773,12265666:11829248,505283,134348 -h2990,180:6630773,12265666:0,0,0 -r2990,266:6630773,12265666:0,639631,134348 -g2990,180:7941493,12265666 -g2990,180:7941493,12265666 -g2990,180:14242123,12265666 -k2990,181:16948761,12265666:1511261 -k2990,181:18460021,12265666:1511260 -) -(2990,182:6630773,13124461:11829248,505283,134348 -h2990,181:6630773,13124461:0,0,0 -r2990,266:6630773,13124461:0,639631,134348 -g2990,181:7941493,13124461 -g2990,181:7941493,13124461 -g2990,181:12661395,13124461 -g2990,181:14229671,13124461 -k2990,182:16942535,13124461:1517487 -k2990,182:18460021,13124461:1517486 -) -(2990,183:6630773,13983257:11829248,505283,134348 -h2990,182:6630773,13983257:0,0,0 -r2990,266:6630773,13983257:0,639631,134348 -g2990,182:7941493,13983257 -g2990,182:7941493,13983257 -g2990,182:14242123,13983257 -k2990,183:16948761,13983257:1511261 -k2990,183:18460021,13983257:1511260 -) -(2990,184:6630773,14842052:11829248,505283,134348 -h2990,183:6630773,14842052:0,0,0 -r2990,266:6630773,14842052:0,639631,134348 -g2990,183:7941493,14842052 -g2990,183:7941493,14842052 -g2990,183:12266213,14842052 -k2990,184:15960806,14842052:2499216 -k2990,184:18460021,14842052:2499215 -) -(2990,185:6630773,15700848:11829248,505283,134348 -h2990,184:6630773,15700848:0,0,0 -r2990,266:6630773,15700848:0,639631,134348 -g2990,184:7941493,15700848 -g2990,184:7941493,15700848 -g2990,184:14637306,15700848 -g2990,184:16205582,15700848 -k2990,185:17930490,15700848:529531 -k2990,185:18460021,15700848:529531 -) -(2990,186:6630773,16559643:11829248,505283,134348 -h2990,185:6630773,16559643:0,0,0 -r2990,266:6630773,16559643:0,639631,134348 -g2990,185:7941493,16559643 -g2990,185:7941493,16559643 -g2990,185:12266213,16559643 -k2990,186:15960806,16559643:2499216 -k2990,186:18460021,16559643:2499215 -) -(2990,187:6630773,17418439:11829248,505283,134348 -h2990,186:6630773,17418439:0,0,0 -r2990,266:6630773,17418439:0,639631,134348 -g2990,186:7941493,17418439 -g2990,186:7941493,17418439 -g2990,186:13056577,17418439 -g2990,186:14624853,17418439 -k2990,187:17140126,17418439:1319896 -k2990,187:18460021,17418439:1319895 -) -(2990,188:6630773,18277234:11829248,505283,134348 -h2990,187:6630773,18277234:0,0,0 -r2990,266:6630773,18277234:0,639631,134348 -g2990,187:7941493,18277234 -g2990,187:7941493,18277234 -g2990,187:12266213,18277234 -g2990,187:13834489,18277234 -k2990,188:16744944,18277234:1715078 -k2990,188:18460021,18277234:1715077 -) -(2990,189:6630773,19136030:11829248,505283,134348 -h2990,188:6630773,19136030:0,0,0 -r2990,266:6630773,19136030:0,639631,134348 -g2990,188:7941493,19136030 -g2990,188:7941493,19136030 -g2990,188:13056577,19136030 -g2990,188:16147910,19136030 -k2990,189:17901654,19136030:558367 -k2990,189:18460021,19136030:558367 -) -(2990,190:6630773,19994826:11829248,505283,134348 -h2990,189:6630773,19994826:0,0,0 -r2990,266:6630773,19994826:0,639631,134348 -g2990,189:7941493,19994826 -g2990,189:7941493,19994826 -g2990,189:14637306,19994826 -k2990,190:17146352,19994826:1313669 -k2990,190:18460021,19994826:1313669 -) -(2990,191:6630773,20853621:11829248,505283,134348 -h2990,190:6630773,20853621:0,0,0 -r2990,266:6630773,20853621:0,639631,134348 -g2990,190:7941493,20853621 -g2990,190:7941493,20853621 -g2990,190:15427670,20853621 -k2990,191:17541534,20853621:918487 -k2990,191:18460021,20853621:918487 -) -(2990,192:6630773,21712417:11829248,505283,134348 -h2990,191:6630773,21712417:0,0,0 -r2990,266:6630773,21712417:0,639631,134348 -g2990,191:7941493,21712417 -g2990,191:7941493,21712417 -g2990,191:11871031,21712417 -g2990,191:13439307,21712417 -k2990,192:16547353,21712417:1912669 -k2990,192:18460021,21712417:1912668 -) -(2990,193:6630773,22571212:11829248,505283,134348 -h2990,192:6630773,22571212:0,0,0 -r2990,266:6630773,22571212:0,639631,134348 -g2990,192:7941493,22571212 -g2990,192:7941493,22571212 -g2990,192:12661395,22571212 -g2990,192:14229671,22571212 -g2990,192:15797947,22571212 -k2990,192:18460021,22571212:1293027 -) -(2990,193:9252213,23412700:9207808,485622,102891 -g2990,192:10820489,23412700 -g2990,192:12388765,23412700 -g2990,192:13957041,23412700 -k2990,193:16806220,23412700:1653802 -k2990,193:18460021,23412700:1653801 -) -(2990,194:6630773,24271496:11829248,505283,134348 -h2990,193:6630773,24271496:0,0,0 -r2990,266:6630773,24271496:0,639631,134348 -g2990,193:7941493,24271496 -g2990,193:7941493,24271496 -g2990,193:14637306,24271496 -k2990,194:17146352,24271496:1313669 -k2990,194:18460021,24271496:1313669 -) -(2990,195:6630773,25130291:11829248,505283,134348 -h2990,194:6630773,25130291:0,0,0 -r2990,266:6630773,25130291:0,639631,134348 -g2990,194:7941493,25130291 -g2990,194:7941493,25130291 -g2990,194:12661395,25130291 -g2990,194:14229671,25130291 -k2990,195:16942535,25130291:1517487 -k2990,195:18460021,25130291:1517486 -) -(2990,196:6630773,25989087:11829248,505283,134348 -h2990,195:6630773,25989087:0,0,0 -r2990,266:6630773,25989087:0,639631,134348 -g2990,195:7941493,25989087 -g2990,195:7941493,25989087 -g2990,195:12661395,25989087 -g2990,195:14229671,25989087 -k2990,196:16942535,25989087:1517487 -k2990,196:18460021,25989087:1517486 -) -(2990,197:6630773,26847882:11829248,505283,134348 -h2990,196:6630773,26847882:0,0,0 -r2990,266:6630773,26847882:0,639631,134348 -g2990,196:7941493,26847882 -g2990,196:7941493,26847882 -g2990,196:14242123,26847882 -k2990,197:16948761,26847882:1511261 -k2990,197:18460021,26847882:1511260 -) -(2990,198:6630773,27706678:11829248,505283,134348 -h2990,197:6630773,27706678:0,0,0 -r2990,266:6630773,27706678:0,639631,134348 -g2990,197:7941493,27706678 -g2990,197:7941493,27706678 -g2990,197:12266213,27706678 -g2990,197:13834489,27706678 -g2990,197:15402765,27706678 -k2990,198:17529082,27706678:930940 -k2990,198:18460021,27706678:930939 -) -(2990,200:6630773,28565473:11829248,505283,134348 -h2990,198:6630773,28565473:0,0,0 -r2990,266:6630773,28565473:0,639631,134348 -g2990,198:7941493,28565473 -g2990,198:7941493,28565473 -g2990,198:13056577,28565473 -g2990,198:14624853,28565473 -g2990,198:16193129,28565473 -k2990,198:18460021,28565473:897845 -) -(2990,200:9252213,29406961:9207808,485622,102891 -g2990,198:10820489,29406961 -g2990,198:12388765,29406961 -g2990,198:13957041,29406961 -g2990,199:15525317,29406961 -g2990,199:17093593,29406961 -k2990,200:18374496,29406961:85526 -k2990,200:18460021,29406961:85525 -) -(2990,201:6630773,30265757:11829248,505283,134348 -h2990,200:6630773,30265757:0,0,0 -r2990,266:6630773,30265757:0,639631,134348 -g2990,200:7941493,30265757 -g2990,200:7941493,30265757 -g2990,200:15032488,30265757 -g2990,200:16600764,30265757 -k2990,200:18460021,30265757:490210 -) -(2990,201:9252213,31107245:9207808,485622,11795 -k2990,201:14453806,31107245:4006216 -k2990,201:18460021,31107245:4006215 -) -(2990,202:6630773,31966040:11829248,505283,134348 -h2990,201:6630773,31966040:0,0,0 -r2990,266:6630773,31966040:0,639631,134348 -g2990,201:7941493,31966040 -g2990,201:7941493,31966040 -g2990,201:13056577,31966040 -k2990,202:16355988,31966040:2104034 -k2990,202:18460021,31966040:2104033 -) -(2990,203:6630773,32824836:11829248,505283,134348 -h2990,202:6630773,32824836:0,0,0 -r2990,266:6630773,32824836:0,639631,134348 -g2990,202:7941493,32824836 -g2990,202:7941493,32824836 -g2990,202:13846941,32824836 -k2990,203:16751170,32824836:1708852 -k2990,203:18460021,32824836:1708851 -) -(2990,204:6630773,33683632:11829248,505283,134348 -h2990,203:6630773,33683632:0,0,0 -r2990,266:6630773,33683632:0,639631,134348 -g2990,203:7941493,33683632 -g2990,203:7941493,33683632 -g2990,203:13056577,33683632 -k2990,204:16355988,33683632:2104034 -k2990,204:18460021,33683632:2104033 -) -(2990,205:6630773,34542427:11829248,505283,134348 -h2990,204:6630773,34542427:0,0,0 -r2990,266:6630773,34542427:0,639631,134348 -g2990,204:7941493,34542427 -g2990,204:7941493,34542427 -g2990,204:12661395,34542427 -k2990,205:16158397,34542427:2301625 -k2990,205:18460021,34542427:2301624 -) -(2990,206:6630773,35401223:11829248,505283,134348 -h2990,205:6630773,35401223:0,0,0 -r2990,266:6630773,35401223:0,639631,134348 -g2990,205:7941493,35401223 -g2990,205:7941493,35401223 -g2990,205:12661395,35401223 -k2990,206:16158397,35401223:2301625 -k2990,206:18460021,35401223:2301624 -) -(2990,207:6630773,36260018:11829248,505283,134348 -h2990,206:6630773,36260018:0,0,0 -r2990,266:6630773,36260018:0,639631,134348 -g2990,206:7941493,36260018 -g2990,206:7941493,36260018 -g2990,206:12266213,36260018 -k2990,207:15960806,36260018:2499216 -k2990,207:18460021,36260018:2499215 -) -(2990,208:6630773,37118814:11829248,505283,134348 -h2990,207:6630773,37118814:0,0,0 -r2990,266:6630773,37118814:0,639631,134348 -g2990,207:7941493,37118814 -g2990,207:7941493,37118814 -g2990,207:13846941,37118814 -k2990,208:16751170,37118814:1708852 -k2990,208:18460021,37118814:1708851 -) -(2990,209:6630773,37977609:11829248,513147,134348 -h2990,208:6630773,37977609:0,0,0 -r2990,266:6630773,37977609:0,647495,134348 -g2990,208:7941493,37977609 -g2990,208:7941493,37977609 -g2990,208:11871031,37977609 -k2990,209:15763215,37977609:2696807 -k2990,209:18460021,37977609:2696806 -) -(2990,210:6630773,38836405:11829248,513147,134348 -h2990,209:6630773,38836405:0,0,0 -r2990,266:6630773,38836405:0,647495,134348 -g2990,209:7941493,38836405 -g2990,209:7941493,38836405 -g2990,209:14242123,38836405 -k2990,210:16948761,38836405:1511261 -k2990,210:18460021,38836405:1511260 -) -(2990,211:6630773,39695200:11829248,513147,134348 -h2990,210:6630773,39695200:0,0,0 -r2990,266:6630773,39695200:0,647495,134348 -g2990,210:7941493,39695200 -g2990,210:7941493,39695200 -g2990,210:13846941,39695200 -k2990,211:16751170,39695200:1708852 -k2990,211:18460021,39695200:1708851 -) -(2990,212:6630773,40553996:11829248,505283,134348 -h2990,211:6630773,40553996:0,0,0 -r2990,266:6630773,40553996:0,639631,134348 -g2990,211:7941493,40553996 -g2990,211:7941493,40553996 -g2990,211:13451759,40553996 -g2990,211:15020035,40553996 -k2990,212:17337717,40553996:1122305 -k2990,212:18460021,40553996:1122304 -) -(2990,213:6630773,41412791:11829248,505283,134348 -h2990,212:6630773,41412791:0,0,0 -r2990,266:6630773,41412791:0,639631,134348 -g2990,212:7941493,41412791 -g2990,212:7941493,41412791 -g2990,212:13056577,41412791 -k2990,213:16355988,41412791:2104034 -k2990,213:18460021,41412791:2104033 -) -(2990,214:6630773,42271587:11829248,505283,134348 -h2990,213:6630773,42271587:0,0,0 -r2990,266:6630773,42271587:0,639631,134348 -g2990,213:7941493,42271587 -g2990,213:7941493,42271587 -g2990,213:12661395,42271587 -k2990,214:16158397,42271587:2301625 -k2990,214:18460021,42271587:2301624 -) -(2990,215:6630773,43130382:11829248,505283,134348 -h2990,214:6630773,43130382:0,0,0 -r2990,266:6630773,43130382:0,639631,134348 -g2990,214:7941493,43130382 -g2990,214:7941493,43130382 -g2990,214:12266213,43130382 -k2990,215:15960806,43130382:2499216 -k2990,215:18460021,43130382:2499215 -) -(2990,216:6630773,43989178:11829248,505283,134348 -h2990,215:6630773,43989178:0,0,0 -r2990,266:6630773,43989178:0,639631,134348 -g2990,215:7941493,43989178 -g2990,215:7941493,43989178 -g2990,215:13056577,43989178 -g2990,215:14624853,43989178 -k2990,216:17140126,43989178:1319896 -k2990,216:18460021,43989178:1319895 -) -(2990,217:6630773,44847973:11829248,505283,134348 -h2990,216:6630773,44847973:0,0,0 -r2990,266:6630773,44847973:0,639631,134348 -g2990,216:7941493,44847973 -g2990,216:7941493,44847973 -g2990,216:14637306,44847973 -k2990,217:17146352,44847973:1313669 -k2990,217:18460021,44847973:1313669 -) -(2990,218:6630773,45706769:11829248,485622,134348 -h2990,217:6630773,45706769:0,0,0 -r2990,266:6630773,45706769:0,619970,134348 -g2990,217:7941493,45706769 -g2990,217:7941493,45706769 -g2990,217:11871031,45706769 -g2990,217:13439307,45706769 -g2990,217:15007583,45706769 -k2990,218:17331491,45706769:1128531 -k2990,218:18460021,45706769:1128530 ) -] -k2990,266:19606901,45706769:1146880 -r2990,266:19606901,45706769:0,40242380,134348 -k2990,266:20753781,45706769:1146880 -[2990,266:20753781,45706769:11829248,40108032,102891 -(2990,219:20753781,6254097:11829248,505283,134348 -h2990,218:20753781,6254097:0,0,0 -r2990,266:20753781,6254097:0,639631,134348 -g2990,218:22064501,6254097 -g2990,218:22064501,6254097 -g2990,218:26784403,6254097 -g2990,218:28352679,6254097 -k2990,218:32583029,6254097:1338246 -) -(2990,219:23375221,7095585:9207808,485622,102891 -g2990,218:24943497,7095585 -k2990,219:29360952,7095585:3222078 -k2990,219:32583029,7095585:3222077 -) -(2990,220:20753781,7953987:11829248,505283,134348 -h2990,219:20753781,7953987:0,0,0 -r2990,266:20753781,7953987:0,639631,134348 -g2990,219:22064501,7953987 -g2990,219:22064501,7953987 -g2990,219:28365131,7953987 -k2990,220:31071769,7953987:1511261 -k2990,220:32583029,7953987:1511260 -) -(2990,221:20753781,8812389:11829248,505283,134348 -h2990,220:20753781,8812389:0,0,0 -r2990,266:20753781,8812389:0,639631,134348 -g2990,220:22064501,8812389 -g2990,220:22064501,8812389 -g2990,220:29155496,8812389 -k2990,221:31466951,8812389:1116078 -k2990,221:32583029,8812389:1116078 -) -(2990,222:20753781,9670792:11829248,505283,134348 -h2990,221:20753781,9670792:0,0,0 -r2990,266:20753781,9670792:0,639631,134348 -g2990,221:22064501,9670792 -g2990,221:22064501,9670792 -g2990,221:26784403,9670792 -g2990,221:28352679,9670792 -k2990,222:31065543,9670792:1517487 -k2990,222:32583029,9670792:1517486 -) -(2990,223:20753781,10529194:11829248,505283,134348 -h2990,222:20753781,10529194:0,0,0 -r2990,266:20753781,10529194:0,639631,134348 -g2990,222:22064501,10529194 -g2990,222:22064501,10529194 -g2990,222:27574767,10529194 -k2990,223:30676587,10529194:1906443 -k2990,223:32583029,10529194:1906442 -) -(2990,224:20753781,11387596:11829248,505283,134348 -h2990,223:20753781,11387596:0,0,0 -r2990,266:20753781,11387596:0,639631,134348 -g2990,223:22064501,11387596 -g2990,223:22064501,11387596 -g2990,223:26389221,11387596 -k2990,224:30083814,11387596:2499216 -k2990,224:32583029,11387596:2499215 -) -(2990,225:20753781,12245998:11829248,505283,134348 -h2990,224:20753781,12245998:0,0,0 -r2990,266:20753781,12245998:0,639631,134348 -g2990,224:22064501,12245998 -g2990,224:22064501,12245998 -g2990,224:27179585,12245998 -g2990,224:28747861,12245998 -k2990,225:31263134,12245998:1319896 -k2990,225:32583029,12245998:1319895 -) -(2990,226:20753781,13104400:11829248,505283,134348 -h2990,225:20753781,13104400:0,0,0 -r2990,266:20753781,13104400:0,639631,134348 -g2990,225:22064501,13104400 -g2990,225:22064501,13104400 -g2990,225:24413310,13104400 -k2990,226:29095858,13104400:3487171 -k2990,226:32583029,13104400:3487171 -) -(2990,227:20753781,13962802:11829248,505283,134348 -h2990,226:20753781,13962802:0,0,0 -r2990,266:20753781,13962802:0,639631,134348 -g2990,226:22064501,13962802 -g2990,226:22064501,13962802 -g2990,226:25203675,13962802 -k2990,227:29491041,13962802:3091989 -k2990,227:32583029,13962802:3091988 -) -(2990,228:20753781,14821205:11829248,505283,134348 -h2990,227:20753781,14821205:0,0,0 -r2990,266:20753781,14821205:0,639631,134348 -g2990,227:22064501,14821205 -g2990,227:22064501,14821205 -g2990,227:25598857,14821205 -g2990,227:26768674,14821205 -g2990,227:29860007,14821205 -k2990,228:31819207,14821205:763823 -k2990,228:32583029,14821205:763822 -) -(2990,229:20753781,15679607:11829248,505283,134348 -h2990,228:20753781,15679607:0,0,0 -r2990,266:20753781,15679607:0,639631,134348 -g2990,228:22064501,15679607 -g2990,228:22064501,15679607 -g2990,228:27179585,15679607 -k2990,229:30478996,15679607:2104034 -k2990,229:32583029,15679607:2104033 -) -(2990,230:20753781,16538009:11829248,505283,134348 -h2990,229:20753781,16538009:0,0,0 -r2990,266:20753781,16538009:0,639631,134348 -g2990,229:22064501,16538009 -g2990,229:22064501,16538009 -g2990,229:25994039,16538009 -k2990,230:29886223,16538009:2696807 -k2990,230:32583029,16538009:2696806 -) -(2990,231:20753781,17396411:11829248,505283,134348 -h2990,230:20753781,17396411:0,0,0 -r2990,266:20753781,17396411:0,639631,134348 -g2990,230:22064501,17396411 -g2990,230:22064501,17396411 -g2990,230:24018128,17396411 -g2990,230:25187945,17396411 -k2990,231:29283946,17396411:3299083 -k2990,231:32583029,17396411:3299083 -) -(2990,232:20753781,18254813:11829248,505283,134348 -h2990,231:20753781,18254813:0,0,0 -r2990,266:20753781,18254813:0,639631,134348 -g2990,231:22064501,18254813 -g2990,231:22064501,18254813 -g2990,231:24413310,18254813 -k2990,232:29095858,18254813:3487171 -k2990,232:32583029,18254813:3487171 -) -(2990,233:20753781,19113216:11829248,505283,134348 -h2990,232:20753781,19113216:0,0,0 -r2990,266:20753781,19113216:0,639631,134348 -g2990,232:22064501,19113216 -g2990,232:22064501,19113216 -g2990,232:26389221,19113216 -g2990,232:27957497,19113216 -k2990,233:30867952,19113216:1715078 -k2990,233:32583029,19113216:1715077 -) -(2990,234:20753781,19971618:11829248,505283,102891 -h2990,233:20753781,19971618:0,0,0 -r2990,266:20753781,19971618:0,608174,102891 -g2990,233:22064501,19971618 -g2990,233:22064501,19971618 -g2990,233:24413310,19971618 -k2990,234:29095858,19971618:3487171 -k2990,234:32583029,19971618:3487171 -) -(2990,235:20753781,20830020:11829248,505283,102891 -h2990,234:20753781,20830020:0,0,0 -r2990,266:20753781,20830020:0,608174,102891 -g2990,234:22064501,20830020 -g2990,234:22064501,20830020 -g2990,234:25598857,20830020 -g2990,234:27167133,20830020 -k2990,235:30472770,20830020:2110260 -k2990,235:32583029,20830020:2110259 -) -(2990,236:20753781,21688422:11829248,505283,102891 -h2990,235:20753781,21688422:0,0,0 -r2990,266:20753781,21688422:0,608174,102891 -g2990,235:22064501,21688422 -g2990,235:22064501,21688422 -g2990,235:24808493,21688422 -g2990,235:25978310,21688422 -k2990,236:29679129,21688422:2903901 -k2990,236:32583029,21688422:2903900 -) -(2990,237:20753781,22546824:11829248,505283,126483 -h2990,236:20753781,22546824:0,0,0 -r2990,266:20753781,22546824:0,631766,126483 -g2990,236:22064501,22546824 -g2990,236:22064501,22546824 -g2990,236:24808493,22546824 -k2990,237:29094220,22546824:3488809 -k2990,237:32583029,22546824:3488809 -) -(2990,238:20753781,23405226:11829248,505283,102891 -h2990,237:20753781,23405226:0,0,0 -r2990,266:20753781,23405226:0,608174,102891 -g2990,237:22064501,23405226 -g2990,237:22064501,23405226 -g2990,237:23622946,23405226 -g2990,237:24792763,23405226 -g2990,237:25962580,23405226 -g2990,237:27530856,23405226 -k2990,238:30654631,23405226:1928398 -k2990,238:32583029,23405226:1928398 -) -(2990,239:20753781,24263629:11829248,505283,102891 -h2990,238:20753781,24263629:0,0,0 -r2990,266:20753781,24263629:0,608174,102891 -g2990,238:22064501,24263629 -g2990,238:22064501,24263629 -g2990,238:26784403,24263629 -k2990,239:30281405,24263629:2301625 -k2990,239:32583029,24263629:2301624 -) -(2990,240:20753781,25122031:11829248,505283,102891 -h2990,239:20753781,25122031:0,0,0 -r2990,266:20753781,25122031:0,608174,102891 -g2990,239:22064501,25122031 -g2990,239:22064501,25122031 -g2990,239:26389221,25122031 -g2990,239:27559038,25122031 -k2990,240:30668722,25122031:1914307 -k2990,240:32583029,25122031:1914307 -) -(2990,241:20753781,25980433:11829248,505283,134348 -h2990,240:20753781,25980433:0,0,0 -r2990,266:20753781,25980433:0,639631,134348 -g2990,240:22064501,25980433 -g2990,240:22064501,25980433 -g2990,240:27179585,25980433 -k2990,241:30478996,25980433:2104034 -k2990,241:32583029,25980433:2104033 -) -(2990,242:20753781,26838835:11829248,505283,134348 -h2990,241:20753781,26838835:0,0,0 -r2990,266:20753781,26838835:0,639631,134348 -g2990,241:22064501,26838835 -g2990,241:22064501,26838835 -g2990,241:29550678,26838835 -k2990,242:31664542,26838835:918487 -k2990,242:32583029,26838835:918487 -) -(2990,243:20753781,27697237:11829248,505283,126483 -h2990,242:20753781,27697237:0,0,0 -r2990,266:20753781,27697237:0,631766,126483 -g2990,242:22064501,27697237 -g2990,242:22064501,27697237 -g2990,242:26389221,27697237 -k2990,243:29884584,27697237:2698445 -k2990,243:32583029,27697237:2698445 -) -(2990,244:20753781,28555640:11829248,505283,102891 -h2990,243:20753781,28555640:0,0,0 -r2990,266:20753781,28555640:0,608174,102891 -g2990,243:22064501,28555640 -g2990,243:22064501,28555640 -g2990,243:27969949,28555640 -k2990,244:30674948,28555640:1908081 -k2990,244:32583029,28555640:1908081 -) -(2990,245:20753781,29414042:11829248,505283,102891 -h2990,244:20753781,29414042:0,0,0 -r2990,266:20753781,29414042:0,608174,102891 -g2990,244:22064501,29414042 -g2990,244:22064501,29414042 -g2990,244:27179585,29414042 -g2990,244:28349402,29414042 -k2990,245:30864675,29414042:1718355 -k2990,245:32583029,29414042:1718354 -) -(2990,246:20753781,30272444:11829248,505283,134348 -h2990,245:20753781,30272444:0,0,0 -r2990,266:20753781,30272444:0,639631,134348 -g2990,245:22064501,30272444 -g2990,245:22064501,30272444 -g2990,245:27179585,30272444 -k2990,246:30279766,30272444:2303263 -k2990,246:32583029,30272444:2303263 -) -(2990,247:20753781,31130846:11829248,505283,102891 -h2990,246:20753781,31130846:0,0,0 -r2990,266:20753781,31130846:0,608174,102891 -g2990,246:22064501,31130846 -g2990,246:22064501,31130846 -g2990,246:26784403,31130846 -k2990,247:30082175,31130846:2500854 -k2990,247:32583029,31130846:2500854 -) -(2990,248:20753781,31989248:11829248,505283,102891 -h2990,247:20753781,31989248:0,0,0 -r2990,266:20753781,31989248:0,608174,102891 -g2990,247:22064501,31989248 -g2990,247:22064501,31989248 -g2990,247:25203675,31989248 -k2990,248:29291811,31989248:3291218 -k2990,248:32583029,31989248:3291218 -) -(2990,249:20753781,32847650:11829248,505283,102891 -h2990,248:20753781,32847650:0,0,0 -r2990,266:20753781,32847650:0,608174,102891 -g2990,248:22064501,32847650 -g2990,248:22064501,32847650 -g2990,248:27179585,32847650 -g2990,248:28349402,32847650 -k2990,249:30864675,32847650:1718355 -k2990,249:32583029,32847650:1718354 -) -(2990,250:20753781,33706053:11829248,505283,102891 -h2990,249:20753781,33706053:0,0,0 -r2990,266:20753781,33706053:0,608174,102891 -g2990,249:22064501,33706053 -g2990,249:22064501,33706053 -g2990,249:26784403,33706053 -k2990,250:30082175,33706053:2500854 -k2990,250:32583029,33706053:2500854 -) -(2990,251:20753781,34564455:11829248,505283,102891 -h2990,250:20753781,34564455:0,0,0 -r2990,266:20753781,34564455:0,608174,102891 -g2990,250:22064501,34564455 -g2990,250:22064501,34564455 -g2990,250:26784403,34564455 -k2990,251:30281405,34564455:2301625 -k2990,251:32583029,34564455:2301624 -) -(2990,252:20753781,35422857:11829248,505283,102891 -h2990,251:20753781,35422857:0,0,0 -r2990,266:20753781,35422857:0,608174,102891 -g2990,251:22064501,35422857 -g2990,251:22064501,35422857 -g2990,251:25598857,35422857 -k2990,252:29688632,35422857:2894398 -k2990,252:32583029,35422857:2894397 -) -(2990,253:20753781,36281259:11829248,505283,126483 -h2990,252:20753781,36281259:0,0,0 -r2990,266:20753781,36281259:0,631766,126483 -g2990,252:22064501,36281259 -g2990,252:22064501,36281259 -g2990,252:27969949,36281259 -k2990,253:30874178,36281259:1708852 -k2990,253:32583029,36281259:1708851 -) -(2990,254:20753781,37139661:11829248,505283,102891 -h2990,253:20753781,37139661:0,0,0 -r2990,266:20753781,37139661:0,608174,102891 -g2990,253:22064501,37139661 -g2990,253:22064501,37139661 -g2990,253:27179585,37139661 -k2990,254:30478996,37139661:2104034 -k2990,254:32583029,37139661:2104033 -) -(2990,255:20753781,37998064:11829248,505283,102891 -h2990,254:20753781,37998064:0,0,0 -r2990,266:20753781,37998064:0,608174,102891 -g2990,254:22064501,37998064 -g2990,254:22064501,37998064 -g2990,254:29550678,37998064 -k2990,255:31664542,37998064:918487 -k2990,255:32583029,37998064:918487 -) -(2990,256:20753781,38856466:11829248,505283,102891 -h2990,255:20753781,38856466:0,0,0 -r2990,266:20753781,38856466:0,608174,102891 -g2990,255:22064501,38856466 -g2990,255:22064501,38856466 -g2990,255:27179585,38856466 -k2990,256:30478996,38856466:2104034 -k2990,256:32583029,38856466:2104033 -) -(2990,257:20753781,39714868:11829248,505283,102891 -h2990,256:20753781,39714868:0,0,0 -r2990,266:20753781,39714868:0,608174,102891 -g2990,256:22064501,39714868 -g2990,256:22064501,39714868 -g2990,256:24808493,39714868 -g2990,256:26376769,39714868 -k2990,257:30077588,39714868:2505442 -k2990,257:32583029,39714868:2505441 -) -(2990,258:20753781,40573270:11829248,513147,134348 -h2990,257:20753781,40573270:0,0,0 -r2990,266:20753781,40573270:0,647495,134348 -g2990,257:22064501,40573270 -g2990,257:22064501,40573270 -g2990,257:26784403,40573270 -k2990,258:30281405,40573270:2301625 -k2990,258:32583029,40573270:2301624 -) -(2990,259:20753781,41431672:11829248,505283,134348 -h2990,258:20753781,41431672:0,0,0 -r2990,266:20753781,41431672:0,639631,134348 -g2990,258:22064501,41431672 -g2990,258:22064501,41431672 -g2990,258:25598857,41431672 -g2990,258:26768674,41431672 -g2990,258:27938491,41431672 -g2990,258:29108308,41431672 -g2990,258:30278125,41431672 -k2990,258:32583029,41431672:935857 -) -(2990,259:23375221,42273160:9207808,485622,11795 -k2990,259:28576814,42273160:4006216 -k2990,259:32583029,42273160:4006215 -) -(2990,260:20753781,43131562:11829248,505283,102891 -h2990,259:20753781,43131562:0,0,0 -r2990,266:20753781,43131562:0,608174,102891 -g2990,259:22064501,43131562 -g2990,259:22064501,43131562 -g2990,259:25598857,43131562 -g2990,259:26768674,43131562 -g2990,259:27938491,43131562 -k2990,260:30659219,43131562:1923810 -k2990,260:32583029,43131562:1923810 -) -(2990,261:20753781,43989965:11829248,505283,102891 -h2990,260:20753781,43989965:0,0,0 -r2990,266:20753781,43989965:0,608174,102891 -g2990,260:22064501,43989965 -g2990,260:22064501,43989965 -g2990,260:26389221,43989965 -g2990,260:27559038,43989965 -k2990,261:30469493,43989965:2113537 -k2990,261:32583029,43989965:2113536 -) -(2990,262:20753781,44848367:11829248,505283,126483 -h2990,261:20753781,44848367:0,0,0 -r2990,266:20753781,44848367:0,631766,126483 -g2990,261:22064501,44848367 -g2990,261:22064501,44848367 -g2990,261:25994039,44848367 -k2990,262:29886223,44848367:2696807 -k2990,262:32583029,44848367:2696806 -) -(2990,263:20753781,45706769:11829248,505283,102891 -h2990,262:20753781,45706769:0,0,0 -r2990,266:20753781,45706769:0,608174,102891 -g2990,262:22064501,45706769 -g2990,262:22064501,45706769 -g2990,262:24808493,45706769 -k2990,263:29094220,45706769:3488809 -k2990,263:32583029,45706769:3488809 +k1,2108:3078556,2439708:-34777008 ) ] -(2990,266:32583029,45706769:0,355205,126483 -h2990,266:32583029,45706769:420741,355205,126483 -k2990,266:32583029,45706769:-420741 +[1,2108:3078558,4812305:0,0,0 +(1,2108:3078558,49800853:0,16384,2228224 +k1,2108:1358238,49800853:-1720320 +(1,2108:1358238,49800853:1720320,16384,2228224 +(1,2108:1358238,49800853:1179648,16384,0 +r1,2108:2537886,49800853:1179648,16384,0 +) +g1,2108:3062174,49800853 +(1,2108:3062174,52029077:16384,1703936,0 +[1,2108:3062174,52029077:25952256,1703936,0 +(1,2108:3062174,51504789:25952256,1179648,0 +(1,2108:3062174,51504789:16384,1179648,0 +r1,2108:3078558,51504789:16384,1179648,0 ) +k1,2108:29014430,51504789:25935872 +g1,2108:29014430,51504789 ) ] -(2990,266:32583029,45706769:0,0,0 -g2990,266:32583029,45706769 ) ) -] -(2990,266:6630773,47279633:25952256,0,0 -h2990,266:6630773,47279633:25952256,0,0 ) ] -(2990,266:4262630,4025873:0,0,0 -[2990,266:-473656,4025873:0,0,0 -(2990,266:-473656,-710413:0,0,0 -(2990,266:-473656,-710413:0,0,0 -g2990,266:-473656,-710413 +[1,2108:3078558,4812305:0,0,0 +(1,2108:3078558,49800853:0,16384,2228224 +g1,2108:29030814,49800853 +g1,2108:36135244,49800853 +(1,2108:36135244,49800853:1720320,16384,2228224 +(1,2108:36135244,52029077:16384,1703936,0 +[1,2108:36135244,52029077:25952256,1703936,0 +(1,2108:36135244,51504789:25952256,1179648,0 +(1,2108:36135244,51504789:16384,1179648,0 +r1,2108:36151628,51504789:16384,1179648,0 ) -g2990,266:-473656,-710413 +k1,2108:62087500,51504789:25935872 +g1,2108:62087500,51504789 ) ] ) -] -!31202 -}390 -!12 -{391 -[2990,358:4262630,47279633:28320399,43253760,0 -(2990,358:4262630,4025873:0,0,0 -[2990,358:-473656,4025873:0,0,0 -(2990,358:-473656,-710413:0,0,0 -(2990,358:-473656,-644877:0,0,0 -k2990,358:-473656,-644877:-65536 -) -(2990,358:-473656,4736287:0,0,0 -k2990,358:-473656,4736287:5209943 -) -g2990,358:-473656,-710413 +g1,2108:36675916,49800853 +(1,2108:36675916,49800853:1179648,16384,0 +r1,2108:37855564,49800853:1179648,16384,0 ) -] ) -[2990,358:6630773,47279633:25952256,43253760,0 -[2990,358:6630773,4812305:25952256,786432,0 -(2990,358:6630773,4812305:25952256,513147,134348 -(2990,358:6630773,4812305:25952256,513147,134348 -g2990,358:3078558,4812305 -[2990,358:3078558,4812305:0,0,0 -(2990,358:3078558,2439708:0,1703936,0 -k2990,358:1358238,2439708:-1720320 -(2990,1:1358238,2439708:1720320,1703936,0 -(2990,1:1358238,2439708:1179648,16384,0 -r2990,358:2537886,2439708:1179648,16384,0 -) -g2990,1:3062174,2439708 -(2990,1:3062174,2439708:16384,1703936,0 -[2990,1:3062174,2439708:25952256,1703936,0 -(2990,1:3062174,1915420:25952256,1179648,0 -(2990,1:3062174,1915420:16384,1179648,0 -r2990,358:3078558,1915420:16384,1179648,0 -) -k2990,1:29014430,1915420:25935872 -g2990,1:29014430,1915420 +k1,2108:3078556,49800853:-34777008 ) ] -) +g1,2108:6630773,4812305 ) ) ] -[2990,358:3078558,4812305:0,0,0 -(2990,358:3078558,2439708:0,1703936,0 -g2990,358:29030814,2439708 -g2990,358:36135244,2439708 -(2990,1:36135244,2439708:1720320,1703936,0 -(2990,1:36135244,2439708:16384,1703936,0 -[2990,1:36135244,2439708:25952256,1703936,0 -(2990,1:36135244,1915420:25952256,1179648,0 -(2990,1:36135244,1915420:16384,1179648,0 -r2990,358:36151628,1915420:16384,1179648,0 -) -k2990,1:62087500,1915420:25935872 -g2990,1:62087500,1915420 +[1,2108:6630773,45706769:0,40108032,0 +(1,2108:6630773,45706769:0,40108032,0 +(1,2108:6630773,45706769:0,0,0 +g1,2108:6630773,45706769 ) +[1,2108:6630773,45706769:0,40108032,0 +h1,2108:6630773,6254097:0,0,0 ] +(1,2108:6630773,45706769:0,0,0 +g1,2108:6630773,45706769 ) -g2990,1:36675916,2439708 -(2990,1:36675916,2439708:1179648,16384,0 -r2990,358:37855564,2439708:1179648,16384,0 -) -) -k2990,358:3078556,2439708:-34777008 ) ] -[2990,358:3078558,4812305:0,0,0 -(2990,358:3078558,49800853:0,16384,2228224 -k2990,358:1358238,49800853:-1720320 -(2990,1:1358238,49800853:1720320,16384,2228224 -(2990,1:1358238,49800853:1179648,16384,0 -r2990,358:2537886,49800853:1179648,16384,0 -) -g2990,1:3062174,49800853 -(2990,1:3062174,52029077:16384,1703936,0 -[2990,1:3062174,52029077:25952256,1703936,0 -(2990,1:3062174,51504789:25952256,1179648,0 -(2990,1:3062174,51504789:16384,1179648,0 -r2990,358:3078558,51504789:16384,1179648,0 -) -k2990,1:29014430,51504789:25935872 -g2990,1:29014430,51504789 +(1,2108:6630773,47279633:25952256,0,0 +h1,2108:6630773,47279633:25952256,0,0 ) ] +(1,2108:4262630,4025873:0,0,0 +[1,2108:-473656,4025873:0,0,0 +(1,2108:-473656,-710413:0,0,0 +(1,2108:-473656,-710413:0,0,0 +g1,2108:-473656,-710413 ) -) +g1,2108:-473656,-710413 ) ] -[2990,358:3078558,4812305:0,0,0 -(2990,358:3078558,49800853:0,16384,2228224 -g2990,358:29030814,49800853 -g2990,358:36135244,49800853 -(2990,1:36135244,49800853:1720320,16384,2228224 -(2990,1:36135244,52029077:16384,1703936,0 -[2990,1:36135244,52029077:25952256,1703936,0 -(2990,1:36135244,51504789:25952256,1179648,0 -(2990,1:36135244,51504789:16384,1179648,0 -r2990,358:36151628,51504789:16384,1179648,0 -) -k2990,1:62087500,51504789:25935872 -g2990,1:62087500,51504789 ) ] +!3307 +}43 +!10 +{44 +[1,2113:4262630,47279633:28320399,43253760,11795 +(1,2113:4262630,4025873:0,0,0 +[1,2113:-473656,4025873:0,0,0 +(1,2113:-473656,-710413:0,0,0 +(1,2113:-473656,-644877:0,0,0 +k1,2113:-473656,-644877:-65536 ) -g2990,1:36675916,49800853 -(2990,1:36675916,49800853:1179648,16384,0 -r2990,358:37855564,49800853:1179648,16384,0 -) +(1,2113:-473656,4736287:0,0,0 +k1,2113:-473656,4736287:5209943 ) -k2990,358:3078556,49800853:-34777008 +g1,2113:-473656,-710413 ) ] -g2990,358:6630773,4812305 -k2990,358:23318207,4812305:15492057 -g2990,358:25216129,4812305 -g2990,358:26031396,4812305 -g2990,358:26644813,4812305 -g2990,358:28902528,4812305 -g2990,358:29858042,4812305 ) +[1,2113:6630773,47279633:25952256,43253760,11795 +[1,2113:6630773,4812305:25952256,786432,0 +(1,2113:6630773,4812305:25952256,0,0 +(1,2113:6630773,4812305:25952256,0,0 +g1,2113:3078558,4812305 +[1,2113:3078558,4812305:0,0,0 +(1,2113:3078558,2439708:0,1703936,0 +k1,2113:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,2113:2537886,2439708:1179648,16384,0 ) -] -[2990,358:6630773,45706769:25952256,40108032,0 -(2990,358:6630773,45706769:25952256,40108032,0 -(2990,358:6630773,45706769:0,0,0 -g2990,358:6630773,45706769 -) -[2990,358:6630773,45706769:25952256,40108032,0 -(2990,358:6630773,45706769:25952256,40108032,126483 -[2990,358:6630773,45706769:11829248,40108032,126483 -(2990,264:6630773,6254097:11829248,505283,102891 -h2990,263:6630773,6254097:0,0,0 -r2990,358:6630773,6254097:0,608174,102891 -g2990,263:7941493,6254097 -g2990,263:7941493,6254097 -g2990,263:12661395,6254097 -k2990,264:16158397,6254097:2301625 -k2990,264:18460021,6254097:2301624 -) -(2990,265:6630773,7112123:11829248,513147,102891 -h2990,264:6630773,7112123:0,0,0 -r2990,358:6630773,7112123:0,616038,102891 -g2990,264:7941493,7112123 -g2990,264:7941493,7112123 -g2990,264:13056577,7112123 -k2990,265:16355988,7112123:2104034 -k2990,265:18460021,7112123:2104033 -) -(2990,266:6630773,7970150:11829248,505283,102891 -h2990,265:6630773,7970150:0,0,0 -r2990,358:6630773,7970150:0,608174,102891 -g2990,265:7941493,7970150 -g2990,265:7941493,7970150 -g2990,265:9895120,7970150 -g2990,265:11064937,7970150 -g2990,265:12633213,7970150 -g2990,265:14201489,7970150 -g2990,265:15769765,7970150 -k2990,265:18460021,7970150:1321209 -) -(2990,266:9252213,8811638:9207808,485622,102891 -g2990,265:10820489,8811638 -k2990,266:15237944,8811638:3222078 -k2990,266:18460021,8811638:3222077 -) -(2990,267:6630773,9669664:11829248,505283,102891 -h2990,266:6630773,9669664:0,0,0 -r2990,358:6630773,9669664:0,608174,102891 -g2990,266:7941493,9669664 -g2990,266:7941493,9669664 -g2990,266:10685485,9669664 -k2990,267:14971212,9669664:3488809 -k2990,267:18460021,9669664:3488809 -) -(2990,268:6630773,10527690:11829248,505283,134348 -h2990,267:6630773,10527690:0,0,0 -r2990,358:6630773,10527690:0,639631,134348 -g2990,267:7941493,10527690 -g2990,267:7941493,10527690 -g2990,267:10290302,10527690 -k2990,268:14972850,10527690:3487171 -k2990,268:18460021,10527690:3487171 -) -(2990,269:6630773,11385717:11829248,505283,134348 -h2990,268:6630773,11385717:0,0,0 -r2990,358:6630773,11385717:0,639631,134348 -g2990,268:7941493,11385717 -g2990,268:7941493,11385717 -g2990,268:10707768,11385717 -g2990,268:14264407,11385717 -g2990,268:17008399,11385717 -k2990,269:18132669,11385717:327352 -k2990,269:18460021,11385717:327352 -) -(2990,270:6630773,12243743:11829248,505283,102891 -h2990,269:6630773,12243743:0,0,0 -r2990,358:6630773,12243743:0,608174,102891 -g2990,269:7941493,12243743 -g2990,269:7941493,12243743 -g2990,269:9895120,12243743 -g2990,269:11064937,12243743 -g2990,269:12234754,12243743 -k2990,270:15745847,12243743:2714175 -k2990,270:18460021,12243743:2714174 -) -(2990,271:6630773,13101769:11829248,505283,102891 -h2990,270:6630773,13101769:0,0,0 -r2990,358:6630773,13101769:0,608174,102891 -g2990,270:7941493,13101769 -g2990,270:7941493,13101769 -g2990,270:10290302,13101769 -k2990,271:14972850,13101769:3487171 -k2990,271:18460021,13101769:3487171 -) -(2990,272:6630773,13959796:11829248,505283,102891 -h2990,271:6630773,13959796:0,0,0 -r2990,358:6630773,13959796:0,608174,102891 -g2990,271:7941493,13959796 -g2990,271:7941493,13959796 -g2990,271:11475849,13959796 -k2990,272:15565624,13959796:2894398 -k2990,272:18460021,13959796:2894397 -) -(2990,273:6630773,14817822:11829248,505283,102891 -h2990,272:6630773,14817822:0,0,0 -r2990,358:6630773,14817822:0,608174,102891 -g2990,272:7941493,14817822 -g2990,272:7941493,14817822 -g2990,272:11871031,14817822 -k2990,273:15763215,14817822:2696807 -k2990,273:18460021,14817822:2696806 -) -(2990,274:6630773,15675848:11829248,505283,102891 -h2990,273:6630773,15675848:0,0,0 -r2990,358:6630773,15675848:0,608174,102891 -g2990,273:7941493,15675848 -g2990,273:7941493,15675848 -g2990,273:11475849,15675848 -g2990,273:12645666,15675848 -g2990,273:13815483,15675848 -k2990,274:16735441,15675848:1724581 -k2990,274:18460021,15675848:1724580 -) -(2990,275:6630773,16533874:11829248,505283,102891 -h2990,274:6630773,16533874:0,0,0 -r2990,358:6630773,16533874:0,608174,102891 -g2990,274:7941493,16533874 -g2990,274:7941493,16533874 -g2990,274:10290302,16533874 -g2990,274:11858578,16533874 -k2990,275:15756988,16533874:2703033 -k2990,275:18460021,16533874:2703033 -) -(2990,276:6630773,17391901:11829248,505283,102891 -h2990,275:6630773,17391901:0,0,0 -r2990,358:6630773,17391901:0,608174,102891 -g2990,275:7941493,17391901 -g2990,275:7941493,17391901 -g2990,275:10685485,17391901 -g2990,275:12253761,17391901 -k2990,276:15954580,17391901:2505442 -k2990,276:18460021,17391901:2505441 -) -(2990,277:6630773,18249927:11829248,505283,102891 -h2990,276:6630773,18249927:0,0,0 -r2990,358:6630773,18249927:0,608174,102891 -g2990,276:7941493,18249927 -g2990,276:7941493,18249927 -g2990,276:11475849,18249927 -k2990,277:15565624,18249927:2894398 -k2990,277:18460021,18249927:2894397 -) -(2990,278:6630773,19107953:11829248,505283,102891 -h2990,277:6630773,19107953:0,0,0 -r2990,358:6630773,19107953:0,608174,102891 -g2990,277:7941493,19107953 -g2990,277:7941493,19107953 -g2990,277:11871031,19107953 -k2990,278:15763215,19107953:2696807 -k2990,278:18460021,19107953:2696806 -) -(2990,279:6630773,19965980:11829248,505283,134348 -h2990,278:6630773,19965980:0,0,0 -r2990,358:6630773,19965980:0,639631,134348 -g2990,278:7941493,19965980 -g2990,278:7941493,19965980 -g2990,278:10685485,19965980 -k2990,279:15170442,19965980:3289580 -k2990,279:18460021,19965980:3289579 -) -(2990,280:6630773,20824006:11829248,505283,102891 -h2990,279:6630773,20824006:0,0,0 -r2990,358:6630773,20824006:0,608174,102891 -g2990,279:7941493,20824006 -g2990,279:7941493,20824006 -g2990,279:10290302,20824006 -g2990,279:11858578,20824006 -k2990,280:15756988,20824006:2703033 -k2990,280:18460021,20824006:2703033 -) -(2990,281:6630773,21682032:11829248,505283,102891 -h2990,280:6630773,21682032:0,0,0 -r2990,358:6630773,21682032:0,608174,102891 -g2990,280:7941493,21682032 -g2990,280:7941493,21682032 -g2990,280:10685485,21682032 -g2990,280:11855302,21682032 -g2990,280:13423578,21682032 -k2990,281:16539488,21682032:1920533 -k2990,281:18460021,21682032:1920533 -) -(2990,282:6630773,22540059:11829248,513147,102891 -h2990,281:6630773,22540059:0,0,0 -r2990,358:6630773,22540059:0,616038,102891 -g2990,281:7941493,22540059 -g2990,281:7941493,22540059 -g2990,281:13451759,22540059 -k2990,282:16553579,22540059:1906443 -k2990,282:18460021,22540059:1906442 -) -(2990,283:6630773,23398085:11829248,505283,102891 -h2990,282:6630773,23398085:0,0,0 -r2990,358:6630773,23398085:0,608174,102891 -g2990,282:7941493,23398085 -g2990,282:7941493,23398085 -g2990,282:13846941,23398085 -k2990,283:16751170,23398085:1708852 -k2990,283:18460021,23398085:1708851 -) -(2990,284:6630773,24256111:11829248,505283,102891 -h2990,283:6630773,24256111:0,0,0 -r2990,358:6630773,24256111:0,608174,102891 -g2990,283:7941493,24256111 -g2990,283:7941493,24256111 -g2990,283:11475849,24256111 -k2990,284:15565624,24256111:2894398 -k2990,284:18460021,24256111:2894397 -) -(2990,285:6630773,25114138:11829248,505283,126483 -h2990,284:6630773,25114138:0,0,0 -r2990,358:6630773,25114138:0,631766,126483 -g2990,284:7941493,25114138 -g2990,284:7941493,25114138 -g2990,284:12266213,25114138 -k2990,285:15960806,25114138:2499216 -k2990,285:18460021,25114138:2499215 -) -(2990,286:6630773,25972164:11829248,505283,102891 -h2990,285:6630773,25972164:0,0,0 -r2990,358:6630773,25972164:0,608174,102891 -g2990,285:7941493,25972164 -g2990,285:7941493,25972164 -g2990,285:11080667,25972164 -g2990,285:12250484,25972164 -g2990,285:13420301,25972164 -g2990,285:14988577,25972164 -k2990,286:17321988,25972164:1138034 -k2990,286:18460021,25972164:1138033 -) -(2990,287:6630773,26830190:11829248,505283,102891 -h2990,286:6630773,26830190:0,0,0 -r2990,358:6630773,26830190:0,608174,102891 -g2990,286:7941493,26830190 -g2990,286:7941493,26830190 -g2990,286:11871031,26830190 -k2990,287:15563985,26830190:2896036 -k2990,287:18460021,26830190:2896036 -) -(2990,288:6630773,27688216:11829248,505283,102891 -h2990,287:6630773,27688216:0,0,0 -r2990,358:6630773,27688216:0,608174,102891 -g2990,287:7941493,27688216 -g2990,287:7941493,27688216 -g2990,287:11871031,27688216 -k2990,288:15763215,27688216:2696807 -k2990,288:18460021,27688216:2696806 -) -(2990,289:6630773,28546243:11829248,505283,126483 -h2990,288:6630773,28546243:0,0,0 -r2990,358:6630773,28546243:0,631766,126483 -g2990,288:7941493,28546243 -g2990,288:7941493,28546243 -g2990,288:11871031,28546243 -k2990,289:15763215,28546243:2696807 -k2990,289:18460021,28546243:2696806 -) -(2990,290:6630773,29404269:11829248,505283,102891 -h2990,289:6630773,29404269:0,0,0 -r2990,358:6630773,29404269:0,608174,102891 -g2990,289:7941493,29404269 -g2990,289:7941493,29404269 -g2990,289:10685485,29404269 -g2990,289:11855302,29404269 -g2990,289:13025119,29404269 -k2990,290:16340259,29404269:2119763 -k2990,290:18460021,29404269:2119762 -) -(2990,291:6630773,30262295:11829248,505283,134348 -h2990,290:6630773,30262295:0,0,0 -r2990,358:6630773,30262295:0,639631,134348 -g2990,290:7941493,30262295 -g2990,290:7941493,30262295 -g2990,290:12661395,30262295 -k2990,291:16158397,30262295:2301625 -k2990,291:18460021,30262295:2301624 -) -(2990,292:6630773,31120322:11829248,505283,102891 -h2990,291:6630773,31120322:0,0,0 -r2990,358:6630773,31120322:0,608174,102891 -g2990,291:7941493,31120322 -g2990,291:7941493,31120322 -g2990,291:9895120,31120322 -k2990,292:14775259,31120322:3684762 -k2990,292:18460021,31120322:3684762 -) -(2990,293:6630773,31978348:11829248,505283,102891 -h2990,292:6630773,31978348:0,0,0 -r2990,358:6630773,31978348:0,608174,102891 -g2990,292:7941493,31978348 -g2990,292:7941493,31978348 -g2990,292:9499938,31978348 -k2990,293:14577668,31978348:3882353 -k2990,293:18460021,31978348:3882353 -) -(2990,294:6630773,32836374:11829248,505283,102891 -h2990,293:6630773,32836374:0,0,0 -r2990,358:6630773,32836374:0,608174,102891 -g2990,293:7941493,32836374 -g2990,293:7941493,32836374 -g2990,293:10290302,32836374 -g2990,293:11858578,32836374 -k2990,294:15756988,32836374:2703033 -k2990,294:18460021,32836374:2703033 -) -(2990,295:6630773,33694401:11829248,505283,102891 -h2990,294:6630773,33694401:0,0,0 -r2990,358:6630773,33694401:0,608174,102891 -g2990,294:7941493,33694401 -g2990,294:7941493,33694401 -g2990,294:10685485,33694401 -g2990,294:11855302,33694401 -g2990,294:13025119,33694401 -k2990,295:16340259,33694401:2119763 -k2990,295:18460021,33694401:2119762 -) -(2990,296:6630773,34552427:11829248,505283,102891 -h2990,295:6630773,34552427:0,0,0 -r2990,358:6630773,34552427:0,608174,102891 -g2990,295:7941493,34552427 -g2990,295:7941493,34552427 -g2990,295:11871031,34552427 -g2990,295:13040848,34552427 -k2990,296:16148894,34552427:2311128 -k2990,296:18460021,34552427:2311127 -) -(2990,297:6630773,35410453:11829248,505283,102891 -h2990,296:6630773,35410453:0,0,0 -r2990,358:6630773,35410453:0,608174,102891 -g2990,296:7941493,35410453 -g2990,296:7941493,35410453 -g2990,296:11871031,35410453 -k2990,297:15763215,35410453:2696807 -k2990,297:18460021,35410453:2696806 -) -(2990,298:6630773,36268480:11829248,505283,126483 -h2990,297:6630773,36268480:0,0,0 -r2990,358:6630773,36268480:0,631766,126483 -g2990,297:7941493,36268480 -g2990,297:7941493,36268480 -g2990,297:11871031,36268480 -k2990,298:15763215,36268480:2696807 -k2990,298:18460021,36268480:2696806 -) -(2990,299:6630773,37126506:11829248,505283,102891 -h2990,298:6630773,37126506:0,0,0 -r2990,358:6630773,37126506:0,608174,102891 -g2990,298:7941493,37126506 -g2990,298:7941493,37126506 -g2990,298:11080667,37126506 -g2990,298:12250484,37126506 -g2990,298:13420301,37126506 -g2990,298:14590118,37126506 -k2990,299:17122758,37126506:1337263 -k2990,299:18460021,37126506:1337263 -) -(2990,300:6630773,37984532:11829248,505283,102891 -h2990,299:6630773,37984532:0,0,0 -r2990,358:6630773,37984532:0,608174,102891 -g2990,299:7941493,37984532 -g2990,299:7941493,37984532 -g2990,299:11871031,37984532 -k2990,300:15563985,37984532:2896036 -k2990,300:18460021,37984532:2896036 -) -(2990,301:6630773,38842559:11829248,505283,126483 -h2990,300:6630773,38842559:0,0,0 -r2990,358:6630773,38842559:0,631766,126483 -g2990,300:7941493,38842559 -g2990,300:7941493,38842559 -g2990,300:11080667,38842559 -g2990,300:12648943,38842559 -k2990,301:16152171,38842559:2307851 -k2990,301:18460021,38842559:2307850 -) -(2990,302:6630773,39700585:11829248,505283,126483 -h2990,301:6630773,39700585:0,0,0 -r2990,358:6630773,39700585:0,631766,126483 -g2990,301:7941493,39700585 -g2990,301:7941493,39700585 -g2990,301:11080667,39700585 -g2990,301:12648943,39700585 -g2990,301:14217219,39700585 -k2990,302:16936309,39700585:1523713 -k2990,302:18460021,39700585:1523712 -) -(2990,303:6630773,40558611:11829248,505283,134348 -h2990,302:6630773,40558611:0,0,0 -r2990,358:6630773,40558611:0,639631,134348 -g2990,302:7941493,40558611 -g2990,302:7941493,40558611 -g2990,302:13846941,40558611 -g2990,302:15415217,40558611 -k2990,303:17535308,40558611:924714 -k2990,303:18460021,40558611:924713 -) -(2990,304:6630773,41416637:11829248,505283,126483 -h2990,303:6630773,41416637:0,0,0 -r2990,358:6630773,41416637:0,631766,126483 -g2990,303:7941493,41416637 -g2990,303:7941493,41416637 -g2990,303:13451759,41416637 -k2990,304:16553579,41416637:1906443 -k2990,304:18460021,41416637:1906442 -) -(2990,305:6630773,42274664:11829248,505283,126483 -h2990,304:6630773,42274664:0,0,0 -r2990,358:6630773,42274664:0,631766,126483 -g2990,304:7941493,42274664 -g2990,304:7941493,42274664 -g2990,304:11080667,42274664 -k2990,305:15368033,42274664:3091989 -k2990,305:18460021,42274664:3091988 -) -(2990,306:6630773,43132690:11829248,505283,126483 -h2990,305:6630773,43132690:0,0,0 -r2990,358:6630773,43132690:0,631766,126483 -g2990,305:7941493,43132690 -g2990,305:7941493,43132690 -g2990,305:10685485,43132690 -g2990,305:12979900,43132690 -g2990,305:14548176,43132690 -g2990,305:16116452,43132690 -k2990,306:17885925,43132690:574096 -k2990,306:18460021,43132690:574096 -) -(2990,307:6630773,43990716:11829248,505283,126483 -h2990,306:6630773,43990716:0,0,0 -r2990,358:6630773,43990716:0,631766,126483 -g2990,306:7941493,43990716 -g2990,306:7941493,43990716 -g2990,306:11080667,43990716 -g2990,306:12648943,43990716 -k2990,307:16152171,43990716:2307851 -k2990,307:18460021,43990716:2307850 -) -(2990,308:6630773,44848743:11829248,505283,126483 -h2990,307:6630773,44848743:0,0,0 -r2990,358:6630773,44848743:0,631766,126483 -g2990,307:7941493,44848743 -g2990,307:7941493,44848743 -g2990,307:10685485,44848743 -k2990,308:15170442,44848743:3289580 -k2990,308:18460021,44848743:3289579 -) -(2990,309:6630773,45706769:11829248,505283,126483 -h2990,308:6630773,45706769:0,0,0 -r2990,358:6630773,45706769:0,631766,126483 -g2990,308:7941493,45706769 -g2990,308:7941493,45706769 -g2990,308:11475849,45706769 -g2990,308:13044125,45706769 -k2990,309:16349762,45706769:2110260 -k2990,309:18460021,45706769:2110259 +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,2113:3078558,1915420:16384,1179648,0 ) -] -k2990,358:19606901,45706769:1146880 -r2990,358:19606901,45706769:0,40234515,126483 -k2990,358:20753781,45706769:1146880 -[2990,358:20753781,45706769:11829248,40108032,102891 -(2990,310:20753781,6254097:11829248,505283,126483 -h2990,309:20753781,6254097:0,0,0 -r2990,358:20753781,6254097:0,631766,126483 -g2990,309:22064501,6254097 -g2990,309:22064501,6254097 -g2990,309:25994039,6254097 -g2990,309:27562315,6254097 -k2990,310:30670361,6254097:1912669 -k2990,310:32583029,6254097:1912668 -) -(2990,311:20753781,7112893:11829248,505283,126483 -h2990,310:20753781,7112893:0,0,0 -r2990,358:20753781,7112893:0,631766,126483 -g2990,310:22064501,7112893 -g2990,310:22064501,7112893 -g2990,310:28365131,7112893 -k2990,311:31071769,7112893:1511261 -k2990,311:32583029,7112893:1511260 -) -(2990,313:20753781,7971688:11829248,505283,126483 -h2990,311:20753781,7971688:0,0,0 -r2990,358:20753781,7971688:0,631766,126483 -g2990,311:22064501,7971688 -g2990,311:22064501,7971688 -g2990,311:25203675,7971688 -g2990,311:25975033,7971688 -g2990,311:27144850,7971688 -g2990,311:28314667,7971688 -g2990,311:29484484,7971688 -g2990,311:30654301,7971688 -k2990,311:32583029,7971688:958140 -) -(2990,313:23375221,8813176:9207808,485622,102891 -k2990,311:24942973,8813176:198705 -k2990,311:26510725,8813176:198705 -k2990,311:28078478,8813176:198706 -k2990,312:29646230,8813176:198705 -k2990,312:31213982,8813176:198705 -k2990,312:32583029,8813176:0 -) -(2990,313:23375221,9654664:9207808,485622,11795 -k2990,313:28576814,9654664:4006216 -k2990,313:32583029,9654664:4006215 -) -(2990,314:20753781,10513460:11829248,505283,126483 -h2990,313:20753781,10513460:0,0,0 -r2990,358:20753781,10513460:0,631766,126483 -g2990,313:22064501,10513460 -g2990,313:22064501,10513460 -g2990,313:24808493,10513460 -k2990,314:29293450,10513460:3289580 -k2990,314:32583029,10513460:3289579 -) -(2990,315:20753781,11372255:11829248,505283,126483 -h2990,314:20753781,11372255:0,0,0 -r2990,358:20753781,11372255:0,631766,126483 -g2990,314:22064501,11372255 -g2990,314:22064501,11372255 -g2990,314:24018128,11372255 -k2990,315:28898267,11372255:3684762 -k2990,315:32583029,11372255:3684762 -) -(2990,316:20753781,12231051:11829248,505283,126483 -h2990,315:20753781,12231051:0,0,0 -r2990,358:20753781,12231051:0,631766,126483 -g2990,315:22064501,12231051 -g2990,315:22064501,12231051 -g2990,315:25203675,12231051 -k2990,316:29491041,12231051:3091989 -k2990,316:32583029,12231051:3091988 -) -(2990,317:20753781,13089846:11829248,505283,126483 -h2990,316:20753781,13089846:0,0,0 -r2990,358:20753781,13089846:0,631766,126483 -g2990,316:22064501,13089846 -g2990,316:22064501,13089846 -g2990,316:26389221,13089846 -k2990,317:30083814,13089846:2499216 -k2990,317:32583029,13089846:2499215 -) -(2990,318:20753781,13948642:11829248,505283,134348 -h2990,317:20753781,13948642:0,0,0 -r2990,358:20753781,13948642:0,639631,134348 -g2990,317:22064501,13948642 -g2990,317:22064501,13948642 -g2990,317:25203675,13948642 -k2990,318:29491041,13948642:3091989 -k2990,318:32583029,13948642:3091988 -) -(2990,319:20753781,14807437:11829248,505283,102891 -h2990,318:20753781,14807437:0,0,0 -r2990,358:20753781,14807437:0,608174,102891 -g2990,318:22064501,14807437 -g2990,318:22064501,14807437 -g2990,318:26389221,14807437 -g2990,318:27957497,14807437 -g2990,318:29525773,14807437 -k2990,319:32413618,14807437:169412 -k2990,319:32583029,14807437:169411 -) -(2990,320:20753781,15666233:11829248,505283,102891 -h2990,319:20753781,15666233:0,0,0 -r2990,358:20753781,15666233:0,608174,102891 -g2990,319:22064501,15666233 -g2990,319:22064501,15666233 -g2990,319:26784403,15666233 -g2990,319:28352679,15666233 -g2990,319:29920955,15666233 -k2990,320:31849681,15666233:733349 -k2990,320:32583029,15666233:733348 -) -(2990,321:20753781,16525028:11829248,513147,102891 -h2990,320:20753781,16525028:0,0,0 -r2990,358:20753781,16525028:0,616038,102891 -g2990,320:22064501,16525028 -g2990,320:22064501,16525028 -g2990,320:27969949,16525028 -g2990,320:29538225,16525028 -k2990,321:31658316,16525028:924714 -k2990,321:32583029,16525028:924713 -) -(2990,322:20753781,17383824:11829248,513147,102891 -h2990,321:20753781,17383824:0,0,0 -r2990,358:20753781,17383824:0,616038,102891 -g2990,321:22064501,17383824 -g2990,321:22064501,17383824 -g2990,321:26389221,17383824 -k2990,322:30083814,17383824:2499216 -k2990,322:32583029,17383824:2499215 -) -(2990,323:20753781,18242619:11829248,505283,126483 -h2990,322:20753781,18242619:0,0,0 -r2990,358:20753781,18242619:0,631766,126483 -g2990,322:22064501,18242619 -g2990,322:22064501,18242619 -g2990,322:26784403,18242619 -k2990,323:30281405,18242619:2301625 -k2990,323:32583029,18242619:2301624 -) -(2990,324:20753781,19101415:11829248,505283,126483 -h2990,323:20753781,19101415:0,0,0 -r2990,358:20753781,19101415:0,631766,126483 -g2990,323:22064501,19101415 -g2990,323:22064501,19101415 -g2990,323:27574767,19101415 -k2990,324:30676587,19101415:1906443 -k2990,324:32583029,19101415:1906442 -) -(2990,325:20753781,19960210:11829248,505283,102891 -h2990,324:20753781,19960210:0,0,0 -r2990,358:20753781,19960210:0,608174,102891 -g2990,324:22064501,19960210 -g2990,324:22064501,19960210 -g2990,324:27179585,19960210 -g2990,324:28747861,19960210 -g2990,324:30316137,19960210 -k2990,324:32583029,19960210:897845 -) -(2990,325:23375221,20801698:9207808,485622,11795 -k2990,325:28576814,20801698:4006216 -k2990,325:32583029,20801698:4006215 -) -(2990,326:20753781,21660494:11829248,505283,102891 -h2990,325:20753781,21660494:0,0,0 -r2990,358:20753781,21660494:0,608174,102891 -g2990,325:22064501,21660494 -g2990,325:22064501,21660494 -g2990,325:26784403,21660494 -k2990,326:30281405,21660494:2301625 -k2990,326:32583029,21660494:2301624 -) -(2990,327:20753781,22519290:11829248,505283,102891 -h2990,326:20753781,22519290:0,0,0 -r2990,358:20753781,22519290:0,608174,102891 -g2990,326:22064501,22519290 -g2990,326:22064501,22519290 -g2990,326:26389221,22519290 -g2990,326:27957497,22519290 -k2990,327:30867952,22519290:1715078 -k2990,327:32583029,22519290:1715077 -) -(2990,328:20753781,23378085:11829248,505283,102891 -h2990,327:20753781,23378085:0,0,0 -r2990,358:20753781,23378085:0,608174,102891 -g2990,327:22064501,23378085 -g2990,327:22064501,23378085 -g2990,327:27179585,23378085 -k2990,328:30478996,23378085:2104034 -k2990,328:32583029,23378085:2104033 -) -(2990,329:20753781,24236881:11829248,505283,102891 -h2990,328:20753781,24236881:0,0,0 -r2990,358:20753781,24236881:0,608174,102891 -g2990,328:22064501,24236881 -g2990,328:22064501,24236881 -g2990,328:27179585,24236881 -k2990,329:30478996,24236881:2104034 -k2990,329:32583029,24236881:2104033 -) -(2990,330:20753781,25095676:11829248,513147,102891 -h2990,329:20753781,25095676:0,0,0 -r2990,358:20753781,25095676:0,616038,102891 -g2990,329:22064501,25095676 -g2990,329:22064501,25095676 -g2990,329:26784403,25095676 -k2990,330:30281405,25095676:2301625 -k2990,330:32583029,25095676:2301624 -) -(2990,331:20753781,25954472:11829248,513147,102891 -h2990,330:20753781,25954472:0,0,0 -r2990,358:20753781,25954472:0,616038,102891 -g2990,330:22064501,25954472 -g2990,330:22064501,25954472 -g2990,330:26389221,25954472 -k2990,331:30083814,25954472:2499216 -k2990,331:32583029,25954472:2499215 -) -(2990,332:20753781,26813267:11829248,505283,102891 -h2990,331:20753781,26813267:0,0,0 -r2990,358:20753781,26813267:0,608174,102891 -g2990,331:22064501,26813267 -g2990,331:22064501,26813267 -g2990,331:26784403,26813267 -k2990,332:30281405,26813267:2301625 -k2990,332:32583029,26813267:2301624 -) -(2990,333:20753781,27672063:11829248,505283,102891 -h2990,332:20753781,27672063:0,0,0 -r2990,358:20753781,27672063:0,608174,102891 -g2990,332:22064501,27672063 -g2990,332:22064501,27672063 -g2990,332:27179585,27672063 -k2990,333:30478996,27672063:2104034 -k2990,333:32583029,27672063:2104033 -) -(2990,334:20753781,28530858:11829248,505283,102891 -h2990,333:20753781,28530858:0,0,0 -r2990,358:20753781,28530858:0,608174,102891 -g2990,333:22064501,28530858 -g2990,333:22064501,28530858 -g2990,333:26389221,28530858 -k2990,334:30083814,28530858:2499216 -k2990,334:32583029,28530858:2499215 -) -(2990,335:20753781,29389654:11829248,505283,102891 -h2990,334:20753781,29389654:0,0,0 -r2990,358:20753781,29389654:0,608174,102891 -g2990,334:22064501,29389654 -g2990,334:22064501,29389654 -g2990,334:26389221,29389654 -k2990,335:30083814,29389654:2499216 -k2990,335:32583029,29389654:2499215 -) -(2990,336:20753781,30248449:11829248,505283,102891 -h2990,335:20753781,30248449:0,0,0 -r2990,358:20753781,30248449:0,608174,102891 -g2990,335:22064501,30248449 -g2990,335:22064501,30248449 -g2990,335:27179585,30248449 -k2990,336:30478996,30248449:2104034 -k2990,336:32583029,30248449:2104033 -) -(2990,337:20753781,31107245:11829248,505283,102891 -h2990,336:20753781,31107245:0,0,0 -r2990,358:20753781,31107245:0,608174,102891 -g2990,336:22064501,31107245 -g2990,336:22064501,31107245 -g2990,336:27574767,31107245 -g2990,336:29143043,31107245 -k2990,337:31460725,31107245:1122305 -k2990,337:32583029,31107245:1122304 -) -(2990,338:20753781,31966040:11829248,505283,102891 -h2990,337:20753781,31966040:0,0,0 -r2990,358:20753781,31966040:0,608174,102891 -g2990,337:22064501,31966040 -g2990,337:22064501,31966040 -g2990,337:26389221,31966040 -k2990,338:30083814,31966040:2499216 -k2990,338:32583029,31966040:2499215 -) -(2990,339:20753781,32824836:11829248,505283,102891 -h2990,338:20753781,32824836:0,0,0 -r2990,358:20753781,32824836:0,608174,102891 -g2990,338:22064501,32824836 -g2990,338:22064501,32824836 -g2990,338:26784403,32824836 -k2990,339:30281405,32824836:2301625 -k2990,339:32583029,32824836:2301624 -) -(2990,340:20753781,33683632:11829248,505283,102891 -h2990,339:20753781,33683632:0,0,0 -r2990,358:20753781,33683632:0,608174,102891 -g2990,339:22064501,33683632 -g2990,339:22064501,33683632 -g2990,339:25994039,33683632 -k2990,340:29686993,33683632:2896036 -k2990,340:32583029,33683632:2896036 -) -(2990,341:20753781,34542427:11829248,505283,102891 -h2990,340:20753781,34542427:0,0,0 -r2990,358:20753781,34542427:0,608174,102891 -g2990,340:22064501,34542427 -g2990,340:22064501,34542427 -g2990,340:24413310,34542427 -k2990,341:29095858,34542427:3487171 -k2990,341:32583029,34542427:3487171 -) -(2990,342:20753781,35401223:11829248,505283,102891 -h2990,341:20753781,35401223:0,0,0 -r2990,358:20753781,35401223:0,608174,102891 -g2990,341:22064501,35401223 -g2990,341:22064501,35401223 -g2990,341:25598857,35401223 -k2990,342:29688632,35401223:2894398 -k2990,342:32583029,35401223:2894397 -) -(2990,343:20753781,36260018:11829248,505283,102891 -h2990,342:20753781,36260018:0,0,0 -r2990,358:20753781,36260018:0,608174,102891 -g2990,342:22064501,36260018 -g2990,342:22064501,36260018 -g2990,342:25994039,36260018 -k2990,343:29686993,36260018:2896036 -k2990,343:32583029,36260018:2896036 -) -(2990,344:20753781,37118814:11829248,505283,126483 -h2990,343:20753781,37118814:0,0,0 -r2990,358:20753781,37118814:0,631766,126483 -g2990,343:22064501,37118814 -g2990,343:22064501,37118814 -g2990,343:24413310,37118814 -k2990,344:28896629,37118814:3686401 -k2990,344:32583029,37118814:3686400 -) -(2990,345:20753781,37977609:11829248,505283,102891 -h2990,344:20753781,37977609:0,0,0 -r2990,358:20753781,37977609:0,608174,102891 -g2990,344:22064501,37977609 -g2990,344:22064501,37977609 -g2990,344:25203675,37977609 -k2990,345:29491041,37977609:3091989 -k2990,345:32583029,37977609:3091988 -) -(2990,346:20753781,38836405:11829248,505283,102891 -h2990,345:20753781,38836405:0,0,0 -r2990,358:20753781,38836405:0,608174,102891 -g2990,345:22064501,38836405 -g2990,345:22064501,38836405 -g2990,345:26784403,38836405 -g2990,345:28352679,38836405 -k2990,346:31065543,38836405:1517487 -k2990,346:32583029,38836405:1517486 -) -(2990,347:20753781,39695200:11829248,505283,134348 -h2990,346:20753781,39695200:0,0,0 -r2990,358:20753781,39695200:0,639631,134348 -g2990,346:22064501,39695200 -g2990,346:22064501,39695200 -g2990,346:24413310,39695200 -k2990,347:29095858,39695200:3487171 -k2990,347:32583029,39695200:3487171 -) -(2990,348:20753781,40553996:11829248,505283,134348 -h2990,347:20753781,40553996:0,0,0 -r2990,358:20753781,40553996:0,639631,134348 -g2990,347:22064501,40553996 -g2990,347:22064501,40553996 -g2990,347:27179585,40553996 -k2990,348:30478996,40553996:2104034 -k2990,348:32583029,40553996:2104033 -) -(2990,349:20753781,41412791:11829248,505283,102891 -h2990,348:20753781,41412791:0,0,0 -r2990,358:20753781,41412791:0,608174,102891 -g2990,348:22064501,41412791 -g2990,348:22064501,41412791 -g2990,348:24413310,41412791 -k2990,349:28896629,41412791:3686401 -k2990,349:32583029,41412791:3686400 -) -(2990,350:20753781,42271587:11829248,505283,102891 -h2990,349:20753781,42271587:0,0,0 -r2990,358:20753781,42271587:0,608174,102891 -g2990,349:22064501,42271587 -g2990,349:22064501,42271587 -g2990,349:24413310,42271587 -k2990,350:29095858,42271587:3487171 -k2990,350:32583029,42271587:3487171 -) -(2990,351:20753781,43130382:11829248,505283,102891 -h2990,350:20753781,43130382:0,0,0 -r2990,358:20753781,43130382:0,608174,102891 -g2990,350:22064501,43130382 -g2990,350:22064501,43130382 -g2990,350:24018128,43130382 -k2990,351:28699038,43130382:3883992 -k2990,351:32583029,43130382:3883991 -) -(2990,352:20753781,43989178:11829248,505283,102891 -h2990,351:20753781,43989178:0,0,0 -r2990,358:20753781,43989178:0,608174,102891 -g2990,351:22064501,43989178 -g2990,351:22064501,43989178 -g2990,351:25203675,43989178 -g2990,351:26771951,43989178 -g2990,351:28340227,43989178 -k2990,352:31059317,43989178:1523713 -k2990,352:32583029,43989178:1523712 -) -(2990,353:20753781,44847973:11829248,505283,102891 -h2990,352:20753781,44847973:0,0,0 -r2990,358:20753781,44847973:0,608174,102891 -g2990,352:22064501,44847973 -g2990,352:22064501,44847973 -g2990,352:25203675,44847973 -k2990,353:29291811,44847973:3291218 -k2990,353:32583029,44847973:3291218 -) -(2990,354:20753781,45706769:11829248,505283,102891 -h2990,353:20753781,45706769:0,0,0 -r2990,358:20753781,45706769:0,608174,102891 -g2990,353:22064501,45706769 -g2990,353:22064501,45706769 -g2990,353:26389221,45706769 -k2990,354:29884584,45706769:2698445 -k2990,354:32583029,45706769:2698445 +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) ] -(2990,358:32583029,45706769:0,355205,126483 -h2990,358:32583029,45706769:420741,355205,126483 -k2990,358:32583029,45706769:-420741 +) ) ) ] -(2990,358:32583029,45706769:0,0,0 -g2990,358:32583029,45706769 +[1,2113:3078558,4812305:0,0,0 +(1,2113:3078558,2439708:0,1703936,0 +g1,2113:29030814,2439708 +g1,2113:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,2113:36151628,1915420:16384,1179648,0 ) +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) ] -(2990,358:6630773,47279633:25952256,0,0 -h2990,358:6630773,47279633:25952256,0,0 ) -] -(2990,358:4262630,4025873:0,0,0 -[2990,358:-473656,4025873:0,0,0 -(2990,358:-473656,-710413:0,0,0 -(2990,358:-473656,-710413:0,0,0 -g2990,358:-473656,-710413 +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,2113:37855564,2439708:1179648,16384,0 ) -g2990,358:-473656,-710413 ) -] +k1,2113:3078556,2439708:-34777008 ) ] -!31574 -}391 -!12 -{392 -[2990,439:4262630,47279633:28320399,43253760,0 -(2990,439:4262630,4025873:0,0,0 -[2990,439:-473656,4025873:0,0,0 -(2990,439:-473656,-710413:0,0,0 -(2990,439:-473656,-644877:0,0,0 -k2990,439:-473656,-644877:-65536 -) -(2990,439:-473656,4736287:0,0,0 -k2990,439:-473656,4736287:5209943 -) -g2990,439:-473656,-710413 +[1,2113:3078558,4812305:0,0,0 +(1,2113:3078558,49800853:0,16384,2228224 +k1,2113:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,2113:2537886,49800853:1179648,16384,0 ) -] +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,2113:3078558,51504789:16384,1179648,0 ) -[2990,439:6630773,47279633:25952256,43253760,0 -[2990,439:6630773,4812305:25952256,786432,0 -(2990,439:6630773,4812305:25952256,513147,134348 -(2990,439:6630773,4812305:25952256,513147,134348 -g2990,439:3078558,4812305 -[2990,439:3078558,4812305:0,0,0 -(2990,439:3078558,2439708:0,1703936,0 -k2990,439:1358238,2439708:-1720320 -(2990,1:1358238,2439708:1720320,1703936,0 -(2990,1:1358238,2439708:1179648,16384,0 -r2990,439:2537886,2439708:1179648,16384,0 -) -g2990,1:3062174,2439708 -(2990,1:3062174,2439708:16384,1703936,0 -[2990,1:3062174,2439708:25952256,1703936,0 -(2990,1:3062174,1915420:25952256,1179648,0 -(2990,1:3062174,1915420:16384,1179648,0 -r2990,439:3078558,1915420:16384,1179648,0 -) -k2990,1:29014430,1915420:25935872 -g2990,1:29014430,1915420 +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) ] ) ) ) ] -[2990,439:3078558,4812305:0,0,0 -(2990,439:3078558,2439708:0,1703936,0 -g2990,439:29030814,2439708 -g2990,439:36135244,2439708 -(2990,1:36135244,2439708:1720320,1703936,0 -(2990,1:36135244,2439708:16384,1703936,0 -[2990,1:36135244,2439708:25952256,1703936,0 -(2990,1:36135244,1915420:25952256,1179648,0 -(2990,1:36135244,1915420:16384,1179648,0 -r2990,439:36151628,1915420:16384,1179648,0 -) -k2990,1:62087500,1915420:25935872 -g2990,1:62087500,1915420 +[1,2113:3078558,4812305:0,0,0 +(1,2113:3078558,49800853:0,16384,2228224 +g1,2113:29030814,49800853 +g1,2113:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,2113:36151628,51504789:16384,1179648,0 +) +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 ) ] ) -g2990,1:36675916,2439708 -(2990,1:36675916,2439708:1179648,16384,0 -r2990,439:37855564,2439708:1179648,16384,0 +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,2113:37855564,49800853:1179648,16384,0 ) ) -k2990,439:3078556,2439708:-34777008 +k1,2113:3078556,49800853:-34777008 ) ] -[2990,439:3078558,4812305:0,0,0 -(2990,439:3078558,49800853:0,16384,2228224 -k2990,439:1358238,49800853:-1720320 -(2990,1:1358238,49800853:1720320,16384,2228224 -(2990,1:1358238,49800853:1179648,16384,0 -r2990,439:2537886,49800853:1179648,16384,0 -) -g2990,1:3062174,49800853 -(2990,1:3062174,52029077:16384,1703936,0 -[2990,1:3062174,52029077:25952256,1703936,0 -(2990,1:3062174,51504789:25952256,1179648,0 -(2990,1:3062174,51504789:16384,1179648,0 -r2990,439:3078558,51504789:16384,1179648,0 -) -k2990,1:29014430,51504789:25935872 -g2990,1:29014430,51504789 +g1,2113:6630773,4812305 +) ) ] +[1,2113:6630773,45706769:25952256,40108032,0 +(1,2113:6630773,45706769:25952256,40108032,0 +(1,2113:6630773,45706769:0,0,0 +g1,2113:6630773,45706769 ) +[1,2113:6630773,45706769:25952256,40108032,0 +[1,2111:6630773,12106481:25952256,6507744,0 +(1,2111:6630773,7073297:25952256,32768,229376 +(1,2111:6630773,7073297:0,32768,229376 +(1,2111:6630773,7073297:5505024,32768,229376 +r1,2113:12135797,7073297:5505024,262144,229376 ) +k1,2111:6630773,7073297:-5505024 ) -] -[2990,439:3078558,4812305:0,0,0 -(2990,439:3078558,49800853:0,16384,2228224 -g2990,439:29030814,49800853 -g2990,439:36135244,49800853 -(2990,1:36135244,49800853:1720320,16384,2228224 -(2990,1:36135244,52029077:16384,1703936,0 -[2990,1:36135244,52029077:25952256,1703936,0 -(2990,1:36135244,51504789:25952256,1179648,0 -(2990,1:36135244,51504789:16384,1179648,0 -r2990,439:36151628,51504789:16384,1179648,0 -) -k2990,1:62087500,51504789:25935872 -g2990,1:62087500,51504789 ) -] +(1,2111:6630773,8803457:25952256,909509,241827 +h1,2111:6630773,8803457:0,0,0 +k1,2111:23428371,8803457:9154658 +k1,2111:32583029,8803457:9154658 ) -g2990,1:36675916,49800853 -(2990,1:36675916,49800853:1179648,16384,0 -r2990,439:37855564,49800853:1179648,16384,0 +(1,2111:6630773,9419505:25952256,32768,0 +(1,2111:6630773,9419505:5505024,32768,0 +r1,2113:12135797,9419505:5505024,32768,0 ) +k1,2111:22359413,9419505:10223616 +k1,2111:32583029,9419505:10223616 +) +] +(1,2111:7613813,12947969:24969216,513147,134348 +(1,2111:7613813,12947969:-983040,0,0 +g1,2111:6630773,12947969 +g1,2111:5320053,12947969 +g1,2111:4992373,12947969 +(1,2111:4992373,12947969:1310720,0,0 +k1,2111:6303093,12947969:1310720 ) -k2990,439:3078556,49800853:-34777008 +g1,2111:6630773,12947969 +) +k1,2111:9422745,12947969:231480 +k1,2111:10262368,12947969:231449 +k1,2111:11043008,12947969:231448 +k1,2111:13456279,12947969:231577 +k1,2111:16763924,12947969:231385 +k1,2111:19523224,12947969:231577 +k1,2111:20951295,12947969:231384 +k1,2111:24412293,12947969:231384 +k1,2111:25302970,12947969:231385 +k1,2111:28064044,12947969:231384 +k1,2111:30141115,12947969:231577 +k1,2111:31567876,12947969:231384 +k1,2111:32583029,12947969:0 +) +(1,2111:7613813,13789457:24969216,505283,126483 +g1,2111:9404911,13789457 +g1,2111:13588729,13789457 +g1,2111:14960397,13789457 +g1,2111:15968996,13789457 +g1,2111:16762637,13789457 +k1,2111:32583029,13789457:15041169 +g1,2111:32583029,13789457 +) +(1,2111:7613813,14630945:24969216,505283,134348 +(1,2111:7613813,14630945:-983040,0,0 +g1,2111:6630773,14630945 +g1,2111:5320053,14630945 +g1,2111:4992373,14630945 +(1,2111:4992373,14630945:1310720,0,0 +k1,2111:6303093,14630945:1310720 +) +g1,2111:6630773,14630945 +) +k1,2111:8907311,14630945:137443 +k1,2111:9721680,14630945:137382 +k1,2111:10403666,14630945:137382 +k1,2111:12722988,14630945:137628 +k1,2111:13023130,14630945:-13 +k1,2111:13023143,14630945:13 +k1,2111:15579334,14630945:137257 +k1,2111:20543033,14630945:137628 +k1,2111:21482104,14630945:137566 +k1,2111:22806874,14630945:137258 +k1,2111:26089205,14630945:137258 +k1,2111:28625735,14630945:137257 +k1,2111:30305896,14630945:137443 +k1,2111:31458431,14630945:137382 +k1,2111:32583029,14630945:0 +) +(1,2111:7613813,15472433:24969216,505283,126483 +g1,2111:9008419,15472433 +g1,2111:10380087,15472433 +g1,2111:11388686,15472433 +g1,2111:12182327,15472433 +k1,2111:32583030,15472433:19621480 +g1,2111:32583030,15472433 +) +(1,2111:7613813,16313921:24969216,505283,173670 +(1,2111:7613813,16313921:-983040,0,0 +g1,2111:6630773,16313921 +g1,2111:5320053,16313921 +g1,2111:4992373,16313921 +(1,2111:4992373,16313921:1310720,0,0 +k1,2111:6303093,16313921:1310720 +) +g1,2111:6630773,16313921 +) +k1,2111:9671449,16313921:165612 +k1,2111:10375734,16313921:165579 +k1,2111:12723141,16313921:165713 +[1,2111:12862077,16313921:342688,473825,0 +(1,2111:12862077,16177279:342688,337183,0 +) +] +(1,2111:13431719,16487591:372900,473825,0 +) +k1,2111:14470993,16313921:165679 +k1,2111:15034964,16313921:165512 +k1,2111:18302294,16313921:165511 +k1,2111:22219741,16313921:165511 +k1,2111:24692321,16313921:165713 +k1,2111:27343159,16313921:165713 +k1,2111:28742713,16313921:165511 +k1,2111:29850178,16313921:165713 +k1,2111:32583029,16313921:0 +) +(1,2111:7613813,17155409:24969216,505283,126483 +g1,2111:13067063,17155409 +g1,2111:13860704,17155409 +g1,2111:15428980,17155409 +g1,2111:17220078,17155409 +g1,2111:22042872,17155409 +g1,2111:23414540,17155409 +g1,2111:24423139,17155409 +g1,2111:25216780,17155409 +k1,2111:32583029,17155409:6587026 +g1,2111:32583029,17155409 +) +(1,2111:7613813,17996897:24969216,505283,134349 +(1,2111:7613813,17996897:-983040,0,0 +g1,2111:6630773,17996897 +g1,2111:5320053,17996897 +g1,2111:4992373,17996897 +(1,2111:4992373,17996897:1310720,0,0 +k1,2111:6303093,17996897:1310720 +) +g1,2111:6630773,17996897 +) +k1,2111:9231551,17996897:285391 +k1,2111:9967088,17996897:285305 +k1,2111:12434431,17996897:285649 +k1,2111:16510167,17996897:285134 +k1,2111:17419063,17996897:285649 +k1,2111:19074983,17996897:285563 +$1,2111:19074983,17996897 +k1,2111:21145096,17996897:94203 +k1,2111:21634481,17996897:94203 +k1,2111:22123866,17996897:94203 +k1,2111:22613250,17996897:94202 +k1,2111:24288181,17996897:94203 +k1,2111:24777566,17996897:94203 +k1,2111:25266951,17996897:94203 +(1,2111:25662133,18095211:32768,0,0 +) +k1,2111:25789103,17996897:94202 +k1,2111:28649580,17996897:94203 +k1,2111:29138965,17996897:94203 +k1,2111:30418714,17996897:94203 +k1,2111:30908098,17996897:94202 +k1,2111:32187847,17996897:94203 +k1,2111:32583029,17996897:0 +) +(1,2111:7613813,18838385:24969216,505283,98314 +g1,2111:10380087,18838385 +g1,2111:10775269,18838385 +g1,2111:12751179,18838385 +(1,2111:13146361,18936699:32768,0,0 +) +g1,2111:13179129,18838385 +g1,2111:16735767,18838385 +g1,2111:17130949,18838385 +g1,2111:17921313,18838385 +g1,2111:18316495,18838385 +g1,2111:20292405,18838385 +g1,2111:20687587,18838385 +$1,2111:22268315,18838385 +g1,2111:22467544,18838385 +g1,2111:24988714,18838385 +g1,2111:25997313,18838385 +k1,2111:32583029,18838385:2346192 +g1,2111:32583029,18838385 +) +(1,2111:7613813,19679873:24969216,513147,134348 +(1,2111:7613813,19679873:-983040,0,0 +g1,2111:6630773,19679873 +g1,2111:5320053,19679873 +g1,2111:4992373,19679873 +(1,2111:4992373,19679873:1310720,0,0 +k1,2111:6303093,19679873:1310720 +) +g1,2111:6630773,19679873 +) +k1,2111:9226018,19679873:159927 +k1,2111:10051752,19679873:159888 +k1,2111:12393491,19679873:160045 +k1,2111:13740812,19679873:159809 +k1,2111:14930847,19679873:159809 +k1,2111:15706694,19679873:159809 +k1,2111:16316080,19679873:159809 +k1,2111:21040013,19679873:160006 +k1,2111:21689376,19679873:159809 +k1,2111:23371586,19679873:159809 +k1,2111:24147433,19679873:159809 +k1,2111:27337627,19679873:159809 +k1,2111:30279439,19679873:159809 +k1,2111:32583029,19679873:0 +) +(1,2111:7613813,20521361:24969216,505283,126483 +g1,2111:8699744,20521361 +g1,2111:10903719,20521361 +g1,2111:12948442,20521361 +g1,2111:13742083,20521361 +g1,2111:15310359,20521361 +g1,2111:17101457,20521361 +g1,2111:21285275,20521361 +g1,2111:22656943,20521361 +g1,2111:23665542,20521361 +g1,2111:24459183,20521361 +k1,2111:32583029,20521361:6946164 +g1,2111:32583029,20521361 +) +(1,2111:7613813,21362849:24969216,505283,126483 +(1,2111:7613813,21362849:-983040,0,0 +g1,2111:6630773,21362849 +g1,2111:5320053,21362849 +g1,2111:4992373,21362849 +(1,2111:4992373,21362849:1310720,0,0 +k1,2111:6303093,21362849:1310720 +) +g1,2111:6630773,21362849 +) +k1,2111:10064044,21362849:335384 +k1,2111:11078246,21362849:335249 +k1,2111:13595731,21362849:335791 +k1,2111:17053499,21362849:334977 +k1,2111:18012537,21362849:335791 +k1,2111:19581558,21362849:334978 +k1,2111:20859101,21362849:335791 +k1,2111:23233559,21362849:334978 +k1,2111:24020734,21362849:334977 +k1,2111:26638986,21362849:334978 +k1,2111:28109861,21362849:335791 +k1,2111:29640216,21362849:334978 +k1,2111:30991160,21362849:335791 +k1,2111:32583029,21362849:0 +) +(1,2111:7613813,22204337:24969216,505283,126483 +g1,2111:11797631,22204337 +g1,2111:13169299,22204337 +g1,2111:14177898,22204337 +g1,2111:14971539,22204337 +k1,2111:32583029,22204337:16433808 +g1,2111:32583029,22204337 +) +(1,2111:7613813,23045825:24969216,505283,126483 +(1,2111:7613813,23045825:-983040,0,0 +g1,2111:6630773,23045825 +g1,2111:5320053,23045825 +g1,2111:4992373,23045825 +(1,2111:4992373,23045825:1310720,0,0 +k1,2111:6303093,23045825:1310720 +) +g1,2111:6630773,23045825 +) +k1,2111:8019929,23045825:236378 +k1,2111:8874275,23045825:236341 +k1,2111:11292459,23045825:236490 +k1,2111:14338254,23045825:236267 +k1,2111:18070867,23045825:236267 +k1,2111:19670284,23045825:236268 +k1,2111:20356128,23045825:236267 +k1,2111:21802845,23045825:236267 +k1,2111:23723610,23045825:236490 +k1,2111:25156564,23045825:236267 +k1,2111:25837820,23045825:236267 +k1,2111:28117723,23045825:236490 +k1,2111:31391584,23045825:236267 +k1,2111:32583029,23045825:0 +) +(1,2111:7613813,23887313:24969216,505283,126483 +g1,2111:10949595,23887313 +g1,2111:11743236,23887313 +g1,2111:13311512,23887313 +g1,2111:15102610,23887313 +g1,2111:19286428,23887313 +g1,2111:20658096,23887313 +g1,2111:21666695,23887313 +g1,2111:22460336,23887313 +k1,2111:32583029,23887313:9343470 +g1,2111:32583029,23887313 +) +(1,2111:7613813,24728801:24969216,505283,134348 +(1,2111:7613813,24728801:-983040,0,0 +g1,2111:6630773,24728801 +g1,2111:5320053,24728801 +g1,2111:4992373,24728801 +(1,2111:4992373,24728801:1310720,0,0 +k1,2111:6303093,24728801:1310720 +) +g1,2111:6630773,24728801 +) +(1,2111:6630773,24728801:983040,211026,0 +k1,2111:7613813,24728801:327680 +) +k1,2111:9945891,24728801:150384 +k1,2111:13468053,24728801:150335 +k1,2111:16839238,24728801:150090 +k1,2111:18775840,24728801:150091 +k1,2111:20136380,24728801:150090 +k1,2111:23303092,24728801:150090 +k1,2111:26949528,24728801:150090 +k1,2111:28462768,24728801:150091 +k1,2111:29062435,24728801:150090 +k1,2111:32583029,24728801:0 +) +(1,2111:7613813,25570289:24969216,505283,126483 +g1,2111:10850636,25570289 +g1,2111:12241310,25570289 +g1,2111:15577092,25570289 +g1,2111:17368190,25570289 +g1,2111:22747385,25570289 +g1,2111:24119053,25570289 +g1,2111:25127652,25570289 +g1,2111:25921293,25570289 +k1,2111:32583029,25570289:5882513 +g1,2111:32583029,25570289 +) +(1,2111:7613813,26411777:24969216,505283,126483 +(1,2111:7613813,26411777:-983040,0,0 +g1,2111:6630773,26411777 +g1,2111:5320053,26411777 +g1,2111:4992373,26411777 +(1,2111:4992373,26411777:1310720,0,0 +k1,2111:6303093,26411777:1310720 +) +g1,2111:6630773,26411777 +) +k1,2111:7929393,26411777:145842 +k1,2111:8866909,26411777:145841 +k1,2111:9462930,26411777:145789 +k1,2111:10058950,26411777:145788 +k1,2111:12469061,26411777:145842 +k1,2111:13806187,26411777:145681 +k1,2111:14605370,26411777:145789 +k1,2111:18336526,26411777:145681 +k1,2111:20664221,26411777:146001 +k1,2111:21259479,26411777:145681 +k1,2111:24926075,26411777:146002 +k1,2111:28109350,26411777:145681 +k1,2111:29446476,26411777:145681 +k1,2111:32583029,26411777:0 +) +(1,2111:7613813,27253265:24969216,505283,126483 +g1,2111:9008419,27253265 +g1,2111:10222801,27253265 +g1,2111:12013899,27253265 +g1,2111:16197717,27253265 +g1,2111:17569385,27253265 +g1,2111:18577984,27253265 +g1,2111:19371625,27253265 +k1,2111:32583029,27253265:12432181 +g1,2111:32583029,27253265 +) +] +(1,2113:32583029,45706769:0,0,0 +g1,2113:32583029,45706769 +) +) +] +(1,2113:6630773,47279633:25952256,485622,11795 +(1,2113:6630773,47279633:25952256,485622,11795 +(1,2113:6630773,47279633:0,0,0 +v1,2113:6630773,47279633:0,0,0 +) +g1,2113:6830002,47279633 +k1,2113:31786110,47279633:24956108 +) +) +] +(1,2113:4262630,4025873:0,0,0 +[1,2113:-473656,4025873:0,0,0 +(1,2113:-473656,-710413:0,0,0 +(1,2113:-473656,-710413:0,0,0 +g1,2113:-473656,-710413 +) +g1,2113:-473656,-710413 +) +] +) +] +!13512 +}44 +!11 +{45 +[1,2113:4262630,47279633:28320399,43253760,0 +(1,2113:4262630,4025873:0,0,0 +[1,2113:-473656,4025873:0,0,0 +(1,2113:-473656,-710413:0,0,0 +(1,2113:-473656,-644877:0,0,0 +k1,2113:-473656,-644877:-65536 ) -] -g2990,439:6630773,4812305 -g2990,439:6630773,4812305 -g2990,439:8528695,4812305 -g2990,439:9343962,4812305 -g2990,439:9957379,4812305 -g2990,439:12215094,4812305 -g2990,439:13170608,4812305 -g2990,439:16094824,4812305 -k2990,439:31387652,4812305:15292828 +(1,2113:-473656,4736287:0,0,0 +k1,2113:-473656,4736287:5209943 ) +g1,2113:-473656,-710413 ) ] -[2990,439:6630773,45706769:25952256,40108032,0 -(2990,439:6630773,45706769:25952256,40108032,0 -(2990,439:6630773,45706769:0,0,0 -g2990,439:6630773,45706769 -) -[2990,439:6630773,45706769:25952256,40108032,0 -(2990,439:6630773,45706769:25952256,40108032,126483 -[2990,439:6630773,45706769:11829248,40108032,102891 -(2990,355:6630773,6254097:11829248,513147,102891 -h2990,354:6630773,6254097:0,0,0 -r2990,439:6630773,6254097:0,616038,102891 -g2990,354:7941493,6254097 -g2990,354:7941493,6254097 -g2990,354:11080667,6254097 -k2990,355:15368033,6254097:3091989 -k2990,355:18460021,6254097:3091988 -) -(2990,356:6630773,7115699:11829248,505283,102891 -h2990,355:6630773,7115699:0,0,0 -r2990,439:6630773,7115699:0,608174,102891 -g2990,355:7941493,7115699 -g2990,355:7941493,7115699 -g2990,355:10685485,7115699 -g2990,355:11855302,7115699 -k2990,356:15556121,7115699:2903901 -k2990,356:18460021,7115699:2903900 -) -(2990,357:6630773,7977301:11829248,505283,102891 -h2990,356:6630773,7977301:0,0,0 -r2990,439:6630773,7977301:0,608174,102891 -g2990,356:7941493,7977301 -g2990,356:7941493,7977301 -g2990,356:11871031,7977301 -k2990,357:15563985,7977301:2896036 -k2990,357:18460021,7977301:2896036 -) -(2990,358:6630773,8838903:11829248,505283,102891 -h2990,357:6630773,8838903:0,0,0 -r2990,439:6630773,8838903:0,608174,102891 -g2990,357:7941493,8838903 -g2990,357:7941493,8838903 -g2990,357:16218034,8838903 -k2990,358:17936716,8838903:523305 -k2990,358:18460021,8838903:523305 -) -(2990,359:6630773,9700506:11829248,505283,102891 -h2990,358:6630773,9700506:0,0,0 -r2990,439:6630773,9700506:0,608174,102891 -g2990,358:7941493,9700506 -g2990,358:7941493,9700506 -g2990,358:16218034,9700506 -k2990,359:17936716,9700506:523305 -k2990,359:18460021,9700506:523305 -) -(2990,360:6630773,10562108:11829248,505283,102891 -h2990,359:6630773,10562108:0,0,0 -r2990,439:6630773,10562108:0,608174,102891 -g2990,359:7941493,10562108 -g2990,359:7941493,10562108 -k2990,359:18460021,10562108:860488 -) -(2990,360:9252213,11403596:9207808,485622,102891 -g2990,359:10820489,11403596 -k2990,360:15237944,11403596:3222078 -k2990,360:18460021,11403596:3222077 -) -(2990,361:6630773,12265198:11829248,505283,102891 -h2990,360:6630773,12265198:0,0,0 -r2990,439:6630773,12265198:0,608174,102891 -g2990,360:7941493,12265198 -g2990,360:7941493,12265198 -g2990,360:15427670,12265198 -k2990,361:17541534,12265198:918487 -k2990,361:18460021,12265198:918487 -) -(2990,362:6630773,13126800:11829248,505283,102891 -h2990,361:6630773,13126800:0,0,0 -r2990,439:6630773,13126800:0,608174,102891 -g2990,361:7941493,13126800 -g2990,361:7941493,13126800 -g2990,361:17008398,13126800 -k2990,362:18331898,13126800:128123 -k2990,362:18460021,13126800:128123 -) -(2990,363:6630773,13988402:11829248,505283,102891 -h2990,362:6630773,13988402:0,0,0 -r2990,439:6630773,13988402:0,608174,102891 -g2990,362:7941493,13988402 -g2990,362:7941493,13988402 -g2990,362:17008398,13988402 -k2990,362:18460021,13988402:82576 -) -(2990,363:9252213,14829890:9207808,485622,11795 -k2990,363:14453806,14829890:4006216 -k2990,363:18460021,14829890:4006215 -) -(2990,364:6630773,15691492:11829248,505283,102891 -h2990,363:6630773,15691492:0,0,0 -r2990,439:6630773,15691492:0,608174,102891 -g2990,363:7941493,15691492 -g2990,363:7941493,15691492 -k2990,363:18460021,15691492:1255670 -) -(2990,364:9252213,16532980:9207808,485622,11795 -k2990,364:14453806,16532980:4006216 -k2990,364:18460021,16532980:4006215 -) -(2990,365:6630773,17394583:11829248,505283,134348 -h2990,364:6630773,17394583:0,0,0 -r2990,439:6630773,17394583:0,639631,134348 -g2990,364:7941493,17394583 -g2990,364:7941493,17394583 -g2990,364:17008398,17394583 -k2990,364:18460021,17394583:82576 -) -(2990,365:9252213,18236071:9207808,485622,11795 -k2990,365:14453806,18236071:4006216 -k2990,365:18460021,18236071:4006215 -) -(2990,366:6630773,19097673:11829248,505283,134348 -h2990,365:6630773,19097673:0,0,0 -r2990,439:6630773,19097673:0,639631,134348 -g2990,365:7941493,19097673 -g2990,365:7941493,19097673 -k2990,365:18460021,19097673:1255670 -) -(2990,366:9252213,19939161:9207808,485622,11795 -k2990,366:14453806,19939161:4006216 -k2990,366:18460021,19939161:4006215 -) -(2990,367:6630773,20800763:11829248,505283,134348 -h2990,366:6630773,20800763:0,0,0 -r2990,439:6630773,20800763:0,639631,134348 -g2990,366:7941493,20800763 -g2990,366:7941493,20800763 -k2990,366:18460021,20800763:1255670 -) -(2990,367:9252213,21642251:9207808,485622,11795 -k2990,367:14453806,21642251:4006216 -k2990,367:18460021,21642251:4006215 -) -(2990,368:6630773,22503853:11829248,505283,134348 -h2990,367:6630773,22503853:0,0,0 -r2990,439:6630773,22503853:0,639631,134348 -g2990,367:7941493,22503853 -g2990,367:7941493,22503853 -g2990,367:15427670,22503853 -k2990,368:17541534,22503853:918487 -k2990,368:18460021,22503853:918487 -) -(2990,369:6630773,23365455:11829248,505283,102891 -h2990,368:6630773,23365455:0,0,0 -r2990,439:6630773,23365455:0,608174,102891 -g2990,368:7941493,23365455 -g2990,368:7941493,23365455 -g2990,368:15032488,23365455 -k2990,369:17343943,23365455:1116078 -k2990,369:18460021,23365455:1116078 -) -(2990,370:6630773,24227057:11829248,505283,126483 -h2990,369:6630773,24227057:0,0,0 -r2990,439:6630773,24227057:0,631766,126483 -g2990,369:7941493,24227057 -g2990,369:7941493,24227057 -g2990,369:17008398,24227057 -k2990,369:18460021,24227057:82576 -) -(2990,370:9252213,25068545:9207808,485622,11795 -k2990,370:14453806,25068545:4006216 -k2990,370:18460021,25068545:4006215 -) -(2990,371:6630773,25930148:11829248,505283,102891 -h2990,370:6630773,25930148:0,0,0 -r2990,439:6630773,25930148:0,608174,102891 -g2990,370:7941493,25930148 -g2990,370:7941493,25930148 -k2990,370:18460021,25930148:1255670 -) -(2990,371:9252213,26771636:9207808,485622,11795 -k2990,371:14453806,26771636:4006216 -k2990,371:18460021,26771636:4006215 -) -(2990,372:6630773,27633238:11829248,505283,102891 -h2990,371:6630773,27633238:0,0,0 -r2990,439:6630773,27633238:0,608174,102891 -g2990,371:7941493,27633238 -g2990,371:7941493,27633238 -k2990,371:18460021,27633238:1255670 -) -(2990,372:9252213,28474726:9207808,485622,11795 -k2990,372:14453806,28474726:4006216 -k2990,372:18460021,28474726:4006215 -) -(2990,373:6630773,29336328:11829248,513147,126483 -h2990,372:6630773,29336328:0,0,0 -r2990,439:6630773,29336328:0,639630,126483 -g2990,372:7941493,29336328 -g2990,372:7941493,29336328 -g2990,372:16613216,29336328 -k2990,373:18134307,29336328:325714 -k2990,373:18460021,29336328:325714 -) -(2990,374:6630773,30197930:11829248,505283,102891 -h2990,373:6630773,30197930:0,0,0 -r2990,439:6630773,30197930:0,608174,102891 -g2990,373:7941493,30197930 -g2990,373:7941493,30197930 -g2990,373:16218034,30197930 -k2990,374:17936716,30197930:523305 -k2990,374:18460021,30197930:523305 -) -(2990,375:6630773,31059532:11829248,505283,102891 -h2990,374:6630773,31059532:0,0,0 -r2990,439:6630773,31059532:0,608174,102891 -g2990,374:7941493,31059532 -g2990,374:7941493,31059532 -g2990,374:15427670,31059532 -k2990,375:17541534,31059532:918487 -k2990,375:18460021,31059532:918487 -) -(2990,376:6630773,31921134:11829248,505283,134348 -h2990,375:6630773,31921134:0,0,0 -r2990,439:6630773,31921134:0,639631,134348 -g2990,375:7941493,31921134 -g2990,375:7941493,31921134 -g2990,375:14242123,31921134 -k2990,376:16948761,31921134:1511261 -k2990,376:18460021,31921134:1511260 -) -(2990,377:6630773,32782737:11829248,505283,102891 -h2990,376:6630773,32782737:0,0,0 -r2990,439:6630773,32782737:0,608174,102891 -g2990,376:7941493,32782737 -g2990,376:7941493,32782737 -g2990,376:15032488,32782737 -k2990,377:17343943,32782737:1116078 -k2990,377:18460021,32782737:1116078 -) -(2990,378:6630773,33644339:11829248,505283,126483 -h2990,377:6630773,33644339:0,0,0 -r2990,439:6630773,33644339:0,631766,126483 -g2990,377:7941493,33644339 -g2990,377:7941493,33644339 -g2990,377:16218034,33644339 -k2990,378:17936716,33644339:523305 -k2990,378:18460021,33644339:523305 -) -(2990,379:6630773,34505941:11829248,505283,134348 -h2990,378:6630773,34505941:0,0,0 -r2990,439:6630773,34505941:0,639631,134348 -g2990,378:7941493,34505941 -g2990,378:7941493,34505941 -g2990,378:13451759,34505941 -k2990,379:16553579,34505941:1906443 -k2990,379:18460021,34505941:1906442 -) -(2990,380:6630773,35367543:11829248,505283,134348 -h2990,379:6630773,35367543:0,0,0 -r2990,439:6630773,35367543:0,639631,134348 -g2990,379:7941493,35367543 -g2990,379:7941493,35367543 -g2990,379:14242123,35367543 -k2990,380:16948761,35367543:1511261 -k2990,380:18460021,35367543:1511260 -) -(2990,381:6630773,36229145:11829248,505283,102891 -h2990,380:6630773,36229145:0,0,0 -r2990,439:6630773,36229145:0,608174,102891 -g2990,380:7941493,36229145 -g2990,380:7941493,36229145 -g2990,380:9895120,36229145 -k2990,381:14775259,36229145:3684762 -k2990,381:18460021,36229145:3684762 -) -(2990,382:6630773,37090747:11829248,505283,102891 -h2990,381:6630773,37090747:0,0,0 -r2990,439:6630773,37090747:0,608174,102891 -g2990,381:7941493,37090747 -g2990,381:7941493,37090747 -g2990,381:11475849,37090747 -k2990,382:15565624,37090747:2894398 -k2990,382:18460021,37090747:2894397 -) -(2990,383:6630773,37952350:11829248,505283,102891 -h2990,382:6630773,37952350:0,0,0 -r2990,439:6630773,37952350:0,608174,102891 -g2990,382:7941493,37952350 -g2990,382:7941493,37952350 -g2990,382:10290302,37952350 -k2990,383:14972850,37952350:3487171 -k2990,383:18460021,37952350:3487171 -) -(2990,384:6630773,38813952:11829248,505283,134348 -h2990,383:6630773,38813952:0,0,0 -r2990,439:6630773,38813952:0,639631,134348 -g2990,383:7941493,38813952 -g2990,383:7941493,38813952 -g2990,383:12661395,38813952 -k2990,384:16158397,38813952:2301625 -k2990,384:18460021,38813952:2301624 -) -(2990,385:6630773,39675554:11829248,505283,126483 -h2990,384:6630773,39675554:0,0,0 -r2990,439:6630773,39675554:0,631766,126483 -g2990,384:7941493,39675554 -g2990,384:7941493,39675554 -g2990,384:10290302,39675554 -k2990,385:14773621,39675554:3686401 -k2990,385:18460021,39675554:3686400 -) -(2990,386:6630773,40537156:11829248,505283,102891 -h2990,385:6630773,40537156:0,0,0 -r2990,439:6630773,40537156:0,608174,102891 -g2990,385:7941493,40537156 -g2990,385:7941493,40537156 -g2990,385:12266213,40537156 -k2990,386:15960806,40537156:2499216 -k2990,386:18460021,40537156:2499215 -) -(2990,387:6630773,41398758:11829248,505283,102891 -h2990,386:6630773,41398758:0,0,0 -r2990,439:6630773,41398758:0,608174,102891 -g2990,386:7941493,41398758 -g2990,386:7941493,41398758 -g2990,386:11871031,41398758 -k2990,387:15763215,41398758:2696807 -k2990,387:18460021,41398758:2696806 -) -(2990,388:6630773,42260360:11829248,505283,102891 -h2990,387:6630773,42260360:0,0,0 -r2990,439:6630773,42260360:0,608174,102891 -g2990,387:7941493,42260360 -g2990,387:7941493,42260360 -g2990,387:11080667,42260360 -k2990,388:15368033,42260360:3091989 -k2990,388:18460021,42260360:3091988 -) -(2990,389:6630773,43121963:11829248,505283,102891 -h2990,388:6630773,43121963:0,0,0 -r2990,439:6630773,43121963:0,608174,102891 -g2990,388:7941493,43121963 -g2990,388:7941493,43121963 -g2990,388:11080667,43121963 -k2990,389:15368033,43121963:3091989 -k2990,389:18460021,43121963:3091988 -) -(2990,390:6630773,43983565:11829248,513147,134348 -h2990,389:6630773,43983565:0,0,0 -r2990,439:6630773,43983565:0,647495,134348 -g2990,389:7941493,43983565 -g2990,389:7941493,43983565 -g2990,389:11475849,43983565 -k2990,390:15366394,43983565:3093627 -k2990,390:18460021,43983565:3093627 -) -(2990,391:6630773,44845167:11829248,505283,102891 -h2990,390:6630773,44845167:0,0,0 -r2990,439:6630773,44845167:0,608174,102891 -g2990,390:7941493,44845167 -g2990,390:7941493,44845167 -g2990,390:10290302,44845167 -k2990,391:14773621,44845167:3686401 -k2990,391:18460021,44845167:3686400 -) -(2990,392:6630773,45706769:11829248,505283,102891 -h2990,391:6630773,45706769:0,0,0 -r2990,439:6630773,45706769:0,608174,102891 -g2990,391:7941493,45706769 -g2990,391:7941493,45706769 -g2990,391:11080667,45706769 -k2990,392:15368033,45706769:3091989 -k2990,392:18460021,45706769:3091988 ) -] -k2990,439:19606901,45706769:1146880 -r2990,439:19606901,45706769:0,40234515,126483 -k2990,439:20753781,45706769:1146880 -[2990,439:20753781,45706769:11829248,40108032,126483 -(2990,393:20753781,6254097:11829248,505283,102891 -h2990,392:20753781,6254097:0,0,0 -r2990,439:20753781,6254097:0,608174,102891 -g2990,392:22064501,6254097 -g2990,392:22064501,6254097 -g2990,392:24808493,6254097 -g2990,392:25978310,6254097 -g2990,392:27148127,6254097 -k2990,393:30463267,6254097:2119763 -k2990,393:32583029,6254097:2119762 -) -(2990,394:20753781,7113305:11829248,505283,102891 -h2990,393:20753781,7113305:0,0,0 -r2990,439:20753781,7113305:0,608174,102891 -g2990,393:22064501,7113305 -g2990,393:22064501,7113305 -g2990,393:25598857,7113305 -k2990,394:29489402,7113305:3093627 -k2990,394:32583029,7113305:3093627 -) -(2990,395:20753781,7972512:11829248,505283,126483 -h2990,394:20753781,7972512:0,0,0 -r2990,439:20753781,7972512:0,631766,126483 -g2990,394:22064501,7972512 -g2990,394:22064501,7972512 -g2990,394:25598857,7972512 -k2990,395:29688632,7972512:2894398 -k2990,395:32583029,7972512:2894397 -) -(2990,396:20753781,8831720:11829248,513147,126483 -h2990,395:20753781,8831720:0,0,0 -r2990,439:20753781,8831720:0,639630,126483 -g2990,395:22064501,8831720 -g2990,395:22064501,8831720 -g2990,395:25994039,8831720 -g2990,395:27163856,8831720 -g2990,395:28333673,8831720 -g2990,395:29901949,8831720 -k2990,396:31840178,8831720:742852 -k2990,396:32583029,8831720:742851 -) -(2990,397:20753781,9690927:11829248,505283,126483 -h2990,396:20753781,9690927:0,0,0 -r2990,439:20753781,9690927:0,631766,126483 -g2990,396:22064501,9690927 -g2990,396:22064501,9690927 -g2990,396:24808493,9690927 -k2990,397:29094220,9690927:3488809 -k2990,397:32583029,9690927:3488809 -) -(2990,398:20753781,10550135:11829248,505283,102891 -h2990,397:20753781,10550135:0,0,0 -r2990,439:20753781,10550135:0,608174,102891 -g2990,397:22064501,10550135 -g2990,397:22064501,10550135 -g2990,397:26389221,10550135 -g2990,397:27957497,10550135 -k2990,398:30867952,10550135:1715078 -k2990,398:32583029,10550135:1715077 -) -(2990,399:20753781,11409343:11829248,505283,134348 -h2990,398:20753781,11409343:0,0,0 -r2990,439:20753781,11409343:0,639631,134348 -g2990,398:22064501,11409343 -g2990,398:22064501,11409343 -g2990,398:25203675,11409343 -g2990,398:26771951,11409343 -k2990,399:30275179,11409343:2307851 -k2990,399:32583029,11409343:2307850 -) -(2990,400:20753781,12268550:11829248,505283,102891 -h2990,399:20753781,12268550:0,0,0 -r2990,439:20753781,12268550:0,608174,102891 -g2990,399:22064501,12268550 -g2990,399:22064501,12268550 -g2990,399:27574767,12268550 -k2990,400:30676587,12268550:1906443 -k2990,400:32583029,12268550:1906442 -) -(2990,401:20753781,13127758:11829248,505283,102891 -h2990,400:20753781,13127758:0,0,0 -r2990,439:20753781,13127758:0,608174,102891 -g2990,400:22064501,13127758 -g2990,400:22064501,13127758 -g2990,400:24808493,13127758 -k2990,401:29293450,13127758:3289580 -k2990,401:32583029,13127758:3289579 -) -(2990,402:20753781,13986966:11829248,505283,102891 -h2990,401:20753781,13986966:0,0,0 -r2990,439:20753781,13986966:0,608174,102891 -g2990,401:22064501,13986966 -g2990,401:22064501,13986966 -g2990,401:26389221,13986966 -g2990,401:29480554,13986966 -k2990,402:31629480,13986966:953549 -k2990,402:32583029,13986966:953549 -) -(2990,403:20753781,14846173:11829248,505283,102891 -h2990,402:20753781,14846173:0,0,0 -r2990,439:20753781,14846173:0,608174,102891 -g2990,402:22064501,14846173 -g2990,402:22064501,14846173 -g2990,402:26389221,14846173 -k2990,403:30083814,14846173:2499216 -k2990,403:32583029,14846173:2499215 -) -(2990,404:20753781,15705381:11829248,505283,102891 -h2990,403:20753781,15705381:0,0,0 -r2990,439:20753781,15705381:0,608174,102891 -g2990,403:22064501,15705381 -g2990,403:22064501,15705381 -g2990,403:27179585,15705381 -k2990,404:30478996,15705381:2104034 -k2990,404:32583029,15705381:2104033 -) -(2990,405:20753781,16564588:11829248,505283,102891 -h2990,404:20753781,16564588:0,0,0 -r2990,439:20753781,16564588:0,608174,102891 -g2990,404:22064501,16564588 -g2990,404:22064501,16564588 -g2990,404:27969949,16564588 -k2990,405:30874178,16564588:1708852 -k2990,405:32583029,16564588:1708851 -) -(2990,406:20753781,17423796:11829248,505283,126483 -h2990,405:20753781,17423796:0,0,0 -r2990,439:20753781,17423796:0,631766,126483 -g2990,405:22064501,17423796 -g2990,405:22064501,17423796 -g2990,405:27969949,17423796 -g2990,405:29538225,17423796 -k2990,406:31658316,17423796:924714 -k2990,406:32583029,17423796:924713 -) -(2990,407:20753781,18283004:11829248,505283,102891 -h2990,406:20753781,18283004:0,0,0 -r2990,439:20753781,18283004:0,608174,102891 -g2990,406:22064501,18283004 -g2990,406:22064501,18283004 -g2990,406:28365131,18283004 -k2990,407:31071769,18283004:1511261 -k2990,407:32583029,18283004:1511260 -) -(2990,408:20753781,19142211:11829248,505283,102891 -h2990,407:20753781,19142211:0,0,0 -r2990,439:20753781,19142211:0,608174,102891 -g2990,407:22064501,19142211 -g2990,407:22064501,19142211 -g2990,407:27179585,19142211 -g2990,407:28747861,19142211 -g2990,407:30316137,19142211 -k2990,408:32047272,19142211:535758 -k2990,408:32583029,19142211:535757 -) -(2990,409:20753781,20001419:11829248,505283,126483 -h2990,408:20753781,20001419:0,0,0 -r2990,439:20753781,20001419:0,631766,126483 -g2990,408:22064501,20001419 -g2990,408:22064501,20001419 -g2990,408:27969949,20001419 -g2990,408:29538225,20001419 -k2990,409:31658316,20001419:924714 -k2990,409:32583029,20001419:924713 -) -(2990,410:20753781,20860627:11829248,505283,126483 -h2990,409:20753781,20860627:0,0,0 -r2990,439:20753781,20860627:0,631766,126483 -g2990,409:22064501,20860627 -g2990,409:22064501,20860627 -g2990,409:28760314,20860627 -k2990,410:31269360,20860627:1313669 -k2990,410:32583029,20860627:1313669 -) -(2990,411:20753781,21719834:11829248,505283,126483 -h2990,410:20753781,21719834:0,0,0 -r2990,439:20753781,21719834:0,631766,126483 -g2990,410:22064501,21719834 -g2990,410:22064501,21719834 -g2990,410:29155496,21719834 -k2990,411:31466951,21719834:1116078 -k2990,411:32583029,21719834:1116078 -) -(2990,412:20753781,22579042:11829248,513147,102891 -h2990,411:20753781,22579042:0,0,0 -r2990,439:20753781,22579042:0,616038,102891 -g2990,411:22064501,22579042 -g2990,411:22064501,22579042 -g2990,411:30341042,22579042 -k2990,412:32059724,22579042:523305 -k2990,412:32583029,22579042:523305 -) -(2990,413:20753781,23438249:11829248,513147,102891 -h2990,412:20753781,23438249:0,0,0 -r2990,439:20753781,23438249:0,616038,102891 -g2990,412:22064501,23438249 -g2990,412:22064501,23438249 -g2990,412:28365131,23438249 -k2990,413:31071769,23438249:1511261 -k2990,413:32583029,23438249:1511260 -) -(2990,414:20753781,24297457:11829248,505283,134348 -h2990,413:20753781,24297457:0,0,0 -r2990,439:20753781,24297457:0,639631,134348 -g2990,413:22064501,24297457 -g2990,413:22064501,24297457 -g2990,413:28760314,24297457 -k2990,414:31269360,24297457:1313669 -k2990,414:32583029,24297457:1313669 -) -(2990,415:20753781,25156665:11829248,505283,126483 -h2990,414:20753781,25156665:0,0,0 -r2990,439:20753781,25156665:0,631766,126483 -g2990,414:22064501,25156665 -g2990,414:22064501,25156665 -g2990,414:28365131,25156665 -k2990,415:31071769,25156665:1511261 -k2990,415:32583029,25156665:1511260 -) -(2990,416:20753781,26015872:11829248,505283,126483 -h2990,415:20753781,26015872:0,0,0 -r2990,439:20753781,26015872:0,631766,126483 -g2990,415:22064501,26015872 -g2990,415:22064501,26015872 -g2990,415:28760314,26015872 -g2990,415:30328590,26015872 -k2990,416:32053498,26015872:529531 -k2990,416:32583029,26015872:529531 -) -(2990,417:20753781,26875080:11829248,513147,102891 -h2990,416:20753781,26875080:0,0,0 -r2990,439:20753781,26875080:0,616038,102891 -g2990,416:22064501,26875080 -g2990,416:22064501,26875080 -g2990,416:25994039,26875080 -k2990,417:29886223,26875080:2696807 -k2990,417:32583029,26875080:2696806 -) -(2990,418:20753781,27734287:11829248,505283,102891 -h2990,417:20753781,27734287:0,0,0 -r2990,439:20753781,27734287:0,608174,102891 -g2990,417:22064501,27734287 -g2990,417:22064501,27734287 -g2990,417:26784403,27734287 -k2990,418:30281405,27734287:2301625 -k2990,418:32583029,27734287:2301624 -) -(2990,419:20753781,28593495:11829248,505283,102891 -h2990,418:20753781,28593495:0,0,0 -r2990,439:20753781,28593495:0,608174,102891 -g2990,418:22064501,28593495 -g2990,418:22064501,28593495 -g2990,418:27574767,28593495 -g2990,418:29143043,28593495 -g2990,418:30711319,28593495 -k2990,418:32583029,28593495:502663 -) -(2990,419:23375221,29434983:9207808,485622,0 -k2990,419:28576814,29434983:4006216 -k2990,419:32583029,29434983:4006215 -) -(2990,420:20753781,30294191:11829248,485622,126483 -h2990,419:20753781,30294191:0,0,0 -r2990,439:20753781,30294191:0,612105,126483 -g2990,419:22064501,30294191 -g2990,419:22064501,30294191 -g2990,419:27179585,30294191 -k2990,420:30478996,30294191:2104034 -k2990,420:32583029,30294191:2104033 -) -(2990,421:20753781,31153398:11829248,505283,126483 -h2990,420:20753781,31153398:0,0,0 -r2990,439:20753781,31153398:0,631766,126483 -g2990,420:22064501,31153398 -g2990,420:22064501,31153398 -g2990,420:27969949,31153398 -g2990,420:29538225,31153398 -k2990,420:32583029,31153398:152700 -) -(2990,421:23375221,31994886:9207808,485622,102891 -g2990,420:24943497,31994886 -k2990,421:29360952,31994886:3222078 -k2990,421:32583029,31994886:3222077 -) -(2990,422:20753781,32854094:11829248,505283,126483 -h2990,421:20753781,32854094:0,0,0 -r2990,439:20753781,32854094:0,631766,126483 -g2990,421:22064501,32854094 -g2990,421:22064501,32854094 -g2990,421:28760314,32854094 -k2990,422:31269360,32854094:1313669 -k2990,422:32583029,32854094:1313669 -) -(2990,423:20753781,33713302:11829248,505283,126483 -h2990,422:20753781,33713302:0,0,0 -r2990,439:20753781,33713302:0,631766,126483 -g2990,422:22064501,33713302 -g2990,422:22064501,33713302 -g2990,422:29155496,33713302 -k2990,423:31466951,33713302:1116078 -k2990,423:32583029,33713302:1116078 -) -(2990,424:20753781,34572509:11829248,505283,102891 -h2990,423:20753781,34572509:0,0,0 -r2990,439:20753781,34572509:0,608174,102891 -g2990,423:22064501,34572509 -g2990,423:22064501,34572509 -g2990,423:24413310,34572509 -g2990,423:25981586,34572509 -k2990,424:29879996,34572509:2703033 -k2990,424:32583029,34572509:2703033 -) -(2990,425:20753781,35431717:11829248,505283,102891 -h2990,424:20753781,35431717:0,0,0 -r2990,439:20753781,35431717:0,608174,102891 -g2990,424:22064501,35431717 -g2990,424:22064501,35431717 -g2990,424:24413310,35431717 -g2990,424:26707725,35431717 -g2990,424:27877542,35431717 -g2990,424:29047359,35431717 -g2990,424:30615635,35431717 -k2990,424:32583029,35431717:598347 -) -(2990,425:23375221,36273205:9207808,485622,102891 -g2990,424:24943497,36273205 -k2990,425:29360952,36273205:3222078 -k2990,425:32583029,36273205:3222077 -) -(2990,426:20753781,37132412:11829248,505283,102891 -h2990,425:20753781,37132412:0,0,0 -r2990,439:20753781,37132412:0,608174,102891 -g2990,425:22064501,37132412 -g2990,425:22064501,37132412 -g2990,425:27574767,37132412 -k2990,426:30676587,37132412:1906443 -k2990,426:32583029,37132412:1906442 -) -(2990,427:20753781,37991620:11829248,513147,102891 -h2990,426:20753781,37991620:0,0,0 -r2990,439:20753781,37991620:0,616038,102891 -g2990,426:22064501,37991620 -g2990,426:22064501,37991620 -g2990,426:26389221,37991620 -k2990,427:30083814,37991620:2499216 -k2990,427:32583029,37991620:2499215 -) -(2990,428:20753781,38850828:11829248,505283,126483 -h2990,427:20753781,38850828:0,0,0 -r2990,439:20753781,38850828:0,631766,126483 -g2990,427:22064501,38850828 -g2990,427:22064501,38850828 -g2990,427:26389221,38850828 -k2990,428:30083814,38850828:2499216 -k2990,428:32583029,38850828:2499215 -) -(2990,429:20753781,39710035:11829248,505283,102891 -h2990,428:20753781,39710035:0,0,0 -r2990,439:20753781,39710035:0,608174,102891 -g2990,428:22064501,39710035 -g2990,428:22064501,39710035 -g2990,428:25598857,39710035 -g2990,428:26768674,39710035 -g2990,428:27938491,39710035 -g2990,428:29506767,39710035 -k2990,429:31642587,39710035:940443 -k2990,429:32583029,39710035:940442 -) -(2990,430:20753781,40569243:11829248,505283,102891 -h2990,429:20753781,40569243:0,0,0 -r2990,439:20753781,40569243:0,608174,102891 -g2990,429:22064501,40569243 -g2990,429:22064501,40569243 -g2990,429:27179585,40569243 -k2990,430:30478996,40569243:2104034 -k2990,430:32583029,40569243:2104033 -) -(2990,431:20753781,41428451:11829248,505283,102891 -h2990,430:20753781,41428451:0,0,0 -r2990,439:20753781,41428451:0,608174,102891 -g2990,430:22064501,41428451 -g2990,430:22064501,41428451 -g2990,430:24413310,41428451 -g2990,430:25981586,41428451 -k2990,431:29879996,41428451:2703033 -k2990,431:32583029,41428451:2703033 -) -(2990,432:20753781,42287658:11829248,505283,102891 -h2990,431:20753781,42287658:0,0,0 -r2990,439:20753781,42287658:0,608174,102891 -g2990,431:22064501,42287658 -g2990,431:22064501,42287658 -g2990,431:26784403,42287658 -k2990,432:30281405,42287658:2301625 -k2990,432:32583029,42287658:2301624 -) -(2990,433:20753781,43146866:11829248,505283,126483 -h2990,432:20753781,43146866:0,0,0 -r2990,439:20753781,43146866:0,631766,126483 -g2990,432:22064501,43146866 -g2990,432:22064501,43146866 -g2990,432:25994039,43146866 -g2990,432:27163856,43146866 -g2990,432:28333673,43146866 -g2990,432:29901949,43146866 -k2990,432:32583029,43146866:1312033 -) -(2990,433:23375221,43988354:9207808,485622,102891 -g2990,432:24943497,43988354 -g2990,432:26511773,43988354 -g2990,432:28080049,43988354 -k2990,433:30929228,43988354:1653802 -k2990,433:32583029,43988354:1653801 -) -(2990,434:20753781,44847561:11829248,505283,126483 -h2990,433:20753781,44847561:0,0,0 -r2990,439:20753781,44847561:0,631766,126483 -g2990,433:22064501,44847561 -g2990,433:22064501,44847561 -g2990,433:25598857,44847561 -k2990,434:29688632,44847561:2894398 -k2990,434:32583029,44847561:2894397 -) -(2990,435:20753781,45706769:11829248,505283,126483 -h2990,434:20753781,45706769:0,0,0 -r2990,439:20753781,45706769:0,631766,126483 -g2990,434:22064501,45706769 -g2990,434:22064501,45706769 -g2990,434:27574767,45706769 -g2990,434:29143043,45706769 -k2990,435:31460725,45706769:1122305 -k2990,435:32583029,45706769:1122304 +[1,2113:6630773,47279633:25952256,43253760,0 +[1,2113:6630773,4812305:25952256,786432,0 +(1,2113:6630773,4812305:25952256,0,0 +(1,2113:6630773,4812305:25952256,0,0 +g1,2113:3078558,4812305 +[1,2113:3078558,4812305:0,0,0 +(1,2113:3078558,2439708:0,1703936,0 +k1,2113:1358238,2439708:-1720320 +(1,2113:1358238,2439708:1720320,1703936,0 +(1,2113:1358238,2439708:1179648,16384,0 +r1,2113:2537886,2439708:1179648,16384,0 ) -] -(2990,439:32583029,45706769:0,355205,126483 -h2990,439:32583029,45706769:420741,355205,126483 -k2990,439:32583029,45706769:-420741 +g1,2113:3062174,2439708 +(1,2113:3062174,2439708:16384,1703936,0 +[1,2113:3062174,2439708:25952256,1703936,0 +(1,2113:3062174,1915420:25952256,1179648,0 +(1,2113:3062174,1915420:16384,1179648,0 +r1,2113:3078558,1915420:16384,1179648,0 ) +k1,2113:29014430,1915420:25935872 +g1,2113:29014430,1915420 ) ] -(2990,439:32583029,45706769:0,0,0 -g2990,439:32583029,45706769 ) ) -] -(2990,439:6630773,47279633:25952256,0,0 -h2990,439:6630773,47279633:25952256,0,0 ) ] -(2990,439:4262630,4025873:0,0,0 -[2990,439:-473656,4025873:0,0,0 -(2990,439:-473656,-710413:0,0,0 -(2990,439:-473656,-710413:0,0,0 -g2990,439:-473656,-710413 +[1,2113:3078558,4812305:0,0,0 +(1,2113:3078558,2439708:0,1703936,0 +g1,2113:29030814,2439708 +g1,2113:36135244,2439708 +(1,2113:36135244,2439708:1720320,1703936,0 +(1,2113:36135244,2439708:16384,1703936,0 +[1,2113:36135244,2439708:25952256,1703936,0 +(1,2113:36135244,1915420:25952256,1179648,0 +(1,2113:36135244,1915420:16384,1179648,0 +r1,2113:36151628,1915420:16384,1179648,0 ) -g2990,439:-473656,-710413 +k1,2113:62087500,1915420:25935872 +g1,2113:62087500,1915420 ) ] ) -] -!28950 -}392 -!12 -{393 -[2990,532:4262630,47279633:28320399,43253760,0 -(2990,532:4262630,4025873:0,0,0 -[2990,532:-473656,4025873:0,0,0 -(2990,532:-473656,-710413:0,0,0 -(2990,532:-473656,-644877:0,0,0 -k2990,532:-473656,-644877:-65536 -) -(2990,532:-473656,4736287:0,0,0 -k2990,532:-473656,4736287:5209943 -) -g2990,532:-473656,-710413 +g1,2113:36675916,2439708 +(1,2113:36675916,2439708:1179648,16384,0 +r1,2113:37855564,2439708:1179648,16384,0 ) -] ) -[2990,532:6630773,47279633:25952256,43253760,0 -[2990,532:6630773,4812305:25952256,786432,0 -(2990,532:6630773,4812305:25952256,513147,134348 -(2990,532:6630773,4812305:25952256,513147,134348 -g2990,532:3078558,4812305 -[2990,532:3078558,4812305:0,0,0 -(2990,532:3078558,2439708:0,1703936,0 -k2990,532:1358238,2439708:-1720320 -(2990,1:1358238,2439708:1720320,1703936,0 -(2990,1:1358238,2439708:1179648,16384,0 -r2990,532:2537886,2439708:1179648,16384,0 -) -g2990,1:3062174,2439708 -(2990,1:3062174,2439708:16384,1703936,0 -[2990,1:3062174,2439708:25952256,1703936,0 -(2990,1:3062174,1915420:25952256,1179648,0 -(2990,1:3062174,1915420:16384,1179648,0 -r2990,532:3078558,1915420:16384,1179648,0 -) -k2990,1:29014430,1915420:25935872 -g2990,1:29014430,1915420 +k1,2113:3078556,2439708:-34777008 ) ] +[1,2113:3078558,4812305:0,0,0 +(1,2113:3078558,49800853:0,16384,2228224 +k1,2113:1358238,49800853:-1720320 +(1,2113:1358238,49800853:1720320,16384,2228224 +(1,2113:1358238,49800853:1179648,16384,0 +r1,2113:2537886,49800853:1179648,16384,0 ) +g1,2113:3062174,49800853 +(1,2113:3062174,52029077:16384,1703936,0 +[1,2113:3062174,52029077:25952256,1703936,0 +(1,2113:3062174,51504789:25952256,1179648,0 +(1,2113:3062174,51504789:16384,1179648,0 +r1,2113:3078558,51504789:16384,1179648,0 ) -) -] -[2990,532:3078558,4812305:0,0,0 -(2990,532:3078558,2439708:0,1703936,0 -g2990,532:29030814,2439708 -g2990,532:36135244,2439708 -(2990,1:36135244,2439708:1720320,1703936,0 -(2990,1:36135244,2439708:16384,1703936,0 -[2990,1:36135244,2439708:25952256,1703936,0 -(2990,1:36135244,1915420:25952256,1179648,0 -(2990,1:36135244,1915420:16384,1179648,0 -r2990,532:36151628,1915420:16384,1179648,0 -) -k2990,1:62087500,1915420:25935872 -g2990,1:62087500,1915420 +k1,2113:29014430,51504789:25935872 +g1,2113:29014430,51504789 ) ] ) -g2990,1:36675916,2439708 -(2990,1:36675916,2439708:1179648,16384,0 -r2990,532:37855564,2439708:1179648,16384,0 ) ) -k2990,532:3078556,2439708:-34777008 -) -] -[2990,532:3078558,4812305:0,0,0 -(2990,532:3078558,49800853:0,16384,2228224 -k2990,532:1358238,49800853:-1720320 -(2990,1:1358238,49800853:1720320,16384,2228224 -(2990,1:1358238,49800853:1179648,16384,0 -r2990,532:2537886,49800853:1179648,16384,0 -) -g2990,1:3062174,49800853 -(2990,1:3062174,52029077:16384,1703936,0 -[2990,1:3062174,52029077:25952256,1703936,0 -(2990,1:3062174,51504789:25952256,1179648,0 -(2990,1:3062174,51504789:16384,1179648,0 -r2990,532:3078558,51504789:16384,1179648,0 -) -k2990,1:29014430,51504789:25935872 -g2990,1:29014430,51504789 -) ] +[1,2113:3078558,4812305:0,0,0 +(1,2113:3078558,49800853:0,16384,2228224 +g1,2113:29030814,49800853 +g1,2113:36135244,49800853 +(1,2113:36135244,49800853:1720320,16384,2228224 +(1,2113:36135244,52029077:16384,1703936,0 +[1,2113:36135244,52029077:25952256,1703936,0 +(1,2113:36135244,51504789:25952256,1179648,0 +(1,2113:36135244,51504789:16384,1179648,0 +r1,2113:36151628,51504789:16384,1179648,0 ) -) +k1,2113:62087500,51504789:25935872 +g1,2113:62087500,51504789 ) ] -[2990,532:3078558,4812305:0,0,0 -(2990,532:3078558,49800853:0,16384,2228224 -g2990,532:29030814,49800853 -g2990,532:36135244,49800853 -(2990,1:36135244,49800853:1720320,16384,2228224 -(2990,1:36135244,52029077:16384,1703936,0 -[2990,1:36135244,52029077:25952256,1703936,0 -(2990,1:36135244,51504789:25952256,1179648,0 -(2990,1:36135244,51504789:16384,1179648,0 -r2990,532:36151628,51504789:16384,1179648,0 -) -k2990,1:62087500,51504789:25935872 -g2990,1:62087500,51504789 ) -] -) -g2990,1:36675916,49800853 -(2990,1:36675916,49800853:1179648,16384,0 -r2990,532:37855564,49800853:1179648,16384,0 +g1,2113:36675916,49800853 +(1,2113:36675916,49800853:1179648,16384,0 +r1,2113:37855564,49800853:1179648,16384,0 ) ) -k2990,532:3078556,49800853:-34777008 +k1,2113:3078556,49800853:-34777008 ) ] -g2990,532:6630773,4812305 -k2990,532:23318207,4812305:15492057 -g2990,532:25216129,4812305 -g2990,532:26031396,4812305 -g2990,532:26644813,4812305 -g2990,532:28902528,4812305 -g2990,532:29858042,4812305 +g1,2113:6630773,4812305 ) ) ] -[2990,532:6630773,45706769:25952256,40108032,0 -(2990,532:6630773,45706769:25952256,40108032,0 -(2990,532:6630773,45706769:0,0,0 -g2990,532:6630773,45706769 -) -[2990,532:6630773,45706769:25952256,40108032,0 -(2990,532:6630773,44645345:25952256,39046608,126483 -[2990,532:6630773,44645345:11829248,39046608,102891 -(2990,436:6630773,6254097:11829248,505283,102891 -h2990,435:6630773,6254097:0,0,0 -r2990,532:6630773,6254097:0,608174,102891 -g2990,435:7941493,6254097 -g2990,435:7941493,6254097 -g2990,435:9499938,6254097 -g2990,435:10669755,6254097 -k2990,436:15162577,6254097:3297445 -k2990,436:18460021,6254097:3297444 -) -(2990,437:6630773,7107501:11829248,505283,102891 -h2990,436:6630773,7107501:0,0,0 -r2990,532:6630773,7107501:0,608174,102891 -g2990,436:7941493,7107501 -g2990,436:7941493,7107501 -g2990,436:10685485,7107501 -g2990,436:11855302,7107501 -k2990,437:15556121,7107501:2903901 -k2990,437:18460021,7107501:2903900 -) -(2990,438:6630773,7960904:11829248,505283,102891 -h2990,437:6630773,7960904:0,0,0 -r2990,532:6630773,7960904:0,608174,102891 -g2990,437:7941493,7960904 -g2990,437:7941493,7960904 -g2990,437:11080667,7960904 -g2990,437:12648943,7960904 -k2990,438:16152171,7960904:2307851 -k2990,438:18460021,7960904:2307850 -) -(2990,439:6630773,8814308:11829248,505283,102891 -h2990,438:6630773,8814308:0,0,0 -r2990,532:6630773,8814308:0,608174,102891 -g2990,438:7941493,8814308 -g2990,438:7941493,8814308 -g2990,438:11080667,8814308 -g2990,438:12648943,8814308 -k2990,439:16152171,8814308:2307851 -k2990,439:18460021,8814308:2307850 -) -(2990,440:6630773,9667712:11829248,505283,102891 -h2990,439:6630773,9667712:0,0,0 -r2990,532:6630773,9667712:0,608174,102891 -g2990,439:7941493,9667712 -g2990,439:7941493,9667712 -g2990,439:12266213,9667712 -g2990,439:13834489,9667712 -k2990,440:16744944,9667712:1715078 -k2990,440:18460021,9667712:1715077 -) -(2990,441:6630773,10521115:11829248,505283,102891 -h2990,440:6630773,10521115:0,0,0 -r2990,532:6630773,10521115:0,608174,102891 -g2990,440:7941493,10521115 -g2990,440:7941493,10521115 -g2990,440:14242123,10521115 -g2990,440:15810399,10521115 -k2990,441:17732899,10521115:727123 -k2990,441:18460021,10521115:727122 -) -(2990,442:6630773,11374519:11829248,505283,102891 -h2990,441:6630773,11374519:0,0,0 -r2990,532:6630773,11374519:0,608174,102891 -g2990,441:7941493,11374519 -g2990,441:7941493,11374519 -g2990,441:13056577,11374519 -k2990,442:16355988,11374519:2104034 -k2990,442:18460021,11374519:2104033 -) -(2990,443:6630773,12227922:11829248,505283,134348 -h2990,442:6630773,12227922:0,0,0 -r2990,532:6630773,12227922:0,639631,134348 -g2990,442:7941493,12227922 -g2990,442:7941493,12227922 -g2990,442:13056577,12227922 -g2990,442:14624853,12227922 -g2990,442:16193129,12227922 -k2990,443:17924264,12227922:535758 -k2990,443:18460021,12227922:535757 -) -(2990,444:6630773,13081326:11829248,505283,134348 -h2990,443:6630773,13081326:0,0,0 -r2990,532:6630773,13081326:0,639631,134348 -g2990,443:7941493,13081326 -g2990,443:7941493,13081326 -g2990,443:13451759,13081326 -k2990,444:16553579,13081326:1906443 -k2990,444:18460021,13081326:1906442 -) -(2990,445:6630773,13934730:11829248,505283,102891 -h2990,444:6630773,13934730:0,0,0 -r2990,532:6630773,13934730:0,608174,102891 -g2990,444:7941493,13934730 -g2990,444:7941493,13934730 -g2990,444:14637306,13934730 -k2990,445:17146352,13934730:1313669 -k2990,445:18460021,13934730:1313669 -) -(2990,446:6630773,14788133:11829248,505283,102891 -h2990,445:6630773,14788133:0,0,0 -r2990,532:6630773,14788133:0,608174,102891 -g2990,445:7941493,14788133 -g2990,445:7941493,14788133 -g2990,445:14242123,14788133 -k2990,446:16948761,14788133:1511261 -k2990,446:18460021,14788133:1511260 -) -(2990,447:6630773,15641537:11829248,505283,102891 -h2990,446:6630773,15641537:0,0,0 -r2990,532:6630773,15641537:0,608174,102891 -g2990,446:7941493,15641537 -g2990,446:7941493,15641537 -g2990,446:12661395,15641537 -k2990,447:16158397,15641537:2301625 -k2990,447:18460021,15641537:2301624 -) -(2990,448:6630773,16494941:11829248,505283,102891 -h2990,447:6630773,16494941:0,0,0 -r2990,532:6630773,16494941:0,608174,102891 -g2990,447:7941493,16494941 -g2990,447:7941493,16494941 -g2990,447:13056577,16494941 -k2990,448:16355988,16494941:2104034 -k2990,448:18460021,16494941:2104033 -) -(2990,449:6630773,17348344:11829248,505283,102891 -h2990,448:6630773,17348344:0,0,0 -r2990,532:6630773,17348344:0,608174,102891 -g2990,448:7941493,17348344 -g2990,448:7941493,17348344 -g2990,448:11475849,17348344 -g2990,448:13044125,17348344 -g2990,448:14612401,17348344 -g2990,448:16180677,17348344 -k2990,449:17918038,17348344:541984 -k2990,449:18460021,17348344:541983 -) -(2990,450:6630773,18201748:11829248,505283,102891 -h2990,449:6630773,18201748:0,0,0 -r2990,532:6630773,18201748:0,608174,102891 -g2990,449:7941493,18201748 -g2990,449:7941493,18201748 -g2990,449:11871031,18201748 -k2990,450:15763215,18201748:2696807 -k2990,450:18460021,18201748:2696806 -) -(2990,451:6630773,19055152:11829248,513147,102891 -h2990,450:6630773,19055152:0,0,0 -r2990,532:6630773,19055152:0,616038,102891 -g2990,450:7941493,19055152 -g2990,450:7941493,19055152 -k2990,450:18460021,19055152:70124 -) -(2990,451:9252213,19896640:9207808,485622,11795 -k2990,451:14453806,19896640:4006216 -k2990,451:18460021,19896640:4006215 -) -(2990,452:6630773,20750043:11829248,505283,126483 -h2990,451:6630773,20750043:0,0,0 -r2990,532:6630773,20750043:0,631766,126483 -g2990,451:7941493,20750043 -g2990,451:7941493,20750043 -g2990,451:11871031,20750043 -k2990,452:15763215,20750043:2696807 -k2990,452:18460021,20750043:2696806 -) -(2990,453:6630773,21603447:11829248,505283,102891 -h2990,452:6630773,21603447:0,0,0 -r2990,532:6630773,21603447:0,608174,102891 -g2990,452:7941493,21603447 -g2990,452:7941493,21603447 -g2990,452:12661395,21603447 -k2990,453:16158397,21603447:2301625 -k2990,453:18460021,21603447:2301624 -) -(2990,454:6630773,22456850:11829248,505283,102891 -h2990,453:6630773,22456850:0,0,0 -r2990,532:6630773,22456850:0,608174,102891 -g2990,453:7941493,22456850 -g2990,453:7941493,22456850 -g2990,453:11080667,22456850 -g2990,453:12250484,22456850 -k2990,454:15753712,22456850:2706310 -k2990,454:18460021,22456850:2706309 -) -(2990,455:6630773,23310254:11829248,505283,102891 -h2990,454:6630773,23310254:0,0,0 -r2990,532:6630773,23310254:0,608174,102891 -g2990,454:7941493,23310254 -g2990,454:7941493,23310254 -g2990,454:9895120,23310254 -k2990,455:14775259,23310254:3684762 -k2990,455:18460021,23310254:3684762 -) -(2990,456:6630773,24163658:11829248,513147,126483 -h2990,455:6630773,24163658:0,0,0 -r2990,532:6630773,24163658:0,639630,126483 -g2990,455:7941493,24163658 -g2990,455:7941493,24163658 -g2990,455:11475849,24163658 -k2990,456:15366394,24163658:3093627 -k2990,456:18460021,24163658:3093627 -) -(2990,457:6630773,25017061:11829248,505283,134348 -h2990,456:6630773,25017061:0,0,0 -r2990,532:6630773,25017061:0,639631,134348 -g2990,456:7941493,25017061 -g2990,456:7941493,25017061 -g2990,456:11871031,25017061 -g2990,456:13439307,25017061 -k2990,457:16547353,25017061:1912669 -k2990,457:18460021,25017061:1912668 -) -(2990,458:6630773,25870465:11829248,505283,126483 -h2990,457:6630773,25870465:0,0,0 -r2990,532:6630773,25870465:0,631766,126483 -g2990,457:7941493,25870465 -g2990,457:7941493,25870465 -g2990,457:11475849,25870465 -k2990,458:15366394,25870465:3093627 -k2990,458:18460021,25870465:3093627 -) -(2990,459:6630773,26723869:11829248,505283,102891 -h2990,458:6630773,26723869:0,0,0 -r2990,532:6630773,26723869:0,608174,102891 -g2990,458:7941493,26723869 -g2990,458:7941493,26723869 -g2990,458:11475849,26723869 -k2990,459:15366394,26723869:3093627 -k2990,459:18460021,26723869:3093627 -) -(2990,460:6630773,27577272:11829248,505283,102891 -h2990,459:6630773,27577272:0,0,0 -r2990,532:6630773,27577272:0,608174,102891 -g2990,459:7941493,27577272 -g2990,459:7941493,27577272 -g2990,459:11475849,27577272 -g2990,459:12645666,27577272 -g2990,459:13815483,27577272 -k2990,460:16536211,27577272:1923810 -k2990,460:18460021,27577272:1923810 -) -(2990,461:6630773,28430676:11829248,505283,102891 -h2990,460:6630773,28430676:0,0,0 -r2990,532:6630773,28430676:0,608174,102891 -g2990,460:7941493,28430676 -g2990,460:7941493,28430676 -g2990,460:11475849,28430676 -k2990,461:15366394,28430676:3093627 -k2990,461:18460021,28430676:3093627 -) -(2990,462:6630773,29284080:11829248,505283,126483 -h2990,461:6630773,29284080:0,0,0 -r2990,532:6630773,29284080:0,631766,126483 -g2990,461:7941493,29284080 -g2990,461:7941493,29284080 -g2990,461:11475849,29284080 -k2990,462:15565624,29284080:2894398 -k2990,462:18460021,29284080:2894397 -) -(2990,463:6630773,30137483:11829248,505283,134348 -h2990,462:6630773,30137483:0,0,0 -r2990,532:6630773,30137483:0,639631,134348 -g2990,462:7941493,30137483 -g2990,462:7941493,30137483 -g2990,462:15032488,30137483 -k2990,463:17343943,30137483:1116078 -k2990,463:18460021,30137483:1116078 -) -(2990,464:6630773,30990887:11829248,505283,102891 -h2990,463:6630773,30990887:0,0,0 -r2990,532:6630773,30990887:0,608174,102891 -g2990,463:7941493,30990887 -g2990,463:7941493,30990887 -g2990,463:10290302,30990887 -g2990,463:11858578,30990887 -k2990,464:15756988,30990887:2703033 -k2990,464:18460021,30990887:2703033 -) -(2990,465:6630773,31844290:11829248,505283,102891 -h2990,464:6630773,31844290:0,0,0 -r2990,532:6630773,31844290:0,608174,102891 -g2990,464:7941493,31844290 -g2990,464:7941493,31844290 -g2990,464:10685485,31844290 -k2990,465:15170442,31844290:3289580 -k2990,465:18460021,31844290:3289579 -) -(2990,466:6630773,32697694:11829248,505283,102891 -h2990,465:6630773,32697694:0,0,0 -r2990,532:6630773,32697694:0,608174,102891 -g2990,465:7941493,32697694 -g2990,465:7941493,32697694 -g2990,465:10685485,32697694 -k2990,466:14971212,32697694:3488809 -k2990,466:18460021,32697694:3488809 -) -(2990,467:6630773,33551098:11829248,505283,102891 -h2990,466:6630773,33551098:0,0,0 -r2990,532:6630773,33551098:0,608174,102891 -g2990,466:7941493,33551098 -g2990,466:7941493,33551098 -g2990,466:12661395,33551098 -g2990,466:14229671,33551098 -k2990,467:16942535,33551098:1517487 -k2990,467:18460021,33551098:1517486 -) -(2990,468:6630773,34404501:11829248,505283,102891 -h2990,467:6630773,34404501:0,0,0 -r2990,532:6630773,34404501:0,608174,102891 -g2990,467:7941493,34404501 -g2990,467:7941493,34404501 -g2990,467:12266213,34404501 -k2990,468:15960806,34404501:2499216 -k2990,468:18460021,34404501:2499215 -) -(2990,469:6630773,35257905:11829248,505283,102891 -h2990,468:6630773,35257905:0,0,0 -r2990,532:6630773,35257905:0,608174,102891 -g2990,468:7941493,35257905 -g2990,468:7941493,35257905 -g2990,468:13056577,35257905 -k2990,469:16355988,35257905:2104034 -k2990,469:18460021,35257905:2104033 -) -(2990,470:6630773,36111309:11829248,505283,102891 -h2990,469:6630773,36111309:0,0,0 -r2990,532:6630773,36111309:0,608174,102891 -g2990,469:7941493,36111309 -g2990,469:7941493,36111309 -g2990,469:13451759,36111309 -k2990,470:16553579,36111309:1906443 -k2990,470:18460021,36111309:1906442 -) -(2990,471:6630773,36964712:11829248,505283,102891 -h2990,470:6630773,36964712:0,0,0 -r2990,532:6630773,36964712:0,608174,102891 -g2990,470:7941493,36964712 -g2990,470:7941493,36964712 -g2990,470:13056577,36964712 -k2990,471:16355988,36964712:2104034 -k2990,471:18460021,36964712:2104033 -) -(2990,472:6630773,37818116:11829248,505283,102891 -h2990,471:6630773,37818116:0,0,0 -r2990,532:6630773,37818116:0,608174,102891 -g2990,471:7941493,37818116 -g2990,471:7941493,37818116 -g2990,471:12661395,37818116 -g2990,471:14229671,37818116 -k2990,472:16942535,37818116:1517487 -k2990,472:18460021,37818116:1517486 -) -(2990,473:6630773,38671520:11829248,505283,102891 -h2990,472:6630773,38671520:0,0,0 -r2990,532:6630773,38671520:0,608174,102891 -g2990,472:7941493,38671520 -g2990,472:7941493,38671520 -g2990,472:13056577,38671520 -k2990,473:16355988,38671520:2104034 -k2990,473:18460021,38671520:2104033 -) -(2990,474:6630773,39524923:11829248,505283,102891 -h2990,473:6630773,39524923:0,0,0 -r2990,532:6630773,39524923:0,608174,102891 -g2990,473:7941493,39524923 -g2990,473:7941493,39524923 -g2990,473:13451759,39524923 -k2990,474:16553579,39524923:1906443 -k2990,474:18460021,39524923:1906442 -) -(2990,475:6630773,40378327:11829248,505283,102891 -h2990,474:6630773,40378327:0,0,0 -r2990,532:6630773,40378327:0,608174,102891 -g2990,474:7941493,40378327 -g2990,474:7941493,40378327 -g2990,474:15032488,40378327 -g2990,474:16600764,40378327 -k2990,475:18128081,40378327:331940 -k2990,475:18460021,40378327:331940 -) -(2990,476:6630773,41231730:11829248,513147,102891 -h2990,475:6630773,41231730:0,0,0 -r2990,532:6630773,41231730:0,616038,102891 -g2990,475:7941493,41231730 -g2990,475:7941493,41231730 -g2990,475:13056577,41231730 -k2990,476:16355988,41231730:2104034 -k2990,476:18460021,41231730:2104033 -) -(2990,477:6630773,42085134:11829248,505283,102891 -h2990,476:6630773,42085134:0,0,0 -r2990,532:6630773,42085134:0,608174,102891 -g2990,476:7941493,42085134 -g2990,476:7941493,42085134 -g2990,476:13451759,42085134 -k2990,477:16553579,42085134:1906443 -k2990,477:18460021,42085134:1906442 -) -(2990,478:6630773,42938538:11829248,505283,102891 -h2990,477:6630773,42938538:0,0,0 -r2990,532:6630773,42938538:0,608174,102891 -g2990,477:7941493,42938538 -g2990,477:7941493,42938538 -g2990,477:12661395,42938538 -k2990,478:16158397,42938538:2301625 -k2990,478:18460021,42938538:2301624 -) -(2990,479:6630773,43791941:11829248,505283,102891 -h2990,478:6630773,43791941:0,0,0 -r2990,532:6630773,43791941:0,608174,102891 -g2990,478:7941493,43791941 -g2990,478:7941493,43791941 -g2990,478:12661395,43791941 -k2990,479:16158397,43791941:2301625 -k2990,479:18460021,43791941:2301624 -) -(2990,480:6630773,44645345:11829248,505283,102891 -h2990,479:6630773,44645345:0,0,0 -r2990,532:6630773,44645345:0,608174,102891 -g2990,479:7941493,44645345 -g2990,479:7941493,44645345 -g2990,479:10685485,44645345 -k2990,480:15170442,44645345:3289580 -k2990,480:18460021,44645345:3289579 +[1,2113:6630773,45706769:0,40108032,0 +(1,2113:6630773,45706769:0,40108032,0 +(1,2113:6630773,45706769:0,0,0 +g1,2113:6630773,45706769 ) +[1,2113:6630773,45706769:0,40108032,0 +h1,2113:6630773,6254097:0,0,0 ] -k2990,532:19606901,44645345:1146880 -r2990,532:19606901,44645345:0,39173091,126483 -k2990,532:20753781,44645345:1146880 -[2990,532:20753781,44645345:11829248,39046608,102891 -(2990,481:20753781,6254097:11829248,505283,102891 -h2990,480:20753781,6254097:0,0,0 -r2990,532:20753781,6254097:0,608174,102891 -g2990,480:22064501,6254097 -g2990,480:22064501,6254097 -g2990,480:24808493,6254097 -g2990,480:26376769,6254097 -g2990,480:27945045,6254097 -k2990,481:30861726,6254097:1721304 -k2990,481:32583029,6254097:1721303 -) -(2990,482:20753781,7096297:11829248,513147,102891 -h2990,481:20753781,7096297:0,0,0 -r2990,532:20753781,7096297:0,616038,102891 -g2990,481:22064501,7096297 -g2990,481:22064501,7096297 -g2990,481:27969949,7096297 -k2990,482:30874178,7096297:1708852 -k2990,482:32583029,7096297:1708851 -) -(2990,483:20753781,7938497:11829248,505283,102891 -h2990,482:20753781,7938497:0,0,0 -r2990,532:20753781,7938497:0,608174,102891 -g2990,482:22064501,7938497 -g2990,482:22064501,7938497 -g2990,482:26389221,7938497 -k2990,483:30083814,7938497:2499216 -k2990,483:32583029,7938497:2499215 -) -(2990,484:20753781,8780697:11829248,505283,126483 -h2990,483:20753781,8780697:0,0,0 -r2990,532:20753781,8780697:0,631766,126483 -g2990,483:22064501,8780697 -g2990,483:22064501,8780697 -g2990,483:24808493,8780697 -k2990,484:29293450,8780697:3289580 -k2990,484:32583029,8780697:3289579 -) -(2990,485:20753781,9622897:11829248,505283,126483 -h2990,484:20753781,9622897:0,0,0 -r2990,532:20753781,9622897:0,631766,126483 -g2990,484:22064501,9622897 -g2990,484:22064501,9622897 -g2990,484:24808493,9622897 -g2990,484:26376769,9622897 -g2990,484:27945045,9622897 -k2990,485:30861726,9622897:1721304 -k2990,485:32583029,9622897:1721303 -) -(2990,489:20753781,11132322:11829248,505283,126483 -h2990,488:20753781,11132322:0,0,0 -g2990,488:23021326,11132322 -g2990,488:24412000,11132322 -g2990,488:26119868,11132322 -k2990,489:30264693,11132322:2318337 -k2990,489:32583029,11132322:2318336 -) -(2990,490:20753781,11974522:11829248,505283,102891 -h2990,489:20753781,11974522:0,0,0 -r2990,532:20753781,11974522:0,608174,102891 -g2990,489:22064501,11974522 -g2990,489:22064501,11974522 -g2990,489:25598857,11974522 -k2990,490:30051701,11974522:2531328 -k2990,490:32583029,11974522:2531328 -) -(2990,491:20753781,12816722:11829248,505283,102891 -h2990,490:20753781,12816722:0,0,0 -r2990,532:20753781,12816722:0,608174,102891 -g2990,490:22064501,12816722 -g2990,490:22064501,12816722 -g2990,490:25598857,12816722 -g2990,490:27893272,12816722 -k2990,491:30835839,12816722:1747190 -k2990,491:32583029,12816722:1747190 -) -(2990,492:20753781,13658922:11829248,505283,102891 -h2990,491:20753781,13658922:0,0,0 -r2990,532:20753781,13658922:0,608174,102891 -g2990,491:22064501,13658922 -g2990,491:22064501,13658922 -g2990,491:25598857,13658922 -k2990,492:29688632,13658922:2894398 -k2990,492:32583029,13658922:2894397 -) -(2990,493:20753781,14501122:11829248,505283,102891 -h2990,492:20753781,14501122:0,0,0 -r2990,532:20753781,14501122:0,608174,102891 -g2990,492:22064501,14501122 -g2990,492:22064501,14501122 -g2990,492:24808493,14501122 -k2990,493:29656519,14501122:2926510 -k2990,493:32583029,14501122:2926510 -) -(2990,494:20753781,15343322:11829248,505283,102891 -h2990,493:20753781,15343322:0,0,0 -r2990,532:20753781,15343322:0,608174,102891 -g2990,493:22064501,15343322 -g2990,493:22064501,15343322 -g2990,493:25598857,15343322 -k2990,494:30051701,15343322:2531328 -k2990,494:32583029,15343322:2531328 -) -(2990,498:20753781,16852747:11829248,426639,126483 -h2990,497:20753781,16852747:0,0,0 -k2990,498:28206863,16852747:4376167 -k2990,498:32583029,16852747:4376166 -) -(2990,499:20753781,17694947:11829248,485622,102891 -h2990,498:20753781,17694947:0,0,0 -r2990,532:20753781,17694947:0,588513,102891 -g2990,498:22064501,17694947 -g2990,498:22064501,17694947 -g2990,498:22832582,17694947 -g2990,498:24002399,17694947 -k2990,499:28691173,17694947:3891856 -k2990,499:32583029,17694947:3891856 -) -(2990,500:20753781,18537147:11829248,485622,102891 -h2990,499:20753781,18537147:0,0,0 -r2990,532:20753781,18537147:0,588513,102891 -g2990,499:22064501,18537147 -g2990,499:22064501,18537147 -g2990,499:22832582,18537147 -g2990,499:24002399,18537147 -g2990,499:25172216,18537147 -k2990,500:29475311,18537147:3107718 -k2990,500:32583029,18537147:3107718 -) -(2990,501:20753781,19379347:11829248,485622,102891 -h2990,500:20753781,19379347:0,0,0 -r2990,532:20753781,19379347:0,588513,102891 -g2990,500:22064501,19379347 -g2990,500:22064501,19379347 -g2990,500:22832582,19379347 -g2990,500:24002399,19379347 -k2990,501:28691173,19379347:3891856 -k2990,501:32583029,19379347:3891856 -) -(2990,502:20753781,20221547:11829248,485622,102891 -h2990,501:20753781,20221547:0,0,0 -r2990,532:20753781,20221547:0,588513,102891 -g2990,501:22064501,20221547 -g2990,501:22064501,20221547 -g2990,501:23227764,20221547 -g2990,501:24397581,20221547 -k2990,502:29087994,20221547:3495036 -k2990,502:32583029,20221547:3495035 -) -(2990,503:20753781,21063747:11829248,505283,102891 -h2990,502:20753781,21063747:0,0,0 -r2990,532:20753781,21063747:0,608174,102891 -g2990,502:22064501,21063747 -g2990,502:22064501,21063747 -g2990,502:22832582,21063747 -g2990,502:24002399,21063747 -k2990,503:28890403,21063747:3692627 -k2990,503:32583029,21063747:3692626 -) -(2990,504:20753781,21905947:11829248,485622,102891 -h2990,503:20753781,21905947:0,0,0 -r2990,532:20753781,21905947:0,588513,102891 -g2990,503:22064501,21905947 -g2990,503:22064501,21905947 -g2990,503:22832582,21905947 -k2990,504:28106265,21905947:4476765 -k2990,504:32583029,21905947:4476764 -) -(2990,505:20753781,22748147:11829248,485622,102891 -h2990,504:20753781,22748147:0,0,0 -r2990,532:20753781,22748147:0,588513,102891 -g2990,504:22064501,22748147 -g2990,504:22064501,22748147 -g2990,504:22832582,22748147 -k2990,505:28106265,22748147:4476765 -k2990,505:32583029,22748147:4476764 -) -(2990,506:20753781,23590347:11829248,485622,102891 -h2990,505:20753781,23590347:0,0,0 -r2990,532:20753781,23590347:0,588513,102891 -g2990,505:22064501,23590347 -g2990,505:22064501,23590347 -g2990,505:23227764,23590347 -g2990,505:24397581,23590347 -g2990,505:25567398,23590347 -g2990,505:26737215,23590347 -k2990,506:30058581,23590347:2524448 -k2990,506:32583029,23590347:2524448 -) -(2990,507:20753781,24432547:11829248,485622,102891 -h2990,506:20753781,24432547:0,0,0 -r2990,532:20753781,24432547:0,588513,102891 -g2990,506:22064501,24432547 -g2990,506:22064501,24432547 -g2990,506:23622946,24432547 -k2990,507:28700676,24432547:3882353 -k2990,507:32583029,24432547:3882353 -) -(2990,508:20753781,25274747:11829248,485622,102891 -h2990,507:20753781,25274747:0,0,0 -r2990,532:20753781,25274747:0,588513,102891 -g2990,507:22064501,25274747 -g2990,507:22064501,25274747 -g2990,507:23227764,25274747 -k2990,508:28303856,25274747:4279174 -k2990,508:32583029,25274747:4279173 -) -(2990,509:20753781,26116946:11829248,485622,102891 -h2990,508:20753781,26116946:0,0,0 -r2990,532:20753781,26116946:0,588513,102891 -g2990,508:22064501,26116946 -g2990,508:22064501,26116946 -g2990,508:22832582,26116946 -k2990,509:28106265,26116946:4476765 -k2990,509:32583029,26116946:4476764 -) -(2990,510:20753781,26959146:11829248,485622,102891 -h2990,509:20753781,26959146:0,0,0 -r2990,532:20753781,26959146:0,588513,102891 -g2990,509:22064501,26959146 -g2990,509:22064501,26959146 -g2990,509:23227764,26959146 -g2990,509:24397581,26959146 -k2990,510:29087994,26959146:3495036 -k2990,510:32583029,26959146:3495035 -) -(2990,511:20753781,27801346:11829248,485622,102891 -h2990,510:20753781,27801346:0,0,0 -r2990,532:20753781,27801346:0,588513,102891 -g2990,510:22064501,27801346 -g2990,510:22064501,27801346 -g2990,510:22832582,27801346 -k2990,511:28106265,27801346:4476765 -k2990,511:32583029,27801346:4476764 -) -(2990,512:20753781,28643546:11829248,485622,102891 -h2990,511:20753781,28643546:0,0,0 -r2990,532:20753781,28643546:0,588513,102891 -g2990,511:22064501,28643546 -g2990,511:22064501,28643546 -g2990,511:23227764,28643546 -k2990,512:28303856,28643546:4279174 -k2990,512:32583029,28643546:4279173 -) -(2990,513:20753781,29485746:11829248,505283,102891 -h2990,512:20753781,29485746:0,0,0 -r2990,532:20753781,29485746:0,608174,102891 -g2990,512:22064501,29485746 -g2990,512:22064501,29485746 -g2990,512:22854865,29485746 -g2990,512:23645229,29485746 -g2990,512:24413310,29485746 -k2990,513:29095858,29485746:3487171 -k2990,513:32583029,29485746:3487171 -) -(2990,514:20753781,30327946:11829248,505283,102891 -h2990,513:20753781,30327946:0,0,0 -r2990,532:20753781,30327946:0,608174,102891 -g2990,513:22064501,30327946 -g2990,513:22064501,30327946 -g2990,513:22854865,30327946 -g2990,513:23622946,30327946 -g2990,513:24792763,30327946 -k2990,514:29086355,30327946:3496674 -k2990,514:32583029,30327946:3496674 -) -(2990,515:20753781,31170146:11829248,505283,102891 -h2990,514:20753781,31170146:0,0,0 -r2990,532:20753781,31170146:0,608174,102891 -g2990,514:22064501,31170146 -g2990,514:22064501,31170146 -g2990,514:23250047,31170146 -g2990,514:24413310,31170146 -k2990,515:28896629,31170146:3686401 -k2990,515:32583029,31170146:3686400 -) -(2990,516:20753781,32012346:11829248,505283,102891 -h2990,515:20753781,32012346:0,0,0 -r2990,532:20753781,32012346:0,608174,102891 -g2990,515:22064501,32012346 -g2990,515:22064501,32012346 -g2990,515:24018128,32012346 -g2990,515:25187945,32012346 -g2990,515:26357762,32012346 -k2990,516:30431154,32012346:2151876 -k2990,516:32583029,32012346:2151875 -) -(2990,517:20753781,32854546:11829248,505283,102891 -h2990,516:20753781,32854546:0,0,0 -r2990,532:20753781,32854546:0,608174,102891 -g2990,516:22064501,32854546 -g2990,516:22064501,32854546 -g2990,516:23227764,32854546 -g2990,516:24397581,32854546 -k2990,517:28888764,32854546:3694265 -k2990,517:32583029,32854546:3694265 -) -(2990,518:20753781,33696746:11829248,513147,102891 -h2990,517:20753781,33696746:0,0,0 -r2990,532:20753781,33696746:0,616038,102891 -g2990,517:22064501,33696746 -g2990,517:22064501,33696746 -g2990,517:22832582,33696746 -g2990,517:24002399,33696746 -g2990,517:25172216,33696746 -k2990,518:29276082,33696746:3306948 -k2990,518:32583029,33696746:3306947 -) -(2990,519:20753781,34538946:11829248,485622,102891 -h2990,518:20753781,34538946:0,0,0 -r2990,532:20753781,34538946:0,588513,102891 -g2990,518:22064501,34538946 -g2990,518:22064501,34538946 -g2990,518:23622946,34538946 -k2990,519:28501447,34538946:4081583 -k2990,519:32583029,34538946:4081582 -) -(2990,520:20753781,35381146:11829248,485622,102891 -h2990,519:20753781,35381146:0,0,0 -r2990,532:20753781,35381146:0,588513,102891 -g2990,519:22064501,35381146 -g2990,519:22064501,35381146 -g2990,519:24018128,35381146 -g2990,519:27109461,35381146 -k2990,520:30443934,35381146:2139096 -k2990,520:32583029,35381146:2139095 -) -(2990,521:20753781,36223346:11829248,505283,102891 -h2990,520:20753781,36223346:0,0,0 -r2990,532:20753781,36223346:0,608174,102891 -g2990,520:22064501,36223346 -g2990,520:22064501,36223346 -g2990,520:23622946,36223346 -k2990,521:28501447,36223346:4081583 -k2990,521:32583029,36223346:4081582 -) -(2990,522:20753781,37065546:11829248,485622,102891 -h2990,521:20753781,37065546:0,0,0 -r2990,532:20753781,37065546:0,588513,102891 -g2990,521:22064501,37065546 -g2990,521:22064501,37065546 -g2990,521:24018128,37065546 -k2990,522:28898267,37065546:3684762 -k2990,522:32583029,37065546:3684762 -) -(2990,523:20753781,37907746:11829248,485622,102891 -h2990,522:20753781,37907746:0,0,0 -r2990,532:20753781,37907746:0,588513,102891 -g2990,522:22064501,37907746 -g2990,522:22064501,37907746 -g2990,522:23622946,37907746 -k2990,523:29462204,37907746:3120825 -k2990,523:32583029,37907746:3120825 -) -(2990,524:20753781,38749945:11829248,485622,102891 -h2990,523:20753781,38749945:0,0,0 -r2990,532:20753781,38749945:0,588513,102891 -g2990,523:22064501,38749945 -g2990,523:22064501,38749945 -g2990,523:24018128,38749945 -k2990,524:28898267,38749945:3684762 -k2990,524:32583029,38749945:3684762 -) -(2990,525:20753781,39592145:11829248,485622,102891 -h2990,524:20753781,39592145:0,0,0 -r2990,532:20753781,39592145:0,588513,102891 -g2990,524:22064501,39592145 -g2990,524:22064501,39592145 -g2990,524:23227764,39592145 -k2990,525:28303856,39592145:4279174 -k2990,525:32583029,39592145:4279173 -) -(2990,526:20753781,40434345:11829248,505283,102891 -h2990,525:20753781,40434345:0,0,0 -r2990,532:20753781,40434345:0,608174,102891 -g2990,525:22064501,40434345 -g2990,525:22064501,40434345 -g2990,525:24018128,40434345 -g2990,525:25187945,40434345 -g2990,525:26357762,40434345 -k2990,526:29868855,40434345:2714175 -k2990,526:32583029,40434345:2714174 -) -(2990,527:20753781,41276545:11829248,485622,102891 -h2990,526:20753781,41276545:0,0,0 -r2990,532:20753781,41276545:0,588513,102891 -g2990,526:22064501,41276545 -g2990,526:22064501,41276545 -g2990,526:22832582,41276545 -k2990,527:28106265,41276545:4476765 -k2990,527:32583029,41276545:4476764 -) -(2990,528:20753781,42118745:11829248,485622,102891 -h2990,527:20753781,42118745:0,0,0 -r2990,532:20753781,42118745:0,588513,102891 -g2990,527:22064501,42118745 -g2990,527:22064501,42118745 -g2990,527:23227764,42118745 -k2990,528:28303856,42118745:4279174 -k2990,528:32583029,42118745:4279173 -) -(2990,529:20753781,42960945:11829248,485622,102891 -h2990,528:20753781,42960945:0,0,0 -r2990,532:20753781,42960945:0,588513,102891 -g2990,528:22064501,42960945 -g2990,528:22064501,42960945 -g2990,528:22832582,42960945 -k2990,529:28106265,42960945:4476765 -k2990,529:32583029,42960945:4476764 -) -(2990,530:20753781,43803145:11829248,505283,102891 -h2990,529:20753781,43803145:0,0,0 -r2990,532:20753781,43803145:0,608174,102891 -g2990,529:22064501,43803145 -g2990,529:22064501,43803145 -g2990,529:22832582,43803145 -k2990,530:28106265,43803145:4476765 -k2990,530:32583029,43803145:4476764 -) -(2990,531:20753781,44645345:11829248,505283,102891 -h2990,530:20753781,44645345:0,0,0 -r2990,532:20753781,44645345:0,608174,102891 -g2990,530:22064501,44645345 -g2990,530:22064501,44645345 -g2990,530:23227764,44645345 -k2990,531:28303856,44645345:4279174 -k2990,531:32583029,44645345:4279173 +(1,2113:6630773,45706769:0,0,0 +g1,2113:6630773,45706769 ) -] -(2990,532:32583029,44645345:0,355205,126483 -h2990,532:32583029,44645345:420741,355205,126483 -k2990,532:32583029,44645345:-420741 ) +] +(1,2113:6630773,47279633:25952256,0,0 +h1,2113:6630773,47279633:25952256,0,0 ) ] -(2990,532:32583029,45706769:0,0,0 -g2990,532:32583029,45706769 +(1,2113:4262630,4025873:0,0,0 +[1,2113:-473656,4025873:0,0,0 +(1,2113:-473656,-710413:0,0,0 +(1,2113:-473656,-710413:0,0,0 +g1,2113:-473656,-710413 ) +g1,2113:-473656,-710413 ) ] -(2990,532:6630773,47279633:25952256,0,0 -h2990,532:6630773,47279633:25952256,0,0 ) ] -(2990,532:4262630,4025873:0,0,0 -[2990,532:-473656,4025873:0,0,0 -(2990,532:-473656,-710413:0,0,0 -(2990,532:-473656,-710413:0,0,0 -g2990,532:-473656,-710413 +!3307 +}45 +Input:578:C:\Users\Aphalo\Documents\Own_manuscripts\Books\learnr-book-crc-2ed\using-r-main-crc.ind +!109 +{46 +[1,2114:4262630,47279633:28320399,43253760,0 +(1,2114:4262630,4025873:0,0,0 +[1,2114:-473656,4025873:0,0,0 +(1,2114:-473656,-710413:0,0,0 +(1,2114:-473656,-644877:0,0,0 +k1,2114:-473656,-644877:-65536 ) -g2990,532:-473656,-710413 +(1,2114:-473656,4736287:0,0,0 +k1,2114:-473656,4736287:5209943 ) -] +g1,2114:-473656,-710413 ) ] -!30718 -}393 -Input:2991:C:\Users\Aphalo\Documents\Own_manuscripts\Books\learnr-book-crc-2ed\rindex.ind -!102 -{394 -[2991,87:4262630,47279633:28320399,43253760,11795 -(2991,87:4262630,4025873:0,0,0 -[2991,87:-473656,4025873:0,0,0 -(2991,87:-473656,-710413:0,0,0 -(2991,87:-473656,-644877:0,0,0 -k2991,87:-473656,-644877:-65536 ) -(2991,87:-473656,4736287:0,0,0 -k2991,87:-473656,4736287:5209943 +[1,2114:6630773,47279633:25952256,43253760,0 +[1,2114:6630773,4812305:25952256,786432,0 +(1,2114:6630773,4812305:25952256,0,0 +(1,2114:6630773,4812305:25952256,0,0 +g1,2114:3078558,4812305 +[1,2114:3078558,4812305:0,0,0 +(1,2114:3078558,2439708:0,1703936,0 +k1,2114:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,2114:2537886,2439708:1179648,16384,0 ) -g2991,87:-473656,-710413 +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,2114:3078558,1915420:16384,1179648,0 ) -] -) -[2991,87:6630773,47279633:25952256,43253760,11795 -[2991,87:6630773,4812305:25952256,786432,0 -(2991,87:6630773,4812305:25952256,0,0 -(2991,87:6630773,4812305:25952256,0,0 -g2991,87:3078558,4812305 -[2991,87:3078558,4812305:0,0,0 -(2991,87:3078558,2439708:0,1703936,0 -k2991,87:1358238,2439708:-1720320 -(2991,1:1358238,2439708:1720320,1703936,0 -(2991,1:1358238,2439708:1179648,16384,0 -r2991,87:2537886,2439708:1179648,16384,0 -) -g2991,1:3062174,2439708 -(2991,1:3062174,2439708:16384,1703936,0 -[2991,1:3062174,2439708:25952256,1703936,0 -(2991,1:3062174,1915420:25952256,1179648,0 -(2991,1:3062174,1915420:16384,1179648,0 -r2991,87:3078558,1915420:16384,1179648,0 -) -k2991,1:29014430,1915420:25935872 -g2991,1:29014430,1915420 +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) ] ) ) ) ] -[2991,87:3078558,4812305:0,0,0 -(2991,87:3078558,2439708:0,1703936,0 -g2991,87:29030814,2439708 -g2991,87:36135244,2439708 -(2991,1:36135244,2439708:1720320,1703936,0 -(2991,1:36135244,2439708:16384,1703936,0 -[2991,1:36135244,2439708:25952256,1703936,0 -(2991,1:36135244,1915420:25952256,1179648,0 -(2991,1:36135244,1915420:16384,1179648,0 -r2991,87:36151628,1915420:16384,1179648,0 -) -k2991,1:62087500,1915420:25935872 -g2991,1:62087500,1915420 +[1,2114:3078558,4812305:0,0,0 +(1,2114:3078558,2439708:0,1703936,0 +g1,2114:29030814,2439708 +g1,2114:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,2114:36151628,1915420:16384,1179648,0 +) +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) ] ) -g2991,1:36675916,2439708 -(2991,1:36675916,2439708:1179648,16384,0 -r2991,87:37855564,2439708:1179648,16384,0 +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,2114:37855564,2439708:1179648,16384,0 ) ) -k2991,87:3078556,2439708:-34777008 +k1,2114:3078556,2439708:-34777008 ) ] -[2991,87:3078558,4812305:0,0,0 -(2991,87:3078558,49800853:0,16384,2228224 -k2991,87:1358238,49800853:-1720320 -(2991,1:1358238,49800853:1720320,16384,2228224 -(2991,1:1358238,49800853:1179648,16384,0 -r2991,87:2537886,49800853:1179648,16384,0 -) -g2991,1:3062174,49800853 -(2991,1:3062174,52029077:16384,1703936,0 -[2991,1:3062174,52029077:25952256,1703936,0 -(2991,1:3062174,51504789:25952256,1179648,0 -(2991,1:3062174,51504789:16384,1179648,0 -r2991,87:3078558,51504789:16384,1179648,0 -) -k2991,1:29014430,51504789:25935872 -g2991,1:29014430,51504789 +[1,2114:3078558,4812305:0,0,0 +(1,2114:3078558,49800853:0,16384,2228224 +k1,2114:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,2114:2537886,49800853:1179648,16384,0 +) +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,2114:3078558,51504789:16384,1179648,0 +) +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) ] ) ) ) ] -[2991,87:3078558,4812305:0,0,0 -(2991,87:3078558,49800853:0,16384,2228224 -g2991,87:29030814,49800853 -g2991,87:36135244,49800853 -(2991,1:36135244,49800853:1720320,16384,2228224 -(2991,1:36135244,52029077:16384,1703936,0 -[2991,1:36135244,52029077:25952256,1703936,0 -(2991,1:36135244,51504789:25952256,1179648,0 -(2991,1:36135244,51504789:16384,1179648,0 -r2991,87:36151628,51504789:16384,1179648,0 -) -k2991,1:62087500,51504789:25935872 -g2991,1:62087500,51504789 +[1,2114:3078558,4812305:0,0,0 +(1,2114:3078558,49800853:0,16384,2228224 +g1,2114:29030814,49800853 +g1,2114:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,2114:36151628,51504789:16384,1179648,0 +) +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 ) ] ) -g2991,1:36675916,49800853 -(2991,1:36675916,49800853:1179648,16384,0 -r2991,87:37855564,49800853:1179648,16384,0 +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,2114:37855564,49800853:1179648,16384,0 ) ) -k2991,87:3078556,49800853:-34777008 +k1,2114:3078556,49800853:-34777008 ) ] -g2991,87:6630773,4812305 +g1,2114:6630773,4812305 ) ) ] -[2991,87:6630773,45706769:25952256,40108032,0 -(2991,87:6630773,45706769:25952256,40108032,0 -(2991,87:6630773,45706769:0,0,0 -g2991,87:6630773,45706769 +[1,2114:6630773,45706769:25952256,40108032,0 +(1,2114:6630773,45706769:25952256,40108032,0 +(1,2114:6630773,45706769:0,0,0 +g1,2114:6630773,45706769 ) -[2991,87:6630773,45706769:25952256,40108032,0 -[2991,1:6630773,12106481:25952256,6507744,0 -(2991,1:6630773,7073297:25952256,32768,229376 -(2991,1:6630773,7073297:0,32768,229376 -(2991,1:6630773,7073297:5505024,32768,229376 -r2991,87:12135797,7073297:5505024,262144,229376 +[1,2114:6630773,45706769:25952256,40108032,0 +[578,1:6630773,12106481:25952256,6507744,0 +(578,1:6630773,7073297:25952256,32768,229376 +(578,1:6630773,7073297:0,32768,229376 +(578,1:6630773,7073297:5505024,32768,229376 +r1,2114:12135797,7073297:5505024,262144,229376 ) -k2991,1:6630773,7073297:-5505024 +k578,1:6630773,7073297:-5505024 ) ) -(2991,1:6630773,8803457:25952256,923664,227671 -h2991,1:6630773,8803457:0,0,0 -g2991,1:13383078,8803457 -g2991,1:16925561,8803457 -g2991,1:18489774,8803457 -g2991,1:19654086,8803457 -k2991,1:28056719,8803457:4526310 -k2991,1:32583029,8803457:4526310 +(578,1:6630773,8803457:25952256,909509,22412 +h578,1:6630773,8803457:0,0,0 +g578,1:11695002,8803457 +k578,1:23726232,8803457:8856797 +k578,1:32583029,8803457:8856797 ) -(2991,1:6630773,9419505:25952256,32768,0 -(2991,1:6630773,9419505:5505024,32768,0 -r2991,87:12135797,9419505:5505024,32768,0 +(578,1:6630773,9419505:25952256,32768,0 +(578,1:6630773,9419505:5505024,32768,0 +r1,2114:12135797,9419505:5505024,32768,0 +) +k578,1:22359413,9419505:10223616 +k578,1:32583029,9419505:10223616 +) +] +(578,107:6630773,42344993:25952256,29265952,126483 +[578,107:6630773,42344993:11829248,29265952,126483 +(578,4:6630773,13734401:11829248,513147,126483 +h578,3:6630773,13734401:0,0,0 +g578,3:8593576,13734401 +g578,3:11992273,13734401 +g578,3:13162090,13734401 +k578,4:16209515,13734401:2250507 +k578,4:18460021,13734401:2250506 +) +(578,8:6630773,15207005:11829248,505283,134348 +h578,7:6630773,15207005:0,0,0 +g578,7:10557034,15207005 +k578,8:14707757,15207005:3752264 +k578,8:18460021,15207005:3752264 +) +(578,9:6630773,16048493:11829248,505283,102891 +h578,8:6630773,16048493:0,0,0 +g578,8:10744467,16048493 +k578,9:14801474,16048493:3658548 +k578,9:18460021,16048493:3658547 +) +(578,13:6630773,17521097:11829248,485622,102891 +h578,12:6630773,17521097:0,0,0 +g578,12:7457181,17521097 +k578,13:13357060,17521097:5102961 +k578,13:18460021,17521097:5102961 +) +(578,14:6630773,18362585:11829248,505283,126483 +h578,13:6630773,18362585:0,0,0 +g578,13:10243772,18362585 +g578,13:11939188,18362585 +g578,13:15828749,18362585 +k578,14:17343615,18362585:1116407 +k578,14:18460021,18362585:1116406 +) +(578,15:6630773,19204073:11829248,505283,102891 +h578,14:6630773,19204073:0,0,0 +g578,14:10423341,19204073 +g578,14:13871845,19204073 +k578,15:16365163,19204073:2094859 +k578,15:18460021,19204073:2094858 +) +(578,16:6630773,20045561:11829248,505283,102891 +h578,15:6630773,20045561:0,0,0 +g578,15:10423341,20045561 +g578,15:14312902,20045561 +k578,16:16784921,20045561:1675101 +k578,16:18460021,20045561:1675100 +) +(578,17:6630773,20887049:11829248,513147,102891 +h578,16:6630773,20887049:0,0,0 +g578,16:9117864,20887049 +g578,16:9976385,20887049 +g578,16:13251219,20887049 +g578,16:14974160,20887049 +k578,17:16916320,20887049:1543701 +k578,17:18460021,20887049:1543701 +) +(578,21:6630773,22359653:11829248,513147,126483 +h578,20:6630773,22359653:0,0,0 +g578,20:7777653,22359653 +g578,20:9565475,22359653 +k578,21:14411207,22359653:4048814 +k578,21:18460021,22359653:4048814 +) +(578,22:6630773,23201141:11829248,513147,134348 +h578,21:6630773,23201141:0,0,0 +g578,21:9105412,23201141 +k578,22:14983992,23201141:3476030 +k578,22:18460021,23201141:3476029 +) +(578,23:6630773,24042629:11829248,505283,134348 +h578,22:6630773,24042629:0,0,0 +r1,2114:6630773,24042629:0,639631,134348 +g578,22:7941493,24042629 +g578,22:7941493,24042629 +g578,22:9159807,24042629 +g578,22:9804025,24042629 +g578,22:13019221,24042629 +k578,23:16138080,24042629:2321941 +k578,23:18460021,24042629:2321941 +) +(578,27:6630773,25515233:11829248,485622,102891 +h578,26:6630773,25515233:0,0,0 +g578,26:9720795,25515233 +k578,27:14488867,25515233:3971154 +k578,27:18460021,25515233:3971154 +) +(578,28:6630773,26356721:11829248,513147,126483 +h578,27:6630773,26356721:0,0,0 +r1,2114:6630773,26356721:0,639630,126483 +g578,27:7941493,26356721 +g578,27:7941493,26356721 +g578,27:9088373,26356721 +g578,27:10876195,26356721 +k578,28:15066567,26356721:3393454 +k578,28:18460021,26356721:3393454 +) +(578,29:6630773,27198209:11829248,513147,134348 +h578,28:6630773,27198209:0,0,0 +r1,2114:6630773,27198209:0,647495,134348 +g578,28:7941493,27198209 +g578,28:7941493,27198209 +g578,28:10480357,27198209 +g578,28:11338878,27198209 +g578,28:13457001,27198209 +k578,29:16356970,27198209:2103051 +k578,29:18460021,27198209:2103051 +) +(578,30:6630773,28039697:11829248,505283,126483 +h578,29:6630773,28039697:0,0,0 +r1,2114:6630773,28039697:0,631766,126483 +g578,29:7941493,28039697 +g578,29:7941493,28039697 +g578,29:10157265,28039697 +g578,29:11945087,28039697 +k578,30:15601013,28039697:2859008 +k578,30:18460021,28039697:2859008 +) +(578,31:6630773,28881185:11829248,505283,126483 +h578,30:6630773,28881185:0,0,0 +r1,2114:6630773,28881185:0,631766,126483 +g578,30:7941493,28881185 +g578,30:7941493,28881185 +g578,30:9830240,28881185 +g578,30:11618062,28881185 +k578,31:15437501,28881185:3022521 +k578,31:18460021,28881185:3022520 +) +(578,35:6630773,30353789:11829248,505283,102891 +h578,34:6630773,30353789:0,0,0 +g578,34:8909459,30353789 +k578,35:13883970,30353789:4576052 +k578,35:18460021,30353789:4576051 +) +(578,39:6630773,31826393:11829248,505283,134348 +h578,38:6630773,31826393:0,0,0 +k578,39:14131696,31826393:4328325 +k578,39:18460021,31826393:4328325 +) +(578,40:6630773,32667881:11829248,485622,102891 +h578,39:6630773,32667881:0,0,0 +r1,2114:6630773,32667881:0,588513,102891 +g578,39:7941493,32667881 +g578,39:7941493,32667881 +g578,39:8767901,32667881 +k578,40:14012420,32667881:4447601 +k578,40:18460021,32667881:4447601 +) +(578,41:6630773,33509369:11829248,505283,102891 +h578,40:6630773,33509369:0,0,0 +r1,2114:6630773,33509369:0,608174,102891 +g578,40:7941493,33509369 +g578,40:7941493,33509369 +g578,40:11617407,33509369 +k578,41:15237944,33509369:3222078 +k578,41:18460021,33509369:3222077 +) +(578,42:6630773,34350857:11829248,505283,102891 +h578,41:6630773,34350857:0,0,0 +r1,2114:6630773,34350857:0,608174,102891 +g578,41:7941493,34350857 +g578,41:7941493,34350857 +g578,41:12080091,34350857 +k578,42:15469286,34350857:2990736 +k578,42:18460021,34350857:2990735 +) +(578,43:6630773,35192345:11829248,485622,173670 +h578,42:6630773,35192345:0,0,0 +[578,42:6759879,35192345:341312,473825,0 +(578,42:6759879,35054326:341312,335806,0 +) +] +(578,42:7328145,35366015:370934,473825,0 +) +g578,42:8420630,35192345 +k578,43:13639555,35192345:4820466 +k578,43:18460021,35192345:4820466 +) +(578,44:6630773,36033833:11829248,505283,134348 +h578,43:6630773,36033833:0,0,0 +g578,43:9089028,36033833 +g578,43:13814173,36033833 +k578,44:16336327,36033833:2123695 +k578,44:18460021,36033833:2123694 +) +(578,45:6630773,36875321:11829248,505283,126483 +h578,44:6630773,36875321:0,0,0 +g578,44:8748896,36875321 +g578,44:9915436,36875321 +g578,44:11372301,36875321 +k578,45:16274723,36875321:2185299 +k578,45:18460021,36875321:2185298 +) +(578,46:6630773,37716809:11829248,513147,102891 +h578,45:6630773,37716809:0,0,0 +r1,2114:6630773,37716809:0,616038,102891 +g578,45:7941493,37716809 +g578,45:7941493,37716809 +g578,45:9984250,37716809 +g578,45:14074351,37716809 +g578,45:16368766,37716809 +k578,46:17812853,37716809:647169 +k578,46:18460021,37716809:647168 +) +(578,47:6630773,38558297:11829248,505283,102891 +h578,46:6630773,38558297:0,0,0 +r1,2114:6630773,38558297:0,608174,102891 +g578,46:7941493,38558297 +g578,46:7941493,38558297 +g578,46:10431861,38558297 +k578,47:14844400,38558297:3615621 +k578,47:18460021,38558297:3615621 +) +(578,51:6630773,40030901:11829248,505283,102891 +h578,50:6630773,40030901:0,0,0 +g578,50:10306687,40030901 +k578,51:14582584,40030901:3877438 +k578,51:18460021,40030901:3877437 +) +(578,52:6630773,40872389:11829248,505283,102891 +h578,51:6630773,40872389:0,0,0 +g578,51:12776083,40872389 +k578,52:16016511,40872389:2443510 +k578,52:18460021,40872389:2443510 +) +(578,56:6630773,42344993:11829248,505283,126483 +h578,55:6630773,42344993:0,0,0 +g578,55:8947470,42344993 +g578,55:11863822,42344993 +g578,55:13981945,42344993 +k578,56:16619442,42344993:1840579 +k578,56:18460021,42344993:1840579 +) +] +k578,107:19606901,42344993:1146880 +r1,2114:19606901,42344993:0,29392435,126483 +k578,107:20753781,42344993:1146880 +[578,107:20753781,42344993:11829248,29265952,102891 +(578,60:20753781,13734401:11829248,505283,134348 +h578,59:20753781,13734401:0,0,0 +g578,59:22912536,13734401 +g578,59:25353752,13734401 +k578,60:29366850,13734401:3216180 +k578,60:32583029,13734401:3216179 +) +(578,61:20753781,14584614:11829248,505283,134348 +h578,60:20753781,14584614:0,0,0 +r1,2114:20753781,14584614:0,639631,134348 +g578,60:22064501,14584614 +g578,60:22064501,14584614 +g578,60:22949892,14584614 +g578,60:26123800,14584614 +g578,60:28692811,14584614 +k578,61:31036379,14584614:1546650 +k578,61:32583029,14584614:1546650 +) +(578,65:20753781,16235599:11829248,505283,134348 +h578,64:20753781,16235599:0,0,0 +k578,65:28123632,16235599:4459397 +k578,65:32583029,16235599:4459397 +) +(578,66:20753781,17085812:11829248,505283,134348 +h578,65:20753781,17085812:0,0,0 +r1,2114:20753781,17085812:0,639631,134348 +g578,65:22064501,17085812 +g578,65:22064501,17085812 +g578,65:25990762,17085812 +k578,66:29486125,17085812:3096904 +k578,66:32583029,17085812:3096904 +) +(578,67:20753781,17936024:11829248,505283,102891 +h578,66:20753781,17936024:0,0,0 +r1,2114:20753781,17936024:0,608174,102891 +g578,66:22064501,17936024 +g578,66:22064501,17936024 +g578,66:26178195,17936024 +k578,67:29579842,17936024:3003188 +k578,67:32583029,17936024:3003187 +) +(578,68:20753781,18786237:11829248,505283,102891 +h578,67:20753781,18786237:0,0,0 +r1,2114:20753781,18786237:0,608174,102891 +g578,67:22064501,18786237 +g578,67:22064501,18786237 +g578,67:24343187,18786237 +k578,68:28662338,18786237:3920692 +k578,68:32583029,18786237:3920691 +) +(578,69:20753781,19636450:11829248,505283,102891 +h578,68:20753781,19636450:0,0,0 +r1,2114:20753781,19636450:0,608174,102891 +g578,68:22064501,19636450 +g578,68:22064501,19636450 +g578,68:28209811,19636450 +k578,69:30794879,19636450:1788150 +k578,69:32583029,19636450:1788150 +) +(578,70:20753781,20486663:11829248,505283,134348 +h578,69:20753781,20486663:0,0,0 +r1,2114:20753781,20486663:0,639631,134348 +g578,69:22064501,20486663 +g578,69:22064501,20486663 +g578,69:25781702,20486663 +k578,70:29381595,20486663:3201434 +k578,70:32583029,20486663:3201434 +) +(578,71:20753781,21336876:11829248,505283,102891 +h578,70:20753781,21336876:0,0,0 +r1,2114:20753781,21336876:0,608174,102891 +g578,70:22064501,21336876 +g578,70:22064501,21336876 +g578,70:25140760,21336876 +k578,71:29061124,21336876:3521905 +k578,71:32583029,21336876:3521905 +) +(578,72:20753781,22187089:11829248,505283,126483 +h578,71:20753781,22187089:0,0,0 +r1,2114:20753781,22187089:0,631766,126483 +g578,71:22064501,22187089 +g578,71:22064501,22187089 +g578,71:25712234,22187089 +k578,72:29546091,22187089:3036939 +k578,72:32583029,22187089:3036938 +) +(578,73:20753781,23037301:11829248,505283,134348 +h578,72:20753781,23037301:0,0,0 +g578,72:24470982,23037301 +k578,73:28726235,23037301:3856794 +k578,73:32583029,23037301:3856794 +) +(578,74:20753781,23887514:11829248,355205,134348 +h578,73:20753781,23887514:0,0,0 +k578,74:28688225,23887514:3894805 +k578,74:32583029,23887514:3894804 +) +(578,75:20753781,24737727:11829248,505283,102891 +h578,74:20753781,24737727:0,0,0 +r1,2114:20753781,24737727:0,608174,102891 +g578,74:22064501,24737727 +g578,74:22064501,24737727 +g578,74:24861577,24737727 +g578,74:25632935,24737727 +g578,74:26404293,24737727 +g578,74:27175651,24737727 +k578,75:30078570,24737727:2504460 +k578,75:32583029,24737727:2504459 +) +(578,76:20753781,25587940:11829248,485622,102891 +h578,75:20753781,25587940:0,0,0 +r1,2114:20753781,25587940:0,588513,102891 +g578,75:22064501,25587940 +g578,75:22064501,25587940 +g578,75:23729770,25587940 +k578,76:28355629,25587940:4227400 +k578,76:32583029,25587940:4227400 +) +(578,80:20753781,27238925:11829248,513147,134348 +h578,79:20753781,27238925:0,0,0 +g578,79:23812346,27238925 +g578,79:24670867,27238925 +g578,79:28446396,27238925 +k578,80:30913172,27238925:1669858 +k578,80:32583029,27238925:1669857 +) +(578,81:20753781,28089138:11829248,505283,102891 +h578,80:20753781,28089138:0,0,0 +g578,80:24892379,28089138 +k578,81:28936934,28089138:3646096 +k578,81:32583029,28089138:3646095 +) +(578,82:20753781,28939350:11829248,505283,102891 +h578,81:20753781,28939350:0,0,0 +g578,81:23550857,28939350 +g578,81:24322215,28939350 +g578,81:25093573,28939350 +g578,81:25864931,28939350 +k578,82:29423210,28939350:3159820 +k578,82:32583029,28939350:3159819 +) +(578,86:20753781,30590335:11829248,477757,126483 +h578,85:20753781,30590335:0,0,0 +g578,85:23288058,30590335 +k578,86:28134773,30590335:4448256 +k578,86:32583029,30590335:4448256 +) +(578,87:20753781,31440548:11829248,505283,134348 +h578,86:20753781,31440548:0,0,0 +r1,2114:20753781,31440548:0,639631,134348 +g578,86:22064501,31440548 +g578,86:22064501,31440548 +g578,86:25759420,31440548 +k578,87:29370454,31440548:3212575 +k578,87:32583029,31440548:3212575 +) +(578,88:20753781,32290761:11829248,513147,102891 +h578,87:20753781,32290761:0,0,0 +r1,2114:20753781,32290761:0,616038,102891 +g578,87:22064501,32290761 +g578,87:22064501,32290761 +g578,87:25519559,32290761 +k578,88:29250524,32290761:3332506 +k578,88:32583029,32290761:3332505 +) +(578,89:20753781,33140974:11829248,505283,126483 +h578,88:20753781,33140974:0,0,0 +r1,2114:20753781,33140974:0,631766,126483 +g578,88:22064501,33140974 +g578,88:22064501,33140974 +g578,88:25831510,33140974 +k578,89:29406499,33140974:3176530 +k578,89:32583029,33140974:3176530 +) +(578,90:20753781,33991187:11829248,485622,134348 +h578,89:20753781,33991187:0,0,0 +r1,2114:20753781,33991187:0,619970,134348 +g578,89:22064501,33991187 +g578,89:22064501,33991187 +g578,89:25189257,33991187 +k578,90:29085373,33991187:3497657 +k578,90:32583029,33991187:3497656 +) +(578,91:20753781,34841400:11829248,481690,134348 +h578,90:20753781,34841400:0,0,0 +r1,2114:20753781,34841400:0,616038,134348 +g578,90:22064501,34841400 +g578,90:22064501,34841400 +g578,90:24695116,34841400 +k578,91:28838302,34841400:3744727 +k578,91:32583029,34841400:3744727 +) +(578,92:20753781,35691612:11829248,505283,126483 +h578,91:20753781,35691612:0,0,0 +g578,91:23077687,35691612 +g578,91:24773103,35691612 +g578,91:28662664,35691612 +k578,92:30822076,35691612:1760953 +k578,92:32583029,35691612:1760953 +) +(578,93:20753781,36541825:11829248,505283,102891 +h578,92:20753781,36541825:0,0,0 +g578,92:23830040,36541825 +k578,93:28405764,36541825:4177265 +k578,93:32583029,36541825:4177265 +) +(578,97:20753781,38192810:11829248,505283,126483 +h578,96:20753781,38192810:0,0,0 +g578,96:24401514,38192810 +k578,97:28890731,38192810:3692299 +k578,97:32583029,38192810:3692298 +) +(578,101:20753781,39843795:11829248,485622,102891 +h578,100:20753781,39843795:0,0,0 +g578,100:25319019,39843795 +k578,101:29349483,39843795:3233546 +k578,101:32583029,39843795:3233546 +) +(578,102:20753781,40694008:11829248,513147,102891 +h578,101:20753781,40694008:0,0,0 +g578,101:24290103,40694008 +g578,101:26359074,40694008 +k578,102:29869511,40694008:2713519 +k578,102:32583029,40694008:2713518 +) +(578,106:20753781,42344993:11829248,485622,102891 +h578,105:20753781,42344993:0,0,0 +g578,105:22419050,42344993 +k578,106:27700269,42344993:4882760 +k578,106:32583029,42344993:4882760 +) +] +(578,107:32583029,42344993:0,355205,126483 +h578,107:32583029,42344993:420741,355205,126483 +k578,107:32583029,42344993:-420741 +) +) +] +(1,2114:32583029,45706769:0,0,0 +g1,2114:32583029,45706769 +) +) +] +(1,2114:6630773,47279633:25952256,481690,0 +(1,2114:6630773,47279633:25952256,481690,0 +k1,2114:19208442,47279633:12577669 +k1,2114:32583029,47279633:12577669 +) +) +] +(1,2114:4262630,4025873:0,0,0 +[1,2114:-473656,4025873:0,0,0 +(1,2114:-473656,-710413:0,0,0 +(1,2114:-473656,-710413:0,0,0 +g1,2114:-473656,-710413 ) -k2991,1:22359413,9419505:10223616 -k2991,1:32583029,9419505:10223616 -) -] -(2991,87:6630773,45706769:25952256,32627728,126483 -[2991,87:6630773,45706769:11829248,32627728,102891 -(2991,4:6630773,13734401:11829248,485622,102891 -h2991,3:6630773,13734401:0,0,0 -g2991,3:7398854,13734401 -g2991,3:8568671,13734401 -k2991,4:13912805,13734401:4547216 -k2991,4:18460021,13734401:4547216 -) -(2991,5:6630773,14598519:11829248,485622,102891 -h2991,4:6630773,14598519:0,0,0 -g2991,4:7398854,14598519 -g2991,4:8568671,14598519 -g2991,4:9738488,14598519 -k2991,5:14696943,14598519:3763078 -k2991,5:18460021,14598519:3763078 -) -(2991,6:6630773,15462637:11829248,485622,102891 -h2991,5:6630773,15462637:0,0,0 -g2991,5:7398854,15462637 -g2991,5:8568671,15462637 -k2991,6:13912805,15462637:4547216 -k2991,6:18460021,15462637:4547216 -) -(2991,7:6630773,16326755:11829248,485622,102891 -h2991,6:6630773,16326755:0,0,0 -g2991,6:7794036,16326755 -g2991,6:8963853,16326755 -k2991,7:14309626,16326755:4150396 -k2991,7:18460021,16326755:4150395 -) -(2991,8:6630773,17190873:11829248,513147,102891 -h2991,7:6630773,17190873:0,0,0 -g2991,7:8584400,17190873 -g2991,7:9754217,17190873 -k2991,8:14505578,17190873:3954443 -k2991,8:18460021,17190873:3954443 -) -(2991,9:6630773,18054991:11829248,513147,126483 -h2991,8:6630773,18054991:0,0,0 -g2991,8:14512132,18054991 -k2991,9:16884536,18054991:1575486 -k2991,9:18460021,18054991:1575485 -) -(2991,10:6630773,18919109:11829248,513147,102891 -h2991,9:6630773,18919109:0,0,0 -g2991,9:14512132,18919109 -k2991,10:16884536,18919109:1575486 -k2991,10:18460021,18919109:1575485 -) -(2991,11:6630773,19783227:11829248,513147,102891 -h2991,10:6630773,19783227:0,0,0 -g2991,10:14512132,19783227 -k2991,11:16884536,19783227:1575486 -k2991,11:18460021,19783227:1575485 -) -(2991,12:6630773,20647345:11829248,513147,134348 -h2991,11:6630773,20647345:0,0,0 -g2991,11:16092860,20647345 -k2991,12:17674900,20647345:785122 -k2991,12:18460021,20647345:785121 -) -(2991,13:6630773,21511464:11829248,513147,134348 -h2991,12:6630773,21511464:0,0,0 -g2991,12:14907314,21511464 -k2991,13:17082127,21511464:1377895 -k2991,13:18460021,21511464:1377894 -) -(2991,14:6630773,22375582:11829248,505283,102891 -h2991,13:6630773,22375582:0,0,0 -g2991,13:7398854,22375582 -g2991,13:8568671,22375582 -k2991,14:14112035,22375582:4347987 -k2991,14:18460021,22375582:4347986 -) -(2991,15:6630773,23239700:11829248,485622,102891 -h2991,14:6630773,23239700:0,0,0 -g2991,14:7398854,23239700 -k2991,15:13327897,23239700:5132125 -k2991,15:18460021,23239700:5132124 -) -(2991,16:6630773,24103818:11829248,485622,102891 -h2991,15:6630773,24103818:0,0,0 -g2991,15:7398854,24103818 -k2991,16:13327897,24103818:5132125 -k2991,16:18460021,24103818:5132124 -) -(2991,17:6630773,24967936:11829248,485622,102891 -h2991,16:6630773,24967936:0,0,0 -g2991,16:7794036,24967936 -g2991,16:8963853,24967936 -g2991,16:10133670,24967936 -g2991,16:11303487,24967936 -k2991,17:15280213,24967936:3179808 -k2991,17:18460021,24967936:3179808 -) -(2991,18:6630773,25832054:11829248,485622,102891 -h2991,17:6630773,25832054:0,0,0 -g2991,17:8189218,25832054 -k2991,18:13922308,25832054:4537713 -k2991,18:18460021,25832054:4537713 -) -(2991,19:6630773,26696172:11829248,485622,102891 -h2991,18:6630773,26696172:0,0,0 -g2991,18:7794036,26696172 -k2991,19:13525488,26696172:4934534 -k2991,19:18460021,26696172:4934533 -) -(2991,20:6630773,27560290:11829248,485622,102891 -h2991,19:6630773,27560290:0,0,0 -g2991,19:7398854,27560290 -k2991,20:13327897,27560290:5132125 -k2991,20:18460021,27560290:5132124 -) -(2991,21:6630773,28424408:11829248,485622,102891 -h2991,20:6630773,28424408:0,0,0 -g2991,20:7794036,28424408 -g2991,20:8963853,28424408 -k2991,21:14309626,28424408:4150396 -k2991,21:18460021,28424408:4150395 -) -(2991,22:6630773,29288526:11829248,485622,102891 -h2991,21:6630773,29288526:0,0,0 -g2991,21:7398854,29288526 -k2991,22:13327897,29288526:5132125 -k2991,22:18460021,29288526:5132124 -) -(2991,23:6630773,30152644:11829248,485622,102891 -h2991,22:6630773,30152644:0,0,0 -g2991,22:7794036,30152644 -k2991,23:13525488,30152644:4934534 -k2991,23:18460021,30152644:4934533 -) -(2991,24:6630773,31016762:11829248,505283,102891 -h2991,23:6630773,31016762:0,0,0 -g2991,23:7421137,31016762 -g2991,23:8211501,31016762 -g2991,23:8979582,31016762 -k2991,24:14317490,31016762:4142531 -k2991,24:18460021,31016762:4142531 -) -(2991,25:6630773,31880880:11829248,505283,102891 -h2991,24:6630773,31880880:0,0,0 -g2991,24:7421137,31880880 -g2991,24:8189218,31880880 -g2991,24:9359035,31880880 -k2991,25:14307987,31880880:4152034 -k2991,25:18460021,31880880:4152034 -) -(2991,26:6630773,32744998:11829248,505283,102891 -h2991,25:6630773,32744998:0,0,0 -g2991,25:7816319,32744998 -g2991,25:8979582,32744998 -k2991,26:14118261,32744998:4341761 -k2991,26:18460021,32744998:4341760 -) -(2991,27:6630773,33609116:11829248,505283,102891 -h2991,26:6630773,33609116:0,0,0 -g2991,26:8584400,33609116 -g2991,26:9754217,33609116 -g2991,26:10924034,33609116 -k2991,27:15652786,33609116:2807236 -k2991,27:18460021,33609116:2807235 -) -(2991,28:6630773,34473234:11829248,505283,102891 -h2991,27:6630773,34473234:0,0,0 -g2991,27:7794036,34473234 -g2991,27:8963853,34473234 -k2991,28:14110396,34473234:4349625 -k2991,28:18460021,34473234:4349625 -) -(2991,29:6630773,35337352:11829248,513147,102891 -h2991,28:6630773,35337352:0,0,0 -g2991,28:7398854,35337352 -g2991,28:8568671,35337352 -g2991,28:9738488,35337352 -k2991,29:14497714,35337352:3962308 -k2991,29:18460021,35337352:3962307 -) -(2991,30:6630773,36201470:11829248,485622,102891 -h2991,29:6630773,36201470:0,0,0 -g2991,29:8189218,36201470 -k2991,30:13723079,36201470:4736943 -k2991,30:18460021,36201470:4736942 -) -(2991,31:6630773,37065589:11829248,485622,102891 -h2991,30:6630773,37065589:0,0,0 -g2991,30:8584400,37065589 -g2991,30:11675733,37065589 -k2991,31:15665566,37065589:2794456 -k2991,31:18460021,37065589:2794455 -) -(2991,32:6630773,37929707:11829248,505283,102891 -h2991,31:6630773,37929707:0,0,0 -g2991,31:8189218,37929707 -k2991,32:13723079,37929707:4736943 -k2991,32:18460021,37929707:4736942 -) -(2991,33:6630773,38793825:11829248,485622,102891 -h2991,32:6630773,38793825:0,0,0 -g2991,32:8584400,38793825 -k2991,33:14119899,38793825:4340122 -k2991,33:18460021,38793825:4340122 -) -(2991,34:6630773,39657943:11829248,485622,102891 -h2991,33:6630773,39657943:0,0,0 -g2991,33:8189218,39657943 -k2991,34:14683836,39657943:3776185 -k2991,34:18460021,39657943:3776185 -) -(2991,35:6630773,40522061:11829248,485622,102891 -h2991,34:6630773,40522061:0,0,0 -g2991,34:8584400,40522061 -k2991,35:14119899,40522061:4340122 -k2991,35:18460021,40522061:4340122 -) -(2991,36:6630773,41386179:11829248,485622,102891 -h2991,35:6630773,41386179:0,0,0 -g2991,35:7794036,41386179 -k2991,36:13525488,41386179:4934534 -k2991,36:18460021,41386179:4934533 -) -(2991,37:6630773,42250297:11829248,505283,102891 -h2991,36:6630773,42250297:0,0,0 -g2991,36:8584400,42250297 -g2991,36:9754217,42250297 -g2991,36:10924034,42250297 -k2991,37:15090487,42250297:3369535 -k2991,37:18460021,42250297:3369534 -) -(2991,38:6630773,43114415:11829248,485622,102891 -h2991,37:6630773,43114415:0,0,0 -g2991,37:7398854,43114415 -k2991,38:13327897,43114415:5132125 -k2991,38:18460021,43114415:5132124 -) -(2991,39:6630773,43978533:11829248,485622,102891 -h2991,38:6630773,43978533:0,0,0 -g2991,38:7794036,43978533 -k2991,39:13525488,43978533:4934534 -k2991,39:18460021,43978533:4934533 -) -(2991,40:6630773,44842651:11829248,485622,102891 -h2991,39:6630773,44842651:0,0,0 -g2991,39:7398854,44842651 -k2991,40:13327897,44842651:5132125 -k2991,40:18460021,44842651:5132124 -) -(2991,41:6630773,45706769:11829248,505283,102891 -h2991,40:6630773,45706769:0,0,0 -g2991,40:7398854,45706769 -k2991,41:13327897,45706769:5132125 -k2991,41:18460021,45706769:5132124 +g1,2114:-473656,-710413 +) +] ) ] -k2991,87:19606901,45706769:1146880 -r2991,87:19606901,45706769:0,32754211,126483 -k2991,87:20753781,45706769:1146880 -[2991,87:20753781,45706769:11829248,32627728,102891 -(2991,42:20753781,13734401:11829248,505283,102891 -h2991,41:20753781,13734401:0,0,0 -g2991,41:21917044,13734401 -k2991,42:27648496,13734401:4934534 -k2991,42:32583029,13734401:4934533 -) -(2991,46:20753781,15326411:11829248,505283,102891 -h2991,45:20753781,15326411:0,0,0 -g2991,45:23102590,15326411 -g2991,45:24272407,15326411 -k2991,46:28826177,15326411:3756852 -k2991,46:32583029,15326411:3756852 -) -(2991,47:20753781,16173285:11829248,505283,102891 -h2991,46:20753781,16173285:0,0,0 -g2991,46:23102590,16173285 -g2991,46:24670866,16173285 -g2991,46:26239142,16173285 -g2991,46:27807418,16173285 -k2991,47:30792912,16173285:1790117 -k2991,47:32583029,16173285:1790117 -) -(2991,48:20753781,17020160:11829248,513147,102891 -h2991,47:20753781,17020160:0,0,0 -g2991,47:26264047,17020160 -k2991,48:30021227,17020160:2561803 -k2991,48:32583029,17020160:2561802 -) -(2991,49:20753781,17867034:11829248,513147,102891 -h2991,48:20753781,17867034:0,0,0 -g2991,48:25868865,17867034 -g2991,48:27437141,17867034 -g2991,48:29005417,17867034 -k2991,49:31391912,17867034:1191118 -k2991,49:32583029,17867034:1191117 -) -(2991,50:20753781,18713909:11829248,505283,134348 -h2991,49:20753781,18713909:0,0,0 -g2991,49:25473683,18713909 -k2991,50:29626045,18713909:2956985 -k2991,50:32583029,18713909:2956984 -) -(2991,51:20753781,19560784:11829248,505283,102891 -h2991,50:20753781,19560784:0,0,0 -g2991,50:23102590,19560784 -g2991,50:24670866,19560784 -k2991,51:29224636,19560784:3358393 -k2991,51:32583029,19560784:3358393 -) -(2991,52:20753781,20407658:11829248,505283,102891 -h2991,51:20753781,20407658:0,0,0 -g2991,51:23102590,20407658 -k2991,52:28241269,20407658:4341761 -k2991,52:32583029,20407658:4341760 -) -(2991,53:20753781,21254533:11829248,505283,102891 -h2991,52:20753781,21254533:0,0,0 -g2991,52:25078501,21254533 -g2991,52:26646777,21254533 -g2991,52:28215053,21254533 -k2991,53:30996730,21254533:1586300 -k2991,53:32583029,21254533:1586299 -) -(2991,54:20753781,22101407:11829248,505283,102891 -h2991,53:20753781,22101407:0,0,0 -g2991,53:28635140,22101407 -g2991,53:30203416,22101407 -k2991,54:31990911,22101407:592118 -k2991,54:32583029,22101407:592118 -) -(2991,55:20753781,22948282:11829248,505283,102891 -h2991,54:20753781,22948282:0,0,0 -g2991,54:23892955,22948282 -g2991,54:25461231,22948282 -g2991,54:27029507,22948282 -g2991,54:28597783,22948282 -g2991,54:30166059,22948282 -k2991,54:32583029,22948282:1047923 -) -(2991,55:23375221,23789770:9207808,485622,102891 -g2991,54:24943497,23789770 -k2991,55:29360952,23789770:3222078 -k2991,55:32583029,23789770:3222077 -) -(2991,56:20753781,24636644:11829248,505283,134348 -h2991,55:20753781,24636644:0,0,0 -g2991,55:25473683,24636644 -k2991,56:29626045,24636644:2956985 -k2991,56:32583029,24636644:2956984 -) -(2991,57:20753781,25483519:11829248,505283,126483 -h2991,56:20753781,25483519:0,0,0 -g2991,56:23102590,25483519 -k2991,57:28241269,25483519:4341761 -k2991,57:32583029,25483519:4341760 -) -(2991,58:20753781,26330393:11829248,505283,102891 -h2991,57:20753781,26330393:0,0,0 -g2991,57:23102590,26330393 -g2991,57:24670866,26330393 -k2991,58:29224636,26330393:3358393 -k2991,58:32583029,26330393:3358393 -) -(2991,59:20753781,27177268:11829248,505283,126483 -h2991,58:20753781,27177268:0,0,0 -g2991,58:24288137,27177268 -g2991,58:25457954,27177268 -k2991,59:29418951,27177268:3164079 -k2991,59:32583029,27177268:3164078 -) -(2991,60:20753781,28024143:11829248,505283,126483 -h2991,59:20753781,28024143:0,0,0 -g2991,59:23892955,28024143 -g2991,59:25461231,28024143 -g2991,59:27029507,28024143 -g2991,59:28597783,28024143 -k2991,60:31188095,28024143:1394935 -k2991,60:32583029,28024143:1394934 -) -(2991,61:20753781,28871017:11829248,505283,134348 -h2991,60:20753781,28871017:0,0,0 -g2991,60:24683319,28871017 -k2991,61:29230863,28871017:3352167 -k2991,61:32583029,28871017:3352166 -) -(2991,62:20753781,29717892:11829248,485622,126483 -h2991,61:20753781,29717892:0,0,0 -g2991,61:23102590,29717892 -g2991,61:24272407,29717892 -k2991,62:28826177,29717892:3756852 -k2991,62:32583029,29717892:3756852 -) -(2991,63:20753781,30564766:11829248,505283,126483 -h2991,62:20753781,30564766:0,0,0 -g2991,62:23892955,30564766 -k2991,63:28636451,30564766:3946578 -k2991,63:32583029,30564766:3946578 -) -(2991,64:20753781,31411641:11829248,505283,102891 -h2991,63:20753781,31411641:0,0,0 -g2991,63:26659229,31411641 -g2991,63:27829046,31411641 -k2991,64:30604497,31411641:1978533 -k2991,64:32583029,31411641:1978532 -) -(2991,65:20753781,32258515:11829248,513147,102891 -h2991,64:20753781,32258515:0,0,0 -g2991,64:27054411,32258515 -k2991,65:30416409,32258515:2166621 -k2991,65:32583029,32258515:2166620 -) -(2991,66:20753781,33105390:11829248,513147,102891 -h2991,65:20753781,33105390:0,0,0 -g2991,65:25868865,33105390 -k2991,66:29823636,33105390:2759394 -k2991,66:32583029,33105390:2759393 -) -(2991,67:20753781,33952265:11829248,505283,134348 -h2991,66:20753781,33952265:0,0,0 -g2991,66:25868865,33952265 -k2991,67:29624406,33952265:2958623 -k2991,67:32583029,33952265:2958623 -) -(2991,68:20753781,34799139:11829248,505283,134348 -h2991,67:20753781,34799139:0,0,0 -g2991,67:25868865,34799139 -k2991,68:29624406,34799139:2958623 -k2991,68:32583029,34799139:2958623 -) -(2991,69:20753781,35646014:11829248,505283,102891 -h2991,68:20753781,35646014:0,0,0 -g2991,68:25473683,35646014 -k2991,69:29426815,35646014:3156214 -k2991,69:32583029,35646014:3156214 -) -(2991,70:20753781,36492888:11829248,505283,102891 -h2991,69:20753781,36492888:0,0,0 -g2991,69:25868865,36492888 -g2991,69:27038682,36492888 -g2991,69:28208499,36492888 -k2991,70:30794223,36492888:1788806 -k2991,70:32583029,36492888:1788806 -) -(2991,71:20753781,37339763:11829248,505283,102891 -h2991,70:20753781,37339763:0,0,0 -g2991,70:23892955,37339763 -k2991,71:28835681,37339763:3747349 -k2991,71:32583029,37339763:3747348 -) -(2991,72:20753781,38186637:11829248,505283,102891 -h2991,71:20753781,38186637:0,0,0 -g2991,71:25473683,38186637 -k2991,72:29426815,38186637:3156214 -k2991,72:32583029,38186637:3156214 -) -(2991,73:20753781,39033512:11829248,505283,102891 -h2991,72:20753781,39033512:0,0,0 -g2991,72:25473683,39033512 -k2991,73:29626045,39033512:2956985 -k2991,73:32583029,39033512:2956984 -) -(2991,74:20753781,39880386:11829248,505283,134348 -h2991,73:20753781,39880386:0,0,0 -g2991,73:24288137,39880386 -g2991,73:25856413,39880386 -g2991,73:27424689,39880386 -g2991,73:28992965,39880386 -g2991,73:30561241,39880386 -k2991,74:32169824,39880386:413206 -k2991,74:32583029,39880386:413205 -) -(2991,75:20753781,40727261:11829248,505283,102891 -h2991,74:20753781,40727261:0,0,0 -g2991,74:24288137,40727261 -k2991,75:29396341,40727261:3186688 -k2991,75:32583029,40727261:3186688 -) -(2991,76:20753781,41574136:11829248,505283,102891 -h2991,75:20753781,41574136:0,0,0 -g2991,75:23497773,41574136 -k2991,76:28438860,41574136:4144169 -k2991,76:32583029,41574136:4144169 -) -(2991,77:20753781,42421010:11829248,505283,102891 -h2991,76:20753781,42421010:0,0,0 -g2991,76:24288137,42421010 -k2991,77:28834042,42421010:3748987 -k2991,77:32583029,42421010:3748987 -) -(2991,78:20753781,43267885:11829248,505283,102891 -h2991,77:20753781,43267885:0,0,0 -g2991,77:25868865,43267885 -g2991,77:27038682,43267885 -g2991,77:28606958,43267885 -k2991,78:31192682,43267885:1390347 -k2991,78:32583029,43267885:1390347 -) -(2991,79:20753781,44114759:11829248,485622,102891 -h2991,78:20753781,44114759:0,0,0 -g2991,78:23892955,44114759 -k2991,79:28835681,44114759:3747349 -k2991,79:32583029,44114759:3747348 -) -(2991,83:20753781,45706769:11829248,505283,102891 -h2991,82:20753781,45706769:0,0,0 -g2991,82:25078501,45706769 -k2991,83:29428454,45706769:3154576 -k2991,83:32583029,45706769:3154575 +!17904 +}46 +!11 +{47 +[1,2114:4262630,47279633:28320399,43253760,0 +(1,2114:4262630,4025873:0,0,0 +[1,2114:-473656,4025873:0,0,0 +(1,2114:-473656,-710413:0,0,0 +(1,2114:-473656,-644877:0,0,0 +k1,2114:-473656,-644877:-65536 ) -] -(2991,87:32583029,45706769:0,355205,126483 -h2991,87:32583029,45706769:420741,355205,126483 -k2991,87:32583029,45706769:-420741 +(1,2114:-473656,4736287:0,0,0 +k1,2114:-473656,4736287:5209943 ) +g1,2114:-473656,-710413 ) ] -(2991,87:32583029,45706769:0,0,0 -g2991,87:32583029,45706769 ) +[1,2114:6630773,47279633:25952256,43253760,0 +[1,2114:6630773,4812305:25952256,786432,0 +(1,2114:6630773,4812305:25952256,0,0 +(1,2114:6630773,4812305:25952256,0,0 +g1,2114:3078558,4812305 +[1,2114:3078558,4812305:0,0,0 +(1,2114:3078558,2439708:0,1703936,0 +k1,2114:1358238,2439708:-1720320 +(1,2114:1358238,2439708:1720320,1703936,0 +(1,2114:1358238,2439708:1179648,16384,0 +r1,2114:2537886,2439708:1179648,16384,0 ) -] -(2991,87:6630773,47279633:25952256,485622,11795 -(2991,87:6630773,47279633:25952256,485622,11795 -k2991,87:19009213,47279633:12378440 -k2991,87:32583030,47279633:12378440 +g1,2114:3062174,2439708 +(1,2114:3062174,2439708:16384,1703936,0 +[1,2114:3062174,2439708:25952256,1703936,0 +(1,2114:3062174,1915420:25952256,1179648,0 +(1,2114:3062174,1915420:16384,1179648,0 +r1,2114:3078558,1915420:16384,1179648,0 ) +k1,2114:29014430,1915420:25935872 +g1,2114:29014430,1915420 ) ] -(2991,87:4262630,4025873:0,0,0 -[2991,87:-473656,4025873:0,0,0 -(2991,87:-473656,-710413:0,0,0 -(2991,87:-473656,-710413:0,0,0 -g2991,87:-473656,-710413 -) -g2991,87:-473656,-710413 ) -] ) -] -!19402 -}394 -!12 -{395 -[2991,194:4262630,47279633:28320399,43253760,0 -(2991,194:4262630,4025873:0,0,0 -[2991,194:-473656,4025873:0,0,0 -(2991,194:-473656,-710413:0,0,0 -(2991,194:-473656,-644877:0,0,0 -k2991,194:-473656,-644877:-65536 -) -(2991,194:-473656,4736287:0,0,0 -k2991,194:-473656,4736287:5209943 -) -g2991,194:-473656,-710413 ) ] +[1,2114:3078558,4812305:0,0,0 +(1,2114:3078558,2439708:0,1703936,0 +g1,2114:29030814,2439708 +g1,2114:36135244,2439708 +(1,2114:36135244,2439708:1720320,1703936,0 +(1,2114:36135244,2439708:16384,1703936,0 +[1,2114:36135244,2439708:25952256,1703936,0 +(1,2114:36135244,1915420:25952256,1179648,0 +(1,2114:36135244,1915420:16384,1179648,0 +r1,2114:36151628,1915420:16384,1179648,0 ) -[2991,194:6630773,47279633:25952256,43253760,0 -[2991,194:6630773,4812305:25952256,786432,0 -(2991,194:6630773,4812305:25952256,513147,126483 -(2991,194:6630773,4812305:25952256,513147,126483 -g2991,194:3078558,4812305 -[2991,194:3078558,4812305:0,0,0 -(2991,194:3078558,2439708:0,1703936,0 -k2991,194:1358238,2439708:-1720320 -(2991,1:1358238,2439708:1720320,1703936,0 -(2991,1:1358238,2439708:1179648,16384,0 -r2991,194:2537886,2439708:1179648,16384,0 -) -g2991,1:3062174,2439708 -(2991,1:3062174,2439708:16384,1703936,0 -[2991,1:3062174,2439708:25952256,1703936,0 -(2991,1:3062174,1915420:25952256,1179648,0 -(2991,1:3062174,1915420:16384,1179648,0 -r2991,194:3078558,1915420:16384,1179648,0 -) -k2991,1:29014430,1915420:25935872 -g2991,1:29014430,1915420 +k1,2114:62087500,1915420:25935872 +g1,2114:62087500,1915420 ) ] ) +g1,2114:36675916,2439708 +(1,2114:36675916,2439708:1179648,16384,0 +r1,2114:37855564,2439708:1179648,16384,0 ) ) -] -[2991,194:3078558,4812305:0,0,0 -(2991,194:3078558,2439708:0,1703936,0 -g2991,194:29030814,2439708 -g2991,194:36135244,2439708 -(2991,1:36135244,2439708:1720320,1703936,0 -(2991,1:36135244,2439708:16384,1703936,0 -[2991,1:36135244,2439708:25952256,1703936,0 -(2991,1:36135244,1915420:25952256,1179648,0 -(2991,1:36135244,1915420:16384,1179648,0 -r2991,194:36151628,1915420:16384,1179648,0 -) -k2991,1:62087500,1915420:25935872 -g2991,1:62087500,1915420 +k1,2114:3078556,2439708:-34777008 ) ] +[1,2114:3078558,4812305:0,0,0 +(1,2114:3078558,49800853:0,16384,2228224 +k1,2114:1358238,49800853:-1720320 +(1,2114:1358238,49800853:1720320,16384,2228224 +(1,2114:1358238,49800853:1179648,16384,0 +r1,2114:2537886,49800853:1179648,16384,0 ) -g2991,1:36675916,2439708 -(2991,1:36675916,2439708:1179648,16384,0 -r2991,194:37855564,2439708:1179648,16384,0 -) +g1,2114:3062174,49800853 +(1,2114:3062174,52029077:16384,1703936,0 +[1,2114:3062174,52029077:25952256,1703936,0 +(1,2114:3062174,51504789:25952256,1179648,0 +(1,2114:3062174,51504789:16384,1179648,0 +r1,2114:3078558,51504789:16384,1179648,0 ) -k2991,194:3078556,2439708:-34777008 -) -] -[2991,194:3078558,4812305:0,0,0 -(2991,194:3078558,49800853:0,16384,2228224 -k2991,194:1358238,49800853:-1720320 -(2991,1:1358238,49800853:1720320,16384,2228224 -(2991,1:1358238,49800853:1179648,16384,0 -r2991,194:2537886,49800853:1179648,16384,0 -) -g2991,1:3062174,49800853 -(2991,1:3062174,52029077:16384,1703936,0 -[2991,1:3062174,52029077:25952256,1703936,0 -(2991,1:3062174,51504789:25952256,1179648,0 -(2991,1:3062174,51504789:16384,1179648,0 -r2991,194:3078558,51504789:16384,1179648,0 -) -k2991,1:29014430,51504789:25935872 -g2991,1:29014430,51504789 +k1,2114:29014430,51504789:25935872 +g1,2114:29014430,51504789 ) ] ) ) ) ] -[2991,194:3078558,4812305:0,0,0 -(2991,194:3078558,49800853:0,16384,2228224 -g2991,194:29030814,49800853 -g2991,194:36135244,49800853 -(2991,1:36135244,49800853:1720320,16384,2228224 -(2991,1:36135244,52029077:16384,1703936,0 -[2991,1:36135244,52029077:25952256,1703936,0 -(2991,1:36135244,51504789:25952256,1179648,0 -(2991,1:36135244,51504789:16384,1179648,0 -r2991,194:36151628,51504789:16384,1179648,0 -) -k2991,1:62087500,51504789:25935872 -g2991,1:62087500,51504789 +[1,2114:3078558,4812305:0,0,0 +(1,2114:3078558,49800853:0,16384,2228224 +g1,2114:29030814,49800853 +g1,2114:36135244,49800853 +(1,2114:36135244,49800853:1720320,16384,2228224 +(1,2114:36135244,52029077:16384,1703936,0 +[1,2114:36135244,52029077:25952256,1703936,0 +(1,2114:36135244,51504789:25952256,1179648,0 +(1,2114:36135244,51504789:16384,1179648,0 +r1,2114:36151628,51504789:16384,1179648,0 ) -] -) -g2991,1:36675916,49800853 -(2991,1:36675916,49800853:1179648,16384,0 -r2991,194:37855564,49800853:1179648,16384,0 +k1,2114:62087500,51504789:25935872 +g1,2114:62087500,51504789 ) +] ) -k2991,194:3078556,49800853:-34777008 +g1,2114:36675916,49800853 +(1,2114:36675916,49800853:1179648,16384,0 +r1,2114:37855564,49800853:1179648,16384,0 ) -] -g2991,194:6630773,4812305 -k2991,194:23661615,4812305:15835465 -g2991,194:27221530,4812305 -g2991,194:29095859,4812305 -g2991,194:29911126,4812305 -g2991,194:30524543,4812305 ) +k1,2114:3078556,49800853:-34777008 ) ] -[2991,194:6630773,45706769:25952256,40108032,0 -(2991,194:6630773,45706769:25952256,40108032,0 -(2991,194:6630773,45706769:0,0,0 -g2991,194:6630773,45706769 -) -[2991,194:6630773,45706769:25952256,40108032,0 -(2991,194:6630773,45706769:25952256,40108032,134348 -[2991,194:6630773,45706769:11829248,40108032,102891 -(2991,84:6630773,6254097:11829248,505283,102891 -h2991,83:6630773,6254097:0,0,0 -g2991,83:8979582,6254097 -g2991,83:10547858,6254097 -k2991,84:15101628,6254097:3358393 -k2991,84:18460021,6254097:3358393 -) -(2991,85:6630773,7099096:11829248,505283,126483 -h2991,84:6630773,7099096:0,0,0 -g2991,84:10165129,7099096 -k2991,85:14910264,7099096:3549758 -k2991,85:18460021,7099096:3549757 -) -(2991,86:6630773,7944094:11829248,505283,102891 -h2991,85:6630773,7944094:0,0,0 -g2991,85:9374765,7944094 -k2991,86:14515082,7944094:3944940 -k2991,86:18460021,7944094:3944939 -) -(2991,87:6630773,8789093:11829248,505283,102891 -h2991,86:6630773,8789093:0,0,0 -g2991,86:11745857,8789093 -k2991,87:15700628,8789093:2759394 -k2991,87:18460021,8789093:2759393 -) -(2991,88:6630773,9634091:11829248,505283,126483 -h2991,87:6630773,9634091:0,0,0 -g2991,87:10165129,9634091 -k2991,88:14910264,9634091:3549758 -k2991,88:18460021,9634091:3549757 -) -(2991,89:6630773,10479090:11829248,505283,102891 -h2991,88:6630773,10479090:0,0,0 -g2991,88:9769947,10479090 -g2991,88:11338223,10479090 -g2991,88:12906499,10479090 -k2991,89:16280949,10479090:2179073 -k2991,89:18460021,10479090:2179072 -) -(2991,93:6630773,12037957:11829248,505283,102891 -h2991,92:6630773,12037957:0,0,0 -g2991,92:8189218,12037957 -k2991,93:13723079,12037957:4736943 -k2991,93:18460021,12037957:4736942 -) -(2991,94:6630773,12882955:11829248,505283,102891 -h2991,93:6630773,12882955:0,0,0 -g2991,93:8584400,12882955 -k2991,94:14119899,12882955:4340122 -k2991,94:18460021,12882955:4340122 -) -(2991,95:6630773,13727954:11829248,485622,102891 -h2991,94:6630773,13727954:0,0,0 -g2991,94:8584400,13727954 -g2991,94:10152676,13727954 -k2991,95:14904037,13727954:3555984 -k2991,95:18460021,13727954:3555984 -) -(2991,96:6630773,14572953:11829248,505283,102891 -h2991,95:6630773,14572953:0,0,0 -g2991,95:8979582,14572953 -g2991,95:10149399,14572953 -k2991,96:14902399,14572953:3557623 -k2991,96:18460021,14572953:3557622 -) -(2991,97:6630773,15417951:11829248,505283,134348 -h2991,96:6630773,15417951:0,0,0 -g2991,96:10560311,15417951 -k2991,97:14908625,15417951:3551396 -k2991,97:18460021,15417951:3551396 -) -(2991,98:6630773,16262950:11829248,505283,102891 -h2991,97:6630773,16262950:0,0,0 -g2991,97:10560311,16262950 -g2991,97:11730128,16262950 -g2991,97:12899945,16262950 -k2991,98:16078442,16262950:2381579 -k2991,98:18460021,16262950:2381579 -) -(2991,99:6630773,17107948:11829248,505283,102891 -h2991,98:6630773,17107948:0,0,0 -g2991,98:10955493,17107948 -k2991,99:15106216,17107948:3353805 -k2991,99:18460021,17107948:3353805 -) -(2991,100:6630773,17952947:11829248,505283,102891 -h2991,99:6630773,17952947:0,0,0 -g2991,99:9769947,17952947 -g2991,99:10939764,17952947 -g2991,99:12109581,17952947 -g2991,99:13677857,17952947 -g2991,99:15246133,17952947 -k2991,100:17450766,17952947:1009256 -k2991,100:18460021,17952947:1009255 -) -(2991,101:6630773,18797945:11829248,513147,102891 -h2991,100:6630773,18797945:0,0,0 -g2991,100:9374765,18797945 -g2991,100:10943041,18797945 -g2991,100:12511317,18797945 -k2991,101:16083358,18797945:2376664 -k2991,101:18460021,18797945:2376663 -) -(2991,102:6630773,19642944:11829248,513147,102891 -h2991,101:6630773,19642944:0,0,0 -g2991,101:12536221,19642944 -k2991,102:16095810,19642944:2364212 -k2991,102:18460021,19642944:2364211 -) -(2991,103:6630773,20487942:11829248,505283,102891 -h2991,102:6630773,20487942:0,0,0 -g2991,102:10955493,20487942 -k2991,103:15106216,20487942:3353805 -k2991,103:18460021,20487942:3353805 -) -(2991,104:6630773,21332941:11829248,505283,102891 -h2991,103:6630773,21332941:0,0,0 -g2991,103:10560311,21332941 -k2991,104:14908625,21332941:3551396 -k2991,104:18460021,21332941:3551396 -) -(2991,105:6630773,22177940:11829248,505283,102891 -h2991,104:6630773,22177940:0,0,0 -g2991,104:11350675,22177940 -k2991,105:15303807,22177940:3156214 -k2991,105:18460021,22177940:3156214 -) -(2991,106:6630773,23022938:11829248,505283,102891 -h2991,105:6630773,23022938:0,0,0 -g2991,105:10955493,23022938 -k2991,106:15305446,23022938:3154576 -k2991,106:18460021,23022938:3154575 -) -(2991,107:6630773,23867937:11829248,505283,102891 -h2991,106:6630773,23867937:0,0,0 -g2991,106:13721768,23867937 -k2991,107:16688583,23867937:1771438 -k2991,107:18460021,23867937:1771438 -) -(2991,108:6630773,24712935:11829248,513147,102891 -h2991,107:6630773,24712935:0,0,0 -g2991,107:12141039,24712935 -k2991,108:15898219,24712935:2561803 -k2991,108:18460021,24712935:2561802 -) -(2991,109:6630773,25557934:11829248,513147,126483 -h2991,108:6630773,25557934:0,0,0 -g2991,108:11745857,25557934 -g2991,108:13314133,25557934 -k2991,109:16484766,25557934:1975256 -k2991,109:18460021,25557934:1975255 -) -(2991,110:6630773,26402932:11829248,505283,126483 -h2991,109:6630773,26402932:0,0,0 -g2991,109:12141039,26402932 -k2991,110:15898219,26402932:2561803 -k2991,110:18460021,26402932:2561802 -) -(2991,111:6630773,27247931:11829248,505283,102891 -h2991,110:6630773,27247931:0,0,0 -g2991,110:8979582,27247931 -k2991,111:15079018,27247931:3381003 -k2991,111:18460021,27247931:3381003 -) -(2991,112:6630773,28092929:11829248,505283,102891 -h2991,111:6630773,28092929:0,0,0 -g2991,111:10955493,28092929 -g2991,111:12523769,28092929 -k2991,112:16089584,28092929:2370438 -k2991,112:18460021,28092929:2370437 -) -(2991,113:6630773,28937928:11829248,505283,126483 -h2991,112:6630773,28937928:0,0,0 -g2991,112:11350675,28937928 -k2991,113:15303807,28937928:3156214 -k2991,113:18460021,28937928:3156214 -) -(2991,114:6630773,29782926:11829248,505283,102891 -h2991,113:6630773,29782926:0,0,0 -g2991,113:10165129,29782926 -k2991,114:14910264,29782926:3549758 -k2991,114:18460021,29782926:3549757 -) -(2991,115:6630773,30627925:11829248,505283,102891 -h2991,114:6630773,30627925:0,0,0 -g2991,114:10165129,30627925 -k2991,115:14910264,30627925:3549758 -k2991,115:18460021,30627925:3549757 -) -(2991,116:6630773,31472924:11829248,505283,126483 -h2991,115:6630773,31472924:0,0,0 -g2991,115:10560311,31472924 -k2991,116:15107855,31472924:3352167 -k2991,116:18460021,31472924:3352166 -) -(2991,117:6630773,32317922:11829248,505283,102891 -h2991,116:6630773,32317922:0,0,0 -g2991,116:10165129,32317922 -k2991,117:14910264,32317922:3549758 -k2991,117:18460021,32317922:3549757 -) -(2991,118:6630773,33162921:11829248,505283,102891 -h2991,117:6630773,33162921:0,0,0 -g2991,117:10165129,33162921 -k2991,118:14910264,33162921:3549758 -k2991,118:18460021,33162921:3549757 -) -(2991,122:6630773,34721788:11829248,505283,102891 -h2991,121:6630773,34721788:0,0,0 -g2991,121:9374765,34721788 -k2991,122:14315852,34721788:4144169 -k2991,122:18460021,34721788:4144169 -) -(2991,123:6630773,35566786:11829248,513147,102891 -h2991,122:6630773,35566786:0,0,0 -g2991,122:10955493,35566786 -g2991,122:12125310,35566786 -g2991,122:13295127,35566786 -g2991,122:14863403,35566786 -k2991,123:17259401,35566786:1200621 -k2991,123:18460021,35566786:1200620 -) -(2991,124:6630773,36411785:11829248,513147,102891 -h2991,123:6630773,36411785:0,0,0 -g2991,123:11745857,36411785 -g2991,123:12915674,36411785 -g2991,123:14085491,36411785 -g2991,123:15653767,36411785 -k2991,124:17654583,36411785:805439 -k2991,124:18460021,36411785:805438 -) -(2991,125:6630773,37256783:11829248,505283,126483 -h2991,124:6630773,37256783:0,0,0 -g2991,124:11350675,37256783 -k2991,125:15503037,37256783:2956985 -k2991,125:18460021,37256783:2956984 -) -(2991,126:6630773,38101782:11829248,505283,102891 -h2991,125:6630773,38101782:0,0,0 -g2991,125:10165129,38101782 -g2991,125:12459544,38101782 -k2991,126:16057471,38101782:2402550 -k2991,126:18460021,38101782:2402550 -) -(2991,127:6630773,38946781:11829248,505283,134348 -h2991,126:6630773,38946781:0,0,0 -g2991,126:9374765,38946781 -k2991,127:14315852,38946781:4144169 -k2991,127:18460021,38946781:4144169 -) -(2991,128:6630773,39791779:11829248,513147,102891 -h2991,127:6630773,39791779:0,0,0 -g2991,127:9374765,39791779 -k2991,128:14515082,39791779:3944940 -k2991,128:18460021,39791779:3944939 -) -(2991,129:6630773,40636778:11829248,505283,102891 -h2991,128:6630773,40636778:0,0,0 -g2991,128:8979582,40636778 -g2991,128:10149399,40636778 -g2991,128:11319216,40636778 -k2991,129:15487307,40636778:2972714 -k2991,129:18460021,40636778:2972714 -) -(2991,130:6630773,41481776:11829248,505283,102891 -h2991,129:6630773,41481776:0,0,0 -g2991,129:9769947,41481776 -k2991,130:14513443,41481776:3946578 -k2991,130:18460021,41481776:3946578 -) -(2991,131:6630773,42326775:11829248,505283,102891 -h2991,130:6630773,42326775:0,0,0 -g2991,130:10955493,42326775 -k2991,131:15305446,42326775:3154576 -k2991,131:18460021,42326775:3154575 -) -(2991,132:6630773,43171773:11829248,505283,102891 -h2991,131:6630773,43171773:0,0,0 -g2991,131:8979582,43171773 -k2991,132:14317490,43171773:4142531 -k2991,132:18460021,43171773:4142531 -) -(2991,133:6630773,44016772:11829248,505283,102891 -h2991,132:6630773,44016772:0,0,0 -g2991,132:10560311,44016772 -k2991,133:15107855,44016772:3352167 -k2991,133:18460021,44016772:3352166 -) -(2991,134:6630773,44861770:11829248,505283,102891 -h2991,133:6630773,44861770:0,0,0 -g2991,133:8584400,44861770 -g2991,133:10152676,44861770 -k2991,134:14904037,44861770:3555984 -k2991,134:18460021,44861770:3555984 -) -(2991,135:6630773,45706769:11829248,505283,102891 -h2991,134:6630773,45706769:0,0,0 -g2991,134:10560311,45706769 -k2991,135:15107855,45706769:3352167 -k2991,135:18460021,45706769:3352166 +g1,2114:6630773,4812305 ) -] -k2991,194:19606901,45706769:1146880 -r2991,194:19606901,45706769:0,40242380,134348 -k2991,194:20753781,45706769:1146880 -[2991,194:20753781,45706769:11829248,40108032,134348 -(2991,136:20753781,6254097:11829248,505283,102891 -h2991,135:20753781,6254097:0,0,0 -g2991,135:23497773,6254097 -g2991,135:24667590,6254097 -g2991,135:25837407,6254097 -g2991,135:27007224,6254097 -k2991,136:30193586,6254097:2389444 -k2991,136:32583029,6254097:2389443 -) -(2991,137:20753781,7100491:11829248,505283,102891 -h2991,136:20753781,7100491:0,0,0 -g2991,136:24288137,7100491 -k2991,137:28834042,7100491:3748987 -k2991,137:32583029,7100491:3748987 -) -(2991,138:20753781,7946884:11829248,513147,102891 -h2991,137:20753781,7946884:0,0,0 -g2991,137:27054411,7946884 -k2991,138:30416409,7946884:2166621 -k2991,138:32583029,7946884:2166620 -) -(2991,142:20753781,9530396:11829248,513147,102891 -h2991,141:20753781,9530396:0,0,0 -g2991,141:24683319,9530396 -k2991,142:29230863,9530396:3352167 -k2991,142:32583029,9530396:3352166 -) -(2991,143:20753781,10376790:11829248,505283,102891 -h2991,142:20753781,10376790:0,0,0 -g2991,142:25473683,10376790 -k2991,143:29626045,10376790:2956985 -k2991,143:32583029,10376790:2956984 -) -(2991,144:20753781,11223183:11829248,505283,102891 -h2991,143:20753781,11223183:0,0,0 -g2991,143:24288137,11223183 -g2991,143:25856413,11223183 -k2991,144:29817410,11223183:2765620 -k2991,144:32583029,11223183:2765619 -) -(2991,145:20753781,12069577:11829248,505283,102891 -h2991,144:20753781,12069577:0,0,0 -g2991,144:26659229,12069577 -k2991,145:30218818,12069577:2364212 -k2991,145:32583029,12069577:2364211 -) -(2991,146:20753781,12915970:11829248,505283,102891 -h2991,145:20753781,12915970:0,0,0 -g2991,145:24288137,12915970 -k2991,146:29033272,12915970:3549758 -k2991,146:32583029,12915970:3549757 -) -(2991,147:20753781,13762364:11829248,505283,126483 -h2991,146:20753781,13762364:0,0,0 -g2991,146:23102590,13762364 -k2991,147:28241269,13762364:4341761 -k2991,147:32583029,13762364:4341760 -) -(2991,148:20753781,14608758:11829248,505283,126483 -h2991,147:20753781,14608758:0,0,0 -g2991,147:27054411,14608758 -g2991,147:28622687,14608758 -k2991,148:31200547,14608758:1382483 -k2991,148:32583029,14608758:1382482 -) -(2991,149:20753781,15455151:11829248,505283,126483 -h2991,148:20753781,15455151:0,0,0 -g2991,148:25868865,15455151 -k2991,149:30585164,15455151:1997866 -k2991,149:32583029,15455151:1997865 -) -(2991,153:20753781,17038663:11829248,513147,134348 -h2991,152:20753781,17038663:0,0,0 -g2991,152:25868865,17038663 -k2991,153:29823636,17038663:2759394 -k2991,153:32583029,17038663:2759393 -) -(2991,154:20753781,17885057:11829248,513147,126483 -h2991,153:20753781,17885057:0,0,0 -g2991,153:25868865,17885057 -g2991,153:27437141,17885057 -g2991,153:29005417,17885057 -k2991,154:31391912,17885057:1191118 -k2991,154:32583029,17885057:1191117 -) -(2991,155:20753781,18731450:11829248,513147,102891 -h2991,154:20753781,18731450:0,0,0 -g2991,154:23497773,18731450 -k2991,155:28438860,18731450:4144169 -k2991,155:32583029,18731450:4144169 -) -(2991,156:20753781,19577844:11829248,513147,102891 -h2991,155:20753781,19577844:0,0,0 -g2991,155:24288137,19577844 -g2991,155:25457954,19577844 -g2991,155:26627771,19577844 -g2991,155:27797588,19577844 -k2991,156:30588768,19577844:1994262 -k2991,156:32583029,19577844:1994261 -) -(2991,157:20753781,20424237:11829248,485622,102891 -h2991,156:20753781,20424237:0,0,0 -g2991,156:23102590,20424237 -k2991,157:28241269,20424237:4341761 -k2991,157:32583029,20424237:4341760 -) -(2991,158:20753781,21270631:11829248,513147,126483 -h2991,157:20753781,21270631:0,0,0 -g2991,157:25473683,21270631 -k2991,158:29626045,21270631:2956985 -k2991,158:32583029,21270631:2956984 -) -(2991,159:20753781,22117024:11829248,513147,102891 -h2991,158:20753781,22117024:0,0,0 -g2991,158:24288137,22117024 -k2991,159:29033272,22117024:3549758 -k2991,159:32583029,22117024:3549757 -) -(2991,160:20753781,22963418:11829248,513147,102891 -h2991,159:20753781,22963418:0,0,0 -g2991,159:24288137,22963418 -g2991,159:25856413,22963418 -k2991,160:29817410,22963418:2765620 -k2991,160:32583029,22963418:2765619 -) -(2991,161:20753781,23809812:11829248,513147,102891 -h2991,160:20753781,23809812:0,0,0 -g2991,160:27054411,23809812 -k2991,161:30416409,23809812:2166621 -k2991,161:32583029,23809812:2166620 -) -(2991,162:20753781,24656205:11829248,513147,102891 -h2991,161:20753781,24656205:0,0,0 -g2991,161:22312226,24656205 -g2991,161:25403559,24656205 -k2991,162:29590983,24656205:2992047 -k2991,162:32583029,24656205:2992046 -) -(2991,163:20753781,25502599:11829248,513147,102891 -h2991,162:20753781,25502599:0,0,0 -g2991,162:24288137,25502599 -g2991,162:25457954,25502599 -g2991,162:26627771,25502599 -k2991,163:30203089,25502599:2379941 -k2991,163:32583029,25502599:2379940 -) -(2991,164:20753781,26348992:11829248,513147,102891 -h2991,163:20753781,26348992:0,0,0 -g2991,163:23892955,26348992 -g2991,163:25461231,26348992 -k2991,164:29619819,26348992:2963211 -k2991,164:32583029,26348992:2963210 -) -(2991,165:20753781,27195386:11829248,513147,102891 -h2991,164:20753781,27195386:0,0,0 -g2991,164:25078501,27195386 -k2991,165:29428454,27195386:3154576 -k2991,165:32583029,27195386:3154575 -) -(2991,166:20753781,28041779:11829248,513147,134348 -h2991,165:20753781,28041779:0,0,0 -g2991,165:25473683,28041779 -k2991,166:29626045,28041779:2956985 -k2991,166:32583029,28041779:2956984 -) -(2991,167:20753781,28888173:11829248,513147,102891 -h2991,166:20753781,28888173:0,0,0 -g2991,166:25078501,28888173 -k2991,167:29428454,28888173:3154576 -k2991,167:32583029,28888173:3154575 -) -(2991,171:20753781,30471685:11829248,505283,134348 -h2991,170:20753781,30471685:0,0,0 -g2991,170:24288137,30471685 -k2991,171:29033272,30471685:3549758 -k2991,171:32583029,30471685:3549757 -) -(2991,172:20753781,31318079:11829248,505283,134348 -h2991,171:20753781,31318079:0,0,0 -g2991,171:25473683,31318079 -k2991,172:29626045,31318079:2956985 -k2991,172:32583029,31318079:2956984 -) -(2991,173:20753781,32164472:11829248,485622,134348 -h2991,172:20753781,32164472:0,0,0 -g2991,172:24683319,32164472 -k2991,173:29230863,32164472:3352167 -k2991,173:32583029,32164472:3352166 -) -(2991,174:20753781,33010866:11829248,505283,134348 -h2991,173:20753781,33010866:0,0,0 -g2991,173:25473683,33010866 -g2991,173:27041959,33010866 -k2991,174:30410183,33010866:2172847 -k2991,174:32583029,33010866:2172846 -) -(2991,175:20753781,33857259:11829248,505283,134348 -h2991,174:20753781,33857259:0,0,0 -g2991,174:25078501,33857259 -g2991,174:26646777,33857259 -g2991,174:28215053,33857259 -g2991,174:29783329,33857259 -g2991,174:31351605,33857259 -k2991,175:32565006,33857259:18024 -k2991,175:32583029,33857259:18023 -) -(2991,176:20753781,34703653:11829248,505283,134348 -h2991,175:20753781,34703653:0,0,0 -g2991,175:25868865,34703653 -k2991,176:29823636,34703653:2759394 -k2991,176:32583029,34703653:2759393 -) -(2991,177:20753781,35550046:11829248,505283,134348 -h2991,176:20753781,35550046:0,0,0 -g2991,176:26659229,35550046 -k2991,177:30218818,35550046:2364212 -k2991,177:32583029,35550046:2364211 -) -(2991,178:20753781,36396440:11829248,505283,134348 -h2991,177:20753781,36396440:0,0,0 -g2991,177:25078501,36396440 -g2991,177:26646777,36396440 -g2991,177:28215053,36396440 -k2991,178:30996730,36396440:1586300 -k2991,178:32583029,36396440:1586299 -) -(2991,179:20753781,37242833:11829248,505283,134348 -h2991,178:20753781,37242833:0,0,0 -g2991,178:25868865,37242833 -k2991,179:29823636,37242833:2759394 -k2991,179:32583029,37242833:2759393 -) -(2991,180:20753781,38089227:11829248,505283,134348 -h2991,179:20753781,38089227:0,0,0 -g2991,179:26659229,38089227 -k2991,180:30218818,38089227:2364212 -k2991,180:32583029,38089227:2364211 -) -(2991,181:20753781,38935621:11829248,505283,134348 -h2991,180:20753781,38935621:0,0,0 -g2991,180:27844776,38935621 -k2991,181:30811591,38935621:1771438 -k2991,181:32583029,38935621:1771438 -) -(2991,182:20753781,39782014:11829248,505283,134348 -h2991,181:20753781,39782014:0,0,0 -g2991,181:26264047,39782014 -k2991,182:30021227,39782014:2561803 -k2991,182:32583029,39782014:2561802 -) -(2991,183:20753781,40628408:11829248,505283,134348 -h2991,182:20753781,40628408:0,0,0 -g2991,182:27054411,40628408 -k2991,183:30416409,40628408:2166621 -k2991,183:32583029,40628408:2166620 -) -(2991,184:20753781,41474801:11829248,505283,134348 -h2991,183:20753781,41474801:0,0,0 -g2991,183:25473683,41474801 -g2991,183:27041959,41474801 -k2991,184:30410183,41474801:2172847 -k2991,184:32583029,41474801:2172846 -) -(2991,185:20753781,42321195:11829248,505283,134348 -h2991,184:20753781,42321195:0,0,0 -g2991,184:27054411,42321195 -k2991,185:30416409,42321195:2166621 -k2991,185:32583029,42321195:2166620 -) -(2991,186:20753781,43167588:11829248,505283,134348 -h2991,185:20753781,43167588:0,0,0 -g2991,185:25078501,43167588 -k2991,186:29428454,43167588:3154576 -k2991,186:32583029,43167588:3154575 -) -(2991,187:20753781,44013982:11829248,505283,134348 -h2991,186:20753781,44013982:0,0,0 -g2991,186:27449594,44013982 -g2991,186:29017870,44013982 -k2991,187:31398138,44013982:1184891 -k2991,187:32583029,44013982:1184891 -) -(2991,188:20753781,44860375:11829248,505283,134348 -h2991,187:20753781,44860375:0,0,0 -g2991,187:25078501,44860375 -k2991,188:29428454,44860375:3154576 -k2991,188:32583029,44860375:3154575 -) -(2991,189:20753781,45706769:11829248,505283,134348 -h2991,188:20753781,45706769:0,0,0 -g2991,188:25868865,45706769 -g2991,188:27437141,45706769 -k2991,189:30607774,45706769:1975256 -k2991,189:32583029,45706769:1975255 ) ] -(2991,194:32583029,45706769:0,355205,126483 -h2991,194:32583029,45706769:420741,355205,126483 -k2991,194:32583029,45706769:-420741 -) +[1,2114:6630773,45706769:0,40108032,0 +(1,2114:6630773,45706769:0,40108032,0 +(1,2114:6630773,45706769:0,0,0 +g1,2114:6630773,45706769 ) +[1,2114:6630773,45706769:0,40108032,0 +h1,2114:6630773,6254097:0,0,0 ] -(2991,194:32583029,45706769:0,0,0 -g2991,194:32583029,45706769 +(1,2114:6630773,45706769:0,0,0 +g1,2114:6630773,45706769 ) ) ] -(2991,194:6630773,47279633:25952256,0,0 -h2991,194:6630773,47279633:25952256,0,0 +(1,2114:6630773,47279633:25952256,0,0 +h1,2114:6630773,47279633:25952256,0,0 ) ] -(2991,194:4262630,4025873:0,0,0 -[2991,194:-473656,4025873:0,0,0 -(2991,194:-473656,-710413:0,0,0 -(2991,194:-473656,-710413:0,0,0 -g2991,194:-473656,-710413 +(1,2114:4262630,4025873:0,0,0 +[1,2114:-473656,4025873:0,0,0 +(1,2114:-473656,-710413:0,0,0 +(1,2114:-473656,-710413:0,0,0 +g1,2114:-473656,-710413 ) -g2991,194:-473656,-710413 +g1,2114:-473656,-710413 ) ] ) ] -!22160 -}395 -!12 -{396 -[2991,292:4262630,47279633:28320399,43253760,0 -(2991,292:4262630,4025873:0,0,0 -[2991,292:-473656,4025873:0,0,0 -(2991,292:-473656,-710413:0,0,0 -(2991,292:-473656,-644877:0,0,0 -k2991,292:-473656,-644877:-65536 -) -(2991,292:-473656,4736287:0,0,0 -k2991,292:-473656,4736287:5209943 -) -g2991,292:-473656,-710413 +!3307 +}47 +Input:579:C:\Users\Aphalo\Documents\Own_manuscripts\Books\learnr-book-crc-2ed\rcatsidx.ind +!101 +{48 +[1,2116:4262630,47279633:28320399,43253760,11795 +(1,2116:4262630,4025873:0,0,0 +[1,2116:-473656,4025873:0,0,0 +(1,2116:-473656,-710413:0,0,0 +(1,2116:-473656,-644877:0,0,0 +k1,2116:-473656,-644877:-65536 ) -] +(1,2116:-473656,4736287:0,0,0 +k1,2116:-473656,4736287:5209943 ) -[2991,292:6630773,47279633:25952256,43253760,0 -[2991,292:6630773,4812305:25952256,786432,0 -(2991,292:6630773,4812305:25952256,513147,126483 -(2991,292:6630773,4812305:25952256,513147,126483 -g2991,292:3078558,4812305 -[2991,292:3078558,4812305:0,0,0 -(2991,292:3078558,2439708:0,1703936,0 -k2991,292:1358238,2439708:-1720320 -(2991,1:1358238,2439708:1720320,1703936,0 -(2991,1:1358238,2439708:1179648,16384,0 -r2991,292:2537886,2439708:1179648,16384,0 -) -g2991,1:3062174,2439708 -(2991,1:3062174,2439708:16384,1703936,0 -[2991,1:3062174,2439708:25952256,1703936,0 -(2991,1:3062174,1915420:25952256,1179648,0 -(2991,1:3062174,1915420:16384,1179648,0 -r2991,292:3078558,1915420:16384,1179648,0 -) -k2991,1:29014430,1915420:25935872 -g2991,1:29014430,1915420 +g1,2116:-473656,-710413 ) ] ) +[1,2116:6630773,47279633:25952256,43253760,11795 +[1,2116:6630773,4812305:25952256,786432,0 +(1,2116:6630773,4812305:25952256,0,0 +(1,2116:6630773,4812305:25952256,0,0 +g1,2116:3078558,4812305 +[1,2116:3078558,4812305:0,0,0 +(1,2116:3078558,2439708:0,1703936,0 +k1,2116:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,2116:2537886,2439708:1179648,16384,0 ) +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,2116:3078558,1915420:16384,1179648,0 ) -] -[2991,292:3078558,4812305:0,0,0 -(2991,292:3078558,2439708:0,1703936,0 -g2991,292:29030814,2439708 -g2991,292:36135244,2439708 -(2991,1:36135244,2439708:1720320,1703936,0 -(2991,1:36135244,2439708:16384,1703936,0 -[2991,1:36135244,2439708:25952256,1703936,0 -(2991,1:36135244,1915420:25952256,1179648,0 -(2991,1:36135244,1915420:16384,1179648,0 -r2991,292:36151628,1915420:16384,1179648,0 -) -k2991,1:62087500,1915420:25935872 -g2991,1:62087500,1915420 +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) ] ) -g2991,1:36675916,2439708 -(2991,1:36675916,2439708:1179648,16384,0 -r2991,292:37855564,2439708:1179648,16384,0 -) -) -k2991,292:3078556,2439708:-34777008 ) -] -[2991,292:3078558,4812305:0,0,0 -(2991,292:3078558,49800853:0,16384,2228224 -k2991,292:1358238,49800853:-1720320 -(2991,1:1358238,49800853:1720320,16384,2228224 -(2991,1:1358238,49800853:1179648,16384,0 -r2991,292:2537886,49800853:1179648,16384,0 -) -g2991,1:3062174,49800853 -(2991,1:3062174,52029077:16384,1703936,0 -[2991,1:3062174,52029077:25952256,1703936,0 -(2991,1:3062174,51504789:25952256,1179648,0 -(2991,1:3062174,51504789:16384,1179648,0 -r2991,292:3078558,51504789:16384,1179648,0 -) -k2991,1:29014430,51504789:25935872 -g2991,1:29014430,51504789 ) ] +[1,2116:3078558,4812305:0,0,0 +(1,2116:3078558,2439708:0,1703936,0 +g1,2116:29030814,2439708 +g1,2116:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,2116:36151628,1915420:16384,1179648,0 ) -) -) -] -[2991,292:3078558,4812305:0,0,0 -(2991,292:3078558,49800853:0,16384,2228224 -g2991,292:29030814,49800853 -g2991,292:36135244,49800853 -(2991,1:36135244,49800853:1720320,16384,2228224 -(2991,1:36135244,52029077:16384,1703936,0 -[2991,1:36135244,52029077:25952256,1703936,0 -(2991,1:36135244,51504789:25952256,1179648,0 -(2991,1:36135244,51504789:16384,1179648,0 -r2991,292:36151628,51504789:16384,1179648,0 -) -k2991,1:62087500,51504789:25935872 -g2991,1:62087500,51504789 +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) ] ) -g2991,1:36675916,49800853 -(2991,1:36675916,49800853:1179648,16384,0 -r2991,292:37855564,49800853:1179648,16384,0 +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,2116:37855564,2439708:1179648,16384,0 ) ) -k2991,292:3078556,49800853:-34777008 +k1,2116:3078556,2439708:-34777008 ) ] -g2991,292:6630773,4812305 -g2991,292:6630773,4812305 -g2991,292:10190688,4812305 -g2991,292:12065017,4812305 -g2991,292:12880284,4812305 -g2991,292:13493701,4812305 -g2991,292:15751416,4812305 -k2991,292:31387652,4812305:15636236 +[1,2116:3078558,4812305:0,0,0 +(1,2116:3078558,49800853:0,16384,2228224 +k1,2116:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,2116:2537886,49800853:1179648,16384,0 ) +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,2116:3078558,51504789:16384,1179648,0 ) -] -[2991,292:6630773,45706769:25952256,40108032,0 -(2991,292:6630773,45706769:25952256,40108032,0 -(2991,292:6630773,45706769:0,0,0 -g2991,292:6630773,45706769 -) -[2991,292:6630773,45706769:25952256,40108032,0 -(2991,292:6630773,45706769:25952256,40108032,134348 -[2991,292:6630773,45706769:11829248,40108032,134348 -(2991,190:6630773,6254097:11829248,505283,134348 -h2991,189:6630773,6254097:0,0,0 -g2991,189:10955493,6254097 -g2991,189:12523769,6254097 -k2991,190:16089584,6254097:2370438 -k2991,190:18460021,6254097:2370437 -) -(2991,191:6630773,7112893:11829248,505283,134348 -h2991,190:6630773,7112893:0,0,0 -g2991,190:11745857,7112893 -g2991,190:14837190,7112893 -k2991,191:17246294,7112893:1213727 -k2991,191:18460021,7112893:1213727 -) -(2991,192:6630773,7971688:11829248,505283,134348 -h2991,191:6630773,7971688:0,0,0 -g2991,191:13326586,7971688 -k2991,192:16490992,7971688:1969029 -k2991,192:18460021,7971688:1969029 -) -(2991,193:6630773,8830484:11829248,505283,134348 -h2991,192:6630773,8830484:0,0,0 -g2991,192:14116950,8830484 -k2991,193:16886174,8830484:1573847 -k2991,193:18460021,8830484:1573847 -) -(2991,194:6630773,9689279:11829248,505283,134348 -h2991,193:6630773,9689279:0,0,0 -g2991,193:10560311,9689279 -g2991,193:12128587,9689279 -k2991,194:15891993,9689279:2568029 -k2991,194:18460021,9689279:2568028 -) -(2991,195:6630773,10548075:11829248,505283,134348 -h2991,194:6630773,10548075:0,0,0 -g2991,194:11350675,10548075 -g2991,194:12918951,10548075 -g2991,194:14487227,10548075 -g2991,194:16055503,10548075 -k2991,194:18460021,10548075:1035471 -) -(2991,195:9252213,11389563:9207808,485622,102891 -g2991,194:10820489,11389563 -g2991,194:12388765,11389563 -k2991,195:16022082,11389563:2437940 -k2991,195:18460021,11389563:2437939 -) -(2991,196:6630773,12248358:11829248,505283,134348 -h2991,195:6630773,12248358:0,0,0 -g2991,195:13326586,12248358 -k2991,196:16490992,12248358:1969029 -k2991,196:18460021,12248358:1969029 -) -(2991,197:6630773,13107154:11829248,505283,134348 -h2991,196:6630773,13107154:0,0,0 -g2991,196:11350675,13107154 -g2991,196:12918951,13107154 -k2991,197:16287175,13107154:2172847 -k2991,197:18460021,13107154:2172846 -) -(2991,198:6630773,13965949:11829248,505283,134348 -h2991,197:6630773,13965949:0,0,0 -g2991,197:11350675,13965949 -g2991,197:12918951,13965949 -k2991,198:16287175,13965949:2172847 -k2991,198:18460021,13965949:2172846 -) -(2991,199:6630773,14824745:11829248,505283,134348 -h2991,198:6630773,14824745:0,0,0 -g2991,198:12931403,14824745 -k2991,199:16293401,14824745:2166621 -k2991,199:18460021,14824745:2166620 -) -(2991,200:6630773,15683540:11829248,505283,134348 -h2991,199:6630773,15683540:0,0,0 -g2991,199:10955493,15683540 -g2991,199:12523769,15683540 -g2991,199:14092045,15683540 -k2991,200:16873722,15683540:1586300 -k2991,200:18460021,15683540:1586299 -) -(2991,202:6630773,16542336:11829248,505283,134348 -h2991,200:6630773,16542336:0,0,0 -g2991,200:11745857,16542336 -g2991,200:13314133,16542336 -g2991,200:14882409,16542336 -g2991,200:16450685,16542336 -k2991,200:18460021,16542336:640289 -) -(2991,202:9252213,17383824:9207808,485622,102891 -g2991,200:10820489,17383824 -g2991,200:12388765,17383824 -g2991,200:13957041,17383824 -g2991,201:15525317,17383824 -k2991,202:17590358,17383824:869664 -k2991,202:18460021,17383824:869663 -) -(2991,203:6630773,18242619:11829248,505283,134348 -h2991,202:6630773,18242619:0,0,0 -g2991,202:13721768,18242619 -g2991,202:15290044,18242619 -g2991,202:16858320,18242619 -k2991,203:18256859,18242619:203162 -k2991,203:18460021,18242619:203162 -) -(2991,204:6630773,19101415:11829248,505283,134348 -h2991,203:6630773,19101415:0,0,0 -g2991,203:11745857,19101415 -k2991,204:15700628,19101415:2759394 -k2991,204:18460021,19101415:2759393 -) -(2991,205:6630773,19960210:11829248,505283,134348 -h2991,204:6630773,19960210:0,0,0 -g2991,204:12536221,19960210 -k2991,205:16095810,19960210:2364212 -k2991,205:18460021,19960210:2364211 -) -(2991,206:6630773,20819006:11829248,505283,134348 -h2991,205:6630773,20819006:0,0,0 -g2991,205:11745857,20819006 -k2991,206:15700628,20819006:2759394 -k2991,206:18460021,20819006:2759393 -) -(2991,207:6630773,21677802:11829248,505283,134348 -h2991,206:6630773,21677802:0,0,0 -g2991,206:11350675,21677802 -k2991,207:15503037,21677802:2956985 -k2991,207:18460021,21677802:2956984 -) -(2991,208:6630773,22536597:11829248,505283,134348 -h2991,207:6630773,22536597:0,0,0 -g2991,207:11350675,22536597 -k2991,208:15503037,22536597:2956985 -k2991,208:18460021,22536597:2956984 -) -(2991,209:6630773,23395393:11829248,505283,134348 -h2991,208:6630773,23395393:0,0,0 -g2991,208:10955493,23395393 -k2991,209:15305446,23395393:3154576 -k2991,209:18460021,23395393:3154575 -) -(2991,210:6630773,24254188:11829248,505283,134348 -h2991,209:6630773,24254188:0,0,0 -g2991,209:12536221,24254188 -k2991,210:16095810,24254188:2364212 -k2991,210:18460021,24254188:2364211 -) -(2991,211:6630773,25112984:11829248,513147,134348 -h2991,210:6630773,25112984:0,0,0 -g2991,210:10560311,25112984 -k2991,211:15107855,25112984:3352167 -k2991,211:18460021,25112984:3352166 -) -(2991,212:6630773,25971779:11829248,513147,134348 -h2991,211:6630773,25971779:0,0,0 -g2991,211:12931403,25971779 -k2991,212:16293401,25971779:2166621 -k2991,212:18460021,25971779:2166620 -) -(2991,213:6630773,26830575:11829248,513147,134348 -h2991,212:6630773,26830575:0,0,0 -g2991,212:12536221,26830575 -k2991,213:16095810,26830575:2364212 -k2991,213:18460021,26830575:2364211 -) -(2991,214:6630773,27689370:11829248,505283,134348 -h2991,213:6630773,27689370:0,0,0 -g2991,213:12141039,27689370 -g2991,213:13709315,27689370 -k2991,214:16682357,27689370:1777665 -k2991,214:18460021,27689370:1777664 -) -(2991,215:6630773,28548166:11829248,505283,134348 -h2991,214:6630773,28548166:0,0,0 -g2991,214:11745857,28548166 -k2991,215:15700628,28548166:2759394 -k2991,215:18460021,28548166:2759393 -) -(2991,216:6630773,29406961:11829248,505283,134348 -h2991,215:6630773,29406961:0,0,0 -g2991,215:11350675,29406961 -k2991,216:15503037,29406961:2956985 -k2991,216:18460021,29406961:2956984 -) -(2991,217:6630773,30265757:11829248,505283,134348 -h2991,216:6630773,30265757:0,0,0 -g2991,216:10955493,30265757 -k2991,217:15305446,30265757:3154576 -k2991,217:18460021,30265757:3154575 -) -(2991,218:6630773,31124552:11829248,505283,134348 -h2991,217:6630773,31124552:0,0,0 -g2991,217:11745857,31124552 -g2991,217:13314133,31124552 -k2991,218:16484766,31124552:1975256 -k2991,218:18460021,31124552:1975255 -) -(2991,219:6630773,31983348:11829248,505283,134348 -h2991,218:6630773,31983348:0,0,0 -g2991,218:13326586,31983348 -k2991,219:16490992,31983348:1969029 -k2991,219:18460021,31983348:1969029 -) -(2991,220:6630773,32842144:11829248,485622,134348 -h2991,219:6630773,32842144:0,0,0 -g2991,219:10560311,32842144 -g2991,219:12128587,32842144 -g2991,219:13696863,32842144 -k2991,220:16676131,32842144:1783891 -k2991,220:18460021,32842144:1783890 -) -(2991,221:6630773,33700939:11829248,505283,134348 -h2991,220:6630773,33700939:0,0,0 -g2991,220:11350675,33700939 -g2991,220:12918951,33700939 -g2991,220:16010284,33700939 -k2991,220:18460021,33700939:1080690 -) -(2991,221:9252213,34542427:9207808,485622,11795 -k2991,221:14453806,34542427:4006216 -k2991,221:18460021,34542427:4006215 -) -(2991,222:6630773,35401223:11829248,505283,134348 -h2991,221:6630773,35401223:0,0,0 -g2991,221:12931403,35401223 -k2991,222:16293401,35401223:2166621 -k2991,222:18460021,35401223:2166620 -) -(2991,223:6630773,36260018:11829248,505283,134348 -h2991,222:6630773,36260018:0,0,0 -g2991,222:13721768,36260018 -k2991,223:16688583,36260018:1771438 -k2991,223:18460021,36260018:1771438 -) -(2991,224:6630773,37118814:11829248,505283,134348 -h2991,223:6630773,37118814:0,0,0 -g2991,223:11350675,37118814 -g2991,223:12918951,37118814 -k2991,224:16287175,37118814:2172847 -k2991,224:18460021,37118814:2172846 -) -(2991,225:6630773,37977609:11829248,505283,134348 -h2991,224:6630773,37977609:0,0,0 -g2991,224:12141039,37977609 -k2991,225:15898219,37977609:2561803 -k2991,225:18460021,37977609:2561802 -) -(2991,226:6630773,38836405:11829248,505283,134348 -h2991,225:6630773,38836405:0,0,0 -g2991,225:10955493,38836405 -k2991,226:15305446,38836405:3154576 -k2991,226:18460021,38836405:3154575 -) -(2991,227:6630773,39695200:11829248,505283,134348 -h2991,226:6630773,39695200:0,0,0 -g2991,226:11745857,39695200 -g2991,226:13314133,39695200 -k2991,227:16484766,39695200:1975256 -k2991,227:18460021,39695200:1975255 -) -(2991,228:6630773,40553996:11829248,505283,134348 -h2991,227:6630773,40553996:0,0,0 -g2991,227:8979582,40553996 -k2991,228:14317490,40553996:4142531 -k2991,228:18460021,40553996:4142531 -) -(2991,229:6630773,41412791:11829248,505283,134348 -h2991,228:6630773,41412791:0,0,0 -g2991,228:9769947,41412791 -k2991,229:14712673,41412791:3747349 -k2991,229:18460021,41412791:3747348 -) -(2991,230:6630773,42271587:11829248,505283,134348 -h2991,229:6630773,42271587:0,0,0 -g2991,229:10165129,42271587 -g2991,229:11334946,42271587 -g2991,229:14426279,42271587 -k2991,230:17040839,42271587:1419183 -k2991,230:18460021,42271587:1419182 -) -(2991,231:6630773,43130382:11829248,505283,134348 -h2991,230:6630773,43130382:0,0,0 -g2991,230:11745857,43130382 -k2991,231:15700628,43130382:2759394 -k2991,231:18460021,43130382:2759393 -) -(2991,232:6630773,43989178:11829248,505283,134348 -h2991,231:6630773,43989178:0,0,0 -g2991,231:10560311,43989178 -k2991,232:15107855,43989178:3352167 -k2991,232:18460021,43989178:3352166 -) -(2991,233:6630773,44847973:11829248,505283,134348 -h2991,232:6630773,44847973:0,0,0 -g2991,232:8584400,44847973 -g2991,232:9754217,44847973 -k2991,233:14505578,44847973:3954443 -k2991,233:18460021,44847973:3954443 -) -(2991,234:6630773,45706769:11829248,505283,134348 -h2991,233:6630773,45706769:0,0,0 -g2991,233:8979582,45706769 -k2991,234:14317490,45706769:4142531 -k2991,234:18460021,45706769:4142531 +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) ] -k2991,292:19606901,45706769:1146880 -r2991,292:19606901,45706769:0,40242380,134348 -k2991,292:20753781,45706769:1146880 -[2991,292:20753781,45706769:11829248,40108032,102891 -(2991,235:20753781,6254097:11829248,505283,134348 -h2991,234:20753781,6254097:0,0,0 -g2991,234:25078501,6254097 -g2991,234:26646777,6254097 -k2991,235:30212592,6254097:2370438 -k2991,235:32583029,6254097:2370437 -) -(2991,239:20753781,7837609:11829248,505283,102891 -h2991,238:20753781,7837609:0,0,0 -g2991,238:23102590,7837609 -k2991,239:28440498,7837609:4142531 -k2991,239:32583029,7837609:4142531 -) -(2991,240:20753781,8684003:11829248,505283,102891 -h2991,239:20753781,8684003:0,0,0 -g2991,239:24288137,8684003 -g2991,239:25856413,8684003 -k2991,240:29817410,8684003:2765620 -k2991,240:32583029,8684003:2765619 -) -(2991,241:20753781,9530396:11829248,505283,102891 -h2991,240:20753781,9530396:0,0,0 -g2991,240:23497773,9530396 -g2991,240:24667590,9530396 -k2991,241:29023769,9530396:3559261 -k2991,241:32583029,9530396:3559260 -) -(2991,242:20753781,10376790:11829248,505283,126483 -h2991,241:20753781,10376790:0,0,0 -g2991,241:23497773,10376790 -k2991,242:28438860,10376790:4144169 -k2991,242:32583029,10376790:4144169 -) -(2991,246:20753781,11960302:11829248,505283,102891 -h2991,245:20753781,11960302:0,0,0 -g2991,245:22312226,11960302 -g2991,245:23482043,11960302 -g2991,245:24651860,11960302 -g2991,245:26220136,11960302 -k2991,246:29999271,11960302:2583758 -k2991,246:32583029,11960302:2583758 -) -(2991,247:20753781,12806695:11829248,505283,102891 -h2991,246:20753781,12806695:0,0,0 -g2991,246:25473683,12806695 -k2991,247:29626045,12806695:2956985 -k2991,247:32583029,12806695:2956984 -) -(2991,248:20753781,13653089:11829248,513147,102891 -h2991,247:20753781,13653089:0,0,0 -g2991,247:21939327,13653089 -g2991,247:23102590,13653089 -g2991,247:24670866,13653089 -k2991,248:29224636,13653089:3358393 -k2991,248:32583029,13653089:3358393 -) -(2991,249:20753781,14499482:11829248,513147,102891 -h2991,248:20753781,14499482:0,0,0 -g2991,248:21939327,14499482 -g2991,248:23124873,14499482 -g2991,248:23915237,14499482 -g2991,248:25868864,14499482 -k2991,249:29823635,14499482:2759394 -k2991,249:32583029,14499482:2759394 -) -(2991,250:20753781,15345876:11829248,513147,102891 -h2991,249:20753781,15345876:0,0,0 -g2991,249:22707408,15345876 -k2991,250:28242907,15345876:4340122 -k2991,250:32583029,15345876:4340122 -) -(2991,251:20753781,16192270:11829248,513147,102891 -h2991,250:20753781,16192270:0,0,0 -g2991,250:24683319,16192270 -k2991,251:29230863,16192270:3352167 -k2991,251:32583029,16192270:3352166 -) -(2991,252:20753781,17038663:11829248,513147,102891 -h2991,251:20753781,17038663:0,0,0 -g2991,251:24288137,17038663 -k2991,252:29794800,17038663:2788230 -k2991,252:32583029,17038663:2788229 -) -(2991,253:20753781,17885057:11829248,513147,102891 -h2991,252:20753781,17885057:0,0,0 -g2991,252:22312226,17885057 -g2991,252:23482043,17885057 -k2991,253:28430995,17885057:4152034 -k2991,253:32583029,17885057:4152034 -) -(2991,254:20753781,18731450:11829248,505283,102891 -h2991,253:20753781,18731450:0,0,0 -g2991,253:25078501,18731450 -g2991,253:26248318,18731450 -k2991,254:30013362,18731450:2569667 -k2991,254:32583029,18731450:2569667 -) -(2991,255:20753781,19577844:11829248,505283,134348 -h2991,254:20753781,19577844:0,0,0 -g2991,254:25868865,19577844 -k2991,255:29823636,19577844:2759394 -k2991,255:32583029,19577844:2759393 -) -(2991,256:20753781,20424237:11829248,485622,126483 -h2991,255:20753781,20424237:0,0,0 -g2991,255:25473683,20424237 -k2991,256:29626045,20424237:2956985 -k2991,256:32583029,20424237:2956984 -) -(2991,257:20753781,21270631:11829248,485622,126483 -h2991,256:20753781,21270631:0,0,0 -g2991,256:25868865,21270631 -k2991,257:29823636,21270631:2759394 -k2991,257:32583029,21270631:2759393 -) -(2991,258:20753781,22117024:11829248,505283,134348 -h2991,257:20753781,22117024:0,0,0 -g2991,257:28239958,22117024 -k2991,258:31009182,22117024:1573847 -k2991,258:32583029,22117024:1573847 -) -(2991,259:20753781,22963418:11829248,505283,134348 -h2991,258:20753781,22963418:0,0,0 -g2991,258:23892955,22963418 -g2991,258:25062772,22963418 -g2991,258:26232589,22963418 -g2991,258:27402406,22963418 -k2991,259:30391177,22963418:2191853 -k2991,259:32583029,22963418:2191852 -) -(2991,260:20753781,23809812:11829248,505283,102891 -h2991,259:20753781,23809812:0,0,0 -g2991,259:22707408,23809812 -g2991,259:24275684,23809812 -k2991,260:29027045,23809812:3555984 -k2991,260:32583029,23809812:3555984 -) -(2991,261:20753781,24656205:11829248,505283,126483 -h2991,260:20753781,24656205:0,0,0 -g2991,260:25078501,24656205 -k2991,261:29229224,24656205:3353805 -k2991,261:32583029,24656205:3353805 -) -(2991,262:20753781,25502599:11829248,505283,102891 -h2991,261:20753781,25502599:0,0,0 -g2991,261:26659229,25502599 -k2991,262:30019588,25502599:2563441 -k2991,262:32583029,25502599:2563441 -) -(2991,263:20753781,26348992:11829248,505283,102891 -h2991,262:20753781,26348992:0,0,0 -g2991,262:25868865,26348992 -g2991,262:27038682,26348992 -k2991,263:30209315,26348992:2373715 -k2991,263:32583029,26348992:2373714 -) -(2991,264:20753781,27195386:11829248,505283,134348 -h2991,263:20753781,27195386:0,0,0 -g2991,263:25868865,27195386 -k2991,264:29624406,27195386:2958623 -k2991,264:32583029,27195386:2958623 -) -(2991,265:20753781,28041779:11829248,505283,102891 -h2991,264:20753781,28041779:0,0,0 -g2991,264:25473683,28041779 -k2991,265:29426815,28041779:3156214 -k2991,265:32583029,28041779:3156214 -) -(2991,266:20753781,28888173:11829248,505283,102891 -h2991,265:20753781,28888173:0,0,0 -g2991,265:23892955,28888173 -k2991,266:28636451,28888173:3946578 -k2991,266:32583029,28888173:3946578 -) -(2991,267:20753781,29734566:11829248,505283,102891 -h2991,266:20753781,29734566:0,0,0 -g2991,266:25868865,29734566 -g2991,266:27038682,29734566 -k2991,267:30209315,29734566:2373715 -k2991,267:32583029,29734566:2373714 -) -(2991,268:20753781,30580960:11829248,505283,102891 -h2991,267:20753781,30580960:0,0,0 -g2991,267:25473683,30580960 -k2991,268:29426815,30580960:3156214 -k2991,268:32583029,30580960:3156214 -) -(2991,269:20753781,31427354:11829248,505283,102891 -h2991,268:20753781,31427354:0,0,0 -g2991,268:25473683,31427354 -k2991,269:29626045,31427354:2956985 -k2991,269:32583029,31427354:2956984 -) -(2991,270:20753781,32273747:11829248,505283,102891 -h2991,269:20753781,32273747:0,0,0 -g2991,269:24288137,32273747 -k2991,270:29033272,32273747:3549758 -k2991,270:32583029,32273747:3549757 -) -(2991,274:20753781,33857259:11829248,505283,126483 -h2991,273:20753781,33857259:0,0,0 -g2991,273:26659229,33857259 -k2991,274:30218818,33857259:2364212 -k2991,274:32583029,33857259:2364211 -) -(2991,275:20753781,34703653:11829248,505283,102891 -h2991,274:20753781,34703653:0,0,0 -g2991,274:25868865,34703653 -k2991,275:29823636,34703653:2759394 -k2991,275:32583029,34703653:2759393 -) -(2991,276:20753781,35550046:11829248,505283,102891 -h2991,275:20753781,35550046:0,0,0 -g2991,275:28239958,35550046 -k2991,276:31009182,35550046:1573847 -k2991,276:32583029,35550046:1573847 -) -(2991,277:20753781,36396440:11829248,505283,102891 -h2991,276:20753781,36396440:0,0,0 -g2991,276:25868865,36396440 -k2991,277:29823636,36396440:2759394 -k2991,277:32583029,36396440:2759393 -) -(2991,278:20753781,37242833:11829248,505283,102891 -h2991,277:20753781,37242833:0,0,0 -g2991,277:23497773,37242833 -g2991,277:25066049,37242833 -k2991,278:29422228,37242833:3160802 -k2991,278:32583029,37242833:3160801 -) -(2991,279:20753781,38089227:11829248,505283,126483 -h2991,278:20753781,38089227:0,0,0 -g2991,278:24288137,38089227 -g2991,278:25457954,38089227 -g2991,278:27026230,38089227 -k2991,279:30402318,38089227:2180711 -k2991,279:32583029,38089227:2180711 -) -(2991,280:20753781,38935621:11829248,513147,134348 -h2991,279:20753781,38935621:0,0,0 -g2991,279:25473683,38935621 -k2991,280:29626045,38935621:2956985 -k2991,280:32583029,38935621:2956984 -) -(2991,281:20753781,39782014:11829248,505283,134348 -h2991,280:20753781,39782014:0,0,0 -g2991,280:24288137,39782014 -g2991,280:25457954,39782014 -g2991,280:26627771,39782014 -g2991,280:27797588,39782014 -g2991,280:28967405,39782014 -g2991,280:30535681,39782014 -k2991,281:32157044,39782014:425986 -k2991,281:32583029,39782014:425985 -) -(2991,282:20753781,40628408:11829248,481690,102891 -h2991,281:20753781,40628408:0,0,0 -g2991,281:23892955,40628408 -k2991,282:28636451,40628408:3946578 -k2991,282:32583029,40628408:3946578 -) -(2991,283:20753781,41474801:11829248,505283,102891 -h2991,282:20753781,41474801:0,0,0 -g2991,282:23892955,41474801 -k2991,283:28636451,41474801:3946578 -k2991,283:32583029,41474801:3946578 -) -(2991,284:20753781,42321195:11829248,505283,102891 -h2991,283:20753781,42321195:0,0,0 -g2991,283:24288137,42321195 -g2991,283:25457954,42321195 -g2991,283:26627771,42321195 -k2991,284:30003859,42321195:2579170 -k2991,284:32583029,42321195:2579170 -) -(2991,285:20753781,43167588:11829248,505283,102891 -h2991,284:20753781,43167588:0,0,0 -g2991,284:25078501,43167588 -g2991,284:26248318,43167588 -k2991,285:29814133,43167588:2768897 -k2991,285:32583029,43167588:2768896 -) -(2991,286:20753781,44013982:11829248,505283,126483 -h2991,285:20753781,44013982:0,0,0 -g2991,285:24683319,44013982 -k2991,286:29230863,44013982:3352167 -k2991,286:32583029,44013982:3352166 -) -(2991,287:20753781,44860375:11829248,505283,102891 -h2991,286:20753781,44860375:0,0,0 -g2991,286:22707408,44860375 -g2991,286:23877225,44860375 -g2991,286:25047042,44860375 -g2991,286:26216859,44860375 -g2991,286:27785135,44860375 -g2991,286:29353411,44860375 -k2991,287:31565909,44860375:1017121 -k2991,287:32583029,44860375:1017120 -) -(2991,288:20753781,45706769:11829248,505283,102891 -h2991,287:20753781,45706769:0,0,0 -g2991,287:23497773,45706769 -k2991,288:28438860,45706769:4144169 -k2991,288:32583029,45706769:4144169 ) -] -(2991,292:32583029,45706769:0,355205,126483 -h2991,292:32583029,45706769:420741,355205,126483 -k2991,292:32583029,45706769:-420741 ) ) ] -(2991,292:32583029,45706769:0,0,0 -g2991,292:32583029,45706769 +[1,2116:3078558,4812305:0,0,0 +(1,2116:3078558,49800853:0,16384,2228224 +g1,2116:29030814,49800853 +g1,2116:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,2116:36151628,51504789:16384,1179648,0 ) +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 ) ] -(2991,292:6630773,47279633:25952256,0,0 -h2991,292:6630773,47279633:25952256,0,0 -) -] -(2991,292:4262630,4025873:0,0,0 -[2991,292:-473656,4025873:0,0,0 -(2991,292:-473656,-710413:0,0,0 -(2991,292:-473656,-710413:0,0,0 -g2991,292:-473656,-710413 ) -g2991,292:-473656,-710413 +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,2116:37855564,49800853:1179648,16384,0 ) -] ) -] -!22666 -}396 -!12 -{397 -[2991,400:4262630,47279633:28320399,43253760,0 -(2991,400:4262630,4025873:0,0,0 -[2991,400:-473656,4025873:0,0,0 -(2991,400:-473656,-710413:0,0,0 -(2991,400:-473656,-644877:0,0,0 -k2991,400:-473656,-644877:-65536 -) -(2991,400:-473656,4736287:0,0,0 -k2991,400:-473656,4736287:5209943 -) -g2991,400:-473656,-710413 +k1,2116:3078556,49800853:-34777008 ) ] +g1,2116:6630773,4812305 ) -[2991,400:6630773,47279633:25952256,43253760,0 -[2991,400:6630773,4812305:25952256,786432,0 -(2991,400:6630773,4812305:25952256,513147,126483 -(2991,400:6630773,4812305:25952256,513147,126483 -g2991,400:3078558,4812305 -[2991,400:3078558,4812305:0,0,0 -(2991,400:3078558,2439708:0,1703936,0 -k2991,400:1358238,2439708:-1720320 -(2991,1:1358238,2439708:1720320,1703936,0 -(2991,1:1358238,2439708:1179648,16384,0 -r2991,400:2537886,2439708:1179648,16384,0 -) -g2991,1:3062174,2439708 -(2991,1:3062174,2439708:16384,1703936,0 -[2991,1:3062174,2439708:25952256,1703936,0 -(2991,1:3062174,1915420:25952256,1179648,0 -(2991,1:3062174,1915420:16384,1179648,0 -r2991,400:3078558,1915420:16384,1179648,0 -) -k2991,1:29014430,1915420:25935872 -g2991,1:29014430,1915420 ) ] +[1,2116:6630773,45706769:25952256,40108032,0 +(1,2116:6630773,45706769:25952256,40108032,0 +(1,2116:6630773,45706769:0,0,0 +g1,2116:6630773,45706769 ) +[1,2116:6630773,45706769:25952256,40108032,0 +[579,1:6630773,12106481:25952256,6507744,0 +(579,1:6630773,7073297:25952256,32768,229376 +(579,1:6630773,7073297:0,32768,229376 +(579,1:6630773,7073297:5505024,32768,229376 +r1,2116:12135797,7073297:5505024,262144,229376 ) +k579,1:6630773,7073297:-5505024 ) -] -[2991,400:3078558,4812305:0,0,0 -(2991,400:3078558,2439708:0,1703936,0 -g2991,400:29030814,2439708 -g2991,400:36135244,2439708 -(2991,1:36135244,2439708:1720320,1703936,0 -(2991,1:36135244,2439708:16384,1703936,0 -[2991,1:36135244,2439708:25952256,1703936,0 -(2991,1:36135244,1915420:25952256,1179648,0 -(2991,1:36135244,1915420:16384,1179648,0 -r2991,400:36151628,1915420:16384,1179648,0 -) -k2991,1:62087500,1915420:25935872 -g2991,1:62087500,1915420 -) -] -) -g2991,1:36675916,2439708 -(2991,1:36675916,2439708:1179648,16384,0 -r2991,400:37855564,2439708:1179648,16384,0 ) +(579,1:6630773,8803457:25952256,923664,241827 +h579,1:6630773,8803457:0,0,0 +g579,1:10235777,8803457 +g579,1:11799990,8803457 +g579,1:12964302,8803457 +g579,1:17208675,8803457 +g579,1:19014716,8803457 +k579,1:28388200,8803457:4194829 +k579,1:32583029,8803457:4194829 +) +(579,1:6630773,9419505:25952256,32768,0 +(579,1:6630773,9419505:5505024,32768,0 +r1,2116:12135797,9419505:5505024,32768,0 +) +k579,1:22359413,9419505:10223616 +k579,1:32583029,9419505:10223616 +) +] +(579,59:6630773,35306369:25952256,22227328,126483 +[579,59:6630773,35306369:11829248,22227328,126483 +(579,4:6630773,13734401:11829248,505283,7863 +h579,3:6630773,13734401:0,0,0 +g579,3:9062814,13734401 +g579,3:10453488,13734401 +k579,4:15513195,13734401:2946826 +k579,4:18460021,13734401:2946826 +) +(579,5:6630773,14575889:11829248,505283,134348 +h579,4:6630773,14575889:0,0,0 +r1,2116:6630773,14575889:0,639631,134348 +g579,4:7941493,14575889 +g579,4:7941493,14575889 +g579,4:11080667,14575889 +g579,4:12250484,14575889 +k579,5:15753712,14575889:2706310 +k579,5:18460021,14575889:2706309 +) +(579,6:6630773,15417377:11829248,505283,102891 +h579,5:6630773,15417377:0,0,0 +r1,2116:6630773,15417377:0,608174,102891 +g579,5:7941493,15417377 +g579,5:7941493,15417377 +g579,5:11080667,15417377 +k579,6:15168803,15417377:3291218 +k579,6:18460021,15417377:3291218 +) +(579,7:6630773,16258865:11829248,513147,7863 +h579,6:6630773,16258865:0,0,0 +g579,6:9117864,16258865 +g579,6:9976385,16258865 +k579,7:15756006,16258865:2704016 +k579,7:18460021,16258865:2704015 +) +(579,8:6630773,17100353:11829248,505283,126483 +h579,7:6630773,17100353:0,0,0 +r1,2116:6630773,17100353:0,631766,126483 +g579,7:7941493,17100353 +g579,7:7941493,17100353 +g579,7:11080667,17100353 +g579,7:12250484,17100353 +g579,7:13420301,17100353 +k579,8:16900919,17100353:1559102 +k579,8:18460021,17100353:1559102 +) +(579,9:6630773,17941841:11829248,505283,102891 +h579,8:6630773,17941841:0,0,0 +r1,2116:6630773,17941841:0,608174,102891 +g579,8:7941493,17941841 +g579,8:7941493,17941841 +g579,8:11080667,17941841 +k579,9:15731102,17941841:2728919 +k579,9:18460021,17941841:2728919 +) +(579,10:6630773,18783329:11829248,513147,102891 +h579,9:6630773,18783329:0,0,0 +r1,2116:6630773,18783329:0,616038,102891 +g579,9:7941493,18783329 +g579,9:7941493,18783329 +g579,9:9499938,18783329 +g579,9:11794353,18783329 +k579,10:15525646,18783329:2934375 +k579,10:18460021,18783329:2934375 +) +(579,11:6630773,19624817:11829248,513147,102891 +h579,10:6630773,19624817:0,0,0 +r1,2116:6630773,19624817:0,616038,102891 +g579,10:7941493,19624817 +g579,10:7941493,19624817 +g579,10:9127039,19624817 +g579,10:10290302,19624817 +k579,11:14773621,19624817:3686401 +k579,11:18460021,19624817:3686400 +) +(579,12:6630773,20466305:11829248,513147,102891 +h579,11:6630773,20466305:0,0,0 +r1,2116:6630773,20466305:0,616038,102891 +g579,11:7941493,20466305 +g579,11:7941493,20466305 +g579,11:9127039,20466305 +g579,11:10312585,20466305 +g579,11:11102949,20466305 +g579,11:13056576,20466305 +k579,12:16156758,20466305:2303264 +k579,12:18460021,20466305:2303263 +) +(579,13:6630773,21307793:11829248,513147,102891 +h579,12:6630773,21307793:0,0,0 +r1,2116:6630773,21307793:0,616038,102891 +g579,12:7941493,21307793 +g579,12:7941493,21307793 +g579,12:9895120,21307793 +k579,13:14576030,21307793:3883992 +k579,13:18460021,21307793:3883991 +) +(579,14:6630773,22149281:11829248,513147,102891 +h579,13:6630773,22149281:0,0,0 +r1,2116:6630773,22149281:0,616038,102891 +g579,13:7941493,22149281 +g579,13:7941493,22149281 +g579,13:11871031,22149281 +k579,14:15563985,22149281:2896036 +k579,14:18460021,22149281:2896036 +) +(579,15:6630773,22990769:11829248,513147,102891 +h579,14:6630773,22990769:0,0,0 +r1,2116:6630773,22990769:0,616038,102891 +g579,14:7941493,22990769 +g579,14:7941493,22990769 +g579,14:11475849,22990769 +g579,14:12645666,22990769 +k579,15:15951303,22990769:2508719 +k579,15:18460021,22990769:2508718 +) +(579,16:6630773,23832257:11829248,505283,126483 +h579,15:6630773,23832257:0,0,0 +r1,2116:6630773,23832257:0,631766,126483 +g579,15:7941493,23832257 +g579,15:7941493,23832257 +g579,15:11475849,23832257 +g579,15:12645666,23832257 +k579,16:15951303,23832257:2508719 +k579,16:18460021,23832257:2508718 +) +(579,17:6630773,24673745:11829248,505283,102891 +h579,16:6630773,24673745:0,0,0 +r1,2116:6630773,24673745:0,608174,102891 +g579,16:7941493,24673745 +g579,16:7941493,24673745 +g579,16:10685485,24673745 +g579,16:11855302,24673745 +k579,17:15556121,24673745:2903901 +k579,17:18460021,24673745:2903900 +) +(579,18:6630773,25515233:11829248,485622,126483 +h579,17:6630773,25515233:0,0,0 +r1,2116:6630773,25515233:0,612105,126483 +g579,17:7941493,25515233 +g579,17:7941493,25515233 +g579,17:10685485,25515233 +g579,17:11855302,25515233 +g579,17:13025119,25515233 +k579,18:16141029,25515233:2318992 +k579,18:18460021,25515233:2318992 +) +(579,19:6630773,26356721:11829248,505283,126483 +h579,18:6630773,26356721:0,0,0 +r1,2116:6630773,26356721:0,631766,126483 +g579,18:7941493,26356721 +g579,18:7941493,26356721 +g579,18:11475849,26356721 +g579,18:12645666,26356721 +k579,19:15951303,26356721:2508719 +k579,19:18460021,26356721:2508718 +) +(579,20:6630773,27198209:11829248,505283,102891 +h579,19:6630773,27198209:0,0,0 +r1,2116:6630773,27198209:0,608174,102891 +g579,19:7941493,27198209 +g579,19:7941493,27198209 +g579,19:11475849,27198209 +g579,19:12645666,27198209 +g579,19:13815483,27198209 +k579,20:16536211,27198209:1923810 +k579,20:18460021,27198209:1923810 +) +(579,21:6630773,28039697:11829248,505283,126483 +h579,20:6630773,28039697:0,0,0 +r1,2116:6630773,28039697:0,631766,126483 +g579,20:7941493,28039697 +g579,20:7941493,28039697 +g579,20:11475849,28039697 +k579,21:15928693,28039697:2531328 +k579,21:18460021,28039697:2531328 +) +(579,22:6630773,28881185:11829248,505283,102891 +h579,21:6630773,28881185:0,0,0 +r1,2116:6630773,28881185:0,608174,102891 +g579,21:7941493,28881185 +g579,21:7941493,28881185 +g579,21:10290302,28881185 +g579,21:11460119,28881185 +k579,22:15920828,28881185:2539193 +k579,22:18460021,28881185:2539193 +) +(579,26:6630773,30257441:11829248,513147,7863 +h579,25:6630773,30257441:0,0,0 +g579,25:9855799,30257441 +g579,25:11246473,30257441 +k579,26:16245560,30257441:2214462 +k579,26:18460021,30257441:2214461 +) +(579,27:6630773,31098929:11829248,505283,134348 +h579,26:6630773,31098929:0,0,0 +r1,2116:6630773,31098929:0,639631,134348 +g579,26:7941493,31098929 +g579,26:7941493,31098929 +g579,26:12661395,31098929 +k579,27:15959167,31098929:2500854 +k579,27:18460021,31098929:2500854 +) +(579,28:6630773,31940417:11829248,505283,102891 +h579,27:6630773,31940417:0,0,0 +r1,2116:6630773,31940417:0,608174,102891 +g579,27:7941493,31940417 +g579,27:7941493,31940417 +g579,27:11080667,31940417 +k579,28:15168803,31940417:3291218 +k579,28:18460021,31940417:3291218 +) +(579,29:6630773,32781905:11829248,505283,134348 +h579,28:6630773,32781905:0,0,0 +r1,2116:6630773,32781905:0,639631,134348 +g579,28:7941493,32781905 +g579,28:7941493,32781905 +g579,28:11475849,32781905 +g579,28:12645666,32781905 +k579,29:15951303,32781905:2508719 +k579,29:18460021,32781905:2508718 +) +(579,30:6630773,33623393:11829248,505283,102891 +h579,29:6630773,33623393:0,0,0 +r1,2116:6630773,33623393:0,608174,102891 +g579,29:7941493,33623393 +g579,29:7941493,33623393 +g579,29:11475849,33623393 +k579,30:15366394,33623393:3093627 +k579,30:18460021,33623393:3093627 +) +(579,31:6630773,34464881:11829248,505283,102891 +h579,30:6630773,34464881:0,0,0 +r1,2116:6630773,34464881:0,608174,102891 +g579,30:7941493,34464881 +g579,30:7941493,34464881 +g579,30:11475849,34464881 +k579,31:15366394,34464881:3093627 +k579,31:18460021,34464881:3093627 +) +(579,32:6630773,35306369:11829248,505283,126483 +h579,31:6630773,35306369:0,0,0 +r1,2116:6630773,35306369:0,631766,126483 +g579,31:7941493,35306369 +g579,31:7941493,35306369 +g579,31:11871031,35306369 +k579,32:15563985,35306369:2896036 +k579,32:18460021,35306369:2896036 +) +] +k579,59:19606901,35306369:1146880 +r1,2116:19606901,35306369:0,22353811,126483 +k579,59:20753781,35306369:1146880 +[579,59:20753781,35306369:11829248,22227328,102891 +(579,33:20753781,13734401:11829248,505283,102891 +h579,32:20753781,13734401:0,0,0 +r1,2116:20753781,13734401:0,608174,102891 +g579,32:22064501,13734401 +g579,32:22064501,13734401 +g579,32:25598857,13734401 +k579,33:29489402,13734401:3093627 +k579,33:32583029,13734401:3093627 +) +(579,34:20753781,14597280:11829248,513147,102891 +h579,33:20753781,14597280:0,0,0 +r1,2116:20753781,14597280:0,616038,102891 +g579,33:22064501,14597280 +g579,33:22064501,14597280 +g579,33:24808493,14597280 +k579,34:29094220,14597280:3488809 +k579,34:32583029,14597280:3488809 +) +(579,35:20753781,15460158:11829248,513147,102891 +h579,34:20753781,15460158:0,0,0 +r1,2116:20753781,15460158:0,616038,102891 +g579,34:22064501,15460158 +g579,34:22064501,15460158 +g579,34:25994039,15460158 +k579,35:29686993,15460158:2896036 +k579,35:32583029,15460158:2896036 +) +(579,36:20753781,16323037:11829248,505283,102891 +h579,35:20753781,16323037:0,0,0 +r1,2116:20753781,16323037:0,608174,102891 +g579,35:22064501,16323037 +g579,35:22064501,16323037 +g579,35:25994039,16323037 +g579,35:27163856,16323037 +k579,36:30271902,16323037:2311128 +k579,36:32583029,16323037:2311127 +) +(579,37:20753781,17185916:11829248,513147,102891 +h579,36:20753781,17185916:0,0,0 +r1,2116:20753781,17185916:0,616038,102891 +g579,36:22064501,17185916 +g579,36:22064501,17185916 +g579,36:26784403,17185916 +k579,37:30082175,17185916:2500854 +k579,37:32583029,17185916:2500854 +) +(579,38:20753781,18048795:11829248,505283,134348 +h579,37:20753781,18048795:0,0,0 +r1,2116:20753781,18048795:0,639631,134348 +g579,37:22064501,18048795 +g579,37:22064501,18048795 +g579,37:24413310,18048795 +g579,37:25583127,18048795 +k579,38:29481537,18048795:3101492 +k579,38:32583029,18048795:3101492 +) +(579,39:20753781,18911673:11829248,505283,134348 +h579,38:20753781,18911673:0,0,0 +r1,2116:20753781,18911673:0,639631,134348 +g579,38:22064501,18911673 +g579,38:22064501,18911673 +g579,38:27179585,18911673 +k579,39:30279766,18911673:2303263 +k579,39:32583029,18911673:2303263 +) +(579,40:20753781,19774552:11829248,505283,134348 +h579,39:20753781,19774552:0,0,0 +r1,2116:20753781,19774552:0,639631,134348 +g579,39:22064501,19774552 +g579,39:22064501,19774552 +g579,39:25598857,19774552 +k579,40:29290173,19774552:3292857 +k579,40:32583029,19774552:3292856 +) +(579,41:20753781,20637431:11829248,505283,102891 +h579,40:20753781,20637431:0,0,0 +r1,2116:20753781,20637431:0,608174,102891 +g579,40:22064501,20637431 +g579,40:22064501,20637431 +g579,40:27574767,20637431 +k579,41:30477357,20637431:2105672 +k579,41:32583029,20637431:2105672 +) +(579,42:20753781,21500309:11829248,505283,102891 +h579,41:20753781,21500309:0,0,0 +r1,2116:20753781,21500309:0,608174,102891 +g579,41:22064501,21500309 +g579,41:22064501,21500309 +g579,41:24413310,21500309 +k579,42:28896629,21500309:3686401 +k579,42:32583029,21500309:3686400 +) +(579,43:20753781,22363188:11829248,505283,102891 +h579,42:20753781,22363188:0,0,0 +r1,2116:20753781,22363188:0,608174,102891 +g579,42:22064501,22363188 +g579,42:22064501,22363188 +g579,42:24808493,22363188 +g579,42:25978310,22363188 +k579,43:29679129,22363188:2903901 +k579,43:32583029,22363188:2903900 +) +(579,44:20753781,23226067:11829248,505283,134348 +h579,43:20753781,23226067:0,0,0 +r1,2116:20753781,23226067:0,639631,134348 +g579,43:22064501,23226067 +g579,43:22064501,23226067 +g579,43:24808493,23226067 +g579,43:25978310,23226067 +k579,44:29679129,23226067:2903901 +k579,44:32583029,23226067:2903900 +) +(579,45:20753781,24088946:11829248,505283,102891 +h579,44:20753781,24088946:0,0,0 +r1,2116:20753781,24088946:0,608174,102891 +g579,44:22064501,24088946 +g579,44:22064501,24088946 +g579,44:24413310,24088946 +k579,45:28896629,24088946:3686401 +k579,45:32583029,24088946:3686400 +) +(579,46:20753781,24951824:11829248,505283,102891 +h579,45:20753781,24951824:0,0,0 +r1,2116:20753781,24951824:0,608174,102891 +g579,45:22064501,24951824 +g579,45:22064501,24951824 +g579,45:25994039,24951824 +k579,46:29686993,24951824:2896036 +k579,46:32583029,24951824:2896036 +) +(579,47:20753781,25814703:11829248,505283,126483 +h579,46:20753781,25814703:0,0,0 +r1,2116:20753781,25814703:0,631766,126483 +g579,46:22064501,25814703 +g579,46:22064501,25814703 +g579,46:25203675,25814703 +g579,46:25975033,25814703 +k579,47:29677490,25814703:2905539 +k579,47:32583029,25814703:2905539 +) +(579,48:20753781,26677582:11829248,505283,126483 +h579,47:20753781,26677582:0,0,0 +r1,2116:20753781,26677582:0,631766,126483 +g579,47:22064501,26677582 +g579,47:22064501,26677582 +g579,47:24808493,26677582 +k579,48:29094220,26677582:3488809 +k579,48:32583029,26677582:3488809 +) +(579,49:20753781,27540461:11829248,505283,102891 +h579,48:20753781,27540461:0,0,0 +r1,2116:20753781,27540461:0,608174,102891 +g579,48:22064501,27540461 +g579,48:22064501,27540461 +g579,48:24413310,27540461 +k579,49:28896629,27540461:3686401 +k579,49:32583029,27540461:3686400 +) +(579,50:20753781,28403339:11829248,505283,102891 +h579,49:20753781,28403339:0,0,0 +r1,2116:20753781,28403339:0,608174,102891 +g579,49:22064501,28403339 +g579,49:22064501,28403339 +g579,49:25598857,28403339 +k579,50:29489402,28403339:3093627 +k579,50:32583029,28403339:3093627 +) +(579,51:20753781,29266218:11829248,505283,102891 +h579,50:20753781,29266218:0,0,0 +r1,2116:20753781,29266218:0,608174,102891 +g579,50:22064501,29266218 +g579,50:22064501,29266218 +g579,50:24018128,29266218 +k579,51:28699038,29266218:3883992 +k579,51:32583029,29266218:3883991 +) +(579,52:20753781,30129097:11829248,505283,102891 +h579,51:20753781,30129097:0,0,0 +r1,2116:20753781,30129097:0,608174,102891 +g579,51:22064501,30129097 +g579,51:22064501,30129097 +g579,51:25598857,30129097 +k579,52:29290173,30129097:3292857 +k579,52:32583029,30129097:3292856 +) +(579,53:20753781,30991975:11829248,505283,102891 +h579,52:20753781,30991975:0,0,0 +r1,2116:20753781,30991975:0,608174,102891 +g579,52:22064501,30991975 +g579,52:22064501,30991975 +g579,52:25598857,30991975 +k579,53:29489402,30991975:3093627 +k579,53:32583029,30991975:3093627 +) +(579,54:20753781,31854854:11829248,505283,102891 +h579,53:20753781,31854854:0,0,0 +r1,2116:20753781,31854854:0,608174,102891 +g579,53:22064501,31854854 +g579,53:22064501,31854854 +g579,53:24413310,31854854 +k579,54:28896629,31854854:3686401 +k579,54:32583029,31854854:3686400 +) +(579,55:20753781,32717733:11829248,505283,126483 +h579,54:20753781,32717733:0,0,0 +r1,2116:20753781,32717733:0,631766,126483 +g579,54:22064501,32717733 +g579,54:22064501,32717733 +g579,54:27574767,32717733 +g579,54:28744584,32717733 +k579,55:31062266,32717733:1520764 +k579,55:32583029,32717733:1520763 +) +(579,56:20753781,33580612:11829248,505283,102891 +h579,55:20753781,33580612:0,0,0 +r1,2116:20753781,33580612:0,608174,102891 +g579,55:22064501,33580612 +g579,55:22064501,33580612 +g579,55:23622946,33580612 +k579,56:28501447,33580612:4081583 +k579,56:32583029,33580612:4081582 +) +(579,57:20753781,34443490:11829248,505283,102891 +h579,56:20753781,34443490:0,0,0 +r1,2116:20753781,34443490:0,608174,102891 +g579,56:22064501,34443490 +g579,56:22064501,34443490 +g579,56:24413310,34443490 +k579,57:28896629,34443490:3686401 +k579,57:32583029,34443490:3686400 +) +(579,58:20753781,35306369:11829248,505283,102891 +h579,57:20753781,35306369:0,0,0 +r1,2116:20753781,35306369:0,608174,102891 +g579,57:22064501,35306369 +g579,57:22064501,35306369 +g579,57:25598857,35306369 +k579,58:29489402,35306369:3093627 +k579,58:32583029,35306369:3093627 +) +] +(579,59:32583029,35306369:0,355205,126483 +h579,59:32583029,35306369:420741,355205,126483 +k579,59:32583029,35306369:-420741 +) +) +] +(1,2116:32583029,45706769:0,0,0 +g1,2116:32583029,45706769 +) +) +] +(1,2116:6630773,47279633:25952256,485622,11795 +(1,2116:6630773,47279633:25952256,485622,11795 +k1,2116:19208442,47279633:12577669 +k1,2116:32583029,47279633:12577669 +) +) +] +(1,2116:4262630,4025873:0,0,0 +[1,2116:-473656,4025873:0,0,0 +(1,2116:-473656,-710413:0,0,0 +(1,2116:-473656,-710413:0,0,0 +g1,2116:-473656,-710413 +) +g1,2116:-473656,-710413 +) +] +) +] +!18794 +}48 +!11 +{49 +[1,2116:4262630,47279633:28320399,43253760,0 +(1,2116:4262630,4025873:0,0,0 +[1,2116:-473656,4025873:0,0,0 +(1,2116:-473656,-710413:0,0,0 +(1,2116:-473656,-644877:0,0,0 +k1,2116:-473656,-644877:-65536 ) -k2991,400:3078556,2439708:-34777008 +(1,2116:-473656,4736287:0,0,0 +k1,2116:-473656,4736287:5209943 ) -] -[2991,400:3078558,4812305:0,0,0 -(2991,400:3078558,49800853:0,16384,2228224 -k2991,400:1358238,49800853:-1720320 -(2991,1:1358238,49800853:1720320,16384,2228224 -(2991,1:1358238,49800853:1179648,16384,0 -r2991,400:2537886,49800853:1179648,16384,0 -) -g2991,1:3062174,49800853 -(2991,1:3062174,52029077:16384,1703936,0 -[2991,1:3062174,52029077:25952256,1703936,0 -(2991,1:3062174,51504789:25952256,1179648,0 -(2991,1:3062174,51504789:16384,1179648,0 -r2991,400:3078558,51504789:16384,1179648,0 -) -k2991,1:29014430,51504789:25935872 -g2991,1:29014430,51504789 +g1,2116:-473656,-710413 ) ] ) +[1,2116:6630773,47279633:25952256,43253760,0 +[1,2116:6630773,4812305:25952256,786432,0 +(1,2116:6630773,4812305:25952256,0,0 +(1,2116:6630773,4812305:25952256,0,0 +g1,2116:3078558,4812305 +[1,2116:3078558,4812305:0,0,0 +(1,2116:3078558,2439708:0,1703936,0 +k1,2116:1358238,2439708:-1720320 +(1,2116:1358238,2439708:1720320,1703936,0 +(1,2116:1358238,2439708:1179648,16384,0 +r1,2116:2537886,2439708:1179648,16384,0 ) +g1,2116:3062174,2439708 +(1,2116:3062174,2439708:16384,1703936,0 +[1,2116:3062174,2439708:25952256,1703936,0 +(1,2116:3062174,1915420:25952256,1179648,0 +(1,2116:3062174,1915420:16384,1179648,0 +r1,2116:3078558,1915420:16384,1179648,0 ) -] -[2991,400:3078558,4812305:0,0,0 -(2991,400:3078558,49800853:0,16384,2228224 -g2991,400:29030814,49800853 -g2991,400:36135244,49800853 -(2991,1:36135244,49800853:1720320,16384,2228224 -(2991,1:36135244,52029077:16384,1703936,0 -[2991,1:36135244,52029077:25952256,1703936,0 -(2991,1:36135244,51504789:25952256,1179648,0 -(2991,1:36135244,51504789:16384,1179648,0 -r2991,400:36151628,51504789:16384,1179648,0 -) -k2991,1:62087500,51504789:25935872 -g2991,1:62087500,51504789 +k1,2116:29014430,1915420:25935872 +g1,2116:29014430,1915420 ) ] ) -g2991,1:36675916,49800853 -(2991,1:36675916,49800853:1179648,16384,0 -r2991,400:37855564,49800853:1179648,16384,0 -) ) -k2991,400:3078556,49800853:-34777008 ) ] -g2991,400:6630773,4812305 -k2991,400:23661615,4812305:15835465 -g2991,400:27221530,4812305 -g2991,400:29095859,4812305 -g2991,400:29911126,4812305 -g2991,400:30524543,4812305 +[1,2116:3078558,4812305:0,0,0 +(1,2116:3078558,2439708:0,1703936,0 +g1,2116:29030814,2439708 +g1,2116:36135244,2439708 +(1,2116:36135244,2439708:1720320,1703936,0 +(1,2116:36135244,2439708:16384,1703936,0 +[1,2116:36135244,2439708:25952256,1703936,0 +(1,2116:36135244,1915420:25952256,1179648,0 +(1,2116:36135244,1915420:16384,1179648,0 +r1,2116:36151628,1915420:16384,1179648,0 ) +k1,2116:62087500,1915420:25935872 +g1,2116:62087500,1915420 ) ] -[2991,400:6630773,45706769:25952256,40108032,0 -(2991,400:6630773,45706769:25952256,40108032,0 -(2991,400:6630773,45706769:0,0,0 -g2991,400:6630773,45706769 -) -[2991,400:6630773,45706769:25952256,40108032,0 -(2991,400:6630773,45706769:25952256,40108032,126483 -[2991,400:6630773,45706769:11829248,40108032,102891 -(2991,289:6630773,6254097:11829248,505283,102891 -h2991,288:6630773,6254097:0,0,0 -g2991,288:11350675,6254097 -k2991,289:15503037,6254097:2956985 -k2991,289:18460021,6254097:2956984 -) -(2991,290:6630773,7099141:11829248,513147,102891 -h2991,289:6630773,7099141:0,0,0 -g2991,289:11745857,7099141 -k2991,290:15700628,7099141:2759394 -k2991,290:18460021,7099141:2759393 -) -(2991,291:6630773,7944185:11829248,505283,102891 -h2991,290:6630773,7944185:0,0,0 -g2991,290:7794036,7944185 -k2991,291:13724717,7944185:4735304 -k2991,291:18460021,7944185:4735304 -) -(2991,292:6630773,8789229:11829248,505283,102891 -h2991,291:6630773,8789229:0,0,0 -g2991,291:8584400,8789229 -g2991,291:9754217,8789229 -g2991,291:11322493,8789229 -g2991,291:12890769,8789229 -g2991,291:14459045,8789229 -g2991,291:16027321,8789229 -k2991,291:18460021,8789229:1063653 -) -(2991,292:9252213,9630717:9207808,485622,11795 -k2991,292:14453806,9630717:4006216 -k2991,292:18460021,9630717:4006215 -) -(2991,293:6630773,10475761:11829248,505283,102891 -h2991,292:6630773,10475761:0,0,0 -g2991,292:9374765,10475761 -k2991,293:14315852,10475761:4144169 -k2991,293:18460021,10475761:4144169 -) -(2991,294:6630773,11320805:11829248,505283,134348 -h2991,293:6630773,11320805:0,0,0 -g2991,293:8979582,11320805 -k2991,294:14317490,11320805:4142531 -k2991,294:18460021,11320805:4142531 -) -(2991,295:6630773,12165849:11829248,505283,134348 -h2991,294:6630773,12165849:0,0,0 -g2991,294:9397048,12165849 -g2991,294:12953687,12165849 -g2991,294:15697679,12165849 -k2991,295:17477309,12165849:982712 -k2991,295:18460021,12165849:982712 -) -(2991,296:6630773,13010893:11829248,505283,134348 -h2991,295:6630773,13010893:0,0,0 -g2991,295:9769947,13010893 -g2991,295:10939764,13010893 -g2991,295:12109581,13010893 -g2991,295:13677857,13010893 -k2991,296:16666628,13010893:1793394 -k2991,296:18460021,13010893:1793393 -) -(2991,297:6630773,13855937:11829248,505283,102891 -h2991,296:6630773,13855937:0,0,0 -g2991,296:8584400,13855937 -g2991,296:9754217,13855937 -g2991,296:10924034,13855937 -k2991,297:15090487,13855937:3369535 -k2991,297:18460021,13855937:3369534 -) -(2991,301:6630773,15415606:11829248,505283,102891 -h2991,300:6630773,15415606:0,0,0 -g2991,300:8979582,15415606 -k2991,301:14317490,15415606:4142531 -k2991,301:18460021,15415606:4142531 -) -(2991,302:6630773,16260650:11829248,505283,102891 -h2991,301:6630773,16260650:0,0,0 -g2991,301:10165129,16260650 -k2991,302:14910264,16260650:3549758 -k2991,302:18460021,16260650:3549757 -) -(2991,303:6630773,17105694:11829248,505283,102891 -h2991,302:6630773,17105694:0,0,0 -g2991,302:10560311,17105694 -k2991,303:15107855,17105694:3352167 -k2991,303:18460021,17105694:3352166 -) -(2991,304:6630773,17950738:11829248,505283,102891 -h2991,303:6630773,17950738:0,0,0 -g2991,303:9374765,17950738 -g2991,303:10544582,17950738 -g2991,303:11714399,17950738 -g2991,303:12884216,17950738 -g2991,303:14054033,17950738 -k2991,304:16854716,17950738:1605306 -k2991,304:18460021,17950738:1605305 -) -(2991,305:6630773,18795781:11829248,505283,102891 -h2991,304:6630773,18795781:0,0,0 -g2991,304:10165129,18795781 -g2991,304:11334946,18795781 -g2991,304:12504763,18795781 -k2991,305:16080081,18795781:2379941 -k2991,305:18460021,18795781:2379940 -) -(2991,306:6630773,19640825:11829248,505283,102891 -h2991,305:6630773,19640825:0,0,0 -g2991,305:8979582,19640825 -g2991,305:10547858,19640825 -k2991,306:15101628,19640825:3358393 -k2991,306:18460021,19640825:3358393 -) -(2991,307:6630773,20485869:11829248,505283,102891 -h2991,306:6630773,20485869:0,0,0 -g2991,306:9374765,20485869 -g2991,306:10943041,20485869 -k2991,307:15299220,20485869:3160802 -k2991,307:18460021,20485869:3160801 -) -(2991,308:6630773,21330913:11829248,505283,102891 -h2991,307:6630773,21330913:0,0,0 -g2991,307:10165129,21330913 -k2991,308:14910264,21330913:3549758 -k2991,308:18460021,21330913:3549757 -) -(2991,309:6630773,22175957:11829248,505283,102891 -h2991,308:6630773,22175957:0,0,0 -g2991,308:10560311,22175957 -k2991,309:15107855,22175957:3352167 -k2991,309:18460021,22175957:3352166 -) -(2991,310:6630773,23021001:11829248,505283,134348 -h2991,309:6630773,23021001:0,0,0 -g2991,309:9374765,23021001 -k2991,310:14515082,23021001:3944940 -k2991,310:18460021,23021001:3944939 -) -(2991,311:6630773,23866045:11829248,505283,102891 -h2991,310:6630773,23866045:0,0,0 -g2991,310:8979582,23866045 -g2991,310:10547858,23866045 -k2991,311:15101628,23866045:3358393 -k2991,311:18460021,23866045:3358393 -) -(2991,312:6630773,24711089:11829248,505283,102891 -h2991,311:6630773,24711089:0,0,0 -g2991,311:9374765,24711089 -g2991,311:10544582,24711089 -g2991,311:12112858,24711089 -k2991,312:15884128,24711089:2575893 -k2991,312:18460021,24711089:2575893 -) -(2991,313:6630773,25556133:11829248,513147,102891 -h2991,312:6630773,25556133:0,0,0 -g2991,312:12141039,25556133 -k2991,313:15898219,25556133:2561803 -k2991,313:18460021,25556133:2561802 -) -(2991,314:6630773,26401177:11829248,505283,102891 -h2991,313:6630773,26401177:0,0,0 -g2991,313:12536221,26401177 -k2991,314:16095810,26401177:2364212 -k2991,314:18460021,26401177:2364211 -) -(2991,315:6630773,27246221:11829248,505283,102891 -h2991,314:6630773,27246221:0,0,0 -g2991,314:10560311,27246221 -k2991,315:14908625,27246221:3551396 -k2991,315:18460021,27246221:3551396 -) -(2991,316:6630773,28091265:11829248,505283,102891 -h2991,315:6630773,28091265:0,0,0 -g2991,315:10955493,28091265 -k2991,316:15106216,28091265:3353805 -k2991,316:18460021,28091265:3353805 -) -(2991,317:6630773,28936309:11829248,485622,102891 -h2991,316:6630773,28936309:0,0,0 -g2991,316:9374765,28936309 -k2991,317:14515082,28936309:3944940 -k2991,317:18460021,28936309:3944939 -) -(2991,318:6630773,29781353:11829248,505283,102891 -h2991,317:6630773,29781353:0,0,0 -g2991,317:10165129,29781353 -k2991,318:14910264,29781353:3549758 -k2991,318:18460021,29781353:3549757 -) -(2991,319:6630773,30626397:11829248,505283,126483 -h2991,318:6630773,30626397:0,0,0 -g2991,318:10955493,30626397 -k2991,319:15305446,30626397:3154576 -k2991,319:18460021,30626397:3154575 -) -(2991,323:6630773,32186066:11829248,485622,102891 -h2991,322:6630773,32186066:0,0,0 -g2991,322:7794036,32186066 -g2991,322:8963853,32186066 -g2991,322:10133670,32186066 -k2991,323:14695305,32186066:3764717 -k2991,323:18460021,32186066:3764716 -) -(2991,324:6630773,33031110:11829248,505283,102891 -h2991,323:6630773,33031110:0,0,0 -g2991,323:12141039,33031110 -k2991,324:15698989,33031110:2761032 -k2991,324:18460021,33031110:2761032 -) -(2991,325:6630773,33876154:11829248,505283,102891 -h2991,324:6630773,33876154:0,0,0 -g2991,324:10165129,33876154 -k2991,325:14711034,33876154:3748987 -k2991,325:18460021,33876154:3748987 -) -(2991,326:6630773,34721198:11829248,505283,102891 -h2991,325:6630773,34721198:0,0,0 -g2991,325:9769947,34721198 -g2991,325:10939764,34721198 -g2991,325:12109581,34721198 -g2991,325:13677857,34721198 -k2991,326:16666628,34721198:1793394 -k2991,326:18460021,34721198:1793393 -) -(2991,327:6630773,35566242:11829248,505283,102891 -h2991,326:6630773,35566242:0,0,0 -g2991,326:10560311,35566242 -k2991,327:14908625,35566242:3551396 -k2991,327:18460021,35566242:3551396 -) -(2991,328:6630773,36411286:11829248,505283,102891 -h2991,327:6630773,36411286:0,0,0 -g2991,327:10560311,36411286 -k2991,328:15107855,36411286:3352167 -k2991,328:18460021,36411286:3352166 -) -(2991,329:6630773,37256330:11829248,485622,102891 -h2991,328:6630773,37256330:0,0,0 -g2991,328:8189218,37256330 -k2991,329:13723079,37256330:4736943 -k2991,329:18460021,37256330:4736942 -) -(2991,330:6630773,38101373:11829248,505283,126483 -h2991,329:6630773,38101373:0,0,0 -g2991,329:10560311,38101373 -k2991,330:15107855,38101373:3352167 -k2991,330:18460021,38101373:3352166 -) -(2991,331:6630773,38946417:11829248,505283,102891 -h2991,330:6630773,38946417:0,0,0 -g2991,330:9374765,38946417 -g2991,330:10544582,38946417 -g2991,330:11714399,38946417 -k2991,331:15684899,38946417:2775123 -k2991,331:18460021,38946417:2775122 -) -(2991,332:6630773,39791461:11829248,505283,134348 -h2991,331:6630773,39791461:0,0,0 -g2991,331:11350675,39791461 -k2991,332:15503037,39791461:2956985 -k2991,332:18460021,39791461:2956984 -) -(2991,333:6630773,40636505:11829248,505283,102891 -h2991,332:6630773,40636505:0,0,0 -g2991,332:9374765,40636505 -g2991,332:10943041,40636505 -k2991,333:15299220,40636505:3160802 -k2991,333:18460021,40636505:3160801 -) -(2991,334:6630773,41481549:11829248,505283,102891 -h2991,333:6630773,41481549:0,0,0 -g2991,333:8584400,41481549 -k2991,334:14119899,41481549:4340122 -k2991,334:18460021,41481549:4340122 -) -(2991,335:6630773,42326593:11829248,505283,102891 -h2991,334:6630773,42326593:0,0,0 -g2991,334:8189218,42326593 -k2991,335:13922308,42326593:4537713 -k2991,335:18460021,42326593:4537713 -) -(2991,336:6630773,43171637:11829248,505283,102891 -h2991,335:6630773,43171637:0,0,0 -g2991,335:8979582,43171637 -g2991,335:10547858,43171637 -k2991,336:15101628,43171637:3358393 -k2991,336:18460021,43171637:3358393 -) -(2991,337:6630773,44016681:11829248,485622,102891 -h2991,336:6630773,44016681:0,0,0 -g2991,336:9374765,44016681 -k2991,337:14515082,44016681:3944940 -k2991,337:18460021,44016681:3944939 -) -(2991,338:6630773,44861725:11829248,505283,126483 -h2991,337:6630773,44861725:0,0,0 -g2991,337:8189218,44861725 -k2991,338:13922308,44861725:4537713 -k2991,338:18460021,44861725:4537713 -) -(2991,339:6630773,45706769:11829248,505283,102891 -h2991,338:6630773,45706769:0,0,0 -g2991,338:9374765,45706769 -g2991,338:10544582,45706769 -g2991,338:11714399,45706769 -k2991,339:15684899,45706769:2775123 -k2991,339:18460021,45706769:2775122 ) -] -k2991,400:19606901,45706769:1146880 -r2991,400:19606901,45706769:0,40234515,126483 -k2991,400:20753781,45706769:1146880 -[2991,400:20753781,45706769:11829248,40108032,102891 -(2991,340:20753781,6254097:11829248,505283,102891 -h2991,339:20753781,6254097:0,0,0 -g2991,339:23892955,6254097 -g2991,339:25062772,6254097 -g2991,339:26232589,6254097 -g2991,339:27402406,6254097 -g2991,339:28572223,6254097 -g2991,339:29742040,6254097 -k2991,340:31760223,6254097:822806 -k2991,340:32583029,6254097:822806 -) -(2991,341:20753781,7095585:11829248,505283,102891 -h2991,340:20753781,7095585:0,0,0 -g2991,340:24683319,7095585 -g2991,340:25853136,7095585 -k2991,341:29616542,7095585:2966488 -k2991,341:32583029,7095585:2966487 -) -(2991,345:20753781,8543873:11829248,505283,102891 -h2991,344:20753781,8543873:0,0,0 -g2991,344:24683319,8543873 -k2991,345:29230863,8543873:3352167 -k2991,345:32583029,8543873:3352166 -) -(2991,346:20753781,9385361:11829248,505283,126483 -h2991,345:20753781,9385361:0,0,0 -g2991,345:24683319,9385361 -k2991,346:29230863,9385361:3352167 -k2991,346:32583029,9385361:3352166 -) -(2991,347:20753781,10226849:11829248,485622,134348 -h2991,346:20753781,10226849:0,0,0 -g2991,346:23497773,10226849 -k2991,347:28638090,10226849:3944940 -k2991,347:32583029,10226849:3944939 -) -(2991,348:20753781,11068337:11829248,505283,102891 -h2991,347:20753781,11068337:0,0,0 -g2991,347:23892955,11068337 -g2991,347:25062772,11068337 -g2991,347:26232589,11068337 -g2991,347:27402406,11068337 -k2991,348:30590406,11068337:1992623 -k2991,348:32583029,11068337:1992623 -) -(2991,349:20753781,11909825:11829248,505283,102891 -h2991,348:20753781,11909825:0,0,0 -g2991,348:24683319,11909825 -k2991,349:29031633,11909825:3551396 -k2991,349:32583029,11909825:3551396 -) -(2991,353:20753781,13358113:11829248,505283,126483 -h2991,352:20753781,13358113:0,0,0 -g2991,352:23892955,13358113 -g2991,352:25461231,13358113 -k2991,353:29619819,13358113:2963211 -k2991,353:32583029,13358113:2963210 -) -(2991,354:20753781,14199601:11829248,505283,126483 -h2991,353:20753781,14199601:0,0,0 -g2991,353:23892955,14199601 -g2991,353:25461231,14199601 -g2991,353:27029507,14199601 -k2991,354:30403957,14199601:2179073 -k2991,354:32583029,14199601:2179072 -) -(2991,355:20753781,15041089:11829248,505283,126483 -h2991,354:20753781,15041089:0,0,0 -g2991,354:21917044,15041089 -k2991,355:27648496,15041089:4934534 -k2991,355:32583029,15041089:4934533 -) -(2991,356:20753781,15882577:11829248,505283,134348 -h2991,355:20753781,15882577:0,0,0 -g2991,355:26659229,15882577 -g2991,355:28227505,15882577 -k2991,356:31002956,15882577:1580074 -k2991,356:32583029,15882577:1580073 -) -(2991,357:20753781,16724065:11829248,505283,126483 -h2991,356:20753781,16724065:0,0,0 -g2991,356:26264047,16724065 -k2991,357:30021227,16724065:2561803 -k2991,357:32583029,16724065:2561802 -) -(2991,358:20753781,17565553:11829248,505283,126483 -h2991,357:20753781,17565553:0,0,0 -g2991,357:23892955,17565553 -k2991,358:28835681,17565553:3747349 -k2991,358:32583029,17565553:3747348 -) -(2991,359:20753781,18407041:11829248,505283,126483 -h2991,358:20753781,18407041:0,0,0 -g2991,358:23497773,18407041 -g2991,358:25792188,18407041 -g2991,358:27360464,18407041 -g2991,358:28928740,18407041 -k2991,359:31353573,18407041:1229456 -k2991,359:32583029,18407041:1229456 -) -(2991,360:20753781,19248529:11829248,505283,126483 -h2991,359:20753781,19248529:0,0,0 -g2991,359:23892955,19248529 -g2991,359:25461231,19248529 -k2991,360:29619819,19248529:2963211 -k2991,360:32583029,19248529:2963210 -) -(2991,361:20753781,20090017:11829248,505283,126483 -h2991,360:20753781,20090017:0,0,0 -g2991,360:23497773,20090017 -k2991,361:28638090,20090017:3944940 -k2991,361:32583029,20090017:3944939 -) -(2991,362:20753781,20931505:11829248,505283,126483 -h2991,361:20753781,20931505:0,0,0 -g2991,361:24288137,20931505 -g2991,361:25856413,20931505 -k2991,362:29817410,20931505:2765620 -k2991,362:32583029,20931505:2765619 -) -(2991,363:20753781,21772993:11829248,505283,126483 -h2991,362:20753781,21772993:0,0,0 -g2991,362:24683319,21772993 -g2991,362:26251595,21772993 -k2991,363:30015001,21772993:2568029 -k2991,363:32583029,21772993:2568028 -) -(2991,364:20753781,22614481:11829248,505283,126483 -h2991,363:20753781,22614481:0,0,0 -g2991,363:27054411,22614481 -k2991,364:30416409,22614481:2166621 -k2991,364:32583029,22614481:2166620 -) -(2991,366:20753781,23455969:11829248,505283,126483 -h2991,364:20753781,23455969:0,0,0 -g2991,364:23892955,23455969 -g2991,364:24664313,23455969 -g2991,364:25834130,23455969 -g2991,364:27003947,23455969 -g2991,364:28173764,23455969 -g2991,364:29343581,23455969 -g2991,364:30513398,23455969 -k2991,364:32583029,23455969:700584 -) -(2991,366:23375221,24297457:9207808,485622,102891 -g2991,364:24943497,24297457 -g2991,364:26511773,24297457 -g2991,364:28080049,24297457 -g2991,365:29648325,24297457 -g2991,365:31216601,24297457 -k2991,366:32497504,24297457:85526 -k2991,366:32583029,24297457:85525 -) -(2991,367:20753781,25138945:11829248,505283,126483 -h2991,366:20753781,25138945:0,0,0 -g2991,366:23497773,25138945 -k2991,367:28638090,25138945:3944940 -k2991,367:32583029,25138945:3944939 -) -(2991,368:20753781,25980433:11829248,505283,126483 -h2991,367:20753781,25980433:0,0,0 -g2991,367:22707408,25980433 -k2991,368:28242907,25980433:4340122 -k2991,368:32583029,25980433:4340122 -) -(2991,369:20753781,26821921:11829248,505283,126483 -h2991,368:20753781,26821921:0,0,0 -g2991,368:24683319,26821921 -g2991,368:26251595,26821921 -k2991,369:30015001,26821921:2568029 -k2991,369:32583029,26821921:2568028 -) -(2991,373:20753781,28270209:11829248,505283,126483 -h2991,372:20753781,28270209:0,0,0 -g2991,372:23892955,28270209 -k2991,373:28835681,28270209:3747349 -k2991,373:32583029,28270209:3747348 -) -(2991,374:20753781,29111697:11829248,505283,126483 -h2991,373:20753781,29111697:0,0,0 -g2991,373:25078501,29111697 -k2991,374:29428454,29111697:3154576 -k2991,374:32583029,29111697:3154575 -) -(2991,378:20753781,30559985:11829248,505283,134348 -h2991,377:20753781,30559985:0,0,0 -g2991,377:23892955,30559985 -k2991,378:28835681,30559985:3747349 -k2991,378:32583029,30559985:3747348 -) -(2991,379:20753781,31401473:11829248,505283,102891 -h2991,378:20753781,31401473:0,0,0 -g2991,378:25078501,31401473 -g2991,378:26646777,31401473 -g2991,378:28215053,31401473 -k2991,379:31758258,31401473:824772 -k2991,379:32583029,31401473:824771 -) -(2991,380:20753781,32242961:11829248,505283,102891 -h2991,379:20753781,32242961:0,0,0 -g2991,379:25473683,32242961 -g2991,379:27041959,32242961 -g2991,379:28610235,32242961 -k2991,380:31194321,32242961:1388709 -k2991,380:32583029,32242961:1388708 -) -(2991,381:20753781,33084449:11829248,513147,102891 -h2991,380:20753781,33084449:0,0,0 -g2991,380:26659229,33084449 -g2991,380:28227505,33084449 -k2991,381:31002956,33084449:1580074 -k2991,381:32583029,33084449:1580073 -) -(2991,382:20753781,33925937:11829248,513147,102891 -h2991,381:20753781,33925937:0,0,0 -g2991,381:25078501,33925937 -k2991,382:29428454,33925937:3154576 -k2991,382:32583029,33925937:3154575 -) -(2991,383:20753781,34767425:11829248,505283,126483 -h2991,382:20753781,34767425:0,0,0 -g2991,382:25473683,34767425 -k2991,383:29626045,34767425:2956985 -k2991,383:32583029,34767425:2956984 -) -(2991,384:20753781,35608913:11829248,505283,126483 -h2991,383:20753781,35608913:0,0,0 -g2991,383:26264047,35608913 -k2991,384:30021227,35608913:2561803 -k2991,384:32583029,35608913:2561802 -) -(2991,385:20753781,36450401:11829248,505283,102891 -h2991,384:20753781,36450401:0,0,0 -g2991,384:25868865,36450401 -g2991,384:27437141,36450401 -g2991,384:29005417,36450401 -g2991,384:30573693,36450401 -k2991,385:32176050,36450401:406980 -k2991,385:32583029,36450401:406979 -) -(2991,386:20753781,37291889:11829248,505283,102891 -h2991,385:20753781,37291889:0,0,0 -g2991,385:25473683,37291889 -k2991,386:29626045,37291889:2956985 -k2991,386:32583029,37291889:2956984 -) -(2991,387:20753781,38133377:11829248,505283,102891 -h2991,386:20753781,38133377:0,0,0 -g2991,386:25078501,38133377 -g2991,386:26646777,38133377 -k2991,387:30212592,38133377:2370438 -k2991,387:32583029,38133377:2370437 -) -(2991,388:20753781,38974865:11829248,505283,102891 -h2991,387:20753781,38974865:0,0,0 -g2991,387:25868865,38974865 -k2991,388:29823636,38974865:2759394 -k2991,388:32583029,38974865:2759393 -) -(2991,389:20753781,39816353:11829248,505283,102891 -h2991,388:20753781,39816353:0,0,0 -g2991,388:25868865,39816353 -k2991,389:29823636,39816353:2759394 -k2991,389:32583029,39816353:2759393 -) -(2991,390:20753781,40657841:11829248,513147,102891 -h2991,389:20753781,40657841:0,0,0 -g2991,389:25473683,40657841 -k2991,390:29626045,40657841:2956985 -k2991,390:32583029,40657841:2956984 -) -(2991,391:20753781,41499329:11829248,513147,102891 -h2991,390:20753781,41499329:0,0,0 -g2991,390:25078501,41499329 -k2991,391:29428454,41499329:3154576 -k2991,391:32583029,41499329:3154575 -) -(2991,392:20753781,42340817:11829248,505283,102891 -h2991,391:20753781,42340817:0,0,0 -g2991,391:25473683,42340817 -k2991,392:29626045,42340817:2956985 -k2991,392:32583029,42340817:2956984 -) -(2991,393:20753781,43182305:11829248,505283,102891 -h2991,392:20753781,43182305:0,0,0 -g2991,392:25868865,43182305 -k2991,393:29823636,43182305:2759394 -k2991,393:32583029,43182305:2759393 -) -(2991,394:20753781,44023793:11829248,505283,102891 -h2991,393:20753781,44023793:0,0,0 -g2991,393:25078501,44023793 -k2991,394:29428454,44023793:3154576 -k2991,394:32583029,44023793:3154575 -) -(2991,395:20753781,44865281:11829248,505283,102891 -h2991,394:20753781,44865281:0,0,0 -g2991,394:25078501,44865281 -k2991,395:29428454,44865281:3154576 -k2991,395:32583029,44865281:3154575 -) -(2991,396:20753781,45706769:11829248,505283,102891 -h2991,395:20753781,45706769:0,0,0 -g2991,395:25868865,45706769 -k2991,396:29823636,45706769:2759394 -k2991,396:32583029,45706769:2759393 +g1,2116:36675916,2439708 +(1,2116:36675916,2439708:1179648,16384,0 +r1,2116:37855564,2439708:1179648,16384,0 ) -] -(2991,400:32583029,45706769:0,355205,126483 -h2991,400:32583029,45706769:420741,355205,126483 -k2991,400:32583029,45706769:-420741 ) +k1,2116:3078556,2439708:-34777008 ) ] -(2991,400:32583029,45706769:0,0,0 -g2991,400:32583029,45706769 +[1,2116:3078558,4812305:0,0,0 +(1,2116:3078558,49800853:0,16384,2228224 +k1,2116:1358238,49800853:-1720320 +(1,2116:1358238,49800853:1720320,16384,2228224 +(1,2116:1358238,49800853:1179648,16384,0 +r1,2116:2537886,49800853:1179648,16384,0 ) +g1,2116:3062174,49800853 +(1,2116:3062174,52029077:16384,1703936,0 +[1,2116:3062174,52029077:25952256,1703936,0 +(1,2116:3062174,51504789:25952256,1179648,0 +(1,2116:3062174,51504789:16384,1179648,0 +r1,2116:3078558,51504789:16384,1179648,0 ) -] -(2991,400:6630773,47279633:25952256,0,0 -h2991,400:6630773,47279633:25952256,0,0 +k1,2116:29014430,51504789:25935872 +g1,2116:29014430,51504789 ) ] -(2991,400:4262630,4025873:0,0,0 -[2991,400:-473656,4025873:0,0,0 -(2991,400:-473656,-710413:0,0,0 -(2991,400:-473656,-710413:0,0,0 -g2991,400:-473656,-710413 -) -g2991,400:-473656,-710413 ) -] ) -] -!22689 -}397 -!12 -{398 -[2991,494:4262630,47279633:28320399,43253760,0 -(2991,494:4262630,4025873:0,0,0 -[2991,494:-473656,4025873:0,0,0 -(2991,494:-473656,-710413:0,0,0 -(2991,494:-473656,-644877:0,0,0 -k2991,494:-473656,-644877:-65536 -) -(2991,494:-473656,4736287:0,0,0 -k2991,494:-473656,4736287:5209943 -) -g2991,494:-473656,-710413 ) ] +[1,2116:3078558,4812305:0,0,0 +(1,2116:3078558,49800853:0,16384,2228224 +g1,2116:29030814,49800853 +g1,2116:36135244,49800853 +(1,2116:36135244,49800853:1720320,16384,2228224 +(1,2116:36135244,52029077:16384,1703936,0 +[1,2116:36135244,52029077:25952256,1703936,0 +(1,2116:36135244,51504789:25952256,1179648,0 +(1,2116:36135244,51504789:16384,1179648,0 +r1,2116:36151628,51504789:16384,1179648,0 ) -[2991,494:6630773,47279633:25952256,43253760,0 -[2991,494:6630773,4812305:25952256,786432,0 -(2991,494:6630773,4812305:25952256,513147,126483 -(2991,494:6630773,4812305:25952256,513147,126483 -g2991,494:3078558,4812305 -[2991,494:3078558,4812305:0,0,0 -(2991,494:3078558,2439708:0,1703936,0 -k2991,494:1358238,2439708:-1720320 -(2991,1:1358238,2439708:1720320,1703936,0 -(2991,1:1358238,2439708:1179648,16384,0 -r2991,494:2537886,2439708:1179648,16384,0 -) -g2991,1:3062174,2439708 -(2991,1:3062174,2439708:16384,1703936,0 -[2991,1:3062174,2439708:25952256,1703936,0 -(2991,1:3062174,1915420:25952256,1179648,0 -(2991,1:3062174,1915420:16384,1179648,0 -r2991,494:3078558,1915420:16384,1179648,0 -) -k2991,1:29014430,1915420:25935872 -g2991,1:29014430,1915420 +k1,2116:62087500,51504789:25935872 +g1,2116:62087500,51504789 ) ] ) +g1,2116:36675916,49800853 +(1,2116:36675916,49800853:1179648,16384,0 +r1,2116:37855564,49800853:1179648,16384,0 ) ) -] -[2991,494:3078558,4812305:0,0,0 -(2991,494:3078558,2439708:0,1703936,0 -g2991,494:29030814,2439708 -g2991,494:36135244,2439708 -(2991,1:36135244,2439708:1720320,1703936,0 -(2991,1:36135244,2439708:16384,1703936,0 -[2991,1:36135244,2439708:25952256,1703936,0 -(2991,1:36135244,1915420:25952256,1179648,0 -(2991,1:36135244,1915420:16384,1179648,0 -r2991,494:36151628,1915420:16384,1179648,0 -) -k2991,1:62087500,1915420:25935872 -g2991,1:62087500,1915420 +k1,2116:3078556,49800853:-34777008 ) ] -) -g2991,1:36675916,2439708 -(2991,1:36675916,2439708:1179648,16384,0 -r2991,494:37855564,2439708:1179648,16384,0 +g1,2116:6630773,4812305 ) ) -k2991,494:3078556,2439708:-34777008 -) ] -[2991,494:3078558,4812305:0,0,0 -(2991,494:3078558,49800853:0,16384,2228224 -k2991,494:1358238,49800853:-1720320 -(2991,1:1358238,49800853:1720320,16384,2228224 -(2991,1:1358238,49800853:1179648,16384,0 -r2991,494:2537886,49800853:1179648,16384,0 -) -g2991,1:3062174,49800853 -(2991,1:3062174,52029077:16384,1703936,0 -[2991,1:3062174,52029077:25952256,1703936,0 -(2991,1:3062174,51504789:25952256,1179648,0 -(2991,1:3062174,51504789:16384,1179648,0 -r2991,494:3078558,51504789:16384,1179648,0 -) -k2991,1:29014430,51504789:25935872 -g2991,1:29014430,51504789 +[1,2116:6630773,45706769:0,40108032,0 +(1,2116:6630773,45706769:0,40108032,0 +(1,2116:6630773,45706769:0,0,0 +g1,2116:6630773,45706769 ) +[1,2116:6630773,45706769:0,40108032,0 +h1,2116:6630773,6254097:0,0,0 ] -) +(1,2116:6630773,45706769:0,0,0 +g1,2116:6630773,45706769 ) ) ] -[2991,494:3078558,4812305:0,0,0 -(2991,494:3078558,49800853:0,16384,2228224 -g2991,494:29030814,49800853 -g2991,494:36135244,49800853 -(2991,1:36135244,49800853:1720320,16384,2228224 -(2991,1:36135244,52029077:16384,1703936,0 -[2991,1:36135244,52029077:25952256,1703936,0 -(2991,1:36135244,51504789:25952256,1179648,0 -(2991,1:36135244,51504789:16384,1179648,0 -r2991,494:36151628,51504789:16384,1179648,0 -) -k2991,1:62087500,51504789:25935872 -g2991,1:62087500,51504789 +(1,2116:6630773,47279633:25952256,0,0 +h1,2116:6630773,47279633:25952256,0,0 ) ] +(1,2116:4262630,4025873:0,0,0 +[1,2116:-473656,4025873:0,0,0 +(1,2116:-473656,-710413:0,0,0 +(1,2116:-473656,-710413:0,0,0 +g1,2116:-473656,-710413 ) -g2991,1:36675916,49800853 -(2991,1:36675916,49800853:1179648,16384,0 -r2991,494:37855564,49800853:1179648,16384,0 +g1,2116:-473656,-710413 ) -) -k2991,494:3078556,49800853:-34777008 +] ) ] -g2991,494:6630773,4812305 -g2991,494:6630773,4812305 -g2991,494:10190688,4812305 -g2991,494:12065017,4812305 -g2991,494:12880284,4812305 -g2991,494:13493701,4812305 -g2991,494:15751416,4812305 -k2991,494:31387652,4812305:15636236 +!3307 +}49 +Input:580:C:\Users\Aphalo\Documents\Own_manuscripts\Books\learnr-book-crc-2ed\rindex.ind +!99 +{50 +[1,2118:4262630,47279633:28320399,43253760,11795 +(1,2118:4262630,4025873:0,0,0 +[1,2118:-473656,4025873:0,0,0 +(1,2118:-473656,-710413:0,0,0 +(1,2118:-473656,-644877:0,0,0 +k1,2118:-473656,-644877:-65536 ) +(1,2118:-473656,4736287:0,0,0 +k1,2118:-473656,4736287:5209943 ) -] -[2991,494:6630773,45706769:25952256,40108032,0 -(2991,494:6630773,45706769:25952256,40108032,0 -(2991,494:6630773,45706769:0,0,0 -g2991,494:6630773,45706769 -) -[2991,494:6630773,45706769:25952256,40108032,0 -(2991,494:6630773,45706769:25952256,40108032,126483 -[2991,494:6630773,45706769:11829248,40108032,126483 -(2991,397:6630773,6254097:11829248,505283,102891 -h2991,396:6630773,6254097:0,0,0 -g2991,396:12141039,6254097 -g2991,396:13709315,6254097 -k2991,397:16682357,6254097:1777665 -k2991,397:18460021,6254097:1777664 -) -(2991,398:6630773,7097026:11829248,505283,102891 -h2991,397:6630773,7097026:0,0,0 -g2991,397:10955493,7097026 -k2991,398:15305446,7097026:3154576 -k2991,398:18460021,7097026:3154575 -) -(2991,399:6630773,7939955:11829248,505283,102891 -h2991,398:6630773,7939955:0,0,0 -g2991,398:11350675,7939955 -k2991,399:15503037,7939955:2956985 -k2991,399:18460021,7939955:2956984 -) -(2991,400:6630773,8782884:11829248,505283,102891 -h2991,399:6630773,8782884:0,0,0 -g2991,399:10560311,8782884 -k2991,400:14908625,8782884:3551396 -k2991,400:18460021,8782884:3551396 -) -(2991,401:6630773,9625813:11829248,505283,102891 -h2991,400:6630773,9625813:0,0,0 -g2991,400:8979582,9625813 -k2991,401:14317490,9625813:4142531 -k2991,401:18460021,9625813:4142531 -) -(2991,402:6630773,10468742:11829248,505283,102891 -h2991,401:6630773,10468742:0,0,0 -g2991,401:10165129,10468742 -k2991,402:14910264,10468742:3549758 -k2991,402:18460021,10468742:3549757 -) -(2991,403:6630773,11311671:11829248,505283,102891 -h2991,402:6630773,11311671:0,0,0 -g2991,402:10560311,11311671 -k2991,403:14908625,11311671:3551396 -k2991,403:18460021,11311671:3551396 -) -(2991,404:6630773,12154600:11829248,505283,126483 -h2991,403:6630773,12154600:0,0,0 -g2991,403:8979582,12154600 -k2991,404:14118261,12154600:4341761 -k2991,404:18460021,12154600:4341760 -) -(2991,405:6630773,12997529:11829248,485622,126483 -h2991,404:6630773,12997529:0,0,0 -g2991,404:9374765,12997529 -g2991,404:10943041,12997529 -g2991,404:12511317,12997529 -k2991,405:16083358,12997529:2376664 -k2991,405:18460021,12997529:2376663 -) -(2991,406:6630773,13840458:11829248,505283,102891 -h2991,405:6630773,13840458:0,0,0 -g2991,405:9769947,13840458 -k2991,406:14712673,13840458:3747349 -k2991,406:18460021,13840458:3747348 -) -(2991,407:6630773,14683387:11829248,505283,102891 -h2991,406:6630773,14683387:0,0,0 -g2991,406:11350675,14683387 -g2991,406:12918951,14683387 -k2991,407:16287175,14683387:2172847 -k2991,407:18460021,14683387:2172846 -) -(2991,408:6630773,15526316:11829248,505283,102891 -h2991,407:6630773,15526316:0,0,0 -g2991,407:10165129,15526316 -k2991,408:14910264,15526316:3549758 -k2991,408:18460021,15526316:3549757 -) -(2991,409:6630773,16369246:11829248,505283,134348 -h2991,408:6630773,16369246:0,0,0 -g2991,408:8979582,16369246 -k2991,409:14317490,16369246:4142531 -k2991,409:18460021,16369246:4142531 -) -(2991,410:6630773,17212175:11829248,505283,134348 -h2991,409:6630773,17212175:0,0,0 -g2991,409:11745857,17212175 -k2991,410:15700628,17212175:2759394 -k2991,410:18460021,17212175:2759393 -) -(2991,411:6630773,18055104:11829248,505283,102891 -h2991,410:6630773,18055104:0,0,0 -g2991,410:8979582,18055104 -k2991,411:14118261,18055104:4341761 -k2991,411:18460021,18055104:4341760 -) -(2991,412:6630773,18898033:11829248,505283,102891 -h2991,411:6630773,18898033:0,0,0 -g2991,411:8979582,18898033 -k2991,412:14317490,18898033:4142531 -k2991,412:18460021,18898033:4142531 -) -(2991,413:6630773,19740962:11829248,505283,102891 -h2991,412:6630773,19740962:0,0,0 -g2991,412:8584400,19740962 -k2991,413:13920670,19740962:4539352 -k2991,413:18460021,19740962:4539351 -) -(2991,414:6630773,20583891:11829248,505283,102891 -h2991,413:6630773,20583891:0,0,0 -g2991,413:9769947,20583891 -g2991,413:11338223,20583891 -g2991,413:12906499,20583891 -k2991,414:16280949,20583891:2179073 -k2991,414:18460021,20583891:2179072 -) -(2991,415:6630773,21426820:11829248,505283,102891 -h2991,414:6630773,21426820:0,0,0 -g2991,414:9769947,21426820 -k2991,415:14513443,21426820:3946578 -k2991,415:18460021,21426820:3946578 -) -(2991,416:6630773,22269749:11829248,505283,102891 -h2991,415:6630773,22269749:0,0,0 -g2991,415:10955493,22269749 -k2991,416:15106216,22269749:3353805 -k2991,416:18460021,22269749:3353805 -) -(2991,417:6630773,23112678:11829248,513147,102891 -h2991,416:6630773,23112678:0,0,0 -g2991,416:9769947,23112678 -k2991,417:14712673,23112678:3747349 -k2991,417:18460021,23112678:3747348 -) -(2991,421:6630773,24634984:11829248,505283,126483 -h2991,420:6630773,24634984:0,0,0 -g2991,420:9374765,24634984 -k2991,421:14315852,24634984:4144169 -k2991,421:18460021,24634984:4144169 -) -(2991,422:6630773,25477913:11829248,505283,126483 -h2991,421:6630773,25477913:0,0,0 -g2991,421:10165129,25477913 -g2991,421:11334946,25477913 -g2991,421:12903222,25477913 -k2991,422:16279310,25477913:2180711 -k2991,422:18460021,25477913:2180711 -) -(2991,423:6630773,26320842:11829248,505283,102891 -h2991,422:6630773,26320842:0,0,0 -g2991,422:9374765,26320842 -g2991,422:10544582,26320842 -k2991,423:14900761,26320842:3559261 -k2991,423:18460021,26320842:3559260 -) -(2991,424:6630773,27163771:11829248,505283,102891 -h2991,423:6630773,27163771:0,0,0 -g2991,423:10560311,27163771 -k2991,424:14908625,27163771:3551396 -k2991,424:18460021,27163771:3551396 -) -(2991,425:6630773,28006700:11829248,505283,102891 -h2991,424:6630773,28006700:0,0,0 -g2991,424:14907314,28006700 -k2991,425:17281356,28006700:1178665 -k2991,425:18460021,28006700:1178665 -) -(2991,426:6630773,28849629:11829248,505283,102891 -h2991,425:6630773,28849629:0,0,0 -g2991,425:14907314,28849629 -k2991,426:17281356,28849629:1178665 -k2991,426:18460021,28849629:1178665 -) -(2991,427:6630773,29692558:11829248,505283,102891 -h2991,426:6630773,29692558:0,0,0 -g2991,426:16488042,29692558 -k2991,426:18460021,29692558:602932 -) -(2991,427:9252213,30534046:9207808,485622,11795 -k2991,427:14453806,30534046:4006216 -k2991,427:18460021,30534046:4006215 -) -(2991,428:6630773,31376975:11829248,505283,102891 -h2991,427:6630773,31376975:0,0,0 -g2991,427:14116950,31376975 -k2991,428:16886174,31376975:1573847 -k2991,428:18460021,31376975:1573847 -) -(2991,429:6630773,32219904:11829248,505283,102891 -h2991,428:6630773,32219904:0,0,0 -g2991,428:15697678,32219904 -k2991,429:17676538,32219904:783483 -k2991,429:18460021,32219904:783483 -) -(2991,430:6630773,33062833:11829248,505283,102891 -h2991,429:6630773,33062833:0,0,0 -k2991,429:15697023,33062833:198574 -k2991,429:17264644,33062833:198574 -k2991,430:18460021,33062833:0 -k2991,430:18460021,33062833:0 -) -(2991,431:6630773,33905762:11829248,505283,102891 -h2991,430:6630773,33905762:0,0,0 -g2991,430:16092860,33905762 -k2991,431:17874129,33905762:585892 -k2991,431:18460021,33905762:585892 -) -(2991,432:6630773,34748691:11829248,505283,134348 -h2991,431:6630773,34748691:0,0,0 -k2991,431:15697023,34748691:198574 -k2991,431:17264644,34748691:198574 -k2991,432:18460021,34748691:0 -k2991,432:18460021,34748691:0 -) -(2991,433:6630773,35591621:11829248,505283,134348 -h2991,432:6630773,35591621:0,0,0 -g2991,432:16092860,35591621 -k2991,433:17874129,35591621:585892 -k2991,433:18460021,35591621:585892 -) -(2991,434:6630773,36434550:11829248,505283,134348 -h2991,433:6630773,36434550:0,0,0 -g2991,433:16092860,36434550 -k2991,434:17874129,36434550:585892 -k2991,434:18460021,36434550:585892 -) -(2991,435:6630773,37277479:11829248,505283,134348 -h2991,434:6630773,37277479:0,0,0 -g2991,434:14116950,37277479 -k2991,435:16886174,37277479:1573847 -k2991,435:18460021,37277479:1573847 -) -(2991,436:6630773,38120408:11829248,505283,102891 -h2991,435:6630773,38120408:0,0,0 -g2991,435:13721768,38120408 -k2991,436:16688583,38120408:1771438 -k2991,436:18460021,38120408:1771438 -) -(2991,437:6630773,38963337:11829248,505283,126483 -h2991,436:6630773,38963337:0,0,0 -k2991,436:15697023,38963337:198574 -k2991,436:17264644,38963337:198574 -k2991,437:18460021,38963337:0 -k2991,437:18460021,38963337:0 -) -(2991,438:6630773,39806266:11829248,505283,102891 -h2991,437:6630773,39806266:0,0,0 -g2991,437:16092860,39806266 -k2991,438:17874129,39806266:585892 -k2991,438:18460021,39806266:585892 -) -(2991,439:6630773,40649195:11829248,505283,102891 -h2991,438:6630773,40649195:0,0,0 -g2991,438:16092860,40649195 -k2991,439:17874129,40649195:585892 -k2991,439:18460021,40649195:585892 -) -(2991,440:6630773,41492124:11829248,513147,126483 -h2991,439:6630773,41492124:0,0,0 -g2991,439:15302496,41492124 -k2991,440:17478947,41492124:981074 -k2991,440:18460021,41492124:981074 -) -(2991,441:6630773,42335053:11829248,505283,102891 -h2991,440:6630773,42335053:0,0,0 -g2991,440:14907314,42335053 -k2991,441:17281356,42335053:1178665 -k2991,441:18460021,42335053:1178665 -) -(2991,442:6630773,43177982:11829248,505283,102891 -h2991,441:6630773,43177982:0,0,0 -g2991,441:14116950,43177982 -k2991,442:16886174,43177982:1573847 -k2991,442:18460021,43177982:1573847 -) -(2991,443:6630773,44020911:11829248,505283,134348 -h2991,442:6630773,44020911:0,0,0 -g2991,442:12931403,44020911 -k2991,443:16293401,44020911:2166621 -k2991,443:18460021,44020911:2166620 -) -(2991,444:6630773,44863840:11829248,505283,102891 -h2991,443:6630773,44863840:0,0,0 -g2991,443:13721768,44863840 -k2991,444:16688583,44863840:1771438 -k2991,444:18460021,44863840:1771438 -) -(2991,445:6630773,45706769:11829248,505283,126483 -h2991,444:6630773,45706769:0,0,0 -g2991,444:14907314,45706769 -k2991,445:17281356,45706769:1178665 -k2991,445:18460021,45706769:1178665 +g1,2118:-473656,-710413 ) ] -k2991,494:19606901,45706769:1146880 -r2991,494:19606901,45706769:0,40234515,126483 -k2991,494:20753781,45706769:1146880 -[2991,494:20753781,45706769:11829248,40108032,102891 -(2991,446:20753781,6254097:11829248,505283,134348 -h2991,445:20753781,6254097:0,0,0 -g2991,445:26264047,6254097 -k2991,446:30021227,6254097:2561803 -k2991,446:32583029,6254097:2561802 -) -(2991,447:20753781,7112123:11829248,505283,134348 -h2991,446:20753781,7112123:0,0,0 -g2991,446:27054411,7112123 -k2991,447:30416409,7112123:2166621 -k2991,447:32583029,7112123:2166620 -) -(2991,448:20753781,7970150:11829248,505283,102891 -h2991,447:20753781,7970150:0,0,0 -g2991,447:22707408,7970150 -k2991,448:28242907,7970150:4340122 -k2991,448:32583029,7970150:4340122 -) -(2991,449:20753781,8828176:11829248,505283,102891 -h2991,448:20753781,8828176:0,0,0 -g2991,448:24288137,8828176 -k2991,449:29033272,8828176:3549758 -k2991,449:32583029,8828176:3549757 -) -(2991,450:20753781,9686202:11829248,505283,102891 -h2991,449:20753781,9686202:0,0,0 -g2991,449:23102590,9686202 -k2991,450:28440498,9686202:4142531 -k2991,450:32583029,9686202:4142531 -) -(2991,451:20753781,10544229:11829248,505283,134348 -h2991,450:20753781,10544229:0,0,0 -g2991,450:25473683,10544229 -k2991,451:29626045,10544229:2956985 -k2991,451:32583029,10544229:2956984 -) -(2991,452:20753781,11402255:11829248,505283,126483 -h2991,451:20753781,11402255:0,0,0 -g2991,451:23102590,11402255 -k2991,452:28241269,11402255:4341761 -k2991,452:32583029,11402255:4341760 -) -(2991,453:20753781,12260281:11829248,505283,102891 -h2991,452:20753781,12260281:0,0,0 -g2991,452:25078501,12260281 -k2991,453:29428454,12260281:3154576 -k2991,453:32583029,12260281:3154575 -) -(2991,454:20753781,13118308:11829248,505283,102891 -h2991,453:20753781,13118308:0,0,0 -g2991,453:24683319,13118308 -k2991,454:29230863,13118308:3352167 -k2991,454:32583029,13118308:3352166 -) -(2991,455:20753781,13976334:11829248,505283,102891 -h2991,454:20753781,13976334:0,0,0 -g2991,454:23892955,13976334 -k2991,455:28835681,13976334:3747349 -k2991,455:32583029,13976334:3747348 -) -(2991,456:20753781,14834360:11829248,505283,102891 -h2991,455:20753781,14834360:0,0,0 -g2991,455:23892955,14834360 -k2991,456:28835681,14834360:3747349 -k2991,456:32583029,14834360:3747348 -) -(2991,457:20753781,15692386:11829248,513147,134348 -h2991,456:20753781,15692386:0,0,0 -g2991,456:24288137,15692386 -k2991,457:28834042,15692386:3748987 -k2991,457:32583029,15692386:3748987 -) -(2991,458:20753781,16550413:11829248,505283,102891 -h2991,457:20753781,16550413:0,0,0 -g2991,457:23102590,16550413 -k2991,458:28241269,16550413:4341761 -k2991,458:32583029,16550413:4341760 -) -(2991,459:20753781,17408439:11829248,505283,102891 -h2991,458:20753781,17408439:0,0,0 -g2991,458:23892955,17408439 -k2991,459:28835681,17408439:3747349 -k2991,459:32583029,17408439:3747348 -) -(2991,460:20753781,18266465:11829248,505283,102891 -h2991,459:20753781,18266465:0,0,0 -g2991,459:23497773,18266465 -g2991,459:24667590,18266465 -g2991,459:25837407,18266465 -k2991,460:29807907,18266465:2775123 -k2991,460:32583029,18266465:2775122 -) -(2991,461:20753781,19124492:11829248,505283,102891 -h2991,460:20753781,19124492:0,0,0 -g2991,460:24288137,19124492 -k2991,461:28834042,19124492:3748987 -k2991,461:32583029,19124492:3748987 -) -(2991,462:20753781,19982518:11829248,505283,126483 -h2991,461:20753781,19982518:0,0,0 -g2991,461:24288137,19982518 -k2991,462:29033272,19982518:3549758 -k2991,462:32583029,19982518:3549757 -) -(2991,463:20753781,20840544:11829248,513147,126483 -h2991,462:20753781,20840544:0,0,0 -g2991,462:24683319,20840544 -g2991,462:25853136,20840544 -g2991,462:27022953,20840544 -g2991,462:28591229,20840544 -k2991,463:31184818,20840544:1398212 -k2991,463:32583029,20840544:1398211 -) -(2991,464:20753781,21698571:11829248,505283,126483 -h2991,463:20753781,21698571:0,0,0 -g2991,463:23497773,21698571 -k2991,464:28438860,21698571:4144169 -k2991,464:32583029,21698571:4144169 -) -(2991,465:20753781,22556597:11829248,505283,102891 -h2991,464:20753781,22556597:0,0,0 -g2991,464:25078501,22556597 -g2991,464:26646777,22556597 -k2991,465:30212592,22556597:2370438 -k2991,465:32583029,22556597:2370437 -) -(2991,466:20753781,23414623:11829248,505283,134348 -h2991,465:20753781,23414623:0,0,0 -g2991,465:23892955,23414623 -g2991,465:25461231,23414623 -k2991,466:29619819,23414623:2963211 -k2991,466:32583029,23414623:2963210 -) -(2991,467:20753781,24272650:11829248,505283,102891 -h2991,466:20753781,24272650:0,0,0 -g2991,466:26264047,24272650 -k2991,467:30021227,24272650:2561803 -k2991,467:32583029,24272650:2561802 -) -(2991,468:20753781,25130676:11829248,505283,102891 -h2991,467:20753781,25130676:0,0,0 -g2991,467:23497773,25130676 -k2991,468:28638090,25130676:3944940 -k2991,468:32583029,25130676:3944939 -) -(2991,469:20753781,25988702:11829248,505283,102891 -h2991,468:20753781,25988702:0,0,0 -g2991,468:25078501,25988702 -g2991,468:28169834,25988702 -k2991,469:30974120,25988702:1608909 -k2991,469:32583029,25988702:1608909 -) -(2991,470:20753781,26846728:11829248,505283,102891 -h2991,469:20753781,26846728:0,0,0 -g2991,469:25078501,26846728 -k2991,470:29428454,26846728:3154576 -k2991,470:32583029,26846728:3154575 -) -(2991,471:20753781,27704755:11829248,505283,102891 -h2991,470:20753781,27704755:0,0,0 -g2991,470:25868865,27704755 -k2991,471:29823636,27704755:2759394 -k2991,471:32583029,27704755:2759393 -) -(2991,472:20753781,28562781:11829248,505283,102891 -h2991,471:20753781,28562781:0,0,0 -g2991,471:26659229,28562781 -k2991,472:30218818,28562781:2364212 -k2991,472:32583029,28562781:2364211 -) -(2991,473:20753781,29420807:11829248,505283,126483 -h2991,472:20753781,29420807:0,0,0 -g2991,472:26659229,29420807 -g2991,472:28227505,29420807 -k2991,473:31002956,29420807:1580074 -k2991,473:32583029,29420807:1580073 -) -(2991,474:20753781,30278834:11829248,505283,102891 -h2991,473:20753781,30278834:0,0,0 -g2991,473:27054411,30278834 -k2991,474:30416409,30278834:2166621 -k2991,474:32583029,30278834:2166620 -) -(2991,475:20753781,31136860:11829248,505283,102891 -h2991,474:20753781,31136860:0,0,0 -g2991,474:25868865,31136860 -g2991,474:27437141,31136860 -g2991,474:29005417,31136860 -k2991,475:31391912,31136860:1191118 -k2991,475:32583029,31136860:1191117 -) -(2991,476:20753781,31994886:11829248,505283,126483 -h2991,475:20753781,31994886:0,0,0 -g2991,475:26659229,31994886 -g2991,475:28227505,31994886 -k2991,476:31002956,31994886:1580074 -k2991,476:32583029,31994886:1580073 -) -(2991,477:20753781,32852913:11829248,505283,126483 -h2991,476:20753781,32852913:0,0,0 -g2991,476:27449594,32852913 -k2991,477:30614000,32852913:1969029 -k2991,477:32583029,32852913:1969029 -) -(2991,478:20753781,33710939:11829248,505283,126483 -h2991,477:20753781,33710939:0,0,0 -g2991,477:27844776,33710939 -k2991,478:30811591,33710939:1771438 -k2991,478:32583029,33710939:1771438 -) -(2991,479:20753781,34568965:11829248,513147,102891 -h2991,478:20753781,34568965:0,0,0 -g2991,478:29030322,34568965 -k2991,479:31404364,34568965:1178665 -k2991,479:32583029,34568965:1178665 -) -(2991,480:20753781,35426992:11829248,513147,102891 -h2991,479:20753781,35426992:0,0,0 -g2991,479:27054411,35426992 -k2991,480:30416409,35426992:2166621 -k2991,480:32583029,35426992:2166620 -) -(2991,481:20753781,36285018:11829248,505283,134348 -h2991,480:20753781,36285018:0,0,0 -g2991,480:27449594,36285018 -k2991,481:30614000,36285018:1969029 -k2991,481:32583029,36285018:1969029 -) -(2991,482:20753781,37143044:11829248,505283,126483 -h2991,481:20753781,37143044:0,0,0 -g2991,481:27054411,37143044 -k2991,482:30416409,37143044:2166621 -k2991,482:32583029,37143044:2166620 -) -(2991,483:20753781,38001071:11829248,505283,126483 -h2991,482:20753781,38001071:0,0,0 -g2991,482:27449594,38001071 -g2991,482:29017870,38001071 -k2991,483:31398138,38001071:1184891 -k2991,483:32583029,38001071:1184891 -) -(2991,484:20753781,38859097:11829248,513147,102891 -h2991,483:20753781,38859097:0,0,0 -g2991,483:24683319,38859097 -k2991,484:29230863,38859097:3352167 -k2991,484:32583029,38859097:3352166 -) -(2991,485:20753781,39717123:11829248,505283,102891 -h2991,484:20753781,39717123:0,0,0 -g2991,484:25473683,39717123 -k2991,485:29626045,39717123:2956985 -k2991,485:32583029,39717123:2956984 -) -(2991,486:20753781,40575149:11829248,505283,102891 -h2991,485:20753781,40575149:0,0,0 -g2991,485:26264047,40575149 -g2991,485:27832323,40575149 -g2991,485:29400599,40575149 -g2991,485:30968875,40575149 -k2991,486:32373641,40575149:209389 -k2991,486:32583029,40575149:209388 -) -(2991,487:20753781,41433176:11829248,485622,126483 -h2991,486:20753781,41433176:0,0,0 -g2991,486:25868865,41433176 -k2991,487:29823636,41433176:2759394 -k2991,487:32583029,41433176:2759393 -) -(2991,488:20753781,42291202:11829248,505283,126483 -h2991,487:20753781,42291202:0,0,0 -g2991,487:26659229,42291202 -g2991,487:28227505,42291202 -k2991,487:32583029,42291202:1463420 -) -(2991,488:23375221,43132690:9207808,485622,102891 -g2991,487:24943497,43132690 -k2991,488:29360952,43132690:3222078 -k2991,488:32583029,43132690:3222077 -) -(2991,489:20753781,43990716:11829248,505283,126483 -h2991,488:20753781,43990716:0,0,0 -g2991,488:27449594,43990716 -k2991,489:30614000,43990716:1969029 -k2991,489:32583029,43990716:1969029 -) -(2991,490:20753781,44848743:11829248,505283,126483 -h2991,489:20753781,44848743:0,0,0 -g2991,489:27844776,44848743 -k2991,490:30811591,44848743:1771438 -k2991,490:32583029,44848743:1771438 -) -(2991,491:20753781,45706769:11829248,505283,102891 -h2991,490:20753781,45706769:0,0,0 -g2991,490:23102590,45706769 -g2991,490:24670866,45706769 -k2991,491:29224636,45706769:3358393 -k2991,491:32583029,45706769:3358393 ) -] -(2991,494:32583029,45706769:0,355205,126483 -h2991,494:32583029,45706769:420741,355205,126483 -k2991,494:32583029,45706769:-420741 +[1,2118:6630773,47279633:25952256,43253760,11795 +[1,2118:6630773,4812305:25952256,786432,0 +(1,2118:6630773,4812305:25952256,0,0 +(1,2118:6630773,4812305:25952256,0,0 +g1,2118:3078558,4812305 +[1,2118:3078558,4812305:0,0,0 +(1,2118:3078558,2439708:0,1703936,0 +k1,2118:1358238,2439708:-1720320 +(1,147:1358238,2439708:1720320,1703936,0 +(1,147:1358238,2439708:1179648,16384,0 +r1,2118:2537886,2439708:1179648,16384,0 ) +g1,147:3062174,2439708 +(1,147:3062174,2439708:16384,1703936,0 +[1,147:3062174,2439708:25952256,1703936,0 +(1,147:3062174,1915420:25952256,1179648,0 +(1,147:3062174,1915420:16384,1179648,0 +r1,2118:3078558,1915420:16384,1179648,0 +) +k1,147:29014430,1915420:25935872 +g1,147:29014430,1915420 ) ] -(2991,494:32583029,45706769:0,0,0 -g2991,494:32583029,45706769 ) ) -] -(2991,494:6630773,47279633:25952256,0,0 -h2991,494:6630773,47279633:25952256,0,0 ) ] -(2991,494:4262630,4025873:0,0,0 -[2991,494:-473656,4025873:0,0,0 -(2991,494:-473656,-710413:0,0,0 -(2991,494:-473656,-710413:0,0,0 -g2991,494:-473656,-710413 +[1,2118:3078558,4812305:0,0,0 +(1,2118:3078558,2439708:0,1703936,0 +g1,2118:29030814,2439708 +g1,2118:36135244,2439708 +(1,147:36135244,2439708:1720320,1703936,0 +(1,147:36135244,2439708:16384,1703936,0 +[1,147:36135244,2439708:25952256,1703936,0 +(1,147:36135244,1915420:25952256,1179648,0 +(1,147:36135244,1915420:16384,1179648,0 +r1,2118:36151628,1915420:16384,1179648,0 ) -g2991,494:-473656,-710413 +k1,147:62087500,1915420:25935872 +g1,147:62087500,1915420 ) ] ) -] -!22117 -}398 -!12 -{399 -[1,19113:4262630,47279633:28320399,43253760,0 -(1,19113:4262630,4025873:0,0,0 -[1,19113:-473656,4025873:0,0,0 -(1,19113:-473656,-710413:0,0,0 -(1,19113:-473656,-644877:0,0,0 -k1,19113:-473656,-644877:-65536 -) -(1,19113:-473656,4736287:0,0,0 -k1,19113:-473656,4736287:5209943 -) -g1,19113:-473656,-710413 +g1,147:36675916,2439708 +(1,147:36675916,2439708:1179648,16384,0 +r1,2118:37855564,2439708:1179648,16384,0 ) -] ) -[1,19113:6630773,47279633:25952256,43253760,0 -[1,19113:6630773,4812305:25952256,786432,0 -(1,19113:6630773,4812305:25952256,513147,126483 -(1,19113:6630773,4812305:25952256,513147,126483 -g1,19113:3078558,4812305 -[1,19113:3078558,4812305:0,0,0 -(1,19113:3078558,2439708:0,1703936,0 -k1,19113:1358238,2439708:-1720320 -(1,17092:1358238,2439708:1720320,1703936,0 -(1,17092:1358238,2439708:1179648,16384,0 -r1,19113:2537886,2439708:1179648,16384,0 -) -g1,17092:3062174,2439708 -(1,17092:3062174,2439708:16384,1703936,0 -[1,17092:3062174,2439708:25952256,1703936,0 -(1,17092:3062174,1915420:25952256,1179648,0 -(1,17092:3062174,1915420:16384,1179648,0 -r1,19113:3078558,1915420:16384,1179648,0 -) -k1,17092:29014430,1915420:25935872 -g1,17092:29014430,1915420 +k1,2118:3078556,2439708:-34777008 ) ] +[1,2118:3078558,4812305:0,0,0 +(1,2118:3078558,49800853:0,16384,2228224 +k1,2118:1358238,49800853:-1720320 +(1,147:1358238,49800853:1720320,16384,2228224 +(1,147:1358238,49800853:1179648,16384,0 +r1,2118:2537886,49800853:1179648,16384,0 ) +g1,147:3062174,49800853 +(1,147:3062174,52029077:16384,1703936,0 +[1,147:3062174,52029077:25952256,1703936,0 +(1,147:3062174,51504789:25952256,1179648,0 +(1,147:3062174,51504789:16384,1179648,0 +r1,2118:3078558,51504789:16384,1179648,0 ) +k1,147:29014430,51504789:25935872 +g1,147:29014430,51504789 ) ] -[1,19113:3078558,4812305:0,0,0 -(1,19113:3078558,2439708:0,1703936,0 -g1,19113:29030814,2439708 -g1,19113:36135244,2439708 -(1,17092:36135244,2439708:1720320,1703936,0 -(1,17092:36135244,2439708:16384,1703936,0 -[1,17092:36135244,2439708:25952256,1703936,0 -(1,17092:36135244,1915420:25952256,1179648,0 -(1,17092:36135244,1915420:16384,1179648,0 -r1,19113:36151628,1915420:16384,1179648,0 -) -k1,17092:62087500,1915420:25935872 -g1,17092:62087500,1915420 ) -] -) -g1,17092:36675916,2439708 -(1,17092:36675916,2439708:1179648,16384,0 -r1,19113:37855564,2439708:1179648,16384,0 ) ) -k1,19113:3078556,2439708:-34777008 -) ] -[1,19113:3078558,4812305:0,0,0 -(1,19113:3078558,49800853:0,16384,2228224 -k1,19113:1358238,49800853:-1720320 -(1,17092:1358238,49800853:1720320,16384,2228224 -(1,17092:1358238,49800853:1179648,16384,0 -r1,19113:2537886,49800853:1179648,16384,0 -) -g1,17092:3062174,49800853 -(1,17092:3062174,52029077:16384,1703936,0 -[1,17092:3062174,52029077:25952256,1703936,0 -(1,17092:3062174,51504789:25952256,1179648,0 -(1,17092:3062174,51504789:16384,1179648,0 -r1,19113:3078558,51504789:16384,1179648,0 -) -k1,17092:29014430,51504789:25935872 -g1,17092:29014430,51504789 +[1,2118:3078558,4812305:0,0,0 +(1,2118:3078558,49800853:0,16384,2228224 +g1,2118:29030814,49800853 +g1,2118:36135244,49800853 +(1,147:36135244,49800853:1720320,16384,2228224 +(1,147:36135244,52029077:16384,1703936,0 +[1,147:36135244,52029077:25952256,1703936,0 +(1,147:36135244,51504789:25952256,1179648,0 +(1,147:36135244,51504789:16384,1179648,0 +r1,2118:36151628,51504789:16384,1179648,0 +) +k1,147:62087500,51504789:25935872 +g1,147:62087500,51504789 ) ] ) +g1,147:36675916,49800853 +(1,147:36675916,49800853:1179648,16384,0 +r1,2118:37855564,49800853:1179648,16384,0 ) ) -] -[1,19113:3078558,4812305:0,0,0 -(1,19113:3078558,49800853:0,16384,2228224 -g1,19113:29030814,49800853 -g1,19113:36135244,49800853 -(1,17092:36135244,49800853:1720320,16384,2228224 -(1,17092:36135244,52029077:16384,1703936,0 -[1,17092:36135244,52029077:25952256,1703936,0 -(1,17092:36135244,51504789:25952256,1179648,0 -(1,17092:36135244,51504789:16384,1179648,0 -r1,19113:36151628,51504789:16384,1179648,0 -) -k1,17092:62087500,51504789:25935872 -g1,17092:62087500,51504789 +k1,2118:3078556,49800853:-34777008 ) ] +g1,2118:6630773,4812305 ) -g1,17092:36675916,49800853 -(1,17092:36675916,49800853:1179648,16384,0 -r1,19113:37855564,49800853:1179648,16384,0 ) +] +[1,2118:6630773,45706769:25952256,40108032,0 +(1,2118:6630773,45706769:25952256,40108032,0 +(1,2118:6630773,45706769:0,0,0 +g1,2118:6630773,45706769 ) -k1,19113:3078556,49800853:-34777008 +[1,2118:6630773,45706769:25952256,40108032,0 +[580,1:6630773,12106481:25952256,6507744,0 +(580,1:6630773,7073297:25952256,32768,229376 +(580,1:6630773,7073297:0,32768,229376 +(580,1:6630773,7073297:5505024,32768,229376 +r1,2118:12135797,7073297:5505024,262144,229376 ) -] -g1,19113:6630773,4812305 -k1,19113:23661615,4812305:15835465 -g1,19113:27221530,4812305 -g1,19113:29095859,4812305 -g1,19113:29911126,4812305 -g1,19113:30524543,4812305 +k580,1:6630773,7073297:-5505024 ) ) -] -[1,19113:6630773,45706769:25952256,40108032,0 -(1,19113:6630773,45706769:25952256,40108032,0 -(1,19113:6630773,45706769:0,0,0 -g1,19113:6630773,45706769 -) -[1,19113:6630773,45706769:25952256,40108032,0 -(2991,580:6630773,37923921:25952256,32325184,126483 -[2991,580:6630773,37923921:11829248,32325184,102891 -(2991,492:6630773,6254097:11829248,505283,102891 -h2991,491:6630773,6254097:0,0,0 -g2991,491:8979582,6254097 -g2991,491:11273997,6254097 -g2991,491:12443814,6254097 -g2991,491:13613631,6254097 -g2991,491:15181907,6254097 -g2991,491:16750183,6254097 -k2991,491:18460021,6254097:340791 -) -(2991,492:9252213,7095585:9207808,485622,11795 -k2991,492:14453806,7095585:4006216 -k2991,492:18460021,7095585:4006215 -) -(2991,493:6630773,7937073:11829248,505283,102891 -h2991,492:6630773,7937073:0,0,0 -g2991,492:12141039,7937073 -k2991,493:15898219,7937073:2561803 -k2991,493:18460021,7937073:2561802 -) -(2991,494:6630773,8778561:11829248,513147,102891 -h2991,493:6630773,8778561:0,0,0 -g2991,493:10955493,8778561 -k2991,494:15305446,8778561:3154576 -k2991,494:18460021,8778561:3154575 -) -(2991,495:6630773,9620049:11829248,505283,126483 -h2991,494:6630773,9620049:0,0,0 -g2991,494:10955493,9620049 -k2991,495:15305446,9620049:3154576 -k2991,495:18460021,9620049:3154575 -) -(2991,496:6630773,10461537:11829248,505283,102891 -h2991,495:6630773,10461537:0,0,0 -g2991,495:10165129,10461537 -g2991,495:11334946,10461537 -g2991,495:12504763,10461537 -g2991,495:14073039,10461537 -k2991,496:16864219,10461537:1595803 -k2991,496:18460021,10461537:1595802 -) -(2991,497:6630773,11303025:11829248,505283,102891 -h2991,496:6630773,11303025:0,0,0 -g2991,496:11745857,11303025 -k2991,497:15700628,11303025:2759394 -k2991,497:18460021,11303025:2759393 -) -(2991,498:6630773,12144513:11829248,505283,102891 -h2991,497:6630773,12144513:0,0,0 -g2991,497:8979582,12144513 -g2991,497:10547858,12144513 -k2991,498:15101628,12144513:3358393 -k2991,498:18460021,12144513:3358393 -) -(2991,499:6630773,12986001:11829248,505283,102891 -h2991,498:6630773,12986001:0,0,0 -g2991,498:11350675,12986001 -k2991,499:15503037,12986001:2956985 -k2991,499:18460021,12986001:2956984 -) -(2991,500:6630773,13827489:11829248,505283,126483 -h2991,499:6630773,13827489:0,0,0 -g2991,499:10560311,13827489 -g2991,499:11730128,13827489 -g2991,499:12899945,13827489 -g2991,499:14468221,13827489 -g2991,499:16036497,13827489 -k2991,499:18460021,13827489:1054477 -) -(2991,500:9252213,14668977:9207808,485622,102891 -g2991,499:10820489,14668977 -g2991,499:12388765,14668977 -k2991,500:16022082,14668977:2437940 -k2991,500:18460021,14668977:2437939 -) -(2991,501:6630773,15510465:11829248,505283,102891 -h2991,500:6630773,15510465:0,0,0 -g2991,500:10165129,15510465 -k2991,501:15671792,15510465:2788230 -k2991,501:18460021,15510465:2788229 -) -(2991,502:6630773,16351953:11829248,505283,126483 -h2991,501:6630773,16351953:0,0,0 -g2991,501:10165129,16351953 -k2991,502:14910264,16351953:3549758 -k2991,502:18460021,16351953:3549757 -) -(2991,503:6630773,17193441:11829248,505283,126483 -h2991,502:6630773,17193441:0,0,0 -g2991,502:12141039,17193441 -g2991,502:13709315,17193441 -k2991,503:16682357,17193441:1777665 -k2991,503:18460021,17193441:1777664 -) -(2991,507:6630773,18569697:11829248,505283,102891 -h2991,506:6630773,18569697:0,0,0 -g2991,506:8189218,18569697 -g2991,506:9359035,18569697 -k2991,507:14507217,18569697:3952805 -k2991,507:18460021,18569697:3952804 -) -(2991,508:6630773,19411185:11829248,505283,102891 -h2991,507:6630773,19411185:0,0,0 -g2991,507:9374765,19411185 -g2991,507:10544582,19411185 -k2991,508:14900761,19411185:3559261 -k2991,508:18460021,19411185:3559260 -) -(2991,509:6630773,20252673:11829248,505283,102891 -h2991,508:6630773,20252673:0,0,0 -g2991,508:8189218,20252673 -k2991,509:13922308,20252673:4537713 -k2991,509:18460021,20252673:4537713 -) -(2991,510:6630773,21094161:11829248,513147,102891 -h2991,509:6630773,21094161:0,0,0 -g2991,509:9374765,21094161 -k2991,510:14515082,21094161:3944940 -k2991,510:18460021,21094161:3944939 -) -(2991,511:6630773,21935649:11829248,505283,102891 -h2991,510:6630773,21935649:0,0,0 -g2991,510:9769947,21935649 -g2991,510:11338223,21935649 -k2991,511:15496811,21935649:2963211 -k2991,511:18460021,21935649:2963210 -) -(2991,512:6630773,22777137:11829248,505283,102891 -h2991,511:6630773,22777137:0,0,0 -g2991,511:9769947,22777137 -g2991,511:11338223,22777137 -k2991,512:15496811,22777137:2963211 -k2991,512:18460021,22777137:2963210 -) -(2991,513:6630773,23618625:11829248,505283,102891 -h2991,512:6630773,23618625:0,0,0 -g2991,512:10955493,23618625 -g2991,512:12523769,23618625 -k2991,513:16089584,23618625:2370438 -k2991,513:18460021,23618625:2370437 -) -(2991,514:6630773,24460113:11829248,505283,102891 -h2991,513:6630773,24460113:0,0,0 -g2991,513:12931403,24460113 -g2991,513:14499679,24460113 -k2991,514:17077539,24460113:1382483 -k2991,514:18460021,24460113:1382482 -) -(2991,515:6630773,25301601:11829248,505283,102891 -h2991,514:6630773,25301601:0,0,0 -g2991,514:11745857,25301601 -k2991,515:15700628,25301601:2759394 -k2991,515:18460021,25301601:2759393 -) -(2991,516:6630773,26143089:11829248,505283,134348 -h2991,515:6630773,26143089:0,0,0 -g2991,515:11745857,26143089 -g2991,515:13314133,26143089 -g2991,515:14882409,26143089 -k2991,516:17268904,26143089:1191118 -k2991,516:18460021,26143089:1191117 -) -(2991,517:6630773,26984577:11829248,505283,134348 -h2991,516:6630773,26984577:0,0,0 -g2991,516:12141039,26984577 -k2991,517:15898219,26984577:2561803 -k2991,517:18460021,26984577:2561802 -) -(2991,518:6630773,27826065:11829248,505283,102891 -h2991,517:6630773,27826065:0,0,0 -g2991,517:13326586,27826065 -k2991,518:16490992,27826065:1969029 -k2991,518:18460021,27826065:1969029 -) -(2991,519:6630773,28667553:11829248,505283,102891 -h2991,518:6630773,28667553:0,0,0 -g2991,518:12931403,28667553 -k2991,519:16293401,28667553:2166621 -k2991,519:18460021,28667553:2166620 -) -(2991,520:6630773,29509041:11829248,505283,102891 -h2991,519:6630773,29509041:0,0,0 -g2991,519:11350675,29509041 -k2991,520:15503037,29509041:2956985 -k2991,520:18460021,29509041:2956984 -) -(2991,521:6630773,30350529:11829248,505283,102891 -h2991,520:6630773,30350529:0,0,0 -g2991,520:11745857,30350529 -k2991,521:15700628,30350529:2759394 -k2991,521:18460021,30350529:2759393 -) -(2991,522:6630773,31192017:11829248,505283,102891 -h2991,521:6630773,31192017:0,0,0 -g2991,521:9374765,31192017 -g2991,521:10943041,31192017 -g2991,521:12511317,31192017 -g2991,521:14079593,31192017 -g2991,521:15647869,31192017 -g2991,521:17216145,31192017 -k2991,522:18435772,31192017:24250 -k2991,522:18460021,31192017:24249 -) -(2991,523:6630773,32033505:11829248,505283,102891 -h2991,522:6630773,32033505:0,0,0 -g2991,522:10165129,32033505 -g2991,522:11733405,32033505 -g2991,522:13301681,32033505 -g2991,522:14869957,32033505 -k2991,523:17262678,32033505:1197344 -k2991,523:18460021,32033505:1197343 -) -(2991,524:6630773,32874993:11829248,505283,102891 -h2991,523:6630773,32874993:0,0,0 -g2991,523:10560311,32874993 -k2991,524:15107855,32874993:3352167 -k2991,524:18460021,32874993:3352166 -) -(2991,525:6630773,33716481:11829248,513147,102891 -h2991,524:6630773,33716481:0,0,0 -k2991,524:17264644,33716481:185467 -k2991,525:18460021,33716481:0 -k2991,525:18460021,33716481:0 -) -(2991,526:6630773,34557969:11829248,505283,126483 -h2991,525:6630773,34557969:0,0,0 -g2991,525:10560311,34557969 -k2991,526:15107855,34557969:3352167 -k2991,526:18460021,34557969:3352166 -) -(2991,527:6630773,35399457:11829248,505283,102891 -h2991,526:6630773,35399457:0,0,0 -g2991,526:11350675,35399457 -k2991,527:15503037,35399457:2956985 -k2991,527:18460021,35399457:2956984 -) -(2991,528:6630773,36240945:11829248,485622,102891 -h2991,527:6630773,36240945:0,0,0 -g2991,527:8584400,36240945 -k2991,528:13920670,36240945:4539352 -k2991,528:18460021,36240945:4539351 -) -(2991,529:6630773,37082433:11829248,505283,102891 -h2991,528:6630773,37082433:0,0,0 -g2991,528:9769947,37082433 -g2991,528:10939764,37082433 -k2991,529:15098352,37082433:3361670 -k2991,529:18460021,37082433:3361669 -) -(2991,530:6630773,37923921:11829248,505283,102891 -h2991,529:6630773,37923921:0,0,0 -g2991,529:8584400,37923921 -k2991,530:14119899,37923921:4340122 -k2991,530:18460021,37923921:4340122 +(580,1:6630773,8803457:25952256,923664,227671 +h580,1:6630773,8803457:0,0,0 +g580,1:13383078,8803457 +g580,1:16925561,8803457 +g580,1:18489774,8803457 +g580,1:19654086,8803457 +k580,1:28056719,8803457:4526310 +k580,1:32583029,8803457:4526310 ) -] -k2991,580:19606901,37923921:1146880 -r1,19113:19606901,37923921:0,32451667,126483 -k2991,580:20753781,37923921:1146880 -[2991,580:20753781,37923921:11829248,32325184,126483 -(2991,531:20753781,6254097:11829248,513147,126483 -h2991,530:20753781,6254097:0,0,0 -g2991,530:24288137,6254097 -k2991,531:28834042,6254097:3748987 -k2991,531:32583029,6254097:3748987 -) -(2991,535:20753781,7845695:11829248,505283,134348 -h2991,534:20753781,7845695:0,0,0 -g2991,534:24683319,7845695 -g2991,534:26251595,7845695 -k2991,535:30015001,7845695:2568029 -k2991,535:32583029,7845695:2568028 -) -(2991,536:20753781,8692546:11829248,505283,126483 -h2991,535:20753781,8692546:0,0,0 -g2991,535:24288137,8692546 -k2991,536:28834042,8692546:3748987 -k2991,536:32583029,8692546:3748987 -) -(2991,537:20753781,9539397:11829248,505283,102891 -h2991,536:20753781,9539397:0,0,0 -g2991,536:24288137,9539397 -k2991,537:28834042,9539397:3748987 -k2991,537:32583029,9539397:3748987 -) -(2991,538:20753781,10386249:11829248,505283,102891 -h2991,537:20753781,10386249:0,0,0 -g2991,537:24288137,10386249 -g2991,537:25457954,10386249 -g2991,537:26627771,10386249 -k2991,538:30003859,10386249:2579170 -k2991,538:32583029,10386249:2579170 -) -(2991,539:20753781,11233100:11829248,505283,102891 -h2991,538:20753781,11233100:0,0,0 -g2991,538:24288137,11233100 -k2991,539:28834042,11233100:3748987 -k2991,539:32583029,11233100:3748987 -) -(2991,540:20753781,12079951:11829248,505283,126483 -h2991,539:20753781,12079951:0,0,0 -g2991,539:24288137,12079951 -k2991,540:29033272,12079951:3549758 -k2991,540:32583029,12079951:3549757 -) -(2991,541:20753781,12926802:11829248,505283,134348 -h2991,540:20753781,12926802:0,0,0 -g2991,540:27844776,12926802 -k2991,541:30811591,12926802:1771438 -k2991,541:32583029,12926802:1771438 -) -(2991,545:20753781,14518400:11829248,505283,126483 -h2991,544:20753781,14518400:0,0,0 -g2991,544:24288137,14518400 -g2991,544:25457954,14518400 -g2991,544:27026230,14518400 -k2991,545:30402318,14518400:2180711 -k2991,545:32583029,14518400:2180711 -) -(2991,546:20753781,15365251:11829248,505283,102891 -h2991,545:20753781,15365251:0,0,0 -g2991,545:23102590,15365251 -g2991,545:24670866,15365251 -k2991,546:29224636,15365251:3358393 -k2991,546:32583029,15365251:3358393 -) -(2991,547:20753781,16212103:11829248,505283,102891 -h2991,546:20753781,16212103:0,0,0 -g2991,546:23497773,16212103 -k2991,547:28638090,16212103:3944940 -k2991,547:32583029,16212103:3944939 -) -(2991,548:20753781,17058954:11829248,485622,102891 -h2991,547:20753781,17058954:0,0,0 -g2991,547:23497773,17058954 -k2991,548:28438860,17058954:4144169 -k2991,548:32583029,17058954:4144169 -) -(2991,552:20753781,18650552:11829248,505283,102891 -h2991,551:20753781,18650552:0,0,0 -g2991,551:23102590,18650552 -g2991,551:24670866,18650552 -g2991,551:26239142,18650552 -g2991,551:27807418,18650552 -k2991,552:30792912,18650552:1790117 -k2991,552:32583029,18650552:1790117 -) -(2991,553:20753781,19497403:11829248,505283,102891 -h2991,552:20753781,19497403:0,0,0 -g2991,552:23497773,19497403 -k2991,553:29001159,19497403:3581870 -k2991,553:32583029,19497403:3581870 -) -(2991,554:20753781,20344254:11829248,505283,102891 -h2991,553:20753781,20344254:0,0,0 -g2991,553:24288137,20344254 -k2991,554:29396341,20344254:3186688 -k2991,554:32583029,20344254:3186688 -) -(2991,555:20753781,21191105:11829248,505283,102891 -h2991,554:20753781,21191105:0,0,0 -g2991,554:25473683,21191105 -g2991,554:27041959,21191105 -k2991,555:30410183,21191105:2172847 -k2991,555:32583029,21191105:2172846 -) -(2991,556:20753781,22037957:11829248,505283,102891 -h2991,555:20753781,22037957:0,0,0 -g2991,555:25078501,22037957 -k2991,556:29428454,22037957:3154576 -k2991,556:32583029,22037957:3154575 -) -(2991,557:20753781,22884808:11829248,505283,102891 -h2991,556:20753781,22884808:0,0,0 -g2991,556:25868865,22884808 -k2991,557:29823636,22884808:2759394 -k2991,557:32583029,22884808:2759393 -) -(2991,558:20753781,23731659:11829248,505283,102891 -h2991,557:20753781,23731659:0,0,0 -g2991,557:26264047,23731659 -k2991,558:30021227,23731659:2561803 -k2991,558:32583029,23731659:2561802 -) -(2991,559:20753781,24578510:11829248,505283,102891 -h2991,558:20753781,24578510:0,0,0 -g2991,558:25868865,24578510 -k2991,559:29823636,24578510:2759394 -k2991,559:32583029,24578510:2759393 -) -(2991,560:20753781,25425362:11829248,505283,102891 -h2991,559:20753781,25425362:0,0,0 -g2991,559:25473683,25425362 -g2991,559:27041959,25425362 -k2991,560:30410183,25425362:2172847 -k2991,560:32583029,25425362:2172846 -) -(2991,561:20753781,26272213:11829248,505283,102891 -h2991,560:20753781,26272213:0,0,0 -g2991,560:25868865,26272213 -k2991,561:29823636,26272213:2759394 -k2991,561:32583029,26272213:2759393 -) -(2991,562:20753781,27119064:11829248,505283,102891 -h2991,561:20753781,27119064:0,0,0 -g2991,561:26264047,27119064 -k2991,562:30021227,27119064:2561803 -k2991,562:32583029,27119064:2561802 -) -(2991,563:20753781,27965915:11829248,505283,102891 -h2991,562:20753781,27965915:0,0,0 -g2991,562:27844776,27965915 -g2991,562:29413052,27965915 -k2991,563:31595729,27965915:987300 -k2991,563:32583029,27965915:987300 -) -(2991,564:20753781,28812767:11829248,513147,102891 -h2991,563:20753781,28812767:0,0,0 -g2991,563:25868865,28812767 -k2991,564:29823636,28812767:2759394 -k2991,564:32583029,28812767:2759393 -) -(2991,565:20753781,29659618:11829248,505283,102891 -h2991,564:20753781,29659618:0,0,0 -g2991,564:26264047,29659618 -k2991,565:30021227,29659618:2561803 -k2991,565:32583029,29659618:2561802 -) -(2991,566:20753781,30506469:11829248,505283,102891 -h2991,565:20753781,30506469:0,0,0 -g2991,565:25473683,30506469 -k2991,566:29626045,30506469:2956985 -k2991,566:32583029,30506469:2956984 -) -(2991,567:20753781,31353320:11829248,505283,102891 -h2991,566:20753781,31353320:0,0,0 -g2991,566:25473683,31353320 -k2991,567:29626045,31353320:2956985 -k2991,567:32583029,31353320:2956984 -) -(2991,571:20753781,32944918:11829248,505283,102891 -h2991,570:20753781,32944918:0,0,0 -g2991,570:23497773,32944918 -k2991,571:28638090,32944918:3944940 -k2991,571:32583029,32944918:3944939 -) -(2991,572:20753781,33791769:11829248,505283,102891 -h2991,571:20753781,33791769:0,0,0 -g2991,571:23497773,33791769 -g2991,571:25066049,33791769 -g2991,571:26634325,33791769 -k2991,572:30206366,33791769:2376664 -k2991,572:32583029,33791769:2376663 -) -(2991,573:20753781,34638621:11829248,513147,102891 -h2991,572:20753781,34638621:0,0,0 -g2991,572:26659229,34638621 -k2991,573:30218818,34638621:2364212 -k2991,573:32583029,34638621:2364211 -) -(2991,574:20753781,35485472:11829248,505283,102891 -h2991,573:20753781,35485472:0,0,0 -g2991,573:25078501,35485472 -k2991,574:29428454,35485472:3154576 -k2991,574:32583029,35485472:3154575 -) -(2991,578:20753781,37077070:11829248,505283,126483 -h2991,577:20753781,37077070:0,0,0 -g2991,577:23497773,37077070 -k2991,578:28638090,37077070:3944940 -k2991,578:32583029,37077070:3944939 -) -(2991,579:20753781,37923921:11829248,505283,126483 -h2991,578:20753781,37923921:0,0,0 -g2991,578:23497773,37923921 -g2991,578:25066049,37923921 -g2991,578:26634325,37923921 -k2991,579:30206366,37923921:2376664 -k2991,579:32583029,37923921:2376663 +(580,1:6630773,9419505:25952256,32768,0 +(580,1:6630773,9419505:5505024,32768,0 +r1,2118:12135797,9419505:5505024,32768,0 +) +k580,1:22359413,9419505:10223616 +k580,1:32583029,9419505:10223616 ) ] -(2991,580:32583029,37923921:0,355205,126483 -h2991,580:32583029,37923921:420741,355205,126483 -k2991,580:32583029,37923921:-420741 +(580,101:6630773,38331505:25952256,25252464,134348 +[580,101:6630773,38331505:11829248,25252464,134348 +(580,4:6630773,13734401:11829248,505283,134348 +h580,3:6630773,13734401:0,0,0 +g580,3:11350675,13734401 +k580,4:15303807,13734401:3156214 +k580,4:18460021,13734401:3156214 ) +(580,5:6630773,14575889:11829248,505283,102891 +h580,4:6630773,14575889:0,0,0 +g580,4:9769947,14575889 +k580,5:14513443,14575889:3946578 +k580,5:18460021,14575889:3946578 +) +(580,6:6630773,15417377:11829248,505283,126483 +h580,5:6630773,15417377:0,0,0 +g580,5:9769947,15417377 +g580,5:10939764,15417377 +g580,5:12109581,15417377 +k580,6:16245559,15417377:2214462 +k580,6:18460021,15417377:2214462 +) +(580,7:6630773,16258865:11829248,505283,134348 +h580,6:6630773,16258865:0,0,0 +g580,6:10165129,16258865 +g580,6:11334946,16258865 +k580,7:15295943,16258865:3164079 +k580,7:18460021,16258865:3164078 +) +(580,11:6630773,17729123:11829248,505283,102891 +h580,10:6630773,17729123:0,0,0 +g580,10:9769947,17729123 +k580,11:15075742,17729123:3384279 +k580,11:18460021,17729123:3384279 +) +(580,15:6630773,19199382:11829248,505283,102891 +h580,14:6630773,19199382:0,0,0 +g580,14:10165129,19199382 +k580,15:14711034,19199382:3748987 +k580,15:18460021,19199382:3748987 +) +(580,16:6630773,20040870:11829248,505283,102891 +h580,15:6630773,20040870:0,0,0 +g580,15:10165129,20040870 +k580,16:14711034,20040870:3748987 +k580,16:18460021,20040870:3748987 +) +(580,17:6630773,20882358:11829248,505283,126483 +h580,16:6630773,20882358:0,0,0 +g580,16:10560311,20882358 +k580,17:14908625,20882358:3551396 +k580,17:18460021,20882358:3551396 +) +(580,18:6630773,21723846:11829248,505283,102891 +h580,17:6630773,21723846:0,0,0 +g580,17:10165129,21723846 +k580,18:14711034,21723846:3748987 +k580,18:18460021,21723846:3748987 +) +(580,22:6630773,23194104:11829248,513147,102891 +h580,21:6630773,23194104:0,0,0 +g580,21:9374765,23194104 +k580,22:14315852,23194104:4144169 +k580,22:18460021,23194104:4144169 +) +(580,23:6630773,24035592:11829248,513147,102891 +h580,22:6630773,24035592:0,0,0 +g580,22:10560311,24035592 +k580,23:14908625,24035592:3551396 +k580,23:18460021,24035592:3551396 +) +(580,24:6630773,24877080:11829248,505283,102891 +h580,23:6630773,24877080:0,0,0 +g580,23:10560311,24877080 +g580,23:11730128,24877080 +k580,24:15493534,24877080:2966488 +k580,24:18460021,24877080:2966487 +) +(580,28:6630773,26347338:11829248,513147,102891 +h580,27:6630773,26347338:0,0,0 +g580,27:11350675,26347338 +k580,28:15303807,26347338:3156214 +k580,28:18460021,26347338:3156214 +) +(580,29:6630773,27188826:11829248,513147,102891 +h580,28:6630773,27188826:0,0,0 +g580,28:8189218,27188826 +g580,28:10483633,27188826 +k580,29:14870286,27188826:3589735 +k580,29:18460021,27188826:3589735 +) +(580,33:6630773,28659084:11829248,505283,134348 +h580,32:6630773,28659084:0,0,0 +g580,32:8979582,28659084 +g580,32:10149399,28659084 +k580,33:14703169,28659084:3756852 +k580,33:18460021,28659084:3756852 +) +(580,34:6630773,29500572:11829248,505283,134348 +h580,33:6630773,29500572:0,0,0 +g580,33:11745857,29500572 +k580,34:15501398,29500572:2958623 +k580,34:18460021,29500572:2958623 +) +(580,35:6630773,30342060:11829248,505283,134348 +h580,34:6630773,30342060:0,0,0 +g580,34:10165129,30342060 +k580,35:14511805,30342060:3948217 +k580,35:18460021,30342060:3948216 +) +(580,39:6630773,31812319:11829248,513147,102891 +h580,38:6630773,31812319:0,0,0 +g580,38:7816319,31812319 +g580,38:8979582,31812319 +k580,39:14118261,31812319:4341761 +k580,39:18460021,31812319:4341760 +) +(580,40:6630773,32653807:11829248,513147,102891 +h580,39:6630773,32653807:0,0,0 +g580,39:7816319,32653807 +g580,39:9001865,32653807 +g580,39:9792229,32653807 +g580,39:11745856,32653807 +k580,40:15501398,32653807:2958624 +k580,40:18460021,32653807:2958623 +) +(580,41:6630773,33495295:11829248,513147,102891 +h580,40:6630773,33495295:0,0,0 +g580,40:8584400,33495295 +k580,41:13920670,33495295:4539352 +k580,41:18460021,33495295:4539351 +) +(580,42:6630773,34336783:11829248,513147,102891 +h580,41:6630773,34336783:0,0,0 +g580,41:10560311,34336783 +k580,42:14908625,34336783:3551396 +k580,42:18460021,34336783:3551396 +) +(580,43:6630773,35178271:11829248,513147,102891 +h580,42:6630773,35178271:0,0,0 +g580,42:10165129,35178271 +g580,42:11334946,35178271 +k580,43:15295943,35178271:3164079 +k580,43:18460021,35178271:3164078 +) +(580,44:6630773,36019759:11829248,505283,102891 +h580,43:6630773,36019759:0,0,0 +g580,43:12141039,36019759 +k580,44:15698989,36019759:2761032 +k580,44:18460021,36019759:2761032 +) +(580,48:6630773,37490017:11829248,505283,126483 +h580,47:6630773,37490017:0,0,0 +g580,47:10165129,37490017 +g580,47:11334946,37490017 +k580,48:15295943,37490017:3164079 +k580,48:18460021,37490017:3164078 +) +(580,49:6630773,38331505:11829248,505283,134348 +h580,48:6630773,38331505:0,0,0 +g580,48:9769947,38331505 +g580,48:10939764,38331505 +k580,49:15098352,38331505:3361670 +k580,49:18460021,38331505:3361669 +) +] +k580,101:19606901,38331505:1146880 +r1,2118:19606901,38331505:0,25386812,134348 +k580,101:20753781,38331505:1146880 +[580,101:20753781,38331505:11829248,25252464,102891 +(580,53:20753781,13734401:11829248,505283,102891 +h580,52:20753781,13734401:0,0,0 +g580,52:23102590,13734401 +k580,53:28241269,13734401:4341761 +k580,53:32583029,13734401:4341760 +) +(580,54:20753781,14575889:11829248,505283,102891 +h580,53:20753781,14575889:0,0,0 +g580,53:23497773,14575889 +g580,53:24667590,14575889 +k580,54:29023769,14575889:3559261 +k580,54:32583029,14575889:3559260 +) +(580,55:20753781,15417377:11829248,505283,134348 +h580,54:20753781,15417377:0,0,0 +g580,54:23497773,15417377 +g580,54:24667590,15417377 +k580,55:29023769,15417377:3559261 +k580,55:32583029,15417377:3559260 +) +(580,56:20753781,16258865:11829248,505283,102891 +h580,55:20753781,16258865:0,0,0 +g580,55:23102590,16258865 +k580,56:28241269,16258865:4341761 +k580,56:32583029,16258865:4341760 +) +(580,60:20753781,17755713:11829248,505283,102891 +h580,59:20753781,17755713:0,0,0 +g580,59:23497773,17755713 +g580,59:24667590,17755713 +k580,60:29023769,17755713:3559261 +k580,60:32583029,17755713:3559260 +) +(580,61:20753781,18597201:11829248,505283,102891 +h580,60:20753781,18597201:0,0,0 +g580,60:23892955,18597201 +k580,61:28636451,18597201:3946578 +k580,61:32583029,18597201:3946578 +) +(580,65:20753781,20094049:11829248,505283,102891 +h580,64:20753781,20094049:0,0,0 +g580,64:24683319,20094049 +k580,65:29031633,20094049:3551396 +k580,65:32583029,20094049:3551396 +) +(580,69:20753781,21590897:11829248,505283,126483 +h580,68:20753781,21590897:0,0,0 +g580,68:23892955,21590897 +g580,68:24664313,21590897 +k580,69:29022130,21590897:3560899 +k580,69:32583029,21590897:3560899 +) +(580,70:20753781,22432385:11829248,505283,126483 +h580,69:20753781,22432385:0,0,0 +g580,69:23497773,22432385 +k580,70:28438860,22432385:4144169 +k580,70:32583029,22432385:4144169 +) +(580,74:20753781,23929233:11829248,485622,126483 +h580,73:20753781,23929233:0,0,0 +g580,73:23497773,23929233 +g580,73:24667590,23929233 +g580,73:25837407,23929233 +k580,74:29608677,23929233:2974352 +k580,74:32583029,23929233:2974352 +) +(580,75:20753781,24770721:11829248,505283,102891 +h580,74:20753781,24770721:0,0,0 +g580,74:23102590,24770721 +k580,75:28241269,24770721:4341761 +k580,75:32583029,24770721:4341760 +) +(580,76:20753781,25612209:11829248,505283,102891 +h580,75:20753781,25612209:0,0,0 +g580,75:24288137,25612209 +k580,76:28834042,25612209:3748987 +k580,76:32583029,25612209:3748987 +) +(580,80:20753781,27109057:11829248,505283,126483 +h580,79:20753781,27109057:0,0,0 +g580,79:24288137,27109057 +g580,79:25457954,27109057 +k580,80:29418951,27109057:3164079 +k580,80:32583029,27109057:3164078 +) +(580,81:20753781,27950545:11829248,505283,102891 +h580,80:20753781,27950545:0,0,0 +g580,80:22707408,27950545 +k580,81:28043678,27950545:4539352 +k580,81:32583029,27950545:4539351 +) +(580,82:20753781,28792033:11829248,505283,102891 +h580,81:20753781,28792033:0,0,0 +g580,81:24288137,28792033 +k580,82:28634813,28792033:3948217 +k580,82:32583029,28792033:3948216 +) +(580,83:20753781,29633521:11829248,505283,102891 +h580,82:20753781,29633521:0,0,0 +g580,82:24288137,29633521 +k580,83:28834042,29633521:3748987 +k580,83:32583029,29633521:3748987 +) +(580,84:20753781,30475009:11829248,505283,102891 +h580,83:20753781,30475009:0,0,0 +g580,83:23102590,30475009 +k580,84:28241269,30475009:4341761 +k580,84:32583029,30475009:4341760 +) +(580,85:20753781,31316497:11829248,505283,102891 +h580,84:20753781,31316497:0,0,0 +g580,84:24288137,31316497 +g580,84:25457954,31316497 +g580,84:26627771,31316497 +k580,85:30003859,31316497:2579170 +k580,85:32583029,31316497:2579170 +) +(580,86:20753781,32157985:11829248,505283,126483 +h580,85:20753781,32157985:0,0,0 +g580,85:26264047,32157985 +g580,85:27433864,32157985 +k580,86:30406906,32157985:2176124 +k580,86:32583029,32157985:2176123 +) +(580,90:20753781,33654833:11829248,505283,102891 +h580,89:20753781,33654833:0,0,0 +g580,89:22312226,33654833 +k580,90:27846087,33654833:4736943 +k580,90:32583029,33654833:4736942 +) +(580,94:20753781,35151681:11829248,505283,126483 +h580,93:20753781,35151681:0,0,0 +g580,93:24288137,35151681 +k580,94:29396341,35151681:3186688 +k580,94:32583029,35151681:3186688 +) +(580,95:20753781,35993169:11829248,505283,102891 +h580,94:20753781,35993169:0,0,0 +g580,94:23102590,35993169 +k580,95:28241269,35993169:4341761 +k580,95:32583029,35993169:4341760 +) +(580,99:20753781,37490017:11829248,505283,102891 +h580,98:20753781,37490017:0,0,0 +g580,98:23102590,37490017 +g580,98:24272407,37490017 +k580,99:29388476,37490017:3194553 +k580,99:32583029,37490017:3194553 +) +(580,100:20753781,38331505:11829248,505283,102891 +h580,99:20753781,38331505:0,0,0 +g580,99:24288137,38331505 +k580,100:28834042,38331505:3748987 +k580,100:32583029,38331505:3748987 +) +] +(580,101:32583029,38331505:0,355205,126483 +h580,101:32583029,38331505:420741,355205,126483 +k580,101:32583029,38331505:-420741 +) +) +] +(1,2118:32583029,45706769:0,0,0 +g1,2118:32583029,45706769 ) -] -(1,19113:32583029,45706769:0,0,0 -g1,19113:32583029,45706769 ) +] +(1,2118:6630773,47279633:25952256,481690,11795 +(1,2118:6630773,47279633:25952256,481690,11795 +k1,2118:19208442,47279633:12577669 +k1,2118:32583029,47279633:12577669 ) -] -(1,19113:6630773,47279633:25952256,0,0 -h1,19113:6630773,47279633:25952256,0,0 ) ] -(1,19113:4262630,4025873:0,0,0 -[1,19113:-473656,4025873:0,0,0 -(1,19113:-473656,-710413:0,0,0 -(1,19113:-473656,-710413:0,0,0 -g1,19113:-473656,-710413 +(1,2118:4262630,4025873:0,0,0 +[1,2118:-473656,4025873:0,0,0 +(1,2118:-473656,-710413:0,0,0 +(1,2118:-473656,-710413:0,0,0 +g1,2118:-473656,-710413 ) -g1,19113:-473656,-710413 +g1,2118:-473656,-710413 ) ] ) -h1,19113:4262630,4025873:0,0,0 +h1,2118:4262630,4025873:0,0,0 ] -!18482 -}399 -Input:2992:C:\Users\Aphalo\Documents\Own_manuscripts\Books\learnr-book-crc-2ed\using-r-main-crc.aux -Input:2993:C:\Users\Aphalo\Documents\Own_manuscripts\Books\learnr-book-crc-2ed\frontmatter\preface.aux -!215 +!13692 +}50 +Input:581:C:\Users\Aphalo\Documents\Own_manuscripts\Books\learnr-book-crc-2ed\using-r-main-crc.aux +!110 Postamble: -Count:350764 -!29 +Count:40471 +!28 Post scriptum: diff --git a/using-r-main-crc.tex b/using-r-main-crc.tex index 56b7f141..0650293e 100644 --- a/using-r-main-crc.tex +++ b/using-r-main-crc.tex @@ -1,4 +1,5 @@ \documentclass[krantz2]{krantz}\usepackage{knitr} + \usepackage{color} \usepackage{hologo} @@ -49,7 +50,10 @@ = {rectangle, draw, fill=gray!10, node distance=4em, text width=6em, text centered, rounded corners, minimum height=4em, thick}, c/.style - = {circle, draw, dashed, fill=orange!10, inner sep = 0pt, node distance=5em, text width=6em, + = {circle, draw, dashed, fill=orange!10, inner sep = 0pt, node distance=4em, text width=6em, + text centered, thick}, + cc/.style + = {circle, draw, dashed, fill=orange!10, inner sep = 0pt, node distance=4em, text width=3em, text centered, thick}, l/.style = {draw, -latex, ultra thick}, @@ -120,18976 +124,1982 @@ \setcounter{page}{5} %previous pages will be reserved for frontmatter to be added in later. \tableofcontents +\listoffigures + + + %\include{frontmatter/foreword} -\include{frontmatter/preface} -%\listoffigures +%\include{frontmatter/preface} + + \mainmatter -% !Rnw root = using-r.main.Rnw -\chapter{R: The language and the program}\label{chap:R:introduction} +% !Rnw root = appendix.main.Rnw + + + +\chapter{The R language: ``Paragraphs'' and ``essays''}\label{chap:R:scripts} +\index{scripts} \begin{VF} -In a world of \ldots\ relentless pressure for more of everything, one can lose sight of the basic principles---simplicity, clarity, generality---that form the bedrock of good software. +An \Rlang script is simply a text file containing (almost) the same commands that you would enter on the command line of \Rlang. -\VA{Brian W. Kernighan and Rob Pike}{\emph{The Practice of Programming}, 1999}\nocite{Kernighan1999} +\VA{Jim Lemon}{\emph{Kickstarting R}}\nocite{LemonND} \end{VF} +%\dictum[\href{https://cran.r-project.org/doc/contrib/Lemon-kickstart/}{Kickstarting R}]{An R script is simply a text file containing (almost) the same commands that you would enter on the command line of R.}\vskip2ex \section{Aims of this chapter} -In this chapter you will learn some facts about the history and design aims behind the \Rlang language, its implementation in the \Rpgrm program, and how it is used in actual practice when sitting at a computer. You will learn the difference between typing commands interactively, reading each partial response from \Rlang on the screen as you type versus using \Rlang scripts to execute a ``job'' which saves results for later inspection by the user. +For those who have mainly used graphical user interfaces, understanding why and when scripts can help in communicating a certain data analysis protocol can be revelatory. As soon as a data analysis stops being trivial, describing the steps followed through a system of menus and dialogue boxes becomes extremely tedious. -I will describe the advantages and disadvantages of textual command languages such as \Rlang compared to menu-driven user interfaces as frequently used in other statistics software and occasionally also with \Rlang. I will discuss the role of textual languages in the very important question of reproducibility of data analyses. +Moreover, graphical user interfaces tend to be difficult to extend or improve in a way that keeps step-by-step instructions valid across program versions and operating systems. -Finally you will learn about the different types and sources of help available to \Rlang users, and how to best make use of them. +Many times, exactly the same sequence of commands needs to be applied to different data sets, and scripts make both implementation and validation of such a requirement easy. -\section{Computer programming} +In this chapter, I will walk you through the use of \Rpgrm scripts, starting from an extremely simple script. -We can distinguish two phases in the development of a computer program or script. The design phase is the initial step: deciding what the computer should do and what algorithms will be used. Coding is the second phase, and consists in translating a design into a given computer language, such as \Rlang. The distinction is not absolutely clear cut, as usually when programming one re-uses available code. In a language like \Cpplang we use libraries of routines, classes and templates. In \Rlang we use \emph{packages} that provide extensions to the language. So, in most cases, the design stage for a data-analysis script in \Rlang centres, once the statistical procedure to use has been decided, in selecting what package, if any, to use, and the identification of the steps needed to import the data, possibly validate them, pass them to the functions in the packages used, and reporting the results either graphically or as text. In fact, most of the ad-hoc data-analysis code users write in their scripts is to transfer data among ready made ``black boxes'' and display the results. In contrast, writing new packages, requires much more effort towards design, of both computations and the interface to users' code. In this book, we focus on the design of scripts and their coding. +\section{Writing scripts} -Abstraction plays a central role in designing solutions suitable for families of similar problems. According to \citeauthor{Wirth1974} (\citeyear{Wirth1974}) ``Our most important mental tool for coping with complexity is abstraction. Therefore, a complex problem should not be regarded -immediately in terms of computer instructions \ldots\ but rather in terms and entities natural to the problem itself, abstracted in some suitable sense.'' \citeauthor{Zimmer1985} (\citeyear{Zimmer1985}) adds ``Abstraction is the way we carry out a divide-and-conquer approach to the solution of complex problems.'' A simple example of an abstraction centred on objects is the concept of \emph{fruit} that describes properties shared among apples, oranges, pears, and many other fruits. An example of an abstraction centred on an action is the verb \emph{show}, which depending on the context may signify different actions that share similar aims or purposes. +In \Rlang language, the closest match to a natural language essay is a script. A script is built from multiple interconnected code statements needed to complete a given task. Simple statements can be combined into compound statements, which are the equivalent of natural language paragraphs. Scripts can vary from simple scripts containing only a few code statements, to complex scripts containing hundreds of code statements. In the rest of the present section I discuss how to write readable and reliable scripts and how to use them. -New concepts and styles of programming have appeared since \citeauthor{Wirth1974} and \citeauthor{Zimmer1985} wrote the texts quoted above and new terms are in use, but the role of abstraction remains as important. An important distinction is in the focus of the abstractions: actions vs.\ objects. These, oversimplifying things, give rise to procedural and object-oriented approaches (or paradigms) to computer programming, respectively. Which approach yields the most useful abstraction of a problems depends on the nature of the problem \autocite[see][]{Coplien1999}. As we will see through the book, the \Rlang language is eclectic in this respect, and supports multiple approaches and their combined use. \Rlang itself relies quite heavily on a rather simple approach to object-oriented programming. When writing scripts, it is unusual to define new classes of objects, but in almost every script we make use of classes of objects and their corresponding methods, both defined in \Rlang and in extension packages. - -\section{R} +\subsection{What is a script?}\label{sec:script:what:is} +\index{scripts!definition} +A \textit{script} is a text file that contains (almost) the same commands that you would type at the console prompt. A true script is not, for example, an MS-Word file where you have pasted or typed some \Rlang commands. -\subsection{What is R?} +When typing commands/statements at the \Rlang console, we "feed" one line of text at a time. When we end the line by typing the enter key, the line of text is interpreted and evaluated. We then type the next line of text, which gets in turn interpreted and evaluated, and so on. In a script we write nearly the same text in an editor and save multiple lines containing commands into a text file. Interpretation takes place only later, when we \emph{source} the file as a whole into \Rlang. -Most people think\index{R as a language@{\Rlang as a language}}\index{R as a program@{\Rlang as a program}} -of \Rpgrm as a computer program. \Rpgrm is indeed a computer program---a piece of software--- but it is also a computer language, implemented in the \Rpgrm program. Does this make a difference? Yes. Until recently we had only one mainstream implementation of \Rlang, the program \Rpgrm. Recently another implementation has gained some popularity, \pgrmname{Microsoft R Open} (MRO), which is directly based on the \Rpgrm program from \textit{The R Project for Statistical Computing}. MRO is described as an enhanced distribution of \Rpgrm. These two very similar implementations are not the only ones available, but others are not in widespread use. In other words, the \Rlang language can be used not only in the \Rpgrm program, and it is feasible that other implementations will be developed in the future. +A script file has the following characteristics. +\begin{itemize} + \item The script is a text file. + \item The file contains valid \Rlang statements (including comments) and nothing else. + \item Comments start at a \code{\#} and end at the end of the line. + \item The \Rlang statements are in the file in the order that they must be executed. + \item \Rlang scripts have file names ending in \texttt{.r} or \texttt{.R}. +\end{itemize} -The name ``base \Rlang\index{base R@{base \Rlang}}'' is used to distinguish \Rlang itself, as in the \Rpgrm executable included in the \Rpgrm distribution, from \Rlang in a broader sense, which includes packages. A few packages are included in the \Rpgrm distribution, while most \Rlang packages are independently developed extensions that can be loaded from separately distributed files. +The statements in the text file, are read, interpreted and evaluated sequentially, from the start to the end of the file, as represented in the diagram. We use \textcolor{blue}{$\cdots$} to represent additional statements in the script. -Being that \Rpgrm is essentially a command-line application, it can be used on what nowadays are frugal computing resources, equivalent to a personal computer of three decades ago. \Rpgrm can run even on the Raspberry Pi\index{Raspberry Pi}, a micro-controller board with the processing power of a modest smart phone. At the other end of the spectrum, on really powerful servers, \Rpgrm can be used for the analysis of big data sets with millions of observations. How powerful a computer you will need will depend on the size of the data sets you want to analyze, on how patient you are, on your ability select efficient algorithms and to write ``good'' code. +\begin{center} +\begin{small} +\begin{tikzpicture}[node distance=1.5cm] +\node (start) [startstop, color = blue, fill = blue!15] {\textsl{Top = start}}; +\node (stat2) [process, color = blue, fill = blue!15, below of=start] {\code{}}; +\node (stat3) [process, color = blue, fill = blue!15, below of=stat2] {\code{}}; +\node (continue) [startstop, color = blue, fill = blue!15, below of=stat3] {$\cdots$}; +\node (stop) [startstop, color = blue, fill = blue!15, below of=continue] {\textsl{Bottom = end}}; +\draw [arrow, color = blue] (start) -- (stat2); +\draw [arrow, color = blue] (stat2) -- (stat3); +\draw [arrow, color = blue] (stat3) -- (continue); +\draw [arrow, color = blue] (continue) -- (stop); +\end{tikzpicture} +\end{small} +\end{center} -One could think of \Rlang as a dialect of an earlier language, called \Slang. \Slang evolved into \Splang \autocite{Becker1988}. \Slang and \Splang are commercial programs, and variations in the language appeared only between versions. \Rlang started as a poor man's home-brewed implementation of \Slang, for use in teaching. Initially \Rpgrm, the program, implemented a subset of the \Slang language. The \Rpgrm program evolved until only relatively few differences between \Slang and \Rlang remained, and these differences are intentional---thought of as significant improvements. As \Rlang overtook \Splang in popularity, some of the new features in \Rlang made their way back into \Splang. \Rpgrm is free and open-source and the name \pgrmname{Gnu S} is sometimes used to refer to \Rpgrm. +As we will see later in the chapter, code statements can be combined into larger statements and evaluated conditionally and/or repeatedly, which allows us to control the realised sequence of evaluated statements. Scripts need to respect the \Rlang syntax. In addition to being valid it is important that scripts are also understandable to humans, consequently a clear writing style and consistent adherence to it are important. -What makes \Rlang different from \pgrmname{SPSS}, \pgrmname{SAS}, etc., is that \Slang was designed from the start as a computer programming language. This may look unimportant for someone not actually needing or willing to write software for data analysis. However, in reality it makes a huge difference because \Rlang is easily extensible. By this we mean that new functionality can be easily added, and shared, and this new functionality is to the user indistinguishable from that built into \Rlang. In other words, instead of having to switch between different pieces of software to do different types of analyses or plots, one can usually find an \Rlang package that will provide the tools to do the job within \Rlang. For those routinely doing similar analyses the ability to write a short program, sometimes just a handful of lines of code, allows automation of routine analyses. For those willing to spend time programming, they have the door open to building the tools they need when these do not already exist. +It is good practice to write scripts so that they are self-contained. To make a script self-contained, one must include calls to \texttt{library()} to load the packages used, load or import data from files, perform the data analysis and display and/or save the results of the analysis. Such scripts can be used to apply the same analysis algorithm to other data and/or to reproduce the same analysis at a later time. Such scripts document all steps used for the analysis. -However, the most important advantage of using a language like \Rlang is that it makes it easy to do data analyses in a way that ensures that they can be exactly repeated. In other words, the biggest advantage of using \Rlang, as a language, is not in communicating with the computer, but in communicating to other people what has been done, in a way that is unambiguous. Of course, other people may want to run the same commands in another computer, but still it means that a translation from a set of instructions to the computer into text readable to humans---say the materials and methods section of a paper---and back is avoided together with the ambiguities usually creeping in. -\subsection{R as a language} -\index{R as a language@{\Rlang as a language}} -\Rlang is a computer language designed for data analysis and data visualization, however, in contrast to some other scripting languages, it is, from the point of view of computer programming, a complete language---it is not missing any important feature. In other words, no fundamental operations or data types are lacking \autocite{Chambers2016}. I attribute much of its success to the fact that its design achieves a very good balance between simplicity, clarity and generality. \Rlang excels at generality thanks to its extensibility at the cost of only a moderate loss of simplicity, while clarity is ensured by enforced documentation of extensions and support for both object-oriented and functional approaches to programming. The same three principles can be also easily respected by user code written in \Rlang. -As mentioned above, \Rlang started as a free and open-source implementation of the \Slang language \autocite{Becker1984,Becker1988}. We will describe the features of the \Rlang language in later chapters. Here I mention, for those with programming experience, that it does have some features that make it different from other frequently used programming languages. For example, \Rlang does not have the strict type checks of \langname{Pascal} or \Cpplang. It has operators that can take vectors and matrices as operands allowing more concise program statements for such operations than other languages. Writing programs, specially reliable and fast code, requires familiarity with some of these idiosyncracies of the \Rlang language. For those using \Rpgrm interactively, or writing short scripts, these idiosyncratic features make life a lot easier by saving typing. +\subsection{How do we use a script?}\label{sec:script:using} +\index{scripts!sourcing} -\begin{explainbox} -Some languages have been standardized, and their grammar has been formally defined. \Rlang, in contrast is not standardized, and there is no formal grammar definition. So, the \Rlang language is defined by the behavior of the \Rpgrm program. -\end{explainbox} +A script can be ``sourced'' using function \Rfunction{source()}. If we have a text file called \texttt{my.first.script.r} containing the following text: +\begin{shaded} +\footnotesize +\begin{verbatim} +# this is my first R script +print(3 + 4) +\end{verbatim} +\end{shaded} -\subsection{R as a computer program} -\index{R as a program@{\Rpgrm as a program}} -\index{Windows@{\textsf{Windows}}|see{MS-Windows@{\textsf{MS-Windows}}}} -The \Rpgrm program itself is open-source, and the source code is available for anybody to inspect, modify and use. A small fraction of users will directly contribute improvements to the \Rpgrm program itself, but it is possible, and those contributions are important in making \Rpgrm reliable. The executable, the \Rpgrm program we actually use, can be built for different operating systems and computer hardware. The members of the \Rpgrm developing team make an important effort to keep the results obtained from calculations done on all the different builds and computer architectures as consistent as possible. The aim is to ensure that computations return consistent results not only across updates to \Rpgrm but also across different operating systems like \osname{Linux}, \osname{Unix} (including \osname{OS X}), and \osname{MS-Windows}, and computer hardware. +and then source this file: + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{source}\hlstd{(}\hlstr{"my.first.script.r"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] 7 +\end{verbatim} +\end{kframe} +\end{knitrout} -\begin{figure} - \centering - \includegraphics[width=0.85\textwidth]{figures/R-console-r} - \caption[The R console]{The \Rpgrm console where the user can type textual commands one by one. Here the user has typed \code{print("Hello")} and \textit{entered} it by ending the line of text by pressing the ``enter'' key. The result of running the command is displayed below the command. The character at the head of the input line, a ``$>$'' in this case, is called the command prompt, signaling where a command can be typed in. Commands entered by the user are displayed in red, while results returned by \Rlang are displayed in blue.}\label{fig:intro:console} -\end{figure} +The results of executing the statements contained in the file will appear in the console. The commands themselves are not shown (by default the sourced file is not \emph{echoed} to the console) and the results will not be printed unless you include explicit \Rfunction{print()} commands in the script. This applies in many cases also to plots---e.g., a figure created with \Rfunction{ggplot()} needs to be printed if we want it to be included in the output when the script is run. Adding a redundant \Rfunction{print()} is harmless. + +From within \RStudio, if you have an \Rpgrm script open in the editor, there will be a ``source'' icon visible with an attached drop-down menu from which you can choose ``Source'' as described above, or ``Source with echo,'' or ``Source as local job'' for the script in the currently active editor tab. -The \Rpgrm program does not have a graphical user interface (GUI), or menus from which to start different types of analyses. Instead, the user types the commands at the \Rpgrm console (Figure \ref{fig:intro:console}). The same textual commands can also be saved into a text file, line by line, and such a file, called a ``script'' can substitute repeated typing of the same sequence of commands. When we work at the console typing in commands one by one, we say that we use \Rlang interactively. When we run script, we may say that we run a ``batch job.'' +When a script is \emph{sourced}, the output can be saved to a text file instead of being shown in the console. It is also easy to call \Rpgrm with the \Rlang script file as an argument directly at the operating system shell or command-interpreter prompt---and obviously also from shell scripts. The next two chunks show commands entered at the OS shell command prompt rather than at the \Rlang command prompt. +\begin{shaded} +\footnotesize +\begin{verbatim} +> RScript my.first.script.r +\end{verbatim} +\end{shaded} -The two approaches described above are part of the \Rpgrm program by itself. However, it is common to use a second program as a front-end or middleman between the user and the \Rpgrm program. Such a program allows more flexibility and has multiple features that make entering commands or writing scripts easier. Computations are still done by exactly the same \Rpgrm program. The simplest option is to use a text editor like \pgrmname{Emacs} to edit the scripts and then run the scripts in \Rpgrm from within the editor. With some editors like \pgrmname{Emacs}, rather good integration is possible. However, nowadays there are also Integrated Development Environments (IDEs) available for \Rpgrm. An IDE both gives access to the \Rpgrm console in one window and provides a text editor for writing scripts in another window. Of the available IDEs for \Rpgrm, \RStudio is currently the most popular by a wide margin. +You can open an operating system's \emph{shell} from the Tools menu in \RStudio, to run this command. The output will be printed to the shell console. If you would like to save the output to a file, use redirection using the operating system's syntax. +\begin{shaded} +\footnotesize +\begin{verbatim} +> RScript my.first.script.r > my.output.txt +\end{verbatim} +\end{shaded} -\subsubsection{Using R interactively} +Sourcing is very useful when the script is ready, however, while developing a script, or sometimes when testing things, one usually wants to run (or \emph{execute}) one or a few statements at a time. This can be done using the ``run'' button\footnote{If you use a different IDE or editor with an \Rlang mode, the details will vary, but a run command will be usually available.} after either positioning the cursor in the line to be executed, or selecting the text that one would like to run (the selected text can be part of a line, a whole line, or a group of lines, as long as it is syntactically valid). The key-shortcut Ctrl-Enter is equivalent to pressing the ``run'' button in \RStudio. -A physical terminal (keyboard plus text-only screen) decades ago was how users communicated with computers, and was frequently called a \emph{console}\index{console}. Nowadays, a text-only interface to a computer, in most cases a window or a pane within a graphical user interface, is still called a console. In our case, the \Rpgrm console (Figure \ref{fig:intro:console}). This is the native user interface of \Rpgrm. +\subsection{How to write a script}\label{sec:script:writing} +\index{scripts!writing} -Typing commands at the \Rpgrm console is useful when one is playing around, rather aimlessly exploring things, or trying to understand how an \Rpgrm function or operator we are not familiar with works. Once we want to keep track of what we are doing, there are better ways of using \Rpgrm, which allow us to keep a record of how an analysis has been carried out. The different ways of using \Rpgrm are not exclusive of each other, so most users will use the \Rpgrm console to test individual commands and plot data during the first stages of exploration. As soon as we decide how we want to plot or analyze the data, it is best to start using scripts. This is not enforced in any way by \Rpgrm, but scripts are what really brings to light the most important advantages of using a programming language for data analysis. In Figure \ref{fig:intro:console} we can see how the \Rpgrm console looks. The text in red has been typed in by the user, except for the prompt \code{\textcolor{red}{$>$}}, and the text in blue is what \Rpgrm has displayed in response. It is essentially a dialogue between user and \Rpgrm. The console can \emph{look} different when displayed within an IDE like \RStudio, but the only difference is in the appearance of the text rather than in the text itself (cf.\ Figures \ref{fig:intro:console} and \ref{fig:intro:console:rstudio}). +As with any type of writing, different approaches may be preferred by different \Rlang users. In general, the approach used, or mix of approaches, will also depend on how confident you are that the statements will work as expected---you already know the best approach vs.\ you are exploring different alternatives. +\begin{description} +\item[If one is very familiar with similar problems] One would just create a new text file and write the whole thing in the editor, and then test it. This is rather unusual. +\item[If one is moderately familiar with the problem] One would write the script as above, but testing it, step by step, as one is writing it. This is usually what I do. +\item[If one is mostly playing around] Then if one is using \RStudio, one can type statements at the console prompt. As you should know by now, everything you run at the console is saved to the ``History.'' In \RStudio, the History is displayed in its own pane, and in this pane one can select any previous statement(s) and by clicking on a single icon, copy and paste them to either the \Rlang console prompt, or the cursor position in the editor pane. In this way one can build a script by copying and pasting from the history to your script file, the bits that have worked as you wanted. +\end{description} -\begin{figure} - \centering - \includegraphics[width=\linewidth]{figures/r-console-rstudio} - \caption[The R console]{The \Rpgrm console embedded in \RStudio. The same commands have been typed in as in Figure \ref{fig:intro:console}. Commands entered by the user are displayed in purple, while results returned by \Rpgrm are displayed in black.}\label{fig:intro:console:rstudio} -\end{figure} +\begin{playground} +By now you should be familiar enough with \Rlang to be able to write your own script. +\begin{enumerate} + \item Create a new \Rpgrm script (in \RStudio, from the File menu, ``+'' icon, or by typing ``Ctrl + Shift + N''). + \item Save the file as \texttt{my.second.script.r}. + \item Use the editor pane in \RStudio to type some \Rpgrm commands and comments. + \item \emph{Run} individual commands. + \item \emph{Source} the whole file. +\end{enumerate} +\end{playground} -The two previous figures showed the result of entering a single command. Figure \ref{fig:intro:console:capture} shows how the console looks after the user has entered several commands, each as a separate line of text. +\subsection{The need to be understandable to people}\label{sec:script:readability} +\index{scripts!readability} -\begin{figure} - \centering - \includegraphics[width=\linewidth]{figures/r-console-capture} - \caption[The R console]{The \Rpgrm console after several commands have been entered. Commands entered by the user are displayed in red, while results returned by \Rpgrm are displayed in blue.}\label{fig:intro:console:capture} -\end{figure} +When you write a script, it is either because you want to document what you have done or you want re-use the script at a later time. In either case, the script itself although still meaningful for the computer, could become very obscure to you, and even more to someone seeing it for the first time. This must be avoided by spending time and effort on the writing style. -The examples in this book require only the console window for user input. Menu-driven programs are not necessarily bad, they are just unsuitable when there is a need to set very many options and choose from many different actions. They are also difficult to maintain when extensibility is desired, and when independently developed modules of very different characteristics need to be integrated. Textual languages also have the advantage, to be addressed in later chapters, that command sequences can be stored in human- and computer-readable text files. Such files constitute a record of all the steps used, and in most cases, makes it trivial to reproduce the same steps at a later time. Scripts are a very simple and handy way of communicating to other users how to do a given data analysis. +How does one achieve an understandable script or program? +\begin{itemize} + \item Avoid the unusual. People using a certain programming language tend to use some implicit or explicit rules of style---style includes \textit{indentation} of statements, \textit{capitalization} of variable and function names. As a minimum try to be consistent with yourself. + \item Use meaningful names for variables, and any other object. What is meaningful depends on the context. Depending on common use, a single letter may be more meaningful than a long word. However self-explanatory names are usually better: e.g., using \code{n.rows} and \code{n.cols} is much clearer than using \code{n1} and \code{n2} when dealing with a matrix of data. Probably \code{number.of.rows} and \code{number.of.columns} would make the script verbose, and take longer to type without gaining anything in return. + \item How to make the words visible in names: traditionally in \Rlang one would use dots to separate the words and use only lower case. Some years ago, it became possible to use underscores. The use of underscores is quite common nowadays because in some contexts it is ``safer'', as in some situations a dot may have a special meaning. What we call ``camel case'' is only infrequently used in \Rlang programming but is common in other languages like Pascal. An example of camel case is \code{NumCols}. +\end{itemize} -\begin{explainbox} -In the console one types commands at the \code{>} prompt. When one ends a line by pressing the return or enter key, if the line can be interpreted as an \Rlang command, the result will be printed at the console, followed by a new \code{>} prompt. -If the command is incomplete, a \code{+} continuation prompt will be shown, and you will be able to type in the rest of the command. For example if the whole calculation that you would like to do is $1 + 2 + 3$, if you enter in the console \code{1 + 2 +} in one line, you will get a continuation prompt where you will be able to type \code{3}. However, if you type \code{1 + 2}, the result will be calculated, and printed. -\end{explainbox} +\begin{playground} +Here is an example of bad style in a script. Read \href{https://google.github.io/styleguide/Rguide.xml}{Google's R Style Guide}%\footnote{This is just an example, similar, but not exactly the same style as the style I use myself.} +, and edit the code in the chunk below so that it becomes easier to read. -\subsubsection{Using R in a ``batch job''} +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{a} \hlkwb{<-} \hlnum{2} \hlcom{# height} +\hlstd{b} \hlkwb{<-} \hlnum{4} \hlcom{# length} +\hlstd{C} \hlkwb{<-} + \hlstd{a} \hlopt{*} +\hlstd{b} +\hlstd{C} \hlkwb{->} \hlstd{variable} + \hlkwd{print}\hlstd{(} +\hlstr{"area: "}\hlstd{, variable} +\hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} +\end{playground} -To run a script\index{script}\index{batch job} we need first to prepare a script in a text editor. Figure \ref{fig:intro:script} shows the console immediately after running the script file shown in the text editor. As before, red text, the command \code{source("my-script.R")}, was typed by the user, and the blue text in the console is what was displayed by \Rpgrm as a result of this action. The title bar of the console, shows ``R-console,'' while the title bar of the editor shows the \emph{path} to the script file that is open and ready to be edited followed by ``R-editor.'' +The points discussed above already help a lot. However, one can go further in achieving the goal of human readability by interspersing explanations and code ``chunks'' and using all the facilities of typesetting, even of formatted maths formulas and equations, within the listing of the script. Furthermore, by including the results of the calculations and the code itself in a typeset report built automatically, we can ensure that the results are indeed the result of running the code shown. This greatly contributes to data analysis reproducibility, which is becoming a widespread requirement for any data analysis both in academia and in industry. It is possible not only to typeset whole books like this one, but also whole data-based web sites with these tools. -\begin{figure} - \centering - \includegraphics[width=\linewidth]{figures/R-console-script} - \caption[Script sourced at the R console]{Screen capture of the \Rpgrm console and editor just after running a script. The upper pane shows the \Rpgrm console, and the lower pane, the script file in an editor. }\label{fig:intro:script} -\end{figure} +In the realm of programming, this approach is called literate programming\index{literate programming} and was first proposed by Donald Knuth \autocite{Knuth1984a} through his \pgrmname{WEB} system. In the case of \Rpgrm programming, the first support of literate programming was through \pkgname{Sweave}, which has been mostly superseded by \pkgname{knitr} \autocite{Xie2013}. This package supports the use of \langname{Markdown} or \LaTeX\index{Latex@\LaTeX}\ \autocite{Lamport1994} as the markup language for the textual contents and also formats and adds syntax highlighting to code chunks. \langname{Rmarkdown} is an extension to \langname{Markdown} that makes it easier to include \Rlang code in documents (see \url{http://rmarkdown.rstudio.com/}). It is the basis of \Rlang packages that support typesetting large and complex documents (\pkgname{bookdown}), web sites (\pkgname{blogdown}), package vignettes (\pkgname{pkgdown}) and slides for presentations \autocite{Xie2016,Xie2018}. The use of \pkgname{knitr} is very well integrated into the \RStudio IDE. -\begin{warningbox} -When working at the command prompt, most results are printed by default. However, within scripts one needs to use function \Rfunction{print()} explicitly when a result is to be displayed. -\end{warningbox} +This is not strictly an \Rlang programming subject, as it concerns programming in any language. On the other hand, this is an incredibly important skill to learn, but well described in other books and web sites cited in the previous paragraph. This whole book, including figures, has been generated using \pkgname{knitr} and the source code for the book is available through Bitbucket at \url{https://bitbucket.org/aphalo/learnr-book}. -A true ``batch job'' is not run at the \Rpgrm console but at the operating system command prompt, or shell. The shell is the console of the operating system---\osname{Linux}, \osname{Unix}, \osname{OS X}, or \osname{MS-Windows}. Figure \ref{fig:intro:shell} shows how running a script at the Windows command prompt looks. A script can be run at the operating system prompt to do time-consuming calculations with the output saved to a file. One may use this approach on a server, say, to leave a large data analysis job running overnight or even for several days. +\subsection{Debugging scripts}\label{sec:script:debug} +\index{scripts!debugging} -\begin{figure} - \centering - \includegraphics[width=\linewidth]{figures/windows-cmd-script} - \caption[Script at the Windows cmd promt]{Screen capture of the \osname{MS-Windows} command console just after running the same script. Here we use \code{Rscript} to run the script; the exact syntax will depend on the operating system in use. In this case, \Rpgrm prints the results at the operating system console or shell, rather than in its own \Rpgrm console.}\label{fig:intro:shell} -\end{figure} +The use of the word \emph{bug} to describe a problem in computer hardware and software started in 1946 when a real bug, more precisely a moth, got between the contacts of a relay in an electromechanical computer causing it to malfunction and Grace Hooper described the first computer \emph{bug}. The use of the term bug in engineering predates the use in computer science, and consequently, the first use of bug in computing caught on easily because it represented an earlier-used metaphor becoming real. -\subsubsection{Editors and IDEs} +A suitable quotation from a letter written by Thomas Alva Edison 1878 \autocite[as given by][]{Hughes2004}: +\begin{quotation} + It has been just so in all of my inventions. The first step is an intuition, and comes with a burst, then difficulties arise--this thing gives out and [it is] then that ``Bugs''--as such little faults and difficulties are called--show themselves and months of intense watching, study and labor are requisite before commercial success or failure is certainly reached. +\end{quotation} -Integrated Development Environments (IDEs)\index{integrated development environment}\index{IDE|see{integrated development environment}} are used when developing computer programs. IDEs provide a centralized user interface from within which the different tools used to create and test a computer program can be accessed and used in coordination. Most IDEs include a dedicated editor capable of syntax highlighting, and even report some mistakes, related to the programming language in use. One could describe such an editor as the equivalent of a word processor with spelling and grammar checking, that can alert about spelling and syntax errors for a computer language like \Rlang instead of for a natural language like English. In the case of \RStudio, the main, but not only language supported is \Rlang. The main window of IDEs usually displays more than one pane simultaneously. From within the \RStudio IDE, one has access to the \Rpgrm console, a text editor, a file-system browser, a pane for graphical output, and access to several additional tools such as for installing and updating extension packages. Although \RStudio supports very well the development of large scripts and packages, it is currently, in my opinion, also the best possible way of using \Rpgrm at the console as it has the \Rpgrm help system very well integrated both in the editor and \Rlang console. Figure \ref{fig:intro:rstudio} shows the main window displayed by \RStudio after running the same script as shown above at the \Rpgrm console (Figure \ref{fig:intro:script}) and at the operating system command prompt (Figure \ref{fig:intro:shell}). We can see by comparing these three figures how \RStudio is really a layer between the user and an unmodified \Rpgrm executable. The script was sourced by pressing the ``Source'' button at the top of the editor pane. \RStudio, in response to this, generated the code needed to source the file and ``entered'' it at the console, the same console, where we would type any \Rpgrm commands. +The quoted paragraph above makes clear that only very exceptionally does any new design fully succeed. The same applies to \Rlang scripts as well as any other non-trivial piece of computer code. From this it logically follows that testing and de-bugging are fundamental steps in the development of \Rlang scripts and packages. Debugging, as an activity, is outside the scope of this book. However, clear programming style and good documentation are indispensable for efficient testing and reuse. -\begin{figure} - \centering - \includegraphics[width=\linewidth]{figures/Rstudio-script} - \caption[Script in Rstudio]{The \RStudio interface just after running the same script. Here we used the ``Source'' button to run the script. In this case, \Rpgrm prints the results to the \Rpgrm console in the lower left pane.}\label{fig:intro:rstudio} -\end{figure} +Even for scripts used for analyzing a single data set, we need to be confident that the algorithms and their implementation are valid, and able to return correct results. This is true both for scientific reports, expert data-based reports and any data analysis related to assessment of compliance with legislation or regulations. Of course, even in cases when we are not required to demonstrate validity, say for decision making purely internal to a private organization, we will still want to avoid costly mistakes. -When a script is run, if an error is triggered, \RStudio automatically finds the location of the error. \RStudio supports the concept of projects allowing saving of settings per project. Some features are beyond what you need for everyday data analysis and aimed at package development, such as integration of debugging, traceback on errors, profiling and bench marking of code so as to analyze and improve performance. It integrates support for file version control, which is not only useful for package development, but also for keeping track of the progress or collaboration in the analysis of data. +The first step in producing reliable computer code is to accept that any code that we write needs to be tested and, if possible, validated. Another important step is to make sure that input is validated within the script and a suitable error produced for bad input (including valid input values falling outside the range that can be reliably handled by the script). -The version of \RStudio that one uses locally, i.e., installed in a computer used locally by a single user, runs with an almost identical user interface on most modern operating systems, such as \osname{Linux}, \osname{Unix}, \osname{OS X}, and \osname{MS-Windows}. There is also a server version that runs on \osname{Linux}, and that can be used remotely through a web browser. The user interface is still the same. +If during testing, or during normal use, a wrong value is returned by a calculation, or no value (e.g., the script crashes or triggers a fatal error), debugging consists in finding the cause of the problem. The cause can be either a mistake in the implementation of an algorithm, as well as in the algorithm itself. However, many apparent \emph{bugs} are caused by bad or missing handling of special cases like invalid input values, rounding errors, division by zero, etc., in which a program crashes instead of elegantly issuing a helpful error message. -\RStudio is under active development, and constantly improved. Visit \url{http://www.rstudio.org/} for an up-to-date description and download and installation instructions. Two books \autocite{vanderLoo2012,Hillebrand2015} describe and teach how to use \RStudio without going in depth into data analysis or statistics, however, as \RStudio is under very active development, several recently added important features are not described in these books. You will find tutorials and up-to-date cheat sheets at \url{http://www.rstudio.org/}. +Diagnosing the source of bugs is, in most cases, like detective work. One uses hunches based on common sense and experience to try to locate the lines of code causing the problem. One follows different \emph{leads} until the case is solved. In most cases, at the very bottom we rely on some sort of divide-and-conquer strategy. For example, we may check the value returned by intermediate calculations until we locate the earliest code statement producing a wrong value. Another common case is when some input values trigger a bug. In such cases it is frequently best to start by testing if different ``cases'' of input lead to errors/crashes or not. Boundary input values are usually the telltale ones: e.g., for numbers, zero, negative and positive values, very large values, very small values, missing values (\code{NA}), vectors of length zero (\code{numeric()}), etc. -\section{Reproducible data analysis} -\index{reproducible data analysis|(} -Reproducible data analysis is much more than a fashionable buzzword. Under any situation where accountability is important, from scientific research to decision making in commercial enterprises, industrial quality control and safety and environmental impact assessments, being able to reproduce a data analysis reaching the same conclusions from the same data is crucial. Most approaches to reproducible data analysis are based on automating report generation and including, as part of the report, all the computer commands used to generate the results presented. +\begin{warningbox} + \textbf{Error messages} When debugging, keep in mind that in some cases a single bug can lead to a whole cascade of error messages. Do also keep in mind that typing mistakes, originating when code is entered through the keyboard, can wreak havock in a script: usually there is little correspondence between the number of error messages and the seriousness of the bug triggering them. When several errors are triggered, start by reading the error message printed first, as later errors can be an indirect consequence of earlier ones. +\end{warningbox} -A fundamental requirement for reproducibility is a reliable record of what commands have been run on which data. Such a record is especially difficult to keep when issuing commands through menus and dialogue boxes in a graphical user interface or interactively at a console. Even working interactively at the \Rpgrm console using copy and paste to include commands and results in a report is error prone, and laborious. +There are special tools, called debuggers, available, and they help enormously. Debuggers allow one to step through the code, executing one statement at a time, and at each pause, allowing the user to inspect the objects present in the \Rlang environment and their values. It is even possible to execute additional statements, say, to modify the value of a variable, while execution is paused. An \Rlang debugger is available within \RStudio and also through the \Rlang console. -A further requirement is to be able to match the output of the \Rlang commands to the input. If the script saves the output to separate files, then the user will need to take care that the script saved or shared as a record of the data analysis was the one actually used for obtaining the reported results and conclusions. This is another error-prone stage in the reporting of data analysis. To solve this problem an approach was developed, inspired in what is called \emph{literate programming} \autocite{Knuth1984a}. The idea is that running the script will produce a document that includes the listing of the \Rlang code used, the results of running this code and any explanatory text needed to understand and interpret the analysis. +When writing your first scripts, you will manage perfectly well, and learn more by running the script one line at a time and when needed temporarily inserting \code{print()} statements to ``look'' at how the value of variables changes at each step. A debugger allows a lot more control, as one can ``step in'' and ``step out'' of function definitions, and set and unset break points where execution will stop, which is especially useful when developing \Rlang packages. -Although a system capable of producing such reports with \Rlang, called \pkgname{Sweave} \autocite{Leisch2002}, has been available for a couple decades, it was rather limited and not supported by an IDE, making its use rather tedious. A more recently developed system called \pkgname{knitr} \autocite{Xie2013} together with its integration into \RStudio has made the use of this type of reports very easy. The most recent development is what has been called \Rlang \emph{notebooks} produced within \RStudio. This new feature, can produce the readable report of running the script as an HTML file, displaying the code used interspersed with the results within the viewable file as in earlier approaches. However, this newer approach goes even further: the actual source script used to generate the report is embedded in the HTML file of the report and can be extracted and run very easily and consequently re-used. This means that anyone who gets access to the output of the analysis in human readable form also gets access to the code used to generate the report, in computer executable format. +When reproducing the examples in this chapter, do keep this section in mind. In addition, if you get stuck trying to find the cause of a bug, do extend your search both to the most trivial of possible causes, and to the least likely ones (such as a bug in a package installed from CRAN or \Rlang itself). Of course, when suspecting a bug in code you have not written, it is wise to very carefully read the documentation, as the ``bug'' may be just in your understanding of what a certain piece of code is expected to do. Also keep in mind that as discussed on page \pageref{sec:intro:net:help}, you will be able to find online already-answered questions to many of your likely problems and doubts. For example, Googling for the text of an error message is usually well rewarded. -Because of these recent developments, \Rlang is an ideal language to use when the goal of reproducibility is important. During recent years the problem of the lack of reproducibility in scientific research has been broadly discussed and analysed \autocite{Gandrud2015}. One of the problems faced when attempting to reproduce experimental work, is reproducing the data analysis. \Rlang together with these modern tools can help in avoiding this source of lack of reproducibility. +\begin{warningbox} +When installing packages from other sources than CRAN (e.g., development versions from GitHub, Bitbucket or R-Forge, or in-house packages) there is no warranty that conflicts will not happen. Packages (and their versions) released through CRAN are regularly checked for inter-compatibility, while packages released through other channels are usually checked against only a few packages. -How powerful are these tools and how flexible? They are powerful and flexible enough to write whole books, such as this very book you are now reading, produced with \Rpgrm, \pkgname{knitr} and \LaTeX\index{Latex@{\LaTeX}}\index{languages!Latex@{\LaTeX}}. All pages in the book are generated directly, all figures are generated by \Rpgrm and included automatically, except for the figures in this chapter that have been manually captured from the computer screen. Why am I using this approach? First because I want to make sure that every bit of code as you will see printed, runs without error. In addition, I want to make sure that the output that you will see below every line or chunk of \Rlang language code is exactly what \Rpgrm returns. Furthermore, it saves a lot of work for me as author, as I can just update \Rpgrm and all the packages used to their latest version, and build the book again, to keep it up to date and free of errors. +Conflicts among packages can easily arise, for example, when they use the same names for objects or functions. In addition, many packages use functions defined in packages in the \Rlang distribution itself or other independently developed packages by importing them. Updates to depended-upon packages can ``break'' (make non-functional) the dependent packages or parts of them. The rigorous testing by CRAN detects such problems in most cases when package revisions are submitted, forcing package maintainers to fix problems before distribution through CRAN is possible. However, if you use other repositories, I recommend that you make sure that revised (especially if under development) versions do work with your own script, before their use in ``production'' (important) data analyses. +\end{warningbox} -Although the use of these tools is important, they are outside the scope of this book and well described in other books \autocite{Gandrud2015,Xie2013}. Still when writing code, using a consistent style for formatting and indentation, carefully choosing variable names, and adding textual explanations in comments when needed, helps very much with readability for humans. I have tried to be as consistent as possible throughout the whole book in this respect, with only small personal deviations from the usual style. -\index{reproducible data analysis|)} -\section{Finding additional information} +\section{Control of execution flow}\label{sec:script:flow:control} +\index{control of execution flow} +By default \Rlang statements in a script are evaluated (or executed) in the sequence they appear in the script \textit{listing} or text. We give the name \emph{control of execution constructs} to those special statements that allow us to alter this default sequence, by either skipping or repeatedly evaluating individual statements. The statements whose evaluation is controlled can be either simple or compound. Some of the control of execution flow statements, function like \emph{ON-OFF switches} for program statements. Others allow statements to be executed repeatedly while or until a condition is met, or until all members of a list or a vector are processed. -When searching for answers, asking for advice or reading books, you will be confronted with different ways of approaching the same tasks. Do not allow this to overwhelm you; in most cases it will not matter as many computations can be done in \Rpgrm, as in any language, in several different ways, still obtaining the same result. The different approaches may differ mainly in two aspects: 1) how readable to humans are the instructions given to the computer as part of a script or program, and 2) how fast the code runs. Unless computation time is an important bottleneck in your work, just concentrate on writing code that is easy to understand to you and to others, and consequently easy to check and reuse. Of course, do always check any code you write for mistakes, preferably using actual numerical test cases for any complex calculation or even relatively simple scripts. Testing and validation are extremely important steps in data analysis, so get into this habit while reading this book. Testing how every function works, as I will challenge you to do in this book, is at the core of any robust data analysis or computing programming. +These \emph{control of execution constructs} can be also used at the \Rlang console, but it is usually awkward to do so as they can extend over several lines of text. In simple scripts, the \emph{flow of execution} can be fixed and linear from the first to the last statement in the script. \emph{Control of execution constructs} are a crucial part of most scripts. As we will see next, a compound statement can include multiple simple or nested compound statements. -\begin{warningbox} -Error messages tend to be terse in \Rpgrm, and may require some lateral thinking and/or ``experimentation'' to understand the real cause behind problems. When you are not sure you understand how some command works, it is useful in many cases to try simple examples for which you know the correct answer and see if you can reproduce them with \Rpgrm. Because of this, this book includes some code examples that trigger errors. Learning to interpret error messages is part of what is needed to become a proficient user of \Rlang. To test your understanding of how a code statement or function works, it is good to try your hand at testing its limits, testing which variations of a piece code are valid or not. -\end{warningbox} +\subsection{Compound statements}\label{sec:script:compound:statement} +\index{compound code statements}\index{simple code statements} -\subsection{R's built-in help} +Individual statements can be grouped into \emph{compound statements} by enclosed them in curly braces. Conceptually is like putting several statements into a box that allows us to operate with them as an anonymous whole. -To\index{R@{\Rlang}!help} access help pages through the command prompt we use function \Rfunction{help()} or a question mark. Every object exported by an \Rlang package (functions, methods, classes, data) is documented. Sometimes a single help page documents several \Rlang objects. Usually at the end of the help pages, some examples are given, which tend to help very much in learning how to use the functions described. For example, one can search for a help page at the \Rpgrm console. +\begin{center} +\begin{small} +\begin{tikzpicture}[node distance=1.7cm] +\node (start) [startstop] {\ldots}; +\node (enc) [enclosure, color = blue, fill = blue!5, below of=start, yshift=-0.75cm] {\ }; +\node (stat2) [process, color = blue, fill = blue!15, below of=start] {\code{}}; +\node (stat3) [process, color = blue, fill = blue!15, below of=stat2, yshift=+0.2cm] {\code{}}; +\node (stop) [startstop, below of=stat3] {\ldots}; +\draw [arrow, color = blue] (start) -- (stat2); +\draw [arrow, color = blue] (stat2) -- (stat3); +\draw [arrow, color = blue] (stat3) -- (stop); +\draw [arrow, color = black] (start) -- (enc); +\draw [arrow, color = black] (enc) -- (stop); +\end{tikzpicture} +\end{small} +\end{center} \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlkwd{help}\hlstd{(}\hlstr{"sum"}\hlstd{)} -\hlopt{?}\hlstd{sum} +\hlkwd{print}\hlstd{(}\hlstr{"A"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] "A" +\end{verbatim} +\begin{alltt} +\hlstd{\{} + \hlkwd{print}\hlstd{(}\hlstr{"B"}\hlstd{)} + \hlkwd{print}\hlstd{(}\hlstr{"C"}\hlstd{)} +\hlstd{\}} \end{alltt} +\begin{verbatim} +## [1] "B" +## [1] "C" +\end{verbatim} \end{kframe} \end{knitrout} -\begin{playground} -Look at help for some other functions like \code{mean()}, \code{var()}, \code{plot()} and, why not, \Rfunction{help()} itself! +The grouping of the last two statements above is of no consequence by itself, but grouping becomes useful when used together with control-of-execution constructs. + +\subsection{Conditional execution} +\index{conditional execution} + +Conditional execution allows handling different values, such as negative and non-negative values, differently within a script. This is achieved by evaluating or not (i.e., switching ON and OFF) parts of a script based on the result returned by a logical expression. An \Rlang expression returning a logical value can be as simple as a logical value of \code{TRUE} or \code{FALSE} stored in a variable or the result of a computation done at the time of the flow-control decision. + +\begin{explainbox} +We use the name \emph{flag} for a \code{logical} variable set manually, preferably near the top of the script. Use of flags is most useful when switching between two script behaviors depends on multiple sections of code. A frequent use case for flags is jointly enabling and disabling printing of output from multiple statements scattered in over a long script. +\end{explainbox} + +\Rpgrm has two types of \emph{if}\index{conditional statements} statements, non-vectorized and vectorized. We will start with the non-vectorized one, which is similar to what is available in most other computer programming languages and controls the evaluation of a code statement, which can be either simple or compound. + +\subsubsection[Non-vectorized \texttt{if}, \texttt{else} and \texttt{switch}]{Non-vectorized \code{if}, \code{else} and \code{switch}} +\qRcontrol{if()}\qRcontrol{if()\ldots else}% + +The \code{if} construct ``decides,'' depending on a \code{logical} value, whether the next code statement is executed (if \code{TRUE}) or skipped (if \code{FALSE}). The flow chart shows how \code{if} works: \code{} is either evaluated or skipped depending on the value of \code{}, while \code{} is always evaluated.\label{flowchart:if} + +\begin{center} +\begin{small} +\begin{tikzpicture}[node distance=1.5cm] +\node (start) [startstop] {\ldots}; +\node (dec1) [decision, color = blue, fill = blue!15, below of=start, yshift=-0.3cm] {\code{if ()}}; +\node (stat2) [process, color = blue, fill = blue!15, right of=dec1, xshift=3.2cm] {\code{}}; +\node (stat3) [process, below of=dec1, yshift=-0.5cm] {\code{}}; +\node (stop) [startstop, below of=stat3] {\ldots}; +\draw [arrow] (start) -- (dec1); +\draw [arrow, color=blue] (dec1) -- node[anchor=north] {\code{TRUE}} (stat2); +\draw [arrow, color=blue] (dec1) -- node[anchor=west] {\code{FALSE}} (stat3); +\draw [arrow] (stat2) |- (stat3); +\draw [arrow] (stat3) -- (stop); +\end{tikzpicture} +\end{small} +\end{center} + +We start with toy examples demonstrating how \emph{if} statements work. Later we will see examples closer to real use cases. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlkwd{help}\hlstd{(help)} +\hlstd{flag} \hlkwb{<-} \hlnum{TRUE} +\hlkwa{if} \hlstd{(flag)} \hlkwd{print}\hlstd{(}\hlstr{"Hello!"}\hlstd{)} \end{alltt} +\begin{verbatim} +## [1] "Hello!" +\end{verbatim} \end{kframe} \end{knitrout} -\end{playground} -When using \RStudio there are easier ways of navigating to a help page than using function \Rfunction{help()}, for example, with the cursor on the name of a function in the editor or console, pressing the F1 key opens the corresponding help page in the help pane. Letting the cursor hover for a few seconds over the name of a function at the \Rpgrm console will open ``bubble help'' for it. If the function is defined in a script or another file that is open in the editor pane, one can directly navigate from the line where the function is called to where it is defined. In \RStudio one can also search for help through the graphical interface. +\begin{playground} +Play with the code above by changing the value assigned to variable \code{flag}, \code{FALSE}, \code{NA}, and \code{logical(0)}. -In addition to help pages, \Rpgrm's distribution includes useful manuals as PDF or HTML files. These can be accessed most easily through the Help menu in \RStudio or \pgrmname{RGUI}. Extension packages provide help pages for the functions and data they export. When a package is loaded into an \Rpgrm session, its help pages are added to the native help of \Rpgrm. In addition to these individual help pages, each package provides an index of its corresponding help pages for users to browse. Many packages, contain \emph{vignettes} such as User Guides or articles describing the algorithms used. +In the example above we use variable \code{flag} as the \emph{condition}. -There are some web sites that give access to \Rlang documentation through a web server. These sites can be very convenient when exploring whether a certain package could be useful for a certain problem, as they allow browsing and searching the documentation without need of installing the packages. Some package maintainers have web sites with additional documentation for their own packages. The DESCRIPTION or README of packages provide contact information for the maintainer, links to web sites, and instructions on how to report bugs. As packages are contributed by independent authors, they should be cited in addition to citing \Rpgrm itself. \Rlang function \Rfunction{citation()} when called with the name of a package as its argument provides the reference that should be cited for the package, and without an explicit argument, the reference to cite for the version of \Rlang in use. +Nothing in the \Rlang language prevents this condition from being a \code{logical} constant. Explain why \code{if (TRUE)} in the syntactically-correct statement below is of no practical use. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlkwd{citation}\hlstd{()} +\hlkwa{if} \hlstd{(}\hlnum{TRUE}\hlstd{)} \hlkwd{print}\hlstd{(}\hlstr{"Hello!"}\hlstd{)} \end{alltt} \begin{verbatim} -## -## To cite R in publications use: -## -## R Core Team (2022). R: A language and environment for statistical -## computing. R Foundation for Statistical Computing, Vienna, Austria. -## URL https://www.R-project.org/. -## -## A BibTeX entry for LaTeX users is -## -## @Manual{, -## title = {R: A Language and Environment for Statistical Computing}, -## author = {{R Core Team}}, -## organization = {R Foundation for Statistical Computing}, -## address = {Vienna, Austria}, -## year = {2022}, -## url = {https://www.R-project.org/}, -## } -## -## We have invested a lot of time and effort in creating R, please cite it -## when using it for data analysis. See also 'citation("pkgname")' for -## citing R packages. +## [1] "Hello!" \end{verbatim} \end{kframe} \end{knitrout} - -\begin{playground} - Look at the help page for function \code{citation()} for a discussion of why it is important for users to cite \Rpgrm and packages when using them. \end{playground} -\subsection{Obtaining help from online forums}\label{sec:intro:net:help} - -When consulting help pages, vignettes, and possibly books at hand fails to provide the information needed, the next step to follow is to search internet forums for existing answers to one's questions. When these steps fail to solve a problem, then it is time to ask for help, either from local experts or by posting your own question in a suitable online forum. When posting requests for help, one needs to abide by what is usually described as ``netiquette.'' - -\subsubsection{Netiquette} -In\index{netiquette}\index{network etiquette} most internet forums, a certain behavior is expected from those asking and answering questions. Some types of misbehavior, like use of offensive or inappropriate language, will usually result in the user losing writing rights in a forum. Occasional minor misbehavior, will usually result in the original question not being answered and instead the problem highlighted in the reply. In general following the steps listed below will greatly increase your chances of getting a detailed and useful answer. - -\begin{itemize} - \item Do your homework: first search for existing answers to your question, both online and in the documentation. (Do mention that you attempted this without success when you post your question.) - \item Provide a clear explanation of the problem, and all the relevant information. Say if it concerns \Rpgrm, the version, operating system, and any packages loaded and their versions. - \item If at all possible, provide a simplified and short, but self-contained, code example that reproduces the problem (sometimes called \emph{reprex}). - \item Be polite. - \item Contribute to the forum by answering other users' questions when you know the answer. -\end{itemize} - -\subsubsection{StackOverflow} - -Nowadays, StackOverflow (\url{http://stackoverflow.com/})\index{StackOverflow} is the best question-and-answer (Q\,\&\,A) support site for \Rpgrm. In most cases, searching for existing questions and their answers, will be all that you need to do. If asking a question, make sure that it is really a new question. If there is some question that looks similar, make clear how your question is different. - -StackOverflow has a user-rights system based on reputation, and questions and answers can be up- and down-voted. Those with the most up-votes are listed at the top of searches. If the questions or answers you write are up-voted, after you accumulate enough reputation, you acquire badges and rights, such as editing other users' questions and answers or later on, even deleting wrong answers or off-topic questions from the system. This sounds complicated, but works extremely well at ensuring that the base of questions and answers is relevant and correct, without relying on nominated \emph{moderators}. When using StackOverflow, do contribute by accepting correct answers, up-voting questions and answers that you find useful, down-voting those you consider poor, and flagging or correcting errors you may discover. - -\subsubsection{Reporting bugs} - -Being careful in the preparation of a reproducible example\index{reproducible example}\index{reprex|see{reproducible example}} is especially important when you intend to report a bug to the maintainer of any piece of software. For the problem to be fixed, the person revising the code, needs to be able to reproduce the problem, and after modifying the code, needs to be able to test if the problem has been solved or not. However, even if you are facing a problem caused by your misunderstanding of how \Rlang works, the simpler the example, the more likely that someone will quickly realize what your intention was when writing the code that produces a result different from what you expected. - -\begin{explainbox} -How to prepare a reproducible example\index{reproducible example} (``reprex''). A \emph{reprex} is a self-contained and as simple as possible piece of computer code that triggers (and so demonstrates) a problem. If possible, when you need to use data, either use a data set included in base \Rpgrm or generate artificial data within the reprex code. If you can reproduce the problem only with your own data, then you need to provide a minimal subset of it that triggers the problem. - -While preparing the \emph{reprex} you will need to simplify the code, and sometimes this step allows you to diagnose the problem. Always, before posting a reprex online, it is wise to check it with the latest versions of \Rpgrm and any package being used. - -I would say that about two out of three times I prepare a \emph{reprex}, it allows me to much better understand the problem and find the root of the problem and a solution or a work-around on my own. -\end{explainbox} - -\section{What is needed to run the examples in this book?} - -The book is written with the expectation that you will run most of the code examples and try as many other variations as needed until you are sure you understand the basic ``rules'' of the \Rpgrm language and how each function or command described works. As mentioned above, you are expected to use this book as a travel guide for your exploration of the world of \Rlang. - -\Rpgrm is all that is needed to work through all the examples in this book, but it is not a convenient way of doing this. I recommend that you use an editor or an IDE, in particular \RStudio\index{IDE for R}\index{editor for R scripts}. \RStudio is user friendly, actively maintained, free, open-source and available both in desktop and server versions. The desktop version runs on \osname{MS-Windows}, \osname{Linux}, and \osname{OS X} and other \osname{Unix} distributions. - -Of course when choosing which editor to use, personal preferences and previous familiarity play an important role. -Currently, for the development of packages, I use \RStudio exclusively. For writing this book I have used both \RStudio and the text editor \pgrmname{WinEdt} which has support for \Rpgrm together with excellent support for \LaTeX\index{Latex@\LaTeX}. When working on a large project or collaborating with other data analysts or researchers, one big advantage of a system based on plain text files such as \Rlang scripts, is that the same files can be edited with different programs and under different operating systems as needed or wished by the different persons involved in a project. - -When I started using \Rpgrm, nearly two decades ago, I was using other editors, using the operating system shell a lot more, and struggling with debugging as no IDE was available. The only reasonably good integration with an editor was for \pgrmname{Emacs}, which was widely available only under \osname{Unix}-like systems. Given my past experience, I encourage you to use an IDE for \Rpgrm. \RStudio is nowadays very popular, but if you do not like it, need a different set of features, such as integration with \pgrmname{ImageJ}, or are already familiar with the \pgrmname{Eclipse} IDE, you may want to try the \pgrmname{Bio7} IDE, available from \url{http://bio7.org}. - -The examples in this book make use of several freely available \Rlang extension packages, which can be installed from CRAN. One of them, \pkgname{learnrbook}, also available through CRAN, contains data sets and files specific to this book. The \pkgname{learnrbook} package contains installation instructions and saved lists of the names of all other packages used in the book. Instructions on installing \Rpgrm, \pgrmname{Git}, \RStudio, compilers and other tools are available online. In many cases the IT staff at your employer or school will know how to install them, or they may even be included in the default computer setup. In addition, a web site supporting the book will be available at: \url{http://www.learnr-book.info}. - -\section{Further reading} -Suggestions\index{further reading!shell scripts in Unix and Linux} for further reading are dependent on how you plan to use \Rlang. If you envision yourself running batch jobs under \pgrmname{Linux} or \pgrmname{Unix}, you would profit from learning to write shell scripts. Because \pgrmname{bash} is widely used nowadays, \citebooktitle{Newham2005} \autocite{Newham2005} can be recommended. If you aim at writing \Rlang code that is going to be reused, and have some familiarity with \Clang, \Cpplang or \javalang, reading \citetitle{Kernighan1999} \autocite{Kernighan1999} will provide a mostly language-independent view of programming as an activity and help you master the all-important tricks of the trade. - - - - - -% !Rnw root = appendix.main.Rnw - - - -\chapter{The R language: ``Words'' and ``sentences''}\label{chap:R:as:calc} - -\begin{VF} -The desire to economize time and mental effort in arithmetical computations, and to eliminate human liability to error, is probably as old as the science of arithmetic itself. - -\VA{Howard Aiken}{\emph{Proposed automatic calculating machine}, 1937; reprinted 1964}\nocite{Aiken1964} -\end{VF} - -%\dictum[Howard Aiken, \emph{Proposed automatic calculating machine}, presented to IBM in 1937]{The desire to economize time and mental effort in arithmetical computations, and to eliminate human liability to error, is probably as old as the science of arithmetic itself.}\vskip2ex - -\section{Aims of this chapter} - -In my experience, for those not familiar with computer programming languages, the best first step in learning the \Rlang language is to use it interactively by typing textual commands at the \emph{console} or command line. This will teach not only the syntax and grammar rules, but also give you a glimpse at the advantages and flexibility of this approach to data analysis. - -In the first part of the chapter we will use \Rlang to do everyday calculations that should be so easy and familiar that you will not need to think about the operations themselves. This easy start will give you a chance to focus on learning how to issue textual commands at the command prompt. - -Later in the chapter, you will gradually need to focus more on the \Rlang language and its grammar and less on how commands are entered. By the end of the chapter you will be familiar with most of the kinds of ``words'' used in the \Rlang language and you will be able to write simple ``sentences'' in \Rlang. - -Along the chapter, I will occasionally show the equivalent of the \Rlang code in mathematical notation. If you are not familiar with the mathematical notation, you can safely ignore it, as long as you understand the \Rlang code. - -\section{Natural and computer languages} -\index{languages!natural and computer} -Computer languages have strict rules and interpreters and compilers are unforgiving about errors. They will issue error messages, but in contrast to human readers or listeners, will not guess your intentions and continue. However, computer languages have a much smaller set of words than natural languages, such as English. If you are new to computer programming, understanding the parallels between computer and natural languages may be useful. - -One can think of constant values and variables (values stored under a name) as nouns and of operators and functions as verbs. A complete command, or statement, is the equivalent of a natural language sentence: ``a comprehensible utterance.'' The simple statement \code{a + 1} has three components: \code{a}, a variable, \code{+}, an operator and \code{1} a constant. The statement \code{sqrt(4)} has two components, a function \code{sqrt()} and a numerical constant \code{4}. We say that ``to compute $\sqrt{4}$ we \emph{call} \code{sqrt()} with \code{4} as its \emph{argument}.'' - -Although all values manipulated in a digital computer are stored as \textit{bits} in memory, multiple interpretations are possible. Numbers, letters, logical values, etc., can be encoded into bits and decoded as long as their type or \code{mode} is known. The concept of \code{class} is not directly related to how values are encoded when stored in computer memory, but instead their interpretation as part of a computer program. We can have, for example, RGB color values, stored as three numbers such as \code{0, 0, 255}, as hexadecimal numbers stored as characters {\#0000FF}, or even use fancy names stored as character strings like \code{"blue"}. We could create a \code{class} for colors using any of these representations, based on two different modes: \code{numeric} and \code{character}. - -In this chapter we will focus on individual program statements, the equivalent of sentences in natural language. In later chapters you will learn how to combine them to create compound statements, the equivalent of natural-language paragraphs, and scripts, the equivalent of essays. You will also learn how to define new verbs, user-defined functions and operators, and new nouns, user-defined classes. - -\section{Numeric values and arithmetic} -\index{classes and modes!numeric, integer, double|(}\index{numbers and their arithmetic|(}\qRclass{numeric}\index{math operators}\index{math functions}\index{numeric values}\qRoperator{+}\qRoperator{-}\qRoperator{*}\qRoperator{/} -When working in \Rlang with arithmetic expressions, the normal mathematical precedence rules are respected, but parentheses can be used to alter this order. Parentheses can be nested, but in contrast to the usual practice in mathematics, the same parenthesis symbol is used at all nesting levels. - -\begin{explainbox} - Both in mathematics and programming languages \emph{operator precedence rules} determine which subexpressions are evaluated first and which later. Contrary to primitive electronic calculators, \Rlang evaluates numeric expressions containing operators according to the rules of mathematics. In the expression $3 + 2 \times 3$, the product $2 \times 3$ has precedence over the addition, and is evaluated first, yielding as the result of the whole expression, 9. In programming languages, similar rules apply to all operators, even those taking as operands non-numeric values. -\end{explainbox} - -It is important to keep in mind that in \Rlang trigonometric functions interpret numeric values representing angles as being expressed in radians. - -The equivalent of the math expression\qRfunction{exp()}\qRfunction{sin()}\qRconst{pi} -$$ -\frac{3 + e^2}{\sin \pi} -$$ -is, in \Rlang, written as follows: +Conditional execution is much more useful than what could be expected from the previous example, because the statement whose execution is being controlled can be a compound statement of almost any length or complexity. A very simple example follows. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlstd{(}\hlnum{3} \hlopt{+} \hlkwd{exp}\hlstd{(}\hlnum{2}\hlstd{))} \hlopt{/} \hlkwd{sin}\hlstd{(pi)} +\hlstd{printing} \hlkwb{<-} \hlnum{TRUE} +\hlkwa{if} \hlstd{(printing) \{} + \hlkwd{print}\hlstd{(}\hlstr{"A"}\hlstd{)} + \hlkwd{print}\hlstd{(}\hlstr{"B"}\hlstd{)} +\hlstd{\}} \end{alltt} \begin{verbatim} -## [1] 8.483588e+16 +## [1] "A" +## [1] "B" \end{verbatim} \end{kframe} \end{knitrout} -It can be seen above that mathematical constants and functions are part of the \Rlang language. One thing to remember when translating complex fractions as above into \Rlang code, is that in arithmetic expressions the bar of the fraction generates a grouping that alters the normal precedence of operations. In contrast, in an \Rlang expression this grouping must be explicitly signaled with additional parentheses. +\begin{warningbox} +The condition passed as an argument to \code{if}, enclosed in parentheses, can be anything yielding a \Rclass{logical} vector of length one. As this condition is \emph{not} vectorized, a longer vector will trigger an \Rlang warning or error depending on \Rlang's version. +\end{warningbox} + +The \code{if \ldots\ else} construct ``decides,'' depending on a \code{logical} value, which of two code statements is executed. The flow chart shows how \code{if} works: either \code{} or \code{} is evaluated and the other skipped depending on the value of \code{}, while \code{} is always evaluated.\label{flowchart:if:else} -If you are in doubt about how precedence rules work, you can add parentheses to make sure the order of computations is the one you intend. Redundant parentheses have no effect. +\begin{center} +\begin{small} +\begin{tikzpicture}[node distance=1.5cm] +\node (start) [startstop] {\ldots}; +\node (dec1) [decision, color = blue, fill = blue!15, below of=start, yshift=-0.5cm] {\code{if () else}}; +\node (stat2) [process, color = blue, fill = blue!15, left of=dec1, xshift=-3.2cm] {\code{}}; +\node (stat3) [process, color = blue, fill = blue!15, right of=dec1, xshift=3.2cm] {\code{}}; +\node (stat4) [process, below of=dec1, yshift=-0.5cm] {\code{}}; +\node (stop) [startstop, below of=stat4] {\ldots}; +\draw [arrow] (start) -- (dec1); +\draw [arrow, color=blue] (dec1) -- node[anchor=north] {\code{TRUE}} (stat2); +\draw [arrow, color=blue] (dec1) -- node[anchor=north] {\code{FALSE}} (stat3); +\draw [arrow] (stat2) |- (stat4); +\draw [arrow] (stat3) |- (stat4); +\draw [arrow] (stat4) -- (stop); +\end{tikzpicture} +\end{small} +\end{center} \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlnum{1} \hlopt{+} \hlnum{2} \hlopt{*} \hlnum{3} -\end{alltt} -\begin{verbatim} -## [1] 7 -\end{verbatim} -\begin{alltt} -\hlnum{1} \hlopt{+} \hlstd{(}\hlnum{2} \hlopt{*} \hlnum{3}\hlstd{)} +\hlstd{a} \hlkwb{<-} \hlnum{10.0} +\hlkwa{if} \hlstd{(a} \hlopt{<} \hlnum{0.0}\hlstd{)} \hlkwd{print}\hlstd{(}\hlstr{"'a' is negative"}\hlstd{)} \hlkwa{else} \hlkwd{print}\hlstd{(}\hlstr{"'a' is not negative"}\hlstd{)} \end{alltt} \begin{verbatim} -## [1] 7 +## [1] "'a' is not negative" \end{verbatim} \begin{alltt} -\hlstd{(}\hlnum{1} \hlopt{+} \hlnum{2}\hlstd{)} \hlopt{*} \hlnum{3} +\hlkwd{print}\hlstd{(}\hlstr{"This is always printed"}\hlstd{)} \end{alltt} \begin{verbatim} -## [1] 9 +## [1] "This is always printed" \end{verbatim} \end{kframe} \end{knitrout} -The number of opening (left side) and closing (right side) parentheses must be balanced, and they must be located so that each enclosed term is a valid mathematical expression, i.e., code that can be evaluated to return a value, a value that can be inserted in place of the expression enclosed in parenthesis before evaluating the remaining of the expression. For example, \code{(1 + 2) * 3} after evaluating \code{(1 + 2)} becomes \code{3 * 3} yielding \code{9}. In contrast, \code{(1 +) 2 * 3} is a syntax error as \code{1 +} is incomplete and does not yield a number. +As can be seen above, the statement immediately following \code{if} is executed if the condition returns \code{TRUE} and that following \code{else} is executed if the condition returns \code{FALSE}. Statements after the conditionally executed \code{if} and \code{else} statements are always executed, independently of the value returned by the condition. \begin{playground} -Here results are not shown. These are examples for you to type at the command prompt. In general you should not skip them, as in many cases, as with the statements highlighted with comments in the code chunk below, they have something to teach or demonstrate. You are strongly encouraged to \emph{play}, in other words, create new variations of the examples and execute them to explore how \Rlang works.\qRfunction{sqrt()}\qRfunction{sin()}\qRfunction{log(), log10(), log2()}\qRfunction{exp()} +Play with the code in the chunk above by assigning different numeric vectors to \code{a}. +\end{playground} -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlnum{1} \hlopt{+} \hlnum{1} -\hlnum{2} \hlopt{*} \hlnum{2} -\hlnum{2} \hlopt{+} \hlnum{10} \hlopt{/} \hlnum{5} -\hlstd{(}\hlnum{2} \hlopt{+} \hlnum{10}\hlstd{)} \hlopt{/} \hlnum{5} -\hlnum{10}\hlopt{^}\hlnum{2} \hlopt{+} \hlnum{1} -\hlkwd{sqrt}\hlstd{(}\hlnum{9}\hlstd{)} -\hlstd{pi} \hlcom{# whole precision not shown when printing} -\hlkwd{print}\hlstd{(pi,} \hlkwc{digits} \hlstd{=} \hlnum{22}\hlstd{)} -\hlkwd{sin}\hlstd{(pi)} \hlcom{# oops! Read on for explanation.} -\hlkwd{log}\hlstd{(}\hlnum{100}\hlstd{)} -\hlkwd{log10}\hlstd{(}\hlnum{100}\hlstd{)} -\hlkwd{log2}\hlstd{(}\hlnum{8}\hlstd{)} -\hlkwd{exp}\hlstd{(}\hlnum{1}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} -\end{playground} -Variables\index{variables}\index{assignment} are used to store values. After we \emph{assign} a value to a variable, we can use in our code the name of the variable in place of the stored value. The ``usual'' assignment operator is \Roperator{<-}. In \Rlang, all names, including variable names, are case sensitive. Variables \code{a} and \code{A} are two different variables. Variable names can be long in \Rlang although it is not a good idea to use very long names. Here I am using very short names, something that is usually also a very bad idea. However, in the examples in this chapter where the stored values have no connection to the real world, simple names emphasize their abstract nature. In the chunk below, \code{a} and \code{b} are arbitrarily chosen variable names; I could have used names like \code{my.variable.a} or \code{outside.temperature} if they had been useful to convey information. +\begin{explainbox} +Do you still remember the rules about continuation lines? \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} +\hlcom{# 1} \hlstd{a} \hlkwb{<-} \hlnum{1} -\hlstd{a} \hlopt{+} \hlnum{1} -\end{alltt} -\begin{verbatim} -## [1] 2 -\end{verbatim} -\begin{alltt} -\hlstd{a} -\end{alltt} -\begin{verbatim} -## [1] 1 -\end{verbatim} -\begin{alltt} -\hlstd{b} \hlkwb{<-} \hlnum{10} -\hlstd{b} \hlkwb{<-} \hlstd{a} \hlopt{+} \hlstd{b} -\hlstd{b} -\end{alltt} -\begin{verbatim} -## [1] 11 -\end{verbatim} -\begin{alltt} -\hlnum{3e-2} \hlopt{*} \hlnum{2.0} +\hlkwa{if} \hlstd{(a} \hlopt{<} \hlnum{0.0}\hlstd{)} \hlkwd{print}\hlstd{(}\hlstr{"'a' is negative"}\hlstd{)} \hlkwa{else} \hlkwd{print}\hlstd{(}\hlstr{"'a' is not negative"}\hlstd{)} \end{alltt} \begin{verbatim} -## [1] 0.06 +## [1] "'a' is not negative" \end{verbatim} \end{kframe} \end{knitrout} -Entering the name of a variable \emph{at the R console} implicitly calls function \code{print()} displaying the stored value on the console. The same applies to any other statement entered \emph{at the R console}: \code{print()} is implicitly called with the result of executing the statement as its argument. +Why does the statement below (not evaluated here) trigger an error while the one above does not? \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlstd{a} -\end{alltt} -\begin{verbatim} -## [1] 1 -\end{verbatim} -\begin{alltt} -\hlkwd{print}\hlstd{(a)} -\end{alltt} -\begin{verbatim} -## [1] 1 -\end{verbatim} -\begin{alltt} -\hlstd{a} \hlopt{+} \hlnum{1} -\end{alltt} -\begin{verbatim} -## [1] 2 -\end{verbatim} -\begin{alltt} -\hlkwd{print}\hlstd{(a} \hlopt{+} \hlnum{1}\hlstd{)} +\hlcom{# 2 (not evaluated here)} +\hlkwd{if} (a < 0.0) \hlkwd{print}(\hlstr{"\hlstr{'a'} is negative"}) +else \hlkwd{print}(\hlstr{"\hlstr{'a'} is not negative"}) \end{alltt} -\begin{verbatim} -## [1] 2 -\end{verbatim} \end{kframe} \end{knitrout} -\begin{playground} -There are some syntactically legal assignment statements that are not very frequently used, but you should be aware that they are valid, as they will not trigger error messages, and may surprise you. The most important thing is to write code consistently. The ``backwards'' assignment operator \Roperator{->} and resulting code like \code{1 -> a}\index{assignment!leftwise} are valid but less frequently used. The use of the equals sign (\Roperator{=}) for assignment in place of \Roperator{<-} although valid is discouraged. Chaining\index{assignment!chaining} assignments as in the first statement below can be used to signal to the human reader that \code{a}, \code{b} and \code{c} are being assigned the same value. + +How do the continuation line rules apply when we add curly braces as shown below. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlstd{a} \hlkwb{<-} \hlstd{b} \hlkwb{<-} \hlstd{c} \hlkwb{<-} \hlnum{0.0} -\hlstd{a} -\hlstd{b} -\hlstd{c} -\hlnum{1} \hlkwb{->} \hlstd{a} -\hlstd{a} -\hlstd{a} \hlkwb{=} \hlnum{3} -\hlstd{a} +\hlcom{# 1} +\hlstd{a} \hlkwb{<-} \hlnum{1} +\hlkwa{if} \hlstd{(a} \hlopt{<} \hlnum{0.0}\hlstd{) \{} + \hlkwd{print}\hlstd{(}\hlstr{"'a' is negative"}\hlstd{)} + \hlstd{\}} \hlkwa{else} \hlstd{\{} + \hlkwd{print}\hlstd{(}\hlstr{"'a' is not negative"}\hlstd{)} + \hlstd{\}} \end{alltt} +\begin{verbatim} +## [1] "'a' is not negative" +\end{verbatim} \end{kframe} \end{knitrout} +In the example above, we enclosed a single statement between each pair of curly braces, but as these braces create compound statements, multiple statements could have been enclosed between each pair. +\end{explainbox} + +\begin{playground} +Play with the use of conditional execution, with both simple and compound statements, and also think how to combine \code{if} and \code{else} to select among more than two options. \end{playground} -\begin{explainbox} -In\index{numeric, integer and double values} \Rlang, all numbers belong to mode \Rclass{numeric} (we will discuss the concepts of \emph{mode} and \emph{class} in section \ref{sec:rlang:mode} on page \pageref{sec:rlang:mode}). We can query if the mode of an object is \Rclass{numeric} with function \Rfunction{is.numeric()}. +In \Rlang, the value returned by any compound statement is the value returned by the last simple statement executed within the compound one. This means that we can assign the value returned by an \code{if} and \code{else} statement to a variable. This style is less frequently used, but occasionally can result in easier-to-understand scripts.\label{chunk:if:assignment} \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlkwd{mode}\hlstd{(}\hlnum{1}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] "numeric" -\end{verbatim} -\begin{alltt} \hlstd{a} \hlkwb{<-} \hlnum{1} -\hlkwd{is.numeric}\hlstd{(a)} +\hlstd{my.message} \hlkwb{<-} + \hlkwa{if} \hlstd{(a} \hlopt{<} \hlnum{0.0}\hlstd{)} \hlstr{"'a' is negative"} \hlkwa{else} \hlstr{"'a' is not negative"} +\hlkwd{print}\hlstd{(my.message)} \end{alltt} \begin{verbatim} -## [1] TRUE +## [1] "'a' is not negative" \end{verbatim} \end{kframe} \end{knitrout} -Because numbers can be stored in different formats, requiring different amounts of computer memory per value, most computing languages implement several different types of numbers. In most cases \Rpgrm's \Rfunction{numeric()} can be used everywhere that a number is expected. However, in some cases it has advantages to explicitly indicate that we will store or operate on whole numbers, in which case we can use class \Rclass{integer}, with integer constants indicated by a trailing capital ``L,'' as in \code{32L}. - +\begin{explainbox} +If the condition statement returns a value of a class other than \code{logical}, \Rlang will attempt to convert it into a logical. This is sometimes used instead of a comparison to zero, as the conversion from \code{integer} yields \code{TRUE} for all integers except zero. The code below illustrates a rather frequently used idiom for checking if there is something available to display. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlkwd{is.numeric}\hlstd{(}\hlnum{1L}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{is.integer}\hlstd{(}\hlnum{1L}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{is.double}\hlstd{(}\hlnum{1L}\hlstd{)} +\hlstd{message} \hlkwb{<-} \hlstr{"abc"} +\hlkwa{if} \hlstd{(}\hlkwd{length}\hlstd{(message))} \hlkwd{print}\hlstd{(message)} \end{alltt} \begin{verbatim} -## [1] FALSE +## [1] "abc" \end{verbatim} \end{kframe} \end{knitrout} +\end{explainbox} -Real numbers are a mathematical abstraction, and do not have an exact equivalent in computers. Instead of Real numbers, computers store and operate on numbers that are restricted to a broad but finite range of values and have a finite resolution. They are called, \emph{floats} (or \emph{floating-point} numbers); in \Rlang they go by the name of \Rclass{double} and can be created with the constructor \Rfunction{double()}. +\begin{advplayground} +Study the conversion rules between \Rclass{numeric} and \Rclass{logical} values, run each of the statements below, and explain the output based on how type conversions are interpreted, remembering the difference between \emph{floating-point numbers} as implemented in computers and \emph{real numbers} ($\mathbb{R}$) as defined in mathematics. +% chunk contains intentional error-triggering examples \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlkwd{is.numeric}\hlstd{(}\hlnum{1}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{is.integer}\hlstd{(}\hlnum{1}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\begin{alltt} -\hlkwd{is.double}\hlstd{(}\hlnum{1}\hlstd{)} +\hlkwa{if} \hlstd{(}\hlnum{0}\hlstd{)} \hlkwd{print}\hlstd{(}\hlstr{"hello"}\hlstd{)} +\hlkwa{if} \hlstd{(}\hlopt{-}\hlnum{1}\hlstd{)} \hlkwd{print}\hlstd{(}\hlstr{"hello"}\hlstd{)} +\hlkwa{if} \hlstd{(}\hlnum{0.01}\hlstd{)} \hlkwd{print}\hlstd{(}\hlstr{"hello"}\hlstd{)} +\hlkwa{if} \hlstd{(}\hlnum{1e-300}\hlstd{)} \hlkwd{print}\hlstd{(}\hlstr{"hello"}\hlstd{)} +\hlkwa{if} \hlstd{(}\hlnum{1e-323}\hlstd{)} \hlkwd{print}\hlstd{(}\hlstr{"hello"}\hlstd{)} +\hlkwa{if} \hlstd{(}\hlnum{1e-324}\hlstd{)} \hlkwd{print}\hlstd{(}\hlstr{"hello"}\hlstd{)} +\hlkwa{if} \hlstd{(}\hlnum{1e-500}\hlstd{)} \hlkwd{print}\hlstd{(}\hlstr{"hello"}\hlstd{)} +\hlkwa{if} \hlstd{(}\hlkwd{as.logical}\hlstd{(}\hlstr{"true"}\hlstd{))} \hlkwd{print}\hlstd{(}\hlstr{"hello"}\hlstd{)} +\hlkwa{if} \hlstd{(}\hlkwd{as.logical}\hlstd{(}\hlkwd{as.numeric}\hlstd{(}\hlstr{"1"}\hlstd{)))} \hlkwd{print}\hlstd{(}\hlstr{"hello"}\hlstd{)} +\hlkwa{if} \hlstd{(}\hlkwd{as.logical}\hlstd{(}\hlstr{"1"}\hlstd{))} \hlkwd{print}\hlstd{(}\hlstr{"hello"}\hlstd{)} +\hlkwa{if} \hlstd{(}\hlstr{"1"}\hlstd{)} \hlkwd{print}\hlstd{(}\hlstr{"hello"}\hlstd{)} \end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} \end{kframe} \end{knitrout} -The name \code{double} originates from the \Clang language, in which there are different types of floats available. With the name \code{double} used to mean ``double-precision floating-point numbers.'' Similarly, the use of \code{L} stems from the \texttt{long} type in \Clang, meaning ``long integer numbers.'' -\end{explainbox} +Hint: if you need to refresh your understanding of the type conversion rules, see section \ref{sec:calc:type:conversion} on page \pageref{sec:calc:type:conversion}. +\end{advplayground} -Numeric variables can contain more than one value. Even single numbers are in \Rlang \Rclass{vector}s of length one. We will later see why this is important. As you have seen above, the results of calculations were printed preceded with \code{[1]}. This is the index or position in the vector of the first number (or other value) displayed at the head of the current line. Vectors, in mathematical notation, are represented with positional subindexes, -\begin{equation}\label{eq:vector} - a_{1\ldots n} = a_1, a_2, \cdots a_i, \cdots, a_n, -\end{equation} -where $a_{1\ldots n}$ represents the whole vector and $a_1$ its first member. The length of $a_{1\ldots n}$ is $n$ as it contains $n$ members. +In addition to \Rcontrol{if ()} and \Rcontrol{if () \ldots\ else}, there is in \Rlang a \Rcontrol{switch()} statement, which we describe next. It can be used to select among \emph{cases}, or several alternative statements, based on an expression evaluating to a \code{numeric} or a \code{character} value of length equal to one. While \Rcontrol{if ()} and \code{if () \ldots\ else} allow for binary choices as they are controlled by a logical value, \Rcontrol{switch()} can control execution of many more statements. The usual way in which \Rcontrol{switch()} statement is used is by assignment of the returned value, as described as being rather unusual, but legal, for \code{if () \ldots\ else} on page \pageref{chunk:if:assignment}. -One can use \Rmethod{c()} ``concatenate'' to create a vector from other vectors, including vectors of length 1, such as the \code{numeric} constants in the statements below. +The switch statement returns a value, the value returned by the \Rcontrol{switch()} statement is that returned by the statement corresponding to the matching switch value, or the default (similar to \code{else}) if there is no match and a default return value has been defined. Each optional statement can be thought as a \textit{case} from a set of possible cases.\label{flowchart:switch} -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlnum{3}\hlstd{,} \hlnum{1}\hlstd{,} \hlnum{2}\hlstd{)} -\hlstd{a} -\end{alltt} -\begin{verbatim} -## [1] 3 1 2 -\end{verbatim} -\begin{alltt} -\hlstd{b} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlnum{4}\hlstd{,} \hlnum{5}\hlstd{,} \hlnum{0}\hlstd{)} -\hlstd{b} -\end{alltt} -\begin{verbatim} -## [1] 4 5 0 -\end{verbatim} -\begin{alltt} -\hlstd{c} \hlkwb{<-} \hlkwd{c}\hlstd{(a, b)} -\hlstd{c} -\end{alltt} -\begin{verbatim} -## [1] 3 1 2 4 5 0 -\end{verbatim} -\begin{alltt} -\hlstd{d} \hlkwb{<-} \hlkwd{c}\hlstd{(b, a)} -\hlstd{d} -\end{alltt} -\begin{verbatim} -## [1] 4 5 0 3 1 2 -\end{verbatim} -\end{kframe} -\end{knitrout} - -Method \code{c()} accepts as arguments two or more vectors and concatenates them, one after another. Quite frequently we may need to insert one vector in the middle of another. For this operation, \code{c()} is not useful by itself. One could use indexing combined with \code{c()}, but this is not needed as \Rlang provides a function capable of directly doing this operation. Although it can be used to ``insert'' values, it is named \code{append()}, and by default, it indeed appends one vector at the end of another. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{append}\hlstd{(a, b)} -\end{alltt} -\begin{verbatim} -## [1] 3 1 2 4 5 0 -\end{verbatim} -\end{kframe} -\end{knitrout} - -The output above is the same as for \code{c(a, b)}, however, \Rfunction{append()} accepts as an argument an index position after which to ``append'' its second argument. This results in an \emph{insert} operation when the index points at any position different from the end of the vector. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{append}\hlstd{(a,} \hlkwc{values} \hlstd{= b,} \hlkwc{after} \hlstd{=} \hlnum{2L}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] 3 1 4 5 0 2 -\end{verbatim} -\end{kframe} -\end{knitrout} - -Both \code{c()} and \code{append()} can also be used with lists. - -\begin{playground} -One can create sequences\index{sequence} using function \Rfunction{seq()} or the operator \Roperator{:}, or repeat values using function \Rfunction{rep()}. In this case, I leave to the reader to work out the rules by running these and his/her own examples, with the help of the documentation, available through \code{help(seq)} and \code{help(rep)}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a} \hlkwb{<-} \hlopt{-}\hlnum{1}\hlopt{:}\hlnum{5} -\hlstd{a} -\hlstd{b} \hlkwb{<-} \hlnum{5}\hlopt{:-}\hlnum{1} -\hlstd{b} -\hlstd{c} \hlkwb{<-} \hlkwd{seq}\hlstd{(}\hlkwc{from} \hlstd{=} \hlopt{-}\hlnum{1}\hlstd{,} \hlkwc{to} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{by} \hlstd{=} \hlnum{0.1}\hlstd{)} -\hlstd{c} -\hlstd{d} \hlkwb{<-} \hlkwd{rep}\hlstd{(}\hlopt{-}\hlnum{5}\hlstd{,} \hlnum{4}\hlstd{)} -\hlstd{d} -\end{alltt} -\end{kframe} -\end{knitrout} - -\end{playground} - -Next, something that makes \Rlang different from most other programming languages: vectorized arithmetic\index{vectorized arithmetic}. Operators and functions that are vectorized accept, as arguments, vectors of arbitrary length, in which case the result returned is equivalent to having applied the same function or operator individually to each element of the vector.\label{par:vectorized:numeric} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a} \hlopt{+} \hlnum{1} \hlcom{# we add one to vector a defined above} -\end{alltt} -\begin{verbatim} -## [1] 4 2 3 -\end{verbatim} -\begin{alltt} -\hlstd{(a} \hlopt{+} \hlnum{1}\hlstd{)} \hlopt{*} \hlnum{2} -\end{alltt} -\begin{verbatim} -## [1] 8 4 6 -\end{verbatim} -\begin{alltt} -\hlstd{a} \hlopt{+} \hlstd{b} -\end{alltt} -\begin{verbatim} -## [1] 7 6 2 -\end{verbatim} -\begin{alltt} -\hlstd{a} \hlopt{-} \hlstd{a} -\end{alltt} -\begin{verbatim} -## [1] 0 0 0 -\end{verbatim} -\end{kframe} -\end{knitrout} - -As it can be seen in the first line above, another peculiarity of \Rpgrm, is what is frequently called ``recycling'' of arguments:\index{recycling of arguments} as vector \code{a} is of length 6, but the constant 1 is a vector of length 1, this short constant vector is extended, by recycling its value, into a vector of six ones---i.e., a vector of the same length as the longest vector in the statement, \code{a}.\label{par:recycling:numeric} - -Make sure you understand what calculations are taking place in the chunk above, and also the one below. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a} \hlkwb{<-} \hlkwd{rep}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{6}\hlstd{)} -\hlstd{a} -\end{alltt} -\begin{verbatim} -## [1] 1 1 1 1 1 1 -\end{verbatim} -\begin{alltt} -\hlstd{a} \hlopt{+} \hlnum{1}\hlopt{:}\hlnum{2} -\end{alltt} -\begin{verbatim} -## [1] 2 3 2 3 2 3 -\end{verbatim} -\begin{alltt} -\hlstd{a} \hlopt{+} \hlnum{1}\hlopt{:}\hlnum{3} -\end{alltt} -\begin{verbatim} -## [1] 2 3 4 2 3 4 -\end{verbatim} -\begin{alltt} -\hlstd{a} \hlopt{+} \hlnum{1}\hlopt{:}\hlnum{4} -\end{alltt} - - -{\ttfamily\noindent\color{warningcolor}{\#\# Warning in a + 1:4: longer object length is not a multiple of shorter object length}}\begin{verbatim} -## [1] 2 3 4 5 2 3 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{explainbox} -A useful thing to know: a vector can have length zero. Vectors of length zero may seem at first sight quite useless, but in fact they are very useful. They allow the handling of ``no input'' or ``nothing to do'' cases as normal cases, which in the absence of vectors of length zero would require to be treated as special cases. Constructors for built in classes like \Rfunction{numeric()} return vectors of a length given by their first argument, which defaults to zero. I describe here a useful function, \Rfunction{length()} which returns the length of a vector or list. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{z} \hlkwb{<-} \hlkwd{numeric}\hlstd{(}\hlnum{0}\hlstd{)} -\hlstd{z} -\end{alltt} -\begin{verbatim} -## numeric(0) -\end{verbatim} -\begin{alltt} -\hlkwd{length}\hlstd{(z)} -\end{alltt} -\begin{verbatim} -## [1] 0 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{z1} \hlkwb{<-} \hlkwd{numeric}\hlstd{()} -\hlstd{z1} -\end{alltt} -\begin{verbatim} -## numeric(0) -\end{verbatim} -\begin{alltt} -\hlstd{z2} \hlkwb{<-} \hlkwd{numeric}\hlstd{(}\hlkwc{length} \hlstd{=} \hlnum{0}\hlstd{)} -\hlstd{z2} -\end{alltt} -\begin{verbatim} -## numeric(0) -\end{verbatim} -\end{kframe} -\end{knitrout} - -Vectors and lists of length zero, behave in most cases, as expected---e.g., they can be concatenated as shown here. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{length}\hlstd{(}\hlkwd{c}\hlstd{(a,} \hlkwd{numeric}\hlstd{(}\hlnum{0}\hlstd{), b))} -\end{alltt} -\begin{verbatim} -## [1] 9 -\end{verbatim} -\begin{alltt} -\hlkwd{length}\hlstd{(}\hlkwd{c}\hlstd{(a, b))} -\end{alltt} -\begin{verbatim} -## [1] 9 -\end{verbatim} -\end{kframe} -\end{knitrout} - -Many functions, such as \Rlang's maths functions and operators, will accept numeric vectors of length zero as valid input, returning also a vector of length zero, issuing neither a warning nor an error message. In other words, \emph{these are valid operations} in \Rlang. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{log}\hlstd{(}\hlkwd{numeric}\hlstd{(}\hlnum{0}\hlstd{))} -\end{alltt} -\begin{verbatim} -## numeric(0) -\end{verbatim} -\begin{alltt} -\hlnum{5} \hlopt{+} \hlkwd{numeric}\hlstd{(}\hlnum{0}\hlstd{)} -\end{alltt} -\begin{verbatim} -## numeric(0) -\end{verbatim} -\end{kframe} -\end{knitrout} - -Even when of length zero, vectors do have to belong to a class acceptable for the operation: \code{5 + character(0)} is an error. - -\end{explainbox} - -It\index{removing objects}\index{deleting objects|see {removing objects}} is possible to \emph{remove} variables from the workspace with \Rfunction{rm()}. Function \Rfunction{ls()} returns a \emph{list} of all objects visible in the current environment, or by supplying a \code{pattern} argument, only the objects with names matching the \code{pattern}. The pattern is given as a regular expression, with \verb|[]| enclosing alternative matching characters, \verb|^| and \verb|$|, indicating the extremes of the name (start and end, respectively). For example, \verb|"^z$"| matches only the single character `z' while \verb|"^z"| matches any name starting with `z'. In contrast \verb|"^[zy]$"| matches both `z' and `y' but neither `zy' nor `yz', and \verb|"^[a-z]"| matches any name starting with a lowercase ASCII letter. If you are using \pgrmname{RStudio}, all objects are listed in the Environment pane, and the search box of the panel can be used to find a given object. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ls}\hlstd{(}\hlkwc{pattern}\hlstd{=}\hlstr{"^z$"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] "z" -\end{verbatim} -\begin{alltt} -\hlkwd{rm}\hlstd{(z)} -\hlkwd{ls}\hlstd{(}\hlkwc{pattern}\hlstd{=}\hlstr{"^z$"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## character(0) -\end{verbatim} -\end{kframe} -\end{knitrout} - -There\index{special values!NA}\index{special values!NaN}\label{par:special:values} are some special values available for numbers. \Rconst{NA} meaning ``not available'' is used for missing values. Calculations can also yield the following values \Rconst{NaN} ``not a number'', \Rconst{Inf} and \Rconst{-Inf} for $\infty$ and $-\infty$. As you will see below, calculations yielding these values do \textbf{not} trigger errors or warnings, as they are arithmetically valid. \Rconst{Inf} and \Rconst{-Inf} are also valid numerical values for input and constants. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a} \hlkwb{<-} \hlnum{NA} -\hlstd{a} -\end{alltt} -\begin{verbatim} -## [1] NA -\end{verbatim} -\begin{alltt} -\hlopt{-}\hlnum{1} \hlopt{/} \hlnum{0} -\end{alltt} -\begin{verbatim} -## [1] -Inf -\end{verbatim} -\begin{alltt} -\hlnum{1} \hlopt{/} \hlnum{0} -\end{alltt} -\begin{verbatim} -## [1] Inf -\end{verbatim} -\begin{alltt} -\hlnum{Inf} \hlopt{/} \hlnum{Inf} -\end{alltt} -\begin{verbatim} -## [1] NaN -\end{verbatim} -\begin{alltt} -\hlnum{Inf} \hlopt{+} \hlnum{4} -\end{alltt} -\begin{verbatim} -## [1] Inf -\end{verbatim} -\begin{alltt} -\hlstd{b} \hlkwb{<-} \hlopt{-}\hlnum{Inf} -\hlstd{b} \hlopt{* -}\hlnum{1} -\end{alltt} -\begin{verbatim} -## [1] Inf -\end{verbatim} -\end{kframe} -\end{knitrout} - -Not available (\Rconst{NA}) values are very important in the analysis of experimental data, as frequently some observations are missing from an otherwise complete data set due to ``accidents'' during the course of an experiment. It is important to understand how to interpret \Rconst{NA}'s. They are simple placeholders for something that is unavailable, in other words, \emph{unknown}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{A} \hlkwb{<-} \hlnum{NA} -\hlstd{A} -\end{alltt} -\begin{verbatim} -## [1] NA -\end{verbatim} -\begin{alltt} -\hlstd{A} \hlopt{+} \hlnum{1} -\end{alltt} -\begin{verbatim} -## [1] NA -\end{verbatim} -\begin{alltt} -\hlstd{A} \hlopt{+} \hlnum{Inf} -\end{alltt} -\begin{verbatim} -## [1] NA -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{playground} -\textbf{When to use vectors of length zero, and when \code{NA}s?}\index{zero length objects}\index{vectors!zero length} Make sure you understand the logic behind the different behavior of functions and operators with respect to \code{NA} and \code{numeric()} or its equivalent \code{numeric(0)}. What do they represent? Why \Rconst{NA}s are not ignored, while vectors of length zero are? - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlnum{123} \hlopt{+} \hlkwd{numeric}\hlstd{()} -\hlnum{123} \hlopt{+} \hlnum{NA} -\end{alltt} -\end{kframe} -\end{knitrout} - -\emph{Model answer:} -\Rconst{NA} is used to signal a value that ``was lost'' or ``was expected'' but is unavailable because of some accident. A vector of length zero, represents no values, but within the normal expectations. In particular, if vectors are expected to have a certain length, or if index positions along a vector are meaningful, then using \Rconst{NA} is a must. - -\end{playground} - -Any operation, even tests of equality, involving one or more \Rconst{NA}'s return an \Rconst{NA}. In other words, when one input to a calculation is unknown, the result of the calculation is unknown. This means that a special function is needed for testing for the presence of \code{NA} values. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{is.na}\hlstd{(}\hlkwd{c}\hlstd{(}\hlnum{NA}\hlstd{,} \hlnum{1}\hlstd{))} -\end{alltt} -\begin{verbatim} -## [1] TRUE FALSE -\end{verbatim} -\end{kframe} -\end{knitrout} - -In the example above, we can also see that \Rfunction{is.na()} is vectorized, and that it applies the test to each of the two elements of the vector individually, returning the result as a logical vector of length two. - -One thing\index{precision!math operations}\index{numbers!floating point} to be aware of are the consequences of the fact that numbers in computers are almost always stored with finite precision and/or range: the expectations derived from the mathematical definition of Real numbers are not always fulfilled. See the box on page \pageref{box:floats} for an in-depth explanation. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlnum{1} \hlopt{-} \hlnum{1e-20} -\end{alltt} -\begin{verbatim} -## [1] 1 -\end{verbatim} -\end{kframe} -\end{knitrout} - -When comparing \Rclass{integer}\index{numbers!whole}\index{numbers!integer} values these problems do not exist, as integer arithmetic is not affected by loss of precision in calculations restricted to integers. Because of the way integers are stored in the memory of computers, within the representable range, they are stored exactly. One can think of computer integers as a subset of whole numbers restricted to a certain range of values. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlnum{1L} \hlopt{+} \hlnum{3L} -\end{alltt} -\begin{verbatim} -## [1] 4 -\end{verbatim} -\begin{alltt} -\hlnum{1L} \hlopt{*} \hlnum{3L} -\end{alltt} -\begin{verbatim} -## [1] 3 -\end{verbatim} -\begin{alltt} -\hlnum{1L} \hlopt{%/%} \hlnum{3L} -\end{alltt} -\begin{verbatim} -## [1] 0 -\end{verbatim} -\begin{alltt} -\hlnum{1L} \hlopt{%%} \hlnum{3L} -\end{alltt} -\begin{verbatim} -## [1] 1 -\end{verbatim} -\begin{alltt} -\hlnum{1L} \hlopt{/} \hlnum{3L} -\end{alltt} -\begin{verbatim} -## [1] 0.3333333 -\end{verbatim} -\end{kframe} -\end{knitrout} - -The last statement in the example immediately above, using the ``usual'' division operator yields a floating-point \code{double} result, while the integer division operator \Roperator{\%/\%} yields an \code{integer} result, and \Roperator{\%\%} returns the remainder from the integer division. If as a result of an operation the result falls outside the range of representable values, the returned value is \code{NA}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlnum{1000000L} \hlopt{*} \hlnum{1000000L} -\end{alltt} - - -{\ttfamily\noindent\color{warningcolor}{\#\# Warning in 1000000L * 1000000L: NAs produced by integer overflow}}\begin{verbatim} -## [1] NA -\end{verbatim} -\end{kframe} -\end{knitrout} - -Both doubles and integers are considered numeric. In most situations, conversion is automatic and we do not need to worry about the differences between these two types of numeric values. The next chunk shows returned values that are either \Rconst{TRUE} or \Rconst{FALSE}. These are \code{logical} values that will be discussed in the next section.\index{numbers!double}\index{numbers!integer} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{is.numeric}\hlstd{(}\hlnum{1L}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{is.integer}\hlstd{(}\hlnum{1L}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{is.double}\hlstd{(}\hlnum{1L}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\begin{alltt} -\hlkwd{is.double}\hlstd{(}\hlnum{1L} \hlopt{/} \hlnum{3L}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{is.numeric}\hlstd{(}\hlnum{1L} \hlopt{/} \hlnum{3L}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{advplayground} -Study the variations of the previous example shown below, and explain why the two statements return different values. Hint: 1 is a \code{double} constant. You can use \code{is.integer()} and \code{is.double()} in your explorations. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlnum{1} \hlopt{*} \hlnum{1000000L} \hlopt{*} \hlnum{1000000L} -\hlnum{1000000L} \hlopt{*} \hlnum{1000000L} \hlopt{*} \hlnum{1} -\end{alltt} -\end{kframe} -\end{knitrout} -\end{advplayground} - -Both when displaying numbers or as part of computations, we may want to decrease the number of significant digits or the number of digits after the decimal marker. Be aware that in the examples below, even if printing is being done by default, these functions return \code{numeric} values that are different from their input and can be stored and used in computations. Function \Rfunction{round()} is used to round numbers to a certain number of decimal places after or before the decimal marker, while \Rfunction{signif()} rounds to the requested number of significant digits. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{round}\hlstd{(}\hlnum{0.0124567}\hlstd{,} \hlkwc{digits} \hlstd{=} \hlnum{3}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] 0.012 -\end{verbatim} -\begin{alltt} -\hlkwd{signif}\hlstd{(}\hlnum{0.0124567}\hlstd{,} \hlkwc{digits} \hlstd{=} \hlnum{3}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] 0.0125 -\end{verbatim} -\begin{alltt} -\hlkwd{round}\hlstd{(}\hlnum{1789.1234}\hlstd{,} \hlkwc{digits} \hlstd{=} \hlnum{3}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] 1789.123 -\end{verbatim} -\begin{alltt} -\hlkwd{signif}\hlstd{(}\hlnum{1789.1234}\hlstd{,} \hlkwc{digits} \hlstd{=} \hlnum{3}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] 1790 -\end{verbatim} -\begin{alltt} -\hlkwd{round}\hlstd{(}\hlnum{1789.1234}\hlstd{,} \hlkwc{digits} \hlstd{=} \hlopt{-}\hlnum{1}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] 1790 -\end{verbatim} -\begin{alltt} -\hlstd{a} \hlkwb{<-} \hlnum{0.12345} -\hlstd{b} \hlkwb{<-} \hlkwd{round}\hlstd{(a,} \hlkwc{digits} \hlstd{=} \hlnum{2}\hlstd{)} -\hlstd{a} \hlopt{==} \hlstd{b} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\begin{alltt} -\hlstd{a} \hlopt{-} \hlstd{b} -\end{alltt} -\begin{verbatim} -## [1] 0.00345 -\end{verbatim} -\begin{alltt} -\hlstd{b} -\end{alltt} -\begin{verbatim} -## [1] 0.12 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{explainbox} -Being \code{digits}, the second parameter of these functions, the argument can also be passed by position. However, code is usually easier to understand for humans when parameter names are made explicit. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{round}\hlstd{(}\hlnum{0.0124567}\hlstd{,} \hlkwc{digits} \hlstd{=} \hlnum{3}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] 0.012 -\end{verbatim} -\begin{alltt} -\hlkwd{round}\hlstd{(}\hlnum{0.0124567}\hlstd{,} \hlnum{3}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] 0.012 -\end{verbatim} -\end{kframe} -\end{knitrout} -\end{explainbox} - -Functions \Rfunction{trunc()} and \Rfunction{ceiling()} return the non-fractional part of a numeric value as a new numeric value. They differ in how they handle negative values, and neither of them rounds the returned value to the nearest whole number. - -\begin{playground} -What does value truncation mean? Function \Rfunction{trunc()} truncates a numeric value, but it does not return an \code{integer}. -\begin{itemize} - \item Explore how \Rfunction{trunc()} and \Rfunction{ceiling()} differ. Test them both with positive and negative values. - \item \textbf{Advanced} Use function \Rfunction{abs()} and operators \Roperator{+} and \Roperator{-} to reproduce the output of \Rfunction{trunc()} and \Rfunction{ceiling()} for the different inputs. - \item Can \Rfunction{trunc()} and \Rfunction{ceiling()} be considered type conversion functions in \Rlang? -\end{itemize} -\end{playground} - -\index{classes and modes!numeric, integer, double|)}\index{numbers and their arithmetic|)} - -\section{Logical values and Boolean algebra}\label{sec:calc:boolean} -\index{classes and modes!logical|(}\index{logical operators}\index{logical values and their algebra|(}\index{Boolean arithmetic} -What in Mathematics are usually called Boolean values, are called \Rclass{logical} values in \Rlang. They can have only two values \code{TRUE} and \code{FALSE}, in addition to \code{NA} (not available). They are vectors as all other atomic types in \Rlang (by \emph{atomic} we mean that each value is not composed of ``parts''). There are also logical operators that allow Boolean algebra. In the chunk below we operate on \Rclass{logical} vectors of length one. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a} \hlkwb{<-} \hlnum{TRUE} -\hlstd{b} \hlkwb{<-} \hlnum{FALSE} -\hlkwd{mode}\hlstd{(a)} -\end{alltt} -\begin{verbatim} -## [1] "logical" -\end{verbatim} -\begin{alltt} -\hlstd{a} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlopt{!}\hlstd{a} \hlcom{# negation} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\begin{alltt} -\hlstd{a} \hlopt{&&} \hlstd{b} \hlcom{# logical AND} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\begin{alltt} -\hlstd{a} \hlopt{||} \hlstd{b} \hlcom{# logical OR} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{xor}\hlstd{(a, b)} \hlcom{# exclusive OR} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\end{kframe} -\end{knitrout} - -%%%% index operators using verb!! -As with arithmetic operators, vectorization is available with \emph{some} logical operators. The availability of two kinds of logical operators is one of the most troublesome aspects of the \Rlang language for beginners. Pairs of ``equivalent'' logical operators behave differently, use similar syntax and use similar symbols! The vectorized operators have single-character names \Roperator{\&} and \Roperator{\textbar}, while the non-vectorized ones have double-character names \Roperator{\&\&} and \Roperator{\textbar\textbar}. There is only one version of the negation operator \Roperator{!} that is vectorized. In some, but not all cases, a warning will indicate that there is a possible problem. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,}\hlnum{FALSE}\hlstd{)} -\hlstd{b} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,}\hlnum{TRUE}\hlstd{)} -\hlstd{a} -\end{alltt} -\begin{verbatim} -## [1] TRUE FALSE -\end{verbatim} -\begin{alltt} -\hlstd{b} -\end{alltt} -\begin{verbatim} -## [1] TRUE TRUE -\end{verbatim} -\begin{alltt} -\hlstd{a} \hlopt{&} \hlstd{b} \hlcom{# vectorized AND} -\end{alltt} -\begin{verbatim} -## [1] TRUE FALSE -\end{verbatim} -\begin{alltt} -\hlstd{a} \hlopt{|} \hlstd{b} \hlcom{# vectorized OR} -\end{alltt} -\begin{verbatim} -## [1] TRUE TRUE -\end{verbatim} -\begin{alltt} -\hlstd{a} \hlopt{&&} \hlstd{b} \hlcom{# not vectorized} -\end{alltt} - - -{\ttfamily\noindent\color{warningcolor}{\#\# Warning in a \&\& b: 'length(x) = 2 > 1' in coercion to 'logical(1)'}} - -{\ttfamily\noindent\color{warningcolor}{\#\# Warning in a \&\& b: 'length(x) = 2 > 1' in coercion to 'logical(1)'}}\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlstd{a} \hlopt{||} \hlstd{b} \hlcom{# not vectorized} -\end{alltt} - - -{\ttfamily\noindent\color{warningcolor}{\#\# Warning in a || b: 'length(x) = 2 > 1' in coercion to 'logical(1)'}}\begin{verbatim} -## [1] TRUE -\end{verbatim} -\end{kframe} -\end{knitrout} - -Functions \Rfunction{any()} and \Rfunction{all()} take zero or more logical vectors as their arguments, and return a single logical value ``summarizing'' the logical values in the vectors. Function \Rfunction{all()} returns \code{TRUE} only if all values in the vectors passed as arguments are \code{TRUE}, and \Rfunction{any()} returns \code{TRUE} unless all values in the vectors are \code{FALSE}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{any}\hlstd{(a)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{all}\hlstd{(a)} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\begin{alltt} -\hlkwd{any}\hlstd{(a} \hlopt{&} \hlstd{b)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{all}\hlstd{(a} \hlopt{&} \hlstd{b)} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\end{kframe} -\end{knitrout} - -Another important thing to know about logical operators is that they ``short-cut'' evaluation. If the result is known from the first part of the statement, the rest of the statement is not evaluated. Try to understand what happens when you enter the following commands. Short-cut evaluation is useful, as the first condition can be used as a guard protecting a later condition from being evaluated when it would trigger an error. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlnum{TRUE} \hlopt{||} \hlnum{NA} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlnum{FALSE} \hlopt{||} \hlnum{NA} -\end{alltt} -\begin{verbatim} -## [1] NA -\end{verbatim} -\begin{alltt} -\hlnum{TRUE} \hlopt{&&} \hlnum{NA} -\end{alltt} -\begin{verbatim} -## [1] NA -\end{verbatim} -\begin{alltt} -\hlnum{FALSE} \hlopt{&&} \hlnum{NA} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\begin{alltt} -\hlnum{TRUE} \hlopt{&&} \hlnum{FALSE} \hlopt{&&} \hlnum{NA} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\begin{alltt} -\hlnum{TRUE} \hlopt{&&} \hlnum{TRUE} \hlopt{&&} \hlnum{NA} -\end{alltt} -\begin{verbatim} -## [1] NA -\end{verbatim} -\end{kframe} -\end{knitrout} - -When using the vectorized operators on vectors of length greater than one, `short-cut' evaluation still applies for the result obtained at each index position. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a} \hlopt{&} \hlstd{b} \hlopt{&} \hlnum{NA} -\end{alltt} -\begin{verbatim} -## [1] NA FALSE -\end{verbatim} -\begin{alltt} -\hlstd{a} \hlopt{&} \hlstd{b} \hlopt{&} \hlkwd{c}\hlstd{(}\hlnum{NA}\hlstd{,} \hlnum{NA}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] NA FALSE -\end{verbatim} -\begin{alltt} -\hlstd{a} \hlopt{|} \hlstd{b} \hlopt{|} \hlkwd{c}\hlstd{(}\hlnum{NA}\hlstd{,} \hlnum{NA}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] TRUE TRUE -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{playground} -Based on the description of ``recycling'' presented on page \pageref{par:recycling:numeric} for \code{numeric} operators, explore how ``recycling'' works with vectorized logical operators. Create logical vectors of different lengths (including length one) and \emph{play} by writing several code statements with operations on them. To get you started, one example is given below. Execute this example, and then create and run your own, making sure that you understand why the values returned are what they are. Sometimes, you will need to devise several examples or test cases to tease out of \Rlang an understanding of how a certain feature of the language works, so do not give up early, and make use of your imagination! - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{x} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{,} \hlnum{TRUE}\hlstd{,} \hlnum{NA}\hlstd{)} -\hlstd{x} \hlopt{&} \hlnum{FALSE} -\hlstd{x} \hlopt{|} \hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - -\end{playground} -\index{logical values and their algebra|)} -\section{Comparison operators and operations} -\index{comparison operators|(}\index{operators!comparison|(}\qRoperator{>}\qRoperator{<}\qRoperator{>=}\qRoperator{<=}\qRoperator{==}\qRoperator{!=} -Comparison operators return vectors of \code{logical} values as results. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlnum{1.2} \hlopt{>} \hlnum{1.0} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlnum{1.2} \hlopt{>=} \hlnum{1.0} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlnum{1.2} \hlopt{==} \hlnum{1.0} \hlcom{# be aware that here we use two = symbols} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\begin{alltt} -\hlnum{1.2} \hlopt{!=} \hlnum{1.0} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlnum{1.2} \hlopt{<=} \hlnum{1.0} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\begin{alltt} -\hlnum{1.2} \hlopt{<} \hlnum{1.0} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\begin{alltt} -\hlstd{a} \hlkwb{<-} \hlnum{20} -\hlstd{a} \hlopt{<} \hlnum{100} \hlopt{&&} \hlstd{a} \hlopt{>} \hlnum{10} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\end{kframe} -\end{knitrout} - -These operators can be used on vectors of any length, returning as a result a logical vector as long as the longest operand. In other words, they behave in the same way as the arithmetic operators described on page \pageref{par:vectorized:numeric}: their arguments are recycled when needed. Hint: if you do not know what to expect as a value for the vector returned by \code{1:10}, execute the statement \code{print(a)} after the first code statement below, or, alternatively, \code{1:10} without saving the result to a variable. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{10} -\hlstd{a} \hlopt{>} \hlnum{5} -\end{alltt} -\begin{verbatim} -## [1] FALSE FALSE FALSE FALSE FALSE TRUE TRUE TRUE TRUE TRUE -\end{verbatim} -\begin{alltt} -\hlstd{a} \hlopt{<} \hlnum{5} -\end{alltt} -\begin{verbatim} -## [1] TRUE TRUE TRUE TRUE FALSE FALSE FALSE FALSE FALSE FALSE -\end{verbatim} -\begin{alltt} -\hlstd{a} \hlopt{==} \hlnum{5} -\end{alltt} -\begin{verbatim} -## [1] FALSE FALSE FALSE FALSE TRUE FALSE FALSE FALSE FALSE FALSE -\end{verbatim} -\begin{alltt} -\hlkwd{all}\hlstd{(a} \hlopt{>} \hlnum{5}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\begin{alltt} -\hlkwd{any}\hlstd{(a} \hlopt{>} \hlnum{5}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlstd{b} \hlkwb{<-} \hlstd{a} \hlopt{>} \hlnum{5} -\hlstd{b} -\end{alltt} -\begin{verbatim} -## [1] FALSE FALSE FALSE FALSE FALSE TRUE TRUE TRUE TRUE TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{any}\hlstd{(b)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{all}\hlstd{(b)} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\end{kframe} -\end{knitrout} - -Precedence rules also apply to comparison operators and they can be overridden by means of parentheses. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a} \hlopt{>} \hlnum{2} \hlopt{+} \hlnum{3} -\end{alltt} -\begin{verbatim} -## [1] FALSE FALSE FALSE FALSE FALSE TRUE TRUE TRUE TRUE TRUE -\end{verbatim} -\begin{alltt} -\hlstd{(a} \hlopt{>} \hlnum{2}\hlstd{)} \hlopt{+} \hlnum{3} -\end{alltt} -\begin{verbatim} -## [1] 3 3 4 4 4 4 4 4 4 4 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{playground} -Use the statement below as a starting point in exploring how precedence works when logical and arithmetic operators are part of the same statement. \emph{Play} with the example by adding parentheses at different positions and based on the returned values, work out the default order of operator precedence used for the evaluation of the example given below. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{10} -\hlstd{a} \hlopt{>} \hlnum{3} \hlopt{|} \hlstd{a} \hlopt{+} \hlnum{2} \hlopt{<} \hlnum{3} -\end{alltt} -\end{kframe} -\end{knitrout} -\end{playground} - -Again, be aware of ``short-cut evaluation''. If the result does not depend on the missing value, then the result, \code{TRUE} or \code{FALSE} is returned. If the presence of the \code{NA} makes the end result unknown, then \code{NA} is returned. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{c} \hlkwb{<-} \hlkwd{c}\hlstd{(a,} \hlnum{NA}\hlstd{)} -\hlstd{c} \hlopt{>} \hlnum{5} -\end{alltt} -\begin{verbatim} -## [1] FALSE FALSE FALSE FALSE FALSE TRUE TRUE TRUE TRUE TRUE NA -\end{verbatim} -\begin{alltt} -\hlkwd{all}\hlstd{(c} \hlopt{>} \hlnum{5}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\begin{alltt} -\hlkwd{any}\hlstd{(c} \hlopt{>} \hlnum{5}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{all}\hlstd{(c} \hlopt{<} \hlnum{20}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] NA -\end{verbatim} -\begin{alltt} -\hlkwd{any}\hlstd{(c} \hlopt{>} \hlnum{20}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] NA -\end{verbatim} -\begin{alltt} -\hlkwd{is.na}\hlstd{(a)} -\end{alltt} -\begin{verbatim} -## [1] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE -\end{verbatim} -\begin{alltt} -\hlkwd{is.na}\hlstd{(c)} -\end{alltt} -\begin{verbatim} -## [1] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{any}\hlstd{(}\hlkwd{is.na}\hlstd{(c))} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{all}\hlstd{(}\hlkwd{is.na}\hlstd{(c))} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\end{kframe} -\end{knitrout} - -The behavior of many of base-\Rlang's functions when \code{NA}s are present in their input arguments can be modified. \code{TRUE} passed as an argument to parameter \code{na.rm}, results in \code{NA} values being \emph{removed} from the input \textbf{before} the function is applied. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{all}\hlstd{(c} \hlopt{<} \hlnum{20}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] NA -\end{verbatim} -\begin{alltt} -\hlkwd{any}\hlstd{(c} \hlopt{>} \hlnum{20}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] NA -\end{verbatim} -\begin{alltt} -\hlkwd{all}\hlstd{(c} \hlopt{<} \hlnum{20}\hlstd{,} \hlkwc{na.rm}\hlstd{=}\hlnum{TRUE}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{any}\hlstd{(c} \hlopt{>} \hlnum{20}\hlstd{,} \hlkwc{na.rm}\hlstd{=}\hlnum{TRUE}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{explainbox} -\label{box:floats} \label{par:float} -\index{floating point numbers!arithmetic|(}\index{machine arithmetic!precision|(} -\index{floats|see{floating point numbers}}\index{machine arithmetic!rounding errors}\index{Real numbers and computers} -\index{EPS ($\epsilon$)|see{machine arithmetic precision}}% -Here I give some examples for which the finite resolution of computer machine floats, as compared to Real numbers as defined in mathematics, can cause serious problems. In \Rpgrm, numbers that are not integers are stored as \emph{double-precision floats}. In addition to having limits to the largest and smallest numbers that can be represented, the precision of floats is limited by the number of significant digits that can be stored. Precision is usually described by ``epsilon'' ($\epsilon$), abbreviated \emph{eps}, defined as the largest value of $\epsilon$ for which $1 + \epsilon = 1$. The finite resolution of floats can lead to unexpected results when testing for equality. In the second example below, the result of the subtraction is still exactly 1 due to insufficient resolution. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlnum{0} \hlopt{-} \hlnum{1e-20} -\end{alltt} -\begin{verbatim} -## [1] -1e-20 -\end{verbatim} -\begin{alltt} -\hlnum{1} \hlopt{-} \hlnum{1e-20} -\end{alltt} -\begin{verbatim} -## [1] 1 -\end{verbatim} -\end{kframe} -\end{knitrout} - -The finiteness of floats also affects tests of equality, which is more likely to result in errors with important consequences. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlnum{1e20} \hlopt{==} \hlnum{1} \hlopt{+} \hlnum{1e20} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlnum{1} \hlopt{==} \hlnum{1} \hlopt{+} \hlnum{1e-20} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlnum{0} \hlopt{==} \hlnum{1e-20} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\end{kframe} -\end{knitrout} - -As \Rpgrm can run on different types of computer hardware, the actual machine limits for storing numbers in memory may vary depending on the type of processor and even compiler used to build the \Rpgrm program executable. However, it is possible to obtain these values at run time from the variable \code{.Machine}, which is part of the \Rlang language. Please see the help page for \code{.Machine} for a detailed and up-to-date description of the available constants.\qRconst{.Machine\$double.eps}\qRconst{.Machine\$double.neg.eps}\qRconst{.Machine\$double.max}\qRconst{.Machine\$double.min} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{.Machine}\hlopt{$}\hlstd{double.eps} -\end{alltt} -\begin{verbatim} -## [1] 2.220446e-16 -\end{verbatim} -\begin{alltt} -\hlstd{.Machine}\hlopt{$}\hlstd{double.neg.eps} -\end{alltt} -\begin{verbatim} -## [1] 1.110223e-16 -\end{verbatim} -\begin{alltt} -\hlstd{.Machine}\hlopt{$}\hlstd{double.max} -\end{alltt} -\begin{verbatim} -## [1] 1024 -\end{verbatim} -\begin{alltt} -\hlstd{.Machine}\hlopt{$}\hlstd{double.min} -\end{alltt} -\begin{verbatim} -## [1] -1022 -\end{verbatim} -\end{kframe} -\end{knitrout} - -The last two values refer to the exponents of 10, rather than the maximum and minimum size of numbers that can be handled as objects of class \Rclass{double}. Values outside these limits are stored as \Rconst{-Inf} or \Rconst{Inf} and enter arithmetic as infinite values according the mathematical rules. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlnum{1e1026} -\end{alltt} -\begin{verbatim} -## [1] Inf -\end{verbatim} -\begin{alltt} -\hlnum{1e-1026} -\end{alltt} -\begin{verbatim} -## [1] 0 -\end{verbatim} -\begin{alltt} -\hlnum{Inf} \hlopt{+} \hlnum{1} -\end{alltt} -\begin{verbatim} -## [1] Inf -\end{verbatim} -\begin{alltt} -\hlopt{-}\hlnum{Inf} \hlopt{+} \hlnum{1} -\end{alltt} -\begin{verbatim} -## [1] -Inf -\end{verbatim} -\end{kframe} -\end{knitrout} - -As \Rclass{integer} values are stored in machine memory without loss of precision, epsilon is not defined for \Rclass{integer} values.\qRconst{.Machine\$integer.max} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{.Machine}\hlopt{$}\hlstd{integer.max} -\end{alltt} -\begin{verbatim} -## [1] 2147483647 -\end{verbatim} -\begin{alltt} -\hlnum{2147483699L} -\end{alltt} -\begin{verbatim} -## [1] 2147483699 -\end{verbatim} -\end{kframe} -\end{knitrout} - -In those statements in the chunk below where at least one operand is \Rclass{double} the \Rclass{integer} operands are \emph{promoted} to \Rclass{double} before computation. A similar promotion does not take place when operations are among \Rclass{integer} values, resulting in \emph{overflow}\index{arithmetic overflow}\index{overflow|see{arithmetic overflow}}, meaning numbers that are too big to be represented as \Rclass{integer} values. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlnum{2147483600L} \hlopt{+} \hlnum{99L} -\end{alltt} - - -{\ttfamily\noindent\color{warningcolor}{\#\# Warning in 2147483600L + 99L: NAs produced by integer overflow}}\begin{verbatim} -## [1] NA -\end{verbatim} -\begin{alltt} -\hlnum{2147483600L} \hlopt{+} \hlnum{99} -\end{alltt} -\begin{verbatim} -## [1] 2147483699 -\end{verbatim} -\begin{alltt} -\hlnum{2147483600L} \hlopt{*} \hlnum{2147483600L} -\end{alltt} - - -{\ttfamily\noindent\color{warningcolor}{\#\# Warning in 2147483600L * 2147483600L: NAs produced by integer overflow}}\begin{verbatim} -## [1] NA -\end{verbatim} -\begin{alltt} -\hlnum{2147483600L} \hlopt{*} \hlnum{2147483600} -\end{alltt} -\begin{verbatim} -## [1] 4.611686e+18 -\end{verbatim} -\end{kframe} -\end{knitrout} - -We see next that the exponentiation operator \Roperator{\^{}} forces the promotion\index{type promotion}\index{arithmetic overflow!type promotion} of its arguments to \Rclass{double}, resulting in no overflow. In contrast, as seen above, the multiplication operator \Roperator{*} operates on integers resulting in overflow. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlnum{2147483600L} \hlopt{*} \hlnum{2147483600L} -\end{alltt} - - -{\ttfamily\noindent\color{warningcolor}{\#\# Warning in 2147483600L * 2147483600L: NAs produced by integer overflow}}\begin{verbatim} -## [1] NA -\end{verbatim} -\begin{alltt} -\hlnum{2147483600L}\hlopt{^}\hlnum{2L} -\end{alltt} -\begin{verbatim} -## [1] 4.611686e+18 -\end{verbatim} -\end{kframe} -\end{knitrout} -\index{floating point numbers!arithmetic|)}\index{machine arithmetic!precision|)} -\end{explainbox} - -\begin{warningbox} -\index{comparison of floating point numbers|(}\index{inequality and equality tests|(}\index{loss of numeric precision}In many situations, when writing programs one should avoid testing for equality of floating point numbers (`floats'). Here we show how to gracefully handle rounding errors. As the example shows, rounding errors may accumulate, and in practice \verb|.Machine$double.eps| is not always a good value to safely use in tests for ``zero,'' and a larger value may be needed. Whenever possible according to the logic of the calculations, it is best to test for inequalities, for example using \verb|x <= 1.0| instead of \verb|x == 1.0|. If this is not possible, then the tests should be done replacing tests like \verb|x == 1.0| with \verb|abs(x - 1.0) < eps|. Function \Rfunction{abs()} returns the absolute value, in simpler words, makes all values positive or zero, by changing the sign of negative values, or in mathematical notation $|x| = |-x|$. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a} \hlopt{==} \hlnum{0.0} \hlcom{# may not always work} -\end{alltt} -\begin{verbatim} -## [1] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE -\end{verbatim} -\begin{alltt} -\hlkwd{abs}\hlstd{(a)} \hlopt{<} \hlnum{1e-15} \hlcom{# is safer} -\end{alltt} -\begin{verbatim} -## [1] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{sin}\hlstd{(pi)} \hlopt{==} \hlnum{0.0} \hlcom{# angle in radians, not degrees!} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\begin{alltt} -\hlkwd{sin}\hlstd{(}\hlnum{2} \hlopt{*} \hlstd{pi)} \hlopt{==} \hlnum{0.0} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\begin{alltt} -\hlkwd{abs}\hlstd{(}\hlkwd{sin}\hlstd{(pi))} \hlopt{<} \hlnum{1e-15} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{abs}\hlstd{(}\hlkwd{sin}\hlstd{(}\hlnum{2} \hlopt{*} \hlstd{pi))} \hlopt{<} \hlnum{1e-15} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{sin}\hlstd{(pi)} -\end{alltt} -\begin{verbatim} -## [1] 1.224606e-16 -\end{verbatim} -\begin{alltt} -\hlkwd{sin}\hlstd{(}\hlnum{2} \hlopt{*} \hlstd{pi)} -\end{alltt} -\begin{verbatim} -## [1] -2.449213e-16 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\index{comparison of floating point numbers|)}\index{inequality and equality tests|)} -\end{warningbox} - -\index{comparison operators|)}\index{operators!comparison|)} -\index{classes and modes!logical|)} - -\section{Sets and set operations} -\index{sets|(}\index{algebra of sets}\index{operators!set|(} - -The \Rlang language supports set operations on vectors. They can be useful in many different contexts when manipulating and comparing vectors of values. Set algebra operations and their equivalents in mathematical notation and \Rlang functions are: \emph{union}, $\cup$, \code{union()}; \emph{intersection}, $\cap$, \code{intersect()}; \emph{difference (asymmetrical)}, $-$, \code{setdiff()}; \emph{equality test} \code{setequal()}; \emph{membership}, \code{is.element()} and \code{\%in\%}. The first three functions return vector of the same mode as their inputs, and the last three a \code{logical} vector. The action of the first three operations is most easily illustrated with Venn diagrams.\vspace{1ex} - -\begin{small} -\hfill% -\begin{tikzpicture}[thick, - set/.style = {circle, - minimum size = 3cm, - fill=blue!15}] - -% Set A -\node[set,label={135:$A$}] (A) at (0,0) {}; - -% Set B -\node[set,label={45:$B$}] (B) at (1.8,0) {}; - -% Intersection -\begin{scope} - \clip (0,0) circle(1.5cm); - \clip (1.8,0) circle(1.5cm); - \fill[blue!15](0,0) circle(1.5cm); -\end{scope} - -% Circles outline -\draw (0,0) circle(1.5cm); -\draw (1.8,0) circle(1.5cm); - -% Set intersection label -\node at (0.9,0) {$A\cup B$}; - -\end{tikzpicture}% -\hfill% -\begin{tikzpicture}[thick, - set/.style = {circle, - minimum size = 3cm, - fill = blue!5}] - -% Set A -\node[set,label={135:$A$}] (A) at (0,0) {}; - -% Set B -\node[set,label={45:$B$}] (B) at (1.8,0) {}; - -% Intersection -\begin{scope} - \clip (0,0) circle(1.5cm); - \clip (1.8,0) circle(1.5cm); - \fill[blue!15](0,0) circle(1.5cm); -\end{scope} -% Circles outline -\draw (0,0) circle(1.5cm); -\draw (1.8,0) circle(1.5cm); - -% Set intersection label -\node at (0.9,0) {$A\cap B$}; - -\end{tikzpicture}% -\hfill% -\vspace{2ex} - -\hfill% -\begin{tikzpicture}[thick, - set/.style = {circle, - minimum size = 3cm}] - -% Set A -\node[set,label={135:$A$},fill=blue!15] (A) at (0,0) {}; - -% Set B -\node[set,label={45:$B$},fill=blue!5] (B) at (1.8,0) {}; - -% Circles outline -\draw (0,0) circle(1.5cm); -\draw (1.8,0) circle(1.5cm); - -% Set intersection label -\node at (0.9,0) {$A - B$}; - -\end{tikzpicture}% -\hfill% -\begin{tikzpicture}[thick, - set/.style = {circle, - minimum size = 3cm}] - -% Set B -\node[set,label={45:$B$},fill=blue!15] (B) at (1.8,0) {}; - -% Set A -\node[set,label={135:$A$},fill=blue!5] (A) at (0,0) {}; - -% Circles outline -\draw (0,0) circle(1.5cm); -\draw (1.8,0) circle(1.5cm); - -% Set intersection label -\node at (0.9,0) {$B - A$}; - -\end{tikzpicture}% -\hfill% -\end{small} -\vspace{1ex} - -In Bioinformatics it is usual, for example, to have character vectors of gene tags. We may have a vector for each of a set of different samples, and need to compare them. However, we start by using a more mundane example, everyday shopping, as illustration, followed by explanations. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{fruits} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"apple"}\hlstd{,} \hlstr{"pear"}\hlstd{,} \hlstr{"orange"}\hlstd{,} \hlstr{"lemon"}\hlstd{,} \hlstr{"tangerine"}\hlstd{)} -\hlstd{bakery} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"bread"}\hlstd{,} \hlstr{"buns"}\hlstd{,} \hlstr{"cake"}\hlstd{,} \hlstr{"cookies"}\hlstd{)} -\hlstd{dairy} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"milk"}\hlstd{,} \hlstr{"butter"}\hlstd{,} \hlstr{"cheese"}\hlstd{)} -\hlstd{shopping} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"bread"}\hlstd{,} \hlstr{"butter"}\hlstd{,} \hlstr{"apple"}\hlstd{,} \hlstr{"cheese"}\hlstd{,} \hlstr{"orange"}\hlstd{)} -\hlkwd{intersect}\hlstd{(fruits, shopping)} -\end{alltt} -\begin{verbatim} -## [1] "apple" "orange" -\end{verbatim} -\begin{alltt} -\hlkwd{intersect}\hlstd{(bakery, shopping)} -\end{alltt} -\begin{verbatim} -## [1] "bread" -\end{verbatim} -\begin{alltt} -\hlkwd{intersect}\hlstd{(dairy, shopping)} -\end{alltt} -\begin{verbatim} -## [1] "butter" "cheese" -\end{verbatim} -\begin{alltt} -\hlstr{"lemon"} \hlopt{%in%} \hlstd{dairy} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\begin{alltt} -\hlstr{"lemon"} \hlopt{%in%} \hlstd{fruits} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlstd{dairy} \hlopt{%in%} \hlstd{shopping} -\end{alltt} -\begin{verbatim} -## [1] FALSE TRUE TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{setdiff}\hlstd{(}\hlkwd{union}\hlstd{(bakery, dairy), shopping)} -\end{alltt} -\begin{verbatim} -## [1] "buns" "cake" "cookies" "milk" -\end{verbatim} -\end{kframe} -\end{knitrout} - -For explanations we use abstract (symbolic) examples. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.set} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"b"}\hlstd{,} \hlstr{"c"}\hlstd{,} \hlstr{"b"}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - -To test if a given value belongs to a set, we use operator \Roperator{\%in\%} or its function equivalent \Rfunction{is.element()}. In the algebra of sets notation, this is written $a \in A$, where $A$ is a set and $a$ a member. The second statement shows that the \code{\%in\%} operator is vectorized on its left-hand-side (lhs) operand, returning a logical vector. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{is.element}\hlstd{(}\hlstr{"a"}\hlstd{, my.set)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlstr{"a"} \hlopt{%in%} \hlstd{my.set} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"a"}\hlstd{,} \hlstr{"z"}\hlstd{)} \hlopt{%in%} \hlstd{my.set} -\end{alltt} -\begin{verbatim} -## [1] TRUE TRUE FALSE -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{explainbox} -Keep in mind that inclusion is an asymmetrical (not reflective) operation among sets. The rhs argument is interpreted as a set, while the lhs argument is interpreted as a vector of values to test for inclusion. In other words, any duplicate member in the lhs will be retained while the rhs is interpreted as a set of unique values. The returned logical vector has the same length as the lhs. -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.set} \hlopt{%in%} \hlstr{"a"} -\end{alltt} -\begin{verbatim} -## [1] TRUE FALSE FALSE FALSE -\end{verbatim} -\end{kframe} -\end{knitrout} -\end{explainbox} - -The negation of inclusion is $a \not\in A$, and coded in \Rlang by applying the negation operator \Roperator{!} to the result of the test done with \Roperator{\%in\%} or function \Rfunction{is.element()}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlopt{!}\hlkwd{is.element}\hlstd{(}\hlstr{"a"}\hlstd{, my.set)} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\begin{alltt} -\hlopt{!}\hlstr{"a"} \hlopt{%in%} \hlstd{my.set} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\begin{alltt} -\hlopt{!}\hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"a"}\hlstd{,} \hlstr{"z"}\hlstd{)} \hlopt{%in%} \hlstd{my.set} -\end{alltt} -\begin{verbatim} -## [1] FALSE FALSE TRUE -\end{verbatim} -\end{kframe} -\end{knitrout} - -Although inclusion is a set operation, it is also very useful for the simplification of \code{if()\ldots else} statements by replacing multiple tests for alternative constant values of the same \code{mode} chained by multiple \Roperator{|} operators. A useful property of \Roperator{\%in\%} and \Rfunction{is.element()} is that they never return \code{NA}. - -\begin{playground} -Use operator \Roperator{\%in\%} to write more concisely the following comparisons. Hint: see section \ref{sec:calc:boolean} on page \pageref{sec:calc:boolean} for the difference between \code{|} and \code{||} operators. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{x} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"a"}\hlstd{,} \hlstr{"z"}\hlstd{)} -\hlstd{x} \hlopt{==} \hlstr{"a"} \hlopt{|} \hlstd{x} \hlopt{==} \hlstr{"b"} \hlopt{|} \hlstd{x} \hlopt{==} \hlstr{"c"} \hlopt{|} \hlstd{x} \hlopt{==} \hlstr{"d"} -\end{alltt} -\end{kframe} -\end{knitrout} - -Convert the \code{logical} vectors of length 3 into a vector of length one. Hint: see help for functions \code{all()} and \code{any()}. -\end{playground} - -With \Rfunction{unique()} we convert a vector of possibly repeated values into a set of unique values. In the algebra of sets, a certain object belongs or not to a set. Consequently, in a set, multiple copies of the same object or value are meaningless. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{unique}\hlstd{(my.set)} -\end{alltt} -\begin{verbatim} -## [1] "a" "b" "c" -\end{verbatim} -\begin{alltt} -\hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"a"}\hlstd{,} \hlstr{"z"}\hlstd{)} \hlopt{%in%} \hlkwd{unique}\hlstd{(my.set)} -\end{alltt} -\begin{verbatim} -## [1] TRUE TRUE FALSE -\end{verbatim} -\end{kframe} -\end{knitrout} - -In the notation used in algebra of sets, the set union operator is $\cup$ while the intersection operator is $\cap$. If we have sets $A$ and $B$, their union is given by $A \cup B$---in the next three examples, \code{c("a", "a", "z")} is a constant, while \code{my.set} is a variable. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{union}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"a"}\hlstd{,} \hlstr{"z"}\hlstd{), my.set)} -\end{alltt} -\begin{verbatim} -## [1] "a" "z" "b" "c" -\end{verbatim} -\end{kframe} -\end{knitrout} - -If we have sets $A$ and $B$, their intersection is given by $A \cap B$. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{intersect}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"a"}\hlstd{,} \hlstr{"z"}\hlstd{), my.set)} -\end{alltt} -\begin{verbatim} -## [1] "a" -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{playground} -What do you expect to be the difference between the values returned by the three statements in the code chunk below? Before running them, write down your expectations about the value each one will return. Only then run the code. Independently of whether your predictions were correct or not, write down an explanation of what each statement's operation is. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{union}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"a"}\hlstd{,} \hlstr{"z"}\hlstd{), my.set)} -\hlkwd{c}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"a"}\hlstd{,} \hlstr{"z"}\hlstd{), my.set)} -\hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"a"}\hlstd{,} \hlstr{"z"}\hlstd{, my.set)} -\end{alltt} -\end{kframe} -\end{knitrout} - -In the algebra of sets notation $A \subseteq B$, where $A$ and $B$ are sets, indicates that $A$ is a subset or equal to $B$. For a true subset, the notation is $A \subset B$. The operators with the reverse direction are $\supseteq$ and $\supset$. Implement these four operations in four \Rlang statements, and test them on sets (represented by \Rlang vectors) with different ``overlap'' among set members. - -\end{playground} - -\begin{explainbox} -All set algebra examples above use character vectors and character constants. This is just the most frequent use case. Sets operations are valid on vectors of any atomic class, including \code{integer}, and computed values can be part of statements. In the second and third statements in the next chunk, we need to use additional parentheses to alter the default order of precedence between arithmetic and set operators. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlnum{9L} \hlopt{%in%} \hlnum{2L}\hlopt{:}\hlnum{4L} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\begin{alltt} -\hlnum{9L} \hlopt{%in%} \hlstd{((}\hlnum{2L}\hlopt{:}\hlnum{4L}\hlstd{)} \hlopt{*} \hlstd{(}\hlnum{2L}\hlopt{:}\hlnum{4L}\hlstd{))} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{c}\hlstd{(}\hlnum{1L}\hlstd{,} \hlnum{16L}\hlstd{)} \hlopt{%in%} \hlstd{((}\hlnum{2L}\hlopt{:}\hlnum{4L}\hlstd{)} \hlopt{*} \hlstd{(}\hlnum{2L}\hlopt{:}\hlnum{4L}\hlstd{))} -\end{alltt} -\begin{verbatim} -## [1] FALSE TRUE -\end{verbatim} -\end{kframe} -\end{knitrout} - -\emph{Empty sets} are an important component of the algebra of sets, in \Rlang they are represented as vectors of zero length. Vectors and lists of zero length, which the \Rlang language fully supports, can be used to ``encode'' emptiness also in other contexts. These vectors do belong to a class such as \Rclass{numeric} or \Rclass{character} and must be compatible with other operands in an expression. By default, constructors for vectors, construct empty vectors. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{length}\hlstd{(}\hlkwd{integer}\hlstd{())} -\end{alltt} -\begin{verbatim} -## [1] 0 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlnum{1L} \hlopt{%in%} \hlkwd{integer}\hlstd{()} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\begin{alltt} -\hlkwd{setdiff}\hlstd{(}\hlnum{1L}\hlopt{:}\hlnum{4L}\hlstd{,} \hlkwd{union}\hlstd{(}\hlnum{1L}\hlopt{:}\hlnum{4L}\hlstd{,} \hlkwd{integer}\hlstd{()))} -\end{alltt} -\begin{verbatim} -## integer(0) -\end{verbatim} -\end{kframe} -\end{knitrout} - -Although set operators are defined for \Rclass{numeric} vectors, rounding errors in `floats' can result in unexpected results (see section \ref{box:floats} on page \pageref{box:floats}). The next two examples do, however, return the correct answers.\qRoperator{\%in\%} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlnum{9} \hlopt{%in%} \hlstd{(}\hlnum{2}\hlopt{:}\hlnum{4}\hlstd{)}\hlopt{^}\hlnum{2} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{5}\hlstd{)} \hlopt{%in%} \hlstd{(}\hlnum{1}\hlopt{:}\hlnum{10}\hlstd{)}\hlopt{^}\hlnum{2} -\end{alltt} -\begin{verbatim} -## [1] TRUE FALSE -\end{verbatim} -\end{kframe} -\end{knitrout} - -\end{explainbox} -\index{operators!set|)} -\index{sets|)} - -\section{Character values}\label{sec:calc:character} -\index{character strings}\index{classes and modes!character|(}\qRclass{character} -Character variables can be used to store any character. Character constants are written by enclosing characters in quotes. There are three types of quotes in the ASCII character set, double quotes \code{"}, single quotes \code{'}, and back ticks \code{`}. The first two types of quotes can be used as delimiters of \code{character} constants. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a} \hlkwb{<-} \hlstr{"A"} -\hlstd{a} -\end{alltt} -\begin{verbatim} -## [1] "A" -\end{verbatim} -\begin{alltt} -\hlstd{b} \hlkwb{<-} \hlstr{'A'} -\hlstd{b} -\end{alltt} -\begin{verbatim} -## [1] "A" -\end{verbatim} -\begin{alltt} -\hlstd{a} \hlopt{==} \hlstd{b} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{explainbox} -In many computer languages, vectors of characters are distinct from vectors of character strings. In these languages, character vectors store at each index position a single character, while vectors of character strings store at each index position strings of characters of various lengths, such as words or sentences. If you are familiar with \Clang or \Cpplang, you need to keep in mind that \Clang's \code{char} and \Rlang's \code{character} are not equivalent and that in \Rlang, \code{character} vectors are vectors of character strings. In contrast to these other languages, in \Rlang there is no predefined class for vectors of individual characters and character constants enclosed in double or single quotes are not different. -\end{explainbox} - -Concatenating character vectors of length one does not yield a longer character string, it yields instead a longer vector. -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a} \hlkwb{<-} \hlstr{'A'} -\hlstd{b} \hlkwb{<-} \hlstr{"bcdefg"} -\hlstd{c} \hlkwb{<-} \hlstr{"123"} -\hlstd{d} \hlkwb{<-} \hlkwd{c}\hlstd{(a, b, c)} -\hlstd{d} -\end{alltt} -\begin{verbatim} -## [1] "A" "bcdefg" "123" -\end{verbatim} -\end{kframe} -\end{knitrout} - -Having two different delimiters available makes it possible to choose the type of quotes used as delimiters so that other quotes can be included in a string. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a} \hlkwb{<-} \hlstr{"He said 'hello' when he came in"} -\hlstd{a} -\end{alltt} -\begin{verbatim} -## [1] "He said 'hello' when he came in" -\end{verbatim} -\begin{alltt} -\hlstd{b} \hlkwb{<-} \hlstr{'He said "hello" when he came in'} -\hlstd{b} -\end{alltt} -\begin{verbatim} -## [1] "He said \"hello\" when he came in" -\end{verbatim} -\end{kframe} -\end{knitrout} - -The\index{character string delimiters} outer quotes are not part of the string, they are ``delimiters'' used to mark the boundaries. As you can see when \code{b} is printed special characters can be represented using ``escape sequences''. There are several of them, and here we will show just four, new line (\verb|\n|) and tab (\verb|\t|), \verb|\"| the escape code for a quotation mark within a string and \verb|\\| the escape code for a single backslash \verb|\|. We also show here the different behavior of \Rfunction{print()} and \Rfunction{cat()}, with \Rfunction{cat()} \emph{interpreting} the escape sequences and \Rfunction{print()} displaying them as entered. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{c} \hlkwb{<-} \hlstr{"abc\textbackslash{}ndef\textbackslash{}tx\textbackslash{}"yz\textbackslash{}"\textbackslash{}\textbackslash{}\textbackslash{}tm"} -\hlkwd{print}\hlstd{(c)} -\end{alltt} -\begin{verbatim} -## [1] "abc\ndef\tx\"yz\"\\\tm" -\end{verbatim} -\begin{alltt} -\hlkwd{cat}\hlstd{(c)} -\end{alltt} -\begin{verbatim} -## abc -## def x"yz"\ m -\end{verbatim} -\end{kframe} -\end{knitrout} - -The \textit{escape codes}\index{character escape codes} work only in some contexts, as when using \Rfunction{cat()} to generate the output. For example, the new-line escape (\verb|\n|) can be embedded in strings used for axis-label, title or label in a plot to split them over two or more lines. -\index{classes and modes!character|)} - -\section{The `mode' and `class' of objects}\label{sec:rlang:mode} -\index{objects!mode} -Variables have a \emph{mode} that depends on what is stored in them. But different from other languages, assignment to a variable of a different mode is allowed and in most cases its mode changes together with its contents. However, there is a restriction that all elements in a vector, array or matrix, must be of the same mode. While this is not required for lists, which can be heterogenous. In practice this means that we can assign an object, such as a vector, with a different \code{mode} to a name already in use, but we cannot use indexing to assign an object of a different mode to individual members of a vector, matrix or array. Functions with names starting with \code{is.} are tests returning a logical value, \code{TRUE}, \code{FALSE} or \code{NA}. Function \Rfunction{mode()} returns the mode of an object, as a character string and \Rfunction{typeof()} returns R's internal type or storage mode.\qRfunction{is.character()}\qRfunction{is.numeric()}\qRfunction{is.logical()} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my_var} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{5} -\hlkwd{mode}\hlstd{(my_var)} \hlcom{# no distinction of integer or double} -\end{alltt} -\begin{verbatim} -## [1] "numeric" -\end{verbatim} -\begin{alltt} -\hlkwd{typeof}\hlstd{(my_var)} -\end{alltt} -\begin{verbatim} -## [1] "integer" -\end{verbatim} -\begin{alltt} -\hlkwd{is.numeric}\hlstd{(my_var)} \hlcom{# no distinction of integer or double} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{is.double}\hlstd{(my_var)} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\begin{alltt} -\hlkwd{is.integer}\hlstd{(my_var)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{is.logical}\hlstd{(my_var)} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\begin{alltt} -\hlkwd{is.character}\hlstd{(my_var)} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\begin{alltt} -\hlstd{my_var} \hlkwb{<-} \hlstr{"abc"} -\hlkwd{mode}\hlstd{(my_var)} -\end{alltt} -\begin{verbatim} -## [1] "character" -\end{verbatim} -\end{kframe} -\end{knitrout} - -While \emph{mode} is a fundamental property, and limited to those modes defined as part of the \Rlang language, the concept of \emph{class}, is different in that new classes can be defined in user code. In particular, different \Rlang objects of a given mode, such as \code{numeric}, can belong to different \code{class}es. The use of classes for dispatching functions is discussed in section \ref{sec:script:objects:classes:methods} on page \pageref{sec:script:objects:classes:methods}, in relation to object-oriented programming in \Rlang. Method \Rfunction{class()} is used to query the class of an object, and method \Rfunction{inherits()} is used to test if an object belongs to a specific class or not (including ``parent'' classes, to be later described). - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{class}\hlstd{(my_var)} -\end{alltt} -\begin{verbatim} -## [1] "character" -\end{verbatim} -\begin{alltt} -\hlkwd{inherits}\hlstd{(my_var,} \hlstr{"character"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{inherits}\hlstd{(my_var,} \hlstr{"numeric"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\end{kframe} -\end{knitrout} - -\section{`Type' conversions}\label{sec:calc:type:conversion} -\index{type conversion|(} -The least-intuitive type conversions are those related to logical values. All others are as one would expect. By convention, functions used to convert objects from one mode to a different one have names starting with \code{as.}\footnote{Except for some packages in the \pkgnameNI{tidyverse} that use names starting with \code{as\_} instead of \code{as.}.}.\qRfunction{as.character()}\qRfunction{as.numeric()}\qRfunction{as.logical()} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{as.character}\hlstd{(}\hlnum{1}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] "1" -\end{verbatim} -\begin{alltt} -\hlkwd{as.numeric}\hlstd{(}\hlstr{"1"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] 1 -\end{verbatim} -\begin{alltt} -\hlkwd{as.logical}\hlstd{(}\hlstr{"TRUE"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{as.logical}\hlstd{(}\hlstr{"NA"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] NA -\end{verbatim} -\end{kframe} -\end{knitrout} - -Conversion takes place automatically in arithmetic and logical expressions. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlnum{TRUE} \hlopt{+} \hlnum{10} -\end{alltt} -\begin{verbatim} -## [1] 11 -\end{verbatim} -\begin{alltt} -\hlnum{1} \hlopt{||} \hlnum{0} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlnum{FALSE} \hlopt{| -}\hlnum{2}\hlopt{:}\hlnum{2} -\end{alltt} -\begin{verbatim} -## [1] TRUE TRUE FALSE TRUE TRUE -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{playground} -There is some flexibility in the conversion from character strings into \code{numeric} and \code{logical} values. Use the examples below plus your own variations to get an idea of what strings are acceptable and correctly converted and which are not. Do also pay attention at the conversion between \code{numeric} and \code{logical} values.\qRfunction{as.character()}\qRfunction{as.numeric()}\qRfunction{as.logical()} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{as.character}\hlstd{(}\hlnum{3.0e10}\hlstd{)} -\hlkwd{as.numeric}\hlstd{(}\hlstr{"5E+5"}\hlstd{)} -\hlkwd{as.numeric}\hlstd{(}\hlstr{"A"}\hlstd{)} -\hlkwd{as.numeric}\hlstd{(}\hlnum{TRUE}\hlstd{)} -\hlkwd{as.numeric}\hlstd{(}\hlnum{FALSE}\hlstd{)} -\hlkwd{as.logical}\hlstd{(}\hlstr{"T"}\hlstd{)} -\hlkwd{as.logical}\hlstd{(}\hlstr{"t"}\hlstd{)} -\hlkwd{as.logical}\hlstd{(}\hlstr{"true"}\hlstd{)} -\hlkwd{as.logical}\hlstd{(}\hlnum{100}\hlstd{)} -\hlkwd{as.logical}\hlstd{(}\hlnum{0}\hlstd{)} -\hlkwd{as.logical}\hlstd{(}\hlopt{-}\hlnum{1}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - -\end{playground} - -\begin{playground} -Compare the values returned by \Rfunction{trunc()} and \Rfunction{as.integer()} when applied to a floating point number, such as \code{12.34}. Check for the equality of values, and for the \emph{class} of the returned objects. -\end{playground} - -\begin{explainbox} -Using conversions, the difference between the length of a \code{character} vector and the number of characters composing each member ``string'' within a vector is obvious.\qRfunction{length()}\qRfunction{as.numeric()} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{f} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"1"}\hlstd{,} \hlstr{"2"}\hlstd{,} \hlstr{"3"}\hlstd{)} -\hlkwd{length}\hlstd{(f)} -\end{alltt} -\begin{verbatim} -## [1] 3 -\end{verbatim} -\begin{alltt} -\hlstd{g} \hlkwb{<-} \hlstr{"123"} -\hlkwd{length}\hlstd{(g)} -\end{alltt} -\begin{verbatim} -## [1] 1 -\end{verbatim} -\begin{alltt} -\hlkwd{as.numeric}\hlstd{(f)} -\end{alltt} -\begin{verbatim} -## [1] 1 2 3 -\end{verbatim} -\begin{alltt} -\hlkwd{as.numeric}\hlstd{(g)} -\end{alltt} -\begin{verbatim} -## [1] 123 -\end{verbatim} -\end{kframe} -\end{knitrout} -\end{explainbox} - -\sloppy -Other\index{formatted character strings from numbers} functions relevant to the ``conversion'' of numbers and other values are \Rfunction{format()}, and \Rfunction{sprintf()}. These two functions return \Rclass{character} strings, instead of \code{numeric} or other values, and are useful for printing output. One could think of these functions as advanced conversion functions returning formatted, and possibly combined and annotated, character strings. However, they are usually not considered normal conversion functions, as they are very rarely used in a way that preserves the original precision of the input values. We show here the use of \Rfunction{format()} and \Rfunction{sprintf()} with \code{numeric} values, but they can also be used with values of other modes. - -When using \Rfunction{format()}, the format used to display numbers is set by passing arguments to several different parameters. As \Rfunction{print()} calls \Rfunction{format()} to make numbers \emph{pretty} it accepts the same options. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{x} \hlkwb{=} \hlkwd{c}\hlstd{(}\hlnum{123.4567890}\hlstd{,} \hlnum{1.0}\hlstd{)} -\hlkwd{format}\hlstd{(x)} \hlcom{# using defaults} -\end{alltt} -\begin{verbatim} -## [1] "123.4568" " 1.0000" -\end{verbatim} -\begin{alltt} -\hlkwd{format}\hlstd{(x[}\hlnum{1}\hlstd{])} \hlcom{# using defaults} -\end{alltt} -\begin{verbatim} -## [1] "123.4568" -\end{verbatim} -\begin{alltt} -\hlkwd{format}\hlstd{(x[}\hlnum{2}\hlstd{])} \hlcom{# using defaults} -\end{alltt} -\begin{verbatim} -## [1] "1" -\end{verbatim} -\begin{alltt} -\hlkwd{format}\hlstd{(x,} \hlkwc{digits} \hlstd{=} \hlnum{3}\hlstd{,} \hlkwc{nsmall} \hlstd{=} \hlnum{1}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] "123.5" " 1.0" -\end{verbatim} -\begin{alltt} -\hlkwd{format}\hlstd{(x[}\hlnum{1}\hlstd{],} \hlkwc{digits} \hlstd{=} \hlnum{3}\hlstd{,} \hlkwc{nsmall} \hlstd{=} \hlnum{1}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] "123.5" -\end{verbatim} -\begin{alltt} -\hlkwd{format}\hlstd{(x[}\hlnum{2}\hlstd{],} \hlkwc{digits} \hlstd{=} \hlnum{3}\hlstd{,} \hlkwc{nsmall} \hlstd{=} \hlnum{1}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] "1.0" -\end{verbatim} -\begin{alltt} -\hlkwd{format}\hlstd{(x,} \hlkwc{digits} \hlstd{=} \hlnum{3}\hlstd{,} \hlkwc{scientific} \hlstd{=} \hlnum{TRUE}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] "1.23e+02" "1.00e+00" -\end{verbatim} -\end{kframe} -\end{knitrout} - -Function \Rfunction{sprintf()} is similar to \Clang's function of the same name. The user interface is rather unusual, but very powerful, once one learns the syntax. All the formatting is specified using a \code{character} string as template. In this template, placeholders for data and the formatting instructions are embedded using special codes. These codes start with a percent character. We show in the example below the use of some of these: \code{f} is used for \code{numeric} values to be formatted according to a ``fixed point,'' while \code{g} is used when we set the number of significant digits and \code{e} for exponential or \emph{scientific} notation. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{x} \hlkwb{=} \hlkwd{c}\hlstd{(}\hlnum{123.4567890}\hlstd{,} \hlnum{1.0}\hlstd{)} -\hlkwd{sprintf}\hlstd{(}\hlstr{"The numbers are: %4.2f and %.0f"}\hlstd{, x[}\hlnum{1}\hlstd{], x[}\hlnum{2}\hlstd{])} -\end{alltt} -\begin{verbatim} -## [1] "The numbers are: 123.46 and 1" -\end{verbatim} -\begin{alltt} -\hlkwd{sprintf}\hlstd{(}\hlstr{"The numbers are: %.4g and %.2g"}\hlstd{, x[}\hlnum{1}\hlstd{], x[}\hlnum{2}\hlstd{])} -\end{alltt} -\begin{verbatim} -## [1] "The numbers are: 123.5 and 1" -\end{verbatim} -\begin{alltt} -\hlkwd{sprintf}\hlstd{(}\hlstr{"The numbers are: %4.2e and %.0e"}\hlstd{, x[}\hlnum{1}\hlstd{], x[}\hlnum{2}\hlstd{])} -\end{alltt} -\begin{verbatim} -## [1] "The numbers are: 1.23e+02 and 1e+00" -\end{verbatim} -\end{kframe} -\end{knitrout} - -In the template \code{"The numbers are: \%4.2f and \%.0f"}, there are two placeholders for \code{numeric} values, \code{\%4.2f} and \code{\%.0f}, so in addition to the template, we pass two values extracted from the first two positions of vector \code{x}. These could have been two different vectors of length one, or even numeric constants. The template itself does not need to be a \code{character} constant as in these examples, as a variable can be also passed as argument. - -\begin{playground} -Function \Rfunction{format()} may be easier to use, in some cases, but \Rfunction{sprintf()} is more flexible and powerful. Those with experience in the use of the \Clang language will already know about \Rfunction{sprintf()} and its use of templates for formatting output. Even if you are familiar with \Clang, look up the help pages for both functions, and practice, by trying to create the same formatted output by means of the two functions. Do also play with these functions with other types of data like \code{integer} and \code{character}. -\end{playground} - -\begin{explainbox} -We have above described \Rconst{NA} as a single value ignoring modes, but in reality \Rconst{NA}s come in various flavors. \Rconst{NA\_real\_}, \Rconst{NA\_character\_}, etc. and \Rconst{NA} defaults to an \Rconst{NA} of class \Rclass{logical}. \Rconst{NA} is normally converted on the fly to other modes when needed, so in general \Rconst{NA} is all we need to use. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{NA}\hlstd{)} -\hlkwd{is.numeric}\hlstd{(a[}\hlnum{2}\hlstd{])} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{is.numeric}\hlstd{(}\hlnum{NA}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\begin{alltt} -\hlstd{b} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"abc"}\hlstd{,} \hlnum{NA}\hlstd{)} -\hlkwd{is.character}\hlstd{(b[}\hlnum{2}\hlstd{])} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{is.character}\hlstd{(}\hlnum{NA}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\begin{alltt} -\hlkwd{class}\hlstd{(}\hlnum{NA}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] "logical" -\end{verbatim} -\end{kframe} -\end{knitrout} - -Even the statement below works transparently. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a[}\hlnum{3}\hlstd{]} \hlkwb{<-} \hlstd{b[}\hlnum{2}\hlstd{]} -\end{alltt} -\end{kframe} -\end{knitrout} -\end{explainbox} - -\index{type conversion|)} - -\section{Vector manipulation}\label{sec:vectors}\label{sec:calc:indexing} -\index{vectors!indexing|(}\index{vectors!member extraction} -If you have read earlier sections of this chapter, you already know how to create a vector. \Rlang's vectors are equivalent to what would be written in mathematical notation as $a_{1\ldots n} = a_1, a_2, \ldots, a_i, \ldots, a_n$, they are not the equivalent to the vectors, common in Physics, which are symbolized with an arrow as an ``accent,'' such as $\overrightarrow{\mathbf{F}}$. - -In this section we are going to see how to extract or retrieve, replace, and move elements such as $a_2$ from a vector. Elements are extracted using an index enclosed in single square brackets. The index indicates the position in the vector, starting from one, following the usual mathematical tradition. We here use a vector of characters to make it clear the distinction between contents of the vector from the numerical indexes. What in maths notation would be $a_i$ for a vector $a_{1\ldots n}$, in \Rpgrm is represented as \code{a[i]} and the whole vector, by excluding the brackets and indexing vector, as \code{a}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a} \hlkwb{<-} \hlstd{letters[}\hlnum{1}\hlopt{:}\hlnum{10}\hlstd{]} -\hlstd{a} -\end{alltt} -\begin{verbatim} -## [1] "a" "b" "c" "d" "e" "f" "g" "h" "i" "j" -\end{verbatim} -\begin{alltt} -\hlstd{a[}\hlnum{2}\hlstd{]} -\end{alltt} -\begin{verbatim} -## [1] "b" -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{explainbox} -Four constant vectors are available in \Rlang: \Rconst{letters}, \Rconst{LETTERS}, \Rconst{month.name} and \Rconst{month.abb}, of which we used \code{letters} in the example above. These vectors are always for English, irrespective of the locale. -\end{explainbox} - -\begin{warningbox} -In \Rlang, indexes always start from one, while in some other programming languages such as \Clang and \Cpplang, indexes start from zero. It is important to be aware of this difference, as many computation algorithms are valid only under a given indexing convention. -\end{warningbox} - -It is possible to extract a subset of the elements of a vector in a single operation, using a vector of indexes. The positions of the extracted elements in the result (``returned value'') are determined by the ordering of the members of the vector of indexes---easier to demonstrate than to explain. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a[}\hlkwd{c}\hlstd{(}\hlnum{3}\hlstd{,} \hlnum{2}\hlstd{)]} -\end{alltt} -\begin{verbatim} -## [1] "c" "b" -\end{verbatim} -\begin{alltt} -\hlstd{a[}\hlnum{10}\hlopt{:}\hlnum{1}\hlstd{]} -\end{alltt} -\begin{verbatim} -## [1] "j" "i" "h" "g" "f" "e" "d" "c" "b" "a" -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{playground} -The length of the indexing vector is not restricted by the length of the indexed vector. However, only numerical indexes that match positions present in the indexed vector can extract values. Those values in the indexing vector pointing to positions that are not present in the indexed vector, result in \code{NA}s. This is easier to learn by \emph{playing} with \Rlang, than from explanations. Play with \Rlang, using the following examples as a starting point. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{length}\hlstd{(a)} -\hlstd{a[}\hlkwd{c}\hlstd{(}\hlnum{3}\hlstd{,} \hlnum{3}\hlstd{,} \hlnum{3}\hlstd{,} \hlnum{3}\hlstd{)]} -\hlstd{a[}\hlkwd{c}\hlstd{(}\hlnum{10}\hlopt{:}\hlnum{1}\hlstd{,} \hlnum{1}\hlopt{:}\hlnum{10}\hlstd{)]} -\hlstd{a[}\hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{11}\hlstd{)]} -\hlstd{a[}\hlnum{11}\hlstd{]} -\end{alltt} -\end{kframe} -\end{knitrout} - -Have you tried some of your own examples? If not yet, do \emph{play} with additional variations of your own before continuing. - -\end{playground} - -Negative indexes have a special meaning; they indicate the positions at which values should be excluded. Be aware that it is \emph{illegal} to mix positive and negative values in the same indexing operation. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a[}\hlopt{-}\hlnum{2}\hlstd{]} -\end{alltt} -\begin{verbatim} -## [1] "a" "c" "d" "e" "f" "g" "h" "i" "j" -\end{verbatim} -\begin{alltt} -\hlstd{a[}\hlopt{-}\hlkwd{c}\hlstd{(}\hlnum{3}\hlstd{,}\hlnum{2}\hlstd{)]} -\end{alltt} -\begin{verbatim} -## [1] "a" "d" "e" "f" "g" "h" "i" "j" -\end{verbatim} -\begin{alltt} -\hlstd{a[}\hlopt{-}\hlnum{3}\hlopt{:-}\hlnum{2}\hlstd{]} -\end{alltt} -\begin{verbatim} -## [1] "a" "d" "e" "f" "g" "h" "i" "j" -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{advplayground} -Results from indexing with special values and zero may be surprising. Try to build a rule from the examples below, a rule that will help you remember what to expect next time you are confronted with similar statements using ``subscripts'' which are special values instead of integers larger or equal to one---this is likely to happen sooner or later as these special values can be returned by different \Rlang expressions depending on the value of operands or function arguments, some of them described earlier in this chapter. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a[ ]} -\hlstd{a[}\hlnum{0}\hlstd{]} -\hlstd{a[}\hlkwd{numeric}\hlstd{(}\hlnum{0}\hlstd{)]} -\hlstd{a[}\hlnum{NA}\hlstd{]} -\hlstd{a[}\hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{NA}\hlstd{)]} -\hlstd{a[}\hlkwa{NULL}\hlstd{]} -\hlstd{a[}\hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,} \hlkwa{NULL}\hlstd{)]} -\end{alltt} -\end{kframe} -\end{knitrout} -\end{advplayground} - -Another way of indexing, which is very handy, but not available in most other programming languages, is indexing with a vector of \code{logical} values. The \code{logical} vector used for indexing is usually of the same length as the vector from which elements are going to be selected. However, this is not a requirement, because if the \code{logical} vector of indexes is shorter than the indexed vector, it is ``recycled'' as discussed above in relation to other operators. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a[}\hlnum{TRUE}\hlstd{]} -\end{alltt} -\begin{verbatim} -## [1] "a" "b" "c" "d" "e" "f" "g" "h" "i" "j" -\end{verbatim} -\begin{alltt} -\hlstd{a[}\hlnum{FALSE}\hlstd{]} -\end{alltt} -\begin{verbatim} -## character(0) -\end{verbatim} -\begin{alltt} -\hlstd{a[}\hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{)]} -\end{alltt} -\begin{verbatim} -## [1] "a" "c" "e" "g" "i" -\end{verbatim} -\begin{alltt} -\hlstd{a[}\hlkwd{c}\hlstd{(}\hlnum{FALSE}\hlstd{,} \hlnum{TRUE}\hlstd{)]} -\end{alltt} -\begin{verbatim} -## [1] "b" "d" "f" "h" "j" -\end{verbatim} -\begin{alltt} -\hlstd{a} \hlopt{>} \hlstr{"c"} -\end{alltt} -\begin{verbatim} -## [1] FALSE FALSE FALSE TRUE TRUE TRUE TRUE TRUE TRUE TRUE -\end{verbatim} -\begin{alltt} -\hlstd{a[a} \hlopt{>} \hlstr{"c"}\hlstd{]} -\end{alltt} -\begin{verbatim} -## [1] "d" "e" "f" "g" "h" "i" "j" -\end{verbatim} -\end{kframe} -\end{knitrout} - -Indexing with logical vectors is very frequently used in \Rlang because comparison operators are vectorized. Comparison operators, when applied to a vector, return a \code{logical} vector, a vector that can be used to extract the elements for which the result of the comparison test was \code{TRUE}. - -\begin{playground} -The examples in this text box demonstrate additional uses of logical vectors: 1) the logical vector returned by a vectorized comparison can be stored in a variable, and the variable used as a ``selector'' for extracting a subset of values from the same vector, or from a different vector. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a} \hlkwb{<-} \hlstd{letters[}\hlnum{1}\hlopt{:}\hlnum{10}\hlstd{]} -\hlstd{b} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{10} -\hlstd{selector} \hlkwb{<-} \hlstd{a} \hlopt{>} \hlstr{"c"} -\hlstd{selector} -\hlstd{a[selector]} -\hlstd{b[selector]} -\end{alltt} -\end{kframe} -\end{knitrout} - -Numerical indexes can be obtained from a logical vector by means of function \code{which()}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{indexes} \hlkwb{<-} \hlkwd{which}\hlstd{(a} \hlopt{>} \hlstr{"c"}\hlstd{)} -\hlstd{indexes} -\hlstd{a[indexes]} -\hlstd{b[indexes]} -\end{alltt} -\end{kframe} -\end{knitrout} - -Make sure to understand the examples above. These constructs are very widely used in \Rlang because they allow for concise code that is easy to understand once you are familiar with the indexing rules. However, if you do not command these rules, many of these terse statements will be unintelligible to you. -\end{playground} - -Indexing can be used on either side of an assignment expression. In the chunk below, we use the extraction operator on the left-hand side of the assignments to replace values only at selected positions in the vector. This may look rather esoteric at first sight, but it is just a simple extension of the logic of indexing described above. It works, because the low precedence of the \Roperator{<-} operator results in both the left-hand side and the right-hand side being fully evaluated before the assignment takes place. To make the changes to the vectors easier to follow, we use identical vectors with different names for each of these examples. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{10} -\hlstd{a} -\end{alltt} -\begin{verbatim} -## [1] 1 2 3 4 5 6 7 8 9 10 -\end{verbatim} -\begin{alltt} -\hlstd{a[}\hlnum{1}\hlstd{]} \hlkwb{<-} \hlnum{99} -\hlstd{a} -\end{alltt} -\begin{verbatim} -## [1] 99 2 3 4 5 6 7 8 9 10 -\end{verbatim} -\begin{alltt} -\hlstd{b} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{10} -\hlstd{b[}\hlkwd{c}\hlstd{(}\hlnum{2}\hlstd{,}\hlnum{4}\hlstd{)]} \hlkwb{<-} \hlopt{-}\hlnum{99} \hlcom{# recycling} -\hlstd{b} -\end{alltt} -\begin{verbatim} -## [1] 1 -99 3 -99 5 6 7 8 9 10 -\end{verbatim} -\begin{alltt} -\hlstd{c} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{10} -\hlstd{c[}\hlkwd{c}\hlstd{(}\hlnum{2}\hlstd{,}\hlnum{4}\hlstd{)]} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlopt{-}\hlnum{99}\hlstd{,} \hlnum{99}\hlstd{)} -\hlstd{c} -\end{alltt} -\begin{verbatim} -## [1] 1 -99 3 99 5 6 7 8 9 10 -\end{verbatim} -\begin{alltt} -\hlstd{d} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{10} -\hlstd{d[}\hlnum{TRUE}\hlstd{]} \hlkwb{<-} \hlnum{1} \hlcom{# recycling} -\hlstd{d} -\end{alltt} -\begin{verbatim} -## [1] 1 1 1 1 1 1 1 1 1 1 -\end{verbatim} -\begin{alltt} -\hlstd{e} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{10} -\hlstd{e} \hlkwb{<-} \hlnum{1} \hlcom{# no recycling} -\hlstd{e} -\end{alltt} -\begin{verbatim} -## [1] 1 -\end{verbatim} -\end{kframe} -\end{knitrout} - -We can also use subscripting on both sides of the assignment operator, for example, to swap two elements. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a} \hlkwb{<-} \hlstd{letters[}\hlnum{1}\hlopt{:}\hlnum{10}\hlstd{]} -\hlstd{a[}\hlnum{1}\hlopt{:}\hlnum{2}\hlstd{]} \hlkwb{<-} \hlstd{a[}\hlnum{2}\hlopt{:}\hlnum{1}\hlstd{]} -\hlstd{a} -\end{alltt} -\begin{verbatim} -## [1] "b" "a" "c" "d" "e" "f" "g" "h" "i" "j" -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{playground} -Do play with subscripts to your heart's content, really grasping how they work and how they can be used, will be very useful in anything you do in the future with \Rlang. Even the contrived example below follows the same simple rules, just study it bit by bit. Hint: the second statement in the chunk below, modifies \code{a}, so, when studying variations of this example you will need to recreate \code{a} by executing the first statement, each time you run a variation of the second statement. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a} \hlkwb{<-} \hlstd{letters[}\hlnum{1}\hlopt{:}\hlnum{10}\hlstd{]} -\hlstd{a[}\hlnum{5}\hlopt{:}\hlnum{1}\hlstd{]} \hlkwb{<-} \hlstd{a[}\hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,}\hlnum{FALSE}\hlstd{)]} -\hlstd{a} -\end{alltt} -\begin{verbatim} -## [1] "i" "g" "e" "c" "a" "f" "g" "h" "i" "j" -\end{verbatim} -\end{kframe} -\end{knitrout} - -\end{playground} - -\begin{explainbox}\label{box:vec:sort} -In \Rlang, indexing with positional indexes can be done with \Rclass{integer} or \Rclass{numeric} values. Numeric values can be floats, but for indexing, only integer values are meaningful. Consequently, \Rclass{double} values are converted into \code{integer} values when used as indexes. The conversion is done invisibly, but it does slow down computations slightly. When working on big data sets, explicitly using \code{integer} values can improve performance. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{b} \hlkwb{<-} \hlstd{LETTERS[}\hlnum{1}\hlopt{:}\hlnum{10}\hlstd{]} -\hlstd{b[}\hlnum{1}\hlstd{]} -\end{alltt} -\begin{verbatim} -## [1] "A" -\end{verbatim} -\begin{alltt} -\hlstd{b[}\hlnum{1.1}\hlstd{]} -\end{alltt} -\begin{verbatim} -## [1] "A" -\end{verbatim} -\begin{alltt} -\hlstd{b[}\hlnum{1.9999}\hlstd{]} \hlcom{# surprise!!} -\end{alltt} -\begin{verbatim} -## [1] "A" -\end{verbatim} -\begin{alltt} -\hlstd{b[}\hlnum{2}\hlstd{]} -\end{alltt} -\begin{verbatim} -## [1] "B" -\end{verbatim} -\end{kframe} -\end{knitrout} - -From this experiment, we can learn that if positive indexes are not whole numbers, they are truncated to the next smaller integer. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{b} \hlkwb{<-} \hlstd{LETTERS[}\hlnum{1}\hlopt{:}\hlnum{10}\hlstd{]} -\hlstd{b[}\hlopt{-}\hlnum{1}\hlstd{]} -\end{alltt} -\begin{verbatim} -## [1] "B" "C" "D" "E" "F" "G" "H" "I" "J" -\end{verbatim} -\begin{alltt} -\hlstd{b[}\hlopt{-}\hlnum{1.1}\hlstd{]} -\end{alltt} -\begin{verbatim} -## [1] "B" "C" "D" "E" "F" "G" "H" "I" "J" -\end{verbatim} -\begin{alltt} -\hlstd{b[}\hlopt{-}\hlnum{1.9999}\hlstd{]} -\end{alltt} -\begin{verbatim} -## [1] "B" "C" "D" "E" "F" "G" "H" "I" "J" -\end{verbatim} -\begin{alltt} -\hlstd{b[}\hlopt{-}\hlnum{2}\hlstd{]} -\end{alltt} -\begin{verbatim} -## [1] "A" "C" "D" "E" "F" "G" "H" "I" "J" -\end{verbatim} -\end{kframe} -\end{knitrout} - -From this experiment, we can learn that if negative indexes are not whole numbers, they are truncated to the next larger (less negative) integer. In conclusion, \code{double} index values behave as if they where sanitized using function \code{trunc()}. - -This example also shows how one can tease out of \Rlang its rules through experimentation. - -\end{explainbox} - -A\index{vectors!sorting} frequent operation on vectors is sorting them into an increasing or decreasing order. The most direct approach is to use \Rfunction{sort()}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.vector} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlnum{10}\hlstd{,} \hlnum{4}\hlstd{,} \hlnum{22}\hlstd{,} \hlnum{1}\hlstd{,} \hlnum{4}\hlstd{)} -\hlkwd{sort}\hlstd{(my.vector)} -\end{alltt} -\begin{verbatim} -## [1] 1 4 4 10 22 -\end{verbatim} -\begin{alltt} -\hlkwd{sort}\hlstd{(my.vector,} \hlkwc{decreasing} \hlstd{=} \hlnum{TRUE}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] 22 10 4 4 1 -\end{verbatim} -\end{kframe} -\end{knitrout} - -An indirect way of sorting a vector, possibly based on a different vector, is to generate with \Rfunction{order()} a vector of numerical indexes that can be used to achieve the ordering. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{order}\hlstd{(my.vector)} -\end{alltt} -\begin{verbatim} -## [1] 4 2 5 1 3 -\end{verbatim} -\begin{alltt} -\hlstd{my.vector[}\hlkwd{order}\hlstd{(my.vector)]} -\end{alltt} -\begin{verbatim} -## [1] 1 4 4 10 22 -\end{verbatim} -\begin{alltt} -\hlstd{another.vector} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"ab"}\hlstd{,} \hlstr{"aa"}\hlstd{,} \hlstr{"c"}\hlstd{,} \hlstr{"zy"}\hlstd{,} \hlstr{"e"}\hlstd{)} -\hlstd{another.vector[}\hlkwd{order}\hlstd{(my.vector)]} -\end{alltt} -\begin{verbatim} -## [1] "zy" "aa" "e" "ab" "c" -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{explainbox} -A problem linked to sorting that we may face is counting how many copies of each value are present in a vector. We need to use two functions \Rfunction{sort()} and \Rfunction{rle()}\index{vector!run length encoding}. The second of these functions computes \emph{run length} as used in \emph{run length encoding} for which \emph{rle} is an abbreviation. A \emph{run} is a series of consecutive identical values. As the objective is to count the number of copies of each value present, we need first to sort the vector. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.letters} \hlkwb{<-} \hlstd{letters[}\hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,}\hlnum{5}\hlstd{,}\hlnum{10}\hlstd{,}\hlnum{3}\hlstd{,}\hlnum{1}\hlstd{,}\hlnum{4}\hlstd{,}\hlnum{21}\hlstd{,}\hlnum{1}\hlstd{,}\hlnum{10}\hlstd{)]} -\hlstd{my.letters} -\end{alltt} -\begin{verbatim} -## [1] "a" "e" "j" "c" "a" "d" "u" "a" "j" -\end{verbatim} -\begin{alltt} -\hlkwd{sort}\hlstd{(my.letters)} -\end{alltt} -\begin{verbatim} -## [1] "a" "a" "a" "c" "d" "e" "j" "j" "u" -\end{verbatim} -\begin{alltt} -\hlkwd{rle}\hlstd{(}\hlkwd{sort}\hlstd{(my.letters))} -\end{alltt} -\begin{verbatim} -## Run Length Encoding -## lengths: int [1:6] 3 1 1 1 2 1 -## values : chr [1:6] "a" "c" "d" "e" "j" "u" -\end{verbatim} -\end{kframe} -\end{knitrout} - -The second and third statements are only to demonstrate the effect of each step. The last statement uses nested function calls to compute the number of copies of each value in the vector. -\end{explainbox} - - - -\index{vectors!indexing|)} - -\section{Matrices and multidimensional arrays}\label{sec:matrix:array} -\index{matrices|(}\index{arrays|(}\qRclass{matrix}\qRclass{array} - -Vectors have a single dimension, and, as we saw above, we can query their length with method \Rfunction{length()}. Matrices have two dimensions, which can be queried with \Rfunction{dim()}, \Rfunction{ncol()} and \Rfunction{nrow()}. \Rlang arrays can have any number of dimensions, even a single dimension, which can be queried with method \Rfunction{dim()}. As expected \Rfunction{is.vector()}, \Rfunction{is.matrix()} and \Rfunction{is.array()} can be used to query the class. In mathematical notation a matrix is denoted as follows - -\begin{equation*} - A_{m\times n} = - \begin{bmatrix} - a_{11} & a_{12} & \cdots & a_{1j} & \cdots & a_{1n}\\ - a_{21} & a_{22} & \cdots & a_{2j} & \cdots & a_{2n}\\ - \vdots & \vdots & \ddots & \vdots & & \vdots \\ - a_{i1} & a_{i2} & \cdots & a_{ij} & \cdots & a_{in}\\ - \vdots & \vdots & & \vdots & \ddots & \vdots \\ - a_{m1} & a_{m2} & \cdots & a_{mj} & \cdots & a_{mn} - \end{bmatrix} -\end{equation*} - -where $A$ represents the whole matrix and the $a_{ij}$ its elements, with $i$ indexing rows and $j$ indexing columns. The two dimensions of the matrix are given by $m$ and $n$, for rows and columns. - -In \Rlang we can create a matrix using the \Rfunction{matrix()} or \Rfunction{as.matrix()} constructors. The first argument of \Rfunction{matrix()} is a vector. In the same way as vectors, matrices are homogeneous, all elements are of the same type. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{matrix}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{15}\hlstd{,} \hlkwc{ncol} \hlstd{=} \hlnum{3}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [,1] [,2] [,3] -## [1,] 1 6 11 -## [2,] 2 7 12 -## [3,] 3 8 13 -## [4,] 4 9 14 -## [5,] 5 10 15 -\end{verbatim} -\begin{alltt} -\hlkwd{matrix}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{15}\hlstd{,} \hlkwc{nrow} \hlstd{=} \hlnum{3}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [,1] [,2] [,3] [,4] [,5] -## [1,] 1 4 7 10 13 -## [2,] 2 5 8 11 14 -## [3,] 3 6 9 12 15 -\end{verbatim} -\end{kframe} -\end{knitrout} - -When a matrix is printed in \Rlang the row and column indexes are indicated on the edges left and top margins, in the same way as they would be used to extract whole rows and columns. - -When a vector is converted to a matrix, \Rlang's default is to allocate the values in the vector to the matrix starting from the leftmost column, and within the column, down from the top. Once the first column is filled, the process continues from the top of the next column, as can be seen above. This order can be changed as you will discover in the playground below. - -\begin{playground} -Check in the help page for the \code{matrix}\qRfunction{matrix()} constructor how to use the \code{byrow} parameter to alter the default order in which the elements of the vector are allocated to columns and rows of the new matrix. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{help}\hlstd{(matrix)} -\end{alltt} -\end{kframe} -\end{knitrout} - -While you are looking at the help page, also consider the default number of columns and rows. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{matrix}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{15}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - -And to start getting a sense of how to interpret error and warning messages, run the code below and make sure you understand which problem is being reported. Before executing the statement, analyze it and predict what the returned value will be. Afterwards, compare your prediction, to the value actually returned. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{matrix}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{15}\hlstd{,} \hlkwc{ncol} \hlstd{=} \hlnum{2}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - -\end{playground} - -Subscripting of matrices and arrays is consistent with that used for vectors; we only need to supply an indexing vector, or leave a blank space, for each dimension. A matrix has two dimensions, so to access any element or group of elements, we use two indices. The only complication is that there are two possible orders in which, in principle, indexes could be supplied. In \Rlang, indexes for matrices are written ``row first.'' In simpler words, the first index value selects rows, and the second one, columns. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{A} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{20}\hlstd{,} \hlkwc{ncol} \hlstd{=} \hlnum{4}\hlstd{)} -\hlstd{A} -\end{alltt} -\begin{verbatim} -## [,1] [,2] [,3] [,4] -## [1,] 1 6 11 16 -## [2,] 2 7 12 17 -## [3,] 3 8 13 18 -## [4,] 4 9 14 19 -## [5,] 5 10 15 20 -\end{verbatim} -\begin{alltt} -\hlstd{A[}\hlnum{1}\hlstd{,} \hlnum{1}\hlstd{]} -\end{alltt} -\begin{verbatim} -## [1] 1 -\end{verbatim} -\end{kframe} -\end{knitrout} - -Remind yourself of how indexing of vectors works in \Rlang (see section \ref{sec:vectors} on page \pageref{sec:vectors}). We will now apply the same rules in two dimensions. The first or leftmost indexing vector corresponds to rows and the second one to columns, so \Rlang uses a rows-first convention for indexing. Missing indexing vectors are interpreted as meaning \emph{extract all rows} and \emph{extract all columns}, respectively. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{A[}\hlnum{1}\hlstd{, ]} -\end{alltt} -\begin{verbatim} -## [1] 1 6 11 16 -\end{verbatim} -\begin{alltt} -\hlstd{A[ ,} \hlnum{1}\hlstd{]} -\end{alltt} -\begin{verbatim} -## [1] 1 2 3 4 5 -\end{verbatim} -\begin{alltt} -\hlstd{A[}\hlnum{2}\hlopt{:}\hlnum{3}\hlstd{,} \hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,}\hlnum{3}\hlstd{)]} -\end{alltt} -\begin{verbatim} -## [,1] [,2] -## [1,] 2 12 -## [2,] 3 13 -\end{verbatim} -\begin{alltt} -\hlstd{A[}\hlnum{3}\hlstd{,} \hlnum{4}\hlstd{]} \hlkwb{<-} \hlnum{99} -\hlstd{A} -\end{alltt} -\begin{verbatim} -## [,1] [,2] [,3] [,4] -## [1,] 1 6 11 16 -## [2,] 2 7 12 17 -## [3,] 3 8 13 99 -## [4,] 4 9 14 19 -## [5,] 5 10 15 20 -\end{verbatim} -\begin{alltt} -\hlstd{A[}\hlnum{4}\hlopt{:}\hlnum{3}\hlstd{,} \hlnum{2}\hlopt{:}\hlnum{1}\hlstd{]} \hlkwb{<-} \hlstd{A[}\hlnum{3}\hlopt{:}\hlnum{4}\hlstd{,} \hlnum{1}\hlopt{:}\hlnum{2}\hlstd{]} -\hlstd{A} -\end{alltt} -\begin{verbatim} -## [,1] [,2] [,3] [,4] -## [1,] 1 6 11 16 -## [2,] 2 7 12 17 -## [3,] 9 4 13 99 -## [4,] 8 3 14 19 -## [5,] 5 10 15 20 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{warningbox} -Matrices can be indexed as vectors, without triggering an error or warning. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{A} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{20}\hlstd{,} \hlkwc{ncol} \hlstd{=} \hlnum{4}\hlstd{)} -\hlstd{A} -\end{alltt} -\begin{verbatim} -## [,1] [,2] [,3] [,4] -## [1,] 1 6 11 16 -## [2,] 2 7 12 17 -## [3,] 3 8 13 18 -## [4,] 4 9 14 19 -## [5,] 5 10 15 20 -\end{verbatim} -\begin{alltt} -\hlkwd{dim}\hlstd{(A)} -\end{alltt} -\begin{verbatim} -## [1] 5 4 -\end{verbatim} -\begin{alltt} -\hlstd{A[}\hlnum{10}\hlstd{]} -\end{alltt} -\begin{verbatim} -## [1] 10 -\end{verbatim} -\begin{alltt} -\hlstd{A[}\hlnum{5}\hlstd{,} \hlnum{2}\hlstd{]} -\end{alltt} -\begin{verbatim} -## [1] 10 -\end{verbatim} -\end{kframe} -\end{knitrout} - -The next code example demonstrates that indexing as a vector with a single index, always works column-wise even if matrix \code{B} was created by assigning vector elements by row. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{B} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{20}\hlstd{,} \hlkwc{ncol} \hlstd{=} \hlnum{4}\hlstd{,} \hlkwc{byrow} \hlstd{=} \hlnum{TRUE}\hlstd{)} -\hlstd{B} -\end{alltt} -\begin{verbatim} -## [,1] [,2] [,3] [,4] -## [1,] 1 2 3 4 -## [2,] 5 6 7 8 -## [3,] 9 10 11 12 -## [4,] 13 14 15 16 -## [5,] 17 18 19 20 -\end{verbatim} -\begin{alltt} -\hlkwd{dim}\hlstd{(B)} -\end{alltt} -\begin{verbatim} -## [1] 5 4 -\end{verbatim} -\begin{alltt} -\hlstd{B[}\hlnum{10}\hlstd{]} -\end{alltt} -\begin{verbatim} -## [1] 18 -\end{verbatim} -\begin{alltt} -\hlstd{B[}\hlnum{5}\hlstd{,} \hlnum{2}\hlstd{]} -\end{alltt} -\begin{verbatim} -## [1] 18 -\end{verbatim} -\end{kframe} -\end{knitrout} -\end{warningbox} - -\begin{explainbox} -In \Rlang, a \Rclass{matrix} can have a single row, a single column, a single element or no elements. However, in all cases, a \code{matrix} will have a \emph{dimensions} attribute of length two defined. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.vector} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{6} -\hlkwd{dim}\hlstd{(my.vector)} -\end{alltt} -\begin{verbatim} -## NULL -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{one.col.matrix} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{6}\hlstd{,} \hlkwc{ncol} \hlstd{=} \hlnum{1}\hlstd{)} -\hlkwd{dim}\hlstd{(one.col.matrix)} -\end{alltt} -\begin{verbatim} -## [1] 6 1 -\end{verbatim} -\begin{alltt} -\hlstd{two.col.matrix} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{6}\hlstd{,} \hlkwc{ncol} \hlstd{=} \hlnum{2}\hlstd{)} -\hlkwd{dim}\hlstd{(two.col.matrix)} -\end{alltt} -\begin{verbatim} -## [1] 3 2 -\end{verbatim} -\begin{alltt} -\hlstd{one.elem.matrix} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlnum{1}\hlstd{,} \hlkwc{ncol} \hlstd{=} \hlnum{1}\hlstd{)} -\hlkwd{dim}\hlstd{(one.elem.matrix)} -\end{alltt} -\begin{verbatim} -## [1] 1 1 -\end{verbatim} -\begin{alltt} -\hlstd{no.elem.matrix} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlkwd{numeric}\hlstd{(),} \hlkwc{ncol} \hlstd{=} \hlnum{0}\hlstd{)} -\hlkwd{dim}\hlstd{(no.elem.matrix)} -\end{alltt} -\begin{verbatim} -## [1] 0 0 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\end{explainbox} - -Arrays\index{matrix!dimensions}\index{arrays!dimensions} are similar to matrices, but can have more than two dimensions, which are specified with the \code{dim} argument to the \Rfunction{array()} constructor. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{B} \hlkwb{<-} \hlkwd{array}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{27}\hlstd{,} \hlkwc{dim} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{3}\hlstd{,} \hlnum{3}\hlstd{,} \hlnum{3}\hlstd{))} -\hlstd{B} -\end{alltt} -\begin{verbatim} -## , , 1 -## -## [,1] [,2] [,3] -## [1,] 1 4 7 -## [2,] 2 5 8 -## [3,] 3 6 9 -## -## , , 2 -## -## [,1] [,2] [,3] -## [1,] 10 13 16 -## [2,] 11 14 17 -## [3,] 12 15 18 -## -## , , 3 -## -## [,1] [,2] [,3] -## [1,] 19 22 25 -## [2,] 20 23 26 -## [3,] 21 24 27 -\end{verbatim} -\begin{alltt} -\hlstd{B[}\hlnum{2}\hlstd{,} \hlnum{2}\hlstd{,} \hlnum{2}\hlstd{]} -\end{alltt} -\begin{verbatim} -## [1] 14 -\end{verbatim} -\end{kframe} -\end{knitrout} - -In the chunk above, the length of the supplied vector is the product of the dimensions, $27 = 3 \times 3 \times 3 = 3^3$. Arrays are printed in slices, with slices across 3rd and higher dimensions printed separately, with their corresponding indexes above each slice and the first two dimensions on the margins of the individual slices, similarly to how matrices are displayed. - -\begin{playground} - How do you use indexes to extract the second element of the original vector, in each of the following matrices and arrays? - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{v} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{10} -\hlstd{m2c} \hlkwb{<-} \hlkwd{matrix}\hlstd{(v,} \hlkwc{ncol} \hlstd{=} \hlnum{2}\hlstd{)} -\hlstd{m2cr} \hlkwb{<-} \hlkwd{matrix}\hlstd{(v,} \hlkwc{ncol} \hlstd{=} \hlnum{2}\hlstd{,} \hlkwc{byrow} \hlstd{=} \hlnum{TRUE}\hlstd{)} -\hlstd{m2r} \hlkwb{<-} \hlkwd{matrix}\hlstd{(v,} \hlkwc{nrow} \hlstd{=} \hlnum{2}\hlstd{)} -\hlstd{m2rc} \hlkwb{<-} \hlkwd{matrix}\hlstd{(v,} \hlkwc{nrow} \hlstd{=} \hlnum{2}\hlstd{,} \hlkwc{byrow} \hlstd{=} \hlnum{TRUE}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{v} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{10} -\hlstd{a2c} \hlkwb{<-} \hlkwd{array}\hlstd{(v,} \hlkwc{dim} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{5}\hlstd{,} \hlnum{2}\hlstd{))} -\hlstd{a2c} \hlkwb{<-} \hlkwd{array}\hlstd{(v,} \hlkwc{dim} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{5}\hlstd{,} \hlnum{2}\hlstd{),} \hlkwc{dimnames} \hlstd{=} \hlkwd{list}\hlstd{(}\hlkwa{NULL}\hlstd{,} \hlkwd{c}\hlstd{(}\hlstr{"c1"}\hlstd{,} \hlstr{"c2"}\hlstd{)))} -\hlstd{a2r} \hlkwb{<-} \hlkwd{array}\hlstd{(v,} \hlkwc{dim} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{2}\hlstd{,} \hlnum{5}\hlstd{))} -\end{alltt} -\end{kframe} -\end{knitrout} - -Be aware that vectors and one-dimensional arrays are not the same thing, while two-dimensional arrays are matrices. -\begin{enumerate} - \item Use the different constructors and query methods to explore this, and its consequences. - \item Convert a matrix into a vector using \Rfunction{unlist()} and \Rfunction{as.vector()} and compare the returned values. -\end{enumerate} - -\end{playground} - -Operators for matrices are available in \Rlang, as matrices are used in many statistical algorithms. We will not describe them all here, only \Rfunction{t()} and some specializations of arithmetic operators. Function \Rfunction{t()} transposes a matrix, by swapping columns and rows. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{A} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{20}\hlstd{,} \hlkwc{ncol} \hlstd{=} \hlnum{4}\hlstd{)} -\hlstd{A} -\end{alltt} -\begin{verbatim} -## [,1] [,2] [,3] [,4] -## [1,] 1 6 11 16 -## [2,] 2 7 12 17 -## [3,] 3 8 13 18 -## [4,] 4 9 14 19 -## [5,] 5 10 15 20 -\end{verbatim} -\begin{alltt} -\hlkwd{t}\hlstd{(A)} -\end{alltt} -\begin{verbatim} -## [,1] [,2] [,3] [,4] [,5] -## [1,] 1 2 3 4 5 -## [2,] 6 7 8 9 10 -## [3,] 11 12 13 14 15 -## [4,] 16 17 18 19 20 -\end{verbatim} -\end{kframe} -\end{knitrout} - -As with vectors, recycling applies to arithmetic operators when applied to matrices. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{A} \hlopt{+} \hlnum{2} -\end{alltt} -\begin{verbatim} -## [,1] [,2] [,3] [,4] -## [1,] 3 8 13 18 -## [2,] 4 9 14 19 -## [3,] 5 10 15 20 -## [4,] 6 11 16 21 -## [5,] 7 12 17 22 -\end{verbatim} -\begin{alltt} -\hlstd{A} \hlopt{*} \hlnum{0}\hlopt{:}\hlnum{1} -\end{alltt} -\begin{verbatim} -## [,1] [,2] [,3] [,4] -## [1,] 0 6 0 16 -## [2,] 2 0 12 0 -## [3,] 0 8 0 18 -## [4,] 4 0 14 0 -## [5,] 0 10 0 20 -\end{verbatim} -\begin{alltt} -\hlstd{A} \hlopt{*} \hlnum{1}\hlopt{:}\hlnum{0} -\end{alltt} -\begin{verbatim} -## [,1] [,2] [,3] [,4] -## [1,] 1 0 11 0 -## [2,] 0 7 0 17 -## [3,] 3 0 13 0 -## [4,] 0 9 0 19 -## [5,] 5 0 15 0 -\end{verbatim} -\end{kframe} -\end{knitrout} - -In the examples above with the usual multiplication operator \code{*}, the operation described is not a matrix product, but instead, the products between individual elements of the matrix and vectors. Matrix multiplication is indicated by operator \Roperator{\%*\%}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{B} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{16}\hlstd{,} \hlkwc{ncol} \hlstd{=} \hlnum{4}\hlstd{)} -\hlstd{B} \hlopt{*} \hlstd{B} -\end{alltt} -\begin{verbatim} -## [,1] [,2] [,3] [,4] -## [1,] 1 25 81 169 -## [2,] 4 36 100 196 -## [3,] 9 49 121 225 -## [4,] 16 64 144 256 -\end{verbatim} -\begin{alltt} -\hlstd{B} \hlopt{%*%} \hlstd{B} -\end{alltt} -\begin{verbatim} -## [,1] [,2] [,3] [,4] -## [1,] 90 202 314 426 -## [2,] 100 228 356 484 -## [3,] 110 254 398 542 -## [4,] 120 280 440 600 -\end{verbatim} -\end{kframe} -\end{knitrout} - -Other operators and functions for matrix algebra like cross-product (\Rfunction{crossprod()}), extracting or replacing the diagonal (\Rfunction{diag()}) are available in base \Rlang. Packages, including \pkgname{matrixStats}, provide additional functions and operators for matrices. - - - -\index{matrices|)}\index{arrays|)} - -\section{Factors}\label{sec:calc:factors} -\index{factors|(} -\index{categorical variables|see{factors}}\qRclass{factor} -Factors are used to indicate categories, most frequently the factors describing the treatments in an experiment, or categories in a survey. They can be created either from numerical or character vectors. The different possible values are called \emph{levels}. Normal factors created with \Rfunction{factor()} are unordered or categorical. \Rlang also supports ordered factors that can be created with function \Rfunction{ordered()}.\index{factors!ordered} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.vector} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"treated"}\hlstd{,} \hlstr{"treated"}\hlstd{,} \hlstr{"control"}\hlstd{,} \hlstr{"control"}\hlstd{,} \hlstr{"control"}\hlstd{,} \hlstr{"treated"}\hlstd{)} -\hlstd{my.factor} \hlkwb{<-} \hlkwd{factor}\hlstd{(my.vector)} -\hlstd{my.factor} -\end{alltt} -\begin{verbatim} -## [1] treated treated control control control treated -## Levels: control treated -\end{verbatim} -\begin{alltt} -\hlstd{my.factor} \hlkwb{<-} \hlkwd{factor}\hlstd{(}\hlkwc{x} \hlstd{= my.vector,} \hlkwc{levels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"treated"}\hlstd{,} \hlstr{"control"}\hlstd{))} -\hlstd{my.factor} -\end{alltt} -\begin{verbatim} -## [1] treated treated control control control treated -## Levels: treated control -\end{verbatim} -\end{kframe} -\end{knitrout} - -The\index{factors!labels}\index{factors!levels} labels (``names'') of the levels can be set when the factor is created. In this case, when calling \Rfunction{factor()}, parameters \code{levels} and \code{labels} should both be passed a vector as argument, with levels and matching labels in the same position in the two vectors. The argument passed to \code{levels} determines the order of the levels based on their old names or values, and the argument passed to \code{labels} gives new names to the levels. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.vector} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{1}\hlstd{,} \hlnum{0}\hlstd{,} \hlnum{0}\hlstd{,} \hlnum{0}\hlstd{,} \hlnum{1}\hlstd{)} -\hlstd{my.factor} \hlkwb{<-} \hlkwd{factor}\hlstd{(}\hlkwc{x} \hlstd{= my.vector,} \hlkwc{levels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{0}\hlstd{),} \hlkwc{labels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"treated"}\hlstd{,} \hlstr{"control"}\hlstd{))} -\hlstd{my.factor} -\end{alltt} -\begin{verbatim} -## [1] treated treated control control control treated -## Levels: treated control -\end{verbatim} -\end{kframe} -\end{knitrout} - -It is always preferable to use meaningful labels for levels, although it is also possible to use numbers. - -In the examples above we passed a numeric vector or a character vector as an argument for parameter \code{x} of function \Rfunction{factor()}. It is also possible to pass a \code{factor} as an argument for parameter \code{x}. We use indexing with a test returning a logical vector to extract all ``controls.'' We use function \Rfunction{levels()} to look at the levels of the factors. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{levels}\hlstd{(my.factor)} -\end{alltt} -\begin{verbatim} -## [1] "treated" "control" -\end{verbatim} -\begin{alltt} -\hlstd{control.factor} \hlkwb{<-} \hlstd{my.factor[my.factor} \hlopt{==} \hlstr{"control"}\hlstd{]} -\hlstd{control.factor} -\end{alltt} -\begin{verbatim} -## [1] control control control -## Levels: treated control -\end{verbatim} -\begin{alltt} -\hlstd{control.factor} \hlkwb{<-} \hlkwd{factor}\hlstd{(control.factor)} -\hlstd{control.factor} -\end{alltt} -\begin{verbatim} -## [1] control control control -## Levels: control -\end{verbatim} -\end{kframe} -\end{knitrout} - -It can be seen above that subsetting does not drop unused factor levels, and that \code{factor()} can be used to explicitly drop the unused factor levels.\index{factors!drop unused levels} - -\begin{explainbox} -When the pattern of levels is regular, it is possible to use function \Rfunction{gl()} to \emph{generate levels} in a factor. Nowadays, it is more usual to read data into \Rlang from files in which the treatment codes are already available as character strings or numeric values, however, when we need to create a factor within R, \Rfunction{gl()} can save some typing. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{gl}\hlstd{(}\hlnum{2}\hlstd{,} \hlnum{5}\hlstd{,} \hlkwc{labels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlstr{"B"}\hlstd{))} -\end{alltt} -\begin{verbatim} -## [1] A A A A A B B B B B -## Levels: A B -\end{verbatim} -\end{kframe} -\end{knitrout} -\end{explainbox} - -Converting factors into numbers is not intuitive, even in the case where a factor was created from a \code{numeric} vector. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.vector2} \hlkwb{<-} \hlkwd{rep}\hlstd{(}\hlnum{3}\hlopt{:}\hlnum{5}\hlstd{,} \hlnum{4}\hlstd{)} -\hlstd{my.vector2} -\end{alltt} -\begin{verbatim} -## [1] 3 4 5 3 4 5 3 4 5 3 4 5 -\end{verbatim} -\begin{alltt} -\hlstd{my.factor2} \hlkwb{<-} \hlkwd{factor}\hlstd{(my.vector2)} -\hlstd{my.factor2} -\end{alltt} -\begin{verbatim} -## [1] 3 4 5 3 4 5 3 4 5 3 4 5 -## Levels: 3 4 5 -\end{verbatim} -\begin{alltt} -\hlkwd{as.numeric}\hlstd{(my.factor2)} -\end{alltt} -\begin{verbatim} -## [1] 1 2 3 1 2 3 1 2 3 1 2 3 -\end{verbatim} -\begin{alltt} -\hlkwd{as.numeric}\hlstd{(}\hlkwd{as.character}\hlstd{(my.factor2))} -\end{alltt} -\begin{verbatim} -## [1] 3 4 5 3 4 5 3 4 5 3 4 5 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{explainbox} -\textbf{Why is a double conversion needed?}\index{factors!convert to numeric} Internally, factor levels are stored as running integers starting from one, and those are the numbers returned by \Rfunction{as.numeric()} when applied to a factor. The labels of the factor levels are always stored as character strings, even when these characters are digits. In contrast to \Rfunction{as.numeric()}, \Rfunction{as.character()} returns the character labels of the levels. If these character strings represent numbers, they can be converted, in a second step, using \Rfunction{as.numeric()} into the original numeric values. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{class}\hlstd{(my.factor2)} -\end{alltt} -\begin{verbatim} -## [1] "factor" -\end{verbatim} -\begin{alltt} -\hlkwd{mode}\hlstd{(my.factor2)} -\end{alltt} -\begin{verbatim} -## [1] "numeric" -\end{verbatim} -\end{kframe} -\end{knitrout} -\end{explainbox} - -\begin{playground} -Create a factor with levels labeled with words. Create another factor with the levels labeled with the same words, but ordered differently. After this convert both factors to numeric vectors using \Rfunction{as.numeric()}. Explain why the two numeric vectors differ or not from each other. -\end{playground} - -Factors are very important in \Rlang. In contrast to other statistical software in which the role of a variable is set when defining a model to be fitted or when setting up a test, in \Rlang, models are specified exactly in the same way for ANOVA and regression analysis, both as \emph{linear models}. The type of model that is fitted is decided by whether the explanatory variable is a factor (giving ANOVA) or a numerical variable (giving regression). This makes a lot of sense, because in most cases, considering an explanatory variable as categorical or not, depends on the design of the experiment or survey, and in other words, is a property of the data and the experiment or survey that gave origin to them, rather than of the data analysis. - -The order of the levels in a \code{factor} does not affect simple calculations or the values plotted, but it does affect how the output is printed, the order of the levels in the scales of plots, and in some cases the contrasts in significance tests. The default ordering is alphabetical, and is established at the time a factor is created. Consequently, rather frequently the default ordering of levels is not the one needed. As shown above, parameter \code{levels} in the constructor makes it possible to set the order of the levels. It is also possible to change the ordering of an existing factor. - -\begin{explainbox} -\textbf{Renaming factor levels.}\index{factors!rename levels} The most direct way is using \Rfunction{levels()<-} as shown below, but it is also possible to use \Rfunction{factor()}. The difference is that \code{factor()} drops the unused levels and \code{levels()} only renames existing levels, all of them by position. (Although we here use \code{character} strings that are only one character long, longer strings can be set as labels in exactly the same way. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.factor1} \hlkwb{<-} \hlkwd{gl}\hlstd{(}\hlnum{4}\hlstd{,} \hlnum{3}\hlstd{,} \hlkwc{labels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlstr{"F"}\hlstd{,} \hlstr{"B"}\hlstd{,} \hlstr{"Z"}\hlstd{))} -\hlstd{my.factor1} -\end{alltt} -\begin{verbatim} -## [1] A A A F F F B B B Z Z Z -## Levels: A F B Z -\end{verbatim} -\begin{alltt} -\hlkwd{levels}\hlstd{(my.factor1)} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"b"}\hlstd{,} \hlstr{"c"}\hlstd{,} \hlstr{"d"}\hlstd{)} -\hlstd{my.factor1} -\end{alltt} -\begin{verbatim} -## [1] a a a b b b c c c d d d -## Levels: a b c d -\end{verbatim} -\end{kframe} -\end{knitrout} - -Or more safely by matching names---i.e., order in the list of replacement values is irrelevant. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.factor1} \hlkwb{<-} \hlkwd{gl}\hlstd{(}\hlnum{4}\hlstd{,} \hlnum{3}\hlstd{,} \hlkwc{labels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlstr{"F"}\hlstd{,} \hlstr{"B"}\hlstd{,} \hlstr{"Z"}\hlstd{))} -\hlstd{my.factor1} -\end{alltt} -\begin{verbatim} -## [1] A A A F F F B B B Z Z Z -## Levels: A F B Z -\end{verbatim} -\begin{alltt} -\hlkwd{levels}\hlstd{(my.factor1)} \hlkwb{<-} \hlkwd{list}\hlstd{(}\hlstr{"a"} \hlstd{=} \hlstr{"A"}\hlstd{,} \hlstr{"d"} \hlstd{=} \hlstr{"Z"}\hlstd{,} \hlstr{"c"} \hlstd{=} \hlstr{"B"}\hlstd{,} \hlstr{"b"} \hlstd{=} \hlstr{"F"}\hlstd{)} -\hlstd{my.factor1} -\end{alltt} -\begin{verbatim} -## [1] a a a b b b c c c d d d -## Levels: a d c b -\end{verbatim} -\end{kframe} -\end{knitrout} - -Or alternatively by position and replacing the labels of only some levels---i.e., rather unsafe. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.factor1} \hlkwb{<-} \hlkwd{gl}\hlstd{(}\hlnum{4}\hlstd{,} \hlnum{3}\hlstd{,} \hlkwc{labels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlstr{"F"}\hlstd{,} \hlstr{"B"}\hlstd{,} \hlstr{"Z"}\hlstd{))} -\hlstd{my.factor1} -\end{alltt} -\begin{verbatim} -## [1] A A A F F F B B B Z Z Z -## Levels: A F B Z -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{levels}\hlstd{(my.factor1)[}\hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{4}\hlstd{)]} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"d"}\hlstd{)} -\hlstd{my.factor1} -\end{alltt} -\begin{verbatim} -## [1] a a a F F F B B B d d d -## Levels: a F B d -\end{verbatim} -\end{kframe} -\end{knitrout} - -\end{explainbox} - -\begin{explainbox} -\textbf{Merging factor levels.}\index{factors!merge levels} We use \Rfunction{factor()} as shown below, setting the same label for the levels we want to merge. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.factor1} \hlkwb{<-} \hlkwd{gl}\hlstd{(}\hlnum{4}\hlstd{,} \hlnum{3}\hlstd{,} \hlkwc{labels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlstr{"F"}\hlstd{,} \hlstr{"B"}\hlstd{,} \hlstr{"Z"}\hlstd{))} -\hlstd{my.factor1} -\end{alltt} -\begin{verbatim} -## [1] A A A F F F B B B Z Z Z -## Levels: A F B Z -\end{verbatim} -\begin{alltt} -\hlkwd{factor}\hlstd{(my.factor1,} - \hlkwc{levels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlstr{"B"}\hlstd{,} \hlstr{"F"}\hlstd{,} \hlstr{"Z"}\hlstd{),} - \hlkwc{labels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlstr{"B"}\hlstd{,} \hlstr{"C"}\hlstd{,} \hlstr{"C"}\hlstd{))} -\end{alltt} -\begin{verbatim} -## [1] A A A C C C B B B C C C -## Levels: A B C -\end{verbatim} -\end{kframe} -\end{knitrout} -\end{explainbox} - -\begin{explainbox} -\textbf{Reordering factor levels.}\index{factors!reorder levels} The simplest approach is to use \Rfunction{factor()} and its \code{levels} parameter. The only complication is that the names of the existing levels and those passed as an argument need to match, and typing mistakes can cause bugs. To avoid the error-prone step, in all examples except the first, we use \Rfunction{levels()} to retrieve the names of the levels from the factor itself. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{levels}\hlstd{(my.factor2)} -\end{alltt} -\begin{verbatim} -## [1] "3" "4" "5" -\end{verbatim} -\begin{alltt} -\hlstd{my.factor2} \hlkwb{<-} \hlkwd{factor}\hlstd{(my.factor2,} \hlkwc{levels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"5"}\hlstd{,} \hlstr{"3"}\hlstd{,} \hlstr{"4"}\hlstd{))} -\hlkwd{levels}\hlstd{(my.factor2)} -\end{alltt} -\begin{verbatim} -## [1] "5" "3" "4" -\end{verbatim} -\begin{alltt} -\hlstd{my.factor2} \hlkwb{<-} \hlkwd{factor}\hlstd{(my.factor2,} \hlkwc{levels} \hlstd{=} \hlkwd{rev}\hlstd{(}\hlkwd{levels}\hlstd{(my.factor2)))} -\hlkwd{levels}\hlstd{(my.factor2)} -\end{alltt} -\begin{verbatim} -## [1] "4" "3" "5" -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.factor2} \hlkwb{<-} \hlkwd{factor}\hlstd{(my.factor2,} - \hlkwc{levels} \hlstd{=} \hlkwd{sort}\hlstd{(}\hlkwd{levels}\hlstd{(my.factor2),} \hlkwc{decreasing} \hlstd{=} \hlnum{TRUE}\hlstd{))} -\hlkwd{levels}\hlstd{(my.factor2)} -\end{alltt} -\begin{verbatim} -## [1] "5" "4" "3" -\end{verbatim} -\begin{alltt} -\hlstd{my.factor2} \hlkwb{<-} \hlkwd{factor}\hlstd{(my.factor2,} \hlkwc{levels} \hlstd{=} \hlkwd{levels}\hlstd{(my.factor2)[}\hlkwd{c}\hlstd{(}\hlnum{2}\hlstd{,} \hlnum{1}\hlstd{,} \hlnum{3}\hlstd{)])} -\hlkwd{levels}\hlstd{(my.factor2)} -\end{alltt} -\begin{verbatim} -## [1] "4" "5" "3" -\end{verbatim} -\end{kframe} -\end{knitrout} - -Reordering the levels of a factor based on summary quantities from data is very useful, especially when plotting. Function \Rfunction{reorder()} can be used in this case. It defaults to using \code{mean()} for summaries, but other suitable functions can be supplied in its place. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.factor3} \hlkwb{<-} \hlkwd{gl}\hlstd{(}\hlnum{2}\hlstd{,} \hlnum{5}\hlstd{,} \hlkwc{labels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlstr{"B"}\hlstd{))} -\hlstd{my.vector3} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlnum{5.6}\hlstd{,} \hlnum{7.3}\hlstd{,} \hlnum{3.1}\hlstd{,} \hlnum{8.7}\hlstd{,} \hlnum{6.9}\hlstd{,} \hlnum{2.4}\hlstd{,} \hlnum{4.5}\hlstd{,} \hlnum{2.1}\hlstd{,} \hlnum{1.4}\hlstd{,} \hlnum{2.0}\hlstd{)} -\hlkwd{levels}\hlstd{(my.factor3)} -\end{alltt} -\begin{verbatim} -## [1] "A" "B" -\end{verbatim} -\begin{alltt} -\hlstd{my.factor3ord} \hlkwb{<-} \hlkwd{reorder}\hlstd{(my.factor3, my.vector3)} -\hlkwd{levels}\hlstd{(my.factor3ord)} -\end{alltt} -\begin{verbatim} -## [1] "B" "A" -\end{verbatim} -\begin{alltt} -\hlstd{my.factor3rev} \hlkwb{<-} \hlkwd{reorder}\hlstd{(my.factor3,} \hlopt{-}\hlstd{my.vector3)} \hlcom{# a simple trick} -\hlkwd{levels}\hlstd{(my.factor3rev)} -\end{alltt} -\begin{verbatim} -## [1] "A" "B" -\end{verbatim} -\end{kframe} -\end{knitrout} - -In the last statement, using the unary negation operator, which is vectorized, allows us to easily reverse the ordering of the levels, while still using the default function, \code{mean()}, to summarize the data. - -\end{explainbox} - -\begin{advplayground}\label{calc:ADVPG:order:sort} -\textbf{Reordering factor values.}\index{factors!reorder values}\index{factors!arrange values} It is possible to arrange the values stored in a factor either alphabetically according to the labels of the levels or according to the order of the levels. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlcom{# gl() keeps order of levels} -\hlstd{my.factor4} \hlkwb{<-} \hlkwd{gl}\hlstd{(}\hlnum{4}\hlstd{,} \hlnum{3}\hlstd{,} \hlkwc{labels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlstr{"F"}\hlstd{,} \hlstr{"B"}\hlstd{,} \hlstr{"Z"}\hlstd{))} -\hlstd{my.factor4} -\hlkwd{as.integer}\hlstd{(my.factor4)} -\hlcom{# factor() orders levels alphabetically} -\hlstd{my.factor5} \hlkwb{<-} \hlkwd{factor}\hlstd{(}\hlkwd{rep}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlstr{"F"}\hlstd{,} \hlstr{"B"}\hlstd{,} \hlstr{"Z"}\hlstd{),} \hlkwd{rep}\hlstd{(}\hlnum{3}\hlstd{,}\hlnum{4}\hlstd{)))} -\hlstd{my.factor5} -\hlkwd{as.integer}\hlstd{(my.factor5)} -\hlkwd{levels}\hlstd{(my.factor5)[}\hlkwd{as.integer}\hlstd{(my.factor5)]} -\end{alltt} -\end{kframe} -\end{knitrout} - -We see above that the integer values by which levels in a factor are stored, are equivalent to indices or ``subscripts'' referencing the vector of labels. Function \Rfunction{sort()} operates on the values' underlying integers and sorts according to the order of the levels while \Rfunction{order()} operates on the values' labels and returns a vector of indices that arrange the values alphabetically. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{sort}\hlstd{(my.factor4)} -\hlstd{my.factor4[}\hlkwd{order}\hlstd{(my.factor4)]} -\hlstd{my.factor4[}\hlkwd{order}\hlstd{(}\hlkwd{as.integer}\hlstd{(my.factor4))]} -\end{alltt} -\end{kframe} -\end{knitrout} - -Run the examples in the chunk above and work out why the results differ. -\end{advplayground} - - -\index{factors|)} - -\section{Lists}\label{sec:calc:lists} -\index{lists|(}\qRclass{list} -\emph{Lists'} main difference to other collections is, in \Rlang, that they can be heterogeneous. In \Rlang, the members of a list can be considered as following a sequence, and accessible through numerical indexes, the same as vectors. However, frequently members of a list are given names, and retrieved (indexed) through these names. Lists are created using function \Rfunction{list()}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a.list} \hlkwb{<-} \hlkwd{list}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{6}\hlstd{,} \hlkwc{y} \hlstd{=} \hlstr{"a"}\hlstd{,} \hlkwc{z} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{))} -\hlstd{a.list} -\end{alltt} -\begin{verbatim} -## $x -## [1] 1 2 3 4 5 6 -## -## $y -## [1] "a" -## -## $z -## [1] TRUE FALSE -\end{verbatim} -\end{kframe} -\end{knitrout} - -\subsection{Member extraction and subsetting} -Using\qRoperator{[[]]}\index{lists!member extraction|(}\index{lists!member indexing|see{lists!member extraction}} double square brackets for indexing a list extracts the element stored in the list, in its original mode. In the example above, \code{a.list[["x"]]} returns a numeric vector, while \code{a.list[1]} returns a list containing the numeric vector \code{x}. \code{a.list\$x} returns the same value as \code{a.list[["x"]]}, a numeric vector. \code{a.list[c(1,3)]} returns a list of length two, while \code{a.list[[c(1,3)]]} is an error. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a.list}\hlopt{$}\hlstd{x} -\end{alltt} -\begin{verbatim} -## [1] 1 2 3 4 5 6 -\end{verbatim} -\begin{alltt} -\hlstd{a.list[[}\hlstr{"x"}\hlstd{]]} -\end{alltt} -\begin{verbatim} -## [1] 1 2 3 4 5 6 -\end{verbatim} -\begin{alltt} -\hlstd{a.list[[}\hlnum{1}\hlstd{]]} -\end{alltt} -\begin{verbatim} -## [1] 1 2 3 4 5 6 -\end{verbatim} -\begin{alltt} -\hlstd{a.list[}\hlstr{"x"}\hlstd{]} -\end{alltt} -\begin{verbatim} -## $x -## [1] 1 2 3 4 5 6 -\end{verbatim} -\begin{alltt} -\hlstd{a.list[}\hlnum{1}\hlstd{]} -\end{alltt} -\begin{verbatim} -## $x -## [1] 1 2 3 4 5 6 -\end{verbatim} -\begin{alltt} -\hlstd{a.list[}\hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,}\hlnum{3}\hlstd{)]} -\end{alltt} -\begin{verbatim} -## $x -## [1] 1 2 3 4 5 6 -## -## $z -## [1] TRUE FALSE -\end{verbatim} -\begin{alltt} -\hlkwd{try}\hlstd{(a.list[[}\hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,}\hlnum{3}\hlstd{)]])} -\end{alltt} -\begin{verbatim} -## [1] 3 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{explainbox} -\emph{Lists}, as usually defined in languages like \Clang, are based on pointers to memory locations stored at each node, and these pointers chain or link the different member nodes (this allows, for example, sorting of lists in place by modifying the pointers). In such implementations, indexing by position is not possible, or at least requires ``walking'' down the list, node by node. In \Rlang, \code{list} members can be accessed through positional indexes, similarly to vectors. Of course, insertions and deletions in the middle of a list, whatever their implementation, alter (or \emph{invalidate}) any position-based indexes. -\end{explainbox} - -To investigate the returned values, function \Rfunction{str()} (\emph{structure}) is of help, especially when the lists have many members, as it formats lists more compactly than function \code{print()}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{str}\hlstd{(a.list)} -\end{alltt} -\begin{verbatim} -## List of 3 -## $ x: int [1:6] 1 2 3 4 5 6 -## $ y: chr "a" -## $ z: logi [1:2] TRUE FALSE -\end{verbatim} -\end{kframe} -\end{knitrout} - -\index{lists!member extraction|)} - -\subsection{Adding and removing list members} -In other languages the two most common operations on lists are insertions and deletions.\index{lists!insert into}\index{lists!append to} In \Rlang, function \Rfunction{append()} can be used both to append elements at the end of a list and insert elements into the head or any position in the middle of a list. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{another.list} \hlkwb{<-} \hlkwd{append}\hlstd{(a.list,} \hlkwd{list}\hlstd{(}\hlkwc{yy} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{10}\hlstd{,} \hlkwc{zz} \hlstd{= letters[}\hlnum{5}\hlopt{:}\hlnum{1}\hlstd{]),} \hlnum{2L}\hlstd{)} -\hlstd{another.list} -\end{alltt} -\begin{verbatim} -## $x -## [1] 1 2 3 4 5 6 -## -## $y -## [1] "a" -## -## $yy -## [1] 1 2 3 4 5 6 7 8 9 10 -## -## $zz -## [1] "e" "d" "c" "b" "a" -## -## $z -## [1] TRUE FALSE -\end{verbatim} -\end{kframe} -\end{knitrout} - -To delete a member from a list we assign \code{NULL} to it. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a.list}\hlopt{$}\hlstd{y} \hlkwb{<-} \hlkwa{NULL} -\hlstd{a.list} -\end{alltt} -\begin{verbatim} -## $x -## [1] 1 2 3 4 5 6 -## -## $z -## [1] TRUE FALSE -\end{verbatim} -\end{kframe} -\end{knitrout} - -Lists can be nested, i.e., lists of lists.\index{lists!nested} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a.list} \hlkwb{<-} \hlkwd{list}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"aa"}\hlstd{,} \hlstr{"aaa"}\hlstd{)} -\hlstd{b.list} \hlkwb{<-} \hlkwd{list}\hlstd{(}\hlstr{"b"}\hlstd{,} \hlstr{"bb"}\hlstd{)} -\hlstd{nested.list} \hlkwb{<-} \hlkwd{list}\hlstd{(}\hlkwc{A} \hlstd{= a.list,} \hlkwc{B} \hlstd{= b.list)} -\hlkwd{str}\hlstd{(nested.list)} -\end{alltt} -\begin{verbatim} -## List of 2 -## $ A:List of 3 -## ..$ : chr "a" -## ..$ : chr "aa" -## ..$ : chr "aaa" -## $ B:List of 2 -## ..$ : chr "b" -## ..$ : chr "bb" -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{explainbox}\index{lists!structure} -When dealing with deep lists, it is sometimes useful to limit the number of levels of nesting returned by \Rfunction{str()} by means of a \code{numeric} argument passed to parameter \code{max.levels}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{str}\hlstd{(nested.list,} \hlkwc{max.level} \hlstd{=} \hlnum{1}\hlstd{)} -\end{alltt} -\begin{verbatim} -## List of 2 -## $ A:List of 3 -## $ B:List of 2 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\end{explainbox} - -\subsection{Nested lists} -A nested\index{lists!nested} list can be constructed within a single statement in which several member lists are created. Here we combine the first three statements in the earlier chunk into a single one. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{nested.list} \hlkwb{<-} \hlkwd{list}\hlstd{(}\hlkwc{A} \hlstd{=} \hlkwd{list}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"aa"}\hlstd{,} \hlstr{"aaa"}\hlstd{),} \hlkwc{B} \hlstd{=} \hlkwd{list}\hlstd{(}\hlstr{"b"}\hlstd{,} \hlstr{"bb"}\hlstd{))} -\hlkwd{str}\hlstd{(nested.list)} -\end{alltt} -\begin{verbatim} -## List of 2 -## $ A:List of 3 -## ..$ : chr "a" -## ..$ : chr "aa" -## ..$ : chr "aaa" -## $ B:List of 2 -## ..$ : chr "b" -## ..$ : chr "bb" -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{explainbox} -The logic behind extraction of members of nested lists using indexing is the same as for simple lists, but applied recursively---e.g., \code{nested.list[[2]]} extracts the second member of the outermost list, which is another list. As, this is a list, its members can be extracted using again the extraction operator: \code{nested.list[[2]][[1]]}. It is important to remember that these concatenated extraction operations are written so that the leftmost operator is applied to the outermost list. The example given here uses the \Roperator{[[ ]]} operator, but the same logic applies to \Roperator{[ ]}. -\end{explainbox} - -\begin{playground} -What\index{lists!nested} do you expect each of the statements below to return? \emph{Before running the code}, predict what value and of which mode each statement will return. You may use implicit or explicit calls to \Rfunction{print()}, or calls to \Rfunction{str()} to visualize the structure of the different objects. - -% not handled correctly by knitr, works at console. -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{nested.list} \hlkwb{<-} \hlkwd{list}\hlstd{(}\hlkwc{A} \hlstd{=} \hlkwd{list}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"aa"}\hlstd{,} \hlstr{"aaa"}\hlstd{),} \hlkwc{B} \hlstd{=} \hlkwd{list}\hlstd{(}\hlstr{"b"}\hlstd{,} \hlstr{"bb"}\hlstd{))} -\hlkwd{str}\hlstd{(nested.list)} -\hlstd{nested.list[}\hlnum{2}\hlopt{:}\hlnum{1}\hlstd{]} -\hlstd{nested.list[}\hlnum{1}\hlstd{]} -\hlstd{nested.list[[}\hlnum{1}\hlstd{]][}\hlnum{2}\hlstd{]} -\hlstd{nested.list[[}\hlnum{1}\hlstd{]][[}\hlnum{2}\hlstd{]]} -\hlstd{nested.list[}\hlnum{2}\hlstd{]} -\hlstd{nested.list[}\hlnum{2}\hlstd{][[}\hlnum{1}\hlstd{]]} -\end{alltt} -\end{kframe} -\end{knitrout} - -\end{playground} - -Sometimes we need to flatten a list\index{lists!flattening}\index{lists!nested}, or a nested structure of lists within lists. Function \Rfunction{unlist()} is what should be normally used in such cases. - -The list \code{nested.list} is a nested system of lists, but all the ``terminal'' members are character strings. In other words, terminal nodes are all of the same mode, allowing the list to be ``flattened'' into a character vector. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{c.vec} \hlkwb{<-} \hlkwd{unlist}\hlstd{(nested.list)} -\hlstd{c.vec} -\end{alltt} -\begin{verbatim} -## A1 A2 A3 B1 B2 -## "a" "aa" "aaa" "b" "bb" -\end{verbatim} -\begin{alltt} -\hlkwd{is.list}\hlstd{(nested.list)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{is.list}\hlstd{(c.vec)} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\begin{alltt} -\hlkwd{mode}\hlstd{(nested.list)} -\end{alltt} -\begin{verbatim} -## [1] "list" -\end{verbatim} -\begin{alltt} -\hlkwd{mode}\hlstd{(c.vec)} -\end{alltt} -\begin{verbatim} -## [1] "character" -\end{verbatim} -\begin{alltt} -\hlkwd{names}\hlstd{(nested.list)} -\end{alltt} -\begin{verbatim} -## [1] "A" "B" -\end{verbatim} -\begin{alltt} -\hlkwd{names}\hlstd{(c.vec)} -\end{alltt} -\begin{verbatim} -## [1] "A1" "A2" "A3" "B1" "B2" -\end{verbatim} -\end{kframe} -\end{knitrout} - -The returned value is a vector with named member elements. We use function \Rfunction{str()} to figure out how this vector relates to the original list. The names are based on the names of list elements when available, while numbers are used for anonymous nodes. We can access the members of the vector either through numeric indexes or names. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{str}\hlstd{(c.vec)} -\end{alltt} -\begin{verbatim} -## Named chr [1:5] "a" "aa" "aaa" "b" "bb" -## - attr(*, "names")= chr [1:5] "A1" "A2" "A3" "B1" ... -\end{verbatim} -\begin{alltt} -\hlstd{c.vec[}\hlnum{2}\hlstd{]} -\end{alltt} -\begin{verbatim} -## A2 -## "aa" -\end{verbatim} -\begin{alltt} -\hlstd{c.vec[}\hlstr{"A2"}\hlstd{]} -\end{alltt} -\begin{verbatim} -## A2 -## "aa" -\end{verbatim} -\end{kframe} -\end{knitrout} - -Function \Rfunction{unname()} can be used to remove names safely---i.e., without risk of altering the mode or class of the object. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{unname}\hlstd{(c.vec)} -\end{alltt} -\begin{verbatim} -## [1] "a" "aa" "aaa" "b" "bb" -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{playground} -Function \Rfunction{unlist()}\index{lists!convert into vector} has two additional parameters, with default argument values, which we did not modify in the example above. These parameters are \code{recursive} and \code{use.names}, both of them expecting a \code{logical} value as an argument. Modify the statement \code{c.vec <- unlist(c.list)}, by passing \code{FALSE} as an argument to these two parameters, in turn, and in each case, study the value returned and how it differs with respect to the one obtained above. -\end{playground} - - -\index{lists|)} - -\section{Data frames}\label{sec:R:data:frames} -\index{data frames|(}\qRclass{data.frame} -\index{worksheet@`worksheet'|see{data frame}} -Data frames are a special type of list, in which each element is a vector or a factor of the same length (or rarely a matrix with the same number of rows as the enclosing data frame). They are created with function \Rfunction{data.frame()} with a syntax similar to that used for lists---in object-oriented programming we say that data frames are derived from class \Rclass{list}. As the expectation is equal length, if vectors of different lengths are supplied as arguments, the shorter vector(s) is/are recycled, possibly several times, until the required full length is reached. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a.df} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{6}\hlstd{,} \hlkwc{y} \hlstd{=} \hlstr{"a"}\hlstd{,} \hlkwc{z} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{))} -\hlstd{a.df} -\end{alltt} -\begin{verbatim} -## x y z -## 1 1 a TRUE -## 2 2 a FALSE -## 3 3 a TRUE -## 4 4 a FALSE -## 5 5 a TRUE -## 6 6 a FALSE -\end{verbatim} -\begin{alltt} -\hlkwd{str}\hlstd{(a.df)} -\end{alltt} -\begin{verbatim} -## 'data.frame': 6 obs. of 3 variables: -## $ x: int 1 2 3 4 5 6 -## $ y: chr "a" "a" "a" "a" ... -## $ z: logi TRUE FALSE TRUE FALSE TRUE FALSE -\end{verbatim} -\begin{alltt} -\hlkwd{class}\hlstd{(a.df)} -\end{alltt} -\begin{verbatim} -## [1] "data.frame" -\end{verbatim} -\begin{alltt} -\hlkwd{mode}\hlstd{(a.df)} -\end{alltt} -\begin{verbatim} -## [1] "list" -\end{verbatim} -\begin{alltt} -\hlkwd{is.data.frame}\hlstd{(a.df)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{is.list}\hlstd{(a.df)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\end{kframe} -\end{knitrout} - -Indexing of data frames is similar to that of the underlying list, but not exactly equivalent. We can index with operator \Roperator{[[]]} to extract individual variables, thought of being the columns in a matrix-like list or ``worksheet.'' - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a.df}\hlopt{$}\hlstd{x} -\end{alltt} -\begin{verbatim} -## [1] 1 2 3 4 5 6 -\end{verbatim} -\begin{alltt} -\hlstd{a.df[[}\hlstr{"x"}\hlstd{]]} -\end{alltt} -\begin{verbatim} -## [1] 1 2 3 4 5 6 -\end{verbatim} -\begin{alltt} -\hlstd{a.df[[}\hlnum{1}\hlstd{]]} -\end{alltt} -\begin{verbatim} -## [1] 1 2 3 4 5 6 -\end{verbatim} -\begin{alltt} -\hlkwd{class}\hlstd{(a.df)} -\end{alltt} -\begin{verbatim} -## [1] "data.frame" -\end{verbatim} -\end{kframe} -\end{knitrout} - -With function \Rfunction{class()} we can query the class of an \Rlang object (see section \ref{sec:rlang:mode} on page \pageref{sec:rlang:mode}). As we saw in the two previous chunks, \code{list} and \code{data.frame} objects belong to two different classes. However, their relationship is based on a hierarchy of classes. We say that class \Rclass{data.frame} is derived from class \code{list}. Consequently, data frames inherit the methods and characteristics of lists, as long as they have not been hidden by new ones defined for data frames. - -In the same way as with vectors, we can add members to lists and data frames. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a.df}\hlopt{$}\hlstd{x2} \hlkwb{<-} \hlnum{6}\hlopt{:}\hlnum{1} -\hlstd{a.df}\hlopt{$}\hlstd{x3} \hlkwb{<-} \hlstr{"b"} -\hlkwd{str}\hlstd{(a.df)} -\end{alltt} -\begin{verbatim} -## 'data.frame': 6 obs. of 5 variables: -## $ x : int 1 2 3 4 5 6 -## $ y : chr "a" "a" "a" "a" ... -## $ z : logi TRUE FALSE TRUE FALSE TRUE FALSE -## $ x2: int 6 5 4 3 2 1 -## $ x3: chr "b" "b" "b" "b" ... -\end{verbatim} -\end{kframe} -\end{knitrout} - -We have added two columns to the data frame, and in the case of column \code{x3} recycling took place. This is where lists and data frames differ substantially in their behavior. In a data frame, although class and mode can be different for different variables (columns), they are required to be vectors or factors of the same length. In the case of lists, there is no such requirement, and recycling never takes place when adding a node. Compare the values returned below for \code{a.ls}, to those in the example above for \code{a.df}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a.ls} \hlkwb{<-} \hlkwd{list}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{6}\hlstd{,} \hlkwc{y} \hlstd{=} \hlstr{"a"}\hlstd{,} \hlkwc{z} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{))} -\hlkwd{str}\hlstd{(a.ls)} -\end{alltt} -\begin{verbatim} -## List of 3 -## $ x: int [1:6] 1 2 3 4 5 6 -## $ y: chr "a" -## $ z: logi [1:2] TRUE FALSE -\end{verbatim} -\begin{alltt} -\hlstd{a.ls}\hlopt{$}\hlstd{x2} \hlkwb{<-} \hlnum{6}\hlopt{:}\hlnum{1} -\hlstd{a.ls}\hlopt{$}\hlstd{x3} \hlkwb{<-} \hlstr{"b"} -\hlkwd{str}\hlstd{(a.ls)} -\end{alltt} -\begin{verbatim} -## List of 5 -## $ x : int [1:6] 1 2 3 4 5 6 -## $ y : chr "a" -## $ z : logi [1:2] TRUE FALSE -## $ x2: int [1:6] 6 5 4 3 2 1 -## $ x3: chr "b" -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{advplayground} -Usually data frames are created from lists or by passing individual vectors and factors to the constructors. It is also possible to construct data frames starting from matrices, other data frames and named vectors and combinations of them. In these cases additional nuances become important. We give only some examples here, as the details are well described in \code{help(data.frame)}. - -We use a named numeric vector, and a factor. The names are moved from the vector to the rows of the data frame! Consult \code{help(data.frame)} for an explanation. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.vector} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlkwc{one} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{two} \hlstd{=} \hlnum{2}\hlstd{,} \hlkwc{three} \hlstd{=} \hlnum{3}\hlstd{,} \hlkwc{four} \hlstd{=} \hlnum{4}\hlstd{)} -\hlstd{my.factor} \hlkwb{<-} \hlkwd{as.factor}\hlstd{(}\hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{2}\hlstd{,} \hlnum{3}\hlstd{,} \hlnum{2}\hlstd{))} -\hlstd{df1} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(my.factor, my.vector)} -\hlstd{df1} -\end{alltt} -\begin{verbatim} -## my.factor my.vector -## one 1 1 -## two 2 2 -## three 3 3 -## four 2 4 -\end{verbatim} -\begin{alltt} -\hlstd{df1}\hlopt{$}\hlstd{my.vector} -\end{alltt} -\begin{verbatim} -## [1] 1 2 3 4 -\end{verbatim} -\end{kframe} -\end{knitrout} - -If we protect the vector with \Rlang's identity function \Rfunction{I()} the names are not removed from the vector as can be seen by extracting the column from the data frame. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{df2} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(my.factor,} \hlkwd{I}\hlstd{(my.vector))} -\hlstd{df2} -\end{alltt} -\begin{verbatim} -## my.factor my.vector -## one 1 1 -## two 2 2 -## three 3 3 -## four 2 4 -\end{verbatim} -\begin{alltt} -\hlstd{df2}\hlopt{$}\hlstd{my.vector} -\end{alltt} -\begin{verbatim} -## one two three four -## 1 2 3 4 -\end{verbatim} -\end{kframe} -\end{knitrout} - -If we start with a matrix instead of a vector, the matrix is split into separate columns in the data frame. If the matrix has no column names, new ones are created. -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.matrix} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{12}\hlstd{,} \hlkwc{ncol} \hlstd{=} \hlnum{3}\hlstd{)} -\hlstd{df4} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(my.factor, my.matrix)} -\hlstd{df4} -\end{alltt} -\begin{verbatim} -## my.factor X1 X2 X3 -## 1 1 1 5 9 -## 2 2 2 6 10 -## 3 3 3 7 11 -## 4 2 4 8 12 -\end{verbatim} -\end{kframe} -\end{knitrout} - -If we protect the matrix with function \Rfunction{I()}, it is not split, and the whole matrix becomes a column in the data frame. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{df5} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(my.factor,} \hlkwd{I}\hlstd{(my.matrix))} -\hlstd{df5} -\end{alltt} -\begin{verbatim} -## my.factor my.matrix.1 my.matrix.2 my.matrix.3 -## 1 1 1 5 9 -## 2 2 2 6 10 -## 3 3 3 7 11 -## 4 2 4 8 12 -\end{verbatim} -\begin{alltt} -\hlstd{df5}\hlopt{$}\hlstd{my.matrix} -\end{alltt} -\begin{verbatim} -## [,1] [,2] [,3] -## [1,] 1 5 9 -## [2,] 2 6 10 -## [3,] 3 7 11 -## [4,] 4 8 12 -\end{verbatim} -\end{kframe} -\end{knitrout} - -If we start with a list, each member with a suitable number of elements, each member becomes a column in the data frame. In the case of a too short one, recycling is applied. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.list} \hlkwb{<-} \hlkwd{list}\hlstd{(}\hlkwc{a} \hlstd{=} \hlnum{4}\hlopt{:}\hlnum{1}\hlstd{,} \hlkwc{b} \hlstd{= letters[}\hlnum{4}\hlopt{:}\hlnum{1}\hlstd{],} \hlkwc{c} \hlstd{=} \hlstr{"n"}\hlstd{,} \hlkwc{d} \hlstd{=} \hlstr{"z"}\hlstd{)} -\hlstd{df6}\hlkwb{<-} \hlkwd{data.frame}\hlstd{(my.factor, my.list)} -\hlstd{df6} -\end{alltt} -\begin{verbatim} -## my.factor a b c d -## 1 1 4 d n z -## 2 2 3 c n z -## 3 3 2 b n z -## 4 2 1 a n z -\end{verbatim} -\end{kframe} -\end{knitrout} - -If we protect the list, then the list is added in whole, similarly as in a tibble (see chapter \ref{chap:R:data} starting on page \pageref{chap:R:data} for details about the \pkgname{tidiyverse}). -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{df7}\hlkwb{<-} \hlkwd{data.frame}\hlstd{(my.factor,} \hlkwd{I}\hlstd{(my.list))} -\hlstd{df7} -\end{alltt} -\begin{verbatim} -## my.factor my.list -## a 1 4, 3, 2, 1 -## b 2 d, c, b, a -## c 3 n -## d 2 z -\end{verbatim} -\begin{alltt} -\hlstd{df7}\hlopt{$}\hlstd{my.list} -\end{alltt} -\begin{verbatim} -## $a -## [1] 4 3 2 1 -## -## $b -## [1] "d" "c" "b" "a" -## -## $c -## [1] "n" -## -## $d -## [1] "z" -\end{verbatim} -\end{kframe} -\end{knitrout} - -What is this exercise about? Do check the documentation carefully and think of uses where the flexibility gained by use of function \Rfunction{I()} to protect arguments passed to the \Rfunction{data.frame()} constructor can be useful. In addition, write code to extract individual members of embedded matrices and lists using indexing in a single \Rlang statement in each case. -\end{advplayground} - -Data frames are extremely important to anyone analyzing or plotting data using \Rlang. One can think of data frames as tightly structured work-sheets, or as lists. As you may have guessed from the examples earlier in this section, there are several different ways of accessing columns, rows, and individual observations stored in a data frame. The columns can be treated as members in a list, and can be accessed both by name or index (position). When accessed by name, using \Roperator{\$} or double square brackets, a single column is returned as a vector or factor. In contrast to lists, data frames are always ``rectangular'' and for this reason the values stored can also be accessed in a way similar to how elements in a matrix are accessed, using two indexes. As we saw for vectors, indexes can be vectors of integer numbers or vectors of logical values. For columns they can, in addition, be vectors of character strings matching the names of the columns. When using indexes it is extremely important to remember that the indexes are always given \textbf{row first} in \Rlang. - -\begin{explainbox} -Indexing of data frames can in all cases be done as if they were lists, which is preferable, as it ensures compatibility with regular \Rlang lists and with newer implementations of data-frame-like structures like those defined in package \pkgname{tibble}. Using this approach, extracting two values from the second and third positions in the first column of \code{a.df} is done as follows, using numerical indexes. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a.df[[}\hlnum{1}\hlstd{]][}\hlnum{2}\hlopt{:}\hlnum{3}\hlstd{]} -\end{alltt} -\begin{verbatim} -## [1] 2 3 -\end{verbatim} -\end{kframe} -\end{knitrout} - -Or using the column name. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a.df[[}\hlstr{"x"}\hlstd{]][}\hlnum{2}\hlopt{:}\hlnum{3}\hlstd{]} -\end{alltt} -\begin{verbatim} -## [1] 2 3 -\end{verbatim} -\end{kframe} -\end{knitrout} - -The less portable, matrix-like indexing is done as follows, with the first index indicating rows and the second one indicating columns. This notation allows simultaneous extraction from multiple columns, which is not possible with lists. The value returned is a ``smaller'' data frame. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a.df[}\hlnum{2}\hlopt{:}\hlnum{3}\hlstd{,} \hlnum{1}\hlopt{:}\hlnum{2}\hlstd{]} -\end{alltt} -\begin{verbatim} -## x y -## 2 2 a -## 3 3 a -\end{verbatim} -\end{kframe} -\end{knitrout} - -If the length of the column indexing vector is one, the returned value is a vector, which is not consistent with the previous example which returned a data frame. This is not only surprising in everyday use, but can be the source of bugs when coding algorithms in which the length of the second index vector cannot be guaranteed to be always more than one. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a.df[}\hlnum{2}\hlopt{:}\hlnum{3}\hlstd{,} \hlnum{1}\hlstd{]} -\end{alltt} -\begin{verbatim} -## [1] 2 3 -\end{verbatim} -\end{kframe} -\end{knitrout} - -In contrast, indexing of tibbles---defined in package \pkgname{tibble}---is always consistent, never returning a vector, even when the vector used to extract columns is of length one (see section \ref{sec:data:tibble} on page \pageref{sec:data:tibble} for details on the differences between data frames and tibbles). -\end{explainbox} - - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlcom{# first column, a.df[[1]] preferred} -\hlstd{a.df[ ,} \hlnum{1}\hlstd{]} -\end{alltt} -\begin{verbatim} -## [1] 1 2 3 4 5 6 -\end{verbatim} -\begin{alltt} -\hlcom{# first column, a.df[["x"]] or a.df$x preferred} -\hlstd{a.df[ ,} \hlstr{"x"}\hlstd{]} -\end{alltt} -\begin{verbatim} -## [1] 1 2 3 4 5 6 -\end{verbatim} -\begin{alltt} -\hlcom{# first row} -\hlstd{a.df[}\hlnum{1}\hlstd{, ]} -\end{alltt} -\begin{verbatim} -## x y z x2 x3 -## 1 1 a TRUE 6 b -\end{verbatim} -\begin{alltt} -\hlcom{# first two rows of the third and fourth columns} -\hlstd{a.df[}\hlnum{1}\hlopt{:}\hlnum{2}\hlstd{,} \hlkwd{c}\hlstd{(}\hlnum{FALSE}\hlstd{,} \hlnum{FALSE}\hlstd{,} \hlnum{TRUE}\hlstd{,} \hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{)]} -\end{alltt} -\begin{verbatim} -## z x2 -## 1 TRUE 6 -## 2 FALSE 5 -\end{verbatim} -\begin{alltt} -\hlcom{# the rows for which z is true} -\hlstd{a.df[a.df}\hlopt{$}\hlstd{z , ]} -\end{alltt} -\begin{verbatim} -## x y z x2 x3 -## 1 1 a TRUE 6 b -## 3 3 a TRUE 4 b -## 5 5 a TRUE 2 b -\end{verbatim} -\begin{alltt} -\hlcom{# the rows for which x > 3 keeping all columns except the third one} -\hlstd{a.df[a.df}\hlopt{$}\hlstd{x} \hlopt{>} \hlnum{3}\hlstd{,} \hlopt{-}\hlnum{3}\hlstd{]} -\end{alltt} -\begin{verbatim} -## x y x2 x3 -## 4 4 a 3 b -## 5 5 a 2 b -## 6 6 a 1 b -\end{verbatim} -\end{kframe} -\end{knitrout} - -As explained earlier for vectors (see section \ref{sec:calc:indexing} on page \pageref{sec:calc:indexing}), indexing can be present both on the right-hand side and left-hand side of an assignment. -The next few examples do assignments to ``cells'' of \code{a.df}, either to one whole column, or individual values. The last statement in the chunk below copies a number from one location to another by using indexing of the same data frame both on the right side and left side of the assignment.\qRoperator{[[]]}\qRoperator{[]} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a.df[}\hlnum{1}\hlstd{,} \hlnum{1}\hlstd{]} \hlkwb{<-} \hlnum{99} -\hlstd{a.df} -\end{alltt} -\begin{verbatim} -## x y z x2 x3 -## 1 99 a TRUE 6 b -## 2 2 a FALSE 5 b -## 3 3 a TRUE 4 b -## 4 4 a FALSE 3 b -## 5 5 a TRUE 2 b -## 6 6 a FALSE 1 b -\end{verbatim} -\begin{alltt} -\hlstd{a.df[ ,} \hlnum{1}\hlstd{]} \hlkwb{<-} \hlopt{-}\hlnum{99} -\hlstd{a.df} -\end{alltt} -\begin{verbatim} -## x y z x2 x3 -## 1 -99 a TRUE 6 b -## 2 -99 a FALSE 5 b -## 3 -99 a TRUE 4 b -## 4 -99 a FALSE 3 b -## 5 -99 a TRUE 2 b -## 6 -99 a FALSE 1 b -\end{verbatim} -\begin{alltt} -\hlstd{a.df[[}\hlstr{"x"}\hlstd{]]} \hlkwb{<-} \hlnum{123} -\hlstd{a.df} -\end{alltt} -\begin{verbatim} -## x y z x2 x3 -## 1 123 a TRUE 6 b -## 2 123 a FALSE 5 b -## 3 123 a TRUE 4 b -## 4 123 a FALSE 3 b -## 5 123 a TRUE 2 b -## 6 123 a FALSE 1 b -\end{verbatim} -\begin{alltt} -\hlstd{a.df[}\hlnum{1}\hlstd{,} \hlnum{1}\hlstd{]} \hlkwb{<-} \hlstd{a.df[}\hlnum{6}\hlstd{,} \hlnum{4}\hlstd{]} -\hlstd{a.df} -\end{alltt} -\begin{verbatim} -## x y z x2 x3 -## 1 1 a TRUE 6 b -## 2 123 a FALSE 5 b -## 3 123 a TRUE 4 b -## 4 123 a FALSE 3 b -## 5 123 a TRUE 2 b -## 6 123 a FALSE 1 b -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{warningbox} -We mentioned above that indexing by name can be done either with double square brackets, \Roperator{[[]]}, or with \Roperator{\$}. In the first case the name of the variable or column is given as a character string, enclosed in quotation marks, or as a variable with mode \code{character}. When using \Roperator{\$}, the name is entered as a constant, without quotation marks, and cannot be a variable. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{x.list} \hlkwb{<-} \hlkwd{list}\hlstd{(}\hlkwc{abcd} \hlstd{=} \hlnum{123}\hlstd{,} \hlkwc{xyzw} \hlstd{=} \hlnum{789}\hlstd{)} -\hlstd{x.list[[}\hlstr{"abcd"}\hlstd{]]} -\end{alltt} -\begin{verbatim} -## [1] 123 -\end{verbatim} -\begin{alltt} -\hlstd{a.var} \hlkwb{<-} \hlstr{"abcd"} -\hlstd{x.list[[a.var]]} -\end{alltt} -\begin{verbatim} -## [1] 123 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{x.list}\hlopt{$}\hlstd{abcd} -\end{alltt} -\begin{verbatim} -## [1] 123 -\end{verbatim} -\begin{alltt} -\hlstd{x.list}\hlopt{$}\hlstd{ab} -\end{alltt} -\begin{verbatim} -## [1] 123 -\end{verbatim} -\begin{alltt} -\hlstd{x.list}\hlopt{$}\hlstd{a} -\end{alltt} -\begin{verbatim} -## [1] 123 -\end{verbatim} -\end{kframe} -\end{knitrout} - -Both in the case of lists and data frames, when using double square brackets, an exact match is required between the name in the object and the name used for indexing. In contrast, with \Roperator{\$}, any unambiguous partial match will be accepted. For interactive use, partial matching is helpful in reducing typing. However, in scripts, and especially \Rlang code in packages, it is best to avoid the use of \Roperator{\$} as partial matching to a wrong variable present at a later time, e.g., when someone else revises the script, can lead to very difficult-to-diagnose errors. In addition, as \Roperator{\$} is implemented by first attempting a match to the name and then calling \Roperator{[[]]}, using \Roperator{\$} for indexing can result in slightly slower performance compared to using \Roperator{[[]]}. It is possible to set an \Rlang option so that partial matching triggers a warning, which can be very useful when debugging. -\end{warningbox} - -\subsection{Operating within data frames}\label{sec:calc:df:with} -\index{data frames!operating within} -When\index{data frames!subsetting}\index{data frames!``filtering rows''} the names of data frames are long, complex conditions become awkward to write using indexing---i.e., subscripts. In such cases \Rfunction{subset()} is handy because evaluation is done in the ``environment'' of the data frame, i.e., the names of the columns are recognized if entered directly when writing the condition. Function \Rfunction{subset()} ``filters'' rows, usually corresponding to observations or experimental units. The condition is computed for each row, and if it returns \code{TRUE}, the row is included in the returned data frame, and excluded if \code{FALSE}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a.df} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{6}\hlstd{,} \hlkwc{y} \hlstd{=} \hlstr{"a"}\hlstd{,} \hlkwc{z} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{))} -\hlkwd{subset}\hlstd{(a.df, x} \hlopt{>} \hlnum{3}\hlstd{)} -\end{alltt} -\begin{verbatim} -## x y z -## 4 4 a FALSE -## 5 5 a TRUE -## 6 6 a FALSE -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{playground} -What is the behavior of \code{subset()} when the condition is \code{NA}? Find the answer by writing code to test this, for a case where tests for different rows return \code{NA}, \code{TRUE} and \code{FALSE}. -\end{playground} - -When calling functions that return a vector, data frame, or other structure, the square brackets can be appended to the rightmost parenthesis of the function call, in the same way as to the name of a variable holding the same data. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{subset}\hlstd{(a.df, x} \hlopt{>} \hlnum{3}\hlstd{)[ ,} \hlopt{-}\hlnum{3}\hlstd{]} -\end{alltt} -\begin{verbatim} -## x y -## 4 4 a -## 5 5 a -## 6 6 a -\end{verbatim} -\begin{alltt} -\hlkwd{subset}\hlstd{(a.df, x} \hlopt{>} \hlnum{3}\hlstd{)}\hlopt{$}\hlstd{x} -\end{alltt} -\begin{verbatim} -## [1] 4 5 6 -\end{verbatim} -\end{kframe} -\end{knitrout} - -None of the examples in the last three code chunks alter the original data frame \code{a.df}. We can store the returned value using a new name if we want to preserve \code{a.df} unchanged, or we can assign the result to \code{a.df}, deleting in the process, the previously stored value. -\begin{warningbox} - In the example above, the names in the expression passed as the second argument to \code{subset()} are first searched within \code{ad.df} but if not found, searched in the environment. There being no variable \code{A} in the data frame \code{a.df}, vector \code{A} from the environment is silently used in the expression resulting in a returned data frame with no rows. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{A} \hlkwb{<-} \hlnum{1} -\hlkwd{subset}\hlstd{(a.df, A} \hlopt{>} \hlnum{3}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] x y z -## <0 rows> (or 0-length row.names) -\end{verbatim} -\end{kframe} -\end{knitrout} - -The use of \Rfunction{subset()} is convenient, but more prone to result in bugs compared to directly using the extraction operator \code{[]}. This same ``cost'' to achieving convenience applies to functions like \Rfunction{attach()} and \Rfunction{with()} described below. The longer time that a script is expected to be used, adapted and reused, the more careful we should be when using any of these functions. An alternative way of avoiding excessive verbosity is to keep the names of data frames short. -\end{warningbox} - -A frequently used way of deleting a column by name from a data frame is to assign \code{NULL} to it---i.e., in the same way as members are deleted from \code{list}s. This approach modifies \code{a.df} in place. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{aa.df} \hlkwb{<-} \hlstd{a.df} -\hlkwd{colnames}\hlstd{(aa.df)} -\end{alltt} -\begin{verbatim} -## [1] "x" "y" "z" -\end{verbatim} -\begin{alltt} -\hlstd{aa.df[[}\hlstr{"y"}\hlstd{]]} \hlkwb{<-} \hlkwa{NULL} -\hlkwd{colnames}\hlstd{(aa.df)} -\end{alltt} -\begin{verbatim} -## [1] "x" "z" -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{explainbox} -Alternatively, we can use negative indexing to remove columns from a copy of a data frame. In this example we remove a single column. As base \Rlang does not support negative indexing by name, we need to find the numerical index of the column to delete. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a.df[ ,} \hlopt{-}\hlkwd{which}\hlstd{(}\hlkwd{colnames}\hlstd{(a.df)} \hlopt{==} \hlstr{"y"}\hlstd{)]} -\end{alltt} -\begin{verbatim} -## x z -## 1 1 TRUE -## 2 2 FALSE -## 3 3 TRUE -## 4 4 FALSE -## 5 5 TRUE -## 6 6 FALSE -\end{verbatim} -\end{kframe} -\end{knitrout} -Instead of using the equality test, we can use the operator \code{\%in\%} or function \code{grepl()} to delete multiple columns in a single statement. -\end{explainbox} - -\begin{playground} -In the previous code chunk we deleted the last column of the data frame \code{a.df}. -Here is an esoteric trick for you to first untangle how it changes the positions of columns and row, and then for you to think how and why it can be useful to use indexing with the extraction operator \Roperator{[ ]} on both sides of the assignment operator \Roperator{<-}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a.df[}\hlnum{1}\hlopt{:}\hlnum{6}\hlstd{,} \hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,}\hlnum{3}\hlstd{)]} \hlkwb{<-} \hlstd{a.df[}\hlnum{6}\hlopt{:}\hlnum{1}\hlstd{,} \hlkwd{c}\hlstd{(}\hlnum{3}\hlstd{,}\hlnum{1}\hlstd{)]} -\hlstd{a.df} -\end{alltt} -\end{kframe} -\end{knitrout} -\end{playground} - -\begin{warningbox} -Although in this last example we used numeric indexes to make it more interesting, in practice, especially in scripts or other code that will be reused, do use column or member names instead of positional indexes whenever possible. This makes code much more reliable, as changes elsewhere in the script could alter the order of columns and \emph{invalidate} numerical indexes. In addition, using meaningful names makes programmers' intentions easier to understand. -\end{warningbox} - -\begin{explainbox} -It is sometimes inconvenient to have to pre-pend the name of a \emph{container} such as a list or data frame to the name of each member variable being accessed. There are functions in \Rlang that allow us to change where \Rlang looks for the names of objects we include in a code statement. Here I describe the use of \Rscoping{attach()} and its matching \Rscoping{detach()}, and \Rscoping{with()} and \Rscoping{within()} to access members of a data frame. They can be used as well with lists and classes derived from \code{list}. - -As we can see below, when using a rather long name for a data frame, entering a simple calculation can easily result in a long and difficult to read statement. (Method \code{head()} is used here to limit the displayed value to the first two rows---\code{head()} is described in section \ref{sec:calc:looking:at:data} on page \pageref{sec:calc:looking:at:data}.) - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my_data_frame.df} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{A} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{10}\hlstd{,} \hlkwc{B} \hlstd{=} \hlnum{3}\hlstd{)} -\hlstd{my_data_frame.df}\hlopt{$}\hlstd{C} \hlkwb{<-} - \hlstd{(my_data_frame.df}\hlopt{$}\hlstd{A} \hlopt{+} \hlstd{my_data_frame.df}\hlopt{$}\hlstd{B)} \hlopt{/} \hlstd{my_data_frame.df}\hlopt{$}\hlstd{A} -\hlkwd{head}\hlstd{(my_data_frame.df,} \hlnum{2}\hlstd{)} -\end{alltt} -\begin{verbatim} -## A B C -## 1 1 3 4.0 -## 2 2 3 2.5 -\end{verbatim} -\end{kframe} -\end{knitrout} - -Using\index{data frames!attaching} \Rscoping{attach()} we can alter how \Rlang looks up names and consequently simplify the statement. With \Rscoping{detach()} we can restore the original state. It is important to remember that here we can only simplify the right-hand side of the assignment, while the ``destination'' of the result of the computation still needs to be fully specified on the left-hand side of the assignment operator. We include below only one statement between \Rscoping{attach()} and \Rscoping{detach()} but multiple statements are allowed. Furthermore, if variables with the same name as the columns exist in the search path, these will take precedence, something that can result in bugs or crashes, or as seen below, a message warns that variable \code{A} from the global environment will be used instead of column \code{A} of the attached \code{my\_data\_frame.df}. The returned value is, of course, not the desired one. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my_data_frame.df}\hlopt{$}\hlstd{C} \hlkwb{<-} \hlkwa{NULL} -\hlkwd{attach}\hlstd{(my_data_frame.df)} -\end{alltt} - - -{\ttfamily\noindent\itshape\color{messagecolor}{\#\# The following object is masked \_by\_ .GlobalEnv:\\\#\# \\\#\# \ \ \ \ A}}\begin{alltt} -\hlstd{my_data_frame.df}\hlopt{$}\hlstd{C} \hlkwb{<-} \hlstd{(A} \hlopt{+} \hlstd{B)} \hlopt{/} \hlstd{A} -\hlkwd{detach}\hlstd{(my_data_frame.df)} -\hlkwd{head}\hlstd{(my_data_frame.df,} \hlnum{2}\hlstd{)} -\end{alltt} -\begin{verbatim} -## A B C -## 1 1 3 4 -## 2 2 3 4 -\end{verbatim} -\end{kframe} -\end{knitrout} - -In the case of \Rscoping{with()} only one, possibly compound code statement is affected and this statement is passed as an argument. As before, we need to fully specify the left-hand side of the assignment. The value returned is the one returned by the statement passed as an argument, in the case of compound statements, the value returned by the last contained simple code statement to be executed. Consequently, if the intent is to modify the container, assignment to an individual member variable (column in this case) is required. In contrast to the behavior of \code{attach()}, In this case, column \code{A} of \code{my\_data\_frame.df} takes precedence, and the returned value is the expected one. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my_data_frame.df}\hlopt{$}\hlstd{C} \hlkwb{<-} \hlkwa{NULL} -\hlstd{my_data_frame.df}\hlopt{$}\hlstd{C} \hlkwb{<-} \hlkwd{with}\hlstd{(my_data_frame.df, (A} \hlopt{+} \hlstd{B)} \hlopt{/} \hlstd{A)} -\hlkwd{head}\hlstd{(my_data_frame.df,} \hlnum{2}\hlstd{)} -\end{alltt} -\begin{verbatim} -## A B C -## 1 1 3 4.0 -## 2 2 3 2.5 -\end{verbatim} -\end{kframe} -\end{knitrout} - -In the case of \Rscoping{within()}, assignments in the argument to its second parameter affect the object returned, which is a copy of the container (In this case, a whole data frame), which still needs to be saved through assignment. Here the intention is to modify it, so we assign it back to the same name, but it could have been assigned to a different name so as not to overwrite the original data frame. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my_data_frame.df}\hlopt{$}\hlstd{C} \hlkwb{<-} \hlkwa{NULL} -\hlstd{my_data_frame.df} \hlkwb{<-} \hlkwd{within}\hlstd{(my_data_frame.df, C} \hlkwb{<-} \hlstd{(A} \hlopt{+} \hlstd{B)} \hlopt{/} \hlstd{A)} -\hlkwd{head}\hlstd{(my_data_frame.df,} \hlnum{2}\hlstd{)} -\end{alltt} -\begin{verbatim} -## A B C -## 1 1 3 4.0 -## 2 2 3 2.5 -\end{verbatim} -\end{kframe} -\end{knitrout} -In the example above, \code{within()} makes little difference compared to using \Rscoping{with()} with respect to the amount of typing or clarity, but with multiple member variables being operated upon, as shown below, \Rscoping{within()} has an advantage resulting in more concise and easier to understand code. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my_data_frame.df}\hlopt{$}\hlstd{C} \hlkwb{<-} \hlkwa{NULL} -\hlstd{my_data_frame.df} \hlkwb{<-} \hlkwd{within}\hlstd{(my_data_frame.df,} - \hlstd{\{C} \hlkwb{<-} \hlstd{(A} \hlopt{+} \hlstd{B)} \hlopt{/} \hlstd{A} - \hlstd{D} \hlkwb{<-} \hlstd{A} \hlopt{*} \hlstd{B} - \hlstd{E} \hlkwb{<-} \hlstd{A} \hlopt{/} \hlstd{B} \hlopt{+} \hlnum{1}\hlstd{\}} - \hlstd{)} -\hlkwd{head}\hlstd{(my_data_frame.df,} \hlnum{2}\hlstd{)} -\end{alltt} -\begin{verbatim} -## A B E D C -## 1 1 3 1.333333 3 4.0 -## 2 2 3 1.666667 6 2.5 -\end{verbatim} -\end{kframe} -\end{knitrout} - -Use of \Rscoping{attach()} and \Rscoping{detach()}, which function as a pair of ON and OFF switches, can result in an undesired after-effect on name lookup if the script terminates after \Rscoping{attach()} is executed but before \Rscoping{detach()} is called, as cleanup is not automatic. In contrast, \Rscoping{with()} and \Rscoping{within()}, being self-contained, guarantee that cleanup takes place. Consequently, the usual recommendation is to give preference to the use of \Rscoping{with()} and \Rscoping{within()} over \Rscoping{attach()} and \Rscoping{detach()}. Use of these functions not only saves typing but also makes code more readable. -\end{explainbox} - -\subsection{Re-arranging columns and rows} -\index{data frames!ordering rows}\index{data frames!ordering columns} -The most direct way of changing the order of columns and/or rows in data frames (and matrices and arrays) is to use subscripting as described above. Once we know the original position and target position we can use numerical indexes on both right-hand side and left-hand side of an assignment. - -\begin{warningbox} -When using the extraction operator \Roperator{[]} on both the left-hand-side and right-hand-side to swap columns, the vectors or factors are swapped, while the names of the columns are not! The same applies to row names, which makes storing important information in them inconvenient and error prone. -\end{warningbox} - -To retain the correspondence between column naming and column contents after swapping or rearranging the columns, we need to separately move the names of the columns. This seems counter intuitive, unless we think in terms of positions being named rather than the contents of the columns being linked to the names. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my_data_frame.df} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{A} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{10}\hlstd{,} \hlkwc{B} \hlstd{=} \hlnum{3}\hlstd{)} -\hlkwd{head}\hlstd{(my_data_frame.df,} \hlnum{2}\hlstd{)} -\end{alltt} -\begin{verbatim} -## A B -## 1 1 3 -## 2 2 3 -\end{verbatim} -\begin{alltt} -\hlstd{my_data_frame.df[ ,} \hlnum{1}\hlopt{:}\hlnum{2}\hlstd{]} \hlkwb{<-} \hlstd{my_data_frame.df[ ,} \hlnum{2}\hlopt{:}\hlnum{1}\hlstd{]} -\hlkwd{head}\hlstd{(my_data_frame.df,} \hlnum{2}\hlstd{)} -\end{alltt} -\begin{verbatim} -## A B -## 1 3 1 -## 2 3 2 -\end{verbatim} -\begin{alltt} -\hlkwd{colnames}\hlstd{(my_data_frame.df)[}\hlnum{1}\hlopt{:}\hlnum{2}\hlstd{]} \hlkwb{<-} \hlkwd{colnames}\hlstd{(my_data_frame.df)[}\hlnum{2}\hlopt{:}\hlnum{1}\hlstd{]} -\hlkwd{head}\hlstd{(my_data_frame.df,} \hlnum{2}\hlstd{)} -\end{alltt} -\begin{verbatim} -## B A -## 1 3 1 -## 2 3 2 -\end{verbatim} -\end{kframe} -\end{knitrout} - -Taking into account that \Rfunction{order()} returns the indexes needed to sort a vector (see page \pageref{box:vec:sort}), we can use \Rfunction{order()} to generate the indexes needed to sort rows of a data frame. In this case, the argument to \Rfunction{order()} is usually a column of the data frame being arranged. However, any vector of suitable length, including the result of applying a function to one or more columns, can be passed as an argument to \Rfunction{order()}. Function \Rfunction{order()} is very rarely useful for sorting columns of data frames as it requires a vector across columns as input. In the case of \Rclass{matrix} and \Rclass{array} this approach can be applied to any of their dimensions as all their elements homogenously belong to one class. - -\begin{playground}\index{data frames!ordering rows} -The first task to be completed is to sort a data frame based on the values in one column, using indexing and \Rfunction{order()}. Create a new data frame and with three numeric columns with three different haphazard sequences of values. Call these columns \code{A}, \code{B} and \code{C}. 1) Sort the rows of the data frame so that the values in \code{A} are in decreasing order. 2) Sort the rows of the data frame according to increasing values of the sum of \code{A} and \code{B} without adding a new column to the data frame or storing the vector of sums in a variable. In other words, do the sorting based on sums calculated on the fly. -\end{playground} - -\begin{advplayground}\index{data frames!ordering rows} -Repeat the tasks in the playground immediately above but using factors instead of numeric vectors as columns in the data frame. Hint: revisit the exercise on page \pageref{calc:ADVPG:order:sort} were the use of \Rfunction{order()} on factors is described. -\end{advplayground} - -\index{data frames|)} - - - -\section{Attributes of R objects}\label{sec:calc:attributes} -\index{attributes|(} - -\Rlang objects can have attributes. Attributes are named slots normally used to store ancillary data such as object properties. There are no restrictions on the class of what is assigned to an attribute. They are used by \Rlang itself to store things like column names in data frames and labels of factor levels. All these attributes are visible to user code, and user code can read and write objects' attributes. However, they are rarely displayed explicitly when an object is printed. They can be also used to store metadata accompanying the data stored in an object, which is important for reproducible research and data sharing. - -Attribute \code{"comment"} is meant to be set by users to store a character string---e.g., to store metadata as text together with data. As comments are frequently used, \Rlang has functions for accessing and setting comments. \qRfunction{comment()}\qRfunction{comment()<-} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a.df} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{6}\hlstd{,} \hlkwc{y} \hlstd{=} \hlstr{"a"}\hlstd{,} \hlkwc{z} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{))} -\hlkwd{comment}\hlstd{(a.df)} -\end{alltt} -\begin{verbatim} -## NULL -\end{verbatim} -\begin{alltt} -\hlkwd{comment}\hlstd{(a.df)} \hlkwb{<-} \hlstr{"this is stored as a comment"} -\hlkwd{comment}\hlstd{(a.df)} -\end{alltt} -\begin{verbatim} -## [1] "this is stored as a comment" -\end{verbatim} -\end{kframe} -\end{knitrout} - -Methods like \Rfunction{names()}, \Rfunction{dim()} or \Rfunction{levels()} return values retrieved from attributes stored in \Rlang objects, and methods like \Rfunction{names()<-}, \Rfunction{dim()<-} or \Rfunction{levels()<-} set (or unset with \code{NULL}) the value of the respective attributes. Specific query and set methods do not exist for all attributes. Methods \Rfunction{attr()}, \Rfunction{attr()<-} and \Rfunction{attributes()} can be used with any attribute. With \Rfunction{attr()} we access, and with \Rfunction{attr()<-} we set individual attributes by name. With \Rfunction{attributes()} we retrieve all attributes of an object as a named \code{list}. In addition, method \Rfunction{str()} displays all components and structure of \Rlang objects including their attributes. - -Continuing with the previous example, we can retrieve and set the comment using these functions. In the second statement we delete the value stored in the \code{"comment"} attribute by assigning \code{NULL} to it. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{attr}\hlstd{(a.df,} \hlstr{"comment"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] "this is stored as a comment" -\end{verbatim} -\begin{alltt} -\hlkwd{attr}\hlstd{(a.df,} \hlstr{"comment"}\hlstd{)} \hlkwb{<-} \hlkwa{NULL} -\hlkwd{attr}\hlstd{(a.df,} \hlstr{"comment"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## NULL -\end{verbatim} -\begin{alltt} -\hlkwd{comment}\hlstd{(a.df)} \hlcom{# same as previous line} -\end{alltt} -\begin{verbatim} -## NULL -\end{verbatim} -\end{kframe} -\end{knitrout} - -The \code{"names"} attribute of \code{a.df} was set by the \code{data.frame()} constructor when it was created above. In the next example, in the first statement we retrieve the names, and implicitly print them. In the second statement, read from right to left, we retrieve the names, convert them to upper case and save them back to the same attribute. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{names}\hlstd{(a.df)} -\end{alltt} -\begin{verbatim} -## [1] "x" "y" "z" -\end{verbatim} -\begin{alltt} -\hlkwd{names}\hlstd{(a.df)} \hlkwb{<-} \hlkwd{toupper}\hlstd{(}\hlkwd{names}\hlstd{(a.df))} -\hlkwd{names}\hlstd{(a.df)} -\end{alltt} -\begin{verbatim} -## [1] "X" "Y" "Z" -\end{verbatim} -\begin{alltt} -\hlkwd{attr}\hlstd{(a.df,} \hlstr{"names"}\hlstd{)} \hlcom{# same as previous line} -\end{alltt} -\begin{verbatim} -## [1] "X" "Y" "Z" -\end{verbatim} -\end{kframe} -\end{knitrout} - -We can add a new attribute, under our own control, as long as its name does not clash with that of existing attributes. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{attr}\hlstd{(a.df,} \hlstr{"my.attribute"}\hlstd{)} \hlkwb{<-} \hlstr{"this is stored in my attribute"} -\hlkwd{attributes}\hlstd{(a.df)} -\end{alltt} -\begin{verbatim} -## $names -## [1] "X" "Y" "Z" -## -## $class -## [1] "data.frame" -## -## $row.names -## [1] 1 2 3 4 5 6 -## -## $my.attribute -## [1] "this is stored in my attribute" -\end{verbatim} -\end{kframe} -\end{knitrout} -\begin{warningbox} -There is no restriction to the creation, setting, resetting and reading of attributes, but not all methods and operators that can be used to modify objects will preserve non-standard attributes. This can be a problem when using some \Rlang packages, such as some popular packages from the \pkgname{tidyverse}. So, using private attributes is a double-edged sword that usually is worthwhile considering only when designing a new class together with the corresponding methods for it. A good example of extensive use of class-specific attributes are the values returned by model fitting functions like \Rfunction{lm()} (see section \ref{sec:stat:LM} on page \pageref{sec:stat:LM}). - -Even the class of S3 objects is stored as an attribute that is accessible as any other attribute---this is in contrast to the mode and atomic class of an object. Object-oriented programming in \Rlang is explained in section \ref{sec:script:objects:classes:methods} on page \pageref{sec:script:objects:classes:methods}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{numbers} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{10} -\hlkwd{mode}\hlstd{(numbers)} -\end{alltt} -\begin{verbatim} -## [1] "numeric" -\end{verbatim} -\begin{alltt} -\hlkwd{class}\hlstd{(numbers)} -\end{alltt} -\begin{verbatim} -## [1] "integer" -\end{verbatim} -\begin{alltt} -\hlkwd{attributes}\hlstd{(numbers)} -\end{alltt} -\begin{verbatim} -## NULL -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a.factor} \hlkwb{<-} \hlkwd{factor}\hlstd{(numbers)} -\hlkwd{mode}\hlstd{(a.factor)} -\end{alltt} -\begin{verbatim} -## [1] "numeric" -\end{verbatim} -\begin{alltt} -\hlkwd{class}\hlstd{(a.factor)} -\end{alltt} -\begin{verbatim} -## [1] "factor" -\end{verbatim} -\begin{alltt} -\hlkwd{attributes}\hlstd{(a.factor)} -\end{alltt} -\begin{verbatim} -## $levels -## [1] "1" "2" "3" "4" "5" "6" "7" "8" "9" "10" -## -## $class -## [1] "factor" -\end{verbatim} -\end{kframe} -\end{knitrout} -\end{warningbox} - - - -\index{attributes|)} - -\section{Saving and loading data} - -\subsection{Data sets in R and packages} -\index{data!loading data sets|(} -To be able to present more meaningful examples, we need some real data. Here we use \code{cars}, one of the many data sets included in base \Rpgrm. Function \Rfunction{data()} is used to load data objects that are included in \Rlang or contained in packages. It is also possible to import data saved in files with \textit{foreign} formats, defined by other software or commonly used for data exchange. Package \pkgname{foreign}, included in the \Rlang distribution, as well as contributed packages make available functions capable of reading and decoding various foreign formats. How to read or import ``foreign'' data is discussed in \Rlang documentation in \emph{R Data Import/Export}, and in this book, in chapter \ref{chap:R:data:io} starting on page \pageref{chap:R:data:io}. It is also good to keep in mind that in \Rlang, URLs (Uniform Resource Locators) are accepted as arguments to the \code{file} or \code{path} parameter of many functions (see section \ref{sec:files:remote} starting on page \pageref{sec:files:remote}). - -In the next example we load data included in \Rlang as \Rlang objects by calling function \Rfunction{data()}. The loaded \Rlang object \code{cars} is a data frame. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{data}\hlstd{(cars)} -\end{alltt} -\end{kframe} -\end{knitrout} - -Once we have a data set available, the first step is usually to explore it, and we will do this with \code{cars} in section \ref{sec:calc:looking:at:data} on page \pageref{sec:calc:looking:at:data}. -\index{data!loading data sets|)} - -\subsection{.rda files}\label{sec:data:rda} - -By default, at the end of a session, the current workspace containing the results of your work is saved into a file called \code{.RData}. In addition to saving the whole workspace, it is possible to save one or more \Rlang objects present in the workspace to disk using the same file format (with file name tag \code{.rda} or \code{.Rda}). One or more objects, belonging to any mode or class can be saved into a single file using function \Rfunction{save()}. Reading the file restores all the saved objects into the current workspace with their original names. These files are portable across most \Rlang versions---i.e., old formats can be read and written by newer versions of R, although the newer, default format may be not readable with earlier \Rlang versions. Whether compression is used, and whether the ``binary'' data is encoded into ASCII characters, allowing maximum portability at the expense of increased size can be controlled by passing suitable arguments to \Rfunction{save()}. - -We create a data frame object and then save it to a file. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.df} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlkwc{y} \hlstd{=} \hlnum{5}\hlopt{:}\hlnum{1}\hlstd{)} -\hlstd{my.df} -\end{alltt} -\begin{verbatim} -## x y -## 1 1 5 -## 2 2 4 -## 3 3 3 -## 4 4 2 -## 5 5 1 -\end{verbatim} -\begin{alltt} -\hlkwd{save}\hlstd{(my.df,} \hlkwc{file} \hlstd{=} \hlstr{"my-df.rda"}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - -We delete the data frame object and confirm that it is no longer present in the workspace. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{rm}\hlstd{(my.df)} -\hlkwd{ls}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"my.df"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## character(0) -\end{verbatim} -\end{kframe} -\end{knitrout} - -We read the file we earlier saved to restore the object.\qRfunction{load()} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{load}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"my-df.rda"}\hlstd{)} -\hlkwd{ls}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"my.df"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] "my.df" -\end{verbatim} -\begin{alltt} -\hlstd{my.df} -\end{alltt} -\begin{verbatim} -## x y -## 1 1 5 -## 2 2 4 -## 3 3 3 -## 4 4 2 -## 5 5 1 -\end{verbatim} -\end{kframe} -\end{knitrout} - -The default format used is binary and compressed, which results in smaller files. - -\begin{playground} -In the example above, only one object was saved, but one can simply give the names of additional objects as arguments. Just try saving more than one data frame to the same file. Then the data frames plus a few vectors. After creating each file, clear the workspace and then restore from the file the objects you saved. -\end{playground} - -Sometimes it is easier to supply the names of the objects to be saved as a vector of character strings passed as an argument to parameter \code{list}. One case is when wanting to save a group of objects based on their names. We can use \Rfunction{ls()} to list the names of objects matching a simple \code{pattern} or a complex regular expression. The example below does this in two steps, first saving a character vector with the names of the objects matching a pattern, and then using this saved vector as an argument to \code{save}'s \code{list} parameter. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{objcts} \hlkwb{<-} \hlkwd{ls}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"*.df"}\hlstd{)} -\hlkwd{save}\hlstd{(}\hlkwc{list} \hlstd{= objcts,} \hlkwc{file} \hlstd{=} \hlstr{"my-df1.rda"}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - -The two statements above can be combined into a single statement by nesting the function calls. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{save}\hlstd{(}\hlkwc{list} \hlstd{=} \hlkwd{ls}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"*.df"}\hlstd{),} \hlkwc{file} \hlstd{=} \hlstr{"my-df1.rda"}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - -\begin{playground} -Practice using different patterns with \Rfunction{ls()}. You do not need to save the objects to a file. Just have a look at the list of object names returned. -\end{playground} - -As a coda, we show how to clean up by deleting the two files we created. Function \Rfunction{unlink()} can be used to delete any files for which the user has enough rights. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{unlink}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"my-df.rda"}\hlstd{,} \hlstr{"my-df1.rda"}\hlstd{))} -\end{alltt} -\end{kframe} -\end{knitrout} - -\subsection{.rds files}\label{sec:data:rds} - -The RDS format can be used to save individual objects instead of multiple objects (usually using file name tag \code{.rds}). They are read and saved with functions \Rfunction{readRDS()} and \Rfunction{saveRDS()}, respectively. -When RDS files are read, different from when RDA files are loaded, we need to assign the object read to a possibly different name for it to added to the search pass. Of course, it is also possible to use the returned object as an argument to a function or in an expression without saving it to a variable. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{saveRDS}\hlstd{(my.df,} \hlstr{"my-df.rds"}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - -If we read the file, by default the read \Rlang object will be printed at the console. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{readRDS}\hlstd{(}\hlstr{"my-df.rds"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## x y -## 1 1 5 -## 2 2 4 -## 3 3 3 -## 4 4 2 -## 5 5 1 -\end{verbatim} -\end{kframe} -\end{knitrout} - -In the next example we assign the read object to a different name, and check that the object read is identical to the one saved. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my_read.df} \hlkwb{<-} \hlkwd{readRDS}\hlstd{(}\hlstr{"my-df.rds"}\hlstd{)} -\hlkwd{identical}\hlstd{(my.df, my_read.df)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\end{kframe} -\end{knitrout} - -As above, we clean up by deleting the file. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{unlink}\hlstd{(}\hlstr{"my-df.rds"}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - -\section{Looking at data}\label{sec:calc:looking:at:data} -\index{data!exploration at the R console|(} -There are several functions in \Rlang that let us obtain different views into objects. Function \Rfunction{print()} is useful for small data sets, or objects. Especially in the case of large data frames, we need to explore them step by step. In the case of named components, we can obtain their names with \Rfunction{colnames()}, \Rfunction{rownames()}, and \Rfunction{names()}. If a data frame contains many rows of observations, \Rfunction{head()} and \Rfunction{tail()} allow us to easily restrict the number of rows printed. Functions \Rfunction{nrow()} and \Rfunction{ncol()} return the number of rows and columns in the data frame (also applicable to matrices but not to lists or vectors where we use \Rfunction{length()}). As mentioned earlier, function \Rfunction{str()} concisely displays the structure of \Rlang objects. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{class}\hlstd{(cars)} -\end{alltt} -\begin{verbatim} -## [1] "data.frame" -\end{verbatim} -\begin{alltt} -\hlkwd{head}\hlstd{(cars)} -\end{alltt} -\begin{verbatim} -## speed dist -## 1 4 2 -## 2 4 10 -## 3 7 4 -## 4 7 22 -## 5 8 16 -## 6 9 10 -\end{verbatim} -\begin{alltt} -\hlkwd{tail}\hlstd{(cars)} -\end{alltt} -\begin{verbatim} -## speed dist -## 45 23 54 -## 46 24 70 -## 47 24 92 -## 48 24 93 -## 49 24 120 -## 50 25 85 -\end{verbatim} -\begin{alltt} -\hlkwd{nrow}\hlstd{(cars)} -\end{alltt} -\begin{verbatim} -## [1] 50 -\end{verbatim} -\begin{alltt} -\hlkwd{ncol}\hlstd{(cars)} -\end{alltt} -\begin{verbatim} -## [1] 2 -\end{verbatim} -\begin{alltt} -\hlkwd{names}\hlstd{(cars)} -\end{alltt} -\begin{verbatim} -## [1] "speed" "dist" -\end{verbatim} -\begin{alltt} -\hlkwd{colnames}\hlstd{(cars)} -\end{alltt} -\begin{verbatim} -## [1] "speed" "dist" -\end{verbatim} -\begin{alltt} -\hlkwd{head}\hlstd{(}\hlkwd{rownames}\hlstd{(cars))} -\end{alltt} -\begin{verbatim} -## [1] "1" "2" "3" "4" "5" "6" -\end{verbatim} -\begin{alltt} -\hlkwd{str}\hlstd{(cars)} -\end{alltt} -\begin{verbatim} -## 'data.frame': 50 obs. of 2 variables: -## $ speed: num 4 4 7 7 8 9 10 10 10 11 ... -## $ dist : num 2 10 4 22 16 10 18 26 34 17 ... -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{playground} -Look up the help pages for \Rfunction{head()} and \Rfunction{tail()}, and edit the code above to print only the first two lines, or only the last three lines of \code{cars}, respectively. -\end{playground} - -The different columns of a data frame can be factors, or vectors of various modes (e.g., numeric, logical, character, etc.) (see section \ref{sec:R:data:frames} on page \pageref{sec:R:data:frames}). -To explore the mode of the columns of \code{cars}, we can use an \emph{apply} function. In the present case, we want to apply function \code{class()} to each column of the data frame \code{cars}. (Apply functions are described in section \ref{sec:data:apply} on page \pageref{sec:data:apply}.) -\qRloop{sapply} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{sapply}\hlstd{(}\hlkwc{X} \hlstd{= cars,} \hlkwc{FUN} \hlstd{= class)} -\end{alltt} -\begin{verbatim} -## speed dist -## "numeric" "numeric" -\end{verbatim} -\end{kframe} -\end{knitrout} - -The statement above returns a vector of character strings, with the mode of each column. Each element of the vector is named according to the name of the corresponding ``column'' in the data frame. For this same statement to be used with any other data frame or list, we need only to substitute the name of the object, the argument to the first parameter called \code{X}, to the one of current interest. - -\begin{playground} -Data set \code{airquality} contains data from air quality measurements in New York, and, being included in the \Rpgrm distribution, can be loaded with \code{data(airquality)}. Load it, and repeat the steps above, to learn what variables (columns) it contains, their classes, the number of rows, etc. -\end{playground} - -\begin{explainbox} -Although the \Rlang language allows data frame columns of class \Rclass{matrix}, their use is infrequent. On the other hand, columns belonging to class \Rclass{list} are disallowed in data frames. The reverse is true for tibbles (described in section \ref{sec:data:tibble} on page \pageref{sec:data:tibble}). -\end{explainbox} - -Function \Rfunction{summary()} can be used to obtain a summary from objects of most \Rlang classes, including data frames. We can also use \Rloop{sapply()}, \Rloop{lapply()} or \Rloop{vapply()} to apply any suitable function to individual columns. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{summary}\hlstd{(cars)} -\end{alltt} -\begin{verbatim} -## speed dist -## Min. : 4.0 Min. : 2.00 -## 1st Qu.:12.0 1st Qu.: 26.00 -## Median :15.0 Median : 36.00 -## Mean :15.4 Mean : 42.98 -## 3rd Qu.:19.0 3rd Qu.: 56.00 -## Max. :25.0 Max. :120.00 -\end{verbatim} -\begin{alltt} -\hlkwd{sapply}\hlstd{(cars, range)} -\end{alltt} -\begin{verbatim} -## speed dist -## [1,] 4 2 -## [2,] 25 120 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{advplayground} -Obtain the summary of \code{airquality} with function \Rfunction{summary()}, but in addition, write code with an \emph{apply} function to count the number of non-missing values in each column. Hint: using \code{sum()} on a \code{logical} vector returns the count of \code{TRUE} values as \code{TRUE}, and \code{FALSE} are transparently converted into \code{numeric} 1 and 0, respectively, when \code{logical} values are used in arithmetic expressions. -\end{advplayground} - -\section{Plotting} -\index{plots!base R graphics} -The base-\Rlang generic method \Rfunction{plot()} can be used to plot different data. It is a generic method that has specializations suitable for different kinds of objects (see section \ref{sec:script:objects:classes:methods} on page \pageref{sec:script:objects:classes:methods} for a brief introduction to objects, classes and methods). In this section we only very briefly demonstrate the use of the most common base-\Rlang graphics functions. They are well described in the book \citebooktitle{Murrell2019} \autocite{Murrell2019}. We will not describe the Lattice (based on S's Trellis) approach to plotting \autocite{Sarkar2008}. Instead we describe in detail the use of the \emph{grammar of graphics} and plotting with package \ggplot in chapter \ref{chap:R:plotting} starting on page \pageref{chap:R:plotting}. - -It is possible to pass two variables (here columns from a data frame) directly as arguments to the \code{x} and \code{y} parameters of \Rfunction{plot()}. - - - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{plot}\hlstd{(}\hlkwc{x} \hlstd{= cars}\hlopt{$}\hlstd{speed,} \hlkwc{y} \hlstd{= cars}\hlopt{$}\hlstd{dist)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.54\textwidth]{figure/pos-plot-1-1} - -} - - -\end{knitrout} - -It is also possible, and usually more convenient, to use a \emph{formula} to specify the variables to be plotted on the $x$ and $y$ axes, passing additionally as an argument to parameter \code{data} the name of the data frame containing these variables. The formula \code{dist \textasciitilde\ speed}, is read as \code{dist} explained by \code{speed}---i.e., \code{dist} is mapped to the $y$-axis as the dependent variable and \code{speed} to the $x$-axis as the independent variable. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{plot}\hlstd{(dist} \hlopt{~} \hlstd{speed,} \hlkwc{data} \hlstd{= cars)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.54\textwidth]{figure/pos-plot-2-1} - -} - - -\end{knitrout} - -Within \Rlang there exist different specializations, or ``flavors,'' of method \Rfunction{plot()} that become active depending on the class of the variables passed as arguments: passing two numerical variables results in a scatter plot as seen above. In contrast passing one factor and one numeric variable to \code{plot()} results in a box-and-whiskers plot being produced. To exemplify this we need to use a different data set, here \code{chickwts} as \code{cars} does not contain any factors. Use \code{help("chickwts")} to learn more about this data set, also included in \Rpgrm . - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{plot}\hlstd{(weight} \hlopt{~} \hlstd{feed,} \hlkwc{data} \hlstd{= chickwts)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.54\textwidth]{figure/pos-plot-3-1} - -} - - -\end{knitrout} - -Method \Rfunction{plot()} and variants defined in \Rlang, when used for plotting return their graphical output to a \emph{graphical output device}. In \Rlang, graphical devices are very frequently not real physical devices like a printer, but virtual devices implemented fully in software that translate the plotting commands into a specific graphical file format. Several different graphical devices are available in \Rlang and they differ in the kind of output they produce: raster files (e.g., TIFF, PNG and JPEG formats), vector graphics files (e.g., SVG, EPS and PDF) or output to a physical device like a window in the screen of a computer. Additional devices are available through contributed \Rlang packages. - -Devices follow the paradigm of ON and OFF switches. Some devices producing a file as output, save this output only when the device is closed. When opening a device the user supplies additional information. For the PDF device that produces output in a vector-graphics format, width and height of the output are specified in \emph{inches}. A default file name is used unless we pass a \code{character} string as an argument to parameter \code{file}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{pdf}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"output/my-file.pdf"}\hlstd{,} \hlkwc{width} \hlstd{=} \hlnum{6}\hlstd{,} \hlkwc{height} \hlstd{=} \hlnum{5}\hlstd{,} \hlkwc{onefile} \hlstd{=} \hlnum{TRUE}\hlstd{)} -\hlkwd{plot}\hlstd{(dist} \hlopt{~} \hlstd{speed,} \hlkwc{data} \hlstd{= cars)} -\hlkwd{plot}\hlstd{(weight} \hlopt{~} \hlstd{feed,} \hlkwc{data} \hlstd{= chickwts)} -\hlkwd{dev.off}\hlstd{()} -\end{alltt} -\begin{verbatim} -## cairo_pdf -## 2 -\end{verbatim} -\end{kframe} -\end{knitrout} - -Raster devices return bitmaps and \code{width} and \code{height} are specified in \emph{pixels}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{png}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"output/my-file.png"}\hlstd{,} \hlkwc{width} \hlstd{=} \hlnum{600}\hlstd{,} \hlkwc{height} \hlstd{=} \hlnum{500}\hlstd{)} -\hlkwd{plot}\hlstd{(weight} \hlopt{~} \hlstd{feed,} \hlkwc{data} \hlstd{= chickwts)} -\hlkwd{dev.off}\hlstd{()} -\end{alltt} -\begin{verbatim} -## cairo_pdf -## 2 -\end{verbatim} -\end{kframe} -\end{knitrout} - -When \Rlang is used interactively, a device to output the graphical output to a display device is opened automatically. The name of the device may depend on the operating system used (e.g., \osname{MS-Windows} or \osname{Linux}) or an IDE---e.g., \RStudio defines its own graphic device for output to the Plots pane of its user interface. - -\begin{warningbox} -This approach of direct output to a device, and addition of plot components as shown below, directly on the output device itself, is not the only approach available. As we will see in chapter \ref{chap:R:plotting} starting on page \pageref{chap:R:plotting}, an alternative approach is to build a \emph{plot object} as a list of member components that is later rendered as a whole on a graphical device by calling \code{print()} once. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{png}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"output/my-file.png"}\hlstd{,} \hlkwc{width} \hlstd{=} \hlnum{600}\hlstd{,} \hlkwc{height} \hlstd{=} \hlnum{500}\hlstd{)} -\hlkwd{plot}\hlstd{(dist} \hlopt{~} \hlstd{speed,} \hlkwc{data} \hlstd{= cars)} -\hlkwd{text}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{10}\hlstd{,} \hlkwc{y} \hlstd{=} \hlnum{110}\hlstd{,} \hlkwc{labels} \hlstd{=} \hlstr{"some texts to be added"}\hlstd{)} -\hlkwd{dev.off}\hlstd{()} -\end{alltt} -\begin{verbatim} -## cairo_pdf -## 2 -\end{verbatim} -\end{kframe} -\end{knitrout} -\end{warningbox} - -\section{Further reading} -For\index{further reading!using the R language} further reading on the aspects of \Rlang discussed in the current chapter, - I suggest the books \citetitle{Peng2016} (\citeauthor{Peng2016}) and \citetitle{Matloff2011} (\citeauthor{Matloff2011}). - - - -\index{data!exploration at the R console|)} - - - - - -% !Rnw root = appendix.main.Rnw - - - -\chapter{The R language: ``Paragraphs'' and ``essays''}\label{chap:R:scripts} -\index{scripts} - -\begin{VF} -An \Rlang script is simply a text file containing (almost) the same commands that you would enter on the command line of \Rlang. - -\VA{Jim Lemon}{\emph{Kickstarting R}}\nocite{LemonND} -\end{VF} - -%\dictum[\href{https://cran.r-project.org/doc/contrib/Lemon-kickstart/}{Kickstarting R}]{An R script is simply a text file containing (almost) the same commands that you would enter on the command line of R.}\vskip2ex - -\section{Aims of this chapter} - -For those who have mainly used graphical user interfaces, understanding why and when scripts can help in communicating a certain data analysis protocol can be revelatory. As soon as a data analysis stops being trivial, describing the steps followed through a system of menus and dialogue boxes becomes extremely tedious. - -Moreover, graphical user interfaces tend to be difficult to extend or improve in a way that keeps step-by-step instructions valid across program versions and operating systems. - -Many times, exactly the same sequence of commands needs to be applied to different data sets, and scripts make both implementation and validation of such a requirement easy. - -In this chapter, I will walk you through the use of \Rpgrm scripts, starting from an extremely simple script. - -\section{Writing scripts} - -In \Rlang language, the closest match to a natural language essay is a script. A script is built from multiple interconnected code statements needed to complete a given task. Simple statements can be combined into compound statements, which are the equivalent of natural language paragraphs. Scripts can vary from simple scripts containing only a few code statements, to complex scripts containing hundreds of code statements. In the rest of the present section I discuss how to write readable and reliable scripts and how to use them. - -\subsection{What is a script?}\label{sec:script:what:is} -\index{scripts!definition} -A \textit{script} is a text file that contains (almost) the same commands that you would type at the console prompt. A true script is not, for example, an MS-Word file where you have pasted or typed some \Rlang commands. - -When typing commands/statements at the \Rlang console, we "feed" one line of text at a time. When we end the line by typing the enter key, the line of text is interpreted and evaluated. We then type the next line of text, which gets in turn interpreted and evaluated, and so on. In a script we write nearly the same text in an editor and save multiple lines containing commands into a text file. Interpretation takes place only later, when we \emph{source} the file as a whole into \Rlang. - -A script file has the following characteristics. -\begin{itemize} - \item The script is a text file. - \item The file contains valid \Rlang statements (including comments) and nothing else. - \item Comments start at a \code{\#} and end at the end of the line. - \item The \Rlang statements are in the file in the order that they must be executed. - \item \Rlang scripts have file names ending in \texttt{.r} or \texttt{.R}. -\end{itemize} - -The statements in the text file, are read, interpreted and evaluated sequentially, from the start to the end of the file, as represented in the diagram. We use \textcolor{blue}{$\cdots$} to represent additional statements in the script. - -\begin{center} -\begin{small} -\begin{tikzpicture}[node distance=1.5cm] -\node (start) [startstop, color = blue, fill = blue!15] {\textsl{Top = start}}; -\node (stat2) [process, color = blue, fill = blue!15, below of=start] {\code{}}; -\node (stat3) [process, color = blue, fill = blue!15, below of=stat2] {\code{}}; -\node (continue) [startstop, color = blue, fill = blue!15, below of=stat3] {$\cdots$}; -\node (stop) [startstop, color = blue, fill = blue!15, below of=continue] {\textsl{Bottom = end}}; -\draw [arrow, color = blue] (start) -- (stat2); -\draw [arrow, color = blue] (stat2) -- (stat3); -\draw [arrow, color = blue] (stat3) -- (continue); -\draw [arrow, color = blue] (continue) -- (stop); -\end{tikzpicture} -\end{small} -\end{center} - -As we will see later in the chapter, code statements can be combined into larger statements and evaluated conditionally and/or repeatedly, which allows us to control the realised sequence of evaluated statements. Scripts need to respect the \Rlang syntax. In addition to being valid it is important that scripts are also understandable to humans, consequently a clear writing style and consistent adherence to it are important. - -It is good practice to write scripts so that they are self-contained. To make a script self-contained, one must include calls to \texttt{library()} to load the packages used, load or import data from files, perform the data analysis and display and/or save the results of the analysis. Such scripts can be used to apply the same analysis algorithm to other data and/or to reproduce the same analysis at a later time. Such scripts document all steps used for the analysis. - - - -\subsection{How do we use a script?}\label{sec:script:using} -\index{scripts!sourcing} - -A script can be ``sourced'' using function \Rfunction{source()}. If we have a text file called \texttt{my.first.script.r} containing the following text: -\begin{shaded} -\footnotesize -\begin{verbatim} -# this is my first R script -print(3 + 4) -\end{verbatim} -\end{shaded} - -and then source this file: - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{source}\hlstd{(}\hlstr{"my.first.script.r"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] 7 -\end{verbatim} -\end{kframe} -\end{knitrout} - -The results of executing the statements contained in the file will appear in the console. The commands themselves are not shown (by default the sourced file is not \emph{echoed} to the console) and the results will not be printed unless you include explicit \Rfunction{print()} commands in the script. This applies in many cases also to plots---e.g., a figure created with \Rfunction{ggplot()} needs to be printed if we want it to be included in the output when the script is run. Adding a redundant \Rfunction{print()} is harmless. - -From within \RStudio, if you have an \Rpgrm script open in the editor, there will be a ``source'' icon visible with an attached drop-down menu from which you can choose ``Source'' as described above, or ``Source with echo,'' or ``Source as local job'' for the script in the currently active editor tab. - -When a script is \emph{sourced}, the output can be saved to a text file instead of being shown in the console. It is also easy to call \Rpgrm with the \Rlang script file as an argument directly at the operating system shell or command-interpreter prompt---and obviously also from shell scripts. The next two chunks show commands entered at the OS shell command prompt rather than at the \Rlang command prompt. -\begin{shaded} -\footnotesize -\begin{verbatim} -> RScript my.first.script.r -\end{verbatim} -\end{shaded} - -You can open an operating system's \emph{shell} from the Tools menu in \RStudio, to run this command. The output will be printed to the shell console. If you would like to save the output to a file, use redirection using the operating system's syntax. -\begin{shaded} -\footnotesize -\begin{verbatim} -> RScript my.first.script.r > my.output.txt -\end{verbatim} -\end{shaded} - -Sourcing is very useful when the script is ready, however, while developing a script, or sometimes when testing things, one usually wants to run (or \emph{execute}) one or a few statements at a time. This can be done using the ``run'' button\footnote{If you use a different IDE or editor with an \Rlang mode, the details will vary, but a run command will be usually available.} after either positioning the cursor in the line to be executed, or selecting the text that one would like to run (the selected text can be part of a line, a whole line, or a group of lines, as long as it is syntactically valid). The key-shortcut Ctrl-Enter is equivalent to pressing the ``run'' button in \RStudio. - -\subsection{How to write a script}\label{sec:script:writing} -\index{scripts!writing} - -As with any type of writing, different approaches may be preferred by different \Rlang users. In general, the approach used, or mix of approaches, will also depend on how confident you are that the statements will work as expected---you already know the best approach vs.\ you are exploring different alternatives. -\begin{description} -\item[If one is very familiar with similar problems] One would just create a new text file and write the whole thing in the editor, and then test it. This is rather unusual. -\item[If one is moderately familiar with the problem] One would write the script as above, but testing it, step by step, as one is writing it. This is usually what I do. -\item[If one is mostly playing around] Then if one is using \RStudio, one can type statements at the console prompt. As you should know by now, everything you run at the console is saved to the ``History.'' In \RStudio, the History is displayed in its own pane, and in this pane one can select any previous statement(s) and by clicking on a single icon, copy and paste them to either the \Rlang console prompt, or the cursor position in the editor pane. In this way one can build a script by copying and pasting from the history to your script file, the bits that have worked as you wanted. -\end{description} - -\begin{playground} -By now you should be familiar enough with \Rlang to be able to write your own script. -\begin{enumerate} - \item Create a new \Rpgrm script (in \RStudio, from the File menu, ``+'' icon, or by typing ``Ctrl + Shift + N''). - \item Save the file as \texttt{my.second.script.r}. - \item Use the editor pane in \RStudio to type some \Rpgrm commands and comments. - \item \emph{Run} individual commands. - \item \emph{Source} the whole file. -\end{enumerate} -\end{playground} - -\subsection{The need to be understandable to people}\label{sec:script:readability} -\index{scripts!readability} - -When you write a script, it is either because you want to document what you have done or you want re-use the script at a later time. In either case, the script itself although still meaningful for the computer, could become very obscure to you, and even more to someone seeing it for the first time. This must be avoided by spending time and effort on the writing style. - -How does one achieve an understandable script or program? -\begin{itemize} - \item Avoid the unusual. People using a certain programming language tend to use some implicit or explicit rules of style---style includes \textit{indentation} of statements, \textit{capitalization} of variable and function names. As a minimum try to be consistent with yourself. - \item Use meaningful names for variables, and any other object. What is meaningful depends on the context. Depending on common use, a single letter may be more meaningful than a long word. However self-explanatory names are usually better: e.g., using \code{n.rows} and \code{n.cols} is much clearer than using \code{n1} and \code{n2} when dealing with a matrix of data. Probably \code{number.of.rows} and \code{number.of.columns} would make the script verbose, and take longer to type without gaining anything in return. - \item How to make the words visible in names: traditionally in \Rlang one would use dots to separate the words and use only lower case. Some years ago, it became possible to use underscores. The use of underscores is quite common nowadays because in some contexts it is ``safer'', as in some situations a dot may have a special meaning. What we call ``camel case'' is only infrequently used in \Rlang programming but is common in other languages like Pascal. An example of camel case is \code{NumCols}. -\end{itemize} - -\begin{playground} -Here is an example of bad style in a script. Read \href{https://google.github.io/styleguide/Rguide.xml}{Google's R Style Guide}%\footnote{This is just an example, similar, but not exactly the same style as the style I use myself.} -, and edit the code in the chunk below so that it becomes easier to read. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a} \hlkwb{<-} \hlnum{2} \hlcom{# height} -\hlstd{b} \hlkwb{<-} \hlnum{4} \hlcom{# length} -\hlstd{C} \hlkwb{<-} - \hlstd{a} \hlopt{*} -\hlstd{b} -\hlstd{C} \hlkwb{->} \hlstd{variable} - \hlkwd{print}\hlstd{(} -\hlstr{"area: "}\hlstd{, variable} -\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} -\end{playground} - -The points discussed above already help a lot. However, one can go further in achieving the goal of human readability by interspersing explanations and code ``chunks'' and using all the facilities of typesetting, even of formatted maths formulas and equations, within the listing of the script. Furthermore, by including the results of the calculations and the code itself in a typeset report built automatically, we can ensure that the results are indeed the result of running the code shown. This greatly contributes to data analysis reproducibility, which is becoming a widespread requirement for any data analysis both in academia and in industry. It is possible not only to typeset whole books like this one, but also whole data-based web sites with these tools. - -In the realm of programming, this approach is called literate programming\index{literate programming} and was first proposed by Donald Knuth \autocite{Knuth1984a} through his \pgrmname{WEB} system. In the case of \Rpgrm programming, the first support of literate programming was through \pkgname{Sweave}, which has been mostly superseded by \pkgname{knitr} \autocite{Xie2013}. This package supports the use of \langname{Markdown} or \LaTeX\index{Latex@\LaTeX}\ \autocite{Lamport1994} as the markup language for the textual contents and also formats and adds syntax highlighting to code chunks. \langname{Rmarkdown} is an extension to \langname{Markdown} that makes it easier to include \Rlang code in documents (see \url{http://rmarkdown.rstudio.com/}). It is the basis of \Rlang packages that support typesetting large and complex documents (\pkgname{bookdown}), web sites (\pkgname{blogdown}), package vignettes (\pkgname{pkgdown}) and slides for presentations \autocite{Xie2016,Xie2018}. The use of \pkgname{knitr} is very well integrated into the \RStudio IDE. - -This is not strictly an \Rlang programming subject, as it concerns programming in any language. On the other hand, this is an incredibly important skill to learn, but well described in other books and web sites cited in the previous paragraph. This whole book, including figures, has been generated using \pkgname{knitr} and the source code for the book is available through Bitbucket at \url{https://bitbucket.org/aphalo/learnr-book}. - -\subsection{Debugging scripts}\label{sec:script:debug} -\index{scripts!debugging} - -The use of the word \emph{bug} to describe a problem in computer hardware and software started in 1946 when a real bug, more precisely a moth, got between the contacts of a relay in an electromechanical computer causing it to malfunction and Grace Hooper described the first computer \emph{bug}. The use of the term bug in engineering predates the use in computer science, and consequently, the first use of bug in computing caught on easily because it represented an earlier-used metaphor becoming real. - -A suitable quotation from a letter written by Thomas Alva Edison 1878 \autocite[as given by][]{Hughes2004}: -\begin{quotation} - It has been just so in all of my inventions. The first step is an intuition, and comes with a burst, then difficulties arise--this thing gives out and [it is] then that ``Bugs''--as such little faults and difficulties are called--show themselves and months of intense watching, study and labor are requisite before commercial success or failure is certainly reached. -\end{quotation} - -The quoted paragraph above makes clear that only very exceptionally does any new design fully succeed. The same applies to \Rlang scripts as well as any other non-trivial piece of computer code. From this it logically follows that testing and de-bugging are fundamental steps in the development of \Rlang scripts and packages. Debugging, as an activity, is outside the scope of this book. However, clear programming style and good documentation are indispensable for efficient testing and reuse. - -Even for scripts used for analyzing a single data set, we need to be confident that the algorithms and their implementation are valid, and able to return correct results. This is true both for scientific reports, expert data-based reports and any data analysis related to assessment of compliance with legislation or regulations. Of course, even in cases when we are not required to demonstrate validity, say for decision making purely internal to a private organization, we will still want to avoid costly mistakes. - -The first step in producing reliable computer code is to accept that any code that we write needs to be tested and, if possible, validated. Another important step is to make sure that input is validated within the script and a suitable error produced for bad input (including valid input values falling outside the range that can be reliably handled by the script). - -If during testing, or during normal use, a wrong value is returned by a calculation, or no value (e.g., the script crashes or triggers a fatal error), debugging consists in finding the cause of the problem. The cause can be either a mistake in the implementation of an algorithm, as well as in the algorithm itself. However, many apparent \emph{bugs} are caused by bad or missing handling of special cases like invalid input values, rounding errors, division by zero, etc., in which a program crashes instead of elegantly issuing a helpful error message. - -Diagnosing the source of bugs is, in most cases, like detective work. One uses hunches based on common sense and experience to try to locate the lines of code causing the problem. One follows different \emph{leads} until the case is solved. In most cases, at the very bottom we rely on some sort of divide-and-conquer strategy. For example, we may check the value returned by intermediate calculations until we locate the earliest code statement producing a wrong value. Another common case is when some input values trigger a bug. In such cases it is frequently best to start by testing if different ``cases'' of input lead to errors/crashes or not. Boundary input values are usually the telltale ones: e.g., for numbers, zero, negative and positive values, very large values, very small values, missing values (\code{NA}), vectors of length zero (\code{numeric()}), etc. - -\begin{warningbox} - \textbf{Error messages} When debugging, keep in mind that in some cases a single bug can lead to a whole cascade of error messages. Do also keep in mind that typing mistakes, originating when code is entered through the keyboard, can wreak havock in a script: usually there is little correspondence between the number of error messages and the seriousness of the bug triggering them. When several errors are triggered, start by reading the error message printed first, as later errors can be an indirect consequence of earlier ones. -\end{warningbox} - -There are special tools, called debuggers, available, and they help enormously. Debuggers allow one to step through the code, executing one statement at a time, and at each pause, allowing the user to inspect the objects present in the \Rlang environment and their values. It is even possible to execute additional statements, say, to modify the value of a variable, while execution is paused. An \Rlang debugger is available within \RStudio and also through the \Rlang console. - -When writing your first scripts, you will manage perfectly well, and learn more by running the script one line at a time and when needed temporarily inserting \code{print()} statements to ``look'' at how the value of variables changes at each step. A debugger allows a lot more control, as one can ``step in'' and ``step out'' of function definitions, and set and unset break points where execution will stop, which is especially useful when developing \Rlang packages. - -When reproducing the examples in this chapter, do keep this section in mind. In addition, if you get stuck trying to find the cause of a bug, do extend your search both to the most trivial of possible causes, and to the least likely ones (such as a bug in a package installed from CRAN or \Rlang itself). Of course, when suspecting a bug in code you have not written, it is wise to very carefully read the documentation, as the ``bug'' may be just in your understanding of what a certain piece of code is expected to do. Also keep in mind that as discussed on page \pageref{sec:intro:net:help}, you will be able to find online already-answered questions to many of your likely problems and doubts. For example, Googling for the text of an error message is usually well rewarded. - -\begin{warningbox} -When installing packages from other sources than CRAN (e.g., development versions from GitHub, Bitbucket or R-Forge, or in-house packages) there is no warranty that conflicts will not happen. Packages (and their versions) released through CRAN are regularly checked for inter-compatibility, while packages released through other channels are usually checked against only a few packages. - -Conflicts among packages can easily arise, for example, when they use the same names for objects or functions. In addition, many packages use functions defined in packages in the \Rlang distribution itself or other independently developed packages by importing them. Updates to depended-upon packages can ``break'' (make non-functional) the dependent packages or parts of them. The rigorous testing by CRAN detects such problems in most cases when package revisions are submitted, forcing package maintainers to fix problems before distribution through CRAN is possible. However, if you use other repositories, I recommend that you make sure that revised (especially if under development) versions do work with your own script, before their use in ``production'' (important) data analyses. -\end{warningbox} - - -\section{Control of execution flow}\label{sec:script:flow:control} -\index{control of execution flow} -By default \Rlang statements in a script are evaluated (or executed) in the sequence they appear in the script \textit{listing} or text. We give the name \emph{control of execution constructs} to those special statements that allow us to alter this default sequence, by either skipping or repeatedly evaluating individual statements. The statements whose evaluation is controlled can be either simple or compound. Some of the control of execution flow statements, function like \emph{ON-OFF switches} for program statements. Others allow statements to be executed repeatedly while or until a condition is met, or until all members of a list or a vector are processed. - -These \emph{control of execution constructs} can be also used at the \Rlang console, but it is usually awkward to do so as they can extend over several lines of text. In simple scripts, the \emph{flow of execution} can be fixed and linear from the first to the last statement in the script. \emph{Control of execution constructs} are a crucial part of most scripts. As we will see next, a compound statement can include multiple simple or nested compound statements. - -\subsection{Compound statements}\label{sec:script:compound:statement} -\index{compound code statements}\index{simple code statements} - -Individual statements can be grouped into \emph{compound statements} by enclosed them in curly braces. Conceptually is like putting several statements into a box that allows us to operate with them as an anonymous whole. - -\begin{center} -\begin{small} -\begin{tikzpicture}[node distance=1.7cm] -\node (start) [startstop] {\ldots}; -\node (enc) [enclosure, color = blue, fill = blue!5, below of=start, yshift=-0.75cm] {\ }; -\node (stat2) [process, color = blue, fill = blue!15, below of=start] {\code{}}; -\node (stat3) [process, color = blue, fill = blue!15, below of=stat2, yshift=+0.2cm] {\code{}}; -\node (stop) [startstop, below of=stat3] {\ldots}; -\draw [arrow, color = blue] (start) -- (stat2); -\draw [arrow, color = blue] (stat2) -- (stat3); -\draw [arrow, color = blue] (stat3) -- (stop); -\draw [arrow, color = black] (start) -- (enc); -\draw [arrow, color = black] (enc) -- (stop); -\end{tikzpicture} -\end{small} -\end{center} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{print}\hlstd{(}\hlstr{"A"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] "A" -\end{verbatim} -\begin{alltt} -\hlstd{\{} - \hlkwd{print}\hlstd{(}\hlstr{"B"}\hlstd{)} - \hlkwd{print}\hlstd{(}\hlstr{"C"}\hlstd{)} -\hlstd{\}} -\end{alltt} -\begin{verbatim} -## [1] "B" -## [1] "C" -\end{verbatim} -\end{kframe} -\end{knitrout} - -The grouping of the last two statements above is of no consequence by itself, but grouping becomes useful when used together with control-of-execution constructs. - -\subsection{Conditional execution} -\index{conditional execution} - -Conditional execution allows handling different values, such as negative and non-negative values, differently within a script. This is achieved by evaluating or not (i.e., switching ON and OFF) parts of a script based on the result returned by a logical expression. An \Rlang expression returning a logical value can be as simple as a logical value of \code{TRUE} or \code{FALSE} stored in a variable or the result of a computation done at the time of the flow-control decision. - -\begin{explainbox} -We use the name \emph{flag} for a \code{logical} variable set manually, preferably near the top of the script. Use of flags is most useful when switching between two script behaviors depends on multiple sections of code. A frequent use case for flags is jointly enabling and disabling printing of output from multiple statements scattered in over a long script. -\end{explainbox} - -\Rpgrm has two types of \emph{if}\index{conditional statements} statements, non-vectorized and vectorized. We will start with the non-vectorized one, which is similar to what is available in most other computer programming languages and controls the evaluation of a code statement, which can be either simple or compound. - -\subsubsection[Non-vectorized \texttt{if}, \texttt{else} and \texttt{switch}]{Non-vectorized \code{if}, \code{else} and \code{switch}} -\qRcontrol{if()}\qRcontrol{if()\ldots else}% - -The \code{if} construct ``decides,'' depending on a \code{logical} value, whether the next code statement is executed (if \code{TRUE}) or skipped (if \code{FALSE}). The flow chart shows how \code{if} works: \code{} is either evaluated or skipped depending on the value of \code{}, while \code{} is always evaluated.\label{flowchart:if} - -\begin{center} -\begin{small} -\begin{tikzpicture}[node distance=1.5cm] -\node (start) [startstop] {\ldots}; -\node (dec1) [decision, color = blue, fill = blue!15, below of=start, yshift=-0.3cm] {\code{if ()}}; -\node (stat2) [process, color = blue, fill = blue!15, right of=dec1, xshift=3.2cm] {\code{}}; -\node (stat3) [process, below of=dec1, yshift=-0.5cm] {\code{}}; -\node (stop) [startstop, below of=stat3] {\ldots}; -\draw [arrow] (start) -- (dec1); -\draw [arrow, color=blue] (dec1) -- node[anchor=north] {\code{TRUE}} (stat2); -\draw [arrow, color=blue] (dec1) -- node[anchor=west] {\code{FALSE}} (stat3); -\draw [arrow] (stat2) |- (stat3); -\draw [arrow] (stat3) -- (stop); -\end{tikzpicture} -\end{small} -\end{center} - -We start with toy examples demonstrating how \emph{if} statements work. Later we will see examples closer to real use cases. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{flag} \hlkwb{<-} \hlnum{TRUE} -\hlkwa{if} \hlstd{(flag)} \hlkwd{print}\hlstd{(}\hlstr{"Hello!"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] "Hello!" -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{playground} -Play with the code above by changing the value assigned to variable \code{flag}, \code{FALSE}, \code{NA}, and \code{logical(0)}. - -In the example above we use variable \code{flag} as the \emph{condition}. - -Nothing in the \Rlang language prevents this condition from being a \code{logical} constant. Explain why \code{if (TRUE)} in the syntactically-correct statement below is of no practical use. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwa{if} \hlstd{(}\hlnum{TRUE}\hlstd{)} \hlkwd{print}\hlstd{(}\hlstr{"Hello!"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] "Hello!" -\end{verbatim} -\end{kframe} -\end{knitrout} -\end{playground} - -Conditional execution is much more useful than what could be expected from the previous example, because the statement whose execution is being controlled can be a compound statement of almost any length or complexity. A very simple example follows. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{printing} \hlkwb{<-} \hlnum{TRUE} -\hlkwa{if} \hlstd{(printing) \{} - \hlkwd{print}\hlstd{(}\hlstr{"A"}\hlstd{)} - \hlkwd{print}\hlstd{(}\hlstr{"B"}\hlstd{)} -\hlstd{\}} -\end{alltt} -\begin{verbatim} -## [1] "A" -## [1] "B" -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{warningbox} -The condition passed as an argument to \code{if}, enclosed in parentheses, can be anything yielding a \Rclass{logical} vector of length one. As this condition is \emph{not} vectorized, a longer vector will trigger an \Rlang warning or error depending on \Rlang's version. -\end{warningbox} - -The \code{if \ldots\ else} construct ``decides,'' depending on a \code{logical} value, which of two code statements is executed. The flow chart shows how \code{if} works: either \code{} or \code{} is evaluated and the other skipped depending on the value of \code{}, while \code{} is always evaluated.\label{flowchart:if:else} - -\begin{center} -\begin{small} -\begin{tikzpicture}[node distance=1.5cm] -\node (start) [startstop] {\ldots}; -\node (dec1) [decision, color = blue, fill = blue!15, below of=start, yshift=-0.5cm] {\code{if () else}}; -\node (stat2) [process, color = blue, fill = blue!15, left of=dec1, xshift=-3.2cm] {\code{}}; -\node (stat3) [process, color = blue, fill = blue!15, right of=dec1, xshift=3.2cm] {\code{}}; -\node (stat4) [process, below of=dec1, yshift=-0.5cm] {\code{}}; -\node (stop) [startstop, below of=stat4] {\ldots}; -\draw [arrow] (start) -- (dec1); -\draw [arrow, color=blue] (dec1) -- node[anchor=north] {\code{TRUE}} (stat2); -\draw [arrow, color=blue] (dec1) -- node[anchor=north] {\code{FALSE}} (stat3); -\draw [arrow] (stat2) |- (stat4); -\draw [arrow] (stat3) |- (stat4); -\draw [arrow] (stat4) -- (stop); -\end{tikzpicture} -\end{small} -\end{center} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a} \hlkwb{<-} \hlnum{10.0} -\hlkwa{if} \hlstd{(a} \hlopt{<} \hlnum{0.0}\hlstd{)} \hlkwd{print}\hlstd{(}\hlstr{"'a' is negative"}\hlstd{)} \hlkwa{else} \hlkwd{print}\hlstd{(}\hlstr{"'a' is not negative"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] "'a' is not negative" -\end{verbatim} -\begin{alltt} -\hlkwd{print}\hlstd{(}\hlstr{"This is always printed"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] "This is always printed" -\end{verbatim} -\end{kframe} -\end{knitrout} - -As can be seen above, the statement immediately following \code{if} is executed if the condition returns \code{TRUE} and that following \code{else} is executed if the condition returns \code{FALSE}. Statements after the conditionally executed \code{if} and \code{else} statements are always executed, independently of the value returned by the condition. - -\begin{playground} -Play with the code in the chunk above by assigning different numeric vectors to \code{a}. -\end{playground} - - - -\begin{explainbox} -Do you still remember the rules about continuation lines? - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlcom{# 1} -\hlstd{a} \hlkwb{<-} \hlnum{1} -\hlkwa{if} \hlstd{(a} \hlopt{<} \hlnum{0.0}\hlstd{)} \hlkwd{print}\hlstd{(}\hlstr{"'a' is negative"}\hlstd{)} \hlkwa{else} \hlkwd{print}\hlstd{(}\hlstr{"'a' is not negative"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] "'a' is not negative" -\end{verbatim} -\end{kframe} -\end{knitrout} - -Why does the statement below (not evaluated here) trigger an error while the one above does not? - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlcom{# 2 (not evaluated here)} -\hlkwd{if} (a < 0.0) \hlkwd{print}(\hlstr{"\hlstr{'a'} is negative"}) -else \hlkwd{print}(\hlstr{"\hlstr{'a'} is not negative"}) -\end{alltt} -\end{kframe} -\end{knitrout} - -How do the continuation line rules apply when we add curly braces as shown below. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlcom{# 1} -\hlstd{a} \hlkwb{<-} \hlnum{1} -\hlkwa{if} \hlstd{(a} \hlopt{<} \hlnum{0.0}\hlstd{) \{} - \hlkwd{print}\hlstd{(}\hlstr{"'a' is negative"}\hlstd{)} - \hlstd{\}} \hlkwa{else} \hlstd{\{} - \hlkwd{print}\hlstd{(}\hlstr{"'a' is not negative"}\hlstd{)} - \hlstd{\}} -\end{alltt} -\begin{verbatim} -## [1] "'a' is not negative" -\end{verbatim} -\end{kframe} -\end{knitrout} - -In the example above, we enclosed a single statement between each pair of curly braces, but as these braces create compound statements, multiple statements could have been enclosed between each pair. -\end{explainbox} - -\begin{playground} -Play with the use of conditional execution, with both simple and compound statements, and also think how to combine \code{if} and \code{else} to select among more than two options. -\end{playground} - -In \Rlang, the value returned by any compound statement is the value returned by the last simple statement executed within the compound one. This means that we can assign the value returned by an \code{if} and \code{else} statement to a variable. This style is less frequently used, but occasionally can result in easier-to-understand scripts.\label{chunk:if:assignment} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a} \hlkwb{<-} \hlnum{1} -\hlstd{my.message} \hlkwb{<-} - \hlkwa{if} \hlstd{(a} \hlopt{<} \hlnum{0.0}\hlstd{)} \hlstr{"'a' is negative"} \hlkwa{else} \hlstr{"'a' is not negative"} -\hlkwd{print}\hlstd{(my.message)} -\end{alltt} -\begin{verbatim} -## [1] "'a' is not negative" -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{explainbox} -If the condition statement returns a value of a class other than \code{logical}, \Rlang will attempt to convert it into a logical. This is sometimes used instead of a comparison to zero, as the conversion from \code{integer} yields \code{TRUE} for all integers except zero. The code below illustrates a rather frequently used idiom for checking if there is something available to display. -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{message} \hlkwb{<-} \hlstr{"abc"} -\hlkwa{if} \hlstd{(}\hlkwd{length}\hlstd{(message))} \hlkwd{print}\hlstd{(message)} -\end{alltt} -\begin{verbatim} -## [1] "abc" -\end{verbatim} -\end{kframe} -\end{knitrout} -\end{explainbox} - -\begin{advplayground} -Study the conversion rules between \Rclass{numeric} and \Rclass{logical} values, run each of the statements below, and explain the output based on how type conversions are interpreted, remembering the difference between \emph{floating-point numbers} as implemented in computers and \emph{real numbers} ($\mathbb{R}$) as defined in mathematics. - -% chunk contains intentional error-triggering examples -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwa{if} \hlstd{(}\hlnum{0}\hlstd{)} \hlkwd{print}\hlstd{(}\hlstr{"hello"}\hlstd{)} -\hlkwa{if} \hlstd{(}\hlopt{-}\hlnum{1}\hlstd{)} \hlkwd{print}\hlstd{(}\hlstr{"hello"}\hlstd{)} -\hlkwa{if} \hlstd{(}\hlnum{0.01}\hlstd{)} \hlkwd{print}\hlstd{(}\hlstr{"hello"}\hlstd{)} -\hlkwa{if} \hlstd{(}\hlnum{1e-300}\hlstd{)} \hlkwd{print}\hlstd{(}\hlstr{"hello"}\hlstd{)} -\hlkwa{if} \hlstd{(}\hlnum{1e-323}\hlstd{)} \hlkwd{print}\hlstd{(}\hlstr{"hello"}\hlstd{)} -\hlkwa{if} \hlstd{(}\hlnum{1e-324}\hlstd{)} \hlkwd{print}\hlstd{(}\hlstr{"hello"}\hlstd{)} -\hlkwa{if} \hlstd{(}\hlnum{1e-500}\hlstd{)} \hlkwd{print}\hlstd{(}\hlstr{"hello"}\hlstd{)} -\hlkwa{if} \hlstd{(}\hlkwd{as.logical}\hlstd{(}\hlstr{"true"}\hlstd{))} \hlkwd{print}\hlstd{(}\hlstr{"hello"}\hlstd{)} -\hlkwa{if} \hlstd{(}\hlkwd{as.logical}\hlstd{(}\hlkwd{as.numeric}\hlstd{(}\hlstr{"1"}\hlstd{)))} \hlkwd{print}\hlstd{(}\hlstr{"hello"}\hlstd{)} -\hlkwa{if} \hlstd{(}\hlkwd{as.logical}\hlstd{(}\hlstr{"1"}\hlstd{))} \hlkwd{print}\hlstd{(}\hlstr{"hello"}\hlstd{)} -\hlkwa{if} \hlstd{(}\hlstr{"1"}\hlstd{)} \hlkwd{print}\hlstd{(}\hlstr{"hello"}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - -Hint: if you need to refresh your understanding of the type conversion rules, see section \ref{sec:calc:type:conversion} on page \pageref{sec:calc:type:conversion}. -\end{advplayground} - -In addition to \Rcontrol{if ()} and \Rcontrol{if () \ldots\ else}, there is in \Rlang a \Rcontrol{switch()} statement, which we describe next. It can be used to select among \emph{cases}, or several alternative statements, based on an expression evaluating to a \code{numeric} or a \code{character} value of length equal to one. While \Rcontrol{if ()} and \code{if () \ldots\ else} allow for binary choices as they are controlled by a logical value, \Rcontrol{switch()} can control execution of many more statements. The usual way in which \Rcontrol{switch()} statement is used is by assignment of the returned value, as described as being rather unusual, but legal, for \code{if () \ldots\ else} on page \pageref{chunk:if:assignment}. - -The switch statement returns a value, the value returned by the \Rcontrol{switch()} statement is that returned by the statement corresponding to the matching switch value, or the default (similar to \code{else}) if there is no match and a default return value has been defined. Each optional statement can be thought as a \textit{case} from a set of possible cases.\label{flowchart:switch} - -\begin{center} -\begin{small} -\begin{tikzpicture}[node distance=1.5cm] -\node (start) [startstop] {\ldots}; -\node (dec1) [decision, color = blue, fill = blue!15, below of=start, yshift=-0.4cm] {\code{switch()}}; -\node (stat2) [process, color = blue, fill = blue!15, below of=dec1, xshift=3.4cm] {\code{}}; -\node (stat3) [process, color = blue, fill = blue!15, below of=stat2] {\code{}}; -\node (stat4) [process, color = blue, fill = blue!15, below of=stat3] {\code{}}; -\node (stat5) [process, color = blue, fill = blue!15, below of=stat4] {\code{}}; -\node (stat6) [process, below of=stat5, xshift=3.3cm] {\code{}}; -\node (stop) [startstop, below of=stat6] {\ldots}; -\draw [arrow] (start) -- (dec1); -\draw [arrow, color=blue] (dec1) |- node[anchor=north west] {\code{}} (stat2); -\draw [arrow, color=blue] (dec1) |- node[anchor=north west] {\code{}} (stat3); -\draw [arrow, color=blue] (dec1) |- node[anchor=north west] {\code{}} (stat4); -\draw [arrow, color=blue] (dec1) |- node[anchor=north west] {\code{}} (stat5); -\draw [arrow] (stat2) -| (stat6); -\draw [arrow] (stat3) -| (stat6); -\draw [arrow] (stat4) -| (stat6); -\draw [arrow] (stat5) -| (stat6); -\draw [arrow] (stat6) -- (stop); -\end{tikzpicture} -\end{small} -\end{center} - -In the first example we use character constants saved in a variable as a condition, with the last statement with no tag being the default. Instead of the name of variable \code{my.object}, we could have used a complex expression returning a suitable \code{character} value of length one. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.object} \hlkwb{<-} \hlstr{"two"} -\hlstd{b} \hlkwb{<-} \hlkwd{switch}\hlstd{(my.object,} - \hlkwc{one} \hlstd{=} \hlnum{1}\hlstd{,} - \hlkwc{two} \hlstd{=} \hlnum{1} \hlopt{/} \hlnum{2}\hlstd{,} - \hlkwc{four} \hlstd{=} \hlnum{1} \hlopt{/} \hlnum{4}\hlstd{,} - \hlnum{0} -\hlstd{)} -\hlstd{b} -\end{alltt} -\begin{verbatim} -## [1] 0.5 -\end{verbatim} -\end{kframe} -\end{knitrout} - -Multiple condition values can share the same statement. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.object} \hlkwb{<-} \hlstr{"two"} -\hlstd{b} \hlkwb{<-} \hlkwd{switch}\hlstd{(my.object,} - \hlkwc{one} \hlstd{=,} \hlkwc{uno} \hlstd{=} \hlnum{1}\hlstd{,} - \hlkwc{two} \hlstd{=,} \hlkwc{dos} \hlstd{=} \hlnum{1} \hlopt{/} \hlnum{2}\hlstd{,} - \hlkwc{four} \hlstd{=,} \hlkwc{cuatro} \hlstd{=} \hlnum{1} \hlopt{/} \hlnum{4}\hlstd{,} - \hlnum{0} -\hlstd{)} -\hlstd{b} -\end{alltt} -\begin{verbatim} -## [1] 0.5 -\end{verbatim} -\end{kframe} -\end{knitrout} -\begin{playground} - Do play with the use of the switch statement. Look at the documentation for \code{switch()} using \code{help(switch)} and study the examples at the end of the help page. Explore what happens if you set \code{my.object <- "ten"}, \code{my.object <- "three"}, \code{my.object <- NA\_character\_} or \code{my.object <- character()}. Then remove the \code{, 0} as default value, and repeat. -\end{playground} - -When the expression used as a condition returns a value that is not a \code{character}, it will be interpreted as an \code{integer} index. In this case no names are used for the cases, and the last one is always interpreted as the default. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.number} \hlkwb{<-} \hlnum{2} -\hlstd{b} \hlkwb{<-} \hlkwd{switch}\hlstd{(my.number,} - \hlnum{1}\hlstd{,} - \hlnum{1} \hlopt{/} \hlnum{2}\hlstd{,} - \hlnum{1} \hlopt{/} \hlnum{4}\hlstd{,} - \hlnum{0} -\hlstd{)} -\hlstd{b} -\end{alltt} -\begin{verbatim} -## [1] 0.5 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{playground} - Continue playing with the use of the switch statement. Explore what happens if you set \code{my.number <- 10}, \code{my.number <- 3}, \code{my.number <- NA} or \code{my.object <- numeric()}. Then remove the \code{, 0} as default value, and repeat. -\end{playground} - -\begin{explainbox} -The statements for the different values of the condition in a \Rcontrol{switch()} statement can be compound statements as in the case of \code{if}, and they can even be used for a side effect. We can for example modify the example above to print a message when the default value is returned. -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.object} \hlkwb{<-} \hlstr{"ten"} -\hlstd{b} \hlkwb{<-} \hlkwd{switch}\hlstd{(my.object,} - \hlkwc{one} \hlstd{=} \hlnum{1}\hlstd{,} - \hlkwc{two} \hlstd{=} \hlnum{1} \hlopt{/} \hlnum{2}\hlstd{,} - \hlkwc{three} \hlstd{=} \hlnum{1} \hlopt{/} \hlnum{4}\hlstd{,} - \hlstd{\{}\hlkwd{print}\hlstd{(}\hlstr{"No match! Using default"}\hlstd{);} \hlnum{0}\hlstd{\}} -\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] "No match! Using default" -\end{verbatim} -\begin{alltt} -\hlstd{b} -\end{alltt} -\begin{verbatim} -## [1] 0 -\end{verbatim} -\end{kframe} -\end{knitrout} -\end{explainbox} - -\begin{explainbox} - The \Rcontrol{switch()} statement can substitute for chained \code{if \ldots\ else} statements when all the conditions can be described by constant values or distinct values returned by the same test. The advantage is more concise and readable code. The equivalent of the first \Rcontrol{switch()} example above when written using \code{if \ldots\ else} becomes longer. Given how terse code using \Rcontrol{switch()} is, those not yet familiar with its use may find the more verbose style used below easier to understand. On the other hand, with numerous cases \Rcontrol{switch()} is easier to read and understand. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.object} \hlkwb{<-} \hlstr{"two"} -\hlkwa{if} \hlstd{(my.object} \hlopt{==} \hlstr{"one"}\hlstd{) \{} - \hlstd{b} \hlkwb{<-} \hlnum{1} -\hlstd{\}} \hlkwa{else if} \hlstd{(my.object} \hlopt{==} \hlstr{"two"}\hlstd{) \{} - \hlstd{b} \hlkwb{<-} \hlnum{1} \hlopt{/} \hlnum{2} -\hlstd{\}} \hlkwa{else if} \hlstd{(my.object} \hlopt{==} \hlstr{"four"}\hlstd{) \{} - \hlstd{b} \hlkwb{<-} \hlnum{1} \hlopt{/} \hlnum{4} -\hlstd{\}} \hlkwa{else} \hlstd{\{} - \hlstd{b} \hlkwb{<-} \hlnum{0} -\hlstd{\}} -\hlstd{b} -\end{alltt} -\begin{verbatim} -## [1] 0.5 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\end{explainbox} - -\subsubsection[Vectorized \texttt{ifelse()}]{Vectorized \code{ifelse()}} -\index{vectorized ifelse} -Vectorized \emph{ifelse} is a peculiarity of the \Rlang language, but very useful for writing concise code that may execute faster than logically equivalent but not vectorized code. -Vectorized conditional execution is coded by means of \emph{function} \Rcontrol{ifelse()} (written as a single word). This function takes three arguments: a \code{logical} vector usually the result of a test (parameter \code{test}), an expression to use for \code{TRUE} cases (parameter \code{yes}), and an expression to use for \code{FALSE} cases (parameter \code{no}). At each index position along the vectors, the value included in the returned vector is taken from \code{yes} if \code{test} is \code{TRUE} and from \code{no} if \code{test} is \code{FALSE}. All three arguments can be any \Rlang statement returning the required vectors. In the case of vectors passed as arguments to parameters \code{yes} and \code{no}, recycling will take place if they are shorter than the logical vector returned by the expression passed as argument to \code{test}. No recycling ever applies to \code{test}, even if \code{yes} and/or \code{no} are longer than \code{test}. - -The flow chart for \Rcontrol{ifelse()} is similar to that for \code{if \ldots\ else} shown on page \pageref{flowchart:if} but applied in parallel to the individual members of vectors; e.g.\ the condition expression is evaluated at index position \code{1} controls which value will be present in the returned vector at index position \code{1}, and so on. - -It is customary to pass arguments to \code{ifelse} by position. We give a first example with named arguments to clarify the use of the function. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.test} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{,} \hlnum{TRUE}\hlstd{,} \hlnum{TRUE}\hlstd{)} -\hlkwd{ifelse}\hlstd{(}\hlkwc{test} \hlstd{= my.test,} \hlkwc{yes} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{no} \hlstd{=} \hlopt{-}\hlnum{1}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] 1 -1 1 1 -\end{verbatim} -\end{kframe} -\end{knitrout} - -In practice, the most common idiom is to have as an argument passed to \code{test}, the result of a comparison calculated on the fly. In the first example we compute the absolute values for a vector, equivalent to that returned by \Rlang function \code{abs()}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{nums} \hlkwb{<-} \hlopt{-}\hlnum{3}\hlopt{:+}\hlnum{3} -\hlkwd{ifelse}\hlstd{(nums} \hlopt{<} \hlnum{0}\hlstd{,} \hlopt{-}\hlstd{nums, nums)} -\end{alltt} -\begin{verbatim} -## [1] 3 2 1 0 1 2 3 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{playground} -Some additional examples to play with, with a few surprises. Study the examples below until you understand why returned values are what they are. In addition, create your own examples to test other possible cases. In other words, play with the code until you fully understand how \code{ifelse} works. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{10} -\hlkwd{ifelse}\hlstd{(a} \hlopt{>} \hlnum{5}\hlstd{,} \hlnum{1}\hlstd{,} \hlopt{-}\hlnum{1}\hlstd{)} -\hlkwd{ifelse}\hlstd{(a} \hlopt{>} \hlnum{5}\hlstd{, a} \hlopt{+} \hlnum{1}\hlstd{, a} \hlopt{-} \hlnum{1}\hlstd{)} -\hlkwd{ifelse}\hlstd{(}\hlkwd{any}\hlstd{(a} \hlopt{>} \hlnum{5}\hlstd{), a} \hlopt{+} \hlnum{1}\hlstd{, a} \hlopt{-} \hlnum{1}\hlstd{)} \hlcom{# tricky} -\hlkwd{ifelse}\hlstd{(}\hlkwd{logical}\hlstd{(}\hlnum{0}\hlstd{), a} \hlopt{+} \hlnum{1}\hlstd{, a} \hlopt{-} \hlnum{1}\hlstd{)} \hlcom{# even more tricky} -\hlkwd{ifelse}\hlstd{(}\hlnum{NA}\hlstd{, a} \hlopt{+} \hlnum{1}\hlstd{, a} \hlopt{-} \hlnum{1}\hlstd{)} \hlcom{# as expected} -\end{alltt} -\end{kframe} -\end{knitrout} -Hint: if you need to refresh your understanding of \code{logical} values and Boolean algebra see section \ref{sec:calc:boolean} on page \pageref{sec:calc:boolean}. -\end{playground} - -\begin{warningbox} -In the case of \Rcontrol{ifelse()}, the length of the returned value is determined by the length of the logical vector passed as an argument to its first formal parameter (named \code{test})! A frequent mistake is to use a condition that returns a \code{logical} vector of length one, expecting that it will be recycled because arguments passed to the other formal parameters (named \code{yes} and \code{no}) are longer. However, no recycling will take place, resulting in a returned value of length one, with the remaining elements of the vectors passed to \code{yes} and \code{no} being discarded. Do try this by yourself, using logical vectors of different lengths. You can start with the examples below, making sure you understand why the returned values are what they are. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ifelse}\hlstd{(}\hlnum{TRUE}\hlstd{,} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlopt{-}\hlnum{5}\hlopt{:-}\hlnum{1}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] 1 -\end{verbatim} -\begin{alltt} -\hlkwd{ifelse}\hlstd{(}\hlnum{FALSE}\hlstd{,} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlopt{-}\hlnum{5}\hlopt{:-}\hlnum{1}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] -5 -\end{verbatim} -\begin{alltt} -\hlkwd{ifelse}\hlstd{(}\hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{),} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlopt{-}\hlnum{5}\hlopt{:-}\hlnum{1}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] 1 -4 -\end{verbatim} -\begin{alltt} -\hlkwd{ifelse}\hlstd{(}\hlkwd{c}\hlstd{(}\hlnum{FALSE}\hlstd{,} \hlnum{TRUE}\hlstd{),} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlopt{-}\hlnum{5}\hlopt{:-}\hlnum{1}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] -5 2 -\end{verbatim} -\begin{alltt} -\hlkwd{ifelse}\hlstd{(}\hlkwd{c}\hlstd{(}\hlnum{FALSE}\hlstd{,} \hlnum{TRUE}\hlstd{),} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlnum{0}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] 0 2 -\end{verbatim} -\end{kframe} -\end{knitrout} -\end{warningbox} - -\begin{playground} -Write, using \Rcontrol{ifelse()}, a single statement to combine numbers from the two vectors \code{a} and \code{b} into a result vector \code{d}, based on whether the corresponding value in vector \code{c} is the character \code{"a"} or \code{"b"}. Then print vector \code{d} to make the result visible. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a} \hlkwb{<-} \hlopt{-}\hlnum{10}\hlopt{:-}\hlnum{1} -\hlstd{b} \hlkwb{<-} \hlopt{+}\hlnum{1}\hlopt{:}\hlnum{10} -\hlstd{c} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlkwd{rep}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlnum{5}\hlstd{),} \hlkwd{rep}\hlstd{(}\hlstr{"b"}\hlstd{,} \hlnum{5}\hlstd{))} -\hlcom{# your code} -\end{alltt} -\end{kframe} -\end{knitrout} - -If you do not understand how the three vectors are built, or you cannot guess the values they contain by reading the code, print them, and play with the arguments, until you understnd what each parameter does. Also use \code{help(rep)} and/or \code{help(ifelse)} to access the documentation. -\end{playground} - -\subsection{Iteration} -\index{loops|seealso{iteration}} -We give the name \emph{iteration} to the process of repetitive execution of a program statement (simple or compound)---e.g., \emph{computed by iteration}. We use the same word, iteration, to name each one of these repetitions of the execution of a statement---e.g., the second iteration. - -The section of computer code being executed multiple times, forms a loop (a closed path). Most loops contain a condition that determines when the flow of execution will exit the loop and continue at the next statement following the loop. In \Rlang three types of iteration loops are available: those using \Rloop{for}, \Rloop{while} and \Rloop{repeat} constructs. They differ in how much flexibility they provide with respect to the values they iterate over, and how the condition that terminates the iteration is tested. When the same algorithm can be implemented with more than one of these constructs, using the least flexible of them usually results in the easiest to understand \Rlang scripts. In \Rlang, rather frequently, explicit loops as described in this section can be replaced advantageously by calls to the \emph{apply} functions described in section \ref{sec:data:apply} on page \pageref{sec:data:apply}. - -\subsubsection[\texttt{for} loops]{\code{for} loops} -The\index{for loop}\index{iteration!for loop}\qRloop{for} most frequently used type of loop is a \code{for} loop. These loops work in \Rlang on lists or vectors of values to act upon. The implicit test for the end of the vector or list takes place at the top of the construct before the loop statement is evaluated. The flow chart has a \emph{loop} as the execution can be directed to an earlier position in the sequence of statements, allowing the same code to be evaluated multiple times. - -\begin{center} -\begin{small} -\begin{tikzpicture}[node distance=1.5cm] -\node (start) [startstop] {\ldots}; -\node (entry) [below of=start, color = blue, yshift=0.5cm]{$\bullet$}; -\node (dec1) [decision, color = blue, fill = blue!15, below of=entry, yshift=0.3cm] {\code{for ()}}; -\node (stat2) [process, color = blue, fill = blue!15, right of=dec1, xshift=3.55cm] {\code{}}; -\node (stat3) [process, below of=dec1, yshift=-0.5cm] {\code{}}; -\node (stop) [startstop, below of=stat3] {\ldots}; -\draw [arrow] (start) -- (dec1); -\draw [arrow, color=blue] (dec1) -- node[anchor=north] {\textsl{continue}} (stat2); -\draw [arrow, color=blue] (dec1) -- node[anchor=west] {\textsl{break}} (stat3); -\draw [arrow, color = blue] (stat2) |- (entry); -\draw [arrow, color = blue] (entry) -- (dec1); -\draw [arrow] (stat3) -- (stop); -\end{tikzpicture} -\end{small} -\end{center} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{b} \hlkwb{<-} \hlnum{0} -\hlkwa{for} \hlstd{(a} \hlkwa{in} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{) b} \hlkwb{<-} \hlstd{b} \hlopt{+} \hlstd{a} -\hlstd{b} -\end{alltt} -\begin{verbatim} -## [1] 15 -\end{verbatim} -\begin{alltt} -\hlstd{b} \hlkwb{<-} \hlkwd{sum}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{5}\hlstd{)} \hlcom{# built-in function (faster)} -\hlstd{b} -\end{alltt} -\begin{verbatim} -## [1] 15 -\end{verbatim} -\end{kframe} -\end{knitrout} - -Here the statement \code{b <- b + a} is executed five times, with variable \code{a} sequentially taking each of the values in \code{1:5}. Instead of a simple statement used here, a compound statement could also have been used for the body of the \Rloop{for} loop. - -\begin{warningbox} -It is important to note that a list or vector of length zero is a valid argument to \code{for()}, that triggers no error, but skips the statements in the loop body. -\end{warningbox} - -Some examples of use of \code{for} loops---and of how to avoid their use. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{4}\hlstd{,} \hlnum{3}\hlstd{,} \hlnum{6}\hlstd{,} \hlnum{8}\hlstd{)} -\hlkwa{for}\hlstd{(x} \hlkwa{in} \hlstd{a) \{}\hlkwd{print}\hlstd{(x}\hlopt{*}\hlnum{2}\hlstd{)\}} \hlcom{# print is needed!} -\end{alltt} -\begin{verbatim} -## [1] 2 -## [1] 8 -## [1] 6 -## [1] 12 -## [1] 16 -\end{verbatim} -\end{kframe} -\end{knitrout} - -A call to \Rloop{for} does not return a value. We need to assign values to an object so that they are not lost. If we print at each iteration the value of this object, we can follow how the stored value changes. Printing allows us to see, how the vector grows in length, unless we create a long-enough vector before the start of the loop. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{b} \hlkwb{<-} \hlkwa{for}\hlstd{(x} \hlkwa{in} \hlstd{a) \{x}\hlopt{*}\hlnum{2}\hlstd{\}} -\hlstd{b} -\end{alltt} -\begin{verbatim} -## NULL -\end{verbatim} -\begin{alltt} -\hlstd{b} \hlkwb{<-} \hlkwd{numeric}\hlstd{()} -\hlkwa{for}\hlstd{(i} \hlkwa{in} \hlkwd{seq}\hlstd{(}\hlkwc{along.with} \hlstd{= a)) \{} - \hlstd{b[i]} \hlkwb{<-} \hlstd{a[i]}\hlopt{^}\hlnum{2} - \hlkwd{print}\hlstd{(b)} -\hlstd{\}} -\end{alltt} -\begin{verbatim} -## [1] 1 -## [1] 1 16 -## [1] 1 16 9 -## [1] 1 16 9 36 -## [1] 1 16 9 36 64 -\end{verbatim} -\begin{alltt} -\hlstd{b} -\end{alltt} -\begin{verbatim} -## [1] 1 16 9 36 64 -\end{verbatim} -\begin{alltt} -\hlcom{# runs faster if we first allocate a long enough vector} -\hlstd{b} \hlkwb{<-} \hlkwd{numeric}\hlstd{(}\hlkwd{length}\hlstd{(a))} -\hlkwa{for}\hlstd{(i} \hlkwa{in} \hlkwd{seq}\hlstd{(}\hlkwc{along.with} \hlstd{= a)) \{} - \hlstd{b[i]} \hlkwb{<-} \hlstd{a[i]}\hlopt{^}\hlnum{2} - \hlkwd{print}\hlstd{(b)} -\hlstd{\}} -\end{alltt} -\begin{verbatim} -## [1] 1 0 0 0 0 -## [1] 1 16 0 0 0 -## [1] 1 16 9 0 0 -## [1] 1 16 9 36 0 -## [1] 1 16 9 36 64 -\end{verbatim} -\begin{alltt} -\hlstd{b} -\end{alltt} -\begin{verbatim} -## [1] 1 16 9 36 64 -\end{verbatim} -\begin{alltt} -\hlcom{# a vectorized expression is simplest and fastest} -\hlstd{b} \hlkwb{<-} \hlstd{a}\hlopt{^}\hlnum{2} -\hlstd{b} -\end{alltt} -\begin{verbatim} -## [1] 1 16 9 36 64 -\end{verbatim} -\end{kframe} -\end{knitrout} - -In the previous chunk we used \code{seq(along.with = a)} to build a new numeric vector with a sequence of the same length as vector \code{a}. Using this \emph{idiom} is best as it ensures that even the case when \code{a} is an \emph{empty} vector of length zero will be handled correctly, with \code{numeric(0)} assigned to \code{b}. - -\begin{playground}\label{box:play:forloop} -Look at the results from the above examples, and try to understand where the returned value comes from in each case. In the code chunk above, \Rfunction{print()} is used within the \emph{loop} to make intermediate values visible. You can add additional \code{print()} statements to visualize other variables, such as \code{i}, or run parts of the code, such as \code{seq(along.with = a)}, by themselves. - -In this case, the code examples trigger no errors or warnings, but the same approach can be used for debugging syntactically correct code that does not return the expected results. -\end{playground} - -\begin{advplayground} -In the examples above we show the use of \code{seq()} passing a vector as an argument to its parameter \code{along.with}. Run the examples below and explain why the two approaches are equivalent only when the length of \code{a} is one or more. Find the answer by assigning to \code{a}, vectors of different lengths, including zero (using \code{a <- numeric(0)}). - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{b} \hlkwb{<-} \hlkwd{numeric}\hlstd{(}\hlkwd{length}\hlstd{(a))} -\hlkwa{for}\hlstd{(i} \hlkwa{in} \hlkwd{seq}\hlstd{(}\hlkwc{along.with} \hlstd{= a)) \{} - \hlstd{b[i]} \hlkwb{<-} \hlstd{a[i]}\hlopt{^}\hlnum{2} -\hlstd{\}} -\hlkwd{print}\hlstd{(b)} - -\hlstd{c} \hlkwb{<-} \hlkwd{numeric}\hlstd{(}\hlkwd{length}\hlstd{(a))} -\hlkwa{for}\hlstd{(i} \hlkwa{in} \hlnum{1}\hlopt{:}\hlkwd{length}\hlstd{(a)) \{} - \hlstd{c[i]} \hlkwb{<-} \hlstd{a[i]}\hlopt{^}\hlnum{2} -\hlstd{\}} -\hlkwd{print}\hlstd{(c)} -\end{alltt} -\end{kframe} -\end{knitrout} - -\end{advplayground} - -\begin{explainbox} -\Rloop{for} loops as described above, in the absence of errors, have statically predictable behavior. The compound statement in the loop will be executed once for each member of the vector or list. Special cases may require the alteration of the normal flow of execution in the loop. Two cases are easy to deal with, one is stopping iteration early, which we can do with \Rloop{break()}, and another is jumping ahead to the start of the next iteration, which we can do with \Rloop{next()}. -\end{explainbox} - -\subsubsection[\texttt{while} loops]{\code{while} loops} -\Rloop{while} loops\index{iteration!while loop} are frequently useful, even if not as frequently used as \code{for} loops. Instead of a list or vector, they take a logical argument, which is usually an expression, but which can also be a variable. - -\begin{center} -\begin{small} -\begin{tikzpicture}[node distance=1.5cm] -\node (start) [startstop] {\ldots}; -\node (entry) [below of=start, color = blue, yshift=0.5cm]{$\bullet$}; -\node (dec1) [decision, color = blue, fill = blue!15, below of=entry, yshift=0.3cm] {\code{while ()}}; -\node (stat2) [process, color = blue, fill = blue!15, right of=dec1, xshift=3.3cm] {\code{}}; -\node (stat3) [process, below of=dec1, yshift=-0.5cm] {\code{}}; -\node (stop) [startstop, below of=stat3] {\ldots}; -\draw [arrow] (start) -- (dec1); -\draw [arrow, color=blue] (dec1) -- node[anchor=north] {\code{TRUE}} (stat2); -\draw [arrow, color=blue] (dec1) -- node[anchor=west] {\code{FALSE}} (stat3); -\draw [arrow, color = blue] (stat2) |- (entry); -\draw [arrow, color = blue] (entry) -- (dec1); -\draw [arrow] (stat3) -- (stop); -\end{tikzpicture} -\end{small} -\end{center} - - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a} \hlkwb{<-} \hlnum{2} -\hlkwa{while} \hlstd{(a} \hlopt{<} \hlnum{50}\hlstd{) \{} - \hlkwd{print}\hlstd{(a)} - \hlstd{a} \hlkwb{<-} \hlstd{a}\hlopt{^}\hlnum{2} -\hlstd{\}} -\end{alltt} -\begin{verbatim} -## [1] 2 -## [1] 4 -## [1] 16 -\end{verbatim} -\begin{alltt} -\hlkwd{print}\hlstd{(a)} -\end{alltt} -\begin{verbatim} -## [1] 256 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{playground} -Make sure that you understand why the final value of \code{a} is larger than 50. -\end{playground} - - -\begin{advplayground} -The statements above can be simplified to: - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a} \hlkwb{<-} \hlnum{2} -\hlkwd{print}\hlstd{(a)} -\hlkwa{while} \hlstd{(a} \hlopt{<} \hlnum{50}\hlstd{) \{} - \hlkwd{print}\hlstd{(a} \hlkwb{<-} \hlstd{a}\hlopt{^}\hlnum{2}\hlstd{)} -\hlstd{\}} -\end{alltt} -\end{kframe} -\end{knitrout} - -Explain why this works, and how it relates to the support in \Rlang of \emph{chained} assignments to several variables within a single statement like the one below. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a} \hlkwb{<-} \hlstd{b} \hlkwb{<-} \hlstd{c} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{5} -\hlstd{a} -\end{alltt} -\end{kframe} -\end{knitrout} - -Explain why a second \code{print(a)} has been added before \code{while()}. Hint: experiment if necessary. -\end{advplayground} - -\begin{explainbox} -\Rloop{while} loops as described above will terminate when the condition tested is \code{FALSE}. In those cases that require stopping iteration based on an additional test condition within the compound statement, we can call \Rloop{break()} in the body of an \code{if} or \code{else} statement. -\end{explainbox} - -\subsubsection[\texttt{repeat} loops]{\code{repeat} loops} -The \Rloop{repeat}\index{iteration!repeat loop} construct is less frequently used, but adds flexibility as termination will always depend on a call to \Rcontrol{break()}, which can be located anywhere within the compound statement that forms the body of the loop. To achieve conditional end of iteration, function \Rcontrol{break()} must be called, as otherwise, iteration in a \code{repeat} loop will not stop. - -\begin{center} -\begin{small} -\begin{tikzpicture}[node distance=1.5cm] -\node (start) [startstop] {\ldots}; -\node (entry) [below of=start, color = blue, yshift=0.5cm]{$\bullet$}; -\node (dec1) [process, color = blue, fill = blue!15, below of=start, yshift=-0.3cm] {\code{repeat}}; -\node (stat2) [process, color = blue, fill = blue!15, right of=dec1, xshift=3.3cm] {\code{}}; -\node (stat3) [process, below of=stat2, yshift=-0.1cm] {\code{}}; -\node (stop) [startstop, below of=stat3] {\ldots}; -\draw [arrow] (start) -- (dec1); -\draw [arrow, color=blue] (dec1) -- node[anchor=north] {} (stat2); -\draw [arrow, color=blue] (stat2) |- node[anchor=south east] {\textsl{continue}} (entry); -\draw [arrow, color=blue] (stat2) -- node[anchor=west] {\code{break()}} (stat3); -\draw [arrow, color = blue] (entry) -- (dec1); -\draw [arrow] (stat3) -- (stop); -\end{tikzpicture} -\end{small} -\end{center} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a} \hlkwb{<-} \hlnum{2} -\hlkwa{repeat}\hlstd{\{} - \hlkwd{print}\hlstd{(a)} - \hlkwa{if} \hlstd{(a} \hlopt{>} \hlnum{50}\hlstd{)} \hlkwa{break}\hlstd{()} - \hlstd{a} \hlkwb{<-} \hlstd{a}\hlopt{^}\hlnum{2} -\hlstd{\}} -\end{alltt} -\begin{verbatim} -## [1] 2 -## [1] 4 -## [1] 16 -## [1] 256 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{playground} -Please explain why the example above returns the values it does. Use the approach of adding \code{print()} statements, as described on page \pageref{box:play:forloop}. -\end{playground} - -\begin{explainbox} -Although \code{repeat} loop constructs are easier to read if they have a single condition resulting in termination of iteration, it is allowed by the \Rlang language for the compound statement in the body of a loop to contain more than one call to \Rcontrol{break()}, each within a different \code{if} or \code{else} statement. - -Function \Rcontrol{break()} can be also used within \Rcontrol{for} and \Rcontrol{while} loops. In such case, for clarity, the use of \Rcontrol{break()} should be reserved for exceptional conditions. In a \Rcontrol{for} loop, \Rcontrol{next()} interrupts the current iteration and jumps to the start of the next one. -\end{explainbox} - -\subsection{Explicit loops can be slow in \Rlang}\label{sec:loops:slow} -\index{vectorization}\index{recycling of arguments}\index{iteration}\index{loops!faster alternatives|(} -If you have written programs in other languages, it will feel natural to you to use loops (\Rloop{for}, \Rloop{while}, \Rloop{repeat}) for many of the things for which in \Rlang one would normally use vectorization. In \Rlang, using vectorization whenever possible keeps scripts shorter and easier to understand (at least for those with experience in \Rlang). More importantly, as \Rlang is an interpreted language, vectorized arithmetic tends to be much faster than the use of explicit iteration. In recent versions of \Rpgrm, byte-compilation is used by default and loops may be compiled on the fly, which relieves part of the burden of repeated interpretation. However, even byte-compiled loops are usually slower to execute than efficiently coded vectorized functions and operators. - -Execution speed needs to be balanced against the effort invested in writing faster code. However, using vectorization and specific \Rlang functions requires little effort once we are familiar with them. The simplest way of measuring the execution time of an \Rlang expression is to use function \Rfunction{system.time()}. However, the returned time is in seconds and consequently the expression must take long enough to execute for the returned time to have useful resolution. See package \pkgname{microbenchmark} for tools for benchmarking code with better time resolution.\qRloop{for} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{system.time}\hlstd{(\{a} \hlkwb{<-} \hlkwd{numeric}\hlstd{()} - \hlkwa{for} \hlstd{(i} \hlkwa{in} \hlnum{1}\hlopt{:}\hlnum{1000000}\hlstd{) \{} - \hlstd{a[i]} \hlkwb{<-} \hlstd{i} \hlopt{/} \hlnum{1000} - \hlstd{\}} - \hlstd{\})} -\end{alltt} -\begin{verbatim} -## user system elapsed -## 0.23 0.04 0.27 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{explainbox} -Whenever\label{box:vectorization:perf} working with large data sets, or many similar data sets, we will need to take performance into account. As vectorization usually also makes code simpler, it is good style to use vectorization whenever possible. For operations that are frequently used, \Rlang includes specific functions. It is thus important to consider not only vectorization of arithmetic but also check for the availability of performance-optimized functions for specific cases. The results from running the code examples in this box are not included, because they are the same for all chunks. Here we are interested in the execution time, and we leave this as an exercise. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a} \hlkwb{<-} \hlkwd{rnorm}\hlstd{(}\hlnum{10}\hlopt{^}\hlnum{7}\hlstd{)} \hlcom{# 10 000 0000 pseudo-random numbers} -\end{alltt} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlcom{# b <- numeric()} -\hlstd{b} \hlkwb{<-} \hlkwd{numeric}\hlstd{(}\hlkwd{length}\hlstd{(a)}\hlopt{-}\hlnum{1}\hlstd{)} \hlcom{# pre-allocate memory} -\hlstd{i} \hlkwb{<-} \hlnum{1} -\hlkwa{while} \hlstd{(i} \hlopt{<} \hlkwd{length}\hlstd{(a)) \{} - \hlstd{b[i]} \hlkwb{<-} \hlstd{a[i}\hlopt{+}\hlnum{1}\hlstd{]} \hlopt{-} \hlstd{a[i]} - \hlkwd{print}\hlstd{(b)} - \hlstd{i} \hlkwb{<-} \hlstd{i} \hlopt{+} \hlnum{1} -\hlstd{\}} -\hlstd{b} -\end{alltt} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlcom{# b <- numeric()} -\hlstd{b} \hlkwb{<-} \hlkwd{numeric}\hlstd{(}\hlkwd{length}\hlstd{(a)}\hlopt{-}\hlnum{1}\hlstd{)} \hlcom{# pre-allocate memory} -\hlkwa{for}\hlstd{(i} \hlkwa{in} \hlkwd{seq}\hlstd{(}\hlkwc{along.with} \hlstd{= b)) \{} - \hlstd{b[i]} \hlkwb{<-} \hlstd{a[i}\hlopt{+}\hlnum{1}\hlstd{]} \hlopt{-} \hlstd{a[i]} - \hlkwd{print}\hlstd{(b)} -\hlstd{\}} -\hlstd{b} -\end{alltt} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlcom{# although in this case there were alternatives, there} -\hlcom{# are other cases when we need to use indexes explicitly} -\hlstd{b} \hlkwb{<-} \hlstd{a[}\hlnum{2}\hlopt{:}\hlkwd{length}\hlstd{(a)]} \hlopt{-} \hlstd{a[}\hlnum{1}\hlopt{:}\hlkwd{length}\hlstd{(a)}\hlopt{-}\hlnum{1}\hlstd{]} -\hlstd{b} -\end{alltt} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlcom{# or even better} -\hlstd{b} \hlkwb{<-} \hlkwd{diff}\hlstd{(a)} -\hlstd{b} -\end{alltt} -\end{kframe} -\end{knitrout} - -Execution time can be obtained with \Rfunction{system.time()}. For a vector of ten million numbers, the \code{for} loop above takes 1.1\,s and the equivalent \code{while} loop 2.0\,s, the vectorized statement using indexing takes 0.2\,s and function \code{diff()} takes 0.1\,s. The \code{for} loop without pre-allocation of memory to \code{b} takes 3.6\,s, and the equivalent while loop 4.7\,s---i.e., the fastest execution time was more than 40 times faster than the slowest one. (Times for \Rpgrm 3.5.1 on my laptop under Windows 10 x64.) -\end{explainbox} -\index{loops!faster alternatives|)} - -\subsection{Nesting of loops}\label{sec:nested:loops} -\index{iteration!nesting of loops}\index{nested iteration loops}\index{loops!nested} - -All the execution-flow control statements seen above can be nested. We will show an example with two \code{for} loops. We first create a matrix of data to work with: - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{A} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{50}\hlstd{,} \hlnum{10}\hlstd{)} -\hlstd{A} -\end{alltt} -\begin{verbatim} -## [,1] [,2] [,3] [,4] [,5] -## [1,] 1 11 21 31 41 -## [2,] 2 12 22 32 42 -## [3,] 3 13 23 33 43 -## [4,] 4 14 24 34 44 -## [5,] 5 15 25 35 45 -## [6,] 6 16 26 36 46 -## [7,] 7 17 27 37 47 -## [8,] 8 18 28 38 48 -## [9,] 9 19 29 39 49 -## [10,] 10 20 30 40 50 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{row.sum} \hlkwb{<-} \hlkwd{numeric}\hlstd{()} -\hlkwa{for} \hlstd{(i} \hlkwa{in} \hlnum{1}\hlopt{:}\hlkwd{nrow}\hlstd{(A)) \{} - \hlstd{row.sum[i]} \hlkwb{<-} \hlnum{0} - \hlkwa{for} \hlstd{(j} \hlkwa{in} \hlnum{1}\hlopt{:}\hlkwd{ncol}\hlstd{(A))} - \hlstd{row.sum[i]} \hlkwb{<-} \hlstd{row.sum[i]} \hlopt{+} \hlstd{A[i, j]} -\hlstd{\}} -\hlkwd{print}\hlstd{(row.sum)} -\end{alltt} -\begin{verbatim} -## [1] 105 110 115 120 125 130 135 140 145 150 -\end{verbatim} -\end{kframe} -\end{knitrout} - -The code above is very general, it will work with any two-dimensional matrix with at least one column and one row. However, sometimes we need more specific calculations. \code{A[1, 2]} selects one cell in the matrix, the one on the first row of the second column. \code{A[1, ]} selects row one, and \code{A[ , 2]} selects column two. In the example above, the value of \code{i} changes for each iteration of the outer loop. The value of \code{j} changes for each iteration of the inner loop, and the inner loop is run in full for each iteration of the outer loop. The inner loop index \code{j} changes fastest. - -\begin{advplayground} -1) Modify the code in the example in the last chunk above so that it sums the values only in the first three columns of \code{A}, 2) modify the same example so that it sums the values only in the last three rows of \code{A}, 3) modify the code so that matrices with dimensions equal to zero (as reported by \code{ncol()} and \code{nrow()}). - -Will the code you wrote continue working as expected if the number of rows in \code{A} changed? What if the number of columns in \code{A} changed, and the required results still needed to be calculated for relative positions? What would happen if \code{A} had fewer than three columns? Try to think first what to expect based on the code you wrote. Then create matrices of different sizes and test your code. After that, think how to improve the code, so that wrong results are not produced. -\end{advplayground} - -\begin{explainbox} -If the total number of iterations is large and the code executed at each iteration runs fast, the overhead added by the loop code can make a big contribution to the total running time of a script. -When dealing with nested loops, as the inner loop is executed most frequently, this is the best place to look for ways of reducing execution time. In this example, vectorization can be achieved easily for the inner loop, as \Rlang has a function \code{sum()} which returns the sum of a vector passed as its argument. Replacing the inner loop by an efficient function can be expected to improve performance significantly. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{row.sum} \hlkwb{<-} \hlkwd{numeric}\hlstd{(}\hlkwd{nrow}\hlstd{(A))} \hlcom{# faster} -\hlkwa{for} \hlstd{(i} \hlkwa{in} \hlnum{1}\hlopt{:}\hlkwd{nrow}\hlstd{(A)) \{} - \hlstd{row.sum[i]} \hlkwb{<-} \hlkwd{sum}\hlstd{(A[i, ])} -\hlstd{\}} -\hlkwd{print}\hlstd{(row.sum)} -\end{alltt} -\begin{verbatim} -## [1] 105 110 115 120 125 130 135 140 145 150 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\code{A[i, ]} selects row \code{i} and all columns. Reminder: in \Rlang the row index comes first. - -Both\index{apply functions} explicit loops can be eliminated if we use an \emph{apply} function, such as \Rloop{apply()}, \Rloop{lapply()} or \Rloop{sapply()}, in place of the outer \code{for} loop. See section \ref{sec:data:apply} below %on page \pageref{sec:data:apply} -for details on the use of the different \emph{apply} functions. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{row.sum} \hlkwb{<-} \hlkwd{apply}\hlstd{(A,} \hlkwc{MARGIN} \hlstd{=} \hlnum{1}\hlstd{, sum)} \hlcom{# MARGIN=1 indicates rows} -\hlkwd{print}\hlstd{(row.sum)} -\end{alltt} -\begin{verbatim} -## [1] 105 110 115 120 125 130 135 140 145 150 -\end{verbatim} -\end{kframe} -\end{knitrout} -Calculating row sums is a frequent operation, so \Rlang has a built-in function for this. As earlier with \code{diff()}, it is always worthwhile to check if there is an existing \Rlang function, optimized for performance, capable of doing the computations we need. In this case, using \code{rowSums()} simplifies the nested loops into a single function call, both improving performance and readability. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{rowSums}\hlstd{(A)} -\end{alltt} -\begin{verbatim} -## [1] 105 110 115 120 125 130 135 140 145 150 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\end{explainbox} - -\begin{playground} -1) How would you change this last example, so that only the last three columns are added up? (Think about use of subscripts to select a part of the matrix.) -2) To obtain column sums, one could modify the nested loops (think how), transpose the matrix and use \code{rowSums()} (think how), or look up if there is in \Rlang a function for this operation. A good place to start is with \code{help(rowSums)} as similar functions may share the same help page, or at least be listed in the ``See also'' section. Do try this, and explore other help pages in search for some function you may find useful in the analysis of your own data. -\end{playground} - -\subsubsection{Clean-up} - -Sometimes we need to make sure that clean-up code is executed even if the execution of a script or function is aborted by the user or as a result of an error condition. A typical example is a script that temporarily sets a disk folder as the working directory or uses a file as temporary storage. Function \Rfunction{on.exit()} can be used to record that a user supplied expression needs to be executed when the current function, or a script, exits. Function \Rfunction{on.exit()} can also make code easier to read as it keeps creation and clean-up next to each other in the body of a function or in the listing of a script. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{file.create}\hlstd{(}\hlstr{"temp.file"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{on.exit}\hlstd{(}\hlkwd{file.remove}\hlstd{(}\hlstr{"temp.file"}\hlstd{))} -\hlcom{# code that makes use of the file goes here} -\end{alltt} -\end{kframe} -\end{knitrout} - -\section[Apply functions]{\emph{Apply} functions}\label{sec:data:apply} - -\emph{Apply}\index{apply functions}\index{loops!faster alternatives} functions apply a function passed as an argument to parameter \code{FUN} or equivalent, to elements in a collection of \Rlang objects passed as an argument to parameter \code{X} or equivalent. Collections to which \code{FUN} is to be applied can be vectors, lists, data frames, matrices or arrays. As long as the operations to be applied are \emph{independent---i.e., the results from one iteration are not used in another iteration---} apply functions can replace \code{for}, \code{while} or \code{repeat} loops. - -\begin{explainbox} -Conceptually, \code{for}, \code{while} and \code{repeat} loops are interpreted as controlling sequential evaluation of program statements. In contrast, \Rlang's \emph{apply} functions are, conceptually, thought as evaluating a function in parallel for each of the different members of their input. So, while in loops the results of earlier iterations through a loop can be stored in variables and used in subsequent iterations, this is not possible in the case of \emph{apply} functions. -\end{explainbox} - -The different \emph{apply} functions in base \Rlang differ in the class of the values they accept for their \code{X} parameter, the class of the object they return and/or the class of the value returned by the applied function. \Rloop{lapply()} and \Rloop{sapply()} expect a \code{vector} or \code{list} as an argument passed through \code{X}. \Rloop{lapply()} returns a \code{list} or an \code{array}; and \Rloop{vapply()} always \emph{simplifies} its returned value into a vector, while \Rloop{sapply()} does the simplification according to the argument passed to its \code{simplify} parameter. All these \emph{apply} functions can be used to apply an \Rlang function that returns a value of the same or a different class as its argument. In the case of \Rloop{apply()} and \Rloop{lapply()} not even the length of the values returned for each member of the collection passed as an argument, needs to be consistent. In summary, \Rloop{apply()} is used to apply a function to the elements along a dimension of an object that has two or more \emph{dimensions}, and \Rloop{lapply()} and \Rloop{sapply()} are used to apply a function to the members of a vector or list. \Rloop{apply()} returns an array or a list or a vector depending on the size, and consistency in length and class among the values returned by the applied function. - -\subsection{Applying functions to vectors and lists} - -We first exemplify the use of \Rloop{lapply()}, \Rloop{sapply()} and \Rloop{vapply()}. In the chunks below we apply a user-defined function to a vector. - -\begin{warningbox} -A constraint is that the individual member objects in the list or vector passed as argument to the \code{x} parameter of \textit{apply} functions will be always passed as a positional argument to the first formal parameter of the applied function, i.e., the function passed as argument to \code{FUN} must be compatible with this approach. -\end{warningbox} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{set.seed}\hlstd{(}\hlnum{123456}\hlstd{)} \hlcom{# so that a.vector does not change} -\hlstd{a.vector} \hlkwb{<-} \hlkwd{runif}\hlstd{(}\hlnum{6}\hlstd{)} \hlcom{# A short vector as input to keep output short} -\hlkwd{str}\hlstd{(a.vector)} -\end{alltt} -\begin{verbatim} -## num [1:6] 0.798 0.754 0.391 0.342 0.361 ... -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.fun} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{,} \hlkwc{k}\hlstd{) \{}\hlkwd{log}\hlstd{(x)} \hlopt{+} \hlstd{k\}} -\end{alltt} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{z} \hlkwb{<-} \hlkwd{lapply}\hlstd{(}\hlkwc{X} \hlstd{= a.vector,} \hlkwc{FUN} \hlstd{= my.fun,} \hlkwc{k} \hlstd{=} \hlnum{5}\hlstd{)} -\hlkwd{str}\hlstd{(z)} -\end{alltt} -\begin{verbatim} -## List of 6 -## $ : num 4.77 -## $ : num 4.72 -## $ : num 4.06 -## $ : num 3.93 -## $ : num 3.98 -## $ : num 3.38 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{z} \hlkwb{<-} \hlkwd{sapply}\hlstd{(}\hlkwc{X} \hlstd{= a.vector,} \hlkwc{FUN} \hlstd{= my.fun,} \hlkwc{k} \hlstd{=} \hlnum{5}\hlstd{)} -\hlkwd{str}\hlstd{(z)} -\end{alltt} -\begin{verbatim} -## num [1:6] 4.77 4.72 4.06 3.93 3.98 ... -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{z} \hlkwb{<-} \hlkwd{sapply}\hlstd{(}\hlkwc{X} \hlstd{= a.vector,} \hlkwc{FUN} \hlstd{= my.fun,} \hlkwc{k} \hlstd{=} \hlnum{5}\hlstd{,} \hlkwc{simplify} \hlstd{=} \hlnum{FALSE}\hlstd{)} -\hlkwd{str}\hlstd{(z)} -\end{alltt} -\begin{verbatim} -## List of 6 -## $ : num 4.77 -## $ : num 4.72 -## $ : num 4.06 -## $ : num 3.93 -## $ : num 3.98 -## $ : num 3.38 -\end{verbatim} -\end{kframe} -\end{knitrout} - -We can see above that the computed results are the same in the three cases, but the class and structure of the objects returned differ. - -Anonymous functions can be defined on the fly and passed to \code{FUN}, allowing us to re-write the examples above more concisely (only the second one shown). - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{z} \hlkwb{<-} \hlkwd{sapply}\hlstd{(}\hlkwc{X} \hlstd{= a.vector,} \hlkwc{FUN} \hlstd{=} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{,} \hlkwc{k}\hlstd{) \{}\hlkwd{log}\hlstd{(x)} \hlopt{+} \hlstd{k\},} \hlkwc{k} \hlstd{=} \hlnum{5}\hlstd{)} -\hlkwd{str}\hlstd{(z)} -\end{alltt} -\begin{verbatim} -## num [1:6] 4.77 4.72 4.06 3.93 3.98 ... -\end{verbatim} -\end{kframe} -\end{knitrout} - -Of course, as discussed in section \ref{sec:loops:slow} on page \pageref{sec:loops:slow}, when suitable vectorized functions are available, their use should be preferred. On the other hand, even if \emph{apply} functions are usually not as fast as vectorized functions, they are faster than the equivalent \code{for()} loops. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{z} \hlkwb{<-} \hlkwd{log}\hlstd{(a.vector)} \hlopt{+} \hlnum{5} -\hlkwd{str}\hlstd{(z)} -\end{alltt} -\begin{verbatim} -## num [1:6] 4.77 4.72 4.06 3.93 3.98 ... -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{explainbox} -Function \Rloop{vapply()} can be safer to use as the mode of returned values is enforced. Here is a possible way of obtaining means and variances across member vectors at each vector index position from a list of vectors. These could be called \emph{parallel} means and variances. The argument passed to \code{FUN.VALUE} provides a template for the type of the return value and its organization into rows and columns. Notice that the rows in the output are now named according to the names in \code{FUN.VALUE}. - -We first use \code{lapply()} to create the object \code{a.list} containing artificial data. One or more additional \emph{named} arguments can be passed to the function to be applied. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{set.seed}\hlstd{(}\hlnum{123456}\hlstd{)} -\hlstd{a.list} \hlkwb{<-} \hlkwd{lapply}\hlstd{(}\hlkwd{rep}\hlstd{(}\hlnum{4}\hlstd{,} \hlnum{5}\hlstd{), rnorm,} \hlkwc{mean} \hlstd{=} \hlnum{10}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{1}\hlstd{)} -\hlkwd{str}\hlstd{(a.list)} -\end{alltt} -\begin{verbatim} -## List of 5 -## $ : num [1:4] 10.83 9.72 9.64 10.09 -## $ : num [1:4] 12.3 10.8 11.3 12.5 -## $ : num [1:4] 11.17 9.57 9 8.89 -## $ : num [1:4] 9.94 11.17 11.05 10.06 -## $ : num [1:4] 9.26 10.93 11.67 10.56 -\end{verbatim} -\end{kframe} -\end{knitrout} - -We define the function that we will apply, a function that returns a numeric vector of length 2. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{mean_and_sd} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{,} \hlkwc{na.rm} \hlstd{=} \hlnum{FALSE}\hlstd{) \{} - \hlkwd{c}\hlstd{(}\hlkwd{mean}\hlstd{(x,} \hlkwc{na.rm} \hlstd{= na.rm),} \hlkwd{sd}\hlstd{(x,} \hlkwc{na.rm} \hlstd{= na.rm))} - \hlstd{\}} -\end{alltt} -\end{kframe} -\end{knitrout} - -We next use \Rloop{vapply()} to apply our function to each member vector of the list. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{values} \hlkwb{<-} \hlkwd{vapply}\hlstd{(}\hlkwc{X} \hlstd{= a.list,} - \hlkwc{FUN} \hlstd{= mean_and_sd,} - \hlkwc{FUN.VALUE} \hlstd{=} \hlkwd{c}\hlstd{(}\hlkwc{mean} \hlstd{=} \hlnum{0}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{0}\hlstd{),} - \hlkwc{na.rm} \hlstd{=} \hlnum{TRUE}\hlstd{)} -\hlkwd{class}\hlstd{(values)} -\end{alltt} -\begin{verbatim} -## [1] "matrix" "array" -\end{verbatim} -\begin{alltt} -\hlstd{values} -\end{alltt} -\begin{verbatim} -## [,1] [,2] [,3] [,4] [,5] -## mean 10.0725427 11.7254442 9.657997 10.5573814 10.605846 -## sd 0.5428149 0.7844356 1.050663 0.6460881 1.005676 -\end{verbatim} -\end{kframe} -\end{knitrout} -\end{explainbox} - -\begin{playground} -As explained in section \ref{sec:R:data:frames} on page \pageref{sec:R:data:frames}, class \code{data.frame} is derived from class \code{list}. Apply function \code{mean\_and\_sd()} defined above to the data frame \code{cars} included as example data in \Rlang. The aim is to obtain the mean and standard deviation for each column. -\end{playground} - -\subsection{Applying functions to matrices and arrays} -In the next example we use \Rloop{apply()} and \Rfunction{mean()} to compute the mean for each column of matrix \code{a.matrix}. In \Rlang the dimensions of a matrix, rows and columns, over which a function is applied are called \emph{margins}. The argument passed to parameter \code{MARGIN} determines over which margin the function will be applied. If the function is applied to individual rows, we say that we operate on the first margin, and if the function is applied to individual columns, over the second margin. Arrays can have many dimensions, and consequently more margins. In the case of arrays with more than two dimensions, it is possible and useful to apply functions over multiple margins at once. - -\begin{warningbox} -A constraint on the function to be applied is that the vector or ``slice'' will always be passed as a positional argument to the first formal parameter of the applied function. -\end{warningbox} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a.matrix} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlkwd{runif}\hlstd{(}\hlnum{100}\hlstd{),} \hlkwc{ncol} \hlstd{=} \hlnum{10}\hlstd{)} -\hlstd{z} \hlkwb{<-} \hlkwd{apply}\hlstd{(a.matrix,} \hlkwc{MARGIN} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{FUN} \hlstd{= mean)} -\hlkwd{str}\hlstd{(z)} -\end{alltt} -\begin{verbatim} -## num [1:10] 0.247 0.404 0.537 0.5 0.504 ... -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{playground} -Modify the example above so that it computes row means instead of column means. -\end{playground} - -\begin{playground} -Look up the help pages for \Rloop{apply()} and \code{mean()} and study them until you understand how additional arguments can be passed to the applied function. Can you guess why \Rloop{apply()} was designed to have parameter names fully in uppercase, something very unusual for \Rlang code style? -\end{playground} - -If we apply a function that returns a value of the same length as its input, then the dimensions of the value returned by \Rloop{apply()} are the same as those of its input. We use, in the next examples, a ``no-op'' function that returns its argument unchanged, so that input and output can be easily compared. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a.small.matrix} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlkwd{rnorm}\hlstd{(}\hlnum{6}\hlstd{,} \hlkwc{mean} \hlstd{=} \hlnum{10}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{1}\hlstd{),} \hlkwc{ncol} \hlstd{=} \hlnum{2}\hlstd{)} -\hlstd{a.small.matrix} \hlkwb{<-} \hlkwd{round}\hlstd{(a.small.matrix,} \hlkwc{digits} \hlstd{=} \hlnum{1}\hlstd{)} -\hlstd{a.small.matrix} -\end{alltt} -\begin{verbatim} -## [,1] [,2] -## [1,] 11.3 10.4 -## [2,] 10.6 8.6 -## [3,] 8.2 11.0 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{no_op.fun} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{) \{x\}} -\end{alltt} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{z} \hlkwb{<-} \hlkwd{apply}\hlstd{(}\hlkwc{X} \hlstd{= a.small.matrix,} \hlkwc{MARGIN} \hlstd{=} \hlnum{2}\hlstd{,} \hlkwc{FUN} \hlstd{= no_op.fun)} -\hlkwd{class}\hlstd{(z)} -\end{alltt} -\begin{verbatim} -## [1] "matrix" "array" -\end{verbatim} -\begin{alltt} -\hlstd{z} -\end{alltt} -\begin{verbatim} -## [,1] [,2] -## [1,] 11.3 10.4 -## [2,] 10.6 8.6 -## [3,] 8.2 11.0 -\end{verbatim} -\end{kframe} -\end{knitrout} - -In the chunk above, we passed \code{MARGIN = 2}, but if we pass \code{MARGIN = 1}, we get a return value that is transposed! To restore the original layout of the matrix we can transpose the result with function \Rfunction{t()}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{z} \hlkwb{<-} \hlkwd{apply}\hlstd{(}\hlkwc{X} \hlstd{= a.small.matrix,} \hlkwc{MARGIN} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{FUN} \hlstd{= no_op.fun)} -\hlstd{z} -\end{alltt} -\begin{verbatim} -## [,1] [,2] [,3] -## [1,] 11.3 10.6 8.2 -## [2,] 10.4 8.6 11.0 -\end{verbatim} -\begin{alltt} -\hlkwd{t}\hlstd{(z)} -\end{alltt} -\begin{verbatim} -## [,1] [,2] -## [1,] 11.3 10.4 -## [2,] 10.6 8.6 -## [3,] 8.2 11.0 -\end{verbatim} -\end{kframe} -\end{knitrout} - -A more realistic example, but difficult to grasp without seeing the toy examples shown above, is when we apply a function that returns a value of a different length than its input, but longer than one. When we compute column summaries (\code{MARGIN = 2}), a matrix is returned, with each column containing the summaries for the corresponding column in the original matrix (\code{a.small.matrix}). In contrast, when we compute row summaries (\code{MARGIN = 1}), each column in the returned matrix contains the summaries for one row in the original array. What happens is that by using \Rloop{apply()} the dimension of the original matrix or array over which we compute summaries ``disappears.'' Consequently, given how matrices are stored in \Rlang, when columns collapse into a single value, the rows become columns. After this, the vectors returned by the applied function, are stored as rows. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{mean_and_sd} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{,} \hlkwc{na.rm} \hlstd{=} \hlnum{FALSE}\hlstd{) \{} - \hlkwd{c}\hlstd{(}\hlkwd{mean}\hlstd{(x,} \hlkwc{na.rm} \hlstd{= na.rm),} \hlkwd{sd}\hlstd{(x,} \hlkwc{na.rm} \hlstd{= na.rm))} - \hlstd{\}} -\end{alltt} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{z} \hlkwb{<-} \hlkwd{apply}\hlstd{(}\hlkwc{X} \hlstd{= a.small.matrix,} \hlkwc{MARGIN} \hlstd{=} \hlnum{2}\hlstd{,} \hlkwc{FUN} \hlstd{= mean_and_sd,} \hlkwc{na.rm} \hlstd{=} \hlnum{TRUE}\hlstd{)} -\hlstd{z} -\end{alltt} -\begin{verbatim} -## [,1] [,2] -## [1,] 10.033333 10.000 -## [2,] 1.625833 1.249 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{z} \hlkwb{<-} \hlkwd{apply}\hlstd{(}\hlkwc{X} \hlstd{= a.small.matrix,} \hlkwc{MARGIN} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{FUN} \hlstd{= mean_and_sd,} \hlkwc{na.rm} \hlstd{=} \hlnum{TRUE}\hlstd{)} -\hlstd{z} -\end{alltt} -\begin{verbatim} -## [,1] [,2] [,3] -## [1,] 10.8500000 9.600000 9.600000 -## [2,] 0.6363961 1.414214 1.979899 -\end{verbatim} -\end{kframe} -\end{knitrout} - -In all examples above, we have used ordinary functions. Operators in \Rlang are functions with two formal parameters which can be called using infix notation in expressions---i.e., \code{a + b}. By back-quoting their names they can be called using the same syntax as for ordinary functions, and consequently also passed to the \code{FUN} parameter of apply functions. A toy example, equivalent to the vectorized operation \code{a.vector + 5} follows. We enclosed operator \code{+} in back ticks (\code{`}) and pass by name a constant to its second formal parameter (\code{e2 = 5}). - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{set.seed}\hlstd{(}\hlnum{123456}\hlstd{)} \hlcom{# so that a.vector does not change} -\hlstd{a.vector} \hlkwb{<-} \hlkwd{runif}\hlstd{(}\hlnum{10}\hlstd{)} -\hlstd{z} \hlkwb{<-} \hlkwd{sapply}\hlstd{(}\hlkwc{X} \hlstd{= a.vector,} \hlkwc{FUN} \hlstd{= `+`,} \hlkwc{e2} \hlstd{=} \hlnum{5}\hlstd{)} -\hlkwd{str}\hlstd{(z)} -\end{alltt} -\begin{verbatim} -## num [1:10] 5.8 5.75 5.39 5.34 5.36 ... -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{explainbox} -\textbf{Apply functions vs.\ loop constructs} Apply functions cannot always replace explicit loops as they are less flexible. A simple example is the accumulation pattern, where we ``walk'' through a collection that stores a partial result between iterations. A similar case is a pattern where calculations are done over a ``window'' that moves at each iteration. The simplest and probably most frequent calculation of this kind is the calculation of differences between successive members. Other examples are moving window summaries such as a moving median (see page \pageref{box:vectorization:perf} for other alternatives to the use of explicit iteration loops). -\end{explainbox} - -\section{Functions that replace loops} - -\Rlang provides several functions that can be used to avoid writing iterative loops in \Rlang. These functions are written in \Clang and compiled, so even when iterative algorithms are used, they are fast. Replacing code implementing an iterative algorithm by a single function call simplifies the script's code and can make it easier to understand. A table with examples of some useful functions that are available in base \Rlang is provided here. All these functions take a vector as their first argument.\vspace{2ex}. - -\begin{tabular}{lll} - \toprule - Function & Computation & Value, length \\ - \midrule - \Rfunction{sum()} & $\sum_{i=1}^n x_i$ & numeric, 1 \\ - \Rfunction{prod()} & $\prod_{i=1}^n x_i$ & numeric, 1 \\ - \Rfunction{max()} & $x_{max}$ & numeric, 1 \\ - \Rfunction{min()} & $x_{min}$ & numeric, 1 \\ - \Rfunction{cumsum()} & $\sum_{i=1}^1 x_i, \cdots \sum_{i=1}^j x_i, \cdots \sum_{i=1}^n x_i$ & numeric, n \\ - \Rfunction{cumprod()} & $\prod_{i=1}^1 x_i, \cdots \prod_{i=1}^j x_i, \cdots \prod_{i=1}^n x_i$ & numeric, n \\ - \Rfunction{cummax()} & $x_{max}$ & numeric, n \\ - \Rfunction{cummin()} & $x_{min}$ & numeric, n \\ - \Rfunction{diff()} & $x_2 - x_1, \cdots x_i - x_{i-1}, \cdots x_n - x_{n-1}$ & numeric, n-1 \\ - \bottomrule -\end{tabular} - -\begin{playground} - Build a \code{numeric} vector such as \code{x <- c(1, 9, 6, 4, 3)} and pass it as argument to the functions in the table above. Do the corresponding computations manually until you are sure to understand what each function calculates. -\end{playground} - -\section{Object names and character strings} - -In\index{object names}\index{object names!as character strings} all assignment examples before this section, we have used object names included as literal character strings in the code expressions. In other words, the names are ``decided'' as part of the code, rather than at run time. In scripts or packages, the object name to be assigned may need to be decided at run time and, consequently, be available only as a character string stored in a variable. In this case, function \Rfunction{assign()} must be used instead of the operators \code{<-} or \code{->}. The statements below demonstrate its use. - -First using a \code{character} constant. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{assign}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlnum{9.99}\hlstd{)} -\hlstd{a} -\end{alltt} -\begin{verbatim} -## [1] 9.99 -\end{verbatim} -\end{kframe} -\end{knitrout} -Next using a \code{character} value stored in a variable. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{name.of.var} \hlkwb{<-} \hlstr{"b"} -\hlkwd{assign}\hlstd{(name.of.var,} \hlnum{9.99}\hlstd{)} -\hlstd{b} -\end{alltt} -\begin{verbatim} -## [1] 9.99 -\end{verbatim} -\end{kframe} -\end{knitrout} - -The two toy examples above do not demonstrate why one may want to use \Rfunction{assign()}. Common situations where we may want to use character strings to store (future or existing) object names are 1) when we allow users to provide names for objects either interactively or as \code{character} data, 2) when in a loop we transverse a vector or list of object names, or 3) we construct at runtime object names from multiple character strings based on data or settings. A common case is when we import data from a text file and we want to name the object according to the name of the file on disk, or a character string read from the header at the top of the file. - -Another case is when \code{character} values are the result of a computation. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwa{for} \hlstd{(i} \hlkwa{in} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{) \{} - \hlkwd{assign}\hlstd{(}\hlkwd{paste}\hlstd{(}\hlstr{"zz_"}\hlstd{, i,} \hlkwc{sep} \hlstd{=} \hlstr{""}\hlstd{), i}\hlopt{^}\hlnum{2}\hlstd{)} -\hlstd{\}} -\hlkwd{ls}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"zz_*"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] "zz_1" "zz_2" "zz_3" "zz_4" "zz_5" -\end{verbatim} -\end{kframe} -\end{knitrout} - -The complementary operation of \emph{assigning} a name to an object is to \emph{get} an object when we have available its name as a character string. The corresponding function is \Rfunction{get()}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{get}\hlstd{(}\hlstr{"a"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] 9.99 -\end{verbatim} -\begin{alltt} -\hlkwd{get}\hlstd{(}\hlstr{"b"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] 9.99 -\end{verbatim} -\end{kframe} -\end{knitrout} - -If we have available a character vector containing object names and we want to create a list containing these objects we can use function \Rfunction{mget()}. In the example below we use function \code{ls()} to obtain a character vector of object names matching a specific pattern and then collect all these objects into a list. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{obj_names} \hlkwb{<-} \hlkwd{ls}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"zz_*"}\hlstd{)} -\hlstd{obj_lst} \hlkwb{<-} \hlkwd{mget}\hlstd{(obj_names)} -\hlkwd{str}\hlstd{(obj_lst)} -\end{alltt} -\begin{verbatim} -## List of 5 -## $ zz_1: num 1 -## $ zz_2: num 4 -## $ zz_3: num 9 -## $ zz_4: num 16 -## $ zz_5: num 25 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{advplayground} -Think of possible uses of functions \Rfunction{assign()}, \Rfunction{get()} and \Rfunction{mget()} in scripts you use or could use to analyze your own data (or from other sources). Write a script to implement this, and iteratively test and revise this script until the result produced by the script matches your expectations. -\end{advplayground} - -\section{The multiple faces of loops}\label{sec:R:faces:of:loops} - -\ilAdvanced\ To close this chapter, I will mention some advanced aspects of the \Rlang language that are useful when writing complex scrips---if you are going through the book sequentially, you will want to return to this section after reading chapters \ref{chap:R:statistics} and \ref{chap:R:functions}. In the same way as we can assign names to \code{numeric}, \code{character} and other types of objects, we can assign names to functions and expressions. We can also create lists of functions and/or expressions. The \Rlang language has a very consistent grammar, with all lists and vectors behaving in the same way. The implication of this is that we can assign different functions or expressions to a given name, and consequently it is possible to write loops over lists of functions or expressions. - -In this first example we use a \emph{character vector of function names}, and use function \Rfunction{do.call()} as it accepts either character strings or function names as its first argument. We obtain a numeric vector with named members with names matching the function names. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{x} \hlkwb{<-} \hlkwd{rnorm}\hlstd{(}\hlnum{10}\hlstd{)} -\hlstd{results} \hlkwb{<-} \hlkwd{numeric}\hlstd{()} -\hlstd{fun.names} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"mean"}\hlstd{,} \hlstr{"max"}\hlstd{,} \hlstr{"min"}\hlstd{)} -\hlkwa{for} \hlstd{(f.name} \hlkwa{in} \hlstd{fun.names) \{} - \hlstd{results[[f.name]]} \hlkwb{<-} \hlkwd{do.call}\hlstd{(f.name,} \hlkwd{list}\hlstd{(x))} - \hlstd{\}} -\hlstd{results} -\end{alltt} -\begin{verbatim} -## mean max min -## 0.5453427 2.5026454 -1.1139499 -\end{verbatim} -\end{kframe} -\end{knitrout} - -When traversing a \emph{list of functions} in a loop, we face the problem that we cannot access the original names of the functions as what is stored in the list are the definitions of the functions. In this case, we can hold the function definitions in the loop variable (\code{f} in the chunk below) and call the functions by use of the function call notation (\code{f()}). We obtain a numeric vector with anonymous members. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{results} \hlkwb{<-} \hlkwd{numeric}\hlstd{()} -\hlstd{funs} \hlkwb{<-} \hlkwd{list}\hlstd{(mean, max, min)} -\hlkwa{for} \hlstd{(f} \hlkwa{in} \hlstd{funs) \{} - \hlstd{results} \hlkwb{<-} \hlkwd{c}\hlstd{(results,} \hlkwd{f}\hlstd{(x))} - \hlstd{\}} -\hlstd{results} -\end{alltt} -\begin{verbatim} -## [1] 0.5453427 2.5026454 -1.1139499 -\end{verbatim} -\end{kframe} -\end{knitrout} - -We can use a named list of functions to gain full control of the naming of the results. We obtain a numeric vector with named members with names matching the names given to the list members. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{results} \hlkwb{<-} \hlkwd{numeric}\hlstd{()} -\hlstd{funs} \hlkwb{<-} \hlkwd{list}\hlstd{(}\hlkwc{average} \hlstd{= mean,} \hlkwc{maximum} \hlstd{= max,} \hlkwc{minimum} \hlstd{= min)} -\hlkwa{for} \hlstd{(f} \hlkwa{in} \hlkwd{names}\hlstd{(funs)) \{} - \hlstd{results[[f]]} \hlkwb{<-} \hlstd{funs[[f]](x)} - \hlstd{\}} -\hlstd{results} -\end{alltt} -\begin{verbatim} -## average maximum minimum -## 0.5453427 2.5026454 -1.1139499 -\end{verbatim} -\end{kframe} -\end{knitrout} - -Next is an example using model formulas. We use a loop to fit three models, obtaining a list of fitted models. We cannot pass to \Rfunction{anova()} this list of fitted models, as it expects each fitted model as a separate nameless argument to its \code{\ldots} parameter. We can get around this problem using function \Rfunction{do.call()} to call \Rfunction{anova()}. Function \Rfunction{do.call()} passes the members of the list passed as its second argument as individual arguments to the function being called, using their names if present. \Rfunction{anova()} expects nameless arguments so we need to remove the names present in \code{results}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.data} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{10}\hlstd{,} \hlkwc{y} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{10} \hlopt{+} \hlkwd{rnorm}\hlstd{(}\hlnum{10}\hlstd{,} \hlnum{1}\hlstd{,} \hlnum{0.1}\hlstd{))} -\hlstd{results} \hlkwb{<-} \hlkwd{list}\hlstd{()} -\hlstd{models} \hlkwb{<-} \hlkwd{list}\hlstd{(}\hlkwc{linear} \hlstd{= y} \hlopt{~} \hlstd{x,} \hlkwc{linear.orig} \hlstd{= y} \hlopt{~} \hlstd{x} \hlopt{-} \hlnum{1}\hlstd{,} \hlkwc{quadratic} \hlstd{= y} \hlopt{~} \hlstd{x} \hlopt{+} \hlkwd{I}\hlstd{(x}\hlopt{^}\hlnum{2}\hlstd{))} -\hlkwa{for} \hlstd{(m} \hlkwa{in} \hlkwd{names}\hlstd{(models)) \{} - \hlstd{results[[m]]} \hlkwb{<-} \hlkwd{lm}\hlstd{(models[[m]],} \hlkwc{data} \hlstd{= my.data)} - \hlstd{\}} -\hlkwd{str}\hlstd{(results,} \hlkwc{max.level} \hlstd{=} \hlnum{1}\hlstd{)} -\end{alltt} -\begin{verbatim} -## List of 3 -## $ linear :List of 12 -## ..- attr(*, "class")= chr "lm" -## $ linear.orig:List of 12 -## ..- attr(*, "class")= chr "lm" -## $ quadratic :List of 12 -## ..- attr(*, "class")= chr "lm" -\end{verbatim} -\begin{alltt} -\hlkwd{do.call}\hlstd{(anova,} \hlkwd{unname}\hlstd{(results))} -\end{alltt} -\begin{verbatim} -## Analysis of Variance Table -## -## Model 1: y ~ x -## Model 2: y ~ x - 1 -## Model 3: y ~ x + I(x^2) -## Res.Df RSS Df Sum of Sq F Pr(>F) -## 1 8 0.05525 -## 2 9 2.31266 -1 -2.2574 306.19 4.901e-07 *** -## 3 7 0.05161 2 2.2611 153.34 1.660e-06 *** -## --- -## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 -\end{verbatim} -\end{kframe} -\end{knitrout} - -If we had no further use for \code{results} we could simply build a list with nameless members by using positional indexing. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{results} \hlkwb{<-} \hlkwd{list}\hlstd{()} -\hlstd{models} \hlkwb{<-} \hlkwd{list}\hlstd{(y} \hlopt{~} \hlstd{x, y} \hlopt{~} \hlstd{x} \hlopt{-} \hlnum{1}\hlstd{, y} \hlopt{~} \hlstd{x} \hlopt{+} \hlkwd{I}\hlstd{(x}\hlopt{^}\hlnum{2}\hlstd{))} -\hlkwa{for} \hlstd{(i} \hlkwa{in} \hlkwd{seq}\hlstd{(}\hlkwc{along.with} \hlstd{= models)) \{} - \hlstd{results[[i]]} \hlkwb{<-} \hlkwd{lm}\hlstd{(models[[i]],} \hlkwc{data} \hlstd{= my.data)} - \hlstd{\}} -\hlkwd{str}\hlstd{(results,} \hlkwc{max.level} \hlstd{=} \hlnum{1}\hlstd{)} -\end{alltt} -\begin{verbatim} -## List of 3 -## $ :List of 12 -## ..- attr(*, "class")= chr "lm" -## $ :List of 12 -## ..- attr(*, "class")= chr "lm" -## $ :List of 12 -## ..- attr(*, "class")= chr "lm" -\end{verbatim} -\begin{alltt} -\hlkwd{do.call}\hlstd{(anova, results)} -\end{alltt} -\begin{verbatim} -## Analysis of Variance Table -## -## Model 1: y ~ x -## Model 2: y ~ x - 1 -## Model 3: y ~ x + I(x^2) -## Res.Df RSS Df Sum of Sq F Pr(>F) -## 1 8 0.05525 -## 2 9 2.31266 -1 -2.2574 306.19 4.901e-07 *** -## 3 7 0.05161 2 2.2611 153.34 1.660e-06 *** -## --- -## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\subsection{Further reading} -For\index{further reading!the R language} further readings on the aspects of \Rlang discussed in the current chapter, I suggest the books \citetitle{Matloff2011} (\citeauthor{Matloff2011}) and \citetitle{Wickham2019} (\citeauthor{Wickham2019}). - - -% !Rnw root = appendix.main.Rnw - - -\chapter{The R language: Statistics}\label{chap:R:statistics} - -\begin{VF} -The purpose of computing is insight, not numbers. - -\VA{Richard W. Hamming}{\emph{Numerical Methods for Scientists and Engineers}, 1987}\nocite{Hamming1987} -\end{VF} - -\section{Aims of this chapter} - -This chapter aims to give the reader only a quick introduction to statistics in base \Rlang, as there are many good texts on the use of \Rpgrm for different kinds of statistical analyses (see further reading on page \pageref{sec:stat:further:reading}). Although many of base \R's functions are specific to given statistical procedures, they use a particular approach to model specification and for returning the computed values that can be considered a part of the \Rlang language. Here you will learn the approaches used in \Rlang for calculating statistical summaries, generating (pseudo-)random numbers, sampling, fitting models and carrying out tests of significance. We will use linear correlation, \emph{t}-test, linear models, generalized linear models, non-linear models and some simple multivariate methods as examples. My aim is teaching how to specify models, contrasts and data used, and how to access different components of the objects returned by the corresponding fit and summary functions. - -%\emph{At present I use several examples adapted from the help pages for the functions described. I may revise this before publication.} - -\section{Statistical summaries} -\index{functions!base R}\index{summaries!statistical} -Being the main focus of the \Rlang language in data analysis and statistics, \Rlang provides functions for both simple and complex calculations, going from means and variances to fitting very complex models. Below are examples of functions implementing the calculation of the frequently used data summaries mean or average (\Rfunction{mean()}), variance (\Rfunction{var()}), standard deviation (\Rfunction{sd()}), median (\Rfunction{median()}), mean absolute deviation (\Rfunction{mad()}), mode (\Rfunction{mode()}), maximum (\Rfunction{max()}), minimum (\Rfunction{min()}), range (\Rfunction{range()}), quantiles (\Rfunction{quantile()}), length (\Rfunction{length()}), and all-encompassing summaries (\Rfunction{summary()}). All these methods accept numeric vectors and matrices as an argument. Some of them also have definitions for other classes such as data frames in the case of \Rfunction{summary()}. (The \Rlang language does not define a function for calculation of the standard error of the mean. Please, see section \ref{sec:functions:sem} on page \pageref{sec:functions:sem} for how to define your own.) - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{x} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{20} -\hlkwd{mean}\hlstd{(x)} -\hlkwd{var}\hlstd{(x)} -\hlkwd{sd}\hlstd{(x)} -\hlkwd{median}\hlstd{(x)} -\hlkwd{mad}\hlstd{(x)} -\hlkwd{mode}\hlstd{(x)} -\hlkwd{max}\hlstd{(x)} -\hlkwd{min}\hlstd{(x)} -\hlkwd{range}\hlstd{(x)} -\hlkwd{quantile}\hlstd{(x)} -\hlkwd{length}\hlstd{(x)} -\hlkwd{summary}\hlstd{(x)} -\end{alltt} -\end{kframe} -\end{knitrout} - -\begin{playground} - In contrast to many other examples in this book, the summaries computed with the code in the previous chunk are not shown. You should \emph{run} them, using vector \code{x} as defined above, and then play with other real or artificial data that you may find interesting.% Later in the book, only the output from certain examples will be shown, with the expectation, that other examples will be run by readers. -\end{playground} - -By default, if the argument contains \code{NAs} these functions return \code{NA}. The logic behind this is that if one value exists but is unknown, the true result of the computation is unknown (see page \pageref{par:special:values} for details on the role of \code{NA} in \Rlang). However, an additional parameter called \code{na.rm} allows us to override this default behavior by requesting any \code{NA} in the input to be removed (or discarded) before calculation, - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{x} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{20}\hlstd{,} \hlnum{NA}\hlstd{)} -\hlkwd{mean}\hlstd{(x)} -\end{alltt} -\begin{verbatim} -## [1] NA -\end{verbatim} -\begin{alltt} -\hlkwd{mean}\hlstd{(x,} \hlkwc{na.rm} \hlstd{=} \hlnum{TRUE}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] 10.5 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\section{Distributions} -\index{distributions|(}\index{Normal distribution} -Density, distribution functions, quantile functions and generation of pseudo-random values for several different distributions are part of the \Rlang language. Entering \code{help(Distributions)} at the \Rlang prompt will open a help page describing all the distributions available in base \Rlang. In what follows we use the Normal distribution for the examples, but with slight differences in their parameters the functions for other theoretical distributions follow a consistent naming pattern. For each distribution the different functions contain the same ``root'' in their names: \code{norm} for the normal distribution, \code{unif} for the uniform distribution, and so on. The ``head'' of the name indicates the type of values returned: ``d'' for density, ``q'' for quantile, ``r'' (pseudo-)random numbers, and ``p'' for probabilities. - -\subsection{Density from parameters} -\index{distributions!density from parameters} -Theoretical distributions are defined by mathematical functions that accept parameters that control the exact shape and location. In the case of the Normal distribution, these parameters are the \emph{mean} controlling location and \emph(standard deviation) (or its square, the \emph{variance}) controlling the spread around the center of the distribution. - -To obtain a single point from the distribution curve we pass a vector of length one as an argument for \code{x}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{dnorm}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1.5}\hlstd{,} \hlkwc{mean} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{0.5}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] 0.4839414 -\end{verbatim} -\end{kframe} -\end{knitrout} - -To obtain multiple values we can pass a longer vector as an argument. As perusing a long vector of numbers is difficult, we plot the result of the computation as a line (\code{type = "l"}) that shows that the 50 generated data points give the illusion of a continuous curve. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.x} \hlkwb{<-} \hlkwd{seq}\hlstd{(}\hlkwc{from} \hlstd{=} \hlopt{-}\hlnum{1}\hlstd{,} \hlkwc{to} \hlstd{=} \hlnum{3}\hlstd{,} \hlkwc{length.out} \hlstd{=} \hlnum{50}\hlstd{)} - -\hlstd{my.data} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{= my.x,} - \hlkwc{y} \hlstd{=} \hlkwd{dnorm}\hlstd{(}\hlkwc{x} \hlstd{= my.x,} \hlkwc{mean} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{0.5}\hlstd{))} -\hlkwd{plot}\hlstd{(y}\hlopt{~}\hlstd{x,} \hlkwc{data} \hlstd{= my.data,} \hlkwc{type} \hlstd{=} \hlstr{"l"}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.54\textwidth]{figure/pos-distrib-01a-1} - -} - - -\end{knitrout} - -\subsection{Probabilities from parameters and quantiles}\label{sec:prob:quant} -\index{distributions!probabilities from quantiles} - -If we have a calculated quantile we can look up the corresponding $p$-value from the Normal distribution. The mean and standard deviation would, in such a case, also be computed from the same observations under the null hypothesis. In the example below, we use invented values for all parameters \code{q}, the quantile, \code{mean}, and \code{sd}, the standard deviation. Use - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{pnorm}\hlstd{(}\hlkwc{q} \hlstd{=} \hlnum{4}\hlstd{,} \hlkwc{mean} \hlstd{=} \hlnum{0}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{1}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] 0.9999683 -\end{verbatim} -\begin{alltt} -\hlkwd{pnorm}\hlstd{(}\hlkwc{q} \hlstd{=} \hlnum{4}\hlstd{,} \hlkwc{mean} \hlstd{=} \hlnum{0}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{lower.tail} \hlstd{=} \hlnum{FALSE}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] 3.167124e-05 -\end{verbatim} -\begin{alltt} -\hlkwd{pnorm}\hlstd{(}\hlkwc{q} \hlstd{=} \hlnum{4}\hlstd{,} \hlkwc{mean} \hlstd{=} \hlnum{0}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{4}\hlstd{,} \hlkwc{lower.tail} \hlstd{=} \hlnum{FALSE}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] 0.1586553 -\end{verbatim} -\begin{alltt} -\hlkwd{pnorm}\hlstd{(}\hlkwc{q} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{2}\hlstd{,} \hlnum{4}\hlstd{),} \hlkwc{mean} \hlstd{=} \hlnum{0}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{lower.tail} \hlstd{=} \hlnum{FALSE}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] 2.275013e-02 3.167124e-05 -\end{verbatim} -\begin{alltt} -\hlkwd{pnorm}\hlstd{(}\hlkwc{q} \hlstd{=} \hlnum{4}\hlstd{,} \hlkwc{mean} \hlstd{=} \hlnum{0}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{4}\hlstd{),} \hlkwc{lower.tail} \hlstd{=} \hlnum{FALSE}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] 3.167124e-05 1.586553e-01 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{explainbox} - In tests of significance, empirical $z$-values and $t$-values are computed by subtracting from the observed mean for one group or raw quantile, the ``expected'' mean (possibly a hypothesized theoretical value, the mean of a control condition used as reference, or the mean computed over all treatments under the assumption of no effect of treatments) and then dividing by the standard deviation. Consequently, the $p$-values corresponding to these empirical $z$-values and $t$-values need to be looked up using \code{mean = 0} and \code{sd = 1} when calling \Rfunction{pnorm()} or \Rfunction{pt()} respectively. These frequently used values are the defaults. -\end{explainbox} - -\subsection{Quantiles from parameters and probabilities}\label{sec:quant:prob} -\index{distributions!quantiles from probabilities} - -The reverse computation from that in the previous section is to obtain the quantile corresponding to a known $p$-value. These quantiles are equivalent to the values in the tables used earlier to assess significance. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{qnorm}\hlstd{(}\hlkwc{p} \hlstd{=} \hlnum{0.01}\hlstd{,} \hlkwc{mean} \hlstd{=} \hlnum{0}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{1}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] -2.326348 -\end{verbatim} -\begin{alltt} -\hlkwd{qnorm}\hlstd{(}\hlkwc{p} \hlstd{=} \hlnum{0.05}\hlstd{,} \hlkwc{mean} \hlstd{=} \hlnum{0}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{1}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] -1.644854 -\end{verbatim} -\begin{alltt} -\hlkwd{qnorm}\hlstd{(}\hlkwc{p} \hlstd{=} \hlnum{0.05}\hlstd{,} \hlkwc{mean} \hlstd{=} \hlnum{0}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{lower.tail} \hlstd{=} \hlnum{FALSE}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] 1.644854 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{warningbox} -Quantile functions like \Rfunction{qnorm()} and probability functions like \Rfunction{pnorm()} always do computations based on a single tail of the distribution, even though it is possible to specify which tail we are interested in. If we are interested in obtaining simultaneous quantiles for both tails, we need to do this manually. If we are aiming at quantiles for $P = 0.05$, we need to find the quantile for each tail based on $P / 2 = 0.025$. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{qnorm}\hlstd{(}\hlkwc{p} \hlstd{=} \hlnum{0.025}\hlstd{,} \hlkwc{mean} \hlstd{=} \hlnum{0}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{1}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] -1.959964 -\end{verbatim} -\begin{alltt} -\hlkwd{qnorm}\hlstd{(}\hlkwc{p} \hlstd{=} \hlnum{0.025}\hlstd{,} \hlkwc{mean} \hlstd{=} \hlnum{0}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{lower.tail} \hlstd{=} \hlnum{FALSE}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] 1.959964 -\end{verbatim} -\end{kframe} -\end{knitrout} - -We see above that in the case of a symmetric distribution like the Normal, the quantiles in the two tails differ only in sign. This is not the case for asymmetric distributions. - -When calculating a $p$-value from a quantile in a test of significance, we need to first decide whether a two-sided or single-sided test is relevant, and in the case of a single sided test, which tail is of interest. For a two-sided test we need to multiply the returned value by 2. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{pnorm}\hlstd{(}\hlkwc{q} \hlstd{=} \hlnum{4}\hlstd{,} \hlkwc{mean} \hlstd{=} \hlnum{0}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{1}\hlstd{)} \hlopt{*} \hlnum{2} -\end{alltt} -\begin{verbatim} -## [1] 1.999937 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\end{warningbox} - -\subsection{``Random'' draws from a distribution}\label{sec:stat:random} -\index{random draws|see{distributions!pseudo-random draws}}\index{distributions!pseudo-random draws} - -True random sequences can only be generated by physical processes. All so-called ``random'' sequences of numbers generated by computation are really deterministic although they share some properties with true random sequences (e.g., in relation to autocorrelation). It is possible to compute not only pseudo-random draws from a uniform distribution but also from the Normal, $t$, $F$ and other distributions. Parameter \code{n} indicates the number of values to be drawn, or its equivalent, the length of the vector returned.\qRfunction{rnorm()}\qRfunction{runif()} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{rnorm}\hlstd{(}\hlnum{5}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] -0.8248801 0.1201213 -0.4787266 -0.7134216 1.1264443 -\end{verbatim} -\begin{alltt} -\hlkwd{rnorm}\hlstd{(}\hlkwc{n} \hlstd{=} \hlnum{10}\hlstd{,} \hlkwc{mean} \hlstd{=} \hlnum{10}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{2}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] 12.394190 9.697729 9.212345 11.624844 12.194317 10.257707 10.082981 -## [8] 10.268540 10.792963 7.772915 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{playground} -Edit the examples in sections \ref{sec:prob:quant}, \ref{sec:quant:prob} and \ref{sec:stat:random} to do computations based on different distributions, such as Student's \emph{t}, \emph{F} or uniform. -\end{playground} - -\begin{explainbox} -\index{random numbers|see{pseudo-random numbers}}\index{pseudo-random numbers} -It is impossible to generate truly random sequences of numbers by means of a deterministic process such as a mathematical computation. ``Random numbers'' as generated by \Rpgrm and other computer programs are \emph{pseudo random numbers}, long deterministic series of numbers that resemble random draws. Random number generation uses a \emph{seed} value that determines where in the series we start. The usual way of automatically setting the value of the seed is to take the milliseconds or similar rapidly changing set of digits from the real time clock of the computer. However, in cases when we wish to repeat a calculation using the same series of pseudo-random values, we can use \Rfunction{set.seed()} with an arbitrary integer as an argument to reset the generator to the same point in the underlying (deterministic) sequence. -\end{explainbox} - -\begin{advplayground} -Execute the statement \code{rnorm(3)}\qRfunction{rnorm()} by itself several times, paying attention to the values obtained. Repeat the exercise, but now executing \code{set.seed(98765)}\qRfunction{setseed()} immediately before each call to \code{rnorm(3)}, again paying attention to the values obtained. Next execute \code{set.seed(98765)}, followed by \code{c(rnorm(3), rnorm(3))}, and then execute \code{set.seed(98765)}, followed by \code{rnorm(6)} and compare the output. Repeat the exercise using a different argument in the call to \code{set.seed()}. analyze the results and explain how \code{setseed()} affects the generation of pseudo-random numbers in \Rlang. -\end{advplayground} - -\section{``Random'' sampling} -\index{random sampling|see{pseudo-random sampling}}% -\index{pseudo-random sampling}% - -In addition to drawing values from a theoretical distribution, we can draw values from an existing set or collection of values. We call this operation (pseudo-)random sampling. The draws can be done either with replacement or without replacement. In the second case, all draws are taken from the whole set of values, making it possible for a given value to be drawn more than once. In the default case of not using replacement, subsequent draws are taken from the values remaining after removing the values chosen in earlier draws. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{sample}\hlstd{(}\hlkwc{x} \hlstd{= LETTERS)} -\end{alltt} -\begin{verbatim} -## [1] "Z" "N" "Y" "R" "M" "E" "W" "J" "H" "G" "U" "O" "S" "T" "L" "F" "X" "P" "K" -## [20] "V" "D" "A" "B" "C" "I" "Q" -\end{verbatim} -\begin{alltt} -\hlkwd{sample}\hlstd{(}\hlkwc{x} \hlstd{= LETTERS,} \hlkwc{size} \hlstd{=} \hlnum{12}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] "M" "S" "L" "R" "B" "D" "Q" "W" "V" "N" "J" "P" -\end{verbatim} -\begin{alltt} -\hlkwd{sample}\hlstd{(}\hlkwc{x} \hlstd{= LETTERS,} \hlkwc{size} \hlstd{=} \hlnum{12}\hlstd{,} \hlkwc{replace} \hlstd{=} \hlnum{TRUE}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] "K" "E" "V" "N" "A" "Q" "L" "C" "T" "L" "H" "U" -\end{verbatim} -\end{kframe} -\end{knitrout} - -In practice, pseudo-random sampling is useful when we need to select subsets of observations. One such case is assigning treatments to experimental units in an experiment or selecting persons to interview in a survey. Another use is in bootstrapping to estimate variation in parameter estimates using empirical distributions. -\index{distributions|)} - -\section{Correlation} -\index{correlation|(} -Both parametric (Pearson's) and non-parametric robust (Spearman's and Kendall's) methods for the estimation of the (linear) correlation between pairs of variables are available in base \Rlang. The different methods are selected by passing arguments to a single function. While Pearson's method is based on the actual values of the observations, non-parametric methods are based on the ordering or rank of the observations, and consequently less affected by observations with extreme values. - -We first load and explore the data set \Rdata{cars} from \Rlang which we will use in the example. These data consist of stopping distances for cars moving at different speeds as described in the documentation available by entering \code{help(cars)}). - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{data}\hlstd{(cars)} -\hlkwd{plot}\hlstd{(cars)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.54\textwidth]{figure/pos-cor-00-1} - -} - - -\end{knitrout} -\label{chunk:plot:cars} - -\subsection{Pearson's $r$} -\index{correlation!parametric} -\index{correlation!Pearson} - -Function \Rfunction{cor()} can be called with two vectors of the same length as arguments. In the case of the parametric Pearson method, we do not need to provide further arguments as this method is the default one. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{cor}\hlstd{(}\hlkwc{x} \hlstd{= cars}\hlopt{$}\hlstd{speed,} \hlkwc{y} \hlstd{= cars}\hlopt{$}\hlstd{dist)} -\end{alltt} -\begin{verbatim} -## [1] 0.8068949 -\end{verbatim} -\end{kframe} -\end{knitrout} - -It is also possible to pass a data frame (or a matrix) as the only argument. When the data frame (or matrix) contains only two columns, the returned value is equivalent to that of passing the two columns individually as vectors. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{cor}\hlstd{(cars)} -\end{alltt} -\begin{verbatim} -## speed dist -## speed 1.0000000 0.8068949 -## dist 0.8068949 1.0000000 -\end{verbatim} -\end{kframe} -\end{knitrout} - -When the data frame or matrix contains more than two numeric vectors, the returned value is a matrix of estimates of pairwise correlations between columns. We here use \Rfunction{rnorm()} described above to create a long vector of pseudo-random values drawn from the Normal distribution and \Rfunction{matrix()} to convert it into a matrix with three columns (see page \pageref{sec:matrix:array} for details about \Rlang matrices). - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.mat} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlkwd{rnorm}\hlstd{(}\hlnum{54}\hlstd{),} \hlkwc{ncol} \hlstd{=} \hlnum{3}\hlstd{,} - \hlkwc{dimnames} \hlstd{=} \hlkwd{list}\hlstd{(}\hlkwc{rows} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{18}\hlstd{,} \hlkwc{cols} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlstr{"B"}\hlstd{,} \hlstr{"C"}\hlstd{)))} -\hlkwd{cor}\hlstd{(my.mat)} -\end{alltt} -\begin{verbatim} -## A B C -## A 1.00000000 0.2126595 0.05623007 -## B 0.21265951 1.0000000 0.31065243 -## C 0.05623007 0.3106524 1.00000000 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{playground} -Modify the code in the chunk immediately above constructing a matrix with six columns and then computing the correlations. -\end{playground} - -While \Rfunction{cor()} returns and estimate for $r$ the correlation coefficient, \Rfunction{cor.test()} also computes the $t$-value, $p$-value, and confidence interval for the estimate. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{cor.test}\hlstd{(}\hlkwc{x} \hlstd{= cars}\hlopt{$}\hlstd{speed,} \hlkwc{y} \hlstd{= cars}\hlopt{$}\hlstd{dist)} -\end{alltt} -\begin{verbatim} -## -## Pearson's product-moment correlation -## -## data: cars$speed and cars$dist -## t = 9.464, df = 48, p-value = 1.49e-12 -## alternative hypothesis: true correlation is not equal to 0 -## 95 percent confidence interval: -## 0.6816422 0.8862036 -## sample estimates: -## cor -## 0.8068949 -\end{verbatim} -\end{kframe} -\end{knitrout} - -As described below for model fitting and $t$-test, \Rfunction{cor.test()} also accepts a \code{formula} plus \code{data} as arguments. - -\begin{playground} -Functions \Rfunction{cor()} and \Rfunction{cor.test()} return \Rlang objects, that when using \Rlang interactively get automatically ``printed'' on the screen. One should be aware that \Rfunction{print()} methods do not necessarily display all the information contained in an \Rlang object. This is almost always the case for complex objects like those returned by \Rlang functions implementing statistical tests. As with any \Rlang object we can save the result of an analysis into a variable. As described in section \ref{sec:calc:lists} on page \pageref{sec:calc:lists} for lists, we can peek into the structure of an object with method \Rfunction{str()}. We can use \Rfunction{class()} and \Rfunction{attributes()} to extract further information. Run the code in the chunk below to discover what is actually returned by \Rfunction{cor()}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a} \hlkwb{<-} \hlkwd{cor}\hlstd{(cars)} -\hlkwd{class}\hlstd{(a)} -\hlkwd{attributes}\hlstd{(a)} -\hlkwd{str}\hlstd{(a)} -\end{alltt} -\end{kframe} -\end{knitrout} - -Methods \Rfunction{class()}, \Rfunction{attributes()} and \Rfunction{str()} are very powerful tools that can be used when we are in doubt about the data contained in an object and/or how it is structured. Knowing the structure allows us to retrieve the data members directly from the object when predefined extractor methods are not available. -\end{playground} - -\subsection{Kendall's $\tau$ and Spearman's $\rho$} -\index{correlation!non-parametric} -\index{correlation!Kendall} -\index{correlation!Spearman} - -We use the same functions as for Pearson's $r$ but explicitly request the use of one of these methods by passing and argument. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{cor}\hlstd{(}\hlkwc{x} \hlstd{= cars}\hlopt{$}\hlstd{speed,} \hlkwc{y} \hlstd{= cars}\hlopt{$}\hlstd{dist,} \hlkwc{method} \hlstd{=} \hlstr{"kendall"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] 0.6689901 -\end{verbatim} -\begin{alltt} -\hlkwd{cor}\hlstd{(}\hlkwc{x} \hlstd{= cars}\hlopt{$}\hlstd{speed,} \hlkwc{y} \hlstd{= cars}\hlopt{$}\hlstd{dist,} \hlkwc{method} \hlstd{=} \hlstr{"spearman"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] 0.8303568 -\end{verbatim} -\end{kframe} -\end{knitrout} - -Function \Rfunction{cor.test()}, described above, also allows the choice of method with the same syntax as shown for \Rfunction{cor()}. - -\begin{playground} -Repeat the exercise in the playground immediately above, but now using non-parametric methods. How does the information stored in the returned \code{matrix} differ depending on the method, and how can we extract information about the method used for calculation of the correlation from the returned object. -\end{playground} -\index{correlation|)} - -\section[Model fitting in R]{Model fitting in \Rlang}\label{sec:stat:mf} -\index{models fitting|(} -The general approach to model fitting in \Rlang is to separate the actual fitting of a model from the inspection of the fitted model. A model fitting function minimally requires a description of the model to fit, as a model \code{formula} and a data frame or vectors with the data or observations to which to fit the model. These functions in \Rlang return a model fit object. This object contains the data, the model formula, call and the result of fitting the model. To inspect this model several methods are available. In the diagram we show a linear model fit, done with function \Rfunction{lm()} where the non-filled boxes represent what is in common with the fitting of other types of models, and the filled ones what is specific to \Rfunction{lm()}. - -\begin{center} -\begin{small} -\begin{tikzpicture}[node distance=1.4cm, scale=0.5] -\node (model) [tprocess] {\textsl{model $\to$ \code{formula}}}; -\node (data) [tprocess, below of=model] {\textsl{observations $\to$ \code{data}}}; -\node (fitfun) [tprocess, right of=model, yshift=-0.7cm, xshift=2.5cm, fill=blue!5] {\code{lm()}}; -\node (fm) [tprocess, color = black, right of=fitfun, xshift=1.5cm, fill=blue!5] {\textsl{\code{lm} object}}; -\node (summary) [tprocess, color = black, right of=fm, xshift=1.7cm] {\textsl{\code{summary()}}}; -\node (anova) [tprocess, color = black, below of=summary] {\textsl{\code{anova()}}}; -\node (plot) [tprocess, color = black, above of=summary] {\textsl{\code{plot()}}}; -\draw [arrow] (model) -- (fitfun); -\draw [arrow] (data) -- (fitfun); -\draw [arrow] (fitfun) -- (fm); -\draw [arrow] (fm) -- (plot); -\draw [arrow] (fm) -- (anova); -\draw [arrow] (fm) -- (summary); -\end{tikzpicture} -\end{small} -\end{center} - -Models are described using model formulas such as \verb|y ~ x| which we read as $y$ is explained by $x$. We use lhs (left-hand-side) and rhs (right-hand-side) to signify all terms to the left and right of the tilde (\verb|~|), respectively (\verb| ~ |). Model formulas are used in different contexts: fitting of models, plotting, and tests like $t$-test. The syntax of model formulas is consistent throughout base \Rlang and numerous independently developed packages. However, their use is not universal, and several packages extend the basic syntax to allow the description of specific types of models. As most things in \Rlang, model formulas are objects and can be stored in variables. See section \ref{sec:stat:formulas} on page \pageref{sec:stat:formulas} for a detailed discussion of models formulas. - -In addition to the methods shown in the diagram above, several other methods such as \Rfunction{coef()}, \Rfunction{residuals()}, \Rfunction{fitted()}, \Rfunction{predict()}, \Rfunction{AIC()}, \Rfunction{BIC()} are available for model fit objects. Most of the methods for inspecting model fit objects have implementations for different types of statistical models. Consequently, what is described in this chapter, also applies in many respects to the fitting of types of models not described here. - -\index{models fitting|)} - -\section{Fitting linear models}\label{sec:stat:LM} -\index{models!linear|see{linear models}} -\index{linear models|(} -\index{LM|see{linear models}} - -The \Rlang function \Rfunction{lm()} is used to fit linear models. If the explanatory variable is continuous, the fit is a regression. If the explanatory variable is a factor, the fit is an analysis of variance (ANOVA) in broad terms. However, there is another meaning of ANOVA, referring only to the tests of significance rather to an approach to model fitting. Consequently, rather confusingly, results for tests of significance for fitted parameter estimates can both in the case of regression and ANOVA, be presented in an ANOVA table. In this second, stricter meaning, ANOVA means a test of significance based on the ratios between pairs of variances. - -\begin{warningbox} -If you do not clearly remember the difference between numeric vectors and factors, or how they can be created, please, revisit chapter \ref{chap:R:as:calc} on page \pageref{chap:R:as:calc}. -\end{warningbox} - -\subsection{Regression} -%\index{linear regression} -\index{linear regression|see{linear models!linear regression}}\index{linear models!linear regression} -In \index{linear models!ANOVA table} the example immediately below, \code{speed} is a continuous numeric variable. In the ANOVA table calculated for the model fit, in this case a linear regression, we can see that the term for \code{speed} has only one degree of freedom (df). - -In the next example we continue using the stopping distance for \Rdata{cars} data set included in \Rpgrm. Please see the plot on page \pageref{chunk:plot:cars}. -\label{xmpl:fun:lm:fm1} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{data}\hlstd{(cars)} -\hlkwd{is.factor}\hlstd{(cars}\hlopt{$}\hlstd{speed)} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\begin{alltt} -\hlkwd{is.numeric}\hlstd{(cars}\hlopt{$}\hlstd{speed)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\end{kframe} -\end{knitrout} - -We then fit the simple linear model $y = \alpha \cdot 1 + \beta \cdot x$ where $y$ corresponds to stopping distance (\code{dist}) and $x$ to initial speed (\code{speed}). Such a model is formulated in \Rlang as \verb|dist ~ 1 + speed|. We save the fitted model as \code{fm1} (a mnemonic for fitted-model one).\label{chunk:lm:models1} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{fm1} \hlkwb{<-} \hlkwd{lm}\hlstd{(dist} \hlopt{~} \hlnum{1} \hlopt{+} \hlstd{speed,} \hlkwc{data}\hlstd{=cars)} -\hlkwd{class}\hlstd{(fm1)} -\end{alltt} -\begin{verbatim} -## [1] "lm" -\end{verbatim} -\end{kframe} -\end{knitrout} - -The next step is diagnosis of the fit. Are assumptions of the linear model procedure used reasonably close to being fulfilled? In \Rlang it is most common to use plots to this end. We show here only one of the four plots normally produced. This quantile vs.\ quantile plot allows us to assess how much the residuals deviate from being normally distributed. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{plot}\hlstd{(fm1,} \hlkwc{which} \hlstd{=} \hlnum{2}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.54\textwidth]{figure/pos-models-1a-1} - -} - - -\end{knitrout} - -In the case of a regression, calling \Rfunction{summary()} with the fitted model object as argument is most useful as it provides a table of coefficient estimates and their errors. Remember that as is the case for most \Rlang functions, the value returned by \Rfunction{summary()} is printed when we call this method at the \Rlang prompt. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{summary}\hlstd{(fm1)} -\end{alltt} -\begin{verbatim} -## -## Call: -## lm(formula = dist ~ 1 + speed, data = cars) -## -## Residuals: -## Min 1Q Median 3Q Max -## -29.069 -9.525 -2.272 9.215 43.201 -## -## Coefficients: -## Estimate Std. Error t value Pr(>|t|) -## (Intercept) -17.5791 6.7584 -2.601 0.0123 * -## speed 3.9324 0.4155 9.464 1.49e-12 *** -## --- -## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 -## -## Residual standard error: 15.38 on 48 degrees of freedom -## Multiple R-squared: 0.6511, Adjusted R-squared: 0.6438 -## F-statistic: 89.57 on 1 and 48 DF, p-value: 1.49e-12 -\end{verbatim} -\end{kframe} -\end{knitrout} - -Let's\index{linear models!summary table} look at the printout of the summary, section by section. Under ``Call:'' we find, \verb|dist ~ 1 + speed| or the specification of the model fitted, plus the data used. Under ``Residuals:'' we find the extremes, quartiles and median of the residuals, or deviations between observations and the fitted line. Under ``Coefficients:'' we find the estimates of the model parameters and their variation plus corresponding $t$-tests. At the end of the summary there is information on degrees of freedom and overall coefficient of determination ($R^2$). - -If we return to the model formulation, we can now replace $\alpha$ and $\beta$ by the estimates obtaining $y = -17.6 + 3.93 x$. Given the nature of the problem, we \emph{know based on first principles} that stopping distance must be zero when speed is zero. This suggests that we should not estimate the value of $\alpha$ but instead set $\alpha = 0$, or in other words, fit the model $y = \beta \cdot x$. - -However, in \Rlang models, the intercept is always implicitly included, so the model fitted above can be formulated as \verb|dist ~ speed|---i.e., a missing \code{+ 1} does not change the model. To exclude the intercept from the previous model, we need to specify it as \verb|dist ~ speed - 1| (or its equivalent \verb|dist ~ speed + 0|), resulting in the fitting of a straight line passing through the origin ($x = 0$, $y = 0$). - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{fm2} \hlkwb{<-} \hlkwd{lm}\hlstd{(dist} \hlopt{~} \hlstd{speed} \hlopt{-} \hlnum{1}\hlstd{,} \hlkwc{data} \hlstd{= cars)} -\hlkwd{summary}\hlstd{(fm2)} -\end{alltt} -\begin{verbatim} -## -## Call: -## lm(formula = dist ~ speed - 1, data = cars) -## -## Residuals: -## Min 1Q Median 3Q Max -## -26.183 -12.637 -5.455 4.590 50.181 -## -## Coefficients: -## Estimate Std. Error t value Pr(>|t|) -## speed 2.9091 0.1414 20.58 <2e-16 *** -## --- -## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 -## -## Residual standard error: 16.26 on 49 degrees of freedom -## Multiple R-squared: 0.8963, Adjusted R-squared: 0.8942 -## F-statistic: 423.5 on 1 and 49 DF, p-value: < 2.2e-16 -\end{verbatim} -\end{kframe} -\end{knitrout} - -Now there is no estimate for the intercept in the summary, only an estimate for the slope. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{plot}\hlstd{(fm2,} \hlkwc{which} \hlstd{=} \hlnum{1}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.54\textwidth]{figure/pos-models-2a-1} - -} - - -\end{knitrout} - -The equation of the second fitted model is $y = 2.91 x$, and from the residuals, it can be seen that it is inadequate, as the straight line does not follow the curvature of the relationship between \code{dist} and \code{speed}. - -\begin{playground} -You will now fit a second-degree polynomial\index{linear models!polynomial regression}\index{polynomial regression}, a different linear model: $y = \alpha \cdot 1 + \beta_1 \cdot x + \beta_2 \cdot x^2$. The function used is the same as for linear regression, \Rfunction{lm()}. We only need to alter the formulation of the model. The identity function \Rfunction{I()} is used to protect its argument from being interpreted as part of the model formula. Instead, its argument is evaluated beforehand and the result is used as the, in this case second, explanatory variable. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{fm3} \hlkwb{<-} \hlkwd{lm}\hlstd{(dist} \hlopt{~} \hlstd{speed} \hlopt{+} \hlkwd{I}\hlstd{(speed}\hlopt{^}\hlnum{2}\hlstd{),} \hlkwc{data} \hlstd{= cars)} -\hlkwd{plot}\hlstd{(fm3,} \hlkwc{which} \hlstd{=} \hlnum{3}\hlstd{)} -\hlkwd{summary}\hlstd{(fm3)} -\hlkwd{anova}\hlstd{(fm3)} -\end{alltt} -\end{kframe} -\end{knitrout} - -The ``same'' fit using an orthogonal polynomial can be specified using function \Rfunction{poly()}. Polynomials of different degrees can be obtained by supplying as the second argument to \Rfunction{poly()} the corresponding positive integer value. In this case, the different terms of the polynomial are bulked together in the summary. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{fm3a} \hlkwb{<-} \hlkwd{lm}\hlstd{(dist} \hlopt{~} \hlkwd{poly}\hlstd{(speed,} \hlnum{2}\hlstd{),} \hlkwc{data} \hlstd{= cars)} -\hlkwd{summary}\hlstd{(fm3a)} -\hlkwd{anova}\hlstd{(fm3a)} -\end{alltt} -\end{kframe} -\end{knitrout} - -We can also compare two model fits using \Rfunction{anova()}, to test whether one of the models describes the data better than the other. It is important in this case to take into consideration the nature of the difference between the model formulas, most importantly if they can be interpreted as nested---i.e., interpreted as a base model vs. the same model with additional terms. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{anova}\hlstd{(fm2, fm1)} -\end{alltt} -\end{kframe} -\end{knitrout} - -Three or more models can also be compared in a single call to \Rfunction{anova()}. However, be careful, as the order of the arguments matters. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{anova}\hlstd{(fm2, fm3, fm3a)} -\hlkwd{anova}\hlstd{(fm2, fm3a, fm3)} -\end{alltt} -\end{kframe} -\end{knitrout} - -We can use different criteria to choose the ``best'' model: significance based on $p$-values or information criteria (AIC, BIC). AIC (Akaike's ``An Information Criterion'') and BIC (``Bayesian Information Criterion'' = SBC, ``Schwarz's Bayesian criterion'') that penalize the resulting ``goodness'' based on the number of parameters in the fitted model. In the case of AIC and BIC, a smaller value is better, and values returned can be either positive or negative, in which case more negative is better. Estimates for both BIC and AIC are returned by \Rfunction{anova()}, and on their own by \Rfunction{BIC()} and \Rfunction{AIC()} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{BIC}\hlstd{(fm2, fm1, fm3, fm3a)} -\hlkwd{AIC}\hlstd{(fm2, fm1, fm3, fm3a)} -\end{alltt} -\end{kframe} -\end{knitrout} - -Once you have run the code in the chunks above, you will be able see that these three criteria do not necessarily agree on which is the ``best'' model. Find in the output $p$-value, BIC and AIC estimates, for the different models and conclude which model is favored by each of the three criteria. In addition you will notice that the two different formulations of the quadratic polynomial are equivalent. - -\end{playground} - -Additional methods give easy access to different components of fitted models: \Rfunction{vcov()} returns the variance-covariance matrix, \Rfunction{coef()} and its alias \Rfunction{coefficients()} return the estimates for the fitted model coefficients, \Rfunction{fitted()} and its alias \Rfunction{fitted.values()} extract the fitted values, and \Rfunction{resid()} and its alias \Rfunction{residuals()} the corresponding residuals (or deviations). Less frequently used accessors are \Rfunction{effects()}, \Rfunction{terms()}, \Rfunction{model.frame()} and \Rfunction{model.matrix()}. - -\begin{playground} -Familiarize yourself with these extraction and summary methods by reading their documentation and use them to explore \code{fm1} fitted above or model fits to other data of your interest. -\end{playground} - -\begin{explainbox} -The objects returned by model fitting functions are rather complex and contain the full information, including the data to which the model was fit to. The different functions described above, either extract parts of the object or do additional calculations and formatting based on them. There are different specializations of these methods which are called depending on the class of the model-fit object. (See section \ref{sec:methods} on page \pageref{sec:methods}.) - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{class}\hlstd{(fm1)} -\end{alltt} -\begin{verbatim} -## [1] "lm" -\end{verbatim} -\end{kframe} -\end{knitrout} - -We rarely need to manually explore the structure of these model-fit objects when using \Rlang interactively. In contrast, when including model fitting in scripts or package code, the need to efficiently extract specific members from them happens more frequently. As with any other \Rlang object we can use \Rfunction{str()} to explore them. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{str}\hlstd{(fm1,} \hlkwc{max.level} \hlstd{=} \hlnum{1}\hlstd{)} \hlcom{# not evaluated} -\end{alltt} -\end{kframe} -\end{knitrout} - -We frequently only look at the output of \Rfunction{anova()} as implicitly displayed by \code{print()}. However, both \Rfunction{anova()} and \Rfunction{summary()} return complex objects containing members with data not displayed by the matching \code{print()} methods. Understanding this is frequently useful, when we want to either display the results in a different format, or extract parts of them for use in additional tests or computations. Once again we use \Rfunction{str()} to look at the structure. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{str}\hlstd{(}\hlkwd{anova}\hlstd{(fm1))} -\end{alltt} -\begin{verbatim} -## Classes 'anova' and 'data.frame': 2 obs. of 5 variables: -## $ Df : int 1 48 -## $ Sum Sq : num 21185 11354 -## $ Mean Sq: num 21185 237 -## $ F value: num 89.6 NA -## $ Pr(>F) : num 1.49e-12 NA -## - attr(*, "heading")= chr [1:2] "Analysis of Variance Table\n" "Response: dist" -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{str}\hlstd{(}\hlkwd{summary}\hlstd{(fm1))} -\end{alltt} -\begin{verbatim} -## List of 11 -## $ call : language lm(formula = dist ~ 1 + speed, data = cars) -## $ terms :Classes 'terms', 'formula' language dist ~ 1 + speed -## .. ..- attr(*, "variables")= language list(dist, speed) -## .. ..- attr(*, "factors")= int [1:2, 1] 0 1 -## .. .. ..- attr(*, "dimnames")=List of 2 -## .. .. .. ..$ : chr [1:2] "dist" "speed" -## .. .. .. ..$ : chr "speed" -## .. ..- attr(*, "term.labels")= chr "speed" -## .. ..- attr(*, "order")= int 1 -## .. ..- attr(*, "intercept")= int 1 -## .. ..- attr(*, "response")= int 1 -## .. ..- attr(*, ".Environment")= -## .. ..- attr(*, "predvars")= language list(dist, speed) -## .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "numeric" -## .. .. ..- attr(*, "names")= chr [1:2] "dist" "speed" -## $ residuals : Named num [1:50] 3.85 11.85 -5.95 12.05 2.12 ... -## ..- attr(*, "names")= chr [1:50] "1" "2" "3" "4" ... -## $ coefficients : num [1:2, 1:4] -17.579 3.932 6.758 0.416 -2.601 ... -## ..- attr(*, "dimnames")=List of 2 -## .. ..$ : chr [1:2] "(Intercept)" "speed" -## .. ..$ : chr [1:4] "Estimate" "Std. Error" "t value" "Pr(>|t|)" -## $ aliased : Named logi [1:2] FALSE FALSE -## ..- attr(*, "names")= chr [1:2] "(Intercept)" "speed" -## $ sigma : num 15.4 -## $ df : int [1:3] 2 48 2 -## $ r.squared : num 0.651 -## $ adj.r.squared: num 0.644 -## $ fstatistic : Named num [1:3] 89.6 1 48 -## ..- attr(*, "names")= chr [1:3] "value" "numdf" "dendf" -## $ cov.unscaled : num [1:2, 1:2] 0.19311 -0.01124 -0.01124 0.00073 -## ..- attr(*, "dimnames")=List of 2 -## .. ..$ : chr [1:2] "(Intercept)" "speed" -## .. ..$ : chr [1:2] "(Intercept)" "speed" -## - attr(*, "class")= chr "summary.lm" -\end{verbatim} -\end{kframe} -\end{knitrout} - -Once we know the structure of the object and the names of members, we can simply extract them using the usual \Rlang rules for member extraction. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{summary}\hlstd{(fm1)}\hlopt{$}\hlstd{adj.r.squared} -\end{alltt} -\begin{verbatim} -## [1] 0.6438102 -\end{verbatim} -\end{kframe} -\end{knitrout} - -As an example we test if the slope from a linear regression fit deviates significantly from a constant value different from the usual zero. - -The examples above are for a null hypothesis of slope = 0 and next we show how to do the equivalent test with a null hypothesis of slope = 1. The procedure is applicable to any constant value as a null hypothesis for any of the fitted parameter estimates for hypotheses set \emph{a priori}. The examples use a two-sided test. In some cases, a single-sided test should be used (e.g., if its known a priori that deviation is because of physical reasons possible only in one direction away from the null hypothesis, or because only one direction of response is of interest). - -To estimate the \emph{t}-value we need an estimate for the parameter and an estimate of the standard error for this estimate and its degrees of freedom. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{est.slope.value} \hlkwb{<-} \hlkwd{summary}\hlstd{(fm1)}\hlopt{$}\hlstd{coef[}\hlstr{"speed"}\hlstd{,} \hlstr{"Estimate"}\hlstd{]} -\hlstd{est.slope.se} \hlkwb{<-} \hlkwd{summary}\hlstd{(fm1)}\hlopt{$}\hlstd{coef[}\hlstr{"speed"}\hlstd{,} \hlstr{"Std. Error"}\hlstd{]} -\hlstd{degrees.of.freedom} \hlkwb{<-} \hlkwd{summary}\hlstd{(fm1)}\hlopt{$}\hlstd{df[}\hlnum{2}\hlstd{]} -\end{alltt} -\end{kframe} -\end{knitrout} - -The \emph{t}-test is based on the difference between the value of the null hypothesis and the estimate. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{hyp.null} \hlkwb{<-} \hlnum{1} -\hlstd{t.value} \hlkwb{<-} \hlstd{(est.slope.value} \hlopt{-} \hlstd{hyp.null)} \hlopt{/} \hlstd{est.slope.se} -\hlstd{p.value} \hlkwb{<-} \hlkwd{dt}\hlstd{(t.value,} \hlkwc{df} \hlstd{= degrees.of.freedom)} -\end{alltt} -\end{kframe} -\end{knitrout} -\end{explainbox} - -\begin{advplayground} -Check that the procedure above agrees with the output of \code{summary()} when we set \code{hyp.null <- 0} instead of \code{hyp.null <- 1}. - -Modify the example so as to test whether the intercept is significantly larger than 5 feet, doing a one-sided test. -\end{advplayground} - -Method \Rfunction{predict()} uses the fitted model together with new data for the independent variables to compute predictions. As \Rfunction{predict()} accepts new data as input, it allows interpolation and extrapolation to values of the independent variables not present in the original data. In the case of fits of linear- and some other models, method \Rfunction{predict()} returns, in addition to the prediction, estimates of the confidence and/or prediction intervals. The new data must be stored in a data frame with columns using the same names for the explanatory variables as in the data used for the fit, a response variable is not needed and additional columns are ignored. (The explanatory variables in the new data can be either continuous or factors, but they must match in this respect those in the original data.) - -\begin{advplayground} -Predict using both \code{fm1} and \code{fm2} the distance required to stop cars moving at 0, 5, 10, 20, 30, and 40~mph. Study the help page for the predict method for linear models (using \code{help(predict.lm)}). Explore the difference between \code{"prediction"} and \code{"confidence"} bands: why are they so different? -\end{advplayground} - -\subsection{Analysis of variance, ANOVA}\label{sec:anova} -%\index{analysis of variance} -\index{analysis of variance|see{linear models!analysis of variance}}\index{linear models!analysis of variance} -\index{ANOVA|see{analysis of variance}} -We use here the \Rdata{InsectSprays} data set, giving insect counts in plots sprayed with different insecticides. In these data, \code{spray} is a factor with six levels.% -\label{xmpl:fun:lm:fm4} - -The call is exactly the same as the one for linear regression, only the names of the variables and data frame are different. What determines that this is an ANOVA is that \code{spray}, the explanatory variable, is a \code{factor}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{data}\hlstd{(InsectSprays)} -\hlkwd{is.numeric}\hlstd{(InsectSprays}\hlopt{$}\hlstd{spray)} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\begin{alltt} -\hlkwd{is.factor}\hlstd{(InsectSprays}\hlopt{$}\hlstd{spray)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{levels}\hlstd{(InsectSprays}\hlopt{$}\hlstd{spray)} -\end{alltt} -\begin{verbatim} -## [1] "A" "B" "C" "D" "E" "F" -\end{verbatim} -\end{kframe} -\end{knitrout} - -We fit the model in exactly the same way as for linear regression; the difference is that we use a factor as the explanatory variable. By using a factor instead of a numeric vector, a different model matrix is built from an equivalent formula. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{fm4} \hlkwb{<-} \hlkwd{lm}\hlstd{(count} \hlopt{~} \hlstd{spray,} \hlkwc{data} \hlstd{= InsectSprays)} -\end{alltt} -\end{kframe} -\end{knitrout} - -Diagnostic plots are obtained in the same way as for linear regression. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{plot}\hlstd{(fm4,} \hlkwc{which} \hlstd{=} \hlnum{3}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.54\textwidth]{figure/pos-model-6a-1} - -} - - -\end{knitrout} - -In ANOVA we are mainly interested in testing hypotheses, and \Rfunction{anova()} provides the most interesting output. Function \Rfunction{summary()} can be used to extract parameter estimates. The default contrasts and corresponding $p$-values returned by \Rfunction{summary()} test hypotheses that have little or no direct interest in an analysis of variance. Function \Rfunction{aov()} is a wrapper on \Rfunction{lm()} that returns an object that by default when printed displays the output of \Rfunction{anova()}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{anova}\hlstd{(fm4)} -\end{alltt} -\begin{verbatim} -## Analysis of Variance Table -## -## Response: count -## Df Sum Sq Mean Sq F value Pr(>F) -## spray 5 2668.8 533.77 34.702 < 2.2e-16 *** -## Residuals 66 1015.2 15.38 -## --- -## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{warningbox} -The defaults used for model fits and ANOVA calculations vary among programs. There exist different so-called ``types'' of sums of squares, usually called I, II, and III. In orthogonal designs the choice has no consequences, but differences can be important for unbalanced designs, even leading to different conclusions. \Rlang's default, type~I, is usually considered to suffer milder problems than type~III, the default used by \pgrmname{SPSS} and \pgrmname{SAS}. - -The contrasts used affect the estimates returned by \Rfunction{coef()} and \Rfunction{summary()} applied to an ANOVA model fit. The default used in \Rlang is different to that used in some other programs (even different than in \Slang). The most straightforward way of setting a different default for a whole series of model fits is by setting \Rlang option \code{contrasts}, which we here only print. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{options}\hlstd{(}\hlstr{"contrasts"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## $contrasts -## unordered ordered -## "contr.treatment" "contr.poly" -\end{verbatim} -\end{kframe} -\end{knitrout} - -It is also possible to select the contrast to be used in the call to \code{aov()} or \code{lm()}. The default, \code{contr.treatment} uses the first level of the factor (assumed to be a control) as reference for estimation of coefficients and their significance, while \code{contr.sum} uses as reference the mean of all levels, by using as condition that the sum of the coefficient estimates is equal to zero. Obviously this changes what the coefficients describe, and consequently also the estimated $p$-values. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{fm4trea} \hlkwb{<-} \hlkwd{lm}\hlstd{(count} \hlopt{~} \hlstd{spray,} \hlkwc{data} \hlstd{= InsectSprays,} - \hlkwc{contrasts} \hlstd{=} \hlkwd{list}\hlstd{(}\hlkwc{spray} \hlstd{= contr.treatment))} -\hlstd{fm4sum} \hlkwb{<-} \hlkwd{lm}\hlstd{(count} \hlopt{~} \hlstd{spray,} \hlkwc{data} \hlstd{= InsectSprays,} - \hlkwc{contrasts} \hlstd{=} \hlkwd{list}\hlstd{(}\hlkwc{spray} \hlstd{= contr.sum))} -\end{alltt} -\end{kframe} -\end{knitrout} - -Interpretation of any analysis has to take into account these differences and users should not be surprised if ANOVA yields different results in base \Rlang and \pgrmname{SPSS} or \pgrmname{SAS} given the different types of sums of squares used. The interpretation of ANOVA on designs that are not orthogonal will depend on which type is used, so the different results are not necessarily contradictory even when different. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{summary}\hlstd{(fm4trea)} -\end{alltt} -\begin{verbatim} -## -## Call: -## lm(formula = count ~ spray, data = InsectSprays, contrasts = list(spray = contr.treatment)) -## -## Residuals: -## Min 1Q Median 3Q Max -## -8.333 -1.958 -0.500 1.667 9.333 -## -## Coefficients: -## Estimate Std. Error t value Pr(>|t|) -## (Intercept) 14.5000 1.1322 12.807 < 2e-16 *** -## spray2 0.8333 1.6011 0.520 0.604 -## spray3 -12.4167 1.6011 -7.755 7.27e-11 *** -## spray4 -9.5833 1.6011 -5.985 9.82e-08 *** -## spray5 -11.0000 1.6011 -6.870 2.75e-09 *** -## spray6 2.1667 1.6011 1.353 0.181 -## --- -## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 -## -## Residual standard error: 3.922 on 66 degrees of freedom -## Multiple R-squared: 0.7244, Adjusted R-squared: 0.7036 -## F-statistic: 34.7 on 5 and 66 DF, p-value: < 2.2e-16 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{summary}\hlstd{(fm4sum)} -\end{alltt} -\begin{verbatim} -## -## Call: -## lm(formula = count ~ spray, data = InsectSprays, contrasts = list(spray = contr.sum)) -## -## Residuals: -## Min 1Q Median 3Q Max -## -8.333 -1.958 -0.500 1.667 9.333 -## -## Coefficients: -## Estimate Std. Error t value Pr(>|t|) -## (Intercept) 9.5000 0.4622 20.554 < 2e-16 *** -## spray1 5.0000 1.0335 4.838 8.22e-06 *** -## spray2 5.8333 1.0335 5.644 3.78e-07 *** -## spray3 -7.4167 1.0335 -7.176 7.87e-10 *** -## spray4 -4.5833 1.0335 -4.435 3.57e-05 *** -## spray5 -6.0000 1.0335 -5.805 2.00e-07 *** -## --- -## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 -## -## Residual standard error: 3.922 on 66 degrees of freedom -## Multiple R-squared: 0.7244, Adjusted R-squared: 0.7036 -## F-statistic: 34.7 on 5 and 66 DF, p-value: < 2.2e-16 -\end{verbatim} -\end{kframe} -\end{knitrout} - -In the case of contrasts, they always affect the parameter estimates independently of whether the experiment design is orthogonal or not. A different set of contrasts simply tests a different set of possible treatment effects. Contrasts, on the other hand, do not affect the table returned by \Rfunction{anova()} as this table does not deal with the effects of individual factor levels. -\end{warningbox} - -\subsection{Analysis of covariance, ANCOVA} -%\index{analysis of covariance} -\index{analysis of covariance|see{linear models!analysis of covariance}} -\index{linear models!analysis of covariance} -\index{ANCOVA|see{analysis of covariance}} - -When a linear model includes both explanatory factors and continuous explanatory variables, we may call it \emph{analysis of covariance} (ANCOVA). The formula syntax is the same for all linear models and, as mentioned in previous sections, what determines the type of analysis is the nature of the explanatory variable(s). As the formulation remains the same, no specific example is given. The main difficulty of ANCOVA is in the selection of the covariate and the interpretation of the results of the analysis \autocite[e.g.][]{Smith1957}. -\index{linear models|)} - -\section{Generalized linear models}\label{sec:stat:GLM} -\index{generalized linear models|(}\index{models!generalized linear|see{generalized linear models}} -\index{GLM|see{generalized linear models}} - -Linear models make the assumption of normally distributed residuals. Generalized linear models, fitted with function \Rfunction{glm()} are more flexible, and allow the assumed distribution to be selected as well as the link function. - -\begin{center} -\begin{small} -\begin{tikzpicture}[node distance=1.4cm, scale=0.5] -\node (model) [tprocess] {\textsl{model $\to$ \code{formula}}}; -\node (data) [tprocess, below of=model] {\textsl{observations $\to$ \code{data}}}; -\node (family) [tprocess, below of=data, fill=blue!5] {\textsl{distribution $\to$ \code{family}}}; -\node (fitfun) [tprocess, right of=data, xshift=2.5cm, fill=blue!5] {\code{glm()}}; -\node (fm) [tprocess, color = black, right of=fitfun, xshift=1.5cm, fill=blue!5] {\textsl{\code{glm} object}}; -\node (summary) [tprocess, color = black, right of=fm, xshift=1.7cm] {\textsl{\code{summary()}}}; -\node (anova) [tprocess, color = black, below of=summary] {\textsl{\code{anova()}}}; -\node (plot) [tprocess, color = black, above of=summary] {\textsl{\code{plot()}}}; -\draw [arrow] (model) -- (fitfun); -\draw [arrow] (data) -- (fitfun); -\draw [arrow] (family) -- (fitfun); -\draw [arrow] (fitfun) -- (fm); -\draw [arrow] (fm) -- (plot); -\draw [arrow] (fm) -- (anova); -\draw [arrow] (fm) -- (summary); -\end{tikzpicture} -\end{small} -\end{center} - -For the analysis of the \Rdata{InsectSpray} data set above (section \ref{sec:anova} on page \pageref{sec:anova}), the Normal distribution is not a good approximation as count data deviates from it. This was visible in the quantile--quantile plot above. - -For count data, GLMs provide a better alternative. In the example below we fit the same model as above, but we assume a quasi-Poisson distribution instead of the Normal. In addition to the model formula we need to pass an argument through \code{family} giving the error distribution to be assumed---the default for \code{family} is \code{gaussian} or Normal distribution. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{fm10} \hlkwb{<-} \hlkwd{glm}\hlstd{(count} \hlopt{~} \hlstd{spray,} \hlkwc{data} \hlstd{= InsectSprays,} \hlkwc{family} \hlstd{= quasipoisson)} -\hlkwd{anova}\hlstd{(fm10)} -\end{alltt} -\begin{verbatim} -## Analysis of Deviance Table -## -## Model: quasipoisson, link: log -## -## Response: count -## -## Terms added sequentially (first to last) -## -## -## Df Deviance Resid. Df Resid. Dev -## NULL 71 409.04 -## spray 5 310.71 66 98.33 -\end{verbatim} -\end{kframe} -\end{knitrout} - -The printout from the \Rfunction{anova()} method for GLM fits has some differences to that for LM fits. By default, no significance test is computed, as a knowledgeable choice is required depending on the characteristics of the model and data. We here use \code{"F"} as an argument to request an $F$-test. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{anova}\hlstd{(fm10,} \hlkwc{test} \hlstd{=} \hlstr{"F"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## Analysis of Deviance Table -## -## Model: quasipoisson, link: log -## -## Response: count -## -## Terms added sequentially (first to last) -## -## -## Df Deviance Resid. Df Resid. Dev F Pr(>F) -## NULL 71 409.04 -## spray 5 310.71 66 98.33 41.216 < 2.2e-16 *** -## --- -## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 -\end{verbatim} -\end{kframe} -\end{knitrout} - -Method \Rfunction{plot()} as for linear-model fits, produces diagnosis plots. We show as above the q-q-plot of residuals. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{plot}\hlstd{(fm10,} \hlkwc{which} \hlstd{=} \hlnum{3}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.54\textwidth]{figure/pos-model-11-1} - -} - - -\end{knitrout} - -We can extract different components similarly as described for linear models (see section \ref{sec:stat:LM} on page \pageref{sec:stat:LM}). - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{class}\hlstd{(fm10)} -\end{alltt} -\begin{verbatim} -## [1] "glm" "lm" -\end{verbatim} -\begin{alltt} -\hlkwd{summary}\hlstd{(fm10)} -\end{alltt} -\begin{verbatim} -## -## Call: -## glm(formula = count ~ spray, family = quasipoisson, data = InsectSprays) -## -## Deviance Residuals: -## Min 1Q Median 3Q Max -## -2.3852 -0.8876 -0.1482 0.6063 2.6922 -## -## Coefficients: -## Estimate Std. Error t value Pr(>|t|) -## (Intercept) 2.67415 0.09309 28.728 < 2e-16 *** -## sprayB 0.05588 0.12984 0.430 0.668 -## sprayC -1.94018 0.26263 -7.388 3.30e-10 *** -## sprayD -1.08152 0.18499 -5.847 1.70e-07 *** -## sprayE -1.42139 0.21110 -6.733 4.82e-09 *** -## sprayF 0.13926 0.12729 1.094 0.278 -## --- -## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 -## -## (Dispersion parameter for quasipoisson family taken to be 1.507713) -## -## Null deviance: 409.041 on 71 degrees of freedom -## Residual deviance: 98.329 on 66 degrees of freedom -## AIC: NA -## -## Number of Fisher Scoring iterations: 5 -\end{verbatim} -\begin{alltt} -\hlkwd{head}\hlstd{(}\hlkwd{residuals}\hlstd{(fm10))} -\end{alltt} -\begin{verbatim} -## 1 2 3 4 5 6 -## -1.2524891 -2.1919537 1.3650439 -0.1320721 -0.1320721 -0.6768988 -\end{verbatim} -\begin{alltt} -\hlkwd{head}\hlstd{(}\hlkwd{fitted}\hlstd{(fm10))} -\end{alltt} -\begin{verbatim} -## 1 2 3 4 5 6 -## 14.5 14.5 14.5 14.5 14.5 14.5 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{explainbox} -If we use \code{str()} or \code{names()} we can see that there are some differences with respect to linear model fits. The returned object is of a different class and contains some members not present in linear models. Two of these have to do with the iterative approximation method used, \code{iter} contains the number of iterations used and \code{converged} the success or not in finding a solution. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{names}\hlstd{(fm10)} -\end{alltt} -\begin{verbatim} -## [1] "coefficients" "residuals" "fitted.values" -## [4] "effects" "R" "rank" -## [7] "qr" "family" "linear.predictors" -## [10] "deviance" "aic" "null.deviance" -## [13] "iter" "weights" "prior.weights" -## [16] "df.residual" "df.null" "y" -## [19] "converged" "boundary" "model" -## [22] "call" "formula" "terms" -## [25] "data" "offset" "control" -## [28] "method" "contrasts" "xlevels" -\end{verbatim} -\begin{alltt} -\hlstd{fm10}\hlopt{$}\hlstd{converged} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlstd{fm10}\hlopt{$}\hlstd{iter} -\end{alltt} -\begin{verbatim} -## [1] 5 -\end{verbatim} -\end{kframe} -\end{knitrout} -\end{explainbox} - -\index{generalized linear models|)} - -\section{Non-linear regression}\label{sec:stat:NLS} -\index{non-linear models|(}% -\index{models!non-linear|see{non-linear models}}% -\index{NLS|see{non-linear models}} - -Function \Rfunction{nls()} is \Rlang's workhorse for fitting non-linear models. By \emph{non-linear} it is meant non-linear \emph{in the parameters} whose values are being estimated through fitting the model to data. This is different from the shape of the function when plotted---i.e., polynomials of any degree are linear models. In contrast, the Michaelis-Menten equation used in chemistry and the Gompertz equation used to describe growth are non-linear models in their parameters. - -While analytical algorithms exist for finding estimates for the parameters of linear models, in the case of non-linear models, the estimates are obtained by approximation. For analytical solutions, estimates can always be obtained, except in infrequent pathological cases where reliance on floating point numbers with limited resolution introduces rounding errors that ``break'' mathematical algorithms that are valid for real numbers. For approximations obtained through iteration, cases when the algorithm fails to \emph{converge} onto an answer are relatively common. Iterative algorithms attempt to improve an initial guess for the values of the parameters to be estimated, a guess frequently supplied by the user. In each iteration the estimate obtained in the previous iteration is used as the starting value, and this process is repeated one time after another. The expectation is that after a finite number of iterations the algorithm will converge into a solution that ``cannot'' be improved further. In real life we stop iteration when the improvement in the fit is smaller than a certain threshold, or when no convergence has been achieved after a certain maximum number of iterations. In the first case, we usually obtain good estimates; in the second case, we do not obtain usable estimates and need to look for different ways of obtaining them. When convergence fails, the first thing to do is to try different starting values and if this also fails, switch to a different computational algorithm. These steps usually help, but not always. Good starting values are in many cases crucial and in some cases ``guesses'' can be obtained using either graphical or analytical approximations. - -\begin{center} -\begin{small} -\begin{tikzpicture}[node distance=1.4cm, scale=0.5] -\node (model) [tprocess] {\textsl{model $\to$ \code{formula}}}; -\node (data) [tprocess, below of=model] {\textsl{observations $\to$ \code{data}}}; -\node (guess) [tprocess, below of=data, fill=blue!5] {\textsl{guesses $\to$ \code{start}}}; -\node (fitfun) [tprocess, right of=data, xshift=2.5cm, fill=blue!5] {\code{nls()}}; -\node (fm) [tprocess, color = black, right of=fitfun, xshift=1.5cm, fill=blue!5] {\textsl{\code{nls} object}}; -\node (summary) [tprocess, color = black, right of=fm, xshift=1.7cm] {\textsl{\code{summary()}}}; -\node (anova) [tprocess, color = black, below of=summary] {\textsl{\code{anova()}}}; -\node (plot) [tprocess, color = black, above of=summary] {\textsl{\code{plot()}}}; -\draw [arrow] (model) -- (fitfun); -\draw [arrow] (data) -- (fitfun); -\draw [arrow] (family) -- (fitfun); -\draw [arrow] (fitfun) -- (fm); -\draw [arrow] (fm) -- (plot); -\draw [arrow] (fm) -- (anova); -\draw [arrow] (fm) -- (summary); -\end{tikzpicture} -\end{small} -\end{center} - -For functions for which computational algorithms exist for ``guessing'' suitable starting values, \Rlang provides a mechanism for packaging the function to be fitted together with the function generating the starting values. These functions go by the name of \emph{self-starting functions} and relieve the user from the burden of guessing and supplying suitable starting values. The\index{self-starting functions} self-starting functions available in \Rlang are \code{SSasymp()}, \code{SSasympOff()}, \code{SSasympOrig()}, \code{SSbiexp()}, \code{SSfol()}, \code{SSfpl()}, \code{SSgompertz()}, \code{SSlogis()}, \code{SSmicmen()}, and \code{SSweibull()}. Function \code{selfStart()} can be used to define new ones. All these functions can be used when fitting models with \Rfunction{nls} or \Rfunction{nlme}. Please, check the respective help pages for details. - -In the case of \Rfunction{nls()} the specification of the model to be fitted differs from that used for linear models. We will use as an example fitting the Michaelis-Menten equation\index{Michaelis-Menten equation} describing reaction kinetics\index{chemical reaction kinetics} in biochemistry and chemistry. The mathematical formulation is given by: - -\begin{equation}\label{eq:michaelis:menten} -v = \frac{\mathrm{d} [P]}{\mathrm{d} t} = \frac{V_{\mathrm{max}} [S]}{K_{\mathrm{M}} + [S]} -\end{equation} - -The function takes its name from Michaelis and Menten's paper from 1913 \autocite{Johnson2011}. A self-starting function implementing the Michaelis-Menten equation is available in \Rlang under the name \Rfunction{SSmicmen()}\index{models!selfstart@{\texttt{selfStart}}}. We will use the \Rdata{Puromycin} data set. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{data}\hlstd{(Puromycin)} -\hlkwd{names}\hlstd{(Puromycin)} -\end{alltt} -\begin{verbatim} -## [1] "conc" "rate" "state" -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{fm21} \hlkwb{<-} \hlkwd{nls}\hlstd{(rate} \hlopt{~} \hlkwd{SSmicmen}\hlstd{(conc, Vm, K),} \hlkwc{data} \hlstd{= Puromycin,} - \hlkwc{subset} \hlstd{= state} \hlopt{==} \hlstr{"treated"}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - -We can extract different components similarly as described for linear models (see section \ref{sec:stat:LM} on page \pageref{sec:stat:LM}). - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{class}\hlstd{(fm21)} -\end{alltt} -\begin{verbatim} -## [1] "nls" -\end{verbatim} -\begin{alltt} -\hlkwd{summary}\hlstd{(fm21)} -\end{alltt} -\begin{verbatim} -## -## Formula: rate ~ SSmicmen(conc, Vm, K) -## -## Parameters: -## Estimate Std. Error t value Pr(>|t|) -## Vm 2.127e+02 6.947e+00 30.615 3.24e-11 *** -## K 6.412e-02 8.281e-03 7.743 1.57e-05 *** -## --- -## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 -## -## Residual standard error: 10.93 on 10 degrees of freedom -## -## Number of iterations to convergence: 0 -## Achieved convergence tolerance: 1.937e-06 -\end{verbatim} -\begin{alltt} -\hlkwd{residuals}\hlstd{(fm21)} -\end{alltt} -\begin{verbatim} -## [1] 25.4339970 -3.5660030 -5.8109606 4.1890394 -11.3616076 4.6383924 -## [7] -5.6846886 -12.6846886 0.1670799 10.1670799 6.0311724 -0.9688276 -## attr(,"label") -## [1] "Residuals" -\end{verbatim} -\begin{alltt} -\hlkwd{fitted}\hlstd{(fm21)} -\end{alltt} -\begin{verbatim} -## [1] 50.5660 50.5660 102.8110 102.8110 134.3616 134.3616 164.6847 164.6847 -## [9] 190.8329 190.8329 200.9688 200.9688 -## attr(,"label") -## [1] "Fitted values" -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{explainbox} -If we use \code{str()} or \code{names()} we can see that there are differences with respect to linear model and generalized model fits. The returned object is of class \code{nls} and contains some new members and lacks others. Two members are related to the iterative approximation method used, \code{control} containing nested members holding iteration settings, and \code{convInfo} (convergence information) with nested members with information on the outcome of the iterative algorithm. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{str}\hlstd{(fm21,} \hlkwc{max.level} \hlstd{=} \hlnum{1}\hlstd{)} -\end{alltt} -\begin{verbatim} -## List of 6 -## $ m :List of 16 -## ..- attr(*, "class")= chr "nlsModel" -## $ convInfo :List of 5 -## $ data : symbol Puromycin -## $ call : language nls(formula = rate ~ SSmicmen(conc, Vm, K), data = Puromycin, subset = state == "treated", algorithm = "defa| __truncated__ ... -## $ dataClasses: Named chr "numeric" -## ..- attr(*, "names")= chr "conc" -## $ control :List of 7 -## - attr(*, "class")= chr "nls" -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{fm21}\hlopt{$}\hlstd{convInfo} -\end{alltt} -\begin{verbatim} -## $isConv -## [1] TRUE -## -## $finIter -## [1] 0 -## -## $finTol -## [1] 1.937028e-06 -## -## $stopCode -## [1] 0 -## -## $stopMessage -## [1] "converged" -\end{verbatim} -\end{kframe} -\end{knitrout} -\end{explainbox} - -\index{non-linear models|)} - -\section{Model formulas}\label{sec:stat:formulas} -\index{model formulas|(} -\Rlang is consistent in how it treats various objects, to a extent that can be surprising to those familiar with other computer languages. Model formulas are objects of class \Rclass{formula} and mode \Rclass{call} and can be manipulated and stored similarly to objects of other classes. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{class}\hlstd{(y} \hlopt{~} \hlstd{x)} -\end{alltt} -\begin{verbatim} -## [1] "formula" -\end{verbatim} -\begin{alltt} -\hlkwd{mode}\hlstd{(y} \hlopt{~} \hlstd{x)} -\end{alltt} -\begin{verbatim} -## [1] "call" -\end{verbatim} -\end{kframe} -\end{knitrout} - -Like any other \Rlang object formulas can be assigned to variables and be members of lists and vectors. Consequently, the first linear model fit example from page \pageref{chunk:lm:models1} can be rewritten as follows. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.formula} \hlkwb{<-} \hlstd{dist} \hlopt{~} \hlnum{1} \hlopt{+} \hlstd{speed} -\hlstd{fm1} \hlkwb{<-} \hlkwd{lm}\hlstd{(my.formula,} \hlkwc{data}\hlstd{=cars)} -\end{alltt} -\end{kframe} -\end{knitrout} - -In some situations models lacking a lhs term (a term on the left hand side of \verb|~|) are used but at least one term on the must be present in the rhs. -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{class}\hlstd{(}\hlopt{~} \hlstd{x} \hlopt{+} \hlstd{y)} -\end{alltt} -\begin{verbatim} -## [1] "formula" -\end{verbatim} -\begin{alltt} -\hlkwd{mode}\hlstd{(}\hlopt{~} \hlstd{x} \hlopt{+} \hlstd{y)} -\end{alltt} -\begin{verbatim} -## [1] "call" -\end{verbatim} -\begin{alltt} -\hlkwd{is.empty.model}\hlstd{(}\hlopt{~} \hlstd{x} \hlopt{+} \hlstd{y)} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{explainbox} -In this box we highlight, for completeness, some idiosyncracies of \Rlang formulas that are seldom important in everyday use but can be important in advanced scripts. As with other classes, empty objects or vectors of length zero are valid. In the case of formulas there is an additional kind of emptiness, a formula describing a model with no explanatory terms on its rhs. - -An empty object of class \Rclass{formula} can be created with \code{formula()}. The last statement triggers an error as there is no model formula. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{class}\hlstd{(}\hlkwd{formula}\hlstd{())} -\end{alltt} -\begin{verbatim} -## [1] "formula" -\end{verbatim} -\begin{alltt} -\hlkwd{mode}\hlstd{(}\hlkwd{formula}\hlstd{())} -\end{alltt} -\begin{verbatim} -## [1] "list" -\end{verbatim} -\begin{alltt} -\hlcom{# is.empty.model(formula())} -\end{alltt} -\end{kframe} -\end{knitrout} - -An object of class \Rclass{formula} containing a formula object describing an empty model. While \verb|y ~ 1| describes a model with only an intercept (estimating $a = \bar{x}$), \verb|y ~ 0| or its equivalent \verb|y ~ -1|, describes an empty model that cannot be fitted to data. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{class}\hlstd{(y} \hlopt{~} \hlnum{0}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] "formula" -\end{verbatim} -\begin{alltt} -\hlkwd{mode}\hlstd{(y} \hlopt{~} \hlnum{0}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] "call" -\end{verbatim} -\begin{alltt} -\hlkwd{is.empty.model}\hlstd{(y} \hlopt{~} \hlnum{0}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{is.empty.model}\hlstd{(y} \hlopt{~} \hlnum{1}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\begin{alltt} -\hlkwd{is.empty.model}\hlstd{(y} \hlopt{~} \hlstd{x)} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\end{kframe} -\end{knitrout} - -The value returned by \Rmethod{length()} on a single formula is not always 1, the number of formulas in the vector of formulas, but instead the number of components in the formula. For longer and shorter vectors, it does return the number of member formulae. Because of this, it is better to store model formulas in objects of class \Rclass{list} than in vectors, as \Rfunction{length()} consistently returns the expected value on lists. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{length}\hlstd{(}\hlkwd{formula}\hlstd{())} -\end{alltt} -\begin{verbatim} -## [1] 0 -\end{verbatim} -\begin{alltt} -\hlkwd{length}\hlstd{(y} \hlopt{~} \hlnum{0}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] 3 -\end{verbatim} -\begin{alltt} -\hlkwd{length}\hlstd{(y} \hlopt{~} \hlnum{1}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] 3 -\end{verbatim} -\begin{alltt} -\hlkwd{length}\hlstd{(y} \hlopt{~} \hlstd{x)} -\end{alltt} -\begin{verbatim} -## [1] 3 -\end{verbatim} -\begin{alltt} -\hlkwd{length}\hlstd{(}\hlkwd{c}\hlstd{(y} \hlopt{~} \hlnum{1}\hlstd{, y} \hlopt{~} \hlstd{x))} -\end{alltt} -\begin{verbatim} -## [1] 2 -\end{verbatim} -\begin{alltt} -\hlkwd{length}\hlstd{(}\hlkwd{list}\hlstd{(y} \hlopt{~} \hlnum{1}\hlstd{))} -\end{alltt} -\begin{verbatim} -## [1] 1 -\end{verbatim} -\begin{alltt} -\hlkwd{length}\hlstd{(}\hlkwd{list}\hlstd{(y} \hlopt{~} \hlnum{1}\hlstd{, y} \hlopt{~} \hlstd{x))} -\end{alltt} -\begin{verbatim} -## [1] 2 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\end{explainbox} - -In the examples in previous sections we fitted simple models. More complex ones can be easily formulated using the same syntax. First of all, one can avoid use of operator \code{*} and explicitly define all individual main effects and interactions using operators \code{+} and \code{:}. The syntax implemented in base \Rlang allows grouping by means of parentheses, so it is also possible to exclude some interactions by combining the use of \code{*} and parentheses. - -The same symbols as for arithmetic operators are used for model formulas. Within a formula, symbols are interpreted according to formula syntax. When we mean an arithmetic operation that could be interpreted as being part of the model formula we need to ``protect'' it by means of the identity function \Rfunction{I()}. The next two examples define formulas for models with only one explanatory variable. With formulas like these, the explanatory variable will be computed on the fly when fitting the model to data. In the first case below we need to explicitly protect the addition of the two variables into their sum, because otherwise they would be interpreted as two separate explanatory variables in the model. In the second case, \Rfunction{log()} cannot be interpreted as part of the model formula, and consequently does not require additional protection, neither does the expression passed as its argument. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{y} \hlopt{~} \hlkwd{I}\hlstd{(x1} \hlopt{+} \hlstd{x2)} -\hlstd{y} \hlopt{~} \hlkwd{log}\hlstd{(x1} \hlopt{+} \hlstd{x2)} -\end{alltt} -\end{kframe} -\end{knitrout} - -\Rlang formula syntax allows alternative ways for specifying interaction terms. They allow ``abbreviated'' ways of entering formulas, which for complex experimental designs saves typing and can improve clarity. As seen above, operator \code{*} saves us from having to explicitly indicate all the interaction terms in a full factorial model. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{y} \hlopt{~} \hlstd{x1} \hlopt{+} \hlstd{x2} \hlopt{+} \hlstd{x3} \hlopt{+} \hlstd{x1}\hlopt{:}\hlstd{x2} \hlopt{+} \hlstd{x1}\hlopt{:}\hlstd{x3} \hlopt{+} \hlstd{x2}\hlopt{:}\hlstd{x3} \hlopt{+} \hlstd{x1}\hlopt{:}\hlstd{x2}\hlopt{:}\hlstd{x3} -\end{alltt} -\end{kframe} -\end{knitrout} - -Can be replaced by a concise equivalent. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{y} \hlopt{~} \hlstd{x1} \hlopt{*} \hlstd{x2} \hlopt{*} \hlstd{x3} -\end{alltt} -\end{kframe} -\end{knitrout} - -When the model to be specified does not include all possible interaction terms, we can combine the concise notation with parentheses. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{y} \hlopt{~} \hlstd{x1} \hlopt{+} \hlstd{(x2} \hlopt{*} \hlstd{x3)} -\hlstd{y} \hlopt{~} \hlstd{x1} \hlopt{+} \hlstd{x2} \hlopt{+} \hlstd{x3} \hlopt{+} \hlstd{x2}\hlopt{:}\hlstd{x3} -\end{alltt} -\end{kframe} -\end{knitrout} - -That the two model formulas above are equivalent, can be seen using \code{terms()} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{terms}\hlstd{(y} \hlopt{~} \hlstd{x1} \hlopt{+} \hlstd{(x2} \hlopt{*} \hlstd{x3))} -\end{alltt} -\begin{verbatim} -## y ~ x1 + (x2 * x3) -## attr(,"variables") -## list(y, x1, x2, x3) -## attr(,"factors") -## x1 x2 x3 x2:x3 -## y 0 0 0 0 -## x1 1 0 0 0 -## x2 0 1 0 1 -## x3 0 0 1 1 -## attr(,"term.labels") -## [1] "x1" "x2" "x3" "x2:x3" -## attr(,"order") -## [1] 1 1 1 2 -## attr(,"intercept") -## [1] 1 -## attr(,"response") -## [1] 1 -## attr(,".Environment") -## -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{y} \hlopt{~} \hlstd{x1} \hlopt{*} \hlstd{(x2} \hlopt{+} \hlstd{x3)} -\hlstd{y} \hlopt{~} \hlstd{x1} \hlopt{+} \hlstd{x2} \hlopt{+} \hlstd{x3} \hlopt{+} \hlstd{x1}\hlopt{:}\hlstd{x2} \hlopt{+} \hlstd{x1}\hlopt{:}\hlstd{x3} -\end{alltt} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{terms}\hlstd{(y} \hlopt{~} \hlstd{x1} \hlopt{*} \hlstd{(x2} \hlopt{+} \hlstd{x3))} -\end{alltt} -\begin{verbatim} -## y ~ x1 * (x2 + x3) -## attr(,"variables") -## list(y, x1, x2, x3) -## attr(,"factors") -## x1 x2 x3 x1:x2 x1:x3 -## y 0 0 0 0 0 -## x1 1 0 0 1 1 -## x2 0 1 0 1 0 -## x3 0 0 1 0 1 -## attr(,"term.labels") -## [1] "x1" "x2" "x3" "x1:x2" "x1:x3" -## attr(,"order") -## [1] 1 1 1 2 2 -## attr(,"intercept") -## [1] 1 -## attr(,"response") -## [1] 1 -## attr(,".Environment") -## -\end{verbatim} -\end{kframe} -\end{knitrout} - -The \code{\textasciicircum{}} operator provides a concise notation to limit the order of the interaction terms included in a formula. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{y} \hlopt{~} \hlstd{(x1} \hlopt{+} \hlstd{x2} \hlopt{+} \hlstd{x3)}\hlopt{^}\hlnum{2} -\hlstd{y} \hlopt{~} \hlstd{x1} \hlopt{+} \hlstd{x2} \hlopt{+} \hlstd{x3} \hlopt{+} \hlstd{x1}\hlopt{:}\hlstd{x2} \hlopt{+} \hlstd{x1}\hlopt{:}\hlstd{x3} \hlopt{+} \hlstd{x2}\hlopt{:}\hlstd{x3} -\end{alltt} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{terms}\hlstd{(y} \hlopt{~} \hlstd{(x1} \hlopt{+} \hlstd{x2} \hlopt{+} \hlstd{x3)}\hlopt{^}\hlnum{2}\hlstd{)} -\end{alltt} -\begin{verbatim} -## y ~ (x1 + x2 + x3)^2 -## attr(,"variables") -## list(y, x1, x2, x3) -## attr(,"factors") -## x1 x2 x3 x1:x2 x1:x3 x2:x3 -## y 0 0 0 0 0 0 -## x1 1 0 0 1 1 0 -## x2 0 1 0 1 0 1 -## x3 0 0 1 0 1 1 -## attr(,"term.labels") -## [1] "x1" "x2" "x3" "x1:x2" "x1:x3" "x2:x3" -## attr(,"order") -## [1] 1 1 1 2 2 2 -## attr(,"intercept") -## [1] 1 -## attr(,"response") -## [1] 1 -## attr(,".Environment") -## -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{advplayground} -For operator \code{\textasciicircum{}} to behave as expected, its first operand should be a formula with no interactions! Compare the result of expanding these two formulas with \Rfunction{terms()}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{y} \hlopt{~} \hlstd{(x1} \hlopt{+} \hlstd{x2} \hlopt{+} \hlstd{x3)}\hlopt{^}\hlnum{2} -\hlstd{y} \hlopt{~} \hlstd{(x1} \hlopt{*} \hlstd{x2} \hlopt{*} \hlstd{x3)}\hlopt{^}\hlnum{2} -\end{alltt} -\end{kframe} -\end{knitrout} - -\end{advplayground} - -Operator \code{\%in\%} can also be used as a shortcut for including only some of all the possible interaction terms in a formula. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{y} \hlopt{~} \hlstd{x1} \hlopt{+} \hlstd{x2} \hlopt{+} \hlstd{x1} \hlopt{%in%} \hlstd{x2} -\end{alltt} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{terms}\hlstd{(y} \hlopt{~} \hlstd{x1} \hlopt{+} \hlstd{x2} \hlopt{+} \hlstd{x1} \hlopt{%in%} \hlstd{x2)} -\end{alltt} -\begin{verbatim} -## y ~ x1 + x2 + x1 %in% x2 -## attr(,"variables") -## list(y, x1, x2) -## attr(,"factors") -## x1 x2 x1:x2 -## y 0 0 0 -## x1 1 0 1 -## x2 0 1 1 -## attr(,"term.labels") -## [1] "x1" "x2" "x1:x2" -## attr(,"order") -## [1] 1 1 2 -## attr(,"intercept") -## [1] 1 -## attr(,"response") -## [1] 1 -## attr(,".Environment") -## -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{playground} -Execute the examples below using the \Rdata{npk} data set from \Rlang. They demonstrate the use of different model formulas in ANOVA\index{analysis of variance!model formula}. Use these examples plus your own variations on the same theme to build your understanding of the syntax of model formulas. Based on the terms displayed in the ANOVA tables, first work out what models are being fitted in each case. In a second step, write each of the models using a mathematical formulation. Finally, think how model choice may affect the conclusions from an analysis of variance. - -% runs fine but crashes LaTeX -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{data}\hlstd{(npk)} -\hlkwd{anova}\hlstd{(}\hlkwd{lm}\hlstd{(yield} \hlopt{~} \hlstd{N} \hlopt{*} \hlstd{P} \hlopt{*} \hlstd{K,} \hlkwc{data} \hlstd{= npk))} -\hlkwd{anova}\hlstd{(}\hlkwd{lm}\hlstd{(yield} \hlopt{~} \hlstd{(N} \hlopt{+} \hlstd{P} \hlopt{+} \hlstd{K)}\hlopt{^}\hlnum{2}\hlstd{,} \hlkwc{data} \hlstd{= npk))} -\hlkwd{anova}\hlstd{(}\hlkwd{lm}\hlstd{(yield} \hlopt{~} \hlstd{N} \hlopt{+} \hlstd{P} \hlopt{+} \hlstd{K} \hlopt{+} \hlstd{P} \hlopt{%in%} \hlstd{N} \hlopt{+} \hlstd{K} \hlopt{%in%} \hlstd{N,} \hlkwc{data} \hlstd{= npk))} -\hlkwd{anova}\hlstd{(}\hlkwd{lm}\hlstd{(yield} \hlopt{~} \hlstd{N} \hlopt{+} \hlstd{P} \hlopt{+} \hlstd{K} \hlopt{+} \hlstd{N} \hlopt{%in%} \hlstd{P} \hlopt{+} \hlstd{K} \hlopt{%in%} \hlstd{P,} \hlkwc{data} \hlstd{= npk))} -\end{alltt} -\end{kframe} -\end{knitrout} - -\end{playground} - -Nesting of factors in experiments using hierarchical designs such as split-plots or repeated measures, results in the need to compute additional error terms, differing in their degrees of freedom. In such a design, different effects are tested based on different error terms. Whether nesting exists or not is a property of an experiment. It is decided as part of the design of the experiment based on the mechanics of treatment assignment to experimental units. In base-\Rlang model-formulas, nesting needs to be described by explicit definition of error terms by means of \code{Error()} within the formula. Nowadays, linear mixed-effects (LME) models are most frequently used with data from experiments and surveys using hierarchical designs, as implemented in packages \pkgname{nlme} and \pkgname{lme4}. These two packages use their own extensions to the model formula syntax to describe nesting and distinguishing fixed and random effects. Additive models have required other extensions, most of them specific to individual packages. These extensions fall outside the scope of this book. - -\begin{warningbox} - \Rlang will accept any syntactically correct model formula, even when the results of the fit are not interpretable. It is \emph{the responsibility of the user to ensure that models are meaningful}. The most common, and dangerous, mistake is specifying for factorial experiments, models tht are missing lower-order interactions. - - Fitting models like those below to data from an experiment based on a three-way factorial design should be avoided. In both cases simpler terms are missing, while higher-order interaction(s) that include the missing term are included in the model. Such models are not interpretable, as the variation from the missing term(s) ends being ``disguised'' within the remaining terms, distorting their apparent significance and parameter estimates. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{y} \hlopt{~} \hlstd{A} \hlopt{+} \hlstd{B} \hlopt{+} \hlstd{A}\hlopt{:}\hlstd{B} \hlopt{+} \hlstd{A}\hlopt{:}\hlstd{C} \hlopt{+} \hlstd{B}\hlopt{:}\hlstd{C} -\hlstd{y} \hlopt{~} \hlstd{A} \hlopt{+} \hlstd{B} \hlopt{+} \hlstd{C} \hlopt{+} \hlstd{A}\hlopt{:}\hlstd{B} \hlopt{+} \hlstd{A}\hlopt{:}\hlstd{C} \hlopt{+} \hlstd{A}\hlopt{:}\hlstd{B}\hlopt{:}\hlstd{C} -\end{alltt} -\end{kframe} -\end{knitrout} - - In contrast to those above, the models below are interpretable, even if not ``full'' models (not including all possible interactions). - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{y} \hlopt{~} \hlstd{A} \hlopt{+} \hlstd{B} \hlopt{+} \hlstd{C} \hlopt{+} \hlstd{A}\hlopt{:}\hlstd{B} \hlopt{+} \hlstd{A}\hlopt{:}\hlstd{C} \hlopt{+} \hlstd{B}\hlopt{:}\hlstd{C} -\hlstd{y} \hlopt{~} \hlstd{(A} \hlopt{+} \hlstd{B} \hlopt{+} \hlstd{C)}\hlopt{^}\hlnum{2} -\hlstd{y} \hlopt{~} \hlstd{A} \hlopt{+} \hlstd{B} \hlopt{+} \hlstd{C} \hlopt{+} \hlstd{B}\hlopt{:}\hlstd{C} -\hlstd{y} \hlopt{~} \hlstd{A} \hlopt{+} \hlstd{B} \hlopt{*} \hlstd{C} -\end{alltt} -\end{kframe} -\end{knitrout} - -\end{warningbox} - -As seen in chapter \ref{chap:R:data}, almost everything in the \Rlang language is an object that can be stored and manipulated. Model formulas are also objects, objects of class \Rclass{"formula"}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{class}\hlstd{(y} \hlopt{~} \hlstd{x)} -\end{alltt} -\begin{verbatim} -## [1] "formula" -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a} \hlkwb{<-} \hlstd{y} \hlopt{~} \hlstd{x} -\hlkwd{class}\hlstd{(a)} -\end{alltt} -\begin{verbatim} -## [1] "formula" -\end{verbatim} -\end{kframe} -\end{knitrout} - -There is no method \code{is.formula()} in base \Rlang, but we can easily test the class of an object with \Rfunction{inherits()}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{inherits}\hlstd{(a,} \hlstr{"formula"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{explainbox} -\index{model formulas!manipulation}\textbf{Manipulation of model formulas.} Because this is a book about the \Rlang language, it is pertinent to describe how formulas can be manipulated. Formulas, as any other \Rlang objects, can be saved in variables including lists. Why is this useful? For example, if we want to fit several different models to the same data, we can write a \code{for} loop that walks through a list of model formulas. Or we can write a function that accepts one or more formulas as arguments. - -The use of \code{for} \emph{loops} for iteration over a list of model formulas is described in section \ref{sec:R:faces:of:loops} on page \pageref{sec:R:faces:of:loops}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.data} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{10}\hlstd{,} \hlkwc{y} \hlstd{= (}\hlnum{1}\hlopt{:}\hlnum{10}\hlstd{)} \hlopt{/} \hlnum{2} \hlopt{+} \hlkwd{rnorm}\hlstd{(}\hlnum{10}\hlstd{))} -\hlstd{anovas} \hlkwb{<-} \hlkwd{list}\hlstd{()} -\hlstd{formulas} \hlkwb{<-} \hlkwd{list}\hlstd{(}\hlkwc{a} \hlstd{= y} \hlopt{~} \hlstd{x} \hlopt{-} \hlnum{1}\hlstd{,} \hlkwc{b} \hlstd{= y} \hlopt{~} \hlstd{x,} \hlkwc{c} \hlstd{= y} \hlopt{~} \hlstd{x} \hlopt{+} \hlstd{x}\hlopt{^}\hlnum{2}\hlstd{)} -\hlkwa{for} \hlstd{(formula} \hlkwa{in} \hlstd{formulas) \{} - \hlstd{anovas} \hlkwb{<-} \hlkwd{c}\hlstd{(anovas,} \hlkwd{list}\hlstd{(}\hlkwd{lm}\hlstd{(formula,} \hlkwc{data} \hlstd{= my.data)))} - \hlstd{\}} -\hlkwd{str}\hlstd{(anovas,} \hlkwc{max.level} \hlstd{=} \hlnum{1}\hlstd{)} -\end{alltt} -\begin{verbatim} -## List of 3 -## $ :List of 12 -## ..- attr(*, "class")= chr "lm" -## $ :List of 12 -## ..- attr(*, "class")= chr "lm" -## $ :List of 12 -## ..- attr(*, "class")= chr "lm" -\end{verbatim} -\end{kframe} -\end{knitrout} - -As could be expected, a conversion constructor is available with name \Rfunction{as.formula()}. It is useful when formulas are input interactively by the user or read from text files. With \Rfunction{as.formula()} we can convert a character string into a formula. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.string} \hlkwb{<-} \hlstr{"y ~ x"} -\hlkwd{lm}\hlstd{(}\hlkwd{as.formula}\hlstd{(my.string),} \hlkwc{data} \hlstd{= my.data)} -\end{alltt} -\begin{verbatim} -## -## Call: -## lm(formula = as.formula(my.string), data = my.data) -## -## Coefficients: -## (Intercept) x -## 1.4059 0.2839 -\end{verbatim} -\end{kframe} -\end{knitrout} - -As there are many functions for the manipulation of character strings available in base \Rlang and through extension packages, it is straightforward to build model formulas programmatically as strings. We can use functions like \code{paste()} to assemble a formula as text, and then use \Rfunction{as.formula()} to convert it to an object of class \code{formula}, usable for fitting a model. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.string} \hlkwb{<-} \hlkwd{paste}\hlstd{(}\hlstr{"y"}\hlstd{,} \hlstr{"x"}\hlstd{,} \hlkwc{sep} \hlstd{=} \hlstr{"~"}\hlstd{)} -\hlkwd{lm}\hlstd{(}\hlkwd{as.formula}\hlstd{(my.string),} \hlkwc{data} \hlstd{= my.data)} -\end{alltt} -\begin{verbatim} -## -## Call: -## lm(formula = as.formula(my.string), data = my.data) -## -## Coefficients: -## (Intercept) x -## 1.4059 0.2839 -\end{verbatim} -\end{kframe} -\end{knitrout} - -For the reverse operation of converting a formula into a string, we have available methods \code{as.character()} and \code{format()}. The first of these methods returns a character vector containing the components of the formula as individual strings, while \code{format()} returns a single character string with the formula formatted for printing. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{formatted.string} \hlkwb{<-} \hlkwd{format}\hlstd{(y} \hlopt{~} \hlstd{x)} -\hlstd{formatted.string} -\end{alltt} -\begin{verbatim} -## [1] "y ~ x" -\end{verbatim} -\begin{alltt} -\hlkwd{as.formula}\hlstd{(formatted.string)} -\end{alltt} -\begin{verbatim} -## y ~ x -\end{verbatim} -\end{kframe} -\end{knitrout} - -It is also possible to \emph{edit} formula objects with method \Rfunction{update()}. In the replacement formula, a dot can replace either the left-hand side (lhs) or the right-hand side (rhs) of the existing formula in the replacement formula. We can also remove terms as can be seen below. In some cases the dot corresponding to the lhs can be omitted, but including it makes the syntax clearer. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.formula} \hlkwb{<-} \hlstd{y} \hlopt{~} \hlstd{x1} \hlopt{+} \hlstd{x2} -\hlkwd{update}\hlstd{(my.formula, .} \hlopt{~} \hlstd{.} \hlopt{+} \hlstd{x3)} -\end{alltt} -\begin{verbatim} -## y ~ x1 + x2 + x3 -\end{verbatim} -\begin{alltt} -\hlkwd{update}\hlstd{(my.formula, .} \hlopt{~} \hlstd{.} \hlopt{-} \hlstd{x1)} -\end{alltt} -\begin{verbatim} -## y ~ x2 -\end{verbatim} -\begin{alltt} -\hlkwd{update}\hlstd{(my.formula, .} \hlopt{~} \hlstd{x3)} -\end{alltt} -\begin{verbatim} -## y ~ x3 -\end{verbatim} -\begin{alltt} -\hlkwd{update}\hlstd{(my.formula, z} \hlopt{~} \hlstd{.)} -\end{alltt} -\begin{verbatim} -## z ~ x1 + x2 -\end{verbatim} -\begin{alltt} -\hlkwd{update}\hlstd{(my.formula, .} \hlopt{+} \hlstd{z} \hlopt{~} \hlstd{.)} -\end{alltt} -\begin{verbatim} -## y + z ~ x1 + x2 -\end{verbatim} -\end{kframe} -\end{knitrout} - -R provides high-level functions for model selection. Consequently many \Rlang users will rarely need to edit model formulas in their scripts. For example, step-wise model selection is possible with \Rlang method \code{step()}. - -A matrix of dummy coefficients can be derived from a model formula, a type of contrast, and the data for the explanatory variables. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{treats.df} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{A} \hlstd{=} \hlkwd{rep}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"yes"}\hlstd{,} \hlstr{"no"}\hlstd{),} \hlkwd{c}\hlstd{(}\hlnum{4}\hlstd{,} \hlnum{4}\hlstd{)),} - \hlkwc{B} \hlstd{=} \hlkwd{rep}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"white"}\hlstd{,} \hlstr{"black"}\hlstd{),} \hlnum{4}\hlstd{))} -\hlstd{treats.df} -\end{alltt} -\begin{verbatim} -## A B -## 1 yes white -## 2 yes black -## 3 yes white -## 4 yes black -## 5 no white -## 6 no black -## 7 no white -## 8 no black -\end{verbatim} -\end{kframe} -\end{knitrout} - -The default contrasts types currently in use. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{options}\hlstd{(}\hlstr{"contrasts"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## $contrasts -## unordered ordered -## "contr.treatment" "contr.poly" -\end{verbatim} -\end{kframe} -\end{knitrout} - -A model matrix for a model for a two-way factorial design with no interaction term: - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{model.matrix}\hlstd{(}\hlopt{~} \hlstd{A} \hlopt{+} \hlstd{B, treats.df)} -\end{alltt} -\begin{verbatim} -## (Intercept) Ayes Bwhite -## 1 1 1 1 -## 2 1 1 0 -## 3 1 1 1 -## 4 1 1 0 -## 5 1 0 1 -## 6 1 0 0 -## 7 1 0 1 -## 8 1 0 0 -## attr(,"assign") -## [1] 0 1 2 -## attr(,"contrasts") -## attr(,"contrasts")$A -## [1] "contr.treatment" -## -## attr(,"contrasts")$B -## [1] "contr.treatment" -\end{verbatim} -\end{kframe} -\end{knitrout} - -A model matrix for a model for a two-way factorial design with interaction term: - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{model.matrix}\hlstd{(}\hlopt{~} \hlstd{A} \hlopt{*} \hlstd{B, treats.df)} -\end{alltt} -\begin{verbatim} -## (Intercept) Ayes Bwhite Ayes:Bwhite -## 1 1 1 1 1 -## 2 1 1 0 0 -## 3 1 1 1 1 -## 4 1 1 0 0 -## 5 1 0 1 0 -## 6 1 0 0 0 -## 7 1 0 1 0 -## 8 1 0 0 0 -## attr(,"assign") -## [1] 0 1 2 3 -## attr(,"contrasts") -## attr(,"contrasts")$A -## [1] "contr.treatment" -## -## attr(,"contrasts")$B -## [1] "contr.treatment" -\end{verbatim} -\end{kframe} -\end{knitrout} - -\end{explainbox} -\index{model formulas|)} - -\section{Time series}\label{sec:stat:time:series} -\index{time series|(} -Longitudinal data consist of repeated measurements, usually done over time, on the same experimental units. Longitudinal data, when replicated on several experimental units at each time point, are called repeated measurements, while when not replicated, they are called time series. Base \Rlang provides special support for the analysis of time series data, while repeated measurements can be analyzed with nested linear models, mixed-effects models, and additive models. - -Time series data are data collected in such a way that there is only one observation, possibly of multiple variables, available at each point in time. This brief section introduces only the most basic aspects of time-series analysis. In most cases time steps are of uniform duration and occur regularly, which simplifies data handling and storage. \Rlang not only provides methods for the analysis and manipulation of time-series, but also a specialized class for their storage, \Rclass{"ts"}. Regular time steps allow more compact storage---e.g., a \code{ts} object does not need to store time values for each observation but instead a combination of two of start time, step size and end time. - -We start by creating a time series from a numeric vector. By now, you surely guessed that you need to use a constructor called \Rfunction{ts()} or a conversion constructor called \Rfunction{as.ts()} and that you can look up the arguments they accept by reading the corresponding help pages. - -For example for a time series of monthly values we could use: - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.ts} \hlkwb{<-} \hlkwd{ts}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{10}\hlstd{,} \hlkwc{start} \hlstd{=} \hlnum{2019}\hlstd{,} \hlkwc{deltat} \hlstd{=} \hlnum{1}\hlopt{/}\hlnum{12}\hlstd{)} -\hlkwd{class}\hlstd{(my.ts)} -\end{alltt} -\begin{verbatim} -## [1] "ts" -\end{verbatim} -\begin{alltt} -\hlkwd{str}\hlstd{(my.ts)} -\end{alltt} -\begin{verbatim} -## Time-Series [1:10] from 2019 to 2020: 1 2 3 4 5 6 7 8 9 10 -\end{verbatim} -\end{kframe} -\end{knitrout} - -We next use the data set \Rdata{austres} with data on the number of Australian residents and included in \Rlang. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{class}\hlstd{(austres)} -\end{alltt} -\begin{verbatim} -## [1] "ts" -\end{verbatim} -\begin{alltt} -\hlkwd{is.ts}\hlstd{(austres)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\end{kframe} -\end{knitrout} - - - -Time series \Rdata{austres} is dominated by the increasing trend. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{plot}\hlstd{(austres)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-ts-02-1} - -} - - -\end{knitrout} - -A different example, using data set \Rdata{nottem} containing meteorological data for Nottingham, shows a clear cyclic component. The annual cycle of mean air temperatures (in degrees Fahrenheit) is clear when data are plotted. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{data}\hlstd{(nottem)} -\hlkwd{is.ts}\hlstd{(nottem)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{plot}\hlstd{(nottem)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-ts-03-1} - -} - - -\end{knitrout} - -In\index{time series!decomposition} the next two code chunks, two different approaches to time series decomposition are used. In the first one we use a moving average to capture the trend, while in the second approach we use Loess (a smooth curve fitted by local weighted regression) for the decomposition, a method for which the acronym STL (Seasonal and Trend decomposition using Loess) is used.\qRfunction{decompose()}\qRfunction{stl()} Before decomposing the time-series we reexpress the temperatures in degrees Celsius. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{nottem.celcius} \hlkwb{<-} \hlstd{(nottem} \hlopt{-} \hlnum{32}\hlstd{)} \hlopt{*} \hlnum{5}\hlopt{/}\hlnum{9} -\end{alltt} -\end{kframe} -\end{knitrout} - -We set the seasonal window to 7 months, the minimum accepted. - - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{nottem.stl} \hlkwb{<-} \hlkwd{stl}\hlstd{(nottem.celcius,} \hlkwc{s.window} \hlstd{=} \hlnum{7}\hlstd{)} -\hlkwd{plot}\hlstd{(nottem.stl)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-ts-05-1} - -} - - -\end{knitrout} - -\begin{advplayground} -It is interesting to explore the class and structure of the object returned by \Rfunction{stl()}, as we may want to extract components. Run the statements below to find out, and then plot individual components from the time series decomposition. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{class}\hlstd{(nottem.stl)} -\hlkwd{str}\hlstd{(nottem.stl)} -\end{alltt} -\end{kframe} -\end{knitrout} -\end{advplayground} - -\index{time series|)} - -\section{Multivariate statistics}\label{sec:stat:MV} -\index{multivariate methods|(} - -\subsection{Multivariate analysis of variance} -\index{multivariate analysis of variance|(} -\index{MANOVA|see{multivariate analysis of variance}} -Multivariate methods take into account several response variables simultaneously, as part of a single analysis. In practice it is usual to use contributed packages for multivariate data analysis in \Rlang, except for simple cases. We will look first at \emph{multivariate} ANOVA or MANOVA. In the same way as \Rfunction{aov()} is a wrapper that uses internally \Rfunction{lm()}, \Rfunction{manova()} is a wrapper that uses internally \Rfunction{aov()}. - -Multivariate model formulas in base \Rlang require the use of column binding (\code{cbind()}) on the left-hand side (lhs) of the model formula. For the next examples we use the well-known \Rdata{iris} data set, containing size measurements for flowers of two species of \emph{Iris}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{data}\hlstd{(iris)} -\hlstd{mmf1} \hlkwb{<-} \hlkwd{lm}\hlstd{(}\hlkwd{cbind}\hlstd{(Petal.Length, Petal.Width)} \hlopt{~} \hlstd{Species,} \hlkwc{data} \hlstd{= iris)} -\hlkwd{anova}\hlstd{(mmf1)} -\end{alltt} -\begin{verbatim} -## Analysis of Variance Table -## -## Df Pillai approx F num Df den Df Pr(>F) -## (Intercept) 1 0.98786 5939.2 2 146 < 2.2e-16 *** -## Species 2 1.04645 80.7 4 294 < 2.2e-16 *** -## Residuals 147 -## --- -## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 -\end{verbatim} -\begin{alltt} -\hlkwd{summary}\hlstd{(mmf1)} -\end{alltt} -\begin{verbatim} -## Response Petal.Length : -## -## Call: -## lm(formula = Petal.Length ~ Species, data = iris) -## -## Residuals: -## Min 1Q Median 3Q Max -## -1.260 -0.258 0.038 0.240 1.348 -## -## Coefficients: -## Estimate Std. Error t value Pr(>|t|) -## (Intercept) 1.46200 0.06086 24.02 <2e-16 *** -## Speciesversicolor 2.79800 0.08607 32.51 <2e-16 *** -## Speciesvirginica 4.09000 0.08607 47.52 <2e-16 *** -## --- -## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 -## -## Residual standard error: 0.4303 on 147 degrees of freedom -## Multiple R-squared: 0.9414, Adjusted R-squared: 0.9406 -## F-statistic: 1180 on 2 and 147 DF, p-value: < 2.2e-16 -## -## -## Response Petal.Width : -## -## Call: -## lm(formula = Petal.Width ~ Species, data = iris) -## -## Residuals: -## Min 1Q Median 3Q Max -## -0.626 -0.126 -0.026 0.154 0.474 -## -## Coefficients: -## Estimate Std. Error t value Pr(>|t|) -## (Intercept) 0.24600 0.02894 8.50 1.96e-14 *** -## Speciesversicolor 1.08000 0.04093 26.39 < 2e-16 *** -## Speciesvirginica 1.78000 0.04093 43.49 < 2e-16 *** -## --- -## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 -## -## Residual standard error: 0.2047 on 147 degrees of freedom -## Multiple R-squared: 0.9289, Adjusted R-squared: 0.9279 -## F-statistic: 960 on 2 and 147 DF, p-value: < 2.2e-16 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{mmf2} \hlkwb{<-} \hlkwd{manova}\hlstd{(}\hlkwd{cbind}\hlstd{(Petal.Length, Petal.Width)} \hlopt{~} \hlstd{Species,} \hlkwc{data} \hlstd{= iris)} -\hlkwd{anova}\hlstd{(mmf2)} -\end{alltt} -\begin{verbatim} -## Analysis of Variance Table -## -## Df Pillai approx F num Df den Df Pr(>F) -## (Intercept) 1 0.98786 5939.2 2 146 < 2.2e-16 *** -## Species 2 1.04645 80.7 4 294 < 2.2e-16 *** -## Residuals 147 -## --- -## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 -\end{verbatim} -\begin{alltt} -\hlkwd{summary}\hlstd{(mmf2)} -\end{alltt} -\begin{verbatim} -## Df Pillai approx F num Df den Df Pr(>F) -## Species 2 1.0465 80.661 4 294 < 2.2e-16 *** -## Residuals 147 -## --- -## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{advplayground} -Modify the example above to use \code{aov()} instead of \code{manova()} and save the result to a variable named \code{mmf3}. -Use \code{class()}, \code{attributes()}, \code{names()}, \code{str()} and extraction of members to explore objects \code{mmf1}, \code{mmf2} and \code{mmf3}. Are they different? -\end{advplayground} - -\index{multivariate analysis of variance|)} - -\subsection{Principal components analysis}\label{sec:stat:PCA} -\index{principal components analysis|(}\index{PCA|see {principal components analysis}} - -Principal components analysis (PCA) is used to simplify a data set by combining variables with similar and ``mirror'' behavior into principal components. At a later stage, we frequently try to interpret these components in relation to known and/or assumed independent variables. Base \Rlang's function \Rfunction{prcomp()} computes the principal components and accepts additional arguments for centering and scaling. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{pc} \hlkwb{<-} \hlkwd{prcomp}\hlstd{(iris[}\hlkwd{c}\hlstd{(}\hlstr{"Sepal.Length"}\hlstd{,} \hlstr{"Sepal.Width"}\hlstd{,} - \hlstr{"Petal.Length"}\hlstd{,} \hlstr{"Petal.Width"}\hlstd{)],} - \hlkwc{center} \hlstd{=} \hlnum{TRUE}\hlstd{,} - \hlkwc{scale} \hlstd{=} \hlnum{TRUE}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - -By printing the returned object we can see the loadings of each variable in the principal components \code{P1} to \code{P4}. -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{class}\hlstd{(pc)} -\end{alltt} -\begin{verbatim} -## [1] "prcomp" -\end{verbatim} -\begin{alltt} -\hlstd{pc} -\end{alltt} -\begin{verbatim} -## Standard deviations (1, .., p=4): -## [1] 1.7083611 0.9560494 0.3830886 0.1439265 -## -## Rotation (n x k) = (4 x 4): -## PC1 PC2 PC3 PC4 -## Sepal.Length 0.5210659 -0.37741762 0.7195664 0.2612863 -## Sepal.Width -0.2693474 -0.92329566 -0.2443818 -0.1235096 -## Petal.Length 0.5804131 -0.02449161 -0.1421264 -0.8014492 -## Petal.Width 0.5648565 -0.06694199 -0.6342727 0.5235971 -\end{verbatim} -\end{kframe} -\end{knitrout} - -In the summary, the rows ``Proportion of Variance'' and ``Cumulative Proportion'' are most informative of the contribution of each principal component (PC) to explaining the variation among observations. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{summary}\hlstd{(pc)} -\end{alltt} -\begin{verbatim} -## Importance of components: -## PC1 PC2 PC3 PC4 -## Standard deviation 1.7084 0.9560 0.38309 0.14393 -## Proportion of Variance 0.7296 0.2285 0.03669 0.00518 -## Cumulative Proportion 0.7296 0.9581 0.99482 1.00000 -\end{verbatim} -\end{kframe} -\end{knitrout} - - - -Method \Rfunction{biplot()} produces a plot with one principal component (PC) on each axis, plus arrows for the loadings. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{biplot}\hlstd{(pc)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-pca-05-1} - -} - - -\end{knitrout} - - - -Method \code{plot()} generates a bar plot of variances corresponding to the different components. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{plot}\hlstd{(pc)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.54\textwidth]{figure/pos-pca-04-1} - -} - - -\end{knitrout} - -Visually more elaborate plots of the principal components and their loadings can be obtained using package \pkgnameNI{ggplot} described in chapter \ref{chap:R:plotting} starting on page \pageref{chap:R:plotting}. Package \pkgnameNI{ggfortify} extends \pkgnameNI{ggplot} so as to make it easy to plot principal components and their loadings. - -\begin{playground} -For growth and morphological data, a log-transformation can be suitable given that variance is frequently proportional to the magnitude of the values measured. We leave as an exercise to repeat the above analysis using transformed values for the dimensions of petals and sepals. How much does the use of transformations change the outcome of the analysis? -\end{playground} - -\begin{advplayground} -As for other fitted models, the object returned by function \Rfunction{prcomp()} is a list with multiple components. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{str}\hlstd{(pc,} \hlkwc{max.level} \hlstd{=} \hlnum{1}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} -\end{advplayground} - -\index{principal components analysis|)} - -\subsection{Multidimensional scaling}\label{sec:stat:MDS} -\index{multidimensional scaling|(}\index{MDS|see {multidimensional scaling}} - -The aim of multidimensional scaling (MDS) is to visualize in 2D space the similarity between pairs of observations. The values for the observed variable(s) are used to compute a measure of distance among pairs of observations. The nature of the data will influence what distance metric is most informative. -For MDS we start with a matrix of distances among observations. We will use, for the example, distances in kilometers between geographic locations in Europe from data set \Rdata{eurodist}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{loc} \hlkwb{<-} \hlkwd{cmdscale}\hlstd{(eurodist)} -\end{alltt} -\end{kframe} -\end{knitrout} - -We can see that the returned object \code{loc} is a \code{matrix}, with names for one of the dimensions. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{class}\hlstd{(loc)} -\end{alltt} -\begin{verbatim} -## [1] "matrix" "array" -\end{verbatim} -\begin{alltt} -\hlkwd{dim}\hlstd{(loc)} -\end{alltt} -\begin{verbatim} -## [1] 21 2 -\end{verbatim} -\begin{alltt} -\hlkwd{dimnames}\hlstd{(loc)} -\end{alltt} -\begin{verbatim} -## [[1]] -## [1] "Athens" "Barcelona" "Brussels" "Calais" -## [5] "Cherbourg" "Cologne" "Copenhagen" "Geneva" -## [9] "Gibraltar" "Hamburg" "Hook of Holland" "Lisbon" -## [13] "Lyons" "Madrid" "Marseilles" "Milan" -## [17] "Munich" "Paris" "Rome" "Stockholm" -## [21] "Vienna" -## -## [[2]] -## NULL -\end{verbatim} -\begin{alltt} -\hlkwd{head}\hlstd{(loc)} -\end{alltt} -\begin{verbatim} -## [,1] [,2] -## Athens 2290.27468 1798.8029 -## Barcelona -825.38279 546.8115 -## Brussels 59.18334 -367.0814 -## Calais -82.84597 -429.9147 -## Cherbourg -352.49943 -290.9084 -## Cologne 293.68963 -405.3119 -\end{verbatim} -\end{kframe} -\end{knitrout} - -To make the code easier to read, two vectors are first extracted from the matrix and named \code{x} and \code{y}. We force aspect to equality so that distances on both axes are comparable. - - - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{x} \hlkwb{<-} \hlstd{loc[,} \hlnum{1}\hlstd{]} -\hlstd{y} \hlkwb{<-} \hlopt{-}\hlstd{loc[,} \hlnum{2}\hlstd{]} \hlcom{# change sign so North is at the top} -\hlkwd{plot}\hlstd{(x, y,} \hlkwc{type} \hlstd{=} \hlstr{"n"}\hlstd{,} \hlkwc{asp} \hlstd{=} \hlnum{1}\hlstd{,} - \hlkwc{main} \hlstd{=} \hlstr{"cmdscale(eurodist)"}\hlstd{)} -\hlkwd{text}\hlstd{(x, y,} \hlkwd{rownames}\hlstd{(loc),} \hlkwc{cex} \hlstd{=} \hlnum{0.6}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-mds-03-1} - -} - - -\end{knitrout} - -\begin{advplayground} - Find data on the mean annual temperature, mean annual rainfall and mean number of sunny days at each of the locations in the \code{eurodist} data set. Next, compute suitable distance metrics, for example, using function \Rfunction{dist}. Finally, use MDS to visualize how similar the locations are with respect to each of the three variables. Devise a measure of distance that takes into account the three climate variables and use MDS to find how distant the different locations are. -\end{advplayground} - -\index{multidimensional scaling|)} - -\subsection{Cluster analysis}\label{sec:stat:cluster} -\index{cluster analysis|(} - -In cluster analysis, the aim is to group observations into discrete groups with maximal internal homogeneity and maximum group-to-group differences. In the next example we use function \Rfunction{hclust()} from the base-\Rlang package \pkgname{stats}. We use, as above, the \Rdata{eurodist} data which directly provides distances. In other cases a matrix of distances between pairs of observations needs to be first calculated with function \Rfunction{dist} which supports several methods. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{hc} \hlkwb{<-} \hlkwd{hclust}\hlstd{(eurodist)} -\hlkwd{print}\hlstd{(hc)} -\end{alltt} -\begin{verbatim} -## -## Call: -## hclust(d = eurodist) -## -## Cluster method : complete -## Number of objects: 21 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{plot}\hlstd{(hc)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-cluster-02-1} - -} - - -\end{knitrout} - -We can use \Rfunction{cutree()} to limit the number of clusters by directly passing as an argument the desired number of clusters or the height at which to cut the tree. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{cutree}\hlstd{(hc,} \hlkwc{k} \hlstd{=} \hlnum{5}\hlstd{)} -\end{alltt} -\begin{verbatim} -## Athens Barcelona Brussels Calais Cherbourg -## 1 2 3 3 3 -## Cologne Copenhagen Geneva Gibraltar Hamburg -## 3 4 2 5 4 -## Hook of Holland Lisbon Lyons Madrid Marseilles -## 3 5 2 5 2 -## Milan Munich Paris Rome Stockholm -## 2 3 3 1 4 -## Vienna -## 3 -\end{verbatim} -\end{kframe} -\end{knitrout} - -The object returned by \Rfunction{hclust()} contains details of the result of the clustering, which allows further manipulation and plotting. -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{str}\hlstd{(hc)} -\end{alltt} -\begin{verbatim} -## List of 7 -## $ merge : int [1:20, 1:2] -8 -3 -6 -4 -16 -17 -5 -7 -2 -12 ... -## $ height : num [1:20] 158 172 269 280 328 428 460 460 521 668 ... -## $ order : int [1:21] 1 19 9 12 14 20 7 10 16 8 ... -## $ labels : chr [1:21] "Athens" "Barcelona" "Brussels" "Calais" ... -## $ method : chr "complete" -## $ call : language hclust(d = eurodist) -## $ dist.method: NULL -## - attr(*, "class")= chr "hclust" -\end{verbatim} -\end{kframe} -\end{knitrout} - -\index{cluster analysis|)} - -%\subsection{Discriminant analysis}\label{sec:stat:DA} -%\index{discriminant analysis|(} -% -%In discriminant analysis the categories or groups to which objects belong are known \emph{a priori} for a training data set. The aim is to fit/build a classifier that will allow us to assign future observations to the different non-overlapping groups with as few mistakes as possible. -% -% -%\index{discriminant analysis|)} -\index{multivariate methods|)} - -\section{Further reading}\label{sec:stat:further:reading} - -Two recent text books\index{further reading!statistics in R} on statistics, following a modern approach, and using \Rlang for examples, are \citetitle{Diez2019} \autocite{Diez2019} and \citetitle{Holmes2019} \autocite{Holmes2019}. Three examples of books introducing statistical computations in \Rlang are \citetitle{Dalgaard2008} \autocite{Dalgaard2008}, \citetitle{Everitt2009} \autocite{Everitt2009} and \citetitle{Zuur2009} \autocite{Zuur2009}. More advanced books are available with detailed descriptions of various types of analyses in \Rlang, including thorough descriptions of the methods briefly presented in this chapter. Good examples of books with broad scope are \citebooktitle{Crawley2012} \autocite{Crawley2012} and the classic reference \citebooktitle{Venables2002} \autocite{Venables2002}. More specific books are also available from which a few suggestions for further reading are \citebooktitle{Everitt2011} \autocite{Everitt2011}, \citebooktitle{Faraway2004} \autocite{Faraway2004}, \citebooktitle{Faraway2006} \autocite{Faraway2006}, \citebooktitle{Pinheiro2000} \autocite{Pinheiro2000} and \citebooktitle{Wood2017} \autocite{Wood2017}. - - - - -% !Rnw root = appendix.main.Rnw - - -\chapter{The R language: Adding new ``words''}\label{chap:R:functions} - -\begin{VF} -Computer Science is a science of abstraction---creating the right model for a problem and devising the appropriate mechanizable techniques to solve it. - -\VA{Alfred V. Aho and Jeffrey D. Ullman}{\emph{Foundations of Computer Science}, 1992}\nocite{Aho1992} -\end{VF} - -%\dictum[Alfred V. Aho, Jeffrey D. Ullman, \emph{Foundations of Computer Science}, Computer Science Press, 1992]{Computer Science is a science of abstraction---creating the right model for a problem and devising the appropriate mechanizable techniques to solve it.}\vskip2ex - -\section{Aims of this chapter} - -In earlier chapters we have only used base \Rlang features. In this chapter you will learn how to expand the range of features available. In the first part of the chapter we will focus on using existing packages and how they expand the functionality of \Rlang. In the second part you will learn how to define new functions, operators and classes. We will not consider the important, but more advanced question of packaging functions and classes into new \Rlang packages. - -\section{Packages}\label{sec:script:packages} - -\subsection{Sharing of \Rlang-language extensions} -\index{extensions to R} -The most elegant way of adding new features or capabilities to \Rlang is through packages. This is without doubt the best mechanism when these extensions to \Rlang need to be shared. However, in most situations it is also the best mechanism for managing code that will be reused even by a single person over time. \Rlang packages have strict rules about their contents, file structure, and documentation, which makes it possible among other things for the package documentation to be merged into \Rpgrm's help system when a package is loaded. With a few exceptions, packages can be written so that they will work on any computer where \Rpgrm runs. - -Packages can be shared as source or binary package files, sent for example through e-mail. However, for sharing packages widely, it is best to submit them to a repository. The largest public repository of \Rpgrm packages is called CRAN\index{CRAN}, an acronym for Comprehensive R Archive Network. Packages available through CRAN are guaranteed to work, in the sense of not failing any tests built into the package and not crashing or aborting prematurely. They are tested daily, as they may depend on other packages whose code will change when updated. In January 2017, the number of packages available through CRAN passed the 10,000 mark. - -A key repository for bioinformatics with \Rlang is Bioconductor\index{Bioconductor}, containing packages that pass strict quality tests. Recently, ROpenScience\index{ROpenScience} has established guidelines and a system for code peer review for packages. These peer-reviewed packages are available through CRAN or other repositories and listed at the ROpenScience website. In some cases you may need or want to install less stable code from Git repositories such as versions still under development not yet submitted to CRAN. Using the package \pkgname{devtools} we can install packages directly from GitHub\index{GitHub}, Bitbucket\index{GitHub} and other code repositories based on \pgrmname{Git}. Installations from code repositories are always installations from sources (see below). It is of course also possible to install packages from local files (e.g., after a manual download). - -One good way of learning how the extensions provided by a package work, is by experimenting with them. When using a function we are not yet familiar with, looking at its help to check all its features will expand your ``toolbox.'' How much documentation is included with packages varies, while documentation of exported objects is enforced, many packages include, in addition, comprehensive user guides or articles as \emph{vignettes}. It is not unusual to decide which package to use from a set of alternatives based on the quality of available documentation. In the case of packages adding extensive new functionality, they may be documented in depth in a book. Well-known examples are \citebooktitle{Pinheiro2000} \autocite{Pinheiro2000}, \citebooktitle{Sarkar2008} \autocite{Sarkar2008} and \citebooktitle{Wickham2016} \autocite{Wickham2016}. - -\subsection{How packages work} - -The development of packages is beyond the scope of the current book, and thoroughly explained in the book \citebooktitle{Wickham2015} \autocite{Wickham2015}. However, it is still worthwhile mentioning a few things about the development of \Rpgrm packages. Using \RStudio it is relatively easy to develop your own packages. Packages can be of very different sizes and complexity. Packages use a relatively rigid structure of folders for storing the different types of files, including documentation compatible with \Rpgrm's built-in help system. This allows documentation for contributed packages to be seamlessly linked to \Rlang's help system when packages are loaded. In addition to \Rlang code, packages can call functions and routines written in \langname{C}, \langname{C++}, \langname{FORTRAN}, \langname{Java}, \langname{Python}, etc., but some kind of ``glue'' is needed, as function call conventions and \emph{name mangling} depend on the programming language, and in many cases also on the compiler used. For \langname{C++}, the \pkgname{Rcpp} \Rlang package makes the ``gluing'' relatively easy \autocite{Eddelbuettel2013}. In the case of \langname{Python}, \Rlang package \pkgname{reticulate} makes calling of \langname{Python} methods and exchange of data easy, and it is well supported by \RStudio. In the case of \langname{Java} we can use package \pkgname{RJava} instead. For \langname{C} and \langname{FORTRAN}, \Rlang provides the functionality needed, but the interface needs some ad hoc coding in most cases. - -Only objects exported by a package that has been attached are visible outside its own namespace. Loading and attaching a package with \Rfunction{library()} makes the exported objects available. Attaching a package adds the objects exported by the package to the search path so that they can be accessed without prepending the name of the namespace. Most packages do not export all the functions and objects defined in their code; some are kept internal, in most cases because they may change or be removed in future versions. Package namespaces can be detached and also unloaded with function \Rscoping{detach()} using a slightly different notation for the argument from that which we described for data frames in section \ref{sec:calc:df:with} on page \pageref{sec:calc:df:with}. - -\subsection{Download, installation and use} - -\index{packages!using} -In \Rlang speak, ``library'' is the location where packages are installed. Packages are sets of functions, and data, specific for some particular purpose, that can be loaded into an \Rlang session to make them available so that they can be used in the same way as built-in \Rlang functions and data. Function \Rfunction{library()} is used to load and attach packages that are already installed in the local \Rlang library. In contrast, function \Rfunction{install.packages()} is used to install packages. When using \RStudio it is easiest to use \RStudio menus (which call \Rfunction{install.packages()} and \Rfunction{update.packages()}) to install or update packages. - -\begin{playground} -Use \code{help} to look up the help pages for \Rfunction{install.packages()} and \Rfunction{library()}, and explain what the code in the next chunk does. -\end{playground} - -\Rpgrm packages can be installed either from sources, or from already built ``binaries''. Installing from sources, depending on the package, may require additional software to be available. Under \pgrmname{MS-Windows}, the needed shell, commands and compilers are not available as part of the operating system. Installing them is not difficult as they are available prepackaged in installers (you will need \pgrmname{RTools}, and \pgrmnameTwo{\hologo{MiKTeX}}{MiKTeX}). It is easier to install packages from binary \texttt{.zip} files under \pgrmname{MS-Windows}. Under Linux most tools will be available, or very easy to install, so it is usual to install packages from sources. For \pgrmname{OS X} (Apple Mac) the situation is somewhere in-between. If the tools are available, packages can be very easily installed from sources from within \RStudio. However, binaries are for most packages also readily available. - -\subsection{Finding suitable packages} - -Due to the large number of contributed \Rlang packages it can sometimes be difficult to find a suitable package for a task at hand. It is good to first check if the necessary capability is already built into base \Rlang. Base \Rlang plus the recommended packages (installed when \Rlang is installed) cover a lot of ground. To analyze data using almost any of the more common statistical methods does not require the use of special packages. Sometimes, contributed packages duplicate or extend the functionality in base \Rlang with advantage. When one considers the use of novel or specialized types of data analysis, the use of contributed packages can be unavoidable. Even in such cases, it is not unusual to have alternatives to choose from within the available contributed packages. Sometimes groups or suites of packages are designed to work well together. - -The CRAN repository has very broad scope and includes a section called ``views.'' \Rlang views are web pages providing annotated lists of packages frequently used within a given field of research, engineering or specific applications. These views are edited and updated by different editors. They can be found at \url{https://cran.r-project.org/web/views/}. - -The Bioconductor repository specializes in bioinformatics with \Rlang. It also has a section with ``views'' and within it, descriptions of different data analysis workflows. The workflows are especially good as they reveal which sets of packages work well together. These views can be found at \url{https://www.bioconductor.org/packages/release/BiocViews.html}. - -Although ROpenSci does not keep a separate package repository for the peer-reviewed packages, they do keep an index of them at \url{https://ropensci.org/packages/}. - -The CRAN repository keeps an archive of earlier versions of packages, on an individual package basis. METACRAN (\url{https://www.r-pkg.org/}) is an archive of repositories, that keeps a historical record as snapshots from CRAN. METACRAN uses a different search engine than CRAN itself, making it easier to search the whole repository. - -\section{Defining functions and operators}\label{sec:script:functions} -\index{functions!defining new}\index{operators!defining new} - -\emph{Abstraction} can be defined as separating the fundamental properties from the accidental ones. Say obtaining the mean from a given vector of numbers is an actual operation. There can be many such operations on different numeric vectors, each one a specific case. When we describe an algorithm for computing the mean from any numeric vector we have created the abstraction of \emph{mean}. In the same way, each time we separate operations from specific data we create a new abstraction. In this sense, functions are abstractions of operations or actions; they are like ``verbs'' describing actions separately from actors. - -The main role of functions is that of providing an abstraction allowing us to avoid repeating blocks of code (groups of statements) applying the same operations on different data. The reasons to avoid repetition of similar blocks of code statements are that 1) if the algorithm or implementation needs to be revised---e.g., to fix a bug or error---it is best to make edits in a single place; 2) sooner or later pieces of repeated code can become different leading to inconsistencies and hard-to-track bugs; 3) abstraction and division of a problem into smaller chunks, greatly helps with keeping the code understandable to humans; 4) textual repetition makes the script file longer, and this makes debugging, commenting, etc., more tedious, and error prone. - -How do we, in practice, avoid repeating bits of code? We write a function containing the statements that we would need to repeat, and later we \emph{call} (``use'') the function in their place. We have been calling \Rlang functions or operators in almost every example in this book; what we will next tackle is how to define new functions of our own. - -We saw in section \ref{sec:script:compound:statement} on page \pageref{sec:script:compound:statement} a diagram of a compound statement. A function is like a compound statement with the difference that statements within the function usually do not affect directly any variable defined outside the function. Even tough the statements within the function body do have access to the environment in which the function is called, it is safest to pass all input through the function parameters, and return all values to the caller. - -\begin{center} -\begin{tikzpicture}[node distance=1.7cm] -\node (call) [startstop] {\textsl{arguments $\to$ \textcolor{blue}{parameters}}}; -\node (enc) [enclosure, color = blue, fill = blue!5, below of=call, yshift=-0.85cm] {\ }; -\node (stat1) [process, color = blue, fill = blue!15, below of=call] {\code{}}; -\node (stat2) [process, color = blue, fill = blue!15, below of=stat1] {\code{}}; -\node (return) [startstop, below of=stat2] {\textsl{\textcolor{blue}{returned value} $\to$ caller}}; -\draw [arrow, color = blue] (call) -- (stat1); -\draw [arrow, color = blue] (stat1) -- (stat2); -\draw [arrow, color = blue] (stat2) -- (return); -\end{tikzpicture} -\end{center} - -The diagram above represents a function that has no \emph{side effects}, as it does not affect its environment, it only returns a value to the caller. A value on which the caller has full control. The statement that calls the function ``decides'' what to do with the value received from the function. When a function has a side effect, the caller is no longer in control. Side effects can be actions that do not alter any object in the calling code, like when a call to \Rfunction{print()} displays text or numbers. Side effects can also be an assignment that modifies an object in the caller's environment, such as assigning a new value to a variable in the caller's environment. - -\begin{center} -\begin{tikzpicture}[node distance=1.7cm] -\node (call) [startstop] {\textsl{arguments $\to$ \textcolor{blue}{parameters}}}; -\node (enc) [enclosure, color = blue, fill = blue!5, below of=call, yshift=-0.85cm] {\ }; -\node (stat1) [process, color = blue, fill = blue!15, below of=call] {\code{}}; -\node (sideeff) [process, color = black, right of=stat2, xshift=3cm] {\textsl{\textcolor{blue}{side effect}}}; -\node (stat2) [process, color = blue, fill = blue!15, below of=stat1] {\code{}}; -\node (return) [startstop, below of=stat2] {\textsl{\textcolor{blue}{returned value} $\to$ caller}}; -\draw [arrow, color = blue] (call) -- (stat1); -\draw [arrow, color = blue] (stat1) -- (stat2); -\draw [arrow, color = blue] (stat2) -- (sideeff); -\draw [arrow, color = blue] (stat2) -- (return); -\end{tikzpicture} -\end{center} - -New functions and operators are defined using function \Rfunction{function()}, and saved like any other object in \Rpgrm by assignment to a variable name. In the example below, \code{x} and \code{y} are both formal parameters, or names used within the function for objects that will be supplied as \emph{arguments} when the function is called. One can think of parameter names as placeholders for actual values to be supplied as arguments when calling the function. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.prod} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{,} \hlkwc{y}\hlstd{)\{x} \hlopt{*} \hlstd{y\}} -\hlkwd{my.prod}\hlstd{(}\hlnum{4}\hlstd{,} \hlnum{3}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] 12 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{warningbox} -In base \Rlang, arguments\index{functions!arguments} to functions are passed by copy. This is something very important to remember. Whatever code in a function's body does to modify an argument passed through a formal parameter, its value outside the function will remain (almost) always unchanged. (In other computer languages, arguments can also be passed by reference, meaning that assignments to a formal parameter within the body of the function are back-referenced to the argument and modify it. It is possible to imitate such behavior in \Rlang using some language trickery and consequently, some packages such as \pkgname{data.table} do define functions that use passing of arguments by reference.) - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.change} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{)\{x} \hlkwb{<-} \hlnum{NA}\hlstd{\}} -\hlstd{a} \hlkwb{<-} \hlnum{1} -\hlkwd{my.change}\hlstd{(a)} -\hlstd{a} -\end{alltt} -\begin{verbatim} -## [1] 1 -\end{verbatim} -\end{kframe} -\end{knitrout} - -In general, any result that needs to be made available outside the function must be returned by the function---or explicitly assigned to an object in the enclosing environment (i.e., using \Roperator{<<-} or \Rfunction{assign()}) as a side effect. - -A function can only return a single object, so when multiple results are produced they need to be collected into a single object. In many cases, lists are used to collect all the values to be returned into one \Rlang object. For example, model fit functions like \code{lm()}, discussed in section \ref{sec:stat:LM} on page \pageref{sec:stat:LM}, return lists with multiple heterogeneous members, plus ancillary information stored in several attributes. In the case on \Rfunction{lm()} the returned object's class is \Rclass{lm}, a class derived from class \Rclass{list}. -\end{warningbox} - -\begin{playground} -When function \Rcontrol{return()} is called within a function, flow of execution within the function stops and the argument passed -to \Rcontrol{return()} is the value returned by the function call. In contrast, if function \Rcontrol{return()} is not explicitly -called, the value returned by the function call is that returned by the last statement \emph{executed} within the body of the function. - -\label{chunck:print:funs} -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{print.x.1} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{)\{}\hlkwd{print}\hlstd{(x)\}} -\hlkwd{print.x.1}\hlstd{(}\hlstr{"test"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] "test" -\end{verbatim} -\begin{alltt} -\hlstd{print.x.2} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{)\{}\hlkwd{print}\hlstd{(x);} \hlkwd{return}\hlstd{(x)\}} -\hlkwd{print.x.2}\hlstd{(}\hlstr{"test"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] "test" -## [1] "test" -\end{verbatim} -\begin{alltt} -\hlstd{print.x.3} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{)\{}\hlkwd{return}\hlstd{(x);} \hlkwd{print}\hlstd{(x)\}} -\hlkwd{print.x.3}\hlstd{(}\hlstr{"test"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] "test" -\end{verbatim} -\begin{alltt} -\hlstd{print.x.4} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{)\{}\hlkwd{return}\hlstd{();} \hlkwd{print}\hlstd{(x)\}} -\hlkwd{print.x.4}\hlstd{(}\hlstr{"test"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## NULL -\end{verbatim} -\begin{alltt} -\hlstd{print.x.5} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{)\{x\}} -\hlkwd{print.x.4}\hlstd{(}\hlstr{"test"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## NULL -\end{verbatim} -\end{kframe} -\end{knitrout} -\end{playground} - -\begin{advplayground} -Test the behavior of functions \code{print.x.1()} and \code{print.x.5()}, as defined above, both at the command prompt, and in a script. The behavior of one of these functions will be different when the script is sourced than at the command prompt. Explain why. -\end{advplayground} - -Functions have their own scope. Any names created by normal assignment within the body of a function are visible only within the body of the function and disappear when the function returns from the call. In normal use, functions in \Rlang do not affect their environment through side effects. They receive input through arguments and return a value as the result of the call. This value can be either printed or assigned as we have seen when using functions earlier. - -\subsection{Ordinary functions}\label{sec:functions:sem} -\index{functions!defining new} - -After the toy examples above, we will define a small but useful function: a function for calculating the standard error of the mean from a numeric vector. The standard error is given by $S_{\hat{x}} = \sqrt{S^2 / n}$. We can translate this into the definition of an \Rlang function called \code{SEM}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{SEM} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{)\{}\hlkwd{sqrt}\hlstd{(}\hlkwd{var}\hlstd{(x)} \hlopt{/} \hlkwd{length}\hlstd{(x))\}} -\end{alltt} -\end{kframe} -\end{knitrout} - -We can test our function. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{2}\hlstd{,} \hlnum{3}\hlstd{,} \hlopt{-}\hlnum{5}\hlstd{)} -\hlstd{a.na} \hlkwb{<-} \hlkwd{c}\hlstd{(a,} \hlnum{NA}\hlstd{)} -\hlkwd{SEM}\hlstd{(}\hlkwc{x} \hlstd{= a)} -\end{alltt} -\begin{verbatim} -## [1] 1.796988 -\end{verbatim} -\begin{alltt} -\hlkwd{SEM}\hlstd{(a)} -\end{alltt} -\begin{verbatim} -## [1] 1.796988 -\end{verbatim} -\begin{alltt} -\hlkwd{SEM}\hlstd{(a.na)} -\end{alltt} -\begin{verbatim} -## [1] NA -\end{verbatim} -\end{kframe} -\end{knitrout} - -For example in \code{SEM(a)} we are calling function \Rfunction{SEM()} with \code{a} as an argument. - -The function we defined above will always give the correct answer because \code{NA} values in the input will always result in an \code{NA} being returned. The problem is that unlike \Rlang's functions like \code{var()}, there is no option to omit \code{NA} values in the function we defined. - -This could be implemented by adding a second parameter \code{na.omit} to the definition of our function and passing its argument to the call to \Rfunction{var()} within the body of \code{SEM()}. However, to avoid returning wrong values we need to make sure \code{NA} values are also removed before counting the number of observations with \code{length()}. - -A readable way of implementing this in code is to define the function as follows. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{sem} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{,} \hlkwc{na.omit} \hlstd{=} \hlnum{FALSE}\hlstd{) \{} - \hlkwa{if} \hlstd{(na.omit) \{} - \hlstd{x} \hlkwb{<-} \hlkwd{na.omit}\hlstd{(x)} - \hlstd{\}} - \hlkwd{sqrt}\hlstd{(}\hlkwd{var}\hlstd{(x)}\hlopt{/}\hlkwd{length}\hlstd{(x))} -\hlstd{\}} -\end{alltt} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{sem}\hlstd{(}\hlkwc{x} \hlstd{= a)} -\end{alltt} -\begin{verbatim} -## [1] 1.796988 -\end{verbatim} -\begin{alltt} -\hlkwd{sem}\hlstd{(}\hlkwc{x} \hlstd{= a.na)} -\end{alltt} -\begin{verbatim} -## [1] NA -\end{verbatim} -\begin{alltt} -\hlkwd{sem}\hlstd{(}\hlkwc{x} \hlstd{= a.na,} \hlkwc{na.omit} \hlstd{=} \hlnum{TRUE}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] 1.796988 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\Rlang does not provide a function for standard error, so the function above is generally useful. Its user interface is consistent with that of functionally similar existing functions. We have added a new word to the \Rlang vocabulary available to us. - -In the definition of \code{sem()} we set a default argument for parameter \code{na.omit} which is used unless the user explicitly passes an argument to this parameter. - -%In addition if names of the parameters are supplied arguments can be passed in any order. If parameter names are not supplied arguments are matched to parameters based on their position. Once one parameter name is given, all later arguments need also to be explicitly named. - -%We can assign to a variable defined `outside' a function with operator \code{<<-} but the usual recommendation is to avoid its use. This type of effects of calling a function are frequently called `side-effects'. - -\begin{playground} -Define your own function to calculate the mean in a similar way as \Rfunction{SEM()} was defined above. Hint: function \Rfunction{sum()} could be of help. -\end{playground} - -Functions can have much more complex and larger compound statements as their body than those in the examples above. Within an expression, a function name followed by parentheses is interpreted as a call to the function. The bare name of a function instead gives access to its definition. - -We first print (implicitly) the definition of our function from earlier in this section. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{sem} -\end{alltt} -\begin{verbatim} -## function(x, na.omit = FALSE) { -## if (na.omit) { -## x <- na.omit(x) -## } -## sqrt(var(x)/length(x)) -## } -## -\end{verbatim} -\end{kframe} -\end{knitrout} - -Next we print the definition of \Rlang's linear model fitting function \code{lm()}. (Use of \code{lm()} is described in section \ref{sec:stat:LM} on page \pageref{sec:stat:LM}.) - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{lm} -\end{alltt} -\begin{verbatim} -## function (formula, data, subset, weights, na.action, method = "qr", -## model = TRUE, x = FALSE, y = FALSE, qr = TRUE, singular.ok = TRUE, -## contrasts = NULL, offset, ...) -## { -## ret.x <- x -## ret.y <- y -## cl <- match.call() -## mf <- match.call(expand.dots = FALSE) -## m <- match(c("formula", "data", "subset", "weights", "na.action", -## "offset"), names(mf), 0L) -## mf <- mf[c(1L, m)] -## mf$drop.unused.levels <- TRUE -## mf[[1L]] <- quote(stats::model.frame) -## mf <- eval(mf, parent.frame()) -## if (method == "model.frame") -## return(mf) -## else if (method != "qr") -## warning(gettextf("method = '%s' is not supported. Using 'qr'", -## method), domain = NA) -## mt <- attr(mf, "terms") -## y <- model.response(mf, "numeric") -## w <- as.vector(model.weights(mf)) -## if (!is.null(w) && !is.numeric(w)) -## stop("'weights' must be a numeric vector") -## offset <- model.offset(mf) -## mlm <- is.matrix(y) -## ny <- if (mlm) -## nrow(y) -## else length(y) -## if (!is.null(offset)) { -## if (!mlm) -## offset <- as.vector(offset) -## if (NROW(offset) != ny) -## stop(gettextf("number of offsets is %d, should equal %d (number of observations)", -## NROW(offset), ny), domain = NA) -## } -## if (is.empty.model(mt)) { -## x <- NULL -## z <- list(coefficients = if (mlm) matrix(NA_real_, 0, -## ncol(y)) else numeric(), residuals = y, fitted.values = 0 * -## y, weights = w, rank = 0L, df.residual = if (!is.null(w)) sum(w != -## 0) else ny) -## if (!is.null(offset)) { -## z$fitted.values <- offset -## z$residuals <- y - offset -## } -## } -## else { -## x <- model.matrix(mt, mf, contrasts) -## z <- if (is.null(w)) -## lm.fit(x, y, offset = offset, singular.ok = singular.ok, -## ...) -## else lm.wfit(x, y, w, offset = offset, singular.ok = singular.ok, -## ...) -## } -## class(z) <- c(if (mlm) "mlm", "lm") -## z$na.action <- attr(mf, "na.action") -## z$offset <- offset -## z$contrasts <- attr(x, "contrasts") -## z$xlevels <- .getXlevels(mt, mf) -## z$call <- cl -## z$terms <- mt -## if (model) -## z$model <- mf -## if (ret.x) -## z$x <- x -## if (ret.y) -## z$y <- y -## if (!qr) -## z$qr <- NULL -## z -## } -## -## -\end{verbatim} -\end{kframe} -\end{knitrout} - -As can be seen at the end of the listing, this function written in the \Rlang language has been byte-compiled so that it executes faster. Functions that are part of the \Rlang language, but that are not coded using the \Rlang language, are called primitives and their full definition cannot be accessed through their name (c.f., \code{sem()} defined above). - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{list} -\end{alltt} -\begin{verbatim} -## function (...) .Primitive("list") -\end{verbatim} -\end{kframe} -\end{knitrout} - -\subsection{Operators} -\index{operators!defining new} - -Operators are functions that use a different syntax for being called. If their name is enclosed in back ticks they can be called as ordinary functions. Binary operators like \code{+} have two formal parameters, and unary operators like unary \code{-} have only one formal parameter. The parameters of many binary \Rlang operators are named \code{e1} and \code{e2}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlnum{1} \hlopt{/} \hlnum{2} -\end{alltt} -\begin{verbatim} -## [1] 0.5 -\end{verbatim} -\begin{alltt} -\hlkwd{`/`}\hlstd{(}\hlnum{1} \hlstd{,} \hlnum{2}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] 0.5 -\end{verbatim} -\begin{alltt} -\hlkwd{`/`}\hlstd{(}\hlkwc{e1} \hlstd{=} \hlnum{1} \hlstd{,} \hlkwc{e2} \hlstd{=} \hlnum{2}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] 0.5 -\end{verbatim} -\end{kframe} -\end{knitrout} - -An important consequence of the possibility of calling operators using ordinary syntax is that operators can be used as arguments to \emph{apply} functions in the same way as ordinary functions. When passing operator names as arguments to \emph{apply} functions we only need to enclose them in back ticks (see section \ref{sec:data:apply} on page \pageref{sec:data:apply}). - -The name by itself and enclosed in back ticks allows us to access the definition of an operator. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{`/`} -\end{alltt} -\begin{verbatim} -## function (e1, e2) .Primitive("/") -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{explainbox} -\textbf{Defining a new operator.} We will define a binary operator (taking two arguments) that subtracts from the numbers in a vector the mean of another vector. First we need a suitable name, but we have less freedom as names of user-defined operators must be enclosed in percent signs. We will use \code{\%-mean\%} and as with any \emph{special name}, we need to enclose it in quotation marks for the assignment. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstr{"%-mean%"} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{e1}\hlstd{,} \hlkwc{e2}\hlstd{) \{} - \hlstd{e1} \hlopt{-} \hlkwd{mean}\hlstd{(e2)} -\hlstd{\}} -\end{alltt} -\end{kframe} -\end{knitrout} - -We can then use our new operator in a example. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlnum{10}\hlopt{:}\hlnum{15} \hlopt{%-mean%} \hlnum{1}\hlopt{:}\hlnum{20} -\end{alltt} -\begin{verbatim} -## [1] -0.5 0.5 1.5 2.5 3.5 4.5 -\end{verbatim} -\end{kframe} -\end{knitrout} - -To print the definition, we enclose the name of our new operator in back ticks---i.e., we \emph{back quote} the special name. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{`%-mean%`} -\end{alltt} -\begin{verbatim} -## function(e1, e2) { -## e1 - mean(e2) -## } -\end{verbatim} -\end{kframe} -\end{knitrout} - -\end{explainbox} - -\section{Objects, classes, and methods}\label{sec:script:objects:classes:methods}\label{sec:methods} -\index{objects}\index{classes}\index{methods}\index{object-oriented programming} -\index{S3 class system}\index{classes!S3 class system}\index{methods!S3 class system} -New classes are normally defined within packages rather than in user scripts. To be really useful implementing a new class involves not only defining a class but also a set of specialized functions or \emph{methods} that implement operations on objects belonging to the new class. Nevertheless, an understanding of how classes work is important even if only very occasionally a user will define a new method for an existing class within a script. - -Classes are abstractions, but abstractions describing the shared properties of ``types'' or groups of similar objects. In this sense, classes are abstractions of ``actors,'' they are like ``nouns'' in natural language. What we obtain with classes is the possibility of defining multiple versions of functions (or \emph{methods}) sharing the same name but tailored to operate on objects belonging to different classes. We have already been using methods with multiple \emph{specializations} throughout the book, for example \code{plot()} and \code{summary()}. - -We start with a quotation from \citebooktitle{Burns1998} \autocite[][, page 13]{Burns1998}. -\begin{quotation} -The idea of object-oriented programming is simple, but carries a lot of weight. -Here's the whole thing: if you told a group of people ``dress for work,'' then -you would expect each to put on clothes appropriate for that individual's job. -Likewise it is possible for S[R] objects to get dressed appropriately depending on -what class of object they are. -\end{quotation} - -We say that specific methods are \emph{dispatched} based on the class of the argument passed. This, together with the loose type checks of \Rlang, allows writing code that functions as expected on different types of objects, e.g., character and numeric vectors. - -\Rlang has good support for the object-oriented programming paradigm, but as a system that has evolved over the years, currently \Rlang supports multiple approaches. The still most popular approach is called S3, and a more recent and powerful approach, with slower performance, is called S4. The general idea is that a name like ``plot'' can be used as a generic name, and that the specific version of \Rfunction{plot()} called depends on the arguments of the call. Using computing terms we could say that the \emph{generic} of \Rfunction{plot()} dispatches the original call to different specific versions of \Rfunction{plot()} based on the class of the arguments passed. S3 generic functions dispatch, by default, based only on the argument passed to a single parameter, the first one. S4 generic functions can dispatch the call based on the arguments passed to more than one parameter and the structure of the objects of a given class is known to the interpreter. In S3 functions, the specializations of a generic are recognized/identified only by their name. And the class of an object by a character string stored as an attribute to the object. - -We first explore one of the methods already available in \Rlang. The definition of \code{mean} shows that it is the generic for a method. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{mean} -\end{alltt} -\begin{verbatim} -## function (x, ...) -## UseMethod("mean") -## -## -\end{verbatim} -\end{kframe} -\end{knitrout} - -We can find out which specializations of method are available in the current search path using \Rfunction{methods()}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{methods}\hlstd{(mean)} -\end{alltt} -\begin{verbatim} -## [1] mean.Date mean.default mean.difftime mean.POSIXct mean.POSIXlt -## see '?methods' for accessing help and source code -\end{verbatim} -\end{kframe} -\end{knitrout} - -We can also use \Rfunction{methods()} to query all methods, including operators, defined for objects of a given class. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{methods}\hlstd{(}\hlkwc{class} \hlstd{=} \hlstr{"list"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] all.equal as.data.frame coerce Ops relist -## [6] sew type.convert within -## see '?methods' for accessing help and source code -\end{verbatim} -\end{kframe} -\end{knitrout} - -S3 class information is stored as a character vector in an attribute named \code{"class"}. The most basic approach to creation of an object of a new S3 class, is to add the new class name to the class attribute of the object. As the implied class hierarchy is given by the order of the members of the character vector, the name of the new class must be added at the head of the vector. Even though this step can be done as shown here, in practice this step would normally take place within a \emph{constructor} function and the new class, if defined within a package, would need to be registered. We show here this bare-bones example to demonstrate how S3 classes are implemented in \Rlang. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{a} \hlkwb{<-} \hlnum{123} -\hlkwd{class}\hlstd{(a)} -\end{alltt} -\begin{verbatim} -## [1] "numeric" -\end{verbatim} -\begin{alltt} -\hlkwd{class}\hlstd{(a)} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"myclass"}\hlstd{,} \hlkwd{class}\hlstd{(a))} -\hlkwd{class}\hlstd{(a)} -\end{alltt} -\begin{verbatim} -## [1] "myclass" "numeric" -\end{verbatim} -\end{kframe} -\end{knitrout} - -Now we create a print method specific to \code{"myclass"} objects. Internally we are using function \Rfunction{sprintf()} and for the format template to work we need to pass a \code{numeric} value as an argument---i.e., obviously \Rfunction{sprintf()} does not ``know'' how to handle objects of the class we have just created! - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{print.myclass} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{) \{} - \hlkwd{sprintf}\hlstd{(}\hlstr{"[myclass] %.0f"}\hlstd{,} \hlkwd{as.numeric}\hlstd{(x))} -\hlstd{\}} -\end{alltt} -\end{kframe} -\end{knitrout} - -Once a specialized method exists for a class, it will be used for objects of this class. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{print}\hlstd{(a)} -\end{alltt} -\begin{verbatim} -## [1] "[myclass] 123" -\end{verbatim} -\begin{alltt} -\hlkwd{print}\hlstd{(}\hlkwd{as.numeric}\hlstd{(a))} -\end{alltt} -\begin{verbatim} -## [1] 123 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{explainbox} - The S3 class system is ``lightweight'' in that it adds very little additional computation load, but it is rather ``fragile'' in that most of the responsibility for consistency and correctness of the design---e.g., not messing up dispatch by redefining functions or loading a package exporting functions with the same name, etc., is not checked by the \Rlang interpreter. - -Defining a new S3 generic\index{generic method!S3 class system} is also quite simple. A generic method and a default method need to be created. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my_print} \hlkwb{<-} \hlkwa{function} \hlstd{(}\hlkwc{x}\hlstd{,} \hlkwc{...}\hlstd{) \{} - \hlkwd{UseMethod}\hlstd{(}\hlstr{"my_print"}\hlstd{, x)} - \hlstd{\}} - -\hlstd{my_print.default} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{,} \hlkwc{...}\hlstd{) \{} - \hlkwd{print}\hlstd{(}\hlkwd{class}\hlstd{(x))} - \hlkwd{print}\hlstd{(x, ...)} -\hlstd{\}} -\end{alltt} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{my_print}\hlstd{(}\hlnum{123}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] "numeric" -## [1] 123 -\end{verbatim} -\begin{alltt} -\hlkwd{my_print}\hlstd{(}\hlstr{"abc"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] "character" -## [1] "abc" -\end{verbatim} -\end{kframe} -\end{knitrout} - -Up to now, \Rfunction{my\_print()}, has no specialization. We now write one for data frames. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my_print.data.frame} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{,} \hlkwc{rows} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlkwc{...}\hlstd{) \{} - \hlkwd{print}\hlstd{(x[rows, ], ...)} - \hlkwd{invisible}\hlstd{(x)} -\hlstd{\}} -\end{alltt} -\end{kframe} -\end{knitrout} - -We add the second statement so that the function invisibly returns the whole data frame, rather than the lines printed. We now do a quick test of the function. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{my_print}\hlstd{(cars)} -\end{alltt} -\begin{verbatim} -## speed dist -## 1 4 2 -## 2 4 10 -## 3 7 4 -## 4 7 22 -## 5 8 16 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{my_print}\hlstd{(cars,} \hlnum{8}\hlopt{:}\hlnum{10}\hlstd{)} -\end{alltt} -\begin{verbatim} -## speed dist -## 8 10 26 -## 9 10 34 -## 10 11 17 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{b} \hlkwb{<-} \hlkwd{my_print}\hlstd{(cars)} -\end{alltt} -\begin{verbatim} -## speed dist -## 1 4 2 -## 2 4 10 -## 3 7 4 -## 4 7 22 -## 5 8 16 -\end{verbatim} -\begin{alltt} -\hlkwd{str}\hlstd{(b)} -\end{alltt} -\begin{verbatim} -## 'data.frame': 50 obs. of 2 variables: -## $ speed: num 4 4 7 7 8 9 10 10 10 11 ... -## $ dist : num 2 10 4 22 16 10 18 26 34 17 ... -\end{verbatim} -\begin{alltt} -\hlkwd{nrow}\hlstd{(b)} \hlopt{==} \hlkwd{nrow}\hlstd{(cars)} \hlcom{# was the whole data frame returned?} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\end{kframe} -\end{knitrout} - -%\begin{playground} -%1) What would be the most concise way of defining a \code{my\_print()} specialization for \code{matrix}? Write one, and test it. -%2) How would you modify the code of your \code{my\_print.matrix()} so that also the columns to print can be selected? -%\end{playground} -% -\end{explainbox} - -\section{Scope of names} -\index{names and scoping}\index{scoping rules}\index{namespaces} - -The visibility of names is determined by the \emph{scoping rules} of a language. The clearest, but not the only situation when scoping rules matter, is when objects with the same name coexist. In such a situation one will be accessible by its unqualified name and the other hidden but possibly accessible by qualifying the name with its name space. - -As the \Rlang language has few reserved words for which no redefinition is allowed, we should take care not to accidentally reuse names that are part of language. For example \code{pi} is a constant defined in \Rlang with the value of the mathematical constant $\pi$. If we use the same name for one of our variables, the original definition becomes hidden. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{pi} -\end{alltt} -\begin{verbatim} -## [1] 3.141593 -\end{verbatim} -\begin{alltt} -\hlstd{pi} \hlkwb{<-} \hlstr{"apple pie"} -\hlstd{pi} -\end{alltt} -\begin{verbatim} -## [1] "apple pie" -\end{verbatim} -\begin{alltt} -\hlkwd{rm}\hlstd{(pi)} -\hlstd{pi} -\end{alltt} -\begin{verbatim} -## [1] 3.141593 -\end{verbatim} -\begin{alltt} -\hlkwd{exists}\hlstd{(}\hlstr{"pi"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\end{kframe} -\end{knitrout} - -In the example above, the two variables are not defined in the same scope. In the example below we assign a new value to a variable we have earlier created within the same scope, and consequently the second assignment overwrites, rather than hides, the existing definition.\qRscoping{exists()} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.pie} \hlkwb{<-} \hlstr{"raspberry pie"} -\hlstd{my.pie} -\end{alltt} -\begin{verbatim} -## [1] "raspberry pie" -\end{verbatim} -\begin{alltt} -\hlstd{my.pie} \hlkwb{<-} \hlstr{"apple pie"} -\hlstd{my.pie} -\end{alltt} -\begin{verbatim} -## [1] "apple pie" -\end{verbatim} -\begin{alltt} -\hlkwd{rm}\hlstd{(my.pie)} -\hlkwd{exists}\hlstd{(}\hlstr{"my.pie"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\end{kframe} -\end{knitrout} - -An additional important thing to remember is that \Rlang packages define all objects within a \emph{namespace} with the same name as the package itself. This means that when we reuse a name defined in a package, its definition in the package does not get overwritten, but instead, only hidden and still accessible using the name \emph{qualified} by prepending the name of the package followed by two colons. - -If two packages define objects with the same name, then which one is visible depends on the order in which the packages were attached. To avoid confusion in such cases, in scripts is best to use the qualified names for calling both definitions. - -\section{Further reading} - -An\index{further reading!object oriented programming in R} in-depth discussion of object-oriented programming in \Rlang is outside the scope of this book. For the non-programmer user, a basic understanding of \Rlang classes can be useful, even if he or she does not intend to create new classes. This basic knowledge is what we covered in this chapter. Several books describe in detail the different class systems available and how to use them in \Rlang packages. For an in-depth treatment of the subject please consult the books \citebooktitle{Wickham2019} \autocite{Wickham2019} and \citebooktitle{Chambers2016} \autocite{Chambers2016}. - -The\index{further reading!package development} development of packages is thoroughly described in the book \citebooktitle{Wickham2015} \autocite{Wickham2015} and an in-depth description of \Rlang from the programming perspective is given in the book \citebooktitle{Wickham2019} \autocite{Wickham2019}. The book \citebooktitle{Chambers2016} \autocite{Chambers2016} covers both subjects. - - - - - -% !Rnw root = appendix.main.Rnw - - - -\chapter{New grammars of data}\label{chap:R:data} - -\begin{VF} -Essentially everything in S[R], for instance, a call to a function, is an S[R] object. One viewpoint is that S[R] has self-knowledge. This self-awareness makes a lot of things possible in S[R] that are not in other languages. - -\VA{Patrick J. Burns}{\emph{S Poetry}, 1998}\nocite{Burns1998} -\end{VF} - -%\dictum[Patrick J. Burns (1998) S Poetry. \url{http://www.burns-stat.com/documents/books/s-poetry/}]{Essentially everything in S[R], for instance, a call to a function, is an S[R] object. One viewpoint is that S[R] has self-knowledge. This self-awareness makes a lot of things possible in S[R] that are not in other languages.} - -\section{Aims of this chapter} - -Base \Rlang and the recommended extension packages (installed by default) include many functions for manipulating data. The \Rlang distribution supplies a complete set of functions and operators that allow all the usual data manipulation operations. These functions have stable and well-described behavior, so they should be preferred unless some of their limitations justify the use of alternatives defined in contributed packages. In the present chapter we aim at describing the new syntaxes introduced by the most popular of these contributed \Rlang extension packages aiming at changing (usually improving one aspect at the expense of another) in various ways how we can manipulate data in \Rlang. These independently developed packages extend the \Rlang language not only by adding new ``words'' to it but by supporting new ways of meaningfully connecting ``words''---i.e., providing new ``grammars'' for data manipulation. - -\section{Introduction} - -By reading previous chapters, you have already become familiar with base \Rlang classes, methods, functions and operators for storing and manipulating data. Most of these had been originally designed to perform optimally on rather small data sets \autocite[see][]{Matloff2011}. The \Rlang implementation has been improved over the years significantly in performance, and random-access memory in computers has become cheaper, making constraints imposed by the original design of \Rlang less limiting. On the other hand, the size of data sets has also increased. Some contributed packages have aimed at improving performance by relying on different compromises between usability, speed and reliability than used for base \Rlang. - -Package \pkgname{data.table} is the best example of an alternative implementation of data storage that maximizes the speed of processing for large data sets using a new semantics and requiring a new syntax. We could say that package \pkgname{data.table} is based on a ``grammar of data'' that is different from that in the \Rlang language. The compromise in this case has been the use of a less intuitive syntax, and by defaulting to call by reference of arguments instead of by copy, increasing the ``responsibility'' of the programmer with respect to not overwriting needed data. - -When a computation includes a chain of sequential operations, until \Rlang 4.1.0 if using base \Rlang, we could either store at each step in the computation the returned value in a variable, or nest multiple function calls. The first approach is verbose, but allows readable scripts, especially if variable names are wisely chosen. The second approach becomes very difficult too read as soon as there are more than one nesting level. Attempts to find an alternative syntax have borrowed the concept of data \emph{pipes} from Unix shells \autocite{Kernigham1981}. Interestingly, that it has been possible to write packages that define the operators needed to ``add'' this new syntax to \Rlang is a testimony to its flexibility and extensibility. Two packages, \pkgname{magrittr} and \pkgname{wrapr}, define operators for pipe-based syntax. In year 2021 a pipe operator was added to the \Rlang language itself. - -A different aspect of the \Rlang syntax is extraction of members from lists and data frames by name. Base \Rlang provides two different operators for this, \code{\$} and \code{[[]]}, with different syntax. These two operators also differ in how \emph{incomplete names} are handled. Package \pkgname{tibble} alters details of this syntax for an alternative to base \Rlang's data frames. Once again, a new syntax allows new functionality at the expense of partial incompatibility with base \Rlang syntax. Objects of class \code{"tb"} were also an attempt to improve performance compared to objects of class \code{"data.frame"}. \Rlang performance has improved in recent releases and currently, even though performance is not the same, depending on the operations and data, either \Rlang's data frames or tibbles perform better. In both cases performance depends much on how user code is written. - -Base \Rlang function \Rfunction{subset()} has an unusual syntax, as it evaluates the expression passed as the second argument within the namespace of the data frame passed as its first argument (see \ref{sec:calc:df:with} on page \pageref{sec:calc:df:with}). This saves typing at the expense of increasing the risk of bugs, as by reading the call to subset, it is not obvious which names are resolved in the environment of \code{subset()} and which ones within its first argument---i.e., as column names in the data frame. In addition, changes elsewhere in a script can change how a call to subset is interpreted. In reality, subset is a wrapper function built on top of the extraction operator \code{[]}. It is a convenience function, mostly intended to be used at the console, rather than in scripts or package code. To extract rows from a data frame it is always safer to use the \code{[ , ]} operator at the expense of verbosity. - -Package \pkgname{dplyr} provides convenience functions that work in a similar way as base \Rlang \code{subset()}, although in latest versions more safely. This package has suffered quite drastic changes during its development with respect to how to handle the dilemma caused by ``guessing'' of the environment where names should be looked up. There is no easy answer; a simplified syntax leads to ambiguity, and a fully specified syntax is verbose. Recent versions of the package introduced a terse syntax to achieve a concise way of specifying where to look up names. My opinion is that for code that needs to be highly reliable and produce reproducible results in the future, we should for the time being prefer base \Rlang. For code that is to be used once, or for which reproducibility can depend on the use of a specific (old or soon to be old) version of \pkgname{dplyr}, or which is not a burden to update, the conciseness and power of the new syntax will be an advantage. - -In this chapter you will become familiar with alternative ``grammars of data'' as implemented in some of the packages that enable new approaches to manipulating data in \Rlang. Packages \pkgname{tibble}, \pkgname{dplyr} and \pkgname{tidyr} are among those conforming the \pkgname{tidyverse}. It is controversial whether learning the use of these packages before or without first learning the base \Rlang language is preferable or not. I agree with Norman Matloff (\url{https://github.com/matloff/TidyverseSkeptic}) that it is not easier to teach the \pkgname{tidyverse} than base \Rlang. I also think that as base \Rlang is the foundation that supports these new grammars, their effective use depends on a good command of base \Rlang. - -As in previous chapters I will focus more on the available tools and how to use them than on their role in the analysis of data. The books \citebooktitle{Wickham2017} \autocite{Wickham2017} and \citebooktitle{Peng2016} \autocite{Peng2016} partly cover the same subjects from the perspective of data analysis. - -\section{Packages used in this chapter} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{install.packages}\hlstd{(learnrbook}\hlopt{::}\hlstd{pkgs_ch_data)} -\end{alltt} -\end{kframe} -\end{knitrout} - -To run the examples included in this chapter, you need first to load some packages from the library (see section \ref{sec:script:packages} on page \pageref{sec:script:packages} for details on the use of packages). - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{library}\hlstd{(learnrbook)} -\hlkwd{library}\hlstd{(tibble)} -\hlkwd{library}\hlstd{(magrittr)} -\hlkwd{library}\hlstd{(wrapr)} -\hlkwd{library}\hlstd{(stringr)} -\hlkwd{library}\hlstd{(dplyr)} -\hlkwd{library}\hlstd{(tidyr)} -\hlkwd{library}\hlstd{(lubridate)} -\end{alltt} -\end{kframe} -\end{knitrout} - -\section[Replacements for \texttt{data.frame}]{Replacements for \code{data.frame}} -\index{data frame!replacements|(} -\subsection{\pkgname{data.table}} -The function call semantics of the \Rlang language is that arguments are passed to functions by copy. If the arguments are modified within the code of a function, these changes are local to the function. If implemented naively, this semantic would impose a huge toll on performance, however, \Rlang in most situations only makes a copy in memory if and when the value changes. Consequently, for modern versions of \Rlang which are very good at avoiding unnecessary copying of objects, the normal \Rlang semantics has only a moderate negative impact on performance. However, this impact can still be a problem as modification is detected at the object level, and consequently \Rlang may make copies of large objects such as a whole data frame when only values in a single column or even just an attribute have changed. - -Functions and methods from package \pkgname{data.table} pass arguments by reference, avoiding making any copies. However, any assignments within these functions and methods modify the variable passed as an argument. This simplifies the needed tests for delayed copying and also by avoiding the need to make a copy of arguments, achieves the best possible performance. This is a specialized package but extremely useful when dealing with very large data sets. Writing user code, such as scripts, with \pkgname{data.table} requires a good understanding of the pass-by-reference semantics. Obviously, package \pkgname{data.table} makes no attempt at backwards compatibility with base-\Rlang \code{data.frame}. - -The \pkgname{tidyverse} is a collection of packages implementing a new grammar of data. In contrast to the design of package \pkgname{data.table}, the focus of the \pkgname{tidyverse} is not only performance. The design of this grammar has also considered usability. Design compromises have been resolved differently than in base \Rlang or \pkgname{data.table} and in some cases code written using base \Rlang can significantly outperform the \pkgname{tidyverse} and vice versa. There exist packages that implement a translation layer from the syntax of the \pkgname{tidyverse} into that of \pkgname{data.table} or relational database queries. - -\subsection{\pkgname{tibble}}\label{sec:data:tibble} -\index{tibble!differences with data frames|(} - -The authors of package \pkgname{tibble} describe their \Rclass{tbl} class as backwards compatible with \Rclass{data.frame} and make it a derived class. This backwards compatibility is only partial so in some situations data frames and tibbles are not equivalent. - -The class and methods that package \pkgname{tibble} defines lift some of the restrictions imposed by the design of base \Rlang data frames at the cost of creating some incompatibilities due to changed (improved) syntax for member extraction. Tibbles add support for ``columns'' of class \Rclass{list} and remove support for columns of class \Rclass{matrix}. Support of class \Rclass{list} can be very useful in some situations. Handling of attributes is also different, with no row names added by default. There are also differences in default behavior of both constructors and methods. \emph{Although, objects of class \Rclass{tbl} can be passed as arguments to functions that expect data frames as input, these functions are not guaranteed to work correctly with tibbles as a result of the differences in syntax.} Being newer and not part of the \Rlang language, the packages in the \pkgname{tidyverse} are evolving with rather frequent changes that require edits to the code of scripts and packages that use them. For example, when attributes set in tibbles by users are copied to returned values has changed with updates. - -\begin{warningbox} -It is easy to write code that will work correctly both with data frames and tibbles by avoiding constructs that behave differently. However, code that is syntactically correct according to the \Rlang language may fail if a tibble is used in place of a data frame. Only functions tested to work correctly with both tibbles and data frames can be relied upon as compatible. -\end{warningbox} - -\begin{explainbox} -The \Rmethod{print()} method for tibbles differs from that for data frames in that it outputs a header with the text ``A tibble:'' followed by the dimensions (number of rows $\times$ number of columns), adds under each column name an abbreviation of its class and instead of printing all rows and columns, a limited number of them are displayed. In addition, individual values are formatted more compactly and using color to highlight, for example, negative numbers in red. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{tibble}\hlstd{(}\hlkwc{A} \hlstd{= LETTERS[}\hlnum{1}\hlopt{:}\hlnum{5}\hlstd{],} \hlkwc{B} \hlstd{=} \hlopt{-}\hlnum{2}\hlopt{:}\hlnum{2}\hlstd{,} \hlkwc{C} \hlstd{=} \hlkwd{seq}\hlstd{(}\hlkwc{from} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{to} \hlstd{=} \hlnum{0}\hlstd{,} \hlkwc{length.out} \hlstd{=} \hlnum{5}\hlstd{))} -\end{alltt} -\begin{verbatim} -## # A tibble: 5 x 3 -## A B C -## -## 1 A -2 1 -## 2 B -1 0.75 -## 3 C 0 0.5 -## 4 D 1 0.25 -## 5 E 2 0 -\end{verbatim} -\end{kframe} -\end{knitrout} - -The default number of rows printed can be set with \Rfunction{options()}, that we set here to only three rows for most of this chapter. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{options}\hlstd{(}\hlkwc{tibble.print_max} \hlstd{=} \hlnum{3}\hlstd{,} \hlkwc{tibble.print_min} \hlstd{=} \hlnum{3}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} -\end{explainbox} - -\begin{infobox} -In their first incarnation, the name for \Rclass{tibble} was \code{data\_frame} (with a dash instead of a dot). The old name is still recognized, but its use should be avoided and \Rfunction{tibble()} used instead. One should be aware that although the constructor \Rfunction{tibble()} and conversion function \Rfunction{as\_tibble()}, as well as the test \Rfunction{is\_tibble()} use the name \Rclass{tibble}, the class attribute is named \code{tbl}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.tb} \hlkwb{<-} \hlkwd{tibble}\hlstd{(}\hlkwc{numbers} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{3}\hlstd{)} -\hlkwd{is_tibble}\hlstd{(my.tb)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{inherits}\hlstd{(my.tb,} \hlstr{"tibble"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\begin{alltt} -\hlkwd{class}\hlstd{(my.tb)} -\end{alltt} -\begin{verbatim} -## [1] "tbl_df" "tbl" "data.frame" -\end{verbatim} -\end{kframe} -\end{knitrout} - -Furthermore, by necessity, to support tibbles based on different underlying data sources, a further derived class is needed. In our example, as our tibble has an underlying \code{data.frame} class, the most derived class of \code{my.tb} is \Rclass{tbl\_df}. -\end{infobox} - -We start with the constructor and conversion methods. For this we will define our own diagnosis function (\emph{apply} functions are described in section \ref{sec:data:apply} on page \pageref{sec:data:apply}). - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{show_classes} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{) \{} - \hlkwd{cat}\hlstd{(} - \hlkwd{paste}\hlstd{(}\hlkwd{paste}\hlstd{(}\hlkwd{class}\hlstd{(x)[}\hlnum{1}\hlstd{],} - \hlstr{"containing:"}\hlstd{),} - \hlkwd{paste}\hlstd{(}\hlkwd{names}\hlstd{(x),} - \hlkwd{sapply}\hlstd{(x, class),} \hlkwc{collapse} \hlstd{=} \hlstr{", "}\hlstd{,} \hlkwc{sep} \hlstd{=} \hlstr{": "}\hlstd{),} - \hlkwc{sep} \hlstd{=} \hlstr{"\textbackslash{}n"}\hlstd{)} - \hlstd{)} -\hlstd{\}} -\end{alltt} -\end{kframe} -\end{knitrout} - -In the next two chunks we can see some of the differences. The \Rfunction{tibble()} constructor does not by default convert character data into factors, while the \Rfunction{data.frame()} constructor does. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.df} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{codes} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlstr{"B"}\hlstd{,} \hlstr{"C"}\hlstd{),} \hlkwc{numbers} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{3}\hlstd{,} \hlkwc{integers} \hlstd{=} \hlnum{1L}\hlopt{:}\hlnum{3L}\hlstd{)} -\hlkwd{is.data.frame}\hlstd{(my.df)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{is_tibble}\hlstd{(my.df)} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\begin{alltt} -\hlkwd{show_classes}\hlstd{(my.df)} -\end{alltt} -\begin{verbatim} -## data.frame containing: -## codes: character, numbers: integer, integers: integer -\end{verbatim} -\end{kframe} -\end{knitrout} - -Tibbles are data frames---or more formally class \Rclass{tibble} is derived from class \code{data.frame}. However, data frames are not tibbles. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.tb} \hlkwb{<-} \hlkwd{tibble}\hlstd{(}\hlkwc{codes} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlstr{"B"}\hlstd{,} \hlstr{"C"}\hlstd{),} \hlkwc{numbers} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{3}\hlstd{,} \hlkwc{integers} \hlstd{=} \hlnum{1L}\hlopt{:}\hlnum{3L}\hlstd{)} -\hlkwd{is.data.frame}\hlstd{(my.tb)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{is_tibble}\hlstd{(my.tb)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{show_classes}\hlstd{(my.tb)} -\end{alltt} -\begin{verbatim} -## tbl_df containing: -## codes: character, numbers: integer, integers: integer -\end{verbatim} -\end{kframe} -\end{knitrout} - -The \Rfunction{print()} method for tibbles, overrides the one defined for data frames. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{print}\hlstd{(my.df)} -\end{alltt} -\begin{verbatim} -## codes numbers integers -## 1 A 1 1 -## 2 B 2 2 -## 3 C 3 3 -\end{verbatim} -\begin{alltt} -\hlkwd{print}\hlstd{(my.tb)} -\end{alltt} -\begin{verbatim} -## # A tibble: 3 x 3 -## codes numbers integers -## -## 1 A 1 1 -## 2 B 2 2 -## 3 C 3 3 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{playground} -Tibbles and data frames differ in how they are printed when they have many rows or columns. 1) Construct a data frame and an equivalent tibble with at least 50 rows and then test how the output looks when they are printed. 2) Construct a data frame and an equivalent tibble with more columns than will fit in the width of the \R console and then test how the output looks when they are printed. -\end{playground} - -Data frames can be converted into tibbles with \code{as\_tibble()}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my_conv.tb} \hlkwb{<-} \hlkwd{as_tibble}\hlstd{(my.df)} -\hlkwd{is.data.frame}\hlstd{(my_conv.tb)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{is_tibble}\hlstd{(my_conv.tb)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{show_classes}\hlstd{(my_conv.tb)} -\end{alltt} -\begin{verbatim} -## tbl_df containing: -## codes: character, numbers: integer, integers: integer -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my_conv.df} \hlkwb{<-} \hlkwd{as.data.frame}\hlstd{(my.tb)} -\hlkwd{is.data.frame}\hlstd{(my_conv.df)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{is_tibble}\hlstd{(my_conv.df)} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\begin{alltt} -\hlkwd{show_classes}\hlstd{(my_conv.df)} -\end{alltt} -\begin{verbatim} -## data.frame containing: -## codes: character, numbers: integer, integers: integer -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{playground} -Look carefully at the result of the conversions. Why do we now have a data frame with \code{A} as \code{character} and a tibble with \code{A} as a \code{factor}? -\end{playground} - -\begin{explainbox} -Not all conversion functions work consistently when converting from a derived class into its parent. The reason for this is disagreement between authors on what the \emph{correct} behavior is based on logic and theory. You are not likely to be hit by this problem frequently, but it can be difficult to diagnose. - -We have already seen that calling \Rfunction{as.data.frame()} on a tibble strips the derived class attributes, returning a data frame. We will look at the whole character vector stored in the \code{"class"} attribute to demonstrate the difference. We also test the two objects for equality, in two different ways. Using the operator \code{==} tests for equivalent objects. Objects that contain the same data. Using \Rfunction{identical()} tests that objects are exactly the same, including attributes such as \code{"class"}, which we retrieve using \Rfunction{class()}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{class}\hlstd{(my.tb)} -\end{alltt} -\begin{verbatim} -## [1] "tbl_df" "tbl" "data.frame" -\end{verbatim} -\begin{alltt} -\hlkwd{class}\hlstd{(my_conv.df)} -\end{alltt} -\begin{verbatim} -## [1] "data.frame" -\end{verbatim} -\begin{alltt} -\hlstd{my.tb} \hlopt{==} \hlstd{my_conv.df} -\end{alltt} -\begin{verbatim} -## codes numbers integers -## [1,] TRUE TRUE TRUE -## [2,] TRUE TRUE TRUE -## [3,] TRUE TRUE TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{identical}\hlstd{(my.tb, my_conv.df)} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\end{kframe} -\end{knitrout} - -Now we derive from a tibble, and then attempt a conversion back into a tibble. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.xtb} \hlkwb{<-} \hlstd{my.tb} -\hlkwd{class}\hlstd{(my.xtb)} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"xtb"}\hlstd{,} \hlkwd{class}\hlstd{(my.xtb))} -\hlkwd{class}\hlstd{(my.xtb)} -\end{alltt} -\begin{verbatim} -## [1] "xtb" "tbl_df" "tbl" "data.frame" -\end{verbatim} -\begin{alltt} -\hlstd{my_conv_x.tb} \hlkwb{<-} \hlkwd{as_tibble}\hlstd{(my.xtb)} -\hlkwd{class}\hlstd{(my_conv_x.tb)} -\end{alltt} -\begin{verbatim} -## [1] "tbl_df" "tbl" "data.frame" -\end{verbatim} -\begin{alltt} -\hlstd{my.xtb} \hlopt{==} \hlstd{my_conv_x.tb} -\end{alltt} -\begin{verbatim} -## codes numbers integers -## [1,] TRUE TRUE TRUE -## [2,] TRUE TRUE TRUE -## [3,] TRUE TRUE TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{identical}\hlstd{(my.xtb, my_conv_x.tb)} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\end{kframe} -\end{knitrout} - -The two viewpoints on conversion functions are as follows. 1) The conversion function should return an object of its corresponding class, even if the argument is an object of a derived class, stripping the derived class. 2) If the object is of the class to be converted to, including objects of derived classes, then it should remain untouched. Base \Rlang follows, as far as I have been able to work out, approach 1). Packages in the \pkgname{tidyverse} follow approach 2). If in doubt about the behavior of some function, then you will need to do a test similar to the one used in this box. -\end{explainbox} - -There are additional important differences between the constructors \Rfunction{tibble()} and \code{data.frame()}. One of them is that in a call to \Rfunction{tibble()}, member variables (``columns'') being defined can be used in the definition of subsequent member variables. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{tibble}\hlstd{(}\hlkwc{a} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlkwc{b} \hlstd{=} \hlnum{5}\hlopt{:}\hlnum{1}\hlstd{,} \hlkwc{c} \hlstd{= a} \hlopt{+} \hlstd{b,} \hlkwc{d} \hlstd{= letters[a} \hlopt{+} \hlnum{1}\hlstd{])} -\end{alltt} -\begin{verbatim} -## # A tibble: 5 x 4 -## a b c d -## -## 1 1 5 6 b -## 2 2 4 6 c -## 3 3 3 6 d -## # ... with 2 more rows -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{playground} -What is the behavior if you replace \Rfunction{tibble()} by \Rfunction{data.frame()} in the statement above? -\end{playground} - -While data frame columns can be factors, vectors or matrices (with the same number of rows as the data frame), columns of tibbles can be factors, vectors or lists (with the same number of members as rows the tibble has). - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{tibble}\hlstd{(}\hlkwc{a} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlkwc{b} \hlstd{=} \hlnum{5}\hlopt{:}\hlnum{1}\hlstd{,} \hlkwc{c} \hlstd{=} \hlkwd{list}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlnum{2}\hlstd{,} \hlnum{3}\hlstd{,} \hlnum{4}\hlstd{,} \hlnum{5}\hlstd{))} -\end{alltt} -\begin{verbatim} -## # A tibble: 5 x 3 -## a b c -## -## 1 1 5 -## 2 2 4 -## 3 3 3 -## # ... with 2 more rows -\end{verbatim} -\end{kframe} -\end{knitrout} - -Which even allows a list of lists as a variable, or a list of vectors. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{tibble}\hlstd{(}\hlkwc{a} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlkwc{b} \hlstd{=} \hlnum{5}\hlopt{:}\hlnum{1}\hlstd{,} \hlkwc{c} \hlstd{=} \hlkwd{list}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlnum{1}\hlopt{:}\hlnum{2}\hlstd{,} \hlnum{0}\hlopt{:}\hlnum{3}\hlstd{, letters[}\hlnum{1}\hlopt{:}\hlnum{3}\hlstd{], letters[}\hlnum{3}\hlopt{:}\hlnum{1}\hlstd{]))} -\end{alltt} -\begin{verbatim} -## # A tibble: 5 x 3 -## a b c -## -## 1 1 5 -## 2 2 4 -## 3 3 3 -## # ... with 2 more rows -\end{verbatim} -\end{kframe} -\end{knitrout} -\index{tibble!differences with data frames|)} -\index{data frame!replacements|)} - -\section{Data pipes}\label{sec:data:pipes} -\index{chaining statements with \emph{pipes}|(} -The first obvious difference between scripts using some of the new grammars is the frequent use of \emph{pipes}. This is, however, mostly a question of preferences, as pipes can be used equally well with base \Rlang functions. Pipes have been at the core of shell scripting in \osname{Unix} since early stages of its design \autocite{Kernigham1981}. Within an OS, pipes are chains of small programs or ``tools'' that carry out a single well-defined task (e.g., \code{ed}, \code{gsub}, \code{grep}, \code{more}, etc.). Data such as text is described as flowing from a source into a sink through a series of steps at which a specific transformation takes place. In \osname{Unix}, sinks and sources are files, but files as an abstraction include all devices and connections for input or output, including physical ones as terminals and printers. The connection between steps in the pipe is usually implemented by means of temporary files. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -stdin | grep("abc") | more -\end{alltt} -\end{kframe} -\end{knitrout} - -How can \emph{pipes} exist within a single \Rlang script? When chaining functions into a pipe, data is passed between them through temporary \Rlang objects stored in memory, which are created and destroyed automatically. Conceptually there is little difference between Unix shell pipes and pipes in \Rlang scripts, but the implementations are different. - -What do pipes achieve in \Rlang scripts? They relieve the user from the responsibility of creating and deleting the temporary objects and of enforcing the sequential execution of the different steps. Pipes usually improve readability of scripts by allowing more concise code. - -Currently, two main implementations of pipes are available as \Rlang extensions, in packages \pkgnameNI{magrittr} and \pkgnameNI{wrapr} and since version 4.1.0 R has pipes as part of the language. - - -\subsection{Base R} -\index{pipes!base R|(} -\index{pipe operator} -We describe first R's pipe syntax based on R 4.2.0. -We start with a toy example first written using separate steps and traditional \Rlang syntax - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{data.in} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{10} -\hlstd{data.tmp} \hlkwb{<-} \hlkwd{sqrt}\hlstd{(data.in)} -\hlstd{data.out} \hlkwb{<-} \hlkwd{sum}\hlstd{(data.tmp)} -\hlkwd{rm}\hlstd{(data.tmp)} \hlcom{# clean up!} -\end{alltt} -\end{kframe} -\end{knitrout} - -next using nested function calls still using traditional \Rlang syntax - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{data.out} \hlkwb{<-} \hlkwd{sum}\hlstd{(}\hlkwd{sqrt}\hlstd{(data.in))} -\end{alltt} -\end{kframe} -\end{knitrout} - -written as a pipe using \Roperator{|>}, the chaining operator from current R. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{data.in |>} \hlkwd{sqrt}\hlstd{() |>} \hlkwd{sum}\hlstd{()} \hlkwb{->} \hlstd{data.out} -\end{alltt} -\end{kframe} -\end{knitrout} - -\begin{explainbox} -The \Roperator{|>} operator from base \Rlang takes two operands. The value returned by the \emph{lhs} (left-hand side) operand, which can be any \Rlang expression, is passed by default as the first argument to the \emph{rhs} operand, which must be a function accepting at least one argument. Consequently, in using this simple syntax, the function in the \emph{rhs} must have a suitable signature for the pipe to work. However, it is possible to pass piped arguments to a function by name to any parameter, including the first one, using an underscore (\code{\_}) as placeholder. - -Some base \Rlang functions like \code{subset()} have a signature that is natural for use in pipes by implicitly passing the piped value as argument to its first formal parameter. Other functions like \code{assign()} in many uses we would like to pass the piped value as argument to parameters other than the first. In such cases we can use \code{\_} as a placeholder and pass it by name. Alternatively, we can define a wrapper function, with the desired order for the formal parameters. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{value_assign} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{value}\hlstd{,} \hlkwc{x}\hlstd{,} \hlkwc{...}\hlstd{) \{} - \hlkwd{assign}\hlstd{(}\hlkwc{x} \hlstd{= x,} \hlkwc{value} \hlstd{= value, ...)} -\hlstd{\}} -\end{alltt} -\end{kframe} -\end{knitrout} - -\end{explainbox} - -\index{pipes!base R|)} - -\subsection{\pkgname{magrittr}} -\index{pipes!tidyverse|(} -\index{pipe operator} -Another set of operators for constructing pipes of \Rlang functions is implemented in package \pkgname{magrittr} and its availability preceded the native \Rlang pipe by a few years. This implementation is used in the \pkgname{tidyverse}. The pipe operator defined in package \pkgname{magrittr} is imported and re-exported by package \pkgname{dplyr}. - -The same example as in the previous section, now written as a pipe using \Roperator{\%>\%}, the pipe operator from package \pkgname{magrittr}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{data.in} \hlopt{%>%} \hlkwd{sqrt}\hlstd{()} \hlopt{%>%} \hlkwd{sum}\hlstd{()} \hlkwb{->} \hlstd{data.out} -\end{alltt} -\end{kframe} -\end{knitrout} - -Package \pkgname{magrittr} provides additional pipe operators, such as ``tee'' (\Roperator{\%T>\%}) to create a branch in the pipe, and \Roperator{\%<>\%} to apply the pipe by reference. These operators are much less frequently used than \Roperator{\%>\%}. -\index{pipes!tidyverse|)} - -\subsection{\pkgname{wrapr}} -\index{pipes!wrapr|(} -\index{dot-pipe operator} -The \Roperator{\%.>\%}, or ``dot-pipe'', operator from package \pkgname{wrapr}, allows expressions both on the rhs and lhs, and \emph{enforces the use of the dot} (\code{.}), as placeholder for the piped object. - -Rewritten using the dot-pipe operator, the pipe in the previous chunk becomes - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{data.in} \hlopt{%.>%} \hlkwd{sqrt}\hlstd{(.)} \hlopt{%.>%} \hlkwd{sum}\hlstd{(.)} \hlkwb{->} \hlstd{data1.out} -\end{alltt} -\end{kframe} -\end{knitrout} - -However, as operator \Roperator{\%>\%} from \pkgname{magrittr} recognizes the \code{.} placeholder without enforcing its use, the code below where \Roperator{\%.>\%} was replaced by \Roperator{\%>\%} returns the same value as that above. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{data.in} \hlopt{%>%} \hlkwd{sqrt}\hlstd{(.)} \hlopt{%>%} \hlkwd{sum}\hlstd{(.)} \hlkwb{->} \hlstd{data2.out} -\hlkwd{all.equal}\hlstd{(data1.out, data2.out)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\end{kframe} -\end{knitrout} - -To use operator \Roperator{|>} from \Rlang, we need to edit the code using a different placeholder (\code{\_}) and passing it as argument to parameters by name in the function calls on the \textit{rhs}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{data.in |>} \hlkwd{sqrt}\hlstd{(}\hlkwc{x} \hlstd{= _) |>} \hlkwd{sum}\hlstd{(}\hlkwc{x} \hlstd{= _)} \hlkwb{->} \hlstd{data3.out} -\hlkwd{all.equal}\hlstd{(data1.out, data3.out)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{explainbox} -The design of R's native pipes has benefited from the experience gathered by earlier implementations and being now part the language, we can expect it to become the reference one once its implementation is stable. The designers of the three implementations have to some extent disagreed in their decisions. Consequently, some differences are more than aesthetic. - -The syntax of operators \Roperator{|>} and \Roperator{\%>\%} is not identical. With R's \Roperator{|>} the placeholder \code{\_} can be only passed to parameters by name, while with \pkgname{magrittr}'s \Roperator{\%>\%} the placeholder \code{.} can be used to pass arguments both by name and by position (as of R 4.2.0). With operator \Roperator{\%.>\%} the use of the placeholder \code{.} is mandatory, and it can be passed by name of by position to the function call on the \textit{rhs}. - -In the case of R, the pipe is conceptually a substitution with no alteration of the syntax or evaluation order. R's native pipes requires, consistently with \Rlang in all other situations, that functions that are to be evaluated use the parenthesis syntax, while \pkgname{magrittr} allows the parentheses to be missing when the piped argument is the only one passed to the function call on \textit{rhs}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{data.in} \hlopt{%>%} \hlstd{sqrt} \hlopt{%>%} \hlstd{sum} \hlkwb{->} \hlstd{data.out} -\end{alltt} -\end{kframe} -\end{knitrout} -\end{explainbox} - -\begin{warningbox} -In some situations the semantics of the operator \Roperator{\%>\%} from package \pkgname{magrittr} can behave unexpectedly. One example is attempting to use \Rfunction{assign()} in a pipe. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{data.in |>} \hlkwd{assign}\hlstd{(}\hlkwc{x} \hlstd{=} \hlstr{"data4.out"}\hlstd{,} \hlkwc{value} \hlstd{= _)} -\hlkwd{all.equal}\hlstd{(data.in, data4.out)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\end{kframe} -\end{knitrout} - -Named arguments are also supported with the dot-pipe operator from \pkgname{wrapr} resulting in the expected behavior. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{data.in} \hlopt{%.>%} \hlkwd{assign}\hlstd{(}\hlkwc{x} \hlstd{=} \hlstr{"data5.out"}\hlstd{,} \hlkwc{value} \hlstd{= .)} -\hlkwd{all.equal}\hlstd{(data.in, data5.out)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\end{kframe} -\end{knitrout} - -In contrast, the pipe operator (\Roperator{\%>\%}) from package \pkgname{magrittr} silently and unexpectedly fails to create the variable for the same example. This can be a problem when the name passed as argument to \Rfunction{assign()}'s parameter \code{x} is a computed value, otherwise it is possible to use the \Roperator{->} to assign the value. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{data.in} \hlopt{%>%} \hlkwd{assign}\hlstd{(}\hlkwc{x} \hlstd{=} \hlstr{"data6.out"}\hlstd{,} \hlkwc{value} \hlstd{= .)} -\hlkwa{if} \hlstd{(}\hlkwd{exists}\hlstd{(}\hlstr{"data6.out"}\hlstd{)) \{} - \hlkwd{all.equal}\hlstd{(data.in, data6.out)} -\hlstd{\}} \hlkwa{else} \hlstd{\{} - \hlkwd{print}\hlstd{(}\hlstr{"'data6.out' not found!"}\hlstd{)} -\hlstd{\}} -\end{alltt} -\begin{verbatim} -## [1] "'data6.out' not found!" -\end{verbatim} -\end{kframe} -\end{knitrout} -\end{warningbox} - - -The \index{pipes!expressions in rhs} dot-pipe operator \Roperator{\%.>\%} from \pkgname{wrapr} allows us to use the placeholder \code{.} in expressions on its \emph{rhs} in addition to in function calls - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{data.in} \hlopt{%.>%} \hlstd{(.}\hlopt{^}\hlnum{2}\hlstd{)} \hlkwb{->} \hlstd{data7.out} -\end{alltt} -\end{kframe} -\end{knitrout} - -meanwhile operators \Roperator{|>} and \Roperator{\%>\%} do not support expressions, only function call syntax on their \textit{rhs}, forcing us to call operators with parenthesis syntax and named arguments - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{data.in |>} \hlkwd{`^`}\hlstd{(}\hlkwc{e1} \hlstd{= _,} \hlkwc{e2} \hlstd{=} \hlnum{2}\hlstd{)} \hlkwb{->} \hlstd{data8.out} -\hlkwd{all.equal}\hlstd{(data7.out, data8.out)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\end{kframe} -\end{knitrout} - -or - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{data.in} \hlopt{%>%} \hlkwd{`^`}\hlstd{(}\hlkwc{e1} \hlstd{= .,} \hlkwc{e2} \hlstd{=} \hlnum{2}\hlstd{)} \hlkwb{->} \hlstd{data9.out} -\hlkwd{all.equal}\hlstd{(data7.out, data9.out)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\end{kframe} -\end{knitrout} - -In conclusion, \Rlang syntax for expressions is preserved when using the dot-pipe operator, with the only caveat that because of the higher precedence of the \Roperator{\%.>\%} operator, we need to ``protect'' bare expressions containing other operators by enclosing them in parentheses. In the examples above we showed a simple expression so that it could be easily converted into a function call. The \Roperator{\%.>\%} operator supports also more complex expressions, even with multiple uses of the placeholder. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{data.in} \hlopt{%.>%} \hlstd{(.}\hlopt{^}\hlnum{2} \hlopt{+} \hlkwd{sqrt}\hlstd{(.} \hlopt{+} \hlnum{1}\hlstd{))} -\end{alltt} -\begin{verbatim} -## [1] 2.414214 5.732051 11.000000 18.236068 27.449490 38.645751 -## [7] 51.828427 67.000000 84.162278 103.316625 -\end{verbatim} -\end{kframe} -\end{knitrout} - -Under-the-hood, the implementations of operators \Roperator{|>} and \Roperator{\%>\%} and \Roperator{\%.>\%} are different, with \Roperator{|>} expected to have the best performance, followed by \Roperator{\%.>\%} and \Roperator{\%>\%} being slowest. As implementations evolve performance depends on versions. However, \Roperator{|>} being part of \Rlang is likely to remain the fastest. - -Being part of the \Rlang language, \Roperator{|>} will remain available and backwards compatible, while packages could be abandoned or redesigned by their maintainers. For this reason, it is preferable to use the \Roperator{|>} in scripts or code expected to be reused, if not requiring compatibility with \Rlang versions earlier than 4.2.0. - -In the rest of the book when possible we will use \emph{R's pipes} and otherwise \emph{dot pipes} and avoid implicit (''invisible'') passing of arguments in examples to ensure easier understanding. In most cases the examples can be easily rewritten using operator \Roperator{\%>\%}. - -Pipes can make scripts visually more compact than the use of assignments of intermediate results to temporary variables. What makes pipes most convenient is the availability of classes, functions, and methods defined in \pkgnameNI{tidyr}, \pkgnameNI{dplyr}, and other packages from the \pkgname{tidyverse}. Debugging pipes usually requires dividing them, with one approach being the insertion of calls to \Rfunction{print()}. This is possible, because \Rfunction{print()} returns its input invisibly in addition to displaying it. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{data.in |>} \hlkwd{print}\hlstd{() |>} \hlkwd{sqrt}\hlstd{() |>} \hlkwd{print}\hlstd{() |>} \hlkwd{sum}\hlstd{() |>} \hlkwd{print}\hlstd{()} \hlkwb{->} \hlstd{data10.out} -\end{alltt} -\begin{verbatim} -## [1] 1 2 3 4 5 6 7 8 9 10 -## [1] 1.000000 1.414214 1.732051 2.000000 2.236068 2.449490 2.645751 2.828427 -## [9] 3.000000 3.162278 -## [1] 22.46828 -\end{verbatim} -\begin{alltt} -\hlkwd{all.equal}\hlstd{(data.out, data10.out)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\end{kframe} -\end{knitrout} -\index{pipes!wrapr|)} -\index{chaining statements with \emph{pipes}|)} - -\section{Reshaping with \pkgname{tidyr}} -\index{reshaping tibbles|(} -\index{long-form- and wide-form tabular data} -Data stored in table-like formats can be arranged in different ways. In base \Rlang most model fitting functions and the \Rfunction{plot()} method using (model) formulas and accepting data frames, expect data to be arranged in ``long form'' so that each row in a data frame corresponds to a single observation (or measurement) event on a subject. Each column corresponds to a different measured feature, time of measurement, or a factor describing a classification of subjects according to treatments or features of the experimental design (e.g., blocks). Covariates measured on the same subject at an earlier point in time may also be stored in a column. Data arranged in \emph{long form} has been nicknamed as ``tidy'' and this is reflected in the name given to the \pkgname{tidyverse} suite of packages. Data in which columns correspond to measurement events is described as being in a \emph{wide form}. - -Although long-form data is and has been the most commonly used arrangement of data in \Rlang, manipulation of such data has not always been possible with concise \Rlang statements. The packages in the \pkgname{tidyverse} provide convenience functions to simplify coding of data manipulation, which in some cases, have, in addition, improved performance compared to base \Rlang---i.e., it is possible to code the same operations using only base \Rlang, but may require more and/or more verbose statements. - -Real-world data is rather frequently stored in wide format or even ad hoc formats, so in many cases the first task in data analysis is to reshape the data. Package \pkgname{tidyr} provides functions for reshaping data from wide to long form and \emph{vice versa} (replacing the older packages \pkgname{reshape} and \pkgname{reshape2}). - -%% replace iris with an example that is really ``wide'' -We use in examples below the \Rdata{iris} data set included in base \Rlang. Some operations on \Rlang \code{data.frame} objects with \pkgname{tidyverse} packages will return \code{data.frame} objects while others will return tibbles---i.e., \Rclass{"tb"} objects. Consequently it is safer to first convert into tibbles the data frames we will work with. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{iris.tb} \hlkwb{<-} \hlkwd{as_tibble}\hlstd{(iris)} -\end{alltt} -\end{kframe} -\end{knitrout} - -Function \Rfunction{pivot\_longer()} converts data from wide form into long form (or ''tidy''). We use \code{pivot\_longer()} to obtain a long-form tibble. By comparing \code{iris.tb} with \code{long\_iris.tb} we can appreciate how \Rfunction{pivot\_longer()} reshaped its input. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{head}\hlstd{(iris.tb,} \hlnum{2}\hlstd{)} -\end{alltt} -\begin{verbatim} -## # A tibble: 2 x 5 -## Sepal.Length Sepal.Width Petal.Length Petal.Width Species -## -## 1 5.1 3.5 1.4 0.2 setosa -## 2 4.9 3 1.4 0.2 setosa -\end{verbatim} -\begin{alltt} -\hlstd{iris.tb |>} - \hlkwd{gather}\hlstd{(}\hlkwc{data} \hlstd{= _,} \hlkwc{key} \hlstd{= part,} \hlkwc{value} \hlstd{= dimension,} \hlopt{-}\hlstd{Species)} \hlkwb{->} \hlstd{long_iris.tb} -\hlstd{long_iris.tb} -\end{alltt} -\begin{verbatim} -## # A tibble: 600 x 3 -## Species part dimension -## -## 1 setosa Sepal.Length 5.1 -## 2 setosa Sepal.Length 4.9 -## 3 setosa Sepal.Length 4.7 -## # ... with 597 more rows -\end{verbatim} -\end{kframe} -\end{knitrout} - -In this statement, we can see the convenience of dispensing with quotation marks for the new (\code{part} and \code{dimension}) and existing (\code{Species}) column names. Use of bare names as above triggers errors when package code is tested, requiring the use of a less convenient but more consistent and reliable syntax instead. As it is also possible to pass column names as strings but not together with the subtraction operator, equivalent code becomes more verbose but with the intention explicit and easier to grasp. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{long_iris.tb_1} \hlkwb{<-} \hlkwd{gather}\hlstd{(iris.tb,} \hlkwc{key} \hlstd{=} \hlstr{"part"}\hlstd{,} \hlkwc{value} \hlstd{=} \hlstr{"dimension"}\hlstd{,} \hlkwd{setdiff}\hlstd{(}\hlkwd{colnames}\hlstd{(iris.tb),} \hlstr{"Species"}\hlstd{))} -\hlstd{long_iris.tb_1} -\end{alltt} -\begin{verbatim} -## # A tibble: 600 x 3 -## Species part dimension -## -## 1 setosa Sepal.Length 5.1 -## 2 setosa Sepal.Length 4.9 -## 3 setosa Sepal.Length 4.7 -## # ... with 597 more rows -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{warningbox} -\index{function arguments in the tidyverse} -Altering \Rlang's normal interpretation of the name passed as an argument to \code{key} and \code{value} prevents these arguments from being recognized as the name of a variable in the calling environment. We need to use a new operator \Roperator{!!} to restore the normal \Rlang behavior. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{part} \hlkwb{<-} \hlstr{"not part"} -\hlstd{long_iris.tb_2} \hlkwb{<-} \hlkwd{gather}\hlstd{(iris.tb,} \hlkwc{key} \hlstd{=} \hlopt{!!}\hlstd{part,} \hlkwc{value} \hlstd{= dimension,} \hlopt{-}\hlstd{Species)} -\hlstd{long_iris.tb_2} -\end{alltt} -\begin{verbatim} -## # A tibble: 600 x 3 -## Species `not part` dimension -## -## 1 setosa Sepal.Length 5.1 -## 2 setosa Sepal.Length 4.9 -## 3 setosa Sepal.Length 4.7 -## # ... with 597 more rows -\end{verbatim} -\end{kframe} -\end{knitrout} - -This syntax has been recently subject to debate and led to John Mount developing package \pkgname{seplyr} which provides wrappers on functions and methods from \pkgname{dplyr} that respect standard evaluation (SE). At the time of writing, \pkgname{seplyr} can be considered as experimental. -\end{warningbox} - -\begin{playground} -To better understand why I added \code{-Species} as an argument, edit the code by removing it, and execute the statement to see how the returned tibble is different. -\end{playground} - -For the reverse operation, converting from long form to wide form, we use \Rfunction{spread()}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{spread}\hlstd{(long_iris.tb,} \hlkwc{key} \hlstd{=} \hlkwd{c}\hlstd{(}\hlopt{!!}\hlstd{part, Species),} \hlkwc{value} \hlstd{= dimension)} \hlcom{# does not work!!} -\end{alltt} -\end{kframe} -\end{knitrout} - -\begin{warningbox} - Starting from version 1.0.0 of \pkgname{tidyr}, \Rfunction{gather()} and \Rfunction{spread()} are deprecated and replaced by \Rfunction{pivot\_longer()} and \Rfunction{pivot\_wider()}. These new functions use a different syntax but are not yet fully stable. -\end{warningbox} - -\index{reshaping tibbles|)} - -\section{Data manipulation with \pkgname{dplyr}} -\index{data manipulation in the tidyverse|(} -\begin{warningbox} -The first advantage a user of the \pkgname{dplyr} functions and methods sees is the completeness of the set of operations supported and the symmetry and consistency among the different functions. A second advantage is that almost all the functions are defined not only for objects of class \Rclass{tibble}, but also for objects of class \code{data.table} (packages \pkgname{dtplyr}) and for SQL databases (\pkgname{dbplyr}), with consistent syntax (see also section \ref{sec:data:db} on page \pageref{sec:data:db}). A further variant exists in package \pkgname{seplyr}, supporting a different syntax stemming from the use of ``standard evaluation'' (SE) instead of non-standard evaluation (NSE). A downside of \pkgname{dplyr} and much of the \pkgname{tidyverse} is that the syntax is not yet fully stable. Additionally, some function and method names either override those in base \Rlang or clash with names used in other packages. \Rlang itself is extremely stable and expected to remain forward and backward compatible for a long time. For code intended to remain in use for years, the fewer packages it depends on, the less maintenance it will need. When using the \pkgname{tidyverse} we need to be prepared to revise our own dependent code after any major revision to the \pkgname{tidyverse} packages we may use. -\end{warningbox} - -\begin{infobox} -A new package, \pkgname{poorman}, implements many of the same words and grammar as \pkgname{dplyr} using pure \Rlang in the implementation instead of compiled \Cpplang and \Clang code. This light-weight approach could be useful when dealing with relatively small data sets or when the use of \Rlang's data frames instead of tibbles is preferred. -\end{infobox} - -\subsection{Row-wise manipulations} -\index{row-wise operations on data|(} - -Assuming that the data is stored in long form, row-wise operations are operations combining values from the same observation event---i.e., calculations within a single row of a data frame or tibble. Using functions \Rfunction{mutate()} and \Rfunction{transmute()} we can obtain derived quantities by combining different variables, or variables and constants, or applying a mathematical transformation. We add new variables (columns) retaining existing ones using \Rfunction{mutate()} or we assemble a new tibble containing only the columns we explicitly specify using \Rfunction{transmute()}. - -\begin{explainbox} -Different from usual \Rlang syntax, with \Rfunction{tibble()}, \Rfunction{mutate()} and \Rfunction{transmute()} we can use values passed as arguments, in the statements computing the values passed as later arguments. In many cases, this allows more concise and easier to understand code. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{tibble}\hlstd{(}\hlkwc{a} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlkwc{b} \hlstd{=} \hlnum{2} \hlopt{*} \hlstd{a)} -\end{alltt} -\begin{verbatim} -## # A tibble: 5 x 2 -## a b -## -## 1 1 2 -## 2 2 4 -## 3 3 6 -## # ... with 2 more rows -\end{verbatim} -\end{kframe} -\end{knitrout} -\end{explainbox} - -Continuing with the example from the previous section, we most likely would like to split the values in variable \code{part} into \code{plant\_part} and \code{part\_dim}. We use \code{mutate()} from \pkgname{dplyr} and \Rfunction{str\_extract()} from \pkgname{stringr}. We use regular expressions as arguments passed to \code{pattern}. We do not show it here, but \Rfunction{mutate()} can be used with variables of any \code{mode}, and calculations can involve values from several columns. It is even possible to operate on values applying a lag or, in other words, using rows displaced relative to the current one. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{long_iris.tb} \hlopt{%.>%} - \hlkwd{mutate}\hlstd{(.,} - \hlkwc{plant_part} \hlstd{=} \hlkwd{str_extract}\hlstd{(part,} \hlstr{"^[:alpha:]*"}\hlstd{),} - \hlkwc{part_dim} \hlstd{=} \hlkwd{str_extract}\hlstd{(part,} \hlstr{"[:alpha:]*$"}\hlstd{))} \hlkwb{->} \hlstd{long_iris.tb} -\hlstd{long_iris.tb} -\end{alltt} -\begin{verbatim} -## # A tibble: 600 x 5 -## Species part dimension plant_part part_dim -## -## 1 setosa Sepal.Length 5.1 Sepal Length -## 2 setosa Sepal.Length 4.9 Sepal Length -## 3 setosa Sepal.Length 4.7 Sepal Length -## # ... with 597 more rows -\end{verbatim} -\end{kframe} -\end{knitrout} - -In the next few chunks, we print the returned values rather than saving them in variables. In normal use, one would combine these functions into a pipe using operator \Roperator{\%.>\%} (see section \ref{sec:data:pipes} on page \pageref{sec:data:pipes}). - -Function \Rfunction{arrange()} is used for sorting the rows---makes sorting a data frame or tibble simpler than by using \Rfunction{sort()} and \Rfunction{order()}. Here we sort the tibble \code{long\_iris.tb} based on the values in three of its columns. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{arrange}\hlstd{(long_iris.tb, Species, plant_part, part_dim)} -\end{alltt} -\begin{verbatim} -## # A tibble: 600 x 5 -## Species part dimension plant_part part_dim -## -## 1 setosa Petal.Length 1.4 Petal Length -## 2 setosa Petal.Length 1.4 Petal Length -## 3 setosa Petal.Length 1.3 Petal Length -## # ... with 597 more rows -\end{verbatim} -\end{kframe} -\end{knitrout} - -Function \Rfunction{filter()} can be used to extract a subset of rows---similar to \Rfunction{subset()} but with a syntax consistent with that of other functions in the \pkgname{tidyverse}. In this case, 300 out of the original 600 rows are retained. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{filter}\hlstd{(long_iris.tb, plant_part} \hlopt{==} \hlstr{"Petal"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## # A tibble: 300 x 5 -## Species part dimension plant_part part_dim -## -## 1 setosa Petal.Length 1.4 Petal Length -## 2 setosa Petal.Length 1.4 Petal Length -## 3 setosa Petal.Length 1.3 Petal Length -## # ... with 297 more rows -\end{verbatim} -\end{kframe} -\end{knitrout} - -Function \Rfunction{slice()} can be used to extract a subset of rows based on their positions---an operation that in base \Rlang would use positional (numeric) indexes with the \code{[ , ]} operator: \code{long\_iris.tb[1:5, ]}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{slice}\hlstd{(long_iris.tb,} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{)} -\end{alltt} -\begin{verbatim} -## # A tibble: 5 x 5 -## Species part dimension plant_part part_dim -## -## 1 setosa Sepal.Length 5.1 Sepal Length -## 2 setosa Sepal.Length 4.9 Sepal Length -## 3 setosa Sepal.Length 4.7 Sepal Length -## # ... with 2 more rows -\end{verbatim} -\end{kframe} -\end{knitrout} - -Function \Rfunction{select()} can be used to extract a subset of columns--this would be done with positional (numeric) indexes with \code{[ , ]} in base \Rlang, passing them to the second argument as numeric indexes or column names in a vector. Negative indexes in base \Rlang can only be numeric, while \Rfunction{select()} accepts bare column names prepended with a minus for exclusion. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{select}\hlstd{(long_iris.tb,} \hlopt{-}\hlstd{part)} -\end{alltt} -\begin{verbatim} -## # A tibble: 600 x 4 -## Species dimension plant_part part_dim -## -## 1 setosa 5.1 Sepal Length -## 2 setosa 4.9 Sepal Length -## 3 setosa 4.7 Sepal Length -## # ... with 597 more rows -\end{verbatim} -\end{kframe} -\end{knitrout} - -In addition, \Rfunction{select()} as other functions in \pkgname{dplyr} accept ``selectors'' returned by functions \Rfunction{starts\_with()}, \Rfunction{ends\_with()}, \Rfunction{contains()}, and \Rfunction{matches()} to extract or retain columns. For this example we use the ``wide''-shaped \code{iris.tb} instead of \code{long\_iris.tb}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{select}\hlstd{(iris.tb,} \hlopt{-}\hlkwd{starts_with}\hlstd{(}\hlstr{"Sepal"}\hlstd{))} -\end{alltt} -\begin{verbatim} -## # A tibble: 150 x 3 -## Petal.Length Petal.Width Species -## -## 1 1.4 0.2 setosa -## 2 1.4 0.2 setosa -## 3 1.3 0.2 setosa -## # ... with 147 more rows -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{select}\hlstd{(iris.tb, Species,} \hlkwd{matches}\hlstd{(}\hlstr{"pal"}\hlstd{))} -\end{alltt} -\begin{verbatim} -## # A tibble: 150 x 3 -## Species Sepal.Length Sepal.Width -## -## 1 setosa 5.1 3.5 -## 2 setosa 4.9 3 -## 3 setosa 4.7 3.2 -## # ... with 147 more rows -\end{verbatim} -\end{kframe} -\end{knitrout} - -Function \Rfunction{rename()} can be used to rename columns, whereas base \Rlang requires the use of both \Rfunction{names()} and \Rfunction{names<-()} and \emph{ad hoc} code to match new and old names. As shown below, the syntax for each column name to be changed is \code{ = }. The two names can be given either as bare names as below or as character strings. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{rename}\hlstd{(long_iris.tb,} \hlkwc{dim} \hlstd{= dimension)} -\end{alltt} -\begin{verbatim} -## # A tibble: 600 x 5 -## Species part dim plant_part part_dim -## -## 1 setosa Sepal.Length 5.1 Sepal Length -## 2 setosa Sepal.Length 4.9 Sepal Length -## 3 setosa Sepal.Length 4.7 Sepal Length -## # ... with 597 more rows -\end{verbatim} -\end{kframe} -\end{knitrout} -\index{row-wise operations on data|)} - -\subsection{Group-wise manipulations} -\index{group-wise operations on data|(} - -Another important operation is to summarize quantities by groups of rows. Contrary to base \Rlang, the grammar of data manipulation, splits this operation in two: the setting of the grouping, and the calculation of summaries. This simplifies the code, making it more easily understandable when using pipes compared to the approach of base \Rlang \Rfunction{aggregate()}, and it also makes it easier to summarize several columns in a single operation. - -\begin{warningbox} -It is important to be aware that grouping is persistent, and may also affect other operations on the same data frame or tibble if it is saved or piped and reused. Grouping is invisible to users except for its side effects and because of this can lead to erroneous and surprising results from calculations. Do not save grouped tibbles or data frames, and always make sure that inputs and outputs, at the head and tail of a pipe, are not grouped, by using \Rfunction{ungroup()} when needed. -\end{warningbox} - -The first step is to use \Rfunction{group\_by()} to ``tag'' a tibble with the grouping. We create a \emph{tibble} and then convert it into a \emph{grouped tibble}. Once we have a grouped tibble, function \Rfunction{summarise()} will recognize the grouping and use it when the summary values are calculated. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{tibble}\hlstd{(}\hlkwc{numbers} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{9}\hlstd{,} \hlkwc{letters} \hlstd{=} \hlkwd{rep}\hlstd{(letters[}\hlnum{1}\hlopt{:}\hlnum{3}\hlstd{],} \hlnum{3}\hlstd{))} \hlopt{%.>%} - \hlkwd{group_by}\hlstd{(., letters)} \hlopt{%.>%} - \hlkwd{summarise}\hlstd{(.,} - \hlkwc{mean_numbers} \hlstd{=} \hlkwd{mean}\hlstd{(numbers),} - \hlkwc{median_numbers} \hlstd{=} \hlkwd{median}\hlstd{(numbers),} - \hlkwc{n} \hlstd{=} \hlkwd{n}\hlstd{())} -\end{alltt} -\begin{verbatim} -## # A tibble: 3 x 4 -## letters mean_numbers median_numbers n -## -## 1 a 4 4 3 -## 2 b 5 5 3 -## 3 c 6 6 3 -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{warningbox} -How is grouping implemented for data frames and tibbles?\index{grouping!implementation in tidyverse} In our case as our tibble belongs to class \code{tibble\_df}, grouping adds \code{grouped\_df} as the most derived class. It also adds several attributes with the grouping information in a format suitable for fast selection of group members. To demonstrate this, we need to make an exception to our recommendation above and save a grouped tibble to a variable. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.tb} \hlkwb{<-} \hlkwd{tibble}\hlstd{(}\hlkwc{numbers} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{9}\hlstd{,} \hlkwc{letters} \hlstd{=} \hlkwd{rep}\hlstd{(letters[}\hlnum{1}\hlopt{:}\hlnum{3}\hlstd{],} \hlnum{3}\hlstd{))} -\hlkwd{is.grouped_df}\hlstd{(my.tb)} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\begin{alltt} -\hlkwd{class}\hlstd{(my.tb)} -\end{alltt} -\begin{verbatim} -## [1] "tbl_df" "tbl" "data.frame" -\end{verbatim} -\begin{alltt} -\hlkwd{names}\hlstd{(}\hlkwd{attributes}\hlstd{(my.tb))} -\end{alltt} -\begin{verbatim} -## [1] "class" "row.names" "names" -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my_gr.tb} \hlkwb{<-} \hlkwd{group_by}\hlstd{(}\hlkwc{.data} \hlstd{= my.tb, letters)} -\hlkwd{is.grouped_df}\hlstd{(my_gr.tb)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{class}\hlstd{(my_gr.tb)} -\end{alltt} -\begin{verbatim} -## [1] "grouped_df" "tbl_df" "tbl" "data.frame" -\end{verbatim} -\end{kframe} -\end{knitrout} -% allow page break -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{names}\hlstd{(}\hlkwd{attributes}\hlstd{(my_gr.tb))} -\end{alltt} -\begin{verbatim} -## [1] "class" "row.names" "names" "groups" -\end{verbatim} -\begin{alltt} -\hlkwd{setdiff}\hlstd{(}\hlkwd{attributes}\hlstd{(my_gr.tb),} \hlkwd{attributes}\hlstd{(my.tb))} -\end{alltt} -\begin{verbatim} -## $class -## [1] "grouped_df" "tbl_df" "tbl" "data.frame" -## -## $groups -## # A tibble: 3 x 2 -## letters .rows -## > -## 1 a [3] -## 2 b [3] -## 3 c [3] -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my_ugr.tb} \hlkwb{<-} \hlkwd{ungroup}\hlstd{(my_gr.tb)} -\hlkwd{class}\hlstd{(my_ugr.tb)} -\end{alltt} -\begin{verbatim} -## [1] "tbl_df" "tbl" "data.frame" -\end{verbatim} -\begin{alltt} -\hlkwd{names}\hlstd{(}\hlkwd{attributes}\hlstd{(my_ugr.tb))} -\end{alltt} -\begin{verbatim} -## [1] "class" "row.names" "names" -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{all}\hlstd{(my.tb} \hlopt{==} \hlstd{my_gr.tb)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{all}\hlstd{(my.tb} \hlopt{==} \hlstd{my_ugr.tb)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{identical}\hlstd{(my.tb, my_gr.tb)} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\begin{alltt} -\hlkwd{identical}\hlstd{(my.tb, my_ugr.tb)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\end{kframe} -\end{knitrout} - -The tests above show that members are in all cases the same as operator \Roperator{==} tests for equality at each position in the tibble but not the attributes, while attributes, including \code{class} differ between normal tibbles and grouped ones and so they are not \emph{identical} objects. - -If we replace \code{tibble} by \code{data.frame} in the first statement, and rerun the chunk, the result of the last statement in the chunk is \code{FALSE} instead of \code{TRUE}. At the time of writing starting with a \code{data.frame} object, applying grouping with \Rfunction{group\_by()} followed by ungrouping with \Rfunction{ungroup()} has the side effect of converting the data frame into a tibble. This is something to be very much aware of, as there are differences in how the extraction operator \Roperator{[ , ]} behaves in the two cases. The safe way to write code making use of functions from \pkgname{dplyr} and \pkgname{tidyr} is to always use tibbles instead of data frames. -\end{warningbox} -\index{group-wise operations on data|)} - -\subsection{Joins} -\index{joins between data sources|(} -\index{merging data from two tibbles|(} -Joins allow us to combine two data sources which share some variables. Variables in common are used to match the corresponding rows before ``joining'' variables (i.e., columns) from both sources together. There are several \emph{join} functions in \pkgname{dplyr}. They differ mainly in how they handle rows that do not have a match between data sources. - -We create here some artificial data to demonstrate the use of these functions. We will create two small tibbles, with one column in common and one mismatched row in each. - - - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{first.tb} \hlkwb{<-} \hlkwd{tibble}\hlstd{(}\hlkwc{idx} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{4}\hlstd{,} \hlnum{5}\hlstd{),} \hlkwc{values1} \hlstd{=} \hlstr{"a"}\hlstd{)} -\hlstd{second.tb} \hlkwb{<-} \hlkwd{tibble}\hlstd{(}\hlkwc{idx} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{4}\hlstd{,} \hlnum{6}\hlstd{),} \hlkwc{values2} \hlstd{=} \hlstr{"b"}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - -Below we apply the \emph{}\index{joins between data sources!mutating} functions exported by \pkgname{dplyr}: \Rfunction{full\_join()}, \Rfunction{left\_join()}, \Rfunction{right\_join()} and \Rfunction{inner\_join()}. These functions always retain all columns, and in case of multiple matches, keep a row for each matching combination of rows. We repeat each example with the arguments passed to \code{x} and \code{y} swapped to more clearly show their different behavior. - -A full join retains all unmatched rows filling missing values with \code{NA}. By default the match is done on columns with the same name in \code{x} and \code{y}, but this can be changed by passing an argument to parameter \code{by}. Using \code{by} one can base the match on columns that have different names in \code{x} and \code{y}, or prevent matching of columns with the same name in \code{x} and \code{y} (example at end of the section). - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{full_join}\hlstd{(}\hlkwc{x} \hlstd{= first.tb,} \hlkwc{y} \hlstd{= second.tb)} -\end{alltt} - - -{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Joining, by = "{}idx"{}}}\begin{verbatim} -## # A tibble: 6 x 3 -## idx values1 values2 -## -## 1 1 a b -## 2 2 a b -## 3 3 a b -## 4 4 a b -## 5 5 a -## 6 6 b -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{full_join}\hlstd{(}\hlkwc{x} \hlstd{= second.tb,} \hlkwc{y} \hlstd{= first.tb)} -\end{alltt} - - -{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Joining, by = "{}idx"{}}}\begin{verbatim} -## # A tibble: 6 x 3 -## idx values2 values1 -## -## 1 1 b a -## 2 2 b a -## 3 3 b a -## 4 4 b a -## 5 6 b -## 6 5 a -\end{verbatim} -\end{kframe} -\end{knitrout} - -Left and right joins retain rows not matched from only one of the two data sources, \code{x} and \code{y}, respectively. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{left_join}\hlstd{(}\hlkwc{x} \hlstd{= first.tb,} \hlkwc{y} \hlstd{= second.tb)} -\end{alltt} - - -{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Joining, by = "{}idx"{}}}\begin{verbatim} -## # A tibble: 5 x 3 -## idx values1 values2 -## -## 1 1 a b -## 2 2 a b -## 3 3 a b -## 4 4 a b -## 5 5 a -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{left_join}\hlstd{(}\hlkwc{x} \hlstd{= second.tb,} \hlkwc{y} \hlstd{= first.tb)} -\end{alltt} - - -{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Joining, by = "{}idx"{}}}\begin{verbatim} -## # A tibble: 5 x 3 -## idx values2 values1 -## -## 1 1 b a -## 2 2 b a -## 3 3 b a -## 4 4 b a -## 5 6 b -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{right_join}\hlstd{(}\hlkwc{x} \hlstd{= first.tb,} \hlkwc{y} \hlstd{= second.tb)} -\end{alltt} - - -{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Joining, by = "{}idx"{}}}\begin{verbatim} -## # A tibble: 5 x 3 -## idx values1 values2 -## -## 1 1 a b -## 2 2 a b -## 3 3 a b -## 4 4 a b -## 5 6 b -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{right_join}\hlstd{(}\hlkwc{x} \hlstd{= second.tb,} \hlkwc{y} \hlstd{= first.tb)} -\end{alltt} - - -{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Joining, by = "{}idx"{}}}\begin{verbatim} -## # A tibble: 5 x 3 -## idx values2 values1 -## -## 1 1 b a -## 2 2 b a -## 3 3 b a -## 4 4 b a -## 5 5 a -\end{verbatim} -\end{kframe} -\end{knitrout} - -An inner join discards all rows in \code{x} that do not have a matching row in \code{y} and \emph{vice versa}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{inner_join}\hlstd{(}\hlkwc{x} \hlstd{= first.tb,} \hlkwc{y} \hlstd{= second.tb)} -\end{alltt} - - -{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Joining, by = "{}idx"{}}}\begin{verbatim} -## # A tibble: 4 x 3 -## idx values1 values2 -## -## 1 1 a b -## 2 2 a b -## 3 3 a b -## 4 4 a b -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{inner_join}\hlstd{(}\hlkwc{x} \hlstd{= second.tb,} \hlkwc{y} \hlstd{= first.tb)} -\end{alltt} - - -{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Joining, by = "{}idx"{}}}\begin{verbatim} -## # A tibble: 4 x 3 -## idx values2 values1 -## -## 1 1 b a -## 2 2 b a -## 3 3 b a -## 4 4 b a -\end{verbatim} -\end{kframe} -\end{knitrout} - -Next we apply the \emph{filtering join}\index{joins between data sources!filtering} functions exported by \pkgname{dplyr}: \Rfunction{semi\_join()} and \Rfunction{anti\_join()}. These functions only return a tibble that always contains only the columns from \code{x}, but retains rows based on their match to rows in \code{y}. - -A semi join retains rows from \code{x} that have a match in \code{y}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{semi_join}\hlstd{(}\hlkwc{x} \hlstd{= first.tb,} \hlkwc{y} \hlstd{= second.tb)} -\end{alltt} - - -{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Joining, by = "{}idx"{}}}\begin{verbatim} -## # A tibble: 4 x 2 -## idx values1 -## -## 1 1 a -## 2 2 a -## 3 3 a -## 4 4 a -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{semi_join}\hlstd{(}\hlkwc{x} \hlstd{= second.tb,} \hlkwc{y} \hlstd{= first.tb)} -\end{alltt} - - -{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Joining, by = "{}idx"{}}}\begin{verbatim} -## # A tibble: 4 x 2 -## idx values2 -## -## 1 1 b -## 2 2 b -## 3 3 b -## 4 4 b -\end{verbatim} -\end{kframe} -\end{knitrout} - -A anti-join retains rows from \code{x} that do not have a match in \code{y}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{anti_join}\hlstd{(}\hlkwc{x} \hlstd{= first.tb,} \hlkwc{y} \hlstd{= second.tb)} -\end{alltt} - - -{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Joining, by = "{}idx"{}}}\begin{verbatim} -## # A tibble: 1 x 2 -## idx values1 -## -## 1 5 a -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{anti_join}\hlstd{(}\hlkwc{x} \hlstd{= second.tb,} \hlkwc{y} \hlstd{= first.tb)} -\end{alltt} - - -{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Joining, by = "{}idx"{}}}\begin{verbatim} -## # A tibble: 1 x 2 -## idx values2 -## -## 1 6 b -\end{verbatim} -\end{kframe} -\end{knitrout} - -We here rename column \code{idx} in \code{first.tb} to demonstrate the use of \code{by} to specify which columns should be searched for matches. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{first2.tb} \hlkwb{<-} \hlkwd{rename}\hlstd{(first.tb,} \hlkwc{idx2} \hlstd{= idx)} -\hlkwd{full_join}\hlstd{(}\hlkwc{x} \hlstd{= first2.tb,} \hlkwc{y} \hlstd{= second.tb,} \hlkwc{by} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"idx2"} \hlstd{=} \hlstr{"idx"}\hlstd{))} -\end{alltt} -\begin{verbatim} -## # A tibble: 6 x 3 -## idx2 values1 values2 -## -## 1 1 a b -## 2 2 a b -## 3 3 a b -## 4 4 a b -## 5 5 a -## 6 6 b -\end{verbatim} -\end{kframe} -\end{knitrout} -\index{merging data from two tibbles|)} -\index{joins between data sources|)} -\index{data manipulation in the tidyverse|)} - - - -\section{Further reading} -An\index{further reading!new grammars of data} in-depth discussion of the \pkgname{tidyverse} is outside the scope of this book. Several books describe in detail the use of these packages. As several of them are under active development, recent editions of books such as \citebooktitle{Wickham2017} \autocite{Wickham2017} are the most useful. - - - - - - -% !Rnw root = appendix.main.Rnw - - - -\chapter{Grammar of graphics}\label{chap:R:plotting} - -\begin{VF} -The commonality between science and art is in trying to see profoundly---to develop strategies of seeing and showing. - -\VA{Edward Tufte's answer to Charlotte Thralls}{\emph{An Interview with Edward R. Tufte}, 2004}\nocite{Zachry2004} -\end{VF} - -%\dictum[Edward Tufte]{The commonality between science and art is in trying to see profoundly---to develop strategies of seeing and showing.} - -\index{geometries ('ggplot2')|see{grammar of graphics, geometries}} -%\index{geom@\texttt{geom}|see{grammar of graphics, geometries}} -%\index{functions!geom@\texttt{geom}|see{grammar of graphics, geometries}} -\index{statistics ('ggplot2')|see{grammar of graphics, statistics}} -%\index{stat@\texttt{stat}|see{grammar of graphics, statistics}} -%\index{functions!stat@\texttt{stat}|see{grammar of graphics, statistics}} -\index{scales ('ggplot2')|see{grammar of graphics, scales}} -%\index{scale@\texttt{scale}|see{grammar of graphics, scales}} -%\index{functions!scale@\texttt{scale}|see{grammar of graphics, scales}} -\index{coordinates ('ggplot2')|see{grammar of graphics, coordinates}} -\index{themes ('ggplot2')|see{grammar of graphics, themes}} -%\index{theme@\texttt{scale}|see{grammar of graphics, themes}} -%\index{function!theme@\texttt{scale}|see{grammar of graphics, themes}} -\index{facets ('ggplot2')|see{grammar of graphics, facets}} -\index{annotations ('ggplot2')|see{grammar of graphics, annotations}} -\index{aesthetics ('ggplot2')|see{grammar of graphics, aesthetics}} - -\section{Aims of this chapter} - -Three main data plotting systems are available to \Rlang users: base \Rlang, package \pkgname{lattice} \autocite{Sarkar2008} and package \pkgname{ggplot2} \autocite{Wickham2016}, the last one being the most recent and currently most popular system available in \Rlang for plotting data. Even two different sets of graphics primitives (i.e., those used to produce the simplest graphical elements such as lines and symbols) are available in \Rlang, those in base \Rlang and a newer one in the \pkgname{grid} package \autocite{Murrell2011}. - -In this chapter you will learn the concepts of the layered grammar of graphics, on which package \pkgname{ggplot2} is based. You will also learn how to build several types of data plots with package \pkgname{ggplot2}. As a consequence of the popularity and flexibility of \pkgname{ggplot2}, many contributed packages extending its functionality have been developed and deposited in public repositories. However, I will focus mainly on package \pkgname{ggplot2} only briefly describing a few of these extensions. - -\section{Packages used in this chapter} - - - -If the packages used in this chapter are not yet installed in your computer, you can install them as shown below, as long as package \pkgname{learnrbook} is already installed. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{install.packages}\hlstd{(learnrbook}\hlopt{::}\hlstd{pkgs_ch_ggplot)} -\end{alltt} -\end{kframe} -\end{knitrout} - -To run the examples included in this chapter, you need first to load some packages from the library (see section \ref{sec:script:packages} on page \pageref{sec:script:packages} for details on the use of packages). - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{library}\hlstd{(learnrbook)} -\hlkwd{library}\hlstd{(wrapr)} -\hlkwd{library}\hlstd{(scales)} -\hlkwd{library}\hlstd{(ggplot2)} -\hlkwd{library}\hlstd{(ggrepel)} -\hlkwd{library}\hlstd{(gginnards)} -\hlkwd{library}\hlstd{(ggpmisc)} -\hlkwd{library}\hlstd{(ggbeeswarm)} -\hlkwd{library}\hlstd{(ggforce)} -\hlkwd{library}\hlstd{(tikzDevice)} -\hlkwd{library}\hlstd{(lubridate)} -\hlkwd{library}\hlstd{(tidyverse)} -\hlkwd{library}\hlstd{(patchwork)} -\end{alltt} -\end{kframe} -\end{knitrout} - - - - - -\section{Introduction to the grammar of graphics}\label{sec:plot:intro} -\index{grammar of graphics!elements|(} -What separates \ggplot from base \Rlang and trellis/lattice plotting functions is the use of a grammar of graphics\index{grammar of graphics} (the reason behind `gg' in the name of package \pkgname{ggplot2}). What is meant by grammar in this case is that plots are assembled piece by piece using different ``nouns'' and ``verbs'' \autocite{Cleveland1985}. Instead of using a single function with many arguments, plots are assembled by combining different elements with operators \code{+} and \verb|%+%|. Furthermore, the construction is mostly semantics-based and to a large extent, how plots look when printed, displayed, or exported to a bitmap or vector-graphics file is controlled by themes. - -We can think of plotting as representing the observations or data in a graphical language. We use the properties of graphical objects to represent different aspects of our data. An observation can consist of multiple recorded values. Say an observation of air temperature may be defined by a position in 3-dimensional space and a point in time, in addition to the temperature itself. An observation for the size and shape of a plant can consist of height, stem diameter, number of leaves, size of individual leaves, length of roots, fresh mass, dry mass, etc. If we are interested in the relationship between height and stem diameter, we may want to use cartesian coordinates\index{grammar of graphics!cartesian coordinates}, \emph{mapping} stem diameter to the $x$ dimension of the plot and the height to the $y$ dimension. The observations could be represented on the plot by points. - -The grammar of graphics allows us to design plots by combining various elements in ways that are nearly orthogonal. In other words, the majority of the possible combinations of ``words'' yield valid plots as long as we assemble them respecting the rules of the grammar. This flexibility makes \ggplot extremely powerful as we can build plots and even types of plots which were not even considered while designing the \ggplot package. - -When a plot is built, the whole plot and its components are created as \Rlang objects that can be saved in the workspace or written to a file as objects. The graphical representation is generated when the object is printed, explicitly or automatically. The same \code{"gg"} plot object can be rendered into different bitmap and vector graphic formats for display or printing. - -The transformation of a set of data or observations into a rendered graphic with package \pkgname{ggplot2} can be represented as a flow of information, but also as a sequence of actions. However, what avoids that the flexibility becomes a burden is that if we do not explicitly mention all steps in our code, in most cases adequate defaults for them will be used instead. The steps in the transformation of data into a rendered graphic conform a chain. a) We indicate the data to use, b) indicate which variable to map to which plot aesthetic, c) we indicate which layers to add, statistical summaries or estimates to compute, and the geometric representation to use for the original data and/or statistical summaries, d) the scales to be used for the aesthetics to which we mapped data in point b), e) indicate a coordinate system (affecting only aesthetics $x$, $y$ and possibly $z$), f) indicate a theme to use. The result from constructing a plot with the grammar of graphics is an R object containing a ``plan for a plot'', including the data, that can be assigned a name, saved to a file or printed into a rendered plot, either to a physical printer or into vector or bitmap graphics formats. These are indeed many steps, but as mentioned above, we do not need to be explicit about all of them. Obviously step a) has no default, b) has defaults only in special cases, and c) has no defaults. - -\begin{explainbox} -The\index{plots!layers} plots created with package \pkgname{ggplot2} have a layered structure, with plots both assembled and rendered layer by layer. Each time we add a geometric representation, either of the observations or statistical summaries, we create a layer. A plot can have any number of layers, and the order in which we add them is stored in the resulting R object. When the R object is rendered into a plot, later layers are plotted on top of earlier layers. So graphical objects from the rendering of layers added later can occlude those in layers added earlier. As colors in \Rlang support transparency, and transparency can be accessed through the \code{alpha} aesthetic the effect of overlapping layers can be altered by changing the order in which they are added to a plot and by use of semitransparent layers. -\end{explainbox} - -\subsection{Data} -The\index{grammar of graphics!data} data to be plotted must be available as a \code{data.frame} or \code{tibble}, with data stored so that each row represents a single observation event, and the columns are different values observed in that single event. In other words, in long form (so-called ``tidy data'') as described in chapter \ref{chap:R:data}. The variables to be plotted can be \code{numeric}, \code{factor}, \code{character}, and time or date stored as \code{POSIXct}. (Some extensions to \pkgname{ggplot2} add support for other types of data such as time series). - -\subsection{Mapping} - -When\index{grammar of graphics!mapping of data} we design a plot, we need to map data variables to aesthetics\index{plots!aesthetics} (or graphic properties). Most plots will have an $x$ dimension, which is considered an \emph{aesthetic}, and a variable containing numbers (or categories) mapped to it. The position on a 2D plot of, say, a point, will be determined by $x$ and $y$ aesthetics, while in a 3D plot, three aesthetics need to be mapped $x$, $y$ and $z$. Many aesthetics are not related to coordinates, they are properties, like color, size, shape, line type, or even rotation angle, which add an additional dimension on which to represent the values of variables and/or constants. - -\subsection{Geometries} - -\sloppy% -Geometries\index{grammar of graphics!geometries} are ``words'' that describe the graphics representation of the data: for example, \gggeom{geom\_point()}, plots a point or symbol for each observation or summary value, while \gggeom{geom\_line()}, draws line segments between observations. Some geometries rely by default on statistics, but most ``geoms'' default to the identity statistics. Each time a \emph{geometry} is used to add a graphical representation of data to a plot, we say that a new \emph{layer} has been added. The name \emph{layer} reflects the fact that each new layer added is plotted on top of the layers already present in the plot, or rather when a plot is printed the layers will be generated in the order they were added to the plot object. For example, one layer in a plot can display the observations, another layer a regression line fitted to them, and a third one may contain annotations such an equation or a text label. - -\subsection{Statistics} - -Statistics\index{grammar of graphics!statistics} are ``words'' that represent calculation of summaries or some other operation on the values in the data. When \emph{statistics} are used for a computation, the returned value is passed to a \emph{geometry}, and consequently adding a \emph{statistics} also adds a layer to the plot. For example, \ggstat{stat\_smooth()} fits a smoother, and \ggstat{stat\_summary()} applies a summary function such as \code{mean(()}. Most statistics are applied automatically by group when data have been grouped by mapping additional aesthetics such as color to a factor. - -\subsection{Scales} - -Scales\index{grammar of graphics!scales} give the ``translation'' or mapping between data values and the aesthetic values to be actually plotted. Mapping a variable to the ``color'' aesthetic (also recognized when spelled as ``colour'') only tells that different values stored in the mapped variable will be represented by different colors. A scale, such as \ggscale{scale\_color\_continuous()}, will determine which color in the plot corresponds to which value in the variable. Scales can also define transformations on the data, which are used when mapping data values to aesthetic values. All continuous scales support transformations---e.g., in the case of $x$ and $y$ aesthetics, positions on the plotting region or graphic viewport will be affected by the transformation, while the original values will be used for tick labels along the axes. Scales are used for all aesthetics, including continuous variables, such as numbers, and categorical ones such as factors. The grammar of graphics allows only one scale per \emph{aesthetic} and plot. This restriction is imposed by design to avoid ambiguity (e.g., it ensures that the red color will have the same ``meaning'' in all plot layers where the \code{color} \emph{aesthetic} is mapped to data). Scales have limits with observations falling outside these limits being ignored by default (replaced by \code{NA}) rather than passed to statistics or geometries---it is easy to unintentionally drop observations when setting scale limits manually, consequently warning messages reporting that \code{NA} values have been omitted from a plot should not be ignored. - -\subsection{Coordinate systems} - -The\index{grammar of graphics!coordinates} most frequently used coordinate system when plotting data, the cartesian system, is the default for most \emph{geometries}. In the cartesian system, $x$ and $y$ are represented as distances on two orthogonal (at 90$^\circ$) axes. Additional coordinate systems are available in \pkgname{ggplot2} and through extensions. For example, in the polar system of coordinates, the $x$ values are mapped to angles around a central point and $y$ values to the radius. Another example is the ternary system of coordinates, an extension of the grammar implemented in package \pkgname{ggtern}, that allows the construction of ternary plots. Setting limits to a coordinate system changes the region of the plotting space visible in the plot, but does not discard observations. In other words, when using \emph{statistics}, observations located outside the coordinate limits, i.e., not visible in the rendered plot, will still be included in computations if excluded by coordinate limits but will be ignored if excluded by scale limits. - -\subsection{Themes} - -How\index{grammar of graphics!themes} the plots look when displayed or printed can be altered by means of themes. A plot can be saved without adding a theme and then printed or displayed using different themes. Also, individual theme elements can be changed, and whole new themes defined. This adds a lot of flexibility and helps in the separation of the data representation aspects from those related to the graphical design. - -\subsection{Plot object} - -The end result is an \Rlang object containing the data plus the instructions to process them into a plot. This object, as well as intermediate objects can be saved. Rendering, or the production of graphical output, takes places when the object is printed. The format of the output, such as bitmap or vector graphics, is determined by the graphics device (see \ref{sec:plot:render} on page \pageref{sec:plot:render}). -\index{grammar of graphics!elements|)} - -\subsection{Plot construction} -\index{grammar of graphics!plot construction|(} -As we have described above, the components of the grammar of graphics are: aesthetics (\code{aes}), for example color, geometric elements \code{geom\_\ldots} such as lines and points, statistics \code{stat\_\ldots}, scales \code{scale\_\ldots}, coordinate systems \code{coord\_\ldots}, and themes \code{theme\_\ldots}. In this section we will see how plots are assembled and rendered from these elements. - -A \code{"gg"} plot object contains the data and instructions needed to build a plot. Both data transformations and rendering of the plot take place at the time of printing or exporting the plot. The data provided by the user goes through three stages where mappings of variables to aesthetics can take place. The default for \Rfunction{aes()} is for the mapping to take place ahead of the statistics (1 in the simplified diagram below).\vspace{2.5ex} - -{\sffamily -\centering -% \includegraphics[width=0.98\textwidth]{figures/fig2-model.png} -\resizebox{\linewidth}{!}{% - \begin{tikzpicture}[auto] - \node [b] (data) {data}; - \node [b, right = of data] (statistic) {statistic}; - \node [b, right = of statistic] (geometry) {geometry}; - \node [b, right = of geometry] (scale) {scale}; - \node [b, right = of scale] (render) {rendered\\plot}; - - \path [ll] (statistic) -- (data) node[near end,above]{\textbf{1}}; - \path [ll] (geometry) -- (statistic) node[near end,above]{\textbf{2}}; - \path [ll] (scale) -- (geometry) node[near end,above]{\textbf{3}}; - \path [ll] (render) -- (scale) node[near end,above]{\textbf{4}}; - \end{tikzpicture}}}\vspace{2ex} - -A statistic receives as input \code{data} a data frame with the columns in user-supplied data renamed according to the names of the aesthetics they are mapped to, and additional columns with grouping and panel information. The value returned by a statistics is also a data frame. This data frame is identical to the input in the case of \ggstat{stat\_identity()} or different, in the values contained and in the number of rows and/or columns for other statistics. Statistics provide default mappings and a default \code{geometry}, but these can be overridden by the user. Usually statistics return other variables in addition to those with default mappings. Within \Rfunction{aes()} we can use function \Rfunction{after\_stat()} to request a mapping after the statistic (2 in the diagram above). - -As the workings and use of the grammar are easier to demonstrate by example than to explain with words, I will show how to build plots of increasing complexity, starting from the simplest possible. All elements of a plot have defaults, although in some cases these defaults result in empty plots. Defaults make it possible to create a plot very succinctly. We use function \code{ggplot()} to create the skeleton for a plot, which can be enhanced, but also printed as is. \emph{A plot with no data or layers.} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{()} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-ggplot-basics-01-1} - -} - - -\end{knitrout} - -The plot above is of little use without any data, so we next pass a data frame object, in this case \code{mtcars}---\Rdata{mtcars} is a data set included in \Rlang; to learn more about this data set, type \code{help("mtcars")} at the \Rlang command prompt. Having no layers or scale, the result is also an empty grey plotting area. ({\small\textsf{data $\to$ \emph{ggplot object}}}) - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars)} -\end{alltt} -\end{kframe} -\end{knitrout} - -Once the data are available, we need to \emph{map} the quantities in the data onto graphical features in the plot, or \emph{aesthetics}. When plotting in two dimensions, we need to map variables in the data to at least the $x$ and $y$ aesthetics. This mapping can be seen in the chunk below by its effect on the plotting area ranges that now match the ranges of the mapped variables, expanded by a small margin. The axis labels also reflect the names of the mapped variables, however, there is no graphical element yet displayed for the individual observations. ({\small\textsf{data $\to$ aes $\to$ \emph{ggplot object}}}) - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} - \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-ggplot-basics-03-1} - -} - - -\end{knitrout} - -To make observations visible in the plot we need to add a suitable \emph{geometry} or \code{geom} to the plot. Here we display the observations as points using \gggeom{geom\_point()}. Geometries are rendered as \emph{plot layers}. ({\small\textsf{data $\to$ aes $\to$ geom $\to$ \emph{ggplot object}}}) - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} - \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-ggplot-basics-04-1} - -} - - -\end{knitrout} - -\begin{warningbox} -In the examples above, the plots were printed automatically, which is the default at the \Rlang console. However, as with other \Rlang objects, ggplots can be assigned to a variable. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{p} \hlkwb{<-} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} - \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} -\end{alltt} -\end{kframe} -\end{knitrout} - -and printed at a later time. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{print}\hlstd{(p)} -\end{alltt} -\end{kframe} -\end{knitrout} -\end{warningbox} - -\begin{advplayground} -Above we have seen how to build a plot containing a single layer using the grammar of graphics. We have also seen how to save a ggplot. We can peep into the innards of this object using \code{summary()}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{summary}\hlstd{(p)} -\end{alltt} -\end{kframe} -\end{knitrout} -We can view the structure of the \code{"gg"} plot object with \code{str()}. Package \pkgname{gginnards} provides methods \code{str()}, \code{num\_layers()}, \code{top\_layer()} and \code{mapped\_vars()}. As you make progress through the chapter, use these methods to explore \code{"gg"} plot objects with different numbers of layers or mappings. You will see that the plot elements that were added to the plot are stored as members of a list with nested lists forming a tree-like structure. (R lists are described in section \ref{sec:calc:lists} on page \pageref{sec:calc:lists}.) -\end{advplayground} - -Although \emph{aesthetics} are usually mapped to variables in the data, they can also be set to constant values. While variables in \code{data} can be both mapped using \code{aes()} as whole-plot defaults, as shown above, or within individual layers, constant values for aesthetics can be set, as shown here, only for individual layers and directly rather than using \code{aes()}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} - \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} - \hlkwd{geom_point}\hlstd{(}\hlkwc{color} \hlstd{=} \hlstr{"red"}\hlstd{,} \hlkwc{shape} \hlstd{=} \hlstr{"square"}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-ggplot-basics-04a-1} - -} - - -\end{knitrout} - -While a geometry directly constructs during rendering a graphical representation of the observations or summaries in the data it receives as input, a \emph{statistics} or \code{stat} ``sits'' in-between the data and a \code{geom}, applying some computation, usually but not always, to produce a statistical summary of the data. Here we add a fitted line using \code{stat\_smooth()} with its output added to the plot using \gggeom{geom\_line()} passed by name with \code{"line"} as an argument to \code{stat\_smooth}. We fit a linear regression, using \code{lm()} as the method. This plot has two layers, from geometries \gggeom{geom\_point} and \gggeom{geom\_line}. ({\small\textsf{data $\to$ aes $\to$ stat $\to$ geom $\to$ \emph{ggplot object}}}) - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} - \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{stat_smooth}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"line"}\hlstd{,} \hlkwc{method} \hlstd{=} \hlstr{"lm"}\hlstd{,} \hlkwc{formula} \hlstd{= y} \hlopt{~} \hlstd{x)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-ggplot-basics-05-1} - -} - - -\end{knitrout} - -We haven't yet added some of the elements of the grammar described above: \emph{scales}, \emph{coordinates} and \emph{themes}. The plots were rendered anyway because these elements have defaults which are used when we do not set them explicitly. We next will see examples in which they are explicitly set. We start with a scale using a logarithmic transformation. This works like plotting by hand using graph paper with rulings spaced according to a logarithmic scale. Tick marks continue to be expressed in the original units, but statistics are applied to the transformed data. In other words, a transformed scale affects the values before they are passed to \emph{statistics}, and the linear regression will be fitted to \code{log10()} transformed $y$ values and the original $x$ values. ({\small\textsf{data $\to$ aes $\to$ stat $\to$ geom $\to$ scale $\to$ \emph{ggplot object}}}) - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} - \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{stat_smooth}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"line"}\hlstd{,} \hlkwc{method} \hlstd{=} \hlstr{"lm"}\hlstd{,} \hlkwc{formula} \hlstd{= y} \hlopt{~} \hlstd{x)} \hlopt{+} - \hlkwd{scale_y_log10}\hlstd{()} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-ggplot-basics-06-1} - -} - - -\end{knitrout} - -The range limits of a scale can be set manually, instead of automatically as by default. These limits create a virtual \emph{window into the data}: out-of-bounds (oob) observations, those outside the scale limits remain hidden and are not mapped to aesthetics---i.e., these observations are not included in the graphical representation or used in calculations. Crucially, when using \emph{statistics} the computations are only applied to observations that fall within the limits of all scales in use. These limits \emph{indirectly} affect the plotting area when the plotting area is automatically set based on the range of the (within limits) data---even the mapping to values of a different aesthetics may change when a subset of the data are selected by manually setting the limits of a scale. - -In contrast to \emph{scale limits}, \emph{coordinates}\index{grammar of graphics!cartesian coordinates} function as a \emph{zoomed view} into the plotting area, and do not affect which observations are visible to \emph{statistics}. The coordinate system, as expected, is also determined by this grammar element---here we use cartesian coordinates which are the default, but we manually set $y$ limits. ({\small\textsf{data $\to$ aes $\to$ stat $\to$ geom $\to$ coordinate $\to$ theme $\to$ \emph{ggplot object}}}) - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} - \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{stat_smooth}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"line"}\hlstd{,} \hlkwc{method} \hlstd{=} \hlstr{"lm"}\hlstd{,} \hlkwc{formula} \hlstd{= y} \hlopt{~} \hlstd{x)} \hlopt{+} - \hlkwd{coord_cartesian}\hlstd{(}\hlkwc{ylim} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{15}\hlstd{,} \hlnum{25}\hlstd{))} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-ggplot-basics-07-1} - -} - - -\end{knitrout} - -The next example uses a coordinate system transformation. When the transformation is applied to the coordinate system, it affects only the plotting---it sits between the \code{geom} and the rendering of the plot. The transformation is applied to the values returned by any \emph{statistics}. The straight line fitted is plotted on the transformed coordinates as a curve, because the model was fitted to the untransformed data and this fitted model is automatically used to obtain the predicted values, which are then plotted after the transformation is applied to them. We have here described only cartesian coordinate systems while other coordinate systems are described in sections \ref{sec:plot:sf} and \ref{sec:plot:circular} on pages \pageref{sec:plot:sf} and \pageref{sec:plot:circular}, respectively. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} - \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{stat_smooth}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"line"}\hlstd{,} \hlkwc{method} \hlstd{=} \hlstr{"lm"}\hlstd{,} \hlkwc{formula} \hlstd{= y} \hlopt{~} \hlstd{x)} \hlopt{+} - \hlkwd{coord_trans}\hlstd{(}\hlkwc{y} \hlstd{=} \hlstr{"log10"}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-ggplot-basics-08-1} - -} - - -\end{knitrout} - -Themes affect the rendering of plots at the time of printing---they can be thought of as style sheets defining the graphic design. A complete theme can override the default gray theme. The plot is the same, the observations are represented in the same way, the limits of the axes are the same and all text is the same. On the other, hand how these elements are rendered by different themes can be drastically different. ({\small\textsf{data $\to$ aes $\to$ $\to$ geom $\to$ theme $\to$ \emph{ggplot object}}} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} - \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{theme_classic}\hlstd{()} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-ggplot-basics-09-1} - -} - - -\end{knitrout} - -We can also override the base font size and font family. This affects the size of all text elements, as their size is defined relative to the base size. Here we add the same theme as used in the previous example, but with a different base point size for text. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} - \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{theme_classic}\hlstd{(}\hlkwc{base_size} \hlstd{=} \hlnum{20}\hlstd{,} \hlkwc{base_family} \hlstd{=} \hlstr{"serif"}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-ggplot-basics-10-1} - -} - - -\end{knitrout} - -The details of how to set axis labels, tick positions and tick labels will be discussed in depth in section \ref{sec:plot:scales}. Meanwhile, we will use function \code{labs()} which is \emph{a convenience function} allowing us to easily set the title and subtitle of a plot and to replace the default \code{name} of scales, in this case, those used for axis labels---by default the \code{name} of scales is set to the name of the mapped variable. When setting the \code{name} of scales with \code{labs()}, we use as parameter names in the function call the names of aesthetics and pass as an argument a character string, or an \Rlang expression. Here we use \code{x} and \code{y}, the names of the two \emph{aesthetics} to which we have mapped two variables in \code{data}, \code{disp} and \code{mpg}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} - \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{labs}\hlstd{(}\hlkwc{x} \hlstd{=} \hlstr{"Engine displacement (cubic inches)"}\hlstd{,} - \hlkwc{y} \hlstd{=} \hlstr{"Fuel use efficiency\textbackslash{}n(miles per gallon)"}\hlstd{,} - \hlkwc{title} \hlstd{=} \hlstr{"Motor Trend Car Road Tests"}\hlstd{,} - \hlkwc{subtitle} \hlstd{=} \hlstr{"Source: 1974 Motor Trend US magazine"}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-ggplot-basics-11-1} - -} - - -\end{knitrout} - -\begin{infobox} -As elsewhere in \Rlang, when a value is expected, either a value stored in a variable or a more complex statement returning a suitable value can be passed as an argument to be mapped to an \emph{aesthetic}. In other words, the values to be plotted do not need to be stored as variables (or columns) in the data frame passed as an argument to parameter \code{data}, they can also be computed from these variables. Here we plot miles-per-gallon, \code{mpg} on the engine displacement per cylinder by dividing \code{disp} by \code{cyl} within the call to \code{aes()}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp} \hlopt{/} \hlstd{cyl,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-ggplot-basics-info-01-1} - -} - - -\end{knitrout} - -\end{infobox} - -We can summarize the data transformation steps described above as a linear chain: -{\small\textsf{data $\to$ aes $\to$ stat $\to$ aes $\to$ geom $\to$ scale $\to$ aes $\to$ coordinate $\to$ theme $\to$ \emph{ggplot object}}} - -Each of the elements of the grammar exemplified above has several different member functions, and many of the individual \emph{geometries} and \emph{statistics} accept arguments that can be used to modify their behavior. There are also more \emph{aesthetics} than those shown above. Multiple data objects as well as multiple mappings can coexist within a single \code{"gg"} plot object. Packages and user code can define new \emph{geometries}, \emph{statistics}, \emph{coordinates} and even implement new \emph{aesthetics}. Being \Rmethod{ggplot()} an S3 method, specializations for objects of classes different from \code{data.frame} exist. Individual elements in a theme can also be modified and new complete themes created, re-used and shared. We will describe in the remaining sections of this chapter how to use the grammar of graphics to construct other types of graphical presentations including more complex plots than those in the examples above. -\index{grammar of graphics!plot construction|)} - -\subsection{Plots as \Rlang objects} -\index{grammar of graphics!plots as R objects|(} -We can manipulate \code{"gg"} plot objects and their components in the same way as other \Rlang objects. We can operate on them using the operators and methods defined for the \code{"gg"} class they belong to. We start by saving a ggplot into a variable. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{p} \hlkwb{<-} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} - \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} -\end{alltt} -\end{kframe} -\end{knitrout} - -\begin{warningbox} - \index{grammar of graphics!structure of plot objects|(} - The separation of plot construction and rendering is possible, because \code{"gg"} objects are self-contained. Most importantly, a copy of the data object passed as argument is saved within the plot object. In the example above, \code{p} by itself could be saved to a file on disk and loaded into a clean \Rlang session, even on another computer, and rendered as long as package \ggplot and its dependencies are available. Another consequence of storing a copy of the data in the plot object, is that editing after the creation of a \code{"gg"} object the data frame passed as argument to \code{data} when it was created does \emph{not} get reflected in newly rendered plots unless we recreate the "gg" object. - - With \code{str()} we can explore the structure of any \Rlang object, including those of class \code{"gg"}. We use \code{max.level = 1} to reduce the length of output, but to see deeper into the nested list you can increase the value passed as an argument to \code{max.level} or simply accept its default. - -% the next chuck works but it leads to stack overflow in LaTeX -% there is something wrong with how knitr handles the output of str() -% eval_playground -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{str}\hlstd{(p,} \hlkwc{max.level} \hlstd{=} \hlnum{1}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - \index{grammar of graphics!structure of plot objects|)} -\end{warningbox} - -When we used in the previous section operator \code{+} to assemble the plots, we were operating on ``anonymous'' \Rlang objects. In the same way, we can operate on saved or ``named'' objects. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{p} \hlopt{+} - \hlkwd{stat_smooth}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"line"}\hlstd{,} \hlkwc{method} \hlstd{=} \hlstr{"lm"}\hlstd{,} \hlkwc{formula} \hlstd{= y} \hlopt{~} \hlstd{x)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-ggplot-objects-02-1} - -} - - -\end{knitrout} - -\begin{playground} - Reproduce the examples in the previous section, using \code{p} defined above as a basis instead of building each plot from scratch. -\end{playground} - -\begin{infobox} - In the examples above we have been adding elements one by one, using the \code{+} operator. It is also possible to add multiple components in a single operation using a list. This is useful, when we want to save sets of components in a variable so as to reuse them in multiple plots. This saves typing, ensures consistency and can make alterations to a set of similar plots much easier. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.layer} \hlkwb{<-} \hlkwd{list}\hlstd{(} - \hlkwd{stat_smooth}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"line"}\hlstd{,} \hlkwc{method} \hlstd{=} \hlstr{"lm"}\hlstd{,} \hlkwc{formula} \hlstd{= y} \hlopt{~} \hlstd{x),} - \hlkwd{scale_x_log10}\hlstd{())} -\end{alltt} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{p} \hlopt{+} \hlstd{my.layer} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-ggplot-objects-info-02-1} - -} - - -\end{knitrout} - -\end{infobox} -\index{grammar of graphics!plots as R objects|)} - -\subsection{Mappings to aesthetics} -\index{grammar of graphics!mapping of data|(} -\index{grammar of graphics!aesthetics(} -In the case of simple plots, based on data contained in a single data frame, the usual style is to code a plot as described above, passing an argument, \code{mtcars} in these examples, to the \code{data} parameter of \Rfunction{ggplot()}. Data passed in this way becomes the default for all layers in the plot. The same applies to the argument passed to \code{mapping}.\qRfunction{aes()} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} - \hlkwc{mapping} \hlstd{=} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} -\end{alltt} -\end{kframe} -\end{knitrout} - -However, the grammar of graphics contemplates the possibility of data and mappings restricted to individual layers, passed to statistics or geometries through their \code{mapping} formal parameter. In this case, those mappings set in the call to \Rfunction{ggplot()}, if present, are overridden by arguments passed to individual layers, making it possible to code the same plot as follows. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{()} \hlopt{+} - \hlkwd{geom_point}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} - \hlkwc{mapping} \hlstd{=} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} -\end{alltt} -\end{kframe} -\end{knitrout} - -The default mapping can also be added directly with the \code{+} operator, instead of being passed as an argument to \Rfunction{ggplot()}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars)} \hlopt{+} - \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg)} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} -\end{alltt} -\end{kframe} -\end{knitrout} - -It is even possible to have a default mapping for the whole plot, but no default data. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{()} \hlopt{+} - \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg)} \hlopt{+} - \hlkwd{geom_point}\hlstd{(}\hlkwc{data} \hlstd{= mtcars)} -\end{alltt} -\end{kframe} -\end{knitrout} - -In these examples, the plot remains unchanged, but this flexibility in the grammar allows, in plots containing multiple layers, for each layer to use different data or a different mapping. - -\begin{explainbox} -The argument passed to parameter \code{data} of a layer function, can be a function instead of a data frame if the plot contains default data. In this case, the function is applied to the default data and must return a data frame containing data to be used in the layer. Here I use an anonymous function defined in-line, but a function can also be passed as argument by name. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} - \hlkwc{mapping} \hlstd{=} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} - \hlkwd{geom_point}\hlstd{(}\hlkwc{size} \hlstd{=} \hlnum{4}\hlstd{)} \hlopt{+} - \hlkwd{geom_point}\hlstd{(}\hlkwc{data} \hlstd{=} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{)\{}\hlkwd{subset}\hlstd{(x, cyl} \hlopt{==} \hlnum{4}\hlstd{)\},} \hlkwc{color} \hlstd{=} \hlstr{"yellow"}\hlstd{,} - \hlkwc{size} \hlstd{=} \hlnum{1.5}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - -The plot's default data can also be operated upon using the \pkgname{magritrr} pipe operator, but not the pipe operator native to \Rlang (\Roperator{|>}) or the dot-pipe operator from \pkgname{wrapr} (see section \ref{sec:data:pipes} on page \pageref{sec:data:pipes}). Using a function as above is simpler and clearer. -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} - \hlkwc{mapping} \hlstd{=} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} - \hlkwd{geom_point}\hlstd{(}\hlkwc{size} \hlstd{=} \hlnum{4}\hlstd{)} \hlopt{+} - \hlkwd{geom_point}\hlstd{(}\hlkwc{data} \hlstd{= .} \hlopt{%>%} \hlkwd{subset}\hlstd{(}\hlkwc{x} \hlstd{= ., cyl} \hlopt{==} \hlnum{4}\hlstd{),} \hlkwc{color} \hlstd{=} \hlstr{"yellow"}\hlstd{,} - \hlkwc{size} \hlstd{=} \hlnum{1.5}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - -\end{explainbox} - -\emph{Late mapping}\index{grammar of graphics!mapping of data!late} of variables to aesthetics has been possible in \pkgname{ggplot2} for a long time using as notation enclosure of the name of a variable returned by a statistic between \code{...}, but this notation has been deprecated some time ago and replaced by \ggscale{stat()}. In both cases, this imposed a limitation: it was impossible to map a computed variable to the same aesthetic as input to the statistic and to the geometry in the same layer. There were also some other quirks that prevented passing some arguments to the geometry through the dots \code{...} parameter of a statistic. - -In version 3.3.0 of \pkgname{ggplot2} the syntax used for mapping variables to aesthetics was changed adding functions \ggscale{stage()}, \ggscale{after\_stat()} and \ggscale{after\_scale()}. Function \ggscale{after\_stat()} replaces \ggscale{stat()} and the \code{...} notation (as of 'ggplot2' == 3.3.5 the old notation is still accepted). As shown in the diagram from section \ref{sec:plot:intro} on page \pageref{sec:plot:intro}, reproduced here, \textsf{aesthetic} appears in three places:\\[1.2ex] -{\small\textsf{data $\to$ aes $\to$ stat $\to$ aes $\to$ geom $\to$ scale $\to$ aes $\to$ coordinate $\to$ theme $\to$ \emph{ggplot object}}} - -Variables in the data frame passed as argument to \code{data} are mapped to aesthetics before they are received as input by a statistic (possibly \code{stat\_identity()}). The mappings of variables in the data frame returned by statistics are the input to the geometry. Those statistics that operate on \textit{x} and/or \text{y} return a transformed version of these variables, by default also mapped to these aesthetics. However, in most cases other variables in addition to \textit{x} and/or \text{y} are included in the \code{data} returned by a \emph{statistic}. Although their default mapping is coded in the statistic functions' definitions, the user can modify this default mapping explicitly within a call to \code{aes()} using \ggscale{after\_stat()}, which lets us differentiate between the data frame supplied by the user and that returned by the statistic. The third stage was not accessible in earlier versions of \pkgname{ggplot2}, but lack of access was usually not insurmountable. Now this third stage can be accessed with \ggscale{after\_scale()} making coding simpler. - -User-coded transformations of the data are best handled at the third stage using scale transformations. However, when the intention is to jointly display or combine different computed variables returned by a statistic we need to set the desired mapping of original and computed variables to aesthetics at more than one stage. - -The documentation of \pkgname{ggplot2} gives several good examples of cases when the new syntax is useful. I give here a different example. We fit a polynomial using \Rfunction{rlm()}. RLM is a procedure that automatically assigns before computing the residual sums of squares, weights to the individual residuals in an attempt to protect the estimated fit from the influence of extreme observations or outliers. When using this and similar methods it is of interest to plot the residuals together with the weights. A frequent approach is to map weights to a gradient between two colours. We start by generating some artificial data containing outliers. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlcom{# we use capital letters X and Y as variable names to distinguish} -\hlcom{# them from the x and y aesthetics} -\hlkwd{set.seed}\hlstd{(}\hlnum{4321}\hlstd{)} -\hlstd{X} \hlkwb{<-} \hlnum{0}\hlopt{:}\hlnum{10} -\hlstd{Y} \hlkwb{<-} \hlstd{(X} \hlopt{+} \hlstd{X}\hlopt{^}\hlnum{2} \hlopt{+} \hlstd{X}\hlopt{^}\hlnum{3}\hlstd{)} \hlopt{+} \hlkwd{rnorm}\hlstd{(}\hlkwd{length}\hlstd{(X),} \hlkwc{mean} \hlstd{=} \hlnum{0}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlkwd{mean}\hlstd{(X}\hlopt{^}\hlnum{3}\hlstd{)} \hlopt{/} \hlnum{4}\hlstd{)} -\hlstd{my.data} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(X, Y)} -\hlstd{my.data.outlier} \hlkwb{<-} \hlstd{my.data} -\hlstd{my.data.outlier[}\hlnum{6}\hlstd{,} \hlstr{"Y"}\hlstd{]} \hlkwb{<-} \hlstd{my.data.outlier[}\hlnum{6}\hlstd{,} \hlstr{"Y"}\hlstd{]} \hlopt{*} \hlnum{10} -\end{alltt} -\end{kframe} -\end{knitrout} - -As it will be used in multiple examples, we give a name to the model formula. We do this just for convenience but also to ensure consistency in the model fits. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.formula} \hlkwb{<-} \hlstd{y} \hlopt{~} \hlkwd{poly}\hlstd{(x,} \hlnum{3}\hlstd{,} \hlkwc{raw} \hlstd{=} \hlnum{TRUE}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - -For the first plot it is enough to use \ggscale{after\_stat()} to map a variable \code{weights} computed by the statistic to the \code{colour} aesthetic. In the case of \ggstat{stat\_fit\_residuals()}, \gggeom{geom\_point()} is used by default. This figure shows the residuals before weights are applied, with the computed weights (with range 0 to 1) encoded by colours ranging between red and blue. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(my.data.outlier,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= X,} \hlkwc{y} \hlstd{= Y))} \hlopt{+} - \hlkwd{stat_fit_residuals}\hlstd{(}\hlkwc{formula} \hlstd{= my.formula,} \hlkwc{method} \hlstd{=} \hlstr{"rlm"}\hlstd{,} - \hlkwc{mapping} \hlstd{=} \hlkwd{aes}\hlstd{(}\hlkwc{colour} \hlstd{=} \hlkwd{after_stat}\hlstd{(weights)),} - \hlkwc{show.legend} \hlstd{=} \hlnum{TRUE}\hlstd{)} \hlopt{+} - \hlkwd{scale_color_gradient}\hlstd{(}\hlkwc{low} \hlstd{=} \hlstr{"red"}\hlstd{,} \hlkwc{high} \hlstd{=} \hlstr{"blue"}\hlstd{,} \hlkwc{limits} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,} \hlnum{1}\hlstd{),} - \hlkwc{guide} \hlstd{=} \hlstr{"colourbar"}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-mapping-stage-02-1} - -} - - -\end{knitrout} - -In the second plot we plot the weighted residuals, again with colour for weights. In this case we need to use \ggscale{stage()} to be able to distinguish the mapping ahead of the statistic (\code{start}) from that after the statistic, i.e., ahead of the geometry. We use as above, the default geometry, \gggeom{geom\_point()}. The mapping in this example can be read as: the variable \code{X} from the data frame \code{my.data.outlier} is mapped to the \textit{x} aesthetic at all stages. Variable \code{Y} from the data frame \code{my.data.outlier} is mapped to the \textit{y} aesthetic ahead of the computations in \ggstat{stat\_fit\_residuals()}. After the computations, variables \code{y} and \code{weights} in the data frame returned by \ggstat{stat\_fit\_residuals()} are multiplied and mapped to the \textit{y} ahead of \gggeom{geom\_point()}.\label{chunk:plot:weighted:resid} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(my.data.outlier)} \hlopt{+} - \hlkwd{stat_fit_residuals}\hlstd{(}\hlkwc{formula} \hlstd{= my.formula,} - \hlkwc{method} \hlstd{=} \hlstr{"rlm"}\hlstd{,} - \hlkwc{mapping} \hlstd{=} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= X,} - \hlkwc{y} \hlstd{=} \hlkwd{stage}\hlstd{(}\hlkwc{start} \hlstd{= Y,} - \hlkwc{after_stat} \hlstd{= y} \hlopt{*} \hlstd{weights),} - \hlkwc{colour} \hlstd{=} \hlkwd{after_stat}\hlstd{(weights)),} - \hlkwc{show.legend} \hlstd{=} \hlnum{TRUE}\hlstd{)} \hlopt{+} - \hlkwd{scale_color_gradient}\hlstd{(}\hlkwc{low} \hlstd{=} \hlstr{"red"}\hlstd{,} \hlkwc{high} \hlstd{=} \hlstr{"blue"}\hlstd{,} \hlkwc{limits} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,} \hlnum{1}\hlstd{),} - \hlkwc{guide} \hlstd{=} \hlstr{"colourbar"}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-mapping-stage-03-1} - -} - - -\end{knitrout} - -In LM fits, the sum of squares of the un-weighted residuals is minimized to estimate the value of parameters for the best fitting model, while in RLM, the sum of squares of the weighted residuals is minimized instead. - -\index{grammar of graphics!mapping of data|)} -\index{grammar of graphics!aesthetics)} - -\section{Geometries}\label{sec:plot:geometries} -\index{grammar of graphics!geometries|(} - -Different geometries support different \emph{aesthetics}. While \gggeom{geom\_point()} supports \code{shape}, and \gggeom{geom\_line()} supports \code{linetype}, both support \code{x}, \code{y}, \code{color} and \code{size}. In this section we will describe the different \code{geometries} available in package \ggplot and some examples from packages that extend \ggplot. The graphic output from most code examples will not be shown, with the expectation that readers will run them to see the plots. - -Mainly for historical reasons, \emph{geometries} accept a \emph{statistic} as an argument, in the same way as \emph{statistics} accept a \emph{geometry} as an argument. In this section we will only describe \emph{geometries} which have as a default \emph{statistic} \code{stat\_identity} which passes values directly as mapped. The \emph{geometries} that have other \emph{statistics} as default are described in section \ref{sec:plot:stat:summaries} together with the corresponding \emph{statistics}. - -\subsection{Point}\label{sec:plot:geom:point} -\index{grammar of graphics!point geometry|(} - -As shown earlier in this chapter, \gggeom{geom\_point()}, can be used to add a layer with observations represented by ``points'' or symbols. Variable \code{cyl} describes the numbers of cylinders in the engines of the cars. It is a numeric variable, and when mapped to color, a continuous color scale is used to represent this variable. - -\index{plots!scatter plot|(}The first examples build scatter plots, because numeric variables are mapped to both \code{x} and \code{y}. -Some scales, like those for \code{color}, exist in two ``flavors,'' one suitable for numeric variables (continuous) and another for factors (discrete). - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} - \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{color} \hlstd{= cyl))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-scatter-01-1} - -} - - -\end{knitrout} - -If we convert \code{cyl} into a factor, a discrete color scale is used instead of a continuous one. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} - \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} -\end{alltt} -\end{kframe} -\end{knitrout} - -If we convert \code{cyl} into an ordered factor, a different discrete color scale is used by default. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} - \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{color} \hlstd{=} \hlkwd{ordered}\hlstd{(cyl)))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} -\end{alltt} -\end{kframe} -\end{knitrout} - -\begin{playground} -Try a different mapping: \code{disp} $\rightarrow$ \code{color}, \code{cyl} $\rightarrow$ \code{x}. Continue by using \code{help(mtcars)} and/or \code{names(mtcars)} to see what variables are available, and then try the combinations that trigger your curiosity---i.e., explore the data. -\end{playground} - -The mapping between data values and aesthetic values is controlled by scales. Different color scales, and even palettes within a given scale, provide different mappings between data values and rendered colours. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} - \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{scale_color_brewer}\hlstd{(}\hlkwc{type} \hlstd{=} \hlstr{"qual"}\hlstd{,} \hlkwc{palette} \hlstd{=} \hlnum{2}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - -The data, aesthetics mappings, and geometries are the same as in earlier code; to alter how the plot looks, we have changed only the scale and palette used for the color aesthetic. Conceptually it is still exactly the same plot we created earlier, except for the colours used. This is a very important point to understand, because it allows us to separate two different concerns: the semantic structure and the graphic design. - -\begin{playground} -Try the different palettes available through the brewer scale. You can play directly with the palettes using function \code{brewer\_pal()} from package \pkgname{scales} together with \code{show\_col()}). - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{show_col}\hlstd{(}\hlkwd{brewer_pal}\hlstd{()(}\hlnum{3}\hlstd{))} -\hlkwd{show_col}\hlstd{(}\hlkwd{brewer_pal}\hlstd{(}\hlkwc{type} \hlstd{=} \hlstr{"qual"}\hlstd{,} \hlkwc{palette} \hlstd{=} \hlnum{2}\hlstd{,} \hlkwc{direction} \hlstd{=} \hlnum{1}\hlstd{)(}\hlnum{3}\hlstd{))} -\end{alltt} -\end{kframe} -\end{knitrout} -Once you have found a suitable palette for these data, redo the plot above with the chosen palette. -\end{playground} - -When not relying on colors, the most common way of distinguishing groups of observations in scatter plots is to use the \code{shape} of the points as an \emph{aesthetic}. We need to change a single ``word'' in the code statement to achieve this different mapping. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{shape} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} -\end{alltt} -\end{kframe} -\end{knitrout} - -We can use \code{scale\_shape\_manual} to choose each shape to be used. We set three ``open'' shapes that we will see later are very useful as they obey both \code{color} and \code{fill} \emph{aesthetics}.\label{chunk:filled:symbols} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{shape} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{scale_shape_manual}\hlstd{(}\hlkwc{values} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{21}\hlstd{,} \hlnum{22}\hlstd{,} \hlnum{23}\hlstd{))} -\end{alltt} -\end{kframe} -\end{knitrout} - -It is also possible to use characters as shapes. The character is centered on the position of the observation. As the numbers used as symbols are self-explanatory, we suppress the default guide or key.\label{chunk:plot:point:char} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{shape} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} - \hlkwd{geom_point}\hlstd{(}\hlkwc{size} \hlstd{=} \hlnum{2.5}\hlstd{)} \hlopt{+} - \hlkwd{scale_shape_manual}\hlstd{(}\hlkwc{values} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"4"}\hlstd{,} \hlstr{"6"}\hlstd{,} \hlstr{"8"}\hlstd{),} \hlkwc{guide} \hlstd{=} \hlstr{"none"}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-scatter-12-1} - -} - - -\end{knitrout} - -\begin{infobox} - One variable in the data can be mapped to more than one aesthetic, allowing redundant aesthetics. This may seem wasteful, but it is extremely useful as it allows one to produce figures that, even when produced in color, can still be read if reproduced as black-and-white images. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} - \hlkwc{shape} \hlstd{=} \hlkwd{factor}\hlstd{(cyl),} - \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} -\end{alltt} -\end{kframe} -\end{knitrout} -\end{infobox} - -\index{plots!scatter plot|)} -\index{plots!dot plot|(}Dot plots are similar to scatter plots but a factor is mapped to either the \code{x} or \code{y} \emph{aesthetic}. Dot plots are prone to have overlapping observations, and one way of making these points visible is to make them partly transparent by setting a constant value smaller than one for the \code{alpha} \emph{aesthetic}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwd{factor}\hlstd{(cyl),} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} - \hlkwd{geom_point}\hlstd{(}\hlkwc{alpha} \hlstd{=} \hlnum{1}\hlopt{/}\hlnum{3}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-scatter-12a-1} - -} - - -\end{knitrout} - -Instead of making the points semitransparent, we can randomly displace them to avoid overlaps. This is called \emph{jitter}, and can be added using \code{position\_jitter()} and the amount of jitter set with \code{width} as a fraction of the distance between adjacent factor levels in the plot. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwd{factor}\hlstd{(cyl),} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} - \hlkwd{geom_point}\hlstd{(}\hlkwc{position} \hlstd{=} \hlkwd{position_jitter}\hlstd{(}\hlkwc{width} \hlstd{=} \hlnum{0.05}\hlstd{))} -\end{alltt} -\end{kframe} -\end{knitrout} - -\index{plots!dot plot|)} -\index{plots!bubble plot|(}We can create a ``bubble'' plot by mapping the \code{size} \emph{aesthetic} to a continuous variable. In this case, one has to think what is visually more meaningful. Although the radius of the shape is frequently mapped, due to how human perception works, mapping a variable to the area of the shape is more useful by being perceptually closer to a linear mapping. For this example we add a new variable to the plot. The weight of the car in tons and map it to the area of the points. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} - \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl),} - \hlkwc{size} \hlstd{= wt))} \hlopt{+} - \hlkwd{scale_size_area}\hlstd{()} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-scatter-16-1} - -} - - -\end{knitrout} - -\begin{playground} -If we use a radius-based scale the ``impression'' is different. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} - \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl),} - \hlkwc{size} \hlstd{= wt))} \hlopt{+} - \hlkwd{scale_size}\hlstd{()} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} -\end{alltt} -\end{kframe} -\end{knitrout} - -Make the plot, look at it carefully. Check the numerical values of some of the weights, and assess if your perception of the plot matches the numbers behind it. -\end{playground} - -\index{plots!bubble plot|)} - -As a final example summarizing the use of \gggeom{geom\_point()}, we combine different \emph{aesthetics} and \emph{scales} in the same scatter plot. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} - \hlkwc{shape} \hlstd{=} \hlkwd{factor}\hlstd{(cyl),} - \hlkwc{fill} \hlstd{=} \hlkwd{factor}\hlstd{(cyl),} - \hlkwc{size} \hlstd{= wt))} \hlopt{+} - \hlkwd{geom_point}\hlstd{(}\hlkwc{alpha} \hlstd{=} \hlnum{0.33}\hlstd{,} \hlkwc{color} \hlstd{=} \hlstr{"black"}\hlstd{)} \hlopt{+} - \hlkwd{scale_size_area}\hlstd{()} \hlopt{+} - \hlkwd{scale_shape_manual}\hlstd{(}\hlkwc{values} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{21}\hlstd{,} \hlnum{22}\hlstd{,} \hlnum{23}\hlstd{))} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-scatter-18-1} - -} - - -\end{knitrout} - -\begin{playground} -Play with the code in the chunk above. Remove or change each of the mappings and the scale, display the new plot, and compare it to the one above. Continue playing with the code until you are sure you understand what graphical element in the plot is added or modified by each individual argument or ``word'' in the code statement. -\end{playground} -\index{grammar of graphics!point geometry|)} - -It is common to draw error bars together with points representing means or medians of observations and \gggeom{geom\_pointrange()} achieves this task based on the values mapped to the \code{x}, \code{y}, \code{ymin} and \code{ymax}, using \code{y} for the position of the point and \code{ymin} and \code{ymax} for the positions of the ends of the line segment representing a range. Two other \emph{geometries}, \gggeom{geom\_range()} and \gggeom{geom\_errorbar} draw only a segment or a segment with capped ends. They are frequently used together with \emph{statistics} when summaries are calculated on the fly, but can also be used directly when the data summaries are stored in a data frame passed as an argument to \code{data}. - -\subsection{Rug}\label{sec:plot:rug} -\index{plots!rug marging|(} - -Rarely, rug plots are used by themselves. Instead they are usually an addition to scatter plots. An example of the use of \gggeom{geom\_rug()} follows. They make it easier to see the distribution of observations -along the $x$- and $y$-axes. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} - \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{geom_rug}\hlstd{()} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-rug-plot-01-1} - -} - - -\end{knitrout} - -\begin{warningbox} - Rug plots are most useful when the local density of observations is not too high, otherwise rugs become too cluttered and the ``rug threads'' may overlap. When overlap is moderate, making the segments semitransparent by setting the \code{alpha} aesthetic to a constant value smaller than one, can make the variation in density easier to appreciate. When the number of observations is large, marginal density plots should be preferred. -\end{warningbox} -\index{plots!rug marging|)} - -\subsection{Line and area}\label{sec:plot:line} - -\index{grammar of graphics!various line and path geometries|(}\index{plots!line plot|(} -For line plots we use \gggeom{geom\_line()}. The \code{size} of a line is its thickness, and as we had \code{shape} for points, we have \code{linetype} for lines. In a line plot, observations in successive rows of the data frame, or the subset corresponding to a group, are joined by straight lines. We use a different data set included in \Rlang, \Rdata{Orange}, with data on the growth of five orange trees. See the help page for \code{Orange} for details. - -\label{plot:fig:lines} -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= Orange,} - \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= age,} \hlkwc{y} \hlstd{= circumference,} \hlkwc{linetype} \hlstd{= Tree))} \hlopt{+} - \hlkwd{geom_line}\hlstd{()} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-line-plot-01-1} - -} - - -\end{knitrout} -\index{plots!line plot|)} - -\index{plots!step plot|(} -Instead of drawing a line joining the successive observations, we may want to draw a disconnected straight-line segment for each observation or row in the data. In this case, we use \gggeom{geom\_segment()} which accepts \code{x}, \code{xend}, \code{y} and \code{yend} as mapped aesthetics. \gggeom{geom\_curve()} draws curved lines, and the curvature, control points, and angles can be controlled through additional \emph{aesthetics}. These two \emph{geometries} support arrow heads at their ends. Other \emph{geometries} useful for drawing lines or segments are \gggeom{geom\_path()}, which is similar to \gggeom{geom\_line()}, but instead of joining observations according to the values mapped to \code{x}, it joins them according to their row-order in \code{data}, and \gggeom{geom\_spoke()}, which is similar to \gggeom{geom\_segment()} but using a polar parametrization, based on \code{x}, \code{y} for origin, and \code{angle} and \code{radius} for the segment. Finally, \gggeom{geom\_step()} plots only vertical and horizontal lines to join the observations, creating a stepped line. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= Orange,} - \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= age,} \hlkwc{y} \hlstd{= circumference,} \hlkwc{linetype} \hlstd{= Tree))} \hlopt{+} - \hlkwd{geom_step}\hlstd{()} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-step-plot-01-1} - -} - - -\end{knitrout} -\index{plots!step plot|)} - -\begin{playground} -Using the following toy data, make three plots using \code{geom\_line()}, \code{geom\_path()}, and \code{geom\_step} to add a layer. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{toy.df} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,}\hlnum{3}\hlstd{,}\hlnum{2}\hlstd{,}\hlnum{4}\hlstd{),} \hlkwc{y} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,}\hlnum{1}\hlstd{,}\hlnum{0}\hlstd{,}\hlnum{1}\hlstd{))} -\end{alltt} -\end{kframe} -\end{knitrout} -\end{playground} - -\index{plots!filled-area plot|(} -While \gggeom{geom\_line()} draws a line joining observations, \gggeom{geom\_area()} supports filling the area below the line according to the \code{fill} \emph{aesthetic}. In contrast \gggeom{geom\_ribbon} draws two lines based on the \code{x}, \code{ymin} and \code{ymax} \emph{aesthetics}, with the space between the lines filled according to the \code{fill} \emph{aesthetic}. Finally, \gggeom{geom\_polygom} is similar to \gggeom{geom\_path()} but connects the extreme observations forming a closed polygon that supports \code{fill}. - -Much of what was described above for \gggeom{geom\_point} can be adapted to \gggeom{geom\_line}, \gggeom{geom\_ribbon}, \gggeom{geom\_area} and other \emph{geometries} described in this section. In some cases, it is useful to stack the areas---e.g., when the values represent parts of a bigger whole. In the next, contrived, example, we stack the growth of the different trees by using \code{position = "stack"} instead of the default \code{position = "identity"}. (Compare the $y$ axis of the figure below to that drawn using \code{geom\_line} on page \pageref{plot:fig:lines}.) - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= Orange,} - \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= age,} \hlkwc{y} \hlstd{= circumference,} \hlkwc{fill} \hlstd{= Tree))} \hlopt{+} - \hlkwd{geom_area}\hlstd{(}\hlkwc{position} \hlstd{=} \hlstr{"stack"}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-area-plot-01-1} - -} - - -\end{knitrout} -\index{plots!filled-area plot|)} - -\index{plots!reference lines|(} -Finally,\label{sec:plot:vhline} three \emph{geometries} for drawing lines across the whole plotting area: \gggeom{geom\_hline}, \gggeom{geom\_vline} and \gggeom{geom\_abline}. The first two draw horizontal and vertical lines, respectively, while the third one draws straight lines according to the \emph{aesthetics} \code{slope} and \code{intercept} determining the position. The lines drawn with these three geoms extend to the edge of the plotting area. - -\gggeom{geom\_hline} and \gggeom{geom\_vline} require a single aesthetic, \code{yintercept} and \code{xintercept}, respectively. Different from other geoms, the data for these aesthetics can also be passed as constant numeric vectors. The reason for this is that these geoms are most frequently used to annotate plots rather than plotting observations. Let's assume that we want to highlight an event at the age of 1000 days. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= Orange,} - \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= age,} \hlkwc{y} \hlstd{= circumference,} \hlkwc{fill} \hlstd{= Tree))} \hlopt{+} - \hlkwd{geom_area}\hlstd{(}\hlkwc{position} \hlstd{=} \hlstr{"stack"}\hlstd{)} \hlopt{+} - \hlkwd{geom_vline}\hlstd{(}\hlkwc{xintercept} \hlstd{=} \hlnum{1000}\hlstd{,} \hlkwc{color} \hlstd{=} \hlstr{"gray75"}\hlstd{)} \hlopt{+} - \hlkwd{geom_vline}\hlstd{(}\hlkwc{xintercept} \hlstd{=} \hlnum{1000}\hlstd{,} \hlkwc{linetype} \hlstd{=} \hlstr{"dotted"}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-area-plot-02-1} - -} - - -\end{knitrout} - -\begin{playground} - Change the order of the three layers in the example above. How did the figure change? What order is best? Would the same order be the best for a scatter plot? And would it be necessary to add two \code{geom\_vline()} layers? -\end{playground} -\index{plots!reference lines|)} -\index{grammar of graphics!various line and path geometries|)} - -\subsection{Column}\label{sec:plot:col} -\index{grammar of graphics!column geometry|(} -\index{plots!column plot|(} - -The \emph{geometry} \gggeom{geom\_col()} can be used to create \emph{column plots} where each bar represents an observation or case in the data. - -\begin{warningbox} -\Rlang users not familiar yet with \ggplot are frequently surprised by the default behavior of \gggeom{geom\_bar()} as it uses \ggstat{stat\_count()} to produce a histogram, rather than plotting values as is (see section \ref{sec:plot:histogram} on page \pageref{sec:plot:histogram}). \gggeom{geom\_col()} is identical to \gggeom{geom\_bar()} but with \code{"identity"} as the default statistic. -\end{warningbox} - -We create artificial data that we will reuse in multiple variations of the next figure. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{set.seed}\hlstd{(}\hlnum{654321}\hlstd{)} -\hlstd{my.col.data} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{treatment} \hlstd{=} \hlkwd{factor}\hlstd{(}\hlkwd{rep}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlstr{"B"}\hlstd{,} \hlstr{"C"}\hlstd{),} \hlnum{2}\hlstd{)),} - \hlkwc{group} \hlstd{=} \hlkwd{factor}\hlstd{(}\hlkwd{rep}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"male"}\hlstd{,} \hlstr{"female"}\hlstd{),} \hlkwd{c}\hlstd{(}\hlnum{3}\hlstd{,} \hlnum{3}\hlstd{))),} - \hlkwc{measurement} \hlstd{=} \hlkwd{rnorm}\hlstd{(}\hlnum{6}\hlstd{)} \hlopt{+} \hlkwd{c}\hlstd{(}\hlnum{5.5}\hlstd{,} \hlnum{5}\hlstd{,} \hlnum{7}\hlstd{))} -\end{alltt} -\end{kframe} -\end{knitrout} - -First we plot data for females only, using defaults for all \emph{aesthetics} except $x$ and $y$ which we explicitly map to variables. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwd{subset}\hlstd{(my.col.data, group} \hlopt{==} \hlstr{"female"}\hlstd{),} - \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= treatment,} \hlkwc{y} \hlstd{= measurement))} \hlopt{+} - \hlkwd{geom_col}\hlstd{()} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-col-plot-02-1} - -} - - -\end{knitrout} - -We play with \emph{aesthetics} to produce a plot with a semi-formal style---e.g., suitable for a science popularization article or book. See section \ref{sec:plot:scales} and section \ref{sec:plot:themes} for information on scales and themes, respectively. We set \code{width = 0.5} to make the bars narrower. Setting \code{color = "white"} overrides the default color of the lines bordering the bars. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(my.col.data,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= treatment,} \hlkwc{y} \hlstd{= measurement,} \hlkwc{fill} \hlstd{= group))} \hlopt{+} - \hlkwd{geom_col}\hlstd{(}\hlkwc{color} \hlstd{=} \hlstr{"white"}\hlstd{,} \hlkwc{width} \hlstd{=} \hlnum{0.5}\hlstd{)} \hlopt{+} - \hlkwd{scale_fill_grey}\hlstd{()} \hlopt{+} \hlkwd{theme_dark}\hlstd{()} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-col-plot-03-1} - -} - - -\end{knitrout} - -We next use a formal style, and in addition, put the bars side by side by setting \code{position = "dodge"} to override the default \code{position = "stack"}. Setting \code{color = NA} removes the lines bordering the bars. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(my.col.data,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= treatment,} \hlkwc{y} \hlstd{= measurement,} \hlkwc{fill} \hlstd{= group))} \hlopt{+} - \hlkwd{geom_col}\hlstd{(}\hlkwc{color} \hlstd{=} \hlnum{NA}\hlstd{,} \hlkwc{position} \hlstd{=} \hlstr{"dodge"}\hlstd{)} \hlopt{+} - \hlkwd{scale_fill_grey}\hlstd{()} \hlopt{+} \hlkwd{theme_classic}\hlstd{()} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-col-plot-04-1} - -} - - -\end{knitrout} - -\begin{playground} -Change the argument to \code{position}, or let the default be active, until you understand its effect on the figure. What is the difference between \emph{positions} \code{"identity"}, \code{"dodge"} and \code{"stack"}? -\end{playground} - -\begin{playground} -Use constants as arguments for \emph{aesthetics} or map variable \code{treatment} to one or more of the \emph{aesthetics} used by \gggeom{geom\_col()}, such as \code{color}, \code{fill}, \code{linetype}, \code{size}, \code{alpha} and \code{width}. -\end{playground} - -\index{grammar of graphics!column geometry|)} -\index{plots!column plot|)} - -\subsection{Tiles}\label{sec:tileplot} -\index{grammar of graphics!tile geometry|(} -\index{plots!tile plot|(} -We can draw square or rectangular tiles with \gggeom{geom\_tile()} producing tile plots or simple heat maps. - -We here generate 100 random draws from the $F$ distribution with degrees of freedom $\nu_1 = 5, \nu_2 = 20$. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{set.seed}\hlstd{(}\hlnum{1234}\hlstd{)} -\hlstd{randomf.df} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{F.value} \hlstd{=} \hlkwd{rf}\hlstd{(}\hlnum{100}\hlstd{,} \hlkwc{df1} \hlstd{=} \hlnum{5}\hlstd{,} \hlkwc{df2} \hlstd{=} \hlnum{20}\hlstd{),} - \hlkwc{x} \hlstd{=} \hlkwd{rep}\hlstd{(letters[}\hlnum{1}\hlopt{:}\hlnum{10}\hlstd{],} \hlnum{10}\hlstd{),} - \hlkwc{y} \hlstd{= LETTERS[}\hlkwd{rep}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{10}\hlstd{,} \hlkwd{rep}\hlstd{(}\hlnum{10}\hlstd{,} \hlnum{10}\hlstd{))])} -\end{alltt} -\end{kframe} -\end{knitrout} - -\gggeom{geom\_tile()} requires aesthetics $x$ and $y$, with no defaults, and \code{width} and \code{height} with defaults that make all tiles of equal size filling the plotting area. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(randomf.df,} \hlkwd{aes}\hlstd{(x, y,} \hlkwc{fill} \hlstd{= F.value))} \hlopt{+} - \hlkwd{geom_tile}\hlstd{()} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-tile-plot-02-1} - -} - - -\end{knitrout} - -We can set \code{color = "gray75"} and \code{size = 1} to make the tile borders more visible as in the example below, or use a contrasting color, to better delineate the borders of the tiles. What to use will depend on whether the individual tiles add meaningful information. In cases like when rows of tiles correspond to individual genes and columns to discrete treatments, the use of contrasting tile borders is preferable. In contrast, in the case when the tiles are an approximation to a continuous surface such as measurements on a regular spatial grid, it is best to suppress the tile borders. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(randomf.df,} \hlkwd{aes}\hlstd{(x, y,} \hlkwc{fill} \hlstd{= F.value))} \hlopt{+} - \hlkwd{geom_tile}\hlstd{(}\hlkwc{color} \hlstd{=} \hlstr{"gray75"}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{1.33}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-tile-plot-03-1} - -} - - -\end{knitrout} - -\begin{playground} -Play with the arguments passed to parameters \code{color} and \code{size} in the example above, considering what features of the data are most clearly perceived in each of the plots you create. -\end{playground} - -Any continuous fill scale can be used to control the appearance. Here we show a tile plot using a gray gradient, with missing values in red. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}(randomf.df, \hlkwd{aes}(x, y, fill = F.value) + - \hlkwd{geom_tile}(color = \hlstr{"white"}) + - \hlkwd{scale_fill_gradient}(low = \hlstr{"gray15"}, high = \hlstr{"gray85"}, na.value = \hlstr{"red"}) -\end{alltt} -\end{kframe} -\end{knitrout} - -In contrast to \gggeom{geom\_tile()}, \gggeom{geom\_rect()} draws rectangular tiles based on the position of the corners, mapped to aesthetics \code{xmin}, \code{xmax}, \code{ymin} and \code{ymax}. - -\index{plots!tile plot|)} -\index{grammar of graphics!tile geometry|)} - -\subsection{Simple features (sf)}\label{sec:plot:sf} -\index{grammar of graphics!sf geometries|(} -\index{plots!maps and spatial plots|(} - -\ggplot version 3.0.0 or later supports the plotting of shape data similar to the plotting in geographic information systems (GIS) through \gggeom{geom\_sf()} and its companions, \gggeom{geom\_sf\_text()}, \gggeom{geom\_sf\_label()}, and \ggstat{stat\_sf()}. This makes it possible to display data on maps, for example, using different fill values for different regions. Special \emph{coordinate} \code{coord\_sf()} can be used to select different projections for maps. The \emph{aesthetic} used is called \code{geometry} and contrary to all the other aesthetics we have seen until now, the values to be mapped are of class \code{sfc} containing \emph{simple features} data with multiple components. Manipulation of simple features data is supported by package \pkgname{sf}. This subject exceeds the scope of this book, so a single and very simple example follows. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{nc} \hlkwb{<-} \hlstd{sf}\hlopt{::}\hlkwd{st_read}\hlstd{(}\hlkwd{system.file}\hlstd{(}\hlstr{"shape/nc.shp"}\hlstd{,} \hlkwc{package} \hlstd{=} \hlstr{"sf"}\hlstd{),} \hlkwc{quiet} \hlstd{=} \hlnum{TRUE}\hlstd{)} -\hlkwd{ggplot}\hlstd{(nc)} \hlopt{+} - \hlkwd{geom_sf}\hlstd{(}\hlkwd{aes}\hlstd{(}\hlkwc{fill} \hlstd{= AREA),} \hlkwc{color} \hlstd{=} \hlstr{"gray90"}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-sf_plot-01-1} - -} - - -\end{knitrout} -\index{grammar of graphics!sf geometries|)} -\index{plots!maps and spatial plots|)} - -\subsection{Text}\label{sec:plot:text} -\index{grammar of graphics!text and label geometries|(} -\index{plots!text in|(} -\index{plots!maths in|(} -We can use \gggeom{geom\_text()} or \gggeom{geom\_label()} to add text labels to observations. For \gggeom{geom\_text()} and \gggeom{geom\_label()}, the aesthetic \code{label} provides the text to be plotted and the usual aesthetics \code{x} and \code{y}, the location of the labels. As one would expect, the \code{color} and \code{size} aesthetics can also be used for the text. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} - \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl),} - \hlkwc{size} \hlstd{= wt,} - \hlkwc{label} \hlstd{= cyl))} \hlopt{+} - \hlkwd{scale_size}\hlstd{()} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{geom_text}\hlstd{(}\hlkwc{color} \hlstd{=} \hlstr{"darkblue"}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{3}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-text-plot-01-1} - -} - - -\end{knitrout} - -In addition, \code{angle} and \code{vjust} and \code{hjust} can be used to rotate the text and adjust its position. The default value of 0.5 for both \code{hjust} and \code{vjust} sets the center of the text at the supplied \code{x} and \code{y} coordinates. ``Vertical'' and ``horizontal'' for justification refer to the text, not the plot. This is important when \code{angle} is different from zero. Values larger than 0.5 shift the label left or down, and values smaller than 0.5, right or up with respect to its \code{x} and \code{y} coordinates. A value of 1 or 0 sets the text so that its edge is at the supplied coordinate. Values outside the range $0\ldots 1$ shift the text even farther away, however, still using units based on the length or height of the text label. Recent versions of \pkgname{ggplot2} make possible justification using character constants for alignment: \code{"left"}, \code{"middle"}, \code{"right"}, \code{"bottom"}, \code{"center"} and \code{"top"}, and two special alignments, \code{"inward"} and \code{"outward"}, that automatically vary based on the position in the plotting area. - -In the case of \gggeom{geom\_label()} the text is enclosed in a box, which obeys the \code{fill} \emph{aesthetic} and takes additional parameters (described starting at page \pageref{start:plot:label}) allowing control of the shape and size of the box. However, \gggeom{geom\_label()} does not support rotation with the \code{angle} aesthetic. - -\begin{warningbox} -You\index{plots!fonts} should be aware that \Rlang and \ggplot support the use of UNICODE\index{UNICODE}, such as UTF8\index{UTF8} character encodings in strings. If your editor or IDE supports their use, then you can type Greek letters and simple maths symbols directly, and they \emph{may} show correctly in labels if a suitable font is loaded and an extended encoding like UTF8 is in use by the operating system. Even if UTF8 is in use, text is not fully portable unless the same font is available\index{portability}, as even if the character positions are standardized for many languages, most UNICODE fonts support at most a small number of languages. In principle one can use this mechanism to have labels both using other alphabets and languages like Chinese with their numerous symbols mixed in the same figure. Furthermore, the support for fonts and consequently character sets in \Rlang is output-device dependent. The font encoding used by \Rlang by default depends on the default locale settings of the operating system, which can also lead to garbage printed to the console or wrong characters being plotted running the same code on a different computer from the one where a script was created. Not all is lost, though, as \Rlang can be coerced to use system fonts and Google fonts with functions provided by packages \pkgname{showtext} and \pkgname{extrafont}. Encoding-related problems, especially in MS-Windows, are common. -\end{warningbox} - -In the remaining examples, with output not shown, we use \gggeom{geom\_text} or \gggeom{geom\_label} together with \gggeom{geom\_point} as this is how they may be used to label observations. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.data} \hlkwb{<-} - \hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} - \hlkwc{y} \hlstd{=} \hlkwd{rep}\hlstd{(}\hlnum{2}\hlstd{,} \hlnum{5}\hlstd{),} - \hlkwc{label} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"b"}\hlstd{,} \hlstr{"c"}\hlstd{,} \hlstr{"d"}\hlstd{,} \hlstr{"e"}\hlstd{))} - -\hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(x, y,} \hlkwc{label} \hlstd{= label))} \hlopt{+} - \hlkwd{geom_text}\hlstd{(}\hlkwc{angle} \hlstd{=} \hlnum{45}\hlstd{,} \hlkwc{hjust} \hlstd{=} \hlnum{1.5}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{8}\hlstd{)} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} -\end{alltt} -\end{kframe} -\end{knitrout} - -\begin{playground} -Modify the example above to use \gggeom{geom\_label()} instead of \gggeom{geom\_text()} using, in addition, the \code{fill} aesthetic. -\end{playground} - -In the next example we select a different font family, using the same characters in the Roman alphabet. The names \code{"sans"} (the default), \code{"serif"} and \code{"mono"} are recognized by all graphics devices on all operating systems. Additional fonts are available for specific graphic devices, such as the 35 ``PDF'' fonts by the \code{pdf()} device. In this case, their names can be queried with \code{names(pdfFonts())}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(x, y,} \hlkwc{label} \hlstd{= label))} \hlopt{+} - \hlkwd{geom_text}\hlstd{(}\hlkwc{angle} \hlstd{=} \hlnum{45}\hlstd{,} \hlkwc{hjust} \hlstd{=} \hlnum{1.5}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{8}\hlstd{,} \hlkwc{family} \hlstd{=} \hlstr{"serif"}\hlstd{)} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} -\end{alltt} -\end{kframe} -\end{knitrout} - -\begin{playground} -In the examples above the character strings were all of the same length, containing a single character. Redo the plots above with longer character strings of various lengths mapped to the \code{label} \emph{aesthetic}. Do also play with justification of these labels. -\end{playground} - -Plotting (mathematical) expressions involves mapping to the \code{label} aesthetic character strings that can be parsed as expressions, and setting \code{parse = TRUE} (see section \ref{sec:plot:plotmath} on page \pageref{sec:plot:plotmath}). Here, we build the character strings using \Rfunction{paste()} but, of course, they could also have been entered one by one. This use of \Rfunction{paste()} provides an example of recycling of shorter vectors (see section \ref{sec:vectors} on page \pageref{sec:vectors}). - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.data} \hlkwb{<-} - \hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlkwc{y} \hlstd{=} \hlkwd{rep}\hlstd{(}\hlnum{2}\hlstd{,} \hlnum{5}\hlstd{),} \hlkwc{label} \hlstd{=} \hlkwd{paste}\hlstd{(}\hlstr{"alpha["}\hlstd{,} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlstr{"]"}\hlstd{,} \hlkwc{sep} \hlstd{=} \hlstr{""}\hlstd{))} -\hlstd{my.data}\hlopt{$}\hlstd{label} -\end{alltt} -\begin{verbatim} -## [1] "alpha[1]" "alpha[2]" "alpha[3]" "alpha[4]" "alpha[5]" -\end{verbatim} -\end{kframe} -\end{knitrout} - -Text and labels do not automatically expand the plotting area past their anchoring coordinates. In the example above, we need to use \code{expand\_limits()} to ensure that the text is not clipped at the edge of the plotting area. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(x, y,} \hlkwc{label} \hlstd{= label))} \hlopt{+} - \hlkwd{geom_text}\hlstd{(}\hlkwc{hjust} \hlstd{=} \hlopt{-}\hlnum{0.2}\hlstd{,} \hlkwc{parse} \hlstd{=} \hlnum{TRUE}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{6}\hlstd{)} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{expand_limits}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{5.2}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-text-plot-06-1} - -} - - -\end{knitrout} - -In the example above, we mapped to label the text to be parsed. It is also possible, and usually preferable, to build suitable labels on the fly within \code{aes()} when setting the mapping for \code{label}. Here we use \gggeom{geom\_text()} with strings to be parsed into expressions created on the fly within the call to \Rfunction{aes()}. The same approach can be used for regular character strings not requiring parsing. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(x, y,} \hlkwc{label} \hlstd{=} \hlkwd{paste}\hlstd{(}\hlstr{"alpha["}\hlstd{, x,} \hlstr{"]"}\hlstd{,} \hlkwc{sep} \hlstd{=} \hlstr{""}\hlstd{)))} \hlopt{+} - \hlkwd{geom_text}\hlstd{(}\hlkwc{hjust} \hlstd{=} \hlopt{-}\hlnum{0.2}\hlstd{,} \hlkwc{parse} \hlstd{=} \hlnum{TRUE}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{6}\hlstd{)} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} -\end{alltt} -\end{kframe} -\end{knitrout} - -As \gggeom{geom\_label()} obeys the same parameters as \gggeom{geom\_text()} except for \code{angle}, we briefly describe below only the additional parameters compared to \gggeom{geom\_text()}. We may want to alter the default width of the border line or the color used to \code{fill} the rectangle, or to change the ``roundness'' of the corners. To suppress the border line, use \code{label.size = 0}. Corner roundness is controlled by parameter \code{label.r} and the size of the margin around the text by \code{label.padding}. - -\label{start:plot:label} -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.data} \hlkwb{<-} - \hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlkwc{y} \hlstd{=} \hlkwd{rep}\hlstd{(}\hlnum{2}\hlstd{,} \hlnum{5}\hlstd{),} - \hlkwc{label} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"one"}\hlstd{,} \hlstr{"two"}\hlstd{,} \hlstr{"three"}\hlstd{,} \hlstr{"four"}\hlstd{,} \hlstr{"five"}\hlstd{))} - -\hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(x, y,} \hlkwc{label} \hlstd{= label))} \hlopt{+} - \hlkwd{geom_label}\hlstd{(}\hlkwc{hjust} \hlstd{=} \hlopt{-}\hlnum{0.2}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{6}\hlstd{,} - \hlkwc{label.size} \hlstd{=} \hlnum{0L}\hlstd{,} - \hlkwc{label.r} \hlstd{=} \hlkwd{unit}\hlstd{(}\hlnum{0}\hlstd{,} \hlstr{"lines"}\hlstd{),} - \hlkwc{label.padding} \hlstd{=} \hlkwd{unit}\hlstd{(}\hlnum{0.15}\hlstd{,} \hlstr{"lines"}\hlstd{),} - \hlkwc{fill} \hlstd{=} \hlstr{"yellow"}\hlstd{,} \hlkwc{alpha} \hlstd{=} \hlnum{0.5}\hlstd{)} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{expand_limits}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{5.6}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-label-plot-01-1} - -} - - -\end{knitrout} - -\begin{playground} -Play with the arguments to the different parameters and with the \emph{aesthetics} to get an idea of what can be done with them. For example, use thicker border lines and increase the padding so that a visually well-balanced margin is retained. You may also try mapping the \code{fill} and \code{color} \emph{aesthetics} to factors in the data. -\end{playground} - -If\index{grammar of graphics!text and label geometries!repulsive} the parameter \code{check\_overlap} of \gggeom{geom\_text()} is set to \code{TRUE}, text overlap will be avoided by suppressing the text that would otherwise overlap other text. \emph{Repulsive} versions of \gggeom{geom\_text()} and \gggeom{geom\_label()}, \gggeom{geom\_text\_repel()} and \gggeom{geom\_label\_repel()}, are available in package \pkgname{ggrepel}. These \emph{geometries} avoid overlaps by automatically repositioning the text or labels. Please read the package documentation for details of how to control the repulsion strength and direction, and the properties of the segments linking the labels to the position of their data coordinates. Nearly all aesthetics supported by \code{geom\_text()} and \code{geom\_label()} are supported by the repulsive versions. However, given that a segment connects the label or text to its anchor point, several properties of these segments can also be controlled with aesthetics or arguments. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} - \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl),} \hlkwc{size} \hlstd{= wt,} \hlkwc{label} \hlstd{= cyl))} \hlopt{+} - \hlkwd{scale_size}\hlstd{()} \hlopt{+} - \hlkwd{geom_point}\hlstd{(}\hlkwc{alpha} \hlstd{=} \hlnum{1}\hlopt{/}\hlnum{3}\hlstd{)} \hlopt{+} - \hlkwd{geom_text_repel}\hlstd{(}\hlkwc{color} \hlstd{=} \hlstr{"black"}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{3}\hlstd{,} - \hlkwc{min.segment.length} \hlstd{=} \hlnum{0.2}\hlstd{,} \hlkwc{point.padding} \hlstd{=} \hlnum{0.1}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-repel-plot-01-1} - -} - - -\end{knitrout} -\index{plots!maths in|)} -\index{plots!text in|)} -\index{grammar of graphics!text and label geometries|)} - -\subsection{Plot insets}\label{sec:plot:insets} -\index{grammar of graphics!inset-related geometries|(} -\index{plots!insets|(} - -The support for insets in \pkgname{ggplot2} is confined to \code{annotation\_custom()} which was designed to be used for static annotations expected to be the same in each panel of a plot (the use of annotations is described in section \ref{sec:plot:annotations}). Package \pkgname{ggpmisc} provides geoms that mimic \code{geom\_text()} in relation to the \emph{aesthetics} used, but that similarly to \code{geom\_sf()}, expect that the column in \code{data} mapped to the \code{label} aesthetics are lists of objects containing multiple pieces of information, rather than atomic vectors. Three geometries are currently available: \gggeom{geom\_table()}, \gggeom{geom\_plot()} and \gggeom{geom\_grob()}. - -\begin{warningbox} -Given that \gggeom{geom\_table()}, \gggeom{geom\_plot()} and \gggeom{geom\_grob()} will rarely use a mapping inherited from the whole plot, by default they do not inherit it. Either the mapping should be supplied as an argument to these functions or their parameter \code{inherit.aes} explicitly set to \code{TRUE}. -\end{warningbox} - -\index{plots!inset tables|(} -The plotting of tables by mapping a list of data frames to the \code{label} \emph{aesthetic} is done with \gggeom{geom\_table}. Positioning, justification, and angle work as for \gggeom{geom\_text} and are applied to the whole table. Only \code{tibble} objects (see documentation of package \pkgname{tibble}) can contain, as variables, lists of data frames, so this \emph{geometry} requires the use of \code{tibble} objects to store the data. The table(s) are created as 'grid' \code{grob} objects, collected in a tree and added to the \code{ggplot} object as a new layer. - -We first generate a \code{tibble} containing summaries from the data, formatted as character strings, wrap this tibble in a list, and store this list as a column in another \code{tibble}. To accomplish this, we use functions from the \pkgname{tidyverse} described in chapter \ref{chap:R:data}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{mtcars} \hlopt{%.>%} - \hlkwd{group_by}\hlstd{(., cyl)} \hlopt{%.>%} - \hlkwd{summarize}\hlstd{(.,} - \hlstr{"mean wt"} \hlstd{=} \hlkwd{format}\hlstd{(}\hlkwd{mean}\hlstd{(wt),} \hlkwc{digits} \hlstd{=} \hlnum{3}\hlstd{),} - \hlstr{"mean disp"} \hlstd{=} \hlkwd{format}\hlstd{(}\hlkwd{mean}\hlstd{(disp),} \hlkwc{digits} \hlstd{=} \hlnum{2}\hlstd{),} - \hlstr{"mean mpg"} \hlstd{=} \hlkwd{format}\hlstd{(}\hlkwd{mean}\hlstd{(mpg),} \hlkwc{digits} \hlstd{=} \hlnum{2}\hlstd{))} \hlkwb{->} \hlstd{my.table} -\hlstd{table.tb} \hlkwb{<-} \hlkwd{tibble}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{500}\hlstd{,} \hlkwc{y} \hlstd{=} \hlnum{35}\hlstd{,} \hlkwc{table.inset} \hlstd{=} \hlkwd{list}\hlstd{(my.table))} -\end{alltt} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} - \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl),} - \hlkwc{size} \hlstd{= wt,} - \hlkwc{label} \hlstd{= cyl))} \hlopt{+} - \hlkwd{scale_size}\hlstd{()} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{geom_table}\hlstd{(}\hlkwc{data} \hlstd{= table.tb,} - \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= x,} \hlkwc{y} \hlstd{= y,} \hlkwc{label} \hlstd{= table.inset),} - \hlkwc{color} \hlstd{=} \hlstr{"black"}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{3}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-table-plot-02-1} - -} - - -\end{knitrout} - -The \code{color} and \code{size} aesthetics control the text in the table(s) as a whole. -It is also possible to rotate the table(s) using \code{angle}. As with text labels, justification is interpreted in relation to table-text orientation. We set the \code{y = 0} in \code{data.tb} and then use \code{vjust = 1} to position the top of the table at this coordinate value. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{geom_table}\hlstd{(}\hlkwc{data} \hlstd{= table.tb,} - \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= x,} \hlkwc{y} \hlstd{= y,} \hlkwc{label} \hlstd{= table.inset),} - \hlkwc{color} \hlstd{=} \hlstr{"blue"}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{3}\hlstd{,} - \hlkwc{hjust} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{vjust} \hlstd{=} \hlnum{0}\hlstd{,} \hlkwc{angle} \hlstd{=} \hlnum{90}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - -Parsed text, using R's \emph{plotmath} syntax is supported in the table, with fallback to plain text in case of parsing errors, on a cell-by-cell basis. We end this section with a simple example, which even if not very useful, demonstrates that \gggeom{geom\_table()} behaves like a ``normal'' ggplot \emph{geometry} and that a table can be the only layer in a ggplot if desired. The addition of multiple tables with a single call to \gggeom{geom\_table()} by passing a \code{tibble} with multiple rows as an argument for \code{data} is also possible. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{tb.pm} \hlkwb{<-} \hlkwd{tibble}\hlstd{(}\hlstr{'x^0'} \hlstd{=} \hlnum{1}\hlstd{,} - \hlstr{'x^1'} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} - \hlstr{'x^2'} \hlstd{= (}\hlnum{1}\hlopt{:}\hlnum{5}\hlstd{)}\hlopt{^}\hlnum{2}\hlstd{,} - \hlstr{'x^3'} \hlstd{= (}\hlnum{1}\hlopt{:}\hlnum{5}\hlstd{)}\hlopt{^}\hlnum{3}\hlstd{)} -\hlstd{data.tb} \hlkwb{<-} \hlkwd{tibble}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{y} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{table.inset} \hlstd{=} \hlkwd{list}\hlstd{(tb.pm))} -\hlkwd{ggplot}\hlstd{(data.tb,} \hlkwc{mapping} \hlstd{=} \hlkwd{aes}\hlstd{(x, y,} \hlkwc{label} \hlstd{= table.inset))} \hlopt{+} - \hlkwd{geom_table}\hlstd{(}\hlkwc{inherit.aes} \hlstd{=} \hlnum{TRUE}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{7}\hlstd{,} \hlkwc{parse} \hlstd{=} \hlnum{TRUE}\hlstd{)} \hlopt{+} - \hlkwd{theme_void}\hlstd{()} -\end{alltt} -\end{kframe} -\end{knitrout} - -\begin{explainbox} - The \emph{geometry} \gggeom{geom\_table()} uses functions from package \pkgname{gridExtra} to build a graphical object for the table. The use of table themes was not yet supported by this geometry at the time of writing. -\end{explainbox} -\index{plots!inset tables|)} - -\index{plots!inset plots|(} -Geometry \gggeom{geom\_plot()} works much like \code{geom\_table()}, but instead of expecting a list of data frames or tibbles to be mapped to the \code{label} aesthetics, it expects a list of ggplots (objects of class \code{gg}). This allows adding as an inset to a ggplot, another ggplot. In the times when plots were hand drafted with India ink on paper, the use of inset plots was more frequent than nowadays. Inset plots can be very useful for zooming-in on parts of a main plot where observations are crowded and for displaying summaries based on the observations shown in the main plot. The inset plots are nested in viewports which control the dimensions of the inset plot, and aesthetics \code{vp.height} and \code{vp.width} control their sizes---with defaults of 1/3 of the height and width of the plotting area of the main plot. Themes can be applied separately to the main and inset plots. - -In the first example of inset plots, we include one of the summaries shown above as an inset table. We first create a tibble containing the plot to be inset. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{mtcars} \hlopt{%.>%} - \hlkwd{group_by}\hlstd{(., cyl)} \hlopt{%.>%} - \hlkwd{summarize}\hlstd{(.,} \hlkwc{mean.mpg} \hlstd{=} \hlkwd{mean}\hlstd{(mpg))} \hlopt{%.>%} - \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= .,} - \hlkwd{aes}\hlstd{(}\hlkwd{factor}\hlstd{(cyl), mean.mpg,} \hlkwc{fill} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} - \hlkwd{scale_fill_discrete}\hlstd{(}\hlkwc{guide} \hlstd{=} \hlstr{"none"}\hlstd{)} \hlopt{+} - \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{name} \hlstd{=} \hlkwa{NULL}\hlstd{)} \hlopt{+} - \hlkwd{geom_col}\hlstd{()} \hlopt{+} - \hlkwd{theme_bw}\hlstd{(}\hlnum{8}\hlstd{)} \hlkwb{->} \hlstd{my.plot} -\hlstd{plot.tb} \hlkwb{<-} \hlkwd{tibble}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{500}\hlstd{,} \hlkwc{y} \hlstd{=} \hlnum{35}\hlstd{,} \hlkwc{plot.inset} \hlstd{=} \hlkwd{list}\hlstd{(my.plot))} -\end{alltt} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} - \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{geom_plot}\hlstd{(}\hlkwc{data} \hlstd{= plot.tb,} - \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= x,} \hlkwc{y} \hlstd{= y,} \hlkwc{label} \hlstd{= plot.inset),} - \hlkwc{vp.width} \hlstd{=} \hlnum{1}\hlopt{/}\hlnum{2}\hlstd{,} - \hlkwc{hjust} \hlstd{=} \hlstr{"inward"}\hlstd{,} \hlkwc{vjust} \hlstd{=} \hlstr{"inward"}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-plot-plot-02-1} - -} - - -\end{knitrout} - -In the second example we add the zoomed version of the same plot as an inset. 1) Manually set limits to the coordinates to zoom into a region of the main plot, 2) set the \emph{theme} of the inset, 3) remove axis labels as they are the same as in the main plot, 4) and 5) highlight the zoomed-in region in the main plot. This fairly complex example shows how a new extension to \pkgname{ggplot2} can integrate well into the grammar of graphics paradigm. In this example, to show an alternative approach, instead of collecting all the data into a data frame, we map constant values directly to the various aesthetics within \Rfunction{annotate()} (see section \ref{sec:plot:annotations} on page \pageref{sec:plot:annotations}). - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{p.main} \hlkwb{<-} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} -\hlstd{p.inset} \hlkwb{<-} \hlstd{p.main} \hlopt{+} - \hlkwd{coord_cartesian}\hlstd{(}\hlkwc{xlim} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{270}\hlstd{,} \hlnum{330}\hlstd{),} \hlkwc{ylim} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{14}\hlstd{,} \hlnum{19}\hlstd{))} \hlopt{+} - \hlkwd{labs}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwa{NULL}\hlstd{,} \hlkwc{y} \hlstd{=} \hlkwa{NULL}\hlstd{)} \hlopt{+} - \hlkwd{scale_color_discrete}\hlstd{(}\hlkwc{guide} \hlstd{=} \hlstr{"none"}\hlstd{)} \hlopt{+} - \hlkwd{theme_bw}\hlstd{(}\hlnum{8}\hlstd{)} \hlopt{+} \hlkwd{theme}\hlstd{(}\hlkwc{aspect.ratio} \hlstd{=} \hlnum{1}\hlstd{)} -\hlstd{p.main} \hlopt{+} - \hlkwd{geom_plot}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{480}\hlstd{,} \hlkwc{y} \hlstd{=} \hlnum{34}\hlstd{,} \hlkwc{label} \hlstd{=} \hlkwd{list}\hlstd{(p.inset),} \hlkwc{vp.height} \hlstd{=} \hlnum{1}\hlopt{/}\hlnum{2}\hlstd{,} - \hlkwc{hjust} \hlstd{=} \hlstr{"inward"}\hlstd{,} \hlkwc{vjust} \hlstd{=} \hlstr{"inward"}\hlstd{)} \hlopt{+} - \hlkwd{annotate}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"rect"}\hlstd{,} \hlkwc{fill} \hlstd{=} \hlnum{NA}\hlstd{,} \hlkwc{color} \hlstd{=} \hlstr{"black"}\hlstd{,} - \hlkwc{xmin} \hlstd{=} \hlnum{270}\hlstd{,} \hlkwc{xmax} \hlstd{=} \hlnum{330}\hlstd{,} \hlkwc{ymin} \hlstd{=} \hlnum{14}\hlstd{,} \hlkwc{ymax} \hlstd{=} \hlnum{19}\hlstd{,} - \hlkwc{linetype} \hlstd{=} \hlstr{"dotted"}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-plot-plot-03-1} - -} - - -\end{knitrout} -\index{plots!inset plots|)} -\index{plots!inset graphical objects|(} -Geometry \gggeom{geom\_grob()} works much like \code{geom\_table()} and \code{geom\_plot()} but expects a list of \pkgname{grid} graphical objects, called \code{grob} for short. This adds generality at the expense of having to separately create the grobs either using \pkgname{grid} or by converting other objects into grobs. This geometry is as flexible as \gggeom{annotation\_custom()} with respect to the grobs, but behaves as a \emph{geometry}. We show an example that adds two bitmaps to the plot. The bitmaps are read from PNG files, converted into grobs, and added to the plot as a new layer. The PNG bitmaps used have a transparent background. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{file1.name} \hlkwb{<-} - \hlkwd{system.file}\hlstd{(}\hlstr{"extdata"}\hlstd{,} \hlstr{"Isoquercitin.png"}\hlstd{,} \hlkwc{package} \hlstd{=} \hlstr{"ggpmisc"}\hlstd{,} \hlkwc{mustWork} \hlstd{=} \hlnum{TRUE}\hlstd{)} -\hlstd{Isoquercitin} \hlkwb{<-} \hlstd{magick}\hlopt{::}\hlkwd{image_read}\hlstd{(file1.name)} -\hlstd{file2.name} \hlkwb{<-} - \hlkwd{system.file}\hlstd{(}\hlstr{"extdata"}\hlstd{,} \hlstr{"Robinin.png"}\hlstd{,} \hlkwc{package} \hlstd{=} \hlstr{"ggpmisc"}\hlstd{,} \hlkwc{mustWork} \hlstd{=} \hlnum{TRUE}\hlstd{)} -\hlstd{Robinin} \hlkwb{<-} \hlstd{magick}\hlopt{::}\hlkwd{image_read}\hlstd{(file2.name)} -\hlstd{grob.tb} \hlkwb{<-} \hlkwd{tibble}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,} \hlnum{100}\hlstd{),} \hlkwc{y} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{10}\hlstd{,} \hlnum{20}\hlstd{),} \hlkwc{height} \hlstd{=} \hlnum{1}\hlopt{/}\hlnum{3}\hlstd{,} \hlkwc{width} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{1}\hlopt{/}\hlnum{2}\hlstd{),} - \hlkwc{grobs} \hlstd{=} \hlkwd{list}\hlstd{(grid}\hlopt{::}\hlkwd{rasterGrob}\hlstd{(}\hlkwc{image} \hlstd{= Isoquercitin),} - \hlstd{grid}\hlopt{::}\hlkwd{rasterGrob}\hlstd{(}\hlkwc{image} \hlstd{= Robinin)))} - -\hlkwd{ggplot}\hlstd{()} \hlopt{+} - \hlkwd{geom_grob}\hlstd{(}\hlkwc{data} \hlstd{= grob.tb,} - \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= x,} \hlkwc{y} \hlstd{= y,} \hlkwc{label} \hlstd{= grobs,} \hlkwc{vp.height} \hlstd{= height,} \hlkwc{vp.width} \hlstd{= width),} - \hlkwc{hjust} \hlstd{=} \hlstr{"inward"}\hlstd{,} \hlkwc{vjust} \hlstd{=} \hlstr{"inward"}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-plot-grob-01-1} - -} - - -\end{knitrout} -\index{plots!inset graphical objects|)} - -\begin{explainbox} -Grid graphics\index{grid graphics coordinate systems} provide the low-level functions that both \pkgname{ggplot2} and \pkgname{lattice} use under the hood. Grid supports different types of units for expressing the coordinates of positions within the plotting area. All examples outside this text box use \code{"native"} data coordinates, however, coordinates can be also given in physical units like \code{"mm"}. More useful when working with scalable plots is to use "npc" \emph{normalized parent coordinates}, which are expressed as numbers in the range 0 to 1, relative to the dimensions of the sides of the current \emph{viewport}, with origin at the lower left corner. - -Package \pkgname{ggplot2} interprets $x$ and $y$ coordinates in \code{"native"} data coordinates, and trickery seems to be needed to get around this limitation. A rather general solution is provided by package \pkgname{ggpmisc} through \emph{aesthetics} \code{npcx} and \code{npcy} and \emph{geometries} that support them. At the time of writing, \gggeom{geom\_text\_npc()}, \gggeom{geom\_label\_npc()}, \gggeom{geom\_table\_npc()}, \gggeom{geom\_plot\_npc()} and \gggeom{geom\_grob\_npc()}. These \emph{geometries} are useful for annotating plots and adding insets at positions relative to the plotting area that remain always consistent across different plots, or across panels when using facets with free axis limits. Being geometries they provide freedom in the elements added to different panels and their positions. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{geom_label_npc}\hlstd{(}\hlkwc{npcx} \hlstd{=} \hlnum{0.5}\hlstd{,} \hlkwc{npcy} \hlstd{=} \hlnum{0.9}\hlstd{,} \hlkwc{label} \hlstd{=} \hlstr{"a label"}\hlstd{,} \hlkwc{color} \hlstd{=} \hlstr{"black"}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-plot-npc-eb-01-1} - -} - - -\end{knitrout} - -\end{explainbox} - -\index{grammar of graphics!inset-related geometries|)} -\index{plots!insets|)} -\index{grammar of graphics!geometries|)} - -\section{Statistics}\label{sec:plot:statistics} -\index{grammar of graphics!statistics|(} - -Before learning about \ggplot \emph{statistics}, it is important to have clear how the mapping of factors to \emph{aesthetics} works. When a factor, for example, is mapped to \code{color}, it creates a new grouping, with the observations matching a given level of the factor, corresponding to a group. Most \emph{statistics} operate on the data for each of these groups separately, returning a summary for each group, for example, the mean of the observations in a group. - -\subsection{Functions}\label{sec:plot:function} -\index{grammar of graphics!function statistic|(} -\index{plots!plots of functions|(} -In addition to plotting data from a data frame with variables to map to $x$ and $y$ \emph{aesthetics}, it is possible to have only a variable mapped to $x$ and use \ggstat{stat\_function()} to compute the values to be mapped to $y$ using an \Rlang function. This avoids the need to generate data beforehand as even the number of data points to be generated can be set in \code{geom\_function()}. Any \Rlang function, user defined or not, can be used as long as it is vectorized, with the length of the returned vector equal to the length of the vector passed as first argument to it. The variable mapped to \code{x} determines the range, and the argument to parameter \code{n} of \code{geom\_function()} the length of the generated vector that is passed as first argument to \code{fun} when it is called to generate the values to napped to \code{y}. These are the $x$ and $y$ values passed to the \emph{geometry}. - -We start with the Normal distribution function. We rely on the defaults \code{n = 101} and \code{geom = "path"}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlopt{-}\hlnum{3}\hlopt{:}\hlnum{3}\hlstd{),} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= x))} \hlopt{+} - \hlkwd{stat_function}\hlstd{(}\hlkwc{fun} \hlstd{= dnorm)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-function-plot-01-1} - -} - - -\end{knitrout} - -Using a list we can even pass by name additional arguments to use when the function is called. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlopt{-}\hlnum{3}\hlopt{:}\hlnum{3}\hlstd{),} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= x))} \hlopt{+} - \hlkwd{stat_function}\hlstd{(}\hlkwc{fun} \hlstd{= dnorm,} \hlkwc{args} \hlstd{=} \hlkwd{list}\hlstd{(}\hlkwc{mean} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{.5}\hlstd{))} -\end{alltt} -\end{kframe} -\end{knitrout} - -\begin{playground} -Edit the code above so as to plot in the same figure three curves, either for three different values for \code{mean} or for three different values for \code{sd}. -\end{playground} - -Named user-defined functions (not shown), and anonymous functions (below) can also be used. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{0}\hlopt{:}\hlnum{1}\hlstd{),} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= x))} \hlopt{+} - \hlkwd{stat_function}\hlstd{(}\hlkwc{fun} \hlstd{=} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{,} \hlkwc{a}\hlstd{,} \hlkwc{b}\hlstd{)\{a} \hlopt{+} \hlstd{b} \hlopt{*} \hlstd{x}\hlopt{^}\hlnum{2}\hlstd{\},} - \hlkwc{args} \hlstd{=} \hlkwd{list}\hlstd{(}\hlkwc{a} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{b} \hlstd{=} \hlnum{1.4}\hlstd{))} -\end{alltt} -\end{kframe} -\end{knitrout} - -\begin{playground} -Edit the code above to use a different function, such as $e^{x + k}$, adjusting the argument(s) passed through \code{args} accordingly. Do this by means of an anonymous function, and by means of an equivalent named function defined by your code. -\end{playground} - -\index{plots!plots of functions|)} -\index{grammar of graphics!function statistic|)} - -\subsection{Summaries}\label{sec:plot:stat:summaries} -\index{grammar of graphics!summary statistic|(} -\index{plots!data summaries|(} -\index{plots!means}\index{plots!medians}\index{plots!error bars} -The summaries discussed in this section can be superimposed on raw data plots, or plotted on their own. Beware, that if scale limits are manually set, the summaries will be calculated from the subset of observations within these limits. Scale limits can be altered when explicitly defining a scale or by means of functions \Rfunction{xlim()} and \Rfunction{ylim()}. See section \ref{sec:plot:coord} on page \pageref{sec:plot:coord} for an explanation of how coordinate limits can be used to zoom into a plot without excluding of $x$ and $y$ values from the data. - -It is possible to summarize data on the fly when plotting. We describe in the same section the calculation of measures of central tendency and of variation, as \ggstat{stat\_summary()} allows them to be calculated simultaneously and added together with a single layer. - -For use in the examples, we generate some normally distributed artificial data. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{fake.data} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(} - \hlkwc{y} \hlstd{=} \hlkwd{c}\hlstd{(}\hlkwd{rnorm}\hlstd{(}\hlnum{10}\hlstd{,} \hlkwc{mean} \hlstd{=} \hlnum{2}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{0.5}\hlstd{),} - \hlkwd{rnorm}\hlstd{(}\hlnum{10}\hlstd{,} \hlkwc{mean} \hlstd{=} \hlnum{4}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{0.7}\hlstd{)),} - \hlkwc{group} \hlstd{=} \hlkwd{factor}\hlstd{(}\hlkwd{c}\hlstd{(}\hlkwd{rep}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlnum{10}\hlstd{),} \hlkwd{rep}\hlstd{(}\hlstr{"B"}\hlstd{,} \hlnum{10}\hlstd{)))} - \hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - -We will reuse a ``base'' scatter plot in a series of examples, so that the differences are easier to appreciate. We first add just the mean. In this case, we need to pass as an argument to \ggstat{stat\_summary()}, the \code{geom} to use, as the default one, \gggeom{geom\_pointrange()}, expects data for plotting error bars in addition to the mean. This example uses a hyphen character as the constant value of \code{shape} (see the example for \code{geom\_point()} on page \pageref{chunk:plot:point:char} on the use of digits as \code{shape}). Instead of passing \code{"mean"} as an argument to parameter \code{fun} (earlier called \code{fun.y}), we can pass, if desired, other summary functions like \code{"median"}. In the case of these functions that return a single computed value, we pass them, or character strings with their names, as an argument to parameter \code{fun}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= fake.data,} \hlkwd{aes}\hlstd{(}\hlkwc{y} \hlstd{= y,} \hlkwc{x} \hlstd{= group))} \hlopt{+} - \hlkwd{geom_point}\hlstd{(}\hlkwc{shape} \hlstd{=} \hlnum{21}\hlstd{)} \hlopt{+} - \hlkwd{stat_summary}\hlstd{(}\hlkwc{fun} \hlstd{=} \hlstr{"mean"}\hlstd{,} \hlkwc{geom} \hlstd{=} \hlstr{"point"}\hlstd{,} - \hlkwc{color} \hlstd{=} \hlstr{"red"}\hlstd{,} \hlkwc{shape} \hlstd{=} \hlstr{"-"}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{10}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-summary-plot-02-1} - -} - - -\end{knitrout} - -To pass as an argument a function that returns a central value like the mean plus confidence or other limits, we use parameter \code{fun.data} instead of \code{fun}. In the next example we add means and confidence intervals for $p = 0.95$ (the default) assuming normality. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} - \hlkwd{stat_summary}\hlstd{(}\hlkwc{fun.data} \hlstd{=} \hlstr{"mean_cl_normal"}\hlstd{,} \hlkwc{color} \hlstd{=} \hlstr{"red"}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{alpha} \hlstd{=} \hlnum{0.7}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - -We can override the default of $p = 0.95$ for confidence intervals by setting, for example, \code{conf.int = 0.90} in the list of arguments passed to the function. The intervals can also be computed without assuming normality, using the empirical distribution estimated from the data by bootstrap. To achieve this we pass to \code{fun.data} the argument \code{"mean\_cl\_boot"} instead of \code{"mean\_cl\_normal"}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} - \hlkwd{stat_summary}\hlstd{(}\hlkwc{fun.data} \hlstd{=} \hlstr{"mean_cl_boot"}\hlstd{,} - \hlkwc{fun.args} \hlstd{=} \hlkwd{list}\hlstd{(}\hlkwc{conf.int} \hlstd{=} \hlnum{0.90}\hlstd{),} - \hlkwc{color} \hlstd{=} \hlstr{"red"}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{alpha} \hlstd{=} \hlnum{0.7}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - -For $\bar{x} \pm \mathrm{s.e.}$ we should pass \code{"mean\_se"} and for $\bar{x} \pm \mathrm{s.d.}$ \code{"mean\_sdl"}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} - \hlkwd{stat_summary}\hlstd{(}\hlkwc{fun.data} \hlstd{=} \hlstr{"mean_se"}\hlstd{,} - \hlkwc{color} \hlstd{=} \hlstr{"red"}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{alpha} \hlstd{=} \hlnum{0.7}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - -We do not give an example here, but it is possible to use user-defined functions instead of the functions exported by package \ggplot (based on those in package \Hmisc). Because arguments to the function used, except for the first one containing the variable in \code{data} mapped to the $y$ aesthetic, are supplied as a named list through parameter \code{fun.args}, the names used for parameters in the function definition need only match the names in this list. - -Finally, we plot the means in a scatter plot, with the observations superimposed on the error bars as a result of the order in which the layers are added to the plot. In this case, we set \code{fill}, \code{color} and \code{alpha} (transparency) to constants, but in more complex data sets, mapping them to factors in \code{data} can be used for grouping of observations. Here, adding two plot layers with \ggstat{stat\_summary()} allows us to plot the mean and the error bars using different colors. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= fake.data,} \hlkwd{aes}\hlstd{(}\hlkwc{y} \hlstd{= y,} \hlkwc{x} \hlstd{= group))} \hlopt{+} - \hlkwd{stat_summary}\hlstd{(}\hlkwc{fun} \hlstd{=} \hlstr{"mean"}\hlstd{,} \hlkwc{geom} \hlstd{=} \hlstr{"point"}\hlstd{,} - \hlkwc{fill} \hlstd{=} \hlstr{"white"}\hlstd{,} \hlkwc{color} \hlstd{=} \hlstr{"black"}\hlstd{)} \hlopt{+} - \hlkwd{stat_summary}\hlstd{(}\hlkwc{fun.data} \hlstd{=} \hlstr{"mean_cl_boot"}\hlstd{,} - \hlkwc{geom} \hlstd{=} \hlstr{"errorbar"}\hlstd{,} - \hlkwc{width} \hlstd{=} \hlnum{0.1}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{color} \hlstd{=} \hlstr{"red"}\hlstd{)} \hlopt{+} - \hlkwd{geom_point}\hlstd{(}\hlkwc{size} \hlstd{=} \hlnum{3}\hlstd{,} \hlkwc{alpha} \hlstd{=} \hlnum{0.3}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - -We can plot means, or other summaries, by group mapped to \code{x} (\code{class} in this example) as columns by passing \code{"col"} as an argument to \code{geom}. In this way we avoid the need to compute the summaries in advance. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(mpg,} \hlkwd{aes}\hlstd{(class, hwy))} \hlopt{+} - \hlkwd{stat_summary}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"col"}\hlstd{,} \hlkwc{fun} \hlstd{= mean)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-summary-plot-09a-1} - -} - - -\end{knitrout} - -We can easily add error bars to the column plot. We use \code{size} to make the lines of the error bars thicker. The default \emph{geometry} in \ggstat{stat\_summary()} is \gggeom{geom\_pointrange()}, so we can pass \code{"linerange"} as an argument for \code{geom} to eliminate the point. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} - \hlkwd{stat_summary}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"linerange"}\hlstd{,} \hlkwc{fun.data} \hlstd{=} \hlstr{"mean_se"}\hlstd{,} - \hlkwc{size} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{color} \hlstd{=} \hlstr{"red"}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - -Passing \code{"errorbar"} instead of \code{"linerange"} to \code{geom} results in traditional ``capped'' error bars. However, this type of error bar has been criticized as adding unnecessary clutter to plots \autocite{Tufte1983}. We can use \code{width} to reduce the width of the caps at the ends of the error bars. - -If we have already calculated values for the summaries, we can still obtain the same plots by mapping variables to the \emph{aesthetics} required by \gggeom{geom\_errorbar()} and \gggeom{geom\_linerange()}: \code{x}, \code{y}, \code{ymax} and \code{ymin}. - -\begin{explainbox} -The ``reverse'' syntax is also valid, as we can add the \emph{geometry} to the plot object and pass the \emph{statistics} as an argument to it. In general in this book we avoid this alternative syntax for the sake of consistency. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(mpg,} \hlkwd{aes}\hlstd{(class, hwy))} \hlopt{+} - \hlkwd{geom_col}\hlstd{(}\hlkwc{stat} \hlstd{=} \hlstr{"summary"}\hlstd{,} \hlkwc{fun} \hlstd{= mean)} -\end{alltt} -\end{kframe} -\end{knitrout} -\end{explainbox} -\index{plots!data summaries|)} -\index{grammar of graphics!summary statistic|)} - -\subsection{Smoothers and models}\label{sec:plot:smoothers} -\index{plots!smooth curves|(} -\index{plots!fitted curves|(} -\index{plots!statistics!smooth} -The \emph{statistic} \ggstat{stat\_smooth()} fits a smooth curve to observations in the case when the scales for $x$ and $y$ are continuous---the corresponding \emph{geometry} \gggeom{geom\_smooth()} uses this \emph{statistic}, and differs only in how arguments are passed to formal parameters. For the first example, we use \ggstat{stat\_smooth()} with the default smoother, a spline. The type of spline is automatically chosen based on the number of observations and informed by a message. The \code{formula} must be stated using the names of the $x$ and $y$ aesthetics, rather the names of the mapped variables in \code{mtcars}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} - \hlkwd{stat_smooth}\hlstd{(}\hlkwc{formula} \hlstd{= y} \hlopt{~} \hlstd{x)} -\end{alltt} -\end{kframe} -\end{knitrout} - -In most cases we will want to plot the observations as points together with the smoother. We can plot the observation on top of the smoother, as done here, or the smoother on top of the observations. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} - \hlkwd{stat_smooth}\hlstd{(}\hlkwc{formula} \hlstd{= y} \hlopt{~} \hlstd{x)} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} -\end{alltt} - - -{\ttfamily\noindent\itshape\color{messagecolor}{\#\# `geom\_smooth()` using method = 'loess'}}\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-smooth-plot-02-1} - -} - - -\end{knitrout} - -Instead of using the default spline, we can fit a different model. In this example we use a linear model as smoother, fitted by \Rfunction{lm()}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} - \hlkwd{stat_smooth}(method = \hlstr{"lm"}, formula = y ~ x) + -\end{alltt} -\end{kframe} -\end{knitrout} - -These data are really grouped, so we map variable \code{cyl} to the \code{color} \emph{aesthetic}. Now we get three groups of points with different colours but also three separate smooth lines. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} - \hlkwd{stat_smooth}\hlstd{(}\hlkwc{method} \hlstd{=} \hlstr{"lm"}\hlstd{,} \hlkwc{formula} \hlstd{= y} \hlopt{~} \hlstd{x)} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-smooth-plot-04-1} - -} - - -\end{knitrout} - -To obtain a single smoother for the three groups, we need to set the mapping of the \code{color} \emph{aesthetic} to a constant within \ggstat{stat\_smooth}. This local value overrides the default \code{color} mapping set in \code{ggplot()} just for this plot layer. We use \code{"black"} but this could be replaced by any other color definition known to \Rlang. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} - \hlkwd{stat_smooth}\hlstd{(}\hlkwc{method} \hlstd{=} \hlstr{"lm"}\hlstd{,} \hlkwc{formula} \hlstd{= y} \hlopt{~} \hlstd{x,} \hlkwc{color} \hlstd{=} \hlstr{"black"}\hlstd{)} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} -\end{alltt} -\end{kframe} -\end{knitrout} - -Instead of using the \code{formula} for a linear regression as smoother, we pass a different \code{formula} as an argument. In this example we use a polynomial of order 2. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} - \hlkwd{stat_smooth}\hlstd{(}\hlkwc{method} \hlstd{=} \hlstr{"lm"}\hlstd{,} \hlkwc{formula} \hlstd{= y} \hlopt{~} \hlkwd{poly}\hlstd{(x,} \hlnum{2}\hlstd{),} \hlkwc{color} \hlstd{=} \hlstr{"black"}\hlstd{)} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-smooth-plot-06-1} - -} - - -\end{knitrout} - -It is possible to use other types of models, including GAM and GLM, as smoothers, but we will give only two simple examples of the use of \code{nls()} to fit a model non-linear in its parameters (see section \ref{sec:stat:NLS} on page \pageref{sec:stat:NLS} for details about fitting this same model with \code{nls()}). In the first one we fit a Michaelis-Menten equation to reaction rate (\code{rate}) versus reactant concentration (\code{conc}). \Rdata{Puromycin} is a data set included in the \Rlang distribution. Function \Rfunction{SSmicmen()} is also from \Rlang, and is a \emph{self-starting}\index{self-starting functions} implementation of the Michaelis-Menten equation. Thanks to this, even though the fit is done with an iterative algorithm, we do not need to explicitly provide starting values for the parameters to be fitted. We need to set \code{se = FALSE} because standard errors are not supported by the \code{predict()} method for \code{nls} fitted models. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(Puromycin,} \hlkwd{aes}\hlstd{(conc, rate,} \hlkwc{color} \hlstd{= state))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{geom_smooth}\hlstd{(}\hlkwc{method} \hlstd{=} \hlstr{"nls"}\hlstd{,} - \hlkwc{formula} \hlstd{= y} \hlopt{~} \hlkwd{SSmicmen}\hlstd{(x, Vm, K),} - \hlkwc{se} \hlstd{=} \hlnum{FALSE}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - -In the second example we define the same model directly in the model formula, and provide the starting values explicitly. The names used for the parameters to be fitted can be chosen at will, within the restrictions of the \Rlang language, but of course the names used in \code{formula} and \code{start} must match each other. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(Puromycin,} \hlkwd{aes}\hlstd{(conc, rate,} \hlkwc{color} \hlstd{= state))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{geom_smooth}\hlstd{(}\hlkwc{method} \hlstd{=} \hlstr{"nls"}\hlstd{,} - \hlkwc{method.args} \hlstd{=} \hlkwd{list}\hlstd{(}\hlkwc{formula} \hlstd{= y} \hlopt{~} \hlstd{(Vmax} \hlopt{*} \hlstd{x)} \hlopt{/} \hlstd{(k} \hlopt{+} \hlstd{x),} - \hlkwc{start} \hlstd{=} \hlkwd{list}\hlstd{(}\hlkwc{Vmax} \hlstd{=} \hlnum{200}\hlstd{,} \hlkwc{k} \hlstd{=} \hlnum{0.05}\hlstd{)),} - \hlkwc{se} \hlstd{=} \hlnum{FALSE}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - -In some cases it is desirable to annotate plots with fitted model equations or fitted parameters. One way of achieving this is by fitting the model and then extracting the parameters to manually construct text strings to use for text or label annotations. However, package \pkgname{ggpmisc} makes it possible to automate such annotations in many cases. This package also provides \ggstat{stat\_poly\_line()} which is similar to \ggstat{stat\_smooth()} but with \code{method = "lm"} consistently as its default irrespective of the number of observations. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.formula} \hlkwb{<-} \hlstd{y} \hlopt{~} \hlkwd{poly}\hlstd{(x,} \hlnum{2}\hlstd{)} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} - \hlkwd{stat_poly_line}\hlstd{(}\hlkwc{formula} \hlstd{= my.formula,} \hlkwc{color} \hlstd{=} \hlstr{"black"}\hlstd{)} \hlopt{+} - \hlkwd{stat_poly_eq}\hlstd{(}\hlkwc{formula} \hlstd{= my.formula,} \hlkwd{aes}\hlstd{(}\hlkwc{label} \hlstd{= ..eq.label..),} - \hlkwc{color} \hlstd{=} \hlstr{"black"}\hlstd{,} \hlkwc{parse} \hlstd{=} \hlnum{TRUE}\hlstd{,} \hlkwc{label.x.npc} \hlstd{=} \hlnum{0.3}\hlstd{)} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-smooth-plot-12-1} - -} - - -\end{knitrout} - -This same package makes it possible to annotate plots with summary tables from a model fit. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.formula} \hlkwb{<-} \hlstd{y} \hlopt{~} \hlkwd{poly}\hlstd{(x,} \hlnum{2}\hlstd{)} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} - \hlkwd{stat_poly_line}\hlstd{(}\hlkwc{formula} \hlstd{= my.formula,} \hlkwc{color} \hlstd{=} \hlstr{"black"}\hlstd{)} \hlopt{+} - \hlkwd{stat_fit_tb}\hlstd{(}\hlkwc{method.args} \hlstd{=} \hlkwd{list}\hlstd{(}\hlkwc{formula} \hlstd{= my.formula),} - \hlkwc{color} \hlstd{=} \hlstr{"black"}\hlstd{,} - \hlkwc{tb.vars} \hlstd{=} \hlkwd{c}\hlstd{(}\hlkwc{Parameter} \hlstd{=} \hlstr{"term"}\hlstd{,} - \hlkwc{Estimate} \hlstd{=} \hlstr{"estimate"}\hlstd{,} - \hlstr{"s.e."} \hlstd{=} \hlstr{"std.error"}\hlstd{,} - \hlstr{"italic(t)"} \hlstd{=} \hlstr{"statistic"}\hlstd{,} - \hlstr{"italic(P)"} \hlstd{=} \hlstr{"p.value"}\hlstd{),} - \hlkwc{label.y.npc} \hlstd{=} \hlstr{"top"}\hlstd{,} \hlkwc{label.x.npc} \hlstd{=} \hlstr{"right"}\hlstd{,} - \hlkwc{parse} \hlstd{=} \hlnum{TRUE}\hlstd{)} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-smooth-plot-13-1} - -} - - -\end{knitrout} - -Package \pkgname{ggpmisc} provides additional \emph{statistics} for the annotation of plots based on fitted models supported by package \pkgname{broom} and its extensions. It also supports lines and equations for quantile regression and major axis regression. Please see the package documentation for details. - -\index{plots!smooth curves|)} -\index{plots!fitted curves|)} - -\subsection{Frequencies and counts}\label{sec:histogram}\label{sec:plot:histogram} -\index{plots!histograms|(} - -When the number of observations is rather small, we can rely on the density of graphical elements to convey the density of the observations. For example, scatter plots using well-chosen values for \code{alpha} can give a satisfactory impression of the density. Rug plots, described in section \ref{sec:plot:rug} on page \pageref{sec:plot:rug}, can also satisfactorily convey the density of observations along $x$ and/or $y$ axes. Such approaches do not involve computations, while the \emph{statistics} described in this section do. Frequencies by value-range (or bins) and empirical density functions are summaries especially useful when the number of observations is large. These summaries can be computed in one or more dimensions. - -Histograms are defined by how the plotted values are calculated. Although histograms are most frequently plotted as bar plots, many bar or ``column'' plots are not histograms. Although rarely done in practice, a histogram could be plotted using a different \emph{geometry} using \ggstat{stat\_bin()}, the \emph{statistic} used by default by \gggeom{geom\_histogram()}. This \emph{statistic} does binning of observations before computing frequencies, and is suitable for continuous $x$ scales. When a factor is mapped to \code{x}, \ggstat{stat\_count()} should be used, which is the default \code{stat} for \gggeom{geom\_bar()}. These two \emph{geometries} are described in this section about statistics, because they default to using statistics different from \code{stat\_identity()} and consequently summarize the data. - -As before, we generate suitable artificial data. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{set.seed}\hlstd{(}\hlnum{12345}\hlstd{)} -\hlstd{my.data} \hlkwb{<-} - \hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwd{rnorm}\hlstd{(}\hlnum{200}\hlstd{),} - \hlkwc{y} \hlstd{=} \hlkwd{c}\hlstd{(}\hlkwd{rnorm}\hlstd{(}\hlnum{100}\hlstd{,} \hlopt{-}\hlnum{1}\hlstd{,} \hlnum{1}\hlstd{),} \hlkwd{rnorm}\hlstd{(}\hlnum{100}\hlstd{,} \hlnum{1}\hlstd{,} \hlnum{1}\hlstd{)),} - \hlkwc{group} \hlstd{=} \hlkwd{factor}\hlstd{(}\hlkwd{rep}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlstr{"B"}\hlstd{),} \hlkwd{c}\hlstd{(}\hlnum{100}\hlstd{,} \hlnum{100}\hlstd{))) )} -\end{alltt} -\end{kframe} -\end{knitrout} - -We could have relied on the default number of bins automatically computed by the \ggstat{stat\_bin()} statistic, however, we here set it to 15 with \code{bins = 15}. It is important to remember that in this case no variable in \code{data} is mapped onto the \code{y} \emph{aesthetic}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(x))} \hlopt{+} - \hlkwd{geom_histogram}\hlstd{(}\hlkwc{bins} \hlstd{=} \hlnum{15}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-histogram-plot-01-1} - -} - - -\end{knitrout} - -If we create a grouping by mapping a factor to an additional \emph{aesthetic} how the bars created are positioned with respect to each other becomes relevant. We can then plot side by side with \code{position = "dodge"}, stacked one above the other with \code{position = "stack"} and overlapping with \code{position = "identity"} in which case we need to make them semi-transparent with \code{alpha = 0.5} so that they all remain visible. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(y,} \hlkwc{fill} \hlstd{= group))} \hlopt{+} - \hlkwd{geom_histogram}\hlstd{(}\hlkwc{bins} \hlstd{=} \hlnum{15}\hlstd{,} \hlkwc{position} \hlstd{=} \hlstr{"dodge"}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - -The computed values are contained in the \code{data} that the \emph{geometry} ``receives'' from the \emph{statistic}. Many statistics compute additional values that are not mapped by default. These can be mapped with \code{aes()} by enclosing them in a call to \code{stat()}. From the help page we can learn that in addition to counts in variable \code{count}, density is returned in variable \code{density} by this statistic. Consequently, we can create a histogram with the counts per bin expressed as densities whose integral is one (rather than their sum, as the width of the bins is in this case different from one), as follows. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(y,} \hlkwc{fill} \hlstd{= group))} \hlopt{+} - \hlkwd{geom_histogram}\hlstd{(}\hlkwc{mapping} \hlstd{=} \hlkwd{aes}\hlstd{(}\hlkwc{y} \hlstd{=} \hlkwd{stat}\hlstd{(density)),} \hlkwc{bins} \hlstd{=} \hlnum{15}\hlstd{,} \hlkwc{position} \hlstd{=} \hlstr{"dodge"}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-histogram-plot-03-1} - -} - - -\end{knitrout} - -If it were not for the easier to remember name of \gggeom{geom\_histogram()}, adding the layers with \ggstat{stat\_bin()} or \ggstat{stat\_count()} would be preferable as it makes clear that computations on the data are involved. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(y,} \hlkwc{fill} \hlstd{= group))} \hlopt{+} - \hlkwd{stat_bin}\hlstd{(}\hlkwc{bins} \hlstd{=} \hlnum{15}\hlstd{,} \hlkwc{position} \hlstd{=} \hlstr{"dodge"}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - -The \emph{statistic} \ggstat{stat\_bin2d}, and its matching \emph{geometry} \gggeom{geom\_bin2d()}, by default compute a frequency histogram in two dimensions, along the \code{x} and \code{y} \emph{aesthetics}. The frequency for each rectangular tile is mapped onto a \code{fill} scale. As for \ggstat{stat\_bin()}, \code{density} is also computed and available to be mapped as shown above for \code{geom\_histogram}. In this example, to compare dispersion in two dimensions, equal $x$ and $y$ scales are most suitable, which we achieve by adding \ggcoordinate{coord\_fixed()}, which is a variation of the default \ggcoordinate{coord\_cartesian()} (see section \ref{sec:plot:coord} on page \pageref{sec:plot:coord} for details on other systems of coordinates). - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(x, y))} \hlopt{+} - \hlkwd{stat_bin2d}\hlstd{(}\hlkwc{bins} \hlstd{=} \hlnum{8}\hlstd{)} \hlopt{+} - \hlkwd{coord_fixed}\hlstd{(}\hlkwc{ratio} \hlstd{=} \hlnum{1}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-bin2d-plot-01-1} - -} - - -\end{knitrout} - -The \emph{statistic} \ggstat{stat\_bin\_hex()}, and its matching \emph{geometry} \gggeom{geom\_hex()}, differ from \ggstat{stat\_bin2d()} in their use of hexagonal instead of square tiles. By default the frequency or \code{count} for each hexagon is mapped to the \code{fill} aesthetic, but counts expressed as \code{density} are also computed and can be mapped with \code{aes(fill = stat(density))}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(x, y))} \hlopt{+} - \hlkwd{stat_bin_hex}\hlstd{(}\hlkwc{bins} \hlstd{=} \hlnum{8}\hlstd{)} \hlopt{+} - \hlkwd{coord_fixed}\hlstd{(}\hlkwc{ratio} \hlstd{=} \hlnum{1}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-hex-plot-01-1} - -} - - -\end{knitrout} -\index{plots!histograms|)} - -\subsection{Density functions}\label{sec:plot:density} -\index{plots!density plot!1 dimension|(} -\index{plots!statistics!density} -Empirical density functions are the equivalent of a histogram, but are continuous and not calculated using bins. They can be estimated in 1 or 2 dimensions (1D or 2D), for $x$ or $x$ and $y$, respectively. As with histograms it is possible to use different \emph{geometries} to visualize them. Examples of the use of \gggeom{geom\_density()} to create 1D density plots follow. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(y,} \hlkwc{color} \hlstd{= group))} \hlopt{+} - \hlkwd{geom_density}\hlstd{()} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-density-plot-01-1} - -} - - -\end{knitrout} - -A semitransparent fill can be used instead of coloured lines. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(y,} \hlkwc{fill} \hlstd{= group))} \hlopt{+} - \hlkwd{geom_density}\hlstd{(}\hlkwc{alpha} \hlstd{=} \hlnum{0.5}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} -\index{plots!density plot!1 dimension|)} - -\index{plots!density plot!2 dimensions|(} -\index{plots!statistics!density 2d} - -Examples of 2D density plots follow. In the first example we use two \emph{geometries} which were earlier described, \code{geom\_point()} and \code{geom\_rug()}, to plot the observations in the background. With \ggstat{stat\_density\_2d()} we add a two-dimensional density ``map'' represented using isolines. We map \code{group} to the \code{color} \emph{aesthetic}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(x, y,} \hlkwc{color} \hlstd{= group))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{geom_rug}\hlstd{()} \hlopt{+} - \hlkwd{stat_density_2d}\hlstd{()} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-density-plot-10-1} - -} - - -\end{knitrout} - -In this case, \gggeom{geom\_density\_2d()} is equivalent, and we can replace it in the last line in the chunk above. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} - \hlkwd{geom_density_2d}\hlstd{()} -\end{alltt} -\end{kframe} -\end{knitrout} - -In the next example we plot the groups in separate panels, and use a \emph{geometry} supporting the \code{fill} \emph{aesthetic} and we map to it the variable \code{level}, computed by \code{stat\_density\_2d()} - - - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(x, y))} \hlopt{+} -\hlkwd{stat_density_2d}\hlstd{(}\hlkwd{aes}\hlstd{(}\hlkwc{fill} \hlstd{=} \hlkwd{stat}\hlstd{(level)),} \hlkwc{geom} \hlstd{=} \hlstr{"polygon"}\hlstd{)} \hlopt{+} - \hlkwd{facet_wrap}\hlstd{(}\hlopt{~}\hlstd{group)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-density-plot-12-1} - -} - - -\end{knitrout} - - -\index{plots!density plot!2 dimensions|)} - -\subsection{Box and whiskers plots}\label{sec:boxplot} -\index{box plots|see{plots, box and whiskers plot}} -\index{plots!box and whiskers plot|(} - -Box and whiskers plots, also very frequently called just box plots, are also summaries that convey some of the properties of a distribution. They are calculated and plotted by means of \ggstat{stat\_boxplot()} or its matching \gggeom{geom\_boxplot()}. Although they can be calculated and plotted based on just a few observations, they are not useful unless each box plot is based on more than 10 to 15 observations. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(group, y))} \hlopt{+} - \hlkwd{stat_boxplot}\hlstd{()} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.54\textwidth]{figure/pos-bw-plot-01-1} - -} - - -\end{knitrout} - -As with other \emph{statistics}, their appearance obeys both the usual \emph{aesthetics} such as \code{color}, and parameters specific to this type of visual representation: \code{outlier.color}, \code{outlier.fill}, \code{outlier.shape}, \code{outlier.size}, \code{outlier.stroke} and \code{outlier.alpha}, which affect the outliers in a way similar to the equivalent \code{aethetics} in \code{geom\_point()}. The shape and width of the ``box'' can be adjusted with \code{notch}, \code{notchwidth} and \code{varwidth}. Notches in a boxplot serve a similar role for comparing medians as confidence limits serve when comparing means. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(group, y))} \hlopt{+} - \hlkwd{stat_boxplot}\hlstd{(}\hlkwc{notch} \hlstd{=} \hlnum{TRUE}\hlstd{,} \hlkwc{width} \hlstd{=} \hlnum{0.4}\hlstd{,} - \hlkwc{outlier.color} \hlstd{=} \hlstr{"red"}\hlstd{,} \hlkwc{outlier.shape} \hlstd{=} \hlstr{"*"}\hlstd{,} \hlkwc{outlier.size} \hlstd{=} \hlnum{5}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.54\textwidth]{figure/pos-bw-plot-02-1} - -} - - -\end{knitrout} - -\index{plots!box and whiskers plot|)} - -\subsection{Violin plots}\label{sec:plot:violin} -\index{plots!violin plot|(} - -Violin plots are a more recent development than box plots, and usable with relatively large numbers of observations. They could be thought of as being a sort of hybrid between an empirical density function (see section \ref{sec:plot:density} on page \pageref{sec:plot:density}) and a box plot (see section \ref{sec:boxplot} on page \pageref{sec:boxplot}). As is the case with box plots, they are particularly useful when comparing distributions of related data, side by side. They can be created with \gggeom{geom\_violin()} as shown in the examples below. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(group, y))} \hlopt{+} - \hlkwd{geom_violin}\hlstd{()} -\end{alltt} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(group, y,} \hlkwc{fill} \hlstd{= group))} \hlopt{+} - \hlkwd{geom_violin}\hlstd{(}\hlkwc{alpha} \hlstd{=} \hlnum{0.16}\hlstd{)} \hlopt{+} - \hlkwd{geom_point}\hlstd{(}\hlkwc{alpha} \hlstd{=} \hlnum{0.33}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{1.5}\hlstd{,} - \hlkwc{color} \hlstd{=} \hlstr{"black"}\hlstd{,} \hlkwc{shape} \hlstd{=} \hlnum{21}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.54\textwidth]{figure/pos-violin-plot-02-1} - -} - - -\end{knitrout} - -As with other \emph{geometries}, their appearance obeys both the usual \emph{aesthetics} such as color, and others specific to these types of visual representation. - -Other types of displays related to violin plots are \emph{beeswarm} plots and \emph{sina} plots, and can be produced with \emph{geometries} defined in packages \pkgname{ggbeeswarm} and \pkgname{ggforce}, respectively. A minimal example of a beeswarm plot is shown below. See the documentation of the packages for details about the many options in their use. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(group, y))} \hlopt{+} - \hlkwd{geom_quasirandom}\hlstd{()} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.54\textwidth]{figure/pos-ggbeeswarm-plot-01-1} - -} - - -\end{knitrout} - -\index{plots!violin plot|)} -\index{grammar of graphics!statistics|)} - -\section{Flipped plot layers}\label{sec:plot:flipped} -\index{grammar of graphics!flipped axes(} -\index{grammar of graphics!swap axes} -\index{grammar of graphics!orientation} -\index{grammar of graphics!horizontal geometries} -\index{grammar of graphics!horizontal statistics} - -Although it is the norm to design plots so that the independent variable is on the $x$ axis, i.e., mapped to the \code{x} aesthetic, there are situations where swapping the roles of $x$ and $y$ is useful. In `ggplot2' this is described as \emph{flipping the orientation} of a plot. In the present section I exemplify both cases where the flipping is automatic and where it requires user intervention. Some geometries like \gggeom{geom\_point()} are symmetric on the \textit{x} and \textit{y} aesthetics, but others like \gggeom{geom\_line()} operate differently on \textit{x} and \textit{y}. This is also the cases for almost all \emph{statistics}. - -\ggplot version 3.3.5, supports flipping in most geometries and statistics where it is meaningful, using a new syntax. This new approach is different to the flip of the coordinate system, and similar to that implemented by package \pkgname{ggstance}. However, instead of defining new horizontal layer functions as in \pkgname{ggstance}, now the orientation of many layer functions from \ggplot can be changed by the user. This has made \pkgname{ggstance} nearly redundant and the coding of flipped plots easier and more intuitive. Although \ggplot has offered \ggcoordinate{coord\_flip()} for a long time, this affects the whole plot rather than individual layers. - -When a factor is mapped to $x$ or $y$ flipping is automatic. A factor creates groups and summaries are computed per group, i.e., per level of the factor irrespective of the factor being mapped to the $x$ or $y$ aesthetic. Dodging and jitter do not need any special syntax as it was the case with package \pkgname{ggstance}. - -There are also cases that require user intervention. For example, flipping must be requested manually if both $x$ and $y$ are mapped to continuous variables. This is, for example, the case with \ggstat{stat\_smooth()} and a fit of $x$ on $y$. - -\begin{explainbox} -In ggplot statistics, passing {orientation = "y"} results in flipping, that is applying the calculations after swapping the mappings of the $x$ and $y$ aesthetics. After applying the calculations the mappings of the $x$ and $y$ aesthetics are swapped again (diagram below).\vspace{2.5ex} - -{\sffamily -\centering -% \includegraphics[width=0.98\textwidth]{figures/fig2-model.png} -\resizebox{\linewidth}{!}{% - \begin{tikzpicture}[auto] - \node [b] (data) {data}; - \node [b, right = of data] (statistic) {statistic}; - \node [b, right = of statistic] (geometry) {geometry}; - \node [b, right = of geometry] (render) {rendered\\plot}; - - \path [ll] (statistic) -- (data) node[near end,above]{$x \rightleftarrows y$}; - \path [ll] (geometry) -- (statistic) node[near end,above]{$y \rightleftarrows x$}; - \path [ll] (render) -- (geometry) node[near end,above]{}; - \end{tikzpicture}}}\vspace{2ex} - -In geometries, passing {orientation = "y"} results in flipping of the aesthetics but with a twist. For example, in \gggeom{geom\_line()}, flipping changes the drawing of the lines. Normally observations are sorted along the $x$ axis for drawing the segments connecting them. If we flip this layer, observations are sorted along the $y$ axis before drawing the connecting segments, which can make a major difference. The variables shown on each axis remain the same, as does the position of points drawn with \gggeom{geom\_point()}. In this example only two segments are the same in the flipped plot and the not-flipped one. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(mtcars[}\hlnum{1}\hlopt{:}\hlnum{8}\hlstd{, ],} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= hp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{geom_line}\hlstd{(}\hlkwc{alpha} \hlstd{=} \hlnum{0.5}\hlstd{)} \hlopt{+} - \hlkwd{geom_line}\hlstd{(}\hlkwc{alpha} \hlstd{=} \hlnum{0.5}\hlstd{,} \hlkwc{orientation} \hlstd{=} \hlstr{"y"}\hlstd{,} \hlkwc{colour} \hlstd{=} \hlstr{"red"}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.54\textwidth]{figure/pos-flipping_box-01-ggplot-1} - -} - - -\end{knitrout} - -\end{explainbox} - -The next pair of examples exemplify automatic flipping using \ggstat{stat\_boxplot()}. Here we map the factor \code{Species} first to $x$ and then to $y$. In both cases boxplots have been computed and plotted for each level of the factor. Statistics \ggstat{stat\_boxplot()}, \ggstat{stat\_summary}, \ggstat{stat\_histogram()} and \ggstat{stat\_density()} behave similarly with respect to flipping. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(iris,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= Species,} \hlkwc{y} \hlstd{= Sepal.Length))} \hlopt{+} - \hlkwd{stat_boxplot}\hlstd{()} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.54\textwidth]{figure/pos-flipping-01-ggplot-1} - -} - - -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(iris,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= Sepal.Length,} \hlkwc{y} \hlstd{= Species))} \hlopt{+} - \hlkwd{stat_boxplot}\hlstd{()} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.54\textwidth]{figure/pos-flipping-02-ggplot-1} - -} - - -\end{knitrout} - -When we map a variable to only one of $x$ or $y$ the flip is also automatic. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(iris,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= Sepal.Length,} \hlkwc{color} \hlstd{= Species))} \hlopt{+} - \hlkwd{stat_density}\hlstd{(}\hlkwc{fill} \hlstd{=} \hlnum{NA}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.54\textwidth]{figure/pos-flipping-03-ggplot-1} - -} - - -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(iris,} \hlkwd{aes}\hlstd{(}\hlkwc{y} \hlstd{= Sepal.Length,} \hlkwc{color} \hlstd{= Species))} \hlopt{+} - \hlkwd{stat_density}\hlstd{(}\hlkwc{fill} \hlstd{=} \hlnum{NA}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.54\textwidth]{figure/pos-flipping-04-ggplot-1} - -} - - -\end{knitrout} - -\begin{explainbox} -In the case of ordinary least squares (OLS), regressions of $y$ on $x$ and of $x$ on $y$ in most cases yield different fitted lines, even if $R^2$ is consistent. This is due to the assumption that $x$ values are known, either set or measured without error, i.e., not subject to random variation. All unexplained variation in the data is assumed to be in $y$. See Chapter \ref{chap:R:case:fitted:models} on page \pageref{chap:R:case:fitted:models} or consult a Statistics book such as \citetitle{Holmes2019} \autocite[][pp.\ 168--170]{Holmes2019} for additional information. -\end{explainbox} - -With two continuous variables mapped, the default is to take $x$ as independent and $y$ as dependent. This matters, of course, when computations as in model fitting treat $x$ and $y$ differently. In this case parameter \code{orientation} can be used to indicate which of $x$ or $y$ is the independent or explanatory variable. - - - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(iris,} \hlkwd{aes}\hlstd{(Sepal.Length, Petal.Length))} \hlopt{+} - \hlkwd{stat_smooth}\hlstd{(}\hlkwc{method} \hlstd{=} \hlstr{"lm"}\hlstd{,} \hlkwc{formula} \hlstd{= y} \hlopt{~} \hlstd{x)} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{facet_wrap}\hlstd{(}\hlopt{~}\hlstd{Species,} \hlkwc{scales} \hlstd{=} \hlstr{"free"}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.9\textwidth]{figure/pos-flipping-05-ggplot-1} - -} - - -\end{knitrout} - -With \code{orientation = "y"} we tell that $y$ is the independent variable. In the case of \gggeom{geom\_smooth()} this means implicitly swapping $x$ and $y$ in \code{formula}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(iris,} \hlkwd{aes}\hlstd{(Sepal.Length, Petal.Length))} \hlopt{+} - \hlkwd{stat_smooth}\hlstd{(}\hlkwc{method} \hlstd{=} \hlstr{"lm"}\hlstd{,} \hlkwc{formula} \hlstd{= y} \hlopt{~} \hlstd{x,} \hlkwc{orientation} \hlstd{=} \hlstr{"y"}\hlstd{)} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{facet_wrap}\hlstd{(}\hlopt{~}\hlstd{Species,} \hlkwc{scales} \hlstd{=} \hlstr{"free"}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.9\textwidth]{figure/pos-flipping-06-ggplot-1} - -} - - -\end{knitrout} - -\begin{explainbox} -Flipping the orientation of plot layers with \code{orientation = "y"} is not equivalent to flipping the whole plot with \ggcoordinate{coord\_flip()}. In the first case which axis is considered independent for computation changes but not the positions of the axes in the plot, while in the second case the position of the $x$ and $y$ axes in the plot is swapped. So, when coordinates are flipped the $x$ aesthetic is plotted on the vertical axis and the $y$ aesthetic on the horizontal axis, but the role of the variable mapped to the \code{x} aesthetic remains as explanatory variable. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(iris,} \hlkwd{aes}\hlstd{(Sepal.Length, Petal.Length))} \hlopt{+} - \hlkwd{stat_smooth}\hlstd{(}\hlkwc{method} \hlstd{=} \hlstr{"lm"}\hlstd{,} \hlkwc{formula} \hlstd{= y} \hlopt{~} \hlstd{x)} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{coord_flip}\hlstd{()} \hlopt{+} - \hlkwd{facet_wrap}\hlstd{(}\hlopt{~}\hlstd{Species,} \hlkwc{scales} \hlstd{=} \hlstr{"free"}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.9\textwidth]{figure/pos-flipping-06a-ggplot-1} - -} - - -\end{knitrout} -\end{explainbox} - -In package \pkgname{ggpmisc} (version $\geq$ 0.4.1) statistics related to model fitting have an \code{orientation} parameter as those from package \ggplot do, but in addition they accept formulas where $x$ is on the lhs and $y$ on the rhs, such as \code{formula = x \~{} y} providing a syntax consistent with \Rlang's model fitting functions. In the next pair of examples we use \ggstat{stat\_poly\_line()}. In the first example in this pair, the default \code{formula = y \~{} x} is used, while in the second example we pass explicitly \code{formula = x \~{} y} to force the flipping of the fitted model. To make the difference clear, we plot both linear regressions on the same plots. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(iris,} \hlkwd{aes}\hlstd{(Sepal.Length, Petal.Length))} \hlopt{+} - \hlkwd{stat_poly_line}\hlstd{()} \hlopt{+} - \hlkwd{stat_poly_line}\hlstd{(}\hlkwc{formula} \hlstd{= x} \hlopt{~} \hlstd{y,} \hlkwc{color} \hlstd{=} \hlstr{"red"}\hlstd{,} \hlkwc{fill} \hlstd{=} \hlstr{"yellow"}\hlstd{)} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{facet_wrap}\hlstd{(}\hlopt{~}\hlstd{Species,} \hlkwc{scales} \hlstd{=} \hlstr{"free"}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.9\textwidth]{figure/pos-flipping-07-ggpmisc-1} - -} - - -\end{knitrout} - -In\index{plots!major axis regression}\label{par:ma:example} the case of the \code{iris} data used for these examples, both approaches used above to linear regression are wrong. The variables mapped to $x$ and$y$ are correlated but both are measured with error and subject to biological variation. In this case the correct approach is to not assume that there is a variable that can be considered independent, and instead use a method like major axis (MA) regression, as can be seen below. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(iris,} \hlkwd{aes}\hlstd{(Sepal.Length, Petal.Length))} \hlopt{+} - \hlkwd{stat_ma_line}\hlstd{()} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{facet_wrap}\hlstd{(}\hlopt{~}\hlstd{Species,} \hlkwc{scales} \hlstd{=} \hlstr{"free"}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.9\textwidth]{figure/pos-flipping-08-ggpmisc-1} - -} - - -\end{knitrout} - -A related problem is when we need to summarize in the same plot layer $x$ and $y$ values. A simple example is adding a point with coordinates given by the means along the $x$ and $y$ axes as we need to pass these computed means simultaneously to \gggeom{geom\_point()}. Package \ggplot provides \ggstat{stat\_density2d()} and \ggstat{stat\_summary2d()}. However, \ggstat{stat\_summary2d()} uses bins, and is similar to \ggstat{stat\_density2d()} in how the computed values are returned. Package \pkgname{ggpmisc} provides two dimensional equivalents of \ggstat{stat\_summary()}: \ggstat{stat\_centroid()}, which applies the same summary function along $x$ and $y$, and \ggstat{stat\_summary\_xy()}, which accepts one function for $x$ and one for $y$. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(iris,} \hlkwd{aes}\hlstd{(Sepal.Length, Petal.Length))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{stat_centroid}\hlstd{(}\hlkwc{color} \hlstd{=} \hlstr{"red"}\hlstd{)} \hlopt{+} - \hlkwd{facet_wrap}\hlstd{(}\hlopt{~}\hlstd{Species,} \hlkwc{scales} \hlstd{=} \hlstr{"free"}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.9\textwidth]{figure/pos-flipping-09-ggpmisc-1} - -} - - -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(iris,} \hlkwd{aes}\hlstd{(Sepal.Length, Petal.Length))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{stat_centroid}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"rug"}\hlstd{,} \hlkwc{sides} \hlstd{=} \hlstr{"trbl"}\hlstd{,} - \hlkwc{color} \hlstd{=} \hlstr{"red"}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{1.5}\hlstd{)} \hlopt{+} - \hlkwd{facet_wrap}\hlstd{(}\hlopt{~}\hlstd{Species,} \hlkwc{scales} \hlstd{=} \hlstr{"free"}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.9\textwidth]{figure/pos-flipping-10-ggpmisc-1} - -} - - -\end{knitrout} - -\begin{playground} -Which of the plots in the last two chunks above can be created by adding two layers with \ggstat{stat\_summary()}? Recreate this plot using \ggstat{stat\_summary()}. -\end{playground} - -\index{grammar of graphics!flipped axes)} - - - -\section{Facets}\label{sec:plot:facets} -\index{grammar of graphics!facets|(} -\index{plots!trellis-like}\index{plots!coordinated panels} -Facets are used in a special kind of plots containing multiple panels in which the panels share some properties. -These sets of coordinated panels are a useful tool for visualizing complex data. These plots became popular through the \code{trellis} graphs in \langname{S}, and the \pkgname{lattice} package in \Rlang. The basic idea is to have rows and/or columns of plots with common scales, all plots showing values for the same response variable. This is useful when there are multiple classification factors in a data set. Similar-looking plots, but with free scales or with the same scale but a `floating' intercept, are sometimes also useful. In \ggplot there are two possible types of facets: facets organized in a grid, and facets along a single `axis' of variation but, possibly, wrapped into two or more rows. These are produced by adding \Rfunction{facet\_grid()} or \Rfunction{facet\_wrap()}, respectively. In the examples below we use \gggeom{geom\_point()} but faceting can be used with \code{ggplot} objects containing diverse kinds of layers, displaying either observations or summaries from \code{data}. - - - -We start by creating and saving a single-panel plot that we will use through this section to demonstrate how the same plot changes when we add facets. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{p} \hlkwb{<-} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(wt, mpg))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} -\hlstd{p} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-facets-00-1} - -} - - -\end{knitrout} - -A grid of panels has two dimensions, \code{rows} and \code{cols}. These dimensions in the grid of plot panels can be ``mapped'' to factors. Until recently a formula syntax was the only available one. Although this notation has been retained, the preferred syntax is currently to use the parameters \code{rows} and \code{cols}. We use \code{cols} in this example. Note that we need to use \code{vars()} to enclose the names of the variables in the data. The ``headings'' of the panels or \emph{strip labels} are by default the levels of the factors. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{p} \hlopt{+} \hlkwd{facet_grid}\hlstd{(}\hlkwc{cols} \hlstd{=} \hlkwd{vars}\hlstd{(cyl))} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-facets-01-1} - -} - - -\end{knitrout} - -In the ``historical notation'' the same plot would have been coded as follows. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{p} \hlopt{+} \hlkwd{facet_grid}\hlstd{(.} \hlopt{~} \hlstd{cyl)} -\end{alltt} -\end{kframe} -\end{knitrout} - -By default, all panels share the same scale limits and share the plotting space evenly, but these defaults can be overridden. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{p} \hlopt{+} \hlkwd{facet_grid}\hlstd{(}\hlkwc{cols} \hlstd{=} \hlkwd{vars}\hlstd{(cyl),} \hlkwc{scales} \hlstd{=} \hlstr{"free"}\hlstd{)} -\hlstd{p} \hlopt{+} \hlkwd{facet_grid}\hlstd{(}\hlkwc{cols} \hlstd{=} \hlkwd{vars}\hlstd{(cyl),} \hlkwc{scales} \hlstd{=} \hlstr{"free"}\hlstd{,} \hlkwc{space} \hlstd{=} \hlstr{"free"}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - - - -To obtain a 2D grid we need to specify both \code{rows} and \code{cols}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{p} \hlopt{+} \hlkwd{facet_grid}\hlstd{(}\hlkwc{rows} \hlstd{=} \hlkwd{vars}\hlstd{(vs),} \hlkwc{cols} \hlstd{=} \hlkwd{vars}\hlstd{(am))} -\end{alltt} -\end{kframe} -\end{knitrout} - - - -Margins display an additional column or row of panels with the combined data. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{p} \hlopt{+} \hlkwd{facet_grid}\hlstd{(}\hlkwc{cols} \hlstd{=} \hlkwd{vars}\hlstd{(cyl),} \hlkwc{margins} \hlstd{=} \hlnum{TRUE}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-facets-06-1} - -} - - -\end{knitrout} - -We can represent more than one variable per dimension of the grid of plot panels. For this example, we also override the default \code{labeller} used for the panels with one that includes the name of the variable in addition to factor levels in the \emph{strip labels}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{p} \hlopt{+} \hlkwd{facet_grid}\hlstd{(}\hlkwc{cols} \hlstd{=} \hlkwd{vars}\hlstd{(vs, am),} \hlkwc{labeller} \hlstd{= label_both)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-facets-07-1} - -} - - -\end{knitrout} - -\begin{explainbox} -Sometimes we may want to have mathematical expressions or Greek letters in the panel headings. The next example shows a way of achieving this. The key is to use as \code{labeller} a function that parses character strings into \Rlang expressions. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{mtcars}\hlopt{$}\hlstd{cyl12} \hlkwb{<-} \hlkwd{factor}\hlstd{(mtcars}\hlopt{$}\hlstd{cyl,} - \hlkwc{labels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"alpha"}\hlstd{,} \hlstr{"beta"}\hlstd{,} \hlstr{"sqrt(x, y)"}\hlstd{))} -\hlstd{p1} \hlkwb{<-} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(mpg, wt))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{facet_grid}\hlstd{(}\hlkwc{cols} \hlstd{=} \hlkwd{vars}\hlstd{(cyl12),} \hlkwc{labeller} \hlstd{= label_parsed)} -\end{alltt} -\end{kframe} -\end{knitrout} - -More frequently we may need to include the levels of the factor used in the faceting as part of the labels. Here we use as \code{labeller}, function \Rfunction{label\_bquote()} with a special syntax that allows us to use an expression where replacement based on the facet (panel) data takes place. See section \ref{sec:plot:plotmath} for an example of the use of \code{bquote()}, the \Rlang function on which \Rfunction{label\_bquote()}, is built. - - - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{p} \hlopt{+} - \hlkwd{facet_grid}\hlstd{(}\hlkwc{cols} \hlstd{=} \hlkwd{vars}\hlstd{(cyl),} - \hlkwc{labeller} \hlstd{=} \hlkwd{label_bquote}\hlstd{(}\hlkwc{cols} \hlstd{=} \hlkwd{.}\hlstd{(cyl)}\hlopt{~}\hlstr{"cylinders"}\hlstd{))} -\end{alltt} -\end{kframe} -\end{knitrout} - -\end{explainbox} -%\begin{infobox} -%\sloppy -%In versions of \ggplot before 2.0.0, \code{labeller} was not implemented for \Rfunction{facet\_wrap()}, it was only available for \Rfunction{facet\_grid()}. -%\end{infobox} - -In the next example we create a plot with wrapped facets. In this case the number of levels is small, and no wrapping takes place by default. In cases when more panels are present, wrapping into two or more continuation rows is the default. Here, we force wrapping with \code{nrow = 2}. When using \Rfunction{facet\_wrap()} there is only one dimension, and the parameter is called \code{facets}, instead of \code{rows} or \code{cols}. - - - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{p} \hlopt{+} \hlkwd{facet_wrap}\hlstd{(}\hlkwc{facets} \hlstd{=} \hlkwd{vars}\hlstd{(cyl),} \hlkwc{nrow} \hlstd{=} \hlnum{2}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.54\textwidth]{figure/pos-facets-13-1} - -} - - -\end{knitrout} - -The example below (plot not shown), is similar to the earlier one for \code{facet\_grid}, but faceting according to two factors with \code{facet\_wrap()} along a single wrapped row of panels. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{p} \hlopt{+} \hlkwd{facet_wrap}\hlstd{(}\hlkwc{facets} \hlstd{=} \hlkwd{vars}\hlstd{(vs, am),} \hlkwc{nrow} \hlstd{=} \hlnum{2}\hlstd{,} \hlkwc{labeller} \hlstd{= label_both)} -\end{alltt} -\end{kframe} -\end{knitrout} - - -%In versions of \ggplot before 2.0.0, \code{labeller} was not implemented for -%\code{facet\_wrap()}, it was only available for \code{facet\_grid()}. In the current -%version it is implemented for both. -% -%<>= -%opts_chunk$set(opts_fig_wide) -%@ -% -%<<>>= -%p + facet_wrap(~ vs, labeller = label_bquote(alpha ^ .(vs))) -%@ -\index{grammar of graphics!facets|)} - -\section{Scales}\label{sec:plot:scales} -\index{grammar of graphics!scales|(} - -In earlier sections of this chapter, examples have used the default \emph{scales} or we have set them with convenience functions. In the present section we describe in more detail the use of \emph{scales}. There are \emph{scales} available for different \emph{aesthetics} ($\approx$ attributes) of the plotted geometrical objects, such as position (\code{x, y, z}), \code{size}, \code{shape}, \code{linetype}, \code{color}, \code{fill}, \code{alpha} or transparency, \code{angle}. Scales determine how values in \code{data} are mapped to values of an \emph{aesthetics}, and how these values are labeled. - -Depending on the characteristics of the data being mapped, \emph{scales} can be continuous or discrete, for \code{numeric} or \code{factor} variables in \code{data}, respectively. On the other hand, some \emph{aesthetics}, like \code{size}, can vary continuously but others like \code{linetype} are inherently discrete. In addition to discrete scales for inherently discrete \emph{aesthetics}, discrete scales are available for those \emph{aesthetics} that are inherently continuous, like \code{x}, \code{y}, \code{size}, \code{color}, etc.\ - -The scales used by default set the mapping automatically (e.g., which color value corresponds to $x = 0$ and which one to $x = 1$). However, for each \emph{aesthetic} such as \code{color}, there are multiple scales to choose from when creating a plot, both continuous and discrete (e.g., 20 different color scales in \ggplot 3.2.0). - -\begin{explainbox} -\emph{Aesthetics} in a plot layer, in addition to being determined by mappings, can also be set to constant values (e.g., plotting all points in a layer in red instead of the default black). \emph{Aesthetics} set to constant values, are not mapped to data, and are consequently independent of scales. In other words, properties of plot elements can be either set to a single constant value of an \emph{aesthetic} affecting all observations present in the layer \code{data}, or mapped to a variable in \code{data} in which case the value of the \emph{aesthetic}, such as \code{color}, will depend on the values of the mapped variable. -\end{explainbox} - -The most direct mapping to data is \code{identity}, which means that the data is taken at its face value. In a color scale, say \ggscale{scale\_color\_identity()}, the variable in the data would be encoded with values such as \code{"red"}, \code{"blue"}---i.e., valid \Rlang colours. In a simple mapping using \ggscale{scale\_color\_discrete()} levels of a factor, such as \code{"treatment"} and \code{"control"} would be represented as distinct colours with the correspondence of individual factor levels to individual colours selected automatically by default. In contrast with \code{scale\_color\_manual()} the user needs to explicitly provide the mapping between factor levels and colours by passing arguments to the scale functions' parameters \code{breaks} and \code{values}. - -A continuous data variable needs to be mapped to an \emph{aesthetic} through a continuous scale such as \code{scale\_color\_continuous()} or one its various variants. Values in a \code{numeric} variable will be mapped into a continuous range of colours, determined either automatically through a palette or manually by giving the colours at the extremes, and optionally at multiple intermediate values, within the range of variation of the mapped variable (e.g., scale settings so that the color varies gradually between \code{"red"} and \code{"gray50"}). Handling of missing values is such that mapping a value in a variable to an \code{NA} value for an aesthetic such as color makes the mapped values invisible. The reverse, mapping \code{NA} values in the data to a specific value of an aesthetic is also possible (e.g., displaying \code{NA} values in the mapped variable in red, while other values are mapped to shades of blue). - -% -% -%\sloppy -%Advanced scale manipulation requires package \code{scales} to be loaded, although \ggplot (2.0.0 and later) re-export several functions from package \code{scales}. Some simple examples follow. - -%\begin{infobox} -\subsection{Axis and key labels}\label{sec:plot:scale:name}\label{sec:plot:labs} -\index{plots!labels|(} -\index{plots!title|(} -\index{plots!subtitle|(} -\index{plots!tag|(} -\index{plots!caption|(} -First we describe a feature common to all scales, their \code{name}. The default \code{name} of all scales is the name of the variable or the expression mapped to it. In the case of the \code{x}, \code{y} and \code{z} \emph{aesthetics} the \code{name} given to the scale is used for the axis labels. For other \emph{aesthetics} the name of the scale becomes the ``heading'' or \emph{key title} of the guide or key. All scales have a \code{name} parameter to which a character string or \Rlang expression (see section \ref{sec:plot:plotmath}) can be passed as an argument to override the default. - -Whole-plot title, subtitle and caption are not connected to \emph{scales} or \code{data}. A title (\code{label}) and \code{subtitle} can be added least confusingly with function \Rfunction{ggtitle()} by passing either character strings or \Rlang expressions as arguments. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= Orange,} - \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= age,} \hlkwc{y} \hlstd{= circumference,} \hlkwc{color} \hlstd{= Tree))} \hlopt{+} - \hlkwd{geom_line}\hlstd{()} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{expand_limits}\hlstd{(}\hlkwc{y} \hlstd{=} \hlnum{0}\hlstd{)} \hlopt{+} - \hlkwd{scale_x_continuous}\hlstd{(}\hlkwc{name} \hlstd{=} \hlstr{"Time (d)"}\hlstd{)} \hlopt{+} - \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{name} \hlstd{=} \hlstr{"Circumference (mm)"}\hlstd{)} \hlopt{+} - \hlkwd{ggtitle}\hlstd{(}\hlkwc{label} \hlstd{=} \hlstr{"Growth of orange trees"}\hlstd{,} - \hlkwc{subtitle} \hlstd{=} \hlstr{"Starting from 1968-12-31"}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-axis-labels-01-1} - -} - - -\end{knitrout} - -Convenience functions \Rfunction{xlab()} and \Rfunction{ylab()} can be used to set the axis labels to match those in the previous chunk. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} - \hlkwd{xlab}(\hlstr{"\hlkwd{Time} (d)"}) + - \hlkwd{ylab}(\hlstr{"\hlkwd{Circumference} (mm)"}) + -\end{alltt} -\end{kframe} -\end{knitrout} - -Convenience function \Rfunction{labs()} is useful when we use default scales for all the \emph{aesthetics} in a plot but want to manually set axis labels and/or key titles---i.e., the \code{name} of these scales. \Rfunction{labs()} accepts arguments for these names using, as parameter names, the names of the \emph{aesthetics}. It also allows us to set \code{title}, \code{subtitle}, \code{caption} and \code{tag}, of which the first two can also be set with \Rfunction{ggtitle()}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= Orange,} - \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= age,} \hlkwc{y} \hlstd{= circumference,} \hlkwc{color} \hlstd{= Tree))} \hlopt{+} - \hlkwd{geom_line}\hlstd{()} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{expand_limits}\hlstd{(}\hlkwc{y} \hlstd{=} \hlnum{0}\hlstd{)} \hlopt{+} - \hlkwd{labs}\hlstd{(}\hlkwc{title} \hlstd{=} \hlstr{"Growth of orange trees"}\hlstd{,} - \hlkwc{subtitle} \hlstd{=} \hlstr{"Starting from 1968-12-31"}\hlstd{,} - \hlkwc{caption} \hlstd{=} \hlstr{"see Draper, N. R. and Smith, H. (1998)"}\hlstd{,} - \hlkwc{tag} \hlstd{=} \hlstr{"A"}\hlstd{,} - \hlkwc{x} \hlstd{=} \hlstr{"Time (d)"}\hlstd{,} - \hlkwc{y} \hlstd{=} \hlstr{"Circumference (mm)"}\hlstd{,} - \hlkwc{color} \hlstd{=} \hlstr{"Tree\textbackslash{}nnumber"}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-axis-labels-03-1} - -} - - -\end{knitrout} - -\begin{playground} -Make an empty plot (\code{ggplot()}) and add to it as title an \Rlang expression producing $y = b_0 + b_1 x + b_2 x^2$. (Hint: have a look at the examples for the use of expressions in the \code{plotmath} demo in \Rlang by typing \code{demo(plotmath)} at the \Rlang console. -\end{playground} - -%\begin{warningbox} -%Check!! -%When setting or updating labels using either \Rfunction{labs()} or \Rfunction{update\_labels()} be aware that even though \code{color} and \code{color} are synonyms for the same \emph{aesthetics}, the `name' used in the call to \Rfunction{aes()} must match the `name' used when setting or updating the labels. -%\end{warningbox} -% -%The labels used in keys and axis tick-labels for factor levels can be changed through the different \emph{scales} as described in section \ref{sec:plot:scales} on page \pageref{sec:plot:scales}. -% -\index{plots!tag|)} -\index{plots!caption|)} -\index{plots!subtitle|)} -\index{plots!title|)} -\index{plots!labels|)} - -\subsection{Continuous scales}\label{sec:plot:scales:continuous} -\index{grammar of graphics!continuous scales|(} -We start by listing the most frequently used arguments to the continuous scale functions: \code{name}, \code{breaks}, \code{minor\_breaks}, \code{labels}, \code{limits}, \code{expand}, \code{na.value}, \code{trans}, \code{guide}, and \code{position}. The value of \code{name} is used for axis labels or the key title (see previous section). The arguments to \code{breaks} and \code{minor\_breaks} override the default locations of major and minor ticks and grid lines. Setting them to \code{NULL} suppresses the ticks. By default the tick labels are generated from the value of \code{breaks} but an argument to \code{labels} of the same length as \code{breaks} will replace these defaults. The values of \code{limits} determine both the range of values in the data included and the plotting area as described above---by default the out-of-bounds (\code{oob}) observations are replaced by \code{NA} but it is possible to instead ``squish'' these observations towards the edge of the plotting area. The argument to \code{expand} determines the size of the margins or padding added to the area delimited by \code{lims} when setting the ``visual'' plotting area. The value passed to \code{na.value} is used as a replacement for \code{NA} valued observations---most useful for \code{color} and \code{fill} aesthetics. The transformation object passed as an argument to \code{trans} determines the transformation used---the transformation affects the rendering, but breaks and tick labels remain expressed in the original data units. The argument to \code{guide} determines the type of key or removes the default key. Depending on the scale in question not all these parameters are available. - - - -We generate new fake data. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{fake2.data} \hlkwb{<-} - \hlkwd{data.frame}\hlstd{(}\hlkwc{y} \hlstd{=} \hlkwd{c}\hlstd{(}\hlkwd{rnorm}\hlstd{(}\hlnum{20}\hlstd{,} \hlkwc{mean} \hlstd{=} \hlnum{20}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{5}\hlstd{),} - \hlkwd{rnorm}\hlstd{(}\hlnum{20}\hlstd{,} \hlkwc{mean} \hlstd{=} \hlnum{40}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{10}\hlstd{)),} - \hlkwc{group} \hlstd{=} \hlkwd{factor}\hlstd{(}\hlkwd{c}\hlstd{(}\hlkwd{rep}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlnum{20}\hlstd{),} \hlkwd{rep}\hlstd{(}\hlstr{"B"}\hlstd{,} \hlnum{20}\hlstd{))),} - \hlkwc{z} \hlstd{=} \hlkwd{rnorm}\hlstd{(}\hlnum{40}\hlstd{,} \hlkwc{mean} \hlstd{=} \hlnum{12}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{6}\hlstd{))} -\end{alltt} -\end{kframe} -\end{knitrout} -\subsubsection{Limits} - -Limits are relevant to all kinds of \emph{scales}. Limits are set through parameter \code{limits} of the different scale functions. They can also be set with convenience functions \code{xlim()} and \code{ylim()} in the case of the \code{x} and \code{y} \emph{aesthetics}, and more generally with function \code{lims()} which like \code{labs()}, takes arguments named according to the name of the \emph{aesthetics}. The \code{limits} argument of scales accepts vectors, factors or a function computing them from \code{data}. In contrast, the convenience functions do not accept functions as their arguments. - -In the next example we set ``hard'' limits, which will exclude some observations from the plot and from any computation of summaries or fitting of smoothers. More exactly, the off-limits observations are converted to \code{NA} values before they are passed as \code{data} to \emph{geometries}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z, y))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{limits} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,} \hlnum{100}\hlstd{))} -\end{alltt} -\end{kframe} -\end{knitrout} - -To set only one limit leaving the other free, we can use \code{NA} as a boundary. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} - \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{limits} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{50}\hlstd{,} \hlnum{NA}\hlstd{))} -\end{alltt} -\end{kframe} -\end{knitrout} - -Convenience functions \Rfunction{ylim()} and \Rfunction{xlim()} can be used to set the limits to the default $x$ and $y$ scales in use. We here use \Rfunction{ylim()}, but \Rfunction{xlim()} is identical except for the \emph{scale} it affects. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} - \hlkwd{ylim}\hlstd{(}\hlnum{50}\hlstd{,} \hlnum{NA}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - -In general, setting hard limits should be avoided, even though a warning is issued about \code{NA} values being omitted, as it is easy to unwillingly subset the data being plotted. -It is preferable to use function \Rfunction{expand\_limits()} as it safely \emph{expands} the dynamically computed default limits of a scale---the scale limits will grow past the requested expanded limits when needed to accommodate all observations. The arguments to \code{x} and \code{y} are numeric vectors of length one or two each, matching how the limits of the $x$ and $y$ continuous scales are defined. Here we expand the limits to include the origin. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z, y))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{expand_limits}\hlstd{(}\hlkwc{y} \hlstd{=} \hlnum{0}\hlstd{,} \hlkwc{x} \hlstd{=} \hlnum{0}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.54\textwidth]{figure/pos-scale-limits-04-1} - -} - - -\end{knitrout} - -The \code{expand} parameter of the scales plays a different role than \Rfunction{expand\_limits()}. It controls how much larger the ``visual'' plotting area is compared to the limits of the actual plotting area. In other words, it adds a ``margin'' or padding to the plotting area outside the limits set either dynamically or manually. Very rarely plots are drawn so that observations are plotted on top of the axes, avoiding this is a key role of \code{expand}. Rug plots and marginal annotations will also require the plotting area to be expanded. In \ggplot the default is to always apply some expansion. - -We here set the upper limit of the plotting area to be expanded by adding padding to the top and remove the default padding from the bottom of the plotting area. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(fake2.data,} - \hlkwd{aes}\hlstd{(}\hlkwc{fill} \hlstd{= group,} \hlkwc{color} \hlstd{= group,} \hlkwc{x} \hlstd{= y))} \hlopt{+} - \hlkwd{stat_density}\hlstd{(}\hlkwc{alpha} \hlstd{=} \hlnum{0.3}\hlstd{)} \hlopt{+} - \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{expand} \hlstd{=} \hlkwd{expand_scale}\hlstd{(}\hlkwc{add} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,} \hlnum{0.02}\hlstd{)))} -\end{alltt} -\end{kframe} -\end{knitrout} - -Here we instead use a multiplier to a similar effect as above; we add 10\% compared to the range of the \code{limits}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} - \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{expand} \hlstd{=} \hlkwd{expand_scale}\hlstd{(}\hlkwc{mult} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,} \hlnum{0.1}\hlstd{)))} -\end{alltt} -\end{kframe} -\end{knitrout} - -In the case of scales, we cannot reverse their direction through the setting of limits. We need instead to use a transformation as described in section \ref{sec:plot:scales:trans} on page \pageref{sec:plot:scales:trans}. But, inconsistently, \Rfunction{xlim()} and \Rfunction{ylim()} do implicitly allow this transformation through the numeric values passed as limits. - -%%% to be moved -%We can also use \code{limits} with discrete scales, listing all or some of the levels of a factor that are to be included in the scale. This works even if the levels are defined in the factor but not present in a given data set, such as after subsetting. - -\begin{playground} -Test what the result is when the first limit is larger than the second one. Is it the same as when setting these same values as limits with \code{ylim()}? - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z, y))} \hlopt{+} \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{limits} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{100}\hlstd{,} \hlnum{0}\hlstd{))} -\end{alltt} -\end{kframe} -\end{knitrout} -\end{playground} - -\subsubsection{Ticks and their labels}\label{sec:plot:scales:ticks} - -Parameter \code{breaks}\index{plots!scales!tick breaks} is used to set the location of ticks along the axis. Parameter \code{labels}\index{plots!scales!tick labels} is used to set the tick labels. Both parameters can be passed either a vector or a function as an argument. The default is to compute ``good'' breaks based on the limits and format the numbers as strings. - -When manually setting breaks, we can keep the default computed labels for the \code{breaks}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z, y))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{breaks} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{20}\hlstd{, pi} \hlopt{*} \hlnum{10}\hlstd{,} \hlnum{40}\hlstd{,} \hlnum{60}\hlstd{))} -\end{alltt} -\end{kframe} -\end{knitrout} - -The default breaks are computed by function \Rfunction{pretty\_breaks()} from \pkgname{scales}. The argument passed to its parameter \code{n} determines the target number ticks to be generated automatically, but the actual number of ticks computed may be slightly different depending on the range of the data. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} - \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{breaks} \hlstd{=} \hlkwd{pretty_breaks}\hlstd{(}\hlkwc{n} \hlstd{=} \hlnum{7}\hlstd{))} -\end{alltt} -\end{kframe} -\end{knitrout} - -We can set tick labels manually, in parallel to the setting of \code{breaks} by passing as arguments two vectors of equal length. In the next example we use an expression to obtain a Greek letter. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z, y))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{breaks} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{20}\hlstd{, pi} \hlopt{*} \hlnum{10}\hlstd{,} \hlnum{40}\hlstd{,} \hlnum{60}\hlstd{),} - \hlkwc{labels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"20"}\hlstd{,} \hlkwd{expression}\hlstd{(}\hlnum{10}\hlopt{*}\hlstd{pi),} \hlstr{"40"}\hlstd{,} \hlstr{"60"}\hlstd{))} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.54\textwidth]{figure/pos-scale-ticks-02-1} - -} - - -\end{knitrout} - -Package \pkgname{scales} provides several functions for the automatic generation of tick labels. For example, to display tick labels as percentages for data available as decimal fractions, we can use function \code{percent()}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z, y} \hlopt{/} \hlkwd{max}\hlstd{(y)))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{labels} \hlstd{= percent)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.54\textwidth]{figure/pos-scale-ticks-03-1} - -} - - -\end{knitrout} - -For currency, we can use \code{dollar()}, to include commas separating thousands, millions, so on, we can use \code{comma()}, and for numbers formatted using exponents of 10---useful for logarithmic-transformed scales---we can use \code{scientific\_format()}, \code{label\_number(scale\_cut = cut\_short\_scale())}, \code{label\_log()}, or \code{label\_number(scale\_cut = cut\_si("g")}. As shown below, some of these functions can be useful with untransformed continuous scales. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z, y} \hlopt{*} \hlnum{1000}\hlstd{))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{name} \hlstd{=} \hlstr{"Mass"}\hlstd{,} \hlkwc{labels} \hlstd{=} \hlkwd{label_number}\hlstd{(}\hlkwc{scale_cut} \hlstd{=} \hlkwd{cut_si}\hlstd{(}\hlstr{"g"}\hlstd{)))} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.54\textwidth]{figure/pos-scale-ticks-04-1} - -} - - -\end{knitrout} - -With date values mapped to $x$ or $y$, tick labels are created with functions \Rfunction{label\_date()} or \Rfunction{label\_date\_short()}. In the case of time, tick labels are created with function \Rfunction{label\_time()}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlcom{## ADD EXAMPLES USING FORMATS for dates and times} -\end{alltt} -\end{kframe} -\end{knitrout} - -It is also possible to use user-defined functions both for breaks and labels. - -\subsubsection{Transformed scales}\label{sec:plot:scales:trans} - -The\index{plots!scales!transformations} default scales used by the \code{x} and \code{y} aesthetics, \ggscale{scale\_x\_continuous()} and \ggscale{scale\_y\_continuous()}, accept a user-supplied transformation function as an argument to \code{trans} with default code{trans = "identity"} (no transformation). In addition, there are predefined convenience scale functions for \code{log10}, \code{sqrt} and \code{reverse}. - -\begin{warningbox} - Similar to the maths functions of \Rlang, the name of the scales are \ggscale{scale\_x\_log10()} and \ggscale{scale\_y\_log10()} rather than \ggscale{scale\_y\_log()} because in \Rlang, the function \code{log} returns the natural logarithm. -\end{warningbox} - -We can use \ggscale{scale\_x\_reverse()} to reverse the direction of a continuous scale, - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z, y))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{scale_x_reverse}\hlstd{()} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.54\textwidth]{figure/pos-scale-trans-01-1} - -} - - -\end{knitrout} - -Axis tick-labels display the original values before applying the transformation. The \code{"breaks"} need to be given in the original scale as well. We use \ggscale{scale\_y\_log10()} to apply a $\log_{10}$ transformation to the $y$ values. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} - \hlkwd{scale_y_log10}\hlstd{(}\hlkwc{breaks}\hlstd{=}\hlkwd{c}\hlstd{(}\hlnum{10}\hlstd{,}\hlnum{20}\hlstd{,}\hlnum{50}\hlstd{,}\hlnum{100}\hlstd{))} -\end{alltt} -\end{kframe} -\end{knitrout} - -Using a transformation in a scale is not equivalent to applying the same transformation on the fly when mapping a variable to the $x$ (or $y$) \emph{aesthetic} as this results in tick-labels expressed in transformed values. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z,} \hlkwd{log10}\hlstd{(y)))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} -\end{alltt} -\end{kframe} -\end{knitrout} - -We show next how to specify a transformation to a continuous scale, using a predefined ``transformation'' object. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} - \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{trans} \hlstd{=} \hlstr{"reciprocal"}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - -Natural logarithms are important in growth analysis as the slope against time gives the relative growth rate. We show this with the \code{Orange} data set. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= Orange,} - \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= age,} \hlkwc{y} \hlstd{= circumference,} \hlkwc{color} \hlstd{= Tree))} \hlopt{+} - \hlkwd{geom_line}\hlstd{()} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{trans} \hlstd{=} \hlstr{"log"}\hlstd{,} \hlkwc{breaks} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{20}\hlstd{,} \hlnum{50}\hlstd{,} \hlnum{100}\hlstd{,} \hlnum{200}\hlstd{))} -\end{alltt} -\end{kframe} -\end{knitrout} - -\subsubsection{Position of $x$ and $y$ axes} -\index{plots!axis position} - -The default position of axes can be changed through parameter \code{position}, using character constants \code{"bottom"}, \code{"top"}, \code{"left"} and \code{"right"}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(wt, mpg))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{scale_x_continuous}\hlstd{(}\hlkwc{position} \hlstd{=} \hlstr{"top"}\hlstd{)} \hlopt{+} - \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{position} \hlstd{=} \hlstr{"right"}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.54\textwidth]{figure/pos-axis-position-01-1} - -} - - -\end{knitrout} - -\subsubsection{Secondary axes} - -It\index{plots!secondary axes} is also possible to add secondary axes with ticks displayed in a transformed scale. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(wt, mpg))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{sec.axis} \hlstd{=} \hlkwd{sec_axis}\hlstd{(}\hlopt{~} \hlstd{.} \hlopt{^-}\hlnum{1}\hlstd{,} \hlkwc{name} \hlstd{=} \hlstr{"1/y"}\hlstd{) )} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.54\textwidth]{figure/pos-axis-secondary-01-1} - -} - - -\end{knitrout} - -It is also possible to use different \code{breaks} and \code{labels} than for the main axes, and to provide a different \code{name} to be used as a secondary axis label. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} - \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{sec.axis} \hlstd{=} \hlkwd{sec_axis}\hlstd{(}\hlopt{~} \hlstd{.} \hlopt{/} \hlnum{2.3521458}\hlstd{,} \hlkwc{name} \hlstd{=} \hlkwd{expression}\hlstd{(km} \hlopt{/} \hlstd{l),} - \hlkwc{breaks} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{5}\hlstd{,} \hlnum{7.5}\hlstd{,} \hlnum{10}\hlstd{,} \hlnum{12.5}\hlstd{)))} -\end{alltt} -\end{kframe} -\end{knitrout} -\index{grammar of graphics!continuous scales|)} - -\subsection{Time and date scales for $x$ and $y$}\label{sec:plot:scales:time:date} -\index{grammar of graphics!time and date scales|(} -In \Rlang and many other computing languages, time values are stored as integer or numeric values subject to special interpretation. Times stored as objects of class \code{POSIXct} can be mapped to continuous \emph{aesthetics} such as $x$ and $y$. Special scales are available for these quantities. - -We can set limits and breaks using constants as time or dates. These are most easily input with the functions in packages \pkgname{lubridate} or \pkgname{anytime}. - - -\begin{warningbox} -Warnings are issued in the next two chunks as we are using scale limits to subset a part of the observations present in \code{data}. -\end{warningbox} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= weather_wk_25_2019.tb,} - \hlkwd{aes}\hlstd{(}\hlkwd{with_tz}\hlstd{(time,} \hlkwc{tzone} \hlstd{=} \hlstr{"EET"}\hlstd{), air_temp_C))} \hlopt{+} - \hlkwd{geom_line}\hlstd{()} \hlopt{+} - \hlkwd{scale_x_datetime}\hlstd{(}\hlkwc{name} \hlstd{=} \hlkwa{NULL}\hlstd{,} - \hlkwc{breaks} \hlstd{=} \hlkwd{ymd_hm}\hlstd{(}\hlstr{"2019-06-11 12:00"}\hlstd{,} \hlkwc{tz} \hlstd{=} \hlstr{"EET"}\hlstd{)} \hlopt{+} \hlkwd{days}\hlstd{(}\hlnum{0}\hlopt{:}\hlnum{1}\hlstd{),} - \hlkwc{limits} \hlstd{=} \hlkwd{ymd_hm}\hlstd{(}\hlstr{"2019-06-11 00:00"}\hlstd{,} \hlkwc{tz} \hlstd{=} \hlstr{"EET"}\hlstd{)} \hlopt{+} \hlkwd{days}\hlstd{(}\hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,} \hlnum{2}\hlstd{)))} \hlopt{+} - \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{name} \hlstd{=} \hlstr{"Air temperature (C)"}\hlstd{)} \hlopt{+} - \hlkwd{expand_limits}\hlstd{(}\hlkwc{y} \hlstd{=} \hlnum{0}\hlstd{)} -\end{alltt} - - -{\ttfamily\noindent\color{warningcolor}{\#\# Warning: Removed 7199 row(s) containing missing values (geom\_path).}}\end{kframe} - -{\centering \includegraphics[width=.9\textwidth]{figure/pos-scale-datetime-01-1} - -} - - -\end{knitrout} - -By\index{plots!scales!axis labels} default the tick labels produced and their formatting are automatically selected based on the extent of the time data. For example, if we have all data collected within a single day, then the tick labels will show hours and minutes. If we plot data for several years, the labels will show the date portion of the time instant. The default is frequently good enough, but it is possible, as for numbers, to use different formatter functions to generate the tick labels. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= weather_wk_25_2019.tb,} - \hlkwd{aes}\hlstd{(}\hlkwd{with_tz}\hlstd{(time,} \hlkwc{tzone} \hlstd{=} \hlstr{"EET"}\hlstd{), air_temp_C))} \hlopt{+} - \hlkwd{geom_line}\hlstd{()} \hlopt{+} - \hlkwd{scale_x_datetime}\hlstd{(}\hlkwc{name} \hlstd{=} \hlkwa{NULL}\hlstd{,} - \hlkwc{date_breaks} \hlstd{=} \hlstr{"1 hour"}\hlstd{,} - \hlkwc{limits} \hlstd{=} \hlkwd{ymd_hm}\hlstd{(}\hlstr{"2019-06-16 00:00"}\hlstd{,} \hlkwc{tz} \hlstd{=} \hlstr{"EET"}\hlstd{)} \hlopt{+} \hlkwd{hours}\hlstd{(}\hlkwd{c}\hlstd{(}\hlnum{6}\hlstd{,} \hlnum{18}\hlstd{)),} - \hlkwc{date_labels} \hlstd{=} \hlstr{"%H:%M"}\hlstd{)} \hlopt{+} - \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{name} \hlstd{=} \hlstr{"Air temperature (C)"}\hlstd{)} \hlopt{+} - \hlkwd{expand_limits}\hlstd{(}\hlkwc{y} \hlstd{=} \hlnum{0}\hlstd{)} -\end{alltt} - - -{\ttfamily\noindent\color{warningcolor}{\#\# Warning: Removed 9359 row(s) containing missing values (geom\_path).}}\end{kframe} - -{\centering \includegraphics[width=.9\textwidth]{figure/pos-scale-datetime-02-1} - -} - - -\end{knitrout} - -\begin{playground} -The formatting strings used are those supported by \Rfunction{strptime()} and \code{help(strptime)} lists them. Change, in the two examples above, the $y$-axis labels used and the limits---e.g., include a single hour or a whole week of data, check which tick labels are produced by default and then pass as an argument to \code{date\_labels} different format strings, taking into account that in addition to the \emph{conversion specification} codes, format strings can include additional text. -\end{playground} -\index{grammar of graphics!time and date scales|)} - -\subsection{Discrete scales for $x$ and $y$} -\index{grammar of graphics!discrete scales|(} - -In\index{plots!scales!limits} the case of ordered or unordered factors, the tick labels are by default the names of the factor levels. Consequently, one roundabout way of obtaining the desired tick labels is to set them as factor levels. This approach is not recommended as in many cases the text of the desired tick labels may not be recognized as a valid name making the code using them more difficult to type in scripts or at the command prompt. It is best to use simple mnemonic short names for factor levels and variables, and to set suitable labels through \emph{scales} when plotting, as we will show here. - -We can use \ggscale{scale\_x\_discrete()} to reorder and select the columns without altering the data. If we use this approach to subset the data, then to avoid warnings we need to add \code{na.rm = TRUE}. We additionally use \code{scale\_x\_discrete} to convert level names to uppercase. - - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(mpg,} \hlkwd{aes}\hlstd{(class, hwy))} \hlopt{+} - \hlkwd{stat_summary}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"col"}\hlstd{,} \hlkwc{fun} \hlstd{= mean,} \hlkwc{na.rm} \hlstd{=} \hlnum{TRUE}\hlstd{)} \hlopt{+} - \hlkwd{scale_x_discrete}\hlstd{(}\hlkwc{limits} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"compact"}\hlstd{,} \hlstr{"subcompact"}\hlstd{,} \hlstr{"midsize"}\hlstd{),} - \hlkwc{labels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"COMPACT"}\hlstd{,} \hlstr{"SUBCOMPACT"}\hlstd{,} \hlstr{"MIDSIZE"}\hlstd{))} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.54\textwidth]{figure/pos-scale-discrete-10-1} - -} - - -\end{knitrout} - -If, as in the previous example, only the case of character strings needs to be changed, passing function \Rfunction{toupper()} or \Rfunction{tolower()} allows a more general and less error-prone approach. In fact any function, user defined or not, which converts the values of \code{limits} into the desired values can be passed as an argument to \code{labels}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} - \hlkwd{scale_x_discrete}\hlstd{(}\hlkwc{limits} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"compact"}\hlstd{,} \hlstr{"subcompact"}\hlstd{,} \hlstr{"midsize"}\hlstd{),} - \hlkwc{labels} \hlstd{= toupper)} -\end{alltt} -\end{kframe} -\end{knitrout} - -Alternatively, we can change the order of the columns in the plot by reordering the levels of factor \code{mpg\$class}. This approach makes sense if the ordering needs to be done programmatically based on values in \code{data}. See section \ref{sec:calc:factors} on page \pageref{sec:calc:factors} for details. The example below shows how to reorder the columns, corresponding to the levels of \code{class} based on the \code{mean()} of \code{hwy}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(mpg,} \hlkwd{aes}\hlstd{(}\hlkwd{reorder}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwd{factor}\hlstd{(class),} \hlkwc{X} \hlstd{= hwy,} \hlkwc{FUN} \hlstd{= mean), hwy))} \hlopt{+} - \hlkwd{stat_summary}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"col"}\hlstd{,} \hlkwc{fun} \hlstd{= mean)} -\end{alltt} -\end{kframe} -\end{knitrout} -\index{grammar of graphics!discrete scales|)} - - -\subsection{Size} -\index{grammar of graphics!size scales|(} -For the \code{size} \emph{aesthetic}, several scales are available, both discrete and continuous. They do not differ much from those already described above. \emph{Geometries} \gggeom{geom\_point()}, \gggeom{geom\_line()}, \gggeom{geom\_hline()}, \gggeom{geom\_vline()}, \gggeom{geom\_text()}, \gggeom{geom\_label()} obey \code{size} as expected. In the case of \gggeom{geom\_bar()}, \gggeom{geom\_col()}, \gggeom{geom\_area()} and all other geometric elements bordered by lines, \code{size} is obeyed by these border lines. In fact, other aesthetics natural for lines such as \code{linetype} also apply to these borders. - -When using \code{size} scales, \code{breaks} and \code{labels} affect the key or \code{guide}. In scales that produce a key passing \code{guide = "none"} removes the key corresponding to the scale. -\index{grammar of graphics!size scales|)} - -\subsection{Color and fill} -\index{grammar of graphics!color and fill scales|(} -\index{plots!with colors|(} - -color and fill scales are similar, but they affect different elements of the plot. All visual elements in a plot obey the \code{color} \emph{aesthetic}, but only elements that have an inner region and a boundary, obey both \code{color} and \code{fill} \emph{aesthetics}. There are separate but equivalent sets of scales available for these two \emph{aesthetics}. We will describe in more detail the \code{color} \emph{aesthetic} and give only some examples for \code{fill}. We will, however, start by reviewing how colors are defined and used in \Rlang. - -\subsubsection{Color definitions in R}\label{sec:plot:colors} -\index{color!definitions|(} -Colors can be specified in \Rlang not only through character strings with the names of previously defined colors, but also directly as strings describing the RGB (red, green and blue) components as hexadecimal numbers (on base 16 expressed using 0, 1, 2, 3, 4, 6, 7, 8, 9, A, B, C, D, E, and F as ``digits'') such as \code{"\#FFFFFF"} for white or \code{"\#000000"} for black, or \code{"\#FF0000"} for the brightest available pure red. - -The list of color names\index{color!names} known to \Rlang can be obtained be typing \code{colors()} at the \Rlang console. -Given the number of colors available, we may want to subset them based on their names. Function \code{colors()} returns a character vector. We can use \code{grep()} to find the names containing a given character substring, in this example \code{"dark"}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{length}\hlstd{(}\hlkwd{colors}\hlstd{())} -\end{alltt} -\begin{verbatim} -## [1] 657 -\end{verbatim} -\begin{alltt} -\hlkwd{grep}\hlstd{(}\hlstr{"dark"}\hlstd{,}\hlkwd{colors}\hlstd{(),} \hlkwc{value} \hlstd{=} \hlnum{TRUE}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] "darkblue" "darkcyan" "darkgoldenrod" "darkgoldenrod1" -## [5] "darkgoldenrod2" "darkgoldenrod3" "darkgoldenrod4" "darkgray" -## [9] "darkgreen" "darkgrey" "darkkhaki" "darkmagenta" -## [13] "darkolivegreen" "darkolivegreen1" "darkolivegreen2" "darkolivegreen3" -## [17] "darkolivegreen4" "darkorange" "darkorange1" "darkorange2" -## [21] "darkorange3" "darkorange4" "darkorchid" "darkorchid1" -## [25] "darkorchid2" "darkorchid3" "darkorchid4" "darkred" -## [29] "darksalmon" "darkseagreen" "darkseagreen1" "darkseagreen2" -## [33] "darkseagreen3" "darkseagreen4" "darkslateblue" "darkslategray" -## [37] "darkslategray1" "darkslategray2" "darkslategray3" "darkslategray4" -## [41] "darkslategrey" "darkturquoise" "darkviolet" -\end{verbatim} -\end{kframe} -\end{knitrout} - -To retrieve the RGB values for a color definition we use: - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{col2rgb}\hlstd{(}\hlstr{"purple"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [,1] -## red 160 -## green 32 -## blue 240 -\end{verbatim} -\begin{alltt} -\hlkwd{col2rgb}\hlstd{(}\hlstr{"#FF0000"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [,1] -## red 255 -## green 0 -## blue 0 -\end{verbatim} -\end{kframe} -\end{knitrout} - -Color definitions in \Rlang can contain a \emph{transparency} described by an \code{alpha} value, which by default is not returned. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{col2rgb}\hlstd{(}\hlstr{"purple"}\hlstd{,} \hlkwc{alpha} \hlstd{=} \hlnum{TRUE}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [,1] -## red 160 -## green 32 -## blue 240 -## alpha 255 -\end{verbatim} -\end{kframe} -\end{knitrout} - -With function \Rfunction{rgb()} we can define new colors. Enter \code{help(rgb)} for more details. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{rgb}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{1}\hlstd{,} \hlnum{0}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] "#FFFF00" -\end{verbatim} -\begin{alltt} -\hlkwd{rgb}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{1}\hlstd{,} \hlnum{0}\hlstd{,} \hlkwc{names} \hlstd{=} \hlstr{"my.color"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## my.color -## "#FFFF00" -\end{verbatim} -\begin{alltt} -\hlkwd{rgb}\hlstd{(}\hlnum{255}\hlstd{,} \hlnum{255}\hlstd{,} \hlnum{0}\hlstd{,} \hlkwc{names} \hlstd{=} \hlstr{"my.color"}\hlstd{,} \hlkwc{maxColorValue} \hlstd{=} \hlnum{255}\hlstd{)} -\end{alltt} -\begin{verbatim} -## my.color -## "#FFFF00" -\end{verbatim} -\end{kframe} -\end{knitrout} - -As described above, colors can be defined in the RGB \emph{color space}, however, other color models such as HSV (hue, saturation, value) can be also used to define colours. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{hsv}\hlstd{(}\hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,}\hlnum{0.25}\hlstd{,}\hlnum{0.5}\hlstd{,}\hlnum{0.75}\hlstd{,}\hlnum{1}\hlstd{),} \hlnum{0.5}\hlstd{,} \hlnum{0.5}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] "#804040" "#608040" "#408080" "#604080" "#804040" -\end{verbatim} -\end{kframe} -\end{knitrout} - -Probably a more useful flavor of HSV colors for use in scales are those returned by function \Rfunction{hcl()} for hue, chroma and luminance. While the ``value'' and ``saturation'' in HSV are based on physical values, the ``chroma'' and ``luminance'' values in HCL are based on human visual perception. Colours with equal luminance will be seen as equally bright by an ``average'' human. In a scale based on different hues but equal chroma and luminance values, as used by package \ggplot, all colours are perceived as equally bright. The hues need to be expressed as angles in degrees, with values between zero and 360. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{hcl}\hlstd{(}\hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,}\hlnum{0.25}\hlstd{,}\hlnum{0.5}\hlstd{,}\hlnum{0.75}\hlstd{,}\hlnum{1}\hlstd{)} \hlopt{*} \hlnum{360}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] "#FFC5D0" "#D4D8A7" "#99E2D8" "#D5D0FC" "#FFC5D0" -\end{verbatim} -\end{kframe} -\end{knitrout} - -It is also important to remember that humans can only distinguish a limited set of colours, and even smaller color gamuts can be reproduced by screens and printers. Furthermore, variation from individual to individual exists in color perception, including different types of color blindness. It is important to take this into account when choosing the colors used in illustrations. -\index{color!definitions|)} - -\subsection{Continuous color-related scales} -\sloppy -Continuous color scales \ggscale{scale\_color\_continuous()}, \ggscale{scale\_color\_gradient()}, \ggscale{scale\_color\_gradient2()}, \ggscale{scale\_color\_gradientn()}, \ggscale{scale\_color\_date()} and \ggscale{scale\_color\_datetime()}, give a smooth continuous gradient between two or more colours. They are used with \code{numeric}, \code{date} and \code{datetime} data. A corresponding set of \code{fill} scales is also available. Other scales like \ggscale{scale\_color\_viridis\_c()} and \ggscale{scale\_color\_distiller()} are based on the use of ready-made palettes of sets of color gradients chosen to work well together under multiple conditions or for human vision including different types of color blindness. - -\subsection{Discrete color-related scales} -\sloppy -Color scales \ggscale{scale\_color\_discrete()}, \ggscale{scale\_color\_hue()}, \ggscale{scale\_color\_gray()} are used with categorical data stored as factors. Other scales like \ggscale{scale\_color\_viridis\_d()} and \ggscale{scale\_color\_brewer()} provide discrete sets of colours based on palettes. - -\subsection{Binned scales}\label{sec:binned:scales} -\index{grammar of graphics!binned scales|(} -Before version 3.3.0 of \pkgname{ggplot2} only two types of scales were available, continuous and discrete. A third type of scales (implemented for all the aesthetics where relevant) was added in version 3.3.0 called \emph{binned}. They are to be used with continuous variables, but they discretize the continuous values into bins or classes, each for a range of values, and then represent them in the plot using a discrete set of values. We re-do the figure shown on page \pageref{chunk:plot:weighted:resid} but replacing \ggscale{scale\_color\_gradient()} by \ggscale{scale\_color\_binned()}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlcom{# we use capital letters X and Y as variable names to distinguish} -\hlcom{# them from the x and y aesthetics} -\hlkwd{set.seed}\hlstd{(}\hlnum{4321}\hlstd{)} -\hlstd{X} \hlkwb{<-} \hlnum{0}\hlopt{:}\hlnum{10} -\hlstd{Y} \hlkwb{<-} \hlstd{(X} \hlopt{+} \hlstd{X}\hlopt{^}\hlnum{2} \hlopt{+} \hlstd{X}\hlopt{^}\hlnum{3}\hlstd{)} \hlopt{+} \hlkwd{rnorm}\hlstd{(}\hlkwd{length}\hlstd{(X),} \hlkwc{mean} \hlstd{=} \hlnum{0}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlkwd{mean}\hlstd{(X}\hlopt{^}\hlnum{3}\hlstd{)} \hlopt{/} \hlnum{4}\hlstd{)} -\hlstd{my.data} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(X, Y)} -\hlstd{my.data.outlier} \hlkwb{<-} \hlstd{my.data} -\hlstd{my.data.outlier[}\hlnum{6}\hlstd{,} \hlstr{"Y"}\hlstd{]} \hlkwb{<-} \hlstd{my.data.outlier[}\hlnum{6}\hlstd{,} \hlstr{"Y"}\hlstd{]} \hlopt{*} \hlnum{10} -\end{alltt} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my.formula} \hlkwb{<-} \hlstd{y} \hlopt{~} \hlkwd{poly}\hlstd{(x,} \hlnum{3}\hlstd{,} \hlkwc{raw} \hlstd{=} \hlnum{TRUE}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(my.data.outlier)} \hlopt{+} - \hlkwd{stat_fit_residuals}\hlstd{(}\hlkwc{formula} \hlstd{= my.formula,} - \hlkwc{method} \hlstd{=} \hlstr{"rlm"}\hlstd{,} - \hlkwc{mapping} \hlstd{=} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= X,} - \hlkwc{y} \hlstd{=} \hlkwd{stage}\hlstd{(}\hlkwc{start} \hlstd{= Y,} - \hlkwc{after_stat} \hlstd{= y} \hlopt{*} \hlstd{weights),} - \hlkwc{colour} \hlstd{=} \hlkwd{after_stat}\hlstd{(weights)),} - \hlkwc{show.legend} \hlstd{=} \hlnum{TRUE}\hlstd{)} \hlopt{+} - \hlkwd{scale_color_binned}\hlstd{(}\hlkwc{low} \hlstd{=} \hlstr{"red"}\hlstd{,} \hlkwc{high} \hlstd{=} \hlstr{"blue"}\hlstd{,} \hlkwc{limits} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,} \hlnum{1}\hlstd{),} - \hlkwc{guide} \hlstd{=} \hlstr{"colourbar"}\hlstd{,} \hlkwc{n.breaks} \hlstd{=} \hlnum{5}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-binned-scales-01-1} - -} - - -\end{knitrout} - -The advantage of binned scales is that they facilitate the fast reading of the plot while their disadvantage is the decreased resolution of the scale. The choice of a binned vs.\ continuous scale, and the number and boundaries of bins, set by the argument passed to parameter \code{n.breaks} or to \code{breaks} need to be chosen carefully, taking into account the audience, the length of time available to the viewer to peruse the plot vs.\ the density of observations. Transformations are also allowed in these scales as in others. - -\index{grammar of graphics!binned scales|)} - -\subsection{Identity scales} -\index{grammar of graphics!identity color scales|(} -In the case of identity scales, the mapping is one to-one to the data. For example, if we map the \code{color} or \code{fill} \emph{aesthetic} to a variable using \ggscale{scale\_color\_identity()} or \ggscale{scale\_fill\_identity()}, the mapped variable must already contain valid color definitions. In the case of mapping \code{alpha}, the variable must contain numeric values in the range 0 to 1. - -We create a data frame containing a variable \code{colors} containing character strings interpretable as the names of color definitions known to \Rlang. We then use them directly in the plot. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{df99} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{10}\hlstd{,} \hlkwc{y} \hlstd{=} \hlkwd{dnorm}\hlstd{(}\hlnum{10}\hlstd{),} \hlkwc{colors} \hlstd{=} \hlkwd{rep}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"red"}\hlstd{,} \hlstr{"blue"}\hlstd{),} \hlnum{5}\hlstd{))} - -\hlkwd{ggplot}\hlstd{(df99,} \hlkwd{aes}\hlstd{(x, y,} \hlkwc{color} \hlstd{= colors))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{scale_color_identity}\hlstd{()} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-scale-color-10-1} - -} - - -\end{knitrout} - -\begin{playground} -How does the plot look, if the identity scale is deleted from the example above? Edit and re-run the example code. - -While using the identity scale, how would you need to change the code example above, to produce a plot with green and purple points? -\end{playground} -\index{grammar of graphics!identity color scales|)} -\index{plots!with colors|)} -\index{grammar of graphics!color and fill scales|)} -\index{grammar of graphics!scales|)} - -\section{Adding annotations}\label{sec:plot:annotations} -\index{grammar of graphics!annotations|(} -The idea of annotations is that they add plot elements that are not directly connected with \code{data}, which we could call ``decorations'' such as arrows used to highlight some feature of the data, specific points along an axis, etc. They are referenced to the ``natural'' coordinates used to plot the observations, but are elements that do not represent observations or summaries computed from the observations. Annotations are added to a ggplot with \Rfunction{annotate()} as plot layers (each call to \code{annotate()} creates a new layer). To achieve the behavior expected of annotations, \Rfunction{annotate()} does not inherit the default \code{data} or \code{mapping} of variables to \emph{aesthetics}. Annotations frequently make use of \code{"text"} or \code{"label"} \emph{geometries} with character strings as data, possibly to be parsed as expressions. However, for example, the \code{"segment"} geometry can be used to add arrows. - -\begin{warningbox} -While layers added to a plot directly using \emph{geometries} and \emph{statistics} respect faceting, annotation layers added with \Rfunction{annotate()} are replicated unchanged in every panel of a faceted plot. The reason is that annotation layers accept \emph{aesthetics} only as constant values which are the same for every panel as no grouping is possible without a \code{mapping} to \code{data}. -\end{warningbox} - -We show a simple example using \code{"text"} as \emph{geometry}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z, y))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{annotate}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"text"}\hlstd{,} - \hlkwc{label} \hlstd{=} \hlstr{"origin"}\hlstd{,} - \hlkwc{x} \hlstd{=} \hlnum{0}\hlstd{,} \hlkwc{y} \hlstd{=} \hlnum{0}\hlstd{,} - \hlkwc{color} \hlstd{=} \hlstr{"blue"}\hlstd{,} - \hlkwc{size}\hlstd{=}\hlnum{4}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-annotate-01-1} - -} - - -\end{knitrout} - -\begin{playground} -Play with the values of the arguments to \Rfunction{annotate()} to vary the position, size, color, font family, font face, rotation angle and justification of the annotation. -\end{playground} - -\index{plots!insets as annotations|(} -It is relatively common to use inset tables, plots, bitmaps or vector plots as annotations. With \Rfunction{annotation\_custom()}, grobs (\pkgname{grid} graphical object) can be added to a ggplot. To add another or the same plot as an inset, we first need to convert it into a grob. In the case of a ggplot we use \Rfunction{ggplotGrob()}. In this example the inset is a zoomed-in window into the main plot. In addition to the grob, we need to provide the coordinates expressed in ``natural'' data units of the main plot for the location of the grob. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{p} \hlkwb{<-} \hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z, y))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} -\hlstd{p} \hlopt{+} \hlkwd{expand_limits}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{40}\hlstd{)} \hlopt{+} - \hlkwd{annotation_custom}\hlstd{(}\hlkwd{ggplotGrob}\hlstd{(p} \hlopt{+} \hlkwd{coord_cartesian}\hlstd{(}\hlkwc{xlim} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{5}\hlstd{,} \hlnum{10}\hlstd{),} \hlkwc{ylim} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{20}\hlstd{,} \hlnum{40}\hlstd{))} \hlopt{+} - \hlkwd{theme_bw}\hlstd{(}\hlnum{10}\hlstd{)),} - \hlkwc{xmin} \hlstd{=} \hlnum{21}\hlstd{,} \hlkwc{xmax} \hlstd{=} \hlnum{40}\hlstd{,} \hlkwc{ymin} \hlstd{=} \hlnum{30}\hlstd{,} \hlkwc{ymax} \hlstd{=} \hlnum{60}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-inset-01-1} - -} - - -\end{knitrout} - -This approach has the limitation that if used together with faceting, the inset will be the same for each plot panel. See section \ref{sec:plot:insets} on page \pageref{sec:plot:insets} for \emph{geometries} that can be used to add insets. -\index{plots!insets as annotations|)} - -In the next example, in addition to adding expressions as annotations, we also pass expressions as tick labels through the scale. Do notice that we use recycling for setting the breaks, as \code{c(0, 0.5, 1, 1.5, 2) * pi} is equivalent to \code{c(0, 0.5 * pi, pi, 1.5 * pi, 2 * pi}. Annotations are plotted at their own position, unrelated to any observation in the data, but using the same coordinates and units as for plotting the data. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,} \hlnum{2} \hlopt{*} \hlstd{pi)),} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= x))} \hlopt{+} - \hlkwd{stat_function}\hlstd{(}\hlkwc{fun} \hlstd{= sin)} \hlopt{+} - \hlkwd{scale_x_continuous}\hlstd{(} - \hlkwc{breaks} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,} \hlnum{0.5}\hlstd{,} \hlnum{1}\hlstd{,} \hlnum{1.5}\hlstd{,} \hlnum{2}\hlstd{)} \hlopt{*} \hlstd{pi,} - \hlkwc{labels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"0"}\hlstd{,} \hlkwd{expression}\hlstd{(}\hlnum{0.5}\hlopt{~}\hlstd{pi),} \hlkwd{expression}\hlstd{(pi),} - \hlkwd{expression}\hlstd{(}\hlnum{1.5}\hlopt{~}\hlstd{pi),} \hlkwd{expression}\hlstd{(}\hlnum{2}\hlopt{~}\hlstd{pi)))} \hlopt{+} - \hlkwd{labs}\hlstd{(}\hlkwc{y} \hlstd{=} \hlstr{"sin(x)"}\hlstd{)} \hlopt{+} - \hlkwd{annotate}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"text"}\hlstd{,} - \hlkwc{label} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"+"}\hlstd{,} \hlstr{"-"}\hlstd{),} - \hlkwc{x} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0.5}\hlstd{,} \hlnum{1.5}\hlstd{)} \hlopt{*} \hlstd{pi,} \hlkwc{y} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0.5}\hlstd{,} \hlopt{-}\hlnum{0.5}\hlstd{),} - \hlkwc{size} \hlstd{=} \hlnum{20}\hlstd{)} \hlopt{+} - \hlkwd{annotate}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"point"}\hlstd{,} - \hlkwc{color} \hlstd{=} \hlstr{"red"}\hlstd{,} - \hlkwc{shape} \hlstd{=} \hlnum{21}\hlstd{,} - \hlkwc{fill} \hlstd{=} \hlstr{"white"}\hlstd{,} - \hlkwc{x} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,} \hlnum{1}\hlstd{,} \hlnum{2}\hlstd{)} \hlopt{*} \hlstd{pi,} \hlkwc{y} \hlstd{=} \hlnum{0}\hlstd{,} - \hlkwc{size} \hlstd{=} \hlnum{6}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-annotate-03-1} - -} - - -\end{knitrout} - -\begin{playground} -Modify the plot above to show the cosine instead of the sine function, replacing \code{sin} with \code{cos}. This is easy, but the catch is that you will need to relocate the annotations. -\end{playground} - -\begin{infobox} -We cannot use \Rfunction{annotate()} with \code{geom = "vline"} or \code{geom = "hline"} as we can use \code{geom = "line"} or \code{geom = "segment"}. Instead, \gggeom{geom\_vline()} and/or \gggeom{geom\_hline()} can be used directly passing constant arguments to them. See section \ref{sec:plot:line} on page \pageref{sec:plot:vhline}. -\end{infobox} -\index{grammar of graphics!annotations|)} - -\section{Coordinates and circular plots}\label{sec:plot:circular}\label{sec:plot:coord} -\index{grammar of graphics!polar coordinates|(} -\index{plots!circular|(} -Circular plots can be thought of as plots equivalent to those described earlier in this chapter but drawn using a different system of coordinates. This is a key insight, that the grammar of graphics as implemented in \ggplot makes use of. To obtain circular plots we use the same \emph{geometries}, \emph{statistics} and \emph{scales} we have been using with the default system of cartesian coordinates. The only thing that we need to do is to add \ggcoordinate{coord\_polar()} to override the default. Of course only some observed quantities can be better perceived in circular plots than in cartesian plots. Here we add a new ``word'' to the grammar of graphics, \textit{coordinates}, such as \ggcoordinate{coord\_polar()}. -When using polar coordinates, the \code{x} and \code{y} \textit{aesthetics} correspond to the angle and radial distance, respectively. - -\subsection{Wind-rose plots} -\index{plots!wind rose|(} -Some types of data are more naturally expressed on polar coordinates than on cartesian coordinates. The clearest example is wind direction, from which the name derives. In some cases of time series data with a strong periodic variation, polar coordinates can be used to highlight any phase shifts or changes in frequency. A more mundane application is to plot variation in a response variable through the day with a clock-face-like representation of time of day. - -Wind rose plots are frequently histograms or density plots drawn on a polar system of coordinates (see sections \ref{sec:plot:histogram} and \ref{sec:plot:density} on pages \pageref{sec:plot:histogram} and \pageref{sec:plot:density}, respectively for a description of the use of these \emph{statistics} and \emph{geometries}). We will use them for examples where we plot wind speed and direction data, measured once per minute during 24~h (from package \pkgname{learnrbook}). - -Here we plot a circular histogram of wind directions with 30-degree-wide bins. We use \ggstat{stat\_bin()}. The counts represent the number of minutes during 24~h when the wind direction was within each bin. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{p} \hlkwb{<-} \hlkwd{ggplot}\hlstd{(viikki_d29.dat,} \hlkwd{aes}\hlstd{(WindDir_D1_WVT))} \hlopt{+} - \hlkwd{coord_polar}\hlstd{()} \hlopt{+} - \hlkwd{scale_x_continuous}\hlstd{(}\hlkwc{breaks} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,} \hlnum{90}\hlstd{,} \hlnum{180}\hlstd{,} \hlnum{270}\hlstd{),} - \hlkwc{labels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"N"}\hlstd{,} \hlstr{"E"}\hlstd{,} \hlstr{"S"}\hlstd{,} \hlstr{"W"}\hlstd{),} - \hlkwc{limits} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,} \hlnum{360}\hlstd{),} - \hlkwc{expand} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,} \hlnum{0}\hlstd{),} - \hlkwc{name} \hlstd{=} \hlstr{"Wind direction"}\hlstd{)} -\hlstd{p} \hlopt{+} \hlkwd{stat_bin}\hlstd{(}\hlkwc{color} \hlstd{=} \hlstr{"black"}\hlstd{,} \hlkwc{fill} \hlstd{=} \hlstr{"gray50"}\hlstd{,} \hlkwc{geom} \hlstd{=} \hlstr{"bar"}\hlstd{,} - \hlkwc{binwidth} \hlstd{=} \hlnum{30}\hlstd{,} \hlkwc{na.rm} \hlstd{=} \hlnum{TRUE}\hlstd{)} \hlopt{+} \hlkwd{labs}\hlstd{(}\hlkwc{y} \hlstd{=} \hlstr{"Frequency"}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-wind-05-1} - -} - - -\end{knitrout} - -For an equivalent plot, using an empirical density, we have to use \ggstat{stat\_density()} instead of \ggstat{stat\_bin()}, \gggeom{geom\_polygon()} instead of \gggeom{geom\_bar()} and change the \code{name} of the \code{y} scale. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{p} \hlopt{+} \hlkwd{stat_density}\hlstd{(}\hlkwc{color} \hlstd{=} \hlstr{"black"}\hlstd{,} \hlkwc{fill} \hlstd{=} \hlstr{"gray50"}\hlstd{,} - \hlkwc{geom} \hlstd{=} \hlstr{"polygon"}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{1}\hlstd{)} \hlopt{+} \hlkwd{labs}\hlstd{(}\hlkwc{y} \hlstd{=} \hlstr{"Density"}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-wind-06-1} - -} - - -\end{knitrout} - -As the final wind-rose plot example, we do 2D density plot with facets added with \Rfunction{facet\_wrap()} to have separate panels for AM and PM. This plot uses fill to describe the density of observations for different combinations wind directions and speeds, the radius ($y$ \emph{aesthetic}) to represent wind speeds and the angle ($x$ \emph{aesthetic}) to represent wind direction. - - - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(viikki_d29.dat,} \hlkwd{aes}\hlstd{(WindDir_D1_WVT, WindSpd_S_WVT))} \hlopt{+} - \hlkwd{coord_polar}\hlstd{()} \hlopt{+} - \hlkwd{stat_density_2d}\hlstd{(}\hlkwd{aes}\hlstd{(}\hlkwc{fill} \hlstd{=} \hlkwd{stat}\hlstd{(level)),} \hlkwc{geom} \hlstd{=} \hlstr{"polygon"}\hlstd{)} \hlopt{+} - \hlkwd{scale_x_continuous}\hlstd{(}\hlkwc{breaks} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,} \hlnum{90}\hlstd{,} \hlnum{180}\hlstd{,} \hlnum{270}\hlstd{),} - \hlkwc{labels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"N"}\hlstd{,} \hlstr{"E"}\hlstd{,} \hlstr{"S"}\hlstd{,} \hlstr{"W"}\hlstd{),} - \hlkwc{limits} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,} \hlnum{360}\hlstd{),} - \hlkwc{expand} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,} \hlnum{0}\hlstd{),} - \hlkwc{name} \hlstd{=} \hlstr{"Wind direction"}\hlstd{)} \hlopt{+} - \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{name} \hlstd{=} \hlstr{"Wind speed (m/s)"}\hlstd{)} \hlopt{+} - \hlkwd{facet_wrap}\hlstd{(}\hlopt{~}\hlkwd{factor}\hlstd{(}\hlkwd{ifelse}\hlstd{(}\hlkwd{hour}\hlstd{(solar_time)} \hlopt{<} \hlnum{12}\hlstd{,} \hlstr{"AM"}\hlstd{,} \hlstr{"PM"}\hlstd{)))} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.9\textwidth]{figure/pos-wind-08-1} - -} - - -\end{knitrout} -\index{plots!wind rose|)} - - -\subsection{Pie charts} -\index{plots!pie charts|(} - -\begin{warningbox} -Pie charts are more difficult to read than bar charts because our brain is better at comparing lengths than angles. If used, pie charts should only be used to show composition, or fractional components that add up to a total. In this case, used only if the number of “pie slices” is small (rule of thumb: seven at most), however in general, they are best avoided. -\end{warningbox} - -As we use \gggeom{geom\_bar()} which defaults to use \code{stat\_count}. We use the brewer scale for nice colors. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mpg,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwd{factor}\hlstd{(}\hlnum{1}\hlstd{),} \hlkwc{fill} \hlstd{=} \hlkwd{factor}\hlstd{(class)))} \hlopt{+} - \hlkwd{geom_bar}\hlstd{(}\hlkwc{width} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{color} \hlstd{=} \hlstr{"black"}\hlstd{)} \hlopt{+} - \hlkwd{coord_polar}\hlstd{(}\hlkwc{theta} \hlstd{=} \hlstr{"y"}\hlstd{)} \hlopt{+} - \hlkwd{scale_fill_brewer}\hlstd{()} \hlopt{+} - \hlkwd{scale_x_discrete}\hlstd{(}\hlkwc{breaks} \hlstd{=} \hlkwa{NULL}\hlstd{)} \hlopt{+} - \hlkwd{labs}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwa{NULL}\hlstd{,} \hlkwc{fill} \hlstd{=} \hlstr{"Vehicle class"}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.54\textwidth]{figure/pos-main-chunk-59-1} - -} - - -\end{knitrout} -\index{plots!pie charts|)} -\index{plots!circular|)} -\index{grammar of graphics!polar coordinates|)} - -\begin{playground} -Edit the code for the pie chart above to obtain a bar chart. Which one of the two plots is easier to read? -\end{playground} - -\section{Themes}\label{sec:plot:themes} -\index{grammar of graphics!themes|(} -\index{plots!styling|(} -In \ggplot, \emph{themes} are the equivalent of style sheets. They determine how the different elements of a plot are rendered when displayed, printed or saved to a file. \emph{Themes} do not alter what aesthetics or scales are used to plot the observations or summaries, but instead how text-labels, titles, axes, grids, plotting-area background and grid, etc., are formatted and if displayed or not. Package \ggplot includes several predefined \emph{theme constructors} (usually described as \emph{themes}), and independently developed extension packages define additional ones. These constructors return complete themes, which when added to a plot, replace any theme already present in whole. In addition to choosing among these already available \emph{complete themes}, users can modify the ones already present by adding \emph{incomplete themes} to a plot. When used in this way, \emph{incomplete themes} usually are created on the fly. It is also possible to create new theme constructors that return complete themes, similar to \code{theme\_gray()} from \ggplot. - -\subsection{Complete themes} -\index{grammar of graphics!complete themes|(} -The theme used by default is \ggtheme{theme\_gray()} with default arguments. In \pkgnameNI{ggplot2}, predefined themes are defined as constructor functions, with parameters. These parameters allow changing some ``base'' properties. The \code{base\_size} for text elements controlled is given in points, and affects all text elements in the returned theme object as the size of these elements is by default defined relative to the base size. Another parameter, \code{base\_family}, allows the font family to be set. These functions return complete themes. - -\begin{warningbox} -\emph{Themes} have no effect on layers produced by \emph{geometries} as themes have no effect on \emph{mappings}, \emph{scales} or \emph{aesthetics}. In the name \ggtheme{theme\_bw()} black-and- white refers to the color of the background of the plotting area and labels. If the \emph{color} or fill \emph{aesthetics} are mapped or set to a constant in the figure, these will be respected irrespective of the theme. We cannot convert a color figure into a black-and-white one by adding a \emph{theme}, we need to change the \emph{aesthetics} used, for example, use \code{shape} instead of \code{color} for a layer added with \code{geom\_point()}. -\end{warningbox} - -Even the default \ggtheme{theme\_gray()} can be added to a plot, to modify it, if arguments different to the defaults are passed when called. In this example we override the default base size with a larger one and the default sans-serif font with one with serifs. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z, y))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{theme_gray}\hlstd{(}\hlkwc{base_size} \hlstd{=} \hlnum{15}\hlstd{,} - \hlkwc{base_family} \hlstd{=} \hlstr{"serif"}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.54\textwidth]{figure/pos-themes-01-1} - -} - - -\end{knitrout} - -\begin{playground} -Change the code in the previous chunk to use, one at a time, each of the predefined themes from \ggplot: \ggtheme{theme\_bw()}, \ggtheme{theme\_classic()}, \ggtheme{theme\_minimal()}, \ggtheme{theme\_linedraw()}, \ggtheme{theme\_light()}, \ggtheme{theme\_dark()} and \ggtheme{theme\_void()}. -\end{playground} - -\begin{explainbox} -Predefined ``themes'' like \ggtheme{theme\_gray()} are, in reality, not themes but instead are constructors of theme objects. The \emph{themes} they return when called depend on the arguments passed to their parameters. In other words, \code{theme\_gray(base\_size = 15)}, creates a different theme than \code{theme\_gray(base\_size = 11)}. In this case, as sizes of different text elements are defined relative to the base size, the size of all text elements changes in coordination. Font size changes by \emph{themes} do not affect the size of text or labels in plot layers created with geometries, as their size is controlled by the \code{size} \emph{aesthetic}. -\end{explainbox} - -A frequent idiom is to create a plot without specifying a theme, and then adding the theme when printing or saving it. This can save work, for example, when producing different versions of the same plot for a publication and a talk. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{p} \hlkwb{<-} \hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z, y))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} -\hlkwd{print}\hlstd{(p} \hlopt{+} \hlkwd{theme_bw}\hlstd{())} -\end{alltt} -\end{kframe} -\end{knitrout} - -It is also possible to change the theme used by default in the current \Rlang session with \Rfunction{theme\_set()}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{old_theme} \hlkwb{<-} \hlkwd{theme_set}\hlstd{(}\hlkwd{theme_bw}\hlstd{(}\hlnum{15}\hlstd{))} -\end{alltt} -\end{kframe} -\end{knitrout} - -Similar to other functions used to change options in \Rlang, \Rfunction{theme\_set()} returns the previous setting. By saving this value to a variable, here \code{old\_theme}, we are able to restore the previous default, or undo the change. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{theme_set}\hlstd{(old_theme)} -\hlstd{p} -\end{alltt} -\end{kframe} -\end{knitrout} - -\begin{explainbox} -The use of a grey background as default for plots is unusual. This graphic design decision originates in the typesetters desire to maintain a uniform luminosity throughout the text and plots in a page. Many scientific journals require or at least prefer a more traditional graphic design. Theme \ggtheme{theme\_bw()} is the most versatile of the traditional designs supported as it works well both for individual plots as for plots with facets as it includes a box. Theme \ggtheme{theme\_classic()} lacking a box and grid works well for individual plots as is, but needs changes to the facet bars when used with facets. -\end{explainbox} -\index{grammar of graphics!complete themes|)} - -\subsection{Incomplete themes} -\index{grammar of graphics!incomplete themes|(} -If we want to extensively modify a theme, and/or reuse it in multiple plots, it is best to create a new constructor, or a modified complete theme as described in the next section. In other cases we may need to tweak some theme settings for a single figure, in which case we can most effectively do this when creating a plot. We exemplify this approach by solving the problem of overlapping $x$-axis tick labels. In practice this problem is most frequent when factor levels have long names or the labels are dates. Rotating the tick labels is the most elegant solution from the graphics design point of view. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z} \hlopt{+} \hlnum{1000}\hlstd{, y))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{scale_x_continuous}\hlstd{(}\hlkwc{breaks} \hlstd{= scales}\hlopt{::}\hlkwd{pretty_breaks}\hlstd{(}\hlkwc{n} \hlstd{=} \hlnum{8}\hlstd{))} \hlopt{+} - \hlkwd{theme}\hlstd{(}\hlkwc{axis.text.x} \hlstd{=} \hlkwd{element_text}\hlstd{(}\hlkwc{angle} \hlstd{=} \hlnum{90}\hlstd{,} \hlkwc{hjust} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{vjust} \hlstd{=} \hlnum{0.5}\hlstd{))} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.54\textwidth]{figure/pos-themes-11-1} - -} - - -\end{knitrout} - -\begin{warningbox} -When tick labels are rotated, one usually needs to set both the horizontal and vertical justification, \code{hjust} and \code{vjust}, as the default values stop being suitable. This is due to the fact that justification settings are referenced to the text itself rather than to the plot, i.e., \textbf{vertical} justification of $x$-axis tick labels rotated 90 degrees shifts their alignment with respect to tick marks along the (\textbf{horizontal}) $x$ axis. -\end{warningbox} - -\begin{playground} -Play with the code in the last chunk above, modifying the values used for \code{angle}, \code{hjust} and \code{vjust}. (Angles are expressed in degrees, and justification with values between 0 and 1). -\end{playground} - -A less elegant approach is to use a smaller font size. Within \Rfunction{theme()}, function \Rfunction{rel()} can be used to set size relative to the base size. In this example, we use \code{axis.text.x} so as to change the size of tick labels only for the $x$ axis. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} - \hlkwd{theme}\hlstd{(}\hlkwc{axis.text.x} \hlstd{=} \hlkwd{element_text}\hlstd{(}\hlkwc{size} \hlstd{=} \hlkwd{rel}\hlstd{(}\hlnum{0.6}\hlstd{)))} -\end{alltt} -\end{kframe} -\end{knitrout} - -Theme definitions follow a hierarchy, allowing us to modify the formatting of groups of similar elements, as well as of individual elements. In the chunk above, had we used \code{axis.text} instead of \code{axis.text.x}, the change would have affected the tick labels in both $x$ and $y$ axes. - -\begin{playground} -Modify the example above, so that the tick labels on the $x$-axis are blue and those on the $y$-axis red, and the font size is the same for both axes, but changed from the default. Consult the documentation for \code{theme()} to find out the names of the elements that need to be given new values. For examples, see \citebooktitle{Wickham2016} \autocite{Wickham2016} and \citebooktitle{Chang2018} \autocite{Chang2018}. -\end{playground} - -Formatting of other text elements can be adjusted in a similar way, as well as thickness of axes, length of tick marks, grid lines, etc. However, in most cases these are graphic design elements that are best kept consistent throughout sets of plots and best handled by creating a new \emph{theme} that can be easily reused. - -\begin{warningbox} -If you both add a \emph{complete theme} and want to modify some of its elements, you should add the whole theme before modifying it with \code{+ theme(...)}. This may seem obvious once one has a good grasp of the grammar of graphics, but can be at first disconcerting. -\end{warningbox} - -It is also possible to modify the default theme used for rendering all subsequent plots. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{old_theme} \hlkwb{<-} \hlkwd{theme_update}\hlstd{(}\hlkwc{text} \hlstd{=} \hlkwd{element_text}\hlstd{(}\hlkwc{color} \hlstd{=} \hlstr{"darkred"}\hlstd{))} -\end{alltt} -\end{kframe} -\end{knitrout} - - -\index{grammar of graphics!incomplete themes|)} - -\subsection{Defining a new theme} -\index{grammar of graphics!creating a theme|(} -Themes can be defined both from scratch, or by modifying existing saved themes, and saving the modified version. As discussed above, it is also possible to define a new, parameterized theme constructor function. - -Unless we plan to widely reuse the new theme, there is usually no need to define a new function. We can simply save the modified theme to a variable and add it to different plots as needed. As we will be adding a ``ready-build'' theme object rather than a function, we do not use parentheses. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my_theme} \hlkwb{<-} \hlkwd{theme_bw}\hlstd{()} \hlopt{+} \hlkwd{theme}\hlstd{(}\hlkwc{text} \hlstd{=} \hlkwd{element_text}\hlstd{(}\hlkwc{color} \hlstd{=} \hlstr{"darkred"}\hlstd{))} -\hlstd{p} \hlopt{+} \hlstd{my_theme} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.54\textwidth]{figure/pos-themes-21-1} - -} - - -\end{knitrout} - -\begin{playground} -It is always good to learn to recognize error messages. One way of doing this is by generating errors on purpose. So do add parentheses to the statement in the code chunk above and study the error message. -\end{playground} - -\begin{explainbox} -How to create a new theme constructor similar to those in package \ggplot can be fairly simple if the changes are few. As the implementation details of theme objects may change in future versions of \ggplot, the safest approach is to rely only on the public interface of the package. We can ``wrap'' the functions exported by package \ggplot inside a new function. For this we need to find out what are the parameters and their order and duplicate these in our wrapper. Looking at the ``usage'' section of the help page for \ggtheme{theme\_gray()} is enough. In this case, we retain compatibility, but add a new base parameter, \code{base\_color}, and set a different default for \code{base\_family}. The key detail is passing \code{complete = TRUE} to \Rfunction{theme()}, as this tags the returned theme as being usable by itself, resulting in replacement of any theme already in a plot when it is added. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my_theme_gray} \hlkwb{<-} - \hlkwa{function} \hlstd{(}\hlkwc{base_size} \hlstd{=} \hlnum{11}\hlstd{,} - \hlkwc{base_family} \hlstd{=} \hlstr{"serif"}\hlstd{,} - \hlkwc{base_line_size} \hlstd{= base_size}\hlopt{/}\hlnum{22}\hlstd{,} - \hlkwc{base_rect_size} \hlstd{= base_size}\hlopt{/}\hlnum{22}\hlstd{,} - \hlkwc{base_color} \hlstd{=} \hlstr{"darkblue"}\hlstd{) \{} - \hlkwd{theme_gray}\hlstd{(}\hlkwc{base_size} \hlstd{= base_size,} - \hlkwc{base_family} \hlstd{= base_family,} - \hlkwc{base_line_size} \hlstd{= base_line_size,} - \hlkwc{base_rect_size} \hlstd{= base_rect_size)} \hlopt{+} - \hlkwd{theme}\hlstd{(}\hlkwc{line} \hlstd{=} \hlkwd{element_line}\hlstd{(}\hlkwc{color} \hlstd{= base_color),} - \hlkwc{rect} \hlstd{=} \hlkwd{element_rect}\hlstd{(}\hlkwc{color} \hlstd{= base_color),} - \hlkwc{text} \hlstd{=} \hlkwd{element_text}\hlstd{(}\hlkwc{color} \hlstd{= base_color),} - \hlkwc{title} \hlstd{=} \hlkwd{element_text}\hlstd{(}\hlkwc{color} \hlstd{= base_color),} - \hlkwc{axis.text} \hlstd{=} \hlkwd{element_text}\hlstd{(}\hlkwc{color} \hlstd{= base_color),} \hlkwc{complete} \hlstd{=} \hlnum{TRUE}\hlstd{)} - \hlstd{\}} -\end{alltt} -\end{kframe} -\end{knitrout} - -In the chunk above we have created our own theme constructor, without too much effort, and using an approach that is very likely to continue working with future versions of \ggplot. The saved theme is a function with parameters and defaults for them. In this example we have kept the function parameters the same as those used in \ggplot, only adding an additional parameter after the existing ones to maximize compatibility and avoid surprising users. To avoid surprising users, we may want additionally to make \code{my\_theme\_gray()} a synonym of \code{my\_theme\_gray()} following \ggplot practice. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my_theme_gray} \hlkwb{<-} \hlstd{my_theme_gray} -\end{alltt} -\end{kframe} -\end{knitrout} - -Finally, we use the new theme constructor in the same way as those defined in \ggplot. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{p} \hlopt{+} \hlkwd{my_theme_gray}\hlstd{(}\hlnum{15}\hlstd{,} \hlkwc{base_color} \hlstd{=} \hlstr{"darkred"}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.54\textwidth]{figure/pos-themes-33-1} - -} - - -\end{knitrout} -\end{explainbox} -\index{grammar of graphics!creating a theme|)} -\index{plots!styling|)} -\index{grammar of graphics!themes|)} - -\section{Composing plots} -\index{plots!composing|(} -In section \ref{sec:plot:facets} on page \pageref{sec:plot:facets}, we described how facets can be used to create coordinated sets of panels, based on a single data set. Rather frequently, we need to assemble a composite plot from individually created plots. If one wishes to have correctly aligned axis labels and plotting areas, similar to when using facets, then the task is not easy to achieve without the help of especial tools. - -Package \pkgname{patchwork} defines a simple grammar for composing plots created with \ggplot. We briefly describe here the use of operators \Roperator{+}, \Roperator{|} and \Roperator{/}, although \pkgname{patchwork} provides additional tools for defining complex layouts of panels. While \Roperator{+} allows different layouts, \Roperator{|} composes panels side by side, and \Roperator{/} composes panels on top of each other. The plots to be used as panels can be grouped using parentheses. - -We start by creating and saving three plots. -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{p1} \hlkwb{<-} \hlkwd{ggplot}\hlstd{(mpg,} \hlkwd{aes}\hlstd{(displ, cty,} \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{theme}\hlstd{(}\hlkwc{legend.position} \hlstd{=} \hlstr{"top"}\hlstd{)} -\hlstd{p2} \hlkwb{<-} \hlkwd{ggplot}\hlstd{(mpg,} \hlkwd{aes}\hlstd{(displ, cty,} \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(year)))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{theme}\hlstd{(}\hlkwc{legend.position} \hlstd{=} \hlstr{"top"}\hlstd{)} -\hlstd{p3} \hlkwb{<-} \hlkwd{ggplot}\hlstd{(mpg,} \hlkwd{aes}\hlstd{(}\hlkwd{factor}\hlstd{(model), cty))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{theme}\hlstd{(}\hlkwc{axis.text.x} \hlstd{=} - \hlkwd{element_text}\hlstd{(}\hlkwc{angle} \hlstd{=} \hlnum{90}\hlstd{,} \hlkwc{hjust} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{vjust} \hlstd{=} \hlnum{0.5}\hlstd{))} -\end{alltt} -\end{kframe} -\end{knitrout} - -Next, we compose a plot using as panels the three plots created above (plot not shown). - - - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{(p1} \hlopt{|} \hlstd{p2)} \hlopt{/} \hlstd{p3} -\end{alltt} -\end{kframe} -\end{knitrout} - -We add a title and tag the panels with a letter. In this, and similar cases, parentheses may be needed to alter the default precedence of the \Rlang operators. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{((p1} \hlopt{|} \hlstd{p2)} \hlopt{/} \hlstd{p3)} \hlopt{+} - \hlkwd{plot_annotation}\hlstd{(}\hlkwc{title} \hlstd{=} \hlstr{"Fuel use in city traffic:"}\hlstd{,} \hlkwc{tag_levels} \hlstd{=} \hlstr{'a'}\hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.9\textwidth]{figure/pos-patchwork-03-1} - -} - - -\end{knitrout} - - - -Package \pkgname{patchwork} has in recent versions tools for the creation of complex layouts, addition of insets and combining in the same layout plots and other graphic objects such as bitmaps such as photographs and even tables. -\index{plots!composing|)} - -\section[Using plotmath expressions]{Using \code{plotmath} expressions}\label{sec:plot:plotmath} -\index{plotmath} -\index{plots!math expressions|(} -In sections \ref{sec:plot:function} and \ref{sec:plot:text} we gave some simple examples of the use of \Rlang expressions in plots. The \code{plotmath} demo and help in \Rlang provide enough information to start using expressions in plots. However, composing syntactically correct expressions can be challenging because their syntax is rather unusual. Although expressions are shown here in the context of plotting, they are also used in other contexts in \Rlang code. - -In general it is possible to create \emph{expressions} explicitly with function \Rfunction{expression()}, or by parsing a character string. In the case of \ggplot for some plot elements, layers created with \gggeom{geom\_text} and \gggeom{geom\_label}, and the strip labels of facets the parsing is delayed and applied to mapped character variables in \code{data}. In contrast, for titles, subtitles, captions, axis-labels, etc. (anything that is defined within \Rfunction{labs()}) the expressions have to be entered explicitly, or saved as such into a variable, and the variable passed as an argument. - -When plotting expressions using \gggeom{geom\_text()}, that character strings are to be parsed is signaled with \code{parse = TRUE}. In the case of facets' strip labels, parsing or not depends on the \emph{labeller} function used. An additional twist is in this case the possibility of combining static character strings with values taken from \code{data}. - -The most difficult thing to remember when writing expressions is how to connect the different parts. A tilde (\code{\textasciitilde}) adds space in between symbols. Asterisk (\code{*}) can be also used as a connector, and is needed usually when dealing with numbers. Using space is allowed in some situations, but not in others. To include bits of text within an expression we need to use quotation marks. For a long list of examples have a look at the output and code displayed by \code{demo(plotmath)} at the \Rlang command prompt. - -We will use a couple of complex examples to show how to use expressions for different elements of a plot. -We first create a data frame, using \Rfunction{paste()} to assemble a vector of subscripted $\alpha$ values as character strings suitable for parsing into expressions. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{set.seed}\hlstd{(}\hlnum{54321}\hlstd{)} \hlcom{# make sure we always generate the same data} -\hlstd{my.data} \hlkwb{<-} - \hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} - \hlkwc{y} \hlstd{=} \hlkwd{rnorm}\hlstd{(}\hlnum{5}\hlstd{),} - \hlkwc{greek.label} \hlstd{=} \hlkwd{paste}\hlstd{(}\hlstr{"alpha["}\hlstd{,} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlstr{"]"}\hlstd{,} \hlkwc{sep} \hlstd{=} \hlstr{""}\hlstd{))} -\end{alltt} -\end{kframe} -\end{knitrout} - -We use as $x$-axis label, a Greek $\alpha$ character with $i$ as subscript, and in the $y$-axis label, we have a superscript in the units. For the title we use a character string but for the subtitle a rather complex expression. We create these expressions with function \Rfunction{expression()}. - -We label each observation with a subscripted $alpha$. We cannot pass expressions to \emph{geometries} by simply mapping them to the label aesthetic. Instead, we pass character strings that can be parsed into expressions. In other words, character strings, that are written using the syntax of expressions. We need to set \code{parse = TRUE} in the call to the \emph{geometry} so that the strings, instead of being plotted as is, are parsed into expressions before the plot is rendered. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(x, y,} \hlkwc{label} \hlstd{= greek.label))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{geom_text}\hlstd{(}\hlkwc{angle} \hlstd{=} \hlnum{45}\hlstd{,} \hlkwc{hjust} \hlstd{=} \hlnum{1.2}\hlstd{,} \hlkwc{parse} \hlstd{=} \hlnum{TRUE}\hlstd{)} \hlopt{+} - \hlkwd{labs}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwd{expression}\hlstd{(alpha[i]),} - \hlkwc{y} \hlstd{=} \hlkwd{expression}\hlstd{(Speed}\hlopt{~~}\hlstd{(m}\hlopt{~}\hlstd{s}\hlopt{^}\hlstd{\{}\hlopt{-}\hlnum{1}\hlstd{\})),} - \hlkwc{title} \hlstd{=} \hlstr{"Using expressions"}\hlstd{,} - \hlkwc{subtitle} \hlstd{=} \hlkwd{expression}\hlstd{(}\hlkwd{sqrt}\hlstd{(alpha[}\hlnum{1}\hlstd{]} \hlopt{+} \hlkwd{frac}\hlstd{(beta, gamma))))} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-plotmath-02-1} - -} - - -\end{knitrout} - -We can also use a character string stored in a variable, and use function \Rfunction{parse()} to parse it in cases where an expression is required as we do here for \code{subtitle}. In this example we also set tick labels to expressions, taking advantage that \Rfunction{expression()} accepts multiple arguments separated by commas returning a vector of expressions. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{my_eq.char} \hlkwb{<-} \hlstr{"alpha[i]"} -\hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(x, y))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{labs}\hlstd{(}\hlkwc{title} \hlstd{=} \hlkwd{parse}\hlstd{(}\hlkwc{text} \hlstd{= my_eq.char))} \hlopt{+} - \hlkwd{scale_x_continuous}\hlstd{(}\hlkwc{name} \hlstd{=} \hlkwd{expression}\hlstd{(alpha[i]),} - \hlkwc{breaks} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,}\hlnum{3}\hlstd{,}\hlnum{5}\hlstd{),} - \hlkwc{labels} \hlstd{=} \hlkwd{expression}\hlstd{(alpha[}\hlnum{1}\hlstd{], alpha[}\hlnum{3}\hlstd{], alpha[}\hlnum{5}\hlstd{]))} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-plotmath-02a-1} - -} - - -\end{knitrout} - -A different approach (no example shown) would be to use \Rfunction{parse()} explicitly for each individual label, something that might be needed if the tick labels need to be ``assembled'' programmatically instead of set as constants. - -\begin{explainbox} -\textbf{Differences between \Rfunction{parse()} and \Rfunction{expression()}}. Function \Rfunction{parse()} takes as an argument a character string. This is very useful as the character string can be created programmatically. When using \code{expression()} this is not possible, except for substitution at execution time of the value of variables into the expression. See the help pages for both functions. - -Function \Rfunction{expression()} accepts its arguments without any delimiters. Function \Rfunction{parse()} takes a single character string as an argument to be parsed, in which case quotation marks within the string need to be \emph{escaped} (using \code{\backslash"} where a literal \code{"} is desired). We can, also in both cases, embed a character string by means of one of the functions \Rfunction{plain()}, \Rfunction{italic()}, \Rfunction{bold()} or \Rfunction{bolditalic()} which also affect the font used. The argument to these functions needs to be a character string delimited by quotation marks if it is not to be parsed. - -When using \Rfunction{expression()}, bare quotation marks can be embedded, - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(cars,} \hlkwd{aes}\hlstd{(speed, dist))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{xlab}\hlstd{(}\hlkwd{expression}\hlstd{(x[}\hlnum{1}\hlstd{]}\hlopt{*}\hlstr{" test"}\hlstd{))} -\end{alltt} -\end{kframe} -\end{knitrout} - -while in the case of \Rfunction{parse()} they need to be \emph{escaped}, - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(cars,} \hlkwd{aes}\hlstd{(speed, dist))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{xlab}\hlstd{(}\hlkwd{parse}\hlstd{(}\hlkwc{text} \hlstd{=} \hlstr{"x[1]*\textbackslash{}" test\textbackslash{}""}\hlstd{))} -\end{alltt} -\end{kframe} -\end{knitrout} - -and in some cases will be enclosed within a format function. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(cars,} \hlkwd{aes}\hlstd{(speed, dist))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{xlab}\hlstd{(}\hlkwd{parse}\hlstd{(}\hlkwc{text} \hlstd{=} \hlstr{"x[1]*italic(\textbackslash{}" test\textbackslash{}")"}\hlstd{))} -\end{alltt} -\end{kframe} -\end{knitrout} - -Some additional remarks. If \Rfunction{expression()} is passed multiple arguments, it returns a vector of expressions. Where \Rfunction{ggplot()} expects a single value as an argument, as in the case of axis labels, only the first member of the vector will be used. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(cars,} \hlkwd{aes}\hlstd{(speed, dist))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{xlab}\hlstd{(}\hlkwd{expression}\hlstd{(x[}\hlnum{1}\hlstd{],} \hlstr{" test"}\hlstd{))} -\end{alltt} -\end{kframe} -\end{knitrout} - -Depending on the location within a expression, spaces maybe ignored, or illegal. To juxtapose elements without adding space use \code{*}, to explicitly insert white space, use \code{\textasciitilde}. As shown above, spaces are accepted within quoted text. Consequently, the following alternatives can also be used. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} - \hlkwd{xlab}\hlstd{(}\hlkwd{parse}\hlstd{(}\hlkwc{text} \hlstd{=} \hlstr{"x[1]~~~~\textbackslash{}"test\textbackslash{}""}\hlstd{))} -\end{alltt} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} - \hlkwd{xlab}\hlstd{(}\hlkwd{parse}\hlstd{(}\hlkwc{text} \hlstd{=} \hlstr{"x[1]~~~~plain(test)"}\hlstd{))} -\end{alltt} -\end{kframe} -\end{knitrout} - -However, unquoted white space is discarded. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} - \hlkwd{xlab}\hlstd{(}\hlkwd{parse}\hlstd{(}\hlkwc{text} \hlstd{=} \hlstr{"x[1]*plain( test)"}\hlstd{))} -\end{alltt} -\end{kframe} -\end{knitrout} - -Finally, it can be surprising that trailing zeros in numeric values appearing within an expression or text to be parsed are dropped. To force the trailing zeros to be retained we need to enclose the number in quotation marks so that it is interpreted as a character string. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(cars,} \hlkwd{aes}\hlstd{(speed, dist))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{annotate}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"text"}\hlstd{,} - \hlkwc{x} \hlstd{=} \hlkwd{rep}\hlstd{(}\hlnum{6}\hlstd{,} \hlnum{3}\hlstd{),} \hlkwc{y} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{90}\hlstd{,} \hlnum{100}\hlstd{,} \hlnum{110}\hlstd{),} - \hlkwc{label} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"'1.00'*x^2"}\hlstd{,} \hlstr{"1.00*x^2"}\hlstd{,} \hlstr{"1.01*x^2"}\hlstd{),} \hlkwc{parse} \hlstd{=} \hlnum{TRUE}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} -\end{explainbox} - -Above we used \Rfunction{paste()} to insert values stored in a variable; functions \Rfunction{format()}, \Rfunction{sprintf()}, and \Rfunction{strftime()} allow the conversion into character strings of other values. These functions can be used when creating plots to generate suitable character strings for the \code{label} \emph{aesthetic} out of numeric, logical, date, time, and even character values. They can be, for example, used to create labels within a call to \code{aes()}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{sprintf}\hlstd{(}\hlstr{"log(%.3f) = %.3f"}\hlstd{,} \hlnum{5}\hlstd{,} \hlkwd{log}\hlstd{(}\hlnum{5}\hlstd{))} -\end{alltt} -\begin{verbatim} -## [1] "log(5.000) = 1.609" -\end{verbatim} -\begin{alltt} -\hlkwd{sprintf}\hlstd{(}\hlstr{"log(%.3g) = %.3g"}\hlstd{,} \hlnum{5}\hlstd{,} \hlkwd{log}\hlstd{(}\hlnum{5}\hlstd{))} -\end{alltt} -\begin{verbatim} -## [1] "log(5) = 1.61" -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{playground} -Study the chunck above. If you are familiar with \langname{C} or \langname{C++} function \Rfunction{sprintf()} will already be familiar to you, otherwise study its help page. - -Play with functions \Rfunction{format()}, \Rfunction{sprintf()}, and \Rfunction{strftime()}, formatting different types of data, into character strings of different widths, with different numbers of digits, etc. -\end{playground} - -It is also possible to substitute the value of variables or, in fact, the result of evaluation, into a new expression, allowing on the fly construction of expressions. Such expressions are frequently used as labels in plots. This is achieved through use of \emph{quoting} and \emph{substitution}. - -We use \Rfunction{bquote()} to substitute variables or expressions enclosed in \code{.( )} by their value. Be aware that the argument to \Rfunction{bquote()} needs to be written as an expression; in this example we need to use a tilde, \code{\textasciitilde}, to insert a space between words. Furthermore, if the expressions include variables, these will be searched for in the environment rather than in \code{data}, except within a call to \code{aes()}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(cars,} \hlkwd{aes}\hlstd{(speed, dist))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{labs}\hlstd{(}\hlkwc{title} \hlstd{=} \hlkwd{bquote}\hlstd{(Time}\hlopt{~}\hlstd{zone}\hlopt{:} \hlkwd{.}\hlstd{(}\hlkwd{Sys.timezone}\hlstd{())),} - \hlkwc{subtitle} \hlstd{=} \hlkwd{bquote}\hlstd{(Date}\hlopt{:} \hlkwd{.}\hlstd{(}\hlkwd{as.character}\hlstd{(}\hlkwd{today}\hlstd{())))} - \hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-expr-bquote-01-1} - -} - - -\end{knitrout} - -In the case of \Rfunction{substitute()} we supply what is to be used for substitution through a named list. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{ggplot}\hlstd{(cars,} \hlkwd{aes}\hlstd{(speed, dist))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} \hlopt{+} - \hlkwd{labs}\hlstd{(}\hlkwc{title} \hlstd{=} \hlkwd{substitute}\hlstd{(Time}\hlopt{~}\hlstd{zone}\hlopt{:} \hlstd{tz,} \hlkwd{list}\hlstd{(}\hlkwc{tz} \hlstd{=} \hlkwd{Sys.timezone}\hlstd{())),} - \hlkwc{subtitle} \hlstd{=} \hlkwd{substitute}\hlstd{(Date}\hlopt{:} \hlstd{date,} \hlkwd{list}\hlstd{(}\hlkwc{date} \hlstd{=} \hlkwd{as.character}\hlstd{(}\hlkwd{today}\hlstd{())))} - \hlstd{)} -\end{alltt} -\end{kframe} - -{\centering \includegraphics[width=.7\textwidth]{figure/pos-expr-substitute-01-1} - -} - - -\end{knitrout} - -For example, substitution can be used to assemble an expression within a function based on the arguments passed. One case of interest is to retrieve the name of the object passed as an argument, from within a function. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{deparse_test} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{) \{} - \hlkwd{print}\hlstd{(}\hlkwd{deparse}\hlstd{(}\hlkwd{substitute}\hlstd{(x)))} -\hlstd{\}} - -\hlstd{a} \hlkwb{<-} \hlstr{"saved in variable"} - -\hlkwd{deparse_test}\hlstd{(}\hlstr{"constant"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] "\"constant\"" -\end{verbatim} -\begin{alltt} -\hlkwd{deparse_test}\hlstd{(}\hlnum{1} \hlopt{+} \hlnum{2}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] "1 + 2" -\end{verbatim} -\begin{alltt} -\hlkwd{deparse_test}\hlstd{(a)} -\end{alltt} -\begin{verbatim} -## [1] "a" -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{infobox} -A new package, \pkgname{ggtext}, which is not yet in CRAN, provides rich-text (basic \langname{HTML} and \langname{Markdown}) support for \ggplot, both for annotations and for data visualization. This package provides an alternative to the use of \Rlang expressions. -\end{infobox} -\index{plots!math expressions|)} - -\section{Creating complex data displays}\label{sec:plot:composition} -\index{plots!modular construction|(} - -The grammar of graphics\index{grammar of graphics}\index{plots!layers} allows one to build and test plots incrementally. In daily use, when creating a completely new plot, it is best to start with a simple design for a plot, \code{print()} this plot, checking that the output is as expected and the code error-free. Afterwards, one can map additional \emph{aesthetics} and add \emph{geometries} and \emph{statistics} gradually. The final steps are then to add \emph{annotations} and the text or expressions used for titles, and axis and key labels. Another approach is to start with an existing plot and modify it, e.g., by using the same plotting code with different \code{data} or mapping different variables. When reusing code for a different data set, scale \code{limits} and \code{names} are likely to need to be edited. - -\begin{playground} - Build a graphically complex data plot of your interest, step by step. By step by step, I do not refer to using the grammar in the construction of the plot as earlier, but of taking advantage of this modularity to test intermediate versions in an iterative design process, first by building up the complex plot in stages as a tool in debugging, and later using iteration in the processes of improving the graphic design of the plot and improving its readability and effectiveness. -\end{playground} - -\section{Creating sets of plots}\label{sec:plot:sets:of} -\index{plots!consistent styling}\index{plots!programatic construction|(} -Plots to be presented at a given occasion or published as part of the same work need to be consistent in various respects: themes, scales and palettes, annotations, titles and captions. To guarantee this consistency we need to build plots modularly and avoid repetition by assigning names to the ``modules'' that need to be used multiple times. - -\subsection{Saving plot layers and scales in variables} - -When creating plots with \ggplot,\index{plots!reusing parts of} objects are composed using operator \code{+} to assemble together the individual components. The functions that create plot layers, scales, etc.\ are constructors of objects and the objects they return can be stored in variables, and once saved, added to multiple plots at a later time. - -We create a plot and save it to variable \code{myplot} and we separately save the values returned by a call to function \code{labs()}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{myplot} \hlkwb{<-} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} - \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} - \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} - -\hlstd{mylabs} \hlkwb{<-} \hlkwd{labs}\hlstd{(}\hlkwc{x} \hlstd{=} \hlstr{"Engine displacement)"}\hlstd{,} - \hlkwc{y} \hlstd{=} \hlstr{"Gross horsepower"}\hlstd{,} - \hlkwc{color} \hlstd{=} \hlstr{"Number of\textbackslash{}ncylinders"}\hlstd{,} - \hlkwc{shape} \hlstd{=} \hlstr{"Number of\textbackslash{}ncylinders"}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - -We assemble the final plot from the two parts we saved into variables. This is useful when we need to create several plots ensuring that scale \code{name} arguments are used consistently. In the example above, we saved these names, but the approach can be used for other plot components or lists of components. - -\begin{warningbox} - When composing plots with the \code{+} operator, the left-hand-side operand must be a \code{"gg"} object. The left operand is added to the \code{"gg"} object and the result returned. -\end{warningbox} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{myplot} -\hlstd{myplot} \hlopt{+} \hlstd{mylabs} \hlopt{+} \hlkwd{theme_bw}\hlstd{(}\hlnum{16}\hlstd{)} -\hlstd{myplot} \hlopt{+} \hlstd{mylabs} \hlopt{+} \hlkwd{theme_bw}\hlstd{(}\hlnum{16}\hlstd{)} \hlopt{+} \hlkwd{ylim}\hlstd{(}\hlnum{0}\hlstd{,} \hlnum{NA}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - -We can also save intermediate results. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{mylogplot} \hlkwb{<-} \hlstd{myplot} \hlopt{+} \hlkwd{scale_y_log10}\hlstd{(}\hlkwc{limits}\hlstd{=}\hlkwd{c}\hlstd{(}\hlnum{8}\hlstd{,}\hlnum{55}\hlstd{))} -\hlstd{mylogplot} \hlopt{+} \hlstd{mylabs} \hlopt{+} \hlkwd{theme_bw}\hlstd{(}\hlnum{16}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} - -\subsection{Saving plot layers and scales in lists} - -If the pieces to be put together do not include a \code{"gg"} object, we can group them into an \Rlang list and save it. When we later add the saved list to a \code{"gg"} object, the members of the list are added one by one to the plot respecting their order. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{myparts} \hlkwb{<-} \hlkwd{list}\hlstd{(mylabs,} \hlkwd{theme_bw}\hlstd{(}\hlnum{16}\hlstd{))} -\hlstd{mylogplot} \hlopt{+} \hlstd{myparts} -\end{alltt} -\end{kframe} -\end{knitrout} - -\begin{playground} -Revise the code you wrote for the ``playground'' exercise in section \ref{sec:plot:composition}, but this time, pre-building and saving groups of elements that you expect to be useful unchanged when composing a different plot of the same type, or a plot of a different type from the same data. -\end{playground} - -\subsection{Using functions as building blocks} - -When the blocks we assemble need to accept arguments when used, we have to define functions instead of saving plot components to variables. The functions we define, have to return a \code{"gg"} object, a list of plot components, or a single plot component. The simplest use is to alter some defaults in existing constructor functions returning \code{"gg"} objects or layers. The ellipsis (\code{...}) allows passing named arguments to a nested function. In this case, every single argument passed by name to \code{bw\_ggplot()} will be copied as argument to the nested call to \code{ggplot()}. Be aware, that supplying arguments by position, is possible only for parameters explicitly included in the definition of the wrapper function, - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{bw_ggplot} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{...}\hlstd{) \{} - \hlkwd{ggplot}\hlstd{(...)} \hlopt{+} - \hlkwd{theme_bw}\hlstd{()} -\hlstd{\}} -\end{alltt} -\end{kframe} -\end{knitrout} - -which could be used as follows. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{bw_ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} - \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg,} - \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} - \hlkwd{geom_point}\hlstd{()} -\end{alltt} -\end{kframe} -\end{knitrout} - -\index{plots!programatic construction|)} -\index{plots!modular construction|)} - -\section{Generating output files}\label{sec:plot:render} -\index{devices!output|see{graphic output devices}} -\index{plots!saving to file|see{plots, rendering}} -\index{graphic output devices|(} -\index{plots!rendering|(} -It is possible, when using \RStudio, to directly export the displayed plot to a file using a menu. However, if the file will have to be generated again at a later time, or a series of plots need to be produced with consistent format, it is best to include the commands to export the plot in the script. - -In \Rlang,\index{plots!printing}\index{plots!saving}\index{plots!output to files} files are created by printing to different devices. Printing is directed to a currently open device such a window in \RStudio. Some devices produce screen output, others files. Devices depend on drivers. There are both devices that are part of \Rlang and additional ones defined in contributed packages. - -Creating a file involves opening a device, printing and closing the device in sequence. In most cases the file remains locked until the device is close. - -For example when rendering a plot to\index{plots!PDF output} PDF, Encapsulated Postcript, SVG or other vector graphics formats, arguments passed to \code{width} and \code{height} are expressed in inches. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{fig1} \hlkwb{<-} \hlkwd{ggplot}\hlstd{(}\hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlopt{-}\hlnum{3}\hlopt{:}\hlnum{3}\hlstd{),} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= x))} \hlopt{+} - \hlkwd{stat_function}\hlstd{(}\hlkwc{fun} \hlstd{= dnorm)} -\hlkwd{pdf}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"fig1.pdf"}\hlstd{,} \hlkwc{width} \hlstd{=} \hlnum{8}\hlstd{,} \hlkwc{height} \hlstd{=} \hlnum{6}\hlstd{)} -\hlkwd{print}\hlstd{(fig1)} -\hlkwd{dev.off}\hlstd{()} -\end{alltt} -\end{kframe} -\end{knitrout} - -For Encapsulated Postscript\index{plots!Postscript output} and SVG\index{plots!SVG output} output, we only need to substitute \code{pdf()} with \code{postscript()} or \code{svg()}, respectively. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{postscript}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"fig1.eps"}\hlstd{,} \hlkwc{width} \hlstd{=} \hlnum{8}\hlstd{,} \hlkwc{height} \hlstd{=} \hlnum{6}\hlstd{)} -\hlkwd{print}\hlstd{(fig1)} -\hlkwd{dev.off}\hlstd{()} -\end{alltt} -\end{kframe} -\end{knitrout} - -In the case of graphics devices for\index{plots!bitmap output} file output in BMP, JPEG, PNG and TIFF bitmap formats, arguments passed to \code{width} and \code{height} are expressed in pixels. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{tiff}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"fig1.tiff"}\hlstd{,} \hlkwc{width} \hlstd{=} \hlnum{1000}\hlstd{,} \hlkwc{height} \hlstd{=} \hlnum{800}\hlstd{)} -\hlkwd{print}\hlstd{(fig1)} -\hlkwd{dev.off}\hlstd{()} -\end{alltt} -\end{kframe} -\end{knitrout} -\index{plots!rendering|)} -\index{graphic output devices|)} - -\begin{infobox} -Some graphics devices are part of base-\Rlang, and others are implemented in contributed packages. In some cases, there are multiple graphic device available for rendering graphics in a given file format. These devices usually use different libraries, or have been designed with different aims. These alternative graphic devices can also differ in their function signature, i.e., have differences in the parameters and their names. In cases when rendering fails inexplicably, it can be worthwhile to switch to an alternative graphics device to find out if the problem is in the plot or in the rendering engine. -\end{infobox} - -\section{Further reading} -An\index{further reading!grammar of graphics}\index{further reading!plotting} in-depth discussion of the many extensions to package \pkgname{ggplot2} is outside the scope of this book. Several books describe in detail the use of \pkgname{ggplot2}, being \citebooktitle{Wickham2016} \autocite{Wickham2016} the one written by the main author of the package. For inspiration or worked out examples, the book \citebooktitle{Chang2018} \autocite{Chang2018} is an excellent reference. In depth explanations of the technical aspects of \Rlang graphics are available in the book \citebooktitle{Murrell2019} \autocite{Murrell2019}. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{verbatim} -## Error : package 'ggplot2' is required by 'ggpp' so will not be detached -\end{verbatim} -\end{kframe} -\end{knitrout} - - - - -% !Rnw root = appendix.main.Rnw - - - -\chapter{Data import and export}\label{chap:R:data:io}\label{sec:data:io} - -\begin{VF} -Most programmers have seen them, and most good programmers realize they've written at least one. They are huge, messy, ugly programs that should have been short, clean, beautiful programs. - -\VA{John Bentley}{\emph{Programming Pearls}, 1986} -\end{VF} - - - -\section{Aims of this chapter} - -Base \Rlang and the recommended packages (installed by default) include several functions for importing and exporting data. Contributed packages provide both replacements for some of these functions and support for several additional file formats. In the present chapter, I aim at describing both data input and output covering in detail only the most common ``foreign'' data formats (those not native to \Rlang). - -Data file formats that are foreign to \Rlang are not always well defined, making it necessary to reverse-engineer the algorithms needed to read them. These formats, even when clearly defined, may be updated by the developers of the foreign software that writes the files. Consequently, developing software to read and write files using foreign formats can easily result in long, messy, and ugly \Rlang scripts. We can also unwillingly write code that usually works but occasionally fails with specific files, or even worse, occasionally silently corrupts the imported data. The aim of this chapter is to provide guidance for finding functions for reading data encoded using foreign formats, covering both base \Rlang, including the \pkgname{foreign} package, and independently contributed packages. Such functions are well tested or validated. - -In this chapter you will familiarize yourself with how to exchange data between \Rlang and other applications. The functions \code{save()} and \code{load()}, and \code{saveRDS()} and \code{readRDS()}, all of which save and read data in \Rlang's native formats, are described in sections \ref{sec:data:rda} and \ref{sec:data:rds} starting on page \pageref{sec:data:rda}. - -\section{Introduction} - -The first step in any data analysis with \Rlang is to input or read-in the data. Available sources of data are many and data can be stored or transmitted using various formats, both based on text or binary encodings. It is crucial that data is not altered (corrupted) when read and that in the eventual case of an error, errors are clearly reported. Most dangerous are silent non-catastrophic errors. - -The very welcome increase of awareness of the need for open availability of data, makes the output of data from \Rlang into well-defined data-exchange formats another crucial step. Consequently, in many cases an important step in data analysis is to export the data for submission to a repository, in addition to publication of the results of the analysis. - -Faster internet access to data sources and cheaper random-access memory (RAM) has made it possible to efficiently work with relatively large data sets in \Rlang. That \Rlang keeps all data in memory (RAM), imposes limits to the size of data \Rlang functions can operate on. For data sets large enough not to fit in computer RAM, one can use selective reading of data from flat files, or from databases outside of \Rlang. - -Some contributed \Rlang packages support import of data saved in the same formats already supported by base \Rlang, but using different compromises between reliability, easy of use and performance. Functions in base \Rlang tend to prioritize reliability and protection from data corruption while some contributed packages prioritize performance. Other contributed packages make it possible to import and export data stored in file formats not supported by base \Rlang functions. Some of these formats are subject-area specific while others are in widespread use. Packages supporting direct download of data sets from public repositories are becoming also common. - -\section{Packages used in this chapter} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{install.packages}\hlstd{(learnrbook}\hlopt{::}\hlstd{pkgs_ch_data)} -\end{alltt} -\end{kframe} -\end{knitrout} - -To run the examples included in this chapter, you need first to load some packages from the library (see section \ref{sec:script:packages} on page \pageref{sec:script:packages} for details on the use of packages). - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{library}\hlstd{(learnrbook)} -\hlkwd{library}\hlstd{(tibble)} -\hlkwd{library}\hlstd{(purrr)} -\hlkwd{library}\hlstd{(wrapr)} -\hlkwd{library}\hlstd{(stringr)} -\hlkwd{library}\hlstd{(dplyr)} -\hlkwd{library}\hlstd{(tidyr)} -\hlkwd{library}\hlstd{(readr)} -\hlkwd{library}\hlstd{(readxl)} -\hlkwd{library}\hlstd{(xlsx)} -\hlkwd{library}\hlstd{(readODS)} -\hlkwd{library}\hlstd{(pdftools)} -\hlkwd{library}\hlstd{(foreign)} -\hlkwd{library}\hlstd{(haven)} -\hlkwd{library}\hlstd{(xml2)} -\hlkwd{library}\hlstd{(XML)} -\hlkwd{library}\hlstd{(ncdf4)} -\hlkwd{library}\hlstd{(tidync)} -\hlkwd{library}\hlstd{(lubridate)} -\hlkwd{library}\hlstd{(jsonlite)} -\end{alltt} -\end{kframe} -\end{knitrout} - -\begin{infobox} -Some data sets used in this and other chapters are available in package \pkgname{learnrbook}. In addition to the -R data objects, we provide files saved in \emph{foreign} formats, which we used in examples on how to import data. The files can be either read from the \Rlang library, or from a copy in a local folder. In this chapter we assume the user has copied the folder \code{"extdata"} from the package to a working folder. - -Copy the files using: - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{pkg.path} \hlkwb{<-} \hlkwd{system.file}\hlstd{(}\hlstr{"extdata"}\hlstd{,} \hlkwc{package} \hlstd{=} \hlstr{"learnrbook"}\hlstd{)} -\hlkwd{file.copy}\hlstd{(pkg.path,} \hlstr{"."}\hlstd{,} \hlkwc{overwrite} \hlstd{=} \hlnum{TRUE}\hlstd{,} \hlkwc{recursive} \hlstd{=} \hlnum{TRUE}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\end{kframe} -\end{knitrout} - -We also make sure the folder used to save data read from the internet, exists. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{save.path} \hlkwb{=} \hlstr{"./data"} -\hlkwa{if} \hlstd{(}\hlopt{!}\hlkwd{dir.exists}\hlstd{(save.path)) \{} - \hlkwd{dir.create}\hlstd{(save.path)} -\hlstd{\}} -\end{alltt} -\end{kframe} -\end{knitrout} -\end{infobox} - -\section{File names and operations}\label{sec:files:filenames} -\index{file names!portable} -\index{file operations|(} -We start with the naming of files as it affects data sharing irrespective of the format used for its encoding. The main difficulty is that different operating systems have different rules governing the syntax used for file names and file paths. In many cases, like when depositing data files in a public repository, we need to ensure that file names are valid in multiple operating systems (OSs). If the script used to create the files is itself expected to be OS agnostic, we also need to be careful to query the OS for file names and paths without making assumptions on the naming rules or available OS commands. This is especially important when developing \Rlang packages. - -\begin{warningbox} -\index{file names!script portability} -For maximum portability, file names should never contain white-space characters and contain at most one dot. For the widest possible portability, underscores should be avoided using dashes instead. As an example, instead of \code{my data.2019.csv}, use \code{my-data-2019.csv}. -\end{warningbox} - -\Rlang provides functions which help with portability, by hiding the idiosyncrasies of the different OSs from \Rlang code. In scripts these functions should be preferred over direct call to OS commands (i.e., using \Rfunction{shell()} or \Rfunction{system()}) whenever possible. As the algorithm needed to extract a file name from a file path is OS specific, \Rlang provides functions such as \Rfunction{basename()}, whose implementation is OS specific but from the side of \Rlang code behave identically---these functions hide the differences among OSs from the user of \Rlang. The chunk below can be expected to work correctly under any OS for which \Rlang is available. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{basename}\hlstd{(}\hlstr{"extdata/my-file.txt"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] "my-file.txt" -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{warningbox} -\index{file paths!script portability} -\index{folders|see{file paths}} -\index{file paths!parsing|(} -While in \pgrmname{Unix} and \pgrmname{Linux} folder nesting in file paths is marked with a forward slash character (\verb|/|), under \pgrmname{MS-Windows} it is marked with a backslash character (\verb|\|). Backslash (\verb|\|) is an escape character in \Rlang and interpreted as the start of an embedded special sequence of characters (see section \ref{sec:calc:character} on page \pageref{sec:calc:character}), while in \Rlang a forward slash (\verb|/|) can be used for file paths under any OS, and escaped backslash (\verb|\\|) is valid only under MS-Windows. Consequently, \verb|/| should be always preferred to \verb|\\| to ensure portability, and is the approach used in this book. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{basename}\hlstd{(}\hlstr{"extdata/my-file.txt"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] "my-file.txt" -\end{verbatim} -\begin{alltt} -\hlkwd{basename}\hlstd{(}\hlstr{"extdata\textbackslash{}\textbackslash{}my-file.txt"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] "my-file.txt" -\end{verbatim} -\end{kframe} -\end{knitrout} -\end{warningbox} - -The complementary function to \code{basename()} is \Rfunction{dirname()} and extracts the bare path to the containing folder, from a full file path. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{dirname}\hlstd{(}\hlstr{"extdata/my-file.txt"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] "extdata" -\end{verbatim} -\end{kframe} -\end{knitrout} - -\index{file paths!parsing|)} -\index{working directory|(} -Functions \Rfunction{getwd()} and \Rfunction{setwd()} can be used to get the path to the current working directory and to set a directory as current, respectively. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlcom{# not run} -\hlkwd{getwd}\hlstd{()} -\end{alltt} -\end{kframe} -\end{knitrout} - -Function \Rfunction{setwd()} returns the path to the current working directory, allowing us to portably set the working directory to the previous one. Both relative paths (relative to the current working directory), as in the example, or absolute paths (given in full) are accepted as an argument. In mainstream OSs ``\code{.}'' indicates the current directory and ``\code{..}'' the directory above the current one. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlcom{# not run} -\hlstd{oldwd} \hlkwb{<-} \hlkwd{setwd}\hlstd{(}\hlstr{".."}\hlstd{)} -\hlkwd{getwd}\hlstd{()} -\end{alltt} -\end{kframe} -\end{knitrout} - -The returned value is always an absolute full path, so it remains valid even if the path to the working directory changes more than once before being restored. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlcom{# not run} -\hlstd{oldwd} -\hlkwd{setwd}\hlstd{(oldwd)} -\hlkwd{getwd}\hlstd{()} -\end{alltt} -\end{kframe} -\end{knitrout} -\index{working directory|)} - -\index{listing files or directories|(} -We can also obtain lists of files and/or directories (= disk folders) portably across OSs. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{head}\hlstd{(}\hlkwd{list.files}\hlstd{())} -\end{alltt} -\begin{verbatim} -## [1] "abbrev.sty" "anscombe.svg" "appendixes.prj" -## [4] "appendixes.prj.bak" "bits" "chapters-removed" -\end{verbatim} -\begin{alltt} -\hlkwd{head}\hlstd{(}\hlkwd{list.dirs}\hlstd{())} -\end{alltt} -\begin{verbatim} -## [1] "." "./.git" "./.git/hooks" "./.git/info" -## [5] "./.git/logs" "./.git/logs/refs" -\end{verbatim} -\begin{alltt} -\hlkwd{head}\hlstd{(}\hlkwd{dir}\hlstd{())} -\end{alltt} -\begin{verbatim} -## [1] "abbrev.sty" "anscombe.svg" "appendixes.prj" -## [4] "appendixes.prj.bak" "bits" "chapters-removed" -\end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{playground} -The default argument for parameter \code{path} is the current working directory, under Windows, Unix, and Linux indicated by \code{"."}. Convince yourself that this is indeed the default by calling the functions with an explicit argument. After this, play with the functions trying other existing and non-existent paths in your computer. -\end{playground} - -\begin{playground} -Use parameter \code{full.names} with \Rfunction{list.files()} to obtain either a list of file paths or bare file names. Similarly, investigate how the returned list of files is affected by the argument passed to \code{all.names}. -\end{playground} - -\begin{playground} -Compare the behavior of functions \Rfunction{dir()} and \Rfunction{list.dirs()}, and try by overriding the default arguments of \Rfunction{list.dirs()}, to get the call to return the same output as \Rfunction{dir()} does by default. -\end{playground} -\index{listing files or directories|)} - -Base \Rlang provides several functions for portably working with files, and they are listed in the help page for \code{files} and in individual help pages. Use \code{help("files")} to access the help for this ``family'' of functions. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwa{if} \hlstd{(}\hlopt{!}\hlkwd{file.exists}\hlstd{(}\hlstr{"xxx.txt"}\hlstd{)) \{} - \hlkwd{file.create}\hlstd{(}\hlstr{"xxx.txt"}\hlstd{)} -\hlstd{\}} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{file.size}\hlstd{(}\hlstr{"xxx.txt"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] 0 -\end{verbatim} -\begin{alltt} -\hlkwd{file.info}\hlstd{(}\hlstr{"xxx.txt"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## size isdir mode mtime ctime -## xxx.txt 0 FALSE 666 2022-08-28 22:59:59 2022-08-28 22:59:59 -## atime exe -## xxx.txt 2022-08-28 22:59:59 no -\end{verbatim} -\begin{alltt} -\hlkwd{file.rename}\hlstd{(}\hlstr{"xxx.txt"}\hlstd{,} \hlstr{"zzz.txt"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} -\begin{alltt} -\hlkwd{file.exists}\hlstd{(}\hlstr{"xxx.txt"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] FALSE -\end{verbatim} -\begin{alltt} -\hlkwd{file.exists}\hlstd{(}\hlstr{"zzz.txt"}\hlstd{)} -\end{alltt} -\begin{verbatim} -## [1] TRUE -\end{verbatim} +\begin{center} +\begin{small} +\begin{tikzpicture}[node distance=1.5cm] +\node (start) [startstop] {\ldots}; +\node (dec1) [decision, color = blue, fill = blue!15, below of=start, yshift=-0.4cm] {\code{switch()}}; +\node (stat2) [process, color = blue, fill = blue!15, below of=dec1, xshift=3.4cm] {\code{}}; +\node (stat3) [process, color = blue, fill = blue!15, below of=stat2] {\code{}}; +\node (stat4) [process, color = blue, fill = blue!15, below of=stat3] {\code{}}; +\node (stat5) [process, color = blue, fill = blue!15, below of=stat4] {\code{}}; +\node (stat6) [process, below of=stat5, xshift=3.3cm] {\code{}}; +\node (stop) [startstop, below of=stat6] {\ldots}; +\draw [arrow] (start) -- (dec1); +\draw [arrow, color=blue] (dec1) |- node[anchor=north west] {\code{}} (stat2); +\draw [arrow, color=blue] (dec1) |- node[anchor=north west] {\code{}} (stat3); +\draw [arrow, color=blue] (dec1) |- node[anchor=north west] {\code{}} (stat4); +\draw [arrow, color=blue] (dec1) |- node[anchor=north west] {\code{}} (stat5); +\draw [arrow] (stat2) -| (stat6); +\draw [arrow] (stat3) -| (stat6); +\draw [arrow] (stat4) -| (stat6); +\draw [arrow] (stat5) -| (stat6); +\draw [arrow] (stat6) -- (stop); +\end{tikzpicture} +\end{small} +\end{center} + +In the first example we use character constants saved in a variable as a condition, with the last statement with no tag being the default. Instead of the name of variable \code{my.object}, we could have used a complex expression returning a suitable \code{character} value of length one. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlkwd{file.remove}\hlstd{(}\hlstr{"zzz.txt"}\hlstd{)} +\hlstd{my.object} \hlkwb{<-} \hlstr{"two"} +\hlstd{b} \hlkwb{<-} \hlkwd{switch}\hlstd{(my.object,} + \hlkwc{one} \hlstd{=} \hlnum{1}\hlstd{,} + \hlkwc{two} \hlstd{=} \hlnum{1} \hlopt{/} \hlnum{2}\hlstd{,} + \hlkwc{four} \hlstd{=} \hlnum{1} \hlopt{/} \hlnum{4}\hlstd{,} + \hlnum{0} +\hlstd{)} +\hlstd{b} \end{alltt} \begin{verbatim} -## [1] TRUE +## [1] 0.5 \end{verbatim} \end{kframe} \end{knitrout} -\begin{playground} -Function \Rfunction{file.path()} can be used to construct a file path from its components in a way that is portable across OSs. Look at the help page and play with the function to assemble some paths that exist in the computer you are using. -\end{playground} -\index{file operations|)} - -\section{Opening and closing file connections}\label{sec:io:connections} - -Examples in the rest of this chapter use as an argument for the \code{file} formal parameter literal paths or URLs, and complete the reading or writing operations within the call to a function. Sometimes it is necessary to read or write a text file sequentially, one row or record at a time. In such cases it is most efficient to keep the file open between reads and close the connection only when it is no longer needed. See \code{help(connections)} for details about the various functions available and their behavior in different OSs. In the next example we open a file connection, read two lines, first the top one with column headers, then in a separate call to \Rfunction{readLines()}, the two lines or records with data, and finally close the connection. +Multiple condition values can share the same statement. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlstd{f1} \hlkwb{<-} \hlkwd{file}\hlstd{(}\hlstr{"extdata/not-aligned-ASCII-UK.csv"}\hlstd{,} \hlkwc{open} \hlstd{=} \hlstr{"r"}\hlstd{)} \hlcom{# open for reading} -\hlkwd{readLines}\hlstd{(f1,} \hlkwc{n} \hlstd{=} \hlnum{1L}\hlstd{)} +\hlstd{my.object} \hlkwb{<-} \hlstr{"two"} +\hlstd{b} \hlkwb{<-} \hlkwd{switch}\hlstd{(my.object,} + \hlkwc{one} \hlstd{=,} \hlkwc{uno} \hlstd{=} \hlnum{1}\hlstd{,} + \hlkwc{two} \hlstd{=,} \hlkwc{dos} \hlstd{=} \hlnum{1} \hlopt{/} \hlnum{2}\hlstd{,} + \hlkwc{four} \hlstd{=,} \hlkwc{cuatro} \hlstd{=} \hlnum{1} \hlopt{/} \hlnum{4}\hlstd{,} + \hlnum{0} +\hlstd{)} +\hlstd{b} \end{alltt} \begin{verbatim} -## [1] "col1,col2,col3,col4" +## [1] 0.5 \end{verbatim} \end{kframe} \end{knitrout} +\begin{playground} + Do play with the use of the switch statement. Look at the documentation for \code{switch()} using \code{help(switch)} and study the examples at the end of the help page. Explore what happens if you set \code{my.object <- "ten"}, \code{my.object <- "three"}, \code{my.object <- NA\_character\_} or \code{my.object <- character()}. Then remove the \code{, 0} as default value, and repeat. +\end{playground} + +When the expression used as a condition returns a value that is not a \code{character}, it will be interpreted as an \code{integer} index. In this case no names are used for the cases, and the last one is always interpreted as the default. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlkwd{readLines}\hlstd{(f1,} \hlkwc{n} \hlstd{=} \hlnum{2L}\hlstd{)} +\hlstd{my.number} \hlkwb{<-} \hlnum{2} +\hlstd{b} \hlkwb{<-} \hlkwd{switch}\hlstd{(my.number,} + \hlnum{1}\hlstd{,} + \hlnum{1} \hlopt{/} \hlnum{2}\hlstd{,} + \hlnum{1} \hlopt{/} \hlnum{4}\hlstd{,} + \hlnum{0} +\hlstd{)} +\hlstd{b} \end{alltt} \begin{verbatim} -## [1] "1.0,24.5,346,ABC" "23.4,45.6,78,Z Y" +## [1] 0.5 \end{verbatim} -\begin{alltt} -\hlkwd{close}\hlstd{(f1)} -\end{alltt} \end{kframe} \end{knitrout} -When \Rpgrm is used in batch mode, the ``files'' \code{stdin}, \code{stdout} and \code{stderror} can be opened, and data read from, or written to. These \emph{standard} sources and sinks, so familiar to \Clang programmers, allow the use of \Rlang scripts as tools in data pipes coded as shell scripts under Unix and other OSs. - -\section{Plain-text files}\label{sec:files:txt} -\index{importing data!text files|(} -In general, text files are the most portable approach to data storage but usually also the least efficient with respect to the size of the file. Text files are composed of encoded characters. This makes them easy to edit with text editors and easy to read from programs written in most programming languages. On the other hand, how the data encoded as characters is arranged can be based on two different approaches: positional or using a specific character as a separator. The positional approach is more concise but almost unreadable to humans as the values run into each other. Reading of data stored using a positional approach requires access to a format definition and was common in FORTRAN and COBOL at the time when punch cards were used to store data. In the case of separators, different separators are in common use. Comma-separated values (CSV) encodings use either a comma or semicolon to separate the fields or columns. Tabulator, or tab-separated values (TSV) use the tab character as a column separator. Sometimes white space is used as a separator, most commonly when all values are to be converted to \code{numeric}. +\begin{playground} + Continue playing with the use of the switch statement. Explore what happens if you set \code{my.number <- 10}, \code{my.number <- 3}, \code{my.number <- NA} or \code{my.object <- numeric()}. Then remove the \code{, 0} as default value, and repeat. +\end{playground} \begin{explainbox} -\textbf{Not all text files are born equal.} When reading text files, and \emph{foreign} binary files which may contain embedded text strings, there is potential for their misinterpretation during the import operation. One common source of problems, is that column headers are to be read as \Rlang names. As earlier discussed, there are strict rules, such as avoiding spaces or special characters if the names are to be used with the normal syntax. On import, some functions will attempt to sanitize the names, but others not. Most such names are still accessible in \Rlang statements, but a special syntax is needed to protect them from triggering syntax errors through their interpretation as something different than variable or function names---in \Rlang jargon we say that they need to be quoted. - -Some of the things we need to be on the watch for are: -1) Mismatches between the character encoding expected by the function used to read the file, and the encoding used for saving the file---usually because of different locales. -2) Leading or trailing (invisible) spaces present in the character values or column names---which are almost invisible when data frames are printed. -3) Wrongly guessed column classes---a typing mistake affecting a single value in a column, e.g., the wrong kind of decimal marker, prevents the column from being recognized as numeric. -4) Mismatched decimal marker in \code{CSV} files---the marker depends on the locale (language and sometimes country) settings. - -If you encounter problems after import, such as failure of indexing of data frame columns by name, use function \code{names()} to get the names printed to the console as a character vector. This is useful because character vectors are always printed with each string delimited by quotation marks making leading and trailing spaces clearly visible. The same applies to use of \code{levels()} with factors created with data that might have contained mistakes. - -To demonstrate some of these problems, I create a data frame with name sanitation disabled, and in the second statement with sanitation enabled. The first statement is equivalent to the default behavior of functions in package \pkgname{readr} and the second is equivalent to the behavior of base \Rlang functions. \pkgname{readr} prioritizes the integrity of the original data while \Rlang prioritizes compatibility with R's naming rules. - +The statements for the different values of the condition in a \Rcontrol{switch()} statement can be compound statements as in the case of \code{if}, and they can even be used for a side effect. We can for example modify the example above to print a message when the default value is returned. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlkwd{data.frame}\hlstd{(}\hlkwc{a} \hlstd{=} \hlnum{1}\hlstd{,} \hlstr{"a "} \hlstd{=} \hlnum{2}\hlstd{,} \hlstr{" a"} \hlstd{=} \hlnum{3}\hlstd{,} \hlkwc{check.names} \hlstd{=} \hlnum{FALSE}\hlstd{)} +\hlstd{my.object} \hlkwb{<-} \hlstr{"ten"} +\hlstd{b} \hlkwb{<-} \hlkwd{switch}\hlstd{(my.object,} + \hlkwc{one} \hlstd{=} \hlnum{1}\hlstd{,} + \hlkwc{two} \hlstd{=} \hlnum{1} \hlopt{/} \hlnum{2}\hlstd{,} + \hlkwc{three} \hlstd{=} \hlnum{1} \hlopt{/} \hlnum{4}\hlstd{,} + \hlstd{\{}\hlkwd{print}\hlstd{(}\hlstr{"No match! Using default"}\hlstd{);} \hlnum{0}\hlstd{\}} +\hlstd{)} \end{alltt} \begin{verbatim} -## a a a -## 1 1 2 3 +## [1] "No match! Using default" \end{verbatim} \begin{alltt} -\hlkwd{data.frame}\hlstd{(}\hlkwc{a} \hlstd{=} \hlnum{1}\hlstd{,} \hlstr{"a "} \hlstd{=} \hlnum{2}\hlstd{,} \hlstr{" a"} \hlstd{=} \hlnum{3}\hlstd{)} +\hlstd{b} \end{alltt} \begin{verbatim} -## a a. X.a -## 1 1 2 3 +## [1] 0 \end{verbatim} \end{kframe} \end{knitrout} +\end{explainbox} -An even more subtle case is when characters can be easily confused by the user reading the output: zero and o (\code{a0} vs.\ \code{aO}) or el and one (\code{al} vs.\ \code{a1}) can be difficult to distinguish in some fonts. When using encodings capable of storing many character shapes, such as unicode, in some cases two characters with almost identical visual shape may be encoded as different characters. +\begin{explainbox} + The \Rcontrol{switch()} statement can substitute for chained \code{if \ldots\ else} statements when all the conditions can be described by constant values or distinct values returned by the same test. The advantage is more concise and readable code. The equivalent of the first \Rcontrol{switch()} example above when written using \code{if \ldots\ else} becomes longer. Given how terse code using \Rcontrol{switch()} is, those not yet familiar with its use may find the more verbose style used below easier to understand. On the other hand, with numerous cases \Rcontrol{switch()} is easier to read and understand. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlkwd{data.frame}\hlstd{(}\hlkwc{al} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{a1} \hlstd{=} \hlnum{2}\hlstd{,} \hlkwc{aO} \hlstd{=} \hlnum{3}\hlstd{,} \hlkwc{a0} \hlstd{=} \hlnum{4}\hlstd{)} +\hlstd{my.object} \hlkwb{<-} \hlstr{"two"} +\hlkwa{if} \hlstd{(my.object} \hlopt{==} \hlstr{"one"}\hlstd{) \{} + \hlstd{b} \hlkwb{<-} \hlnum{1} +\hlstd{\}} \hlkwa{else if} \hlstd{(my.object} \hlopt{==} \hlstr{"two"}\hlstd{) \{} + \hlstd{b} \hlkwb{<-} \hlnum{1} \hlopt{/} \hlnum{2} +\hlstd{\}} \hlkwa{else if} \hlstd{(my.object} \hlopt{==} \hlstr{"four"}\hlstd{) \{} + \hlstd{b} \hlkwb{<-} \hlnum{1} \hlopt{/} \hlnum{4} +\hlstd{\}} \hlkwa{else} \hlstd{\{} + \hlstd{b} \hlkwb{<-} \hlnum{0} +\hlstd{\}} +\hlstd{b} \end{alltt} \begin{verbatim} -## al a1 aO a0 -## 1 1 2 3 4 +## [1] 0.5 \end{verbatim} \end{kframe} \end{knitrout} -Reading data from a text file can result in very odd-looking values stored in \Rlang variables because of a mismatch in encoding, e.g., when a CSV file saved with \pgrmname{MS-Excel} is silently encoded using 16-bit unicode format, but read as an 8-bit unicode encoded file. - -The hardest part of all these problems is to diagnose their origin, as function arguments and working environment options can in most cases be used to force the correct decoding of text files with diverse characteristics, origins and vintages once one knows what is required. One function in the \Rlang \pkgname{tools} package, which is not exported, can at the time of writing be used to test files for the presence on non-ASCII characters: \Rfunction{tools:::showNonASCIIfile()}. This function takes as an argument the path to a file. \end{explainbox} -\subsection[Base R and `utils']{Base \Rlang and \pkgname{utils}} -\index{text files!with field markers} -Text files containing data in columns can be divided into two broad groups. Those with fixed-width fields and those with delimited fields. Fixed-width fields were especially common in the early days of \langname{FORTRAN} and \langname{COBOL} when data storage capacity was very limited. These formats are frequently capable of encoding information using fewer characters than when delimited fields are used. The best way of understanding the differences is with examples. Although in this section we exemplify the use of functions by passing a file name as an argument, URLs, and open file descriptors are also accepted (see section \ref{sec:io:connections} on page \pageref{sec:io:connections}). +\subsubsection[Vectorized \texttt{ifelse()}]{Vectorized \code{ifelse()}} +\index{vectorized ifelse} +Vectorized \emph{ifelse} is a peculiarity of the \Rlang language, but very useful for writing concise code that may execute faster than logically equivalent but not vectorized code. +Vectorized conditional execution is coded by means of \emph{function} \Rcontrol{ifelse()} (written as a single word). This function takes three arguments: a \code{logical} vector usually the result of a test (parameter \code{test}), an expression to use for \code{TRUE} cases (parameter \code{yes}), and an expression to use for \code{FALSE} cases (parameter \code{no}). At each index position along the vectors, the value included in the returned vector is taken from \code{yes} if \code{test} is \code{TRUE} and from \code{no} if \code{test} is \code{FALSE}. All three arguments can be any \Rlang statement returning the required vectors. In the case of vectors passed as arguments to parameters \code{yes} and \code{no}, recycling will take place if they are shorter than the logical vector returned by the expression passed as argument to \code{test}. No recycling ever applies to \code{test}, even if \code{yes} and/or \code{no} are longer than \code{test}. -In the first example we will read a file with fields solely delimited by ``,.'' This is what is called comma-separated-values (CSV) format which can be read and written with \Rfunction{read.csv()} and \Rfunction{write.csv()}, respectively. +The flow chart for \Rcontrol{ifelse()} is similar to that for \code{if \ldots\ else} shown on page \pageref{flowchart:if} but applied in parallel to the individual members of vectors; e.g.\ the condition expression is evaluated at index position \code{1} controls which value will be present in the returned vector at index position \code{1}, and so on. -Example file \code{not-aligned-ASCII-UK.csv} contains: +It is customary to pass arguments to \code{ifelse} by position. We give a first example with named arguments to clarify the use of the function. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{my.test} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{,} \hlnum{TRUE}\hlstd{,} \hlnum{TRUE}\hlstd{)} +\hlkwd{ifelse}\hlstd{(}\hlkwc{test} \hlstd{= my.test,} \hlkwc{yes} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{no} \hlstd{=} \hlopt{-}\hlnum{1}\hlstd{)} +\end{alltt} \begin{verbatim} -col1,col2,col3,col4 -1.0,24.5,346,ABC -23.4,45.6,78,Z Y +## [1] 1 -1 1 1 \end{verbatim} \end{kframe} \end{knitrout} -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlstd{from_csv_a.df} \hlkwb{<-} \hlkwd{read.csv}\hlstd{(}\hlstr{"extdata/not-aligned-ASCII-UK.csv"}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} +In practice, the most common idiom is to have as an argument passed to \code{test}, the result of a comparison calculated on the fly. In the first example we compute the absolute values for a vector, equivalent to that returned by \Rlang function \code{abs()}. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlkwd{sapply}\hlstd{(from_csv_a.df, class)} -\end{alltt} -\begin{verbatim} -## col1 col2 col3 col4 -## "numeric" "numeric" "integer" "character" -\end{verbatim} -\begin{alltt} -\hlstd{from_csv_a.df[[}\hlstr{"col4"}\hlstd{]]} -\end{alltt} -\begin{verbatim} -## [1] "ABC" "Z Y" -\end{verbatim} -\begin{alltt} -\hlkwd{levels}\hlstd{(from_csv_a.df[[}\hlstr{"col4"}\hlstd{]])} +\hlstd{nums} \hlkwb{<-} \hlopt{-}\hlnum{3}\hlopt{:+}\hlnum{3} +\hlkwd{ifelse}\hlstd{(nums} \hlopt{<} \hlnum{0}\hlstd{,} \hlopt{-}\hlstd{nums, nums)} \end{alltt} \begin{verbatim} -## NULL +## [1] 3 2 1 0 1 2 3 \end{verbatim} \end{kframe} \end{knitrout} \begin{playground} -Read the file \code{not-aligned-ASCII-UK.csv} with function \Rfunction{read.csv2()} instead of \Rfunction{read.csv()}. Although this may look like a waste of time, the point of the exercise is for you to get familiar with \Rlang behavior in case of such a mistake. This will help you recognize similar errors when they happen accidentally, which is quite common when files are shared. -\end{playground} - -Example file \code{aligned-ASCII-UK.csv} contains comma-separated-values with added white space to align the columns, to make it easier to read by humans. These aligned fields contain leading and trailing white spaces that are included in string values when the file is read. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{verbatim} -col1, col2, col3, col4 - 1.0, 24.5, 346, ABC -23.4, 45.6, 78, Z Y -\end{verbatim} -\end{kframe} -\end{knitrout} +Some additional examples to play with, with a few surprises. Study the examples below until you understand why returned values are what they are. In addition, create your own examples to test other possible cases. In other words, play with the code until you fully understand how \code{ifelse} works. -Although space characters are read as part of the fields, they are ignored when conversion to numeric takes place. The remaining leading and trailing spaces in character strings are difficult to see when data frames are printed. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlstd{from_csv_b.df} \hlkwb{<-} \hlkwd{read.csv}\hlstd{(}\hlstr{"extdata/aligned-ASCII-UK.csv"}\hlstd{)} +\hlstd{a} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{10} +\hlkwd{ifelse}\hlstd{(a} \hlopt{>} \hlnum{5}\hlstd{,} \hlnum{1}\hlstd{,} \hlopt{-}\hlnum{1}\hlstd{)} +\hlkwd{ifelse}\hlstd{(a} \hlopt{>} \hlnum{5}\hlstd{, a} \hlopt{+} \hlnum{1}\hlstd{, a} \hlopt{-} \hlnum{1}\hlstd{)} +\hlkwd{ifelse}\hlstd{(}\hlkwd{any}\hlstd{(a} \hlopt{>} \hlnum{5}\hlstd{), a} \hlopt{+} \hlnum{1}\hlstd{, a} \hlopt{-} \hlnum{1}\hlstd{)} \hlcom{# tricky} +\hlkwd{ifelse}\hlstd{(}\hlkwd{logical}\hlstd{(}\hlnum{0}\hlstd{), a} \hlopt{+} \hlnum{1}\hlstd{, a} \hlopt{-} \hlnum{1}\hlstd{)} \hlcom{# even more tricky} +\hlkwd{ifelse}\hlstd{(}\hlnum{NA}\hlstd{, a} \hlopt{+} \hlnum{1}\hlstd{, a} \hlopt{-} \hlnum{1}\hlstd{)} \hlcom{# as expected} \end{alltt} \end{kframe} \end{knitrout} +Hint: if you need to refresh your understanding of \code{logical} values and Boolean algebra see section \ref{sec:calc:boolean} on page \pageref{sec:calc:boolean}. +\end{playground} + +\begin{warningbox} +In the case of \Rcontrol{ifelse()}, the length of the returned value is determined by the length of the logical vector passed as an argument to its first formal parameter (named \code{test})! A frequent mistake is to use a condition that returns a \code{logical} vector of length one, expecting that it will be recycled because arguments passed to the other formal parameters (named \code{yes} and \code{no}) are longer. However, no recycling will take place, resulting in a returned value of length one, with the remaining elements of the vectors passed to \code{yes} and \code{no} being discarded. Do try this by yourself, using logical vectors of different lengths. You can start with the examples below, making sure you understand why the returned values are what they are. -Using \code{levels()} we can more clearly see that the labels of the automatically created factor levels contain leading spaces. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlkwd{sapply}\hlstd{(from_csv_b.df, class)} -\end{alltt} -\begin{verbatim} -## col1 col2 col3 col4 -## "numeric" "numeric" "integer" "character" -\end{verbatim} -\begin{alltt} -\hlstd{from_csv_b.df[[}\hlstr{"col4"}\hlstd{]]} +\hlkwd{ifelse}\hlstd{(}\hlnum{TRUE}\hlstd{,} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlopt{-}\hlnum{5}\hlopt{:-}\hlnum{1}\hlstd{)} \end{alltt} \begin{verbatim} -## [1] " ABC" " Z Y" +## [1] 1 \end{verbatim} \begin{alltt} -\hlkwd{levels}\hlstd{(from_csv_b.df[[}\hlstr{"col4"}\hlstd{]])} +\hlkwd{ifelse}\hlstd{(}\hlnum{FALSE}\hlstd{,} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlopt{-}\hlnum{5}\hlopt{:-}\hlnum{1}\hlstd{)} \end{alltt} \begin{verbatim} -## NULL +## [1] -5 \end{verbatim} -\end{kframe} -\end{knitrout} - -By default, column names are sanitized but factor levels are not. By consulting the documentation with \code{help(read.csv)} we discover that by passing an additional argument we can change this default and obtain the data read as desired. Most likely the default has been chosen so that by default data integrity is maintained. - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlstd{from_csv_e.df} \hlkwb{<-} \hlkwd{read.csv}\hlstd{(}\hlstr{"extdata/aligned-ASCII-UK.csv"}\hlstd{,} \hlkwc{strip.white} \hlstd{=} \hlnum{TRUE}\hlstd{)} -\hlkwd{sapply}\hlstd{(from_csv_e.df, class)} +\hlkwd{ifelse}\hlstd{(}\hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{),} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlopt{-}\hlnum{5}\hlopt{:-}\hlnum{1}\hlstd{)} \end{alltt} \begin{verbatim} -## col1 col2 col3 col4 -## "numeric" "numeric" "integer" "character" +## [1] 1 -4 \end{verbatim} \begin{alltt} -\hlstd{from_csv_e.df[[}\hlstr{"col4"}\hlstd{]]} +\hlkwd{ifelse}\hlstd{(}\hlkwd{c}\hlstd{(}\hlnum{FALSE}\hlstd{,} \hlnum{TRUE}\hlstd{),} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlopt{-}\hlnum{5}\hlopt{:-}\hlnum{1}\hlstd{)} \end{alltt} \begin{verbatim} -## [1] "ABC" "Z Y" +## [1] -5 2 \end{verbatim} \begin{alltt} -\hlkwd{levels}\hlstd{(from_csv_e.df[[}\hlstr{"col4"}\hlstd{]])} +\hlkwd{ifelse}\hlstd{(}\hlkwd{c}\hlstd{(}\hlnum{FALSE}\hlstd{,} \hlnum{TRUE}\hlstd{),} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlnum{0}\hlstd{)} \end{alltt} \begin{verbatim} -## NULL +## [1] 0 2 \end{verbatim} \end{kframe} \end{knitrout} +\end{warningbox} -The functions from the \Rlang \pkgname{utils} package by default convert columns containing character strings into factors, as seen above. This default can be changed so that character strings remain as is. +\begin{playground} +Write, using \Rcontrol{ifelse()}, a single statement to combine numbers from the two vectors \code{a} and \code{b} into a result vector \code{d}, based on whether the corresponding value in vector \code{c} is the character \code{"a"} or \code{"b"}. Then print vector \code{d} to make the result visible. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlstd{from_csv_c.df} \hlkwb{<-} \hlkwd{read.csv}\hlstd{(}\hlstr{"extdata/not-aligned-ASCII-UK.csv"}\hlstd{,} - \hlkwc{stringsAsFactors} \hlstd{=} \hlnum{FALSE}\hlstd{)} +\hlstd{a} \hlkwb{<-} \hlopt{-}\hlnum{10}\hlopt{:-}\hlnum{1} +\hlstd{b} \hlkwb{<-} \hlopt{+}\hlnum{1}\hlopt{:}\hlnum{10} +\hlstd{c} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlkwd{rep}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlnum{5}\hlstd{),} \hlkwd{rep}\hlstd{(}\hlstr{"b"}\hlstd{,} \hlnum{5}\hlstd{))} +\hlcom{# your code} \end{alltt} \end{kframe} \end{knitrout} +If you do not understand how the three vectors are built, or you cannot guess the values they contain by reading the code, print them, and play with the arguments, until you understnd what each parameter does. Also use \code{help(rep)} and/or \code{help(ifelse)} to access the documentation. +\end{playground} + +\subsection{Iteration} +\index{loops|seealso{iteration}} +We give the name \emph{iteration} to the process of repetitive execution of a program statement (simple or compound)---e.g., \emph{computed by iteration}. We use the same word, iteration, to name each one of these repetitions of the execution of a statement---e.g., the second iteration. + +The section of computer code being executed multiple times, forms a loop (a closed path). Most loops contain a condition that determines when the flow of execution will exit the loop and continue at the next statement following the loop. In \Rlang three types of iteration loops are available: those using \Rloop{for}, \Rloop{while} and \Rloop{repeat} constructs. They differ in how much flexibility they provide with respect to the values they iterate over, and how the condition that terminates the iteration is tested. When the same algorithm can be implemented with more than one of these constructs, using the least flexible of them usually results in the easiest to understand \Rlang scripts. In \Rlang, rather frequently, explicit loops as described in this section can be replaced advantageously by calls to the \emph{apply} functions described in section \ref{sec:data:apply} on page \pageref{sec:data:apply}. + +\subsubsection[\texttt{for} loops]{\code{for} loops} +The\index{for loop}\index{iteration!for loop}\qRloop{for} most frequently used type of loop is a \code{for} loop. These loops work in \Rlang on lists or vectors of values to act upon. The implicit test for the end of the vector or list takes place at the top of the construct before the loop statement is evaluated. The flow chart has a \emph{loop} as the execution can be directed to an earlier position in the sequence of statements, allowing the same code to be evaluated multiple times. + +\begin{center} +\begin{small} +\begin{tikzpicture}[node distance=1.5cm] +\node (start) [startstop] {\ldots}; +\node (entry) [below of=start, color = blue, yshift=0.5cm]{$\bullet$}; +\node (dec1) [decision, color = blue, fill = blue!15, below of=entry, yshift=0.3cm] {\code{for ()}}; +\node (stat2) [process, color = blue, fill = blue!15, right of=dec1, xshift=3.55cm] {\code{}}; +\node (stat3) [process, below of=dec1, yshift=-0.5cm] {\code{}}; +\node (stop) [startstop, below of=stat3] {\ldots}; +\draw [arrow] (start) -- (dec1); +\draw [arrow, color=blue] (dec1) -- node[anchor=north] {\textsl{continue}} (stat2); +\draw [arrow, color=blue] (dec1) -- node[anchor=west] {\textsl{break}} (stat3); +\draw [arrow, color = blue] (stat2) |- (entry); +\draw [arrow, color = blue] (entry) -- (dec1); +\draw [arrow] (stat3) -- (stop); +\end{tikzpicture} +\end{small} +\end{center} + \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlkwd{sapply}\hlstd{(from_csv_c.df, class)} +\hlstd{b} \hlkwb{<-} \hlnum{0} +\hlkwa{for} \hlstd{(a} \hlkwa{in} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{) b} \hlkwb{<-} \hlstd{b} \hlopt{+} \hlstd{a} +\hlstd{b} \end{alltt} \begin{verbatim} -## col1 col2 col3 col4 -## "numeric" "numeric" "integer" "character" +## [1] 15 \end{verbatim} \begin{alltt} -\hlstd{from_csv_c.df[[}\hlstr{"col4"}\hlstd{]]} +\hlstd{b} \hlkwb{<-} \hlkwd{sum}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{5}\hlstd{)} \hlcom{# built-in function (faster)} +\hlstd{b} \end{alltt} \begin{verbatim} -## [1] "ABC" "Z Y" +## [1] 15 \end{verbatim} \end{kframe} \end{knitrout} -Decimal points and exponential notation are allowed for floating point values. In English-speaking locales, the decimal mark is a point, while in many other locales it is a comma. If a comma is used as decimal marker, we can no longer use it as field separator and is usually substituted by a semicolon (\verb|;|). In such a case we can use \Rfunction{read.csv2()} and \Rfunction{write.csv2}. Furthermore, parameters \code{dec} and \code{sep} allow setting them to arbitrary characters. Function \Rfunction{read.table()} does the actual work and functions like \Rfunction{read.csv()} only differ in the default arguments for the different parameters. By default, \Rfunction{read.table()} expects fields to be separated by white space (one or more spaces, tabs, new lines, or carriage return). Strings with embedded spaces need to be quoted in the file as shown below. +Here the statement \code{b <- b + a} is executed five times, with variable \code{a} sequentially taking each of the values in \code{1:5}. Instead of a simple statement used here, a compound statement could also have been used for the body of the \Rloop{for} loop. + +\begin{warningbox} +It is important to note that a list or vector of length zero is a valid argument to \code{for()}, that triggers no error, but skips the statements in the loop body. +\end{warningbox} + +Some examples of use of \code{for} loops---and of how to avoid their use. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{a} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{4}\hlstd{,} \hlnum{3}\hlstd{,} \hlnum{6}\hlstd{,} \hlnum{8}\hlstd{)} +\hlkwa{for}\hlstd{(x} \hlkwa{in} \hlstd{a) \{}\hlkwd{print}\hlstd{(x}\hlopt{*}\hlnum{2}\hlstd{)\}} \hlcom{# print is needed!} +\end{alltt} \begin{verbatim} -col1 col2 col3 col4 - 1.0 24.5 346 ABC -23.4 45.6 78 "Z Y" +## [1] 2 +## [1] 8 +## [1] 6 +## [1] 12 +## [1] 16 \end{verbatim} \end{kframe} \end{knitrout} +A call to \Rloop{for} does not return a value. We need to assign values to an object so that they are not lost. If we print at each iteration the value of this object, we can follow how the stored value changes. Printing allows us to see, how the vector grows in length, unless we create a long-enough vector before the start of the loop. + \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlstd{from_txt_b.df} \hlkwb{<-} \hlkwd{read.table}\hlstd{(}\hlstr{"extdata/aligned-ASCII.txt"}\hlstd{,} \hlkwc{header} \hlstd{=} \hlnum{TRUE}\hlstd{)} +\hlstd{b} \hlkwb{<-} \hlkwa{for}\hlstd{(x} \hlkwa{in} \hlstd{a) \{x}\hlopt{*}\hlnum{2}\hlstd{\}} +\hlstd{b} +\end{alltt} +\begin{verbatim} +## NULL +\end{verbatim} +\begin{alltt} +\hlstd{b} \hlkwb{<-} \hlkwd{numeric}\hlstd{()} +\hlkwa{for}\hlstd{(i} \hlkwa{in} \hlkwd{seq}\hlstd{(}\hlkwc{along.with} \hlstd{= a)) \{} + \hlstd{b[i]} \hlkwb{<-} \hlstd{a[i]}\hlopt{^}\hlnum{2} + \hlkwd{print}\hlstd{(b)} +\hlstd{\}} \end{alltt} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{verbatim} +## [1] 1 +## [1] 1 16 +## [1] 1 16 9 +## [1] 1 16 9 36 +## [1] 1 16 9 36 64 +\end{verbatim} +\begin{alltt} +\hlstd{b} +\end{alltt} +\begin{verbatim} +## [1] 1 16 9 36 64 +\end{verbatim} \begin{alltt} -\hlkwd{sapply}\hlstd{(from_txt_b.df, class)} +\hlcom{# runs faster if we first allocate a long enough vector} +\hlstd{b} \hlkwb{<-} \hlkwd{numeric}\hlstd{(}\hlkwd{length}\hlstd{(a))} +\hlkwa{for}\hlstd{(i} \hlkwa{in} \hlkwd{seq}\hlstd{(}\hlkwc{along.with} \hlstd{= a)) \{} + \hlstd{b[i]} \hlkwb{<-} \hlstd{a[i]}\hlopt{^}\hlnum{2} + \hlkwd{print}\hlstd{(b)} +\hlstd{\}} \end{alltt} \begin{verbatim} -## col1 col2 col3 col4 -## "numeric" "numeric" "integer" "character" +## [1] 1 0 0 0 0 +## [1] 1 16 0 0 0 +## [1] 1 16 9 0 0 +## [1] 1 16 9 36 0 +## [1] 1 16 9 36 64 \end{verbatim} \begin{alltt} -\hlstd{from_txt_b.df[[}\hlstr{"col4"}\hlstd{]]} +\hlstd{b} \end{alltt} \begin{verbatim} -## [1] "ABC" "Z Y" +## [1] 1 16 9 36 64 \end{verbatim} \begin{alltt} -\hlkwd{levels}\hlstd{(from_txt_b.df[[}\hlstr{"col4"}\hlstd{]])} +\hlcom{# a vectorized expression is simplest and fastest} +\hlstd{b} \hlkwb{<-} \hlstd{a}\hlopt{^}\hlnum{2} +\hlstd{b} \end{alltt} \begin{verbatim} -## NULL +## [1] 1 16 9 36 64 \end{verbatim} \end{kframe} \end{knitrout} -\index{text files!fixed width fields} -With a fixed-width format, no delimiters are needed. Decoding is based solely on the position of the characters in the line or record. A file like this cannot be interpreted without a description of the format used for saving the data. Files containing data stored in \emph{fixed width format} can be read with function \Rfunction{read.fwf()}. Records for a single observation can be stored in a single or multiple lines. In either case, each line has fields of different but fixed known widths. +In the previous chunk we used \code{seq(along.with = a)} to build a new numeric vector with a sequence of the same length as vector \code{a}. Using this \emph{idiom} is best as it ensures that even the case when \code{a} is an \emph{empty} vector of length zero will be handled correctly, with \code{numeric(0)} assigned to \code{b}. + +\begin{playground}\label{box:play:forloop} +Look at the results from the above examples, and try to understand where the returned value comes from in each case. In the code chunk above, \Rfunction{print()} is used within the \emph{loop} to make intermediate values visible. You can add additional \code{print()} statements to visualize other variables, such as \code{i}, or run parts of the code, such as \code{seq(along.with = a)}, by themselves. -Function \Rfunction{read.fortran()} is a wrapper on \Rfunction{read.fwf()} that accepts format definitions similar to those used in \langname{FORTRAN}. One particularity of \langname{FORTRAN} \emph{formatted data transfer} is that the decimal marker can be omitted in the saved file and its position specified as part of the format definition, a trick used to make text files (or stacks of punch cards!) smaller. Modern versions of \langname{FORTRAN} support reading from and writing to other formats like those using field delimiters described above. +In this case, the code examples trigger no errors or warnings, but the same approach can be used for debugging syntactically correct code that does not return the expected results. +\end{playground} -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{verbatim} - 10245346ABC -234456 78Z Y -\end{verbatim} -\end{kframe} -\end{knitrout} +\begin{advplayground} +In the examples above we show the use of \code{seq()} passing a vector as an argument to its parameter \code{along.with}. Run the examples below and explain why the two approaches are equivalent only when the length of \code{a} is one or more. Find the answer by assigning to \code{a}, vectors of different lengths, including zero (using \code{a <- numeric(0)}). \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlstd{from_fwf_a.df} \hlkwb{<-} \hlkwd{read.fortran}\hlstd{(}\hlstr{"extdata/aligned-ASCII.fwf"}\hlstd{,} - \hlkwc{format} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"2F3.1"}\hlstd{,} \hlstr{"F3.0"}\hlstd{,} \hlstr{"A3"}\hlstd{),} - \hlkwc{col.names} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"col1"}\hlstd{,} \hlstr{"col2"}\hlstd{,} \hlstr{"col3"}\hlstd{,} \hlstr{"col4"}\hlstd{))} +\hlstd{b} \hlkwb{<-} \hlkwd{numeric}\hlstd{(}\hlkwd{length}\hlstd{(a))} +\hlkwa{for}\hlstd{(i} \hlkwa{in} \hlkwd{seq}\hlstd{(}\hlkwc{along.with} \hlstd{= a)) \{} + \hlstd{b[i]} \hlkwb{<-} \hlstd{a[i]}\hlopt{^}\hlnum{2} +\hlstd{\}} +\hlkwd{print}\hlstd{(b)} + +\hlstd{c} \hlkwb{<-} \hlkwd{numeric}\hlstd{(}\hlkwd{length}\hlstd{(a))} +\hlkwa{for}\hlstd{(i} \hlkwa{in} \hlnum{1}\hlopt{:}\hlkwd{length}\hlstd{(a)) \{} + \hlstd{c[i]} \hlkwb{<-} \hlstd{a[i]}\hlopt{^}\hlnum{2} +\hlstd{\}} +\hlkwd{print}\hlstd{(c)} \end{alltt} \end{kframe} \end{knitrout} +\end{advplayground} + +\begin{explainbox} +\Rloop{for} loops as described above, in the absence of errors, have statically predictable behavior. The compound statement in the loop will be executed once for each member of the vector or list. Special cases may require the alteration of the normal flow of execution in the loop. Two cases are easy to deal with, one is stopping iteration early, which we can do with \Rloop{break()}, and another is jumping ahead to the start of the next iteration, which we can do with \Rloop{next()}. +\end{explainbox} + +\subsubsection[\texttt{while} loops]{\code{while} loops} +\Rloop{while} loops\index{iteration!while loop} are frequently useful, even if not as frequently used as \code{for} loops. Instead of a list or vector, they take a logical argument, which is usually an expression, but which can also be a variable. + +\begin{center} +\begin{small} +\begin{tikzpicture}[node distance=1.5cm] +\node (start) [startstop] {\ldots}; +\node (entry) [below of=start, color = blue, yshift=0.5cm]{$\bullet$}; +\node (dec1) [decision, color = blue, fill = blue!15, below of=entry, yshift=0.3cm] {\code{while ()}}; +\node (stat2) [process, color = blue, fill = blue!15, right of=dec1, xshift=3.3cm] {\code{}}; +\node (stat3) [process, below of=dec1, yshift=-0.5cm] {\code{}}; +\node (stop) [startstop, below of=stat3] {\ldots}; +\draw [arrow] (start) -- (dec1); +\draw [arrow, color=blue] (dec1) -- node[anchor=north] {\code{TRUE}} (stat2); +\draw [arrow, color=blue] (dec1) -- node[anchor=west] {\code{FALSE}} (stat3); +\draw [arrow, color = blue] (stat2) |- (entry); +\draw [arrow, color = blue] (entry) -- (dec1); +\draw [arrow] (stat3) -- (stop); +\end{tikzpicture} +\end{small} +\end{center} + + \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlkwd{sapply}\hlstd{(from_fwf_a.df, class)} +\hlstd{a} \hlkwb{<-} \hlnum{2} +\hlkwa{while} \hlstd{(a} \hlopt{<} \hlnum{50}\hlstd{) \{} + \hlkwd{print}\hlstd{(a)} + \hlstd{a} \hlkwb{<-} \hlstd{a}\hlopt{^}\hlnum{2} +\hlstd{\}} \end{alltt} \begin{verbatim} -## col1 col2 col3 col4 -## "numeric" "numeric" "numeric" "character" +## [1] 2 +## [1] 4 +## [1] 16 \end{verbatim} \begin{alltt} -\hlstd{from_fwf_a.df[[}\hlstr{"col4"}\hlstd{]]} +\hlkwd{print}\hlstd{(a)} \end{alltt} \begin{verbatim} -## [1] "ABC" "Z Y" +## [1] 256 \end{verbatim} \end{kframe} \end{knitrout} -\begin{explainbox} - The file reading functions described above share with \Rfunction{read.table()} the same parameters. In addition to those described above, other frequently useful parameters are \code{skip} and \code{n}, which can be used to skip lines at the top of a file and limit the number of lines (or records) to read; \code{header}, which accepts a logical argument indicating if the fields in the first text line read should be decoded as column names rather than data; \code{na.strings}, to which can be passed a character vector with strings to be interpreted as \code{NA}; and \code{colClasses}, which provides control of the conversion of the fields to \Rlang classes and possibly skipping some columns altogether. All these parameters are described in the corresponding help pages. -\end{explainbox} - \begin{playground} -In reality \Rfunction{read.csv()}, \code{read.csv2()} and \Rfunction{read.table()} are the same function with different default arguments to several of their parameters. Study the help page, and by passing suitable arguments, make \Rfunction{read.csv()} behave like \Rfunction{read.table()}, then make \Rfunction{read.table()} behave like \Rfunction{read.csv2()}. +Make sure that you understand why the final value of \code{a} is larger than 50. \end{playground} -\begin{explainbox} -We can read a text file as character strings, without attempting to decode them. This is occasionally useful, such as when we do the decoding as part of our own script. In this case, the function to use is \code{readLines()}. The returned value is a character vector in which each member string corresponds to one line or record in the file, with the end-of-line markers stripped (see example in section \ref{sec:io:connections} on page \pageref{sec:io:connections}). -\end{explainbox} -\index{importing data!text files|)} -\index{exporting data!text files|(} -Next we give one example of the use of a \emph{write} function matching one of the \emph{read} functions described above. The \Rfunction{write.csv()} function takes as an argument a data frame, or an object that can be coerced into a data frame, converts it to character strings, and saves them to a text file. We first create the data frame that we will write to disk. +\begin{advplayground} +The statements above can be simplified to: \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlstd{my.df} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlkwc{y} \hlstd{=} \hlnum{5}\hlopt{:}\hlnum{1} \hlopt{/} \hlnum{10}\hlstd{,} \hlkwc{z} \hlstd{= letters[}\hlnum{1}\hlopt{:}\hlnum{5}\hlstd{])} +\hlstd{a} \hlkwb{<-} \hlnum{2} +\hlkwd{print}\hlstd{(a)} +\hlkwa{while} \hlstd{(a} \hlopt{<} \hlnum{50}\hlstd{) \{} + \hlkwd{print}\hlstd{(a} \hlkwb{<-} \hlstd{a}\hlopt{^}\hlnum{2}\hlstd{)} +\hlstd{\}} \end{alltt} \end{kframe} \end{knitrout} -We write \code{my.df} to a CSV file suitable for an English language locale, and then display its contents. +Explain why this works, and how it relates to the support in \Rlang of \emph{chained} assignments to several variables within a single statement like the one below. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlkwd{write.csv}\hlstd{(my.df,} \hlkwc{file} \hlstd{=} \hlstr{"my-file1.csv"}\hlstd{,} \hlkwc{row.names} \hlstd{=} \hlnum{FALSE}\hlstd{)} -\hlkwd{file.show}\hlstd{(}\hlstr{"my-file1.csv"}\hlstd{,} \hlkwc{pager} \hlstd{=} \hlstr{"console"}\hlstd{)} +\hlstd{a} \hlkwb{<-} \hlstd{b} \hlkwb{<-} \hlstd{c} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{5} +\hlstd{a} \end{alltt} \end{kframe} \end{knitrout} -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{verbatim} -"x","y","z" -1,0.5,"a" -2,0.4,"b" -3,0.3,"c" -4,0.2,"d" -5,0.1,"e" -\end{verbatim} -\end{kframe} -\end{knitrout} +Explain why a second \code{print(a)} has been added before \code{while()}. Hint: experiment if necessary. +\end{advplayground} \begin{explainbox} -In most cases setting, as above, \code{row.names = FALSE} when writing a CSV file will help when it is read. Of course, if row names do contain important information, such as gene tags, you cannot skip writing the row names to the file unless you first copy these data into a column in the data frame. (Row names are stored separately as an attribute in \code{data.frame} objects, see section \ref{sec:calc:attributes} on page \pageref{sec:calc:attributes} for details.) +\Rloop{while} loops as described above will terminate when the condition tested is \code{FALSE}. In those cases that require stopping iteration based on an additional test condition within the compound statement, we can call \Rloop{break()} in the body of an \code{if} or \code{else} statement. \end{explainbox} -\begin{playground} -Write the data frame \code{my.df} into text files with functions \Rfunction{write.csv2()} and \Rfunction{write.table()} instead of \Rfunction{read.csv()} and display the files. -\end{playground} +\subsubsection[\texttt{repeat} loops]{\code{repeat} loops} +The \Rloop{repeat}\index{iteration!repeat loop} construct is less frequently used, but adds flexibility as termination will always depend on a call to \Rcontrol{break()}, which can be located anywhere within the compound statement that forms the body of the loop. To achieve conditional end of iteration, function \Rcontrol{break()} must be called, as otherwise, iteration in a \code{repeat} loop will not stop. -Function \Rfunction{cat()} takes \Rlang objects and writes them after conversion to character strings to the console or a file, inserting one or more characters as separators, by default, a space. This separator can be set through parameter \code{sep}. In our example we set \code{sep} to a new line (entered as the escape sequence \code{"\textbackslash n"}). +\begin{center} +\begin{small} +\begin{tikzpicture}[node distance=1.5cm] +\node (start) [startstop] {\ldots}; +\node (entry) [below of=start, color = blue, yshift=0.5cm]{$\bullet$}; +\node (dec1) [process, color = blue, fill = blue!15, below of=start, yshift=-0.3cm] {\code{repeat}}; +\node (stat2) [process, color = blue, fill = blue!15, right of=dec1, xshift=3.3cm] {\code{}}; +\node (stat3) [process, below of=stat2, yshift=-0.1cm] {\code{}}; +\node (stop) [startstop, below of=stat3] {\ldots}; +\draw [arrow] (start) -- (dec1); +\draw [arrow, color=blue] (dec1) -- node[anchor=north] {} (stat2); +\draw [arrow, color=blue] (stat2) |- node[anchor=south east] {\textsl{continue}} (entry); +\draw [arrow, color=blue] (stat2) -- node[anchor=west] {\code{break()}} (stat3); +\draw [arrow, color = blue] (entry) -- (dec1); +\draw [arrow] (stat3) -- (stop); +\end{tikzpicture} +\end{small} +\end{center} \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlstd{my.lines} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"abcd"}\hlstd{,} \hlstr{"hello world"}\hlstd{,} \hlstr{"123.45"}\hlstd{)} -\hlkwd{cat}\hlstd{(my.lines,} \hlkwc{file} \hlstd{=} \hlstr{"my-file2.txt"}\hlstd{,} \hlkwc{sep} \hlstd{=} \hlstr{"\textbackslash{}n"}\hlstd{)} -\hlkwd{file.show}\hlstd{(}\hlstr{"my-file2.txt"}\hlstd{,} \hlkwc{pager} \hlstd{=} \hlstr{"console"}\hlstd{)} +\hlstd{a} \hlkwb{<-} \hlnum{2} +\hlkwa{repeat}\hlstd{\{} + \hlkwd{print}\hlstd{(a)} + \hlkwa{if} \hlstd{(a} \hlopt{>} \hlnum{50}\hlstd{)} \hlkwa{break}\hlstd{()} + \hlstd{a} \hlkwb{<-} \hlstd{a}\hlopt{^}\hlnum{2} +\hlstd{\}} \end{alltt} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{verbatim} -abcd -hello world -123.45 +## [1] 2 +## [1] 4 +## [1] 16 +## [1] 256 \end{verbatim} \end{kframe} \end{knitrout} -\index{exporting data!text files|)} -\subsection[readr]{\pkgname{readr}}\label{sec:files:readr} -\index{importing data!text files|(} - - - -Package \pkgname{readr} is part of the \pkgname{tidyverse} suite. It defines functions that have different default behavior and that are designed to be faster under different situations than those native to \Rlang. The functions from package \pkgname{readr} can sometimes wrongly decode their input and rarely even silently do this. Base \Rlang functions do less \emph{guessing}, e.g., the delimiters must be supplied as arguments. The \pkgname{readr} functions guess more properties of the text file format; in most cases they succeed, which is very handy, but occasionally they fail. Automatic guessing can be overridden by passing arguments and this is recommended for scripts that may be reused to read different files in the future. Another important advantage is that these functions read character strings formatted as dates or times directly into columns of class \code{POSIXct}. All \code{write} functions defined in \pkgname{readr} have an \code{append} parameter, which can be used to change the default behavior of overwriting an existing file with the same name, to appending the output at its end. +\begin{playground} +Please explain why the example above returns the values it does. Use the approach of adding \code{print()} statements, as described on page \pageref{box:play:forloop}. +\end{playground} -Although in this section we exemplify the use of these functions by passing a file name as an argument, as is the case with \Rlang native functions, URLs, and open file descriptors are also accepted (see section \ref{sec:io:connections} on page \pageref{sec:io:connections}). Furthermore, if the file name ends in a tag recognizable as indicating a compressed file format, the file will be uncompressed on the fly. +\begin{explainbox} +Although \code{repeat} loop constructs are easier to read if they have a single condition resulting in termination of iteration, it is allowed by the \Rlang language for the compound statement in the body of a loop to contain more than one call to \Rcontrol{break()}, each within a different \code{if} or \code{else} statement. -\begin{warningbox} -Functions ``equivalent'' to native \Rlang functions described in the previous section have names formed by replacing the dot with an underscore, e.g., \Rfunction{read\_csv()} $\approx$ \Rfunction{read.csv()}. The similarity refers to the format of the files read, but not the order, names, or roles of their formal parameters. For example, function \code{read\_table()} has a slightly different behavior than \Rfunction{read.table()}, although they both read fields separated by white space. Other aspects of the default behavior are also different, for example \pkgname{readr} functions do not convert columns of character strings into factors as \Rlang functions did by default in versions earlier than 4.2.0. Row names are not set in the returned \Rclass{tibble}, which inherits from \Rclass{data.frame}, but is not fully compatible (see section \ref{sec:data:tibble} on page \pageref{sec:data:tibble}). -\end{warningbox} +Function \Rcontrol{break()} can be also used within \Rcontrol{for} and \Rcontrol{while} loops. In such case, for clarity, the use of \Rcontrol{break()} should be reserved for exceptional conditions. In a \Rcontrol{for} loop, \Rcontrol{next()} interrupts the current iteration and jumps to the start of the next one. +\end{explainbox} -\begin{infobox} - Package \pkgname{readr} is under active development, and function with the same name from different major versions are not fully compatible. Code chunks for examples from the previous edition of the book no longer work because the new implementation fails to recognize escaped special characters. In addition function \Rfunction{read\_table2()} has been renamed \Rfunction{read\_table2()}. -\end{infobox} +\subsection{Explicit loops can be slow in \Rlang}\label{sec:loops:slow} +\index{vectorization}\index{recycling of arguments}\index{iteration}\index{loops!faster alternatives|(} +If you have written programs in other languages, it will feel natural to you to use loops (\Rloop{for}, \Rloop{while}, \Rloop{repeat}) for many of the things for which in \Rlang one would normally use vectorization. In \Rlang, using vectorization whenever possible keeps scripts shorter and easier to understand (at least for those with experience in \Rlang). More importantly, as \Rlang is an interpreted language, vectorized arithmetic tends to be much faster than the use of explicit iteration. In recent versions of \Rpgrm, byte-compilation is used by default and loops may be compiled on the fly, which relieves part of the burden of repeated interpretation. However, even byte-compiled loops are usually slower to execute than efficiently coded vectorized functions and operators. -As we can see in this first example, these functions also report to the console the specifications of the columns, which is important when these are guessed from the file contents, or even only from rows near the top of the file. +Execution speed needs to be balanced against the effort invested in writing faster code. However, using vectorization and specific \Rlang functions requires little effort once we are familiar with them. The simplest way of measuring the execution time of an \Rlang expression is to use function \Rfunction{system.time()}. However, the returned time is in seconds and consequently the expression must take long enough to execute for the returned time to have useful resolution. See package \pkgname{microbenchmark} for tools for benchmarking code with better time resolution.\qRloop{for} \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlkwd{read_csv}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"extdata/aligned-ASCII-UK.csv"}\hlstd{)} +\hlkwd{system.time}\hlstd{(\{a} \hlkwb{<-} \hlkwd{numeric}\hlstd{()} + \hlkwa{for} \hlstd{(i} \hlkwa{in} \hlnum{1}\hlopt{:}\hlnum{1000000}\hlstd{) \{} + \hlstd{a[i]} \hlkwb{<-} \hlstd{i} \hlopt{/} \hlnum{1000} + \hlstd{\}} + \hlstd{\})} \end{alltt} - - -{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Rows: 2 Columns: 4\\\#\# -- Column specification --------------------------------------------------------\\\#\# Delimiter: "{},"{}\\\#\# chr (1): col4\\\#\# dbl (3): col1, col2, col3\\\#\# \\\#\# i Use `spec()` to retrieve the full column specification for this data.\\\#\# i Specify the column types or set `show\_col\_types = FALSE` to quiet this message.}}\begin{verbatim} -## # A tibble: 2 x 4 -## col1 col2 col3 col4 -## -## 1 1 24.5 346 ABC -## 2 23.4 45.6 78 Z Y +\begin{verbatim} +## user system elapsed +## 0.25 0.01 0.27 \end{verbatim} \end{kframe} \end{knitrout} +\begin{explainbox} +Whenever\label{box:vectorization:perf} working with large data sets, or many similar data sets, we will need to take performance into account. As vectorization usually also makes code simpler, it is good style to use vectorization whenever possible. For operations that are frequently used, \Rlang includes specific functions. It is thus important to consider not only vectorization of arithmetic but also check for the availability of performance-optimized functions for specific cases. The results from running the code examples in this box are not included, because they are the same for all chunks. Here we are interested in the execution time, and we leave this as an exercise. + \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlkwd{read_csv}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"extdata/not-aligned-ASCII-UK.csv"}\hlstd{)} +\hlstd{a} \hlkwb{<-} \hlkwd{rnorm}\hlstd{(}\hlnum{10}\hlopt{^}\hlnum{7}\hlstd{)} \hlcom{# 10 000 0000 pseudo-random numbers} \end{alltt} - - -{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Rows: 2 Columns: 4\\\#\# -- Column specification --------------------------------------------------------\\\#\# Delimiter: "{},"{}\\\#\# chr (1): col4\\\#\# dbl (3): col1, col2, col3\\\#\# \\\#\# i Use `spec()` to retrieve the full column specification for this data.\\\#\# i Specify the column types or set `show\_col\_types = FALSE` to quiet this message.}}\begin{verbatim} -## # A tibble: 2 x 4 -## col1 col2 col3 col4 -## -## 1 1 24.5 346 ABC -## 2 23.4 45.6 78 Z Y -\end{verbatim} \end{kframe} \end{knitrout} -Package \pkgname{readr} is under active development, and different major versions are not fully compatible with each other. Because of the misaligned fields in file \code{"not-aligned-ASCII.txt"} in the past we needed to use \Rfunction{read\_table2()}, which allowed misalignment of fields, similarly to \Rfunction{read.table()}. This function has been renamed as \Rfunction{read\_table()} and \Rfunction{read\_table2()} deprecated. However, parsing of both files fails if they are read with \Rfunction{read\_table()}. - \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlkwd{read_table}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"extdata/aligned-ASCII.txt"}\hlstd{)} +\hlcom{# b <- numeric()} +\hlstd{b} \hlkwb{<-} \hlkwd{numeric}\hlstd{(}\hlkwd{length}\hlstd{(a)}\hlopt{-}\hlnum{1}\hlstd{)} \hlcom{# pre-allocate memory} +\hlstd{i} \hlkwb{<-} \hlnum{1} +\hlkwa{while} \hlstd{(i} \hlopt{<} \hlkwd{length}\hlstd{(a)) \{} + \hlstd{b[i]} \hlkwb{<-} \hlstd{a[i}\hlopt{+}\hlnum{1}\hlstd{]} \hlopt{-} \hlstd{a[i]} + \hlkwd{print}\hlstd{(b)} + \hlstd{i} \hlkwb{<-} \hlstd{i} \hlopt{+} \hlnum{1} +\hlstd{\}} +\hlstd{b} \end{alltt} - - -{\ttfamily\noindent\itshape\color{messagecolor}{\#\# \\\#\# -- Column specification --------------------------------------------------------\\\#\# cols(\\\#\# \ \ col1 = col\_double(),\\\#\# \ \ col2 = col\_double(),\\\#\# \ \ col3 = col\_double(),\\\#\# \ \ col4 = col\_character()\\\#\# )}} - -{\ttfamily\noindent\color{warningcolor}{\#\# Warning: 1 parsing failure.\\\#\# row col \ expected \ \ \ actual \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ file\\\#\# \ \ 2 \ -- 4 columns 5 columns 'extdata/aligned-ASCII.txt'}}\begin{verbatim} -## # A tibble: 2 x 4 -## col1 col2 col3 col4 -## -## 1 1 24.5 346 "ABC" -## 2 23.4 45.6 78 "\"Z" -\end{verbatim} \end{kframe} \end{knitrout} \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlkwd{read_table}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"extdata/not-aligned-ASCII.txt"}\hlstd{)} +\hlcom{# b <- numeric()} +\hlstd{b} \hlkwb{<-} \hlkwd{numeric}\hlstd{(}\hlkwd{length}\hlstd{(a)}\hlopt{-}\hlnum{1}\hlstd{)} \hlcom{# pre-allocate memory} +\hlkwa{for}\hlstd{(i} \hlkwa{in} \hlkwd{seq}\hlstd{(}\hlkwc{along.with} \hlstd{= b)) \{} + \hlstd{b[i]} \hlkwb{<-} \hlstd{a[i}\hlopt{+}\hlnum{1}\hlstd{]} \hlopt{-} \hlstd{a[i]} + \hlkwd{print}\hlstd{(b)} +\hlstd{\}} +\hlstd{b} \end{alltt} - - -{\ttfamily\noindent\itshape\color{messagecolor}{\#\# \\\#\# -- Column specification --------------------------------------------------------\\\#\# cols(\\\#\# \ \ col1 = col\_double(),\\\#\# \ \ col2 = col\_double(),\\\#\# \ \ col3 = col\_double(),\\\#\# \ \ col4 = col\_character()\\\#\# )}} - -{\ttfamily\noindent\color{warningcolor}{\#\# Warning: 1 parsing failure.\\\#\# row col \ expected \ \ \ actual \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ file\\\#\# \ \ 2 \ -- 4 columns 5 columns 'extdata/not-aligned-ASCII.txt'}}\begin{verbatim} -## # A tibble: 2 x 4 -## col1 col2 col3 col4 -## -## 1 1 24.5 346 "ABC" -## 2 23.4 45.6 78 "\"Z" -\end{verbatim} \end{kframe} \end{knitrout} -Function \Rfunction{read\_delim()} with space as the delimiter needs to be used instead of \Rfunction{read\_table()}. - \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlkwd{read_delim}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"extdata/not-aligned-ASCII.txt"}\hlstd{,} \hlkwc{delim} \hlstd{=} \hlstr{" "}\hlstd{)} +\hlcom{# although in this case there were alternatives, there} +\hlcom{# are other cases when we need to use indexes explicitly} +\hlstd{b} \hlkwb{<-} \hlstd{a[}\hlnum{2}\hlopt{:}\hlkwd{length}\hlstd{(a)]} \hlopt{-} \hlstd{a[}\hlnum{1}\hlopt{:}\hlkwd{length}\hlstd{(a)}\hlopt{-}\hlnum{1}\hlstd{]} +\hlstd{b} \end{alltt} - - -{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Rows: 2 Columns: 4\\\#\# -- Column specification --------------------------------------------------------\\\#\# Delimiter: "{} "{}\\\#\# chr (1): col4\\\#\# dbl (3): col1, col2, col3\\\#\# \\\#\# i Use `spec()` to retrieve the full column specification for this data.\\\#\# i Specify the column types or set `show\_col\_types = FALSE` to quiet this message.}}\begin{verbatim} -## # A tibble: 2 x 4 -## col1 col2 col3 col4 -## -## 1 1 24.5 346 ABC -## 2 23.4 45.6 78 Z Y -\end{verbatim} \end{kframe} \end{knitrout} -Function \Rfunction{read\_tsv()} reads files encoded with the tab character as the delimiter, and \Rfunction{read\_fwf()} reads files with fixed width fields. There is, however, no equivalent to \Rfunction{read.fortran()}, supporting implicit decimal points. - -\begin{playground} -Use the "wrong" \code{read\_} functions to read the example files used above and/or your own files. As mentioned earlier, forcing errors will help you learn how to diagnose when such errors are caused by coding or data entry mistakes. In this case, as wrongly read data are not always accompanied by error or warning messages, carefully check the returned tibbles for misread data values. -\end{playground} - -\begin{explainbox} -The functions from R's package \pkgname{utils} read the whole file as text before attempting to guess the class of the columns or their alignment. This is reliable but slow for text files with many lines. The functions from \pkgname{readr} read by default only the top 1000 lines when guessing the format and class, and then rather blindly read the whole files assuming that the guessed properties also apply to the remaining lines of the file. This is more efficient in the case of such files, but somehow risky. In contrast, the functions from R's package \pkgname{utils} are much faster than those from package \pkgname{readr} at reading files with many fields (or columns) per line. +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlcom{# or even better} +\hlstd{b} \hlkwb{<-} \hlkwd{diff}\hlstd{(a)} +\hlstd{b} +\end{alltt} +\end{kframe} +\end{knitrout} -In earlier versions of \pkgname{readr}, a typical failure to correctly decode fields was when numbers are in increasing order and the field widths continue increasing in the lines below those used for guessing, but this case seems to be, at the time of writing correctly, handled. A guess based on the top 1000 lines of a text file also means that in cases values in lines below \code{guess\_max} lines cannot be converted to numeric, instead of returning a column of character strings as functions from R's package \pkgname{utils}, their values are replaced by numeric \code{NA} values with a warning. To demonstrate this we will drastically reduce \code{guess\_max} from its default so that we can use an for the example a file only a few lines in length. +Execution time can be obtained with \Rfunction{system.time()}. For a vector of ten million numbers, the \code{for} loop above takes 1.1\,s and the equivalent \code{while} loop 2.0\,s, the vectorized statement using indexing takes 0.2\,s and function \code{diff()} takes 0.1\,s. The \code{for} loop without pre-allocation of memory to \code{b} takes 3.6\,s, and the equivalent while loop 4.7\,s---i.e., the fastest execution time was more than 40 times faster than the slowest one. (Times for \Rpgrm 3.5.1 on my laptop under Windows 10 x64.) +\end{explainbox} +\index{loops!faster alternatives|)} +\subsection{Nesting of loops}\label{sec:nested:loops} +\index{iteration!nesting of loops}\index{nested iteration loops}\index{loops!nested} +All the execution-flow control statements seen above can be nested. We will show an example with two \code{for} loops. We first create a matrix of data to work with: \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlkwd{read_table}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"extdata/miss-aligned-ASCII.txt"}\hlstd{)} +\hlstd{A} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{50}\hlstd{,} \hlnum{10}\hlstd{)} +\hlstd{A} \end{alltt} +\begin{verbatim} +## [,1] [,2] [,3] [,4] [,5] +## [1,] 1 11 21 31 41 +## [2,] 2 12 22 32 42 +## [3,] 3 13 23 33 43 +## [4,] 4 14 24 34 44 +## [5,] 5 15 25 35 45 +## [6,] 6 16 26 36 46 +## [7,] 7 17 27 37 47 +## [8,] 8 18 28 38 48 +## [9,] 9 19 29 39 49 +## [10,] 10 20 30 40 50 +\end{verbatim} +\end{kframe} +\end{knitrout} - -{\ttfamily\noindent\itshape\color{messagecolor}{\#\# \\\#\# -- Column specification --------------------------------------------------------\\\#\# cols(\\\#\# \ \ col1 = col\_character(),\\\#\# \ \ col2 = col\_double(),\\\#\# \ \ col3 = col\_double(),\\\#\# \ \ col4 = col\_character()\\\#\# )}}\begin{verbatim} -## # A tibble: 4 x 4 -## col1 col2 col3 col4 -## -## 1 1.0 24.5 346 ABC -## 2 2.4 45.6 78 XYZ -## 3 20.4 45.6 78 XYZ -## 4 a 20 2500 abc +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{row.sum} \hlkwb{<-} \hlkwd{numeric}\hlstd{()} +\hlkwa{for} \hlstd{(i} \hlkwa{in} \hlnum{1}\hlopt{:}\hlkwd{nrow}\hlstd{(A)) \{} + \hlstd{row.sum[i]} \hlkwb{<-} \hlnum{0} + \hlkwa{for} \hlstd{(j} \hlkwa{in} \hlnum{1}\hlopt{:}\hlkwd{ncol}\hlstd{(A))} + \hlstd{row.sum[i]} \hlkwb{<-} \hlstd{row.sum[i]} \hlopt{+} \hlstd{A[i, j]} +\hlstd{\}} +\hlkwd{print}\hlstd{(row.sum)} +\end{alltt} +\begin{verbatim} +## [1] 105 110 115 120 125 130 135 140 145 150 \end{verbatim} \end{kframe} \end{knitrout} +The code above is very general, it will work with any two-dimensional matrix with at least one column and one row. However, sometimes we need more specific calculations. \code{A[1, 2]} selects one cell in the matrix, the one on the first row of the second column. \code{A[1, ]} selects row one, and \code{A[ , 2]} selects column two. In the example above, the value of \code{i} changes for each iteration of the outer loop. The value of \code{j} changes for each iteration of the inner loop, and the inner loop is run in full for each iteration of the outer loop. The inner loop index \code{j} changes fastest. + +\begin{advplayground} +1) Modify the code in the example in the last chunk above so that it sums the values only in the first three columns of \code{A}, 2) modify the same example so that it sums the values only in the last three rows of \code{A}, 3) modify the code so that matrices with dimensions equal to zero (as reported by \code{ncol()} and \code{nrow()}). + +Will the code you wrote continue working as expected if the number of rows in \code{A} changed? What if the number of columns in \code{A} changed, and the required results still needed to be calculated for relative positions? What would happen if \code{A} had fewer than three columns? Try to think first what to expect based on the code you wrote. Then create matrices of different sizes and test your code. After that, think how to improve the code, so that wrong results are not produced. +\end{advplayground} + +\begin{explainbox} +If the total number of iterations is large and the code executed at each iteration runs fast, the overhead added by the loop code can make a big contribution to the total running time of a script. +When dealing with nested loops, as the inner loop is executed most frequently, this is the best place to look for ways of reducing execution time. In this example, vectorization can be achieved easily for the inner loop, as \Rlang has a function \code{sum()} which returns the sum of a vector passed as its argument. Replacing the inner loop by an efficient function can be expected to improve performance significantly. + \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlkwd{read_table}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"extdata/miss-aligned-ASCII.txt"}\hlstd{,} \hlkwc{guess_max} \hlstd{=} \hlnum{3L}\hlstd{)} +\hlstd{row.sum} \hlkwb{<-} \hlkwd{numeric}\hlstd{(}\hlkwd{nrow}\hlstd{(A))} \hlcom{# faster} +\hlkwa{for} \hlstd{(i} \hlkwa{in} \hlnum{1}\hlopt{:}\hlkwd{nrow}\hlstd{(A)) \{} + \hlstd{row.sum[i]} \hlkwb{<-} \hlkwd{sum}\hlstd{(A[i, ])} +\hlstd{\}} +\hlkwd{print}\hlstd{(row.sum)} \end{alltt} - - -{\ttfamily\noindent\itshape\color{messagecolor}{\#\# \\\#\# -- Column specification --------------------------------------------------------\\\#\# cols(\\\#\# \ \ col1 = col\_double(),\\\#\# \ \ col2 = col\_double(),\\\#\# \ \ col3 = col\_double(),\\\#\# \ \ col4 = col\_character()\\\#\# )}} - -{\ttfamily\noindent\color{warningcolor}{\#\# Warning: 1 parsing failure.\\\#\# row \ col expected actual \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ file\\\#\# \ \ 4 col1 a double \ \ \ \ \ a 'extdata/miss-aligned-ASCII.txt'}}\begin{verbatim} -## # A tibble: 4 x 4 -## col1 col2 col3 col4 -## -## 1 1 24.5 346 ABC -## 2 2.4 45.6 78 XYZ -## 3 20.4 45.6 78 XYZ -## 4 NA 20 2500 abc +\begin{verbatim} +## [1] 105 110 115 120 125 130 135 140 145 150 \end{verbatim} \end{kframe} \end{knitrout} -\end{explainbox} -\index{importing data!text files|)} - +\code{A[i, ]} selects row \code{i} and all columns. Reminder: in \Rlang the row index comes first. -\index{exporting data!text files|(} -The \code{write\_} functions from \pkgname{readr} are the counterpart to \code{write.} functions from \pkgname{utils}. In addition to the expected \Rfunction{write\_csv()}, \Rfunction{write\_csv2()}, \Rfunction{write\_tsv()} and \Rfunction{write\_delim()}, \pkgname{readr} provides functions that write \pgrmname{MS-Excel}-friendly CSV files. We demonstrate here the use of \Rfunction{write\_excel\_csv()} to produce a text file with comma-separated fields suitable for import into \pgrmname{MS-Excel}. +Both\index{apply functions} explicit loops can be eliminated if we use an \emph{apply} function, such as \Rloop{apply()}, \Rloop{lapply()} or \Rloop{sapply()}, in place of the outer \code{for} loop. See section \ref{sec:data:apply} below %on page \pageref{sec:data:apply} +for details on the use of the different \emph{apply} functions. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlkwd{write_excel_csv}\hlstd{(my.df,} \hlkwc{file} \hlstd{=} \hlstr{"my-file6.csv"}\hlstd{)} -\hlkwd{file.show}\hlstd{(}\hlstr{"my-file6.csv"}\hlstd{,} \hlkwc{pager} \hlstd{=} \hlstr{"console"}\hlstd{)} +\hlstd{row.sum} \hlkwb{<-} \hlkwd{apply}\hlstd{(A,} \hlkwc{MARGIN} \hlstd{=} \hlnum{1}\hlstd{, sum)} \hlcom{# MARGIN=1 indicates rows} +\hlkwd{print}\hlstd{(row.sum)} \end{alltt} +\begin{verbatim} +## [1] 105 110 115 120 125 130 135 140 145 150 +\end{verbatim} \end{kframe} \end{knitrout} +Calculating row sums is a frequent operation, so \Rlang has a built-in function for this. As earlier with \code{diff()}, it is always worthwhile to check if there is an existing \Rlang function, optimized for performance, capable of doing the computations we need. In this case, using \code{rowSums()} simplifies the nested loops into a single function call, both improving performance and readability. -That saves a file containing the following text: \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{rowSums}\hlstd{(A)} +\end{alltt} \begin{verbatim} -"x","y","z" -1,0.5,"a" -2,0.4,"b" -3,0.3,"c" -4,0.2,"d" -5,0.1,"e" +## [1] 105 110 115 120 125 130 135 140 145 150 \end{verbatim} \end{kframe} \end{knitrout} +\end{explainbox} + \begin{playground} -Compare the output from \Rfunction{write\_excel\_csv()} and \Rfunction{write\_csv()}. What is the difference? Does it matter when you import the written CSV file into Excel (in the version you are using, and with the locale settings of your computer)? +1) How would you change this last example, so that only the last three columns are added up? (Think about use of subscripts to select a part of the matrix.) +2) To obtain column sums, one could modify the nested loops (think how), transpose the matrix and use \code{rowSums()} (think how), or look up if there is in \Rlang a function for this operation. A good place to start is with \code{help(rowSums)} as similar functions may share the same help page, or at least be listed in the ``See also'' section. Do try this, and explore other help pages in search for some function you may find useful in the analysis of your own data. \end{playground} -The pair of functions \Rfunction{read\_lines()} and \Rfunction{write\_lines()} read and write character vectors without conversion, similarly to base \Rlang \code{readLines()} and \code{writeLines()}. Functions \Rfunction{read\_file()} and \Rfunction{write\_file()} read and write the contents of a whole text file into, and from, a single character string. Functions \Rfunction{read\_file()} and \Rfunction{write\_file()} can also be used with raw vectors to read and write binary files or text files of unknown encoding. +\subsubsection{Clean-up} -The contents of the whole file are returned as a character vector of length one, with the embedded new line markers. We use \code{cat()} to print it so these new line characters force the start of a new print-out line. +Sometimes we need to make sure that clean-up code is executed even if the execution of a script or function is aborted by the user or as a result of an error condition. A typical example is a script that temporarily sets a disk folder as the working directory or uses a file as temporary storage. Function \Rfunction{on.exit()} can be used to record that a user supplied expression needs to be executed when the current function, or a script, exits. Function \Rfunction{on.exit()} can also make code easier to read as it keeps creation and clean-up next to each other in the body of a function or in the listing of a script. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlstd{one.str} \hlkwb{<-} \hlkwd{read_file}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"extdata/miss-aligned-ASCII.txt"}\hlstd{)} -\hlkwd{length}\hlstd{(one.str)} +\hlkwd{file.create}\hlstd{(}\hlstr{"temp.file"}\hlstd{)} \end{alltt} \begin{verbatim} -## [1] 1 +## [1] TRUE \end{verbatim} \begin{alltt} -\hlkwd{cat}\hlstd{(one.str)} +\hlkwd{on.exit}\hlstd{(}\hlkwd{file.remove}\hlstd{(}\hlstr{"temp.file"}\hlstd{))} +\hlcom{# code that makes use of the file goes here} \end{alltt} -\begin{verbatim} -## col1 col2 col3 col4 -## 1.0 24.5 346 ABC -## 2.4 45.6 78 XYZ -## 20.4 45.6 78 XYZ -## a 20 2500 abc -\end{verbatim} \end{kframe} \end{knitrout} -\begin{advplayground} -Use \Rfunction{write\_file()} to write a file that can be read with \Rfunction{read\_csv()}. -\end{advplayground} -\index{exporting data!text files|)} - -\section{XML and HTML files} -\index{importing data!XML and HTML files|(} +\section[Apply functions]{\emph{Apply} functions}\label{sec:data:apply} -XML files contain text with special markup. Several modern data exchange formats are based on the \langname{XML} standard (see \url{https://www.w3.org/TR/xml/}) which uses schemas for flexibility. Schemas define specific formats, allowing reading of formats not specifically targeted during development of the read functions. Even the modern \langname{XHTML} standard used for web pages is based on such schemas, while \langname{HTML} only differs slightly in its syntax. +\emph{Apply}\index{apply functions}\index{loops!faster alternatives} functions apply a function passed as an argument to parameter \code{FUN} or equivalent, to elements in a collection of \Rlang objects passed as an argument to parameter \code{X} or equivalent. Collections to which \code{FUN} is to be applied can be vectors, lists, data frames, matrices or arrays. As long as the operations to be applied are \emph{independent---i.e., the results from one iteration are not used in another iteration---} apply functions can replace \code{for}, \code{while} or \code{repeat} loops. -\subsection[`xml2']{\pkgname{xml2}} +\begin{explainbox} +Conceptually, \code{for}, \code{while} and \code{repeat} loops are interpreted as controlling sequential evaluation of program statements. In contrast, \Rlang's \emph{apply} functions are, conceptually, thought as evaluating a function in parallel for each of the different members of their input. So, while in loops the results of earlier iterations through a loop can be stored in variables and used in subsequent iterations, this is not possible in the case of \emph{apply} functions. +\end{explainbox} +The different \emph{apply} functions in base \Rlang differ in the class of the values they accept for their \code{X} parameter, the class of the object they return and/or the class of the value returned by the applied function. \Rloop{lapply()} and \Rloop{sapply()} expect a \code{vector} or \code{list} as an argument passed through \code{X}. \Rloop{lapply()} returns a \code{list} or an \code{array}; and \Rloop{vapply()} always \emph{simplifies} its returned value into a vector, while \Rloop{sapply()} does the simplification according to the argument passed to its \code{simplify} parameter. All these \emph{apply} functions can be used to apply an \Rlang function that returns a value of the same or a different class as its argument. In the case of \Rloop{apply()} and \Rloop{lapply()} not even the length of the values returned for each member of the collection passed as an argument, needs to be consistent. In summary, \Rloop{apply()} is used to apply a function to the elements along a dimension of an object that has two or more \emph{dimensions}, and \Rloop{lapply()} and \Rloop{sapply()} are used to apply a function to the members of a vector or list. \Rloop{apply()} returns an array or a list or a vector depending on the size, and consistency in length and class among the values returned by the applied function. +\subsection{Applying functions to vectors and lists} -Package \pkgname{xml2} provides functions for reading and parsing \langname{XTML} and \langname{HTML} files. This is a vast subject, of which I will only give a brief example. +We first exemplify the use of \Rloop{lapply()}, \Rloop{sapply()} and \Rloop{vapply()}. In the chunks below we apply a user-defined function to a vector. -We first read a web page with function \Rfunction{read\_html()}, and explore its structure. +\begin{warningbox} +A constraint is that the individual member objects in the list or vector passed as argument to the \code{x} parameter of \textit{apply} functions will be always passed as a positional argument to the first formal parameter of the applied function, i.e., the function passed as argument to \code{FUN} must be compatible with this approach. +\end{warningbox} \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlstd{web_page} \hlkwb{<-} \hlkwd{read_html}\hlstd{(}\hlstr{"https://r.r4photobiology.info/index.html"}\hlstd{)} -\hlkwd{html_structure}\hlstd{(web_page)} +\hlkwd{set.seed}\hlstd{(}\hlnum{123456}\hlstd{)} \hlcom{# so that a.vector does not change} +\hlstd{a.vector} \hlkwb{<-} \hlkwd{runif}\hlstd{(}\hlnum{6}\hlstd{)} \hlcom{# A short vector as input to keep output short} +\hlkwd{str}\hlstd{(a.vector)} \end{alltt} \begin{verbatim} -## -## -## -## -## -## -## -## -## -## {text} -## <script> -## {cdata} -## <style [type]> -## {cdata} -## <style [type, data-origin]> -## {cdata} -## <script> -## {cdata} -## <style [type]> -## {cdata} -## <body> -## {text} -## <header> -## <div.inner> -## {text} -## <h1.title.toc-ignore> -## {text} -## {text} -## <h2.subtitle> -## {text} -## {text} -## <h3.author> -## {text} -## {text} -## <h3.date> -## {text} -## {text} -## {text} -## <div#content-wrapper> -## {text} -## <div.inner.clearfix> -## {text} -## <section#main-content> -## <div#what-is-stored-here .section.level2> -## {text} -## <h2> -## {text} -## {text} -## <p> -## {text} -## <a.uri [href]> -## {text} -## {text} -## {text} -## {text} -## <div#installation .section.level2> -## {text} -## <h2> -## {text} -## {text} -## <p> -## {text} -## <a.uri [href]> -## {text} -## {text} -## <a.uri [href]> -## {text} -## {text} -## {text} -## <p> -## {text} -## {text} -## <div#cb1 .sourceCode> -## <pre.sourceCode.r> -## <code.sourceCode.r> -## <span#cb1-1> -## <a [href, aria-hidden, tabindex]> -## <span.co> -## {text} -## {text} -## <span#cb1-2> -## <a [href, aria-hidden, tabindex]> -## {text} -## <span.sc> -## {text} -## <span.fu> -## {text} -## {text} -## {text} -## <span#cb1-3> -## <a [href, aria-hidden, tabindex]> -## {text} -## <span.at> -## {text} -## {text} -## <span.cn> -## {text} -## {text} -## {text} -## <span#cb1-4> -## <a [href, aria-hidden, tabindex]> -## {text} -## <span.at> -## {text} -## {text} -## <span.fu> -## {text} -## {text} -## <span.at> -## {text} -## {text} -## <span.st> -## {text} -## {text} -## {text} -## <span#cb1-5> -## <a [href, aria-hidden, tabindex]> -## {text} -## {text} -## {text} -## {text} -## {text} -## {comment} -## {text} -## {comment} -## {text} -## <script> -## {cdata} +## num [1:6] 0.798 0.754 0.391 0.342 0.361 ... \end{verbatim} \end{kframe} \end{knitrout} -Next we extract the text from its \code{title} attribute, using functions \Rfunction{xml\_find\_all()} and \Rfunction{xml\_text()}. - \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlkwd{xml_text}\hlstd{(}\hlkwd{xml_find_all}\hlstd{(web_page,} \hlstr{".//title"}\hlstd{))} +\hlstd{my.fun} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{,} \hlkwc{k}\hlstd{) \{}\hlkwd{log}\hlstd{(x)} \hlopt{+} \hlstd{k\}} \end{alltt} -\begin{verbatim} -## [1] "R for photobiology repository" -\end{verbatim} \end{kframe} \end{knitrout} -The functions defined in this package can be used to ``harvest'' data from web pages, but also to read data from files using formats that are defined through \langname{XML} schemas. -\index{importing data!XML and HTML files|)} - -\section{GPX files} -\index{importing data!GPX files|(} -GPX (GPS Exchange Format) files use an XML scheme designed for saving and exchanging data from geographic positioning systems (GPS). There is some variation on the variables saved depending on the settings of the GPS receiver. The example data used here is from a Transmeta BT747 GPS logger. The example below reads the data into a \code{tibble} as character strings. For plotting, the character values representing numbers and dates would need to be converted to numeric and datetime (\code{POSIXct}) values, respectively. In the case of plotting tracks on a map, it is preferable to use package \pkgname{sf} to import the tracks directly from the \code{.gpx} file into a layer (use of the dot pipe operator is described in section \ref{sec:data:pipes} on page \pageref{sec:data:pipes}). - \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlkwd{xmlTreeParse}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"extdata/GPSDATA.gpx"}\hlstd{,} \hlkwc{useInternalNodes} \hlstd{=} \hlnum{TRUE}\hlstd{)} \hlopt{%.>%} -\hlkwd{xmlRoot}\hlstd{(}\hlkwc{x} \hlstd{= .)} \hlopt{%.>%} -\hlkwd{xmlToList}\hlstd{(}\hlkwc{node} \hlstd{= .)[[}\hlstr{"trk"}\hlstd{]]} \hlopt{%.>%} -\hlkwd{unlist}\hlstd{(}\hlkwc{x} \hlstd{= .[}\hlkwd{names}\hlstd{(.)} \hlopt{==} \hlstr{"trkseg"}\hlstd{],} \hlkwc{recursive} \hlstd{=} \hlnum{FALSE}\hlstd{)} \hlopt{%.>%} -\hlkwd{map_df}\hlstd{(}\hlkwc{.x} \hlstd{= .,} \hlkwc{.f} \hlstd{=} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{)} \hlkwd{as_tibble}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwd{t}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwd{unlist}\hlstd{(}\hlkwc{x} \hlstd{= x))))} +\hlstd{z} \hlkwb{<-} \hlkwd{lapply}\hlstd{(}\hlkwc{X} \hlstd{= a.vector,} \hlkwc{FUN} \hlstd{= my.fun,} \hlkwc{k} \hlstd{=} \hlnum{5}\hlstd{)} +\hlkwd{str}\hlstd{(z)} \end{alltt} \begin{verbatim} -## # A tibble: 199 x 7 -## time speed name type fix .attr~1 .attr~2 -## <chr> <chr> <chr> <chr> <chr> <chr> <chr> -## 1 2018-12-08T23:09:02.000Z 0.0366 trkpt-2018-12-08T~ T 3d -34.91~ 138.66~ -## 2 2018-12-08T23:09:04.000Z 0.0884 trkpt-2018-12-08T~ T 3d -34.91~ 138.66~ -## 3 2018-12-08T23:09:06.000Z 0.0147 trkpt-2018-12-08T~ T 3d -34.91~ 138.66~ -## # ... with 196 more rows, and abbreviated variable names 1: .attrs.lat, -## # 2: .attrs.lon +## List of 6 +## $ : num 4.77 +## $ : num 4.72 +## $ : num 4.06 +## $ : num 3.93 +## $ : num 3.98 +## $ : num 3.38 \end{verbatim} \end{kframe} \end{knitrout} -I have passed all arguments by name to make explicit how this pipe works. See section \ref{sec:data:pipes} on page \pageref{sec:data:pipes} for details on the use of the pipe and dot-pipe operators. - -\begin{playground} - To understand what data transformation takes place in each statement of this pipe, start by executing the first statement by itself, excluding the dot-pipe operator, and continue adding one statement at a time, and at each step check the returned value and look out for what has changed from the previous step. -\end{playground} - -\index{importing data!GPX files|)} - -\section{Worksheets}\label{sec:files:worksheets} -\index{importing data!worksheets and workbooks|(} - -Microsoft Office, Open Office and Libre Office are the most frequently used suites containing programs based on the worksheet paradigm. There is available a standardized file format for exchange of worksheet data, but it does not support all the features present in native file formats. We will start by considering \pgrmname{MS-Excel}. The file format used by \pgrmname{MS-Excel} has changed significantly over the years, and old formats tend to be less well supported by available \Rlang packages and may require the file to be updated to a more modern format with \pgrmname{MS-Excel} itself before import into \Rlang. The current format is based on XML and relatively simple to decode, whereas older binary formats are more difficult. Worksheets contain code as equations in addition to the actual data. In all cases, only values entered as such or those computed by means of the embedded equations can be imported into \Rlang rather than the equations themselves. - -\begin{warningbox} -When directly reading from a worksheet, a column of cells with mixed type, can introduce \code{NA} values. A wrongly selected cell range from the worksheet can result in missing columns or rows, if the area is too small, or in rows or columns filled with \code{NA} values, if the range includes empty cells in the worksheet. Depending on the function used, it may be possible to ignore empty cells, by passing an argument. - -Many problems related to the import of data from work sheets and work books are due to translation between two different formats that impose different restrictions on what is allowed or not. While in a worksheet it is allowed to set the ``format'' (as called in \pgrmname{Excel}, and roughly equivalent to \code{mode} in \Rlang) of individual cells, a variable (column) in an \Rlang data frame is expected to be vector, and thus contain members belonging the same \code{mode} or type. For the import to work as expected, the ``format'' must be consistent, i.e., all cells in a column to be imported are marked as one of the \code{Number}, \code{Date}, \code{Time} or \code{Text} formats, with the possible exception of a \emph{single row} of column headers with the names of the variables as \code{Text}. The default format \code{General} also works but as it does not ensure consistency, it makes more difficult to see format inconsistencies at a glance in Excel. - -When reading a \code{CSV} file, text representing numbers will be recognized and converted, but only if the decimal point is encoded as expected from the arguments passed to the function call. So a single number with a comma instead of a dot as decimal marker (or vice versa) will result in most cases in the column not being decoded as numbers and returned as a \code{character} vector (or column) in the data frame. In the case of package \pkgname{readr} a \code{numeric} vector containing \code{NA} values for the non-decoded text may be returned instead of a \code{character} vector depending on whether the wrong decimal marker appears near the top or near the end of the file. - -When importing data from a worksheet or workbook, my recommendation is first to check it in the original software to ensure that the cells to be imported are encoded as expected. When using a \code{CSV} as an intermediate step, it is crucial to also open this file in a plain-text editor such as the editor pane in \RStudio (or \pgrmname{Notepad} in \pgrmnameNI{Windows} or \pgrmname{Nano}, \pgrmname{Emacs}, etc., in \pgrmnameNI{Unix} and \pgrmnameNI{Linux}). Based on what field separator, decimal mark, and possibly character encoding has been used, which depends on the locale settings in the operating system of the computer and in the worksheet program, select a suitable function to call and the necessary arguments to pass to it. -\end{warningbox} - -\subsection{CSV files as middlemen} - -If we have access to the original software used for creating a worksheet or workbook, then exporting worksheets to text files in CSV format and importing them into \Rlang using the functions described in sections \ref{sec:files:txt} and \ref{sec:files:readr} starting on pages \pageref{sec:files:txt} and \pageref{sec:files:readr} provides a broadly compatible route for importing data---with the caveat that we should take care that delimiters and decimal marks match the expectations of the functions used. This approach is not ideal from the perspective of having to create intermediate \code{CSV} formatted text files. A better approach is, when feasible, to import the data directly from the workbook or worksheets into \Rlang. - -\subsection[`readxl']{\pkgname{readxl}}\label{sec:files:excel} -\index{importing data!.xlsx files|(} - - - -Package \pkgname{readxl} supports reading of \pgrmname{MS-Excel} workbooks, and selecting worksheets and regions within worksheets specified in ways similar to those used by \pgrmname{MS-Excel} itself. The interface is simple, and the package easy to install. We will import a file that in \pgrmname{MS-Excel} looks like the screen capture below. - -\begin{center} -\includegraphics[width=0.75\textwidth]{figures/Book1-xlsx.png} -\end{center} - -We first list the sheets contained in the workbook file with \Rfunction{excel\_sheets()}. - \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlstd{sheets} \hlkwb{<-} \hlkwd{excel_sheets}\hlstd{(}\hlstr{"extdata/Book1.xlsx"}\hlstd{)} -\hlstd{sheets} +\hlstd{z} \hlkwb{<-} \hlkwd{sapply}\hlstd{(}\hlkwc{X} \hlstd{= a.vector,} \hlkwc{FUN} \hlstd{= my.fun,} \hlkwc{k} \hlstd{=} \hlnum{5}\hlstd{)} +\hlkwd{str}\hlstd{(z)} \end{alltt} \begin{verbatim} -## [1] "my data" +## num [1:6] 4.77 4.72 4.06 3.93 3.98 ... \end{verbatim} \end{kframe} \end{knitrout} -In this case, the argument passed to \code{sheet} is redundant, as there is only a single worksheet in the file. It is possible to use either the name of the sheet or a positional index (in this case \code{1} would be equivalent to \code{"my data"}). We use function \Rfunction{read\_excel()} to import the worksheet. Being part of the \pkgname{tidyverse} the returned value is a tibble and character columns are returned as is. - \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlstd{Book1.df} \hlkwb{<-} \hlkwd{read_excel}\hlstd{(}\hlstr{"extdata/Book1.xlsx"}\hlstd{,} - \hlkwc{sheet} \hlstd{=} \hlstr{"my data"}\hlstd{)} -\hlstd{Book1.df} +\hlstd{z} \hlkwb{<-} \hlkwd{sapply}\hlstd{(}\hlkwc{X} \hlstd{= a.vector,} \hlkwc{FUN} \hlstd{= my.fun,} \hlkwc{k} \hlstd{=} \hlnum{5}\hlstd{,} \hlkwc{simplify} \hlstd{=} \hlnum{FALSE}\hlstd{)} +\hlkwd{str}\hlstd{(z)} \end{alltt} \begin{verbatim} -## # A tibble: 10 x 3 -## sample group observation -## <dbl> <chr> <dbl> -## 1 1 a 1 -## 2 2 a 5 -## 3 3 a 7 -## # ... with 7 more rows +## List of 6 +## $ : num 4.77 +## $ : num 4.72 +## $ : num 4.06 +## $ : num 3.93 +## $ : num 3.98 +## $ : num 3.38 \end{verbatim} \end{kframe} \end{knitrout} -We can also read a region instead of the whole worksheet. +We can see above that the computed results are the same in the three cases, but the class and structure of the objects returned differ. + +Anonymous functions can be defined on the fly and passed to \code{FUN}, allowing us to re-write the examples above more concisely (only the second one shown). \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlstd{Book1_region.df} \hlkwb{<-} \hlkwd{read_excel}\hlstd{(}\hlstr{"extdata/Book1.xlsx"}\hlstd{,} - \hlkwc{sheet} \hlstd{=} \hlstr{"my data"}\hlstd{,} - \hlkwc{range} \hlstd{=} \hlstr{"A1:B8"}\hlstd{)} -\hlstd{Book1_region.df} +\hlstd{z} \hlkwb{<-} \hlkwd{sapply}\hlstd{(}\hlkwc{X} \hlstd{= a.vector,} \hlkwc{FUN} \hlstd{=} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{,} \hlkwc{k}\hlstd{) \{}\hlkwd{log}\hlstd{(x)} \hlopt{+} \hlstd{k\},} \hlkwc{k} \hlstd{=} \hlnum{5}\hlstd{)} +\hlkwd{str}\hlstd{(z)} \end{alltt} \begin{verbatim} -## # A tibble: 7 x 2 -## sample group -## <dbl> <chr> -## 1 1 a -## 2 2 a -## 3 3 a -## # ... with 4 more rows +## num [1:6] 4.77 4.72 4.06 3.93 3.98 ... \end{verbatim} \end{kframe} \end{knitrout} -Of the remaining arguments, the most useful ones have the same names and play similar roles as in \pkgname{readr} (see section \ref{sec:files:readr} on page \pageref{sec:files:readr}). For example, we can set new names to the columns instead of reading their names from the worksheet. +Of course, as discussed in section \ref{sec:loops:slow} on page \pageref{sec:loops:slow}, when suitable vectorized functions are available, their use should be preferred. On the other hand, even if \emph{apply} functions are usually not as fast as vectorized functions, they are faster than the equivalent \code{for()} loops. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlstd{Book1_region.df} \hlkwb{<-} \hlkwd{read_excel}\hlstd{(}\hlstr{"extdata/Book1.xlsx"}\hlstd{,} - \hlkwc{sheet} \hlstd{=} \hlstr{"my data"}\hlstd{,} - \hlkwc{range} \hlstd{=} \hlstr{"A2:B8"}\hlstd{,} - \hlkwc{col_names} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlstr{"B"}\hlstd{))} -\hlstd{Book1_region.df} +\hlstd{z} \hlkwb{<-} \hlkwd{log}\hlstd{(a.vector)} \hlopt{+} \hlnum{5} +\hlkwd{str}\hlstd{(z)} \end{alltt} \begin{verbatim} -## # A tibble: 7 x 2 -## A B -## <dbl> <chr> -## 1 1 a -## 2 2 a -## 3 3 a -## # ... with 4 more rows +## num [1:6] 4.77 4.72 4.06 3.93 3.98 ... \end{verbatim} \end{kframe} \end{knitrout} -\subsection[`xlsx']{\pkgname{xlsx}} - - - -Package \pkgname{xlsx} can be more difficult to install as it uses Java functions to do the actual work. However, it is more comprehensive, with functions both for reading and writing \pgrmname{MS-Excel} worksheets and workbooks, in different formats including the older binary ones. Similar to \pkgname{readr} it allows selected regions of a worksheet to be imported. +\begin{explainbox} +Function \Rloop{vapply()} can be safer to use as the mode of returned values is enforced. Here is a possible way of obtaining means and variances across member vectors at each vector index position from a list of vectors. These could be called \emph{parallel} means and variances. The argument passed to \code{FUN.VALUE} provides a template for the type of the return value and its organization into rows and columns. Notice that the rows in the output are now named according to the names in \code{FUN.VALUE}. -Here we use function \Rfunction{read.xlsx()}, indexing the worksheet by name. The returned value is a data frame, and following the expectations of \Rlang package \pkgnameNI{utils}, character columns are converted into factors by default. +We first use \code{lapply()} to create the object \code{a.list} containing artificial data. One or more additional \emph{named} arguments can be passed to the function to be applied. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlstd{Book1_xlsx.df} \hlkwb{<-} \hlkwd{read.xlsx}\hlstd{(}\hlstr{"extdata/Book1.xlsx"}\hlstd{,} - \hlkwc{sheetName} \hlstd{=} \hlstr{"my data"}\hlstd{)} -\hlstd{Book1_xlsx.df} +\hlkwd{set.seed}\hlstd{(}\hlnum{123456}\hlstd{)} +\hlstd{a.list} \hlkwb{<-} \hlkwd{lapply}\hlstd{(}\hlkwd{rep}\hlstd{(}\hlnum{4}\hlstd{,} \hlnum{5}\hlstd{), rnorm,} \hlkwc{mean} \hlstd{=} \hlnum{10}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{1}\hlstd{)} +\hlkwd{str}\hlstd{(a.list)} \end{alltt} \begin{verbatim} -## sample group observation -## 1 1 a 1.0 -## 2 2 a 5.0 -## 3 3 a 7.0 -## 4 4 a 2.0 -## 5 5 a 5.0 -## 6 6 b 0.0 -## 7 7 b 2.0 -## 8 8 b 3.0 -## 9 9 b 1.0 -## 10 10 b 1.5 +## List of 5 +## $ : num [1:4] 10.83 9.72 9.64 10.09 +## $ : num [1:4] 12.3 10.8 11.3 12.5 +## $ : num [1:4] 11.17 9.57 9 8.89 +## $ : num [1:4] 9.94 11.17 11.05 10.06 +## $ : num [1:4] 9.26 10.93 11.67 10.56 \end{verbatim} \end{kframe} \end{knitrout} -With function \Rfunction{write.xlsx()} we can write data frames out to Excel worksheets and even append new worksheets to an existing workbook. +We define the function that we will apply, a function that returns a numeric vector of length 2. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlkwd{set.seed}\hlstd{(}\hlnum{456321}\hlstd{)} -\hlstd{my.data} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{10}\hlstd{,} \hlkwc{y} \hlstd{= letters[}\hlnum{1}\hlopt{:}\hlnum{10}\hlstd{])} -\hlkwd{write.xlsx}\hlstd{(my.data,} - \hlkwc{file} \hlstd{=} \hlstr{"extdata/my-data.xlsx"}\hlstd{,} - \hlkwc{sheetName} \hlstd{=} \hlstr{"first copy"}\hlstd{)} -\hlkwd{write.xlsx}\hlstd{(my.data,} - \hlkwc{file} \hlstd{=} \hlstr{"extdata/my-data.xlsx"}\hlstd{,} - \hlkwc{sheetName} \hlstd{=} \hlstr{"second copy"}\hlstd{,} - \hlkwc{append} \hlstd{=} \hlnum{TRUE}\hlstd{)} +\hlstd{mean_and_sd} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{,} \hlkwc{na.rm} \hlstd{=} \hlnum{FALSE}\hlstd{) \{} + \hlkwd{c}\hlstd{(}\hlkwd{mean}\hlstd{(x,} \hlkwc{na.rm} \hlstd{= na.rm),} \hlkwd{sd}\hlstd{(x,} \hlkwc{na.rm} \hlstd{= na.rm))} + \hlstd{\}} \end{alltt} \end{kframe} \end{knitrout} -When opened in Excel, we get a workbook containing two worksheets, named using the arguments we passed through \code{sheetName} in the code chunk above. -% screen capture to be replaced!! -\begin{center} -\includegraphics[width=0.75\textwidth]{figures/my-data-xlsx.png} -\end{center} - -\begin{playground} -If you have some worksheet files available, import them into \Rlang to get a feel for how the way in which data is organized in the worksheets affects how easy or difficult it is to import them into \Rlang. -\end{playground} -\index{importing data!.xlsx files|)} - -\subsection[`readODS']{\pkgname{readODS}} -\index{importing data!.ods files|(} - -Package \pkgname{readODS} provides functions for reading data saved in files that follow the \emph{Open Documents Standard}. Function \Rfunction{read\_ods()} has a similar but simpler user interface to that of \code{read\_excel()} and reads one worksheet at a time, with support only for skipping top rows. The value returned is a data frame. +We next use \Rloop{vapply()} to apply our function to each member vector of the list. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlstd{ods.df} \hlkwb{<-} \hlkwd{read_ods}\hlstd{(}\hlstr{"extdata/Book1.ods"}\hlstd{,} \hlkwc{sheet} \hlstd{=} \hlnum{1}\hlstd{)} +\hlstd{values} \hlkwb{<-} \hlkwd{vapply}\hlstd{(}\hlkwc{X} \hlstd{= a.list,} + \hlkwc{FUN} \hlstd{= mean_and_sd,} + \hlkwc{FUN.VALUE} \hlstd{=} \hlkwd{c}\hlstd{(}\hlkwc{mean} \hlstd{=} \hlnum{0}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{0}\hlstd{),} + \hlkwc{na.rm} \hlstd{=} \hlnum{TRUE}\hlstd{)} +\hlkwd{class}\hlstd{(values)} \end{alltt} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{verbatim} +## [1] "matrix" "array" +\end{verbatim} \begin{alltt} -\hlstd{ods.df} +\hlstd{values} \end{alltt} \begin{verbatim} -## sample group observation -## 1 1 a 1.0 -## 2 2 a 5.0 -## 3 3 a 7.0 -## 4 4 a 2.0 -## 5 5 a 5.0 -## 6 6 b 0.0 -## 7 7 b 2.0 -## 8 8 b 3.0 -## 9 9 b 1.0 -## 10 10 b 1.5 +## [,1] [,2] [,3] [,4] [,5] +## mean 10.0725427 11.7254442 9.657997 10.5573814 10.605846 +## sd 0.5428149 0.7844356 1.050663 0.6460881 1.005676 \end{verbatim} \end{kframe} \end{knitrout} +\end{explainbox} -Function \Rfunction{write\_ods()} writes a data frame into an ODS file. -\index{importing data!.ods files|)} -\index{importing data!worksheets and workbooks|)} - -\section{Statistical software}\label{sec:files:stat} -\index{importing data!other statistical software|(} - -There are two different comprehensive packages for importing data saved from other statistical programs such as SAS, Statistica, SPSS, etc. The longtime ``standard'' is package \pkgname{foreign} included in base \Rlang, and package \pkgname{haven} is a newer contributed extension. In the case of files saved with old versions of statistical programs, functions from \pkgname{foreign} tend to be more robust than those from \pkgname{haven}. - -\subsection[foreign]{\pkgname{foreign}} - +\begin{playground} +As explained in section \ref{sec:R:data:frames} on page \pageref{sec:R:data:frames}, class \code{data.frame} is derived from class \code{list}. Apply function \code{mean\_and\_sd()} defined above to the data frame \code{cars} included as example data in \Rlang. The aim is to obtain the mean and standard deviation for each column. +\end{playground} +\subsection{Applying functions to matrices and arrays} +In the next example we use \Rloop{apply()} and \Rfunction{mean()} to compute the mean for each column of matrix \code{a.matrix}. In \Rlang the dimensions of a matrix, rows and columns, over which a function is applied are called \emph{margins}. The argument passed to parameter \code{MARGIN} determines over which margin the function will be applied. If the function is applied to individual rows, we say that we operate on the first margin, and if the function is applied to individual columns, over the second margin. Arrays can have many dimensions, and consequently more margins. In the case of arrays with more than two dimensions, it is possible and useful to apply functions over multiple margins at once. -Functions in package \pkgname{foreign} allow us to import data from files saved by several statistical analysis programs, including \pgrmname{SAS}, \pgrmname{Stata}, \pgrmname{SPPS}, \pgrmname{Systat}, \pgrmname{Octave} among others, and a function for writing data into files with formats native to \pgrmname{SAS}, \pgrmname{Stata}, and \pgrmname{SPPS}. \Rlang documents the use of these functions in detail in the \emph{R Data Import/Export} manual. As a simple example, we use function \Rfunction{read.spss()} to read a \texttt{.sav} file, saved a few years ago with the then current version of \pgrmname{SPSS}. We display only the first six rows and seven columns of the data frame, including a column with dates, which appears as numeric. +\begin{warningbox} +A constraint on the function to be applied is that the vector or ``slice'' will always be passed as a positional argument to the first formal parameter of the applied function. +\end{warningbox} \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlstd{my_spss.df} \hlkwb{<-} \hlkwd{read.spss}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"extdata/my-data.sav"}\hlstd{,} \hlkwc{to.data.frame} \hlstd{=} \hlnum{TRUE}\hlstd{)} -\hlstd{my_spss.df[}\hlnum{1}\hlopt{:}\hlnum{6}\hlstd{,} \hlkwd{c}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{6}\hlstd{,} \hlnum{17}\hlstd{)]} +\hlstd{a.matrix} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlkwd{runif}\hlstd{(}\hlnum{100}\hlstd{),} \hlkwc{ncol} \hlstd{=} \hlnum{10}\hlstd{)} +\hlstd{z} \hlkwb{<-} \hlkwd{apply}\hlstd{(a.matrix,} \hlkwc{MARGIN} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{FUN} \hlstd{= mean)} +\hlkwd{str}\hlstd{(z)} \end{alltt} \begin{verbatim} -## block treat mycotreat water1 pot harvest harvest_date -## 1 0 Watered, EM 1 1 14 1 13653705600 -## 2 0 Watered, EM 1 1 52 1 13653705600 -## 3 0 Watered, EM 1 1 111 1 13653705600 -## 4 0 Watered, EM 1 1 127 1 13653705600 -## 5 0 Watered, EM 1 1 230 1 13653705600 -## 6 0 Watered, EM 1 1 258 1 13653705600 +## num [1:10] 0.247 0.404 0.537 0.5 0.504 ... \end{verbatim} \end{kframe} \end{knitrout} -A second example, this time with a simple \code{.sav} file saved 15 years ago. +\begin{playground} +Modify the example above so that it computes row means instead of column means. +\end{playground} + +\begin{playground} +Look up the help pages for \Rloop{apply()} and \code{mean()} and study them until you understand how additional arguments can be passed to the applied function. Can you guess why \Rloop{apply()} was designed to have parameter names fully in uppercase, something very unusual for \Rlang code style? +\end{playground} + +If we apply a function that returns a value of the same length as its input, then the dimensions of the value returned by \Rloop{apply()} are the same as those of its input. We use, in the next examples, a ``no-op'' function that returns its argument unchanged, so that input and output can be easily compared. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlstd{thiamin.df} \hlkwb{<-} \hlkwd{read.spss}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"extdata/thiamin.sav"}\hlstd{,} \hlkwc{to.data.frame} \hlstd{=} \hlnum{TRUE}\hlstd{)} -\hlkwd{head}\hlstd{(thiamin.df)} +\hlstd{a.small.matrix} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlkwd{rnorm}\hlstd{(}\hlnum{6}\hlstd{,} \hlkwc{mean} \hlstd{=} \hlnum{10}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{1}\hlstd{),} \hlkwc{ncol} \hlstd{=} \hlnum{2}\hlstd{)} +\hlstd{a.small.matrix} \hlkwb{<-} \hlkwd{round}\hlstd{(a.small.matrix,} \hlkwc{digits} \hlstd{=} \hlnum{1}\hlstd{)} +\hlstd{a.small.matrix} \end{alltt} \begin{verbatim} -## THIAMIN CEREAL -## 1 5.2 wheat -## 2 4.5 wheat -## 3 6.0 wheat -## 4 6.1 wheat -## 5 6.7 wheat -## 6 5.8 wheat +## [,1] [,2] +## [1,] 11.3 10.4 +## [2,] 10.6 8.6 +## [3,] 8.2 11.0 \end{verbatim} \end{kframe} \end{knitrout} -Another example, for a \pgrmname{Systat} file saved on an PC more than 20 years ago, and read with \Rfunction{read.systat()}. - \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlstd{my_systat.df} \hlkwb{<-} \hlkwd{read.systat}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"extdata/BIRCH1.SYS"}\hlstd{)} -\hlkwd{head}\hlstd{(my_systat.df)} +\hlstd{no_op.fun} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{) \{x\}} \end{alltt} -\begin{verbatim} -## CONT DENS BLOCK SEEDL VITAL BASE ANGLE HEIGHT DIAM -## 1 1 1 1 2 44 2 0 1 53 -## 2 1 1 1 2 41 2 1 2 70 -## 3 1 1 1 2 21 2 0 1 65 -## 4 1 1 1 2 15 3 0 1 79 -## 5 1 1 1 2 37 3 0 1 71 -## 6 1 1 1 2 29 2 1 1 43 -\end{verbatim} \end{kframe} \end{knitrout} -Not all functions in \pkgname{foreign} return data frames by default, but all of them can be coerced to do so. - -\subsection[haven]{\pkgname{haven}} - - - -Package \pkgname{haven} is less ambitious with respect to the number of formats supported, or their vintages, providing read and write functions for only three file formats: \pgrmname{SAS}, \pgrmname{Stata} and \pgrmname{SPSS}. On the other hand, \pkgname{haven} provides flexible ways to convert the different labeled values that cannot be directly mapped to \Rlang modes. They also decode dates and times according to the idiosyncrasies of each of these file formats. In cases when the imported file contains labeled values the returned \Rclass{tibble} object needs some additional attention from the user. Labeled numeric columns in \pgrmname{SPSS} are not necessarily equivalent to factors, although they sometimes are. Consequently, conversion to factors cannot be automated and must be done manually in a separate step. - -We can use function \Rfunction{read\_sav()} to import a \code{.sav} file saved by a recent version of \pgrmname{SPSS}. As in the previous section, we display only the first six rows and seven columns of the data frame, including a column \code{treat} containing a labeled numeric vector and \code{harvest\_date} with dates encoded as \Rlang date values. - \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlstd{my_spss.tb} \hlkwb{<-} \hlkwd{read_sav}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"extdata/my-data.sav"}\hlstd{)} -\hlstd{my_spss.tb[}\hlnum{1}\hlopt{:}\hlnum{6}\hlstd{,} \hlkwd{c}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{6}\hlstd{,} \hlnum{17}\hlstd{)]} +\hlstd{z} \hlkwb{<-} \hlkwd{apply}\hlstd{(}\hlkwc{X} \hlstd{= a.small.matrix,} \hlkwc{MARGIN} \hlstd{=} \hlnum{2}\hlstd{,} \hlkwc{FUN} \hlstd{= no_op.fun)} +\hlkwd{class}\hlstd{(z)} +\end{alltt} +\begin{verbatim} +## [1] "matrix" "array" +\end{verbatim} +\begin{alltt} +\hlstd{z} \end{alltt} \begin{verbatim} -## # A tibble: 6 x 7 -## block treat mycotreat water1 pot harvest harvest_date -## <dbl> <dbl+lbl> <dbl> <dbl> <dbl> <dbl> <date> -## 1 0 1 [Watered, EM] 1 1 14 1 2015-06-15 -## 2 0 1 [Watered, EM] 1 1 52 1 2015-06-15 -## 3 0 1 [Watered, EM] 1 1 111 1 2015-06-15 -## # ... with 3 more rows +## [,1] [,2] +## [1,] 11.3 10.4 +## [2,] 10.6 8.6 +## [3,] 8.2 11.0 \end{verbatim} \end{kframe} \end{knitrout} -In this case, the dates are correctly decoded. - -Next, we import an \pgrmname{SPSS}'s \code{.sav} file saved 15 years ago. +In the chunk above, we passed \code{MARGIN = 2}, but if we pass \code{MARGIN = 1}, we get a return value that is transposed! To restore the original layout of the matrix we can transpose the result with function \Rfunction{t()}. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlstd{thiamin.tb} \hlkwb{<-} \hlkwd{read_sav}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"extdata/thiamin.sav"}\hlstd{)} -\hlstd{thiamin.tb} +\hlstd{z} \hlkwb{<-} \hlkwd{apply}\hlstd{(}\hlkwc{X} \hlstd{= a.small.matrix,} \hlkwc{MARGIN} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{FUN} \hlstd{= no_op.fun)} +\hlstd{z} \end{alltt} \begin{verbatim} -## # A tibble: 24 x 2 -## THIAMIN CEREAL -## <dbl> <dbl+lbl> -## 1 5.2 1 [wheat] -## 2 4.5 1 [wheat] -## 3 6 1 [wheat] -## # ... with 21 more rows +## [,1] [,2] [,3] +## [1,] 11.3 10.6 8.2 +## [2,] 10.4 8.6 11.0 \end{verbatim} \begin{alltt} -\hlstd{thiamin.tb} \hlkwb{<-} \hlkwd{as_factor}\hlstd{(thiamin.tb)} -\hlstd{thiamin.tb} +\hlkwd{t}\hlstd{(z)} \end{alltt} \begin{verbatim} -## # A tibble: 24 x 2 -## THIAMIN CEREAL -## <dbl> <fct> -## 1 5.2 wheat -## 2 4.5 wheat -## 3 6 wheat -## # ... with 21 more rows +## [,1] [,2] +## [1,] 11.3 10.4 +## [2,] 10.6 8.6 +## [3,] 8.2 11.0 \end{verbatim} \end{kframe} -\end{knitrout} - -\begin{playground} -Compare the values returned by different \code{read} functions when applied to the same file on disk. Use \Rfunction{names()}, \Rfunction{str()} and \Rfunction{class()} as tools in your exploration. If you are brave, also use \Rfunction{attributes()}, \Rfunction{mode()}, \Rfunction{dim()}, \Rfunction{dimnames()}, \Rfunction{nrow()} and \Rfunction{ncol()}. -\end{playground} - -\begin{playground} -If you use or have in the past used other statistical software or a general-purpose language like \langname{Python}, look for some old files and import them into \Rlang. -\end{playground} -\index{importing data!other statistical software|)} - -\section{NetCDF files} -\index{importing data!NeCDF files|(} - -In some fields, including geophysics and meteorology, \pgrmname{NetCDF} is a very common format for the exchange of data. It is also used in other contexts in which data is referenced to a grid of locations, like with data read from Affymetrix microarrays used to study gene expression. \pgrmname{NetCDF} files are binary but use a format that allows the storage of metadata describing each variable together with the data itself in a well-organized and standardized format, which is ideal for exchange of moderately large data sets measured on a spatial or spatio-temporal grid. - -Officially described as follows: -\begin{quote} -\pgrmname{NetCDF} is a set of software libraries [from Unidata] and self-describing, machine-independent data formats that support the creation, access, and sharing of array-oriented scientific data. -\end{quote} - -As sometimes \pgrmname{NetCDF} files are large, it is good that it is possible to selectively read the data from individual variables with functions in packages \pkgname{ncdf4} or \pkgname{RNetCDF}. On the other hand, this implies that contrary to other data file reading operations, reading a \pgrmname{NetCDF} file is done in two or more steps---i.e., opening the file, reading metadata describing the variables and spatial grid, and finally reading the data of interest. - -\subsection[ncdf4]{\pkgname{ncdf4}} - - - -Package \pkgname{ncdf4} supports reading of files using \pgrmname{netCDF} version 4 or earlier formats. Functions in \pkgname{ncdf4} not only allow reading and writing of these files, but also their modification. - -We first read metadata to obtain an index of the file contents, and in additional steps, read a subset of the data. With \Rfunction{print()} we can find out the names and characteristics of the variables and attributes. In this example, we read long-term averages for potential evapotranspiration (PET). +\end{knitrout} -We first open a connection to the file with function \Rfunction{nc\_open()}. +A more realistic example, but difficult to grasp without seeing the toy examples shown above, is when we apply a function that returns a value of a different length than its input, but longer than one. When we compute column summaries (\code{MARGIN = 2}), a matrix is returned, with each column containing the summaries for the corresponding column in the original matrix (\code{a.small.matrix}). In contrast, when we compute row summaries (\code{MARGIN = 1}), each column in the returned matrix contains the summaries for one row in the original array. What happens is that by using \Rloop{apply()} the dimension of the original matrix or array over which we compute summaries ``disappears.'' Consequently, given how matrices are stored in \Rlang, when columns collapse into a single value, the rows become columns. After this, the vectors returned by the applied function, are stored as rows. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlstd{meteo_data.nc} \hlkwb{<-} \hlkwd{nc_open}\hlstd{(}\hlstr{"extdata/pevpr.sfc.mon.ltm.nc"}\hlstd{)} -\hlkwd{str}\hlstd{(meteo_data.nc,} \hlkwc{max.level} \hlstd{=} \hlnum{1}\hlstd{)} +\hlstd{mean_and_sd} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{,} \hlkwc{na.rm} \hlstd{=} \hlnum{FALSE}\hlstd{) \{} + \hlkwd{c}\hlstd{(}\hlkwd{mean}\hlstd{(x,} \hlkwc{na.rm} \hlstd{= na.rm),} \hlkwd{sd}\hlstd{(x,} \hlkwc{na.rm} \hlstd{= na.rm))} + \hlstd{\}} \end{alltt} -\begin{verbatim} -## List of 15 -## $ filename : chr "extdata/pevpr.sfc.mon.ltm.nc" -## $ writable : logi FALSE -## $ id : int 65536 -## $ error : logi FALSE -## $ safemode : logi FALSE -## $ format : chr "NC_FORMAT_NETCDF4_CLASSIC" -## $ is_GMT : logi FALSE -## $ groups :List of 1 -## $ fqgn2Rindex:List of 1 -## $ ndims : num 4 -## $ natts : num 8 -## $ dim :List of 4 -## $ unlimdimid : num -1 -## $ nvars : num 3 -## $ var :List of 3 -## - attr(*, "class")= chr "ncdf4" -\end{verbatim} \end{kframe} \end{knitrout} -\begin{advplayground} -Increase \code{max.level} in the call to \Rfunction{str()} above and study the connection object stores information on the dimensions and for each data variable. You can also \code{print(meteo\_data.nc)} for a more complete printout once you have understood the structure of the object. -\end{advplayground} - -The dimensions of the array data are described with metadata, in our examples mapping indexes to a grid of latitudes and longitudes and into a time vector as a third dimension. The dates are returned as character strings. We get here the variables one at a time with function \Rfunction{ncvar\_get()}. - \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlstd{time.vec} \hlkwb{<-} \hlkwd{ncvar_get}\hlstd{(meteo_data.nc,} \hlstr{"time"}\hlstd{)} -\hlkwd{head}\hlstd{(time.vec)} -\end{alltt} -\begin{verbatim} -## [1] -657073 -657042 -657014 -656983 -656953 -656922 -\end{verbatim} -\begin{alltt} -\hlstd{longitude} \hlkwb{<-} \hlkwd{ncvar_get}\hlstd{(meteo_data.nc,} \hlstr{"lon"}\hlstd{)} -\hlkwd{head}\hlstd{(longitude)} +\hlstd{z} \hlkwb{<-} \hlkwd{apply}\hlstd{(}\hlkwc{X} \hlstd{= a.small.matrix,} \hlkwc{MARGIN} \hlstd{=} \hlnum{2}\hlstd{,} \hlkwc{FUN} \hlstd{= mean_and_sd,} \hlkwc{na.rm} \hlstd{=} \hlnum{TRUE}\hlstd{)} +\hlstd{z} \end{alltt} \begin{verbatim} -## [1] 0.000 1.875 3.750 5.625 7.500 9.375 +## [,1] [,2] +## [1,] 10.033333 10.000 +## [2,] 1.625833 1.249 \end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlstd{latitude} \hlkwb{<-} \hlkwd{ncvar_get}\hlstd{(meteo_data.nc,} \hlstr{"lat"}\hlstd{)} -\hlkwd{head}\hlstd{(latitude)} +\hlstd{z} \hlkwb{<-} \hlkwd{apply}\hlstd{(}\hlkwc{X} \hlstd{= a.small.matrix,} \hlkwc{MARGIN} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{FUN} \hlstd{= mean_and_sd,} \hlkwc{na.rm} \hlstd{=} \hlnum{TRUE}\hlstd{)} +\hlstd{z} \end{alltt} \begin{verbatim} -## [1] 88.5420 86.6531 84.7532 82.8508 80.9473 79.0435 +## [,1] [,2] [,3] +## [1,] 10.8500000 9.600000 9.600000 +## [2,] 0.6363961 1.414214 1.979899 \end{verbatim} \end{kframe} \end{knitrout} -The \code{time} vector is rather odd, as it contains only monthly data as these are long-term averages, but expressed as days from 1800-01-01 corresponding to the first day of each month of year 1. We use package \pkgname{lubridate} for the conversion. - -We construct a \Rclass{tibble} object with PET values for one grid point, taking advantage of the \emph{recycling} of short vectors. +In all examples above, we have used ordinary functions. Operators in \Rlang are functions with two formal parameters which can be called using infix notation in expressions---i.e., \code{a + b}. By back-quoting their names they can be called using the same syntax as for ordinary functions, and consequently also passed to the \code{FUN} parameter of apply functions. A toy example, equivalent to the vectorized operation \code{a.vector + 5} follows. We enclosed operator \code{+} in back ticks (\code{`}) and pass by name a constant to its second formal parameter (\code{e2 = 5}). \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlstd{pet.tb} \hlkwb{<-} - \hlkwd{tibble}\hlstd{(}\hlkwc{time} \hlstd{=} \hlkwd{ncvar_get}\hlstd{(meteo_data.nc,} \hlstr{"time"}\hlstd{),} - \hlkwc{month} \hlstd{=} \hlkwd{month}\hlstd{(}\hlkwd{ymd}\hlstd{(}\hlstr{"1800-01-01"}\hlstd{)} \hlopt{+} \hlkwd{days}\hlstd{(time)),} - \hlkwc{lon} \hlstd{= longitude[}\hlnum{6}\hlstd{],} - \hlkwc{lat} \hlstd{= latitude[}\hlnum{2}\hlstd{],} - \hlkwc{pet} \hlstd{=} \hlkwd{ncvar_get}\hlstd{(meteo_data.nc,} \hlstr{"pevpr"}\hlstd{)[}\hlnum{6}\hlstd{,} \hlnum{2}\hlstd{, ]} - \hlstd{)} -\hlstd{pet.tb} +\hlkwd{set.seed}\hlstd{(}\hlnum{123456}\hlstd{)} \hlcom{# so that a.vector does not change} +\hlstd{a.vector} \hlkwb{<-} \hlkwd{runif}\hlstd{(}\hlnum{10}\hlstd{)} +\hlstd{z} \hlkwb{<-} \hlkwd{sapply}\hlstd{(}\hlkwc{X} \hlstd{= a.vector,} \hlkwc{FUN} \hlstd{= `+`,} \hlkwc{e2} \hlstd{=} \hlnum{5}\hlstd{)} +\hlkwd{str}\hlstd{(z)} \end{alltt} \begin{verbatim} -## # A tibble: 12 x 5 -## time month lon lat pet -## <dbl> <dbl> <dbl> <dbl> <dbl> -## 1 -657073 12 9.38 86.7 4.28 -## 2 -657042 1 9.38 86.7 5.72 -## 3 -657014 2 9.38 86.7 4.38 -## # ... with 9 more rows +## num [1:10] 5.8 5.75 5.39 5.34 5.36 ... \end{verbatim} \end{kframe} \end{knitrout} -If we want to read in several grid points, we can use several different approaches. However, the order of nesting of dimensions can make adding the dimensions as columns error prone. It is much simpler to use package \pkgnameNI{tidync} described next. +\begin{explainbox} +\textbf{Apply functions vs.\ loop constructs} Apply functions cannot always replace explicit loops as they are less flexible. A simple example is the accumulation pattern, where we ``walk'' through a collection that stores a partial result between iterations. A similar case is a pattern where calculations are done over a ``window'' that moves at each iteration. The simplest and probably most frequent calculation of this kind is the calculation of differences between successive members. Other examples are moving window summaries such as a moving median (see page \pageref{box:vectorization:perf} for other alternatives to the use of explicit iteration loops). +\end{explainbox} + +\section{Functions that replace loops} + +\Rlang provides several functions that can be used to avoid writing iterative loops in \Rlang. The most frequently used are taken for granted: \Rfunction{mean()}, \Rfunction{var()} (variance), \Rfunction{sd()} (standard deviation), \Rfunction{max()}, and \Rfunction{min()}. Replacing code implementing an iterative algorithm by a single function call simplifies the script's code and can make it easier to understand. These functions are written in \Clang and compiled, so even when iterative algorithms are used, they are fast. A table with examples of additional functions available in base \Rlang that implement iterative algorithms is provided below. All these functions take a vector of arbitrary length as their first argument, except for \Rfunction{inverse.rle()}.\vspace{2ex} -\subsection[tidync]{\pkgname{tidync}} +\noindent +\begin{tabular}{lll} + \toprule + Function & Computation & Value, length \\ + \midrule + \Rfunction{sum()} & $\sum_{i=1}^n x_i$ & numeric, 1 \\ + \Rfunction{prod()} & $\prod_{i=1}^n x_i$ & numeric, 1 \\ + \Rfunction{cumsum()} & $\sum_{i=1}^1 x_i, \cdots \sum_{i=1}^j x_i, \cdots \sum_{i=1}^n x_i$ & numeric, $n_\mathrm{out} = n_\mathrm{in}$ \\ + \Rfunction{cumprod()} & $\prod_{i=1}^1 x_i, \cdots \prod_{i=1}^j x_i, \cdots \prod_{i=1}^n x_i$ & numeric, $n_\mathrm{out} = n_\mathrm{in}$ \\ + \Rfunction{cummax()} & cumulative maximum & numeric, $n_\mathrm{out} = n_\mathrm{in}$ \\ + \Rfunction{cummin()} & cumulative minimum & numeric, $n_\mathrm{out} = n_\mathrm{in}$ \\ + \Rfunction{runmed()} & running median & numeric, $n_\mathrm{out} = n_\mathrm{in}$ \\ + \Rfunction{diff()} & $x_2 - x_1, \cdots x_i - x_{i-1}, \cdots x_n - x_{n-1}$ & numeric, $n_\mathrm{out} = n_\mathrm{in}-1$ \\ + \Rfunction{diffinv()} & inverse of diff & numeric, $n_\mathrm{out} = n_\mathrm{in}+1$ \\ + \Rfunction{factorial()} & $x!$ & numeric, $n_\mathrm{out} = n_\mathrm{in}$ \\ + \Rfunction{rle()} & run-length encoding & $n_\mathrm{out} < n_\mathrm{in}$ \\ + \Rfunction{inverse.rle()} & run-length decoding & $n_\mathrm{out} > n_\mathrm{in}$ \\ + \bottomrule +\end{tabular} +\begin{playground} + Build a \code{numeric} vector such as \code{x <- c(1, 9, 6, 4, 3)} and pass it as argument to the functions in the table above. Do the corresponding computations manually until you are sure to understand what each function calculates. +\end{playground} +\section{Object names and character strings} -Package \pkgname{tidync} provides functions that make it easier to extract subsets of the data from an \pgrmname{NetCDF} file. We start by doing the same operations as in the examples for \pkgnameNI{ncdf4}. +In\index{object names}\index{object names!as character strings} all assignment examples before this section, we have used object names included as literal character strings in the code expressions. In other words, the names are ``decided'' as part of the code, rather than at run time. In scripts or packages, the object name to be assigned may need to be decided at run time and, consequently, be available only as a character string stored in a variable. In this case, function \Rfunction{assign()} must be used instead of the operators \code{<-} or \code{->}. The statements below demonstrate its use. -We open the file creating an object and simultaneously activating the first grid. +First using a \code{character} constant. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlstd{meteo_data.tnc} \hlkwb{<-} \hlkwd{tidync}\hlstd{(}\hlstr{"extdata/pevpr.sfc.mon.ltm.nc"}\hlstd{)} -\hlstd{meteo_data.tnc} +\hlkwd{assign}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlnum{9.99}\hlstd{)} +\hlstd{a} \end{alltt} \begin{verbatim} -## -## Data Source (1): pevpr.sfc.mon.ltm.nc ... -## -## Grids (5) <dimension family> : <associated variables> -## -## [1] D0,D1,D2 : pevpr, valid_yr_count **ACTIVE GRID** ( 216576 values per variable) -## [2] D3,D2 : climatology_bounds -## [3] D0 : lon -## [4] D1 : lat -## [5] D2 : time -## -## Dimensions 4 (3 active): -## -## dim name length min max start count dmin dmax unlim coord~1 -## <chr> <chr> <dbl> <dbl> <dbl> <int> <int> <dbl> <dbl> <lgl> <lgl> -## 1 D0 lon 192 0 3.58e2 1 192 0 3.58e2 FALSE TRUE -## 2 D1 lat 94 -88.5 8.85e1 1 94 -8.85e1 8.85e1 FALSE TRUE -## 3 D2 time 12 -657073 -6.57e5 1 12 -6.57e5 -6.57e5 FALSE TRUE -## # ... with abbreviated variable name 1: coord_dim -## -## Inactive dimensions: -## -## dim name length min max unlim coord_dim -## <chr> <chr> <dbl> <dbl> <dbl> <lgl> <lgl> -## 1 D3 nbnds 2 1 2 FALSE FALSE +## [1] 9.99 \end{verbatim} \end{kframe} \end{knitrout} +Next using a \code{character} value stored in a variable. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlkwd{hyper_dims}\hlstd{(meteo_data.tnc)} +\hlstd{name.of.var} \hlkwb{<-} \hlstr{"b"} +\hlkwd{assign}\hlstd{(name.of.var,} \hlnum{9.99}\hlstd{)} +\hlstd{b} \end{alltt} \begin{verbatim} -## # A tibble: 3 x 7 -## name length start count id unlim coord_dim -## <chr> <dbl> <int> <int> <int> <lgl> <lgl> -## 1 lon 192 1 192 0 FALSE TRUE -## 2 lat 94 1 94 1 FALSE TRUE -## 3 time 12 1 12 2 FALSE TRUE +## [1] 9.99 \end{verbatim} \end{kframe} \end{knitrout} +The two toy examples above do not demonstrate why one may want to use \Rfunction{assign()}. Common situations where we may want to use character strings to store (future or existing) object names are 1) when we allow users to provide names for objects either interactively or as \code{character} data, 2) when in a loop we transverse a vector or list of object names, or 3) we construct at runtime object names from multiple character strings based on data or settings. A common case is when we import data from a text file and we want to name the object according to the name of the file on disk, or a character string read from the header at the top of the file. + +Another case is when \code{character} values are the result of a computation. + \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlkwd{hyper_vars}\hlstd{(meteo_data.tnc)} +\hlkwa{for} \hlstd{(i} \hlkwa{in} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{) \{} + \hlkwd{assign}\hlstd{(}\hlkwd{paste}\hlstd{(}\hlstr{"zz_"}\hlstd{, i,} \hlkwc{sep} \hlstd{=} \hlstr{""}\hlstd{), i}\hlopt{^}\hlnum{2}\hlstd{)} +\hlstd{\}} +\hlkwd{ls}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"zz_*"}\hlstd{)} \end{alltt} \begin{verbatim} -## # A tibble: 2 x 6 -## id name type ndims natts dim_coord -## <int> <chr> <chr> <int> <int> <lgl> -## 1 4 pevpr NC_FLOAT 3 14 FALSE -## 2 5 valid_yr_count NC_FLOAT 3 4 FALSE +## [1] "zz_1" "zz_2" "zz_3" "zz_4" "zz_5" \end{verbatim} \end{kframe} \end{knitrout} -We extract a subset of the data into a tibble in long (or tidy) format, and add -the months using a pipe operator from \pkgname{wrapr} and methods from \pkgname{dplyr}. +The complementary operation of \emph{assigning} a name to an object is to \emph{get} an object when we have available its name as a character string. The corresponding function is \Rfunction{get()}. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlkwd{hyper_tibble}\hlstd{(meteo_data.tnc,} - \hlkwc{lon} \hlstd{=} \hlkwd{signif}\hlstd{(lon,} \hlnum{1}\hlstd{)} \hlopt{==} \hlnum{9}\hlstd{,} - \hlkwc{lat} \hlstd{=} \hlkwd{signif}\hlstd{(lat,} \hlnum{2}\hlstd{)} \hlopt{==} \hlnum{87}\hlstd{)} \hlopt{%.>%} - \hlkwd{mutate}\hlstd{(}\hlkwc{.data} \hlstd{= .,} \hlkwc{month} \hlstd{=} \hlkwd{month}\hlstd{(}\hlkwd{ymd}\hlstd{(}\hlstr{"1800-01-01"}\hlstd{)} \hlopt{+} \hlkwd{days}\hlstd{(time)))} \hlopt{%.>%} - \hlkwd{select}\hlstd{(}\hlkwc{.data} \hlstd{= .,} \hlopt{-}\hlstd{time)} +\hlkwd{get}\hlstd{(}\hlstr{"a"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] 9.99 +\end{verbatim} +\begin{alltt} +\hlkwd{get}\hlstd{(}\hlstr{"b"}\hlstd{)} \end{alltt} \begin{verbatim} -## # A tibble: 12 x 5 -## pevpr valid_yr_count lon lat month -## <dbl> <dbl> <dbl> <dbl> <dbl> -## 1 4.28 1.19e-39 9.38 86.7 12 -## 2 5.72 1.19e-39 9.38 86.7 1 -## 3 4.38 1.29e-39 9.38 86.7 2 -## # ... with 9 more rows +## [1] 9.99 \end{verbatim} \end{kframe} \end{knitrout} -In this second example, we extract data for all grid points along latitudes. To achieve this we need only to omit the test for \code{lat} from the chuck above. The tibble is assembled automatically and columns for the active dimensions added. The decoding of the months remains unchanged. +If we have available a character vector containing object names and we want to create a list containing these objects we can use function \Rfunction{mget()}. In the example below we use function \code{ls()} to obtain a character vector of object names matching a specific pattern and then collect all these objects into a list. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlkwd{hyper_tibble}\hlstd{(meteo_data.tnc,} - \hlkwc{lon} \hlstd{=} \hlkwd{signif}\hlstd{(lon,} \hlnum{1}\hlstd{)} \hlopt{==} \hlnum{9}\hlstd{)} \hlopt{%.>%} - \hlkwd{mutate}\hlstd{(}\hlkwc{.data} \hlstd{= .,} \hlkwc{month} \hlstd{=} \hlkwd{month}\hlstd{(}\hlkwd{ymd}\hlstd{(}\hlstr{"1800-01-01"}\hlstd{)} \hlopt{+} \hlkwd{days}\hlstd{(time)))} \hlopt{%.>%} - \hlkwd{select}\hlstd{(}\hlkwc{.data} \hlstd{= .,} \hlopt{-}\hlstd{time)} +\hlstd{obj_names} \hlkwb{<-} \hlkwd{ls}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"zz_*"}\hlstd{)} +\hlstd{obj_lst} \hlkwb{<-} \hlkwd{mget}\hlstd{(obj_names)} +\hlkwd{str}\hlstd{(obj_lst)} \end{alltt} \begin{verbatim} -## # A tibble: 1,128 x 5 -## pevpr valid_yr_count lon lat month -## <dbl> <dbl> <dbl> <dbl> <dbl> -## 1 1.02 1.19e-39 9.38 88.5 12 -## 2 4.28 1.19e-39 9.38 86.7 12 -## 3 3.03 9.18e-40 9.38 84.8 12 -## # ... with 1,125 more rows +## List of 5 +## $ zz_1: num 1 +## $ zz_2: num 4 +## $ zz_3: num 9 +## $ zz_4: num 16 +## $ zz_5: num 25 \end{verbatim} \end{kframe} \end{knitrout} -\begin{playground} -Instead of extracting data for one longitude across latitudes, extract data across longitudes for one latitude near the Equator. -\end{playground} -\index{importing data!NeCDF files|)} +\begin{advplayground} +Think of possible uses of functions \Rfunction{assign()}, \Rfunction{get()} and \Rfunction{mget()} in scripts you use or could use to analyze your own data (or from other sources). Write a script to implement this, and iteratively test and revise this script until the result produced by the script matches your expectations. +\end{advplayground} + +\section{The multiple faces of loops}\label{sec:R:faces:of:loops} -\section{Remotely located data}\label{sec:files:remote} -\index{importing data!remote connections|(} +\ilAdvanced\ To close this chapter, I will mention some advanced aspects of the \Rlang language that are useful when writing complex scrips---if you are going through the book sequentially, you will want to return to this section after reading chapters \ref{chap:R:statistics} and \ref{chap:R:functions}. In the same way as we can assign names to \code{numeric}, \code{character} and other types of objects, we can assign names to functions and expressions. We can also create lists of functions and/or expressions. The \Rlang language has a very consistent grammar, with all lists and vectors behaving in the same way. The implication of this is that we can assign different functions or expressions to a given name, and consequently it is possible to write loops over lists of functions or expressions. -Many of the functions described above accept an URL address in place of a file name. Consequently files can be read remotely without having to first download and save a copy in the local file system. This can be useful, especially when file names are generated within a script. However, one should avoid, especially in the case of servers open to public access, repeatedly downloading the same file as this unnecessarily increases network traffic and workload on the remote server. Because of this, our first example reads a small file from my own web site. See section \ref{sec:files:txt} on page \pageref{sec:files:txt} for details on the use of these and other functions for reading text files. +In this first example we use a \emph{character vector of function names}, and use function \Rfunction{do.call()} as it accepts either character strings or function names as its first argument. We obtain a numeric vector with named members with names matching the function names. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlstd{logger.df} \hlkwb{<-} - \hlkwd{read.csv2}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"http://r4photobiology.info/learnr/logger_1.txt"}\hlstd{,} - \hlkwc{header} \hlstd{=} \hlnum{FALSE}\hlstd{,} - \hlkwc{col.names} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"time"}\hlstd{,} \hlstr{"temperature"}\hlstd{))} -\hlkwd{sapply}\hlstd{(logger.df, class)} -\end{alltt} -\begin{verbatim} -## time temperature -## "character" "numeric" -\end{verbatim} -\begin{alltt} -\hlkwd{sapply}\hlstd{(logger.df, mode)} +\hlstd{x} \hlkwb{<-} \hlkwd{rnorm}\hlstd{(}\hlnum{10}\hlstd{)} +\hlstd{results} \hlkwb{<-} \hlkwd{numeric}\hlstd{()} +\hlstd{fun.names} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"mean"}\hlstd{,} \hlstr{"max"}\hlstd{,} \hlstr{"min"}\hlstd{)} +\hlkwa{for} \hlstd{(f.name} \hlkwa{in} \hlstd{fun.names) \{} + \hlstd{results[[f.name]]} \hlkwb{<-} \hlkwd{do.call}\hlstd{(f.name,} \hlkwd{list}\hlstd{(x))} + \hlstd{\}} +\hlstd{results} \end{alltt} \begin{verbatim} -## time temperature -## "character" "numeric" +## mean max min +## 0.5453427 2.5026454 -1.1139499 \end{verbatim} \end{kframe} \end{knitrout} +When traversing a \emph{list of functions} in a loop, we face the problem that we cannot access the original names of the functions as what is stored in the list are the definitions of the functions. In this case, we can hold the function definitions in the loop variable (\code{f} in the chunk below) and call the functions by use of the function call notation (\code{f()}). We obtain a numeric vector with anonymous members. + \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlstd{logger.tb} \hlkwb{<-} - \hlkwd{read_csv2}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"http://r4photobiology.info/learnr/logger_1.txt"}\hlstd{,} - \hlkwc{col_names} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"time"}\hlstd{,} \hlstr{"temperature"}\hlstd{))} -\end{alltt} - - -{\ttfamily\noindent\itshape\color{messagecolor}{\#\# i Using "{}','"{} as decimal and "{}'.'"{} as grouping mark. Use `read\_delim()` for more control.}} - -{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Rows: 723 Columns: 2\\\#\# -- Column specification --------------------------------------------------------\\\#\# Delimiter: "{};"{}\\\#\# chr (1): time\\\#\# dbl (1): temperature\\\#\# \\\#\# i Use `spec()` to retrieve the full column specification for this data.\\\#\# i Specify the column types or set `show\_col\_types = FALSE` to quiet this message.}}\begin{alltt} -\hlkwd{sapply}\hlstd{(logger.tb, class)} -\end{alltt} -\begin{verbatim} -## time temperature -## "character" "numeric" -\end{verbatim} -\begin{alltt} -\hlkwd{sapply}\hlstd{(logger.tb, mode)} +\hlstd{results} \hlkwb{<-} \hlkwd{numeric}\hlstd{()} +\hlstd{funs} \hlkwb{<-} \hlkwd{list}\hlstd{(mean, max, min)} +\hlkwa{for} \hlstd{(f} \hlkwa{in} \hlstd{funs) \{} + \hlstd{results} \hlkwb{<-} \hlkwd{c}\hlstd{(results,} \hlkwd{f}\hlstd{(x))} + \hlstd{\}} +\hlstd{results} \end{alltt} \begin{verbatim} -## time temperature -## "character" "numeric" +## [1] 0.5453427 2.5026454 -1.1139499 \end{verbatim} \end{kframe} \end{knitrout} -While functions in package \pkgname{readr} support the use of URLs, those in packages \pkgname{readxl} and \pkgname{xlsx} do not. Consequently, we need to first download the file and save a copy locally, that we can read as described in section \ref{sec:files:excel} on page \pageref{sec:files:excel}. Function \Rfunction{download.file()} in the \Rlang \pkgname{utils} package can be used to download files using URLs. It supports different modes such as binary or text, and write or append, and different methods such as \code{"internal"}, \code{"wget"} and \code{"libcurl" }. - -\begin{warningbox} -For portability, \pgrmname{MS-Excel} files should be downloaded in binary mode, setting \code{mode = "wb"}, which is required under \osname{MS-Windows}. -\end{warningbox} - +We can use a named list of functions to gain full control of the naming of the results. We obtain a numeric vector with named members with names matching the names given to the list members. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlkwd{download.file}\hlstd{(}\hlstr{"http://r4photobiology.info/learnr/my-data.xlsx"}\hlstd{,} - \hlstr{"data/my-data-dwn.xlsx"}\hlstd{,} - \hlkwc{mode} \hlstd{=} \hlstr{"wb"}\hlstd{)} +\hlstd{results} \hlkwb{<-} \hlkwd{numeric}\hlstd{()} +\hlstd{funs} \hlkwb{<-} \hlkwd{list}\hlstd{(}\hlkwc{average} \hlstd{= mean,} \hlkwc{maximum} \hlstd{= max,} \hlkwc{minimum} \hlstd{= min)} +\hlkwa{for} \hlstd{(f} \hlkwa{in} \hlkwd{names}\hlstd{(funs)) \{} + \hlstd{results[[f]]} \hlkwb{<-} \hlstd{funs[[f]](x)} + \hlstd{\}} +\hlstd{results} \end{alltt} +\begin{verbatim} +## average maximum minimum +## 0.5453427 2.5026454 -1.1139499 +\end{verbatim} \end{kframe} \end{knitrout} -Functions in package \pkgname{foreign}, as well as those in package \pkgname{haven}, support URLs. See section \ref{sec:files:stat} on page \pageref{sec:files:stat} for more information about importing this kind of data into \Rlang. +Next is an example using model formulas. We use a loop to fit three models, obtaining a list of fitted models. We cannot pass to \Rfunction{anova()} this list of fitted models, as it expects each fitted model as a separate nameless argument to its \code{\ldots} parameter. We can get around this problem using function \Rfunction{do.call()} to call \Rfunction{anova()}. Function \Rfunction{do.call()} passes the members of the list passed as its second argument as individual arguments to the function being called, using their names if present. \Rfunction{anova()} expects nameless arguments so we need to remove the names present in \code{results}. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlstd{remote_thiamin.df} \hlkwb{<-} - \hlkwd{read.spss}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"http://r4photobiology.info/learnr/thiamin.sav"}\hlstd{,} - \hlkwc{to.data.frame} \hlstd{=} \hlnum{TRUE}\hlstd{)} -\hlkwd{head}\hlstd{(remote_thiamin.df)} +\hlstd{my.data} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{10}\hlstd{,} \hlkwc{y} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{10} \hlopt{+} \hlkwd{rnorm}\hlstd{(}\hlnum{10}\hlstd{,} \hlnum{1}\hlstd{,} \hlnum{0.1}\hlstd{))} +\hlstd{results} \hlkwb{<-} \hlkwd{list}\hlstd{()} +\hlstd{models} \hlkwb{<-} \hlkwd{list}\hlstd{(}\hlkwc{linear} \hlstd{= y} \hlopt{~} \hlstd{x,} \hlkwc{linear.orig} \hlstd{= y} \hlopt{~} \hlstd{x} \hlopt{-} \hlnum{1}\hlstd{,} \hlkwc{quadratic} \hlstd{= y} \hlopt{~} \hlstd{x} \hlopt{+} \hlkwd{I}\hlstd{(x}\hlopt{^}\hlnum{2}\hlstd{))} +\hlkwa{for} \hlstd{(m} \hlkwa{in} \hlkwd{names}\hlstd{(models)) \{} + \hlstd{results[[m]]} \hlkwb{<-} \hlkwd{lm}\hlstd{(models[[m]],} \hlkwc{data} \hlstd{= my.data)} + \hlstd{\}} +\hlkwd{str}\hlstd{(results,} \hlkwc{max.level} \hlstd{=} \hlnum{1}\hlstd{)} \end{alltt} \begin{verbatim} -## THIAMIN CEREAL -## 1 5.2 wheat -## 2 4.5 wheat -## 3 6.0 wheat -## 4 6.1 wheat -## 5 6.7 wheat -## 6 5.8 wheat +## List of 3 +## $ linear :List of 12 +## ..- attr(*, "class")= chr "lm" +## $ linear.orig:List of 12 +## ..- attr(*, "class")= chr "lm" +## $ quadratic :List of 12 +## ..- attr(*, "class")= chr "lm" \end{verbatim} -\end{kframe} -\end{knitrout} - -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlstd{remote_my_spss.tb} \hlkwb{<-} - \hlkwd{read_sav}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"http://r4photobiology.info/learnr/thiamin.sav"}\hlstd{)} -\hlstd{remote_my_spss.tb} +\hlkwd{do.call}\hlstd{(anova,} \hlkwd{unname}\hlstd{(results))} \end{alltt} \begin{verbatim} -## # A tibble: 24 x 2 -## THIAMIN CEREAL -## <dbl> <dbl+lbl> -## 1 5.2 1 [wheat] -## 2 4.5 1 [wheat] -## 3 6 1 [wheat] -## # ... with 21 more rows +## Analysis of Variance Table +## +## Model 1: y ~ x +## Model 2: y ~ x - 1 +## Model 3: y ~ x + I(x^2) +## Res.Df RSS Df Sum of Sq F Pr(>F) +## 1 8 0.05525 +## 2 9 2.31266 -1 -2.2574 306.19 4.901e-07 *** +## 3 7 0.05161 2 2.2611 153.34 1.660e-06 *** +## --- +## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 \end{verbatim} \end{kframe} \end{knitrout} -In this example we use a downloaded NetCDF file of long-term means for potential evapotranspiration from NOOA, the same used above in the \pkgname{ncdf4} example. This is a moderately large file at 444~KB. In this case, we cannot directly open the connection to the NetCDF file, and we first download it (commented out code, as we have a local copy), and then we open the local file. +If we had no further use for \code{results} we could simply build a list with nameless members by using positional indexing. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlstd{my.url} \hlkwb{<-} \hlkwd{paste}\hlstd{(}\hlstr{"ftp://ftp.cdc.noaa.gov/Datasets/ncep.reanalysis.derived/"}\hlstd{,} - \hlstr{"surface_gauss/pevpr.sfc.mon.ltm.nc"}\hlstd{,} - \hlkwc{sep} \hlstd{=} \hlstr{""}\hlstd{)} -\hlcom{#download.file(my.url,} -\hlcom{# mode = "wb",} -\hlcom{# destfile = "extdata/pevpr.sfc.mon.ltm.nc")} -\hlstd{pet_ltm.nc} \hlkwb{<-} \hlkwd{nc_open}\hlstd{(}\hlstr{"extdata/pevpr.sfc.mon.ltm.nc"}\hlstd{)} +\hlstd{results} \hlkwb{<-} \hlkwd{list}\hlstd{()} +\hlstd{models} \hlkwb{<-} \hlkwd{list}\hlstd{(y} \hlopt{~} \hlstd{x, y} \hlopt{~} \hlstd{x} \hlopt{-} \hlnum{1}\hlstd{, y} \hlopt{~} \hlstd{x} \hlopt{+} \hlkwd{I}\hlstd{(x}\hlopt{^}\hlnum{2}\hlstd{))} +\hlkwa{for} \hlstd{(i} \hlkwa{in} \hlkwd{seq}\hlstd{(}\hlkwc{along.with} \hlstd{= models)) \{} + \hlstd{results[[i]]} \hlkwb{<-} \hlkwd{lm}\hlstd{(models[[i]],} \hlkwc{data} \hlstd{= my.data)} + \hlstd{\}} +\hlkwd{str}\hlstd{(results,} \hlkwc{max.level} \hlstd{=} \hlnum{1}\hlstd{)} +\end{alltt} +\begin{verbatim} +## List of 3 +## $ :List of 12 +## ..- attr(*, "class")= chr "lm" +## $ :List of 12 +## ..- attr(*, "class")= chr "lm" +## $ :List of 12 +## ..- attr(*, "class")= chr "lm" +\end{verbatim} +\begin{alltt} +\hlkwd{do.call}\hlstd{(anova, results)} \end{alltt} +\begin{verbatim} +## Analysis of Variance Table +## +## Model 1: y ~ x +## Model 2: y ~ x - 1 +## Model 3: y ~ x + I(x^2) +## Res.Df RSS Df Sum of Sq F Pr(>F) +## 1 8 0.05525 +## 2 9 2.31266 -1 -2.2574 306.19 4.901e-07 *** +## 3 7 0.05161 2 2.2611 153.34 1.660e-06 *** +## --- +## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 +\end{verbatim} \end{kframe} \end{knitrout} -\begin{warningbox} -For portability, \pgrmname{NetCDF} files should be downloaded in binary mode, setting \code{mode = "wb"}, which is required under \osname{MS-Windows}. -\end{warningbox} -\index{importing data!remote connections|)} - -\section{Data acquisition from physical devices}\label{sec:data:acquisition} -\index{importing data!physical devices|(} - -Numerous\index{internet-of-things} modern data acquisition devices based on microcontrollers, including internet-of-things (IoT) devices, have servers (or daemons) that can be queried over a network connection to retrieve either real-time or logged data. Formats based on XML schemas or in JSON format are commonly used. - -\subsection[jsonlite]{\pkgname{jsonlite}} +\section{Data pipes in base R} +The \pkgname{tidyverse} has popularized the use of data pipes in \Rlang. Recently base \Rlang has gained a pipe operator, \Roperator{|>}, and in combination with well known base \Rlang functions it provides a concise notation for data selection and transformations. In general whenever we use temporary variables to store values that are used only once, we can chain the statements making the saving into a temporary variable implicit instead of explicit. In many cases, nested function calls can also be transformed into easier to read \emph{pipes}. - -\index{importing data!jsonlite}\index{YoctoPuce modules} -We give here a simple example using a module from the \href{http://www.yoctopuce.com/}{YoctoPuce} family using a software hub running locally. We retrieve logged data from a YoctoMeteo module. - -\begin{infobox} -This example needs setting the configuration of the YoctoPuce module beforehand. Fully reproducible examples, including configuration instructions, will be provided online. -\end{infobox} - -Here we use function \Rfunction{fromJSON()} from package \pkgname{jsonlite} to retrieve logged data from one sensor. +Addition of computed variables to a data frame using \Rfunction{within()} and selecting rows with \Rfunction{subset()} are combined in our first `toy' example. We use the \code{\_} placeholder to indicate the value returned by the preceding function in the pipe. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlstd{hub.url} \hlkwb{<-} \hlstr{"http://localhost:4444/"} -\hlstd{Meteo01.df} \hlkwb{<-} - \hlkwd{fromJSON}\hlstd{(}\hlkwd{paste}\hlstd{(hub.url,} \hlstr{"byName/METEO01/dataLogger.json"}\hlstd{,} - \hlkwc{sep} \hlstd{=} \hlstr{""}\hlstd{),} \hlkwc{flatten} \hlstd{=} \hlnum{TRUE}\hlstd{)} -\hlkwd{str}\hlstd{(Meteo01.df,} \hlkwc{max.level} \hlstd{=} \hlnum{2}\hlstd{)} +\hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{10}\hlstd{,} \hlkwc{y} \hlstd{=} \hlkwd{rnorm}\hlstd{(}\hlnum{10}\hlstd{)) |>} + \hlkwd{within}\hlstd{(}\hlkwc{data} \hlstd{= _,} + \hlstd{\{} + \hlstd{x4} \hlkwb{<-} \hlstd{x}\hlopt{^}\hlnum{4} + \hlstd{is.large} \hlkwb{<-} \hlstd{x}\hlopt{^}\hlnum{4} \hlopt{>} \hlnum{1000} + \hlstd{\}) |>} + \hlkwd{subset}\hlstd{(}\hlkwc{x} \hlstd{= _, is.large)} \end{alltt} +\begin{verbatim} +## x y is.large x4 +## 6 6 -0.85586700 TRUE 1296 +## 7 7 0.06955833 TRUE 2401 +## 8 8 -1.04619827 TRUE 4096 +## 9 9 -2.74886838 TRUE 6561 +## 10 10 -1.12985961 TRUE 10000 +\end{verbatim} \end{kframe} \end{knitrout} -The minimum, mean, and maximum values for each logging interval need to be split from a single vector. We do this by indexing with a logical vector (recycled). The data returned is in long form, with quantity names and units also returned by the module, as well as the time. +To summarize variables we can use \Rfunction{aggregate()}. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlstd{Meteo01.df[[}\hlstr{"streams"}\hlstd{]][[}\hlkwd{which}\hlstd{(Meteo01.df}\hlopt{$}\hlstd{id} \hlopt{==} \hlstr{"temperature"}\hlstd{)]]} \hlopt{%.>%} - \hlkwd{as_tibble}\hlstd{(}\hlkwc{x} \hlstd{= .)} \hlopt{%.>%} - \hlstd{dplyr}\hlopt{::}\hlkwd{transmute}\hlstd{(}\hlkwc{.data} \hlstd{= .,} - \hlkwc{utc.time} \hlstd{=} \hlkwd{as.POSIXct}\hlstd{(utc,} \hlkwc{origin} \hlstd{=} \hlstr{"1970-01-01"}\hlstd{,} \hlkwc{tz} \hlstd{=} \hlstr{"UTC"}\hlstd{),} - \hlkwc{t_min} \hlstd{=} \hlkwd{unlist}\hlstd{(val)[}\hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{,} \hlnum{FALSE}\hlstd{)],} - \hlkwc{t_mean} \hlstd{=} \hlkwd{unlist}\hlstd{(val)[}\hlkwd{c}\hlstd{(}\hlnum{FALSE}\hlstd{,} \hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{)],} - \hlkwc{t_max} \hlstd{=} \hlkwd{unlist}\hlstd{(val)[}\hlkwd{c}\hlstd{(}\hlnum{FALSE}\hlstd{,} \hlnum{FALSE}\hlstd{,} \hlnum{TRUE}\hlstd{)])} \hlkwb{->} \hlstd{temperature.df} - -\hlstd{Meteo01.df[[}\hlstr{"streams"}\hlstd{]][[}\hlkwd{which}\hlstd{(Meteo01.df}\hlopt{$}\hlstd{id} \hlopt{==} \hlstr{"humidity"}\hlstd{)]]} \hlopt{%.>%} - \hlkwd{as_tibble}\hlstd{(}\hlkwc{x} \hlstd{= .)} \hlopt{%.>%} - \hlstd{dplyr}\hlopt{::}\hlkwd{transmute}\hlstd{(}\hlkwc{.data} \hlstd{= .,} - \hlkwc{utc.time} \hlstd{=} \hlkwd{as.POSIXct}\hlstd{(utc,} \hlkwc{origin} \hlstd{=} \hlstr{"1970-01-01"}\hlstd{,} \hlkwc{tz} \hlstd{=} \hlstr{"UTC"}\hlstd{),} - \hlkwc{hr_min} \hlstd{=} \hlkwd{unlist}\hlstd{(val)[}\hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{,} \hlnum{FALSE}\hlstd{)],} - \hlkwc{hr_mean} \hlstd{=} \hlkwd{unlist}\hlstd{(val)[}\hlkwd{c}\hlstd{(}\hlnum{FALSE}\hlstd{,} \hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{)],} - \hlkwc{hr_max} \hlstd{=} \hlkwd{unlist}\hlstd{(val)[}\hlkwd{c}\hlstd{(}\hlnum{FALSE}\hlstd{,} \hlnum{FALSE}\hlstd{,} \hlnum{TRUE}\hlstd{)])} \hlkwb{->} \hlstd{humidity.df} - -\hlkwd{full_join}\hlstd{(temperature.df, humidity.df)} +\hlkwd{data.frame}\hlstd{(}\hlkwc{group} \hlstd{=} \hlkwd{factor}\hlstd{(}\hlkwd{rep}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"T1"}\hlstd{,} \hlstr{"T2"}\hlstd{,} \hlstr{"Ctl"}\hlstd{),} \hlkwc{each} \hlstd{=} \hlnum{4}\hlstd{)),} + \hlkwc{y} \hlstd{=} \hlkwd{rnorm}\hlstd{(}\hlnum{12}\hlstd{)) |>} + \hlkwd{subset}\hlstd{(}\hlkwc{x} \hlstd{= _, group} \hlopt{%in%} \hlkwd{c}\hlstd{(}\hlstr{"T1"}\hlstd{,} \hlstr{"T2"}\hlstd{)) |>} + \hlkwd{aggregate}\hlstd{(}\hlkwc{data} \hlstd{= _, y} \hlopt{~} \hlstd{group, mean)} \end{alltt} +\begin{verbatim} +## group y +## 1 T1 -0.5017887 +## 2 T2 0.7069193 +\end{verbatim} \end{kframe} \end{knitrout} -\begin{explainbox} -Most YoctoPuce input modules have a built-in datalogger, and the stored data can also be downloaded as a \code{CSV} file through a physical or virtual hub. As shown above, it is possible to control them through the HTML server in the physical or virtual hubs. Alternatively the \Rlang package \pkgname{reticulate} can be used to control YoctoPuce modules by means of the \langname{Python} library giving access to their API. -\end{explainbox} -\index{importing data!physical devices|)} - -\section{Databases}\label{sec:data:db} -\index{importing data!databases|(} - - - - - - -One of the advantages of using databases is that subsets of cases and variables can be retrieved, even remotely, making it possible to work in \Rlang both locally and remotely with huge data sets. One should remember that \Rlang natively keeps whole objects in RAM, and consequently, available machine memory limits the size of data sets with which it is possible to work. Package \pkgname{dbplyr} provides the tools to work with data in databases using the same verbs as when using \pkgname{dplyr} with data stored in memory (RAM) (see chapter \ref{chap:R:data}). This is an important subject, but extensive enough to be outside the scope of this book. We provide a few simple examples to show the very basics but interested readers should consult \citebooktitle{Wickham2017} \autocite{Wickham2017}. - -The additional steps compared to using \pkgname{dplyr} start with the need to establish a connection to a local or remote database. We will use \Rlang package \pkgname{RSQLite} to create a local temporary \pgrmname{SQLite} database. \pkgname{dbplyr} backends supporting other database systems are also available. We will use meteorological data from \pkgname{learnrbook} for this example. +Although the extraction operators are not accepted on the rhs of a pipe, function \Rfunction{getElement()} can be used to extract a member by name, in this case a column. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} -\hlkwd{library}\hlstd{(dplyr)} -\hlstd{con} \hlkwb{<-} \hlstd{DBI}\hlopt{::}\hlkwd{dbConnect}\hlstd{(RSQLite}\hlopt{::}\hlkwd{SQLite}\hlstd{(),} \hlkwc{dbname} \hlstd{=} \hlstr{":memory:"}\hlstd{)} -\hlkwd{copy_to}\hlstd{(con, weather_wk_25_2019.tb,} \hlstr{"weather"}\hlstd{,} - \hlkwc{temporary} \hlstd{=} \hlnum{FALSE}\hlstd{,} - \hlkwc{indexes} \hlstd{=} \hlkwd{list}\hlstd{(} - \hlkwd{c}\hlstd{(}\hlstr{"month_name"}\hlstd{,} \hlstr{"calendar_year"}\hlstd{,} \hlstr{"solar_time"}\hlstd{),} - \hlstr{"time"}\hlstd{,} - \hlstr{"sun_elevation"}\hlstd{,} - \hlstr{"was_sunny"}\hlstd{,} - \hlstr{"day_of_year"}\hlstd{,} - \hlstr{"month_of_year"} - \hlstd{)} -\hlstd{)} -\hlstd{weather.db} \hlkwb{<-} \hlkwd{tbl}\hlstd{(con,} \hlstr{"weather"}\hlstd{)} -\hlkwd{colnames}\hlstd{(weather.db)} -\end{alltt} -\begin{verbatim} -## [1] "time" "PAR_umol" "PAR_diff_fr" "global_watt" -## [5] "day_of_year" "month_of_year" "month_name" "calendar_year" -## [9] "solar_time" "sun_elevation" "sun_azimuth" "was_sunny" -## [13] "wind_speed" "wind_direction" "air_temp_C" "air_RH" -## [17] "air_DP" "air_pressure" "red_umol" "far_red_umol" -## [21] "red_far_red" -\end{verbatim} -\begin{alltt} -\hlstd{weather.db} \hlopt{%.>%} - \hlkwd{filter}\hlstd{(., sun_elevation} \hlopt{>} \hlnum{5}\hlstd{)} \hlopt{%.>%} - \hlkwd{group_by}\hlstd{(., day_of_year)} \hlopt{%.>%} - \hlkwd{summarise}\hlstd{(.,} \hlkwc{energy_Wh} \hlstd{=} \hlkwd{sum}\hlstd{(global_watt,} \hlkwc{na.rm} \hlstd{=} \hlnum{TRUE}\hlstd{)} \hlopt{*} \hlnum{60} \hlopt{/} \hlnum{3600}\hlstd{)} +\hlkwd{data.frame}\hlstd{(}\hlkwc{group} \hlstd{=} \hlkwd{factor}\hlstd{(}\hlkwd{rep}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"T1"}\hlstd{,} \hlstr{"T2"}\hlstd{,} \hlstr{"Ctl"}\hlstd{),} \hlkwc{each} \hlstd{=} \hlnum{4}\hlstd{)),} + \hlkwc{y} \hlstd{=} \hlkwd{rnorm}\hlstd{(}\hlnum{12}\hlstd{)) |>} + \hlkwd{subset}\hlstd{(}\hlkwc{x} \hlstd{= _, group} \hlopt{%in%} \hlkwd{c}\hlstd{(}\hlstr{"T1"}\hlstd{,} \hlstr{"T2"}\hlstd{)) |>} + \hlkwd{aggregate}\hlstd{(}\hlkwc{data} \hlstd{= _, y} \hlopt{~} \hlstd{group, mean) |>} + \hlkwd{getElement}\hlstd{(}\hlstr{"y"}\hlstd{)} \end{alltt} \begin{verbatim} -## # Source: SQL [?? x 2] -## # Database: sqlite 3.39.2 [:memory:] -## day_of_year energy_Wh -## <dbl> <dbl> -## 1 162 7500. -## 2 163 6660. -## 3 164 3958. -## # ... with more rows +## [1] -0.5608237 -0.3212313 \end{verbatim} \end{kframe} \end{knitrout} -\begin{explainbox} -Package \pkgname{dbplyr} translates data pipes that use \pkgname{dplyr} syntax into SQL queries to databases, either local or remote. As long as there are no problems with the backend, the use of a database is almost transparent to the \Rlang user. -\end{explainbox} -\index{importing data!databases|)} +\section{Further reading} +For\index{further reading!the R language} further readings on the aspects of \Rlang discussed in the current chapter, I suggest the books \citetitle{Matloff2011} (\citeauthor{Matloff2011}) and \citetitle{Wickham2019} (\citeauthor{Wickham2019}). + + + -\begin{infobox} -It is always good to clean up, and in the case of the book, the best way to test that the examples -can be run in a ``clean'' system. -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{alltt} -\hlkwd{unlink}\hlstd{(}\hlstr{"./data"}\hlstd{,} \hlkwc{recursive} \hlstd{=} \hlnum{TRUE}\hlstd{)} -\hlkwd{unlink}\hlstd{(}\hlstr{"./extdata"}\hlstd{,} \hlkwc{recursive} \hlstd{=} \hlnum{TRUE}\hlstd{)} -\end{alltt} -\end{kframe} -\end{knitrout} -\end{infobox} -\section{Further reading} -Since\index{further reading!elegant R code}\index{further reading!idiosyncracies or R} this is the end of the book, I recommend as further reading the writings of \citeauthor{Burns1998} as they are full of insight. Having arrived at the end of \emph{Learn R: As a Language} you should read \citebooktitle{Burns1998} \autocite{Burns1998} and \citebooktitle{Burns2012} \autocite{Burns2012}. If you want to never get caught unaware by \Rlang's idiosyncrasies, read also \citebooktitle{Burns2011} \autocite{Burns2011}. diff --git a/using-r-main-crc.toc b/using-r-main-crc.toc index c892b4a2..167e72aa 100644 --- a/using-r-main-crc.toc +++ b/using-r-main-crc.toc @@ -1,232 +1,33 @@ -\contentsline {fm}{Preface}{xi}{}% -\contentsline {chapter}{\numberline {1}R: The language and the program}{1}{}% +\contentsline {fm}{List of Figures}{vii}{}% +\contentsline {chapter}{\numberline {1}The R language: ``Paragraphs'' and ``essays''}{1}{}% \contentsline {section}{\numberline {1.1}Aims of this chapter}{1}{}% -\contentsline {section}{\numberline {1.2}Computer programming}{1}{}% -\contentsline {section}{\numberline {1.3}R}{2}{}% -\contentsline {subsection}{\numberline {1.3.1}What is R?}{2}{}% -\contentsline {subsection}{\numberline {1.3.2}R as a language}{4}{}% -\contentsline {subsection}{\numberline {1.3.3}R as a computer program}{4}{}% -\contentsline {subsubsection}{\numberline {1.3.3.1}Using R interactively}{5}{}% -\contentsline {subsubsection}{\numberline {1.3.3.2}Using R in a ``batch job''}{7}{}% -\contentsline {subsubsection}{\numberline {1.3.3.3}Editors and IDEs}{8}{}% -\contentsline {section}{\numberline {1.4}Reproducible data analysis}{10}{}% -\contentsline {section}{\numberline {1.5}Finding additional information}{11}{}% -\contentsline {subsection}{\numberline {1.5.1}R's built-in help}{12}{}% -\contentsline {subsection}{\numberline {1.5.2}Obtaining help from online forums}{13}{}% -\contentsline {subsubsection}{\numberline {1.5.2.1}Netiquette}{13}{}% -\contentsline {subsubsection}{\numberline {1.5.2.2}StackOverflow}{14}{}% -\contentsline {subsubsection}{\numberline {1.5.2.3}Reporting bugs}{14}{}% -\contentsline {section}{\numberline {1.6}What is needed to run the examples in this book?}{15}{}% -\contentsline {section}{\numberline {1.7}Further reading}{16}{}% -\contentsline {chapter}{\numberline {2}The R language: ``Words'' and ``sentences''}{17}{}% -\contentsline {section}{\numberline {2.1}Aims of this chapter}{17}{}% -\contentsline {section}{\numberline {2.2}Natural and computer languages}{18}{}% -\contentsline {section}{\numberline {2.3}Numeric values and arithmetic}{18}{}% -\contentsline {section}{\numberline {2.4}Logical values and Boolean algebra}{29}{}% -\contentsline {section}{\numberline {2.5}Comparison operators and operations}{32}{}% -\contentsline {section}{\numberline {2.6}Sets and set operations}{37}{}% -\contentsline {section}{\numberline {2.7}Character values}{41}{}% -\contentsline {section}{\numberline {2.8}The `mode' and `class' of objects}{42}{}% -\contentsline {section}{\numberline {2.9}`Type' conversions}{44}{}% -\contentsline {section}{\numberline {2.10}Vector manipulation}{47}{}% -\contentsline {section}{\numberline {2.11}Matrices and multidimensional arrays}{53}{}% -\contentsline {section}{\numberline {2.12}Factors}{59}{}% -\contentsline {section}{\numberline {2.13}Lists}{65}{}% -\contentsline {subsection}{\numberline {2.13.1}Member extraction and subsetting}{65}{}% -\contentsline {subsection}{\numberline {2.13.2}Adding and removing list members}{66}{}% -\contentsline {subsection}{\numberline {2.13.3}Nested lists}{67}{}% -\contentsline {section}{\numberline {2.14}Data frames}{69}{}% -\contentsline {subsection}{\numberline {2.14.1}Operating within data frames}{77}{}% -\contentsline {subsection}{\numberline {2.14.2}Re-arranging columns and rows}{81}{}% -\contentsline {section}{\numberline {2.15}Attributes of R objects}{83}{}% -\contentsline {section}{\numberline {2.16}Saving and loading data}{85}{}% -\contentsline {subsection}{\numberline {2.16.1}Data sets in R and packages}{85}{}% -\contentsline {subsection}{\numberline {2.16.2}.rda files}{85}{}% -\contentsline {subsection}{\numberline {2.16.3}.rds files}{87}{}% -\contentsline {section}{\numberline {2.17}Looking at data}{88}{}% -\contentsline {section}{\numberline {2.18}Plotting}{90}{}% -\contentsline {section}{\numberline {2.19}Further reading}{93}{}% -\contentsline {chapter}{\numberline {3}The R language: ``Paragraphs'' and ``essays''}{95}{}% -\contentsline {section}{\numberline {3.1}Aims of this chapter}{95}{}% -\contentsline {section}{\numberline {3.2}Writing scripts}{95}{}% -\contentsline {subsection}{\numberline {3.2.1}What is a script?}{96}{}% -\contentsline {subsection}{\numberline {3.2.2}How do we use a script?}{97}{}% -\contentsline {subsection}{\numberline {3.2.3}How to write a script}{98}{}% -\contentsline {subsection}{\numberline {3.2.4}The need to be understandable to people}{99}{}% -\contentsline {subsection}{\numberline {3.2.5}Debugging scripts}{100}{}% -\contentsline {section}{\numberline {3.3}Control of execution flow}{102}{}% -\contentsline {subsection}{\numberline {3.3.1}Compound statements}{103}{}% -\contentsline {subsection}{\numberline {3.3.2}Conditional execution}{103}{}% -\contentsline {subsubsection}{\numberline {3.3.2.1}Non-vectorized \texttt {if}, \texttt {else} and \texttt {switch}}{104}{}% -\contentsline {subsubsection}{\numberline {3.3.2.2}Vectorized \texttt {ifelse()}}{110}{}% -\contentsline {subsection}{\numberline {3.3.3}Iteration}{112}{}% -\contentsline {subsubsection}{\numberline {3.3.3.1}\texttt {for} loops}{113}{}% -\contentsline {subsubsection}{\numberline {3.3.3.2}\texttt {while} loops}{115}{}% -\contentsline {subsubsection}{\numberline {3.3.3.3}\texttt {repeat} loops}{117}{}% -\contentsline {subsection}{\numberline {3.3.4}Explicit loops can be slow in \textsf {R}\xspace }{118}{}% -\contentsline {subsection}{\numberline {3.3.5}Nesting of loops}{119}{}% -\contentsline {subsubsection}{\numberline {3.3.5.1}Clean-up}{121}{}% -\contentsline {section}{\numberline {3.4}Apply functions}{122}{}% -\contentsline {subsection}{\numberline {3.4.1}Applying functions to vectors and lists}{122}{}% -\contentsline {subsection}{\numberline {3.4.2}Applying functions to matrices and arrays}{125}{}% -\contentsline {section}{\numberline {3.5}Functions that replace loops}{127}{}% -\contentsline {section}{\numberline {3.6}Object names and character strings}{128}{}% -\contentsline {section}{\numberline {3.7}The multiple faces of loops}{129}{}% -\contentsline {subsection}{\numberline {3.7.1}Further reading}{132}{}% -\contentsline {chapter}{\numberline {4}The R language: Statistics}{133}{}% -\contentsline {section}{\numberline {4.1}Aims of this chapter}{133}{}% -\contentsline {section}{\numberline {4.2}Statistical summaries}{133}{}% -\contentsline {section}{\numberline {4.3}Distributions}{134}{}% -\contentsline {subsection}{\numberline {4.3.1}Density from parameters}{135}{}% -\contentsline {subsection}{\numberline {4.3.2}Probabilities from parameters and quantiles}{136}{}% -\contentsline {subsection}{\numberline {4.3.3}Quantiles from parameters and probabilities}{136}{}% -\contentsline {subsection}{\numberline {4.3.4}``Random'' draws from a distribution}{137}{}% -\contentsline {section}{\numberline {4.4}``Random'' sampling}{138}{}% -\contentsline {section}{\numberline {4.5}Correlation}{139}{}% -\contentsline {subsection}{\numberline {4.5.1}Pearson's $r$}{139}{}% -\contentsline {subsection}{\numberline {4.5.2}Kendall's $\mittau $ and Spearman's $\mitrho $}{141}{}% -\contentsline {section}{\numberline {4.6}Model fitting in R}{141}{}% -\contentsline {section}{\numberline {4.7}Fitting linear models}{142}{}% -\contentsline {subsection}{\numberline {4.7.1}Regression}{143}{}% -\contentsline {subsection}{\numberline {4.7.2}Analysis of variance, ANOVA}{149}{}% -\contentsline {subsection}{\numberline {4.7.3}Analysis of covariance, ANCOVA}{153}{}% -\contentsline {section}{\numberline {4.8}Generalized linear models}{153}{}% -\contentsline {section}{\numberline {4.9}Non-linear regression}{156}{}% -\contentsline {section}{\numberline {4.10}Model formulas}{159}{}% -\contentsline {section}{\numberline {4.11}Time series}{168}{}% -\contentsline {section}{\numberline {4.12}Multivariate statistics}{171}{}% -\contentsline {subsection}{\numberline {4.12.1}Multivariate analysis of variance}{171}{}% -\contentsline {subsection}{\numberline {4.12.2}Principal components analysis}{173}{}% -\contentsline {subsection}{\numberline {4.12.3}Multidimensional scaling}{175}{}% -\contentsline {subsection}{\numberline {4.12.4}Cluster analysis}{176}{}% -\contentsline {section}{\numberline {4.13}Further reading}{178}{}% -\contentsline {chapter}{\numberline {5}The R language: Adding new ``words''}{179}{}% -\contentsline {section}{\numberline {5.1}Aims of this chapter}{179}{}% -\contentsline {section}{\numberline {5.2}Packages}{179}{}% -\contentsline {subsection}{\numberline {5.2.1}Sharing of \textsf {R}\xspace -language extensions}{179}{}% -\contentsline {subsection}{\numberline {5.2.2}How packages work}{180}{}% -\contentsline {subsection}{\numberline {5.2.3}Download, installation and use}{181}{}% -\contentsline {subsection}{\numberline {5.2.4}Finding suitable packages}{181}{}% -\contentsline {section}{\numberline {5.3}Defining functions and operators}{182}{}% -\contentsline {subsection}{\numberline {5.3.1}Ordinary functions}{185}{}% -\contentsline {subsection}{\numberline {5.3.2}Operators}{188}{}% -\contentsline {section}{\numberline {5.4}Objects, classes, and methods}{189}{}% -\contentsline {section}{\numberline {5.5}Scope of names}{193}{}% -\contentsline {section}{\numberline {5.6}Further reading}{194}{}% -\contentsline {chapter}{\numberline {6}New grammars of data}{195}{}% -\contentsline {section}{\numberline {6.1}Aims of this chapter}{195}{}% -\contentsline {section}{\numberline {6.2}Introduction}{195}{}% -\contentsline {section}{\numberline {6.3}Packages used in this chapter}{197}{}% -\contentsline {section}{\numberline {6.4}Replacements for \texttt {data.frame}}{198}{}% -\contentsline {subsection}{\numberline {6.4.1}`\textsf {data.table}'\xspace }{198}{}% -\contentsline {subsection}{\numberline {6.4.2}`\textsf {tibble}'\xspace }{198}{}% -\contentsline {section}{\numberline {6.5}Data pipes}{204}{}% -\contentsline {subsection}{\numberline {6.5.1}Base R}{204}{}% -\contentsline {subsection}{\numberline {6.5.2}`\textsf {magrittr}'\xspace }{205}{}% -\contentsline {subsection}{\numberline {6.5.3}`\textsf {wrapr}'\xspace }{205}{}% -\contentsline {section}{\numberline {6.6}Reshaping with `\textsf {tidyr}'\xspace }{208}{}% -\contentsline {section}{\numberline {6.7}Data manipulation with `\textsf {dplyr}'\xspace }{210}{}% -\contentsline {subsection}{\numberline {6.7.1}Row-wise manipulations}{211}{}% -\contentsline {subsection}{\numberline {6.7.2}Group-wise manipulations}{214}{}% -\contentsline {subsection}{\numberline {6.7.3}Joins}{216}{}% -\contentsline {section}{\numberline {6.8}Further reading}{219}{}% -\contentsline {chapter}{\numberline {7}Grammar of graphics}{221}{}% -\contentsline {section}{\numberline {7.1}Aims of this chapter}{221}{}% -\contentsline {section}{\numberline {7.2}Packages used in this chapter}{221}{}% -\contentsline {section}{\numberline {7.3}Introduction to the grammar of graphics}{222}{}% -\contentsline {subsection}{\numberline {7.3.1}Data}{223}{}% -\contentsline {subsection}{\numberline {7.3.2}Mapping}{223}{}% -\contentsline {subsection}{\numberline {7.3.3}Geometries}{224}{}% -\contentsline {subsection}{\numberline {7.3.4}Statistics}{224}{}% -\contentsline {subsection}{\numberline {7.3.5}Scales}{224}{}% -\contentsline {subsection}{\numberline {7.3.6}Coordinate systems}{225}{}% -\contentsline {subsection}{\numberline {7.3.7}Themes}{225}{}% -\contentsline {subsection}{\numberline {7.3.8}Plot object}{225}{}% -\contentsline {subsection}{\numberline {7.3.9}Plot construction}{225}{}% -\contentsline {subsection}{\numberline {7.3.10}Plots as \textsf {R}\xspace objects}{233}{}% -\contentsline {subsection}{\numberline {7.3.11}Mappings to aesthetics}{234}{}% -\contentsline {section}{\numberline {7.4}Geometries}{238}{}% -\contentsline {subsection}{\numberline {7.4.1}Point}{238}{}% -\contentsline {subsection}{\numberline {7.4.2}Rug}{243}{}% -\contentsline {subsection}{\numberline {7.4.3}Line and area}{244}{}% -\contentsline {subsection}{\numberline {7.4.4}Column}{246}{}% -\contentsline {subsection}{\numberline {7.4.5}Tiles}{248}{}% -\contentsline {subsection}{\numberline {7.4.6}Simple features (sf)}{250}{}% -\contentsline {subsection}{\numberline {7.4.7}Text}{250}{}% -\contentsline {subsection}{\numberline {7.4.8}Plot insets}{255}{}% -\contentsline {section}{\numberline {7.5}Statistics}{260}{}% -\contentsline {subsection}{\numberline {7.5.1}Functions}{260}{}% -\contentsline {subsection}{\numberline {7.5.2}Summaries}{261}{}% -\contentsline {subsection}{\numberline {7.5.3}Smoothers and models}{264}{}% -\contentsline {subsection}{\numberline {7.5.4}Frequencies and counts}{267}{}% -\contentsline {subsection}{\numberline {7.5.5}Density functions}{270}{}% -\contentsline {subsection}{\numberline {7.5.6}Box and whiskers plots}{271}{}% -\contentsline {subsection}{\numberline {7.5.7}Violin plots}{272}{}% -\contentsline {section}{\numberline {7.6}Flipped plot layers}{274}{}% -\contentsline {section}{\numberline {7.7}Facets}{280}{}% -\contentsline {section}{\numberline {7.8}Scales}{283}{}% -\contentsline {subsection}{\numberline {7.8.1}Axis and key labels}{285}{}% -\contentsline {subsection}{\numberline {7.8.2}Continuous scales}{286}{}% -\contentsline {subsubsection}{\numberline {7.8.2.1}Limits}{287}{}% -\contentsline {subsubsection}{\numberline {7.8.2.2}Ticks and their labels}{288}{}% -\contentsline {subsubsection}{\numberline {7.8.2.3}Transformed scales}{290}{}% -\contentsline {subsubsection}{\numberline {7.8.2.4}Position of $x$ and $y$ axes}{292}{}% -\contentsline {subsubsection}{\numberline {7.8.2.5}Secondary axes}{292}{}% -\contentsline {subsection}{\numberline {7.8.3}Time and date scales for $x$ and $y$}{293}{}% -\contentsline {subsection}{\numberline {7.8.4}Discrete scales for $x$ and $y$}{294}{}% -\contentsline {subsection}{\numberline {7.8.5}Size}{295}{}% -\contentsline {subsection}{\numberline {7.8.6}Color and fill}{295}{}% -\contentsline {subsubsection}{\numberline {7.8.6.1}Color definitions in R}{296}{}% -\contentsline {subsection}{\numberline {7.8.7}Continuous color-related scales}{297}{}% -\contentsline {subsection}{\numberline {7.8.8}Discrete color-related scales}{297}{}% -\contentsline {subsection}{\numberline {7.8.9}Binned scales}{298}{}% -\contentsline {subsection}{\numberline {7.8.10}Identity scales}{299}{}% -\contentsline {section}{\numberline {7.9}Adding annotations}{299}{}% -\contentsline {section}{\numberline {7.10}Coordinates and circular plots}{302}{}% -\contentsline {subsection}{\numberline {7.10.1}Wind-rose plots}{302}{}% -\contentsline {subsection}{\numberline {7.10.2}Pie charts}{304}{}% -\contentsline {section}{\numberline {7.11}Themes}{305}{}% -\contentsline {subsection}{\numberline {7.11.1}Complete themes}{305}{}% -\contentsline {subsection}{\numberline {7.11.2}Incomplete themes}{307}{}% -\contentsline {subsection}{\numberline {7.11.3}Defining a new theme}{309}{}% -\contentsline {section}{\numberline {7.12}Composing plots}{311}{}% -\contentsline {section}{\numberline {7.13}Using plotmath expressions}{312}{}% -\contentsline {section}{\numberline {7.14}Creating complex data displays}{317}{}% -\contentsline {section}{\numberline {7.15}Creating sets of plots}{318}{}% -\contentsline {subsection}{\numberline {7.15.1}Saving plot layers and scales in variables}{318}{}% -\contentsline {subsection}{\numberline {7.15.2}Saving plot layers and scales in lists}{319}{}% -\contentsline {subsection}{\numberline {7.15.3}Using functions as building blocks}{319}{}% -\contentsline {section}{\numberline {7.16}Generating output files}{320}{}% -\contentsline {section}{\numberline {7.17}Further reading}{321}{}% -\contentsline {chapter}{\numberline {8}Data import and export}{323}{}% -\contentsline {section}{\numberline {8.1}Aims of this chapter}{323}{}% -\contentsline {section}{\numberline {8.2}Introduction}{324}{}% -\contentsline {section}{\numberline {8.3}Packages used in this chapter}{324}{}% -\contentsline {section}{\numberline {8.4}File names and operations}{325}{}% -\contentsline {section}{\numberline {8.5}Opening and closing file connections}{328}{}% -\contentsline {section}{\numberline {8.6}Plain-text files}{329}{}% -\contentsline {subsection}{\numberline {8.6.1}Base R and `utils'}{331}{}% -\contentsline {subsection}{\numberline {8.6.2}readr}{335}{}% -\contentsline {section}{\numberline {8.7}XML and HTML files}{340}{}% -\contentsline {subsection}{\numberline {8.7.1}`xml2'}{341}{}% -\contentsline {section}{\numberline {8.8}GPX files}{343}{}% -\contentsline {section}{\numberline {8.9}Worksheets}{344}{}% -\contentsline {subsection}{\numberline {8.9.1}CSV files as middlemen}{345}{}% -\contentsline {subsection}{\numberline {8.9.2}`readxl'}{345}{}% -\contentsline {subsection}{\numberline {8.9.3}`xlsx'}{347}{}% -\contentsline {subsection}{\numberline {8.9.4}`readODS'}{348}{}% -\contentsline {section}{\numberline {8.10}Statistical software}{349}{}% -\contentsline {subsection}{\numberline {8.10.1}foreign}{349}{}% -\contentsline {subsection}{\numberline {8.10.2}haven}{350}{}% -\contentsline {section}{\numberline {8.11}NetCDF files}{351}{}% -\contentsline {subsection}{\numberline {8.11.1}ncdf4}{352}{}% -\contentsline {subsection}{\numberline {8.11.2}tidync}{353}{}% -\contentsline {section}{\numberline {8.12}Remotely located data}{355}{}% -\contentsline {section}{\numberline {8.13}Data acquisition from physical devices}{357}{}% -\contentsline {subsection}{\numberline {8.13.1}jsonlite}{357}{}% -\contentsline {section}{\numberline {8.14}Databases}{358}{}% -\contentsline {section}{\numberline {8.15}Further reading}{359}{}% -\contentsline {fm}{Bibliography}{361}{}% -\contentsline {fm}{General index}{365}{}% -\contentsline {fm}{Index of \textsf {R}\xspace names by category}{375}{}% -\contentsline {fm}{Alphabetic index of \textsf {R}\xspace names}{381}{}% +\contentsline {section}{\numberline {1.2}Writing scripts}{1}{}% +\contentsline {subsection}{\numberline {1.2.1}What is a script?}{2}{}% +\contentsline {subsection}{\numberline {1.2.2}How do we use a script?}{3}{}% +\contentsline {subsection}{\numberline {1.2.3}How to write a script}{4}{}% +\contentsline {subsection}{\numberline {1.2.4}The need to be understandable to people}{4}{}% +\contentsline {subsection}{\numberline {1.2.5}Debugging scripts}{6}{}% +\contentsline {section}{\numberline {1.3}Control of execution flow}{8}{}% +\contentsline {subsection}{\numberline {1.3.1}Compound statements}{9}{}% +\contentsline {subsection}{\numberline {1.3.2}Conditional execution}{9}{}% +\contentsline {subsubsection}{\numberline {1.3.2.1}Non-vectorized \texttt {if}, \texttt {else} and \texttt {switch}}{10}{}% +\contentsline {subsubsection}{\numberline {1.3.2.2}Vectorized \texttt {ifelse()}}{16}{}% +\contentsline {subsection}{\numberline {1.3.3}Iteration}{18}{}% +\contentsline {subsubsection}{\numberline {1.3.3.1}\texttt {for} loops}{18}{}% +\contentsline {subsubsection}{\numberline {1.3.3.2}\texttt {while} loops}{21}{}% +\contentsline {subsubsection}{\numberline {1.3.3.3}\texttt {repeat} loops}{22}{}% +\contentsline {subsection}{\numberline {1.3.4}Explicit loops can be slow in \textsf {R}\xspace }{23}{}% +\contentsline {subsection}{\numberline {1.3.5}Nesting of loops}{24}{}% +\contentsline {subsubsection}{\numberline {1.3.5.1}Clean-up}{26}{}% +\contentsline {section}{\numberline {1.4}Apply functions}{26}{}% +\contentsline {subsection}{\numberline {1.4.1}Applying functions to vectors and lists}{27}{}% +\contentsline {subsection}{\numberline {1.4.2}Applying functions to matrices and arrays}{29}{}% +\contentsline {section}{\numberline {1.5}Functions that replace loops}{32}{}% +\contentsline {section}{\numberline {1.6}Object names and character strings}{33}{}% +\contentsline {section}{\numberline {1.7}The multiple faces of loops}{34}{}% +\contentsline {section}{\numberline {1.8}Data pipes in base R}{36}{}% +\contentsline {section}{\numberline {1.9}Further reading}{37}{}% +\contentsline {fm}{Bibliography}{39}{}% +\contentsline {fm}{General index}{41}{}% +\contentsline {fm}{Index of \textsf {R}\xspace names by category}{43}{}% +\contentsline {fm}{Alphabetic index of \textsf {R}\xspace names}{45}{}% diff --git a/usingr.sty b/usingr.sty index b9d5de6a..6f6c3a30 100644 --- a/usingr.sty +++ b/usingr.sty @@ -1,10 +1,12 @@ \NeedsTeXFormat{LaTeX2e} -\ProvidesPackage{usingr}[2016/10/20] +\ProvidesPackage{usingr}[2022/10/20] \RequirePackage{booktabs} \RequirePackage{xspace} +\RequirePackage{xcolor} + %\usepackage{amsmath,amssymb,amsthm} \RequirePackage{unicode-math} @@ -37,16 +39,16 @@ \newcommand\Attention[1]{\marginpar{\centering\Huge\colorbox{yellow}{\typicons{"E136}}}\index{#1}} \newcommand\ilAttention{\noindent\colorbox{yellow}{\huge\typicons{"E136}}\xspace} \newcommand\Advanced[1]{\marginpar{\centering\colorbox{brown}{\Huge\textcolor{white}{\typicons{"E04E}}}}\index{#1}} -\newcommand\ilAdvanced{\noindent\colorbox{white}{\Huge\typicons{"E04E}}\xspace} +\newcommand\ilAdvanced{\noindent\colorbox{brown}{\Huge\textcolor{white}{\typicons{"E04E}}}\xspace} \newfontfamily\noticestdfont{Notice2Std} \newcommand\noticestd[1]{{\noticestdfont\symbol{#1}}} -\newcommand\playicon{\noindent{\huge\textcolor{blue}{\noticestd{"0055}}}\xspace} -\newcommand\advplayicon{\noindent{\huge\colorbox{blue}{\textcolor{white}{\noticestd{"0055}\typicons{"E04E}}}}\xspace} +\newcommand\playicon{\noindent{\huge\colorbox{violet}{\textcolor{white}{\noticestd{"0055}}}}\xspace} +\newcommand\advplayicon{\noindent{\huge\colorbox{purple}{\textcolor{white}{\noticestd{"0055}\typicons{"E04E}}}}\xspace} \newfontfamily\modpictsfont{ModernPictograms} \newcommand\modpicts[1]{{\modpictsfont\symbol{#1}}} -\newcommand\infoicon{\noindent{\Huge\textcolor{blue}{\modpicts{"003D}}}\xspace} +\newcommand\infoicon{\noindent{\Huge\colorbox{blue}{\textcolor{white}{\modpicts{"003D}}}}\xspace} \newcommand{\langname}[1]{\textsf{#1}\index{#1@\textsf{#1}}\index{languages!#1@\textsf{#1}}\xspace} \newcommand{\langnameNI}[1]{\textsf{#1}\xspace} @@ -129,15 +131,21 @@ % this is most likely because knitr uses the same environment and we then end with a shaded environment % nested within another one. -\newenvironment{playground}[1]{\begin{oframed}\playicon\ #1}{\end{oframed}} +\newenvironment{leftbarc}[1][black]{% + \def\FrameCommand{\hspace{-5pt}{\color{#1}\vrule width 1.5pt} \hspace{3pt}}% + \MakeFramed {\advance\hsize-\width \FrameRestore}}% + {\endMakeFramed} + + +\newenvironment{playground}[1]{\begin{leftbarc}[violet]\playicon\ #1}{\end{leftbarc}} -\newenvironment{advplayground}[1]{\begin{oframed}\advplayicon\ #1}{\end{oframed}} +\newenvironment{advplayground}[1]{\begin{leftbarc}[purple]\advplayicon\ #1}{\end{leftbarc}} -\newenvironment{warningbox}[1]{\begin{oframed}\ilAttention\ #1}{\end{oframed}} +\newenvironment{warningbox}[1]{\begin{leftbarc}[yellow]\ilAttention\ #1}{\end{leftbarc}} -\newenvironment{explainbox}[1]{\begin{oframed}\ilAdvanced\ #1}{\end{oframed}} +\newenvironment{explainbox}[1]{\begin{leftbarc}[brown]\ilAdvanced\ #1}{\end{leftbarc}} -\newenvironment{infobox}[1]{\begin{oframed}\infoicon\ #1}{\end{oframed}} +\newenvironment{infobox}[1]{\begin{leftbarc}[blue]\infoicon\ #1}{\end{leftbarc}} \newcommand{\citebooktitle}[1]{\citetitle{#1}} %\newcommand{\citebooktitle}[1]{\emph{\citetitle{#1}}}